{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [],
   "source": [
    "#importing os which gives the ability to interact with the operating system \n",
    "import os \n",
    "#Importing the nltk library \n",
    "import nltk \n",
    "#From the nltk library, I am importing stopwords... I may or may not decide to remove stopwords, \n",
    "#but I would like to at least look at what nltk has deemed as stopwords. Currently, I am thinking I might only \n",
    "#remove words that have 2 letters or less. \n",
    "from nltk.corpus import stopwords\n",
    "#Importing the nltk word tokenizers \n",
    "from nltk.tokenize import word_tokenize \n",
    "# Importing the nltk stanford word tokenizer \n",
    "from nltk.tokenize.stanford import StanfordTokenizer \n",
    "#Importing a lemmatizer \n",
    "from nltk.stem import WordNetLemmatizer as lemma \n",
    "#Porter stemmer \n",
    "from nltk.stem.porter import PorterStemmer \n",
    "\n",
    "import pandas as pd\n",
    "\n",
    "#To make things look nicer when I print them \n",
    "from pprint import pprint \n",
    "\n",
    "\n",
    "#Function 1: Creating a function to read in my files. This function will read in all the files in a specific directory. \n",
    "    #inputs: list of all of the file names to read \n",
    "    #        the path where the files are located \n",
    "    #outputs: a list, each element in the list is the content for each file that was read in. \n",
    "def stop_word_removal(item_that_you_want_to_remove_stopwords_in): \n",
    "    removed_stopwords = [] \n",
    "    stop_words = stopwords.words(\"english\")\n",
    "    for word in item_that_you_want_to_remove_stopwords_in: \n",
    "        if word in stop_words: \n",
    "            continue\n",
    "        if word not in stop_words: \n",
    "            removed_stopwords.append(word)\n",
    "    return(removed_stopwords)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [],
   "source": [
    "import nltk\n",
    "from nltk.tokenize import word_tokenize\n",
    "file = open('moviereview.csv')\n",
    "movies_df = pd.DataFrame(file)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {},
   "outputs": [],
   "source": [
    "movies_df.columns = [\"review\"]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {},
   "outputs": [],
   "source": [
    "movies_df[\"review\"] = movies_df[\"review\"].str.replace('[^\\w\\s]', \"\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {},
   "outputs": [],
   "source": [
    "movies_df[\"review\"] = movies_df[\"review\"].str.lower()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {},
   "outputs": [],
   "source": [
    "movies_df[\"review\"] = movies_df.apply(lambda row: nltk.word_tokenize(row[\"review\"]), axis = 1)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "metadata": {},
   "outputs": [],
   "source": [
    "movies_df[\"review\"] = movies_df.apply(lambda row: stop_word_removal(row[\"review\"]), axis = 1)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "metadata": {},
   "outputs": [],
   "source": [
    "bag_of_words = [] \n",
    "from collections import Counter \n",
    "for word in movies_df[\"review\"]: \n",
    "    bag_of_words.append(Counter(word))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[Counter({'textreviewclass': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'pretty': 5,\n",
      "          'film': 5,\n",
      "          'make': 5,\n",
      "          'teen': 4,\n",
      "          'get': 3,\n",
      "          'even': 3,\n",
      "          'films': 3,\n",
      "          'nit': 3,\n",
      "          'like': 3,\n",
      "          'two': 2,\n",
      "          'go': 2,\n",
      "          'nthey': 2,\n",
      "          'see': 2,\n",
      "          'mindfuck': 2,\n",
      "          'cool': 2,\n",
      "          'idea': 2,\n",
      "          'bad': 2,\n",
      "          'one': 2,\n",
      "          'since': 2,\n",
      "          'lost': 2,\n",
      "          'highway': 2,\n",
      "          'memento': 2,\n",
      "          'good': 2,\n",
      "          'didnt': 2,\n",
      "          'problem': 2,\n",
      "          'simply': 2,\n",
      "          'world': 2,\n",
      "          'audience': 2,\n",
      "          'going': 2,\n",
      "          'nthere': 2,\n",
      "          'characters': 2,\n",
      "          'coming': 2,\n",
      "          'dead': 2,\n",
      "          'others': 2,\n",
      "          'look': 2,\n",
      "          'scenes': 2,\n",
      "          'things': 2,\n",
      "          'dont': 2,\n",
      "          'biggest': 2,\n",
      "          'secret': 2,\n",
      "          'hide': 2,\n",
      "          'minutes': 2,\n",
      "          'entertaining': 2,\n",
      "          'really': 2,\n",
      "          'nthe': 2,\n",
      "          'part': 2,\n",
      "          'actually': 2,\n",
      "          'strangeness': 2,\n",
      "          'little': 2,\n",
      "          'sense': 2,\n",
      "          'still': 2,\n",
      "          'ni': 2,\n",
      "          'guess': 2,\n",
      "          'sagemiller': 2,\n",
      "          'away': 2,\n",
      "          'throughout': 2,\n",
      "          'doesnt': 2,\n",
      "          'way': 2,\n",
      "          '710': 2,\n",
      "          'crow': 2,\n",
      "          '910': 2,\n",
      "          '1010': 2,\n",
      "          'plot': 1,\n",
      "          'couples': 1,\n",
      "          'church': 1,\n",
      "          'party': 1,\n",
      "          'drink': 1,\n",
      "          'drive': 1,\n",
      "          'accident': 1,\n",
      "          'none': 1,\n",
      "          'guys': 1,\n",
      "          'dies': 1,\n",
      "          'girlfriend': 1,\n",
      "          'continues': 1,\n",
      "          'life': 1,\n",
      "          'nightmares': 1,\n",
      "          'nwhats': 1,\n",
      "          'deal': 1,\n",
      "          'nwatch': 1,\n",
      "          'sorta': 1,\n",
      "          'find': 1,\n",
      "          'ncritique': 1,\n",
      "          'generation': 1,\n",
      "          'touches': 1,\n",
      "          'presents': 1,\n",
      "          'package': 1,\n",
      "          'nwhich': 1,\n",
      "          'makes': 1,\n",
      "          'review': 1,\n",
      "          'harder': 1,\n",
      "          'write': 1,\n",
      "          'generally': 1,\n",
      "          'applaud': 1,\n",
      "          'attempt': 1,\n",
      "          'break': 1,\n",
      "          'mold': 1,\n",
      "          'mess': 1,\n",
      "          'head': 1,\n",
      "          'ways': 1,\n",
      "          'making': 1,\n",
      "          'types': 1,\n",
      "          'folks': 1,\n",
      "          'snag': 1,\n",
      "          'correctly': 1,\n",
      "          'seem': 1,\n",
      "          'taken': 1,\n",
      "          'neat': 1,\n",
      "          'concept': 1,\n",
      "          'executed': 1,\n",
      "          'terribly': 1,\n",
      "          'nso': 1,\n",
      "          'problems': 1,\n",
      "          'nwell': 1,\n",
      "          'main': 1,\n",
      "          'jumbled': 1,\n",
      "          'starts': 1,\n",
      "          'normal': 1,\n",
      "          'downshifts': 1,\n",
      "          'fantasy': 1,\n",
      "          'member': 1,\n",
      "          'whats': 1,\n",
      "          'dreams': 1,\n",
      "          'back': 1,\n",
      "          'strange': 1,\n",
      "          'apparitions': 1,\n",
      "          'disappearances': 1,\n",
      "          'looooot': 1,\n",
      "          'chase': 1,\n",
      "          'tons': 1,\n",
      "          'weird': 1,\n",
      "          'happen': 1,\n",
      "          'explained': 1,\n",
      "          'nnow': 1,\n",
      "          'personally': 1,\n",
      "          'mind': 1,\n",
      "          'trying': 1,\n",
      "          'unravel': 1,\n",
      "          'every': 1,\n",
      "          'give': 1,\n",
      "          'clue': 1,\n",
      "          'kind': 1,\n",
      "          'fed': 1,\n",
      "          'nits': 1,\n",
      "          'obviously': 1,\n",
      "          'got': 1,\n",
      "          'big': 1,\n",
      "          'seems': 1,\n",
      "          'want': 1,\n",
      "          'completely': 1,\n",
      "          'final': 1,\n",
      "          'five': 1,\n",
      "          'nand': 1,\n",
      "          'thrilling': 1,\n",
      "          'engaging': 1,\n",
      "          'meantime': 1,\n",
      "          'nnot': 1,\n",
      "          'sad': 1,\n",
      "          'arrow': 1,\n",
      "          'dig': 1,\n",
      "          'flicks': 1,\n",
      "          'figured': 1,\n",
      "          'halfway': 1,\n",
      "          'point': 1,\n",
      "          'start': 1,\n",
      "          'bit': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'movies': 1,\n",
      "          'always': 1,\n",
      "          'sure': 1,\n",
      "          'given': 1,\n",
      "          'password': 1,\n",
      "          'enter': 1,\n",
      "          'understanding': 1,\n",
      "          'mean': 1,\n",
      "          'showing': 1,\n",
      "          'melissa': 1,\n",
      "          'running': 1,\n",
      "          'visions': 1,\n",
      "          '20': 1,\n",
      "          'plain': 1,\n",
      "          'lazy': 1,\n",
      "          'nokay': 1,\n",
      "          'nare': 1,\n",
      "          'people': 1,\n",
      "          'chasing': 1,\n",
      "          'know': 1,\n",
      "          'ndo': 1,\n",
      "          'need': 1,\n",
      "          'nhow': 1,\n",
      "          'giving': 1,\n",
      "          'us': 1,\n",
      "          'different': 1,\n",
      "          'offering': 1,\n",
      "          'insight': 1,\n",
      "          'napparently': 1,\n",
      "          'studio': 1,\n",
      "          'took': 1,\n",
      "          'director': 1,\n",
      "          'chopped': 1,\n",
      "          'shows': 1,\n",
      "          'mightve': 1,\n",
      "          'decent': 1,\n",
      "          'somewhere': 1,\n",
      "          'suits': 1,\n",
      "          'decided': 1,\n",
      "          'turning': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'edge': 1,\n",
      "          'would': 1,\n",
      "          'actors': 1,\n",
      "          'although': 1,\n",
      "          'wes': 1,\n",
      "          'bentley': 1,\n",
      "          'seemed': 1,\n",
      "          'playing': 1,\n",
      "          'exact': 1,\n",
      "          'character': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'new': 1,\n",
      "          'neighborhood': 1,\n",
      "          'nbut': 1,\n",
      "          'kudos': 1,\n",
      "          'holds': 1,\n",
      "          'entire': 1,\n",
      "          'feeling': 1,\n",
      "          'unraveling': 1,\n",
      "          'noverall': 1,\n",
      "          'stick': 1,\n",
      "          'entertain': 1,\n",
      "          'confusing': 1,\n",
      "          'rarely': 1,\n",
      "          'excites': 1,\n",
      "          'feels': 1,\n",
      "          'redundant': 1,\n",
      "          'runtime': 1,\n",
      "          'despite': 1,\n",
      "          'ending': 1,\n",
      "          'explanation': 1,\n",
      "          'craziness': 1,\n",
      "          'came': 1,\n",
      "          'noh': 1,\n",
      "          'horror': 1,\n",
      "          'slasher': 1,\n",
      "          'flick': 1,\n",
      "          'njust': 1,\n",
      "          'packaged': 1,\n",
      "          'someone': 1,\n",
      "          'apparently': 1,\n",
      "          'assuming': 1,\n",
      "          'genre': 1,\n",
      "          'hot': 1,\n",
      "          'kids': 1,\n",
      "          'also': 1,\n",
      "          'wrapped': 1,\n",
      "          'production': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'sitting': 1,\n",
      "          'shelves': 1,\n",
      "          'ever': 1,\n",
      "          'nwhatever': 1,\n",
      "          'skip': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'na': 1,\n",
      "          'nightmare': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          '3': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          '2': 1,\n",
      "          'salvation': 1,\n",
      "          '410': 1,\n",
      "          'stir': 1,\n",
      "          'echoes': 1,\n",
      "          '810': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'know': 4,\n",
      "          'baldwin': 3,\n",
      "          'ship': 3,\n",
      "          'like': 3,\n",
      "          'dont': 3,\n",
      "          'curtis': 2,\n",
      "          'crew': 2,\n",
      "          'kick': 2,\n",
      "          'power': 2,\n",
      "          'gore': 2,\n",
      "          'really': 2,\n",
      "          'course': 2,\n",
      "          'around': 2,\n",
      "          'robots': 2,\n",
      "          'nthe': 2,\n",
      "          'acting': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quick': 1,\n",
      "          'review': 1,\n",
      "          'ndamn': 1,\n",
      "          'y2k': 1,\n",
      "          'bug': 1,\n",
      "          'nits': 1,\n",
      "          'got': 1,\n",
      "          'head': 1,\n",
      "          'start': 1,\n",
      "          'starring': 1,\n",
      "          'jamie': 1,\n",
      "          'lee': 1,\n",
      "          'another': 1,\n",
      "          'brother': 1,\n",
      "          'william': 1,\n",
      "          'time': 1,\n",
      "          'story': 1,\n",
      "          'regarding': 1,\n",
      "          'tugboat': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'deserted': 1,\n",
      "          'russian': 1,\n",
      "          'tech': 1,\n",
      "          'strangeness': 1,\n",
      "          'back': 1,\n",
      "          'nlittle': 1,\n",
      "          'within': 1,\n",
      "          'ngoing': 1,\n",
      "          'bringing': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'virus': 1,\n",
      "          'still': 1,\n",
      "          'feels': 1,\n",
      "          'empty': 1,\n",
      "          'going': 1,\n",
      "          'flash': 1,\n",
      "          'substance': 1,\n",
      "          'nwe': 1,\n",
      "          'middle': 1,\n",
      "          'nowhere': 1,\n",
      "          'origin': 1,\n",
      "          'took': 1,\n",
      "          'big': 1,\n",
      "          'pink': 1,\n",
      "          'flashy': 1,\n",
      "          'thing': 1,\n",
      "          'hit': 1,\n",
      "          'mir': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'stumbling': 1,\n",
      "          'drunkenly': 1,\n",
      "          'throughout': 1,\n",
      "          'nhere': 1,\n",
      "          'hey': 1,\n",
      "          'lets': 1,\n",
      "          'chase': 1,\n",
      "          'people': 1,\n",
      "          'average': 1,\n",
      "          'even': 1,\n",
      "          'likes': 1,\n",
      "          'nyoure': 1,\n",
      "          'likely': 1,\n",
      "          'get': 1,\n",
      "          'work': 1,\n",
      "          'halloween': 1,\n",
      "          'h20': 1,\n",
      "          'nsutherland': 1,\n",
      "          'wasted': 1,\n",
      "          'well': 1,\n",
      "          'hes': 1,\n",
      "          'real': 1,\n",
      "          'star': 1,\n",
      "          'stan': 1,\n",
      "          'winstons': 1,\n",
      "          'robot': 1,\n",
      "          'design': 1,\n",
      "          'schnazzy': 1,\n",
      "          'cgi': 1,\n",
      "          'occasional': 1,\n",
      "          'good': 1,\n",
      "          'shot': 1,\n",
      "          'picking': 1,\n",
      "          'someones': 1,\n",
      "          'brain': 1,\n",
      "          'nso': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'turn': 1,\n",
      "          'heres': 1,\n",
      "          'notherwise': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'sunken': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'show': 6,\n",
      "          'nthe': 6,\n",
      "          'one': 5,\n",
      "          'like': 4,\n",
      "          'television': 4,\n",
      "          'even': 4,\n",
      "          'cool': 3,\n",
      "          'nice': 3,\n",
      "          'hair': 3,\n",
      "          'really': 3,\n",
      "          'characters': 3,\n",
      "          'audience': 3,\n",
      "          'make': 2,\n",
      "          'movie': 2,\n",
      "          'watch': 2,\n",
      "          'late': 2,\n",
      "          '1960s': 2,\n",
      "          'mod': 2,\n",
      "          'squad': 2,\n",
      "          'go': 2,\n",
      "          'much': 2,\n",
      "          'music': 2,\n",
      "          'danes': 2,\n",
      "          'enough': 2,\n",
      "          'nit': 2,\n",
      "          'based': 2,\n",
      "          'plot': 2,\n",
      "          'weve': 2,\n",
      "          'nothing': 2,\n",
      "          'teenage': 2,\n",
      "          'mindset': 2,\n",
      "          'way': 2,\n",
      "          'us': 2,\n",
      "          'number': 2,\n",
      "          'clear': 2,\n",
      "          'movies': 1,\n",
      "          'jaded': 1,\n",
      "          'viewer': 1,\n",
      "          'thankful': 1,\n",
      "          'invention': 1,\n",
      "          'timex': 1,\n",
      "          'indiglo': 1,\n",
      "          'nbased': 1,\n",
      "          'name': 1,\n",
      "          'tells': 1,\n",
      "          'tale': 1,\n",
      "          'three': 1,\n",
      "          'reformed': 1,\n",
      "          'criminals': 1,\n",
      "          'employ': 1,\n",
      "          'police': 1,\n",
      "          'undercover': 1,\n",
      "          'nhowever': 1,\n",
      "          'things': 1,\n",
      "          'wrong': 1,\n",
      "          'evidence': 1,\n",
      "          'gets': 1,\n",
      "          'stolen': 1,\n",
      "          'immediately': 1,\n",
      "          'suspicion': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'ads': 1,\n",
      "          'seem': 1,\n",
      "          'nquick': 1,\n",
      "          'cuts': 1,\n",
      "          'claire': 1,\n",
      "          'cute': 1,\n",
      "          'outfits': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'stuff': 1,\n",
      "          'blowing': 1,\n",
      "          'nsounds': 1,\n",
      "          'nafter': 1,\n",
      "          'first': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'quickly': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'certainly': 1,\n",
      "          'slick': 1,\n",
      "          'looking': 1,\n",
      "          'production': 1,\n",
      "          'complete': 1,\n",
      "          'costumes': 1,\n",
      "          'simply': 1,\n",
      "          'isnt': 1,\n",
      "          'best': 1,\n",
      "          'described': 1,\n",
      "          'cross': 1,\n",
      "          'hourlong': 1,\n",
      "          'cop': 1,\n",
      "          'video': 1,\n",
      "          'stretched': 1,\n",
      "          'span': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'nand': 1,\n",
      "          'comes': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'clich': 1,\n",
      "          'doesnt': 1,\n",
      "          'matter': 1,\n",
      "          'elements': 1,\n",
      "          'recycled': 1,\n",
      "          'everything': 1,\n",
      "          'already': 1,\n",
      "          'seen': 1,\n",
      "          'acting': 1,\n",
      "          'spectacular': 1,\n",
      "          'sometimes': 1,\n",
      "          'bordering': 1,\n",
      "          'wooden': 1,\n",
      "          'nclaire': 1,\n",
      "          'omar': 1,\n",
      "          'epps': 1,\n",
      "          'deliver': 1,\n",
      "          'lines': 1,\n",
      "          'bored': 1,\n",
      "          'transfers': 1,\n",
      "          'onto': 1,\n",
      "          'escape': 1,\n",
      "          'relatively': 1,\n",
      "          'unscathed': 1,\n",
      "          'giovanni': 1,\n",
      "          'ribisi': 1,\n",
      "          'plays': 1,\n",
      "          'resident': 1,\n",
      "          'crazy': 1,\n",
      "          'man': 1,\n",
      "          'ultimately': 1,\n",
      "          'thing': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'hes': 1,\n",
      "          'save': 1,\n",
      "          'convoluted': 1,\n",
      "          'mess': 1,\n",
      "          'dont': 1,\n",
      "          'apart': 1,\n",
      "          'occupying': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'nwith': 1,\n",
      "          'young': 1,\n",
      "          'cast': 1,\n",
      "          'clothes': 1,\n",
      "          'hip': 1,\n",
      "          'soundtrack': 1,\n",
      "          'appears': 1,\n",
      "          'geared': 1,\n",
      "          'towards': 1,\n",
      "          'ndespite': 1,\n",
      "          'american': 1,\n",
      "          'r': 1,\n",
      "          'rating': 1,\n",
      "          'content': 1,\n",
      "          'justify': 1,\n",
      "          'juvenile': 1,\n",
      "          'older': 1,\n",
      "          'ninformation': 1,\n",
      "          'literally': 1,\n",
      "          'spoonfed': 1,\n",
      "          'would': 1,\n",
      "          'hard': 1,\n",
      "          'instead': 1,\n",
      "          'telling': 1,\n",
      "          'dialogue': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'extremely': 1,\n",
      "          'predictable': 1,\n",
      "          'progresses': 1,\n",
      "          'likely': 1,\n",
      "          'wont': 1,\n",
      "          'care': 1,\n",
      "          'heroes': 1,\n",
      "          'jeopardy': 1,\n",
      "          'youll': 1,\n",
      "          'know': 1,\n",
      "          'arent': 1,\n",
      "          'nbasing': 1,\n",
      "          'nobody': 1,\n",
      "          'remembers': 1,\n",
      "          'questionable': 1,\n",
      "          'wisdom': 1,\n",
      "          'especially': 1,\n",
      "          'considers': 1,\n",
      "          'target': 1,\n",
      "          'fact': 1,\n",
      "          'memorable': 1,\n",
      "          'films': 1,\n",
      "          'shows': 1,\n",
      "          'counted': 1,\n",
      "          'hand': 1,\n",
      "          'thats': 1,\n",
      "          'missing': 1,\n",
      "          'finger': 1,\n",
      "          'two': 1,\n",
      "          'times': 1,\n",
      "          'checked': 1,\n",
      "          'six': 1,\n",
      "          'indication': 1,\n",
      "          'attempt': 1,\n",
      "          'cash': 1,\n",
      "          'spending': 1,\n",
      "          'dollar': 1,\n",
      "          'judging': 1,\n",
      "          'rash': 1,\n",
      "          'awful': 1,\n",
      "          'teenflicks': 1,\n",
      "          'seeing': 1,\n",
      "          'navoid': 1,\n",
      "          'costs': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'quest': 5,\n",
      "          'camelot': 4,\n",
      "          'much': 3,\n",
      "          'kayley': 3,\n",
      "          'arthurs': 3,\n",
      "          'disneys': 2,\n",
      "          'cartoon': 2,\n",
      "          'nthe': 2,\n",
      "          'animation': 2,\n",
      "          'neven': 2,\n",
      "          'table': 2,\n",
      "          'n': 2,\n",
      "          'see': 2,\n",
      "          'footage': 2,\n",
      "          'one': 2,\n",
      "          'least': 2,\n",
      "          'find': 2,\n",
      "          'though': 2,\n",
      "          'mess': 2,\n",
      "          'personality': 2,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'first': 1,\n",
      "          'featurelength': 1,\n",
      "          'fullyanimated': 1,\n",
      "          'attempt': 1,\n",
      "          'steal': 1,\n",
      "          'clout': 1,\n",
      "          'empire': 1,\n",
      "          'mouse': 1,\n",
      "          'reason': 1,\n",
      "          'worried': 1,\n",
      "          'recent': 1,\n",
      "          'challenger': 1,\n",
      "          'throne': 1,\n",
      "          'last': 1,\n",
      "          'falls': 1,\n",
      "          'promising': 1,\n",
      "          'flawed': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'production': 1,\n",
      "          'anastasia': 1,\n",
      "          'hercules': 1,\n",
      "          'lively': 1,\n",
      "          'cast': 1,\n",
      "          'colorful': 1,\n",
      "          'palate': 1,\n",
      "          'beat': 1,\n",
      "          'handsdown': 1,\n",
      "          'came': 1,\n",
      "          'time': 1,\n",
      "          'crown': 1,\n",
      "          '1997s': 1,\n",
      "          'best': 1,\n",
      "          'piece': 1,\n",
      "          'nthis': 1,\n",
      "          'year': 1,\n",
      "          'contest': 1,\n",
      "          'pretty': 1,\n",
      "          'dead': 1,\n",
      "          'arrival': 1,\n",
      "          'magic': 1,\n",
      "          'kingdom': 1,\n",
      "          'mediocre': 1,\n",
      "          'thatd': 1,\n",
      "          'pocahontas': 1,\n",
      "          'keeping': 1,\n",
      "          'score': 1,\n",
      "          'isnt': 1,\n",
      "          'nearly': 1,\n",
      "          'dull': 1,\n",
      "          'story': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'adventures': 1,\n",
      "          'freespirited': 1,\n",
      "          'voiced': 1,\n",
      "          'jessalyn': 1,\n",
      "          'gilsig': 1,\n",
      "          'earlyteen': 1,\n",
      "          'daughter': 1,\n",
      "          'belated': 1,\n",
      "          'knight': 1,\n",
      "          'king': 1,\n",
      "          'round': 1,\n",
      "          'nkayleys': 1,\n",
      "          'dream': 1,\n",
      "          'follow': 1,\n",
      "          'fathers': 1,\n",
      "          'footsteps': 1,\n",
      "          'gets': 1,\n",
      "          'chance': 1,\n",
      "          'evil': 1,\n",
      "          'warlord': 1,\n",
      "          'ruber': 1,\n",
      "          'gary': 1,\n",
      "          'oldman': 1,\n",
      "          'exround': 1,\n",
      "          'membergonebad': 1,\n",
      "          'steals': 1,\n",
      "          'magical': 1,\n",
      "          'sword': 1,\n",
      "          'excalibur': 1,\n",
      "          'accidentally': 1,\n",
      "          'loses': 1,\n",
      "          'dangerous': 1,\n",
      "          'boobytrapped': 1,\n",
      "          'forest': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'hunky': 1,\n",
      "          'blind': 1,\n",
      "          'timberlanddweller': 1,\n",
      "          'garrett': 1,\n",
      "          'carey': 1,\n",
      "          'elwes': 1,\n",
      "          'twoheaded': 1,\n",
      "          'dragon': 1,\n",
      "          'eric': 1,\n",
      "          'idle': 1,\n",
      "          'rickles': 1,\n",
      "          'thats': 1,\n",
      "          'always': 1,\n",
      "          'arguing': 1,\n",
      "          'might': 1,\n",
      "          'able': 1,\n",
      "          'break': 1,\n",
      "          'medieval': 1,\n",
      "          'sexist': 1,\n",
      "          'mold': 1,\n",
      "          'prove': 1,\n",
      "          'worth': 1,\n",
      "          'fighter': 1,\n",
      "          'side': 1,\n",
      "          'missing': 1,\n",
      "          'pure': 1,\n",
      "          'showmanship': 1,\n",
      "          'essential': 1,\n",
      "          'element': 1,\n",
      "          'ever': 1,\n",
      "          'expected': 1,\n",
      "          'climb': 1,\n",
      "          'high': 1,\n",
      "          'ranks': 1,\n",
      "          'disney': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'differentiates': 1,\n",
      "          'something': 1,\n",
      "          'youd': 1,\n",
      "          'given': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'subpar': 1,\n",
      "          'instantly': 1,\n",
      "          'forgettable': 1,\n",
      "          'songs': 1,\n",
      "          'poorlyintegrated': 1,\n",
      "          'computerized': 1,\n",
      "          'compare': 1,\n",
      "          'garretts': 1,\n",
      "          'runin': 1,\n",
      "          'angry': 1,\n",
      "          'ogre': 1,\n",
      "          'hercs': 1,\n",
      "          'battle': 1,\n",
      "          'hydra': 1,\n",
      "          'ni': 1,\n",
      "          'rest': 1,\n",
      "          'case': 1,\n",
      "          'characters': 1,\n",
      "          'stink': 1,\n",
      "          'none': 1,\n",
      "          'remotely': 1,\n",
      "          'interesting': 1,\n",
      "          'film': 1,\n",
      "          'becomes': 1,\n",
      "          'race': 1,\n",
      "          'outbland': 1,\n",
      "          'others': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'tie': 1,\n",
      "          'win': 1,\n",
      "          'nthat': 1,\n",
      "          'dragons': 1,\n",
      "          'comedy': 1,\n",
      "          'shtick': 1,\n",
      "          'awfully': 1,\n",
      "          'cloying': 1,\n",
      "          'shows': 1,\n",
      "          'signs': 1,\n",
      "          'pulse': 1,\n",
      "          'nat': 1,\n",
      "          'fans': 1,\n",
      "          'early90s': 1,\n",
      "          'tgif': 1,\n",
      "          'television': 1,\n",
      "          'lineup': 1,\n",
      "          'thrilled': 1,\n",
      "          'jaleel': 1,\n",
      "          'urkel': 1,\n",
      "          'white': 1,\n",
      "          'bronson': 1,\n",
      "          'balki': 1,\n",
      "          'pinchot': 1,\n",
      "          'sharing': 1,\n",
      "          'na': 1,\n",
      "          'scenes': 1,\n",
      "          'nicely': 1,\n",
      "          'realized': 1,\n",
      "          'im': 1,\n",
      "          'loss': 1,\n",
      "          'recall': 1,\n",
      "          'enough': 1,\n",
      "          'specific': 1,\n",
      "          'actors': 1,\n",
      "          'providing': 1,\n",
      "          'voice': 1,\n",
      "          'talent': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'paired': 1,\n",
      "          'singers': 1,\n",
      "          'dont': 1,\n",
      "          'sound': 1,\n",
      "          'thing': 1,\n",
      "          'like': 1,\n",
      "          'big': 1,\n",
      "          'musical': 1,\n",
      "          'moments': 1,\n",
      "          'jane': 1,\n",
      "          'seymour': 1,\n",
      "          'celine': 1,\n",
      "          'dion': 1,\n",
      "          'nbut': 1,\n",
      "          'must': 1,\n",
      "          'strain': 1,\n",
      "          'good': 1,\n",
      "          'naside': 1,\n",
      "          'fact': 1,\n",
      "          'children': 1,\n",
      "          'probably': 1,\n",
      "          'bored': 1,\n",
      "          'watching': 1,\n",
      "          'adults': 1,\n",
      "          'grievous': 1,\n",
      "          'error': 1,\n",
      "          'complete': 1,\n",
      "          'lack': 1,\n",
      "          'nand': 1,\n",
      "          'learn': 1,\n",
      "          'goes': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'stalked': 6,\n",
      "          'daryl': 6,\n",
      "          'stalker': 6,\n",
      "          'nstalked': 5,\n",
      "          'though': 5,\n",
      "          'brooke': 5,\n",
      "          'even': 4,\n",
      "          'house': 4,\n",
      "          'another': 3,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'story': 3,\n",
      "          'course': 3,\n",
      "          'obvious': 3,\n",
      "          'door': 3,\n",
      "          'man': 2,\n",
      "          'boy': 2,\n",
      "          'restauranteur': 2,\n",
      "          'pictures': 2,\n",
      "          'type': 2,\n",
      "          'film': 2,\n",
      "          'may': 2,\n",
      "          'typically': 2,\n",
      "          'stars': 2,\n",
      "          'nudity': 2,\n",
      "          'cable': 2,\n",
      "          'psycho': 2,\n",
      "          'rejected': 2,\n",
      "          'much': 2,\n",
      "          'suspense': 2,\n",
      "          'opening': 2,\n",
      "          'credits': 2,\n",
      "          'narrator': 2,\n",
      "          'stalkers': 2,\n",
      "          'actor': 2,\n",
      "          'underwood': 2,\n",
      "          'nof': 2,\n",
      "          'nif': 2,\n",
      "          'movie': 2,\n",
      "          'bit': 2,\n",
      "          'victim': 2,\n",
      "          'around': 2,\n",
      "          'tries': 2,\n",
      "          'plans': 2,\n",
      "          'pet': 2,\n",
      "          'found': 2,\n",
      "          'guess': 2,\n",
      "          'adequate': 2,\n",
      "          'bad': 2,\n",
      "          'either': 2,\n",
      "          'dabo': 2,\n",
      "          'ditzy': 2,\n",
      "          'toolbox': 2,\n",
      "          'front': 2,\n",
      "          'synopsis': 1,\n",
      "          'mentally': 1,\n",
      "          'unstable': 1,\n",
      "          'undergoing': 1,\n",
      "          'psychotherapy': 1,\n",
      "          'saves': 1,\n",
      "          'potentially': 1,\n",
      "          'fatal': 1,\n",
      "          'accident': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'boys': 1,\n",
      "          'mother': 1,\n",
      "          'fledgling': 1,\n",
      "          'nunsuccessfully': 1,\n",
      "          'attempting': 1,\n",
      "          'gain': 1,\n",
      "          'womans': 1,\n",
      "          'favor': 1,\n",
      "          'takes': 1,\n",
      "          'kills': 1,\n",
      "          'number': 1,\n",
      "          'people': 1,\n",
      "          'way': 1,\n",
      "          'ncomments': 1,\n",
      "          'yet': 1,\n",
      "          'seemingly': 1,\n",
      "          'endless': 1,\n",
      "          'string': 1,\n",
      "          'spurnedpsychosgettingtheirrevenge': 1,\n",
      "          'movies': 1,\n",
      "          'stable': 1,\n",
      "          'category': 1,\n",
      "          '1990s': 1,\n",
      "          'industry': 1,\n",
      "          'theatrical': 1,\n",
      "          'directtovideo': 1,\n",
      "          'ntheir': 1,\n",
      "          'proliferation': 1,\n",
      "          'due': 1,\n",
      "          'part': 1,\n",
      "          'fact': 1,\n",
      "          'theyre': 1,\n",
      "          'inexpensive': 1,\n",
      "          'produce': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'big': 1,\n",
      "          'name': 1,\n",
      "          'serve': 1,\n",
      "          'vehicles': 1,\n",
      "          'flash': 1,\n",
      "          'allowing': 1,\n",
      "          'frequent': 1,\n",
      "          'latenight': 1,\n",
      "          'television': 1,\n",
      "          'wavers': 1,\n",
      "          'slightly': 1,\n",
      "          'norm': 1,\n",
      "          'respect': 1,\n",
      "          'never': 1,\n",
      "          'actually': 1,\n",
      "          'affair': 1,\n",
      "          'contrary': 1,\n",
      "          'hes': 1,\n",
      "          'rather': 1,\n",
      "          'quickly': 1,\n",
      "          'exlover': 1,\n",
      "          'exwife': 1,\n",
      "          'exhusband': 1,\n",
      "          'nother': 1,\n",
      "          'redundant': 1,\n",
      "          'entry': 1,\n",
      "          'doomed': 1,\n",
      "          'collect': 1,\n",
      "          'dust': 1,\n",
      "          'video': 1,\n",
      "          'shelves': 1,\n",
      "          'viewed': 1,\n",
      "          'midnight': 1,\n",
      "          'provide': 1,\n",
      "          'sets': 1,\n",
      "          'ninterspersed': 1,\n",
      "          'throughout': 1,\n",
      "          'instance': 1,\n",
      "          'serioussounding': 1,\n",
      "          'spouts': 1,\n",
      "          'statistics': 1,\n",
      "          'ponders': 1,\n",
      "          'cause': 1,\n",
      "          'stalk': 1,\n",
      "          'implicitly': 1,\n",
      "          'implied': 1,\n",
      "          'men': 1,\n",
      "          'shown': 1,\n",
      "          'screen': 1,\n",
      "          'nafter': 1,\n",
      "          'snapshot': 1,\n",
      "          'jay': 1,\n",
      "          'appears': 1,\n",
      "          'states': 1,\n",
      "          'gleason': 1,\n",
      "          'tells': 1,\n",
      "          'audience': 1,\n",
      "          'really': 1,\n",
      "          'daniels': 1,\n",
      "          'meant': 1,\n",
      "          'called': 1,\n",
      "          'nokay': 1,\n",
      "          'know': 1,\n",
      "          'starts': 1,\n",
      "          'guesswork': 1,\n",
      "          'required': 1,\n",
      "          'proceeds': 1,\n",
      "          'begins': 1,\n",
      "          'sequence': 1,\n",
      "          'contrived': 1,\n",
      "          'quite': 1,\n",
      "          'brings': 1,\n",
      "          'together': 1,\n",
      "          'ndaryl': 1,\n",
      "          'obsesses': 1,\n",
      "          'follows': 1,\n",
      "          'woo': 1,\n",
      "          'nultimately': 1,\n",
      "          'become': 1,\n",
      "          'desperate': 1,\n",
      "          'elaborate': 1,\n",
      "          'nthese': 1,\n",
      "          'include': 1,\n",
      "          'alltime': 1,\n",
      "          'psychoinlove': 1,\n",
      "          'cliche': 1,\n",
      "          'murdered': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'genres': 1,\n",
      "          'films': 1,\n",
      "          'require': 1,\n",
      "          'dead': 1,\n",
      "          'exception': 1,\n",
      "          'cat': 1,\n",
      "          'time': 1,\n",
      "          'shower': 1,\n",
      "          'nevents': 1,\n",
      "          'like': 1,\n",
      "          'lead': 1,\n",
      "          'inevitable': 1,\n",
      "          'showdown': 1,\n",
      "          'survives': 1,\n",
      "          'invariably': 1,\n",
      "          'always': 1,\n",
      "          'youll': 1,\n",
      "          'conclusion': 1,\n",
      "          'turkey': 1,\n",
      "          'nstalkeds': 1,\n",
      "          'cast': 1,\n",
      "          'uniformly': 1,\n",
      "          'anything': 1,\n",
      "          'write': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'home': 1,\n",
      "          'also': 1,\n",
      "          'njay': 1,\n",
      "          'turns': 1,\n",
      "          'toward': 1,\n",
      "          'melodrama': 1,\n",
      "          'nhe': 1,\n",
      "          'overdoes': 1,\n",
      "          'words': 1,\n",
      "          'still': 1,\n",
      "          'manages': 1,\n",
      "          'creepy': 1,\n",
      "          'enough': 1,\n",
      "          'pass': 1,\n",
      "          'demands': 1,\n",
      "          'nmaryam': 1,\n",
      "          'close': 1,\n",
      "          'star': 1,\n",
      "          'played': 1,\n",
      "          'bond': 1,\n",
      "          'chick': 1,\n",
      "          'living': 1,\n",
      "          'daylights': 1,\n",
      "          'equally': 1,\n",
      "          'title': 1,\n",
      "          'seems': 1,\n",
      "          'times': 1,\n",
      "          'strong': 1,\n",
      "          'independent': 1,\n",
      "          'businessowner': 1,\n",
      "          'nbrooke': 1,\n",
      "          'needs': 1,\n",
      "          'however': 1,\n",
      "          'plot': 1,\n",
      "          'proceed': 1,\n",
      "          'ntoward': 1,\n",
      "          'end': 1,\n",
      "          'example': 1,\n",
      "          'suspicions': 1,\n",
      "          'nto': 1,\n",
      "          'ensure': 1,\n",
      "          'wont': 1,\n",
      "          'use': 1,\n",
      "          'excuse': 1,\n",
      "          'see': 1,\n",
      "          'decides': 1,\n",
      "          'return': 1,\n",
      "          'left': 1,\n",
      "          'place': 1,\n",
      "          'ndoes': 1,\n",
      "          'leave': 1,\n",
      "          'answers': 1,\n",
      "          'nshe': 1,\n",
      "          'opens': 1,\n",
      "          'wanders': 1,\n",
      "          'nwhen': 1,\n",
      "          'returns': 1,\n",
      "          'enters': 1,\n",
      "          'heroine': 1,\n",
      "          'danger': 1,\n",
      "          'nsomehow': 1,\n",
      "          'car': 1,\n",
      "          'parked': 1,\n",
      "          'right': 1,\n",
      "          'oblivious': 1,\n",
      "          'presence': 1,\n",
      "          'inside': 1,\n",
      "          'whole': 1,\n",
      "          'episode': 1,\n",
      "          'places': 1,\n",
      "          'incredible': 1,\n",
      "          'strain': 1,\n",
      "          'audiences': 1,\n",
      "          'suspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'questions': 1,\n",
      "          'validity': 1,\n",
      "          'characters': 1,\n",
      "          'intelligence': 1,\n",
      "          'receives': 1,\n",
      "          'two': 1,\n",
      "          'highly': 1,\n",
      "          'derivative': 1,\n",
      "          'somewhat': 1,\n",
      "          'boring': 1,\n",
      "          'watched': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'mostly': 1,\n",
      "          'several': 1,\n",
      "          'murder': 1,\n",
      "          'scenes': 1,\n",
      "          'brief': 1,\n",
      "          'strip': 1,\n",
      "          'bar': 1,\n",
      "          'offensive': 1,\n",
      "          'many': 1,\n",
      "          'thrillers': 1,\n",
      "          'genre': 1,\n",
      "          'youre': 1,\n",
      "          'mood': 1,\n",
      "          'good': 1,\n",
      "          'stake': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mars': 13,\n",
      "          'film': 7,\n",
      "          'ghosts': 7,\n",
      "          'precinct': 6,\n",
      "          'flashback': 6,\n",
      "          'carpenter': 5,\n",
      "          '4': 5,\n",
      "          'assault': 4,\n",
      "          '13': 4,\n",
      "          'horror': 4,\n",
      "          'many': 3,\n",
      "          'films': 3,\n",
      "          '0': 3,\n",
      "          'scenes': 3,\n",
      "          'something': 3,\n",
      "          'nghosts': 3,\n",
      "          'alien': 3,\n",
      "          'really': 3,\n",
      "          'changed': 3,\n",
      "          'time': 3,\n",
      "          'much': 3,\n",
      "          'nthe': 3,\n",
      "          'within': 3,\n",
      "          'better': 3,\n",
      "          '2176': 2,\n",
      "          'planet': 2,\n",
      "          'police': 2,\n",
      "          'face': 2,\n",
      "          'menace': 2,\n",
      "          'lot': 2,\n",
      "          'story': 2,\n",
      "          'njohn': 2,\n",
      "          'previous': 2,\n",
      "          'fight': 2,\n",
      "          'make': 2,\n",
      "          'movie': 2,\n",
      "          'humans': 2,\n",
      "          'surprisingly': 2,\n",
      "          'made': 2,\n",
      "          'pieces': 2,\n",
      "          'nit': 2,\n",
      "          'good': 2,\n",
      "          'takes': 2,\n",
      "          'place': 2,\n",
      "          'nsociety': 2,\n",
      "          'little': 2,\n",
      "          'women': 2,\n",
      "          'control': 2,\n",
      "          'carpenters': 2,\n",
      "          '9': 2,\n",
      "          'somewhat': 2,\n",
      "          'martian': 2,\n",
      "          'mining': 2,\n",
      "          'ninstead': 2,\n",
      "          'criminal': 2,\n",
      "          'behave': 2,\n",
      "          'entirely': 2,\n",
      "          'night': 2,\n",
      "          'red': 2,\n",
      "          'give': 2,\n",
      "          'looks': 2,\n",
      "          'mission': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'taking': 1,\n",
      "          'custody': 1,\n",
      "          'accused': 1,\n",
      "          'murderer': 1,\n",
      "          'title': 1,\n",
      "          'nthere': 1,\n",
      "          'fighting': 1,\n",
      "          'whole': 1,\n",
      "          'otherwise': 1,\n",
      "          'reprises': 1,\n",
      "          'ideas': 1,\n",
      "          'especially': 1,\n",
      "          'new': 1,\n",
      "          'comes': 1,\n",
      "          'homage': 1,\n",
      "          'n': 1,\n",
      "          'apparently': 1,\n",
      "          'believes': 1,\n",
      "          'action': 1,\n",
      "          'people': 1,\n",
      "          'horrible': 1,\n",
      "          'nfor': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'supposedly': 1,\n",
      "          'expert': 1,\n",
      "          'bad': 1,\n",
      "          'mistake': 1,\n",
      "          'called': 1,\n",
      "          'drawn': 1,\n",
      "          'lowpowered': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'anybody': 1,\n",
      "          'john': 1,\n",
      "          'would': 1,\n",
      "          'grounds': 1,\n",
      "          'sue': 1,\n",
      "          'nthis': 1,\n",
      "          'chock': 1,\n",
      "          'full': 1,\n",
      "          'taken': 1,\n",
      "          'thing': 1,\n",
      "          'prince': 1,\n",
      "          'darkness': 1,\n",
      "          'fact': 1,\n",
      "          'surprising': 1,\n",
      "          'managed': 1,\n",
      "          'fit': 1,\n",
      "          'work': 1,\n",
      "          'admittedly': 1,\n",
      "          'novel': 1,\n",
      "          'way': 1,\n",
      "          'nbut': 1,\n",
      "          'still': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'experience': 1,\n",
      "          'year': 1,\n",
      "          'nmars': 1,\n",
      "          'mostly': 1,\n",
      "          'terraformed': 1,\n",
      "          'walk': 1,\n",
      "          'surface': 1,\n",
      "          'without': 1,\n",
      "          'breathing': 1,\n",
      "          'gear': 1,\n",
      "          'budget': 1,\n",
      "          'never': 1,\n",
      "          'mentioned': 1,\n",
      "          'gravity': 1,\n",
      "          'increased': 1,\n",
      "          'somehow': 1,\n",
      "          'earthnormal': 1,\n",
      "          'making': 1,\n",
      "          'easier': 1,\n",
      "          'bit': 1,\n",
      "          'advanced': 1,\n",
      "          'napparently': 1,\n",
      "          'culture': 1,\n",
      "          'positions': 1,\n",
      "          'nand': 1,\n",
      "          'view': 1,\n",
      "          'mess': 1,\n",
      "          'things': 1,\n",
      "          'stagnated': 1,\n",
      "          'female': 1,\n",
      "          'beyond': 1,\n",
      "          'minor': 1,\n",
      "          'technological': 1,\n",
      "          'advances': 1,\n",
      "          'society': 1,\n",
      "          'less': 1,\n",
      "          '175': 1,\n",
      "          'years': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'change': 1,\n",
      "          'ten': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'common': 1,\n",
      "          'except': 1,\n",
      "          'yes': 1,\n",
      "          'replaced': 1,\n",
      "          'tacky': 1,\n",
      "          'looking': 1,\n",
      "          'rundown': 1,\n",
      "          'colony': 1,\n",
      "          'napolean': 1,\n",
      "          'wilson': 1,\n",
      "          'desolation': 1,\n",
      "          'williams': 1,\n",
      "          'facing': 1,\n",
      "          'hoodlums': 1,\n",
      "          'automatic': 1,\n",
      "          'weapons': 1,\n",
      "          'well': 1,\n",
      "          'nbecause': 1,\n",
      "          'nature': 1,\n",
      "          'manner': 1,\n",
      "          'essentially': 1,\n",
      "          'human': 1,\n",
      "          'savages': 1,\n",
      "          'another': 1,\n",
      "          'lapse': 1,\n",
      "          'imagination': 1,\n",
      "          'told': 1,\n",
      "          'filmed': 1,\n",
      "          'almost': 1,\n",
      "          'tones': 1,\n",
      "          'yellow': 1,\n",
      "          'black': 1,\n",
      "          'ncarpenter': 1,\n",
      "          'manages': 1,\n",
      "          'us': 1,\n",
      "          'powerful': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'showing': 1,\n",
      "          'train': 1,\n",
      "          'rushing': 1,\n",
      "          'sound': 1,\n",
      "          'music': 1,\n",
      "          'heavy': 1,\n",
      "          'beat': 1,\n",
      "          'nsadly': 1,\n",
      "          'follows': 1,\n",
      "          'buildup': 1,\n",
      "          'terror': 1,\n",
      "          'creates': 1,\n",
      "          'like': 1,\n",
      "          'fugitive': 1,\n",
      "          'wannabes': 1,\n",
      "          'rock': 1,\n",
      "          'band': 1,\n",
      "          'kiss': 1,\n",
      "          'nhis': 1,\n",
      "          'idea': 1,\n",
      "          'building': 1,\n",
      "          'suspense': 1,\n",
      "          'bunch': 1,\n",
      "          'sudden': 1,\n",
      "          'jump': 1,\n",
      "          'sucker': 1,\n",
      "          'viewer': 1,\n",
      "          'thinking': 1,\n",
      "          'scary': 1,\n",
      "          'happening': 1,\n",
      "          'prove': 1,\n",
      "          'boring': 1,\n",
      "          'nthese': 1,\n",
      "          'standard': 1,\n",
      "          'haunted': 1,\n",
      "          'house': 1,\n",
      "          'shock': 1,\n",
      "          'effects': 1,\n",
      "          'require': 1,\n",
      "          'great': 1,\n",
      "          'talent': 1,\n",
      "          'audience': 1,\n",
      "          'nsomewhat': 1,\n",
      "          'newer': 1,\n",
      "          'also': 1,\n",
      "          'unimpressive': 1,\n",
      "          'cgi': 1,\n",
      "          'digital': 1,\n",
      "          'decapitations': 1,\n",
      "          'fights': 1,\n",
      "          'nwithin': 1,\n",
      "          'short': 1,\n",
      "          'stretch': 1,\n",
      "          'seen': 1,\n",
      "          'release': 1,\n",
      "          'nafter': 1,\n",
      "          'panned': 1,\n",
      "          'reviewers': 1,\n",
      "          'goes': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '10': 1,\n",
      "          'nfollowing': 1,\n",
      "          'showed': 1,\n",
      "          'wife': 1,\n",
      "          'liked': 1,\n",
      "          'moderately': 1,\n",
      "          'classic': 1,\n",
      "          'nher': 1,\n",
      "          'comment': 1,\n",
      "          'seeing': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'8mm': 6,\n",
      "          'films': 4,\n",
      "          'like': 4,\n",
      "          'schumacher': 4,\n",
      "          'nis': 3,\n",
      "          'sick': 3,\n",
      "          'people': 3,\n",
      "          'see': 3,\n",
      "          'snuff': 3,\n",
      "          'nthe': 3,\n",
      "          'film': 3,\n",
      "          'rather': 3,\n",
      "          'really': 2,\n",
      "          'hardcore': 2,\n",
      "          'murder': 2,\n",
      "          'influence': 2,\n",
      "          'want': 2,\n",
      "          'nim': 2,\n",
      "          'talking': 2,\n",
      "          'batman': 2,\n",
      "          'time': 2,\n",
      "          'certainly': 2,\n",
      "          'nand': 2,\n",
      "          'unpleasant': 2,\n",
      "          'nthere': 2,\n",
      "          'life': 2,\n",
      "          'cage': 2,\n",
      "          'welles': 2,\n",
      "          'nwelles': 2,\n",
      "          'look': 2,\n",
      "          'face': 2,\n",
      "          'ask': 1,\n",
      "          'eight': 1,\n",
      "          'millimeter': 1,\n",
      "          'wholesome': 1,\n",
      "          'surveillance': 1,\n",
      "          'man': 1,\n",
      "          'loses': 1,\n",
      "          'sight': 1,\n",
      "          'values': 1,\n",
      "          'becoming': 1,\n",
      "          'enmeshed': 1,\n",
      "          'seedy': 1,\n",
      "          'sleazy': 1,\n",
      "          'underworld': 1,\n",
      "          'pornography': 1,\n",
      "          'business': 1,\n",
      "          'bubbling': 1,\n",
      "          'beneath': 1,\n",
      "          'surface': 1,\n",
      "          'bigtown': 1,\n",
      "          'americana': 1,\n",
      "          'theres': 1,\n",
      "          'sordid': 1,\n",
      "          'world': 1,\n",
      "          'depraved': 1,\n",
      "          'wont': 1,\n",
      "          'necessarily': 1,\n",
      "          'stop': 1,\n",
      "          'short': 1,\n",
      "          'order': 1,\n",
      "          'satisfy': 1,\n",
      "          'twisted': 1,\n",
      "          'desires': 1,\n",
      "          'position': 1,\n",
      "          'making': 1,\n",
      "          'kinds': 1,\n",
      "          'demented': 1,\n",
      "          'supposed': 1,\n",
      "          'documentaries': 1,\n",
      "          'victims': 1,\n",
      "          'brutalized': 1,\n",
      "          'killed': 1,\n",
      "          'camera': 1,\n",
      "          'director': 1,\n",
      "          'joel': 1,\n",
      "          'nwith': 1,\n",
      "          'recent': 1,\n",
      "          'run': 1,\n",
      "          'big': 1,\n",
      "          'budget': 1,\n",
      "          'movies': 1,\n",
      "          'credit': 1,\n",
      "          'robin': 1,\n",
      "          'kill': 1,\n",
      "          'forever': 1,\n",
      "          'client': 1,\n",
      "          'kind': 1,\n",
      "          'something': 1,\n",
      "          'nprobably': 1,\n",
      "          'first': 1,\n",
      "          'twothirds': 1,\n",
      "          'unwind': 1,\n",
      "          'fairly': 1,\n",
      "          'conventional': 1,\n",
      "          'missing': 1,\n",
      "          'persons': 1,\n",
      "          'drama': 1,\n",
      "          'albeit': 1,\n",
      "          'particularly': 1,\n",
      "          'unsavory': 1,\n",
      "          'core': 1,\n",
      "          'nthen': 1,\n",
      "          'threatening': 1,\n",
      "          'along': 1,\n",
      "          'explodes': 1,\n",
      "          'violence': 1,\n",
      "          'think': 1,\n",
      "          'finally': 1,\n",
      "          'tags': 1,\n",
      "          'ridiculous': 1,\n",
      "          'selfrighteous': 1,\n",
      "          'finale': 1,\n",
      "          'drags': 1,\n",
      "          'whole': 1,\n",
      "          'experience': 1,\n",
      "          'even': 1,\n",
      "          'ntrust': 1,\n",
      "          'better': 1,\n",
      "          'ways': 1,\n",
      "          'waste': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'nnicolas': 1,\n",
      "          'snake': 1,\n",
      "          'eyes': 1,\n",
      "          'plays': 1,\n",
      "          'private': 1,\n",
      "          'investigator': 1,\n",
      "          'tom': 1,\n",
      "          'hired': 1,\n",
      "          'wealthy': 1,\n",
      "          'philadelphia': 1,\n",
      "          'widow': 1,\n",
      "          'determine': 1,\n",
      "          'whether': 1,\n",
      "          'reel': 1,\n",
      "          'found': 1,\n",
      "          'late': 1,\n",
      "          'husbands': 1,\n",
      "          'safe': 1,\n",
      "          'documents': 1,\n",
      "          'young': 1,\n",
      "          'girls': 1,\n",
      "          'goes': 1,\n",
      "          'assignment': 1,\n",
      "          'matteroffactly': 1,\n",
      "          'pieces': 1,\n",
      "          'puzzle': 1,\n",
      "          'fall': 1,\n",
      "          'place': 1,\n",
      "          'neatly': 1,\n",
      "          'almost': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'specialized': 1,\n",
      "          'skills': 1,\n",
      "          'training': 1,\n",
      "          'makes': 1,\n",
      "          'easy': 1,\n",
      "          'cops': 1,\n",
      "          'obviously': 1,\n",
      "          'never': 1,\n",
      "          'toilet': 1,\n",
      "          'tanks': 1,\n",
      "          'clues': 1,\n",
      "          'deeper': 1,\n",
      "          'digs': 1,\n",
      "          'investigation': 1,\n",
      "          'obsessed': 1,\n",
      "          'becomes': 1,\n",
      "          'george': 1,\n",
      "          'c': 1,\n",
      "          'scott': 1,\n",
      "          'paul': 1,\n",
      "          'schraders': 1,\n",
      "          'noccasionally': 1,\n",
      "          'little': 1,\n",
      "          'flickering': 1,\n",
      "          'sound': 1,\n",
      "          'whirs': 1,\n",
      "          'head': 1,\n",
      "          'sprockets': 1,\n",
      "          'winding': 1,\n",
      "          'projector': 1,\n",
      "          'reminding': 1,\n",
      "          'task': 1,\n",
      "          'hints': 1,\n",
      "          'taking': 1,\n",
      "          'toll': 1,\n",
      "          'lovely': 1,\n",
      "          'wife': 1,\n",
      "          'played': 1,\n",
      "          'catherine': 1,\n",
      "          'keener': 1,\n",
      "          'frustrated': 1,\n",
      "          'husband': 1,\n",
      "          'spending': 1,\n",
      "          'cleveland': 1,\n",
      "          'ugly': 1,\n",
      "          'splitlevel': 1,\n",
      "          'home': 1,\n",
      "          'harrisburg': 1,\n",
      "          'pa': 1,\n",
      "          'n': 1,\n",
      "          'doesnt': 1,\n",
      "          'condemn': 1,\n",
      "          'condone': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'exploits': 1,\n",
      "          'irony': 1,\n",
      "          'course': 1,\n",
      "          'seven': 1,\n",
      "          'scribe': 1,\n",
      "          'andrew': 1,\n",
      "          'kevin': 1,\n",
      "          'walkers': 1,\n",
      "          'vision': 1,\n",
      "          'lane': 1,\n",
      "          'limited': 1,\n",
      "          'show': 1,\n",
      "          'rrated': 1,\n",
      "          'firstrun': 1,\n",
      "          'hollywood': 1,\n",
      "          'product': 1,\n",
      "          'nso': 1,\n",
      "          'snippets': 1,\n",
      "          'lot': 1,\n",
      "          'footage': 1,\n",
      "          'nicolas': 1,\n",
      "          'covering': 1,\n",
      "          'horror': 1,\n",
      "          'nlater': 1,\n",
      "          'turn': 1,\n",
      "          'joaquin': 1,\n",
      "          'phoenix': 1,\n",
      "          'whos': 1,\n",
      "          'quite': 1,\n",
      "          'good': 1,\n",
      "          'far': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'adult': 1,\n",
      "          'bookstore': 1,\n",
      "          'flunky': 1,\n",
      "          'max': 1,\n",
      "          'california': 1,\n",
      "          'cover': 1,\n",
      "          'horrid': 1,\n",
      "          'thing': 1,\n",
      "          'screened': 1,\n",
      "          'nall': 1,\n",
      "          'get': 1,\n",
      "          'familiar': 1,\n",
      "          'yet': 1,\n",
      "          'offensive': 1,\n",
      "          'revelation': 1,\n",
      "          'sexual': 1,\n",
      "          'deviants': 1,\n",
      "          'indeed': 1,\n",
      "          'monsters': 1,\n",
      "          'everyday': 1,\n",
      "          'nneither': 1,\n",
      "          'super': 1,\n",
      "          'standard': 1,\n",
      "          'shocking': 1,\n",
      "          'banality': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'grant': 6,\n",
      "          'grants': 5,\n",
      "          'months': 4,\n",
      "          'annoying': 4,\n",
      "          'nervous': 4,\n",
      "          'nine': 3,\n",
      "          'laughs': 3,\n",
      "          'hugh': 3,\n",
      "          'smiles': 3,\n",
      "          'slapstick': 3,\n",
      "          '60': 3,\n",
      "          'pregnant': 3,\n",
      "          'asshole': 3,\n",
      "          'jokes': 3,\n",
      "          'thats': 2,\n",
      "          'even': 2,\n",
      "          'nits': 2,\n",
      "          'terrible': 2,\n",
      "          'mess': 2,\n",
      "          'referring': 2,\n",
      "          'nnot': 2,\n",
      "          'flutters': 2,\n",
      "          'pass': 2,\n",
      "          'nbut': 2,\n",
      "          'since': 2,\n",
      "          'head': 2,\n",
      "          'scene': 2,\n",
      "          'paid': 2,\n",
      "          'included': 2,\n",
      "          'robin': 2,\n",
      "          'williams': 2,\n",
      "          'girlfriend': 2,\n",
      "          'exchange': 2,\n",
      "          'nnine': 2,\n",
      "          'humor': 2,\n",
      "          'nhugh': 2,\n",
      "          'plays': 2,\n",
      "          'child': 2,\n",
      "          'nso': 2,\n",
      "          'could': 2,\n",
      "          'unfunny': 2,\n",
      "          'nkid': 2,\n",
      "          'dads': 2,\n",
      "          'eyelashes': 2,\n",
      "          'smile': 2,\n",
      "          'ten': 2,\n",
      "          'year': 2,\n",
      "          'olds': 2,\n",
      "          'way': 2,\n",
      "          'nthe': 2,\n",
      "          'played': 2,\n",
      "          'arnold': 2,\n",
      "          'one': 2,\n",
      "          'character': 2,\n",
      "          'exactly': 1,\n",
      "          'long': 1,\n",
      "          'felt': 1,\n",
      "          'nthere': 1,\n",
      "          'werent': 1,\n",
      "          'starring': 1,\n",
      "          'man': 1,\n",
      "          'mr': 1,\n",
      "          'huge': 1,\n",
      "          'dork': 1,\n",
      "          'whole': 1,\n",
      "          'oralsexprostitution': 1,\n",
      "          'thing': 1,\n",
      "          'bugs': 1,\n",
      "          'fact': 1,\n",
      "          'adam': 1,\n",
      "          'sandlerannoying': 1,\n",
      "          'talking': 1,\n",
      "          'jim': 1,\n",
      "          'carreyannoying': 1,\n",
      "          'nsince': 1,\n",
      "          'eye': 1,\n",
      "          'acting': 1,\n",
      "          'hand': 1,\n",
      "          'really': 1,\n",
      "          'bad': 1,\n",
      "          'fistfight': 1,\n",
      "          'delivery': 1,\n",
      "          'room': 1,\n",
      "          'culminating': 1,\n",
      "          'joan': 1,\n",
      "          'cusacks': 1,\n",
      "          'lapa': 1,\n",
      "          'obscene': 1,\n",
      "          'double': 1,\n",
      "          'entendres': 1,\n",
      "          'obstetrician': 1,\n",
      "          'tells': 1,\n",
      "          'big': 1,\n",
      "          'pussy': 1,\n",
      "          'course': 1,\n",
      "          'size': 1,\n",
      "          'cat': 1,\n",
      "          'hairs': 1,\n",
      "          'coat': 1,\n",
      "          'nonetheless': 1,\n",
      "          'comedy': 1,\n",
      "          'predictable': 1,\n",
      "          'cookiecutter': 1,\n",
      "          'originality': 1,\n",
      "          'plot': 1,\n",
      "          'successful': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'nwhy': 1,\n",
      "          'psychologist': 1,\n",
      "          'scriptwriters': 1,\n",
      "          'inject': 1,\n",
      "          'following': 1,\n",
      "          'ngrant': 1,\n",
      "          'offers': 1,\n",
      "          'responds': 1,\n",
      "          'english': 1,\n",
      "          'accent': 1,\n",
      "          'ithinkiactuallyhave': 1,\n",
      "          'talent': 1,\n",
      "          'attitude': 1,\n",
      "          'possibly': 1,\n",
      "          'elaborate': 1,\n",
      "          '_huge_': 1,\n",
      "          'nmore': 1,\n",
      "          'like': 1,\n",
      "          'beside': 1,\n",
      "          'point': 1,\n",
      "          'includes': 1,\n",
      "          'many': 1,\n",
      "          'needlessly': 1,\n",
      "          'stupid': 1,\n",
      "          'get': 1,\n",
      "          'audience': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'shakes': 1,\n",
      "          'disbelief': 1,\n",
      "          'anyway': 1,\n",
      "          'finds': 1,\n",
      "          'usual': 1,\n",
      "          'reaction': 1,\n",
      "          'fluttered': 1,\n",
      "          'nthis': 1,\n",
      "          'paves': 1,\n",
      "          'every': 1,\n",
      "          'possible': 1,\n",
      "          'pregnancychild': 1,\n",
      "          'birth': 1,\n",
      "          'gag': 1,\n",
      "          'book': 1,\n",
      "          'especially': 1,\n",
      "          'equally': 1,\n",
      "          'friends': 1,\n",
      "          'wife': 1,\n",
      "          'also': 1,\n",
      "          'friend': 1,\n",
      "          'tom': 1,\n",
      "          'provides': 1,\n",
      "          'cacophonous': 1,\n",
      "          'none': 1,\n",
      "          'funny': 1,\n",
      "          'beats': 1,\n",
      "          'costumed': 1,\n",
      "          'arnie': 1,\n",
      "          'dinosaur': 1,\n",
      "          'draw': 1,\n",
      "          'parallels': 1,\n",
      "          'toy': 1,\n",
      "          'store': 1,\n",
      "          'interesting': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'hid': 1,\n",
      "          'away': 1,\n",
      "          'somewhere': 1,\n",
      "          'dreadful': 1,\n",
      "          'hideaway': 1,\n",
      "          'artist': 1,\n",
      "          'fear': 1,\n",
      "          'simultaneous': 1,\n",
      "          'longing': 1,\n",
      "          'commitment': 1,\n",
      "          'russian': 1,\n",
      "          'doctor': 1,\n",
      "          'recently': 1,\n",
      "          'decided': 1,\n",
      "          'switch': 1,\n",
      "          'veterinary': 1,\n",
      "          'medicine': 1,\n",
      "          'obstetrics': 1,\n",
      "          'much': 1,\n",
      "          'nhis': 1,\n",
      "          'onejoke': 1,\n",
      "          'old': 1,\n",
      "          'foreignguywhomispronouncesenglish': 1,\n",
      "          'stereotype': 1,\n",
      "          'someone': 1,\n",
      "          'say': 1,\n",
      "          'yakov': 1,\n",
      "          'smirnov': 1,\n",
      "          'nthats': 1,\n",
      "          'favorite': 1,\n",
      "          'vodka': 1,\n",
      "          'hence': 1,\n",
      "          'line': 1,\n",
      "          'time': 1,\n",
      "          'take': 1,\n",
      "          'look': 1,\n",
      "          'volvo': 1,\n",
      "          'another': 1,\n",
      "          'nasty': 1,\n",
      "          'unamusing': 1,\n",
      "          'joke': 1,\n",
      "          'except': 1,\n",
      "          'goes': 1,\n",
      "          'right': 1,\n",
      "          'heads': 1,\n",
      "          'adults': 1,\n",
      "          'simultaneously': 1,\n",
      "          'groan': 1,\n",
      "          'complete': 1,\n",
      "          'failure': 1,\n",
      "          'low': 1,\n",
      "          'intelligence': 1,\n",
      "          'high': 1,\n",
      "          'loud': 1,\n",
      "          'failed': 1,\n",
      "          'uninspired': 1,\n",
      "          'lunacy': 1,\n",
      "          'sunset': 1,\n",
      "          'boulevard': 1,\n",
      "          'arrest': 1,\n",
      "          'please': 1,\n",
      "          'caughtwithhispantsdown': 1,\n",
      "          'may': 1,\n",
      "          'bring': 1,\n",
      "          'people': 1,\n",
      "          'theaters': 1,\n",
      "          'certainly': 1,\n",
      "          'wont': 1,\n",
      "          'leave': 1,\n",
      "          'faces': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'neverything': 1,\n",
      "          'forced': 1,\n",
      "          'unauthentic': 1,\n",
      "          'anyone': 1,\n",
      "          'q': 1,\n",
      "          'nover': 1,\n",
      "          '80': 1,\n",
      "          'sorry': 1,\n",
      "          'know': 1,\n",
      "          'wasted': 1,\n",
      "          'money': 1,\n",
      "          'unfulfilled': 1,\n",
      "          'desire': 1,\n",
      "          'least': 1,\n",
      "          'didnt': 1,\n",
      "          'spend': 1,\n",
      "          'bucks': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'aberdeen': 7,\n",
      "          'skarsg': 5,\n",
      "          'tomas': 5,\n",
      "          'rd': 4,\n",
      "          'time': 3,\n",
      "          'kaisa': 3,\n",
      "          'rampling': 3,\n",
      "          'hospital': 3,\n",
      "          'movies': 3,\n",
      "          'nif': 3,\n",
      "          'signs': 3,\n",
      "          'wonders': 3,\n",
      "          'road': 2,\n",
      "          'trip': 2,\n",
      "          'drama': 2,\n",
      "          'strindberg': 2,\n",
      "          'relationships': 2,\n",
      "          'secrets': 2,\n",
      "          'unable': 2,\n",
      "          'far': 2,\n",
      "          'lena': 2,\n",
      "          'headey': 2,\n",
      "          'years': 2,\n",
      "          'even': 2,\n",
      "          'norway': 2,\n",
      "          'mother': 2,\n",
      "          'bed': 2,\n",
      "          'nin': 2,\n",
      "          'ndespite': 2,\n",
      "          'figure': 2,\n",
      "          'theyre': 2,\n",
      "          'naberdeen': 2,\n",
      "          'paying': 2,\n",
      "          'attention': 2,\n",
      "          'much': 2,\n",
      "          'nits': 2,\n",
      "          'film': 2,\n",
      "          'films': 2,\n",
      "          'nthe': 2,\n",
      "          'never': 2,\n",
      "          'call': 1,\n",
      "          'walking': 1,\n",
      "          'wounded': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nstellan': 1,\n",
      "          'plays': 1,\n",
      "          'convincingly': 1,\n",
      "          'zombified': 1,\n",
      "          'drunken': 1,\n",
      "          'loser': 1,\n",
      "          'difficult': 1,\n",
      "          'spend': 1,\n",
      "          'nearly': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'screen': 1,\n",
      "          'smelly': 1,\n",
      "          'boozedout': 1,\n",
      "          'presence': 1,\n",
      "          'nyet': 1,\n",
      "          'everreliable': 1,\n",
      "          'swedish': 1,\n",
      "          'actor': 1,\n",
      "          'adds': 1,\n",
      "          'depth': 1,\n",
      "          'significance': 1,\n",
      "          'otherwise': 1,\n",
      "          'plodding': 1,\n",
      "          'forgettable': 1,\n",
      "          'sentimental': 1,\n",
      "          'painfully': 1,\n",
      "          'mundane': 1,\n",
      "          'european': 1,\n",
      "          'nplaywright': 1,\n",
      "          'august': 1,\n",
      "          'built': 1,\n",
      "          'career': 1,\n",
      "          'families': 1,\n",
      "          'paralyzed': 1,\n",
      "          'express': 1,\n",
      "          'longings': 1,\n",
      "          'hour': 1,\n",
      "          'late': 1,\n",
      "          'nthats': 1,\n",
      "          'accurate': 1,\n",
      "          'reflection': 1,\n",
      "          'strives': 1,\n",
      "          'focusing': 1,\n",
      "          'pairing': 1,\n",
      "          'alcoholic': 1,\n",
      "          'father': 1,\n",
      "          'alienated': 1,\n",
      "          'openly': 1,\n",
      "          'hostile': 1,\n",
      "          'yuppie': 1,\n",
      "          'daughter': 1,\n",
      "          'gossip': 1,\n",
      "          'nthey': 1,\n",
      "          'havent': 1,\n",
      "          'spoken': 1,\n",
      "          'wouldnt': 1,\n",
      "          'making': 1,\n",
      "          'long': 1,\n",
      "          'scotland': 1,\n",
      "          'automobile': 1,\n",
      "          'werent': 1,\n",
      "          'kaisas': 1,\n",
      "          'charlotte': 1,\n",
      "          'sand': 1,\n",
      "          'rotting': 1,\n",
      "          'away': 1,\n",
      "          'cancer': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'twist': 1,\n",
      "          'days': 1,\n",
      "          'live': 1,\n",
      "          'n': 1,\n",
      "          'right': 1,\n",
      "          'ntoo': 1,\n",
      "          'blitzed': 1,\n",
      "          'step': 1,\n",
      "          'foot': 1,\n",
      "          'plane': 1,\n",
      "          'hits': 1,\n",
      "          'open': 1,\n",
      "          'nloathing': 1,\n",
      "          'make': 1,\n",
      "          'periodic': 1,\n",
      "          'stops': 1,\n",
      "          'puke': 1,\n",
      "          'dashboard': 1,\n",
      "          'pass': 1,\n",
      "          'whenever': 1,\n",
      "          'isnt': 1,\n",
      "          'muttering': 1,\n",
      "          'rotten': 1,\n",
      "          'kid': 1,\n",
      "          'turned': 1,\n",
      "          'sloshed': 1,\n",
      "          'viewpoint': 1,\n",
      "          'recognizes': 1,\n",
      "          'apple': 1,\n",
      "          'hasnt': 1,\n",
      "          'fallen': 1,\n",
      "          'tree': 1,\n",
      "          'nkaisa': 1,\n",
      "          'gets': 1,\n",
      "          'nosebleeds': 1,\n",
      "          'snorting': 1,\n",
      "          'coke': 1,\n",
      "          'sabotages': 1,\n",
      "          'personal': 1,\n",
      "          'indifference': 1,\n",
      "          'restrain': 1,\n",
      "          'quick': 1,\n",
      "          'vindictive': 1,\n",
      "          'temper': 1,\n",
      "          'naint': 1,\n",
      "          'pair': 1,\n",
      "          'nunable': 1,\n",
      "          'find': 1,\n",
      "          'true': 1,\n",
      "          'notes': 1,\n",
      "          'unspoken': 1,\n",
      "          'familial': 1,\n",
      "          'empathy': 1,\n",
      "          'onenote': 1,\n",
      "          'repetitively': 1,\n",
      "          'bitchy': 1,\n",
      "          'dialogue': 1,\n",
      "          'screenwriters': 1,\n",
      "          'kristin': 1,\n",
      "          'amundsen': 1,\n",
      "          'hans': 1,\n",
      "          'petter': 1,\n",
      "          'moland': 1,\n",
      "          'fabricate': 1,\n",
      "          'series': 1,\n",
      "          'contrivances': 1,\n",
      "          'propel': 1,\n",
      "          'events': 1,\n",
      "          'forward': 1,\n",
      "          'lost': 1,\n",
      "          'money': 1,\n",
      "          'roving': 1,\n",
      "          'street': 1,\n",
      "          'hooligans': 1,\n",
      "          'looking': 1,\n",
      "          'drunks': 1,\n",
      "          'kick': 1,\n",
      "          'around': 1,\n",
      "          'nosy': 1,\n",
      "          'cops': 1,\n",
      "          'flat': 1,\n",
      "          'tires': 1,\n",
      "          'schematic': 1,\n",
      "          'convenient': 1,\n",
      "          'narrative': 1,\n",
      "          'nby': 1,\n",
      "          'reach': 1,\n",
      "          'unveil': 1,\n",
      "          'dark': 1,\n",
      "          'past': 1,\n",
      "          'simplistic': 1,\n",
      "          'devices': 1,\n",
      "          'trivialize': 1,\n",
      "          'fatherdaughter': 1,\n",
      "          'conflict': 1,\n",
      "          'also': 1,\n",
      "          'mainstays': 1,\n",
      "          'many': 1,\n",
      "          'bad': 1,\n",
      "          'wannabe': 1,\n",
      "          'nthis': 1,\n",
      "          'revelation': 1,\n",
      "          'exists': 1,\n",
      "          'purely': 1,\n",
      "          'sake': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'else': 1,\n",
      "          'go': 1,\n",
      "          'nweak': 1,\n",
      "          'unimaginative': 1,\n",
      "          'casting': 1,\n",
      "          'thwarts': 1,\n",
      "          'pivotal': 1,\n",
      "          'role': 1,\n",
      "          'stronger': 1,\n",
      "          'actress': 1,\n",
      "          'perhaps': 1,\n",
      "          'could': 1,\n",
      "          'able': 1,\n",
      "          'coast': 1,\n",
      "          'performances': 1,\n",
      "          'moody': 1,\n",
      "          'haunting': 1,\n",
      "          'cinematography': 1,\n",
      "          'rendering': 1,\n",
      "          'pastoral': 1,\n",
      "          'ghost': 1,\n",
      "          'world': 1,\n",
      "          'reference': 1,\n",
      "          'certain': 1,\n",
      "          'superior': 1,\n",
      "          'american': 1,\n",
      "          'indie': 1,\n",
      "          'flick': 1,\n",
      "          'intentional': 1,\n",
      "          'nheadeys': 1,\n",
      "          'busy': 1,\n",
      "          'acting': 1,\n",
      "          'using': 1,\n",
      "          'face': 1,\n",
      "          'furrowed': 1,\n",
      "          'brow': 1,\n",
      "          'convey': 1,\n",
      "          'every': 1,\n",
      "          'last': 1,\n",
      "          'twitch': 1,\n",
      "          'insouciance': 1,\n",
      "          'maybe': 1,\n",
      "          'shed': 1,\n",
      "          'less': 1,\n",
      "          'reveal': 1,\n",
      "          'worthwhile': 1,\n",
      "          'compare': 1,\n",
      "          'earlier': 1,\n",
      "          'released': 1,\n",
      "          '2001': 1,\n",
      "          'jonathan': 1,\n",
      "          'nossiters': 1,\n",
      "          'captivating': 1,\n",
      "          'played': 1,\n",
      "          'disturbed': 1,\n",
      "          'parental': 1,\n",
      "          'figures': 1,\n",
      "          'bound': 1,\n",
      "          'ceremonial': 1,\n",
      "          'wedlock': 1,\n",
      "          'differences': 1,\n",
      "          'way': 1,\n",
      "          'characters': 1,\n",
      "          'presented': 1,\n",
      "          'significant': 1,\n",
      "          'luminous': 1,\n",
      "          'diva': 1,\n",
      "          'preening': 1,\n",
      "          'static': 1,\n",
      "          'rds': 1,\n",
      "          'solid': 1,\n",
      "          'performance': 1,\n",
      "          'pathetic': 1,\n",
      "          'drunk': 1,\n",
      "          'given': 1,\n",
      "          'chance': 1,\n",
      "          'emote': 1,\n",
      "          'anything': 1,\n",
      "          'besides': 1,\n",
      "          'catatonic': 1,\n",
      "          'sorrow': 1,\n",
      "          'ntheres': 1,\n",
      "          'genuine': 1,\n",
      "          'ferocity': 1,\n",
      "          'sexually': 1,\n",
      "          'charged': 1,\n",
      "          'frisson': 1,\n",
      "          'understated': 1,\n",
      "          'confrontations': 1,\n",
      "          'allowing': 1,\n",
      "          'suggest': 1,\n",
      "          'gray': 1,\n",
      "          'zone': 1,\n",
      "          'complications': 1,\n",
      "          'accompany': 1,\n",
      "          'torn': 1,\n",
      "          'romance': 1,\n",
      "          'stifled': 1,\n",
      "          'curiosity': 1,\n",
      "          'nnossiters': 1,\n",
      "          'thoroughly': 1,\n",
      "          'explores': 1,\n",
      "          'neurotic': 1,\n",
      "          'territory': 1,\n",
      "          'addition': 1,\n",
      "          'delving': 1,\n",
      "          'americanization': 1,\n",
      "          'greece': 1,\n",
      "          'use': 1,\n",
      "          'mysticism': 1,\n",
      "          'illusion': 1,\n",
      "          'deflect': 1,\n",
      "          'pain': 1,\n",
      "          'sometimes': 1,\n",
      "          'feels': 1,\n",
      "          'overloaded': 1,\n",
      "          'ideas': 1,\n",
      "          'least': 1,\n",
      "          'willing': 1,\n",
      "          'stretch': 1,\n",
      "          'beyond': 1,\n",
      "          'weve': 1,\n",
      "          'come': 1,\n",
      "          'expect': 1,\n",
      "          'traditional': 1,\n",
      "          'half': 1,\n",
      "          'ambitious': 1,\n",
      "          'content': 1,\n",
      "          'sleepwalk': 1,\n",
      "          'rhythms': 1,\n",
      "          'timing': 1,\n",
      "          'nwhen': 1,\n",
      "          'character': 1,\n",
      "          'driven': 1,\n",
      "          'stories': 1,\n",
      "          'stop': 1,\n",
      "          'complexities': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'depressing': 1,\n",
      "          'answer': 1,\n",
      "          'found': 1,\n",
      "          'lawrence': 1,\n",
      "          'kasdans': 1,\n",
      "          'trite': 1,\n",
      "          'occasionally': 1,\n",
      "          'useful': 1,\n",
      "          'grand': 1,\n",
      "          'canyon': 1,\n",
      "          'steve': 1,\n",
      "          'martins': 1,\n",
      "          'hollywood': 1,\n",
      "          'mogul': 1,\n",
      "          'pronounces': 1,\n",
      "          'lifes': 1,\n",
      "          'riddles': 1,\n",
      "          'answered': 1,\n",
      "          'neven': 1,\n",
      "          'foreign': 1,\n",
      "          'taking': 1,\n",
      "          'advice': 1,\n",
      "          'heart': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'film': 7,\n",
      "          'bad': 5,\n",
      "          'nthe': 5,\n",
      "          'man': 4,\n",
      "          'guy': 4,\n",
      "          'top': 4,\n",
      "          'dude': 3,\n",
      "          'one': 3,\n",
      "          'say': 3,\n",
      "          'chambers': 3,\n",
      "          'sequences': 3,\n",
      "          'much': 3,\n",
      "          'ni': 3,\n",
      "          'n': 3,\n",
      "          'plot': 2,\n",
      "          'french': 2,\n",
      "          'tim': 2,\n",
      "          'roth': 2,\n",
      "          'musketeer': 2,\n",
      "          'old': 2,\n",
      "          'years': 2,\n",
      "          'well': 2,\n",
      "          'know': 2,\n",
      "          'rest': 2,\n",
      "          'pretty': 2,\n",
      "          'see': 2,\n",
      "          'nokay': 2,\n",
      "          'first': 2,\n",
      "          'plain': 2,\n",
      "          'boring': 2,\n",
      "          'nits': 2,\n",
      "          'entirely': 2,\n",
      "          'next': 2,\n",
      "          'main': 2,\n",
      "          'justin': 2,\n",
      "          'think': 2,\n",
      "          'suvari': 2,\n",
      "          'comes': 2,\n",
      "          'nnow': 2,\n",
      "          'seen': 2,\n",
      "          'something': 2,\n",
      "          'times': 2,\n",
      "          'please': 2,\n",
      "          'day': 2,\n",
      "          'american': 2,\n",
      "          'romantic': 2,\n",
      "          'stretch': 2,\n",
      "          'thing': 2,\n",
      "          'certain': 2,\n",
      "          'scene': 2,\n",
      "          'little': 2,\n",
      "          'created': 2,\n",
      "          'films': 2,\n",
      "          'nwhy': 2,\n",
      "          'cut': 2,\n",
      "          'tower': 2,\n",
      "          'hanging': 2,\n",
      "          'sequence': 2,\n",
      "          'later': 2,\n",
      "          'away': 2,\n",
      "          'reason': 2,\n",
      "          'anyone': 2,\n",
      "          'would': 2,\n",
      "          'cool': 2,\n",
      "          'essentially': 2,\n",
      "          'name': 2,\n",
      "          '710': 2,\n",
      "          '610': 2,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'sees': 1,\n",
      "          'parents': 1,\n",
      "          'killed': 1,\n",
      "          'eyes': 1,\n",
      "          'oops': 1,\n",
      "          'nmean': 1,\n",
      "          'evil': 1,\n",
      "          'nhe': 1,\n",
      "          'vows': 1,\n",
      "          'revenge': 1,\n",
      "          'taught': 1,\n",
      "          'ways': 1,\n",
      "          'used': 1,\n",
      "          'nanyway': 1,\n",
      "          'fourteen': 1,\n",
      "          'go': 1,\n",
      "          'arrgh': 1,\n",
      "          'swishswishzzzzzzz': 1,\n",
      "          'ncritique': 1,\n",
      "          'nlets': 1,\n",
      "          'start': 1,\n",
      "          'story': 1,\n",
      "          'original': 1,\n",
      "          'predictable': 1,\n",
      "          'lacks': 1,\n",
      "          'energy': 1,\n",
      "          'whats': 1,\n",
      "          'nacting': 1,\n",
      "          'nhmmmm': 1,\n",
      "          'actor': 1,\n",
      "          'basically': 1,\n",
      "          'uncharismatic': 1,\n",
      "          'version': 1,\n",
      "          'chris': 1,\n",
      "          'odonnell': 1,\n",
      "          'less': 1,\n",
      "          'range': 1,\n",
      "          'mena': 1,\n",
      "          'nnot': 1,\n",
      "          'thora': 1,\n",
      "          'birch': 1,\n",
      "          'dungeons': 1,\n",
      "          'dragons': 1,\n",
      "          'miscast': 1,\n",
      "          'deliveries': 1,\n",
      "          'awful': 1,\n",
      "          'pisspoor': 1,\n",
      "          'accent': 1,\n",
      "          'goes': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'ms': 1,\n",
      "          'suvaris': 1,\n",
      "          'fault': 1,\n",
      "          'directors': 1,\n",
      "          'ive': 1,\n",
      "          'definitely': 1,\n",
      "          'higher': 1,\n",
      "          'level': 1,\n",
      "          'semisaving': 1,\n",
      "          'grace': 1,\n",
      "          'actorwise': 1,\n",
      "          'irrepressible': 1,\n",
      "          'havent': 1,\n",
      "          'nthousand': 1,\n",
      "          'ntim': 1,\n",
      "          'love': 1,\n",
      "          'god': 1,\n",
      "          'beg': 1,\n",
      "          'agent': 1,\n",
      "          'ask': 1,\n",
      "          'marketplace': 1,\n",
      "          'modern': 1,\n",
      "          'roles': 1,\n",
      "          'nice': 1,\n",
      "          'comedy': 1,\n",
      "          'nstretch': 1,\n",
      "          'nwe': 1,\n",
      "          'better': 1,\n",
      "          'gunk': 1,\n",
      "          'nalright': 1,\n",
      "          'else': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'score': 1,\n",
      "          'nyikes': 1,\n",
      "          'hows': 1,\n",
      "          'taking': 1,\n",
      "          'notches': 1,\n",
      "          'fellas': 1,\n",
      "          'nthis': 1,\n",
      "          'blares': 1,\n",
      "          'ear': 1,\n",
      "          'whenever': 1,\n",
      "          'feels': 1,\n",
      "          'need': 1,\n",
      "          'accentuate': 1,\n",
      "          'actually': 1,\n",
      "          'annoy': 1,\n",
      "          'important': 1,\n",
      "          'behind': 1,\n",
      "          'music': 1,\n",
      "          'recognize': 1,\n",
      "          'isnt': 1,\n",
      "          'real': 1,\n",
      "          'epic': 1,\n",
      "          'imagination': 1,\n",
      "          'fluffy': 1,\n",
      "          'rehashed': 1,\n",
      "          'cakewalk': 1,\n",
      "          'shrewd': 1,\n",
      "          'studio': 1,\n",
      "          'heads': 1,\n",
      "          'decided': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'whole': 1,\n",
      "          'kungfu': 1,\n",
      "          'phenomenon': 1,\n",
      "          'test': 1,\n",
      "          'classic': 1,\n",
      "          'ndudes': 1,\n",
      "          'nfailed': 1,\n",
      "          'around': 1,\n",
      "          'keep': 1,\n",
      "          'reading': 1,\n",
      "          'editing': 1,\n",
      "          'also': 1,\n",
      "          'shoddy': 1,\n",
      "          'dialogue': 1,\n",
      "          'banal': 1,\n",
      "          'stilted': 1,\n",
      "          'problems': 1,\n",
      "          'plentiful': 1,\n",
      "          'horse': 1,\n",
      "          'carriage': 1,\n",
      "          'stand': 1,\n",
      "          'opponent': 1,\n",
      "          'takes': 1,\n",
      "          'forever': 1,\n",
      "          'scampering': 1,\n",
      "          'way': 1,\n",
      "          'back': 1,\n",
      "          'dont': 1,\n",
      "          'mouseketeers': 1,\n",
      "          'rope': 1,\n",
      "          'instead': 1,\n",
      "          'jumping': 1,\n",
      "          'chords': 1,\n",
      "          'fighting': 1,\n",
      "          'doesnt': 1,\n",
      "          'anybody': 1,\n",
      "          'look': 1,\n",
      "          'older': 1,\n",
      "          'says': 1,\n",
      "          '14': 1,\n",
      "          'least': 1,\n",
      "          'change': 1,\n",
      "          'nyour': 1,\n",
      "          'shirt': 1,\n",
      "          'nkeep': 1,\n",
      "          'mind': 1,\n",
      "          'never': 1,\n",
      "          'strayed': 1,\n",
      "          'championing': 1,\n",
      "          'movies': 1,\n",
      "          'simply': 1,\n",
      "          'sake': 1,\n",
      "          'fun': 1,\n",
      "          'time': 1,\n",
      "          'flick': 1,\n",
      "          'didnt': 1,\n",
      "          'nit': 1,\n",
      "          'stretches': 1,\n",
      "          'acting': 1,\n",
      "          'atrocious': 1,\n",
      "          'lake': 1,\n",
      "          'reminded': 1,\n",
      "          'plays': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'made': 1,\n",
      "          'cringe': 1,\n",
      "          'care': 1,\n",
      "          'since': 1,\n",
      "          'musketeers': 1,\n",
      "          'fat': 1,\n",
      "          'give': 1,\n",
      "          'raisondetre': 1,\n",
      "          'fight': 1,\n",
      "          'come': 1,\n",
      "          'despite': 1,\n",
      "          'lack': 1,\n",
      "          'numbers': 1,\n",
      "          'hoping': 1,\n",
      "          'packed': 1,\n",
      "          'stuntwork': 1,\n",
      "          'promoted': 1,\n",
      "          'trailer': 1,\n",
      "          'snippets': 1,\n",
      "          'two': 1,\n",
      "          'major': 1,\n",
      "          'swashbuckling': 1,\n",
      "          'right': 1,\n",
      "          'beginning': 1,\n",
      "          'finishes': 1,\n",
      "          'juggling': 1,\n",
      "          'ladders': 1,\n",
      "          'ladder': 1,\n",
      "          'definite': 1,\n",
      "          'keeper': 1,\n",
      "          'unfortunately': 1,\n",
      "          'regurgitated': 1,\n",
      "          'crap': 1,\n",
      "          'nand': 1,\n",
      "          'tell': 1,\n",
      "          'catherine': 1,\n",
      "          'deneuve': 1,\n",
      "          'got': 1,\n",
      "          'placed': 1,\n",
      "          'credits': 1,\n",
      "          'nhullo': 1,\n",
      "          'called': 1,\n",
      "          'stars': 1,\n",
      "          'ndeneuve': 1,\n",
      "          'barely': 1,\n",
      "          'nugh': 1,\n",
      "          'another': 1,\n",
      "          'small': 1,\n",
      "          'annoyed': 1,\n",
      "          'trash': 1,\n",
      "          'together': 1,\n",
      "          'gang': 1,\n",
      "          'nvow': 1,\n",
      "          'stay': 1,\n",
      "          'nthank': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'na': 1,\n",
      "          'knights': 1,\n",
      "          'tale': 1,\n",
      "          'outlaws': 1,\n",
      "          '510': 1,\n",
      "          'crouching': 1,\n",
      "          'tiger': 1,\n",
      "          'hidden': 1,\n",
      "          'dragon': 1,\n",
      "          'matrix': 1,\n",
      "          '810': 1,\n",
      "          'replacement': 1,\n",
      "          'killers': 1,\n",
      "          'romeo': 1,\n",
      "          'must': 1,\n",
      "          'die': 1,\n",
      "          '310': 1,\n",
      "          'shanghai': 1,\n",
      "          'noon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'big': 8,\n",
      "          'john': 7,\n",
      "          'e': 7,\n",
      "          'l': 5,\n",
      "          'howie': 5,\n",
      "          'something': 4,\n",
      "          'best': 3,\n",
      "          'michael': 3,\n",
      "          'movie': 3,\n",
      "          'work': 3,\n",
      "          'actually': 3,\n",
      "          'world': 3,\n",
      "          'cuesta': 3,\n",
      "          'dramatic': 3,\n",
      "          'bit': 2,\n",
      "          'role': 2,\n",
      "          'long': 2,\n",
      "          'hes': 2,\n",
      "          'given': 2,\n",
      "          'want': 2,\n",
      "          'see': 2,\n",
      "          'ncox': 2,\n",
      "          'indie': 2,\n",
      "          'feels': 2,\n",
      "          'pad': 2,\n",
      "          'nhes': 2,\n",
      "          'old': 2,\n",
      "          'listens': 2,\n",
      "          'problems': 2,\n",
      "          'nl': 2,\n",
      "          'middleclass': 2,\n",
      "          'transparent': 2,\n",
      "          'nin': 2,\n",
      "          'makes': 2,\n",
      "          'boy': 2,\n",
      "          'doesnt': 2,\n",
      "          'nthis': 2,\n",
      "          'much': 2,\n",
      "          'complex': 2,\n",
      "          'child': 2,\n",
      "          'howies': 2,\n",
      "          'johns': 2,\n",
      "          'nthere': 2,\n",
      "          'well': 2,\n",
      "          'obvious': 2,\n",
      "          'nits': 2,\n",
      "          'contrivances': 2,\n",
      "          'note': 2,\n",
      "          'films': 2,\n",
      "          'remembered': 1,\n",
      "          'understated': 1,\n",
      "          'performance': 1,\n",
      "          'dr': 1,\n",
      "          'hannibal': 1,\n",
      "          'lecter': 1,\n",
      "          'manns': 1,\n",
      "          'forensics': 1,\n",
      "          'thriller': 1,\n",
      "          'manhunter': 1,\n",
      "          'scottish': 1,\n",
      "          'character': 1,\n",
      "          'actor': 1,\n",
      "          'brian': 1,\n",
      "          'cox': 1,\n",
      "          'brings': 1,\n",
      "          'special': 1,\n",
      "          'every': 1,\n",
      "          'works': 1,\n",
      "          'nusually': 1,\n",
      "          'playing': 1,\n",
      "          'studio': 1,\n",
      "          'schlock': 1,\n",
      "          'dies': 1,\n",
      "          'halfway': 1,\n",
      "          'kiss': 1,\n",
      "          'goodnight': 1,\n",
      "          'occasionally': 1,\n",
      "          'meaty': 1,\n",
      "          'substantial': 1,\n",
      "          'nif': 1,\n",
      "          'brilliant': 1,\n",
      "          'acting': 1,\n",
      "          'check': 1,\n",
      "          'dogged': 1,\n",
      "          'police': 1,\n",
      "          'inspector': 1,\n",
      "          'opposite': 1,\n",
      "          'frances': 1,\n",
      "          'mcdormand': 1,\n",
      "          'ken': 1,\n",
      "          'loachs': 1,\n",
      "          'hidden': 1,\n",
      "          'agenda': 1,\n",
      "          'plays': 1,\n",
      "          'harrigan': 1,\n",
      "          'disturbing': 1,\n",
      "          'new': 1,\n",
      "          'flick': 1,\n",
      "          'lot': 1,\n",
      "          '47': 1,\n",
      "          'picked': 1,\n",
      "          'sundance': 1,\n",
      "          'distributors': 1,\n",
      "          'scared': 1,\n",
      "          'budge': 1,\n",
      "          'nbig': 1,\n",
      "          'love': 1,\n",
      "          'dares': 1,\n",
      "          'speak': 1,\n",
      "          'name': 1,\n",
      "          'expresses': 1,\n",
      "          'seeking': 1,\n",
      "          'adolescents': 1,\n",
      "          'bringing': 1,\n",
      "          'back': 1,\n",
      "          'nwhat': 1,\n",
      "          'bothered': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'presentation': 1,\n",
      "          'oddly': 1,\n",
      "          'empathetic': 1,\n",
      "          'light': 1,\n",
      "          'eventempered': 1,\n",
      "          'funny': 1,\n",
      "          'robust': 1,\n",
      "          'man': 1,\n",
      "          'kids': 1,\n",
      "          'opposed': 1,\n",
      "          'parents': 1,\n",
      "          'friends': 1,\n",
      "          'caught': 1,\n",
      "          'highwire': 1,\n",
      "          'act': 1,\n",
      "          'confused': 1,\n",
      "          'lives': 1,\n",
      "          'nhell': 1,\n",
      "          'sexforpay': 1,\n",
      "          'elaborate': 1,\n",
      "          'courtship': 1,\n",
      "          'charming': 1,\n",
      "          'temptations': 1,\n",
      "          'grownup': 1,\n",
      "          'stands': 1,\n",
      "          'island': 1,\n",
      "          'expressway': 1,\n",
      "          'slices': 1,\n",
      "          'strip': 1,\n",
      "          'malls': 1,\n",
      "          'homes': 1,\n",
      "          'suburbia': 1,\n",
      "          'nfilmmaker': 1,\n",
      "          'uses': 1,\n",
      "          'pretty': 1,\n",
      "          'metaphor': 1,\n",
      "          'dangerous': 1,\n",
      "          'escape': 1,\n",
      "          '15year': 1,\n",
      "          'protagonist': 1,\n",
      "          'paul': 1,\n",
      "          'franklin': 1,\n",
      "          'dano': 1,\n",
      "          'opening': 1,\n",
      "          'voiceover': 1,\n",
      "          'reveals': 1,\n",
      "          'morbid': 1,\n",
      "          'preoccupation': 1,\n",
      "          'death': 1,\n",
      "          'road': 1,\n",
      "          'citing': 1,\n",
      "          'nhighway': 1,\n",
      "          'deaths': 1,\n",
      "          'filmmaker': 1,\n",
      "          'alan': 1,\n",
      "          'j': 1,\n",
      "          'pakula': 1,\n",
      "          'songwriter': 1,\n",
      "          'harry': 1,\n",
      "          'chapin': 1,\n",
      "          'mother': 1,\n",
      "          'exit': 1,\n",
      "          '52': 1,\n",
      "          'fascinated': 1,\n",
      "          'disturbed': 1,\n",
      "          'feelings': 1,\n",
      "          'projected': 1,\n",
      "          'onto': 1,\n",
      "          'follows': 1,\n",
      "          'around': 1,\n",
      "          'bright': 1,\n",
      "          'red': 1,\n",
      "          'car': 1,\n",
      "          'never': 1,\n",
      "          'move': 1,\n",
      "          'force': 1,\n",
      "          'usual': 1,\n",
      "          'molesters': 1,\n",
      "          'seen': 1,\n",
      "          'movies': 1,\n",
      "          'beast': 1,\n",
      "          'ashamed': 1,\n",
      "          'would': 1,\n",
      "          'worked': 1,\n",
      "          'halfhour': 1,\n",
      "          'short': 1,\n",
      "          'film': 1,\n",
      "          'illadvised': 1,\n",
      "          'foray': 1,\n",
      "          'unnecessary': 1,\n",
      "          'padding': 1,\n",
      "          'miserable': 1,\n",
      "          'dad': 1,\n",
      "          'bruce': 1,\n",
      "          'altman': 1,\n",
      "          'hot': 1,\n",
      "          'seat': 1,\n",
      "          'whitecollar': 1,\n",
      "          'crime': 1,\n",
      "          'degenerate': 1,\n",
      "          'youngsters': 1,\n",
      "          'get': 1,\n",
      "          'kicks': 1,\n",
      "          'robbing': 1,\n",
      "          'houses': 1,\n",
      "          'homoerotic': 1,\n",
      "          'shenanigans': 1,\n",
      "          'wiseass': 1,\n",
      "          'gary': 1,\n",
      "          'terrio': 1,\n",
      "          'billy': 1,\n",
      "          'kay': 1,\n",
      "          'handsome': 1,\n",
      "          'artful': 1,\n",
      "          'dodger': 1,\n",
      "          'nrather': 1,\n",
      "          'add': 1,\n",
      "          'themes': 1,\n",
      "          'suburban': 1,\n",
      "          'ennui': 1,\n",
      "          'needed': 1,\n",
      "          'another': 1,\n",
      "          'subject': 1,\n",
      "          'awkward': 1,\n",
      "          'subplots': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'adequate': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'nconcurrently': 1,\n",
      "          'relationship': 1,\n",
      "          'evenly': 1,\n",
      "          'paced': 1,\n",
      "          'exceptionally': 1,\n",
      "          'acted': 1,\n",
      "          'sporting': 1,\n",
      "          'baseball': 1,\n",
      "          'cap': 1,\n",
      "          'faded': 1,\n",
      "          'marine': 1,\n",
      "          'tattoo': 1,\n",
      "          'bluff': 1,\n",
      "          'bluster': 1,\n",
      "          'ndano': 1,\n",
      "          'quiet': 1,\n",
      "          'first': 1,\n",
      "          'glance': 1,\n",
      "          'seems': 1,\n",
      "          'withdrawn': 1,\n",
      "          'nwere': 1,\n",
      "          'used': 1,\n",
      "          'actors': 1,\n",
      "          'whose': 1,\n",
      "          'choices': 1,\n",
      "          'broad': 1,\n",
      "          'calling': 1,\n",
      "          'haley': 1,\n",
      "          'joel': 1,\n",
      "          'surprising': 1,\n",
      "          'one': 1,\n",
      "          'throughout': 1,\n",
      "          'scene': 1,\n",
      "          'nthe': 1,\n",
      "          'restraint': 1,\n",
      "          'admirable': 1,\n",
      "          'nbut': 1,\n",
      "          'screenplay': 1,\n",
      "          'always': 1,\n",
      "          'give': 1,\n",
      "          'material': 1,\n",
      "          'nwhen': 1,\n",
      "          'reads': 1,\n",
      "          'walt': 1,\n",
      "          'whitman': 1,\n",
      "          'poem': 1,\n",
      "          'moment': 1,\n",
      "          'precious': 1,\n",
      "          'ndirector': 1,\n",
      "          'lingers': 1,\n",
      "          'ecstatic': 1,\n",
      "          'reaction': 1,\n",
      "          'shot': 1,\n",
      "          'may': 1,\n",
      "          'hearing': 1,\n",
      "          'glenn': 1,\n",
      "          'gould': 1,\n",
      "          'performing': 1,\n",
      "          'bachs': 1,\n",
      "          'goldberg': 1,\n",
      "          'variations': 1,\n",
      "          'also': 1,\n",
      "          'involving': 1,\n",
      "          'toy': 1,\n",
      "          'walter': 1,\n",
      "          'masterson': 1,\n",
      "          'jealous': 1,\n",
      "          'newbie': 1,\n",
      "          'plot': 1,\n",
      "          'thread': 1,\n",
      "          'predictably': 1,\n",
      "          'leads': 1,\n",
      "          'violence': 1,\n",
      "          'nnot': 1,\n",
      "          'content': 1,\n",
      "          'haunting': 1,\n",
      "          'observational': 1,\n",
      "          'portrait': 1,\n",
      "          'teen': 1,\n",
      "          'alienation': 1,\n",
      "          'royally': 1,\n",
      "          'screwed': 1,\n",
      "          'like': 1,\n",
      "          'terry': 1,\n",
      "          'zwigoffs': 1,\n",
      "          'superb': 1,\n",
      "          'ghost': 1,\n",
      "          'lacks': 1,\n",
      "          'confidence': 1,\n",
      "          'end': 1,\n",
      "          'ambivalent': 1,\n",
      "          'typical': 1,\n",
      "          'unimaginative': 1,\n",
      "          'cinema': 1,\n",
      "          'wrap': 1,\n",
      "          'things': 1,\n",
      "          'bullet': 1,\n",
      "          'sparing': 1,\n",
      "          'writers': 1,\n",
      "          'come': 1,\n",
      "          'philosophical': 1,\n",
      "          'regard': 1,\n",
      "          'n': 1,\n",
      "          'countless': 1,\n",
      "          'share': 1,\n",
      "          'common': 1,\n",
      "          'blockbuster': 1,\n",
      "          'action': 1,\n",
      "          'solved': 1,\n",
      "          'obstacle': 1,\n",
      "          'removed': 1,\n",
      "          'nhow': 1,\n",
      "          'often': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'way': 1,\n",
      "          'nto': 1,\n",
      "          'extend': 1,\n",
      "          'question': 1,\n",
      "          'striving': 1,\n",
      "          'realism': 1,\n",
      "          'destroy': 1,\n",
      "          'illusion': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'garofalo': 9,\n",
      "          'matchmaker': 4,\n",
      "          'like': 4,\n",
      "          'leary': 3,\n",
      "          'irish': 3,\n",
      "          'ireland': 3,\n",
      "          'movies': 3,\n",
      "          'dog': 3,\n",
      "          'ohara': 3,\n",
      "          'ni': 3,\n",
      "          'almost': 2,\n",
      "          'movie': 2,\n",
      "          'nit': 2,\n",
      "          'ngarofalo': 2,\n",
      "          'plays': 2,\n",
      "          'senator': 2,\n",
      "          'way': 2,\n",
      "          'play': 2,\n",
      "          'made': 2,\n",
      "          'go': 2,\n",
      "          'done': 2,\n",
      "          'every': 2,\n",
      "          'cliche': 2,\n",
      "          'town': 2,\n",
      "          'hotel': 2,\n",
      "          'around': 2,\n",
      "          'luggage': 2,\n",
      "          'comes': 2,\n",
      "          'meet': 2,\n",
      "          'happens': 2,\n",
      "          'time': 2,\n",
      "          'bathtub': 2,\n",
      "          'points': 2,\n",
      "          'guessing': 2,\n",
      "          'end': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'lonely': 2,\n",
      "          'together': 2,\n",
      "          'even': 2,\n",
      "          'janeane': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'good': 1,\n",
      "          'idea': 1,\n",
      "          'couple': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'truth': 1,\n",
      "          'cats': 1,\n",
      "          'dogs': 1,\n",
      "          'excruciating': 1,\n",
      "          'nthis': 1,\n",
      "          'bythebooks': 1,\n",
      "          'plods': 1,\n",
      "          'along': 1,\n",
      "          'predestined': 1,\n",
      "          'course': 1,\n",
      "          'surprises': 1,\n",
      "          'laughs': 1,\n",
      "          'also': 1,\n",
      "          'jumps': 1,\n",
      "          'everpopular': 1,\n",
      "          'political': 1,\n",
      "          'satire': 1,\n",
      "          'bandwagon': 1,\n",
      "          'manages': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'campaign': 1,\n",
      "          'aide': 1,\n",
      "          'massacusetts': 1,\n",
      "          'jay': 1,\n",
      "          'sanders': 1,\n",
      "          'running': 1,\n",
      "          'reelection': 1,\n",
      "          'ndenis': 1,\n",
      "          'stereotypical': 1,\n",
      "          'strategist': 1,\n",
      "          'ethics': 1,\n",
      "          'decides': 1,\n",
      "          'scandal': 1,\n",
      "          'plagued': 1,\n",
      "          'win': 1,\n",
      "          'roots': 1,\n",
      "          'cash': 1,\n",
      "          'boston': 1,\n",
      "          'roman': 1,\n",
      "          'catholic': 1,\n",
      "          'democrat': 1,\n",
      "          'contingent': 1,\n",
      "          'thats': 1,\n",
      "          'kennedy': 1,\n",
      "          'family': 1,\n",
      "          'popular': 1,\n",
      "          'nso': 1,\n",
      "          'orders': 1,\n",
      "          'dig': 1,\n",
      "          'relatives': 1,\n",
      "          'exploit': 1,\n",
      "          'nshe': 1,\n",
      "          'soon': 1,\n",
      "          'learns': 1,\n",
      "          'easier': 1,\n",
      "          'said': 1,\n",
      "          'mantra': 1,\n",
      "          'nthe': 1,\n",
      "          'falls': 1,\n",
      "          'things': 1,\n",
      "          'wrong': 1,\n",
      "          'take': 1,\n",
      "          'tiny': 1,\n",
      "          'plane': 1,\n",
      "          'misses': 1,\n",
      "          'bus': 1,\n",
      "          'cant': 1,\n",
      "          'get': 1,\n",
      "          'room': 1,\n",
      "          'ends': 1,\n",
      "          'smallest': 1,\n",
      "          'trashiest': 1,\n",
      "          'one': 1,\n",
      "          'piss': 1,\n",
      "          'nthen': 1,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'calls': 1,\n",
      "          'cute': 1,\n",
      "          'romance': 1,\n",
      "          'man': 1,\n",
      "          'woman': 1,\n",
      "          'first': 1,\n",
      "          'unconventional': 1,\n",
      "          'cinematic': 1,\n",
      "          'nin': 1,\n",
      "          'walks': 1,\n",
      "          'bathroom': 1,\n",
      "          'finds': 1,\n",
      "          'nude': 1,\n",
      "          'sean': 1,\n",
      "          'david': 1,\n",
      "          'sitting': 1,\n",
      "          'side': 1,\n",
      "          'nno': 1,\n",
      "          'water': 1,\n",
      "          'nalso': 1,\n",
      "          'hates': 1,\n",
      "          'sight': 1,\n",
      "          'nthats': 1,\n",
      "          'works': 1,\n",
      "          'know': 1,\n",
      "          'instant': 1,\n",
      "          'saw': 1,\n",
      "          'irishman': 1,\n",
      "          'shed': 1,\n",
      "          'hate': 1,\n",
      "          'awhile': 1,\n",
      "          'succumb': 1,\n",
      "          'charms': 1,\n",
      "          'live': 1,\n",
      "          'happily': 1,\n",
      "          'reel': 1,\n",
      "          'allowing': 1,\n",
      "          'superficial': 1,\n",
      "          'detail': 1,\n",
      "          'throw': 1,\n",
      "          'relationship': 1,\n",
      "          'turmoil': 1,\n",
      "          'theyd': 1,\n",
      "          'reconcile': 1,\n",
      "          'happy': 1,\n",
      "          'tune': 1,\n",
      "          'credits': 1,\n",
      "          'havent': 1,\n",
      "          'mentioned': 1,\n",
      "          'twist': 1,\n",
      "          'yet': 1,\n",
      "          'small': 1,\n",
      "          'annual': 1,\n",
      "          'matchmaking': 1,\n",
      "          'festival': 1,\n",
      "          'folks': 1,\n",
      "          'county': 1,\n",
      "          'pair': 1,\n",
      "          'future': 1,\n",
      "          'bliss': 1,\n",
      "          'nmilo': 1,\n",
      "          'oshea': 1,\n",
      "          'looks': 1,\n",
      "          'tom': 1,\n",
      "          'snyder': 1,\n",
      "          'pops': 1,\n",
      "          'onscreen': 1,\n",
      "          'occasionally': 1,\n",
      "          'spew': 1,\n",
      "          'words': 1,\n",
      "          'wisdom': 1,\n",
      "          'bring': 1,\n",
      "          'souls': 1,\n",
      "          'nrest': 1,\n",
      "          'assured': 1,\n",
      "          'hell': 1,\n",
      "          'match': 1,\n",
      "          'noh': 1,\n",
      "          'keeping': 1,\n",
      "          'matchmakers': 1,\n",
      "          'utter': 1,\n",
      "          'predictability': 1,\n",
      "          'dies': 1,\n",
      "          'toward': 1,\n",
      "          'nwhat': 1,\n",
      "          'message': 1,\n",
      "          'nsometimes': 1,\n",
      "          'respectable': 1,\n",
      "          'person': 1,\n",
      "          'comedic': 1,\n",
      "          'distinction': 1,\n",
      "          'sell': 1,\n",
      "          'weak': 1,\n",
      "          'script': 1,\n",
      "          'excited': 1,\n",
      "          'see': 1,\n",
      "          'actually': 1,\n",
      "          'two': 1,\n",
      "          'three': 1,\n",
      "          'scenes': 1,\n",
      "          'nleary': 1,\n",
      "          'stays': 1,\n",
      "          'stateside': 1,\n",
      "          'part': 1,\n",
      "          'yelling': 1,\n",
      "          'phone': 1,\n",
      "          'generally': 1,\n",
      "          'asshole': 1,\n",
      "          'nhe': 1,\n",
      "          'undoes': 1,\n",
      "          'old': 1,\n",
      "          'microphones': 1,\n",
      "          'still': 1,\n",
      "          'hes': 1,\n",
      "          'giving': 1,\n",
      "          'speech': 1,\n",
      "          'nboth': 1,\n",
      "          'known': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'musketeers': 7,\n",
      "          'musketeer': 4,\n",
      "          'paris': 4,\n",
      "          'way': 3,\n",
      "          'production': 3,\n",
      "          'asian': 3,\n",
      "          'nthe': 3,\n",
      "          'action': 3,\n",
      "          'filmmaking': 2,\n",
      "          'isnt': 2,\n",
      "          'xing': 2,\n",
      "          'end': 2,\n",
      "          'ripoff': 2,\n",
      "          'screenplay': 2,\n",
      "          'ndartagnan': 2,\n",
      "          'justin': 2,\n",
      "          'chambers': 2,\n",
      "          'nhe': 2,\n",
      "          'cardinal': 2,\n",
      "          'stephen': 2,\n",
      "          'rea': 2,\n",
      "          'febre': 2,\n",
      "          'tim': 2,\n",
      "          'roth': 2,\n",
      "          'leader': 2,\n",
      "          'hyams': 2,\n",
      "          'eastern': 2,\n",
      "          'western': 2,\n",
      "          'films': 2,\n",
      "          'scenes': 2,\n",
      "          'carry': 2,\n",
      "          'highflying': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'style': 1,\n",
      "          'made': 1,\n",
      "          'classics': 1,\n",
      "          'pretty': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'nod': 1,\n",
      "          'asia': 1,\n",
      "          'goes': 1,\n",
      "          'france': 1,\n",
      "          'excruciating': 1,\n",
      "          'bland': 1,\n",
      "          'lukewarm': 1,\n",
      "          'version': 1,\n",
      "          'dumass': 1,\n",
      "          'three': 1,\n",
      "          'nby': 1,\n",
      "          'bringing': 1,\n",
      "          'popular': 1,\n",
      "          'actorstunt': 1,\n",
      "          'coordinator': 1,\n",
      "          'xiong': 1,\n",
      "          'whose': 1,\n",
      "          'prior': 1,\n",
      "          'american': 1,\n",
      "          'attempts': 1,\n",
      "          'stunt': 1,\n",
      "          'choreography': 1,\n",
      "          'laughable': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'vehicle': 1,\n",
      "          'double': 1,\n",
      "          'team': 1,\n",
      "          'dennis': 1,\n",
      "          'rodman': 1,\n",
      "          'cinematic': 1,\n",
      "          'joke': 1,\n",
      "          'simon': 1,\n",
      "          'sez': 1,\n",
      "          'thrown': 1,\n",
      "          'air': 1,\n",
      "          'fighting': 1,\n",
      "          'result': 1,\n",
      "          'tepid': 1,\n",
      "          'dull': 1,\n",
      "          'actionadventure': 1,\n",
      "          'stinks': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'bad': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'story': 1,\n",
      "          'simple': 1,\n",
      "          'grandmother': 1,\n",
      "          'could': 1,\n",
      "          'adapted': 1,\n",
      "          'vengeful': 1,\n",
      "          'son': 1,\n",
      "          'slain': 1,\n",
      "          'travels': 1,\n",
      "          'join': 1,\n",
      "          'royal': 1,\n",
      "          'find': 1,\n",
      "          'man': 1,\n",
      "          'killed': 1,\n",
      "          'parents': 1,\n",
      "          'nin': 1,\n",
      "          'meets': 1,\n",
      "          'cunning': 1,\n",
      "          'richelieu': 1,\n",
      "          'trying': 1,\n",
      "          'overthrow': 1,\n",
      "          'king': 1,\n",
      "          'richelieus': 1,\n",
      "          'maninblack': 1,\n",
      "          'associate': 1,\n",
      "          'killer': 1,\n",
      "          'folks': 1,\n",
      "          'finds': 1,\n",
      "          'disbanded': 1,\n",
      "          'drunk': 1,\n",
      "          'rounds': 1,\n",
      "          'aramis': 1,\n",
      "          'nick': 1,\n",
      "          'moran': 1,\n",
      "          'athos': 1,\n",
      "          'jan': 1,\n",
      "          'gregor': 1,\n",
      "          'kremp': 1,\n",
      "          'porthos': 1,\n",
      "          'steven': 1,\n",
      "          'spiers': 1,\n",
      "          'free': 1,\n",
      "          'wrongfully': 1,\n",
      "          'imprisoned': 1,\n",
      "          'treville': 1,\n",
      "          'kings': 1,\n",
      "          'prison': 1,\n",
      "          'new': 1,\n",
      "          'frisky': 1,\n",
      "          'love': 1,\n",
      "          'interestchambermaid': 1,\n",
      "          'francesca': 1,\n",
      "          'mena': 1,\n",
      "          'suvari': 1,\n",
      "          'play': 1,\n",
      "          'footsy': 1,\n",
      "          'coo': 1,\n",
      "          'hunts': 1,\n",
      "          'finally': 1,\n",
      "          'queen': 1,\n",
      "          'catherine': 1,\n",
      "          'deneuve': 1,\n",
      "          'ends': 1,\n",
      "          'captured': 1,\n",
      "          'menancing': 1,\n",
      "          'forcing': 1,\n",
      "          'regroup': 1,\n",
      "          'dartagnan': 1,\n",
      "          'leading': 1,\n",
      "          'charge': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'ndirector': 1,\n",
      "          'peter': 1,\n",
      "          'days': 1,\n",
      "          'obviously': 1,\n",
      "          'wanted': 1,\n",
      "          'blend': 1,\n",
      "          'styles': 1,\n",
      "          'disaster': 1,\n",
      "          'none': 1,\n",
      "          'problem': 1,\n",
      "          'reality': 1,\n",
      "          'taken': 1,\n",
      "          'lead': 1,\n",
      "          'ones': 1,\n",
      "          'njet': 1,\n",
      "          'lis': 1,\n",
      "          'high': 1,\n",
      "          'risk': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'around': 1,\n",
      "          'nironically': 1,\n",
      "          'awfully': 1,\n",
      "          'little': 1,\n",
      "          'swordplay': 1,\n",
      "          'film': 1,\n",
      "          'maybe': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'swashbuckling': 1,\n",
      "          'spread': 1,\n",
      "          'five': 1,\n",
      "          'nmost': 1,\n",
      "          'bulk': 1,\n",
      "          '20': 1,\n",
      "          '30minute': 1,\n",
      "          'sequences': 1,\n",
      "          'know': 1,\n",
      "          'picture': 1,\n",
      "          'instead': 1,\n",
      "          'weighs': 1,\n",
      "          'predictable': 1,\n",
      "          'monotonous': 1,\n",
      "          'gene': 1,\n",
      "          'quintano': 1,\n",
      "          'sudden': 1,\n",
      "          'death': 1,\n",
      "          'horrible': 1,\n",
      "          'acting': 1,\n",
      "          'prosaic': 1,\n",
      "          'attempt': 1,\n",
      "          'wedding': 1,\n",
      "          'planner': 1,\n",
      "          'deliver': 1,\n",
      "          'mousy': 1,\n",
      "          'self': 1,\n",
      "          'nchambers': 1,\n",
      "          'dartangnan': 1,\n",
      "          'hes': 1,\n",
      "          'mouseketeer': 1,\n",
      "          'nand': 1,\n",
      "          'use': 1,\n",
      "          'candles': 1,\n",
      "          'torches': 1,\n",
      "          'light': 1,\n",
      "          'grime': 1,\n",
      "          'filth': 1,\n",
      "          '17th': 1,\n",
      "          'century': 1,\n",
      "          'wellnoted': 1,\n",
      "          'thats': 1,\n",
      "          'standout': 1,\n",
      "          'overall': 1,\n",
      "          'flat': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 27,\n",
      "          'first': 14,\n",
      "          'n': 9,\n",
      "          'like': 7,\n",
      "          'fight': 6,\n",
      "          'kombat': 5,\n",
      "          'mortal': 4,\n",
      "          'didnt': 4,\n",
      "          'nthe': 4,\n",
      "          'scene': 4,\n",
      "          'even': 4,\n",
      "          'many': 4,\n",
      "          'folks': 4,\n",
      "          'one': 4,\n",
      "          'nin': 3,\n",
      "          'fan': 3,\n",
      "          'games': 3,\n",
      "          'earth': 3,\n",
      "          'khan': 3,\n",
      "          'game': 3,\n",
      "          'cast': 3,\n",
      "          'scenes': 3,\n",
      "          'seen': 3,\n",
      "          'silly': 3,\n",
      "          'character': 3,\n",
      "          'played': 3,\n",
      "          'liu': 3,\n",
      "          'kang': 3,\n",
      "          'much': 3,\n",
      "          'annihilation': 2,\n",
      "          'making': 2,\n",
      "          'going': 2,\n",
      "          'two': 2,\n",
      "          'andor': 2,\n",
      "          'martial': 2,\n",
      "          'arts': 2,\n",
      "          'tournament': 2,\n",
      "          '5': 2,\n",
      "          'mortals': 2,\n",
      "          'shao': 2,\n",
      "          'final': 2,\n",
      "          'take': 2,\n",
      "          'know': 2,\n",
      "          'probably': 2,\n",
      "          'story': 2,\n",
      "          'try': 2,\n",
      "          'really': 2,\n",
      "          'cool': 2,\n",
      "          'plot': 2,\n",
      "          'nand': 2,\n",
      "          'success': 2,\n",
      "          'hes': 2,\n",
      "          'gets': 2,\n",
      "          'bad': 2,\n",
      "          'simply': 2,\n",
      "          'ni': 2,\n",
      "          'wrong': 2,\n",
      "          'hess': 2,\n",
      "          'playing': 2,\n",
      "          'sonya': 2,\n",
      "          'blade': 2,\n",
      "          'us': 2,\n",
      "          'loved': 2,\n",
      "          'remar': 2,\n",
      "          'raiden': 2,\n",
      "          'god': 2,\n",
      "          'thunder': 2,\n",
      "          'generally': 2,\n",
      "          'actors': 2,\n",
      "          'part': 2,\n",
      "          'characters': 2,\n",
      "          'nfor': 2,\n",
      "          'give': 2,\n",
      "          'convincing': 2,\n",
      "          'works': 1,\n",
      "          'must': 1,\n",
      "          'reviewed': 1,\n",
      "          'multiple': 1,\n",
      "          'levels': 1,\n",
      "          'nfirst': 1,\n",
      "          'theres': 1,\n",
      "          'rampant': 1,\n",
      "          'usage': 1,\n",
      "          'randian': 1,\n",
      "          'subtext': 1,\n",
      "          'pervades': 1,\n",
      "          'entire': 1,\n",
      "          'nbut': 1,\n",
      "          'occasionaly': 1,\n",
      "          'almost': 1,\n",
      "          'ironic': 1,\n",
      "          'selfdepreciating': 1,\n",
      "          'remark': 1,\n",
      "          'tosses': 1,\n",
      "          'clearly': 1,\n",
      "          'marxist': 1,\n",
      "          'imagery': 1,\n",
      "          'nno': 1,\n",
      "          'njust': 1,\n",
      "          'kidding': 1,\n",
      "          'nhad': 1,\n",
      "          'moment': 1,\n",
      "          'seriousness': 1,\n",
      "          'however': 1,\n",
      "          'fair': 1,\n",
      "          'necessary': 1,\n",
      "          'provide': 1,\n",
      "          'viewpoints': 1,\n",
      "          'watcher': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'marginally': 1,\n",
      "          'familiar': 1,\n",
      "          'whole': 1,\n",
      "          'phenomenon': 1,\n",
      "          '1995': 1,\n",
      "          'concerned': 1,\n",
      "          'would': 1,\n",
      "          'decide': 1,\n",
      "          'fate': 1,\n",
      "          'billion': 1,\n",
      "          'inhabitants': 1,\n",
      "          'theory': 1,\n",
      "          'prevented': 1,\n",
      "          'emperor': 1,\n",
      "          'taking': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'poor': 1,\n",
      "          'loser': 1,\n",
      "          'showed': 1,\n",
      "          'arriving': 1,\n",
      "          'anyway': 1,\n",
      "          'ready': 1,\n",
      "          'planet': 1,\n",
      "          'heroes': 1,\n",
      "          'assumed': 1,\n",
      "          'fighting': 1,\n",
      "          'stance': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'entertaining': 1,\n",
      "          'fans': 1,\n",
      "          'nid': 1,\n",
      "          'go': 1,\n",
      "          'far': 1,\n",
      "          'say': 1,\n",
      "          'enjoyed': 1,\n",
      "          'writers': 1,\n",
      "          'directors': 1,\n",
      "          'knew': 1,\n",
      "          'limitations': 1,\n",
      "          'basic': 1,\n",
      "          'overachieve': 1,\n",
      "          'nthere': 1,\n",
      "          'lot': 1,\n",
      "          'accompanying': 1,\n",
      "          'music': 1,\n",
      "          'intersperesed': 1,\n",
      "          'distracting': 1,\n",
      "          'ultimately': 1,\n",
      "          'nonintrusive': 1,\n",
      "          'bits': 1,\n",
      "          'fluff': 1,\n",
      "          'passing': 1,\n",
      "          'smashing': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nmortal': 1,\n",
      "          'picks': 1,\n",
      "          'precisely': 1,\n",
      "          'left': 1,\n",
      "          'introductory': 1,\n",
      "          'exposition': 1,\n",
      "          'clue': 1,\n",
      "          'may': 1,\n",
      "          'nshao': 1,\n",
      "          'decided': 1,\n",
      "          'anyways': 1,\n",
      "          'hell': 1,\n",
      "          'rule': 1,\n",
      "          'winning': 1,\n",
      "          'nthereafter': 1,\n",
      "          'follows': 1,\n",
      "          'approximately': 1,\n",
      "          '85': 1,\n",
      "          'minutes': 1,\n",
      "          'film': 1,\n",
      "          'alternates': 1,\n",
      "          'confused': 1,\n",
      "          'trite': 1,\n",
      "          'plain': 1,\n",
      "          'stupid': 1,\n",
      "          'none': 1,\n",
      "          'general': 1,\n",
      "          'impression': 1,\n",
      "          'producers': 1,\n",
      "          'thought': 1,\n",
      "          'hey': 1,\n",
      "          'last': 1,\n",
      "          'get': 1,\n",
      "          'money': 1,\n",
      "          'make': 1,\n",
      "          'real': 1,\n",
      "          'ntoo': 1,\n",
      "          'stick': 1,\n",
      "          'formula': 1,\n",
      "          'could': 1,\n",
      "          'write': 1,\n",
      "          'volumes': 1,\n",
      "          'things': 1,\n",
      "          'picture': 1,\n",
      "          'high': 1,\n",
      "          'points': 1,\n",
      "          'acting': 1,\n",
      "          'truly': 1,\n",
      "          'nsandra': 1,\n",
      "          'particularly': 1,\n",
      "          'execrable': 1,\n",
      "          'especially': 1,\n",
      "          'tries': 1,\n",
      "          'convince': 1,\n",
      "          'johnny': 1,\n",
      "          'cage': 1,\n",
      "          'greased': 1,\n",
      "          'beginning': 1,\n",
      "          'worst': 1,\n",
      "          'pieces': 1,\n",
      "          'miscasting': 1,\n",
      "          'think': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'james': 1,\n",
      "          'plays': 1,\n",
      "          'christopher': 1,\n",
      "          'lambert': 1,\n",
      "          'though': 1,\n",
      "          'joke': 1,\n",
      "          'french': 1,\n",
      "          'actor': 1,\n",
      "          'japanese': 1,\n",
      "          'revered': 1,\n",
      "          'chinese': 1,\n",
      "          'mystics': 1,\n",
      "          'type': 1,\n",
      "          'tim': 1,\n",
      "          'tiny': 1,\n",
      "          'lister': 1,\n",
      "          'jr': 1,\n",
      "          'president': 1,\n",
      "          'u': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'example': 1,\n",
      "          'always': 1,\n",
      "          'favorite': 1,\n",
      "          'utility': 1,\n",
      "          'totally': 1,\n",
      "          'doesnt': 1,\n",
      "          'luxury': 1,\n",
      "          'amused': 1,\n",
      "          'selfawareness': 1,\n",
      "          'introduced': 1,\n",
      "          'potentially': 1,\n",
      "          'important': 1,\n",
      "          'never': 1,\n",
      "          'number': 1,\n",
      "          'completely': 1,\n",
      "          'meaningless': 1,\n",
      "          'sidetracks': 1,\n",
      "          'including': 1,\n",
      "          'muddled': 1,\n",
      "          'robin': 1,\n",
      "          'shou': 1,\n",
      "          'seeks': 1,\n",
      "          'nightwolf': 1,\n",
      "          'litefoot': 1,\n",
      "          'mystical': 1,\n",
      "          'hallucination': 1,\n",
      "          'wanders': 1,\n",
      "          'jade': 1,\n",
      "          'irina': 1,\n",
      "          'pantaeva': 1,\n",
      "          'reasons': 1,\n",
      "          'others': 1,\n",
      "          '2': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'huge': 1,\n",
      "          'case': 1,\n",
      "          'following': 1,\n",
      "          'critiques': 1,\n",
      "          'also': 1,\n",
      "          'apply': 1,\n",
      "          'sandra': 1,\n",
      "          'worse': 1,\n",
      "          'actress': 1,\n",
      "          'bridgette': 1,\n",
      "          'wilson': 1,\n",
      "          'fighter': 1,\n",
      "          'nwilson': 1,\n",
      "          'looked': 1,\n",
      "          'mimicing': 1,\n",
      "          'movements': 1,\n",
      "          'taught': 1,\n",
      "          'choreographer': 1,\n",
      "          'nhess': 1,\n",
      "          'looks': 1,\n",
      "          'actually': 1,\n",
      "          'knows': 1,\n",
      "          'puts': 1,\n",
      "          'together': 1,\n",
      "          'believable': 1,\n",
      "          'fights': 1,\n",
      "          'least': 1,\n",
      "          'thing': 1,\n",
      "          'often': 1,\n",
      "          'nsonya': 1,\n",
      "          'kiss': 1,\n",
      "          'death': 1,\n",
      "          'jax': 1,\n",
      "          'earthquake': 1,\n",
      "          'animality': 1,\n",
      "          'na': 1,\n",
      "          'big': 1,\n",
      "          'bonus': 1,\n",
      "          'looking': 1,\n",
      "          'similar': 1,\n",
      "          'moves': 1,\n",
      "          'found': 1,\n",
      "          'rarely': 1,\n",
      "          'arent': 1,\n",
      "          'mistakenly': 1,\n",
      "          'hang': 1,\n",
      "          'robust': 1,\n",
      "          'nsilly': 1,\n",
      "          'lamest': 1,\n",
      "          'involved': 1,\n",
      "          'women': 1,\n",
      "          'turns': 1,\n",
      "          'mudwrestling': 1,\n",
      "          'match': 1,\n",
      "          'nlame': 1,\n",
      "          'obviously': 1,\n",
      "          'sexist': 1,\n",
      "          'politically': 1,\n",
      "          'incorrect': 1,\n",
      "          'noticed': 1,\n",
      "          'remarked': 1,\n",
      "          'upon': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'better': 1,\n",
      "          'except': 1,\n",
      "          'emporer': 1,\n",
      "          'perform': 1,\n",
      "          'animalities': 1,\n",
      "          'nmotaro': 1,\n",
      "          'sheeva': 1,\n",
      "          'lifelike': 1,\n",
      "          'goro': 1,\n",
      "          'enjoy': 1,\n",
      "          'nyoull': 1,\n",
      "          'nearly': 1,\n",
      "          'liked': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'recurring': 6,\n",
      "          'baldwin': 5,\n",
      "          'n': 5,\n",
      "          'shattered': 4,\n",
      "          'image': 4,\n",
      "          'like': 4,\n",
      "          'nand': 4,\n",
      "          'parillaud': 3,\n",
      "          'film': 3,\n",
      "          'assassin': 3,\n",
      "          'time': 3,\n",
      "          'black': 3,\n",
      "          'characters': 3,\n",
      "          'femme': 2,\n",
      "          'william': 2,\n",
      "          'youre': 2,\n",
      "          'really': 2,\n",
      "          'nits': 2,\n",
      "          'woman': 2,\n",
      "          'whos': 2,\n",
      "          'haunted': 2,\n",
      "          'nightmare': 2,\n",
      "          'shes': 2,\n",
      "          'hired': 2,\n",
      "          'jamaica': 2,\n",
      "          'course': 2,\n",
      "          'care': 2,\n",
      "          'scenes': 2,\n",
      "          'boring': 2,\n",
      "          'might': 2,\n",
      "          'interesting': 2,\n",
      "          'dialogue': 2,\n",
      "          'isnt': 2,\n",
      "          'dont': 2,\n",
      "          'parillauds': 2,\n",
      "          'couple': 2,\n",
      "          'pants': 2,\n",
      "          'la': 1,\n",
      "          'nikita': 1,\n",
      "          'nhe': 1,\n",
      "          'backdraft': 1,\n",
      "          'sliver': 1,\n",
      "          'fair': 1,\n",
      "          'game': 1,\n",
      "          'cindy': 1,\n",
      "          'crawford': 1,\n",
      "          'ntogether': 1,\n",
      "          'anne': 1,\n",
      "          'conspire': 1,\n",
      "          'make': 1,\n",
      "          'biggest': 1,\n",
      "          'piece': 1,\n",
      "          'hooey': 1,\n",
      "          'since': 1,\n",
      "          'stallonestone': 1,\n",
      "          'thriller': 1,\n",
      "          'specialist': 1,\n",
      "          'nthe': 1,\n",
      "          'poses': 1,\n",
      "          'question': 1,\n",
      "          'life': 1,\n",
      "          'living': 1,\n",
      "          'dream': 1,\n",
      "          'dreams': 1,\n",
      "          'reality': 1,\n",
      "          'either': 1,\n",
      "          'honeymooning': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'much': 1,\n",
      "          'matter': 1,\n",
      "          'believe': 1,\n",
      "          'runs': 1,\n",
      "          'painful': 1,\n",
      "          'pedestrian': 1,\n",
      "          'wont': 1,\n",
      "          'nthese': 1,\n",
      "          'two': 1,\n",
      "          'lives': 1,\n",
      "          'looking': 1,\n",
      "          'siouxsie': 1,\n",
      "          'sioux': 1,\n",
      "          'wig': 1,\n",
      "          'emotionless': 1,\n",
      "          'eyes': 1,\n",
      "          'leather': 1,\n",
      "          'clothing': 1,\n",
      "          'seattlebased': 1,\n",
      "          'moping': 1,\n",
      "          'around': 1,\n",
      "          'karen': 1,\n",
      "          'carpenter': 1,\n",
      "          'play': 1,\n",
      "          'endlessly': 1,\n",
      "          'throughout': 1,\n",
      "          'result': 1,\n",
      "          'twice': 1,\n",
      "          'complicated': 1,\n",
      "          'plots': 1,\n",
      "          'cant': 1,\n",
      "          'entertaining': 1,\n",
      "          'nof': 1,\n",
      "          'helps': 1,\n",
      "          'crisp': 1,\n",
      "          'modicum': 1,\n",
      "          'style': 1,\n",
      "          'complex': 1,\n",
      "          'stupid': 1,\n",
      "          'nparillaud': 1,\n",
      "          'arent': 1,\n",
      "          'exactly': 1,\n",
      "          'shakespearean': 1,\n",
      "          'material': 1,\n",
      "          'begin': 1,\n",
      "          'saddled': 1,\n",
      "          'leaden': 1,\n",
      "          'zero': 1,\n",
      "          'chance': 1,\n",
      "          'breaking': 1,\n",
      "          'free': 1,\n",
      "          'cardboard': 1,\n",
      "          'confines': 1,\n",
      "          'nlines': 1,\n",
      "          'beg': 1,\n",
      "          'insist': 1,\n",
      "          'ni': 1,\n",
      "          'nthats': 1,\n",
      "          'character': 1,\n",
      "          'talking': 1,\n",
      "          'nto': 1,\n",
      "          'cat': 1,\n",
      "          'reason': 1,\n",
      "          'couldnt': 1,\n",
      "          'less': 1,\n",
      "          'nhuh': 1,\n",
      "          'wonderful': 1,\n",
      "          'bathroom': 1,\n",
      "          'interchange': 1,\n",
      "          'early': 1,\n",
      "          'give': 1,\n",
      "          'minutes': 1,\n",
      "          'know': 1,\n",
      "          'ill': 1,\n",
      "          'charm': 1,\n",
      "          'kind': 1,\n",
      "          'ntalking': 1,\n",
      "          'clothes': 1,\n",
      "          'faster': 1,\n",
      "          'say': 1,\n",
      "          'point': 1,\n",
      "          'return': 1,\n",
      "          'nwe': 1,\n",
      "          'come': 1,\n",
      "          'expect': 1,\n",
      "          'billy': 1,\n",
      "          'nice': 1,\n",
      "          'learned': 1,\n",
      "          'something': 1,\n",
      "          'first': 1,\n",
      "          'nbut': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'learn': 1,\n",
      "          'nkaren': 1,\n",
      "          'cereal': 1,\n",
      "          'box': 1,\n",
      "          'someonesouttogetme': 1,\n",
      "          'crybaby': 1,\n",
      "          'imagines': 1,\n",
      "          'voice': 1,\n",
      "          'end': 1,\n",
      "          'phone': 1,\n",
      "          'stranger': 1,\n",
      "          'sends': 1,\n",
      "          'flowers': 1,\n",
      "          'maybe': 1,\n",
      "          'even': 1,\n",
      "          'husband': 1,\n",
      "          'wouldbe': 1,\n",
      "          'killer': 1,\n",
      "          'nsiouxsie': 1,\n",
      "          'chromium': 1,\n",
      "          'cool': 1,\n",
      "          'toughasnails': 1,\n",
      "          'crack': 1,\n",
      "          'killing': 1,\n",
      "          'machine': 1,\n",
      "          'shoots': 1,\n",
      "          'mirrors': 1,\n",
      "          'order': 1,\n",
      "          'justify': 1,\n",
      "          'films': 1,\n",
      "          'meaningless': 1,\n",
      "          'stock': 1,\n",
      "          'title': 1,\n",
      "          'nbaldwin': 1,\n",
      "          'seems': 1,\n",
      "          'interested': 1,\n",
      "          'nest': 1,\n",
      "          'egg': 1,\n",
      "          'pave': 1,\n",
      "          'paradise': 1,\n",
      "          'put': 1,\n",
      "          'parking': 1,\n",
      "          'lot': 1,\n",
      "          'neach': 1,\n",
      "          'graham': 1,\n",
      "          'greene': 1,\n",
      "          'shows': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'nbarbet': 1,\n",
      "          'schroeder': 1,\n",
      "          'reversal': 1,\n",
      "          'fortune': 1,\n",
      "          'coproduced': 1,\n",
      "          'ashamed': 1,\n",
      "          'nevery': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'bad': 1,\n",
      "          'movie': 1,\n",
      "          'every': 1,\n",
      "          'makes': 1,\n",
      "          'agonizingly': 1,\n",
      "          'clear': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mars': 8,\n",
      "          'ghosts': 6,\n",
      "          'film': 5,\n",
      "          'john': 4,\n",
      "          'carpenter': 4,\n",
      "          'carpenters': 4,\n",
      "          'bmovie': 4,\n",
      "          'red': 4,\n",
      "          'films': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'nin': 3,\n",
      "          'category': 3,\n",
      "          'henstridge': 3,\n",
      "          'work': 3,\n",
      "          'however': 3,\n",
      "          'lots': 3,\n",
      "          'nthe': 3,\n",
      "          '2': 3,\n",
      "          'escape': 2,\n",
      "          'always': 2,\n",
      "          'horror': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'bent': 2,\n",
      "          'went': 2,\n",
      "          'swirling': 2,\n",
      "          'gases': 2,\n",
      "          'martian': 2,\n",
      "          'ballard': 2,\n",
      "          'sillylooking': 2,\n",
      "          'train': 2,\n",
      "          'back': 2,\n",
      "          'desolation': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'cube': 2,\n",
      "          'wonder': 2,\n",
      "          'never': 2,\n",
      "          'seems': 2,\n",
      "          'doesnt': 2,\n",
      "          'n': 2,\n",
      "          'dialogue': 2,\n",
      "          'without': 2,\n",
      "          'might': 2,\n",
      "          'western': 2,\n",
      "          'nits': 2,\n",
      "          'planet': 2,\n",
      "          'sadly': 2,\n",
      "          'makes': 1,\n",
      "          'bmovies': 1,\n",
      "          'nalways': 1,\n",
      "          'halloween': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'thing': 1,\n",
      "          'looks': 1,\n",
      "          'live': 1,\n",
      "          'l': 1,\n",
      "          'vampires': 1,\n",
      "          'ncarpenters': 1,\n",
      "          'latest': 1,\n",
      "          'opus': 1,\n",
      "          'outing': 1,\n",
      "          'schlock': 1,\n",
      "          'aptlytitled': 1,\n",
      "          'case': 1,\n",
      "          'suppose': 1,\n",
      "          'looking': 1,\n",
      "          'someone': 1,\n",
      "          'elses': 1,\n",
      "          'nlike': 1,\n",
      "          'prefixed': 1,\n",
      "          'possessive': 1,\n",
      "          'unashamed': 1,\n",
      "          'punctuated': 1,\n",
      "          'plot': 1,\n",
      "          'actors': 1,\n",
      "          'one': 1,\n",
      "          'storyline': 1,\n",
      "          'borders': 1,\n",
      "          'idiotic': 1,\n",
      "          'times': 1,\n",
      "          'chaotic': 1,\n",
      "          'ndormant': 1,\n",
      "          'martians': 1,\n",
      "          'e': 1,\n",
      "          'awakened': 1,\n",
      "          'meddling': 1,\n",
      "          'humans': 1,\n",
      "          'possess': 1,\n",
      "          'souls': 1,\n",
      "          'hapless': 1,\n",
      "          'mining': 1,\n",
      "          'colonists': 1,\n",
      "          'rendering': 1,\n",
      "          'testy': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'lookalikes': 1,\n",
      "          'nall': 1,\n",
      "          'explained': 1,\n",
      "          'flashback': 1,\n",
      "          'grand': 1,\n",
      "          'poohbah': 1,\n",
      "          'counsel': 1,\n",
      "          'police': 1,\n",
      "          'official': 1,\n",
      "          'melanie': 1,\n",
      "          'natasha': 1,\n",
      "          'sub': 1,\n",
      "          'species': 1,\n",
      "          'returnee': 1,\n",
      "          'nofficer': 1,\n",
      "          'bring': 1,\n",
      "          'incarcerated': 1,\n",
      "          'felon': 1,\n",
      "          'james': 1,\n",
      "          'williams': 1,\n",
      "          'found': 1,\n",
      "          'pretty': 1,\n",
      "          'picture': 1,\n",
      "          'second': 1,\n",
      "          'ms': 1,\n",
      "          'blonde': 1,\n",
      "          'hair': 1,\n",
      "          'pulled': 1,\n",
      "          'tightly': 1,\n",
      "          'awkwardly': 1,\n",
      "          'ponytail': 1,\n",
      "          'ice': 1,\n",
      "          'appropriatelynamed': 1,\n",
      "          'pam': 1,\n",
      "          'grier': 1,\n",
      "          'briefly': 1,\n",
      "          'oddlywho': 1,\n",
      "          'wanted': 1,\n",
      "          'host': 1,\n",
      "          'extras': 1,\n",
      "          'assuming': 1,\n",
      "          'story': 1,\n",
      "          'going': 1,\n",
      "          'carry': 1,\n",
      "          'therefore': 1,\n",
      "          'didnt': 1,\n",
      "          'need': 1,\n",
      "          'try': 1,\n",
      "          'hard': 1,\n",
      "          'number': 1,\n",
      "          'three': 1,\n",
      "          'addition': 1,\n",
      "          'couple': 1,\n",
      "          'birdseyeview': 1,\n",
      "          'shots': 1,\n",
      "          'sprawling': 1,\n",
      "          'metropolis': 1,\n",
      "          'reddish': 1,\n",
      "          'also': 1,\n",
      "          'nstateoftheart': 1,\n",
      "          'trademark': 1,\n",
      "          'writerdirector': 1,\n",
      "          'problem': 1,\n",
      "          'finding': 1,\n",
      "          'waste': 1,\n",
      "          'budget': 1,\n",
      "          'department': 1,\n",
      "          'lock': 1,\n",
      "          'laughing': 1,\n",
      "          'stock': 1,\n",
      "          'barrel': 1,\n",
      "          'standard': 1,\n",
      "          'fare': 1,\n",
      "          'dingy': 1,\n",
      "          'interiors': 1,\n",
      "          'cluttered': 1,\n",
      "          'exteriors': 1,\n",
      "          'inane': 1,\n",
      "          'leather': 1,\n",
      "          'scarred': 1,\n",
      "          'crazedlooking': 1,\n",
      "          'aliens': 1,\n",
      "          'weaponry': 1,\n",
      "          'often': 1,\n",
      "          'explodes': 1,\n",
      "          'warfare': 1,\n",
      "          'warningspontaneously': 1,\n",
      "          'stupidly': 1,\n",
      "          'ncarpenter': 1,\n",
      "          'like': 1,\n",
      "          'think': 1,\n",
      "          'hes': 1,\n",
      "          'made': 1,\n",
      "          'real': 1,\n",
      "          'heroes': 1,\n",
      "          'villains': 1,\n",
      "          'border': 1,\n",
      "          'conflicts': 1,\n",
      "          'shootouts': 1,\n",
      "          'minus': 1,\n",
      "          'hissing': 1,\n",
      "          'snake': 1,\n",
      "          'plissken': 1,\n",
      "          'ni': 1,\n",
      "          'thought': 1,\n",
      "          'id': 1,\n",
      "          'miss': 1,\n",
      "          'guy': 1,\n",
      "          'ndubbed': 1,\n",
      "          'onenote': 1,\n",
      "          'minimalist': 1,\n",
      "          'music': 1,\n",
      "          'soundtracks': 1,\n",
      "          'graduated': 1,\n",
      "          'simplistic': 1,\n",
      "          'yet': 1,\n",
      "          'effective': 1,\n",
      "          'scoring': 1,\n",
      "          'highlighting': 1,\n",
      "          'action': 1,\n",
      "          'loud': 1,\n",
      "          'screeching': 1,\n",
      "          'guitar': 1,\n",
      "          'nfortunately': 1,\n",
      "          'drowns': 1,\n",
      "          'lot': 1,\n",
      "          'final': 1,\n",
      "          'exchange': 1,\n",
      "          'er': 1,\n",
      "          'though': 1,\n",
      "          'audible': 1,\n",
      "          'priceless': 1,\n",
      "          'nmars': 1,\n",
      "          'proven': 1,\n",
      "          'infertile': 1,\n",
      "          'breeding': 1,\n",
      "          'ground': 1,\n",
      "          'hollywood': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'stillborn': 1,\n",
      "          'mission': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'adds': 1,\n",
      "          'disappointing': 1,\n",
      "          'returns': 1,\n",
      "          'opening': 1,\n",
      "          'weekend': 1,\n",
      "          'overshadowed': 1,\n",
      "          'bunch': 1,\n",
      "          'sequels': 1,\n",
      "          'among': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'rush': 1,\n",
      "          'hour': 1,\n",
      "          'irony': 1,\n",
      "          'feels': 1,\n",
      "          'absent': 1,\n",
      "          'nthere': 1,\n",
      "          'occasional': 1,\n",
      "          'references': 1,\n",
      "          'course': 1,\n",
      "          'well': 1,\n",
      "          'set': 1,\n",
      "          'perth': 1,\n",
      "          'amboys': 1,\n",
      "          'earths': 1,\n",
      "          'closest': 1,\n",
      "          'neighbor': 1,\n",
      "          'ntwo': 1,\n",
      "          'things': 1,\n",
      "          'keep': 1,\n",
      "          'getting': 1,\n",
      "          'huge': 1,\n",
      "          'slap': 1,\n",
      "          'upside': 1,\n",
      "          'head': 1,\n",
      "          'n1': 1,\n",
      "          'nhenstridge': 1,\n",
      "          'keeps': 1,\n",
      "          'top': 1,\n",
      "          'miraculously': 1,\n",
      "          'pretend': 1,\n",
      "          'anything': 1,\n",
      "          'nwhat': 1,\n",
      "          'means': 1,\n",
      "          'fans': 1,\n",
      "          'superior': 1,\n",
      "          'intelligent': 1,\n",
      "          'grade': 1,\n",
      "          'scifihorror': 1,\n",
      "          'singularly': 1,\n",
      "          'luck': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 15,\n",
      "          'alicia': 9,\n",
      "          'zero': 8,\n",
      "          'babysitter': 5,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'nand': 4,\n",
      "          'ever': 4,\n",
      "          'star': 4,\n",
      "          'shes': 4,\n",
      "          'im': 3,\n",
      "          'guy': 3,\n",
      "          'would': 3,\n",
      "          'could': 3,\n",
      "          'nso': 3,\n",
      "          'last': 3,\n",
      "          'minutes': 3,\n",
      "          'plus': 3,\n",
      "          'male': 3,\n",
      "          'even': 3,\n",
      "          'silverstone': 2,\n",
      "          'beautiful': 2,\n",
      "          'critic': 2,\n",
      "          'large': 2,\n",
      "          'good': 2,\n",
      "          'like': 2,\n",
      "          'none': 2,\n",
      "          'seen': 2,\n",
      "          'ni': 2,\n",
      "          'theater': 2,\n",
      "          'course': 2,\n",
      "          'bad': 2,\n",
      "          'characters': 2,\n",
      "          'saw': 2,\n",
      "          'wasnt': 2,\n",
      "          'worst': 2,\n",
      "          'us': 2,\n",
      "          'night': 2,\n",
      "          'thriller': 2,\n",
      "          'probably': 2,\n",
      "          'already': 2,\n",
      "          'know': 2,\n",
      "          'ten': 2,\n",
      "          'drama': 2,\n",
      "          'action': 2,\n",
      "          'get': 2,\n",
      "          'spends': 2,\n",
      "          'bubble': 2,\n",
      "          'bath': 2,\n",
      "          'friday': 2,\n",
      "          'party': 2,\n",
      "          'least': 2,\n",
      "          'every': 2,\n",
      "          'fantasies': 2,\n",
      "          'sex': 2,\n",
      "          'fact': 2,\n",
      "          'cant': 2,\n",
      "          'really': 1,\n",
      "          'starting': 1,\n",
      "          'wonder': 1,\n",
      "          'nsure': 1,\n",
      "          'creatures': 1,\n",
      "          'gods': 1,\n",
      "          'green': 1,\n",
      "          'earth': 1,\n",
      "          'second': 1,\n",
      "          'comes': 1,\n",
      "          'choosing': 1,\n",
      "          'movies': 1,\n",
      "          'stars': 1,\n",
      "          'always': 1,\n",
      "          'strikes': 1,\n",
      "          'crush': 1,\n",
      "          'slowmoving': 1,\n",
      "          'predictable': 1,\n",
      "          'piece': 1,\n",
      "          'fluff': 1,\n",
      "          'nhideaway': 1,\n",
      "          'horrific': 1,\n",
      "          'novel': 1,\n",
      "          'adaptation': 1,\n",
      "          'minor': 1,\n",
      "          'role': 1,\n",
      "          'nclueless': 1,\n",
      "          'annoying': 1,\n",
      "          'unfunny': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'people': 1,\n",
      "          'emailed': 1,\n",
      "          'saying': 1,\n",
      "          'clueless': 1,\n",
      "          'doesnt': 1,\n",
      "          'girl': 1,\n",
      "          'said': 1,\n",
      "          'id': 1,\n",
      "          'open': 1,\n",
      "          'mind': 1,\n",
      "          'enjoyed': 1,\n",
      "          'nnothing': 1,\n",
      "          'truth': 1,\n",
      "          'went': 1,\n",
      "          'expecting': 1,\n",
      "          'love': 1,\n",
      "          'preview': 1,\n",
      "          'looked': 1,\n",
      "          'crazymadinlove': 1,\n",
      "          'bunch': 1,\n",
      "          'jokes': 1,\n",
      "          'coming': 1,\n",
      "          'whiny': 1,\n",
      "          'unlikable': 1,\n",
      "          'nalmost': 1,\n",
      "          'everyone': 1,\n",
      "          'felt': 1,\n",
      "          'way': 1,\n",
      "          'nwhen': 1,\n",
      "          'walking': 1,\n",
      "          'yelled': 1,\n",
      "          'fin': 1,\n",
      "          'ive': 1,\n",
      "          'rest': 1,\n",
      "          'laugh': 1,\n",
      "          'agreement': 1,\n",
      "          'walked': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'alicias': 1,\n",
      "          'pretty': 1,\n",
      "          'face': 1,\n",
      "          'cover': 1,\n",
      "          'madeforvideo': 1,\n",
      "          'called': 1,\n",
      "          'knew': 1,\n",
      "          'inner': 1,\n",
      "          'compulsion': 1,\n",
      "          'ill': 1,\n",
      "          'never': 1,\n",
      "          'understand': 1,\n",
      "          'made': 1,\n",
      "          'rent': 1,\n",
      "          'anyway': 1,\n",
      "          'nwhat': 1,\n",
      "          'got': 1,\n",
      "          '90': 1,\n",
      "          'regretthe': 1,\n",
      "          'paragraph': 1,\n",
      "          'competition': 1,\n",
      "          'nwhere': 1,\n",
      "          'begin': 1,\n",
      "          'criticizing': 1,\n",
      "          'plot': 1,\n",
      "          'thin': 1,\n",
      "          'shred': 1,\n",
      "          'moves': 1,\n",
      "          'slower': 1,\n",
      "          'glacier': 1,\n",
      "          'writing': 1,\n",
      "          'done': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'still': 1,\n",
      "          'wasted': 1,\n",
      "          'appeal': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nthere': 1,\n",
      "          'humor': 1,\n",
      "          'suspense': 1,\n",
      "          'story': 1,\n",
      "          'needlessly': 1,\n",
      "          'pointlessly': 1,\n",
      "          'concluded': 1,\n",
      "          'violent': 1,\n",
      "          'sequence': 1,\n",
      "          'nzero': 1,\n",
      "          'equals': 1,\n",
      "          'nwell': 1,\n",
      "          'twenty': 1,\n",
      "          'bathtub': 1,\n",
      "          'instantly': 1,\n",
      "          'joined': 1,\n",
      "          'ranks': 1,\n",
      "          'four': 1,\n",
      "          'features': 1,\n",
      "          'settle': 1,\n",
      "          'nalicia': 1,\n",
      "          'plays': 1,\n",
      "          'whos': 1,\n",
      "          'spending': 1,\n",
      "          'looking': 1,\n",
      "          'two': 1,\n",
      "          'kids': 1,\n",
      "          'whose': 1,\n",
      "          'parents': 1,\n",
      "          'getting': 1,\n",
      "          'drunk': 1,\n",
      "          'cocktail': 1,\n",
      "          'anyone': 1,\n",
      "          'automatically': 1,\n",
      "          'nights': 1,\n",
      "          'home': 1,\n",
      "          'nas': 1,\n",
      "          'trods': 1,\n",
      "          'along': 1,\n",
      "          'discover': 1,\n",
      "          'mostlysilent': 1,\n",
      "          'also': 1,\n",
      "          'object': 1,\n",
      "          'viewers': 1,\n",
      "          'drunken': 1,\n",
      "          'father': 1,\n",
      "          'thinks': 1,\n",
      "          'thing': 1,\n",
      "          'recapture': 1,\n",
      "          'lost': 1,\n",
      "          'youth': 1,\n",
      "          'boyfriend': 1,\n",
      "          'lets': 1,\n",
      "          'imagination': 1,\n",
      "          'run': 1,\n",
      "          'wild': 1,\n",
      "          'spying': 1,\n",
      "          'outside': 1,\n",
      "          'prepubescent': 1,\n",
      "          'boy': 1,\n",
      "          'looks': 1,\n",
      "          'bathroom': 1,\n",
      "          'keyhole': 1,\n",
      "          'taking': 1,\n",
      "          'nthey': 1,\n",
      "          'throw': 1,\n",
      "          'middle': 1,\n",
      "          'aged': 1,\n",
      "          'wifes': 1,\n",
      "          'counterpart': 1,\n",
      "          'nnot': 1,\n",
      "          'asked': 1,\n",
      "          'thought': 1,\n",
      "          'seeing': 1,\n",
      "          '200': 1,\n",
      "          'pound': 1,\n",
      "          'woman': 1,\n",
      "          'black': 1,\n",
      "          'silk': 1,\n",
      "          'teddy': 1,\n",
      "          'nat': 1,\n",
      "          'fanatasies': 1,\n",
      "          'leave': 1,\n",
      "          'realm': 1,\n",
      "          'pgrated': 1,\n",
      "          'nin': 1,\n",
      "          'imagine': 1,\n",
      "          'becoming': 1,\n",
      "          'cinemax': 1,\n",
      "          'latenight': 1,\n",
      "          'staple': 1,\n",
      "          'theres': 1,\n",
      "          'absolutely': 1,\n",
      "          'nudity': 1,\n",
      "          'call': 1,\n",
      "          'flick': 1,\n",
      "          'nive': 1,\n",
      "          'pointed': 1,\n",
      "          'fall': 1,\n",
      "          'comedy': 1,\n",
      "          'classify': 1,\n",
      "          'nbad': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'get': 5,\n",
      "          'much': 5,\n",
      "          'space': 4,\n",
      "          'contact': 4,\n",
      "          'film': 4,\n",
      "          'like': 4,\n",
      "          'scifi': 3,\n",
      "          'films': 3,\n",
      "          'little': 3,\n",
      "          'crew': 3,\n",
      "          'anything': 3,\n",
      "          'us': 3,\n",
      "          'depalma': 3,\n",
      "          'really': 3,\n",
      "          'mix': 2,\n",
      "          'nwell': 2,\n",
      "          'would': 2,\n",
      "          'lot': 2,\n",
      "          'said': 2,\n",
      "          'planet': 2,\n",
      "          'another': 2,\n",
      "          'actually': 2,\n",
      "          'starts': 2,\n",
      "          'decent': 2,\n",
      "          'minutes': 2,\n",
      "          'interesting': 2,\n",
      "          'dont': 2,\n",
      "          'secret': 2,\n",
      "          'end': 2,\n",
      "          'eventually': 2,\n",
      "          'settles': 2,\n",
      "          'ending': 2,\n",
      "          'might': 2,\n",
      "          'well': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'obvious': 2,\n",
      "          'computer': 2,\n",
      "          'story': 2,\n",
      "          'brass': 2,\n",
      "          'ndidnt': 2,\n",
      "          'dialogue': 2,\n",
      "          'blame': 2,\n",
      "          'great': 2,\n",
      "          'see': 2,\n",
      "          'say': 2,\n",
      "          'admire': 2,\n",
      "          'think': 2,\n",
      "          'worrying': 2,\n",
      "          'together': 1,\n",
      "          'plot': 1,\n",
      "          'elements': 1,\n",
      "          'various': 1,\n",
      "          'successful': 1,\n",
      "          'close': 1,\n",
      "          'encounters': 1,\n",
      "          'third': 1,\n",
      "          'kind': 1,\n",
      "          '2001': 1,\n",
      "          'odyssey': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'whatever': 1,\n",
      "          'youd': 1,\n",
      "          'sure': 1,\n",
      "          'hell': 1,\n",
      "          'hope': 1,\n",
      "          'thousand': 1,\n",
      "          'times': 1,\n",
      "          'better': 1,\n",
      "          'shoddy': 1,\n",
      "          'attempt': 1,\n",
      "          'melange': 1,\n",
      "          'considering': 1,\n",
      "          'disastrous': 1,\n",
      "          'results': 1,\n",
      "          'left': 1,\n",
      "          'nthis': 1,\n",
      "          'takes': 1,\n",
      "          'bit': 1,\n",
      "          'everything': 1,\n",
      "          'ultimately': 1,\n",
      "          'adds': 1,\n",
      "          'nothing': 1,\n",
      "          'nits': 1,\n",
      "          'nmovie': 1,\n",
      "          'sucks': 1,\n",
      "          'nplot': 1,\n",
      "          'rescue': 1,\n",
      "          'astronauts': 1,\n",
      "          'sent': 1,\n",
      "          'mars': 1,\n",
      "          'year': 1,\n",
      "          '2020': 1,\n",
      "          'unknown': 1,\n",
      "          'energy': 1,\n",
      "          'force': 1,\n",
      "          'leads': 1,\n",
      "          'loss': 1,\n",
      "          'previous': 1,\n",
      "          'gang': 1,\n",
      "          'aviators': 1,\n",
      "          'visit': 1,\n",
      "          'red': 1,\n",
      "          'ncritique': 1,\n",
      "          'extremely': 1,\n",
      "          'underwhelming': 1,\n",
      "          'best': 1,\n",
      "          'way': 1,\n",
      "          'describe': 1,\n",
      "          'nuneven': 1,\n",
      "          'nthe': 1,\n",
      "          'trailer': 1,\n",
      "          'showed': 1,\n",
      "          'promise': 1,\n",
      "          'buzz': 1,\n",
      "          'around': 1,\n",
      "          'soso': 1,\n",
      "          'even': 1,\n",
      "          'first': 1,\n",
      "          'twenty': 1,\n",
      "          'leading': 1,\n",
      "          'believe': 1,\n",
      "          'going': 1,\n",
      "          'go': 1,\n",
      "          'somewhere': 1,\n",
      "          'nbut': 1,\n",
      "          'isnt': 1,\n",
      "          'long': 1,\n",
      "          'entire': 1,\n",
      "          'downshifts': 1,\n",
      "          'neutral': 1,\n",
      "          'features': 1,\n",
      "          'walks': 1,\n",
      "          'cherrycolored': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'pain': 1,\n",
      "          'characters': 1,\n",
      "          'unsuccessfully': 1,\n",
      "          'tosses': 1,\n",
      "          'romance': 1,\n",
      "          'nin': 1,\n",
      "          'know': 1,\n",
      "          'seemed': 1,\n",
      "          'bunch': 1,\n",
      "          'nerdies': 1,\n",
      "          'talking': 1,\n",
      "          'techie': 1,\n",
      "          'jargon': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'figure': 1,\n",
      "          'big': 1,\n",
      "          'practically': 1,\n",
      "          'yawning': 1,\n",
      "          'excitement': 1,\n",
      "          'nultimately': 1,\n",
      "          'premise': 1,\n",
      "          'joins': 1,\n",
      "          'misadventures': 1,\n",
      "          'main': 1,\n",
      "          'crux': 1,\n",
      "          'journey': 1,\n",
      "          'one': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'endings': 1,\n",
      "          'side': 1,\n",
      "          'nmind': 1,\n",
      "          'enjoyed': 1,\n",
      "          'shrugoftheshoulders': 1,\n",
      "          'enjoy': 1,\n",
      "          'frivolous': 1,\n",
      "          'ditty': 1,\n",
      "          'remember': 1,\n",
      "          'painfully': 1,\n",
      "          'distracting': 1,\n",
      "          'generated': 1,\n",
      "          'effects': 1,\n",
      "          'nugh': 1,\n",
      "          'nwhat': 1,\n",
      "          'friggin': 1,\n",
      "          'mess': 1,\n",
      "          'nfilms': 1,\n",
      "          'generally': 1,\n",
      "          'wondering': 1,\n",
      "          'hollywood': 1,\n",
      "          'anybody': 1,\n",
      "          'recognize': 1,\n",
      "          'crappiness': 1,\n",
      "          'script': 1,\n",
      "          'read': 1,\n",
      "          'bad': 1,\n",
      "          'cheezy': 1,\n",
      "          'lines': 1,\n",
      "          'derivative': 1,\n",
      "          'nature': 1,\n",
      "          'work': 1,\n",
      "          'mind': 1,\n",
      "          'director': 1,\n",
      "          'helm': 1,\n",
      "          'aint': 1,\n",
      "          'saying': 1,\n",
      "          'cant': 1,\n",
      "          'inclusion': 1,\n",
      "          'jerry': 1,\n",
      "          'oconnell': 1,\n",
      "          'fine': 1,\n",
      "          'thespians': 1,\n",
      "          'nnuff': 1,\n",
      "          'nneither': 1,\n",
      "          'cranking': 1,\n",
      "          'juice': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'last': 1,\n",
      "          'fifteen': 1,\n",
      "          'presumably': 1,\n",
      "          'order': 1,\n",
      "          'wake': 1,\n",
      "          'audience': 1,\n",
      "          'okay': 1,\n",
      "          'brian': 1,\n",
      "          'scene': 1,\n",
      "          'supposed': 1,\n",
      "          'powerful': 1,\n",
      "          'wow': 1,\n",
      "          'yawn': 1,\n",
      "          'nears': 1,\n",
      "          'hurt': 1,\n",
      "          'nso': 1,\n",
      "          'salvageable': 1,\n",
      "          'nsure': 1,\n",
      "          'ngary': 1,\n",
      "          'sinise': 1,\n",
      "          'job': 1,\n",
      "          'cheadle': 1,\n",
      "          'doesnt': 1,\n",
      "          'completely': 1,\n",
      "          'bore': 1,\n",
      "          'moves': 1,\n",
      "          'along': 1,\n",
      "          'slowly': 1,\n",
      "          'without': 1,\n",
      "          'happening': 1,\n",
      "          'yes': 1,\n",
      "          'sandtwister': 1,\n",
      "          'effect': 1,\n",
      "          'commercial': 1,\n",
      "          'done': 1,\n",
      "          'nother': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'could': 1,\n",
      "          'filmmakers': 1,\n",
      "          'become': 1,\n",
      "          'devious': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'strategies': 1,\n",
      "          'oops': 1,\n",
      "          'ndid': 1,\n",
      "          'meant': 1,\n",
      "          'disgusted': 1,\n",
      "          'nall': 1,\n",
      "          'delivers': 1,\n",
      "          'actual': 1,\n",
      "          'substance': 1,\n",
      "          'offers': 1,\n",
      "          'twobit': 1,\n",
      "          'masked': 1,\n",
      "          'mumbojumbo': 1,\n",
      "          'pretends': 1,\n",
      "          'deep': 1,\n",
      "          'sappy': 1,\n",
      "          'presenting': 1,\n",
      "          'pathetic': 1,\n",
      "          'graphic': 1,\n",
      "          'part': 1,\n",
      "          'gives': 1,\n",
      "          'able': 1,\n",
      "          'money': 1,\n",
      "          'back': 1,\n",
      "          'sitting': 1,\n",
      "          'rehashed': 1,\n",
      "          'dreck': 1,\n",
      "          'ngo': 1,\n",
      "          'ninth': 1,\n",
      "          'gate': 1,\n",
      "          'ntheres': 1,\n",
      "          'nand': 1,\n",
      "          'personal': 1,\n",
      "          'note': 1,\n",
      "          'time': 1,\n",
      "          'stop': 1,\n",
      "          'proverbial': 1,\n",
      "          '12minute': 1,\n",
      "          'uninterrupted': 1,\n",
      "          'sequences': 1,\n",
      "          'start': 1,\n",
      "          'crappy': 1,\n",
      "          'movies': 1,\n",
      "          'getting': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'end': 7,\n",
      "          'films': 4,\n",
      "          'film': 4,\n",
      "          'take': 4,\n",
      "          'two': 3,\n",
      "          'crazy': 3,\n",
      "          'grenier': 3,\n",
      "          'comedy': 3,\n",
      "          'school': 3,\n",
      "          'law': 2,\n",
      "          'movies': 2,\n",
      "          'leads': 2,\n",
      "          'together': 2,\n",
      "          'youre': 2,\n",
      "          'youve': 2,\n",
      "          'nnow': 2,\n",
      "          'say': 2,\n",
      "          'know': 2,\n",
      "          'drive': 2,\n",
      "          'going': 2,\n",
      "          'get': 2,\n",
      "          'worth': 2,\n",
      "          'hart': 2,\n",
      "          'hunky': 2,\n",
      "          'stud': 2,\n",
      "          'whos': 2,\n",
      "          'wants': 2,\n",
      "          'make': 2,\n",
      "          'big': 2,\n",
      "          'dance': 2,\n",
      "          'turn': 2,\n",
      "          'nwill': 2,\n",
      "          'like': 2,\n",
      "          'work': 2,\n",
      "          'ndo': 2,\n",
      "          'writers': 2,\n",
      "          'high': 2,\n",
      "          'joke': 2,\n",
      "          'theres': 2,\n",
      "          'njust': 2,\n",
      "          'kids': 2,\n",
      "          'nin': 2,\n",
      "          'part': 2,\n",
      "          'credits': 2,\n",
      "          'entertaining': 2,\n",
      "          'song': 2,\n",
      "          'brief': 2,\n",
      "          'v': 2,\n",
      "          'crowd': 1,\n",
      "          'pleasing': 1,\n",
      "          'romantic': 1,\n",
      "          'states': 1,\n",
      "          'must': 1,\n",
      "          'nif': 1,\n",
      "          'familiar': 1,\n",
      "          'maybe': 1,\n",
      "          'seen': 1,\n",
      "          'trailer': 1,\n",
      "          'shows': 1,\n",
      "          'regular': 1,\n",
      "          'reader': 1,\n",
      "          'mine': 1,\n",
      "          'heard': 1,\n",
      "          'countless': 1,\n",
      "          'times': 1,\n",
      "          'journey': 1,\n",
      "          'ending': 1,\n",
      "          'nno': 1,\n",
      "          'definitely': 1,\n",
      "          'nmelissa': 1,\n",
      "          'joan': 1,\n",
      "          'abcs': 1,\n",
      "          'sabrina': 1,\n",
      "          'teenage': 1,\n",
      "          'witch': 1,\n",
      "          'likes': 1,\n",
      "          'basketball': 1,\n",
      "          'team': 1,\n",
      "          'nadrien': 1,\n",
      "          'grungy': 1,\n",
      "          'neighbor': 1,\n",
      "          'broken': 1,\n",
      "          'activist': 1,\n",
      "          'girlfriend': 1,\n",
      "          'napparently': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'jealous': 1,\n",
      "          'enough': 1,\n",
      "          'back': 1,\n",
      "          'someone': 1,\n",
      "          'year': 1,\n",
      "          'nso': 1,\n",
      "          'pretend': 1,\n",
      "          'date': 1,\n",
      "          'reason': 1,\n",
      "          'gives': 1,\n",
      "          'bath': 1,\n",
      "          'new': 1,\n",
      "          'popularity': 1,\n",
      "          'friends': 1,\n",
      "          'scheme': 1,\n",
      "          'care': 1,\n",
      "          'nthe': 1,\n",
      "          'teen': 1,\n",
      "          'resurgence': 1,\n",
      "          'late': 1,\n",
      "          'surprisingly': 1,\n",
      "          'good': 1,\n",
      "          'terms': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'cant': 1,\n",
      "          'hardly': 1,\n",
      "          'wait': 1,\n",
      "          '10': 1,\n",
      "          'things': 1,\n",
      "          'hate': 1,\n",
      "          'lesser': 1,\n",
      "          'extent': 1,\n",
      "          'shes': 1,\n",
      "          'never': 1,\n",
      "          'kissed': 1,\n",
      "          'seem': 1,\n",
      "          'realize': 1,\n",
      "          'write': 1,\n",
      "          'scripts': 1,\n",
      "          'accordingly': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'intention': 1,\n",
      "          'nthere': 1,\n",
      "          'smart': 1,\n",
      "          'obvious': 1,\n",
      "          'endings': 1,\n",
      "          'getting': 1,\n",
      "          'nhere': 1,\n",
      "          'nothing': 1,\n",
      "          'teens': 1,\n",
      "          'whining': 1,\n",
      "          'favor': 1,\n",
      "          'go': 1,\n",
      "          'job': 1,\n",
      "          'something': 1,\n",
      "          'shut': 1,\n",
      "          'hell': 1,\n",
      "          'honesty': 1,\n",
      "          'best': 1,\n",
      "          'normally': 1,\n",
      "          'followed': 1,\n",
      "          'movie': 1,\n",
      "          'finally': 1,\n",
      "          'case': 1,\n",
      "          'though': 1,\n",
      "          'really': 1,\n",
      "          'nafter': 1,\n",
      "          'obligatory': 1,\n",
      "          'second': 1,\n",
      "          'playing': 1,\n",
      "          'britney': 1,\n",
      "          'spears': 1,\n",
      "          'titular': 1,\n",
      "          'quick': 1,\n",
      "          'commercial': 1,\n",
      "          'jingle': 1,\n",
      "          'burger': 1,\n",
      "          'joint': 1,\n",
      "          'hang': 1,\n",
      "          'rendition': 1,\n",
      "          'nnothing': 1,\n",
      "          'great': 1,\n",
      "          'anything': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'preceded': 1,\n",
      "          'nscifi': 1,\n",
      "          'fans': 1,\n",
      "          'note': 1,\n",
      "          'appearances': 1,\n",
      "          'stephen': 1,\n",
      "          'collins': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'faye': 1,\n",
      "          'grant': 1,\n",
      "          'tv': 1,\n",
      "          'miniseries': 1,\n",
      "          'final': 1,\n",
      "          'battle': 1,\n",
      "          'npg13': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'joe': 16,\n",
      "          'big': 16,\n",
      "          'gorilla': 12,\n",
      "          'film': 6,\n",
      "          'young': 5,\n",
      "          'nthe': 5,\n",
      "          'poachers': 4,\n",
      "          'movie': 4,\n",
      "          'characters': 4,\n",
      "          'mother': 4,\n",
      "          'strasser': 4,\n",
      "          'isnt': 4,\n",
      "          'mighty': 3,\n",
      "          'minutes': 3,\n",
      "          'get': 3,\n",
      "          'one': 3,\n",
      "          'njoe': 3,\n",
      "          'said': 3,\n",
      "          'nhe': 3,\n",
      "          'special': 3,\n",
      "          'nas': 3,\n",
      "          'nand': 3,\n",
      "          'effects': 3,\n",
      "          'jill': 3,\n",
      "          'really': 3,\n",
      "          'bad': 3,\n",
      "          'enough': 2,\n",
      "          'much': 2,\n",
      "          'ever': 2,\n",
      "          'like': 2,\n",
      "          'kill': 2,\n",
      "          'sell': 2,\n",
      "          'friend': 2,\n",
      "          'quite': 2,\n",
      "          'digital': 2,\n",
      "          'things': 2,\n",
      "          'hes': 2,\n",
      "          'might': 2,\n",
      "          'five': 2,\n",
      "          'doesnt': 2,\n",
      "          'story': 2,\n",
      "          'words': 2,\n",
      "          'picture': 2,\n",
      "          'nits': 2,\n",
      "          'formality': 2,\n",
      "          'also': 2,\n",
      "          'theron': 2,\n",
      "          'protect': 2,\n",
      "          'gregg': 2,\n",
      "          'guy': 2,\n",
      "          'killed': 2,\n",
      "          'jills': 2,\n",
      "          'preserve': 2,\n",
      "          'safe': 2,\n",
      "          'way': 2,\n",
      "          'course': 2,\n",
      "          'nbut': 2,\n",
      "          'arent': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'dialogue': 2,\n",
      "          'phrases': 2,\n",
      "          'n': 2,\n",
      "          'cage': 2,\n",
      "          'word': 2,\n",
      "          'little': 2,\n",
      "          'interesting': 2,\n",
      "          'blunders': 1,\n",
      "          'nearly': 1,\n",
      "          'twenty': 1,\n",
      "          'actually': 1,\n",
      "          'see': 1,\n",
      "          'great': 1,\n",
      "          'nhis': 1,\n",
      "          'entrance': 1,\n",
      "          'however': 1,\n",
      "          'grand': 1,\n",
      "          'trees': 1,\n",
      "          'leaps': 1,\n",
      "          'gargantuan': 1,\n",
      "          'imposing': 1,\n",
      "          'sporting': 1,\n",
      "          'hands': 1,\n",
      "          'crush': 1,\n",
      "          'volkswagen': 1,\n",
      "          'bug': 1,\n",
      "          'pair': 1,\n",
      "          'feet': 1,\n",
      "          'larger': 1,\n",
      "          'pro': 1,\n",
      "          'basketball': 1,\n",
      "          'player': 1,\n",
      "          'bellows': 1,\n",
      "          'angry': 1,\n",
      "          'would': 1,\n",
      "          'millions': 1,\n",
      "          'dollars': 1,\n",
      "          'nduring': 1,\n",
      "          'scene': 1,\n",
      "          'turned': 1,\n",
      "          'wow': 1,\n",
      "          'nthats': 1,\n",
      "          'ape': 1,\n",
      "          'runs': 1,\n",
      "          'around': 1,\n",
      "          'fields': 1,\n",
      "          'chasing': 1,\n",
      "          'cars': 1,\n",
      "          'people': 1,\n",
      "          'picks': 1,\n",
      "          'stares': 1,\n",
      "          'pensively': 1,\n",
      "          'breaks': 1,\n",
      "          'accident': 1,\n",
      "          'avoid': 1,\n",
      "          'clumsiness': 1,\n",
      "          'effect': 1,\n",
      "          'image': 1,\n",
      "          'hold': 1,\n",
      "          'interest': 1,\n",
      "          'character': 1,\n",
      "          'register': 1,\n",
      "          'put': 1,\n",
      "          'limp': 1,\n",
      "          'come': 1,\n",
      "          'family': 1,\n",
      "          'entertainment': 1,\n",
      "          'never': 1,\n",
      "          'stamp': 1,\n",
      "          'quality': 1,\n",
      "          'silly': 1,\n",
      "          'pretending': 1,\n",
      "          'heart': 1,\n",
      "          'remake': 1,\n",
      "          '1949': 1,\n",
      "          'mostly': 1,\n",
      "          'strictly': 1,\n",
      "          'human': 1,\n",
      "          'main': 1,\n",
      "          'poor': 1,\n",
      "          'charlize': 1,\n",
      "          'forced': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'lover': 1,\n",
      "          'gorillas': 1,\n",
      "          'child': 1,\n",
      "          'witnessed': 1,\n",
      "          'group': 1,\n",
      "          'murder': 1,\n",
      "          'lives': 1,\n",
      "          'jungle': 1,\n",
      "          'wildlife': 1,\n",
      "          'nspecifically': 1,\n",
      "          'shes': 1,\n",
      "          'giant': 1,\n",
      "          'since': 1,\n",
      "          'childhood': 1,\n",
      "          'nsoon': 1,\n",
      "          'zoologist': 1,\n",
      "          'ohara': 1,\n",
      "          'bill': 1,\n",
      "          'paxton': 1,\n",
      "          'discovers': 1,\n",
      "          'quickly': 1,\n",
      "          'realizes': 1,\n",
      "          'want': 1,\n",
      "          'game': 1,\n",
      "          'hunter': 1,\n",
      "          'named': 1,\n",
      "          'rade': 1,\n",
      "          'sherbedgia': 1,\n",
      "          'happens': 1,\n",
      "          'nso': 1,\n",
      "          'effort': 1,\n",
      "          'save': 1,\n",
      "          'take': 1,\n",
      "          'instantly': 1,\n",
      "          'clear': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'space': 1,\n",
      "          'small': 1,\n",
      "          'add': 1,\n",
      "          'complications': 1,\n",
      "          'shows': 1,\n",
      "          'benevolent': 1,\n",
      "          'pretext': 1,\n",
      "          'tells': 1,\n",
      "          'recognizes': 1,\n",
      "          'njill': 1,\n",
      "          'recognize': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'nthis': 1,\n",
      "          'many': 1,\n",
      "          'examples': 1,\n",
      "          'stupidity': 1,\n",
      "          'fulfills': 1,\n",
      "          'every': 1,\n",
      "          'stereotype': 1,\n",
      "          'comes': 1,\n",
      "          'offensive': 1,\n",
      "          'competent': 1,\n",
      "          'actors': 1,\n",
      "          'nifty': 1,\n",
      "          'sets': 1,\n",
      "          'lot': 1,\n",
      "          'scenes': 1,\n",
      "          'digitized': 1,\n",
      "          'dumb': 1,\n",
      "          'satisfying': 1,\n",
      "          'level': 1,\n",
      "          'beyond': 1,\n",
      "          'visuals': 1,\n",
      "          'nif': 1,\n",
      "          'critic': 1,\n",
      "          'says': 1,\n",
      "          'fair': 1,\n",
      "          'quote': 1,\n",
      "          'spoken': 1,\n",
      "          'happy': 1,\n",
      "          'need': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'theyre': 1,\n",
      "          'close': 1,\n",
      "          'present': 1,\n",
      "          'state': 1,\n",
      "          'obvious': 1,\n",
      "          'npaxton': 1,\n",
      "          'talented': 1,\n",
      "          'performers': 1,\n",
      "          'deserve': 1,\n",
      "          'work': 1,\n",
      "          'script': 1,\n",
      "          'provides': 1,\n",
      "          'nsadly': 1,\n",
      "          'wastes': 1,\n",
      "          'nthere': 1,\n",
      "          'clever': 1,\n",
      "          'moments': 1,\n",
      "          'although': 1,\n",
      "          'none': 1,\n",
      "          'surfacing': 1,\n",
      "          'memory': 1,\n",
      "          'moment': 1,\n",
      "          'held': 1,\n",
      "          'attention': 1,\n",
      "          'least': 1,\n",
      "          'certainly': 1,\n",
      "          'kids': 1,\n",
      "          'doubt': 1,\n",
      "          'give': 1,\n",
      "          'nightmares': 1,\n",
      "          'adults': 1,\n",
      "          'audience': 1,\n",
      "          'likely': 1,\n",
      "          'find': 1,\n",
      "          'anything': 1,\n",
      "          'na': 1,\n",
      "          'something': 1,\n",
      "          'needs': 1,\n",
      "          'done': 1,\n",
      "          'nnobody': 1,\n",
      "          'figures': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'spawn': 10,\n",
      "          'nthe': 5,\n",
      "          'movie': 4,\n",
      "          'simmons': 4,\n",
      "          'like': 4,\n",
      "          'nin': 3,\n",
      "          'hell': 3,\n",
      "          'clown': 3,\n",
      "          'would': 3,\n",
      "          'one': 3,\n",
      "          'even': 3,\n",
      "          'think': 3,\n",
      "          'story': 3,\n",
      "          'batman': 3,\n",
      "          'guys': 2,\n",
      "          'nit': 2,\n",
      "          'appears': 2,\n",
      "          'made': 2,\n",
      "          'forces': 2,\n",
      "          'earth': 2,\n",
      "          'wynn': 2,\n",
      "          'scenes': 2,\n",
      "          'making': 2,\n",
      "          'world': 2,\n",
      "          'wanda': 2,\n",
      "          'years': 2,\n",
      "          'form': 2,\n",
      "          'leguizamo': 2,\n",
      "          'look': 2,\n",
      "          'computergenerated': 2,\n",
      "          'movies': 2,\n",
      "          'interesting': 2,\n",
      "          'nwhat': 2,\n",
      "          'pest': 2,\n",
      "          'nas': 2,\n",
      "          'people': 2,\n",
      "          'features': 1,\n",
      "          'good': 1,\n",
      "          'bad': 1,\n",
      "          'lots': 1,\n",
      "          'fighting': 1,\n",
      "          'bloody': 1,\n",
      "          'violence': 1,\n",
      "          'leatherclad': 1,\n",
      "          'machine': 1,\n",
      "          'gun': 1,\n",
      "          'chick': 1,\n",
      "          'gooey': 1,\n",
      "          'selfhealing': 1,\n",
      "          'bullet': 1,\n",
      "          'holes': 1,\n",
      "          'scatological': 1,\n",
      "          'humor': 1,\n",
      "          'maneating': 1,\n",
      "          'monster': 1,\n",
      "          'tailor': 1,\n",
      "          'swarm': 1,\n",
      "          '12': 1,\n",
      "          '13yearold': 1,\n",
      "          'boys': 1,\n",
      "          'classic': 1,\n",
      "          'example': 1,\n",
      "          'telling': 1,\n",
      "          'showing': 1,\n",
      "          'opens': 1,\n",
      "          'truckload': 1,\n",
      "          'mumbo': 1,\n",
      "          'jumbo': 1,\n",
      "          'darkness': 1,\n",
      "          'light': 1,\n",
      "          'men': 1,\n",
      "          'ones': 1,\n",
      "          'create': 1,\n",
      "          'evil': 1,\n",
      "          'nso': 1,\n",
      "          'much': 1,\n",
      "          'message': 1,\n",
      "          'lurches': 1,\n",
      "          'forward': 1,\n",
      "          'plight': 1,\n",
      "          'al': 1,\n",
      "          'michael': 1,\n",
      "          'jai': 1,\n",
      "          'white': 1,\n",
      "          'government': 1,\n",
      "          'assassinoperative': 1,\n",
      "          'murdered': 1,\n",
      "          'diabolical': 1,\n",
      "          'boss': 1,\n",
      "          'jason': 1,\n",
      "          'martin': 1,\n",
      "          'sheen': 1,\n",
      "          'plays': 1,\n",
      "          'oscar': 1,\n",
      "          'clip': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          'mission': 1,\n",
      "          'north': 1,\n",
      "          'korean': 1,\n",
      "          'biological': 1,\n",
      "          'weapons': 1,\n",
      "          'plant': 1,\n",
      "          'nsimmons': 1,\n",
      "          'goes': 1,\n",
      "          'back': 1,\n",
      "          'deal': 1,\n",
      "          'satan': 1,\n",
      "          'agrees': 1,\n",
      "          'command': 1,\n",
      "          'devils': 1,\n",
      "          'army': 1,\n",
      "          'overtake': 1,\n",
      "          'allowed': 1,\n",
      "          'return': 1,\n",
      "          'see': 1,\n",
      "          'wife': 1,\n",
      "          'underused': 1,\n",
      "          'theresa': 1,\n",
      "          'randle': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'cyan': 1,\n",
      "          'sydni': 1,\n",
      "          'beaudoin': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'seeing': 1,\n",
      "          'five': 1,\n",
      "          'passed': 1,\n",
      "          'fallen': 1,\n",
      "          'married': 1,\n",
      "          'partner': 1,\n",
      "          'b': 1,\n",
      "          'nsweeney': 1,\n",
      "          'nhis': 1,\n",
      "          'uh': 1,\n",
      "          'shoulder': 1,\n",
      "          'cry': 1,\n",
      "          'comes': 1,\n",
      "          'john': 1,\n",
      "          'disgustingly': 1,\n",
      "          'disproportioned': 1,\n",
      "          'minion': 1,\n",
      "          'satans': 1,\n",
      "          'nclown': 1,\n",
      "          'manipulates': 1,\n",
      "          'superhuman': 1,\n",
      "          'stand': 1,\n",
      "          'nwynn': 1,\n",
      "          'thinks': 1,\n",
      "          'league': 1,\n",
      "          'doubledealing': 1,\n",
      "          'recognizes': 1,\n",
      "          'threat': 1,\n",
      "          'undergoes': 1,\n",
      "          'operation': 1,\n",
      "          'bomb': 1,\n",
      "          'placed': 1,\n",
      "          'heart': 1,\n",
      "          'stops': 1,\n",
      "          'beating': 1,\n",
      "          'major': 1,\n",
      "          'cities': 1,\n",
      "          'around': 1,\n",
      "          'detonate': 1,\n",
      "          'causing': 1,\n",
      "          'leak': 1,\n",
      "          'disease': 1,\n",
      "          'makes': 1,\n",
      "          'ebola': 1,\n",
      "          'virus': 1,\n",
      "          'skin': 1,\n",
      "          'rash': 1,\n",
      "          'nphew': 1,\n",
      "          'got': 1,\n",
      "          'easy': 1,\n",
      "          'dismiss': 1,\n",
      "          'another': 1,\n",
      "          'heavyonfx': 1,\n",
      "          'shortonsubstance': 1,\n",
      "          'action': 1,\n",
      "          'pics': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'level': 1,\n",
      "          'sequences': 1,\n",
      "          'often': 1,\n",
      "          'plenty': 1,\n",
      "          'problem': 1,\n",
      "          'several': 1,\n",
      "          'set': 1,\n",
      "          'present': 1,\n",
      "          'devil': 1,\n",
      "          'looks': 1,\n",
      "          'acts': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'graphic': 1,\n",
      "          'healthy': 1,\n",
      "          'budget': 1,\n",
      "          'youd': 1,\n",
      "          'could': 1,\n",
      "          'afforded': 1,\n",
      "          'make': 1,\n",
      "          'mouth': 1,\n",
      "          'move': 1,\n",
      "          'talks': 1,\n",
      "          'nother': 1,\n",
      "          'elements': 1,\n",
      "          'soso': 1,\n",
      "          'spawns': 1,\n",
      "          'enormous': 1,\n",
      "          'red': 1,\n",
      "          'flowing': 1,\n",
      "          'cape': 1,\n",
      "          'wonderful': 1,\n",
      "          'sight': 1,\n",
      "          'obvious': 1,\n",
      "          'hes': 1,\n",
      "          'played': 1,\n",
      "          'costumed': 1,\n",
      "          'actor': 1,\n",
      "          'image': 1,\n",
      "          'contact': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'serve': 1,\n",
      "          'nand': 1,\n",
      "          'isnt': 1,\n",
      "          'character': 1,\n",
      "          'films': 1,\n",
      "          'reliance': 1,\n",
      "          'razzledazzle': 1,\n",
      "          'acceptable': 1,\n",
      "          'given': 1,\n",
      "          'somebody': 1,\n",
      "          'root': 1,\n",
      "          'funky': 1,\n",
      "          'alterego': 1,\n",
      "          'completely': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'need': 1,\n",
      "          'luke': 1,\n",
      "          'skywalker': 1,\n",
      "          'neven': 1,\n",
      "          'watching': 1,\n",
      "          'adventures': 1,\n",
      "          'kleenex': 1,\n",
      "          'man': 1,\n",
      "          'npoor': 1,\n",
      "          'nhe': 1,\n",
      "          'starred': 1,\n",
      "          'februarys': 1,\n",
      "          'still': 1,\n",
      "          'worst': 1,\n",
      "          'far': 1,\n",
      "          'although': 1,\n",
      "          'give': 1,\n",
      "          'run': 1,\n",
      "          'money': 1,\n",
      "          'overacts': 1,\n",
      "          'extreme': 1,\n",
      "          'never': 1,\n",
      "          'missing': 1,\n",
      "          'opportunity': 1,\n",
      "          'poortaste': 1,\n",
      "          'punchline': 1,\n",
      "          'nleguizamo': 1,\n",
      "          'farts': 1,\n",
      "          'green': 1,\n",
      "          'mist': 1,\n",
      "          'munches': 1,\n",
      "          'pizza': 1,\n",
      "          'slice': 1,\n",
      "          'covered': 1,\n",
      "          'maggots': 1,\n",
      "          'dons': 1,\n",
      "          'miniskirt': 1,\n",
      "          'performs': 1,\n",
      "          'cheerleader': 1,\n",
      "          'routine': 1,\n",
      "          'turning': 1,\n",
      "          'giant': 1,\n",
      "          'grey': 1,\n",
      "          'demon': 1,\n",
      "          'guy': 1,\n",
      "          'brilliant': 1,\n",
      "          'wong': 1,\n",
      "          'foo': 1,\n",
      "          'thanks': 1,\n",
      "          'everything': 1,\n",
      "          'njulie': 1,\n",
      "          'newmar': 1,\n",
      "          'wasting': 1,\n",
      "          'talent': 1,\n",
      "          'nim': 1,\n",
      "          'liked': 1,\n",
      "          'robin': 1,\n",
      "          'summers': 1,\n",
      "          'bigbudget': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'film': 1,\n",
      "          'nyet': 1,\n",
      "          'catching': 1,\n",
      "          'inevitable': 1,\n",
      "          'comparison': 1,\n",
      "          'hope': 1,\n",
      "          'change': 1,\n",
      "          'minds': 1,\n",
      "          'superior': 1,\n",
      "          'adaptation': 1,\n",
      "          'ntheres': 1,\n",
      "          'compelling': 1,\n",
      "          'somewhere': 1,\n",
      "          'including': 1,\n",
      "          'strong': 1,\n",
      "          'religious': 1,\n",
      "          'overtones': 1,\n",
      "          'debut': 1,\n",
      "          'first': 1,\n",
      "          'africanamerican': 1,\n",
      "          'superhero': 1,\n",
      "          'ever': 1,\n",
      "          'found': 1,\n",
      "          'anywhere': 1,\n",
      "          'near': 1,\n",
      "          'awful': 1,\n",
      "          'stinks': 1,\n",
      "          'worse': 1,\n",
      "          'dead': 1,\n",
      "          'trout': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dreams': 5,\n",
      "          'claire': 4,\n",
      "          'creepy': 2,\n",
      "          'clairvoyant': 2,\n",
      "          'potential': 2,\n",
      "          'least': 2,\n",
      "          'nifty': 2,\n",
      "          'even': 2,\n",
      "          'comes': 2,\n",
      "          'enough': 2,\n",
      "          'nthis': 2,\n",
      "          'film': 2,\n",
      "          'didnt': 2,\n",
      "          'nshe': 2,\n",
      "          'sense': 2,\n",
      "          'turns': 2,\n",
      "          'vivian': 2,\n",
      "          'hes': 2,\n",
      "          'might': 1,\n",
      "          'keep': 1,\n",
      "          'awake': 1,\n",
      "          'night': 1,\n",
      "          'imagery': 1,\n",
      "          'bizarre': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'story': 1,\n",
      "          'madman': 1,\n",
      "          'lures': 1,\n",
      "          'young': 1,\n",
      "          'girls': 1,\n",
      "          'untimely': 1,\n",
      "          'deaths': 1,\n",
      "          'nno': 1,\n",
      "          'source': 1,\n",
      "          'sleeplessness': 1,\n",
      "          'lies': 1,\n",
      "          'within': 1,\n",
      "          'movies': 1,\n",
      "          'brutally': 1,\n",
      "          'squandered': 1,\n",
      "          'admittedly': 1,\n",
      "          'premise': 1,\n",
      "          'tired': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'genre': 1,\n",
      "          'standards': 1,\n",
      "          'nthe': 1,\n",
      "          'big': 1,\n",
      "          'letdown': 1,\n",
      "          'however': 1,\n",
      "          'upon': 1,\n",
      "          'realization': 1,\n",
      "          '100minute': 1,\n",
      "          'headscratcher': 1,\n",
      "          'masterminded': 1,\n",
      "          'neil': 1,\n",
      "          'jordan': 1,\n",
      "          'man': 1,\n",
      "          'behind': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          'nhes': 1,\n",
      "          'stranger': 1,\n",
      "          'cinematic': 1,\n",
      "          'weirdness': 1,\n",
      "          'nutty': 1,\n",
      "          'nonsense': 1,\n",
      "          'really': 1,\n",
      "          'pushes': 1,\n",
      "          'envelope': 1,\n",
      "          'nthings': 1,\n",
      "          'start': 1,\n",
      "          'strong': 1,\n",
      "          'cinematographer': 1,\n",
      "          'darius': 1,\n",
      "          'khondjis': 1,\n",
      "          'stunning': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'guiding': 1,\n",
      "          'viewers': 1,\n",
      "          'bowels': 1,\n",
      "          'underwater': 1,\n",
      "          'ghost': 1,\n",
      "          'town': 1,\n",
      "          'prologue': 1,\n",
      "          'establishes': 1,\n",
      "          'notably': 1,\n",
      "          'grim': 1,\n",
      "          'tone': 1,\n",
      "          'right': 1,\n",
      "          'bat': 1,\n",
      "          'eerie': 1,\n",
      "          'opulence': 1,\n",
      "          'remains': 1,\n",
      "          'dazzling': 1,\n",
      "          'display': 1,\n",
      "          'showmanship': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'macabre': 1,\n",
      "          'way': 1,\n",
      "          'khondji': 1,\n",
      "          'photographs': 1,\n",
      "          'rustic': 1,\n",
      "          'seemingly': 1,\n",
      "          'innocent': 1,\n",
      "          'new': 1,\n",
      "          'england': 1,\n",
      "          'autumn': 1,\n",
      "          'ever': 1,\n",
      "          'deserve': 1,\n",
      "          'good': 1,\n",
      "          'polish': 1,\n",
      "          'one': 1,\n",
      "          'ndont': 1,\n",
      "          'knock': 1,\n",
      "          'look': 1,\n",
      "          'say': 1,\n",
      "          'foolish': 1,\n",
      "          'plot': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'characters': 1,\n",
      "          'flat': 1,\n",
      "          'dialogue': 1,\n",
      "          'nannette': 1,\n",
      "          'bening': 1,\n",
      "          'another': 1,\n",
      "          'asset': 1,\n",
      "          'shouldnt': 1,\n",
      "          'lucky': 1,\n",
      "          'boast': 1,\n",
      "          'gives': 1,\n",
      "          'increasingly': 1,\n",
      "          'effective': 1,\n",
      "          'performance': 1,\n",
      "          'role': 1,\n",
      "          'doesnt': 1,\n",
      "          'much': 1,\n",
      "          'return': 1,\n",
      "          'plays': 1,\n",
      "          'cooper': 1,\n",
      "          'massachusetts': 1,\n",
      "          'childrens': 1,\n",
      "          'book': 1,\n",
      "          'illustrator': 1,\n",
      "          'whos': 1,\n",
      "          'plagued': 1,\n",
      "          'terrifying': 1,\n",
      "          'nightmares': 1,\n",
      "          'involving': 1,\n",
      "          'kidnaped': 1,\n",
      "          'children': 1,\n",
      "          'thinks': 1,\n",
      "          'visions': 1,\n",
      "          'warning': 1,\n",
      "          'knell': 1,\n",
      "          'horrible': 1,\n",
      "          'soontobecommitted': 1,\n",
      "          'crimes': 1,\n",
      "          'neither': 1,\n",
      "          'hohum': 1,\n",
      "          'husband': 1,\n",
      "          'aidan': 1,\n",
      "          'quinn': 1,\n",
      "          'hohummer': 1,\n",
      "          'police': 1,\n",
      "          'muster': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'thriller': 1,\n",
      "          'know': 1,\n",
      "          'fact': 1,\n",
      "          'money': 1,\n",
      "          'credit': 1,\n",
      "          'benings': 1,\n",
      "          'acting': 1,\n",
      "          'delves': 1,\n",
      "          'equally': 1,\n",
      "          'claires': 1,\n",
      "          'madness': 1,\n",
      "          'compassion': 1,\n",
      "          'nbut': 1,\n",
      "          'soon': 1,\n",
      "          'body': 1,\n",
      "          'given': 1,\n",
      "          'authorities': 1,\n",
      "          'reason': 1,\n",
      "          'believe': 1,\n",
      "          'claims': 1,\n",
      "          'trades': 1,\n",
      "          'supernatural': 1,\n",
      "          'chills': 1,\n",
      "          'long': 1,\n",
      "          'series': 1,\n",
      "          'allegedly': 1,\n",
      "          'spooky': 1,\n",
      "          'jolts': 1,\n",
      "          'simply': 1,\n",
      "          'refuse': 1,\n",
      "          'make': 1,\n",
      "          'nscenes': 1,\n",
      "          'pile': 1,\n",
      "          'like': 1,\n",
      "          'car': 1,\n",
      "          'wreck': 1,\n",
      "          'little': 1,\n",
      "          'explanation': 1,\n",
      "          'exposition': 1,\n",
      "          'nsubplots': 1,\n",
      "          'appear': 1,\n",
      "          'disappear': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'facetoface': 1,\n",
      "          'evil': 1,\n",
      "          'murderer': 1,\n",
      "          'robert': 1,\n",
      "          'downey': 1,\n",
      "          'jr': 1,\n",
      "          'name': 1,\n",
      "          'got': 1,\n",
      "          'major': 1,\n",
      "          'issues': 1,\n",
      "          'mama': 1,\n",
      "          'la': 1,\n",
      "          'norman': 1,\n",
      "          'bates': 1,\n",
      "          'n': 1,\n",
      "          'reaches': 1,\n",
      "          'absurdist': 1,\n",
      "          'zenith': 1,\n",
      "          'climax': 1,\n",
      "          'drags': 1,\n",
      "          'mumbled': 1,\n",
      "          'revelations': 1,\n",
      "          'laughable': 1,\n",
      "          'twists': 1,\n",
      "          'nsome': 1,\n",
      "          'questions': 1,\n",
      "          'whats': 1,\n",
      "          'garbage': 1,\n",
      "          'disposal': 1,\n",
      "          'retching': 1,\n",
      "          'applesauce': 1,\n",
      "          'nare': 1,\n",
      "          'drawings': 1,\n",
      "          'wall': 1,\n",
      "          'blood': 1,\n",
      "          'paint': 1,\n",
      "          'nwho': 1,\n",
      "          'cranked': 1,\n",
      "          'andrews': 1,\n",
      "          'sisters': 1,\n",
      "          'cd': 1,\n",
      "          'player': 1,\n",
      "          'caused': 1,\n",
      "          'swing': 1,\n",
      "          'move': 1,\n",
      "          'nwhat': 1,\n",
      "          'computer': 1,\n",
      "          'ndoes': 1,\n",
      "          'possess': 1,\n",
      "          'gift': 1,\n",
      "          'telekinesis': 1,\n",
      "          'addition': 1,\n",
      "          'powers': 1,\n",
      "          'nwhy': 1,\n",
      "          'would': 1,\n",
      "          'continually': 1,\n",
      "          'endanger': 1,\n",
      "          'necessary': 1,\n",
      "          'ultimate': 1,\n",
      "          'plan': 1,\n",
      "          'nis': 1,\n",
      "          'woman': 1,\n",
      "          'australia': 1,\n",
      "          'integral': 1,\n",
      "          'anything': 1,\n",
      "          'nand': 1,\n",
      "          'aforementioned': 1,\n",
      "          'flooded': 1,\n",
      "          'city': 1,\n",
      "          'function': 1,\n",
      "          '_really_': 1,\n",
      "          'serve': 1,\n",
      "          'nsigh': 1,\n",
      "          'nat': 1,\n",
      "          'imagine': 1,\n",
      "          'better': 1,\n",
      "          'movie': 1,\n",
      "          'certain': 1,\n",
      "          'talent': 1,\n",
      "          'go': 1,\n",
      "          'waste': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'van': 8,\n",
      "          'movie': 7,\n",
      "          'knock': 5,\n",
      "          'damme': 5,\n",
      "          'even': 5,\n",
      "          'worst': 4,\n",
      "          'dammes': 4,\n",
      "          'clear': 4,\n",
      "          'nthe': 4,\n",
      "          'nand': 4,\n",
      "          'seen': 3,\n",
      "          'supposed': 3,\n",
      "          'never': 3,\n",
      "          'bad': 3,\n",
      "          'camera': 3,\n",
      "          'problem': 3,\n",
      "          'one': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'way': 3,\n",
      "          'car': 3,\n",
      "          'cheap': 2,\n",
      "          'action': 2,\n",
      "          'nits': 2,\n",
      "          'stars': 2,\n",
      "          'schneider': 2,\n",
      "          'plays': 2,\n",
      "          'rochon': 2,\n",
      "          'idea': 2,\n",
      "          'explanation': 2,\n",
      "          'know': 2,\n",
      "          'reason': 2,\n",
      "          'chan': 2,\n",
      "          'comes': 2,\n",
      "          'many': 2,\n",
      "          'films': 2,\n",
      "          'made': 2,\n",
      "          'directed': 2,\n",
      "          'lets': 2,\n",
      "          'second': 2,\n",
      "          'thats': 2,\n",
      "          'point': 2,\n",
      "          'get': 2,\n",
      "          'nfor': 2,\n",
      "          'example': 2,\n",
      "          'raimi': 2,\n",
      "          'movies': 2,\n",
      "          'watching': 2,\n",
      "          'neven': 2,\n",
      "          'scene': 2,\n",
      "          'drives': 2,\n",
      "          'gives': 2,\n",
      "          'performance': 2,\n",
      "          'usually': 2,\n",
      "          'every': 2,\n",
      "          'funny': 2,\n",
      "          'exactly': 1,\n",
      "          'also': 1,\n",
      "          'thus': 1,\n",
      "          'far': 1,\n",
      "          'year': 1,\n",
      "          'ni': 1,\n",
      "          'figured': 1,\n",
      "          'would': 1,\n",
      "          'least': 1,\n",
      "          'couple': 1,\n",
      "          'months': 1,\n",
      "          'saw': 1,\n",
      "          '1998': 1,\n",
      "          'alas': 1,\n",
      "          'already': 1,\n",
      "          'found': 1,\n",
      "          'njeanclaude': 1,\n",
      "          'think': 1,\n",
      "          'designer': 1,\n",
      "          'jeans': 1,\n",
      "          'executive': 1,\n",
      "          'discovers': 1,\n",
      "          'halfbrother': 1,\n",
      "          'supplying': 1,\n",
      "          'cheaper': 1,\n",
      "          'goods': 1,\n",
      "          'nrob': 1,\n",
      "          'partner': 1,\n",
      "          'nactually': 1,\n",
      "          'nshe': 1,\n",
      "          'sort': 1,\n",
      "          'popped': 1,\n",
      "          'halfway': 1,\n",
      "          'without': 1,\n",
      "          'nmany': 1,\n",
      "          'things': 1,\n",
      "          'explained': 1,\n",
      "          'bizarre': 1,\n",
      "          'seemed': 1,\n",
      "          'jackie': 1,\n",
      "          'impression': 1,\n",
      "          'throughout': 1,\n",
      "          'flick': 1,\n",
      "          'nwhere': 1,\n",
      "          'endearing': 1,\n",
      "          'normal': 1,\n",
      "          'guy': 1,\n",
      "          'character': 1,\n",
      "          'wimp': 1,\n",
      "          'nwere': 1,\n",
      "          'given': 1,\n",
      "          'basis': 1,\n",
      "          'actions': 1,\n",
      "          'nto': 1,\n",
      "          'hour': 1,\n",
      "          'style': 1,\n",
      "          'strange': 1,\n",
      "          'experiment': 1,\n",
      "          'gone': 1,\n",
      "          'horribly': 1,\n",
      "          'wrong': 1,\n",
      "          'ntsui': 1,\n",
      "          'hark': 1,\n",
      "          'last': 1,\n",
      "          'nearly': 1,\n",
      "          'double': 1,\n",
      "          'team': 1,\n",
      "          'rest': 1,\n",
      "          'exaggeration': 1,\n",
      "          'nwe': 1,\n",
      "          'treated': 1,\n",
      "          'five': 1,\n",
      "          'shot': 1,\n",
      "          'view': 1,\n",
      "          'foot': 1,\n",
      "          'entering': 1,\n",
      "          'shoe': 1,\n",
      "          'nfabulous': 1,\n",
      "          'nseriously': 1,\n",
      "          'though': 1,\n",
      "          'directors': 1,\n",
      "          'want': 1,\n",
      "          'play': 1,\n",
      "          'around': 1,\n",
      "          'conventions': 1,\n",
      "          'long': 1,\n",
      "          'dont': 1,\n",
      "          'carried': 1,\n",
      "          'away': 1,\n",
      "          'look': 1,\n",
      "          'sam': 1,\n",
      "          'n': 1,\n",
      "          'army': 1,\n",
      "          'darkness': 1,\n",
      "          'best': 1,\n",
      "          'features': 1,\n",
      "          'inventive': 1,\n",
      "          'work': 1,\n",
      "          'ever': 1,\n",
      "          'story': 1,\n",
      "          'nthats': 1,\n",
      "          'concept': 1,\n",
      "          'tsui': 1,\n",
      "          'cant': 1,\n",
      "          'seem': 1,\n",
      "          'grasp': 1,\n",
      "          'outrageous': 1,\n",
      "          'angles': 1,\n",
      "          'rule': 1,\n",
      "          'audience': 1,\n",
      "          'doesnt': 1,\n",
      "          'clue': 1,\n",
      "          'whats': 1,\n",
      "          'happening': 1,\n",
      "          'nanother': 1,\n",
      "          'looks': 1,\n",
      "          'stock': 1,\n",
      "          'used': 1,\n",
      "          'low': 1,\n",
      "          'caliber': 1,\n",
      "          'thought': 1,\n",
      "          'chinese': 1,\n",
      "          'shown': 1,\n",
      "          'really': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'inexplicable': 1,\n",
      "          'everyones': 1,\n",
      "          'voice': 1,\n",
      "          'seems': 1,\n",
      "          'dubbed': 1,\n",
      "          'seemingly': 1,\n",
      "          'aspect': 1,\n",
      "          'director': 1,\n",
      "          'actually': 1,\n",
      "          'cared': 1,\n",
      "          'inconsistent': 1,\n",
      "          'window': 1,\n",
      "          'slams': 1,\n",
      "          'ground': 1,\n",
      "          'left': 1,\n",
      "          'wheel': 1,\n",
      "          'completely': 1,\n",
      "          'destroyed': 1,\n",
      "          'nseconds': 1,\n",
      "          'later': 1,\n",
      "          'full': 1,\n",
      "          'speed': 1,\n",
      "          'nhey': 1,\n",
      "          'suspending': 1,\n",
      "          'disbelief': 1,\n",
      "          'line': 1,\n",
      "          'must': 1,\n",
      "          'drawn': 1,\n",
      "          'somewhere': 1,\n",
      "          'nfinally': 1,\n",
      "          'acting': 1,\n",
      "          'nnobody': 1,\n",
      "          'good': 1,\n",
      "          'nvan': 1,\n",
      "          'actor': 1,\n",
      "          'like': 1,\n",
      "          'mark': 1,\n",
      "          'playing': 1,\n",
      "          'everyman': 1,\n",
      "          'provide': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'assume': 1,\n",
      "          'totally': 1,\n",
      "          'unfunny': 1,\n",
      "          'acts': 1,\n",
      "          'solid': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'terribly': 1,\n",
      "          'overthetop': 1,\n",
      "          'nonce': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'havent': 1,\n",
      "          'yet': 1,\n",
      "          'enough': 1,\n",
      "          'career': 1,\n",
      "          'possibly': 1,\n",
      "          'decade': 1,\n",
      "          'inept': 1,\n",
      "          'nthere': 1,\n",
      "          'redeeming': 1,\n",
      "          'factors': 1,\n",
      "          'seriously': 1,\n",
      "          'hope': 1,\n",
      "          'print': 1,\n",
      "          'burned': 1,\n",
      "          'crisp': 1,\n",
      "          'somehow': 1,\n",
      "          'memory': 1,\n",
      "          'erased': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 17,\n",
      "          'one': 7,\n",
      "          'like': 6,\n",
      "          'rick': 6,\n",
      "          'character': 6,\n",
      "          'way': 6,\n",
      "          'whos': 5,\n",
      "          'shot': 5,\n",
      "          'would': 5,\n",
      "          'kind': 4,\n",
      "          'movie': 4,\n",
      "          'nits': 4,\n",
      "          'since': 4,\n",
      "          'least': 4,\n",
      "          'makes': 4,\n",
      "          'wrong': 4,\n",
      "          'different': 4,\n",
      "          'nthis': 4,\n",
      "          'happened': 4,\n",
      "          'scene': 4,\n",
      "          'extremely': 4,\n",
      "          'much': 3,\n",
      "          'depalma': 3,\n",
      "          'perspectives': 3,\n",
      "          'follow': 3,\n",
      "          'arena': 3,\n",
      "          'happens': 3,\n",
      "          'many': 3,\n",
      "          'well': 3,\n",
      "          'theres': 3,\n",
      "          'half': 3,\n",
      "          'life': 3,\n",
      "          'piece': 3,\n",
      "          'flawed': 3,\n",
      "          'snake': 2,\n",
      "          'eyes': 2,\n",
      "          'aggravating': 2,\n",
      "          'becomes': 2,\n",
      "          'disappointing': 2,\n",
      "          'great': 2,\n",
      "          'even': 2,\n",
      "          'cage': 2,\n",
      "          'worse': 2,\n",
      "          'story': 2,\n",
      "          'could': 2,\n",
      "          'opens': 2,\n",
      "          'hall': 2,\n",
      "          'fame': 2,\n",
      "          'nin': 2,\n",
      "          'mean': 2,\n",
      "          'may': 2,\n",
      "          'opening': 2,\n",
      "          'meet': 2,\n",
      "          'santoro': 2,\n",
      "          'talks': 2,\n",
      "          'kevin': 2,\n",
      "          'also': 2,\n",
      "          'big': 2,\n",
      "          'thats': 2,\n",
      "          'kirkland': 2,\n",
      "          'behind': 2,\n",
      "          'gets': 2,\n",
      "          'red': 2,\n",
      "          'nwhat': 2,\n",
      "          'really': 2,\n",
      "          'people': 2,\n",
      "          'get': 2,\n",
      "          'conspiracy': 2,\n",
      "          'nas': 2,\n",
      "          'learn': 2,\n",
      "          'cops': 2,\n",
      "          'takes': 2,\n",
      "          'interesting': 2,\n",
      "          'watch': 2,\n",
      "          'nit': 2,\n",
      "          'answer': 2,\n",
      "          'mystery': 2,\n",
      "          'nbut': 2,\n",
      "          'worst': 2,\n",
      "          'person': 2,\n",
      "          'didnt': 2,\n",
      "          'think': 2,\n",
      "          'rely': 2,\n",
      "          'decided': 2,\n",
      "          'become': 2,\n",
      "          'less': 2,\n",
      "          'credible': 2,\n",
      "          'end': 2,\n",
      "          'mysteries': 2,\n",
      "          'deux': 2,\n",
      "          'ex': 2,\n",
      "          'ndepalma': 2,\n",
      "          'koepp': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'complexity': 2,\n",
      "          'nhe': 2,\n",
      "          'see': 2,\n",
      "          'redemption': 2,\n",
      "          'make': 2,\n",
      "          'promises': 2,\n",
      "          'perhaps': 2,\n",
      "          'hour': 2,\n",
      "          'hed': 2,\n",
      "          'shows': 1,\n",
      "          'potential': 1,\n",
      "          'unbelievably': 1,\n",
      "          'brian': 1,\n",
      "          'hes': 1,\n",
      "          'director': 1,\n",
      "          'films': 1,\n",
      "          'always': 1,\n",
      "          'greeted': 1,\n",
      "          'fanfare': 1,\n",
      "          'nand': 1,\n",
      "          'starring': 1,\n",
      "          'nicolas': 1,\n",
      "          'gives': 1,\n",
      "          'brauvara': 1,\n",
      "          'performance': 1,\n",
      "          'hardly': 1,\n",
      "          'worth': 1,\n",
      "          'talents': 1,\n",
      "          'sole': 1,\n",
      "          'reason': 1,\n",
      "          'totally': 1,\n",
      "          'intelligent': 1,\n",
      "          'absolutely': 1,\n",
      "          'subtlety': 1,\n",
      "          'handled': 1,\n",
      "          'complexly': 1,\n",
      "          'intensely': 1,\n",
      "          'point': 1,\n",
      "          'turn': 1,\n",
      "          'leads': 1,\n",
      "          'halfassedness': 1,\n",
      "          'deservedly': 1,\n",
      "          'eighthassedness': 1,\n",
      "          'certain': 1,\n",
      "          'circles': 1,\n",
      "          'advertised': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'version': 1,\n",
      "          'kurosawas': 1,\n",
      "          'classic': 1,\n",
      "          'rashomon': 1,\n",
      "          'crime': 1,\n",
      "          'told': 1,\n",
      "          'four': 1,\n",
      "          'looks': 1,\n",
      "          'though': 1,\n",
      "          'actually': 1,\n",
      "          'might': 1,\n",
      "          'add': 1,\n",
      "          'superb': 1,\n",
      "          'long': 1,\n",
      "          'steadicam': 1,\n",
      "          'protagonist': 1,\n",
      "          'crooked': 1,\n",
      "          'atlantic': 1,\n",
      "          'city': 1,\n",
      "          'detective': 1,\n",
      "          'boxing': 1,\n",
      "          'match': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'wife': 1,\n",
      "          'interupts': 1,\n",
      "          'payperview': 1,\n",
      "          'event': 1,\n",
      "          'tv': 1,\n",
      "          'chases': 1,\n",
      "          'gambler': 1,\n",
      "          'enters': 1,\n",
      "          'pumped': 1,\n",
      "          'fight': 1,\n",
      "          'sits': 1,\n",
      "          'bud': 1,\n",
      "          'dunne': 1,\n",
      "          'gary': 1,\n",
      "          'sinise': 1,\n",
      "          'confused': 1,\n",
      "          'actor': 1,\n",
      "          'dunn': 1,\n",
      "          'watches': 1,\n",
      "          'ntheres': 1,\n",
      "          'name': 1,\n",
      "          'crowd': 1,\n",
      "          'secretary': 1,\n",
      "          'defense': 1,\n",
      "          'charles': 1,\n",
      "          'joel': 1,\n",
      "          'fabiani': 1,\n",
      "          'sitting': 1,\n",
      "          'second': 1,\n",
      "          'heavyweight': 1,\n",
      "          'champion': 1,\n",
      "          'lincoln': 1,\n",
      "          'tyler': 1,\n",
      "          'stan': 1,\n",
      "          'shaw': 1,\n",
      "          'knocked': 1,\n",
      "          'creates': 1,\n",
      "          'herrings': 1,\n",
      "          'possibilities': 1,\n",
      "          'close': 1,\n",
      "          'examination': 1,\n",
      "          'total': 1,\n",
      "          'deconstruction': 1,\n",
      "          'asks': 1,\n",
      "          'sets': 1,\n",
      "          'begins': 1,\n",
      "          'question': 1,\n",
      "          'ndiscovers': 1,\n",
      "          'good': 1,\n",
      "          'possibility': 1,\n",
      "          'trying': 1,\n",
      "          'information': 1,\n",
      "          'woman': 1,\n",
      "          'talking': 1,\n",
      "          'carla': 1,\n",
      "          'gugino': 1,\n",
      "          'flees': 1,\n",
      "          'panic': 1,\n",
      "          'tries': 1,\n",
      "          'hide': 1,\n",
      "          'adjacent': 1,\n",
      "          'casinohotel': 1,\n",
      "          'blocked': 1,\n",
      "          'doors': 1,\n",
      "          'witness': 1,\n",
      "          'going': 1,\n",
      "          'pretty': 1,\n",
      "          'fine': 1,\n",
      "          'dandy': 1,\n",
      "          'step': 1,\n",
      "          'nwe': 1,\n",
      "          'early': 1,\n",
      "          'find': 1,\n",
      "          'part': 1,\n",
      "          'obviously': 1,\n",
      "          'supposed': 1,\n",
      "          'herring': 1,\n",
      "          'stupid': 1,\n",
      "          'cliched': 1,\n",
      "          'turns': 1,\n",
      "          'chase': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'cant': 1,\n",
      "          'ricks': 1,\n",
      "          'investigation': 1,\n",
      "          'ran': 1,\n",
      "          'guts': 1,\n",
      "          'complex': 1,\n",
      "          'original': 1,\n",
      "          'third': 1,\n",
      "          'fall': 1,\n",
      "          'back': 1,\n",
      "          'easy': 1,\n",
      "          'nevents': 1,\n",
      "          'proposterous': 1,\n",
      "          'offender': 1,\n",
      "          'machina': 1,\n",
      "          'nthats': 1,\n",
      "          'outside': 1,\n",
      "          'intereference': 1,\n",
      "          'brings': 1,\n",
      "          'sudden': 1,\n",
      "          'conclusion': 1,\n",
      "          'everything': 1,\n",
      "          'okay': 1,\n",
      "          'time': 1,\n",
      "          'hurricane': 1,\n",
      "          'outofcontrol': 1,\n",
      "          'police': 1,\n",
      "          'car': 1,\n",
      "          'round': 1,\n",
      "          'ball': 1,\n",
      "          'adorned': 1,\n",
      "          'went': 1,\n",
      "          'screenwriter': 1,\n",
      "          'david': 1,\n",
      "          'respective': 1,\n",
      "          'fields': 1,\n",
      "          'known': 1,\n",
      "          'bringing': 1,\n",
      "          'idolizes': 1,\n",
      "          'hitchcock': 1,\n",
      "          'death': 1,\n",
      "          'done': 1,\n",
      "          'masterpiece': 1,\n",
      "          'blow': 1,\n",
      "          'soundman': 1,\n",
      "          'uses': 1,\n",
      "          'elements': 1,\n",
      "          'uncover': 1,\n",
      "          'granted': 1,\n",
      "          'intriguing': 1,\n",
      "          'overthetop': 1,\n",
      "          'setups': 1,\n",
      "          'notably': 1,\n",
      "          'beginning': 1,\n",
      "          'sequence': 1,\n",
      "          'camera': 1,\n",
      "          'pans': 1,\n",
      "          'top': 1,\n",
      "          'bunch': 1,\n",
      "          'rooms': 1,\n",
      "          'hotel': 1,\n",
      "          'forgetting': 1,\n",
      "          'anything': 1,\n",
      "          'boundaries': 1,\n",
      "          'nat': 1,\n",
      "          'direction': 1,\n",
      "          'partly': 1,\n",
      "          'nthen': 1,\n",
      "          'showed': 1,\n",
      "          'ability': 1,\n",
      "          'making': 1,\n",
      "          'characters': 1,\n",
      "          'flaws': 1,\n",
      "          'come': 1,\n",
      "          'depalmas': 1,\n",
      "          'earlier': 1,\n",
      "          'carlitos': 1,\n",
      "          'dove': 1,\n",
      "          'right': 1,\n",
      "          'past': 1,\n",
      "          'examined': 1,\n",
      "          'write': 1,\n",
      "          'seems': 1,\n",
      "          'halfassed': 1,\n",
      "          'effort': 1,\n",
      "          'nhes': 1,\n",
      "          'wasnt': 1,\n",
      "          'formulaic': 1,\n",
      "          'na': 1,\n",
      "          'towards': 1,\n",
      "          'fatal': 1,\n",
      "          'decision': 1,\n",
      "          'cheapened': 1,\n",
      "          'fact': 1,\n",
      "          'emotional': 1,\n",
      "          'buildup': 1,\n",
      "          'said': 1,\n",
      "          'opposite': 1,\n",
      "          'says': 1,\n",
      "          'gone': 1,\n",
      "          'intelligence': 1,\n",
      "          'disection': 1,\n",
      "          'pulls': 1,\n",
      "          'rug': 1,\n",
      "          'us': 1,\n",
      "          'convinced': 1,\n",
      "          'able': 1,\n",
      "          'go': 1,\n",
      "          'watching': 1,\n",
      "          'first': 1,\n",
      "          'couldnt': 1,\n",
      "          'wait': 1,\n",
      "          'unearthed': 1,\n",
      "          'given': 1,\n",
      "          'choice': 1,\n",
      "          'believe': 1,\n",
      "          'nnow': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'two': 1,\n",
      "          'major': 1,\n",
      "          'machinas': 1,\n",
      "          'disasterous': 1,\n",
      "          'ending': 1,\n",
      "          'goes': 1,\n",
      "          'autopilot': 1,\n",
      "          'stale': 1,\n",
      "          'recycled': 1,\n",
      "          'crap': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'never': 1,\n",
      "          'someone': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'girls': 6,\n",
      "          'crucible': 5,\n",
      "          'scene': 5,\n",
      "          'one': 3,\n",
      "          'nnot': 3,\n",
      "          'john': 3,\n",
      "          'day': 3,\n",
      "          'lewis': 3,\n",
      "          'abigail': 3,\n",
      "          'nthe': 3,\n",
      "          'opening': 3,\n",
      "          'elizabeth': 3,\n",
      "          'moral': 3,\n",
      "          'boiling': 2,\n",
      "          'forest': 2,\n",
      "          'love': 2,\n",
      "          'proctor': 2,\n",
      "          'ryder': 2,\n",
      "          'seizes': 2,\n",
      "          'chicken': 2,\n",
      "          'bit': 2,\n",
      "          'puritan': 2,\n",
      "          'witches': 2,\n",
      "          'blame': 2,\n",
      "          'play': 2,\n",
      "          'plays': 2,\n",
      "          'abigails': 2,\n",
      "          'nit': 2,\n",
      "          'frenzy': 2,\n",
      "          'nwhen': 2,\n",
      "          'nabigail': 2,\n",
      "          'much': 2,\n",
      "          'human': 2,\n",
      "          'forgive': 1,\n",
      "          'fevered': 1,\n",
      "          'criticism': 1,\n",
      "          'fervor': 1,\n",
      "          'infects': 1,\n",
      "          'nset': 1,\n",
      "          '1692': 1,\n",
      "          'salem': 1,\n",
      "          'massachusetts': 1,\n",
      "          'opens': 1,\n",
      "          'group': 1,\n",
      "          'teenage': 1,\n",
      "          'passionately': 1,\n",
      "          'singing': 1,\n",
      "          'dancing': 1,\n",
      "          'around': 1,\n",
      "          'cauldron': 1,\n",
      "          'middle': 1,\n",
      "          'glow': 1,\n",
      "          'full': 1,\n",
      "          'moon': 1,\n",
      "          'nthey': 1,\n",
      "          'beckon': 1,\n",
      "          'names': 1,\n",
      "          'men': 1,\n",
      "          'targets': 1,\n",
      "          'spells': 1,\n",
      "          'nthen': 1,\n",
      "          'lets': 1,\n",
      "          'hair': 1,\n",
      "          'sheds': 1,\n",
      "          'clothes': 1,\n",
      "          'outdone': 1,\n",
      "          'quest': 1,\n",
      "          'regain': 1,\n",
      "          'attention': 1,\n",
      "          'daniel': 1,\n",
      "          'winona': 1,\n",
      "          'suddenly': 1,\n",
      "          'beats': 1,\n",
      "          'ground': 1,\n",
      "          'smears': 1,\n",
      "          'face': 1,\n",
      "          'lips': 1,\n",
      "          'fresh': 1,\n",
      "          'blood': 1,\n",
      "          'ntaking': 1,\n",
      "          'even': 1,\n",
      "          'adolescent': 1,\n",
      "          'hormone': 1,\n",
      "          'surges': 1,\n",
      "          'account': 1,\n",
      "          'surely': 1,\n",
      "          'chickenbashing': 1,\n",
      "          'excessive': 1,\n",
      "          'especially': 1,\n",
      "          'prim': 1,\n",
      "          'sensibilities': 1,\n",
      "          'nsurely': 1,\n",
      "          'eye': 1,\n",
      "          'close': 1,\n",
      "          'coven': 1,\n",
      "          'gets': 1,\n",
      "          'errs': 1,\n",
      "          'beginning': 1,\n",
      "          'arthur': 1,\n",
      "          'millers': 1,\n",
      "          'name': 1,\n",
      "          'summoned': 1,\n",
      "          'addition': 1,\n",
      "          'screen': 1,\n",
      "          'adaptation': 1,\n",
      "          'nthis': 1,\n",
      "          'far': 1,\n",
      "          'harmless': 1,\n",
      "          'event': 1,\n",
      "          'bad': 1,\n",
      "          'start': 1,\n",
      "          'already': 1,\n",
      "          'shaky': 1,\n",
      "          'morality': 1,\n",
      "          'tale': 1,\n",
      "          'describes': 1,\n",
      "          'films': 1,\n",
      "          'tense': 1,\n",
      "          'exchanges': 1,\n",
      "          'makes': 1,\n",
      "          'wonder': 1,\n",
      "          'veracity': 1,\n",
      "          'accusation': 1,\n",
      "          'reply': 1,\n",
      "          'adds': 1,\n",
      "          'charged': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nin': 1,\n",
      "          'film': 1,\n",
      "          'becomes': 1,\n",
      "          'unintentional': 1,\n",
      "          'pandoras': 1,\n",
      "          'box': 1,\n",
      "          'credulity': 1,\n",
      "          'stretched': 1,\n",
      "          'obsession': 1,\n",
      "          'unfortunately': 1,\n",
      "          'spotlighted': 1,\n",
      "          'positions': 1,\n",
      "          'cautionary': 1,\n",
      "          'fable': 1,\n",
      "          'obsessive': 1,\n",
      "          'malevolent': 1,\n",
      "          'women': 1,\n",
      "          'witch': 1,\n",
      "          'hunts': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'memory': 1,\n",
      "          'rabbit': 1,\n",
      "          'away': 1,\n",
      "          'pot': 1,\n",
      "          'surprisingly': 1,\n",
      "          'nighttime': 1,\n",
      "          'go': 1,\n",
      "          'unnoticed': 1,\n",
      "          'two': 1,\n",
      "          'fail': 1,\n",
      "          'wake': 1,\n",
      "          'following': 1,\n",
      "          'morning': 1,\n",
      "          'invoked': 1,\n",
      "          'eager': 1,\n",
      "          'questioned': 1,\n",
      "          'confession': 1,\n",
      "          'guilt': 1,\n",
      "          'accompanied': 1,\n",
      "          'announcement': 1,\n",
      "          'return': 1,\n",
      "          'god': 1,\n",
      "          'thereafter': 1,\n",
      "          'converted': 1,\n",
      "          'immaculate': 1,\n",
      "          'witnesses': 1,\n",
      "          'led': 1,\n",
      "          'lustfully': 1,\n",
      "          'nwith': 1,\n",
      "          'alarming': 1,\n",
      "          'synchronicity': 1,\n",
      "          'hormonallyadvantaged': 1,\n",
      "          'zealously': 1,\n",
      "          'gesture': 1,\n",
      "          'point': 1,\n",
      "          'accusing': 1,\n",
      "          'fingers': 1,\n",
      "          'innocents': 1,\n",
      "          'constant': 1,\n",
      "          'reminders': 1,\n",
      "          'passion': 1,\n",
      "          'sets': 1,\n",
      "          'inexorable': 1,\n",
      "          'motion': 1,\n",
      "          'opportunity': 1,\n",
      "          'rid': 1,\n",
      "          'rival': 1,\n",
      "          'proctors': 1,\n",
      "          'wife': 1,\n",
      "          'joan': 1,\n",
      "          'allen': 1,\n",
      "          'including': 1,\n",
      "          'among': 1,\n",
      "          'accused': 1,\n",
      "          'witchcraft': 1,\n",
      "          'nappropriately': 1,\n",
      "          'narrowwaisted': 1,\n",
      "          'equipped': 1,\n",
      "          'distractingly': 1,\n",
      "          'white': 1,\n",
      "          'smile': 1,\n",
      "          'watch': 1,\n",
      "          'teeth': 1,\n",
      "          'deteriorate': 1,\n",
      "          'quickly': 1,\n",
      "          'murky': 1,\n",
      "          'yellow': 1,\n",
      "          'dashing': 1,\n",
      "          'hero': 1,\n",
      "          'overearnestness': 1,\n",
      "          'longs': 1,\n",
      "          'watched': 1,\n",
      "          'ndirector': 1,\n",
      "          'nicholas': 1,\n",
      "          'hytner': 1,\n",
      "          'guilty': 1,\n",
      "          'encouraging': 1,\n",
      "          'foamingmouth': 1,\n",
      "          'fervour': 1,\n",
      "          'shots': 1,\n",
      "          'stare': 1,\n",
      "          'mounted': 1,\n",
      "          'pedestal': 1,\n",
      "          'admiration': 1,\n",
      "          'notherwise': 1,\n",
      "          'hytners': 1,\n",
      "          'direction': 1,\n",
      "          'unremarkable': 1,\n",
      "          'nryders': 1,\n",
      "          'performance': 1,\n",
      "          'consistent': 1,\n",
      "          'mood': 1,\n",
      "          'swings': 1,\n",
      "          'nher': 1,\n",
      "          'fits': 1,\n",
      "          'energetic': 1,\n",
      "          'enough': 1,\n",
      "          'quieter': 1,\n",
      "          'moments': 1,\n",
      "          'less': 1,\n",
      "          'successful': 1,\n",
      "          'supposedly': 1,\n",
      "          'revels': 1,\n",
      "          'newfound': 1,\n",
      "          'power': 1,\n",
      "          'fails': 1,\n",
      "          'convincingly': 1,\n",
      "          'haughty': 1,\n",
      "          'although': 1,\n",
      "          'haughtiness': 1,\n",
      "          'spare': 1,\n",
      "          'npaul': 1,\n",
      "          'scofield': 1,\n",
      "          'fine': 1,\n",
      "          'overzealous': 1,\n",
      "          'judge': 1,\n",
      "          'danforth': 1,\n",
      "          'incessant': 1,\n",
      "          'posturings': 1,\n",
      "          'characters': 1,\n",
      "          'along': 1,\n",
      "          'recurrent': 1,\n",
      "          'histrionics': 1,\n",
      "          'young': 1,\n",
      "          'pricks': 1,\n",
      "          'nerves': 1,\n",
      "          'nprobably': 1,\n",
      "          'refuge': 1,\n",
      "          'restraint': 1,\n",
      "          'amidst': 1,\n",
      "          'huffing': 1,\n",
      "          'puffing': 1,\n",
      "          'allens': 1,\n",
      "          'comes': 1,\n",
      "          'sympathetic': 1,\n",
      "          'character': 1,\n",
      "          'na': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'featuring': 1,\n",
      "          'private': 1,\n",
      "          'conversation': 1,\n",
      "          'imprisoned': 1,\n",
      "          'undeniably': 1,\n",
      "          'powerful': 1,\n",
      "          'given': 1,\n",
      "          'reprieve': 1,\n",
      "          'bantering': 1,\n",
      "          'consequences': 1,\n",
      "          'revealed': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'johns': 1,\n",
      "          'audience': 1,\n",
      "          'increases': 1,\n",
      "          'urge': 1,\n",
      "          'pontificate': 1,\n",
      "          'returns': 1,\n",
      "          'urgency': 1,\n",
      "          'situation': 1,\n",
      "          'lost': 1,\n",
      "          'clear': 1,\n",
      "          'miller': 1,\n",
      "          'meant': 1,\n",
      "          'well': 1,\n",
      "          'wish': 1,\n",
      "          'delicacy': 1,\n",
      "          'fewer': 1,\n",
      "          'diversions': 1,\n",
      "          'nhis': 1,\n",
      "          'screenplay': 1,\n",
      "          'imperfect': 1,\n",
      "          'creature': 1,\n",
      "          'distractions': 1,\n",
      "          'coming': 1,\n",
      "          'loud': 1,\n",
      "          'message': 1,\n",
      "          'result': 1,\n",
      "          'clumsy': 1,\n",
      "          'muddle': 1,\n",
      "          'felt': 1,\n",
      "          'like': 1,\n",
      "          'head': 1,\n",
      "          'ceaselessly': 1,\n",
      "          'banged': 1,\n",
      "          'piousness': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'wholly': 1,\n",
      "          'believable': 1,\n",
      "          'gallows': 1,\n",
      "          'beckoned': 1,\n",
      "          'sweet': 1,\n",
      "          'release': 1,\n",
      "          'indeed': 1,\n",
      "          'nfar': 1,\n",
      "          'bewitching': 1,\n",
      "          'tests': 1,\n",
      "          'patience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 8,\n",
      "          'scene': 5,\n",
      "          'something': 5,\n",
      "          'one': 3,\n",
      "          'hold': 3,\n",
      "          'half': 3,\n",
      "          'like': 3,\n",
      "          'makes': 3,\n",
      "          'expect': 2,\n",
      "          'experience': 2,\n",
      "          'walking': 2,\n",
      "          'new': 2,\n",
      "          'godard': 2,\n",
      "          'also': 2,\n",
      "          'love': 2,\n",
      "          'four': 2,\n",
      "          'would': 2,\n",
      "          'nit': 2,\n",
      "          'sense': 2,\n",
      "          'could': 2,\n",
      "          'character': 2,\n",
      "          'worthwhile': 2,\n",
      "          'time': 2,\n",
      "          'easily': 2,\n",
      "          'nbut': 2,\n",
      "          'nyou': 2,\n",
      "          'missed': 2,\n",
      "          'anything': 2,\n",
      "          'hope': 2,\n",
      "          'even': 2,\n",
      "          'first': 2,\n",
      "          'nand': 2,\n",
      "          'thinking': 2,\n",
      "          'black': 2,\n",
      "          'used': 2,\n",
      "          'along': 2,\n",
      "          'numerous': 2,\n",
      "          'might': 1,\n",
      "          'cathartic': 1,\n",
      "          'viewing': 1,\n",
      "          'jeanluc': 1,\n",
      "          'nafter': 1,\n",
      "          'founding': 1,\n",
      "          'member': 1,\n",
      "          'highly': 1,\n",
      "          'influential': 1,\n",
      "          'french': 1,\n",
      "          'wave': 1,\n",
      "          'nhe': 1,\n",
      "          'esteemed': 1,\n",
      "          'critic': 1,\n",
      "          'lending': 1,\n",
      "          'intelligence': 1,\n",
      "          'historical': 1,\n",
      "          'perspective': 1,\n",
      "          'us': 1,\n",
      "          'much': 1,\n",
      "          'writing': 1,\n",
      "          'nhowever': 1,\n",
      "          'latest': 1,\n",
      "          'creation': 1,\n",
      "          'praise': 1,\n",
      "          'possibly': 1,\n",
      "          'exasperating': 1,\n",
      "          'year': 1,\n",
      "          'abstract': 1,\n",
      "          'concept': 1,\n",
      "          'based': 1,\n",
      "          'merit': 1,\n",
      "          'dissect': 1,\n",
      "          'following': 1,\n",
      "          'categories': 1,\n",
      "          'meeting': 1,\n",
      "          'physical': 1,\n",
      "          'passion': 1,\n",
      "          'quarrels': 1,\n",
      "          'reconciliation': 1,\n",
      "          'nthese': 1,\n",
      "          'universal': 1,\n",
      "          'truths': 1,\n",
      "          'revealed': 1,\n",
      "          'three': 1,\n",
      "          'different': 1,\n",
      "          'couples': 1,\n",
      "          'young': 1,\n",
      "          'adult': 1,\n",
      "          'elderly': 1,\n",
      "          'edgars': 1,\n",
      "          'bruno': 1,\n",
      "          'putzulu': 1,\n",
      "          'selfappointed': 1,\n",
      "          'task': 1,\n",
      "          'capture': 1,\n",
      "          'moments': 1,\n",
      "          'recent': 1,\n",
      "          'breakup': 1,\n",
      "          'define': 1,\n",
      "          'central': 1,\n",
      "          'idea': 1,\n",
      "          'things': 1,\n",
      "          'make': 1,\n",
      "          'nwhether': 1,\n",
      "          'project': 1,\n",
      "          'end': 1,\n",
      "          'play': 1,\n",
      "          'opera': 1,\n",
      "          'remains': 1,\n",
      "          'undecided': 1,\n",
      "          'thesis': 1,\n",
      "          'simple': 1,\n",
      "          'enough': 1,\n",
      "          'played': 1,\n",
      "          'right': 1,\n",
      "          'really': 1,\n",
      "          'sympathetic': 1,\n",
      "          'value': 1,\n",
      "          'anyone': 1,\n",
      "          'ninstead': 1,\n",
      "          'ensues': 1,\n",
      "          'hour': 1,\n",
      "          'repetitive': 1,\n",
      "          'vignettes': 1,\n",
      "          'next': 1,\n",
      "          'engaging': 1,\n",
      "          'last': 1,\n",
      "          'nonly': 1,\n",
      "          'utter': 1,\n",
      "          'happens': 1,\n",
      "          'youre': 1,\n",
      "          'thoroughly': 1,\n",
      "          'bored': 1,\n",
      "          'miss': 1,\n",
      "          'dont': 1,\n",
      "          'fret': 1,\n",
      "          'surface': 1,\n",
      "          'sleep': 1,\n",
      "          'whole': 1,\n",
      "          'sections': 1,\n",
      "          'fellow': 1,\n",
      "          'critics': 1,\n",
      "          'wake': 1,\n",
      "          'exactly': 1,\n",
      "          'nodded': 1,\n",
      "          'background': 1,\n",
      "          'music': 1,\n",
      "          'keeps': 1,\n",
      "          'state': 1,\n",
      "          'urgency': 1,\n",
      "          'suspense': 1,\n",
      "          'conversations': 1,\n",
      "          'nits': 1,\n",
      "          'repeated': 1,\n",
      "          'failures': 1,\n",
      "          'pay': 1,\n",
      "          'lose': 1,\n",
      "          'speeches': 1,\n",
      "          'think': 1,\n",
      "          'else': 1,\n",
      "          'anyones': 1,\n",
      "          'interest': 1,\n",
      "          'nto': 1,\n",
      "          'godards': 1,\n",
      "          'credit': 1,\n",
      "          'certainly': 1,\n",
      "          'knows': 1,\n",
      "          'frame': 1,\n",
      "          'white': 1,\n",
      "          'footage': 1,\n",
      "          'starkly': 1,\n",
      "          'beautiful': 1,\n",
      "          'nwatching': 1,\n",
      "          'edgar': 1,\n",
      "          'read': 1,\n",
      "          'train': 1,\n",
      "          'track': 1,\n",
      "          'mountain': 1,\n",
      "          'wish': 1,\n",
      "          'ponder': 1,\n",
      "          'poignant': 1,\n",
      "          'say': 1,\n",
      "          'angrier': 1,\n",
      "          'opportunities': 1,\n",
      "          'environments': 1,\n",
      "          'city': 1,\n",
      "          'country': 1,\n",
      "          'impeccably': 1,\n",
      "          'captured': 1,\n",
      "          'crisp': 1,\n",
      "          'detail': 1,\n",
      "          'script': 1,\n",
      "          'never': 1,\n",
      "          'complements': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'manages': 1,\n",
      "          'pillage': 1,\n",
      "          'photographic': 1,\n",
      "          'eye': 1,\n",
      "          'randomly': 1,\n",
      "          'cutting': 1,\n",
      "          'times': 1,\n",
      "          'within': 1,\n",
      "          'given': 1,\n",
      "          'nsometimes': 1,\n",
      "          'breaks': 1,\n",
      "          'chapter': 1,\n",
      "          'headings': 1,\n",
      "          'cryptic': 1,\n",
      "          'spoken': 1,\n",
      "          'words': 1,\n",
      "          'second': 1,\n",
      "          'composed': 1,\n",
      "          'nauseating': 1,\n",
      "          'hypercolor': 1,\n",
      "          'often': 1,\n",
      "          'blurs': 1,\n",
      "          'image': 1,\n",
      "          'suddenly': 1,\n",
      "          'feel': 1,\n",
      "          'doomed': 1,\n",
      "          'straight': 1,\n",
      "          'scanners': 1,\n",
      "          'complains': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'bastardizing': 1,\n",
      "          'history': 1,\n",
      "          'making': 1,\n",
      "          'movies': 1,\n",
      "          'nsteven': 1,\n",
      "          'spielberg': 1,\n",
      "          'picked': 1,\n",
      "          'particular': 1,\n",
      "          'nwhile': 1,\n",
      "          'ill': 1,\n",
      "          'grant': 1,\n",
      "          'happen': 1,\n",
      "          'tend': 1,\n",
      "          'shy': 1,\n",
      "          'away': 1,\n",
      "          'watching': 1,\n",
      "          'garbage': 1,\n",
      "          'still': 1,\n",
      "          'pointless': 1,\n",
      "          'focus': 1,\n",
      "          'purports': 1,\n",
      "          'articulate': 1,\n",
      "          'specific': 1,\n",
      "          'qualities': 1,\n",
      "          'couplehood': 1,\n",
      "          'goes': 1,\n",
      "          'show': 1,\n",
      "          'intelligent': 1,\n",
      "          'person': 1,\n",
      "          'isnt': 1,\n",
      "          'necessarily': 1,\n",
      "          'admirable': 1,\n",
      "          'storyteller': 1,\n",
      "          'days': 1,\n",
      "          'breathless': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mars': 4,\n",
      "          'convenient': 4,\n",
      "          'hand': 4,\n",
      "          'ghosts': 3,\n",
      "          'cube': 3,\n",
      "          'residents': 3,\n",
      "          'one': 3,\n",
      "          'dynamite': 3,\n",
      "          'even': 3,\n",
      "          'convenience': 2,\n",
      "          'remote': 2,\n",
      "          'taken': 2,\n",
      "          'williams': 2,\n",
      "          'ice': 2,\n",
      "          'forced': 2,\n",
      "          'film': 2,\n",
      "          'story': 2,\n",
      "          'zombie': 2,\n",
      "          'characters': 2,\n",
      "          'moments': 2,\n",
      "          'machine': 2,\n",
      "          'life': 2,\n",
      "          'fun': 2,\n",
      "          'bad': 2,\n",
      "          'conveniently': 2,\n",
      "          'future': 2,\n",
      "          'nand': 2,\n",
      "          'tell': 2,\n",
      "          'america': 1,\n",
      "          'loves': 1,\n",
      "          'nafter': 1,\n",
      "          'culture': 1,\n",
      "          'invented': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          '24hour': 1,\n",
      "          'atm': 1,\n",
      "          'beloved': 1,\n",
      "          'control': 1,\n",
      "          'nyet': 1,\n",
      "          'perhaps': 1,\n",
      "          'time': 1,\n",
      "          'love': 1,\n",
      "          'far': 1,\n",
      "          'nghosts': 1,\n",
      "          'stars': 1,\n",
      "          'natasha': 1,\n",
      "          'henstridge': 1,\n",
      "          'tough': 1,\n",
      "          'nails': 1,\n",
      "          'pillpoppin': 1,\n",
      "          'martian': 1,\n",
      "          'cop': 1,\n",
      "          'sent': 1,\n",
      "          'squadron': 1,\n",
      "          'retrieve': 1,\n",
      "          'demolition': 1,\n",
      "          'mining': 1,\n",
      "          'town': 1,\n",
      "          'trial': 1,\n",
      "          'back': 1,\n",
      "          'home': 1,\n",
      "          'nwhen': 1,\n",
      "          'comrades': 1,\n",
      "          'appropriately': 1,\n",
      "          'dubbed': 1,\n",
      "          'commander': 1,\n",
      "          'rookies': 1,\n",
      "          'guy': 1,\n",
      "          'cool': 1,\n",
      "          'accent': 1,\n",
      "          'discover': 1,\n",
      "          'towns': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'slaughtered': 1,\n",
      "          'team': 1,\n",
      "          'escape': 1,\n",
      "          'remaining': 1,\n",
      "          'headchopping': 1,\n",
      "          'alienpossessed': 1,\n",
      "          'clutches': 1,\n",
      "          'nfilled': 1,\n",
      "          'lovely': 1,\n",
      "          'overuse': 1,\n",
      "          'storytelling': 1,\n",
      "          'flashbacks': 1,\n",
      "          'flashessideways': 1,\n",
      "          'viewpoint': 1,\n",
      "          'changes': 1,\n",
      "          'hapless': 1,\n",
      "          'mishmash': 1,\n",
      "          'poorly': 1,\n",
      "          'constructed': 1,\n",
      "          'dialogue': 1,\n",
      "          'illconceived': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'nthe': 1,\n",
      "          'thing': 1,\n",
      "          'keeping': 1,\n",
      "          'becoming': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'mess': 1,\n",
      "          'sheer': 1,\n",
      "          'idiotic': 1,\n",
      "          'simplicity': 1,\n",
      "          'nripped': 1,\n",
      "          'straight': 1,\n",
      "          'pages': 1,\n",
      "          '1970s': 1,\n",
      "          'movie': 1,\n",
      "          'leaps': 1,\n",
      "          'moment': 1,\n",
      "          'next': 1,\n",
      "          'stopping': 1,\n",
      "          'kill': 1,\n",
      "          'lose': 1,\n",
      "          'nattempts': 1,\n",
      "          'character': 1,\n",
      "          'interaction': 1,\n",
      "          'development': 1,\n",
      "          'rare': 1,\n",
      "          'nmost': 1,\n",
      "          'come': 1,\n",
      "          'kwikemart': 1,\n",
      "          'wisdom': 1,\n",
      "          'dispensed': 1,\n",
      "          'heartily': 1,\n",
      "          'around': 1,\n",
      "          'slushee': 1,\n",
      "          'eventempered': 1,\n",
      "          'streetwise': 1,\n",
      "          'nwith': 1,\n",
      "          'gun': 1,\n",
      "          'cap': 1,\n",
      "          'reminisces': 1,\n",
      "          'street': 1,\n",
      "          'comparing': 1,\n",
      "          'zombiestomping': 1,\n",
      "          'brother': 1,\n",
      "          'kids': 1,\n",
      "          'napparently': 1,\n",
      "          'crime': 1,\n",
      "          'bronx': 1,\n",
      "          'gotten': 1,\n",
      "          'actually': 1,\n",
      "          'ritually': 1,\n",
      "          'decapitating': 1,\n",
      "          'another': 1,\n",
      "          'entertainment': 1,\n",
      "          'nbut': 1,\n",
      "          'films': 1,\n",
      "          'darkest': 1,\n",
      "          'fate': 1,\n",
      "          'lends': 1,\n",
      "          'supplying': 1,\n",
      "          'heavily': 1,\n",
      "          'armored': 1,\n",
      "          'transportation': 1,\n",
      "          'easily': 1,\n",
      "          'accessible': 1,\n",
      "          'rifles': 1,\n",
      "          'nyes': 1,\n",
      "          'man': 1,\n",
      "          'may': 1,\n",
      "          'travel': 1,\n",
      "          'space': 1,\n",
      "          'conquer': 1,\n",
      "          'nothing': 1,\n",
      "          'beats': 1,\n",
      "          'good': 1,\n",
      "          'stick': 1,\n",
      "          'tnt': 1,\n",
      "          'know': 1,\n",
      "          'every': 1,\n",
      "          'police': 1,\n",
      "          'station': 1,\n",
      "          'past': 1,\n",
      "          'present': 1,\n",
      "          'keeps': 1,\n",
      "          'healthy': 1,\n",
      "          'supply': 1,\n",
      "          'ncharacters': 1,\n",
      "          'die': 1,\n",
      "          'heads': 1,\n",
      "          'lopped': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'anyway': 1,\n",
      "          'care': 1,\n",
      "          'nas': 1,\n",
      "          'long': 1,\n",
      "          'plenty': 1,\n",
      "          'narcotics': 1,\n",
      "          'immunity': 1,\n",
      "          'guaranteed': 1,\n",
      "          'neventually': 1,\n",
      "          'though': 1,\n",
      "          'welltrained': 1,\n",
      "          'alien': 1,\n",
      "          'gets': 1,\n",
      "          'bit': 1,\n",
      "          'uppity': 1,\n",
      "          'needs': 1,\n",
      "          'taught': 1,\n",
      "          'lesson': 1,\n",
      "          'nwhat': 1,\n",
      "          'better': 1,\n",
      "          'way': 1,\n",
      "          'sacrificing': 1,\n",
      "          'minor': 1,\n",
      "          'nuclear': 1,\n",
      "          'detonation': 1,\n",
      "          'killing': 1,\n",
      "          'anything': 1,\n",
      "          'guns': 1,\n",
      "          'cant': 1,\n",
      "          'handle': 1,\n",
      "          'nexplosions': 1,\n",
      "          'nukes': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'placed': 1,\n",
      "          'packs': 1,\n",
      "          'train': 1,\n",
      "          'stolen': 1,\n",
      "          'set': 1,\n",
      "          'road': 1,\n",
      "          'warrior': 1,\n",
      "          'certainly': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'defines': 1,\n",
      "          'cops': 1,\n",
      "          'tribunal': 1,\n",
      "          'pronounces': 1,\n",
      "          'us': 1,\n",
      "          'nfor': 1,\n",
      "          'indeed': 1,\n",
      "          'john': 1,\n",
      "          'carpenter': 1,\n",
      "          'run': 1,\n",
      "          'things': 1,\n",
      "          'say': 1,\n",
      "          'instead': 1,\n",
      "          'decided': 1,\n",
      "          'use': 1,\n",
      "          'whatever': 1,\n",
      "          'ridiculously': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 7,\n",
      "          'guy': 6,\n",
      "          'movie': 6,\n",
      "          'character': 6,\n",
      "          'affleck': 6,\n",
      "          'action': 6,\n",
      "          'reindeer': 5,\n",
      "          'games': 5,\n",
      "          'nthe': 5,\n",
      "          'audience': 5,\n",
      "          'film': 5,\n",
      "          'rudy': 5,\n",
      "          'bad': 5,\n",
      "          'like': 5,\n",
      "          'never': 4,\n",
      "          'twists': 4,\n",
      "          'n': 4,\n",
      "          'nick': 4,\n",
      "          'scenes': 4,\n",
      "          'films': 3,\n",
      "          'way': 3,\n",
      "          'behind': 3,\n",
      "          'story': 3,\n",
      "          'something': 3,\n",
      "          'us': 3,\n",
      "          'much': 3,\n",
      "          'ending': 3,\n",
      "          'used': 3,\n",
      "          'thing': 3,\n",
      "          'frequently': 3,\n",
      "          'role': 3,\n",
      "          'sinise': 3,\n",
      "          'top': 3,\n",
      "          'ashley': 3,\n",
      "          'three': 2,\n",
      "          'recent': 2,\n",
      "          'kruger': 2,\n",
      "          'arlington': 2,\n",
      "          'cant': 2,\n",
      "          'characters': 2,\n",
      "          'even': 2,\n",
      "          'numerous': 2,\n",
      "          'turns': 2,\n",
      "          'many': 2,\n",
      "          'watching': 2,\n",
      "          'becomes': 2,\n",
      "          'oh': 2,\n",
      "          'f': 2,\n",
      "          'take': 2,\n",
      "          'twist': 2,\n",
      "          'almost': 2,\n",
      "          'stupid': 2,\n",
      "          'nand': 2,\n",
      "          'would': 2,\n",
      "          'time': 2,\n",
      "          'keeps': 2,\n",
      "          'damned': 2,\n",
      "          'krugers': 2,\n",
      "          'old': 2,\n",
      "          'less': 2,\n",
      "          'better': 2,\n",
      "          'get': 2,\n",
      "          'know': 2,\n",
      "          'suddenly': 2,\n",
      "          'whole': 2,\n",
      "          'works': 2,\n",
      "          'quickly': 2,\n",
      "          'becoming': 2,\n",
      "          'work': 2,\n",
      "          'several': 2,\n",
      "          'nthis': 2,\n",
      "          'considering': 2,\n",
      "          'place': 2,\n",
      "          'could': 2,\n",
      "          'ben': 2,\n",
      "          'hardened': 2,\n",
      "          'criminal': 2,\n",
      "          'flick': 2,\n",
      "          'prison': 2,\n",
      "          'nearly': 2,\n",
      "          'self': 2,\n",
      "          'nit': 2,\n",
      "          'whos': 2,\n",
      "          'played': 2,\n",
      "          'gary': 2,\n",
      "          'another': 2,\n",
      "          'theron': 2,\n",
      "          'frenzied': 2,\n",
      "          'looks': 2,\n",
      "          'nhe': 2,\n",
      "          'indian': 2,\n",
      "          'casino': 2,\n",
      "          'nthough': 2,\n",
      "          'chance': 2,\n",
      "          'two': 2,\n",
      "          '2': 2,\n",
      "          'following': 2,\n",
      "          'actor': 2,\n",
      "          'frankenheimer': 2,\n",
      "          'play': 2,\n",
      "          'made': 2,\n",
      "          'next': 2,\n",
      "          'charm': 2,\n",
      "          'script': 2,\n",
      "          'easily': 1,\n",
      "          'worst': 1,\n",
      "          'penned': 1,\n",
      "          'ehren': 1,\n",
      "          'scream': 1,\n",
      "          '3': 1,\n",
      "          'rd': 1,\n",
      "          'others': 1,\n",
      "          'derivative': 1,\n",
      "          'special': 1,\n",
      "          'seem': 1,\n",
      "          'write': 1,\n",
      "          'believable': 1,\n",
      "          'dialogue': 1,\n",
      "          'sample': 1,\n",
      "          'rule': 1,\n",
      "          '1': 1,\n",
      "          'put': 1,\n",
      "          'car': 1,\n",
      "          'thief': 1,\n",
      "          'wheel': 1,\n",
      "          'create': 1,\n",
      "          'multifaceted': 1,\n",
      "          'engineer': 1,\n",
      "          'coherent': 1,\n",
      "          'plots': 1,\n",
      "          'sure': 1,\n",
      "          'knows': 1,\n",
      "          'pile': 1,\n",
      "          'nonsensical': 1,\n",
      "          'matter': 1,\n",
      "          'deems': 1,\n",
      "          'actual': 1,\n",
      "          'increasingly': 1,\n",
      "          'unlikely': 1,\n",
      "          'nhis': 1,\n",
      "          'screenplay': 1,\n",
      "          'tables': 1,\n",
      "          'times': 1,\n",
      "          'punishment': 1,\n",
      "          'reward': 1,\n",
      "          'anywhere': 1,\n",
      "          'sight': 1,\n",
      "          'ni': 1,\n",
      "          'envision': 1,\n",
      "          'laughing': 1,\n",
      "          'keyboard': 1,\n",
      "          'thought': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'go': 1,\n",
      "          'ck': 1,\n",
      "          'jack': 1,\n",
      "          'ass': 1,\n",
      "          'decipher': 1,\n",
      "          'mother': 1,\n",
      "          'cker': 1,\n",
      "          'nits': 1,\n",
      "          'writer': 1,\n",
      "          'angry': 1,\n",
      "          'shelling': 1,\n",
      "          'money': 1,\n",
      "          'see': 1,\n",
      "          'hell': 1,\n",
      "          'anyone': 1,\n",
      "          'want': 1,\n",
      "          'invest': 1,\n",
      "          'screenwriter': 1,\n",
      "          'changing': 1,\n",
      "          'rules': 1,\n",
      "          'reason': 1,\n",
      "          'congratulate': 1,\n",
      "          'damn': 1,\n",
      "          'clever': 1,\n",
      "          'nauteur': 1,\n",
      "          'theory': 1,\n",
      "          'style': 1,\n",
      "          'directors': 1,\n",
      "          'winds': 1,\n",
      "          'screen': 1,\n",
      "          'nkruger': 1,\n",
      "          'obviously': 1,\n",
      "          'paid': 1,\n",
      "          'mind': 1,\n",
      "          'chestnut': 1,\n",
      "          'sometimes': 1,\n",
      "          'claim': 1,\n",
      "          'originals': 1,\n",
      "          'rds': 1,\n",
      "          'direct': 1,\n",
      "          'steal': 1,\n",
      "          'alan': 1,\n",
      "          'j': 1,\n",
      "          'pakula': 1,\n",
      "          'thriller': 1,\n",
      "          'parallax': 1,\n",
      "          'view': 1,\n",
      "          'ol': 1,\n",
      "          'gem': 1,\n",
      "          'incriminates': 1,\n",
      "          'themself': 1,\n",
      "          'saying': 1,\n",
      "          'shouldnt': 1,\n",
      "          'pronouns': 1,\n",
      "          'protect': 1,\n",
      "          'gender': 1,\n",
      "          'grammar': 1,\n",
      "          'nbe': 1,\n",
      "          'stunned': 1,\n",
      "          'protagonist': 1,\n",
      "          'asks': 1,\n",
      "          'realizing': 1,\n",
      "          'along': 1,\n",
      "          'nsince': 1,\n",
      "          'endings': 1,\n",
      "          'currently': 1,\n",
      "          'vogue': 1,\n",
      "          'seeing': 1,\n",
      "          'screenplays': 1,\n",
      "          'usually': 1,\n",
      "          'come': 1,\n",
      "          'equipped': 1,\n",
      "          'per': 1,\n",
      "          'guess': 1,\n",
      "          'wonder': 1,\n",
      "          'nhes': 1,\n",
      "          'miramaxs': 1,\n",
      "          'mickey': 1,\n",
      "          'mouse': 1,\n",
      "          'company': 1,\n",
      "          'already': 1,\n",
      "          'signed': 1,\n",
      "          'upcoming': 1,\n",
      "          'projects': 1,\n",
      "          'appropriate': 1,\n",
      "          'miramax': 1,\n",
      "          'label': 1,\n",
      "          'artistically': 1,\n",
      "          'daring': 1,\n",
      "          'become': 1,\n",
      "          'grindhouse': 1,\n",
      "          'coddling': 1,\n",
      "          'foreign': 1,\n",
      "          'imports': 1,\n",
      "          'life': 1,\n",
      "          'beautiful': 1,\n",
      "          'freddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'vehicles': 1,\n",
      "          'ntheir': 1,\n",
      "          'companys': 1,\n",
      "          'current': 1,\n",
      "          'logo': 1,\n",
      "          'ride': 1,\n",
      "          'trends': 1,\n",
      "          'nreindeer': 1,\n",
      "          'stars': 1,\n",
      "          'supposedly': 1,\n",
      "          'spending': 1,\n",
      "          'days': 1,\n",
      "          'nights': 1,\n",
      "          'bars': 1,\n",
      "          'fantasies': 1,\n",
      "          'pecan': 1,\n",
      "          'pies': 1,\n",
      "          'dancing': 1,\n",
      "          'atop': 1,\n",
      "          'head': 1,\n",
      "          'nalthough': 1,\n",
      "          'given': 1,\n",
      "          'barbed': 1,\n",
      "          'wire': 1,\n",
      "          'tattoos': 1,\n",
      "          'insinuate': 1,\n",
      "          'assness': 1,\n",
      "          'plays': 1,\n",
      "          'steve': 1,\n",
      "          'guttenberg': 1,\n",
      "          'preciously': 1,\n",
      "          'mugging': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          'naffleck': 1,\n",
      "          'puppy': 1,\n",
      "          'dog': 1,\n",
      "          'impossible': 1,\n",
      "          'believe': 1,\n",
      "          'survive': 1,\n",
      "          'harsh': 1,\n",
      "          'environment': 1,\n",
      "          'without': 1,\n",
      "          'everyones': 1,\n",
      "          'bitch': 1,\n",
      "          'badly': 1,\n",
      "          'written': 1,\n",
      "          'grows': 1,\n",
      "          'balls': 1,\n",
      "          'plot': 1,\n",
      "          'calls': 1,\n",
      "          'outrageous': 1,\n",
      "          'directing': 1,\n",
      "          'consciously': 1,\n",
      "          'gritty': 1,\n",
      "          'close': 1,\n",
      "          'parody': 1,\n",
      "          'recall': 1,\n",
      "          'serious': 1,\n",
      "          'getting': 1,\n",
      "          'may': 1,\n",
      "          'wiser': 1,\n",
      "          'makers': 1,\n",
      "          'simply': 1,\n",
      "          'went': 1,\n",
      "          'direction': 1,\n",
      "          'casting': 1,\n",
      "          'jerry': 1,\n",
      "          'seinfeld': 1,\n",
      "          'howard': 1,\n",
      "          'stern': 1,\n",
      "          'sniveling': 1,\n",
      "          'yet': 1,\n",
      "          'villain': 1,\n",
      "          'performance': 1,\n",
      "          'njames': 1,\n",
      "          'frain': 1,\n",
      "          'rudys': 1,\n",
      "          'cellmate': 1,\n",
      "          'manslaughterer': 1,\n",
      "          'found': 1,\n",
      "          'pen': 1,\n",
      "          'pal': 1,\n",
      "          'gorgeous': 1,\n",
      "          'mason': 1,\n",
      "          'charlize': 1,\n",
      "          'nashley': 1,\n",
      "          'groupie': 1,\n",
      "          'sends': 1,\n",
      "          'cheesecake': 1,\n",
      "          'photos': 1,\n",
      "          'though': 1,\n",
      "          'shes': 1,\n",
      "          'seen': 1,\n",
      "          'picture': 1,\n",
      "          'nwhich': 1,\n",
      "          'fine': 1,\n",
      "          'since': 1,\n",
      "          'killed': 1,\n",
      "          'nearriot': 1,\n",
      "          'paroled': 1,\n",
      "          'day': 1,\n",
      "          'takes': 1,\n",
      "          'leads': 1,\n",
      "          'sudden': 1,\n",
      "          'sex': 1,\n",
      "          'scene': 1,\n",
      "          'kinda': 1,\n",
      "          'rape': 1,\n",
      "          'surprise': 1,\n",
      "          'visit': 1,\n",
      "          'ashleys': 1,\n",
      "          'brother': 1,\n",
      "          'gabriel': 1,\n",
      "          'waltzes': 1,\n",
      "          'shabby': 1,\n",
      "          'hotel': 1,\n",
      "          'room': 1,\n",
      "          'flanked': 1,\n",
      "          'thuggish': 1,\n",
      "          'cohorts': 1,\n",
      "          'plans': 1,\n",
      "          'rob': 1,\n",
      "          'christmas': 1,\n",
      "          'eve': 1,\n",
      "          'assistance': 1,\n",
      "          'thinks': 1,\n",
      "          'according': 1,\n",
      "          'wrote': 1,\n",
      "          'letters': 1,\n",
      "          'guard': 1,\n",
      "          'end': 1,\n",
      "          'pulls': 1,\n",
      "          'rug': 1,\n",
      "          'everything': 1,\n",
      "          'ive': 1,\n",
      "          'described': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'irrelevant': 1,\n",
      "          'expect': 1,\n",
      "          'chose': 1,\n",
      "          'catching': 1,\n",
      "          'prey': 1,\n",
      "          'proceeds': 1,\n",
      "          'stall': 1,\n",
      "          'interminably': 1,\n",
      "          'good': 1,\n",
      "          'kill': 1,\n",
      "          'captor': 1,\n",
      "          'crack': 1,\n",
      "          'oneliner': 1,\n",
      "          'nincluded': 1,\n",
      "          'different': 1,\n",
      "          'guys': 1,\n",
      "          'explaining': 1,\n",
      "          'motives': 1,\n",
      "          'hero': 1,\n",
      "          'killing': 1,\n",
      "          'talkfest': 1,\n",
      "          'explained': 1,\n",
      "          'flustered': 1,\n",
      "          'incredulous': 1,\n",
      "          'directed': 1,\n",
      "          'john': 1,\n",
      "          'straightforward': 1,\n",
      "          'director': 1,\n",
      "          'lucked': 1,\n",
      "          'manchurian': 1,\n",
      "          'candidate': 1,\n",
      "          'early': 1,\n",
      "          'career': 1,\n",
      "          'fell': 1,\n",
      "          'alist': 1,\n",
      "          'string': 1,\n",
      "          'flops': 1,\n",
      "          'age': 1,\n",
      "          'slowly': 1,\n",
      "          'climbing': 1,\n",
      "          'back': 1,\n",
      "          'success': 1,\n",
      "          'choosing': 1,\n",
      "          'scripts': 1,\n",
      "          'last': 1,\n",
      "          'major': 1,\n",
      "          'ronin': 1,\n",
      "          'quite': 1,\n",
      "          'movies': 1,\n",
      "          'followed': 1,\n",
      "          'island': 1,\n",
      "          'dr': 1,\n",
      "          'morneau': 1,\n",
      "          'remember': 1,\n",
      "          'marlon': 1,\n",
      "          'brando': 1,\n",
      "          'mime': 1,\n",
      "          'makeup': 1,\n",
      "          'flattering': 1,\n",
      "          'moomoo': 1,\n",
      "          'sequences': 1,\n",
      "          'minimum': 1,\n",
      "          'quick': 1,\n",
      "          'cutting': 1,\n",
      "          'nowadays': 1,\n",
      "          'commonly': 1,\n",
      "          'comprised': 1,\n",
      "          'millisecond': 1,\n",
      "          'flash': 1,\n",
      "          'cuts': 1,\n",
      "          'strung': 1,\n",
      "          'together': 1,\n",
      "          'laid': 1,\n",
      "          'brainzapped': 1,\n",
      "          'mtv': 1,\n",
      "          'pick': 1,\n",
      "          'apart': 1,\n",
      "          'nproblem': 1,\n",
      "          'failed': 1,\n",
      "          'escapes': 1,\n",
      "          'serve': 1,\n",
      "          'purpose': 1,\n",
      "          'pad': 1,\n",
      "          'running': 1,\n",
      "          'remind': 1,\n",
      "          'rather': 1,\n",
      "          'filmed': 1,\n",
      "          'radio': 1,\n",
      "          'ncharacter': 1,\n",
      "          'problems': 1,\n",
      "          'abound': 1,\n",
      "          'shift': 1,\n",
      "          'sweet': 1,\n",
      "          'boy': 1,\n",
      "          'door': 1,\n",
      "          'earnestness': 1,\n",
      "          'hard': 1,\n",
      "          'edged': 1,\n",
      "          'wiseacre': 1,\n",
      "          'latter': 1,\n",
      "          'least': 1,\n",
      "          'point': 1,\n",
      "          'capable': 1,\n",
      "          'pulling': 1,\n",
      "          'former': 1,\n",
      "          'ease': 1,\n",
      "          'often': 1,\n",
      "          'coasts': 1,\n",
      "          'lackadaisical': 1,\n",
      "          'around': 1,\n",
      "          'growl': 1,\n",
      "          'swear': 1,\n",
      "          'nbut': 1,\n",
      "          'starts': 1,\n",
      "          'growling': 1,\n",
      "          'swearing': 1,\n",
      "          'alongside': 1,\n",
      "          'class': 1,\n",
      "          'clown': 1,\n",
      "          'imitating': 1,\n",
      "          'tarantino': 1,\n",
      "          'gangster': 1,\n",
      "          'ncharlize': 1,\n",
      "          'extraordinary': 1,\n",
      "          'talent': 1,\n",
      "          'playing': 1,\n",
      "          'whatever': 1,\n",
      "          'part': 1,\n",
      "          'requires': 1,\n",
      "          'whether': 1,\n",
      "          'vulnerability': 1,\n",
      "          'moment': 1,\n",
      "          'anger': 1,\n",
      "          'nshe': 1,\n",
      "          'evince': 1,\n",
      "          'make': 1,\n",
      "          'impression': 1,\n",
      "          'beyond': 1,\n",
      "          'obvious': 1,\n",
      "          'physical': 1,\n",
      "          'attributes': 1,\n",
      "          'needlessly': 1,\n",
      "          'pop': 1,\n",
      "          'italicize': 1,\n",
      "          'ngary': 1,\n",
      "          'snake': 1,\n",
      "          'eyes': 1,\n",
      "          'snarling': 1,\n",
      "          'vitriol': 1,\n",
      "          'must': 1,\n",
      "          'incredibly': 1,\n",
      "          'bored': 1,\n",
      "          'stomping': 1,\n",
      "          'paces': 1,\n",
      "          'going': 1,\n",
      "          'control': 1,\n",
      "          'interested': 1,\n",
      "          'annoyance': 1,\n",
      "          'goes': 1,\n",
      "          'threat': 1,\n",
      "          'nthese': 1,\n",
      "          'talented': 1,\n",
      "          'people': 1,\n",
      "          'mistake': 1,\n",
      "          'jumping': 1,\n",
      "          'little': 1,\n",
      "          'stock': 1,\n",
      "          'bag': 1,\n",
      "          'tricks': 1,\n",
      "          'dully': 1,\n",
      "          'springs': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dalmatians': 6,\n",
      "          '102': 4,\n",
      "          'dogs': 4,\n",
      "          '101': 3,\n",
      "          'thats': 3,\n",
      "          'puppies': 3,\n",
      "          'evans': 3,\n",
      "          'nthe': 3,\n",
      "          'since': 3,\n",
      "          'time': 2,\n",
      "          'close': 2,\n",
      "          'lots': 2,\n",
      "          'around': 2,\n",
      "          'closes': 2,\n",
      "          'cruella': 2,\n",
      "          'named': 2,\n",
      "          'even': 2,\n",
      "          'animated': 2,\n",
      "          'pelt': 2,\n",
      "          'designer': 2,\n",
      "          'flail': 2,\n",
      "          'wail': 2,\n",
      "          'little': 2,\n",
      "          'less': 2,\n",
      "          'pretty': 2,\n",
      "          'pop': 2,\n",
      "          'followup': 1,\n",
      "          'disneys': 1,\n",
      "          'liveaction': 1,\n",
      "          'better': 1,\n",
      "          'entertaining': 1,\n",
      "          'first': 1,\n",
      "          'njust': 1,\n",
      "          'unlikely': 1,\n",
      "          'nwith': 1,\n",
      "          'disney': 1,\n",
      "          'studios': 1,\n",
      "          'proven': 1,\n",
      "          'comes': 1,\n",
      "          'going': 1,\n",
      "          'definitely': 1,\n",
      "          'merrier': 1,\n",
      "          'n1996s': 1,\n",
      "          'certainly': 1,\n",
      "          'wasnt': 1,\n",
      "          'greatest': 1,\n",
      "          'moviegoing': 1,\n",
      "          'experience': 1,\n",
      "          'feature': 1,\n",
      "          'glenn': 1,\n",
      "          'outrageous': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'performance': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'two': 1,\n",
      "          'amiable': 1,\n",
      "          'leads': 1,\n",
      "          'form': 1,\n",
      "          'jeff': 1,\n",
      "          'daniels': 1,\n",
      "          'joely': 1,\n",
      "          'richardson': 1,\n",
      "          'adorable': 1,\n",
      "          'spotted': 1,\n",
      "          'nthis': 1,\n",
      "          'seem': 1,\n",
      "          'fewer': 1,\n",
      "          'screen': 1,\n",
      "          'facial': 1,\n",
      "          'physical': 1,\n",
      "          'gyrations': 1,\n",
      "          'starting': 1,\n",
      "          'feel': 1,\n",
      "          'old': 1,\n",
      "          '53yearold': 1,\n",
      "          'actress': 1,\n",
      "          'startling': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'wig': 1,\n",
      "          'nbut': 1,\n",
      "          'half': 1,\n",
      "          'problem': 1,\n",
      "          'kevin': 1,\n",
      "          'limas': 1,\n",
      "          'laborious': 1,\n",
      "          'film': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'collosal': 1,\n",
      "          'bore': 1,\n",
      "          'embarrassing': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'almost': 1,\n",
      "          'singlehandedly': 1,\n",
      "          'foisted': 1,\n",
      "          'wisecracking': 1,\n",
      "          'macaw': 1,\n",
      "          'thinks': 1,\n",
      "          'hes': 1,\n",
      "          'dog': 1,\n",
      "          'voiced': 1,\n",
      "          'eric': 1,\n",
      "          'idle': 1,\n",
      "          'rabid': 1,\n",
      "          'plotlessness': 1,\n",
      "          'goes': 1,\n",
      "          'winds': 1,\n",
      "          'goo': 1,\n",
      "          'incredibly': 1,\n",
      "          'wooden': 1,\n",
      "          'actors': 1,\n",
      "          'plays': 1,\n",
      "          'romantic': 1,\n",
      "          'heroes': 1,\n",
      "          'piece': 1,\n",
      "          'welshman': 1,\n",
      "          'ioan': 1,\n",
      "          'gruffudd': 1,\n",
      "          'blanderthanbland': 1,\n",
      "          'alice': 1,\n",
      "          'parole': 1,\n",
      "          'officer': 1,\n",
      "          'chlo': 1,\n",
      "          'ngruffudd': 1,\n",
      "          'cute': 1,\n",
      "          'harmless': 1,\n",
      "          'perhaps': 1,\n",
      "          'cant': 1,\n",
      "          'aspire': 1,\n",
      "          'upstage': 1,\n",
      "          'course': 1,\n",
      "          'case': 1,\n",
      "          'split': 1,\n",
      "          'ends': 1,\n",
      "          'nbad': 1,\n",
      "          'acting': 1,\n",
      "          'however': 1,\n",
      "          'seems': 1,\n",
      "          'requirement': 1,\n",
      "          'sequel': 1,\n",
      "          'g': 1,\n",
      "          'rard': 1,\n",
      "          'depardieu': 1,\n",
      "          'shows': 1,\n",
      "          'french': 1,\n",
      "          'furrier': 1,\n",
      "          'haircut': 1,\n",
      "          'like': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'niros': 1,\n",
      "          'men': 1,\n",
      "          'honor': 1,\n",
      "          'njean': 1,\n",
      "          'pierre': 1,\n",
      "          'le': 1,\n",
      "          'flamboyant': 1,\n",
      "          'fashion': 1,\n",
      "          'penchant': 1,\n",
      "          'fine': 1,\n",
      "          'furs': 1,\n",
      "          'depardieus': 1,\n",
      "          'overthetop': 1,\n",
      "          'antics': 1,\n",
      "          'mimic': 1,\n",
      "          'campy': 1,\n",
      "          'nfrances': 1,\n",
      "          'popular': 1,\n",
      "          'export': 1,\n",
      "          'besides': 1,\n",
      "          'brie': 1,\n",
      "          'long': 1,\n",
      "          'turned': 1,\n",
      "          'caricature': 1,\n",
      "          'producers': 1,\n",
      "          'milk': 1,\n",
      "          'realization': 1,\n",
      "          'worthle': 1,\n",
      "          'likes': 1,\n",
      "          'refer': 1,\n",
      "          'furry': 1,\n",
      "          'critters': 1,\n",
      "          'poopies': 1,\n",
      "          'par': 1,\n",
      "          'example': 1,\n",
      "          'ad': 1,\n",
      "          'nauseum': 1,\n",
      "          'finesses': 1,\n",
      "          'script': 1,\n",
      "          'attributed': 1,\n",
      "          'four': 1,\n",
      "          'screenwriters': 1,\n",
      "          'far': 1,\n",
      "          'removed': 1,\n",
      "          'anything': 1,\n",
      "          'dodie': 1,\n",
      "          'smith': 1,\n",
      "          'ever': 1,\n",
      "          'dreamed': 1,\n",
      "          'quickly': 1,\n",
      "          'dispensed': 1,\n",
      "          'takes': 1,\n",
      "          'paroled': 1,\n",
      "          'shaken': 1,\n",
      "          'years': 1,\n",
      "          'successful': 1,\n",
      "          'aversion': 1,\n",
      "          'therapy': 1,\n",
      "          'slammer': 1,\n",
      "          'tolling': 1,\n",
      "          'big': 1,\n",
      "          'ben': 1,\n",
      "          'nthat': 1,\n",
      "          'done': 1,\n",
      "          'back': 1,\n",
      "          'mansion': 1,\n",
      "          'roll': 1,\n",
      "          'heretofore': 1,\n",
      "          'offlimits': 1,\n",
      "          'sables': 1,\n",
      "          'minks': 1,\n",
      "          'plan': 1,\n",
      "          'skin': 1,\n",
      "          'dahlings': 1,\n",
      "          'sake': 1,\n",
      "          'hooded': 1,\n",
      "          'gown': 1,\n",
      "          'cutetry': 1,\n",
      "          'making': 1,\n",
      "          'puppy': 1,\n",
      "          'look': 1,\n",
      "          'otherwisebut': 1,\n",
      "          'much': 1,\n",
      "          'ntheres': 1,\n",
      "          'always': 1,\n",
      "          'feeling': 1,\n",
      "          'theres': 1,\n",
      "          'trainer': 1,\n",
      "          'wings': 1,\n",
      "          'coaxing': 1,\n",
      "          'open': 1,\n",
      "          'doors': 1,\n",
      "          'pick': 1,\n",
      "          'food': 1,\n",
      "          'bowls': 1,\n",
      "          'unison': 1,\n",
      "          'tape': 1,\n",
      "          'videocasette': 1,\n",
      "          'recorder': 1,\n",
      "          'nsavvy': 1,\n",
      "          'holiday': 1,\n",
      "          'goers': 1,\n",
      "          'skip': 1,\n",
      "          'original': 1,\n",
      "          '1961': 1,\n",
      "          'classic': 1,\n",
      "          'vcrs': 1,\n",
      "          'instead': 1,\n",
      "          'nits': 1,\n",
      "          'one': 1,\n",
      "          'dalmatian': 1,\n",
      "          'satisfying': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'like': 5,\n",
      "          'video': 4,\n",
      "          'nthe': 3,\n",
      "          'supposed': 3,\n",
      "          'home': 3,\n",
      "          'menu': 3,\n",
      "          'screens': 3,\n",
      "          'race': 2,\n",
      "          'bible': 2,\n",
      "          'welles': 2,\n",
      "          'hal': 2,\n",
      "          'lindsey': 2,\n",
      "          'recent': 2,\n",
      "          'well': 2,\n",
      "          'never': 2,\n",
      "          'earth': 2,\n",
      "          'nwere': 2,\n",
      "          'still': 2,\n",
      "          'moments': 2,\n",
      "          'nalso': 2,\n",
      "          'stock': 2,\n",
      "          'footage': 2,\n",
      "          'dvd': 2,\n",
      "          'vci': 2,\n",
      "          '1': 2,\n",
      "          'onesided': 1,\n",
      "          'doom': 1,\n",
      "          'gloom': 1,\n",
      "          'documentary': 1,\n",
      "          'possible': 1,\n",
      "          'annihilation': 1,\n",
      "          'human': 1,\n",
      "          'foretold': 1,\n",
      "          'norson': 1,\n",
      "          'narrates': 1,\n",
      "          'appears': 1,\n",
      "          'along': 1,\n",
      "          'bestselling': 1,\n",
      "          'author': 1,\n",
      "          'discusses': 1,\n",
      "          'various': 1,\n",
      "          'prophecies': 1,\n",
      "          'relates': 1,\n",
      "          '1976': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'anyway': 1,\n",
      "          'events': 1,\n",
      "          'dated': 1,\n",
      "          'badly': 1,\n",
      "          'many': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'future': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'planets': 1,\n",
      "          'solar': 1,\n",
      "          'system': 1,\n",
      "          'line': 1,\n",
      "          'year': 1,\n",
      "          '1982': 1,\n",
      "          'cause': 1,\n",
      "          'chaos': 1,\n",
      "          'arms': 1,\n",
      "          'soviets': 1,\n",
      "          'america': 1,\n",
      "          'kickoff': 1,\n",
      "          'apocalypse': 1,\n",
      "          'nsome': 1,\n",
      "          'ludicrous': 1,\n",
      "          'come': 1,\n",
      "          'alluded': 1,\n",
      "          'people': 1,\n",
      "          'jimmy': 1,\n",
      "          'carter': 1,\n",
      "          'henry': 1,\n",
      "          'kissinger': 1,\n",
      "          'may': 1,\n",
      "          'actually': 1,\n",
      "          'antichrist': 1,\n",
      "          'theres': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'end': 1,\n",
      "          'meant': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'idea': 1,\n",
      "          'battle': 1,\n",
      "          'armageddon': 1,\n",
      "          'might': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'depicted': 1,\n",
      "          'going': 1,\n",
      "          'incredibly': 1,\n",
      "          'boring': 1,\n",
      "          'late': 1,\n",
      "          'great': 1,\n",
      "          'planet': 1,\n",
      "          'available': 1,\n",
      "          'nit': 1,\n",
      "          'contains': 1,\n",
      "          'standard': 1,\n",
      "          'form': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '33': 1,\n",
      "          'although': 1,\n",
      "          'letterboxed': 1,\n",
      "          'included': 1,\n",
      "          'brief': 1,\n",
      "          'bios': 1,\n",
      "          'orson': 1,\n",
      "          'trailer': 1,\n",
      "          'another': 1,\n",
      "          'release': 1,\n",
      "          'chariots': 1,\n",
      "          'gods': 1,\n",
      "          'naudio': 1,\n",
      "          'mono': 1,\n",
      "          'dolby': 1,\n",
      "          'digital': 1,\n",
      "          'fair': 1,\n",
      "          'good': 1,\n",
      "          'ni': 1,\n",
      "          'believe': 1,\n",
      "          'first': 1,\n",
      "          'appearance': 1,\n",
      "          'format': 1,\n",
      "          'condition': 1,\n",
      "          'fine': 1,\n",
      "          'ncertainly': 1,\n",
      "          'expected': 1,\n",
      "          'remastered': 1,\n",
      "          'print': 1,\n",
      "          'ncuriously': 1,\n",
      "          'look': 1,\n",
      "          'nothing': 1,\n",
      "          'pictured': 1,\n",
      "          'back': 1,\n",
      "          'case': 1,\n",
      "          'nbut': 1,\n",
      "          'theyre': 1,\n",
      "          'nso': 1,\n",
      "          'really': 1,\n",
      "          'cares': 1,\n",
      "          'npg': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'two': 8,\n",
      "          'nthe': 5,\n",
      "          'films': 4,\n",
      "          'characters': 4,\n",
      "          'different': 4,\n",
      "          'film': 4,\n",
      "          'cesar': 4,\n",
      "          'trip': 4,\n",
      "          'sports': 3,\n",
      "          'story': 3,\n",
      "          'boxing': 3,\n",
      "          'whole': 3,\n",
      "          'vince': 3,\n",
      "          'scene': 3,\n",
      "          'fight': 3,\n",
      "          'bone': 2,\n",
      "          'sheltons': 2,\n",
      "          'men': 2,\n",
      "          'tell': 2,\n",
      "          'nshelton': 2,\n",
      "          'side': 2,\n",
      "          'even': 2,\n",
      "          'like': 2,\n",
      "          'friends': 2,\n",
      "          'reasons': 2,\n",
      "          'friendship': 2,\n",
      "          'never': 2,\n",
      "          'every': 2,\n",
      "          'moment': 2,\n",
      "          'grace': 2,\n",
      "          'way': 2,\n",
      "          'hurt': 2,\n",
      "          'time': 2,\n",
      "          'road': 2,\n",
      "          'play': 1,\n",
      "          'newest': 1,\n",
      "          'addition': 1,\n",
      "          'ron': 1,\n",
      "          'themed': 1,\n",
      "          'repertoire': 1,\n",
      "          'fails': 1,\n",
      "          'numerous': 1,\n",
      "          'ways': 1,\n",
      "          'nlike': 1,\n",
      "          'great': 1,\n",
      "          'bull': 1,\n",
      "          'durham': 1,\n",
      "          'white': 1,\n",
      "          'cant': 1,\n",
      "          'jump': 1,\n",
      "          'dud': 1,\n",
      "          'unsuccessfully': 1,\n",
      "          'attempts': 1,\n",
      "          'use': 1,\n",
      "          'athleticism': 1,\n",
      "          'method': 1,\n",
      "          'connecting': 1,\n",
      "          'creating': 1,\n",
      "          'interesting': 1,\n",
      "          'subplots': 1,\n",
      "          'nsheltons': 1,\n",
      "          'considered': 1,\n",
      "          'heavily': 1,\n",
      "          'revolve': 1,\n",
      "          'around': 1,\n",
      "          'specific': 1,\n",
      "          'game': 1,\n",
      "          'good': 1,\n",
      "          'past': 1,\n",
      "          'using': 1,\n",
      "          'analyze': 1,\n",
      "          'structure': 1,\n",
      "          'society': 1,\n",
      "          'collection': 1,\n",
      "          'given': 1,\n",
      "          'examination': 1,\n",
      "          'classes': 1,\n",
      "          'races': 1,\n",
      "          'living': 1,\n",
      "          'various': 1,\n",
      "          'regions': 1,\n",
      "          'nplay': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'theme': 1,\n",
      "          'dull': 1,\n",
      "          'guys': 1,\n",
      "          'girl': 1,\n",
      "          'travelling': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'worse': 1,\n",
      "          'social': 1,\n",
      "          'message': 1,\n",
      "          'predecessors': 1,\n",
      "          'relationship': 1,\n",
      "          'failed': 1,\n",
      "          'boxers': 1,\n",
      "          'must': 1,\n",
      "          'face': 1,\n",
      "          'ring': 1,\n",
      "          '50': 1,\n",
      "          'thousand': 1,\n",
      "          'dollars': 1,\n",
      "          'confusing': 1,\n",
      "          'number': 1,\n",
      "          'since': 1,\n",
      "          'primarily': 1,\n",
      "          'buddy': 1,\n",
      "          'picture': 1,\n",
      "          'depends': 1,\n",
      "          'strength': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'weak': 1,\n",
      "          'bond': 1,\n",
      "          'listed': 1,\n",
      "          'n1': 1,\n",
      "          'see': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'woody': 1,\n",
      "          'harrelson': 1,\n",
      "          'meet': 1,\n",
      "          'odd': 1,\n",
      "          'developed': 1,\n",
      "          'mandatory': 1,\n",
      "          'n2': 1,\n",
      "          'argue': 1,\n",
      "          'possible': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'nthere': 1,\n",
      "          'one': 1,\n",
      "          'convincing': 1,\n",
      "          'dedicated': 1,\n",
      "          'seeing': 1,\n",
      "          'laugh': 1,\n",
      "          'together': 1,\n",
      "          'actually': 1,\n",
      "          'agree': 1,\n",
      "          'something': 1,\n",
      "          'n3': 1,\n",
      "          'third': 1,\n",
      "          'character': 1,\n",
      "          'lolita': 1,\n",
      "          'davidovich': 1,\n",
      "          'stands': 1,\n",
      "          'nshe': 1,\n",
      "          'nearly': 1,\n",
      "          'making': 1,\n",
      "          'impossible': 1,\n",
      "          'understand': 1,\n",
      "          'difficulty': 1,\n",
      "          'male': 1,\n",
      "          'going': 1,\n",
      "          'n4': 1,\n",
      "          'many': 1,\n",
      "          'interfering': 1,\n",
      "          'irrelevant': 1,\n",
      "          'stories': 1,\n",
      "          'nvince': 1,\n",
      "          'convinced': 1,\n",
      "          'sees': 1,\n",
      "          'jesus': 1,\n",
      "          'regular': 1,\n",
      "          'basis': 1,\n",
      "          'yells': 1,\n",
      "          'sky': 1,\n",
      "          'spanish': 1,\n",
      "          'angry': 1,\n",
      "          'tries': 1,\n",
      "          'sell': 1,\n",
      "          'inventions': 1,\n",
      "          'hotel': 1,\n",
      "          'owner': 1,\n",
      "          'robert': 1,\n",
      "          'wagner': 1,\n",
      "          'nthese': 1,\n",
      "          'boring': 1,\n",
      "          'tales': 1,\n",
      "          'central': 1,\n",
      "          'plot': 1,\n",
      "          'n5': 1,\n",
      "          'comes': 1,\n",
      "          'dont': 1,\n",
      "          'hesitate': 1,\n",
      "          'pound': 1,\n",
      "          'nwasnt': 1,\n",
      "          'point': 1,\n",
      "          'show': 1,\n",
      "          'could': 1,\n",
      "          'nby': 1,\n",
      "          'part': 1,\n",
      "          'movie': 1,\n",
      "          'wants': 1,\n",
      "          'hand': 1,\n",
      "          'continues': 1,\n",
      "          'nforty': 1,\n",
      "          'five': 1,\n",
      "          'painful': 1,\n",
      "          'minutes': 1,\n",
      "          'remain': 1,\n",
      "          'starts': 1,\n",
      "          'powerful': 1,\n",
      "          'interestingly': 1,\n",
      "          'movies': 1,\n",
      "          'nhowever': 1,\n",
      "          'goes': 1,\n",
      "          'long': 1,\n",
      "          'becomes': 1,\n",
      "          'repetitive': 1,\n",
      "          'predictable': 1,\n",
      "          'awhile': 1,\n",
      "          'kind': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'really': 7,\n",
      "          'gadget': 6,\n",
      "          'nthe': 6,\n",
      "          'zany': 6,\n",
      "          'ni': 6,\n",
      "          'nbut': 4,\n",
      "          'bad': 4,\n",
      "          'time': 3,\n",
      "          'favorite': 3,\n",
      "          'martian': 3,\n",
      "          'another': 3,\n",
      "          'disney': 3,\n",
      "          'cartoon': 3,\n",
      "          'screen': 3,\n",
      "          'sidekick': 3,\n",
      "          'best': 3,\n",
      "          'studio': 3,\n",
      "          'want': 3,\n",
      "          'n': 3,\n",
      "          'movie': 3,\n",
      "          'especially': 3,\n",
      "          'evil': 3,\n",
      "          'claw': 3,\n",
      "          'movies': 2,\n",
      "          'nmy': 2,\n",
      "          'daughter': 2,\n",
      "          'back': 2,\n",
      "          'old': 2,\n",
      "          'years': 2,\n",
      "          'see': 2,\n",
      "          'done': 2,\n",
      "          'go': 2,\n",
      "          'right': 2,\n",
      "          'ninspector': 2,\n",
      "          'people': 2,\n",
      "          'directed': 2,\n",
      "          'written': 2,\n",
      "          'two': 2,\n",
      "          'credits': 2,\n",
      "          'lets': 2,\n",
      "          'painful': 2,\n",
      "          'make': 2,\n",
      "          'fine': 2,\n",
      "          'scene': 2,\n",
      "          'nif': 2,\n",
      "          'cut': 2,\n",
      "          'latter': 2,\n",
      "          'thoroughly': 2,\n",
      "          'charming': 2,\n",
      "          'trachtenberg': 2,\n",
      "          'nmichelle': 2,\n",
      "          'plays': 2,\n",
      "          'penny': 2,\n",
      "          'every': 2,\n",
      "          'utterly': 2,\n",
      "          'say': 2,\n",
      "          'something': 2,\n",
      "          'lines': 2,\n",
      "          'scenes': 2,\n",
      "          'nhe': 2,\n",
      "          'town': 2,\n",
      "          'mayor': 2,\n",
      "          'like': 2,\n",
      "          'wonder': 2,\n",
      "          'fun': 2,\n",
      "          'one': 2,\n",
      "          'things': 2,\n",
      "          'worth': 2,\n",
      "          'made': 2,\n",
      "          'trying': 2,\n",
      "          'minute': 2,\n",
      "          'detective': 2,\n",
      "          'character': 2,\n",
      "          'excellent': 2,\n",
      "          'long': 2,\n",
      "          'live': 2,\n",
      "          'action': 2,\n",
      "          'produce': 2,\n",
      "          'skip': 1,\n",
      "          'vile': 1,\n",
      "          'weeks': 1,\n",
      "          'comes': 1,\n",
      "          'effectsfilled': 1,\n",
      "          'liveaction': 1,\n",
      "          'flick': 1,\n",
      "          'based': 1,\n",
      "          'tv': 1,\n",
      "          'program': 1,\n",
      "          'ntrue': 1,\n",
      "          'probgram': 1,\n",
      "          '15': 1,\n",
      "          'liked': 1,\n",
      "          'understandably': 1,\n",
      "          'reluctant': 1,\n",
      "          'big': 1,\n",
      "          'wanted': 1,\n",
      "          'could': 1,\n",
      "          'nturns': 1,\n",
      "          'mostly': 1,\n",
      "          'oddly': 1,\n",
      "          'enough': 1,\n",
      "          'follows': 1,\n",
      "          'almost': 1,\n",
      "          'exactly': 1,\n",
      "          'format': 1,\n",
      "          'jivetalking': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'thought': 1,\n",
      "          'imdb': 1,\n",
      "          'informs': 1,\n",
      "          'ig': 1,\n",
      "          'david': 1,\n",
      "          'kellogg': 1,\n",
      "          'dana': 1,\n",
      "          'olsen': 1,\n",
      "          'kerry': 1,\n",
      "          'ehrin': 1,\n",
      "          'mfm': 1,\n",
      "          'donald': 1,\n",
      "          'petrie': 1,\n",
      "          'sherri': 1,\n",
      "          'stoner': 1,\n",
      "          'deanna': 1,\n",
      "          'oliver': 1,\n",
      "          'nthis': 1,\n",
      "          'odd': 1,\n",
      "          'similarity': 1,\n",
      "          'may': 1,\n",
      "          'explained': 1,\n",
      "          'produced': 1,\n",
      "          'formula': 1,\n",
      "          'isnt': 1,\n",
      "          'business': 1,\n",
      "          'way': 1,\n",
      "          'life': 1,\n",
      "          'producers': 1,\n",
      "          'obviously': 1,\n",
      "          'micromanaged': 1,\n",
      "          'projects': 1,\n",
      "          'get': 1,\n",
      "          'prominant': 1,\n",
      "          'nin': 1,\n",
      "          'parts': 1,\n",
      "          'hear': 1,\n",
      "          'saying': 1,\n",
      "          'sexual': 1,\n",
      "          'reference': 1,\n",
      "          'reason': 1,\n",
      "          'audience': 1,\n",
      "          'squirming': 1,\n",
      "          'seats': 1,\n",
      "          'ok': 1,\n",
      "          'thats': 1,\n",
      "          'add': 1,\n",
      "          'bug': 1,\n",
      "          'guts': 1,\n",
      "          'ncharacter': 1,\n",
      "          'depth': 1,\n",
      "          'wheres': 1,\n",
      "          'zaniness': 1,\n",
      "          'dont': 1,\n",
      "          'cant': 1,\n",
      "          'explanation': 1,\n",
      "          'come': 1,\n",
      "          'absence': 1,\n",
      "          'michelle': 1,\n",
      "          'gadgets': 1,\n",
      "          'niece': 1,\n",
      "          'shines': 1,\n",
      "          'shes': 1,\n",
      "          'unfortunately': 1,\n",
      "          'gets': 1,\n",
      "          'nine': 1,\n",
      "          'minutes': 1,\n",
      "          'guess': 1,\n",
      "          'rest': 1,\n",
      "          'cutting': 1,\n",
      "          'room': 1,\n",
      "          'floor': 1,\n",
      "          'ndabney': 1,\n",
      "          'colemans': 1,\n",
      "          'comedic': 1,\n",
      "          'talents': 1,\n",
      "          'wasted': 1,\n",
      "          'chief': 1,\n",
      "          'quimby': 1,\n",
      "          'kept': 1,\n",
      "          'expecting': 1,\n",
      "          'funny': 1,\n",
      "          'somehow': 1,\n",
      "          'save': 1,\n",
      "          'instead': 1,\n",
      "          'poor': 1,\n",
      "          'unexceptional': 1,\n",
      "          'upstaged': 1,\n",
      "          'cheri': 1,\n",
      "          'oteri': 1,\n",
      "          'gidget': 1,\n",
      "          'bitch': 1,\n",
      "          'hell': 1,\n",
      "          'noteris': 1,\n",
      "          'overly': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'continually': 1,\n",
      "          'selfcongratulatory': 1,\n",
      "          'speech': 1,\n",
      "          'patterns': 1,\n",
      "          'mannerisms': 1,\n",
      "          'much': 1,\n",
      "          'portland': 1,\n",
      "          'oregons': 1,\n",
      "          'manic': 1,\n",
      "          'vera': 1,\n",
      "          'katz': 1,\n",
      "          'wasnt': 1,\n",
      "          'poking': 1,\n",
      "          'fair': 1,\n",
      "          'maybe': 1,\n",
      "          'career': 1,\n",
      "          'politicians': 1,\n",
      "          'must': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'stroll': 1,\n",
      "          'inspector': 1,\n",
      "          'godzilla': 1,\n",
      "          'appears': 1,\n",
      "          'nrupert': 1,\n",
      "          'everett': 1,\n",
      "          'entertaining': 1,\n",
      "          'maniacle': 1,\n",
      "          'njoely': 1,\n",
      "          'fisher': 1,\n",
      "          'scientist': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'carbon': 1,\n",
      "          'copy': 1,\n",
      "          'nher': 1,\n",
      "          'performance': 1,\n",
      "          'watching': 1,\n",
      "          'nd': 1,\n",
      "          'l': 1,\n",
      "          'hughley': 1,\n",
      "          'shuckinandjivin': 1,\n",
      "          'vehicular': 1,\n",
      "          'role': 1,\n",
      "          'firmly': 1,\n",
      "          'sets': 1,\n",
      "          'emancipation': 1,\n",
      "          '20': 1,\n",
      "          'dialog': 1,\n",
      "          'face': 1,\n",
      "          'pretty': 1,\n",
      "          'tagline': 1,\n",
      "          'major': 1,\n",
      "          'setpiece': 1,\n",
      "          'battle': 1,\n",
      "          'faux': 1,\n",
      "          'pas': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'context': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'hughleys': 1,\n",
      "          'appear': 1,\n",
      "          'along': 1,\n",
      "          'little': 1,\n",
      "          'gift': 1,\n",
      "          'adlib': 1,\n",
      "          'nabout': 1,\n",
      "          'threequarters': 1,\n",
      "          'somewhat': 1,\n",
      "          'unnecessary': 1,\n",
      "          'origin': 1,\n",
      "          'story': 1,\n",
      "          'ngadget': 1,\n",
      "          'spends': 1,\n",
      "          'third': 1,\n",
      "          'locate': 1,\n",
      "          'various': 1,\n",
      "          'altercations': 1,\n",
      "          'battles': 1,\n",
      "          'npenny': 1,\n",
      "          'half': 1,\n",
      "          'work': 1,\n",
      "          'week': 1,\n",
      "          'nlet': 1,\n",
      "          'rage': 1,\n",
      "          'choice': 1,\n",
      "          'nshes': 1,\n",
      "          'experience': 1,\n",
      "          'harriet': 1,\n",
      "          'spy': 1,\n",
      "          'part': 1,\n",
      "          'pintsize': 1,\n",
      "          'nwhy': 1,\n",
      "          'underutilized': 1,\n",
      "          'real': 1,\n",
      "          'mystery': 1,\n",
      "          'loses': 1,\n",
      "          'star': 1,\n",
      "          'casting': 1,\n",
      "          'brilliance': 1,\n",
      "          'coupled': 1,\n",
      "          'scripting': 1,\n",
      "          'editing': 1,\n",
      "          'stupidity': 1,\n",
      "          'missing': 1,\n",
      "          'stretches': 1,\n",
      "          'potty': 1,\n",
      "          'humor': 1,\n",
      "          'among': 1,\n",
      "          'unbearable': 1,\n",
      "          'short': 1,\n",
      "          'perhaps': 1,\n",
      "          'last': 1,\n",
      "          'moment': 1,\n",
      "          'nprobably': 1,\n",
      "          'occur': 1,\n",
      "          'end': 1,\n",
      "          'support': 1,\n",
      "          'group': 1,\n",
      "          'seeing': 1,\n",
      "          'amazing': 1,\n",
      "          'number': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'seconds': 1,\n",
      "          'onscreen': 1,\n",
      "          'nall': 1,\n",
      "          'premere': 1,\n",
      "          'films': 1,\n",
      "          'uses': 1,\n",
      "          'revenues': 1,\n",
      "          'generally': 1,\n",
      "          'moneymaking': 1,\n",
      "          'cartoons': 1,\n",
      "          'losers': 1,\n",
      "          'true': 1,\n",
      "          'theyre': 1,\n",
      "          'mary': 1,\n",
      "          'poppins': 1,\n",
      "          'need': 1,\n",
      "          'find': 1,\n",
      "          'team': 1,\n",
      "          'give': 1,\n",
      "          'chance': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 18,\n",
      "          'nthe': 15,\n",
      "          'fight': 12,\n",
      "          'hong': 10,\n",
      "          'must': 9,\n",
      "          'kong': 8,\n",
      "          'romeo': 8,\n",
      "          'die': 7,\n",
      "          'effect': 6,\n",
      "          'films': 6,\n",
      "          'scenes': 6,\n",
      "          'best': 5,\n",
      "          'one': 5,\n",
      "          'performance': 5,\n",
      "          'emotional': 5,\n",
      "          'action': 4,\n",
      "          'u': 4,\n",
      "          'jet': 4,\n",
      "          'li': 4,\n",
      "          'none': 4,\n",
      "          'sing': 4,\n",
      "          'na': 4,\n",
      "          'nits': 4,\n",
      "          'han': 4,\n",
      "          'way': 4,\n",
      "          'talents': 3,\n",
      "          'work': 3,\n",
      "          'couple': 3,\n",
      "          'chinese': 3,\n",
      "          'kai': 3,\n",
      "          'son': 3,\n",
      "          'battle': 3,\n",
      "          'oday': 3,\n",
      "          'lindo': 3,\n",
      "          'scene': 3,\n",
      "          'course': 3,\n",
      "          'even': 3,\n",
      "          'character': 3,\n",
      "          'nhere': 3,\n",
      "          'though': 3,\n",
      "          'productions': 2,\n",
      "          'filmmaking': 2,\n",
      "          'time': 2,\n",
      "          'lot': 2,\n",
      "          'kongs': 2,\n",
      "          'jackie': 2,\n",
      "          'rush': 2,\n",
      "          'hour': 2,\n",
      "          'yuen': 2,\n",
      "          'hollywood': 2,\n",
      "          'nnow': 2,\n",
      "          'filmmakers': 2,\n",
      "          'director': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'bears': 2,\n",
      "          'po': 2,\n",
      "          'family': 2,\n",
      "          'club': 2,\n",
      "          'found': 2,\n",
      "          'issac': 2,\n",
      "          'murder': 2,\n",
      "          'legitimate': 2,\n",
      "          'china': 2,\n",
      "          'brothers': 2,\n",
      "          'fights': 2,\n",
      "          'choreography': 2,\n",
      "          'except': 2,\n",
      "          'romance': 2,\n",
      "          'adequate': 2,\n",
      "          'part': 2,\n",
      "          'debut': 2,\n",
      "          'style': 2,\n",
      "          'obvious': 2,\n",
      "          'nbut': 2,\n",
      "          'written': 2,\n",
      "          'well': 2,\n",
      "          'nan': 2,\n",
      "          'script': 2,\n",
      "          'set': 2,\n",
      "          'look': 2,\n",
      "          'pacing': 2,\n",
      "          'john': 2,\n",
      "          'comic': 2,\n",
      "          'becomes': 2,\n",
      "          'whatsoever': 2,\n",
      "          'njet': 2,\n",
      "          'jets': 2,\n",
      "          'xray': 2,\n",
      "          'rhythm': 2,\n",
      "          'heartbeat': 2,\n",
      "          'breath': 2,\n",
      "          'editing': 2,\n",
      "          'technically': 2,\n",
      "          'amazing': 2,\n",
      "          'tempo': 2,\n",
      "          'content': 2,\n",
      "          'full': 2,\n",
      "          'cinema': 1,\n",
      "          'going': 1,\n",
      "          'bad': 1,\n",
      "          'spell': 1,\n",
      "          'last': 1,\n",
      "          'laded': 1,\n",
      "          'adventures': 1,\n",
      "          'combine': 1,\n",
      "          'worst': 1,\n",
      "          'american': 1,\n",
      "          'qualities': 1,\n",
      "          'nin': 1,\n",
      "          'nutshell': 1,\n",
      "          'current': 1,\n",
      "          'crop': 1,\n",
      "          'maddeningly': 1,\n",
      "          'convoluted': 1,\n",
      "          'visually': 1,\n",
      "          'sumptuous': 1,\n",
      "          'nwith': 1,\n",
      "          'british': 1,\n",
      "          'colony': 1,\n",
      "          'reverting': 1,\n",
      "          'back': 1,\n",
      "          'mainland': 1,\n",
      "          'ownership': 1,\n",
      "          'crossed': 1,\n",
      "          'pacific': 1,\n",
      "          'nsuch': 1,\n",
      "          'chan': 1,\n",
      "          'chow': 1,\n",
      "          'yunfat': 1,\n",
      "          'anna': 1,\n",
      "          'king': 1,\n",
      "          'corrupter': 1,\n",
      "          'wooping': 1,\n",
      "          'matrix': 1,\n",
      "          'moved': 1,\n",
      "          'budget': 1,\n",
      "          'bloated': 1,\n",
      "          'world': 1,\n",
      "          'mixed': 1,\n",
      "          'results': 1,\n",
      "          'add': 1,\n",
      "          'two': 1,\n",
      "          'mix': 1,\n",
      "          'star': 1,\n",
      "          'choreographer': 1,\n",
      "          'corey': 1,\n",
      "          'kwai': 1,\n",
      "          'trademarks': 1,\n",
      "          'typical': 1,\n",
      "          'rhythms': 1,\n",
      "          'opens': 1,\n",
      "          'nightclub': 1,\n",
      "          'asian': 1,\n",
      "          'necking': 1,\n",
      "          'nenter': 1,\n",
      "          'group': 1,\n",
      "          'gangsters': 1,\n",
      "          'led': 1,\n",
      "          'russell': 1,\n",
      "          'wong': 1,\n",
      "          'nkai': 1,\n",
      "          'confronts': 1,\n",
      "          'jon': 1,\n",
      "          'kit': 1,\n",
      "          'lee': 1,\n",
      "          'kais': 1,\n",
      "          'boss': 1,\n",
      "          'leader': 1,\n",
      "          'local': 1,\n",
      "          'breaks': 1,\n",
      "          'bodyguards': 1,\n",
      "          'handily': 1,\n",
      "          'kicks': 1,\n",
      "          'punches': 1,\n",
      "          'opponents': 1,\n",
      "          'owner': 1,\n",
      "          'silk': 1,\n",
      "          'rapper': 1,\n",
      "          'dmx': 1,\n",
      "          'henchmen': 1,\n",
      "          'ends': 1,\n",
      "          'following': 1,\n",
      "          'morning': 1,\n",
      "          'dead': 1,\n",
      "          'nsuspicions': 1,\n",
      "          'escalate': 1,\n",
      "          'delroy': 1,\n",
      "          'told': 1,\n",
      "          'nhis': 1,\n",
      "          'concern': 1,\n",
      "          'war': 1,\n",
      "          'may': 1,\n",
      "          'explode': 1,\n",
      "          'ruin': 1,\n",
      "          'plans': 1,\n",
      "          'move': 1,\n",
      "          'business': 1,\n",
      "          'corruption': 1,\n",
      "          'venture': 1,\n",
      "          'nissac': 1,\n",
      "          'implores': 1,\n",
      "          'chief': 1,\n",
      "          'security': 1,\n",
      "          'mac': 1,\n",
      "          'issiah': 1,\n",
      "          'washington': 1,\n",
      "          'watch': 1,\n",
      "          'daughter': 1,\n",
      "          'shifts': 1,\n",
      "          'prison': 1,\n",
      "          'learns': 1,\n",
      "          'nhe': 1,\n",
      "          'guards': 1,\n",
      "          'dragged': 1,\n",
      "          'disciplined': 1,\n",
      "          'nhung': 1,\n",
      "          'upside': 1,\n",
      "          'foot': 1,\n",
      "          'recovers': 1,\n",
      "          'custody': 1,\n",
      "          'blistering': 1,\n",
      "          'display': 1,\n",
      "          'stunt': 1,\n",
      "          'nescaping': 1,\n",
      "          'sets': 1,\n",
      "          'find': 1,\n",
      "          'person': 1,\n",
      "          'responsible': 1,\n",
      "          'death': 1,\n",
      "          'n': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'fun': 1,\n",
      "          'nit': 1,\n",
      "          'absurd': 1,\n",
      "          'assured': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'gangster': 1,\n",
      "          'wanting': 1,\n",
      "          'become': 1,\n",
      "          'echoes': 1,\n",
      "          'godfather': 1,\n",
      "          'relationship': 1,\n",
      "          'lis': 1,\n",
      "          'aaliyahs': 1,\n",
      "          'trish': 1,\n",
      "          'reminds': 1,\n",
      "          'us': 1,\n",
      "          'abel': 1,\n",
      "          'ferreras': 1,\n",
      "          'girl': 1,\n",
      "          'dies': 1,\n",
      "          'never': 1,\n",
      "          'exchange': 1,\n",
      "          'loving': 1,\n",
      "          'glance': 1,\n",
      "          'towards': 1,\n",
      "          'another': 1,\n",
      "          'ntheir': 1,\n",
      "          'much': 1,\n",
      "          'puritanical': 1,\n",
      "          'history': 1,\n",
      "          'performances': 1,\n",
      "          'fully': 1,\n",
      "          'acceptable': 1,\n",
      "          'nli': 1,\n",
      "          'showiest': 1,\n",
      "          'express': 1,\n",
      "          'innocents': 1,\n",
      "          'steadfast': 1,\n",
      "          'determination': 1,\n",
      "          'nallayah': 1,\n",
      "          'feature': 1,\n",
      "          'manages': 1,\n",
      "          'carry': 1,\n",
      "          'little': 1,\n",
      "          'asked': 1,\n",
      "          'certain': 1,\n",
      "          'grace': 1,\n",
      "          'camera': 1,\n",
      "          'loves': 1,\n",
      "          'photogenic': 1,\n",
      "          'still': 1,\n",
      "          'poor': 1,\n",
      "          'would': 1,\n",
      "          'affected': 1,\n",
      "          'ndelro': 1,\n",
      "          'carries': 1,\n",
      "          'unsung': 1,\n",
      "          'appreciated': 1,\n",
      "          'actor': 1,\n",
      "          'mr': 1,\n",
      "          'turns': 1,\n",
      "          'performers': 1,\n",
      "          'asks': 1,\n",
      "          'b': 1,\n",
      "          'woodside': 1,\n",
      "          'issacs': 1,\n",
      "          'colin': 1,\n",
      "          'undirected': 1,\n",
      "          'changing': 1,\n",
      "          'tone': 1,\n",
      "          'demeanor': 1,\n",
      "          'accordance': 1,\n",
      "          'whatever': 1,\n",
      "          'location': 1,\n",
      "          'unfocused': 1,\n",
      "          'reigned': 1,\n",
      "          'better': 1,\n",
      "          'nfirst': 1,\n",
      "          'andrzej': 1,\n",
      "          'bartkowiak': 1,\n",
      "          'workmanlike': 1,\n",
      "          'job': 1,\n",
      "          'handling': 1,\n",
      "          'nhaving': 1,\n",
      "          'career': 1,\n",
      "          'industrys': 1,\n",
      "          'cinematographers': 1,\n",
      "          'bartkiwiak': 1,\n",
      "          'knows': 1,\n",
      "          'shots': 1,\n",
      "          'good': 1,\n",
      "          'lethargic': 1,\n",
      "          'coming': 1,\n",
      "          'semblance': 1,\n",
      "          'life': 1,\n",
      "          'eric': 1,\n",
      "          'bernt': 1,\n",
      "          'jarrell': 1,\n",
      "          'focused': 1,\n",
      "          'care': 1,\n",
      "          'characters': 1,\n",
      "          'situations': 1,\n",
      "          'big': 1,\n",
      "          'gambit': 1,\n",
      "          'buying': 1,\n",
      "          'waterfront': 1,\n",
      "          'property': 1,\n",
      "          'facilitate': 1,\n",
      "          'building': 1,\n",
      "          'sports': 1,\n",
      "          'center': 1,\n",
      "          'nfl': 1,\n",
      "          'team': 1,\n",
      "          'needlessly': 1,\n",
      "          'confusing': 1,\n",
      "          'nand': 1,\n",
      "          'common': 1,\n",
      "          'practice': 1,\n",
      "          'relief': 1,\n",
      "          'painfully': 1,\n",
      "          'anthony': 1,\n",
      "          'anderson': 1,\n",
      "          'allayahs': 1,\n",
      "          'bodyguard': 1,\n",
      "          'maurice': 1,\n",
      "          'timing': 1,\n",
      "          'things': 1,\n",
      "          'master': 1,\n",
      "          'intricate': 1,\n",
      "          'physical': 1,\n",
      "          'battles': 1,\n",
      "          'needs': 1,\n",
      "          'see': 1,\n",
      "          'fist': 1,\n",
      "          'legend': 1,\n",
      "          'understand': 1,\n",
      "          'man': 1,\n",
      "          'without': 1,\n",
      "          'peer': 1,\n",
      "          'realm': 1,\n",
      "          'martial': 1,\n",
      "          'art': 1,\n",
      "          'combat': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'show': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          '4': 1,\n",
      "          'didnt': 1,\n",
      "          'allow': 1,\n",
      "          'aided': 1,\n",
      "          'computer': 1,\n",
      "          'effects': 1,\n",
      "          'detract': 1,\n",
      "          'ability': 1,\n",
      "          'precision': 1,\n",
      "          'nalso': 1,\n",
      "          'noted': 1,\n",
      "          'singularly': 1,\n",
      "          'useless': 1,\n",
      "          'ever': 1,\n",
      "          'committed': 1,\n",
      "          'appears': 1,\n",
      "          'three': 1,\n",
      "          'times': 1,\n",
      "          'showing': 1,\n",
      "          'bone': 1,\n",
      "          'crushing': 1,\n",
      "          'blows': 1,\n",
      "          'opponent': 1,\n",
      "          'nobviously': 1,\n",
      "          'homage': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'famed': 1,\n",
      "          'sonny': 1,\n",
      "          'chibas': 1,\n",
      "          'streetfighter': 1,\n",
      "          'pointless': 1,\n",
      "          'interfere': 1,\n",
      "          'stopped': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'inserted': 1,\n",
      "          'problem': 1,\n",
      "          'nthose': 1,\n",
      "          'familiar': 1,\n",
      "          'know': 1,\n",
      "          'fantasies': 1,\n",
      "          'removed': 1,\n",
      "          'reality': 1,\n",
      "          'anime': 1,\n",
      "          'cartoon': 1,\n",
      "          'nthey': 1,\n",
      "          'internal': 1,\n",
      "          'speak': 1,\n",
      "          'resonance': 1,\n",
      "          'nthis': 1,\n",
      "          'created': 1,\n",
      "          'direction': 1,\n",
      "          'staccato': 1,\n",
      "          'nevery': 1,\n",
      "          'adroit': 1,\n",
      "          'boring': 1,\n",
      "          'cuts': 1,\n",
      "          'away': 1,\n",
      "          'hand': 1,\n",
      "          'simple': 1,\n",
      "          'follows': 1,\n",
      "          'pattern': 1,\n",
      "          'monotonous': 1,\n",
      "          'changes': 1,\n",
      "          'heightening': 1,\n",
      "          'impact': 1,\n",
      "          'nrmd': 1,\n",
      "          'limited': 1,\n",
      "          'standard': 1,\n",
      "          '44': 1,\n",
      "          'allowing': 1,\n",
      "          'fine': 1,\n",
      "          'example': 1,\n",
      "          'difference': 1,\n",
      "          'examining': 1,\n",
      "          'chans': 1,\n",
      "          'nwatch': 1,\n",
      "          'restaurant': 1,\n",
      "          'notice': 1,\n",
      "          'context': 1,\n",
      "          'rather': 1,\n",
      "          'flat': 1,\n",
      "          'framing': 1,\n",
      "          'cut': 1,\n",
      "          'always': 1,\n",
      "          'help': 1,\n",
      "          'warehouse': 1,\n",
      "          'rumble': 1,\n",
      "          'bronx': 1,\n",
      "          'nthere': 1,\n",
      "          'draw': 1,\n",
      "          'doesnt': 1,\n",
      "          'let': 1,\n",
      "          'audience': 1,\n",
      "          'catch': 1,\n",
      "          'stops': 1,\n",
      "          'pauses': 1,\n",
      "          'dramatic': 1,\n",
      "          'perfectly': 1,\n",
      "          'causing': 1,\n",
      "          'viewer': 1,\n",
      "          'astounded': 1,\n",
      "          'flabbergasted': 1,\n",
      "          'wayne': 1,\n",
      "          'barroom': 1,\n",
      "          'brawl': 1,\n",
      "          'grand': 1,\n",
      "          'personable': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'shame': 1,\n",
      "          'used': 1,\n",
      "          'day': 1,\n",
      "          'stop': 1,\n",
      "          'making': 1,\n",
      "          'numbers': 1,\n",
      "          'start': 1,\n",
      "          'embrace': 1,\n",
      "          'emotion': 1,\n",
      "          'made': 1,\n",
      "          'pictures': 1,\n",
      "          'commodity': 1,\n",
      "          'nuntil': 1,\n",
      "          'left': 1,\n",
      "          'emotionally': 1,\n",
      "          'hollow': 1,\n",
      "          'product': 1,\n",
      "          'like': 1,\n",
      "          'replacement': 1,\n",
      "          'killer': 1,\n",
      "          'currently': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'football': 7,\n",
      "          'nthe': 5,\n",
      "          'like': 5,\n",
      "          'reeves': 4,\n",
      "          'hackman': 3,\n",
      "          'keanu': 3,\n",
      "          'cast': 3,\n",
      "          'characters': 3,\n",
      "          'team': 3,\n",
      "          'cheerleaders': 3,\n",
      "          'make': 3,\n",
      "          'good': 3,\n",
      "          'could': 2,\n",
      "          'film': 2,\n",
      "          'hoosiers': 2,\n",
      "          'gene': 2,\n",
      "          'coach': 2,\n",
      "          'wacky': 2,\n",
      "          'replacements': 2,\n",
      "          'sequel': 2,\n",
      "          'players': 2,\n",
      "          'taking': 2,\n",
      "          'looking': 2,\n",
      "          'gusto': 2,\n",
      "          'dumb': 2,\n",
      "          'making': 2,\n",
      "          'look': 2,\n",
      "          'hero': 2,\n",
      "          'love': 2,\n",
      "          'go': 2,\n",
      "          'movies': 2,\n",
      "          'films': 2,\n",
      "          'men': 2,\n",
      "          'wish': 1,\n",
      "          'pitch': 1,\n",
      "          'meeting': 1,\n",
      "          'ridiculous': 1,\n",
      "          'notion': 1,\n",
      "          'sports': 1,\n",
      "          'ni': 1,\n",
      "          'bet': 1,\n",
      "          'hotshot': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'agent': 1,\n",
      "          'dark': 1,\n",
      "          'armani': 1,\n",
      "          'suit': 1,\n",
      "          'manicured': 1,\n",
      "          'fingernails': 1,\n",
      "          'saying': 1,\n",
      "          'would': 1,\n",
      "          'light': 1,\n",
      "          'comedic': 1,\n",
      "          'version': 1,\n",
      "          'given': 1,\n",
      "          'sunday': 1,\n",
      "          'throw': 1,\n",
      "          'angle': 1,\n",
      "          'casting': 1,\n",
      "          'tough': 1,\n",
      "          'determined': 1,\n",
      "          'nthrow': 1,\n",
      "          'hunk': 1,\n",
      "          'guy': 1,\n",
      "          'poof': 1,\n",
      "          'nwell': 1,\n",
      "          'hit': 1,\n",
      "          'hands': 1,\n",
      "          'hokey': 1,\n",
      "          'mistake': 1,\n",
      "          'mishmash': 1,\n",
      "          'collage': 1,\n",
      "          'onedimensional': 1,\n",
      "          'rampant': 1,\n",
      "          'stereotypes': 1,\n",
      "          'cultures': 1,\n",
      "          'races': 1,\n",
      "          'cliched': 1,\n",
      "          'emotional': 1,\n",
      "          'statements': 1,\n",
      "          'purpose': 1,\n",
      "          'wishing': 1,\n",
      "          'matrix': 1,\n",
      "          'start': 1,\n",
      "          'principal': 1,\n",
      "          'photography': 1,\n",
      "          'story': 1,\n",
      "          'loosely': 1,\n",
      "          'based': 1,\n",
      "          'around': 1,\n",
      "          'pro': 1,\n",
      "          'strike': 1,\n",
      "          '1987': 1,\n",
      "          'ragtag': 1,\n",
      "          'replacement': 1,\n",
      "          'reins': 1,\n",
      "          'professional': 1,\n",
      "          'play': 1,\n",
      "          'variety': 1,\n",
      "          'teams': 1,\n",
      "          'names': 1,\n",
      "          'washington': 1,\n",
      "          'sentinels': 1,\n",
      "          'nkeanu': 1,\n",
      "          'stars': 1,\n",
      "          'shane': 1,\n",
      "          'falco': 1,\n",
      "          'hasbeen': 1,\n",
      "          'college': 1,\n",
      "          'player': 1,\n",
      "          'redemption': 1,\n",
      "          'ngene': 1,\n",
      "          'dons': 1,\n",
      "          'fedora': 1,\n",
      "          'tom': 1,\n",
      "          'landry': 1,\n",
      "          'speaks': 1,\n",
      "          'certain': 1,\n",
      "          'nrounding': 1,\n",
      "          'includes': 1,\n",
      "          'swingers': 1,\n",
      "          'jon': 1,\n",
      "          'favreau': 1,\n",
      "          '7up': 1,\n",
      "          'pitchman': 1,\n",
      "          'orlando': 1,\n",
      "          'jones': 1,\n",
      "          'gruff': 1,\n",
      "          'owner': 1,\n",
      "          'jack': 1,\n",
      "          'warden': 1,\n",
      "          'unknown': 1,\n",
      "          'actors': 1,\n",
      "          'amazing': 1,\n",
      "          'jobs': 1,\n",
      "          'portraying': 1,\n",
      "          'perfectly': 1,\n",
      "          'stereotyped': 1,\n",
      "          'drunken': 1,\n",
      "          'welshman': 1,\n",
      "          'overweight': 1,\n",
      "          'sumo': 1,\n",
      "          'wrestler': 1,\n",
      "          'black': 1,\n",
      "          'convict': 1,\n",
      "          'violent': 1,\n",
      "          'cop': 1,\n",
      "          'nthis': 1,\n",
      "          'bunch': 1,\n",
      "          'nobodies': 1,\n",
      "          'try': 1,\n",
      "          'something': 1,\n",
      "          'season': 1,\n",
      "          'playoffs': 1,\n",
      "          'unbelievable': 1,\n",
      "          'plays': 1,\n",
      "          'yelling': 1,\n",
      "          'asking': 1,\n",
      "          'hell': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'body': 1,\n",
      "          'double': 1,\n",
      "          'field': 1,\n",
      "          'hired': 1,\n",
      "          'local': 1,\n",
      "          'strip': 1,\n",
      "          'club': 1,\n",
      "          'girls': 1,\n",
      "          'coyote': 1,\n",
      "          'ugly': 1,\n",
      "          'waitresses': 1,\n",
      "          'dennys': 1,\n",
      "          'usual': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'clockwork': 1,\n",
      "          'rises': 1,\n",
      "          'ashes': 1,\n",
      "          'failure': 1,\n",
      "          'comes': 1,\n",
      "          'together': 1,\n",
      "          'unity': 1,\n",
      "          'falls': 1,\n",
      "          'conventional': 1,\n",
      "          'interest': 1,\n",
      "          'games': 1,\n",
      "          'enough': 1,\n",
      "          'schlock': 1,\n",
      "          'value': 1,\n",
      "          'ignorant': 1,\n",
      "          'audiences': 1,\n",
      "          'cheer': 1,\n",
      "          'clap': 1,\n",
      "          'want': 1,\n",
      "          'home': 1,\n",
      "          'watch': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'cinemax': 1,\n",
      "          'nits': 1,\n",
      "          'also': 1,\n",
      "          'shame': 1,\n",
      "          'decent': 1,\n",
      "          'directors': 1,\n",
      "          'belts': 1,\n",
      "          'seed': 1,\n",
      "          'become': 1,\n",
      "          'television': 1,\n",
      "          'hacks': 1,\n",
      "          'nhoward': 1,\n",
      "          'deutch': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'two': 1,\n",
      "          'best': 1,\n",
      "          '80s': 1,\n",
      "          'pretty': 1,\n",
      "          'pink': 1,\n",
      "          'kind': 1,\n",
      "          'wonderful': 1,\n",
      "          'since': 1,\n",
      "          'grumpier': 1,\n",
      "          'old': 1,\n",
      "          'caroline': 1,\n",
      "          'city': 1,\n",
      "          'episodes': 1,\n",
      "          'nobviously': 1,\n",
      "          'problem': 1,\n",
      "          'without': 1,\n",
      "          'script': 1,\n",
      "          'director': 1,\n",
      "          'fail': 1,\n",
      "          'end': 1,\n",
      "          'nsports': 1,\n",
      "          'strong': 1,\n",
      "          'vehicles': 1,\n",
      "          'cinematic': 1,\n",
      "          'glory': 1,\n",
      "          'gritty': 1,\n",
      "          'tales': 1,\n",
      "          'involving': 1,\n",
      "          'honor': 1,\n",
      "          'valiant': 1,\n",
      "          'efforts': 1,\n",
      "          'taken': 1,\n",
      "          'ultimate': 1,\n",
      "          'goal': 1,\n",
      "          'victory': 1,\n",
      "          'face': 1,\n",
      "          'insurmountable': 1,\n",
      "          'odds': 1,\n",
      "          'rise': 1,\n",
      "          'fall': 1,\n",
      "          'gallant': 1,\n",
      "          'heroes': 1,\n",
      "          'stories': 1,\n",
      "          'dramatic': 1,\n",
      "          'painted': 1,\n",
      "          'blood': 1,\n",
      "          'sweat': 1,\n",
      "          'battlefield': 1,\n",
      "          'life': 1,\n",
      "          'offers': 1,\n",
      "          'none': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bully': 8,\n",
      "          'nthe': 5,\n",
      "          'sex': 4,\n",
      "          'one': 4,\n",
      "          'bobby': 3,\n",
      "          'lisa': 3,\n",
      "          'playing': 2,\n",
      "          'killing': 2,\n",
      "          'handful': 2,\n",
      "          'teenagers': 2,\n",
      "          'high': 2,\n",
      "          'film': 2,\n",
      "          'could': 2,\n",
      "          'kids': 2,\n",
      "          'nin': 2,\n",
      "          'clark': 2,\n",
      "          'however': 2,\n",
      "          'say': 2,\n",
      "          'subject': 2,\n",
      "          'matter': 2,\n",
      "          'life': 2,\n",
      "          'promiscuous': 2,\n",
      "          'profane': 2,\n",
      "          'question': 2,\n",
      "          'doesnt': 2,\n",
      "          'man': 2,\n",
      "          'way': 2,\n",
      "          'theres': 2,\n",
      "          'feel': 2,\n",
      "          'years': 2,\n",
      "          'youre': 1,\n",
      "          'watching': 1,\n",
      "          'near': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'bored': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'florida': 1,\n",
      "          'teens': 1,\n",
      "          'drugs': 1,\n",
      "          'listening': 1,\n",
      "          'eminem': 1,\n",
      "          'video': 1,\n",
      "          'games': 1,\n",
      "          'peers': 1,\n",
      "          'nbased': 1,\n",
      "          'jim': 1,\n",
      "          'schutzes': 1,\n",
      "          'novelization': 1,\n",
      "          'truelife': 1,\n",
      "          'event': 1,\n",
      "          'charts': 1,\n",
      "          'story': 1,\n",
      "          'disenchanted': 1,\n",
      "          '1993': 1,\n",
      "          'murdered': 1,\n",
      "          'school': 1,\n",
      "          'cold': 1,\n",
      "          'calculated': 1,\n",
      "          'blood': 1,\n",
      "          'provided': 1,\n",
      "          'fascinating': 1,\n",
      "          'insights': 1,\n",
      "          'turned': 1,\n",
      "          'aimless': 1,\n",
      "          'premeditated': 1,\n",
      "          'killers': 1,\n",
      "          'hands': 1,\n",
      "          'controversial': 1,\n",
      "          'director': 1,\n",
      "          'larry': 1,\n",
      "          'less': 1,\n",
      "          'filmmakers': 1,\n",
      "          'pornographic': 1,\n",
      "          'proclivities': 1,\n",
      "          'terms': 1,\n",
      "          'incident': 1,\n",
      "          'provoked': 1,\n",
      "          'stirs': 1,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'schoolers': 1,\n",
      "          'presented': 1,\n",
      "          'uniformly': 1,\n",
      "          'screwed': 1,\n",
      "          'lotbored': 1,\n",
      "          'much': 1,\n",
      "          'ambition': 1,\n",
      "          'kent': 1,\n",
      "          'nick': 1,\n",
      "          'stahl': 1,\n",
      "          'certainly': 1,\n",
      "          'unpleasant': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'exactly': 1,\n",
      "          'tower': 1,\n",
      "          'colleagues': 1,\n",
      "          'pathological': 1,\n",
      "          'department': 1,\n",
      "          'nhe': 1,\n",
      "          'hounds': 1,\n",
      "          'harries': 1,\n",
      "          'humiliates': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'marty': 1,\n",
      "          'played': 1,\n",
      "          'brad': 1,\n",
      "          'renfro': 1,\n",
      "          'martys': 1,\n",
      "          'girlfriend': 1,\n",
      "          'rachel': 1,\n",
      "          'miner': 1,\n",
      "          'care': 1,\n",
      "          'comes': 1,\n",
      "          'idea': 1,\n",
      "          'nsimply': 1,\n",
      "          'remove': 1,\n",
      "          'equation': 1,\n",
      "          'nmarty': 1,\n",
      "          'stoner': 1,\n",
      "          'friends': 1,\n",
      "          'plus': 1,\n",
      "          'recruited': 1,\n",
      "          'hit': 1,\n",
      "          'lure': 1,\n",
      "          'swamp': 1,\n",
      "          'night': 1,\n",
      "          'stab': 1,\n",
      "          'beat': 1,\n",
      "          'head': 1,\n",
      "          'baseball': 1,\n",
      "          'bat': 1,\n",
      "          'dump': 1,\n",
      "          'canal': 1,\n",
      "          'sand': 1,\n",
      "          'crabs': 1,\n",
      "          'gators': 1,\n",
      "          'presumably': 1,\n",
      "          'finish': 1,\n",
      "          'ntheres': 1,\n",
      "          'remorsethe': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'theyre': 1,\n",
      "          'talking': 1,\n",
      "          'openly': 1,\n",
      "          'homework': 1,\n",
      "          'assignment': 1,\n",
      "          'nthey': 1,\n",
      "          'wanted': 1,\n",
      "          'nwhats': 1,\n",
      "          'troubling': 1,\n",
      "          'isnt': 1,\n",
      "          'unsettling': 1,\n",
      "          'matteroffact': 1,\n",
      "          'young': 1,\n",
      "          'people': 1,\n",
      "          'go': 1,\n",
      "          'eliminating': 1,\n",
      "          'constantly': 1,\n",
      "          'distracted': 1,\n",
      "          'material': 1,\n",
      "          'nnot': 1,\n",
      "          'nudity': 1,\n",
      "          'plentiful': 1,\n",
      "          'graphic': 1,\n",
      "          'also': 1,\n",
      "          'uneasy': 1,\n",
      "          'exploitative': 1,\n",
      "          'ngratuitous': 1,\n",
      "          'crotch': 1,\n",
      "          'shots': 1,\n",
      "          'abound': 1,\n",
      "          'makes': 1,\n",
      "          'zipper': 1,\n",
      "          'cutaway': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'height': 1,\n",
      "          'subtlety': 1,\n",
      "          'nclark': 1,\n",
      "          'preoccupied': 1,\n",
      "          'female': 1,\n",
      "          'predominantly': 1,\n",
      "          'leads': 1,\n",
      "          'forget': 1,\n",
      "          'times': 1,\n",
      "          'movie': 1,\n",
      "          'supposed': 1,\n",
      "          'stripping': 1,\n",
      "          'bare': 1,\n",
      "          'literally': 1,\n",
      "          'figuratively': 1,\n",
      "          'actors': 1,\n",
      "          'underage': 1,\n",
      "          'becomes': 1,\n",
      "          'harder': 1,\n",
      "          'watch': 1,\n",
      "          'time': 1,\n",
      "          'begin': 1,\n",
      "          'motives': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'conclusion': 1,\n",
      "          'offers': 1,\n",
      "          'literal': 1,\n",
      "          'snapshots': 1,\n",
      "          'information': 1,\n",
      "          'sentences': 1,\n",
      "          'imposed': 1,\n",
      "          'protagonists': 1,\n",
      "          'involvement': 1,\n",
      "          'crime': 1,\n",
      "          'nits': 1,\n",
      "          'short': 1,\n",
      "          'sequence': 1,\n",
      "          'stillsheather': 1,\n",
      "          '7': 1,\n",
      "          'ali': 1,\n",
      "          '40': 1,\n",
      "          'imprisonment': 1,\n",
      "          'examplebut': 1,\n",
      "          'infinitely': 1,\n",
      "          'telling': 1,\n",
      "          '110': 1,\n",
      "          'minutes': 1,\n",
      "          'rampant': 1,\n",
      "          'unpleasantness': 1,\n",
      "          'precedes': 1,\n",
      "          'n': 1,\n",
      "          'aims': 1,\n",
      "          'truth': 1,\n",
      "          'exploits': 1,\n",
      "          'shamelessly': 1,\n",
      "          'bludgeons': 1,\n",
      "          'death': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'nthe': 5,\n",
      "          'george': 4,\n",
      "          'bus': 4,\n",
      "          'heads': 3,\n",
      "          'man': 3,\n",
      "          'never': 3,\n",
      "          'madness': 3,\n",
      "          'king': 3,\n",
      "          'min': 3,\n",
      "          'n': 3,\n",
      "          'rated': 3,\n",
      "          'finney': 3,\n",
      "          'story': 3,\n",
      "          'connery': 2,\n",
      "          'stars': 2,\n",
      "          'black': 2,\n",
      "          'fishburne': 2,\n",
      "          'work': 2,\n",
      "          'nis': 2,\n",
      "          'hoop': 2,\n",
      "          'drawbridge': 2,\n",
      "          'audience': 2,\n",
      "          'hawthorne': 2,\n",
      "          'oscar': 2,\n",
      "          'comedy': 2,\n",
      "          'importance': 2,\n",
      "          'conductor': 2,\n",
      "          'serious': 2,\n",
      "          'year': 2,\n",
      "          'plot': 2,\n",
      "          'get': 2,\n",
      "          'end': 2,\n",
      "          'turn': 2,\n",
      "          'nits': 2,\n",
      "          'sean': 1,\n",
      "          'harvard': 1,\n",
      "          'law': 1,\n",
      "          'professor': 1,\n",
      "          'back': 1,\n",
      "          'courtroom': 1,\n",
      "          'way': 1,\n",
      "          'everglades': 1,\n",
      "          'defend': 1,\n",
      "          'young': 1,\n",
      "          'educated': 1,\n",
      "          'blair': 1,\n",
      "          'underwood': 1,\n",
      "          'guy': 1,\n",
      "          'death': 1,\n",
      "          'row': 1,\n",
      "          'murder': 1,\n",
      "          'white': 1,\n",
      "          'girl': 1,\n",
      "          'says': 1,\n",
      "          'confession': 1,\n",
      "          'coerced': 1,\n",
      "          'regions': 1,\n",
      "          'tough': 1,\n",
      "          'cop': 1,\n",
      "          'lawrence': 1,\n",
      "          'nwatching': 1,\n",
      "          'bump': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'amusing': 1,\n",
      "          'enough': 1,\n",
      "          'plots': 1,\n",
      "          'joke': 1,\n",
      "          'ntheres': 1,\n",
      "          'logic': 1,\n",
      "          'ntone': 1,\n",
      "          'also': 1,\n",
      "          'issuethere': 1,\n",
      "          'none': 1,\n",
      "          'ndirector': 1,\n",
      "          'arne': 1,\n",
      "          'glimcher': 1,\n",
      "          'establishes': 1,\n",
      "          'exactly': 1,\n",
      "          'trying': 1,\n",
      "          'say': 1,\n",
      "          'statement': 1,\n",
      "          'human': 1,\n",
      "          'rights': 1,\n",
      "          'knockoff': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'nglimcher': 1,\n",
      "          'tells': 1,\n",
      "          'ninstead': 1,\n",
      "          'forces': 1,\n",
      "          'characters': 1,\n",
      "          'jump': 1,\n",
      "          'hoping': 1,\n",
      "          'wont': 1,\n",
      "          'notice': 1,\n",
      "          'whats': 1,\n",
      "          'missing': 1,\n",
      "          'njust': 1,\n",
      "          'awful': 1,\n",
      "          '107': 1,\n",
      "          'nstill': 1,\n",
      "          'wondering': 1,\n",
      "          'nigel': 1,\n",
      "          'nthen': 1,\n",
      "          'check': 1,\n",
      "          'nominated': 1,\n",
      "          'still': 1,\n",
      "          'playing': 1,\n",
      "          'raleigh': 1,\n",
      "          'chapel': 1,\n",
      "          'hill': 1,\n",
      "          'nstage': 1,\n",
      "          'director': 1,\n",
      "          'nicholas': 1,\n",
      "          'hytner': 1,\n",
      "          'remarkable': 1,\n",
      "          'screen': 1,\n",
      "          'debut': 1,\n",
      "          'adapted': 1,\n",
      "          'alan': 1,\n",
      "          'bennetts': 1,\n",
      "          '1991': 1,\n",
      "          'tragic': 1,\n",
      "          'fine': 1,\n",
      "          'effect': 1,\n",
      "          'nsumptuouslooking': 1,\n",
      "          'mildly': 1,\n",
      "          'stuffy': 1,\n",
      "          'charts': 1,\n",
      "          'plagued': 1,\n",
      "          'iii': 1,\n",
      "          'almost': 1,\n",
      "          '30': 1,\n",
      "          'years': 1,\n",
      "          'reign': 1,\n",
      "          'na': 1,\n",
      "          '98': 1,\n",
      "          'r': 1,\n",
      "          'nin': 1,\n",
      "          'suri': 1,\n",
      "          'krishnammas': 1,\n",
      "          'albert': 1,\n",
      "          'disappears': 1,\n",
      "          'deeply': 1,\n",
      "          'role': 1,\n",
      "          'lovable': 1,\n",
      "          'dublin': 1,\n",
      "          'shame': 1,\n",
      "          'gets': 1,\n",
      "          'around': 1,\n",
      "          'nhis': 1,\n",
      "          'character': 1,\n",
      "          'passion': 1,\n",
      "          'wilde': 1,\n",
      "          'nhe': 1,\n",
      "          'reads': 1,\n",
      "          'riders': 1,\n",
      "          'help': 1,\n",
      "          'tries': 1,\n",
      "          'stage': 1,\n",
      "          'one': 1,\n",
      "          'authors': 1,\n",
      "          'plays': 1,\n",
      "          'nthis': 1,\n",
      "          'salome': 1,\n",
      "          'nfor': 1,\n",
      "          'hour': 1,\n",
      "          'theres': 1,\n",
      "          'sweet': 1,\n",
      "          'magic': 1,\n",
      "          'behind': 1,\n",
      "          'troupe': 1,\n",
      "          'workingclass': 1,\n",
      "          'stiffs': 1,\n",
      "          'nconflict': 1,\n",
      "          'arises': 1,\n",
      "          'small': 1,\n",
      "          'stuffan': 1,\n",
      "          'administrator': 1,\n",
      "          'company': 1,\n",
      "          'outraged': 1,\n",
      "          'catholic': 1,\n",
      "          'pork': 1,\n",
      "          'butcher': 1,\n",
      "          'michael': 1,\n",
      "          'gambon': 1,\n",
      "          'nbut': 1,\n",
      "          'wheel': 1,\n",
      "          'speak': 1,\n",
      "          'rolls': 1,\n",
      "          'smoothly': 1,\n",
      "          'pointsjust': 1,\n",
      "          'like': 1,\n",
      "          'gorgeous': 1,\n",
      "          'leland': 1,\n",
      "          'doubledecker': 1,\n",
      "          'nwhere': 1,\n",
      "          'things': 1,\n",
      "          'toward': 1,\n",
      "          'takes': 1,\n",
      "          'would': 1,\n",
      "          'dark': 1,\n",
      "          'alley': 1,\n",
      "          'marks': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ride': 1,\n",
      "          'twist': 1,\n",
      "          'makes': 1,\n",
      "          'senseand': 1,\n",
      "          'helps': 1,\n",
      "          'paint': 1,\n",
      "          'complete': 1,\n",
      "          'picture': 1,\n",
      "          'finneys': 1,\n",
      "          'characterbut': 1,\n",
      "          'trip': 1,\n",
      "          'betrays': 1,\n",
      "          'light': 1,\n",
      "          'airy': 1,\n",
      "          'atmosphere': 1,\n",
      "          'come': 1,\n",
      "          'fatal': 1,\n",
      "          'misstep': 1,\n",
      "          'mind': 1,\n",
      "          'doesnt': 1,\n",
      "          'send': 1,\n",
      "          'soaring': 1,\n",
      "          'realms': 1,\n",
      "          'incredulity': 1,\n",
      "          'ndr': 1,\n",
      "          'strangelove': 1,\n",
      "          '93': 1,\n",
      "          'nmein': 1,\n",
      "          'fuhrer': 1,\n",
      "          'fun': 1,\n",
      "          'last': 1,\n",
      "          'month': 1,\n",
      "          'durham': 1,\n",
      "          'carolina': 1,\n",
      "          'midweek': 1,\n",
      "          'screening': 1,\n",
      "          'stanley': 1,\n",
      "          'kubricks': 1,\n",
      "          'pitchblack': 1,\n",
      "          'dr': 1,\n",
      "          'nstrangelove': 1,\n",
      "          'learned': 1,\n",
      "          'stop': 1,\n",
      "          'worrying': 1,\n",
      "          'love': 1,\n",
      "          'bomb': 1,\n",
      "          '1964': 1,\n",
      "          'peter': 1,\n",
      "          'sellers': 1,\n",
      "          'three': 1,\n",
      "          'roles': 1,\n",
      "          'c': 1,\n",
      "          'scott': 1,\n",
      "          'sterling': 1,\n",
      "          'hayden': 1,\n",
      "          'slim': 1,\n",
      "          'pickens': 1,\n",
      "          'ntheir': 1,\n",
      "          'antics': 1,\n",
      "          'brought': 1,\n",
      "          'house': 1,\n",
      "          'surprise': 1,\n",
      "          'packed': 1,\n",
      "          'younger': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jack': 4,\n",
      "          'ginty': 3,\n",
      "          'good': 3,\n",
      "          'nthe': 3,\n",
      "          'played': 3,\n",
      "          'fahey': 3,\n",
      "          'erotic': 2,\n",
      "          'woman': 2,\n",
      "          'desire': 2,\n",
      "          'robert': 2,\n",
      "          'star': 2,\n",
      "          'films': 2,\n",
      "          'movie': 2,\n",
      "          'jeff': 2,\n",
      "          'bo': 2,\n",
      "          'derek': 2,\n",
      "          'nhowever': 2,\n",
      "          'even': 2,\n",
      "          'end': 2,\n",
      "          'characters': 2,\n",
      "          'like': 2,\n",
      "          'irritating': 2,\n",
      "          'hand': 2,\n",
      "          'among': 1,\n",
      "          'multitude': 1,\n",
      "          'thrillers': 1,\n",
      "          'released': 1,\n",
      "          'early': 1,\n",
      "          '1990s': 1,\n",
      "          'interesting': 1,\n",
      "          'directed': 1,\n",
      "          'bgrade': 1,\n",
      "          'action': 1,\n",
      "          'previous': 1,\n",
      "          'decade': 1,\n",
      "          'nthose': 1,\n",
      "          'tend': 1,\n",
      "          'nostalgic': 1,\n",
      "          '1980s': 1,\n",
      "          'find': 1,\n",
      "          'reason': 1,\n",
      "          'type': 1,\n",
      "          'movies': 1,\n",
      "          'made': 1,\n",
      "          'nas': 1,\n",
      "          'director': 1,\n",
      "          'little': 1,\n",
      "          'improve': 1,\n",
      "          'impression': 1,\n",
      "          'protagonist': 1,\n",
      "          'yacht': 1,\n",
      "          'skipper': 1,\n",
      "          'falls': 1,\n",
      "          'madly': 1,\n",
      "          'love': 1,\n",
      "          'christina': 1,\n",
      "          'ford': 1,\n",
      "          'relationship': 1,\n",
      "          'rich': 1,\n",
      "          'powerful': 1,\n",
      "          'jonathan': 1,\n",
      "          'ashby': 1,\n",
      "          'steven': 1,\n",
      "          'bauer': 1,\n",
      "          'none': 1,\n",
      "          'stormy': 1,\n",
      "          'night': 1,\n",
      "          'tragedy': 1,\n",
      "          'occurs': 1,\n",
      "          'accused': 1,\n",
      "          'rape': 1,\n",
      "          'murder': 1,\n",
      "          'friend': 1,\n",
      "          'walter': 1,\n",
      "          'j': 1,\n",
      "          'hill': 1,\n",
      "          'mitchum': 1,\n",
      "          'happens': 1,\n",
      "          'lawyer': 1,\n",
      "          'might': 1,\n",
      "          'prove': 1,\n",
      "          'innocence': 1,\n",
      "          'nbelonging': 1,\n",
      "          'genre': 1,\n",
      "          'courtroom': 1,\n",
      "          'drama': 1,\n",
      "          'thriller': 1,\n",
      "          'distinguishes': 1,\n",
      "          'similar': 1,\n",
      "          'almost': 1,\n",
      "          'behaving': 1,\n",
      "          'total': 1,\n",
      "          'idiots': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'film': 1,\n",
      "          'isnt': 1,\n",
      "          'comedy': 1,\n",
      "          'laugh': 1,\n",
      "          'unintentional': 1,\n",
      "          'totally': 1,\n",
      "          'antipathetic': 1,\n",
      "          'soon': 1,\n",
      "          'stop': 1,\n",
      "          'caring': 1,\n",
      "          'would': 1,\n",
      "          'happen': 1,\n",
      "          'actors': 1,\n",
      "          'play': 1,\n",
      "          'dont': 1,\n",
      "          'help': 1,\n",
      "          'either': 1,\n",
      "          'nthat': 1,\n",
      "          'especially': 1,\n",
      "          'case': 1,\n",
      "          'whose': 1,\n",
      "          'stupid': 1,\n",
      "          'character': 1,\n",
      "          'lawnmower': 1,\n",
      "          'man': 1,\n",
      "          'looks': 1,\n",
      "          'genius': 1,\n",
      "          'comparison': 1,\n",
      "          'nhis': 1,\n",
      "          'partner': 1,\n",
      "          'shows': 1,\n",
      "          'didnt': 1,\n",
      "          'age': 1,\n",
      "          'enough': 1,\n",
      "          'cease': 1,\n",
      "          'sex': 1,\n",
      "          'goddess': 1,\n",
      "          'small': 1,\n",
      "          'compensation': 1,\n",
      "          'apparent': 1,\n",
      "          'lack': 1,\n",
      "          'acting': 1,\n",
      "          'talents': 1,\n",
      "          'nginty': 1,\n",
      "          'tries': 1,\n",
      "          'bring': 1,\n",
      "          'life': 1,\n",
      "          'using': 1,\n",
      "          'many': 1,\n",
      "          'flashbacks': 1,\n",
      "          'strange': 1,\n",
      "          'angles': 1,\n",
      "          'shooting': 1,\n",
      "          'gets': 1,\n",
      "          'already': 1,\n",
      "          'bored': 1,\n",
      "          'dissatisfied': 1,\n",
      "          'viewer': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'lake': 6,\n",
      "          'placid': 5,\n",
      "          'seem': 5,\n",
      "          'anaconda': 4,\n",
      "          'crocodile': 4,\n",
      "          'movie': 4,\n",
      "          'like': 4,\n",
      "          'doesnt': 4,\n",
      "          'predator': 3,\n",
      "          'n': 3,\n",
      "          'kelly': 3,\n",
      "          'hector': 3,\n",
      "          'croc': 3,\n",
      "          'nthe': 3,\n",
      "          'marks': 2,\n",
      "          'another': 2,\n",
      "          'series': 2,\n",
      "          'jaws': 2,\n",
      "          'funny': 2,\n",
      "          'fonda': 2,\n",
      "          'maine': 2,\n",
      "          'tooth': 2,\n",
      "          'body': 2,\n",
      "          'white': 2,\n",
      "          'know': 2,\n",
      "          'character': 2,\n",
      "          'best': 2,\n",
      "          'killing': 2,\n",
      "          'explanation': 2,\n",
      "          'much': 2,\n",
      "          'something': 2,\n",
      "          'yet': 1,\n",
      "          'entry': 1,\n",
      "          'pics': 1,\n",
      "          'screen': 1,\n",
      "          'staple': 1,\n",
      "          'late': 1,\n",
      "          '1970s': 1,\n",
      "          'post': 1,\n",
      "          'revived': 1,\n",
      "          'recently': 1,\n",
      "          'godawful': 1,\n",
      "          'claims': 1,\n",
      "          'horrorcomedy': 1,\n",
      "          'directed': 1,\n",
      "          'guy': 1,\n",
      "          'house': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'actually': 1,\n",
      "          'less': 1,\n",
      "          'deadpan': 1,\n",
      "          'seriousness': 1,\n",
      "          'npaleontologist': 1,\n",
      "          'scott': 1,\n",
      "          'bridget': 1,\n",
      "          'sent': 1,\n",
      "          'examine': 1,\n",
      "          'removed': 1,\n",
      "          'bitten': 1,\n",
      "          'half': 1,\n",
      "          'ndiscovering': 1,\n",
      "          'belongs': 1,\n",
      "          'shouldnt': 1,\n",
      "          'even': 1,\n",
      "          'hemisphere': 1,\n",
      "          'goes': 1,\n",
      "          'crochunting': 1,\n",
      "          'game': 1,\n",
      "          'warden': 1,\n",
      "          'jack': 1,\n",
      "          'wells': 1,\n",
      "          'bill': 1,\n",
      "          'pullman': 1,\n",
      "          'sheriff': 1,\n",
      "          'hank': 1,\n",
      "          'keough': 1,\n",
      "          'brendan': 1,\n",
      "          'gleeson': 1,\n",
      "          'ntheyre': 1,\n",
      "          'joined': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'unwelcome': 1,\n",
      "          'guest': 1,\n",
      "          'cyr': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'scholar': 1,\n",
      "          'worships': 1,\n",
      "          'crocs': 1,\n",
      "          'searches': 1,\n",
      "          'world': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'merry': 1,\n",
      "          'band': 1,\n",
      "          'meets': 1,\n",
      "          'mrs': 1,\n",
      "          'delores': 1,\n",
      "          'bickerman': 1,\n",
      "          'betty': 1,\n",
      "          'weird': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n",
      "          'lives': 1,\n",
      "          'nyou': 1,\n",
      "          'expect': 1,\n",
      "          'lots': 1,\n",
      "          'shots': 1,\n",
      "          'camera': 1,\n",
      "          'eyes': 1,\n",
      "          'cam': 1,\n",
      "          'swimming': 1,\n",
      "          'toward': 1,\n",
      "          'someones': 1,\n",
      "          'dangling': 1,\n",
      "          'legs': 1,\n",
      "          'music': 1,\n",
      "          'plays': 1,\n",
      "          'one': 1,\n",
      "          'whos': 1,\n",
      "          'obsessed': 1,\n",
      "          'stupidly': 1,\n",
      "          'endangers': 1,\n",
      "          'rest': 1,\n",
      "          'insists': 1,\n",
      "          'cant': 1,\n",
      "          'possibly': 1,\n",
      "          'exist': 1,\n",
      "          'nunlike': 1,\n",
      "          'slippery': 1,\n",
      "          'cousin': 1,\n",
      "          'wants': 1,\n",
      "          'present': 1,\n",
      "          'formulaic': 1,\n",
      "          'plot': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'selfdefeating': 1,\n",
      "          'result': 1,\n",
      "          'neither': 1,\n",
      "          'scary': 1,\n",
      "          'tedious': 1,\n",
      "          'nwhile': 1,\n",
      "          'director': 1,\n",
      "          'steve': 1,\n",
      "          'miner': 1,\n",
      "          'several': 1,\n",
      "          'horror': 1,\n",
      "          'films': 1,\n",
      "          'resume': 1,\n",
      "          'including': 1,\n",
      "          'two': 1,\n",
      "          'installments': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'halloween': 1,\n",
      "          'h20': 1,\n",
      "          'screenwriter': 1,\n",
      "          'david': 1,\n",
      "          'kelley': 1,\n",
      "          'known': 1,\n",
      "          'creator': 1,\n",
      "          'tv': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'chicago': 1,\n",
      "          'hope': 1,\n",
      "          'stomach': 1,\n",
      "          'chomp': 1,\n",
      "          'em': 1,\n",
      "          'flick': 1,\n",
      "          'count': 1,\n",
      "          'surprisingly': 1,\n",
      "          'low': 1,\n",
      "          'include': 1,\n",
      "          'major': 1,\n",
      "          'characters': 1,\n",
      "          'annoyingly': 1,\n",
      "          'insist': 1,\n",
      "          'capture': 1,\n",
      "          'alive': 1,\n",
      "          'rather': 1,\n",
      "          'manages': 1,\n",
      "          'waysill': 1,\n",
      "          'let': 1,\n",
      "          'discover': 1,\n",
      "          'mostly': 1,\n",
      "          'computergenerated': 1,\n",
      "          'course': 1,\n",
      "          'nlike': 1,\n",
      "          'snake': 1,\n",
      "          'thirtyfoot': 1,\n",
      "          'monster': 1,\n",
      "          'real': 1,\n",
      "          'moves': 1,\n",
      "          'quickly': 1,\n",
      "          'ways': 1,\n",
      "          'unnatural': 1,\n",
      "          'also': 1,\n",
      "          'offers': 1,\n",
      "          'little': 1,\n",
      "          'giant': 1,\n",
      "          'nthere': 1,\n",
      "          'lot': 1,\n",
      "          'semimystical': 1,\n",
      "          'mumbo': 1,\n",
      "          'jumbo': 1,\n",
      "          'really': 1,\n",
      "          'dont': 1,\n",
      "          'crocodiles': 1,\n",
      "          'nthey': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'going': 1,\n",
      "          'urban': 1,\n",
      "          'myth': 1,\n",
      "          'alligators': 1,\n",
      "          'sewers': 1,\n",
      "          'na': 1,\n",
      "          'offer': 1,\n",
      "          'radioactive': 1,\n",
      "          'mutant': 1,\n",
      "          'ncreature': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'give': 1,\n",
      "          'audience': 1,\n",
      "          'hang': 1,\n",
      "          'disbelief': 1,\n",
      "          'npullman': 1,\n",
      "          'plodding': 1,\n",
      "          'autopilot': 1,\n",
      "          'nmost': 1,\n",
      "          'time': 1,\n",
      "          'theyre': 1,\n",
      "          'probably': 1,\n",
      "          'thinking': 1,\n",
      "          'agents': 1,\n",
      "          'wondering': 1,\n",
      "          'making': 1,\n",
      "          'end': 1,\n",
      "          'careers': 1,\n",
      "          'nplatt': 1,\n",
      "          'hand': 1,\n",
      "          'giving': 1,\n",
      "          'efforts': 1,\n",
      "          'manage': 1,\n",
      "          'squeeze': 1,\n",
      "          'chuckles': 1,\n",
      "          'sorry': 1,\n",
      "          'script': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'nthe': 7,\n",
      "          'one': 6,\n",
      "          'even': 5,\n",
      "          'like': 4,\n",
      "          'bugs': 4,\n",
      "          'pornography': 3,\n",
      "          'bad': 3,\n",
      "          'anything': 3,\n",
      "          'ni': 3,\n",
      "          'doesnt': 3,\n",
      "          'thing': 3,\n",
      "          'soldiers': 3,\n",
      "          'dont': 3,\n",
      "          'really': 3,\n",
      "          'troopers': 2,\n",
      "          'hateful': 2,\n",
      "          'nit': 2,\n",
      "          'good': 2,\n",
      "          'audience': 2,\n",
      "          'nits': 2,\n",
      "          'worst': 2,\n",
      "          'time': 2,\n",
      "          'full': 2,\n",
      "          'stand': 2,\n",
      "          'er': 2,\n",
      "          'recruitment': 2,\n",
      "          'film': 2,\n",
      "          'intelligence': 2,\n",
      "          'scenes': 2,\n",
      "          'gets': 2,\n",
      "          'nthey': 2,\n",
      "          'sense': 2,\n",
      "          'therefore': 2,\n",
      "          'hate': 2,\n",
      "          'would': 2,\n",
      "          'nif': 2,\n",
      "          'way': 2,\n",
      "          'ntheres': 2,\n",
      "          'propaganda': 2,\n",
      "          'look': 2,\n",
      "          'capsule': 1,\n",
      "          'tonight': 1,\n",
      "          'leni': 1,\n",
      "          'rienfenstal': 1,\n",
      "          'nstarship': 1,\n",
      "          'expensive': 1,\n",
      "          'unenjoyable': 1,\n",
      "          'piece': 1,\n",
      "          'violent': 1,\n",
      "          'cinema': 1,\n",
      "          'storytelling': 1,\n",
      "          'stupid': 1,\n",
      "          'fun': 1,\n",
      "          'cynically': 1,\n",
      "          'calculatedly': 1,\n",
      "          'boneheaded': 1,\n",
      "          'least': 1,\n",
      "          'demanding': 1,\n",
      "          'members': 1,\n",
      "          'alternately': 1,\n",
      "          'bored': 1,\n",
      "          'revulsed': 1,\n",
      "          'movies': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'long': 1,\n",
      "          'nwhy': 1,\n",
      "          'calling': 1,\n",
      "          'npornography': 1,\n",
      "          'abstract': 1,\n",
      "          'calculated': 1,\n",
      "          'appeal': 1,\n",
      "          'baser': 1,\n",
      "          'instincts': 1,\n",
      "          'remember': 1,\n",
      "          'reading': 1,\n",
      "          'review': 1,\n",
      "          'metal': 1,\n",
      "          'jacket': 1,\n",
      "          'described': 1,\n",
      "          'climact': 1,\n",
      "          'moment': 1,\n",
      "          'end': 1,\n",
      "          'private': 1,\n",
      "          'joker': 1,\n",
      "          'shoot': 1,\n",
      "          'downed': 1,\n",
      "          'vc': 1,\n",
      "          'sniper': 1,\n",
      "          'nearpornographic': 1,\n",
      "          'eternity': 1,\n",
      "          'didnt': 1,\n",
      "          'agree': 1,\n",
      "          'assessment': 1,\n",
      "          'could': 1,\n",
      "          'see': 1,\n",
      "          'implied': 1,\n",
      "          'reviewer': 1,\n",
      "          'felt': 1,\n",
      "          'incited': 1,\n",
      "          'pump': 1,\n",
      "          'fists': 1,\n",
      "          'shout': 1,\n",
      "          'man': 1,\n",
      "          'nthat': 1,\n",
      "          'sentiment': 1,\n",
      "          'echoed': 1,\n",
      "          'ad': 1,\n",
      "          'nauseam': 1,\n",
      "          'throughout': 1,\n",
      "          'starship': 1,\n",
      "          'literally': 1,\n",
      "          'giant': 1,\n",
      "          'gone': 1,\n",
      "          'berserk': 1,\n",
      "          'tries': 1,\n",
      "          'frantically': 1,\n",
      "          'enlist': 1,\n",
      "          'emotions': 1,\n",
      "          'winds': 1,\n",
      "          'dull': 1,\n",
      "          'sickening': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'future': 1,\n",
      "          'earth': 1,\n",
      "          'come': 1,\n",
      "          'attack': 1,\n",
      "          'alien': 1,\n",
      "          'species': 1,\n",
      "          'appear': 1,\n",
      "          'nto': 1,\n",
      "          'counterattack': 1,\n",
      "          'humankind': 1,\n",
      "          'single': 1,\n",
      "          'stupidest': 1,\n",
      "          'imaginable': 1,\n",
      "          'instead': 1,\n",
      "          'nuke': 1,\n",
      "          'planet': 1,\n",
      "          'orbit': 1,\n",
      "          'theyre': 1,\n",
      "          'clearly': 1,\n",
      "          'capable': 1,\n",
      "          'send': 1,\n",
      "          'grunts': 1,\n",
      "          'm16': 1,\n",
      "          'rifles': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'heinlein': 1,\n",
      "          'wwii': 1,\n",
      "          'obvious': 1,\n",
      "          'points': 1,\n",
      "          'satire': 1,\n",
      "          'ever': 1,\n",
      "          'poked': 1,\n",
      "          'prodded': 1,\n",
      "          'combat': 1,\n",
      "          'noisy': 1,\n",
      "          'repetitive': 1,\n",
      "          'ultimately': 1,\n",
      "          'tiresome': 1,\n",
      "          'n': 1,\n",
      "          'scene': 1,\n",
      "          'journalist': 1,\n",
      "          'battlefield': 1,\n",
      "          'filimg': 1,\n",
      "          'slaughtered': 1,\n",
      "          'ends': 1,\n",
      "          'groaning': 1,\n",
      "          'predictability': 1,\n",
      "          'said': 1,\n",
      "          'cameraman': 1,\n",
      "          'skewered': 1,\n",
      "          'commanders': 1,\n",
      "          'consistently': 1,\n",
      "          'idiotic': 1,\n",
      "          'possess': 1,\n",
      "          'germ': 1,\n",
      "          'tactical': 1,\n",
      "          'common': 1,\n",
      "          'behave': 1,\n",
      "          'care': 1,\n",
      "          'nwe': 1,\n",
      "          'hated': 1,\n",
      "          'tom': 1,\n",
      "          'berenger': 1,\n",
      "          'character': 1,\n",
      "          'platoon': 1,\n",
      "          'mattered': 1,\n",
      "          'curious': 1,\n",
      "          'learn': 1,\n",
      "          'fate': 1,\n",
      "          'nhere': 1,\n",
      "          'whats': 1,\n",
      "          'nhating': 1,\n",
      "          'cursing': 1,\n",
      "          'hurricaine': 1,\n",
      "          'theres': 1,\n",
      "          'know': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'screenwriter': 1,\n",
      "          'ed': 1,\n",
      "          'neumeier': 1,\n",
      "          'perhaps': 1,\n",
      "          'better': 1,\n",
      "          'appelation': 1,\n",
      "          'screen': 1,\n",
      "          'typist': 1,\n",
      "          'director': 1,\n",
      "          'increasingly': 1,\n",
      "          'talentimpaired': 1,\n",
      "          'paul': 1,\n",
      "          'verhoeven': 1,\n",
      "          'found': 1,\n",
      "          'make': 1,\n",
      "          'characters': 1,\n",
      "          'story': 1,\n",
      "          'serve': 1,\n",
      "          'none': 1,\n",
      "          'subplots': 1,\n",
      "          'concerns': 1,\n",
      "          'woman': 1,\n",
      "          'pilot': 1,\n",
      "          'whos': 1,\n",
      "          'great': 1,\n",
      "          'getting': 1,\n",
      "          'tight': 1,\n",
      "          'situations': 1,\n",
      "          'nonce': 1,\n",
      "          'twice': 1,\n",
      "          'fine': 1,\n",
      "          'nby': 1,\n",
      "          'fifth': 1,\n",
      "          'sixth': 1,\n",
      "          'worn': 1,\n",
      "          'welcome': 1,\n",
      "          'never': 1,\n",
      "          'people': 1,\n",
      "          'thinking': 1,\n",
      "          'tested': 1,\n",
      "          'show': 1,\n",
      "          'mettle': 1,\n",
      "          'nalso': 1,\n",
      "          'irritatingly': 1,\n",
      "          'selective': 1,\n",
      "          'effective': 1,\n",
      "          'earthling': 1,\n",
      "          'weaponry': 1,\n",
      "          'bug': 1,\n",
      "          'humans': 1,\n",
      "          'screaming': 1,\n",
      "          'grasp': 1,\n",
      "          'five': 1,\n",
      "          'guys': 1,\n",
      "          'around': 1,\n",
      "          'blast': 1,\n",
      "          'away': 1,\n",
      "          'auto': 1,\n",
      "          'without': 1,\n",
      "          'damned': 1,\n",
      "          'nbut': 1,\n",
      "          'human': 1,\n",
      "          'cornered': 1,\n",
      "          'lays': 1,\n",
      "          'waste': 1,\n",
      "          'whole': 1,\n",
      "          'platoons': 1,\n",
      "          'clip': 1,\n",
      "          'nuhhuh': 1,\n",
      "          'feature': 1,\n",
      "          'repulsive': 1,\n",
      "          'quasifascist': 1,\n",
      "          'flavor': 1,\n",
      "          'say': 1,\n",
      "          'quasi': 1,\n",
      "          'uses': 1,\n",
      "          'many': 1,\n",
      "          'trappings': 1,\n",
      "          'fascism': 1,\n",
      "          'ot': 1,\n",
      "          'eroticize': 1,\n",
      "          'action': 1,\n",
      "          'gear': 1,\n",
      "          'uniforms': 1,\n",
      "          'etc': 1,\n",
      "          'nerve': 1,\n",
      "          'brains': 1,\n",
      "          'genuinely': 1,\n",
      "          'fascist': 1,\n",
      "          'intelligent': 1,\n",
      "          'subject': 1,\n",
      "          'bumpers': 1,\n",
      "          'apparently': 1,\n",
      "          'intended': 1,\n",
      "          'parody': 1,\n",
      "          'wartime': 1,\n",
      "          'clumsy': 1,\n",
      "          'oafish': 1,\n",
      "          'wind': 1,\n",
      "          'making': 1,\n",
      "          'relatively': 1,\n",
      "          'innocuous': 1,\n",
      "          'comparison': 1,\n",
      "          'nlike': 1,\n",
      "          'rest': 1,\n",
      "          'suppose': 1,\n",
      "          'worth': 1,\n",
      "          'acting': 1,\n",
      "          'bland': 1,\n",
      "          'neither': 1,\n",
      "          'arsenic': 1,\n",
      "          'gravy': 1,\n",
      "          'music': 1,\n",
      "          'disposable': 1,\n",
      "          'camerawork': 1,\n",
      "          'turgid': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'makes': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'masterpiece': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dr': 7,\n",
      "          'moreau': 6,\n",
      "          'story': 5,\n",
      "          'island': 5,\n",
      "          'nthe': 5,\n",
      "          'classic': 4,\n",
      "          'film': 4,\n",
      "          'really': 4,\n",
      "          'n': 4,\n",
      "          'production': 3,\n",
      "          'much': 3,\n",
      "          'better': 3,\n",
      "          'montgomery': 3,\n",
      "          'moreaus': 3,\n",
      "          'beastpeople': 3,\n",
      "          'long': 3,\n",
      "          'characters': 3,\n",
      "          'important': 3,\n",
      "          'development': 3,\n",
      "          'still': 3,\n",
      "          'apes': 3,\n",
      "          'h': 2,\n",
      "          'g': 2,\n",
      "          'wells': 2,\n",
      "          'effects': 2,\n",
      "          'man': 2,\n",
      "          'yet': 2,\n",
      "          'another': 2,\n",
      "          'doubt': 2,\n",
      "          '2': 2,\n",
      "          'movies': 2,\n",
      "          'one': 2,\n",
      "          'title': 2,\n",
      "          'ndouglas': 2,\n",
      "          'incidently': 2,\n",
      "          'lab': 2,\n",
      "          'neven': 2,\n",
      "          'people': 2,\n",
      "          'led': 2,\n",
      "          'savage': 2,\n",
      "          'nmoreau': 2,\n",
      "          'within': 2,\n",
      "          'beast': 2,\n",
      "          'make': 2,\n",
      "          'attention': 2,\n",
      "          'character': 2,\n",
      "          'could': 2,\n",
      "          'would': 2,\n",
      "          'say': 2,\n",
      "          'action': 2,\n",
      "          'nothing': 2,\n",
      "          'planet': 2,\n",
      "          'good': 2,\n",
      "          'bring': 2,\n",
      "          'little': 2,\n",
      "          'ruined': 1,\n",
      "          'nmarking': 1,\n",
      "          'centennial': 1,\n",
      "          'anniversary': 1,\n",
      "          '1896': 1,\n",
      "          'new': 1,\n",
      "          'line': 1,\n",
      "          'cinema': 1,\n",
      "          'armed': 1,\n",
      "          'stellar': 1,\n",
      "          'cast': 1,\n",
      "          'expert': 1,\n",
      "          'makeup': 1,\n",
      "          'stan': 1,\n",
      "          'winston': 1,\n",
      "          'alien': 1,\n",
      "          'predator': 1,\n",
      "          'terminator': 1,\n",
      "          'etc': 1,\n",
      "          'churns': 1,\n",
      "          'hollywood': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'superior': 1,\n",
      "          'compared': 1,\n",
      "          'earlier': 1,\n",
      "          'made': 1,\n",
      "          'back': 1,\n",
      "          '1933': 1,\n",
      "          '1977': 1,\n",
      "          'lost': 1,\n",
      "          'souls': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'begins': 1,\n",
      "          'edward': 1,\n",
      "          'douglas': 1,\n",
      "          'thewlis': 1,\n",
      "          'un': 1,\n",
      "          'representative': 1,\n",
      "          'sent': 1,\n",
      "          'oversee': 1,\n",
      "          'peace': 1,\n",
      "          'treaty': 1,\n",
      "          'somewhere': 1,\n",
      "          'south': 1,\n",
      "          'pacific': 1,\n",
      "          'saved': 1,\n",
      "          'brink': 1,\n",
      "          'death': 1,\n",
      "          'kilmer': 1,\n",
      "          'plane': 1,\n",
      "          'crashes': 1,\n",
      "          'sea': 1,\n",
      "          'soon': 1,\n",
      "          'learns': 1,\n",
      "          'working': 1,\n",
      "          'owns': 1,\n",
      "          'also': 1,\n",
      "          'reputable': 1,\n",
      "          'geneticist': 1,\n",
      "          'awarded': 1,\n",
      "          'nobel': 1,\n",
      "          'prize': 1,\n",
      "          'nhis': 1,\n",
      "          'hosts': 1,\n",
      "          'reluctance': 1,\n",
      "          'allow': 1,\n",
      "          'freely': 1,\n",
      "          'move': 1,\n",
      "          'around': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'stumbled': 1,\n",
      "          'monstrous': 1,\n",
      "          'birth': 1,\n",
      "          'progress': 1,\n",
      "          'worse': 1,\n",
      "          'workers': 1,\n",
      "          'exactly': 1,\n",
      "          'normal': 1,\n",
      "          'stumbles': 1,\n",
      "          'across': 1,\n",
      "          'shocking': 1,\n",
      "          'discovery': 1,\n",
      "          'community': 1,\n",
      "          'considers': 1,\n",
      "          'maker': 1,\n",
      "          'nusing': 1,\n",
      "          'shocktherapy': 1,\n",
      "          'law': 1,\n",
      "          'able': 1,\n",
      "          'keep': 1,\n",
      "          'civilised': 1,\n",
      "          'extent': 1,\n",
      "          'animalmen': 1,\n",
      "          'controlled': 1,\n",
      "          'questions': 1,\n",
      "          'ability': 1,\n",
      "          'men': 1,\n",
      "          'playing': 1,\n",
      "          'god': 1,\n",
      "          'ndr': 1,\n",
      "          'obsessed': 1,\n",
      "          'creating': 1,\n",
      "          'race': 1,\n",
      "          'beings': 1,\n",
      "          'free': 1,\n",
      "          'hate': 1,\n",
      "          'violence': 1,\n",
      "          'every': 1,\n",
      "          'something': 1,\n",
      "          'suppress': 1,\n",
      "          'interesting': 1,\n",
      "          'premise': 1,\n",
      "          'grasp': 1,\n",
      "          'failed': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'put': 1,\n",
      "          'worst': 1,\n",
      "          'thing': 1,\n",
      "          'prioritized': 1,\n",
      "          'audience': 1,\n",
      "          'believe': 1,\n",
      "          'particular': 1,\n",
      "          'know': 1,\n",
      "          'perishes': 1,\n",
      "          'rather': 1,\n",
      "          'nungloriously': 1,\n",
      "          'times': 1,\n",
      "          'nperhaps': 1,\n",
      "          'redemption': 1,\n",
      "          'especially': 1,\n",
      "          'aissa': 1,\n",
      "          'balk': 1,\n",
      "          'human': 1,\n",
      "          'creations': 1,\n",
      "          'two': 1,\n",
      "          'receive': 1,\n",
      "          'area': 1,\n",
      "          'script': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'nmore': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'used': 1,\n",
      "          'interaction': 1,\n",
      "          'ni': 1,\n",
      "          'liked': 1,\n",
      "          'delved': 1,\n",
      "          'obsession': 1,\n",
      "          'montgomerys': 1,\n",
      "          'purpose': 1,\n",
      "          'justification': 1,\n",
      "          'rebel': 1,\n",
      "          'nmaybe': 1,\n",
      "          'nature': 1,\n",
      "          'screenplay': 1,\n",
      "          'incorporate': 1,\n",
      "          'sequences': 1,\n",
      "          'forced': 1,\n",
      "          'filmmakers': 1,\n",
      "          'cut': 1,\n",
      "          'short': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'summer': 1,\n",
      "          'marketable': 1,\n",
      "          'special': 1,\n",
      "          'anyone': 1,\n",
      "          'shout': 1,\n",
      "          'nat': 1,\n",
      "          'beastmen': 1,\n",
      "          'looked': 1,\n",
      "          'bit': 1,\n",
      "          'realistic': 1,\n",
      "          'nthis': 1,\n",
      "          'potential': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'adaptations': 1,\n",
      "          'decide': 1,\n",
      "          'focus': 1,\n",
      "          'message': 1,\n",
      "          'makes': 1,\n",
      "          'entire': 1,\n",
      "          'essence': 1,\n",
      "          'nas': 1,\n",
      "          'third': 1,\n",
      "          'outing': 1,\n",
      "          'naccomplishes': 1,\n",
      "          'inferior': 1,\n",
      "          'version': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'creaky': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 4,\n",
      "          'may': 3,\n",
      "          'boring': 2,\n",
      "          'english': 2,\n",
      "          'patient': 2,\n",
      "          'acting': 2,\n",
      "          'cinematography': 2,\n",
      "          'made': 2,\n",
      "          'fiennes': 2,\n",
      "          'almasy': 2,\n",
      "          'nthe': 2,\n",
      "          'dafoe': 2,\n",
      "          'dead': 2,\n",
      "          'good': 2,\n",
      "          'much': 2,\n",
      "          'lengthy': 1,\n",
      "          'lousy': 1,\n",
      "          'two': 1,\n",
      "          'words': 1,\n",
      "          'describe': 1,\n",
      "          'drama': 1,\n",
      "          'ngreat': 1,\n",
      "          'music': 1,\n",
      "          'nice': 1,\n",
      "          'many': 1,\n",
      "          'dull': 1,\n",
      "          'subplots': 1,\n",
      "          'characters': 1,\n",
      "          'hard': 1,\n",
      "          'follow': 1,\n",
      "          'nralph': 1,\n",
      "          'strange': 1,\n",
      "          'days': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'gives': 1,\n",
      "          'gripping': 1,\n",
      "          'performance': 1,\n",
      "          'count': 1,\n",
      "          'laszlo': 1,\n",
      "          'victim': 1,\n",
      "          'amnesia': 1,\n",
      "          'horrible': 1,\n",
      "          'burns': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'ii': 1,\n",
      "          'italy': 1,\n",
      "          'story': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'past': 1,\n",
      "          'flashback': 1,\n",
      "          'form': 1,\n",
      "          'making': 1,\n",
      "          'even': 1,\n",
      "          'confusing': 1,\n",
      "          'nanyway': 1,\n",
      "          'taken': 1,\n",
      "          'hana': 1,\n",
      "          'juliette': 1,\n",
      "          'binoche': 1,\n",
      "          'horseman': 1,\n",
      "          'roof': 1,\n",
      "          'wartorn': 1,\n",
      "          'nurse': 1,\n",
      "          'nshe': 1,\n",
      "          'never': 1,\n",
      "          'really': 1,\n",
      "          'anything': 1,\n",
      "          'met': 1,\n",
      "          'indian': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'developing': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'subplot': 1,\n",
      "          'ncount': 1,\n",
      "          'begins': 1,\n",
      "          'remember': 1,\n",
      "          'happened': 1,\n",
      "          'explained': 1,\n",
      "          'stranger': 1,\n",
      "          'willem': 1,\n",
      "          'basquiat': 1,\n",
      "          'nhis': 1,\n",
      "          'love': 1,\n",
      "          'kirstin': 1,\n",
      "          'scott': 1,\n",
      "          'thomas': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'severely': 1,\n",
      "          'injured': 1,\n",
      "          'plane': 1,\n",
      "          'crash': 1,\n",
      "          'eventually': 1,\n",
      "          'died': 1,\n",
      "          'cave': 1,\n",
      "          'nhe': 1,\n",
      "          'returned': 1,\n",
      "          'find': 1,\n",
      "          'heartbroken': 1,\n",
      "          'nso': 1,\n",
      "          'flew': 1,\n",
      "          'body': 1,\n",
      "          'somewhere': 1,\n",
      "          'shot': 1,\n",
      "          'ground': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'idea': 1,\n",
      "          'sound': 1,\n",
      "          'trailer': 1,\n",
      "          'tempting': 1,\n",
      "          'last': 1,\n",
      "          'thing': 1,\n",
      "          'nmaybe': 1,\n",
      "          'hour': 1,\n",
      "          'less': 1,\n",
      "          'tolerable': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          '40': 1,\n",
      "          'minutes': 1,\n",
      "          'talking': 1,\n",
      "          'handle': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'fine': 1,\n",
      "          'beautiful': 1,\n",
      "          'desert': 1,\n",
      "          'nother': 1,\n",
      "          'full': 1,\n",
      "          'worthless': 1,\n",
      "          'scenes': 1,\n",
      "          'boredom': 1,\n",
      "          'wastes': 1,\n",
      "          'entirely': 1,\n",
      "          'n': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nhe': 4,\n",
      "          'nthe': 4,\n",
      "          'limey': 3,\n",
      "          'plot': 3,\n",
      "          'first': 3,\n",
      "          'like': 3,\n",
      "          'story': 3,\n",
      "          'doesnt': 3,\n",
      "          'much': 3,\n",
      "          'valentine': 3,\n",
      "          'nhes': 3,\n",
      "          'way': 3,\n",
      "          'movies': 3,\n",
      "          'tell': 3,\n",
      "          'always': 3,\n",
      "          'dont': 3,\n",
      "          'act': 3,\n",
      "          'sight': 2,\n",
      "          'director': 2,\n",
      "          'us': 2,\n",
      "          'thriller': 2,\n",
      "          'may': 2,\n",
      "          'pulp': 2,\n",
      "          'fiction': 2,\n",
      "          'fashion': 2,\n",
      "          'wilson': 2,\n",
      "          'terrence': 2,\n",
      "          'stamp': 2,\n",
      "          'death': 2,\n",
      "          'know': 2,\n",
      "          'fonda': 2,\n",
      "          'valentines': 2,\n",
      "          'place': 2,\n",
      "          'ni': 2,\n",
      "          'time': 2,\n",
      "          'told': 2,\n",
      "          'traditional': 2,\n",
      "          'nthis': 2,\n",
      "          'film': 2,\n",
      "          'action': 2,\n",
      "          'work': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'steven': 1,\n",
      "          'sorderbergh': 1,\n",
      "          'baffles': 1,\n",
      "          'hell': 1,\n",
      "          'cold': 1,\n",
      "          'uninvolving': 1,\n",
      "          'confusing': 1,\n",
      "          'new': 1,\n",
      "          'nthough': 1,\n",
      "          'description': 1,\n",
      "          'seem': 1,\n",
      "          'came': 1,\n",
      "          'pen': 1,\n",
      "          'elmore': 1,\n",
      "          'leonard': 1,\n",
      "          'author': 1,\n",
      "          'well': 1,\n",
      "          'jackie': 1,\n",
      "          'brown': 1,\n",
      "          'get': 1,\n",
      "          'shorty': 1,\n",
      "          'watch': 1,\n",
      "          'realize': 1,\n",
      "          'nearly': 1,\n",
      "          'good': 1,\n",
      "          'enough': 1,\n",
      "          'nin': 1,\n",
      "          'aggressively': 1,\n",
      "          'nonlinear': 1,\n",
      "          'li': 1,\n",
      "          'mey': 1,\n",
      "          'noun': 1,\n",
      "          'english': 1,\n",
      "          'gentleman': 1,\n",
      "          'tells': 1,\n",
      "          'british': 1,\n",
      "          'excon': 1,\n",
      "          'released': 1,\n",
      "          '9': 1,\n",
      "          'year': 1,\n",
      "          'stint': 1,\n",
      "          'prison': 1,\n",
      "          'armed': 1,\n",
      "          'robbery': 1,\n",
      "          'come': 1,\n",
      "          'seek': 1,\n",
      "          'vengeance': 1,\n",
      "          'daughter': 1,\n",
      "          'jenny': 1,\n",
      "          'circumstances': 1,\n",
      "          'demise': 1,\n",
      "          'name': 1,\n",
      "          'terry': 1,\n",
      "          'nvalentine': 1,\n",
      "          'jennys': 1,\n",
      "          'former': 1,\n",
      "          'boyfriend': 1,\n",
      "          'wealthy': 1,\n",
      "          'corrupt': 1,\n",
      "          'record': 1,\n",
      "          'executive': 1,\n",
      "          'played': 1,\n",
      "          'peter': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'since': 1,\n",
      "          'terrific': 1,\n",
      "          'ulees': 1,\n",
      "          'gold': 1,\n",
      "          '1997': 1,\n",
      "          'nseeking': 1,\n",
      "          'reclusive': 1,\n",
      "          'residence': 1,\n",
      "          'turns': 1,\n",
      "          'easy': 1,\n",
      "          'task': 1,\n",
      "          'finally': 1,\n",
      "          'finds': 1,\n",
      "          'impressive': 1,\n",
      "          'abode': 1,\n",
      "          'high': 1,\n",
      "          'mountains': 1,\n",
      "          'sneaks': 1,\n",
      "          'big': 1,\n",
      "          'party': 1,\n",
      "          'winds': 1,\n",
      "          'breaking': 1,\n",
      "          'cover': 1,\n",
      "          'eventually': 1,\n",
      "          'setting': 1,\n",
      "          'head': 1,\n",
      "          'security': 1,\n",
      "          'decides': 1,\n",
      "          'run': 1,\n",
      "          'nwhat': 1,\n",
      "          'mess': 1,\n",
      "          'problem': 1,\n",
      "          'films': 1,\n",
      "          'refuse': 1,\n",
      "          'constricted': 1,\n",
      "          'linearity': 1,\n",
      "          'twisted': 1,\n",
      "          'every': 1,\n",
      "          'masterpiece': 1,\n",
      "          'take': 1,\n",
      "          'exception': 1,\n",
      "          'decide': 1,\n",
      "          'play': 1,\n",
      "          'around': 1,\n",
      "          'reason': 1,\n",
      "          'confuse': 1,\n",
      "          'viewer': 1,\n",
      "          'exactly': 1,\n",
      "          'permeated': 1,\n",
      "          'flashbacks': 1,\n",
      "          'flashforwards': 1,\n",
      "          'described': 1,\n",
      "          'random': 1,\n",
      "          'timetravel': 1,\n",
      "          'without': 1,\n",
      "          'evident': 1,\n",
      "          'purpose': 1,\n",
      "          'nthere': 1,\n",
      "          'method': 1,\n",
      "          'madness': 1,\n",
      "          'nit': 1,\n",
      "          'uses': 1,\n",
      "          'fancy': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'conventionally': 1,\n",
      "          'comprehendably': 1,\n",
      "          'isnt': 1,\n",
      "          'particularly': 1,\n",
      "          'interesting': 1,\n",
      "          'mildly': 1,\n",
      "          'hackneyed': 1,\n",
      "          'involving': 1,\n",
      "          'sort': 1,\n",
      "          'brooding': 1,\n",
      "          'protagonist': 1,\n",
      "          'speak': 1,\n",
      "          'sequences': 1,\n",
      "          'done': 1,\n",
      "          'annoyingly': 1,\n",
      "          'perfunctory': 1,\n",
      "          'attitude': 1,\n",
      "          'felt': 1,\n",
      "          'wasnt': 1,\n",
      "          'interested': 1,\n",
      "          'proceedings': 1,\n",
      "          'almost': 1,\n",
      "          'made': 1,\n",
      "          'paycheck': 1,\n",
      "          'nditto': 1,\n",
      "          'editing': 1,\n",
      "          'seems': 1,\n",
      "          'deliberately': 1,\n",
      "          'sloppy': 1,\n",
      "          'unpleasant': 1,\n",
      "          'nsixties': 1,\n",
      "          'icon': 1,\n",
      "          'manages': 1,\n",
      "          'least': 1,\n",
      "          'menacing': 1,\n",
      "          'aging': 1,\n",
      "          'criminal': 1,\n",
      "          'stature': 1,\n",
      "          'surprisingly': 1,\n",
      "          'imposing': 1,\n",
      "          'physical': 1,\n",
      "          'presence': 1,\n",
      "          'works': 1,\n",
      "          'advantage': 1,\n",
      "          'npeter': 1,\n",
      "          'unbelievably': 1,\n",
      "          'underrated': 1,\n",
      "          'actor': 1,\n",
      "          'hes': 1,\n",
      "          'shy': 1,\n",
      "          'quiet': 1,\n",
      "          'effective': 1,\n",
      "          'adept': 1,\n",
      "          'conveying': 1,\n",
      "          'emotions': 1,\n",
      "          'speech': 1,\n",
      "          'rather': 1,\n",
      "          'expression': 1,\n",
      "          'feelings': 1,\n",
      "          'show': 1,\n",
      "          'face': 1,\n",
      "          'basically': 1,\n",
      "          'conventional': 1,\n",
      "          'pretentiously': 1,\n",
      "          'bizarre': 1,\n",
      "          'nwhy': 1,\n",
      "          'soderbergh': 1,\n",
      "          'couldnt': 1,\n",
      "          'parrot': 1,\n",
      "          'certainly': 1,\n",
      "          'result': 1,\n",
      "          'wild': 1,\n",
      "          'cornucopia': 1,\n",
      "          'images': 1,\n",
      "          'amount': 1,\n",
      "          'precisely': 1,\n",
      "          'nil': 1,\n",
      "          'even': 1,\n",
      "          'scenes': 1,\n",
      "          'n1999': 1,\n",
      "          'signified': 1,\n",
      "          'one': 1,\n",
      "          'two': 1,\n",
      "          'three': 1,\n",
      "          'storyline': 1,\n",
      "          'obviously': 1,\n",
      "          'yet': 1,\n",
      "          'transcended': 1,\n",
      "          'nshall': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'basics': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'lucy': 6,\n",
      "          'art': 4,\n",
      "          'syd': 4,\n",
      "          'scene': 4,\n",
      "          'world': 3,\n",
      "          'nin': 3,\n",
      "          'movie': 3,\n",
      "          'nthis': 3,\n",
      "          'picture': 3,\n",
      "          'since': 3,\n",
      "          'nlucy': 3,\n",
      "          'becomes': 3,\n",
      "          'pseudointellectual': 2,\n",
      "          'high': 2,\n",
      "          'part': 2,\n",
      "          'ally': 2,\n",
      "          'sheedy': 2,\n",
      "          'radha': 2,\n",
      "          'mitchell': 2,\n",
      "          'two': 2,\n",
      "          'heroin': 2,\n",
      "          'receptionist': 2,\n",
      "          'line': 2,\n",
      "          'promoted': 2,\n",
      "          'editor': 2,\n",
      "          'magazine': 2,\n",
      "          'frame': 2,\n",
      "          'lives': 2,\n",
      "          'drugs': 2,\n",
      "          'mother': 2,\n",
      "          'work': 2,\n",
      "          'one': 2,\n",
      "          'sex': 2,\n",
      "          'drug': 2,\n",
      "          'film': 1,\n",
      "          'magazines': 1,\n",
      "          'wasted': 1,\n",
      "          'drugaddled': 1,\n",
      "          'protagonists': 1,\n",
      "          'notable': 1,\n",
      "          'deliver': 1,\n",
      "          'nice': 1,\n",
      "          'performances': 1,\n",
      "          'leading': 1,\n",
      "          'roles': 1,\n",
      "          'lisa': 1,\n",
      "          'cholodenkos': 1,\n",
      "          'script': 1,\n",
      "          'direction': 1,\n",
      "          'makes': 1,\n",
      "          'care': 1,\n",
      "          'much': 1,\n",
      "          'either': 1,\n",
      "          'character': 1,\n",
      "          'nliving': 1,\n",
      "          'induced': 1,\n",
      "          'highs': 1,\n",
      "          'float': 1,\n",
      "          'along': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'uninviting': 1,\n",
      "          'full': 1,\n",
      "          'pretentious': 1,\n",
      "          'minor': 1,\n",
      "          'characters': 1,\n",
      "          'reads': 1,\n",
      "          'dostoevski': 1,\n",
      "          'woman': 1,\n",
      "          'restroom': 1,\n",
      "          'certified': 1,\n",
      "          'genius': 1,\n",
      "          'recently': 1,\n",
      "          'awarded': 1,\n",
      "          'prestigious': 1,\n",
      "          'mcarthur': 1,\n",
      "          'grant': 1,\n",
      "          'n24yearold': 1,\n",
      "          'rather': 1,\n",
      "          'bland': 1,\n",
      "          'livein': 1,\n",
      "          'boyfriend': 1,\n",
      "          'assistant': 1,\n",
      "          'artistic': 1,\n",
      "          'photography': 1,\n",
      "          'nalthough': 1,\n",
      "          'impressed': 1,\n",
      "          'mainly': 1,\n",
      "          'gofer': 1,\n",
      "          'boss': 1,\n",
      "          'meets': 1,\n",
      "          'famous': 1,\n",
      "          'photographer': 1,\n",
      "          'berliner': 1,\n",
      "          'nfor': 1,\n",
      "          'photos': 1,\n",
      "          'demands': 1,\n",
      "          'assigned': 1,\n",
      "          'fancies': 1,\n",
      "          'current': 1,\n",
      "          'lover': 1,\n",
      "          'washed': 1,\n",
      "          'german': 1,\n",
      "          'actress': 1,\n",
      "          'named': 1,\n",
      "          'greta': 1,\n",
      "          'played': 1,\n",
      "          'frequently': 1,\n",
      "          'indecipherable': 1,\n",
      "          'series': 1,\n",
      "          'mumbles': 1,\n",
      "          'patricia': 1,\n",
      "          'clarkson': 1,\n",
      "          'nthe': 1,\n",
      "          'friends': 1,\n",
      "          'wile': 1,\n",
      "          'away': 1,\n",
      "          'time': 1,\n",
      "          'snorting': 1,\n",
      "          'shooting': 1,\n",
      "          'dope': 1,\n",
      "          'usually': 1,\n",
      "          'happen': 1,\n",
      "          'single': 1,\n",
      "          'episode': 1,\n",
      "          'commonplace': 1,\n",
      "          'sleeping': 1,\n",
      "          'nsyd': 1,\n",
      "          'apartment': 1,\n",
      "          'joins': 1,\n",
      "          'fun': 1,\n",
      "          'member': 1,\n",
      "          'zombie': 1,\n",
      "          'club': 1,\n",
      "          'seems': 1,\n",
      "          'pretty': 1,\n",
      "          'happy': 1,\n",
      "          'life': 1,\n",
      "          'apparently': 1,\n",
      "          'funded': 1,\n",
      "          'quit': 1,\n",
      "          'working': 1,\n",
      "          'professionally': 1,\n",
      "          '10': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'thought': 1,\n",
      "          'pigeonholed': 1,\n",
      "          'money': 1,\n",
      "          'assume': 1,\n",
      "          'thats': 1,\n",
      "          'supports': 1,\n",
      "          'habit': 1,\n",
      "          'procures': 1,\n",
      "          'living': 1,\n",
      "          'expenses': 1,\n",
      "          'na': 1,\n",
      "          'typical': 1,\n",
      "          'editors': 1,\n",
      "          'arguing': 1,\n",
      "          'whether': 1,\n",
      "          'potential': 1,\n",
      "          'photographers': 1,\n",
      "          'transcendental': 1,\n",
      "          'merely': 1,\n",
      "          'classical': 1,\n",
      "          'nthat': 1,\n",
      "          'clue': 1,\n",
      "          'dogma': 1,\n",
      "          'spouting': 1,\n",
      "          'obvious': 1,\n",
      "          'particularly': 1,\n",
      "          'funny': 1,\n",
      "          'n': 1,\n",
      "          'cultural': 1,\n",
      "          'currency': 1,\n",
      "          'important': 1,\n",
      "          'artistspeak': 1,\n",
      "          'frames': 1,\n",
      "          'manager': 1,\n",
      "          'uses': 1,\n",
      "          'convince': 1,\n",
      "          'show': 1,\n",
      "          'pictures': 1,\n",
      "          'nwhen': 1,\n",
      "          'big': 1,\n",
      "          'comes': 1,\n",
      "          'puts': 1,\n",
      "          'moves': 1,\n",
      "          'idea': 1,\n",
      "          'romantic': 1,\n",
      "          'want': 1,\n",
      "          'get': 1,\n",
      "          'lucys': 1,\n",
      "          'come': 1,\n",
      "          'handinhand': 1,\n",
      "          'nand': 1,\n",
      "          'except': 1,\n",
      "          'obligatory': 1,\n",
      "          'someone': 1,\n",
      "          'almost': 1,\n",
      "          'overdosing': 1,\n",
      "          'shows': 1,\n",
      "          'usage': 1,\n",
      "          'hip': 1,\n",
      "          'natural': 1,\n",
      "          'vacuous': 1,\n",
      "          'throws': 1,\n",
      "          'standard': 1,\n",
      "          'downer': 1,\n",
      "          'ending': 1,\n",
      "          'attempt': 1,\n",
      "          'manipulate': 1,\n",
      "          'emotions': 1,\n",
      "          'another': 1,\n",
      "          'might': 1,\n",
      "          'worked': 1,\n",
      "          'reaction': 1,\n",
      "          'likely': 1,\n",
      "          'decidedly': 1,\n",
      "          'muted': 1,\n",
      "          'nhigh': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '36': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'explicit': 1,\n",
      "          'pervasive': 1,\n",
      "          'use': 1,\n",
      "          'language': 1,\n",
      "          'appropriate': 1,\n",
      "          'younger': 1,\n",
      "          'college': 1,\n",
      "          'age': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'camp': 6,\n",
      "          'least': 5,\n",
      "          'party': 3,\n",
      "          'film': 3,\n",
      "          'could': 3,\n",
      "          'done': 3,\n",
      "          'seen': 2,\n",
      "          'nothing': 2,\n",
      "          'fun': 2,\n",
      "          'would': 2,\n",
      "          'comedy': 2,\n",
      "          'shepard': 2,\n",
      "          'one': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'brainless': 1,\n",
      "          'comedies': 1,\n",
      "          'ive': 1,\n",
      "          'awhile': 1,\n",
      "          'na': 1,\n",
      "          'late': 1,\n",
      "          'ripoff': 1,\n",
      "          'meatballs': 1,\n",
      "          'series': 1,\n",
      "          'follows': 1,\n",
      "          'group': 1,\n",
      "          'young': 1,\n",
      "          'counselors': 1,\n",
      "          'chipmunk': 1,\n",
      "          'nthats': 1,\n",
      "          'really': 1,\n",
      "          'said': 1,\n",
      "          'plot': 1,\n",
      "          'much': 1,\n",
      "          'happens': 1,\n",
      "          'except': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'wisecracking': 1,\n",
      "          'jerry': 1,\n",
      "          'andrew': 1,\n",
      "          'ross': 1,\n",
      "          'hots': 1,\n",
      "          'cute': 1,\n",
      "          'blonde': 1,\n",
      "          'kerry': 1,\n",
      "          'brennan': 1,\n",
      "          'big': 1,\n",
      "          'contest': 1,\n",
      "          'climax': 1,\n",
      "          'nhow': 1,\n",
      "          'nsince': 1,\n",
      "          'practically': 1,\n",
      "          'screenplay': 1,\n",
      "          'talent': 1,\n",
      "          'involved': 1,\n",
      "          'makers': 1,\n",
      "          'make': 1,\n",
      "          'raunchy': 1,\n",
      "          'exploitative': 1,\n",
      "          'nits': 1,\n",
      "          'think': 1,\n",
      "          'exploitation': 1,\n",
      "          'necessarily': 1,\n",
      "          'good': 1,\n",
      "          'quality': 1,\n",
      "          'talking': 1,\n",
      "          'dull': 1,\n",
      "          'turkey': 1,\n",
      "          'like': 1,\n",
      "          'fill': 1,\n",
      "          'lot': 1,\n",
      "          'mindless': 1,\n",
      "          'sex': 1,\n",
      "          'neven': 1,\n",
      "          'psychopathic': 1,\n",
      "          'slasher': 1,\n",
      "          'trick': 1,\n",
      "          'nat': 1,\n",
      "          'wouldnt': 1,\n",
      "          'chore': 1,\n",
      "          'sit': 1,\n",
      "          'nnever': 1,\n",
      "          'many': 1,\n",
      "          'jokes': 1,\n",
      "          'fall': 1,\n",
      "          'astoundingly': 1,\n",
      "          'flat': 1,\n",
      "          'nthe': 1,\n",
      "          'easy': 1,\n",
      "          'spot': 1,\n",
      "          'wasnt': 1,\n",
      "          'bit': 1,\n",
      "          'funny': 1,\n",
      "          'nit': 1,\n",
      "          'groaninducing': 1,\n",
      "          'nconstantly': 1,\n",
      "          'throghout': 1,\n",
      "          'asking': 1,\n",
      "          'director': 1,\n",
      "          'gary': 1,\n",
      "          'graver': 1,\n",
      "          'actually': 1,\n",
      "          'thought': 1,\n",
      "          'movie': 1,\n",
      "          'worth': 1,\n",
      "          'anything': 1,\n",
      "          'nso': 1,\n",
      "          'saves': 1,\n",
      "          'dreaded': 1,\n",
      "          'zero': 1,\n",
      "          'star': 1,\n",
      "          'rating': 1,\n",
      "          'nwell': 1,\n",
      "          'thats': 1,\n",
      "          'simple': 1,\n",
      "          'jewel': 1,\n",
      "          'flighty': 1,\n",
      "          'bimbo': 1,\n",
      "          'admittedly': 1,\n",
      "          'watch': 1,\n",
      "          'nalthough': 1,\n",
      "          'saved': 1,\n",
      "          'lowest': 1,\n",
      "          'depths': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'trash': 1,\n",
      "          'centered': 1,\n",
      "          'might': 1,\n",
      "          'able': 1,\n",
      "          'add': 1,\n",
      "          'little': 1,\n",
      "          'spice': 1,\n",
      "          'otherwise': 1,\n",
      "          'rancid': 1,\n",
      "          'lowbudget': 1,\n",
      "          'teen': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'drews': 4,\n",
      "          'nin': 3,\n",
      "          'character': 3,\n",
      "          'except': 3,\n",
      "          'story': 3,\n",
      "          'school': 3,\n",
      "          'popular': 3,\n",
      "          'film': 3,\n",
      "          'hand': 3,\n",
      "          'im': 2,\n",
      "          'names': 2,\n",
      "          'barrymore': 2,\n",
      "          'characters': 2,\n",
      "          '_the': 2,\n",
      "          'shes': 2,\n",
      "          'works': 2,\n",
      "          'day': 2,\n",
      "          'ndrew': 2,\n",
      "          'big': 2,\n",
      "          'really': 2,\n",
      "          'nshe': 2,\n",
      "          'going': 2,\n",
      "          'first': 2,\n",
      "          'nwhen': 2,\n",
      "          'wrong': 2,\n",
      "          'know': 2,\n",
      "          'kids': 2,\n",
      "          'least': 2,\n",
      "          'nerdy': 2,\n",
      "          'beautiful': 2,\n",
      "          'supposed': 2,\n",
      "          'nwhat': 2,\n",
      "          'geeky': 2,\n",
      "          'see': 2,\n",
      "          'bad': 2,\n",
      "          'funny': 2,\n",
      "          'ncouldnt': 2,\n",
      "          'would': 2,\n",
      "          'nher': 2,\n",
      "          'stamped': 2,\n",
      "          'night': 2,\n",
      "          'without': 2,\n",
      "          'transferred': 2,\n",
      "          'image': 2,\n",
      "          'currently': 1,\n",
      "          'accepting': 1,\n",
      "          'future': 1,\n",
      "          'drew': 1,\n",
      "          'wedding': 1,\n",
      "          'singer_': 1,\n",
      "          'julia': 1,\n",
      "          'gulia': 1,\n",
      "          '_never': 1,\n",
      "          'kissed_': 1,\n",
      "          'josie': 1,\n",
      "          'grossie': 1,\n",
      "          'nfuture': 1,\n",
      "          'db': 1,\n",
      "          'include': 1,\n",
      "          'janet': 1,\n",
      "          'granite': 1,\n",
      "          'janey': 1,\n",
      "          'grainy': 1,\n",
      "          'nc17': 1,\n",
      "          'project': 1,\n",
      "          'jojo': 1,\n",
      "          'naw': 1,\n",
      "          'forget': 1,\n",
      "          'nill': 1,\n",
      "          'stick': 1,\n",
      "          'job': 1,\n",
      "          'nthis': 1,\n",
      "          'teen': 1,\n",
      "          'movie': 1,\n",
      "          'right': 1,\n",
      "          'main': 1,\n",
      "          'arent': 1,\n",
      "          'teens': 1,\n",
      "          'copy': 1,\n",
      "          'editor': 1,\n",
      "          'chicago': 1,\n",
      "          'sun': 1,\n",
      "          'times': 1,\n",
      "          'gets': 1,\n",
      "          'break': 1,\n",
      "          'reporter': 1,\n",
      "          'clear': 1,\n",
      "          'onset': 1,\n",
      "          'lacks': 1,\n",
      "          'toughness': 1,\n",
      "          'pushy': 1,\n",
      "          'extravertedness': 1,\n",
      "          'marks': 1,\n",
      "          'best': 1,\n",
      "          'reporters': 1,\n",
      "          'covering': 1,\n",
      "          'making': 1,\n",
      "          'return': 1,\n",
      "          'high': 1,\n",
      "          'student': 1,\n",
      "          'explain': 1,\n",
      "          'whats': 1,\n",
      "          'irony': 1,\n",
      "          'dweeb': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'terrified': 1,\n",
      "          'back': 1,\n",
      "          'says': 1,\n",
      "          'things': 1,\n",
      "          'wears': 1,\n",
      "          'clothes': 1,\n",
      "          'projects': 1,\n",
      "          'answer': 1,\n",
      "          'class': 1,\n",
      "          'movies': 1,\n",
      "          'reject': 1,\n",
      "          'nat': 1,\n",
      "          'befriends': 1,\n",
      "          'aldys': 1,\n",
      "          'joan': 1,\n",
      "          'arcs': 1,\n",
      "          'leelee': 1,\n",
      "          'sobieskiwatch': 1,\n",
      "          'turns': 1,\n",
      "          'oldself': 1,\n",
      "          'nafter': 1,\n",
      "          'start': 1,\n",
      "          'films': 1,\n",
      "          'headline': 1,\n",
      "          'driven': 1,\n",
      "          'nadir': 1,\n",
      "          'roles': 1,\n",
      "          'play': 1,\n",
      "          'sluttish': 1,\n",
      "          'surprise': 1,\n",
      "          'hair': 1,\n",
      "          'glasses': 1,\n",
      "          'braces': 1,\n",
      "          'nits': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'newself': 1,\n",
      "          'ncome': 1,\n",
      "          'nnobody': 1,\n",
      "          'dresses': 1,\n",
      "          'go': 1,\n",
      "          'gap_': 1,\n",
      "          'take': 1,\n",
      "          'suggestions': 1,\n",
      "          'nhad': 1,\n",
      "          'dressed': 1,\n",
      "          'like': 1,\n",
      "          'princess': 1,\n",
      "          'leia': 1,\n",
      "          'better': 1,\n",
      "          'comedy': 1,\n",
      "          'progress': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'played': 1,\n",
      "          'zest': 1,\n",
      "          'david': 1,\n",
      "          'arquette': 1,\n",
      "          'reenlists': 1,\n",
      "          'jumpstart': 1,\n",
      "          'baseball': 1,\n",
      "          'career': 1,\n",
      "          'nnow': 1,\n",
      "          'world': 1,\n",
      "          'somebody': 1,\n",
      "          'way': 1,\n",
      "          'kid': 1,\n",
      "          'dialogue': 1,\n",
      "          'well': 1,\n",
      "          'embarrassment': 1,\n",
      "          'coworkers': 1,\n",
      "          'molly': 1,\n",
      "          'shannon': 1,\n",
      "          'john': 1,\n",
      "          'c': 1,\n",
      "          'reilly': 1,\n",
      "          'gary': 1,\n",
      "          'marshall': 1,\n",
      "          'terminal': 1,\n",
      "          'hyperdrive': 1,\n",
      "          'teenage': 1,\n",
      "          'peers': 1,\n",
      "          'sobieski': 1,\n",
      "          'inept': 1,\n",
      "          'stupid': 1,\n",
      "          'theres': 1,\n",
      "          'little': 1,\n",
      "          'bite': 1,\n",
      "          'filmmakers': 1,\n",
      "          'watch': 1,\n",
      "          '_heathers_': 1,\n",
      "          'nlastly': 1,\n",
      "          'proud': 1,\n",
      "          'say': 1,\n",
      "          'caught': 1,\n",
      "          'significant': 1,\n",
      "          'gaffe': 1,\n",
      "          'nif': 1,\n",
      "          'youd': 1,\n",
      "          'talking': 1,\n",
      "          'walks': 1,\n",
      "          'bar': 1,\n",
      "          'associates': 1,\n",
      "          'rastafarians': 1,\n",
      "          'delicious': 1,\n",
      "          'um': 1,\n",
      "          'cake': 1,\n",
      "          'goes': 1,\n",
      "          'wild': 1,\n",
      "          'sleeps': 1,\n",
      "          'late': 1,\n",
      "          'wakes': 1,\n",
      "          'rushes': 1,\n",
      "          'showering': 1,\n",
      "          'noticing': 1,\n",
      "          'head': 1,\n",
      "          'lying': 1,\n",
      "          'part': 1,\n",
      "          'stamps': 1,\n",
      "          'forehead': 1,\n",
      "          'spelling': 1,\n",
      "          'loser': 1,\n",
      "          'nfunny': 1,\n",
      "          'eh': 1,\n",
      "          'n': 1,\n",
      "          'backwords': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'girls': 4,\n",
      "          'jennifer': 4,\n",
      "          'n': 4,\n",
      "          'dumb': 4,\n",
      "          'week': 3,\n",
      "          'boys': 3,\n",
      "          'nnegative': 3,\n",
      "          'shes': 3,\n",
      "          'prinze': 3,\n",
      "          'nbut': 3,\n",
      "          'ryan': 3,\n",
      "          'nthe': 3,\n",
      "          'negative': 2,\n",
      "          'reviews': 2,\n",
      "          'three': 2,\n",
      "          'adjectives': 2,\n",
      "          'last': 2,\n",
      "          'couple': 2,\n",
      "          'years': 2,\n",
      "          'really': 2,\n",
      "          'entertainment': 2,\n",
      "          'nis': 2,\n",
      "          'nthis': 2,\n",
      "          'final': 2,\n",
      "          'destination': 2,\n",
      "          'road': 2,\n",
      "          'trip': 2,\n",
      "          'time': 2,\n",
      "          'new': 2,\n",
      "          'times': 2,\n",
      "          'got': 2,\n",
      "          'get': 2,\n",
      "          'actor': 2,\n",
      "          'jr': 2,\n",
      "          'two': 2,\n",
      "          'seen': 2,\n",
      "          'ni': 2,\n",
      "          'found': 2,\n",
      "          'named': 2,\n",
      "          'forlani': 2,\n",
      "          'friends': 2,\n",
      "          'biggs': 2,\n",
      "          'boring': 2,\n",
      "          'anything': 2,\n",
      "          'comes': 1,\n",
      "          'average': 1,\n",
      "          'teenage': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'expect': 1,\n",
      "          'critics': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'npredictable': 1,\n",
      "          'unoriginal': 1,\n",
      "          'forgettable': 1,\n",
      "          'likely': 1,\n",
      "          'haunt': 1,\n",
      "          'yous': 1,\n",
      "          'drive': 1,\n",
      "          'crazys': 1,\n",
      "          'released': 1,\n",
      "          'dozens': 1,\n",
      "          'nwhat': 1,\n",
      "          'look': 1,\n",
      "          'kind': 1,\n",
      "          'value': 1,\n",
      "          'im': 1,\n",
      "          'sitting': 1,\n",
      "          'theater': 1,\n",
      "          'nam': 1,\n",
      "          'enjoying': 1,\n",
      "          'comfortable': 1,\n",
      "          'break': 1,\n",
      "          'finals': 1,\n",
      "          'given': 1,\n",
      "          'films': 1,\n",
      "          'like': 1,\n",
      "          'high': 1,\n",
      "          'marks': 1,\n",
      "          'party': 1,\n",
      "          'wasting': 1,\n",
      "          'money': 1,\n",
      "          'something': 1,\n",
      "          'wont': 1,\n",
      "          'remember': 1,\n",
      "          'next': 1,\n",
      "          'nso': 1,\n",
      "          'opened': 1,\n",
      "          'york': 1,\n",
      "          'surprise': 1,\n",
      "          'review': 1,\n",
      "          'ndaily': 1,\n",
      "          'news': 1,\n",
      "          'nreelviews': 1,\n",
      "          'nepinions': 1,\n",
      "          'com': 1,\n",
      "          'nothing': 1,\n",
      "          'namerican': 1,\n",
      "          'pie': 1,\n",
      "          'didnt': 1,\n",
      "          'hot': 1,\n",
      "          'loved': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasures': 1,\n",
      "          'nsame': 1,\n",
      "          'goes': 1,\n",
      "          'formulaic': 1,\n",
      "          'enjoyable': 1,\n",
      "          'pygmalion': 1,\n",
      "          'adaptation': 1,\n",
      "          'unjustly': 1,\n",
      "          'pounded': 1,\n",
      "          'nsince': 1,\n",
      "          'reunites': 1,\n",
      "          'director': 1,\n",
      "          'robert': 1,\n",
      "          'iscove': 1,\n",
      "          'freddie': 1,\n",
      "          'predicted': 1,\n",
      "          'j': 1,\n",
      "          'vu': 1,\n",
      "          'al': 1,\n",
      "          'still': 1,\n",
      "          'curious': 1,\n",
      "          'asked': 1,\n",
      "          'around': 1,\n",
      "          'school': 1,\n",
      "          'one': 1,\n",
      "          'people': 1,\n",
      "          'reactions': 1,\n",
      "          'far': 1,\n",
      "          'positive': 1,\n",
      "          'made': 1,\n",
      "          'mind': 1,\n",
      "          'ill': 1,\n",
      "          'catch': 1,\n",
      "          'video': 1,\n",
      "          'cable': 1,\n",
      "          'soon': 1,\n",
      "          'following': 1,\n",
      "          'series': 1,\n",
      "          'unexpected': 1,\n",
      "          'events': 1,\n",
      "          'couldnt': 1,\n",
      "          'shaft': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'watching': 1,\n",
      "          'nwhoops': 1,\n",
      "          'nboys': 1,\n",
      "          'nerdy': 1,\n",
      "          'smart': 1,\n",
      "          'boy': 1,\n",
      "          'popular': 1,\n",
      "          'flirt': 1,\n",
      "          'girl': 1,\n",
      "          'claire': 1,\n",
      "          'nbriefly': 1,\n",
      "          'meeting': 1,\n",
      "          'preteens': 1,\n",
      "          'attending': 1,\n",
      "          'college': 1,\n",
      "          'bump': 1,\n",
      "          'many': 1,\n",
      "          'eventually': 1,\n",
      "          'become': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'male': 1,\n",
      "          'female': 1,\n",
      "          'without': 1,\n",
      "          'nagging': 1,\n",
      "          'feeling': 1,\n",
      "          'attraction': 1,\n",
      "          'nwith': 1,\n",
      "          'advice': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'roommates': 1,\n",
      "          'amanda': 1,\n",
      "          'detmer': 1,\n",
      "          'jason': 1,\n",
      "          'attempt': 1,\n",
      "          'discover': 1,\n",
      "          'true': 1,\n",
      "          'meaning': 1,\n",
      "          'relationship': 1,\n",
      "          'film': 1,\n",
      "          'definitely': 1,\n",
      "          'lives': 1,\n",
      "          'dreaded': 1,\n",
      "          'mindless': 1,\n",
      "          'nowhere': 1,\n",
      "          'could': 1,\n",
      "          'hardly': 1,\n",
      "          'sit': 1,\n",
      "          '93': 1,\n",
      "          'minute': 1,\n",
      "          'running': 1,\n",
      "          'several': 1,\n",
      "          'reasons': 1,\n",
      "          'dialogue': 1,\n",
      "          'probably': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'mainly': 1,\n",
      "          'whole': 1,\n",
      "          'depends': 1,\n",
      "          'script': 1,\n",
      "          'ridiculous': 1,\n",
      "          'words': 1,\n",
      "          'characters': 1,\n",
      "          'use': 1,\n",
      "          'hollywood': 1,\n",
      "          'thinks': 1,\n",
      "          'kids': 1,\n",
      "          'relate': 1,\n",
      "          'nit': 1,\n",
      "          'almost': 1,\n",
      "          'offensive': 1,\n",
      "          'nan': 1,\n",
      "          'example': 1,\n",
      "          'insightful': 1,\n",
      "          'conversation': 1,\n",
      "          'youre': 1,\n",
      "          'ndumb': 1,\n",
      "          'followed': 1,\n",
      "          'mandy': 1,\n",
      "          'mooreesque': 1,\n",
      "          'tune': 1,\n",
      "          'background': 1,\n",
      "          'well': 1,\n",
      "          'bad': 1,\n",
      "          'wing': 1,\n",
      "          'commander': 1,\n",
      "          'guess': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'also': 1,\n",
      "          'painfully': 1,\n",
      "          'useless': 1,\n",
      "          'ndetmer': 1,\n",
      "          'stand': 1,\n",
      "          'way': 1,\n",
      "          'interesting': 1,\n",
      "          'happen': 1,\n",
      "          'pointless': 1,\n",
      "          'subplots': 1,\n",
      "          'nand': 1,\n",
      "          'although': 1,\n",
      "          'supposed': 1,\n",
      "          'perspectives': 1,\n",
      "          'human': 1,\n",
      "          'sex': 1,\n",
      "          'jrs': 1,\n",
      "          'dominates': 1,\n",
      "          'screen': 1,\n",
      "          'forlanis': 1,\n",
      "          'simply': 1,\n",
      "          'acts': 1,\n",
      "          'dilemma': 1,\n",
      "          'work': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'learn': 1,\n",
      "          'shame': 1,\n",
      "          'bring': 1,\n",
      "          'life': 1,\n",
      "          'character': 1,\n",
      "          'nteenager': 1,\n",
      "          'youll': 1,\n",
      "          'hate': 1,\n",
      "          'guarantee': 1,\n",
      "          'nmaybe': 1,\n",
      "          'rent': 1,\n",
      "          'good': 1,\n",
      "          'think': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'rain': 8,\n",
      "          'movie': 6,\n",
      "          'nthe': 6,\n",
      "          'hard': 5,\n",
      "          'one': 5,\n",
      "          'disaster': 4,\n",
      "          'water': 4,\n",
      "          'flood': 3,\n",
      "          'films': 3,\n",
      "          'film': 3,\n",
      "          'lot': 3,\n",
      "          'characters': 3,\n",
      "          'initial': 2,\n",
      "          'pictures': 2,\n",
      "          'would': 2,\n",
      "          'year': 2,\n",
      "          'name': 2,\n",
      "          'number': 2,\n",
      "          'nits': 2,\n",
      "          'nhard': 2,\n",
      "          'progressively': 2,\n",
      "          'best': 2,\n",
      "          'credits': 2,\n",
      "          'camera': 2,\n",
      "          'get': 2,\n",
      "          'shootouts': 2,\n",
      "          'ntheres': 2,\n",
      "          'real': 2,\n",
      "          'conclusion': 2,\n",
      "          'worth': 2,\n",
      "          'idiotic': 2,\n",
      "          'way': 2,\n",
      "          'far': 2,\n",
      "          'action': 2,\n",
      "          'us': 2,\n",
      "          'tom': 2,\n",
      "          'slater': 2,\n",
      "          'charlie': 2,\n",
      "          'freeman': 2,\n",
      "          'hides': 2,\n",
      "          'nas': 2,\n",
      "          'minnie': 2,\n",
      "          'driver': 2,\n",
      "          'quaid': 2,\n",
      "          'good': 2,\n",
      "          'production': 1,\n",
      "          'early': 1,\n",
      "          'days': 1,\n",
      "          'aborted': 1,\n",
      "          'prerelease': 1,\n",
      "          'publicity': 1,\n",
      "          'bore': 1,\n",
      "          'appropriate': 1,\n",
      "          'moniker': 1,\n",
      "          'nultimately': 1,\n",
      "          'however': 1,\n",
      "          'paramount': 1,\n",
      "          'nervous': 1,\n",
      "          'confused': 1,\n",
      "          '1996s': 1,\n",
      "          'underperforming': 1,\n",
      "          'dantes': 1,\n",
      "          'peak': 1,\n",
      "          'volcano': 1,\n",
      "          'changed': 1,\n",
      "          'title': 1,\n",
      "          'shifted': 1,\n",
      "          'release': 1,\n",
      "          'date': 1,\n",
      "          'nearly': 1,\n",
      "          'nbut': 1,\n",
      "          'paraphrase': 1,\n",
      "          'bard': 1,\n",
      "          'swill': 1,\n",
      "          'smell': 1,\n",
      "          'rank': 1,\n",
      "          'nno': 1,\n",
      "          'changes': 1,\n",
      "          'help': 1,\n",
      "          'picture': 1,\n",
      "          'case': 1,\n",
      "          'gets': 1,\n",
      "          'worse': 1,\n",
      "          'every': 1,\n",
      "          'passing': 1,\n",
      "          'minute': 1,\n",
      "          'shot': 1,\n",
      "          'occurs': 1,\n",
      "          'opening': 1,\n",
      "          'pans': 1,\n",
      "          'streets': 1,\n",
      "          'byways': 1,\n",
      "          'huntingburg': 1,\n",
      "          'indiana': 1,\n",
      "          'level': 1,\n",
      "          'slowly': 1,\n",
      "          'rises': 1,\n",
      "          'community': 1,\n",
      "          'protected': 1,\n",
      "          'overworked': 1,\n",
      "          'dam': 1,\n",
      "          'evacuated': 1,\n",
      "          'continues': 1,\n",
      "          'pour': 1,\n",
      "          'relentlessly': 1,\n",
      "          'cloudchoked': 1,\n",
      "          'skies': 1,\n",
      "          'nfrom': 1,\n",
      "          'moment': 1,\n",
      "          'downhill': 1,\n",
      "          'nwhatever': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'possesses': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'drained': 1,\n",
      "          'away': 1,\n",
      "          'halfway': 1,\n",
      "          'point': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'forever': 1,\n",
      "          'end': 1,\n",
      "          'longestseeming': 1,\n",
      "          '95minute': 1,\n",
      "          'motion': 1,\n",
      "          'recently': 1,\n",
      "          'endured': 1,\n",
      "          'nbasically': 1,\n",
      "          'extended': 1,\n",
      "          'dull': 1,\n",
      "          'chase': 1,\n",
      "          'sequence': 1,\n",
      "          'punctuated': 1,\n",
      "          'occasional': 1,\n",
      "          'broken': 1,\n",
      "          'glass': 1,\n",
      "          'gunfire': 1,\n",
      "          'explosions': 1,\n",
      "          'routine': 1,\n",
      "          'uninteresting': 1,\n",
      "          'arent': 1,\n",
      "          'plot': 1,\n",
      "          'occasionally': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'preposterous': 1,\n",
      "          'almost': 1,\n",
      "          'watching': 1,\n",
      "          'sheer': 1,\n",
      "          'masochistic': 1,\n",
      "          'enjoyment': 1,\n",
      "          'seeing': 1,\n",
      "          'monumentally': 1,\n",
      "          'makers': 1,\n",
      "          'decide': 1,\n",
      "          'resolve': 1,\n",
      "          'myriad': 1,\n",
      "          'subplots': 1,\n",
      "          'floating': 1,\n",
      "          'around': 1,\n",
      "          'naction': 1,\n",
      "          'supposed': 1,\n",
      "          'become': 1,\n",
      "          'invigorating': 1,\n",
      "          'rush': 1,\n",
      "          'towards': 1,\n",
      "          'ngraham': 1,\n",
      "          'yost': 1,\n",
      "          'writer': 1,\n",
      "          'speed': 1,\n",
      "          'surely': 1,\n",
      "          'understands': 1,\n",
      "          'principle': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'neither': 1,\n",
      "          'cinematographerturneddirector': 1,\n",
      "          'mikael': 1,\n",
      "          'salomon': 1,\n",
      "          'place': 1,\n",
      "          'applies': 1,\n",
      "          'grows': 1,\n",
      "          'tedious': 1,\n",
      "          'repetition': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'kinds': 1,\n",
      "          'things': 1,\n",
      "          'speedboat': 1,\n",
      "          'chases': 1,\n",
      "          'damage': 1,\n",
      "          'etc': 1,\n",
      "          'constantly': 1,\n",
      "          'recycles': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'material': 1,\n",
      "          'pad': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'acceptable': 1,\n",
      "          'length': 1,\n",
      "          'storyline': 1,\n",
      "          'gives': 1,\n",
      "          'paperthin': 1,\n",
      "          'contrived': 1,\n",
      "          'circumstances': 1,\n",
      "          'christian': 1,\n",
      "          'dimensional': 1,\n",
      "          'hero': 1,\n",
      "          'works': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'driving': 1,\n",
      "          'armored': 1,\n",
      "          'car': 1,\n",
      "          'full': 1,\n",
      "          'cash': 1,\n",
      "          'nhe': 1,\n",
      "          'partner': 1,\n",
      "          'edward': 1,\n",
      "          'asner': 1,\n",
      "          'tvs': 1,\n",
      "          'lou': 1,\n",
      "          'grant': 1,\n",
      "          'stuck': 1,\n",
      "          'street': 1,\n",
      "          'thats': 1,\n",
      "          'rapidly': 1,\n",
      "          'turning': 1,\n",
      "          'river': 1,\n",
      "          'na': 1,\n",
      "          'group': 1,\n",
      "          'men': 1,\n",
      "          'led': 1,\n",
      "          'jimmy': 1,\n",
      "          'morgan': 1,\n",
      "          'arrive': 1,\n",
      "          'scene': 1,\n",
      "          'rescuers': 1,\n",
      "          'robbers': 1,\n",
      "          'nafter': 1,\n",
      "          'killed': 1,\n",
      "          'shootout': 1,\n",
      "          'money': 1,\n",
      "          'runs': 1,\n",
      "          'swims': 1,\n",
      "          'boats': 1,\n",
      "          'huntingburgs': 1,\n",
      "          'roads': 1,\n",
      "          'encounters': 1,\n",
      "          'locals': 1,\n",
      "          'karen': 1,\n",
      "          'wouldbe': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'bickering': 1,\n",
      "          'old': 1,\n",
      "          'couple': 1,\n",
      "          'richard': 1,\n",
      "          'dysart': 1,\n",
      "          'betty': 1,\n",
      "          'white': 1,\n",
      "          'hand': 1,\n",
      "          'provide': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'easilycorrupted': 1,\n",
      "          'sheriff': 1,\n",
      "          'randy': 1,\n",
      "          'whose': 1,\n",
      "          'seeming': 1,\n",
      "          'helpfulness': 1,\n",
      "          'sinister': 1,\n",
      "          'ulterior': 1,\n",
      "          'motives': 1,\n",
      "          'nthere': 1,\n",
      "          'isnt': 1,\n",
      "          'acting': 1,\n",
      "          'nchristian': 1,\n",
      "          'utters': 1,\n",
      "          'lame': 1,\n",
      "          'oneliners': 1,\n",
      "          'mugging': 1,\n",
      "          'ntom': 1,\n",
      "          'easily': 1,\n",
      "          'lifeless': 1,\n",
      "          'actor': 1,\n",
      "          'brought': 1,\n",
      "          'screen': 1,\n",
      "          'nrandy': 1,\n",
      "          'sneers': 1,\n",
      "          'totally': 1,\n",
      "          'unconvincing': 1,\n",
      "          'nmorgan': 1,\n",
      "          'attempt': 1,\n",
      "          'give': 1,\n",
      "          'legitimate': 1,\n",
      "          'performances': 1,\n",
      "          'defeated': 1,\n",
      "          'script': 1,\n",
      "          'nfreeman': 1,\n",
      "          'cinematic': 1,\n",
      "          'thespians': 1,\n",
      "          'working': 1,\n",
      "          'today': 1,\n",
      "          'looks': 1,\n",
      "          'suitably': 1,\n",
      "          'embarrassed': 1,\n",
      "          'suppose': 1,\n",
      "          'everyone': 1,\n",
      "          'needs': 1,\n",
      "          'paycheck': 1,\n",
      "          'timetotime': 1,\n",
      "          'nfollowing': 1,\n",
      "          'wake': 1,\n",
      "          'twister': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'natural': 1,\n",
      "          'doesnt': 1,\n",
      "          'trust': 1,\n",
      "          'natures': 1,\n",
      "          'fury': 1,\n",
      "          'chief': 1,\n",
      "          'engine': 1,\n",
      "          'conflict': 1,\n",
      "          'result': 1,\n",
      "          'saddled': 1,\n",
      "          'guysbad': 1,\n",
      "          'guys': 1,\n",
      "          'story': 1,\n",
      "          'effectively': 1,\n",
      "          'ruins': 1,\n",
      "          'potential': 1,\n",
      "          'tale': 1,\n",
      "          'could': 1,\n",
      "          'ntitanic': 1,\n",
      "          'proved': 1,\n",
      "          'wealth': 1,\n",
      "          'drama': 1,\n",
      "          'everything': 1,\n",
      "          'goes': 1,\n",
      "          'successfully': 1,\n",
      "          'demonstrates': 1,\n",
      "          'opposite': 1,\n",
      "          'equally': 1,\n",
      "          'possible': 1,\n",
      "          'nthus': 1,\n",
      "          'hollywood': 1,\n",
      "          'already': 1,\n",
      "          'subjected': 1,\n",
      "          'unique': 1,\n",
      "          'brand': 1,\n",
      "          'moronic': 1,\n",
      "          'mayhem': 1,\n",
      "          'fire': 1,\n",
      "          'firestorm': 1,\n",
      "          'nfortunately': 1,\n",
      "          'two': 1,\n",
      "          'elements': 1,\n",
      "          'left': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'powell': 6,\n",
      "          'ni': 5,\n",
      "          'instinct': 4,\n",
      "          'nthis': 4,\n",
      "          'movies': 4,\n",
      "          'one': 4,\n",
      "          'caulder': 4,\n",
      "          'good': 4,\n",
      "          'kind': 3,\n",
      "          'movie': 3,\n",
      "          'bully': 3,\n",
      "          'theo': 3,\n",
      "          'would': 3,\n",
      "          'ever': 3,\n",
      "          'character': 3,\n",
      "          'shrink': 3,\n",
      "          'moviegoers': 2,\n",
      "          'stands': 2,\n",
      "          'present': 2,\n",
      "          'something': 2,\n",
      "          'like': 2,\n",
      "          'actually': 2,\n",
      "          'intelligence': 2,\n",
      "          'plot': 2,\n",
      "          'anthony': 2,\n",
      "          'hopkins': 2,\n",
      "          'nhe': 2,\n",
      "          'violence': 2,\n",
      "          'evaluation': 2,\n",
      "          'psychiatrist': 2,\n",
      "          'cuba': 2,\n",
      "          'gooding': 2,\n",
      "          'jr': 2,\n",
      "          'starts': 2,\n",
      "          'way': 2,\n",
      "          'helping': 2,\n",
      "          'screen': 2,\n",
      "          'patient': 2,\n",
      "          'say': 2,\n",
      "          'subject': 2,\n",
      "          'another': 2,\n",
      "          'instincts': 2,\n",
      "          'credibility': 2,\n",
      "          'least': 2,\n",
      "          'turteltaub': 2,\n",
      "          'well': 2,\n",
      "          'nit': 2,\n",
      "          'inspire': 2,\n",
      "          'di': 2,\n",
      "          'pego': 2,\n",
      "          'think': 2,\n",
      "          'could': 2,\n",
      "          'inexperienced': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'label': 1,\n",
      "          'powerful': 1,\n",
      "          'touching': 1,\n",
      "          'name': 1,\n",
      "          'gross': 1,\n",
      "          'sort': 1,\n",
      "          'film': 1,\n",
      "          'somebody': 1,\n",
      "          'looks': 1,\n",
      "          'rebel': 1,\n",
      "          'threateningly': 1,\n",
      "          'hurt': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'heretofore': 1,\n",
      "          'controlled': 1,\n",
      "          'nhow': 1,\n",
      "          'scene': 1,\n",
      "          'still': 1,\n",
      "          'many': 1,\n",
      "          'today': 1,\n",
      "          'appalls': 1,\n",
      "          'arent': 1,\n",
      "          'day': 1,\n",
      "          'beyond': 1,\n",
      "          'inspired': 1,\n",
      "          'example': 1,\n",
      "          'alone': 1,\n",
      "          'filmmakers': 1,\n",
      "          'insulting': 1,\n",
      "          'audiences': 1,\n",
      "          'ninstincts': 1,\n",
      "          'brimming': 1,\n",
      "          'potential': 1,\n",
      "          'worldrenowned': 1,\n",
      "          'anthropologist': 1,\n",
      "          'ethan': 1,\n",
      "          'disappeared': 1,\n",
      "          'two': 1,\n",
      "          'years': 1,\n",
      "          'whilst': 1,\n",
      "          'research': 1,\n",
      "          'jungles': 1,\n",
      "          'africa': 1,\n",
      "          'found': 1,\n",
      "          'coming': 1,\n",
      "          'back': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'convicted': 1,\n",
      "          'killer': 1,\n",
      "          'murdered': 1,\n",
      "          'african': 1,\n",
      "          'policemen': 1,\n",
      "          'allegedly': 1,\n",
      "          'trying': 1,\n",
      "          'capture': 1,\n",
      "          'nafter': 1,\n",
      "          'committing': 1,\n",
      "          'brutal': 1,\n",
      "          'acts': 1,\n",
      "          'airport': 1,\n",
      "          'authorities': 1,\n",
      "          'stick': 1,\n",
      "          'prisons': 1,\n",
      "          'psychotics': 1,\n",
      "          'ward': 1,\n",
      "          'nassigned': 1,\n",
      "          'bright': 1,\n",
      "          'told': 1,\n",
      "          'young': 1,\n",
      "          'ncaulder': 1,\n",
      "          'merely': 1,\n",
      "          'purpose': 1,\n",
      "          'furthering': 1,\n",
      "          'career': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'mainstream': 1,\n",
      "          'filmmaker': 1,\n",
      "          'really': 1,\n",
      "          'caring': 1,\n",
      "          'becomes': 1,\n",
      "          'fixed': 1,\n",
      "          'prove': 1,\n",
      "          'psychotic': 1,\n",
      "          'prison': 1,\n",
      "          'nand': 1,\n",
      "          'theres': 1,\n",
      "          'inevitable': 1,\n",
      "          'heartless': 1,\n",
      "          'meanie': 1,\n",
      "          'form': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'plays': 1,\n",
      "          'caulders': 1,\n",
      "          'mentor': 1,\n",
      "          'cares': 1,\n",
      "          'everything': 1,\n",
      "          'discourage': 1,\n",
      "          'nlets': 1,\n",
      "          'get': 1,\n",
      "          'thing': 1,\n",
      "          'straight': 1,\n",
      "          'dr': 1,\n",
      "          'blatantly': 1,\n",
      "          'incompetent': 1,\n",
      "          'seen': 1,\n",
      "          'nany': 1,\n",
      "          'listen': 1,\n",
      "          'matter': 1,\n",
      "          'learn': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'nnot': 1,\n",
      "          'old': 1,\n",
      "          'nno': 1,\n",
      "          'asks': 1,\n",
      "          'purposefully': 1,\n",
      "          'pointed': 1,\n",
      "          'questions': 1,\n",
      "          'dares': 1,\n",
      "          'venture': 1,\n",
      "          'says': 1,\n",
      "          'need': 1,\n",
      "          'talk': 1,\n",
      "          'right': 1,\n",
      "          'flaw': 1,\n",
      "          'sense': 1,\n",
      "          'detracts': 1,\n",
      "          'already': 1,\n",
      "          'dubious': 1,\n",
      "          'unfortunately': 1,\n",
      "          'also': 1,\n",
      "          'problems': 1,\n",
      "          'ndirector': 1,\n",
      "          'jon': 1,\n",
      "          'made': 1,\n",
      "          'delightful': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'vehicle': 1,\n",
      "          'phenomenon': 1,\n",
      "          'surprisingly': 1,\n",
      "          'abovepar': 1,\n",
      "          'cool': 1,\n",
      "          'runnings': 1,\n",
      "          'decided': 1,\n",
      "          'make': 1,\n",
      "          'shamelessly': 1,\n",
      "          'sentimental': 1,\n",
      "          'contrary': 1,\n",
      "          'promotion': 1,\n",
      "          'believe': 1,\n",
      "          'much': 1,\n",
      "          'common': 1,\n",
      "          'patch': 1,\n",
      "          'adams': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'nits': 1,\n",
      "          'sentimentality': 1,\n",
      "          'almost': 1,\n",
      "          'bring': 1,\n",
      "          'tears': 1,\n",
      "          'eyes': 1,\n",
      "          'dreams': 1,\n",
      "          'may': 1,\n",
      "          'come': 1,\n",
      "          'aptly': 1,\n",
      "          'demonstrated': 1,\n",
      "          'brings': 1,\n",
      "          'vomit': 1,\n",
      "          'esophagus': 1,\n",
      "          'excuse': 1,\n",
      "          'graphic': 1,\n",
      "          'depiction': 1,\n",
      "          'aims': 1,\n",
      "          'rather': 1,\n",
      "          'touch': 1,\n",
      "          'hearts': 1,\n",
      "          'nas': 1,\n",
      "          'yoda': 1,\n",
      "          'ultimate': 1,\n",
      "          'sign': 1,\n",
      "          'futility': 1,\n",
      "          'screenwriter': 1,\n",
      "          'experienced': 1,\n",
      "          'gerald': 1,\n",
      "          'resort': 1,\n",
      "          'literally': 1,\n",
      "          'telling': 1,\n",
      "          'audience': 1,\n",
      "          'story': 1,\n",
      "          'nindeed': 1,\n",
      "          'somewhere': 1,\n",
      "          'beginning': 1,\n",
      "          'characters': 1,\n",
      "          'reads': 1,\n",
      "          'aloud': 1,\n",
      "          'films': 1,\n",
      "          'instance': 1,\n",
      "          'mentioned': 1,\n",
      "          'first': 1,\n",
      "          'paragraph': 1,\n",
      "          'review': 1,\n",
      "          'horrid': 1,\n",
      "          'insult': 1,\n",
      "          'forced': 1,\n",
      "          'wonder': 1,\n",
      "          'whether': 1,\n",
      "          'figure': 1,\n",
      "          'simply': 1,\n",
      "          'regular': 1,\n",
      "          'conversation': 1,\n",
      "          'greatest': 1,\n",
      "          'actors': 1,\n",
      "          'chews': 1,\n",
      "          'scenery': 1,\n",
      "          'brilliant': 1,\n",
      "          'noscar': 1,\n",
      "          'winner': 1,\n",
      "          'hand': 1,\n",
      "          'dreadful': 1,\n",
      "          'nhis': 1,\n",
      "          'performance': 1,\n",
      "          'part': 1,\n",
      "          'makes': 1,\n",
      "          'seem': 1,\n",
      "          'incapable': 1,\n",
      "          'liked': 1,\n",
      "          'guy': 1,\n",
      "          'jerry': 1,\n",
      "          'maguire': 1,\n",
      "          'gets': 1,\n",
      "          'fails': 1,\n",
      "          'project': 1,\n",
      "          'shred': 1,\n",
      "          'real': 1,\n",
      "          'feeling': 1,\n",
      "          'love': 1,\n",
      "          'animals': 1,\n",
      "          'prominent': 1,\n",
      "          'save': 1,\n",
      "          'gorillaslive': 1,\n",
      "          'harmony': 1,\n",
      "          'nature': 1,\n",
      "          'theme': 1,\n",
      "          'certainly': 1,\n",
      "          'sympathize': 1,\n",
      "          'nhowever': 1,\n",
      "          'execution': 1,\n",
      "          'completely': 1,\n",
      "          'unacceptable': 1,\n",
      "          'ntone': 1,\n",
      "          'chick': 1,\n",
      "          'flick': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'isnt': 4,\n",
      "          'nbut': 3,\n",
      "          'much': 3,\n",
      "          'hassidic': 3,\n",
      "          'community': 3,\n",
      "          'time': 2,\n",
      "          'almost': 2,\n",
      "          'peter': 2,\n",
      "          'weirs': 2,\n",
      "          'belongs': 2,\n",
      "          'nthe': 2,\n",
      "          'emily': 2,\n",
      "          'eden': 2,\n",
      "          'melanie': 2,\n",
      "          'griffith': 2,\n",
      "          'tough': 2,\n",
      "          'one': 2,\n",
      "          'easy': 2,\n",
      "          'nthat': 2,\n",
      "          'even': 2,\n",
      "          'ariel': 2,\n",
      "          'thal': 2,\n",
      "          'film': 2,\n",
      "          'viewers': 2,\n",
      "          'pass': 2,\n",
      "          'sydney': 1,\n",
      "          'lumet': 1,\n",
      "          'director': 1,\n",
      "          'whose': 1,\n",
      "          'work': 1,\n",
      "          'happens': 1,\n",
      "          'varied': 1,\n",
      "          'quality': 1,\n",
      "          'nhe': 1,\n",
      "          'praised': 1,\n",
      "          'important': 1,\n",
      "          'films': 1,\n",
      "          'previous': 1,\n",
      "          'decades': 1,\n",
      "          'like': 1,\n",
      "          'twelve': 1,\n",
      "          'angry': 1,\n",
      "          'men': 1,\n",
      "          'serpico': 1,\n",
      "          'verdict': 1,\n",
      "          'pearls': 1,\n",
      "          'followed': 1,\n",
      "          'stinkers': 1,\n",
      "          'hamper': 1,\n",
      "          'lumets': 1,\n",
      "          'reputation': 1,\n",
      "          'na': 1,\n",
      "          'stranger': 1,\n",
      "          'among': 1,\n",
      "          'us': 1,\n",
      "          '1992': 1,\n",
      "          'ripoff': 1,\n",
      "          'witness': 1,\n",
      "          'latter': 1,\n",
      "          'category': 1,\n",
      "          'heroine': 1,\n",
      "          'movie': 1,\n",
      "          'lady': 1,\n",
      "          'cop': 1,\n",
      "          'sometimes': 1,\n",
      "          'shows': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'battling': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'streets': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'nduring': 1,\n",
      "          'actions': 1,\n",
      "          'partner': 1,\n",
      "          'nick': 1,\n",
      "          'jamey': 1,\n",
      "          'sheridan': 1,\n",
      "          'got': 1,\n",
      "          'hurt': 1,\n",
      "          'result': 1,\n",
      "          'becomes': 1,\n",
      "          'depressed': 1,\n",
      "          'nin': 1,\n",
      "          'order': 1,\n",
      "          'help': 1,\n",
      "          'recover': 1,\n",
      "          'bosses': 1,\n",
      "          'give': 1,\n",
      "          'rather': 1,\n",
      "          'task': 1,\n",
      "          'locating': 1,\n",
      "          'missing': 1,\n",
      "          'jeweller': 1,\n",
      "          'belonged': 1,\n",
      "          'jew': 1,\n",
      "          'nemily': 1,\n",
      "          'starts': 1,\n",
      "          'investigation': 1,\n",
      "          'soon': 1,\n",
      "          'realises': 1,\n",
      "          'case': 1,\n",
      "          'involves': 1,\n",
      "          'murder': 1,\n",
      "          'nconcluding': 1,\n",
      "          'perpetrator': 1,\n",
      "          'decides': 1,\n",
      "          'go': 1,\n",
      "          'undercover': 1,\n",
      "          'modern': 1,\n",
      "          'manners': 1,\n",
      "          'colliding': 1,\n",
      "          'traditionalist': 1,\n",
      "          'ways': 1,\n",
      "          'nthings': 1,\n",
      "          'get': 1,\n",
      "          'complicated': 1,\n",
      "          'develops': 1,\n",
      "          'feelings': 1,\n",
      "          'young': 1,\n",
      "          'cabalistic': 1,\n",
      "          'scholar': 1,\n",
      "          'eric': 1,\n",
      "          'nusing': 1,\n",
      "          'formula': 1,\n",
      "          'greatest': 1,\n",
      "          'flaw': 1,\n",
      "          'neven': 1,\n",
      "          'lame': 1,\n",
      "          'unispiring': 1,\n",
      "          'crime': 1,\n",
      "          'mystery': 1,\n",
      "          'subplot': 1,\n",
      "          'works': 1,\n",
      "          'certain': 1,\n",
      "          'extent': 1,\n",
      "          'worst': 1,\n",
      "          'insult': 1,\n",
      "          'audience': 1,\n",
      "          'terrible': 1,\n",
      "          'miscasting': 1,\n",
      "          'author': 1,\n",
      "          'review': 1,\n",
      "          'never': 1,\n",
      "          'liked': 1,\n",
      "          'actress': 1,\n",
      "          'least': 1,\n",
      "          'tolerable': 1,\n",
      "          'roles': 1,\n",
      "          'nrole': 1,\n",
      "          'unfortunately': 1,\n",
      "          'nfirst': 1,\n",
      "          'cant': 1,\n",
      "          'nypd': 1,\n",
      "          'street': 1,\n",
      "          'fighter': 1,\n",
      "          'attempt': 1,\n",
      "          'orthodox': 1,\n",
      "          'jewish': 1,\n",
      "          'woman': 1,\n",
      "          'better': 1,\n",
      "          'nscreenplay': 1,\n",
      "          'robert': 1,\n",
      "          'j': 1,\n",
      "          'avrech': 1,\n",
      "          'makes': 1,\n",
      "          'things': 1,\n",
      "          'worse': 1,\n",
      "          'formulaic': 1,\n",
      "          'red': 1,\n",
      "          'herring': 1,\n",
      "          'subplots': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'two': 1,\n",
      "          'italian': 1,\n",
      "          'gangsters': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'hand': 1,\n",
      "          'actors': 1,\n",
      "          'convincing': 1,\n",
      "          'lee': 1,\n",
      "          'richardson': 1,\n",
      "          'old': 1,\n",
      "          'rabbi': 1,\n",
      "          'charming': 1,\n",
      "          'mia': 1,\n",
      "          'sara': 1,\n",
      "          'intended': 1,\n",
      "          'bride': 1,\n",
      "          'photography': 1,\n",
      "          'andrzej': 1,\n",
      "          'bartkowiak': 1,\n",
      "          'effectively': 1,\n",
      "          'creates': 1,\n",
      "          'atmosphere': 1,\n",
      "          'warmth': 1,\n",
      "          'scenes': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'nalso': 1,\n",
      "          'might': 1,\n",
      "          'educate': 1,\n",
      "          'culture': 1,\n",
      "          'thing': 1,\n",
      "          'prevents': 1,\n",
      "          'turning': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'1900': 14,\n",
      "          'ship': 7,\n",
      "          'piano': 7,\n",
      "          'nthe': 6,\n",
      "          'record': 6,\n",
      "          'movie': 5,\n",
      "          'max': 5,\n",
      "          'land': 4,\n",
      "          'n1900': 4,\n",
      "          'music': 4,\n",
      "          'roth': 3,\n",
      "          'taylor': 3,\n",
      "          'vince': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'name': 3,\n",
      "          'nhe': 3,\n",
      "          'comes': 3,\n",
      "          'make': 3,\n",
      "          'one': 3,\n",
      "          'plays': 3,\n",
      "          'life': 3,\n",
      "          'tim': 2,\n",
      "          'pruitt': 2,\n",
      "          'clarence': 2,\n",
      "          'williams': 2,\n",
      "          'iii': 2,\n",
      "          'legend': 2,\n",
      "          '1900s': 2,\n",
      "          'years': 2,\n",
      "          'nhis': 2,\n",
      "          'starts': 2,\n",
      "          'around': 2,\n",
      "          'sits': 2,\n",
      "          'playing': 2,\n",
      "          'nwhen': 2,\n",
      "          'like': 2,\n",
      "          'without': 2,\n",
      "          'regulations': 2,\n",
      "          'ho': 2,\n",
      "          'never': 2,\n",
      "          'dry': 2,\n",
      "          'nafter': 2,\n",
      "          'theyre': 2,\n",
      "          'dont': 2,\n",
      "          'isnt': 2,\n",
      "          'supposed': 2,\n",
      "          'get': 2,\n",
      "          'doesnt': 2,\n",
      "          'made': 2,\n",
      "          'duel': 2,\n",
      "          'world': 1,\n",
      "          'big': 1,\n",
      "          'nstarring': 1,\n",
      "          'bill': 1,\n",
      "          'nunn': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'absurd': 1,\n",
      "          'rambling': 1,\n",
      "          'nonsensical': 1,\n",
      "          'piece': 1,\n",
      "          'seafaring': 1,\n",
      "          'garbage': 1,\n",
      "          'goes': 1,\n",
      "          'nowhere': 1,\n",
      "          'fast': 1,\n",
      "          'nit': 1,\n",
      "          'stars': 1,\n",
      "          'thespian': 1,\n",
      "          'extraordinaire': 1,\n",
      "          'looking': 1,\n",
      "          'wistful': 1,\n",
      "          'ever': 1,\n",
      "          'guy': 1,\n",
      "          'named': 1,\n",
      "          'nyou': 1,\n",
      "          'heard': 1,\n",
      "          'right': 1,\n",
      "          'actuality': 1,\n",
      "          'born': 1,\n",
      "          'ocean': 1,\n",
      "          'liner': 1,\n",
      "          '111900': 1,\n",
      "          'uh': 1,\n",
      "          'hence': 1,\n",
      "          'abandoned': 1,\n",
      "          'adopted': 1,\n",
      "          'danny': 1,\n",
      "          'crewman': 1,\n",
      "          'spends': 1,\n",
      "          'early': 1,\n",
      "          'hiding': 1,\n",
      "          'bowels': 1,\n",
      "          'dannys': 1,\n",
      "          'fear': 1,\n",
      "          'might': 1,\n",
      "          'taken': 1,\n",
      "          'away': 1,\n",
      "          'visa': 1,\n",
      "          'matters': 1,\n",
      "          'nwell': 1,\n",
      "          '9': 1,\n",
      "          'wondering': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'discovers': 1,\n",
      "          'grand': 1,\n",
      "          'nmiraculously': 1,\n",
      "          'beautiful': 1,\n",
      "          'na': 1,\n",
      "          'group': 1,\n",
      "          'onlookers': 1,\n",
      "          'gathers': 1,\n",
      "          'watch': 1,\n",
      "          'stunning': 1,\n",
      "          'prodigy': 1,\n",
      "          'amazing': 1,\n",
      "          'young': 1,\n",
      "          'age': 1,\n",
      "          'people': 1,\n",
      "          'knows': 1,\n",
      "          'tells': 1,\n",
      "          'permission': 1,\n",
      "          'totally': 1,\n",
      "          'replies': 1,\n",
      "          'f': 1,\n",
      "          'ck': 1,\n",
      "          'nho': 1,\n",
      "          'grows': 1,\n",
      "          'setting': 1,\n",
      "          'foot': 1,\n",
      "          'hes': 1,\n",
      "          '30ish': 1,\n",
      "          'play': 1,\n",
      "          'nobodys': 1,\n",
      "          'business': 1,\n",
      "          'onboard': 1,\n",
      "          'another': 1,\n",
      "          'musician': 1,\n",
      "          'trumpet': 1,\n",
      "          'catches': 1,\n",
      "          'barfing': 1,\n",
      "          'everywhere': 1,\n",
      "          'storm': 1,\n",
      "          'next': 1,\n",
      "          'takes': 1,\n",
      "          'pianos': 1,\n",
      "          'braces': 1,\n",
      "          'flies': 1,\n",
      "          'hall': 1,\n",
      "          'taking': 1,\n",
      "          'nhow': 1,\n",
      "          'chair': 1,\n",
      "          'sitting': 1,\n",
      "          'separate': 1,\n",
      "          'know': 1,\n",
      "          'apparently': 1,\n",
      "          'kind': 1,\n",
      "          'thing': 1,\n",
      "          'ask': 1,\n",
      "          'become': 1,\n",
      "          'friends': 1,\n",
      "          'nmax': 1,\n",
      "          'determined': 1,\n",
      "          'discover': 1,\n",
      "          'missing': 1,\n",
      "          'intention': 1,\n",
      "          'nwhats': 1,\n",
      "          'even': 1,\n",
      "          'want': 1,\n",
      "          'go': 1,\n",
      "          'anywhere': 1,\n",
      "          'company': 1,\n",
      "          'hears': 1,\n",
      "          'talents': 1,\n",
      "          'come': 1,\n",
      "          'board': 1,\n",
      "          'finding': 1,\n",
      "          'gasp': 1,\n",
      "          'n': 1,\n",
      "          'going': 1,\n",
      "          'millions': 1,\n",
      "          'copies': 1,\n",
      "          'breaks': 1,\n",
      "          'conflict': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'endeavor': 1,\n",
      "          'gets': 1,\n",
      "          'stumbles': 1,\n",
      "          'upon': 1,\n",
      "          'store': 1,\n",
      "          'shouldnt': 1,\n",
      "          'exist': 1,\n",
      "          'stepped': 1,\n",
      "          'b': 1,\n",
      "          'broken': 1,\n",
      "          'nladies': 1,\n",
      "          'gentlemen': 1,\n",
      "          'mystery': 1,\n",
      "          'story': 1,\n",
      "          'ludicrous': 1,\n",
      "          'uninteresting': 1,\n",
      "          'elements': 1,\n",
      "          'nwere': 1,\n",
      "          'roused': 1,\n",
      "          'climactic': 1,\n",
      "          'npiano': 1,\n",
      "          'nthere': 1,\n",
      "          'anything': 1,\n",
      "          'potential': 1,\n",
      "          'compel': 1,\n",
      "          'whiny': 1,\n",
      "          'brooding': 1,\n",
      "          'extremely': 1,\n",
      "          'unlikable': 1,\n",
      "          'man': 1,\n",
      "          'cant': 1,\n",
      "          'recall': 1,\n",
      "          'single': 1,\n",
      "          'word': 1,\n",
      "          'said': 1,\n",
      "          'sort': 1,\n",
      "          'depressing': 1,\n",
      "          'pseudo': 1,\n",
      "          'meditation': 1,\n",
      "          'nditto': 1,\n",
      "          'seem': 1,\n",
      "          'outside': 1,\n",
      "          'friendship': 1,\n",
      "          'ntim': 1,\n",
      "          'much': 1,\n",
      "          'panache': 1,\n",
      "          'fig': 1,\n",
      "          'leaf': 1,\n",
      "          'theres': 1,\n",
      "          'spirit': 1,\n",
      "          'gusto': 1,\n",
      "          'character': 1,\n",
      "          'insists': 1,\n",
      "          'leads': 1,\n",
      "          'happy': 1,\n",
      "          'us': 1,\n",
      "          'dead': 1,\n",
      "          'npruitt': 1,\n",
      "          'little': 1,\n",
      "          'palatable': 1,\n",
      "          'least': 1,\n",
      "          'providing': 1,\n",
      "          'moment': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'liven': 1,\n",
      "          'things': 1,\n",
      "          'bit': 1,\n",
      "          'highlight': 1,\n",
      "          'would': 1,\n",
      "          'eminently': 1,\n",
      "          'amusing': 1,\n",
      "          'arrogant': 1,\n",
      "          'leering': 1,\n",
      "          'king': 1,\n",
      "          'jazz': 1,\n",
      "          'challenges': 1,\n",
      "          'aforementioned': 1,\n",
      "          'giuseppe': 1,\n",
      "          'tornatore': 1,\n",
      "          'whose': 1,\n",
      "          '1988': 1,\n",
      "          'cinema': 1,\n",
      "          'paradiso': 1,\n",
      "          'considered': 1,\n",
      "          'masterpiece': 1,\n",
      "          'many': 1,\n",
      "          'nthis': 1,\n",
      "          'effort': 1,\n",
      "          'utterly': 1,\n",
      "          'limp': 1,\n",
      "          'lifeless': 1,\n",
      "          'nat': 1,\n",
      "          'ridiculous': 1,\n",
      "          'boring': 1,\n",
      "          'narrowsighted': 1,\n",
      "          'pointless': 1,\n",
      "          'quickly': 1,\n",
      "          'forgotten': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'giant': 6,\n",
      "          'could': 4,\n",
      "          'movies': 3,\n",
      "          'one': 3,\n",
      "          'n': 3,\n",
      "          'thought': 3,\n",
      "          'nothing': 3,\n",
      "          'max': 3,\n",
      "          'like': 3,\n",
      "          'good': 3,\n",
      "          'even': 2,\n",
      "          'get': 2,\n",
      "          'picture': 2,\n",
      "          'without': 2,\n",
      "          'david': 2,\n",
      "          'throwing': 2,\n",
      "          'dramatic': 2,\n",
      "          'billy': 2,\n",
      "          'crystal': 2,\n",
      "          'shown': 2,\n",
      "          'hes': 2,\n",
      "          'nhe': 2,\n",
      "          'years': 2,\n",
      "          'day': 2,\n",
      "          'reading': 2,\n",
      "          'would': 2,\n",
      "          'serious': 2,\n",
      "          'single': 2,\n",
      "          'muresan': 2,\n",
      "          'nsammy': 2,\n",
      "          'car': 2,\n",
      "          'nafter': 2,\n",
      "          'scenes': 2,\n",
      "          'nmy': 2,\n",
      "          'two': 1,\n",
      "          'price': 1,\n",
      "          'neither': 1,\n",
      "          'worth': 1,\n",
      "          'cost': 1,\n",
      "          'admission': 1,\n",
      "          'free': 1,\n",
      "          'nas': 1,\n",
      "          'lamely': 1,\n",
      "          'directed': 1,\n",
      "          'michael': 1,\n",
      "          'lehmann': 1,\n",
      "          'tries': 1,\n",
      "          'comedy': 1,\n",
      "          'using': 1,\n",
      "          'reusing': 1,\n",
      "          'every': 1,\n",
      "          'joke': 1,\n",
      "          'book': 1,\n",
      "          'goliath': 1,\n",
      "          'punk': 1,\n",
      "          'rocks': 1,\n",
      "          'nlanguidly': 1,\n",
      "          'paced': 1,\n",
      "          'throughout': 1,\n",
      "          'becomes': 1,\n",
      "          'increasingly': 1,\n",
      "          'lugubrious': 1,\n",
      "          'screenplay': 1,\n",
      "          'seltzer': 1,\n",
      "          'omen': 1,\n",
      "          'meanders': 1,\n",
      "          'toward': 1,\n",
      "          'sad': 1,\n",
      "          'ending': 1,\n",
      "          'nsince': 1,\n",
      "          'rarely': 1,\n",
      "          'funny': 1,\n",
      "          'convincingly': 1,\n",
      "          'filmmakers': 1,\n",
      "          'remains': 1,\n",
      "          'mystery': 1,\n",
      "          'nother': 1,\n",
      "          'nice': 1,\n",
      "          'visuals': 1,\n",
      "          'theres': 1,\n",
      "          'recommend': 1,\n",
      "          'nwith': 1,\n",
      "          'great': 1,\n",
      "          'film': 1,\n",
      "          'comedies': 1,\n",
      "          'belt': 1,\n",
      "          'harry': 1,\n",
      "          'met': 1,\n",
      "          'sally': 1,\n",
      "          'original': 1,\n",
      "          'city': 1,\n",
      "          'slickers': 1,\n",
      "          'worlds': 1,\n",
      "          'best': 1,\n",
      "          'oscar': 1,\n",
      "          'host': 1,\n",
      "          'however': 1,\n",
      "          'propensity': 1,\n",
      "          'choosing': 1,\n",
      "          'hopeless': 1,\n",
      "          'material': 1,\n",
      "          'last': 1,\n",
      "          'fathers': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'reads': 1,\n",
      "          'script': 1,\n",
      "          'agreeing': 1,\n",
      "          'go': 1,\n",
      "          'ahead': 1,\n",
      "          'project': 1,\n",
      "          'nsurely': 1,\n",
      "          'nperhaps': 1,\n",
      "          'ad': 1,\n",
      "          'lib': 1,\n",
      "          'success': 1,\n",
      "          'maybe': 1,\n",
      "          'wants': 1,\n",
      "          'actor': 1,\n",
      "          'something': 1,\n",
      "          'somber': 1,\n",
      "          'tone': 1,\n",
      "          'nthe': 1,\n",
      "          'charitable': 1,\n",
      "          'thing': 1,\n",
      "          'said': 1,\n",
      "          'ineffectual': 1,\n",
      "          'people': 1,\n",
      "          'probably': 1,\n",
      "          'forget': 1,\n",
      "          'saw': 1,\n",
      "          'next': 1,\n",
      "          'nthis': 1,\n",
      "          'onejoke': 1,\n",
      "          'idea': 1,\n",
      "          'place': 1,\n",
      "          'reallife': 1,\n",
      "          'basketball': 1,\n",
      "          'player': 1,\n",
      "          'gheorghe': 1,\n",
      "          'stands': 1,\n",
      "          'seven': 1,\n",
      "          'half': 1,\n",
      "          'feet': 1,\n",
      "          'tall': 1,\n",
      "          'many': 1,\n",
      "          'visually': 1,\n",
      "          'striking': 1,\n",
      "          'situations': 1,\n",
      "          'possible': 1,\n",
      "          'agent': 1,\n",
      "          'currently': 1,\n",
      "          'clients': 1,\n",
      "          'rescued': 1,\n",
      "          'accident': 1,\n",
      "          'sweet': 1,\n",
      "          'romanian': 1,\n",
      "          'named': 1,\n",
      "          'constant': 1,\n",
      "          'oneliners': 1,\n",
      "          'either': 1,\n",
      "          'god': 1,\n",
      "          'salvage': 1,\n",
      "          'business': 1,\n",
      "          'big': 1,\n",
      "          'foot': 1,\n",
      "          'took': 1,\n",
      "          'decides': 1,\n",
      "          'seeing': 1,\n",
      "          'meal': 1,\n",
      "          'ticket': 1,\n",
      "          'nand': 1,\n",
      "          'although': 1,\n",
      "          'doesnt': 1,\n",
      "          'willing': 1,\n",
      "          'sign': 1,\n",
      "          'disgusting': 1,\n",
      "          'events': 1,\n",
      "          'wrestling': 1,\n",
      "          'match': 1,\n",
      "          'halfdozen': 1,\n",
      "          'dwarfs': 1,\n",
      "          'knows': 1,\n",
      "          'bounds': 1,\n",
      "          'contains': 1,\n",
      "          'putrid': 1,\n",
      "          'lengthy': 1,\n",
      "          'vomiting': 1,\n",
      "          'ever': 1,\n",
      "          'series': 1,\n",
      "          'missed': 1,\n",
      "          'opportunities': 1,\n",
      "          'comedic': 1,\n",
      "          'part': 1,\n",
      "          'turns': 1,\n",
      "          'cheap': 1,\n",
      "          'maudlin': 1,\n",
      "          'disease': 1,\n",
      "          'nwe': 1,\n",
      "          'learn': 1,\n",
      "          'maxs': 1,\n",
      "          'condition': 1,\n",
      "          'terminal': 1,\n",
      "          'soon': 1,\n",
      "          'die': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'contain': 1,\n",
      "          'see': 1,\n",
      "          'trailers': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'gets': 1,\n",
      "          'pair': 1,\n",
      "          'glasses': 1,\n",
      "          'signs': 1,\n",
      "          'another': 1,\n",
      "          'runs': 1,\n",
      "          'long': 1,\n",
      "          '1': 1,\n",
      "          '37': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'violence': 1,\n",
      "          'profanity': 1,\n",
      "          'acceptable': 1,\n",
      "          'kids': 1,\n",
      "          'around': 1,\n",
      "          'ten': 1,\n",
      "          'son': 1,\n",
      "          'jeffrey': 1,\n",
      "          'friend': 1,\n",
      "          'matthew': 1,\n",
      "          '9': 1,\n",
      "          'gave': 1,\n",
      "          'star': 1,\n",
      "          'say': 1,\n",
      "          'nmatthew': 1,\n",
      "          'pointed': 1,\n",
      "          'amen': 1,\n",
      "          'went': 1,\n",
      "          'comment': 1,\n",
      "          'way': 1,\n",
      "          'changed': 1,\n",
      "          'completely': 1,\n",
      "          'middle': 1,\n",
      "          'njeffrey': 1,\n",
      "          'complained': 1,\n",
      "          'particularly': 1,\n",
      "          'gross': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'girls': 9,\n",
      "          'spice': 8,\n",
      "          'one': 8,\n",
      "          'film': 6,\n",
      "          'nthe': 5,\n",
      "          'movie': 4,\n",
      "          'even': 3,\n",
      "          'hard': 2,\n",
      "          'ends': 2,\n",
      "          'watch': 2,\n",
      "          'nwhen': 2,\n",
      "          'characters': 2,\n",
      "          'melanie': 2,\n",
      "          'far': 2,\n",
      "          'seems': 2,\n",
      "          'like': 2,\n",
      "          'ideas': 2,\n",
      "          'various': 2,\n",
      "          'though': 2,\n",
      "          'pregnant': 2,\n",
      "          'celebrity': 2,\n",
      "          'hes': 2,\n",
      "          'amusing': 2,\n",
      "          'songs': 2,\n",
      "          'stay': 2,\n",
      "          'talk': 1,\n",
      "          'seemed': 1,\n",
      "          'dated': 1,\n",
      "          'hit': 1,\n",
      "          'theaters': 1,\n",
      "          'nspice': 1,\n",
      "          'world': 1,\n",
      "          'feature': 1,\n",
      "          'debut': 1,\n",
      "          'prefabricated': 1,\n",
      "          'pop': 1,\n",
      "          'band': 1,\n",
      "          'nits': 1,\n",
      "          'intended': 1,\n",
      "          'sort': 1,\n",
      "          'days': 1,\n",
      "          'night': 1,\n",
      "          'simply': 1,\n",
      "          'watching': 1,\n",
      "          'im': 1,\n",
      "          'reminded': 1,\n",
      "          'old': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'cartoon': 1,\n",
      "          'trick': 1,\n",
      "          'smurfs': 1,\n",
      "          'snorks': 1,\n",
      "          'teenage': 1,\n",
      "          'mutant': 1,\n",
      "          'ninja': 1,\n",
      "          'turtles': 1,\n",
      "          'identically': 1,\n",
      "          'animated': 1,\n",
      "          'creatures': 1,\n",
      "          'differentiated': 1,\n",
      "          'merely': 1,\n",
      "          'personality': 1,\n",
      "          'quirk': 1,\n",
      "          'different': 1,\n",
      "          'name': 1,\n",
      "          'interchangable': 1,\n",
      "          'pringles': 1,\n",
      "          'talented': 1,\n",
      "          'ntheres': 1,\n",
      "          'ginger': 1,\n",
      "          'geri': 1,\n",
      "          'halliwell': 1,\n",
      "          'brainy': 1,\n",
      "          'sporty': 1,\n",
      "          'chisholm': 1,\n",
      "          'athletic': 1,\n",
      "          'baby': 1,\n",
      "          'emma': 1,\n",
      "          'bunton': 1,\n",
      "          'childish': 1,\n",
      "          'posh': 1,\n",
      "          'victoria': 1,\n",
      "          'adams': 1,\n",
      "          'fashionconscious': 1,\n",
      "          'scary': 1,\n",
      "          'brown': 1,\n",
      "          'tongue': 1,\n",
      "          'pierced': 1,\n",
      "          'back': 1,\n",
      "          'youre': 1,\n",
      "          'almost': 1,\n",
      "          'certain': 1,\n",
      "          'post': 1,\n",
      "          'sticks': 1,\n",
      "          'throat': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'plot': 1,\n",
      "          'nit': 1,\n",
      "          'follows': 1,\n",
      "          'travel': 1,\n",
      "          'culminating': 1,\n",
      "          'first': 1,\n",
      "          'live': 1,\n",
      "          'performance': 1,\n",
      "          'albert': 1,\n",
      "          'hall': 1,\n",
      "          'action': 1,\n",
      "          'however': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'mismatched': 1,\n",
      "          'misfires': 1,\n",
      "          'include': 1,\n",
      "          'alien': 1,\n",
      "          'encounter': 1,\n",
      "          'fiendish': 1,\n",
      "          'tabloid': 1,\n",
      "          'editor': 1,\n",
      "          'scheming': 1,\n",
      "          'wreck': 1,\n",
      "          'shooting': 1,\n",
      "          'documentary': 1,\n",
      "          'producer': 1,\n",
      "          'george': 1,\n",
      "          'wendt': 1,\n",
      "          'trying': 1,\n",
      "          'pitch': 1,\n",
      "          'nearly': 1,\n",
      "          'incredibly': 1,\n",
      "          'fetched': 1,\n",
      "          'seem': 1,\n",
      "          'plausible': 1,\n",
      "          'mess': 1,\n",
      "          'ended': 1,\n",
      "          'meeting': 1,\n",
      "          'friend': 1,\n",
      "          'whose': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'maintain': 1,\n",
      "          'maxim': 1,\n",
      "          'must': 1,\n",
      "          'give': 1,\n",
      "          'birth': 1,\n",
      "          'boating': 1,\n",
      "          'adventure': 1,\n",
      "          'bus': 1,\n",
      "          'race': 1,\n",
      "          'clubhopping': 1,\n",
      "          'wherein': 1,\n",
      "          'apparently': 1,\n",
      "          'notices': 1,\n",
      "          'famous': 1,\n",
      "          'among': 1,\n",
      "          'crowd': 1,\n",
      "          'start': 1,\n",
      "          'sing': 1,\n",
      "          'assorted': 1,\n",
      "          'number': 1,\n",
      "          'musical': 1,\n",
      "          'performances': 1,\n",
      "          'press': 1,\n",
      "          'conferences': 1,\n",
      "          'general': 1,\n",
      "          'allaround': 1,\n",
      "          'stuff': 1,\n",
      "          'nwhew': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'littered': 1,\n",
      "          'star': 1,\n",
      "          'cameos': 1,\n",
      "          'nfrom': 1,\n",
      "          'elton': 1,\n",
      "          'john': 1,\n",
      "          'elvis': 1,\n",
      "          'costello': 1,\n",
      "          'bob': 1,\n",
      "          'hoskins': 1,\n",
      "          'meat': 1,\n",
      "          'loaf': 1,\n",
      "          'nheck': 1,\n",
      "          'roger': 1,\n",
      "          'moore': 1,\n",
      "          'shows': 1,\n",
      "          'cant': 1,\n",
      "          'decide': 1,\n",
      "          'parodying': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'lobbying': 1,\n",
      "          'reincarnation': 1,\n",
      "          'ernst': 1,\n",
      "          'stavro': 1,\n",
      "          'blofeld': 1,\n",
      "          'nrichard': 1,\n",
      "          'e': 1,\n",
      "          'grant': 1,\n",
      "          'largest': 1,\n",
      "          'secondary': 1,\n",
      "          'part': 1,\n",
      "          'thankless': 1,\n",
      "          'role': 1,\n",
      "          'bands': 1,\n",
      "          'manager': 1,\n",
      "          'clifford': 1,\n",
      "          'spotting': 1,\n",
      "          'partially': 1,\n",
      "          'decent': 1,\n",
      "          'way': 1,\n",
      "          'pass': 1,\n",
      "          'time': 1,\n",
      "          'confronted': 1,\n",
      "          'rest': 1,\n",
      "          'nneither': 1,\n",
      "          'spontaneous': 1,\n",
      "          'deadly': 1,\n",
      "          'boring': 1,\n",
      "          'ntheir': 1,\n",
      "          'alright': 1,\n",
      "          'play': 1,\n",
      "          'lifeless': 1,\n",
      "          'adaptations': 1,\n",
      "          'music': 1,\n",
      "          'videos': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'fans': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'collection': 1,\n",
      "          'least': 1,\n",
      "          'spin': 1,\n",
      "          'cd': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'either': 1,\n",
      "          'noption': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nnonfans': 1,\n",
      "          'know': 1,\n",
      "          'well': 1,\n",
      "          'away': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'story': 3,\n",
      "          'falls': 3,\n",
      "          'nsummer': 3,\n",
      "          'catch': 3,\n",
      "          'ryan': 3,\n",
      "          'cape': 3,\n",
      "          'baseball': 3,\n",
      "          'nhe': 3,\n",
      "          'one': 2,\n",
      "          'rich': 2,\n",
      "          'love': 2,\n",
      "          'moment': 2,\n",
      "          'nthe': 2,\n",
      "          'merely': 2,\n",
      "          'prinze': 2,\n",
      "          'cod': 2,\n",
      "          'league': 2,\n",
      "          'always': 2,\n",
      "          'could': 2,\n",
      "          'movie': 2,\n",
      "          'feature': 1,\n",
      "          'like': 1,\n",
      "          'double': 1,\n",
      "          'header': 1,\n",
      "          'two': 1,\n",
      "          'sets': 1,\n",
      "          'clich': 1,\n",
      "          'price': 1,\n",
      "          'nnot': 1,\n",
      "          'get': 1,\n",
      "          'usual': 1,\n",
      "          'tired': 1,\n",
      "          'sports': 1,\n",
      "          'chestnuts': 1,\n",
      "          'banal': 1,\n",
      "          'girlpoor': 1,\n",
      "          'boy': 1,\n",
      "          'tossed': 1,\n",
      "          'good': 1,\n",
      "          'measure': 1,\n",
      "          'nan': 1,\n",
      "          'original': 1,\n",
      "          'loser': 1,\n",
      "          'rare': 1,\n",
      "          'chicago': 1,\n",
      "          'cubs': 1,\n",
      "          'world': 1,\n",
      "          'series': 1,\n",
      "          'appearance': 1,\n",
      "          'screenplay': 1,\n",
      "          'kevin': 1,\n",
      "          'john': 1,\n",
      "          'gatins': 1,\n",
      "          'based': 1,\n",
      "          'lobs': 1,\n",
      "          'plotline': 1,\n",
      "          'audience': 1,\n",
      "          'nthis': 1,\n",
      "          'needed': 1,\n",
      "          'sent': 1,\n",
      "          'seasoning': 1,\n",
      "          'coaching': 1,\n",
      "          'centers': 1,\n",
      "          'around': 1,\n",
      "          'dunne': 1,\n",
      "          'freddie': 1,\n",
      "          'jr': 1,\n",
      "          'youth': 1,\n",
      "          'chosen': 1,\n",
      "          'participate': 1,\n",
      "          'prestigious': 1,\n",
      "          'supposedly': 1,\n",
      "          'showcase': 1,\n",
      "          'best': 1,\n",
      "          'young': 1,\n",
      "          'amateur': 1,\n",
      "          'college': 1,\n",
      "          'players': 1,\n",
      "          'country': 1,\n",
      "          'nryan': 1,\n",
      "          'bluecollar': 1,\n",
      "          'kind': 1,\n",
      "          'guy': 1,\n",
      "          'works': 1,\n",
      "          'dad': 1,\n",
      "          'taking': 1,\n",
      "          'care': 1,\n",
      "          'lawns': 1,\n",
      "          'cods': 1,\n",
      "          'famous': 1,\n",
      "          'also': 1,\n",
      "          'informed': 1,\n",
      "          'early': 1,\n",
      "          'worst': 1,\n",
      "          'enemy': 1,\n",
      "          'potential': 1,\n",
      "          'talent': 1,\n",
      "          'seems': 1,\n",
      "          'selfdestruct': 1,\n",
      "          'crucial': 1,\n",
      "          'nso': 1,\n",
      "          'tries': 1,\n",
      "          'remained': 1,\n",
      "          'focused': 1,\n",
      "          'nthen': 1,\n",
      "          'meets': 1,\n",
      "          'tenley': 1,\n",
      "          'parrish': 1,\n",
      "          'jessica': 1,\n",
      "          'biel': 1,\n",
      "          'daughter': 1,\n",
      "          'blue': 1,\n",
      "          'bloods': 1,\n",
      "          'whose': 1,\n",
      "          'lawn': 1,\n",
      "          'manicures': 1,\n",
      "          'ntenley': 1,\n",
      "          'name': 1,\n",
      "          'hack': 1,\n",
      "          'screenwriter': 1,\n",
      "          'invent': 1,\n",
      "          'unlike': 1,\n",
      "          'snobbish': 1,\n",
      "          'counterparts': 1,\n",
      "          'nif': 1,\n",
      "          'cant': 1,\n",
      "          'figure': 1,\n",
      "          'nonsense': 1,\n",
      "          'leads': 1,\n",
      "          'need': 1,\n",
      "          'remedial': 1,\n",
      "          'course': 1,\n",
      "          'film': 1,\n",
      "          'viewing': 1,\n",
      "          'nas': 1,\n",
      "          'pretty': 1,\n",
      "          'look': 1,\n",
      "          'performance': 1,\n",
      "          'mainly': 1,\n",
      "          'consists': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'puppy': 1,\n",
      "          'dog': 1,\n",
      "          'heartbreak': 1,\n",
      "          'frustration': 1,\n",
      "          'selfloathing': 1,\n",
      "          'determination': 1,\n",
      "          'nbiel': 1,\n",
      "          'cries': 1,\n",
      "          'lot': 1,\n",
      "          'bruce': 1,\n",
      "          'davison': 1,\n",
      "          'acts': 1,\n",
      "          'smarmy': 1,\n",
      "          'classconscious': 1,\n",
      "          'father': 1,\n",
      "          'beacon': 1,\n",
      "          'matthew': 1,\n",
      "          'lillards': 1,\n",
      "          'funloving': 1,\n",
      "          'billy': 1,\n",
      "          'brubaker': 1,\n",
      "          'teams': 1,\n",
      "          'catcher': 1,\n",
      "          'borrows': 1,\n",
      "          'situations': 1,\n",
      "          'stylings': 1,\n",
      "          'movies': 1,\n",
      "          'bull': 1,\n",
      "          'durham': 1,\n",
      "          'natural': 1,\n",
      "          'nno': 1,\n",
      "          'curve': 1,\n",
      "          'balls': 1,\n",
      "          'sliders': 1,\n",
      "          'nevery': 1,\n",
      "          'pitch': 1,\n",
      "          'predictable': 1,\n",
      "          'na': 1,\n",
      "          'blind': 1,\n",
      "          'umpire': 1,\n",
      "          'call': 1,\n",
      "          'strictly': 1,\n",
      "          'rookie': 1,\n",
      "          'moviemaking': 1,\n",
      "          'nit': 1,\n",
      "          'much': 1,\n",
      "          'chance': 1,\n",
      "          'making': 1,\n",
      "          'hall': 1,\n",
      "          'fame': 1,\n",
      "          'dodgers': 1,\n",
      "          'moving': 1,\n",
      "          'back': 1,\n",
      "          'brooklyn': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 13,\n",
      "          'rock': 12,\n",
      "          'like': 10,\n",
      "          'kiss': 9,\n",
      "          'detroit': 8,\n",
      "          'city': 7,\n",
      "          'nits': 7,\n",
      "          'see': 7,\n",
      "          'film': 6,\n",
      "          'n': 6,\n",
      "          'ni': 6,\n",
      "          'got': 6,\n",
      "          'get': 6,\n",
      "          'tickets': 6,\n",
      "          'really': 6,\n",
      "          'na': 5,\n",
      "          'nthe': 5,\n",
      "          'nthey': 5,\n",
      "          'one': 4,\n",
      "          'probably': 4,\n",
      "          'roll': 4,\n",
      "          'time': 4,\n",
      "          'trying': 4,\n",
      "          'minutes': 4,\n",
      "          'soundtrack': 4,\n",
      "          'far': 4,\n",
      "          'nfunny': 4,\n",
      "          'might': 3,\n",
      "          'ive': 3,\n",
      "          'something': 3,\n",
      "          'fun': 3,\n",
      "          'funny': 3,\n",
      "          'plot': 3,\n",
      "          'nothing': 3,\n",
      "          'band': 3,\n",
      "          'bands': 3,\n",
      "          'much': 3,\n",
      "          'go': 3,\n",
      "          'waste': 3,\n",
      "          'music': 3,\n",
      "          'script': 3,\n",
      "          'setup': 3,\n",
      "          'nlook': 3,\n",
      "          'nsee': 3,\n",
      "          'fans': 2,\n",
      "          'teenage': 2,\n",
      "          'thing': 2,\n",
      "          'didnt': 2,\n",
      "          'expected': 2,\n",
      "          'clever': 2,\n",
      "          'come': 2,\n",
      "          'films': 2,\n",
      "          'boys': 2,\n",
      "          'nthats': 2,\n",
      "          'nthere': 2,\n",
      "          'big': 2,\n",
      "          'little': 2,\n",
      "          'furlong': 2,\n",
      "          'jam': 2,\n",
      "          'garage': 2,\n",
      "          'means': 2,\n",
      "          'lose': 2,\n",
      "          'becomes': 2,\n",
      "          'already': 2,\n",
      "          'sheer': 2,\n",
      "          'stupidity': 2,\n",
      "          'name': 2,\n",
      "          'doesnt': 2,\n",
      "          'want': 2,\n",
      "          'quite': 2,\n",
      "          'pointless': 2,\n",
      "          'acdc': 2,\n",
      "          'ramones': 2,\n",
      "          'reach': 2,\n",
      "          'gets': 2,\n",
      "          'nin': 2,\n",
      "          'fact': 2,\n",
      "          'keeps': 2,\n",
      "          'cover': 2,\n",
      "          'sounds': 2,\n",
      "          'work': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'five': 2,\n",
      "          'camera': 2,\n",
      "          'felt': 2,\n",
      "          'witch': 2,\n",
      "          'dupr': 2,\n",
      "          'jokes': 2,\n",
      "          'actually': 2,\n",
      "          'dont': 2,\n",
      "          'said': 2,\n",
      "          'money': 2,\n",
      "          'rent': 2,\n",
      "          'responses': 1,\n",
      "          'enjoy': 1,\n",
      "          'mostly': 1,\n",
      "          'upon': 1,\n",
      "          'first': 1,\n",
      "          'glance': 1,\n",
      "          'rating': 1,\n",
      "          'given': 1,\n",
      "          'oh': 1,\n",
      "          'caseys': 1,\n",
      "          'gone': 1,\n",
      "          'become': 1,\n",
      "          'jaded': 1,\n",
      "          'critic': 1,\n",
      "          'us': 1,\n",
      "          'njust': 1,\n",
      "          'expect': 1,\n",
      "          'dumb': 1,\n",
      "          'nim': 1,\n",
      "          'wondering': 1,\n",
      "          'feel': 1,\n",
      "          'grand': 1,\n",
      "          'sort': 1,\n",
      "          'wish': 1,\n",
      "          'couldve': 1,\n",
      "          'lot': 1,\n",
      "          'nsurely': 1,\n",
      "          'isnt': 1,\n",
      "          'win': 1,\n",
      "          'major': 1,\n",
      "          'awards': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'nno': 1,\n",
      "          'joke': 1,\n",
      "          'prank': 1,\n",
      "          'development': 1,\n",
      "          'nanything': 1,\n",
      "          'never': 1,\n",
      "          'delivers': 1,\n",
      "          'nyouve': 1,\n",
      "          'marvel': 1,\n",
      "          'filmmakers': 1,\n",
      "          'managed': 1,\n",
      "          'truly': 1,\n",
      "          'walk': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'realize': 1,\n",
      "          'spent': 1,\n",
      "          '90': 1,\n",
      "          'watching': 1,\n",
      "          'absolutely': 1,\n",
      "          'happened': 1,\n",
      "          'justify': 1,\n",
      "          'existence': 1,\n",
      "          'satisfying': 1,\n",
      "          'realization': 1,\n",
      "          'four': 1,\n",
      "          'huge': 1,\n",
      "          'cleveland': 1,\n",
      "          'concert': 1,\n",
      "          'michigan': 1,\n",
      "          'description': 1,\n",
      "          'review': 1,\n",
      "          'characters': 1,\n",
      "          'hawk': 1,\n",
      "          'edward': 1,\n",
      "          'lex': 1,\n",
      "          'giuseppe': 1,\n",
      "          'andrews': 1,\n",
      "          'trip': 1,\n",
      "          'james': 1,\n",
      "          'debello': 1,\n",
      "          'sam': 1,\n",
      "          'huntington': 1,\n",
      "          'ntheyre': 1,\n",
      "          'pathetic': 1,\n",
      "          'guess': 1,\n",
      "          'root': 1,\n",
      "          'crazy': 1,\n",
      "          'schemes': 1,\n",
      "          'backfire': 1,\n",
      "          'ntheres': 1,\n",
      "          'nfrankly': 1,\n",
      "          'less': 1,\n",
      "          'exciting': 1,\n",
      "          'try': 1,\n",
      "          'halfway': 1,\n",
      "          'total': 1,\n",
      "          'eight': 1,\n",
      "          'graced': 1,\n",
      "          'hands': 1,\n",
      "          'lost': 1,\n",
      "          'noh': 1,\n",
      "          'real': 1,\n",
      "          'jeremiah': 1,\n",
      "          'annoying': 1,\n",
      "          'ultrareligious': 1,\n",
      "          'mother': 1,\n",
      "          'ought': 1,\n",
      "          'reported': 1,\n",
      "          'child': 1,\n",
      "          'welfare': 1,\n",
      "          'agency': 1,\n",
      "          'nshe': 1,\n",
      "          'hadnt': 1,\n",
      "          'figured': 1,\n",
      "          'disheartening': 1,\n",
      "          'fine': 1,\n",
      "          'nweve': 1,\n",
      "          'plenty': 1,\n",
      "          'along': 1,\n",
      "          'thin': 1,\n",
      "          'lizzy': 1,\n",
      "          'nthen': 1,\n",
      "          'maximum': 1,\n",
      "          'overdrive': 1,\n",
      "          'awesome': 1,\n",
      "          'fan': 1,\n",
      "          'worst': 1,\n",
      "          'movies': 1,\n",
      "          'level': 1,\n",
      "          'ineptitude': 1,\n",
      "          'dangerously': 1,\n",
      "          'close': 1,\n",
      "          'complete': 1,\n",
      "          'failure': 1,\n",
      "          'mind': 1,\n",
      "          'nbasically': 1,\n",
      "          'earned': 1,\n",
      "          'full': 1,\n",
      "          'halfstar': 1,\n",
      "          'involved': 1,\n",
      "          'pat': 1,\n",
      "          'back': 1,\n",
      "          'except': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'whose': 1,\n",
      "          'halfhearted': 1,\n",
      "          'acdcs': 1,\n",
      "          'highway': 1,\n",
      "          'hell': 1,\n",
      "          'neighbors': 1,\n",
      "          'cat': 1,\n",
      "          'coughed': 1,\n",
      "          'also': 1,\n",
      "          'sad': 1,\n",
      "          'talents': 1,\n",
      "          'cast': 1,\n",
      "          'evident': 1,\n",
      "          'theyre': 1,\n",
      "          'hard': 1,\n",
      "          'squeeze': 1,\n",
      "          'life': 1,\n",
      "          'dead': 1,\n",
      "          'turkey': 1,\n",
      "          'nedward': 1,\n",
      "          'done': 1,\n",
      "          'better': 1,\n",
      "          'natasha': 1,\n",
      "          'lyonne': 1,\n",
      "          'lin': 1,\n",
      "          'shaye': 1,\n",
      "          'hey': 1,\n",
      "          'theyve': 1,\n",
      "          'make': 1,\n",
      "          'living': 1,\n",
      "          'hollywood': 1,\n",
      "          'npeople': 1,\n",
      "          'wanting': 1,\n",
      "          'lots': 1,\n",
      "          'disappointed': 1,\n",
      "          'considering': 1,\n",
      "          'appears': 1,\n",
      "          'plays': 1,\n",
      "          'song': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'provided': 1,\n",
      "          'energy': 1,\n",
      "          'mess': 1,\n",
      "          'ndirector': 1,\n",
      "          'adam': 1,\n",
      "          'rifkin': 1,\n",
      "          'knows': 1,\n",
      "          'hasnt': 1,\n",
      "          'material': 1,\n",
      "          'takes': 1,\n",
      "          'chapter': 1,\n",
      "          'michael': 1,\n",
      "          'bay': 1,\n",
      "          'book': 1,\n",
      "          'directing': 1,\n",
      "          'spinning': 1,\n",
      "          'nwe': 1,\n",
      "          'endless': 1,\n",
      "          'parade': 1,\n",
      "          'quickcuts': 1,\n",
      "          'splitscreens': 1,\n",
      "          'zoomouts': 1,\n",
      "          'zoomins': 1,\n",
      "          'rotating': 1,\n",
      "          'cameras': 1,\n",
      "          'effort': 1,\n",
      "          'eventually': 1,\n",
      "          'disorienting': 1,\n",
      "          'would': 1,\n",
      "          'recommend': 1,\n",
      "          'seasick': 1,\n",
      "          'blair': 1,\n",
      "          'project': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'baby': 1,\n",
      "          'havent': 1,\n",
      "          'urge': 1,\n",
      "          'hold': 1,\n",
      "          'still': 1,\n",
      "          'since': 1,\n",
      "          'armageddon': 1,\n",
      "          'nand': 1,\n",
      "          'written': 1,\n",
      "          'carl': 1,\n",
      "          'j': 1,\n",
      "          'madeup': 1,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'nif': 1,\n",
      "          'cant': 1,\n",
      "          'say': 1,\n",
      "          'blame': 1,\n",
      "          'writer': 1,\n",
      "          'distancing': 1,\n",
      "          'possible': 1,\n",
      "          'plotless': 1,\n",
      "          'gags': 1,\n",
      "          'rarely': 1,\n",
      "          'laughed': 1,\n",
      "          'priest': 1,\n",
      "          'stoned': 1,\n",
      "          'marijuanalaced': 1,\n",
      "          'pizza': 1,\n",
      "          'surreal': 1,\n",
      "          'rest': 1,\n",
      "          'seems': 1,\n",
      "          'threw': 1,\n",
      "          'bunch': 1,\n",
      "          'vulgar': 1,\n",
      "          'stuff': 1,\n",
      "          'screen': 1,\n",
      "          'called': 1,\n",
      "          'comedy': 1,\n",
      "          'succession': 1,\n",
      "          'punchlines': 1,\n",
      "          'provide': 1,\n",
      "          'way': 1,\n",
      "          'chuckles': 1,\n",
      "          'precisely': 1,\n",
      "          'whacked': 1,\n",
      "          'someone': 1,\n",
      "          'head': 1,\n",
      "          'pointed': 1,\n",
      "          'woman': 1,\n",
      "          'shocked': 1,\n",
      "          'hearing': 1,\n",
      "          'loud': 1,\n",
      "          'spilled': 1,\n",
      "          'drink': 1,\n",
      "          'guy': 1,\n",
      "          'clocked': 1,\n",
      "          'telephone': 1,\n",
      "          'receiver': 1,\n",
      "          'ntwice': 1,\n",
      "          'kid': 1,\n",
      "          'vomiting': 1,\n",
      "          '20': 1,\n",
      "          'drinking': 1,\n",
      "          'inordinate': 1,\n",
      "          'amount': 1,\n",
      "          'alcohol': 1,\n",
      "          'perform': 1,\n",
      "          'exotic': 1,\n",
      "          'dance': 1,\n",
      "          'word': 1,\n",
      "          'advice': 1,\n",
      "          'mr': 1,\n",
      "          'things': 1,\n",
      "          'arent': 1,\n",
      "          'must': 1,\n",
      "          'preceded': 1,\n",
      "          'audience': 1,\n",
      "          'predicted': 1,\n",
      "          'advance': 1,\n",
      "          'enough': 1,\n",
      "          'liked': 1,\n",
      "          'bother': 1,\n",
      "          'buying': 1,\n",
      "          'hear': 1,\n",
      "          'modern': 1,\n",
      "          'inferior': 1,\n",
      "          'versions': 1,\n",
      "          'songs': 1,\n",
      "          'nyou': 1,\n",
      "          'concept': 1,\n",
      "          'executed': 1,\n",
      "          'well': 1,\n",
      "          'ngo': 1,\n",
      "          'roger': 1,\n",
      "          'cormans': 1,\n",
      "          '1979': 1,\n",
      "          'classic': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'nit': 1,\n",
      "          'features': 1,\n",
      "          'another': 1,\n",
      "          'lateseventies': 1,\n",
      "          'interesting': 1,\n",
      "          'story': 1,\n",
      "          'girl': 1,\n",
      "          'show': 1,\n",
      "          'nyes': 1,\n",
      "          'skip': 1,\n",
      "          'bomb': 1,\n",
      "          'deservedly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'every': 4,\n",
      "          'bad': 3,\n",
      "          'supporting': 3,\n",
      "          'big': 3,\n",
      "          'brothers': 3,\n",
      "          'two': 2,\n",
      "          'walter': 2,\n",
      "          'news': 2,\n",
      "          'bears': 2,\n",
      "          'still': 2,\n",
      "          'strong': 2,\n",
      "          'soccer': 2,\n",
      "          'knows': 2,\n",
      "          'best': 2,\n",
      "          'character': 2,\n",
      "          'better': 2,\n",
      "          'music': 2,\n",
      "          'comedy': 2,\n",
      "          'score': 2,\n",
      "          'work': 2,\n",
      "          'scene': 2,\n",
      "          'nan': 2,\n",
      "          'adventure': 2,\n",
      "          'director': 2,\n",
      "          'four': 2,\n",
      "          'story': 2,\n",
      "          'peter': 2,\n",
      "          'diverse': 2,\n",
      "          'cast': 2,\n",
      "          'alan': 2,\n",
      "          'enough': 2,\n",
      "          'one': 2,\n",
      "          'mosleys': 2,\n",
      "          'plots': 2,\n",
      "          'nthey': 2,\n",
      "          'opposing': 2,\n",
      "          'really': 1,\n",
      "          'decades': 1,\n",
      "          'since': 1,\n",
      "          'matthau': 1,\n",
      "          'coached': 1,\n",
      "          'nnineteen': 1,\n",
      "          'years': 1,\n",
      "          'mighty': 1,\n",
      "          'ducks': 1,\n",
      "          'later': 1,\n",
      "          'formula': 1,\n",
      "          'going': 1,\n",
      "          'npolice': 1,\n",
      "          'academy': 1,\n",
      "          'graduate': 1,\n",
      "          'steve': 1,\n",
      "          'guttenberg': 1,\n",
      "          'stars': 1,\n",
      "          'smalltown': 1,\n",
      "          'deputy': 1,\n",
      "          'sheriff': 1,\n",
      "          'corralled': 1,\n",
      "          'cocoaching': 1,\n",
      "          'schools': 1,\n",
      "          'hastily': 1,\n",
      "          'formed': 1,\n",
      "          'team': 1,\n",
      "          'nhis': 1,\n",
      "          'partnerincrime': 1,\n",
      "          'new': 1,\n",
      "          'british': 1,\n",
      "          'exchange': 1,\n",
      "          'teacher': 1,\n",
      "          'olivia': 1,\n",
      "          'dabo': 1,\n",
      "          'lively': 1,\n",
      "          'lass': 1,\n",
      "          'obviously': 1,\n",
      "          'seen': 1,\n",
      "          'dangerous': 1,\n",
      "          'minds': 1,\n",
      "          'way': 1,\n",
      "          'gain': 1,\n",
      "          'respect': 1,\n",
      "          'disinterested': 1,\n",
      "          'outercity': 1,\n",
      "          'audience': 1,\n",
      "          'teach': 1,\n",
      "          'something': 1,\n",
      "          'neat': 1,\n",
      "          'nlike': 1,\n",
      "          'nmost': 1,\n",
      "          'goodnatured': 1,\n",
      "          'gags': 1,\n",
      "          'fastmotion': 1,\n",
      "          'variety': 1,\n",
      "          'runaway': 1,\n",
      "          'cows': 1,\n",
      "          'outofcontrol': 1,\n",
      "          'lawnmowers': 1,\n",
      "          'nkids': 1,\n",
      "          'laugh': 1,\n",
      "          'occasional': 1,\n",
      "          'belching': 1,\n",
      "          'bit': 1,\n",
      "          'parents': 1,\n",
      "          'peacefully': 1,\n",
      "          'doze': 1,\n",
      "          'beside': 1,\n",
      "          'nother': 1,\n",
      "          'letting': 1,\n",
      "          'named': 1,\n",
      "          'newt': 1,\n",
      "          'go': 1,\n",
      "          'unscathed': 1,\n",
      "          'whats': 1,\n",
      "          'missing': 1,\n",
      "          'green': 1,\n",
      "          'integration': 1,\n",
      "          'ninstead': 1,\n",
      "          'peppy': 1,\n",
      "          'pop': 1,\n",
      "          'would': 1,\n",
      "          'arguably': 1,\n",
      "          'effect': 1,\n",
      "          'action': 1,\n",
      "          'set': 1,\n",
      "          'bombastic': 1,\n",
      "          'orchestral': 1,\n",
      "          'belongs': 1,\n",
      "          'somewhere': 1,\n",
      "          'else': 1,\n",
      "          'ncomedy': 1,\n",
      "          'needs': 1,\n",
      "          'njust': 1,\n",
      "          'watch': 1,\n",
      "          'old': 1,\n",
      "          'bugs': 1,\n",
      "          'bunny': 1,\n",
      "          'short': 1,\n",
      "          'marx': 1,\n",
      "          'knew': 1,\n",
      "          'nmel': 1,\n",
      "          'brooks': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'current': 1,\n",
      "          'trend': 1,\n",
      "          'overscore': 1,\n",
      "          'nlush': 1,\n",
      "          'strings': 1,\n",
      "          'booming': 1,\n",
      "          'brass': 1,\n",
      "          'moment': 1,\n",
      "          'nremember': 1,\n",
      "          'simple': 1,\n",
      "          'strains': 1,\n",
      "          'bizets': 1,\n",
      "          'habanera': 1,\n",
      "          'original': 1,\n",
      "          'nthese': 1,\n",
      "          'days': 1,\n",
      "          'usually': 1,\n",
      "          'bellowing': 1,\n",
      "          'fanfare': 1,\n",
      "          'threatens': 1,\n",
      "          'smother': 1,\n",
      "          'path': 1,\n",
      "          'nmuch': 1,\n",
      "          'like': 1,\n",
      "          'adding': 1,\n",
      "          'frosting': 1,\n",
      "          'already': 1,\n",
      "          'frosted': 1,\n",
      "          'cake': 1,\n",
      "          'awfully': 1,\n",
      "          'reteaming': 1,\n",
      "          'mike': 1,\n",
      "          'newell': 1,\n",
      "          'star': 1,\n",
      "          'hugh': 1,\n",
      "          'grant': 1,\n",
      "          'far': 1,\n",
      "          'removed': 1,\n",
      "          'get': 1,\n",
      "          'lightsome': 1,\n",
      "          'weddings': 1,\n",
      "          'funeral': 1,\n",
      "          'ntheir': 1,\n",
      "          'second': 1,\n",
      "          'collaboration': 1,\n",
      "          'downbeat': 1,\n",
      "          'theatrical': 1,\n",
      "          'drama': 1,\n",
      "          'young': 1,\n",
      "          'intern': 1,\n",
      "          'georgina': 1,\n",
      "          'cates': 1,\n",
      "          'struggling': 1,\n",
      "          'survive': 1,\n",
      "          'postw': 1,\n",
      "          'w': 1,\n",
      "          'ii': 1,\n",
      "          'nliverpool': 1,\n",
      "          'nhugh': 1,\n",
      "          'plays': 1,\n",
      "          'gay': 1,\n",
      "          'extremely': 1,\n",
      "          'unappealing': 1,\n",
      "          'may': 1,\n",
      "          'alienate': 1,\n",
      "          'whatever': 1,\n",
      "          'fans': 1,\n",
      "          'left': 1,\n",
      "          'nonsense': 1,\n",
      "          'nine': 1,\n",
      "          'months': 1,\n",
      "          'nbleak': 1,\n",
      "          'makeup': 1,\n",
      "          'thick': 1,\n",
      "          'accents': 1,\n",
      "          'conspire': 1,\n",
      "          'make': 1,\n",
      "          'difficult': 1,\n",
      "          'settle': 1,\n",
      "          'awful': 1,\n",
      "          'without': 1,\n",
      "          'rewards': 1,\n",
      "          'tho': 1,\n",
      "          'pan': 1,\n",
      "          'subtext': 1,\n",
      "          'intriguing': 1,\n",
      "          'nas': 1,\n",
      "          'ensemble': 1,\n",
      "          'includes': 1,\n",
      "          'firth': 1,\n",
      "          'rickman': 1,\n",
      "          'prunella': 1,\n",
      "          'scales': 1,\n",
      "          'nbasil': 1,\n",
      "          'ndevil': 1,\n",
      "          'blue': 1,\n",
      "          'dress': 1,\n",
      "          'comparisons': 1,\n",
      "          'chinatown': 1,\n",
      "          'easy': 1,\n",
      "          'except': 1,\n",
      "          'fact': 1,\n",
      "          'film': 1,\n",
      "          'isnt': 1,\n",
      "          'nearly': 1,\n",
      "          'gripping': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'carl': 1,\n",
      "          'franklin': 1,\n",
      "          'false': 1,\n",
      "          'move': 1,\n",
      "          'force': 1,\n",
      "          'behind': 1,\n",
      "          'accomplishedbutstiff': 1,\n",
      "          'adaptation': 1,\n",
      "          'crime': 1,\n",
      "          'novel': 1,\n",
      "          'ndenzel': 1,\n",
      "          'washington': 1,\n",
      "          'sturdy': 1,\n",
      "          'ever': 1,\n",
      "          'hes': 1,\n",
      "          'burdened': 1,\n",
      "          'miscast': 1,\n",
      "          'ntom': 1,\n",
      "          'sizemore': 1,\n",
      "          'scenestealer': 1,\n",
      "          'cheadle': 1,\n",
      "          'fine': 1,\n",
      "          'problems': 1,\n",
      "          'start': 1,\n",
      "          'jennifer': 1,\n",
      "          'beales': 1,\n",
      "          'never': 1,\n",
      "          'registers': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'nshes': 1,\n",
      "          'pretty': 1,\n",
      "          'face': 1,\n",
      "          'nothing': 1,\n",
      "          'nalso': 1,\n",
      "          'underweight': 1,\n",
      "          'maury': 1,\n",
      "          'chaykin': 1,\n",
      "          'terry': 1,\n",
      "          'kinney': 1,\n",
      "          'play': 1,\n",
      "          'mayoral': 1,\n",
      "          'candidates': 1,\n",
      "          '1948': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'neither': 1,\n",
      "          'actor': 1,\n",
      "          'commands': 1,\n",
      "          'authority': 1,\n",
      "          'stifle': 1,\n",
      "          'giggles': 1,\n",
      "          'njohn': 1,\n",
      "          'huston': 1,\n",
      "          'miss': 1,\n",
      "          'nfine': 1,\n",
      "          'period': 1,\n",
      "          'detail': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'plus': 1,\n",
      "          'help': 1,\n",
      "          'overcome': 1,\n",
      "          'pace': 1,\n",
      "          'thats': 1,\n",
      "          'polite': 1,\n",
      "          'jazzy': 1,\n",
      "          'swingin': 1,\n",
      "          'nsteal': 1,\n",
      "          'steal': 1,\n",
      "          'little': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'say': 1,\n",
      "          'much': 1,\n",
      "          'ndirector': 1,\n",
      "          'andrew': 1,\n",
      "          'davis': 1,\n",
      "          'follows': 1,\n",
      "          'fugitive': 1,\n",
      "          'wildly': 1,\n",
      "          'unfunny': 1,\n",
      "          'farce': 1,\n",
      "          'twin': 1,\n",
      "          'andy': 1,\n",
      "          'garcia': 1,\n",
      "          'moral': 1,\n",
      "          'codes': 1,\n",
      "          'ntheyre': 1,\n",
      "          'fighting': 1,\n",
      "          'adoptive': 1,\n",
      "          'mothers': 1,\n",
      "          'estate': 1,\n",
      "          '40': 1,\n",
      "          '000acre': 1,\n",
      "          'ranch': 1,\n",
      "          'worth': 1,\n",
      "          'millions': 1,\n",
      "          'dozens': 1,\n",
      "          'migrant': 1,\n",
      "          'farm': 1,\n",
      "          'workers': 1,\n",
      "          'nso': 1,\n",
      "          'many': 1,\n",
      "          'different': 1,\n",
      "          'trying': 1,\n",
      "          'come': 1,\n",
      "          'togetherfeuding': 1,\n",
      "          'reconciling': 1,\n",
      "          'husbands': 1,\n",
      "          'loanshark': 1,\n",
      "          'hired': 1,\n",
      "          'hitmenthat': 1,\n",
      "          'admire': 1,\n",
      "          'directors': 1,\n",
      "          'ambition': 1,\n",
      "          'ntoo': 1,\n",
      "          'almost': 1,\n",
      "          'single': 1,\n",
      "          'person': 1,\n",
      "          'plotline': 1,\n",
      "          'sync': 1,\n",
      "          'nthat': 1,\n",
      "          'exception': 1,\n",
      "          'arkin': 1,\n",
      "          'nhes': 1,\n",
      "          'thing': 1,\n",
      "          'movie': 1,\n",
      "          'thatdespite': 1,\n",
      "          'credited': 1,\n",
      "          'writers': 1,\n",
      "          'manages': 1,\n",
      "          'waste': 1,\n",
      "          'talents': 1,\n",
      "          'david': 1,\n",
      "          'odgen': 1,\n",
      "          'stiers': 1,\n",
      "          'kevin': 1,\n",
      "          'mccarthy': 1,\n",
      "          'joe': 1,\n",
      "          'pantolinao': 1,\n",
      "          'nand': 1,\n",
      "          'heck': 1,\n",
      "          'title': 1,\n",
      "          'mean': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'nthe': 5,\n",
      "          'one': 3,\n",
      "          'like': 3,\n",
      "          'lion': 3,\n",
      "          'good': 2,\n",
      "          'ways': 2,\n",
      "          'nature': 2,\n",
      "          'nwhat': 2,\n",
      "          'get': 2,\n",
      "          'end': 2,\n",
      "          'build': 2,\n",
      "          'nhe': 2,\n",
      "          'lions': 2,\n",
      "          'hasnt': 2,\n",
      "          'else': 2,\n",
      "          'ni': 2,\n",
      "          'funny': 1,\n",
      "          'expectations': 1,\n",
      "          'defeated': 1,\n",
      "          'ghost': 1,\n",
      "          'darkness': 1,\n",
      "          'promised': 1,\n",
      "          'least': 1,\n",
      "          'seemed': 1,\n",
      "          'promise': 1,\n",
      "          'hemingwayesque': 1,\n",
      "          'showdown': 1,\n",
      "          'men': 1,\n",
      "          'delivered': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theater': 1,\n",
      "          '3000level': 1,\n",
      "          'material': 1,\n",
      "          'inadvertently': 1,\n",
      "          'hilarious': 1,\n",
      "          'story': 1,\n",
      "          'made': 1,\n",
      "          'scream': 1,\n",
      "          'advice': 1,\n",
      "          'characters': 1,\n",
      "          'n': 1,\n",
      "          'new': 1,\n",
      "          'jobs': 1,\n",
      "          'nwas': 1,\n",
      "          'line': 1,\n",
      "          'remember': 1,\n",
      "          'correctly': 1,\n",
      "          'nat': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'col': 1,\n",
      "          'patterson': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'whose': 1,\n",
      "          'irish': 1,\n",
      "          'accent': 1,\n",
      "          'comes': 1,\n",
      "          'goes': 1,\n",
      "          'african': 1,\n",
      "          'zephyr': 1,\n",
      "          'engineer': 1,\n",
      "          'hired': 1,\n",
      "          'british': 1,\n",
      "          'railway': 1,\n",
      "          'bridge': 1,\n",
      "          'across': 1,\n",
      "          'tsavo': 1,\n",
      "          'river': 1,\n",
      "          'uganda': 1,\n",
      "          'immensely': 1,\n",
      "          'stereotypical': 1,\n",
      "          'problems': 1,\n",
      "          'natives': 1,\n",
      "          'restless': 1,\n",
      "          'boss': 1,\n",
      "          'jerk': 1,\n",
      "          'two': 1,\n",
      "          'maneating': 1,\n",
      "          'stalking': 1,\n",
      "          'work': 1,\n",
      "          'camp': 1,\n",
      "          'killing': 1,\n",
      "          'people': 1,\n",
      "          'npatterson': 1,\n",
      "          'tries': 1,\n",
      "          'handle': 1,\n",
      "          'situation': 1,\n",
      "          'incompetently': 1,\n",
      "          'turns': 1,\n",
      "          'charles': 1,\n",
      "          'remington': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'hunter': 1,\n",
      "          'world': 1,\n",
      "          'reknown': 1,\n",
      "          'something': 1,\n",
      "          'stacks': 1,\n",
      "          'deck': 1,\n",
      "          'heavily': 1,\n",
      "          'favor': 1,\n",
      "          'gotten': 1,\n",
      "          'top': 1,\n",
      "          'billing': 1,\n",
      "          'costarred': 1,\n",
      "          'siegfried': 1,\n",
      "          'roy': 1,\n",
      "          'nthey': 1,\n",
      "          'nighinvulnerable': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'put': 1,\n",
      "          'course': 1,\n",
      "          'excuse': 1,\n",
      "          'needs': 1,\n",
      "          'native': 1,\n",
      "          'another': 1,\n",
      "          'stepping': 1,\n",
      "          'forth': 1,\n",
      "          'solmenly': 1,\n",
      "          'recite': 1,\n",
      "          'lines': 1,\n",
      "          'power': 1,\n",
      "          'ngive': 1,\n",
      "          'break': 1,\n",
      "          'got': 1,\n",
      "          'wherewithal': 1,\n",
      "          'even': 1,\n",
      "          'begin': 1,\n",
      "          'exploit': 1,\n",
      "          'ideas': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'convenient': 1,\n",
      "          'stall': 1,\n",
      "          'us': 1,\n",
      "          'neven': 1,\n",
      "          'hunts': 1,\n",
      "          'idiotic': 1,\n",
      "          'nget': 1,\n",
      "          'remingtons': 1,\n",
      "          'big': 1,\n",
      "          'plan': 1,\n",
      "          'large': 1,\n",
      "          'scaffoldlike': 1,\n",
      "          'structure': 1,\n",
      "          'middle': 1,\n",
      "          'savannah': 1,\n",
      "          'sit': 1,\n",
      "          'wait': 1,\n",
      "          'show': 1,\n",
      "          'gets': 1,\n",
      "          'knocked': 1,\n",
      "          'bird': 1,\n",
      "          'nby': 1,\n",
      "          'blood': 1,\n",
      "          'vessels': 1,\n",
      "          'palm': 1,\n",
      "          'broken': 1,\n",
      "          'open': 1,\n",
      "          'pounding': 1,\n",
      "          'forehead': 1,\n",
      "          'hand': 1,\n",
      "          'acting': 1,\n",
      "          'forgettable': 1,\n",
      "          'ndouglas': 1,\n",
      "          'job': 1,\n",
      "          'portraying': 1,\n",
      "          'relatively': 1,\n",
      "          'cracked': 1,\n",
      "          'fellow': 1,\n",
      "          'nothing': 1,\n",
      "          'done': 1,\n",
      "          'nkilmer': 1,\n",
      "          'looks': 1,\n",
      "          'wishes': 1,\n",
      "          'someone': 1,\n",
      "          'somewhere': 1,\n",
      "          'rest': 1,\n",
      "          'vanish': 1,\n",
      "          'cinematography': 1,\n",
      "          'camera': 1,\n",
      "          'way': 1,\n",
      "          'sometimes': 1,\n",
      "          'behaves': 1,\n",
      "          'stupidly': 1,\n",
      "          'attacks': 1,\n",
      "          'incoherent': 1,\n",
      "          'expect': 1,\n",
      "          'dunno': 1,\n",
      "          'nsome': 1,\n",
      "          'real': 1,\n",
      "          'excitement': 1,\n",
      "          'suppose': 1,\n",
      "          'na': 1,\n",
      "          'sense': 1,\n",
      "          'formidable': 1,\n",
      "          'forces': 1,\n",
      "          'sides': 1,\n",
      "          'equation': 1,\n",
      "          'nno': 1,\n",
      "          'luck': 1,\n",
      "          'dug': 1,\n",
      "          'tattered': 1,\n",
      "          'copy': 1,\n",
      "          'hemingways': 1,\n",
      "          'short': 1,\n",
      "          'happy': 1,\n",
      "          'life': 1,\n",
      "          'francis': 1,\n",
      "          'macomber': 1,\n",
      "          'read': 1,\n",
      "          'taste': 1,\n",
      "          'mind': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cop': 10,\n",
      "          'film': 9,\n",
      "          'tough': 7,\n",
      "          'one': 6,\n",
      "          'good': 4,\n",
      "          'nbut': 4,\n",
      "          'partner': 3,\n",
      "          'case': 3,\n",
      "          'saw': 3,\n",
      "          'get': 2,\n",
      "          'much': 2,\n",
      "          'renegade': 2,\n",
      "          'loser': 2,\n",
      "          'nthe': 2,\n",
      "          'guys': 2,\n",
      "          'really': 2,\n",
      "          'nothing': 2,\n",
      "          'middle': 2,\n",
      "          'guy': 2,\n",
      "          'mafia': 2,\n",
      "          'top': 2,\n",
      "          'throw': 2,\n",
      "          'back': 2,\n",
      "          'michael': 2,\n",
      "          'slips': 2,\n",
      "          'impression': 2,\n",
      "          'brother': 2,\n",
      "          'also': 2,\n",
      "          'even': 2,\n",
      "          'better': 2,\n",
      "          'nit': 2,\n",
      "          'sidney': 2,\n",
      "          'isnt': 2,\n",
      "          'unfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'formulaic': 1,\n",
      "          'ntheres': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'explain': 1,\n",
      "          'prove': 1,\n",
      "          'name': 1,\n",
      "          'trapped': 1,\n",
      "          'bad': 1,\n",
      "          'woman': 1,\n",
      "          'story': 1,\n",
      "          'purpose': 1,\n",
      "          'providing': 1,\n",
      "          'sex': 1,\n",
      "          'hero': 1,\n",
      "          'nbo': 1,\n",
      "          'dietl': 1,\n",
      "          'pronounced': 1,\n",
      "          'deedle': 1,\n",
      "          'baldwin': 1,\n",
      "          'investigated': 1,\n",
      "          'hardass': 1,\n",
      "          'fbi': 1,\n",
      "          'agents': 1,\n",
      "          'due': 1,\n",
      "          'association': 1,\n",
      "          'ny': 1,\n",
      "          'non': 1,\n",
      "          'problem': 1,\n",
      "          'drunk': 1,\n",
      "          'gambling': 1,\n",
      "          'addicted': 1,\n",
      "          'penn': 1,\n",
      "          'penchant': 1,\n",
      "          'collecting': 1,\n",
      "          'parking': 1,\n",
      "          'tickets': 1,\n",
      "          'guess': 1,\n",
      "          'cops': 1,\n",
      "          'arent': 1,\n",
      "          'immune': 1,\n",
      "          'nthen': 1,\n",
      "          'mix': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'gershon': 1,\n",
      "          'nright': 1,\n",
      "          'plenty': 1,\n",
      "          'ammo': 1,\n",
      "          'decent': 1,\n",
      "          'drama': 1,\n",
      "          'right': 1,\n",
      "          'completely': 1,\n",
      "          'unrelated': 1,\n",
      "          'plot': 1,\n",
      "          'point': 1,\n",
      "          'ndietl': 1,\n",
      "          'duke': 1,\n",
      "          'try': 1,\n",
      "          'solve': 1,\n",
      "          'warned': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'spends': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'tracking': 1,\n",
      "          'nun': 1,\n",
      "          'beaten': 1,\n",
      "          'raped': 1,\n",
      "          'near': 1,\n",
      "          'death': 1,\n",
      "          'nonce': 1,\n",
      "          'solved': 1,\n",
      "          'shifts': 1,\n",
      "          'focus': 1,\n",
      "          'issue': 1,\n",
      "          'nwhatever': 1,\n",
      "          'neat': 1,\n",
      "          'mesh': 1,\n",
      "          'screenwriter': 1,\n",
      "          'wanted': 1,\n",
      "          'create': 1,\n",
      "          'two': 1,\n",
      "          'stories': 1,\n",
      "          'failed': 1,\n",
      "          'miserably': 1,\n",
      "          'naside': 1,\n",
      "          'asked': 1,\n",
      "          'accept': 1,\n",
      "          'mcglone': 1,\n",
      "          'mafioso': 1,\n",
      "          'insult': 1,\n",
      "          'ask': 1,\n",
      "          'performances': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'pretty': 1,\n",
      "          'nbaldwin': 1,\n",
      "          'though': 1,\n",
      "          'occasionally': 1,\n",
      "          'alec': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'npenn': 1,\n",
      "          'sean': 1,\n",
      "          'nwhat': 1,\n",
      "          'lacks': 1,\n",
      "          'originality': 1,\n",
      "          'nthis': 1,\n",
      "          'offers': 1,\n",
      "          'new': 1,\n",
      "          'nnothing': 1,\n",
      "          'cant': 1,\n",
      "          'screams': 1,\n",
      "          'lumet': 1,\n",
      "          'place': 1,\n",
      "          'perhaps': 1,\n",
      "          'produced': 1,\n",
      "          'marty': 1,\n",
      "          'bregman': 1,\n",
      "          'producers': 1,\n",
      "          'lumets': 1,\n",
      "          'dog': 1,\n",
      "          'day': 1,\n",
      "          'afternoon': 1,\n",
      "          'serpico': 1,\n",
      "          'masterful': 1,\n",
      "          'would': 1,\n",
      "          'able': 1,\n",
      "          'make': 1,\n",
      "          'ntoo': 1,\n",
      "          'else': 1,\n",
      "          'lacking': 1,\n",
      "          'ni': 1,\n",
      "          'boom': 1,\n",
      "          'mic': 1,\n",
      "          'pop': 1,\n",
      "          'frame': 1,\n",
      "          'twice': 1,\n",
      "          'early': 1,\n",
      "          'picture': 1,\n",
      "          'something': 1,\n",
      "          'almost': 1,\n",
      "          'never': 1,\n",
      "          'notice': 1,\n",
      "          'mind': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'medium': 1,\n",
      "          'long': 1,\n",
      "          'shot': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'hoping': 1,\n",
      "          'see': 1,\n",
      "          'none': 1,\n",
      "          'laughable': 1,\n",
      "          'terrible': 1,\n",
      "          'unique': 1,\n",
      "          'classic': 1,\n",
      "          'example': 1,\n",
      "          'didnt': 1,\n",
      "          'need': 1,\n",
      "          'made': 1,\n",
      "          'thing': 1,\n",
      "          'sure': 1,\n",
      "          'could': 1,\n",
      "          'use': 1,\n",
      "          'title': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'lions': 4,\n",
      "          'story': 3,\n",
      "          'bridge': 3,\n",
      "          'operation': 2,\n",
      "          'nthe': 2,\n",
      "          'see': 2,\n",
      "          'kill': 2,\n",
      "          'men': 2,\n",
      "          'even': 2,\n",
      "          'much': 2,\n",
      "          'supposedly': 1,\n",
      "          'based': 1,\n",
      "          'true': 1,\n",
      "          'british': 1,\n",
      "          'drive': 1,\n",
      "          'build': 1,\n",
      "          'rail': 1,\n",
      "          'deep': 1,\n",
      "          'africa': 1,\n",
      "          'grinds': 1,\n",
      "          'halt': 1,\n",
      "          'pair': 1,\n",
      "          'start': 1,\n",
      "          'killing': 1,\n",
      "          'workers': 1,\n",
      "          '1898': 1,\n",
      "          'njohn': 1,\n",
      "          'patterson': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'building': 1,\n",
      "          'expert': 1,\n",
      "          'set': 1,\n",
      "          'oversee': 1,\n",
      "          'tried': 1,\n",
      "          'rid': 1,\n",
      "          'fails': 1,\n",
      "          'na': 1,\n",
      "          'world': 1,\n",
      "          'renound': 1,\n",
      "          'hunter': 1,\n",
      "          'remington': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'called': 1,\n",
      "          'battle': 1,\n",
      "          'man': 1,\n",
      "          'lion': 1,\n",
      "          'begins': 1,\n",
      "          'nthis': 1,\n",
      "          'film': 1,\n",
      "          'great': 1,\n",
      "          'soundtrack': 1,\n",
      "          'wonderful': 1,\n",
      "          'scenery': 1,\n",
      "          'acting': 1,\n",
      "          'bad': 1,\n",
      "          'except': 1,\n",
      "          'characters': 1,\n",
      "          'thin': 1,\n",
      "          'nwe': 1,\n",
      "          'one': 1,\n",
      "          'side': 1,\n",
      "          'character': 1,\n",
      "          'nkilmer': 1,\n",
      "          'builder': 1,\n",
      "          'thats': 1,\n",
      "          'nthese': 1,\n",
      "          'dozens': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'upset': 1,\n",
      "          'nand': 1,\n",
      "          'plot': 1,\n",
      "          'nits': 1,\n",
      "          'jaws': 1,\n",
      "          'nagain': 1,\n",
      "          'presented': 1,\n",
      "          'animal': 1,\n",
      "          'behaves': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'likes': 1,\n",
      "          'nwhy': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'wouldnt': 1,\n",
      "          'didnt': 1,\n",
      "          'problem': 1,\n",
      "          'isnt': 1,\n",
      "          'though': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gets': 3,\n",
      "          'course': 2,\n",
      "          'makes': 2,\n",
      "          'original': 2,\n",
      "          'give': 2,\n",
      "          'perfect': 2,\n",
      "          'character': 2,\n",
      "          'wants': 2,\n",
      "          'love': 2,\n",
      "          'kevin': 2,\n",
      "          'bacon': 2,\n",
      "          'job': 2,\n",
      "          'married': 2,\n",
      "          'poor': 2,\n",
      "          'end': 2,\n",
      "          'like': 2,\n",
      "          'stuff': 2,\n",
      "          'knew': 1,\n",
      "          'going': 1,\n",
      "          'nwhy': 1,\n",
      "          'whenever': 1,\n",
      "          'tvstar': 1,\n",
      "          'movie': 1,\n",
      "          'always': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'say': 1,\n",
      "          'entertainment': 1,\n",
      "          'tonight': 1,\n",
      "          'something': 1,\n",
      "          'attracted': 1,\n",
      "          'characters': 1,\n",
      "          'nthey': 1,\n",
      "          'really': 1,\n",
      "          'noriginal': 1,\n",
      "          'let': 1,\n",
      "          'runthrough': 1,\n",
      "          'picture': 1,\n",
      "          'kate': 1,\n",
      "          'jennifer': 1,\n",
      "          'aniston': 1,\n",
      "          'tvs': 1,\n",
      "          'friends': 1,\n",
      "          'smart': 1,\n",
      "          'beautiful': 1,\n",
      "          'professional': 1,\n",
      "          'woman': 1,\n",
      "          'two': 1,\n",
      "          'things': 1,\n",
      "          'cant': 1,\n",
      "          'new': 1,\n",
      "          'jobtitle': 1,\n",
      "          'coworker': 1,\n",
      "          'nher': 1,\n",
      "          'boss': 1,\n",
      "          'mortgage': 1,\n",
      "          'lease': 1,\n",
      "          'german': 1,\n",
      "          'sportscar': 1,\n",
      "          'pnly': 1,\n",
      "          'sleeps': 1,\n",
      "          'involved': 1,\n",
      "          'girls': 1,\n",
      "          'nwhat': 1,\n",
      "          'nshe': 1,\n",
      "          'invents': 1,\n",
      "          'fiance': 1,\n",
      "          'nthen': 1,\n",
      "          'everyone': 1,\n",
      "          'meet': 1,\n",
      "          'tells': 1,\n",
      "          'schmoe': 1,\n",
      "          'met': 1,\n",
      "          'wedding': 1,\n",
      "          'pay': 1,\n",
      "          '1000': 1,\n",
      "          'pretend': 1,\n",
      "          'company': 1,\n",
      "          'dinner': 1,\n",
      "          'pick': 1,\n",
      "          'fight': 1,\n",
      "          'thus': 1,\n",
      "          'breaking': 1,\n",
      "          'engagement': 1,\n",
      "          'still': 1,\n",
      "          'able': 1,\n",
      "          'keep': 1,\n",
      "          'since': 1,\n",
      "          'guy': 1,\n",
      "          'ends': 1,\n",
      "          'looking': 1,\n",
      "          'jerk': 1,\n",
      "          'defenceless': 1,\n",
      "          'female': 1,\n",
      "          'nhe': 1,\n",
      "          'goes': 1,\n",
      "          'along': 1,\n",
      "          'ngee': 1,\n",
      "          'wonder': 1,\n",
      "          'get': 1,\n",
      "          'together': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'wb': 1,\n",
      "          'nand': 1,\n",
      "          'better': 1,\n",
      "          'npicture': 1,\n",
      "          'also': 1,\n",
      "          'mistake': 1,\n",
      "          '_wayyyyy_': 1,\n",
      "          'long': 1,\n",
      "          '100': 1,\n",
      "          'minutes': 1,\n",
      "          'expecting': 1,\n",
      "          'us': 1,\n",
      "          'anistons': 1,\n",
      "          'comes': 1,\n",
      "          'cold': 1,\n",
      "          'spoiled': 1,\n",
      "          'bitch': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'trumpet': 8,\n",
      "          'swan': 7,\n",
      "          'louie': 5,\n",
      "          'animated': 3,\n",
      "          'become': 3,\n",
      "          'n': 3,\n",
      "          'love': 2,\n",
      "          'serina': 2,\n",
      "          'nlouie': 2,\n",
      "          'louies': 2,\n",
      "          'father': 2,\n",
      "          'version': 2,\n",
      "          'e': 2,\n",
      "          'b': 2,\n",
      "          'release': 2,\n",
      "          'along': 2,\n",
      "          'enough': 2,\n",
      "          'trumpeter': 1,\n",
      "          'voice': 1,\n",
      "          'nin': 1,\n",
      "          'order': 1,\n",
      "          'woo': 1,\n",
      "          'lady': 1,\n",
      "          'makes': 1,\n",
      "          'friends': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'sammy': 1,\n",
      "          'persuades': 1,\n",
      "          'teacher': 1,\n",
      "          'mrs': 1,\n",
      "          'hammerbottom': 1,\n",
      "          'carol': 1,\n",
      "          'burnett': 1,\n",
      "          'allow': 1,\n",
      "          'attend': 1,\n",
      "          'class': 1,\n",
      "          'learns': 1,\n",
      "          'read': 1,\n",
      "          'write': 1,\n",
      "          'returns': 1,\n",
      "          'flock': 1,\n",
      "          'laughed': 1,\n",
      "          'swans': 1,\n",
      "          'understand': 1,\n",
      "          'message': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'feels': 1,\n",
      "          'hes': 1,\n",
      "          'lost': 1,\n",
      "          'honor': 1,\n",
      "          'stole': 1,\n",
      "          'son': 1,\n",
      "          'nwhites': 1,\n",
      "          'nas': 1,\n",
      "          'jane': 1,\n",
      "          'austen': 1,\n",
      "          'henry': 1,\n",
      "          'james': 1,\n",
      "          'popular': 1,\n",
      "          'sources': 1,\n",
      "          'adult': 1,\n",
      "          'filmmakers': 1,\n",
      "          'past': 1,\n",
      "          'decade': 1,\n",
      "          'nwhite': 1,\n",
      "          'returned': 1,\n",
      "          'childrens': 1,\n",
      "          'films': 1,\n",
      "          'nthe': 1,\n",
      "          'charlottes': 1,\n",
      "          'web': 1,\n",
      "          'minor': 1,\n",
      "          'classic': 1,\n",
      "          'since': 1,\n",
      "          '1973': 1,\n",
      "          '1999': 1,\n",
      "          'brought': 1,\n",
      "          'us': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'stuart': 1,\n",
      "          'little': 1,\n",
      "          'directed': 1,\n",
      "          'richard': 1,\n",
      "          'rich': 1,\n",
      "          '1999s': 1,\n",
      "          'king': 1,\n",
      "          'princess': 1,\n",
      "          'series': 1,\n",
      "          'unlikely': 1,\n",
      "          'remembered': 1,\n",
      "          'two': 1,\n",
      "          'receiving': 1,\n",
      "          'regional': 1,\n",
      "          'theatrical': 1,\n",
      "          'sure': 1,\n",
      "          'quickly': 1,\n",
      "          'appear': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'nboston': 1,\n",
      "          'one': 1,\n",
      "          'targetted': 1,\n",
      "          'cities': 1,\n",
      "          'hero': 1,\n",
      "          'becomes': 1,\n",
      "          'famous': 1,\n",
      "          'playing': 1,\n",
      "          'beantown': 1,\n",
      "          'nhe': 1,\n",
      "          'encounters': 1,\n",
      "          'gypsylike': 1,\n",
      "          'con': 1,\n",
      "          'man': 1,\n",
      "          'public': 1,\n",
      "          'gardens': 1,\n",
      "          'pitches': 1,\n",
      "          'added': 1,\n",
      "          'attraction': 1,\n",
      "          'bostons': 1,\n",
      "          'boats': 1,\n",
      "          'stays': 1,\n",
      "          'ritz': 1,\n",
      "          'carlton': 1,\n",
      "          'giving': 1,\n",
      "          'concert': 1,\n",
      "          'hatch': 1,\n",
      "          'shell': 1,\n",
      "          'banks': 1,\n",
      "          'charles': 1,\n",
      "          'river': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'earned': 1,\n",
      "          'money': 1,\n",
      "          'dad': 1,\n",
      "          'pay': 1,\n",
      "          'musically': 1,\n",
      "          'capable': 1,\n",
      "          'win': 1,\n",
      "          'serinas': 1,\n",
      "          'features': 1,\n",
      "          'flat': 1,\n",
      "          'background': 1,\n",
      "          'art': 1,\n",
      "          'poor': 1,\n",
      "          'sound': 1,\n",
      "          'syncing': 1,\n",
      "          'insipid': 1,\n",
      "          'sugary': 1,\n",
      "          'songs': 1,\n",
      "          'nthis': 1,\n",
      "          'effort': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'suited': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'television': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'may': 1,\n",
      "          'ok': 1,\n",
      "          'real': 1,\n",
      "          'small': 1,\n",
      "          'set': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'fuentes': 6,\n",
      "          'one': 5,\n",
      "          'american': 4,\n",
      "          'nthe': 4,\n",
      "          'things': 4,\n",
      "          'bad': 4,\n",
      "          'mountains': 4,\n",
      "          'best': 3,\n",
      "          'go': 3,\n",
      "          'army': 3,\n",
      "          'ndr': 3,\n",
      "          'students': 3,\n",
      "          'sayles': 2,\n",
      "          'nhe': 2,\n",
      "          'us': 2,\n",
      "          'look': 2,\n",
      "          'men': 2,\n",
      "          'guns': 2,\n",
      "          'going': 2,\n",
      "          'nthen': 2,\n",
      "          'country': 2,\n",
      "          'believe': 2,\n",
      "          'civilians': 2,\n",
      "          'nbut': 2,\n",
      "          'played': 2,\n",
      "          'luppi': 2,\n",
      "          'city': 2,\n",
      "          'humanitarian': 2,\n",
      "          'little': 2,\n",
      "          'better': 2,\n",
      "          'nfuentes': 2,\n",
      "          'student': 2,\n",
      "          'others': 2,\n",
      "          'good': 2,\n",
      "          'happens': 2,\n",
      "          'mostly': 2,\n",
      "          'respected': 1,\n",
      "          'names': 1,\n",
      "          'independent': 1,\n",
      "          'filmmaking': 1,\n",
      "          'john': 1,\n",
      "          'built': 1,\n",
      "          'strong': 1,\n",
      "          'reputation': 1,\n",
      "          'films': 1,\n",
      "          'like': 1,\n",
      "          'matewan': 1,\n",
      "          'secret': 1,\n",
      "          'roan': 1,\n",
      "          'inish': 1,\n",
      "          'last': 1,\n",
      "          'lone': 1,\n",
      "          'star': 1,\n",
      "          'nafter': 1,\n",
      "          'gave': 1,\n",
      "          'complex': 1,\n",
      "          'unconventional': 1,\n",
      "          'ethnic': 1,\n",
      "          'tensions': 1,\n",
      "          'usmexico': 1,\n",
      "          'border': 1,\n",
      "          'expectation': 1,\n",
      "          'ran': 1,\n",
      "          'high': 1,\n",
      "          'next': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'anyone': 1,\n",
      "          'hoping': 1,\n",
      "          'nwe': 1,\n",
      "          'essentially': 1,\n",
      "          'told': 1,\n",
      "          'first': 1,\n",
      "          'reel': 1,\n",
      "          'exactly': 1,\n",
      "          'promised': 1,\n",
      "          'painful': 1,\n",
      "          'plot': 1,\n",
      "          'summarized': 1,\n",
      "          'central': 1,\n",
      "          'south': 1,\n",
      "          'really': 1,\n",
      "          'everybody': 1,\n",
      "          'clashes': 1,\n",
      "          'guerrillas': 1,\n",
      "          'went': 1,\n",
      "          'nand': 1,\n",
      "          'found': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'perfectly': 1,\n",
      "          'true': 1,\n",
      "          'many': 1,\n",
      "          'places': 1,\n",
      "          'region': 1,\n",
      "          'armed': 1,\n",
      "          'conflicts': 1,\n",
      "          'turned': 1,\n",
      "          'life': 1,\n",
      "          'living': 1,\n",
      "          'hell': 1,\n",
      "          'na': 1,\n",
      "          'guerrilla': 1,\n",
      "          'war': 1,\n",
      "          'always': 1,\n",
      "          'talks': 1,\n",
      "          'viewer': 1,\n",
      "          'federico': 1,\n",
      "          'teaches': 1,\n",
      "          'medicine': 1,\n",
      "          'capital': 1,\n",
      "          'great': 1,\n",
      "          'gesture': 1,\n",
      "          'trained': 1,\n",
      "          'inspired': 1,\n",
      "          'make': 1,\n",
      "          'world': 1,\n",
      "          'poor': 1,\n",
      "          'indios': 1,\n",
      "          'service': 1,\n",
      "          'discovers': 1,\n",
      "          'instead': 1,\n",
      "          'returned': 1,\n",
      "          'runs': 1,\n",
      "          'squalid': 1,\n",
      "          'private': 1,\n",
      "          'pharmacy': 1,\n",
      "          'nin': 1,\n",
      "          'shame': 1,\n",
      "          'disappointment': 1,\n",
      "          'asks': 1,\n",
      "          'happened': 1,\n",
      "          'tells': 1,\n",
      "          'still': 1,\n",
      "          'suggests': 1,\n",
      "          'may': 1,\n",
      "          'place': 1,\n",
      "          'goes': 1,\n",
      "          'find': 1,\n",
      "          'visit': 1,\n",
      "          'doctors': 1,\n",
      "          'ignoring': 1,\n",
      "          'advice': 1,\n",
      "          'family': 1,\n",
      "          'patient': 1,\n",
      "          'general': 1,\n",
      "          'results': 1,\n",
      "          'different': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'starts': 1,\n",
      "          'incredibly': 1,\n",
      "          'naive': 1,\n",
      "          'neven': 1,\n",
      "          'tourists': 1,\n",
      "          'present': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'seem': 1,\n",
      "          'know': 1,\n",
      "          'dr': 1,\n",
      "          'gotten': 1,\n",
      "          'pretty': 1,\n",
      "          'scene': 1,\n",
      "          'barbarity': 1,\n",
      "          'another': 1,\n",
      "          'discover': 1,\n",
      "          'wrong': 1,\n",
      "          'nsayles': 1,\n",
      "          'certainly': 1,\n",
      "          'could': 1,\n",
      "          'used': 1,\n",
      "          '126': 1,\n",
      "          'minute': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'tell': 1,\n",
      "          'something': 1,\n",
      "          'profound': 1,\n",
      "          'nasty': 1,\n",
      "          'happening': 1,\n",
      "          'worst': 1,\n",
      "          'unarmed': 1,\n",
      "          'cast': 1,\n",
      "          'unknowns': 1,\n",
      "          'audiences': 1,\n",
      "          'nfederico': 1,\n",
      "          'mexican': 1,\n",
      "          'actor': 1,\n",
      "          'antique': 1,\n",
      "          'dealer': 1,\n",
      "          'torn': 1,\n",
      "          'mysterious': 1,\n",
      "          'forces': 1,\n",
      "          'cronos': 1,\n",
      "          'ndamian': 1,\n",
      "          'delgado': 1,\n",
      "          'makes': 1,\n",
      "          'late': 1,\n",
      "          'appearance': 1,\n",
      "          'deserter': 1,\n",
      "          'nmandy': 1,\n",
      "          'patinkin': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'made': 1,\n",
      "          'bigger': 1,\n",
      "          'trailer': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 8,\n",
      "          'nbut': 7,\n",
      "          'bobby': 7,\n",
      "          'one': 6,\n",
      "          'day': 6,\n",
      "          'movie': 6,\n",
      "          'uturn': 5,\n",
      "          'get': 5,\n",
      "          'back': 5,\n",
      "          'say': 4,\n",
      "          'ni': 4,\n",
      "          'ive': 4,\n",
      "          'nand': 4,\n",
      "          'make': 4,\n",
      "          'town': 4,\n",
      "          'jake': 4,\n",
      "          'film': 4,\n",
      "          'fun': 4,\n",
      "          'us': 4,\n",
      "          'mad': 4,\n",
      "          'known': 3,\n",
      "          'looking': 3,\n",
      "          'see': 3,\n",
      "          'nice': 3,\n",
      "          'bit': 3,\n",
      "          'thing': 3,\n",
      "          'dont': 3,\n",
      "          'times': 3,\n",
      "          'oliver': 3,\n",
      "          'stone': 3,\n",
      "          'films': 3,\n",
      "          'story': 3,\n",
      "          'penn': 3,\n",
      "          'nbobby': 3,\n",
      "          'grace': 3,\n",
      "          'nwe': 3,\n",
      "          'bad': 3,\n",
      "          'know': 3,\n",
      "          'nokay': 2,\n",
      "          'nill': 2,\n",
      "          'everybody': 2,\n",
      "          'vacation': 2,\n",
      "          'well': 2,\n",
      "          'monday': 2,\n",
      "          'give': 2,\n",
      "          'old': 2,\n",
      "          'man': 2,\n",
      "          'ill': 2,\n",
      "          'na': 2,\n",
      "          'got': 2,\n",
      "          'trip': 2,\n",
      "          'point': 2,\n",
      "          'take': 2,\n",
      "          'nif': 2,\n",
      "          'youve': 2,\n",
      "          'silly': 2,\n",
      "          'look': 2,\n",
      "          'nyou': 2,\n",
      "          'little': 2,\n",
      "          'book': 2,\n",
      "          'nthats': 2,\n",
      "          'ollie': 2,\n",
      "          'cast': 2,\n",
      "          'meet': 2,\n",
      "          'world': 2,\n",
      "          'straight': 2,\n",
      "          'nsean': 2,\n",
      "          'minus': 2,\n",
      "          'two': 2,\n",
      "          'hose': 2,\n",
      "          'superior': 2,\n",
      "          'arizona': 2,\n",
      "          'mechanic': 2,\n",
      "          'darrell': 2,\n",
      "          'exactly': 2,\n",
      "          'jennifer': 2,\n",
      "          'lopez': 2,\n",
      "          'issues': 2,\n",
      "          'njust': 2,\n",
      "          'asks': 2,\n",
      "          'kill': 2,\n",
      "          'nthe': 2,\n",
      "          'rock': 2,\n",
      "          'years': 2,\n",
      "          'gets': 2,\n",
      "          'nick': 2,\n",
      "          'maybe': 2,\n",
      "          'ideas': 2,\n",
      "          'expect': 2,\n",
      "          'great': 2,\n",
      "          'try': 2,\n",
      "          'figure': 2,\n",
      "          'going': 2,\n",
      "          'pictures': 2,\n",
      "          'unforgivable': 2,\n",
      "          'ndo': 2,\n",
      "          'way': 2,\n",
      "          'wrong': 2,\n",
      "          'traffic': 1,\n",
      "          'violation': 1,\n",
      "          'dr': 1,\n",
      "          'daniels': 1,\n",
      "          'review': 1,\n",
      "          'ndr': 1,\n",
      "          'ds': 1,\n",
      "          'rating': 1,\n",
      "          'critical': 1,\n",
      "          'condition': 1,\n",
      "          'heres': 1,\n",
      "          'deal': 1,\n",
      "          'first': 1,\n",
      "          'grant': 1,\n",
      "          'needs': 1,\n",
      "          'even': 1,\n",
      "          'go': 1,\n",
      "          'far': 1,\n",
      "          'necessary': 1,\n",
      "          'part': 1,\n",
      "          'job': 1,\n",
      "          'mean': 1,\n",
      "          'hey': 1,\n",
      "          'stretch': 1,\n",
      "          'weekend': 1,\n",
      "          'threeday': 1,\n",
      "          'outing': 1,\n",
      "          'friday': 1,\n",
      "          'looks': 1,\n",
      "          'slow': 1,\n",
      "          'aint': 1,\n",
      "          'pickmeup': 1,\n",
      "          'martha': 1,\n",
      "          'nell': 1,\n",
      "          'call': 1,\n",
      "          'favor': 1,\n",
      "          'sweetheart': 1,\n",
      "          'nbump': 1,\n",
      "          'fergusons': 1,\n",
      "          'boil': 1,\n",
      "          'lancing': 1,\n",
      "          'tuesday': 1,\n",
      "          'morning': 1,\n",
      "          'tell': 1,\n",
      "          'miss': 1,\n",
      "          'audrey': 1,\n",
      "          'swing': 1,\n",
      "          'house': 1,\n",
      "          'evening': 1,\n",
      "          'cant': 1,\n",
      "          'trick': 1,\n",
      "          'knee': 1,\n",
      "          'line': 1,\n",
      "          'simple': 1,\n",
      "          'sentence': 1,\n",
      "          'fourday': 1,\n",
      "          'fishing': 1,\n",
      "          'boys': 1,\n",
      "          'often': 1,\n",
      "          'cherokee': 1,\n",
      "          'n': 1,\n",
      "          'c': 1,\n",
      "          'jackpot': 1,\n",
      "          'bingo': 1,\n",
      "          'assorted': 1,\n",
      "          'mountain': 1,\n",
      "          'funnery': 1,\n",
      "          'something': 1,\n",
      "          'different': 1,\n",
      "          'worked': 1,\n",
      "          'months': 1,\n",
      "          'relax': 1,\n",
      "          'nsleep': 1,\n",
      "          'neat': 1,\n",
      "          'pancakes': 1,\n",
      "          'noon': 1,\n",
      "          'nmicrowave': 1,\n",
      "          'egg': 1,\n",
      "          'shell': 1,\n",
      "          'nwatch': 1,\n",
      "          'pro': 1,\n",
      "          'wrestling': 1,\n",
      "          'sound': 1,\n",
      "          'nlisten': 1,\n",
      "          'barry': 1,\n",
      "          'white': 1,\n",
      "          'records': 1,\n",
      "          'high': 1,\n",
      "          'speed': 1,\n",
      "          'nwhatever': 1,\n",
      "          'circumstances': 1,\n",
      "          'spend': 1,\n",
      "          'living': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'ten': 1,\n",
      "          'worse': 1,\n",
      "          'would': 1,\n",
      "          'time': 1,\n",
      "          'nbecause': 1,\n",
      "          'want': 1,\n",
      "          'hear': 1,\n",
      "          'sob': 1,\n",
      "          'stories': 1,\n",
      "          'apparently': 1,\n",
      "          'thought': 1,\n",
      "          'needed': 1,\n",
      "          'break': 1,\n",
      "          'making': 1,\n",
      "          'important': 1,\n",
      "          'ncool': 1,\n",
      "          'nso': 1,\n",
      "          'found': 1,\n",
      "          'hinky': 1,\n",
      "          'decided': 1,\n",
      "          'cool': 1,\n",
      "          'sage': 1,\n",
      "          'good': 1,\n",
      "          'hot': 1,\n",
      "          'pointless': 1,\n",
      "          'worthless': 1,\n",
      "          'decade': 1,\n",
      "          'nim': 1,\n",
      "          'eager': 1,\n",
      "          'buy': 1,\n",
      "          'stoli': 1,\n",
      "          'eye': 1,\n",
      "          'wide': 1,\n",
      "          'sports': 1,\n",
      "          'thinking': 1,\n",
      "          'stand': 1,\n",
      "          'staring': 1,\n",
      "          'til': 1,\n",
      "          'answer': 1,\n",
      "          'stars': 1,\n",
      "          'drifter': 1,\n",
      "          'whos': 1,\n",
      "          'troubles': 1,\n",
      "          'nhes': 1,\n",
      "          'heading': 1,\n",
      "          'cross': 1,\n",
      "          'desert': 1,\n",
      "          'fingers': 1,\n",
      "          'mustang': 1,\n",
      "          'ragtop': 1,\n",
      "          'blows': 1,\n",
      "          'radiator': 1,\n",
      "          'stranding': 1,\n",
      "          'held': 1,\n",
      "          'ignorant': 1,\n",
      "          'inbred': 1,\n",
      "          'turtleneck': 1,\n",
      "          'hick': 1,\n",
      "          'named': 1,\n",
      "          'nwhile': 1,\n",
      "          'puts': 1,\n",
      "          'new': 1,\n",
      "          'ride': 1,\n",
      "          'walks': 1,\n",
      "          'whats': 1,\n",
      "          'cooking': 1,\n",
      "          'nis': 1,\n",
      "          'needless': 1,\n",
      "          'shiny': 1,\n",
      "          'scrubbed': 1,\n",
      "          'home': 1,\n",
      "          'things': 1,\n",
      "          'lovely': 1,\n",
      "          'nprobably': 1,\n",
      "          'meets': 1,\n",
      "          'invites': 1,\n",
      "          'place': 1,\n",
      "          'drapehanging': 1,\n",
      "          'domestic': 1,\n",
      "          'starting': 1,\n",
      "          'graces': 1,\n",
      "          'husband': 1,\n",
      "          'storms': 1,\n",
      "          'checkout': 1,\n",
      "          'elks': 1,\n",
      "          'lodge': 1,\n",
      "          'convention': 1,\n",
      "          'beats': 1,\n",
      "          'takes': 1,\n",
      "          'road': 1,\n",
      "          'later': 1,\n",
      "          'nthem': 1,\n",
      "          'murderous': 1,\n",
      "          'arizonians': 1,\n",
      "          'ngotta': 1,\n",
      "          'love': 1,\n",
      "          'em': 1,\n",
      "          'sounds': 1,\n",
      "          'familiar': 1,\n",
      "          'congratulations': 1,\n",
      "          'win': 1,\n",
      "          'kewpie': 1,\n",
      "          'doll': 1,\n",
      "          'shoplift': 1,\n",
      "          'red': 1,\n",
      "          'west': 1,\n",
      "          'cult': 1,\n",
      "          'favorite': 1,\n",
      "          'john': 1,\n",
      "          'dahl': 1,\n",
      "          'maker': 1,\n",
      "          'phenomenal': 1,\n",
      "          'last': 1,\n",
      "          'seduction': 1,\n",
      "          'contest': 1,\n",
      "          'doesnt': 1,\n",
      "          'end': 1,\n",
      "          'guys': 1,\n",
      "          'gals': 1,\n",
      "          'steals': 1,\n",
      "          'russ': 1,\n",
      "          'meyer': 1,\n",
      "          'movies': 1,\n",
      "          'horny': 1,\n",
      "          'sweaty': 1,\n",
      "          'black': 1,\n",
      "          'train': 1,\n",
      "          'plus': 1,\n",
      "          'busty': 1,\n",
      "          'women': 1,\n",
      "          'speak': 1,\n",
      "          'nlook': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'youll': 1,\n",
      "          'hero': 1,\n",
      "          'mudhole': 1,\n",
      "          'stomped': 1,\n",
      "          'keister': 1,\n",
      "          'dozen': 1,\n",
      "          'ribs': 1,\n",
      "          'stove': 1,\n",
      "          'least': 1,\n",
      "          'fifteen': 1,\n",
      "          'tarantula': 1,\n",
      "          'shot': 1,\n",
      "          'ends': 1,\n",
      "          'vultures': 1,\n",
      "          'circling': 1,\n",
      "          'overhead': 1,\n",
      "          'getting': 1,\n",
      "          'shaving': 1,\n",
      "          'terminator': 1,\n",
      "          'nstretch': 1,\n",
      "          'fivefinger': 1,\n",
      "          'discount': 1,\n",
      "          'doc': 1,\n",
      "          'hollywood': 1,\n",
      "          'whole': 1,\n",
      "          'occurs': 1,\n",
      "          'car': 1,\n",
      "          'trouble': 1,\n",
      "          'forcing': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'stay': 1,\n",
      "          'mercy': 1,\n",
      "          'hes': 1,\n",
      "          'working': 1,\n",
      "          'ollies': 1,\n",
      "          'totally': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'blame': 1,\n",
      "          'blatantly': 1,\n",
      "          'copping': 1,\n",
      "          'alternative': 1,\n",
      "          'history': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'able': 1,\n",
      "          'craft': 1,\n",
      "          'original': 1,\n",
      "          'exposing': 1,\n",
      "          'negative': 1,\n",
      "          'wish': 1,\n",
      "          'hadnt': 1,\n",
      "          'brought': 1,\n",
      "          'together': 1,\n",
      "          'amounts': 1,\n",
      "          'group': 1,\n",
      "          'toestub': 1,\n",
      "          'gives': 1,\n",
      "          'performance': 1,\n",
      "          'nolte': 1,\n",
      "          'target': 1,\n",
      "          'playing': 1,\n",
      "          'overthetop': 1,\n",
      "          'caricatures': 1,\n",
      "          'stereotype': 1,\n",
      "          'characters': 1,\n",
      "          'best': 1,\n",
      "          'watching': 1,\n",
      "          'react': 1,\n",
      "          'madness': 1,\n",
      "          'around': 1,\n",
      "          'blanketyblank': 1,\n",
      "          'ntoo': 1,\n",
      "          'watch': 1,\n",
      "          'happening': 1,\n",
      "          'sit': 1,\n",
      "          'mess': 1,\n",
      "          'nuturn': 1,\n",
      "          'youre': 1,\n",
      "          'fan': 1,\n",
      "          'technique': 1,\n",
      "          'nits': 1,\n",
      "          'always': 1,\n",
      "          'nrobert': 1,\n",
      "          'richardson': 1,\n",
      "          'usual': 1,\n",
      "          'cinematographer': 1,\n",
      "          'rob': 1,\n",
      "          'shoot': 1,\n",
      "          'flick': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'shifting': 1,\n",
      "          'viewpoints': 1,\n",
      "          'wicked': 1,\n",
      "          'colors': 1,\n",
      "          'think': 1,\n",
      "          'id': 1,\n",
      "          'rather': 1,\n",
      "          'stare': 1,\n",
      "          'xeroxed': 1,\n",
      "          'envelope': 1,\n",
      "          'hours': 1,\n",
      "          'tiltowhirl': 1,\n",
      "          'loser': 1,\n",
      "          'nplot': 1,\n",
      "          'twists': 1,\n",
      "          'repetition': 1,\n",
      "          'almost': 1,\n",
      "          'dang': 1,\n",
      "          'near': 1,\n",
      "          'seen': 1,\n",
      "          'past': 1,\n",
      "          'five': 1,\n",
      "          'noliver': 1,\n",
      "          'body': 1,\n",
      "          'work': 1,\n",
      "          'nothing': 1,\n",
      "          'sniff': 1,\n",
      "          'nyouve': 1,\n",
      "          'enough': 1,\n",
      "          'limit': 1,\n",
      "          'doors': 1,\n",
      "          'platoon': 1,\n",
      "          'jfk': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'nixon': 1,\n",
      "          'plenty': 1,\n",
      "          'dig': 1,\n",
      "          'nyour': 1,\n",
      "          'scripts': 1,\n",
      "          'certainly': 1,\n",
      "          'respectable': 1,\n",
      "          'budgets': 1,\n",
      "          'screen': 1,\n",
      "          'actors': 1,\n",
      "          'dog': 1,\n",
      "          'kicking': 1,\n",
      "          'fine': 1,\n",
      "          'potential': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          'sequel': 1,\n",
      "          'imagine': 1,\n",
      "          'big': 1,\n",
      "          'comedy': 1,\n",
      "          'remake': 1,\n",
      "          'drop': 1,\n",
      "          'limp': 1,\n",
      "          'pocket': 1,\n",
      "          'accept': 1,\n",
      "          'question': 1,\n",
      "          'stinks': 1,\n",
      "          'weekold': 1,\n",
      "          'snook': 1,\n",
      "          'ntheres': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'without': 1,\n",
      "          'jail': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'earth': 5,\n",
      "          'film': 4,\n",
      "          'nthe': 4,\n",
      "          'humans': 4,\n",
      "          'every': 4,\n",
      "          'battlefield': 3,\n",
      "          'na': 3,\n",
      "          'bad': 3,\n",
      "          'even': 3,\n",
      "          'psychlos': 3,\n",
      "          'terel': 3,\n",
      "          'jonnie': 3,\n",
      "          'scene': 3,\n",
      "          'movie': 3,\n",
      "          'one': 2,\n",
      "          'never': 2,\n",
      "          'starring': 2,\n",
      "          'travolta': 2,\n",
      "          'actors': 2,\n",
      "          'beast': 2,\n",
      "          'script': 2,\n",
      "          'director': 2,\n",
      "          'difficult': 2,\n",
      "          'like': 2,\n",
      "          'group': 2,\n",
      "          'dwell': 2,\n",
      "          'caves': 2,\n",
      "          'located': 2,\n",
      "          'rockies': 2,\n",
      "          'demons': 2,\n",
      "          'played': 2,\n",
      "          'base': 2,\n",
      "          'goodboy': 2,\n",
      "          'tyler': 2,\n",
      "          'middle': 2,\n",
      "          'end': 2,\n",
      "          'njonnie': 2,\n",
      "          'machine': 2,\n",
      "          'use': 2,\n",
      "          'nthen': 2,\n",
      "          'planet': 2,\n",
      "          'nand': 2,\n",
      "          'right': 2,\n",
      "          'fight': 2,\n",
      "          'two': 1,\n",
      "          'things': 1,\n",
      "          'american': 1,\n",
      "          'industry': 1,\n",
      "          'avoid': 1,\n",
      "          'costs': 1,\n",
      "          'none': 1,\n",
      "          'letting': 1,\n",
      "          'ambitious': 1,\n",
      "          'actor': 1,\n",
      "          'convert': 1,\n",
      "          'favorite': 1,\n",
      "          'novels': 1,\n",
      "          'feature': 1,\n",
      "          'ntwo': 1,\n",
      "          'greenlight': 1,\n",
      "          'scifi': 1,\n",
      "          'john': 1,\n",
      "          'nto': 1,\n",
      "          'wit': 1,\n",
      "          'present': 1,\n",
      "          'disaster': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'opus': 1,\n",
      "          'barbarino': 1,\n",
      "          'guild': 1,\n",
      "          'shown': 1,\n",
      "          'maximumsecurity': 1,\n",
      "          'prisons': 1,\n",
      "          'prisoner': 1,\n",
      "          'tossed': 1,\n",
      "          'solitary': 1,\n",
      "          'behavior': 1,\n",
      "          'nscifi': 1,\n",
      "          'always': 1,\n",
      "          'tricky': 1,\n",
      "          'tight': 1,\n",
      "          'good': 1,\n",
      "          'ensemble': 1,\n",
      "          'cast': 1,\n",
      "          'decent': 1,\n",
      "          'ability': 1,\n",
      "          'suspend': 1,\n",
      "          'disbeliefs': 1,\n",
      "          'nbattlefield': 1,\n",
      "          'fails': 1,\n",
      "          'achieving': 1,\n",
      "          'attributes': 1,\n",
      "          'nheres': 1,\n",
      "          'plot': 1,\n",
      "          'year': 1,\n",
      "          '3000': 1,\n",
      "          'nmankind': 1,\n",
      "          'become': 1,\n",
      "          'endangered': 1,\n",
      "          'species': 1,\n",
      "          'thanks': 1,\n",
      "          'conquest': 1,\n",
      "          'race': 1,\n",
      "          'aliens': 1,\n",
      "          'called': 1,\n",
      "          'sounds': 1,\n",
      "          'either': 1,\n",
      "          'latest': 1,\n",
      "          'clown': 1,\n",
      "          'act': 1,\n",
      "          'cirque': 1,\n",
      "          'de': 1,\n",
      "          'soleil': 1,\n",
      "          'white': 1,\n",
      "          'rap': 1,\n",
      "          'small': 1,\n",
      "          'band': 1,\n",
      "          'radioactive': 1,\n",
      "          'fear': 1,\n",
      "          'cities': 1,\n",
      "          'stripmining': 1,\n",
      "          'resources': 1,\n",
      "          'head': 1,\n",
      "          'security': 1,\n",
      "          'miningslave': 1,\n",
      "          'denver': 1,\n",
      "          'young': 1,\n",
      "          'rogue': 1,\n",
      "          'named': 1,\n",
      "          'dramatic': 1,\n",
      "          'flair': 1,\n",
      "          'barry': 1,\n",
      "          'pepper': 1,\n",
      "          'ventures': 1,\n",
      "          'safety': 1,\n",
      "          'city': 1,\n",
      "          'uncover': 1,\n",
      "          'truth': 1,\n",
      "          'nhe': 1,\n",
      "          'promptly': 1,\n",
      "          'captured': 1,\n",
      "          'taken': 1,\n",
      "          'alien': 1,\n",
      "          'nafter': 1,\n",
      "          'several': 1,\n",
      "          'attempts': 1,\n",
      "          'escape': 1,\n",
      "          'johnnie': 1,\n",
      "          'placed': 1,\n",
      "          'underhanded': 1,\n",
      "          'subplot': 1,\n",
      "          'terels': 1,\n",
      "          'involving': 1,\n",
      "          'circumventing': 1,\n",
      "          'gold': 1,\n",
      "          'exposed': 1,\n",
      "          'vein': 1,\n",
      "          'assumed': 1,\n",
      "          'leader': 1,\n",
      "          'mining': 1,\n",
      "          'slave': 1,\n",
      "          'manages': 1,\n",
      "          'attain': 1,\n",
      "          'psychlo': 1,\n",
      "          'human': 1,\n",
      "          'intelligence': 1,\n",
      "          'learning': 1,\n",
      "          'forces': 1,\n",
      "          'story': 1,\n",
      "          'runs': 1,\n",
      "          'along': 1,\n",
      "          'teaches': 1,\n",
      "          'rest': 1,\n",
      "          'basics': 1,\n",
      "          'trigonometry': 1,\n",
      "          'bill': 1,\n",
      "          'rights': 1,\n",
      "          'gun': 1,\n",
      "          'fly': 1,\n",
      "          'harrier': 1,\n",
      "          'jet': 1,\n",
      "          'whole': 1,\n",
      "          'mess': 1,\n",
      "          'concludes': 1,\n",
      "          'big': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'gunandplane': 1,\n",
      "          'battle': 1,\n",
      "          'praying': 1,\n",
      "          'credits': 1,\n",
      "          'nroger': 1,\n",
      "          'christian': 1,\n",
      "          'lumbering': 1,\n",
      "          'must': 1,\n",
      "          'rented': 1,\n",
      "          'dune': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'apes': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'stargate': 1,\n",
      "          'beastmaster': 1,\n",
      "          'airwolf': 1,\n",
      "          'episodes': 1,\n",
      "          'v': 1,\n",
      "          'miniseries': 1,\n",
      "          'matrix': 1,\n",
      "          'omega': 1,\n",
      "          'man': 1,\n",
      "          'decided': 1,\n",
      "          'steal': 1,\n",
      "          'could': 1,\n",
      "          'nchristian': 1,\n",
      "          'shoots': 1,\n",
      "          'weird': 1,\n",
      "          'dutch': 1,\n",
      "          'angle': 1,\n",
      "          'titled': 1,\n",
      "          'left': 1,\n",
      "          'frame': 1,\n",
      "          'ends': 1,\n",
      "          'wipe': 1,\n",
      "          'really': 1,\n",
      "          'reminded': 1,\n",
      "          'cross': 1,\n",
      "          'jamaican': 1,\n",
      "          'basketball': 1,\n",
      "          'players': 1,\n",
      "          'teeth': 1,\n",
      "          'bloated': 1,\n",
      "          'hands': 1,\n",
      "          'klingon': 1,\n",
      "          'extras': 1,\n",
      "          'working': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'convention': 1,\n",
      "          'circuit': 1,\n",
      "          'ntravoltas': 1,\n",
      "          'acting': 1,\n",
      "          'hasnt': 1,\n",
      "          'since': 1,\n",
      "          'experts': 1,\n",
      "          'maybe': 1,\n",
      "          'perfect': 1,\n",
      "          'evolves': 1,\n",
      "          'william': 1,\n",
      "          'wallace': 1,\n",
      "          'lines': 1,\n",
      "          'freedom': 1,\n",
      "          'theres': 1,\n",
      "          'convinces': 1,\n",
      "          'plight': 1,\n",
      "          'teaching': 1,\n",
      "          'fellow': 1,\n",
      "          'take': 1,\n",
      "          'back': 1,\n",
      "          'would': 1,\n",
      "          'task': 1,\n",
      "          'achieve': 1,\n",
      "          'nwhy': 1,\n",
      "          'nbecause': 1,\n",
      "          'provides': 1,\n",
      "          'necessary': 1,\n",
      "          'tools': 1,\n",
      "          'incite': 1,\n",
      "          'revolt': 1,\n",
      "          'particular': 1,\n",
      "          'reason': 1,\n",
      "          'beside': 1,\n",
      "          'fact': 1,\n",
      "          'stupid': 1,\n",
      "          'nterel': 1,\n",
      "          'may': 1,\n",
      "          'know': 1,\n",
      "          'nhumans': 1,\n",
      "          'made': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'time': 7,\n",
      "          'film': 6,\n",
      "          'roberts': 5,\n",
      "          'julia': 4,\n",
      "          'sweethearts': 4,\n",
      "          'nthe': 4,\n",
      "          'eddie': 4,\n",
      "          'billy': 4,\n",
      "          'crystal': 4,\n",
      "          'movies': 4,\n",
      "          'would': 3,\n",
      "          'reality': 3,\n",
      "          'plot': 3,\n",
      "          'gwen': 3,\n",
      "          'press': 3,\n",
      "          'director': 3,\n",
      "          'movie': 3,\n",
      "          'nand': 3,\n",
      "          'sister': 2,\n",
      "          'zetajones': 2,\n",
      "          'fall': 2,\n",
      "          'namericas': 2,\n",
      "          'presumably': 2,\n",
      "          'poor': 2,\n",
      "          'every': 2,\n",
      "          'new': 2,\n",
      "          'star': 2,\n",
      "          'called': 2,\n",
      "          'stupid': 2,\n",
      "          'studio': 2,\n",
      "          'check': 2,\n",
      "          'kiki': 2,\n",
      "          'along': 2,\n",
      "          'might': 2,\n",
      "          'hollywood': 2,\n",
      "          'funny': 2,\n",
      "          'want': 2,\n",
      "          'jokes': 2,\n",
      "          'comes': 2,\n",
      "          'bunch': 2,\n",
      "          'ni': 2,\n",
      "          'roth': 2,\n",
      "          'azaria': 2,\n",
      "          'walken': 2,\n",
      "          'hes': 2,\n",
      "          'back': 2,\n",
      "          '11': 2,\n",
      "          'believe': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'mean': 1,\n",
      "          'youd': 1,\n",
      "          'ugly': 1,\n",
      "          'underdog': 1,\n",
      "          'creepy': 1,\n",
      "          'catherine': 1,\n",
      "          'nlet': 1,\n",
      "          'tell': 1,\n",
      "          'nreality': 1,\n",
      "          'megastar': 1,\n",
      "          'fricking': 1,\n",
      "          'brother': 1,\n",
      "          'eric': 1,\n",
      "          'picks': 1,\n",
      "          'whatever': 1,\n",
      "          'crumbs': 1,\n",
      "          'stardom': 1,\n",
      "          'coattails': 1,\n",
      "          'blaze': 1,\n",
      "          'across': 1,\n",
      "          'sky': 1,\n",
      "          'golden': 1,\n",
      "          'chariot': 1,\n",
      "          'nthats': 1,\n",
      "          'opposite': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'tries': 1,\n",
      "          'sell': 1,\n",
      "          'scruffy': 1,\n",
      "          'alsoran': 1,\n",
      "          'wears': 1,\n",
      "          'hornrimmed': 1,\n",
      "          'glasses': 1,\n",
      "          'used': 1,\n",
      "          'overweight': 1,\n",
      "          'uhhuh': 1,\n",
      "          'follows': 1,\n",
      "          'two': 1,\n",
      "          'married': 1,\n",
      "          'megamovie': 1,\n",
      "          'stars': 1,\n",
      "          'john': 1,\n",
      "          'cusack': 1,\n",
      "          'whose': 1,\n",
      "          'material': 1,\n",
      "          'gets': 1,\n",
      "          'worse': 1,\n",
      "          'year': 1,\n",
      "          'eve': 1,\n",
      "          'vehicles': 1,\n",
      "          'release': 1,\n",
      "          'problem': 1,\n",
      "          'gone': 1,\n",
      "          'nasty': 1,\n",
      "          'separation': 1,\n",
      "          'public': 1,\n",
      "          'forgiving': 1,\n",
      "          'think': 1,\n",
      "          'meg': 1,\n",
      "          'dennis': 1,\n",
      "          'ngosh': 1,\n",
      "          'vanished': 1,\n",
      "          'holding': 1,\n",
      "          'print': 1,\n",
      "          'hostage': 1,\n",
      "          'nveteran': 1,\n",
      "          'pr': 1,\n",
      "          'agent': 1,\n",
      "          'lee': 1,\n",
      "          'upon': 1,\n",
      "          'clean': 1,\n",
      "          'mess': 1,\n",
      "          'throwing': 1,\n",
      "          'junket': 1,\n",
      "          'nevada': 1,\n",
      "          'desert': 1,\n",
      "          'woo': 1,\n",
      "          'story': 1,\n",
      "          'possible': 1,\n",
      "          'reconciliation': 1,\n",
      "          'distracting': 1,\n",
      "          'critics': 1,\n",
      "          'forgetting': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'n': 1,\n",
      "          'note': 1,\n",
      "          'sony': 1,\n",
      "          'executive': 1,\n",
      "          'thinks': 1,\n",
      "          'going': 1,\n",
      "          'win': 1,\n",
      "          'points': 1,\n",
      "          'reviewing': 1,\n",
      "          'needs': 1,\n",
      "          'rehab': 1,\n",
      "          'mention': 1,\n",
      "          'gwens': 1,\n",
      "          'ride': 1,\n",
      "          'love': 1,\n",
      "          'way': 1,\n",
      "          'noh': 1,\n",
      "          'youre': 1,\n",
      "          'scamp': 1,\n",
      "          'script': 1,\n",
      "          'youve': 1,\n",
      "          'cowritten': 1,\n",
      "          'peter': 1,\n",
      "          'tolan': 1,\n",
      "          'planet': 1,\n",
      "          'bedazzled': 1,\n",
      "          'need': 1,\n",
      "          'say': 1,\n",
      "          'roast': 1,\n",
      "          'celebrity': 1,\n",
      "          'sure': 1,\n",
      "          'one': 1,\n",
      "          'nyes': 1,\n",
      "          'tells': 1,\n",
      "          'us': 1,\n",
      "          'lying': 1,\n",
      "          'faces': 1,\n",
      "          'nif': 1,\n",
      "          'surprised': 1,\n",
      "          'subscription': 1,\n",
      "          'people': 1,\n",
      "          'magazine': 1,\n",
      "          'nits': 1,\n",
      "          'expire': 1,\n",
      "          'naside': 1,\n",
      "          'scant': 1,\n",
      "          'zingers': 1,\n",
      "          'yeah': 1,\n",
      "          'se': 1,\n",
      "          'winces': 1,\n",
      "          'rules': 1,\n",
      "          'arent': 1,\n",
      "          'pace': 1,\n",
      "          'choppy': 1,\n",
      "          'whole': 1,\n",
      "          'affair': 1,\n",
      "          'vanity': 1,\n",
      "          'project': 1,\n",
      "          'headlining': 1,\n",
      "          'deliver': 1,\n",
      "          'lame': 1,\n",
      "          'punch': 1,\n",
      "          'lines': 1,\n",
      "          'wrote': 1,\n",
      "          'didnt': 1,\n",
      "          'bad': 1,\n",
      "          'really': 1,\n",
      "          'screen': 1,\n",
      "          'unequivocal': 1,\n",
      "          'focus': 1,\n",
      "          'nbad': 1,\n",
      "          'move': 1,\n",
      "          'suck': 1,\n",
      "          'crotch': 1,\n",
      "          'humor': 1,\n",
      "          'outpaced': 1,\n",
      "          'meanness': 1,\n",
      "          'gags': 1,\n",
      "          'unsubtle': 1,\n",
      "          'sexual': 1,\n",
      "          'innuendo': 1,\n",
      "          'dripping': 1,\n",
      "          'scene': 1,\n",
      "          'earned': 1,\n",
      "          'pg13': 1,\n",
      "          'rating': 1,\n",
      "          'mystery': 1,\n",
      "          'njulia': 1,\n",
      "          'overcame': 1,\n",
      "          'lot': 1,\n",
      "          'spiteful': 1,\n",
      "          'writing': 1,\n",
      "          'acting': 1,\n",
      "          'make': 1,\n",
      "          'best': 1,\n",
      "          'friends': 1,\n",
      "          'wedding': 1,\n",
      "          'winning': 1,\n",
      "          'even': 1,\n",
      "          '90tooth': 1,\n",
      "          'smile': 1,\n",
      "          'save': 1,\n",
      "          'nobviously': 1,\n",
      "          'aware': 1,\n",
      "          'ugliness': 1,\n",
      "          'joe': 1,\n",
      "          'turns': 1,\n",
      "          'goofy': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'like': 1,\n",
      "          'hank': 1,\n",
      "          'lisping': 1,\n",
      "          'spaniard': 1,\n",
      "          'christopher': 1,\n",
      "          'insane': 1,\n",
      "          'alan': 1,\n",
      "          'arkin': 1,\n",
      "          'age': 1,\n",
      "          'guru': 1,\n",
      "          'fright': 1,\n",
      "          'wig': 1,\n",
      "          'crack': 1,\n",
      "          'wise': 1,\n",
      "          'nnone': 1,\n",
      "          'stereotypes': 1,\n",
      "          'successful': 1,\n",
      "          'except': 1,\n",
      "          'preening': 1,\n",
      "          'queen': 1,\n",
      "          'supposed': 1,\n",
      "          'macho': 1,\n",
      "          'nas': 1,\n",
      "          'case': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'went': 1,\n",
      "          'direcing': 1,\n",
      "          'revenge': 1,\n",
      "          'nerds': 1,\n",
      "          'ii': 1,\n",
      "          'launching': 1,\n",
      "          'revolution': 1,\n",
      "          'produced': 1,\n",
      "          'work': 1,\n",
      "          'nhes': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'first': 1,\n",
      "          'years': 1,\n",
      "          'nitll': 1,\n",
      "          'probably': 1,\n",
      "          'another': 1,\n",
      "          'could': 1,\n",
      "          'drone': 1,\n",
      "          'americas': 1,\n",
      "          'appeal': 1,\n",
      "          'mouthbreathing': 1,\n",
      "          'morons': 1,\n",
      "          'talk': 1,\n",
      "          'cell': 1,\n",
      "          'phones': 1,\n",
      "          'get': 1,\n",
      "          'old': 1,\n",
      "          'ninstead': 1,\n",
      "          'ill': 1,\n",
      "          'settle': 1,\n",
      "          'discussing': 1,\n",
      "          'worst': 1,\n",
      "          'sin': 1,\n",
      "          'painfully': 1,\n",
      "          'contrived': 1,\n",
      "          'wholly': 1,\n",
      "          'unbelievable': 1,\n",
      "          'sentiment': 1,\n",
      "          'nevery': 1,\n",
      "          'single': 1,\n",
      "          'character': 1,\n",
      "          'arguable': 1,\n",
      "          'exception': 1,\n",
      "          'simply': 1,\n",
      "          'hateful': 1,\n",
      "          'putting': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'waste': 1,\n",
      "          'villains': 1,\n",
      "          'nwhen': 1,\n",
      "          'leave': 1,\n",
      "          'theater': 1,\n",
      "          'youll': 1,\n",
      "          'ask': 1,\n",
      "          'jerks': 1,\n",
      "          'happy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 11,\n",
      "          'snipes': 7,\n",
      "          'good': 6,\n",
      "          'action': 5,\n",
      "          'art': 5,\n",
      "          'war': 5,\n",
      "          'plays': 4,\n",
      "          'killer': 4,\n",
      "          'nthe': 4,\n",
      "          'badly': 4,\n",
      "          'even': 4,\n",
      "          'wesley': 3,\n",
      "          'archer': 3,\n",
      "          'nhis': 3,\n",
      "          'chinese': 3,\n",
      "          'dumb': 3,\n",
      "          'donald': 2,\n",
      "          'sutherland': 2,\n",
      "          'time': 2,\n",
      "          'nhe': 2,\n",
      "          'downs': 2,\n",
      "          'best': 2,\n",
      "          'one': 2,\n",
      "          'blade': 2,\n",
      "          'rising': 2,\n",
      "          'sun': 2,\n",
      "          'forced': 2,\n",
      "          'thriller': 2,\n",
      "          'high': 2,\n",
      "          'style': 2,\n",
      "          'nwesley': 2,\n",
      "          'type': 2,\n",
      "          'u': 2,\n",
      "          'n': 2,\n",
      "          'ambassador': 2,\n",
      "          'track': 2,\n",
      "          'nanne': 2,\n",
      "          'finale': 2,\n",
      "          'stupid': 2,\n",
      "          'stunts': 2,\n",
      "          'dialogue': 2,\n",
      "          'isnt': 2,\n",
      "          'character': 2,\n",
      "          'really': 2,\n",
      "          'filmed': 2,\n",
      "          'camera': 2,\n",
      "          'ending': 2,\n",
      "          'matrix': 2,\n",
      "          'great': 2,\n",
      "          'sense': 2,\n",
      "          'neven': 2,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'strong': 1,\n",
      "          'violence': 1,\n",
      "          'language': 1,\n",
      "          'drug': 1,\n",
      "          'use': 1,\n",
      "          'nudity': 1,\n",
      "          'sexuality': 1,\n",
      "          'nstarring': 1,\n",
      "          'anne': 1,\n",
      "          'michael': 1,\n",
      "          'chaykin': 1,\n",
      "          'marie': 1,\n",
      "          'matiko': 1,\n",
      "          'nrunning': 1,\n",
      "          '117': 1,\n",
      "          'minutes': 1,\n",
      "          'ndirected': 1,\n",
      "          'christian': 1,\n",
      "          'duguay': 1,\n",
      "          'nive': 1,\n",
      "          'never': 1,\n",
      "          'fully': 1,\n",
      "          'understood': 1,\n",
      "          'snipess': 1,\n",
      "          'career': 1,\n",
      "          'ups': 1,\n",
      "          'mostly': 1,\n",
      "          '1998': 1,\n",
      "          'entitled': 1,\n",
      "          'typical': 1,\n",
      "          'movies': 1,\n",
      "          'boiling': 1,\n",
      "          'point': 1,\n",
      "          'passenger': 1,\n",
      "          '57': 1,\n",
      "          'new': 1,\n",
      "          'called': 1,\n",
      "          '2': 1,\n",
      "          'cause': 1,\n",
      "          'basically': 1,\n",
      "          'semiremake': 1,\n",
      "          'plot': 1,\n",
      "          'different': 1,\n",
      "          'cast': 1,\n",
      "          'ridiculously': 1,\n",
      "          'unbelievable': 1,\n",
      "          'low': 1,\n",
      "          'substance': 1,\n",
      "          'james': 1,\n",
      "          'bondish': 1,\n",
      "          'secret': 1,\n",
      "          'agent': 1,\n",
      "          'working': 1,\n",
      "          'killed': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'happened': 1,\n",
      "          'boss': 1,\n",
      "          'person': 1,\n",
      "          'hired': 1,\n",
      "          'nwell': 1,\n",
      "          'mistakenly': 1,\n",
      "          'framed': 1,\n",
      "          'outlaw': 1,\n",
      "          'kidnapping': 1,\n",
      "          'woman': 1,\n",
      "          'help': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'nall': 1,\n",
      "          'leads': 1,\n",
      "          'unbelievably': 1,\n",
      "          'acting': 1,\n",
      "          'ruin': 1,\n",
      "          'favorite': 1,\n",
      "          'actors': 1,\n",
      "          'fact': 1,\n",
      "          'every': 1,\n",
      "          'role': 1,\n",
      "          '1998s': 1,\n",
      "          'ni': 1,\n",
      "          'walked': 1,\n",
      "          'expecting': 1,\n",
      "          'octane': 1,\n",
      "          'got': 1,\n",
      "          'pile': 1,\n",
      "          'mush': 1,\n",
      "          'real': 1,\n",
      "          'thing': 1,\n",
      "          'plenty': 1,\n",
      "          'noticed': 1,\n",
      "          'shaky': 1,\n",
      "          'tell': 1,\n",
      "          'going': 1,\n",
      "          'worthless': 1,\n",
      "          'pitiful': 1,\n",
      "          'tries': 1,\n",
      "          'mock': 1,\n",
      "          'laughably': 1,\n",
      "          'funny': 1,\n",
      "          'undeniably': 1,\n",
      "          'nchristian': 1,\n",
      "          'duguays': 1,\n",
      "          'direction': 1,\n",
      "          'also': 1,\n",
      "          'angles': 1,\n",
      "          'place': 1,\n",
      "          'sadly': 1,\n",
      "          'lighting': 1,\n",
      "          'editing': 1,\n",
      "          'done': 1,\n",
      "          'whole': 1,\n",
      "          'wasnt': 1,\n",
      "          'choreographed': 1,\n",
      "          'placing': 1,\n",
      "          'characters': 1,\n",
      "          'assination': 1,\n",
      "          'plotting': 1,\n",
      "          'predictable': 1,\n",
      "          'laughable': 1,\n",
      "          'takes': 1,\n",
      "          'fun': 1,\n",
      "          'entire': 1,\n",
      "          'usually': 1,\n",
      "          'roles': 1,\n",
      "          'turns': 1,\n",
      "          'horrible': 1,\n",
      "          'job': 1,\n",
      "          'nshe': 1,\n",
      "          'sour': 1,\n",
      "          'downbeat': 1,\n",
      "          'dreadfully': 1,\n",
      "          'dull': 1,\n",
      "          'moves': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'costar': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'bust': 1,\n",
      "          'nso': 1,\n",
      "          'overall': 1,\n",
      "          'opinion': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'nits': 1,\n",
      "          'entertaining': 1,\n",
      "          'exciting': 1,\n",
      "          'packed': 1,\n",
      "          'nit': 1,\n",
      "          'pointless': 1,\n",
      "          'makes': 1,\n",
      "          'absolutely': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'version': 1,\n",
      "          'rent': 1,\n",
      "          'sean': 1,\n",
      "          'connery': 1,\n",
      "          'vehicle': 1,\n",
      "          'kind': 1,\n",
      "          'film': 1,\n",
      "          'either': 1,\n",
      "          'least': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nomi': 7,\n",
      "          'movie': 6,\n",
      "          'good': 5,\n",
      "          'nthe': 5,\n",
      "          'big': 5,\n",
      "          'berkley': 4,\n",
      "          'character': 4,\n",
      "          'make': 4,\n",
      "          'take': 4,\n",
      "          'dance': 4,\n",
      "          'see': 3,\n",
      "          'bad': 3,\n",
      "          'nthis': 3,\n",
      "          'role': 3,\n",
      "          'one': 3,\n",
      "          'little': 3,\n",
      "          'people': 3,\n",
      "          'claim': 3,\n",
      "          'nhe': 3,\n",
      "          'sex': 3,\n",
      "          'dancer': 3,\n",
      "          'supposed': 3,\n",
      "          'gets': 3,\n",
      "          'stardust': 3,\n",
      "          'nshe': 3,\n",
      "          'maclachlan': 3,\n",
      "          'also': 3,\n",
      "          'must': 3,\n",
      "          'theyre': 3,\n",
      "          'reviewers': 2,\n",
      "          'wrote': 2,\n",
      "          'picture': 2,\n",
      "          'rating': 2,\n",
      "          'like': 2,\n",
      "          'elizabeth': 2,\n",
      "          'certainly': 2,\n",
      "          'even': 2,\n",
      "          'selfish': 2,\n",
      "          'malone': 2,\n",
      "          'deliberately': 2,\n",
      "          'care': 2,\n",
      "          'least': 2,\n",
      "          'statement': 2,\n",
      "          'showgirls': 2,\n",
      "          'nif': 2,\n",
      "          'screenwriter': 2,\n",
      "          'well': 2,\n",
      "          'may': 2,\n",
      "          'ha': 2,\n",
      "          'verhoeven': 2,\n",
      "          'team': 2,\n",
      "          'gratuitous': 2,\n",
      "          'vegas': 2,\n",
      "          'nafter': 2,\n",
      "          'hotel': 2,\n",
      "          'bigtime': 2,\n",
      "          'lap': 2,\n",
      "          'strip': 2,\n",
      "          'club': 2,\n",
      "          'sells': 2,\n",
      "          'hot': 2,\n",
      "          'time': 2,\n",
      "          'audience': 2,\n",
      "          'body': 2,\n",
      "          'crystal': 2,\n",
      "          'ncrystal': 2,\n",
      "          'kyle': 2,\n",
      "          'show': 2,\n",
      "          'onto': 2,\n",
      "          'nit': 2,\n",
      "          'shes': 2,\n",
      "          'better': 2,\n",
      "          'person': 2,\n",
      "          'two': 2,\n",
      "          'hours': 2,\n",
      "          'subplot': 2,\n",
      "          'ol': 2,\n",
      "          'especially': 2,\n",
      "          'exacting': 2,\n",
      "          'revenge': 2,\n",
      "          'nits': 2,\n",
      "          'hard': 2,\n",
      "          'world': 2,\n",
      "          'obligation': 1,\n",
      "          'despicable': 1,\n",
      "          'ni': 1,\n",
      "          'originally': 1,\n",
      "          'review': 1,\n",
      "          'college': 1,\n",
      "          'newspaper': 1,\n",
      "          'back': 1,\n",
      "          '95': 1,\n",
      "          'wanted': 1,\n",
      "          'rewrite': 1,\n",
      "          'retro': 1,\n",
      "          'reviews': 1,\n",
      "          'classics': 1,\n",
      "          'nwe': 1,\n",
      "          'need': 1,\n",
      "          'warned': 1,\n",
      "          'truly': 1,\n",
      "          'awful': 1,\n",
      "          'films': 1,\n",
      "          'inspired': 1,\n",
      "          'description': 1,\n",
      "          '110': 1,\n",
      "          'ratings': 1,\n",
      "          'chart': 1,\n",
      "          'thing': 1,\n",
      "          'saving': 1,\n",
      "          '010': 1,\n",
      "          'able': 1,\n",
      "          'rent': 1,\n",
      "          'slightly': 1,\n",
      "          'less': 1,\n",
      "          'embarassing': 1,\n",
      "          'renting': 1,\n",
      "          'porno': 1,\n",
      "          'nso': 1,\n",
      "          'indeed': 1,\n",
      "          'plusses': 1,\n",
      "          'nin': 1,\n",
      "          'fairness': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'buff': 1,\n",
      "          'nand': 1,\n",
      "          'ability': 1,\n",
      "          'whine': 1,\n",
      "          'irritate': 1,\n",
      "          'us': 1,\n",
      "          'nude': 1,\n",
      "          'appropriate': 1,\n",
      "          'temptress': 1,\n",
      "          'smart': 1,\n",
      "          'interesting': 1,\n",
      "          'nfar': 1,\n",
      "          'annoying': 1,\n",
      "          'far': 1,\n",
      "          'often': 1,\n",
      "          'nlike': 1,\n",
      "          '1998s': 1,\n",
      "          'bulworth': 1,\n",
      "          'didnt': 1,\n",
      "          'iota': 1,\n",
      "          'main': 1,\n",
      "          'nat': 1,\n",
      "          'warren': 1,\n",
      "          'beatty': 1,\n",
      "          'tried': 1,\n",
      "          'dreary': 1,\n",
      "          'overrated': 1,\n",
      "          'film': 1,\n",
      "          'though': 1,\n",
      "          'n': 1,\n",
      "          'stupid': 1,\n",
      "          'nsome': 1,\n",
      "          'story': 1,\n",
      "          'based': 1,\n",
      "          'legendary': 1,\n",
      "          'eve': 1,\n",
      "          'things': 1,\n",
      "          'exploitation': 1,\n",
      "          'expert': 1,\n",
      "          'joe': 1,\n",
      "          'eszterhas': 1,\n",
      "          'half': 1,\n",
      "          'joseph': 1,\n",
      "          'l': 1,\n",
      "          'mankiewicz': 1,\n",
      "          'hed': 1,\n",
      "          'nhed': 1,\n",
      "          'ninstead': 1,\n",
      "          'project': 1,\n",
      "          'sunk': 1,\n",
      "          'career': 1,\n",
      "          'nscript': 1,\n",
      "          'usually': 1,\n",
      "          'reliable': 1,\n",
      "          'paul': 1,\n",
      "          'directed': 1,\n",
      "          'created': 1,\n",
      "          'sexfilm': 1,\n",
      "          '1992': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'struck': 1,\n",
      "          'occasional': 1,\n",
      "          'violence': 1,\n",
      "          'xrated': 1,\n",
      "          'scenes': 1,\n",
      "          'numerous': 1,\n",
      "          'quite': 1,\n",
      "          'unnecessary': 1,\n",
      "          'lesbian': 1,\n",
      "          'overtones': 1,\n",
      "          'predictable': 1,\n",
      "          'storyline': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'streaking': 1,\n",
      "          'las': 1,\n",
      "          'streetsmart': 1,\n",
      "          'young': 1,\n",
      "          'lady': 1,\n",
      "          'conned': 1,\n",
      "          'suitcase': 1,\n",
      "          'slackjawed': 1,\n",
      "          'yokel': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'befriends': 1,\n",
      "          'tailor': 1,\n",
      "          'glamorous': 1,\n",
      "          'stage': 1,\n",
      "          'production': 1,\n",
      "          'nnomi': 1,\n",
      "          'doesnt': 1,\n",
      "          'advantage': 1,\n",
      "          'contact': 1,\n",
      "          'break': 1,\n",
      "          'dirty': 1,\n",
      "          'dancing': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'nfirst': 1,\n",
      "          'becomes': 1,\n",
      "          'scummy': 1,\n",
      "          'wares': 1,\n",
      "          'cheetah': 1,\n",
      "          'short': 1,\n",
      "          'turning': 1,\n",
      "          'fictitious': 1,\n",
      "          'customers': 1,\n",
      "          'actual': 1,\n",
      "          'theatre': 1,\n",
      "          'nhey': 1,\n",
      "          'never': 1,\n",
      "          'said': 1,\n",
      "          'wasnt': 1,\n",
      "          'number': 1,\n",
      "          'nmaybe': 1,\n",
      "          'star': 1,\n",
      "          'connors': 1,\n",
      "          'gina': 1,\n",
      "          'gershon': 1,\n",
      "          'stops': 1,\n",
      "          'isnt': 1,\n",
      "          'brains': 1,\n",
      "          'pleasant': 1,\n",
      "          'disposition': 1,\n",
      "          'requests': 1,\n",
      "          'private': 1,\n",
      "          'boyfriend': 1,\n",
      "          'happens': 1,\n",
      "          'pleasureseeking': 1,\n",
      "          'worm': 1,\n",
      "          'runs': 1,\n",
      "          'interminable': 1,\n",
      "          'amount': 1,\n",
      "          'earns': 1,\n",
      "          'crystals': 1,\n",
      "          'understudy': 1,\n",
      "          'slut': 1,\n",
      "          'injures': 1,\n",
      "          'hospitalizes': 1,\n",
      "          'almost': 1,\n",
      "          'laughable': 1,\n",
      "          'guts': 1,\n",
      "          'whore': 1,\n",
      "          'nthats': 1,\n",
      "          'phrase': 1,\n",
      "          'hear': 1,\n",
      "          'different': 1,\n",
      "          'times': 1,\n",
      "          'completely': 1,\n",
      "          'ludicrous': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'soul': 1,\n",
      "          'end': 1,\n",
      "          'believe': 1,\n",
      "          'nwere': 1,\n",
      "          'root': 1,\n",
      "          'nno': 1,\n",
      "          'way': 1,\n",
      "          'nshes': 1,\n",
      "          'tramp': 1,\n",
      "          'backstabber': 1,\n",
      "          'deserved': 1,\n",
      "          'nothingleast': 1,\n",
      "          'vindication': 1,\n",
      "          'ahem': 1,\n",
      "          'climax': 1,\n",
      "          'explain': 1,\n",
      "          'think': 1,\n",
      "          'male': 1,\n",
      "          'glenn': 1,\n",
      "          'plummer': 1,\n",
      "          'claims': 1,\n",
      "          'talent': 1,\n",
      "          'opportunity': 1,\n",
      "          'let': 1,\n",
      "          'naked': 1,\n",
      "          'bit': 1,\n",
      "          'sure': 1,\n",
      "          'aint': 1,\n",
      "          'development': 1,\n",
      "          'nplummer': 1,\n",
      "          'appeared': 1,\n",
      "          'speed': 1,\n",
      "          '94': 1,\n",
      "          'smaller': 1,\n",
      "          'yet': 1,\n",
      "          'goes': 1,\n",
      "          'absolutely': 1,\n",
      "          'nowhere': 1,\n",
      "          'except': 1,\n",
      "          'maybe': 1,\n",
      "          'deliver': 1,\n",
      "          'unsubtle': 1,\n",
      "          'hint': 1,\n",
      "          'fornicators': 1,\n",
      "          'practice': 1,\n",
      "          'birth': 1,\n",
      "          'control': 1,\n",
      "          'nkyle': 1,\n",
      "          'promised': 1,\n",
      "          'payday': 1,\n",
      "          'standards': 1,\n",
      "          'dipped': 1,\n",
      "          'since': 1,\n",
      "          'appearing': 1,\n",
      "          'blue': 1,\n",
      "          'velvet': 1,\n",
      "          'nthat': 1,\n",
      "          'weird': 1,\n",
      "          'critics': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          '80s': 1,\n",
      "          'nnow': 1,\n",
      "          'say': 1,\n",
      "          'acted': 1,\n",
      "          'worst': 1,\n",
      "          '90s': 1,\n",
      "          'nhis': 1,\n",
      "          'sleazy': 1,\n",
      "          'important': 1,\n",
      "          'dont': 1,\n",
      "          'learn': 1,\n",
      "          'anything': 1,\n",
      "          'uses': 1,\n",
      "          'get': 1,\n",
      "          'wants': 1,\n",
      "          'means': 1,\n",
      "          'fits': 1,\n",
      "          'characters': 1,\n",
      "          'nis': 1,\n",
      "          'villain': 1,\n",
      "          'nwho': 1,\n",
      "          'cares': 1,\n",
      "          'nultimately': 1,\n",
      "          'tiresome': 1,\n",
      "          'explicit': 1,\n",
      "          'neveryone': 1,\n",
      "          'know': 1,\n",
      "          'softcore': 1,\n",
      "          'acts': 1,\n",
      "          'copulation': 1,\n",
      "          'riotous': 1,\n",
      "          'romp': 1,\n",
      "          'pool': 1,\n",
      "          'nwhat': 1,\n",
      "          'issue': 1,\n",
      "          'meanspirited': 1,\n",
      "          'neveryones': 1,\n",
      "          'either': 1,\n",
      "          'wishing': 1,\n",
      "          'exposed': 1,\n",
      "          'evils': 1,\n",
      "          'couldnt': 1,\n",
      "          'made': 1,\n",
      "          'point': 1,\n",
      "          'highlighting': 1,\n",
      "          'whispers': 1,\n",
      "          'grunts': 1,\n",
      "          'sounds': 1,\n",
      "          'numbers': 1,\n",
      "          'cant': 1,\n",
      "          'appreciate': 1,\n",
      "          'capable': 1,\n",
      "          'onstage': 1,\n",
      "          'nberkley': 1,\n",
      "          'future': 1,\n",
      "          'hollywood': 1,\n",
      "          'great': 1,\n",
      "          'porn': 1,\n",
      "          'still': 1,\n",
      "          'active': 1,\n",
      "          'dishonourable': 1,\n",
      "          'profession': 1,\n",
      "          'nperhaps': 1,\n",
      "          'could': 1,\n",
      "          'join': 1,\n",
      "          'ranks': 1,\n",
      "          'leave': 1,\n",
      "          'real': 1,\n",
      "          'acting': 1,\n",
      "          'pauly': 1,\n",
      "          'shore': 1,\n",
      "          'cindy': 1,\n",
      "          'crawford': 1,\n",
      "          'noops': 1,\n",
      "          'actors': 1,\n",
      "          'nwell': 1,\n",
      "          'contemptable': 1,\n",
      "          'slutty': 1,\n",
      "          'nuseless': 1,\n",
      "          'triviaironically': 1,\n",
      "          'played': 1,\n",
      "          'virtuous': 1,\n",
      "          'holier': 1,\n",
      "          'thou': 1,\n",
      "          'jessie': 1,\n",
      "          'teenybopper': 1,\n",
      "          'tv': 1,\n",
      "          'saved': 1,\n",
      "          'bell': 1,\n",
      "          'breaking': 1,\n",
      "          'screen': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jackie': 13,\n",
      "          'chan': 7,\n",
      "          'jackies': 7,\n",
      "          'action': 5,\n",
      "          'films': 5,\n",
      "          'mr': 4,\n",
      "          'nice': 4,\n",
      "          'guy': 4,\n",
      "          'film': 4,\n",
      "          'scenes': 4,\n",
      "          'nthe': 4,\n",
      "          'plot': 3,\n",
      "          'nhowever': 3,\n",
      "          'ever': 3,\n",
      "          'cooking': 3,\n",
      "          'diana': 3,\n",
      "          'one': 3,\n",
      "          'tape': 3,\n",
      "          'english': 3,\n",
      "          'know': 2,\n",
      "          'na': 2,\n",
      "          'nearly': 2,\n",
      "          'make': 2,\n",
      "          'rest': 2,\n",
      "          'best': 2,\n",
      "          'nthis': 2,\n",
      "          'chef': 2,\n",
      "          'somehow': 2,\n",
      "          'supercop': 2,\n",
      "          'nit': 2,\n",
      "          'goons': 2,\n",
      "          'another': 2,\n",
      "          'doesnt': 2,\n",
      "          'fight': 2,\n",
      "          'like': 2,\n",
      "          'apparently': 2,\n",
      "          'bad': 2,\n",
      "          'case': 2,\n",
      "          'nbut': 2,\n",
      "          'use': 2,\n",
      "          'useful': 2,\n",
      "          'neither': 2,\n",
      "          'may': 2,\n",
      "          'better': 2,\n",
      "          'latest': 1,\n",
      "          'expect': 1,\n",
      "          'weak': 1,\n",
      "          'terrible': 1,\n",
      "          'dialogue': 1,\n",
      "          'little': 1,\n",
      "          'acting': 1,\n",
      "          'ability': 1,\n",
      "          'jawdropping': 1,\n",
      "          'sequences': 1,\n",
      "          'worthwhile': 1,\n",
      "          'lacks': 1,\n",
      "          'sparkle': 1,\n",
      "          'efforts': 1,\n",
      "          'weaknesses': 1,\n",
      "          'glaring': 1,\n",
      "          'njackie': 1,\n",
      "          'plays': 1,\n",
      "          'else': 1,\n",
      "          'time': 1,\n",
      "          'hes': 1,\n",
      "          'famous': 1,\n",
      "          'hosts': 1,\n",
      "          'australian': 1,\n",
      "          'show': 1,\n",
      "          'nnot': 1,\n",
      "          'makes': 1,\n",
      "          'difference': 1,\n",
      "          'nthere': 1,\n",
      "          'two': 1,\n",
      "          'nfor': 1,\n",
      "          'mutates': 1,\n",
      "          'never': 1,\n",
      "          'explain': 1,\n",
      "          'character': 1,\n",
      "          'superb': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'skills': 1,\n",
      "          'perhaps': 1,\n",
      "          'class': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'siege': 1,\n",
      "          'tv': 1,\n",
      "          'newswoman': 1,\n",
      "          'gabrielle': 1,\n",
      "          'fitzpatrick': 1,\n",
      "          'covertly': 1,\n",
      "          'tapes': 1,\n",
      "          'drug': 1,\n",
      "          'deal': 1,\n",
      "          'involving': 1,\n",
      "          'kingpin': 1,\n",
      "          'giancarlo': 1,\n",
      "          'richard': 1,\n",
      "          'norton': 1,\n",
      "          'local': 1,\n",
      "          'gang': 1,\n",
      "          'toughs': 1,\n",
      "          'demons': 1,\n",
      "          'nalthough': 1,\n",
      "          'camcorder': 1,\n",
      "          'result': 1,\n",
      "          'full': 1,\n",
      "          'closeups': 1,\n",
      "          'multiple': 1,\n",
      "          'angles': 1,\n",
      "          'hmmm': 1,\n",
      "          'nshades': 1,\n",
      "          'broadcast': 1,\n",
      "          'news': 1,\n",
      "          'nanyway': 1,\n",
      "          'discover': 1,\n",
      "          'anything': 1,\n",
      "          'recover': 1,\n",
      "          'nhere': 1,\n",
      "          'lies': 1,\n",
      "          'crucial': 1,\n",
      "          'flaw': 1,\n",
      "          'story': 1,\n",
      "          'anyone': 1,\n",
      "          'realize': 1,\n",
      "          'copy': 1,\n",
      "          'noh': 1,\n",
      "          'well': 1,\n",
      "          'said': 1,\n",
      "          'movies': 1,\n",
      "          'sense': 1,\n",
      "          'nas': 1,\n",
      "          'luck': 1,\n",
      "          'would': 1,\n",
      "          'runs': 1,\n",
      "          'across': 1,\n",
      "          'wouldnt': 1,\n",
      "          'accidentally': 1,\n",
      "          'ends': 1,\n",
      "          'leads': 1,\n",
      "          'countless': 1,\n",
      "          'chase': 1,\n",
      "          'andor': 1,\n",
      "          'look': 1,\n",
      "          'could': 1,\n",
      "          'lifted': 1,\n",
      "          'rumble': 1,\n",
      "          'bronx': 1,\n",
      "          'movie': 1,\n",
      "          'nin': 1,\n",
      "          'move': 1,\n",
      "          'designed': 1,\n",
      "          'woo': 1,\n",
      "          'american': 1,\n",
      "          'englishspeaking': 1,\n",
      "          'audiences': 1,\n",
      "          'uses': 1,\n",
      "          'primary': 1,\n",
      "          'language': 1,\n",
      "          'mean': 1,\n",
      "          'end': 1,\n",
      "          'atrocious': 1,\n",
      "          'dubbing': 1,\n",
      "          'afflicted': 1,\n",
      "          'recent': 1,\n",
      "          'americanized': 1,\n",
      "          'releases': 1,\n",
      "          'nstrangely': 1,\n",
      "          'many': 1,\n",
      "          'characters': 1,\n",
      "          'speaking': 1,\n",
      "          'overdubbed': 1,\n",
      "          'poorly': 1,\n",
      "          'nwhether': 1,\n",
      "          'looping': 1,\n",
      "          'effort': 1,\n",
      "          'minimize': 1,\n",
      "          'accents': 1,\n",
      "          'simple': 1,\n",
      "          'nostalgia': 1,\n",
      "          'achieve': 1,\n",
      "          'level': 1,\n",
      "          'distraction': 1,\n",
      "          'present': 1,\n",
      "          'dubbed': 1,\n",
      "          'negligible': 1,\n",
      "          'merely': 1,\n",
      "          'excuse': 1,\n",
      "          'run': 1,\n",
      "          'various': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'plots': 1,\n",
      "          'always': 1,\n",
      "          'second': 1,\n",
      "          'seems': 1,\n",
      "          'odd': 1,\n",
      "          'filmmakers': 1,\n",
      "          'stuck': 1,\n",
      "          'us': 1,\n",
      "          'tired': 1,\n",
      "          'retread': 1,\n",
      "          'nlook': 1,\n",
      "          'playing': 1,\n",
      "          'advantage': 1,\n",
      "          'nwatching': 1,\n",
      "          'stuff': 1,\n",
      "          'kitchen': 1,\n",
      "          'beating': 1,\n",
      "          'guys': 1,\n",
      "          'foodstuffs': 1,\n",
      "          'sounds': 1,\n",
      "          'perfect': 1,\n",
      "          'setup': 1,\n",
      "          'innumerable': 1,\n",
      "          'comic': 1,\n",
      "          'stunts': 1,\n",
      "          'mixed': 1,\n",
      "          'bag': 1,\n",
      "          'ntheres': 1,\n",
      "          'really': 1,\n",
      "          'holds': 1,\n",
      "          'barred': 1,\n",
      "          'become': 1,\n",
      "          'trademark': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'arbitrary': 1,\n",
      "          'location': 1,\n",
      "          'construction': 1,\n",
      "          'site': 1,\n",
      "          'sole': 1,\n",
      "          'reason': 1,\n",
      "          'lots': 1,\n",
      "          'nifty': 1,\n",
      "          'things': 1,\n",
      "          'lying': 1,\n",
      "          'around': 1,\n",
      "          'ala': 1,\n",
      "          'worst': 1,\n",
      "          'long': 1,\n",
      "          'inspiration': 1,\n",
      "          'gratuitous': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'distracting': 1,\n",
      "          'nonce': 1,\n",
      "          'twice': 1,\n",
      "          'highlight': 1,\n",
      "          'spectacular': 1,\n",
      "          'stunt': 1,\n",
      "          'sequence': 1,\n",
      "          'slomo': 1,\n",
      "          'running': 1,\n",
      "          'nod': 1,\n",
      "          'sixmillion': 1,\n",
      "          'dollar': 1,\n",
      "          'man': 1,\n",
      "          'pathetic': 1,\n",
      "          'attempt': 1,\n",
      "          'disguise': 1,\n",
      "          'fact': 1,\n",
      "          'slowing': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'need': 1,\n",
      "          'fix': 1,\n",
      "          'go': 1,\n",
      "          'ahead': 1,\n",
      "          'see': 1,\n",
      "          'youre': 1,\n",
      "          'mood': 1,\n",
      "          'good': 1,\n",
      "          'youd': 1,\n",
      "          'hitting': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'work': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'fight': 5,\n",
      "          'club': 5,\n",
      "          'like': 5,\n",
      "          'nthe': 4,\n",
      "          'nthis': 3,\n",
      "          'im': 3,\n",
      "          'norton': 3,\n",
      "          'think': 3,\n",
      "          'things': 3,\n",
      "          'get': 3,\n",
      "          'two': 3,\n",
      "          'shows': 3,\n",
      "          'really': 3,\n",
      "          'ni': 3,\n",
      "          'fincher': 2,\n",
      "          'script': 2,\n",
      "          'hours': 2,\n",
      "          'minutes': 2,\n",
      "          'goes': 2,\n",
      "          'story': 2,\n",
      "          'life': 2,\n",
      "          'disease': 2,\n",
      "          'sessions': 2,\n",
      "          'meets': 2,\n",
      "          'bonham': 2,\n",
      "          'carter': 2,\n",
      "          'nnorton': 2,\n",
      "          'help': 2,\n",
      "          'thing': 2,\n",
      "          'worse': 2,\n",
      "          'brad': 2,\n",
      "          'pitt': 2,\n",
      "          'men': 2,\n",
      "          'attention': 2,\n",
      "          'nfincher': 2,\n",
      "          'step': 2,\n",
      "          'gets': 2,\n",
      "          'good': 2,\n",
      "          'nit': 2,\n",
      "          'continues': 2,\n",
      "          'might': 2,\n",
      "          'trailer': 2,\n",
      "          'first': 1,\n",
      "          'rule': 1,\n",
      "          'dont': 1,\n",
      "          'talk': 1,\n",
      "          'quote': 1,\n",
      "          'deals': 1,\n",
      "          'directly': 1,\n",
      "          'opinion': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'even': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'ndirector': 1,\n",
      "          'david': 1,\n",
      "          'seven': 1,\n",
      "          'completely': 1,\n",
      "          'gone': 1,\n",
      "          'edge': 1,\n",
      "          'nwith': 1,\n",
      "          'crude': 1,\n",
      "          'humor': 1,\n",
      "          'intolerable': 1,\n",
      "          '2': 1,\n",
      "          '19': 1,\n",
      "          'pure': 1,\n",
      "          'torture': 1,\n",
      "          'surprised': 1,\n",
      "          'didnt': 1,\n",
      "          'walk': 1,\n",
      "          'show': 1,\n",
      "          'hype': 1,\n",
      "          'kills': 1,\n",
      "          'nits': 1,\n",
      "          'rare': 1,\n",
      "          'hyped': 1,\n",
      "          'turns': 1,\n",
      "          'noteworthy': 1,\n",
      "          'exception': 1,\n",
      "          'nedward': 1,\n",
      "          'insomniac': 1,\n",
      "          'trying': 1,\n",
      "          'enlighten': 1,\n",
      "          'dull': 1,\n",
      "          'going': 1,\n",
      "          'variety': 1,\n",
      "          'therapy': 1,\n",
      "          'marla': 1,\n",
      "          'helena': 1,\n",
      "          'claims': 1,\n",
      "          'wrecking': 1,\n",
      "          'pleasurable': 1,\n",
      "          'lifestyle': 1,\n",
      "          'spots': 1,\n",
      "          'session': 1,\n",
      "          'also': 1,\n",
      "          'attended': 1,\n",
      "          'napparently': 1,\n",
      "          'see': 1,\n",
      "          'literally': 1,\n",
      "          'living': 1,\n",
      "          'pain': 1,\n",
      "          'nwhy': 1,\n",
      "          'person': 1,\n",
      "          'would': 1,\n",
      "          'beyond': 1,\n",
      "          'soon': 1,\n",
      "          'assigned': 1,\n",
      "          'job': 1,\n",
      "          'calls': 1,\n",
      "          'traveling': 1,\n",
      "          'plane': 1,\n",
      "          'tyler': 1,\n",
      "          'durden': 1,\n",
      "          'develop': 1,\n",
      "          'bond': 1,\n",
      "          'go': 1,\n",
      "          'bar': 1,\n",
      "          'golly': 1,\n",
      "          'drunk': 1,\n",
      "          'pitiful': 1,\n",
      "          'characters': 1,\n",
      "          'nhow': 1,\n",
      "          'come': 1,\n",
      "          'stuff': 1,\n",
      "          'nanyway': 1,\n",
      "          'fighting': 1,\n",
      "          'catches': 1,\n",
      "          'pathetic': 1,\n",
      "          'losers': 1,\n",
      "          'formed': 1,\n",
      "          'nout': 1,\n",
      "          'mess': 1,\n",
      "          'manages': 1,\n",
      "          'lie': 1,\n",
      "          'message': 1,\n",
      "          'us': 1,\n",
      "          'society': 1,\n",
      "          'robots': 1,\n",
      "          'nwe': 1,\n",
      "          'work': 1,\n",
      "          'jobs': 1,\n",
      "          'want': 1,\n",
      "          'nour': 1,\n",
      "          'insanity': 1,\n",
      "          'brain': 1,\n",
      "          'makes': 1,\n",
      "          'blame': 1,\n",
      "          'others': 1,\n",
      "          'ncall': 1,\n",
      "          'crazy': 1,\n",
      "          'common': 1,\n",
      "          'knowledge': 1,\n",
      "          'acting': 1,\n",
      "          'moodier': 1,\n",
      "          'poignant': 1,\n",
      "          'probably': 1,\n",
      "          'one': 1,\n",
      "          'reasons': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'neven': 1,\n",
      "          'actors': 1,\n",
      "          'solid': 1,\n",
      "          'actress': 1,\n",
      "          'manage': 1,\n",
      "          'weaken': 1,\n",
      "          'couldnt': 1,\n",
      "          'hide': 1,\n",
      "          'face': 1,\n",
      "          'shame': 1,\n",
      "          'beats': 1,\n",
      "          'bloody': 1,\n",
      "          'pulp': 1,\n",
      "          'desperate': 1,\n",
      "          'guess': 1,\n",
      "          'right': 1,\n",
      "          'role': 1,\n",
      "          'felt': 1,\n",
      "          'beating': 1,\n",
      "          'nhis': 1,\n",
      "          'bothersome': 1,\n",
      "          'depressing': 1,\n",
      "          'character': 1,\n",
      "          'made': 1,\n",
      "          'disgusted': 1,\n",
      "          '20': 1,\n",
      "          'million': 1,\n",
      "          'fee': 1,\n",
      "          'showed': 1,\n",
      "          'money': 1,\n",
      "          'nothing': 1,\n",
      "          'nhelena': 1,\n",
      "          'however': 1,\n",
      "          'purpose': 1,\n",
      "          'nshe': 1,\n",
      "          'popped': 1,\n",
      "          'screen': 1,\n",
      "          'mumbled': 1,\n",
      "          'lines': 1,\n",
      "          'smoked': 1,\n",
      "          'left': 1,\n",
      "          'seems': 1,\n",
      "          '6': 1,\n",
      "          'drags': 1,\n",
      "          'headache': 1,\n",
      "          'bigger': 1,\n",
      "          'nears': 1,\n",
      "          'end': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'hits': 1,\n",
      "          'rock': 1,\n",
      "          'bottom': 1,\n",
      "          'nthough': 1,\n",
      "          'conclusion': 1,\n",
      "          'kept': 1,\n",
      "          'interest': 1,\n",
      "          'mere': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          '5': 1,\n",
      "          'backs': 1,\n",
      "          'move': 1,\n",
      "          'snails': 1,\n",
      "          'pace': 1,\n",
      "          'non': 1,\n",
      "          'side': 1,\n",
      "          'note': 1,\n",
      "          'redeeming': 1,\n",
      "          'elements': 1,\n",
      "          'coincidentally': 1,\n",
      "          'lasts': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'hopefully': 1,\n",
      "          'regret': 1,\n",
      "          'making': 1,\n",
      "          'least': 1,\n",
      "          'learn': 1,\n",
      "          'lesson': 1,\n",
      "          'nconcentrating': 1,\n",
      "          'atmosphere': 1,\n",
      "          'particular': 1,\n",
      "          'key': 1,\n",
      "          'moment': 1,\n",
      "          'wont': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'need': 1,\n",
      "          'support': 1,\n",
      "          'nalso': 1,\n",
      "          'afraid': 1,\n",
      "          'immature': 1,\n",
      "          'respond': 1,\n",
      "          'films': 1,\n",
      "          'violence': 1,\n",
      "          'last': 1,\n",
      "          'world': 1,\n",
      "          'needs': 1,\n",
      "          'people': 1,\n",
      "          'praising': 1,\n",
      "          'leader': 1,\n",
      "          'pointless': 1,\n",
      "          'cult': 1,\n",
      "          'nwhen': 1,\n",
      "          'ends': 1,\n",
      "          'glad': 1,\n",
      "          'home': 1,\n",
      "          'take': 1,\n",
      "          'advil': 1,\n",
      "          'nyoull': 1,\n",
      "          'either': 1,\n",
      "          'enjoy': 1,\n",
      "          'offer': 1,\n",
      "          'agree': 1,\n",
      "          'ed': 1,\n",
      "          'says': 1,\n",
      "          'f': 1,\n",
      "          'ing': 1,\n",
      "          'stupid': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'without': 5,\n",
      "          'home': 4,\n",
      "          'fries': 4,\n",
      "          'sally': 3,\n",
      "          'angus': 3,\n",
      "          'mother': 3,\n",
      "          'movie': 3,\n",
      "          'woman': 3,\n",
      "          'hit': 2,\n",
      "          'took': 2,\n",
      "          'look': 2,\n",
      "          'pregnant': 2,\n",
      "          'joint': 2,\n",
      "          'nthe': 2,\n",
      "          'child': 2,\n",
      "          'helicopter': 2,\n",
      "          'wilson': 2,\n",
      "          'dorian': 2,\n",
      "          'like': 2,\n",
      "          'better': 2,\n",
      "          'absolutely': 2,\n",
      "          'nothing': 2,\n",
      "          'could': 2,\n",
      "          'gun': 2,\n",
      "          'note': 1,\n",
      "          'screenwriters': 1,\n",
      "          'self': 1,\n",
      "          'big': 1,\n",
      "          'time': 1,\n",
      "          'studios': 1,\n",
      "          'come': 1,\n",
      "          'knocking': 1,\n",
      "          'scripts': 1,\n",
      "          'sitting': 1,\n",
      "          'bottom': 1,\n",
      "          'drawer': 1,\n",
      "          'tell': 1,\n",
      "          'em': 1,\n",
      "          'road': 1,\n",
      "          'ngilligan': 1,\n",
      "          'wrote': 1,\n",
      "          'arbitrarilytitled': 1,\n",
      "          'ten': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'shelved': 1,\n",
      "          'found': 1,\n",
      "          'success': 1,\n",
      "          'one': 1,\n",
      "          'second': 1,\n",
      "          'gilligans': 1,\n",
      "          'comedy': 1,\n",
      "          'read': 1,\n",
      "          'wearing': 1,\n",
      "          'rosetinted': 1,\n",
      "          'glasses': 1,\n",
      "          'ndrew': 1,\n",
      "          'stars': 1,\n",
      "          'dim': 1,\n",
      "          'sweet': 1,\n",
      "          'waitress': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'burger': 1,\n",
      "          'located': 1,\n",
      "          'somewhere': 1,\n",
      "          'southern': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'father': 1,\n",
      "          'dead': 1,\n",
      "          'victim': 1,\n",
      "          'severe': 1,\n",
      "          'heart': 1,\n",
      "          'attack': 1,\n",
      "          'brought': 1,\n",
      "          'sadistic': 1,\n",
      "          'torture': 1,\n",
      "          'two': 1,\n",
      "          'stepsons': 1,\n",
      "          'flyboys': 1,\n",
      "          'scared': 1,\n",
      "          'lowflying': 1,\n",
      "          'ndorian': 1,\n",
      "          'busey': 1,\n",
      "          'getting': 1,\n",
      "          'even': 1,\n",
      "          'philandering': 1,\n",
      "          'ways': 1,\n",
      "          'behalf': 1,\n",
      "          'anguished': 1,\n",
      "          'ohara': 1,\n",
      "          'ntrouble': 1,\n",
      "          'picked': 1,\n",
      "          'interference': 1,\n",
      "          'drivethru': 1,\n",
      "          'headset': 1,\n",
      "          'worries': 1,\n",
      "          'may': 1,\n",
      "          'heard': 1,\n",
      "          'conversations': 1,\n",
      "          'place': 1,\n",
      "          'prior': 1,\n",
      "          'accidental': 1,\n",
      "          'killing': 1,\n",
      "          'nso': 1,\n",
      "          'goes': 1,\n",
      "          'undercover': 1,\n",
      "          'burgerflipper': 1,\n",
      "          'say': 1,\n",
      "          'cheese': 1,\n",
      "          'falls': 1,\n",
      "          'mothertobe': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'mom': 1,\n",
      "          'homicidal': 1,\n",
      "          'plans': 1,\n",
      "          'ndoes': 1,\n",
      "          'sound': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'nwithout': 1,\n",
      "          'doubt': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'barrymore': 1,\n",
      "          'risk': 1,\n",
      "          'sounding': 1,\n",
      "          'sexist': 1,\n",
      "          'shes': 1,\n",
      "          'never': 1,\n",
      "          'looked': 1,\n",
      "          'curly': 1,\n",
      "          'redhead': 1,\n",
      "          'twinkling': 1,\n",
      "          'eyes': 1,\n",
      "          'nshe': 1,\n",
      "          'winning': 1,\n",
      "          'role': 1,\n",
      "          'requires': 1,\n",
      "          'except': 1,\n",
      "          'applecheek': 1,\n",
      "          'cute': 1,\n",
      "          'gawk': 1,\n",
      "          'reallife': 1,\n",
      "          'boyfriend': 1,\n",
      "          'nbut': 1,\n",
      "          'plot': 1,\n",
      "          'situations': 1,\n",
      "          'offputting': 1,\n",
      "          'save': 1,\n",
      "          'nthis': 1,\n",
      "          'desperately': 1,\n",
      "          'wants': 1,\n",
      "          'get': 1,\n",
      "          'mentioned': 1,\n",
      "          'breath': 1,\n",
      "          'coen': 1,\n",
      "          'brothers': 1,\n",
      "          'brand': 1,\n",
      "          'laboured': 1,\n",
      "          'hipness': 1,\n",
      "          'would': 1,\n",
      "          'foreign': 1,\n",
      "          'geniuses': 1,\n",
      "          'ethan': 1,\n",
      "          'joel': 1,\n",
      "          'nits': 1,\n",
      "          'raising': 1,\n",
      "          'arizona': 1,\n",
      "          'babies': 1,\n",
      "          'charm': 1,\n",
      "          'laughs': 1,\n",
      "          'human': 1,\n",
      "          'characters': 1,\n",
      "          'intelligence': 1,\n",
      "          'worst': 1,\n",
      "          'creepy': 1,\n",
      "          'nwhats': 1,\n",
      "          'funny': 1,\n",
      "          'threatening': 1,\n",
      "          'machine': 1,\n",
      "          'n': 1,\n",
      "          'unless': 1,\n",
      "          'question': 1,\n",
      "          'spice': 1,\n",
      "          'girl': 1,\n",
      "          'ntake': 1,\n",
      "          'helicopters': 1,\n",
      "          'quasiincestuous': 1,\n",
      "          'relationship': 1,\n",
      "          'sons': 1,\n",
      "          'illogical': 1,\n",
      "          'within': 1,\n",
      "          'movies': 1,\n",
      "          'framework': 1,\n",
      "          'still': 1,\n",
      "          'lives': 1,\n",
      "          'brother': 1,\n",
      "          'scenes': 1,\n",
      "          'murder': 1,\n",
      "          'attempted': 1,\n",
      "          'otherwise': 1,\n",
      "          'left': 1,\n",
      "          'story': 1,\n",
      "          'single': 1,\n",
      "          'works': 1,\n",
      "          'fast': 1,\n",
      "          'food': 1,\n",
      "          'dreams': 1,\n",
      "          'becoming': 1,\n",
      "          'country': 1,\n",
      "          'singer': 1,\n",
      "          'nthat': 1,\n",
      "          'turn': 1,\n",
      "          'boring': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'itd': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wild': 8,\n",
      "          'things': 7,\n",
      "          'film': 5,\n",
      "          'one': 4,\n",
      "          'noir': 3,\n",
      "          'twists': 3,\n",
      "          'kevin': 3,\n",
      "          'character': 3,\n",
      "          'murray': 3,\n",
      "          'nthe': 3,\n",
      "          'directors': 2,\n",
      "          'nwith': 2,\n",
      "          'ambiguous': 2,\n",
      "          'erotic': 2,\n",
      "          'quality': 2,\n",
      "          'picture': 2,\n",
      "          'movie': 2,\n",
      "          'turns': 2,\n",
      "          'becomes': 2,\n",
      "          'game': 2,\n",
      "          'bacon': 2,\n",
      "          'matt': 2,\n",
      "          'dillon': 2,\n",
      "          'world': 2,\n",
      "          'plot': 2,\n",
      "          'theres': 2,\n",
      "          'mcnaughton': 2,\n",
      "          'henry': 2,\n",
      "          'lombardo': 2,\n",
      "          'community': 2,\n",
      "          'nand': 2,\n",
      "          'script': 2,\n",
      "          'hes': 2,\n",
      "          'ntheres': 2,\n",
      "          'something': 2,\n",
      "          'knows': 2,\n",
      "          'dont': 2,\n",
      "          'people': 2,\n",
      "          'recent': 1,\n",
      "          'onslaught': 1,\n",
      "          'popped': 1,\n",
      "          'multiplexes': 1,\n",
      "          'everything': 1,\n",
      "          'ranging': 1,\n",
      "          'l': 1,\n",
      "          'confidential': 1,\n",
      "          'palmetto': 1,\n",
      "          'big': 1,\n",
      "          'lebowski': 1,\n",
      "          'proved': 1,\n",
      "          'artistic': 1,\n",
      "          'commodity': 1,\n",
      "          'veteran': 1,\n",
      "          'talented': 1,\n",
      "          'particular': 1,\n",
      "          'genre': 1,\n",
      "          'able': 1,\n",
      "          'collate': 1,\n",
      "          'sleazy': 1,\n",
      "          'underworld': 1,\n",
      "          'lowerclass': 1,\n",
      "          'glamorous': 1,\n",
      "          'opulent': 1,\n",
      "          'upperclass': 1,\n",
      "          'maintaining': 1,\n",
      "          'noirish': 1,\n",
      "          'ambience': 1,\n",
      "          'staple': 1,\n",
      "          'n': 1,\n",
      "          'could': 1,\n",
      "          'classified': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'sultry': 1,\n",
      "          'plain': 1,\n",
      "          'ol': 1,\n",
      "          'thriller': 1,\n",
      "          'category': 1,\n",
      "          'doesnt': 1,\n",
      "          'qualify': 1,\n",
      "          'motion': 1,\n",
      "          'noveracted': 1,\n",
      "          'overwrought': 1,\n",
      "          'overlong': 1,\n",
      "          'confused': 1,\n",
      "          'mess': 1,\n",
      "          'wants': 1,\n",
      "          'cake': 1,\n",
      "          'eat': 1,\n",
      "          'incalculable': 1,\n",
      "          'soon': 1,\n",
      "          'tedious': 1,\n",
      "          'exercise': 1,\n",
      "          'pointlessness': 1,\n",
      "          'nin': 1,\n",
      "          'spite': 1,\n",
      "          'efforts': 1,\n",
      "          'manage': 1,\n",
      "          'sustain': 1,\n",
      "          'straight': 1,\n",
      "          'faces': 1,\n",
      "          'throughout': 1,\n",
      "          'ordeal': 1,\n",
      "          'jells': 1,\n",
      "          'eroticism': 1,\n",
      "          'unpredictability': 1,\n",
      "          'motivation': 1,\n",
      "          'sense': 1,\n",
      "          'etc': 1,\n",
      "          'redeeming': 1,\n",
      "          'technical': 1,\n",
      "          'ndirected': 1,\n",
      "          'john': 1,\n",
      "          'portrait': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'follows': 1,\n",
      "          'sam': 1,\n",
      "          'hunkish': 1,\n",
      "          'suburban': 1,\n",
      "          'florida': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'teacher': 1,\n",
      "          'whos': 1,\n",
      "          'dream': 1,\n",
      "          'every': 1,\n",
      "          'spruced': 1,\n",
      "          'female': 1,\n",
      "          'nparticularly': 1,\n",
      "          'nkelly': 1,\n",
      "          'van': 1,\n",
      "          'ryan': 1,\n",
      "          'denise': 1,\n",
      "          'richards': 1,\n",
      "          'adores': 1,\n",
      "          'extent': 1,\n",
      "          'offers': 1,\n",
      "          'wash': 1,\n",
      "          'jeep': 1,\n",
      "          'partner': 1,\n",
      "          'nsoon': 1,\n",
      "          'tiny': 1,\n",
      "          'shorts': 1,\n",
      "          'soaked': 1,\n",
      "          'tells': 1,\n",
      "          'girl': 1,\n",
      "          'take': 1,\n",
      "          'hike': 1,\n",
      "          'enabling': 1,\n",
      "          'come': 1,\n",
      "          'house': 1,\n",
      "          'nnext': 1,\n",
      "          'thing': 1,\n",
      "          'cries': 1,\n",
      "          'rape': 1,\n",
      "          'socalled': 1,\n",
      "          'rollercoaster': 1,\n",
      "          'ride': 1,\n",
      "          'ensues': 1,\n",
      "          'na': 1,\n",
      "          'second': 1,\n",
      "          'accuser': 1,\n",
      "          'comes': 1,\n",
      "          'front': 1,\n",
      "          'suzie': 1,\n",
      "          'toller': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'boozedrinkin': 1,\n",
      "          'tattooed': 1,\n",
      "          'piece': 1,\n",
      "          'trailer': 1,\n",
      "          'trash': 1,\n",
      "          'charges': 1,\n",
      "          'sexually': 1,\n",
      "          'molesting': 1,\n",
      "          'virtually': 1,\n",
      "          'guaranteeing': 1,\n",
      "          'trial': 1,\n",
      "          'preposterous': 1,\n",
      "          'confessions': 1,\n",
      "          'asinine': 1,\n",
      "          'occurrences': 1,\n",
      "          'laughable': 1,\n",
      "          'courtroom': 1,\n",
      "          'procedures': 1,\n",
      "          'bound': 1,\n",
      "          'happen': 1,\n",
      "          'neven': 1,\n",
      "          'bill': 1,\n",
      "          'gets': 1,\n",
      "          'act': 1,\n",
      "          'lombardos': 1,\n",
      "          'zany': 1,\n",
      "          'lawyer': 1,\n",
      "          'nhe': 1,\n",
      "          'wears': 1,\n",
      "          'fake': 1,\n",
      "          'neck': 1,\n",
      "          'brace': 1,\n",
      "          'waves': 1,\n",
      "          'finger': 1,\n",
      "          'client': 1,\n",
      "          'infuses': 1,\n",
      "          'billy': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'knew': 1,\n",
      "          'nothing': 1,\n",
      "          'lose': 1,\n",
      "          'assigning': 1,\n",
      "          'role': 1,\n",
      "          'nas': 1,\n",
      "          'ridiculous': 1,\n",
      "          'sounds': 1,\n",
      "          'sane': 1,\n",
      "          'astonished': 1,\n",
      "          'nreporters': 1,\n",
      "          'flee': 1,\n",
      "          'scene': 1,\n",
      "          '8': 1,\n",
      "          '5million': 1,\n",
      "          'settlement': 1,\n",
      "          'libel': 1,\n",
      "          'suit': 1,\n",
      "          'kellys': 1,\n",
      "          'mother': 1,\n",
      "          'theresa': 1,\n",
      "          'russell': 1,\n",
      "          'cop': 1,\n",
      "          'also': 1,\n",
      "          'executive': 1,\n",
      "          'produced': 1,\n",
      "          'sniffs': 1,\n",
      "          'iffy': 1,\n",
      "          'concoction': 1,\n",
      "          'deceit': 1,\n",
      "          'murder': 1,\n",
      "          'lust': 1,\n",
      "          'nwe': 1,\n",
      "          'audience': 1,\n",
      "          'sniff': 1,\n",
      "          'lustful': 1,\n",
      "          'nlike': 1,\n",
      "          'many': 1,\n",
      "          'thrillers': 1,\n",
      "          'days': 1,\n",
      "          'including': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'eschews': 1,\n",
      "          'nmcnaughton': 1,\n",
      "          'handle': 1,\n",
      "          'camera': 1,\n",
      "          'keeps': 1,\n",
      "          'campy': 1,\n",
      "          'fillings': 1,\n",
      "          'flowing': 1,\n",
      "          'workmanlike': 1,\n",
      "          'ease': 1,\n",
      "          'territory': 1,\n",
      "          'covering': 1,\n",
      "          'harmless': 1,\n",
      "          'appetizer': 1,\n",
      "          'accompany': 1,\n",
      "          'furious': 1,\n",
      "          'unsettling': 1,\n",
      "          'directorial': 1,\n",
      "          'tour': 1,\n",
      "          'deforce': 1,\n",
      "          'ngeorge': 1,\n",
      "          'clintons': 1,\n",
      "          'score': 1,\n",
      "          'delight': 1,\n",
      "          'behold': 1,\n",
      "          'nbut': 1,\n",
      "          'humans': 1,\n",
      "          'characters': 1,\n",
      "          'mere': 1,\n",
      "          'devices': 1,\n",
      "          'nasty': 1,\n",
      "          'nwhat': 1,\n",
      "          'writer': 1,\n",
      "          'stephen': 1,\n",
      "          'peters': 1,\n",
      "          'grasp': 1,\n",
      "          'tediously': 1,\n",
      "          'uninvolving': 1,\n",
      "          'almost': 1,\n",
      "          'unbearable': 1,\n",
      "          'inhibit': 1,\n",
      "          'twisted': 1,\n",
      "          'interesting': 1,\n",
      "          'feel': 1,\n",
      "          'real': 1,\n",
      "          'care': 1,\n",
      "          'nnot': 1,\n",
      "          'even': 1,\n",
      "          'unintentionally': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'work': 1,\n",
      "          'much': 1,\n",
      "          'caricatures': 1,\n",
      "          'nthen': 1,\n",
      "          'content': 1,\n",
      "          'nearly': 1,\n",
      "          'earned': 1,\n",
      "          'nc17': 1,\n",
      "          'sexless': 1,\n",
      "          'badly': 1,\n",
      "          'edited': 1,\n",
      "          'poorly': 1,\n",
      "          'lit': 1,\n",
      "          'menageatrois': 1,\n",
      "          'flabbergastingly': 1,\n",
      "          'inept': 1,\n",
      "          'scenes': 1,\n",
      "          'graced': 1,\n",
      "          'country': 1,\n",
      "          'bacons': 1,\n",
      "          'member': 1,\n",
      "          'makes': 1,\n",
      "          'cameo': 1,\n",
      "          'appearance': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'go': 1,\n",
      "          'nironically': 1,\n",
      "          'wildest': 1,\n",
      "          'elements': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'movie': 6,\n",
      "          'like': 5,\n",
      "          'space': 5,\n",
      "          'one': 5,\n",
      "          'nthey': 4,\n",
      "          'n': 4,\n",
      "          'nasa': 4,\n",
      "          'affleck': 4,\n",
      "          'asteroid': 3,\n",
      "          'someone': 3,\n",
      "          'sequence': 3,\n",
      "          'almost': 3,\n",
      "          'bunch': 3,\n",
      "          'guy': 3,\n",
      "          'called': 3,\n",
      "          'little': 3,\n",
      "          'rocks': 2,\n",
      "          'us': 2,\n",
      "          'kind': 2,\n",
      "          'damage': 2,\n",
      "          'armageddon': 2,\n",
      "          'deep': 2,\n",
      "          'impact': 2,\n",
      "          'willis': 2,\n",
      "          'harry': 2,\n",
      "          'oil': 2,\n",
      "          'driller': 2,\n",
      "          'experience': 2,\n",
      "          'deepcore': 2,\n",
      "          'build': 2,\n",
      "          'obligatory': 2,\n",
      "          'daughter': 2,\n",
      "          'something': 2,\n",
      "          'care': 2,\n",
      "          'ni': 2,\n",
      "          'scenes': 2,\n",
      "          'last': 2,\n",
      "          'often': 2,\n",
      "          'world': 2,\n",
      "          'tyler': 2,\n",
      "          'songs': 2,\n",
      "          'bay': 2,\n",
      "          'eventually': 2,\n",
      "          'dead': 2,\n",
      "          'could': 2,\n",
      "          'nit': 2,\n",
      "          'believe': 2,\n",
      "          'story': 2,\n",
      "          'nthe': 2,\n",
      "          'perhaps': 2,\n",
      "          'jaws': 2,\n",
      "          'men': 2,\n",
      "          'respect': 2,\n",
      "          'another': 2,\n",
      "          'characters': 2,\n",
      "          'get': 2,\n",
      "          'feeling': 2,\n",
      "          'even': 2,\n",
      "          'team': 2,\n",
      "          'rocksactually': 1,\n",
      "          'lots': 1,\n",
      "          'fly': 1,\n",
      "          'slow': 1,\n",
      "          'fast': 1,\n",
      "          'motion': 1,\n",
      "          'several': 1,\n",
      "          'points': 1,\n",
      "          'seem': 1,\n",
      "          'dangerous': 1,\n",
      "          'twirl': 1,\n",
      "          'air': 1,\n",
      "          'instead': 1,\n",
      "          'propelling': 1,\n",
      "          'forward': 1,\n",
      "          'landonce': 1,\n",
      "          'need': 1,\n",
      "          'break': 1,\n",
      "          'sequencesthey': 1,\n",
      "          'cause': 1,\n",
      "          'enough': 1,\n",
      "          'destroy': 1,\n",
      "          'chrysler': 1,\n",
      "          'building': 1,\n",
      "          'nary': 1,\n",
      "          'mention': 1,\n",
      "          'apocalyptic': 1,\n",
      "          'events': 1,\n",
      "          'made': 1,\n",
      "          'occur': 1,\n",
      "          'also': 1,\n",
      "          'might': 1,\n",
      "          'interesting': 1,\n",
      "          'element': 1,\n",
      "          'steroid': 1,\n",
      "          'users': 1,\n",
      "          'answer': 1,\n",
      "          'nbruce': 1,\n",
      "          'stars': 1,\n",
      "          'stamper': 1,\n",
      "          'famed': 1,\n",
      "          'oildriller': 1,\n",
      "          'commissioned': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'stop': 1,\n",
      "          'giant': 1,\n",
      "          'travels': 1,\n",
      "          'beyond': 1,\n",
      "          'zero': 1,\n",
      "          'barrier': 1,\n",
      "          'destroys': 1,\n",
      "          'planet': 1,\n",
      "          'nwhy': 1,\n",
      "          'require': 1,\n",
      "          'mining': 1,\n",
      "          'plant': 1,\n",
      "          'nuclear': 1,\n",
      "          'missile': 1,\n",
      "          'said': 1,\n",
      "          'unintentionally': 1,\n",
      "          'nhilarious': 1,\n",
      "          'asks': 1,\n",
      "          'inspect': 1,\n",
      "          'built': 1,\n",
      "          'based': 1,\n",
      "          'blueprints': 1,\n",
      "          'poorly': 1,\n",
      "          'constructedharry': 1,\n",
      "          'criticizes': 1,\n",
      "          'every': 1,\n",
      "          'aspect': 1,\n",
      "          'nwe': 1,\n",
      "          'trust': 1,\n",
      "          'shuttles': 1,\n",
      "          'nharry': 1,\n",
      "          'assembles': 1,\n",
      "          'ragtag': 1,\n",
      "          'cowboys': 1,\n",
      "          'including': 1,\n",
      "          'blond': 1,\n",
      "          'fat': 1,\n",
      "          'black': 1,\n",
      "          'wiseass': 1,\n",
      "          'man': 1,\n",
      "          'sleeping': 1,\n",
      "          'nonce': 1,\n",
      "          'reach': 1,\n",
      "          'going': 1,\n",
      "          'wrongperhaps': 1,\n",
      "          'fact': 1,\n",
      "          'sent': 1,\n",
      "          'nincompoops': 1,\n",
      "          'outer': 1,\n",
      "          'count': 1,\n",
      "          'number': 1,\n",
      "          'times': 1,\n",
      "          'fail': 1,\n",
      "          'mission': 1,\n",
      "          'fingers': 1,\n",
      "          'toes': 1,\n",
      "          'nwhether': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'reveal': 1,\n",
      "          'nnor': 1,\n",
      "          'say': 1,\n",
      "          'know': 1,\n",
      "          'youre': 1,\n",
      "          'trouble': 1,\n",
      "          'dwarfs': 1,\n",
      "          'terms': 1,\n",
      "          'emotion': 1,\n",
      "          'scope': 1,\n",
      "          'nwillis': 1,\n",
      "          'barely': 1,\n",
      "          'chance': 1,\n",
      "          'come': 1,\n",
      "          'alive': 1,\n",
      "          'ditto': 1,\n",
      "          'ntheir': 1,\n",
      "          'big': 1,\n",
      "          'mostly': 1,\n",
      "          'reserved': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'minuteand': 1,\n",
      "          'futileattempt': 1,\n",
      "          'inject': 1,\n",
      "          'warmth': 1,\n",
      "          'material': 1,\n",
      "          'nsteve': 1,\n",
      "          'buscemis': 1,\n",
      "          'characterthe': 1,\n",
      "          'wiseassis': 1,\n",
      "          'exceptionally': 1,\n",
      "          'problematic': 1,\n",
      "          'rockhound': 1,\n",
      "          'hes': 1,\n",
      "          'sarcastic': 1,\n",
      "          'foolish': 1,\n",
      "          'tape': 1,\n",
      "          'chair': 1,\n",
      "          'spends': 1,\n",
      "          'nso': 1,\n",
      "          'bring': 1,\n",
      "          'begin': 1,\n",
      "          'nrather': 1,\n",
      "          'write': 1,\n",
      "          'give': 1,\n",
      "          'nhis': 1,\n",
      "          'almostwitty': 1,\n",
      "          'oneliners': 1,\n",
      "          'serious': 1,\n",
      "          'scowls': 1,\n",
      "          'mopes': 1,\n",
      "          'demonstrates': 1,\n",
      "          'psychotic': 1,\n",
      "          'tendencies': 1,\n",
      "          'point': 1,\n",
      "          'chases': 1,\n",
      "          'shotgun': 1,\n",
      "          'screwing': 1,\n",
      "          'firing': 1,\n",
      "          'causing': 1,\n",
      "          'significant': 1,\n",
      "          'rig': 1,\n",
      "          'nim': 1,\n",
      "          'guessing': 1,\n",
      "          'qualifies': 1,\n",
      "          'guidelines': 1,\n",
      "          'unfit': 1,\n",
      "          'travel': 1,\n",
      "          'least': 1,\n",
      "          'sky': 1,\n",
      "          'blue': 1,\n",
      "          'nliv': 1,\n",
      "          'pretty': 1,\n",
      "          'humourless': 1,\n",
      "          'always': 1,\n",
      "          'suspiciously': 1,\n",
      "          'four': 1,\n",
      "          'fathers': 1,\n",
      "          'bands': 1,\n",
      "          'aerosmith': 1,\n",
      "          'grace': 1,\n",
      "          'soundtrack': 1,\n",
      "          'ndirector': 1,\n",
      "          'michael': 1,\n",
      "          'lays': 1,\n",
      "          'visual': 1,\n",
      "          'sound': 1,\n",
      "          'effects': 1,\n",
      "          'thick': 1,\n",
      "          'ketchup': 1,\n",
      "          'drowning': 1,\n",
      "          'onscreen': 1,\n",
      "          'middle': 1,\n",
      "          'hour': 1,\n",
      "          'nonsensical': 1,\n",
      "          'pyrotechnic': 1,\n",
      "          'assault': 1,\n",
      "          'average': 1,\n",
      "          'primates': 1,\n",
      "          'brain': 1,\n",
      "          'nwhenever': 1,\n",
      "          'dies': 1,\n",
      "          'crew': 1,\n",
      "          'member': 1,\n",
      "          'inevitably': 1,\n",
      "          'yells': 1,\n",
      "          'lost': 1,\n",
      "          'insert': 1,\n",
      "          'persons': 1,\n",
      "          'name': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'distinguish': 1,\n",
      "          'oilguycumastronaut': 1,\n",
      "          'live': 1,\n",
      "          'closeups': 1,\n",
      "          'corpses': 1,\n",
      "          'faces': 1,\n",
      "          'beneath': 1,\n",
      "          'cracked': 1,\n",
      "          'helmets': 1,\n",
      "          'provided': 1,\n",
      "          'assistance': 1,\n",
      "          'skin': 1,\n",
      "          'covered': 1,\n",
      "          'fake': 1,\n",
      "          'blood': 1,\n",
      "          'narmageddon': 1,\n",
      "          'terrible': 1,\n",
      "          'godzilla': 1,\n",
      "          'looks': 1,\n",
      "          'nicer': 1,\n",
      "          'fewer': 1,\n",
      "          'plotholes': 1,\n",
      "          'within': 1,\n",
      "          'equally': 1,\n",
      "          'ludicrous': 1,\n",
      "          'framework': 1,\n",
      "          'vivid': 1,\n",
      "          'soundmix': 1,\n",
      "          'nbut': 1,\n",
      "          'twoandahalf': 1,\n",
      "          'hours': 1,\n",
      "          'actually': 1,\n",
      "          'happened': 1,\n",
      "          'course': 1,\n",
      "          'love': 1,\n",
      "          'played': 1,\n",
      "          'ads': 1,\n",
      "          'hoping': 1,\n",
      "          'catch': 1,\n",
      "          'people': 1,\n",
      "          'recover': 1,\n",
      "          'titanicfever': 1,\n",
      "          'nbollocks': 1,\n",
      "          'lovers': 1,\n",
      "          'miles': 1,\n",
      "          'apart': 1,\n",
      "          'throughouterase': 1,\n",
      "          'thoughts': 1,\n",
      "          'nude': 1,\n",
      "          'sketching': 1,\n",
      "          'carsex': 1,\n",
      "          'replace': 1,\n",
      "          'shots': 1,\n",
      "          'liv': 1,\n",
      "          'tearing': 1,\n",
      "          'ben': 1,\n",
      "          'dicks': 1,\n",
      "          'around': 1,\n",
      "          'mooncrawler': 1,\n",
      "          'nremember': 1,\n",
      "          'nin': 1,\n",
      "          'three': 1,\n",
      "          'independentminded': 1,\n",
      "          'suddenly': 1,\n",
      "          'found': 1,\n",
      "          'fishing': 1,\n",
      "          'boat': 1,\n",
      "          'pursuit': 1,\n",
      "          'deadly': 1,\n",
      "          'shark': 1,\n",
      "          'didnt': 1,\n",
      "          'much': 1,\n",
      "          'first': 1,\n",
      "          'started': 1,\n",
      "          'none': 1,\n",
      "          'great': 1,\n",
      "          'involved': 1,\n",
      "          'wouldbeahabs': 1,\n",
      "          'drinking': 1,\n",
      "          'singing': 1,\n",
      "          'telling': 1,\n",
      "          'stories': 1,\n",
      "          'nthis': 1,\n",
      "          'sort': 1,\n",
      "          'malebonding': 1,\n",
      "          'foreign': 1,\n",
      "          'producer': 1,\n",
      "          'jerry': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'throw': 1,\n",
      "          'many': 1,\n",
      "          'mix': 1,\n",
      "          'expect': 1,\n",
      "          'well': 1,\n",
      "          'grounds': 1,\n",
      "          'end': 1,\n",
      "          'nnot': 1,\n",
      "          'acquaintancesid': 1,\n",
      "          'surprised': 1,\n",
      "          'actors': 1,\n",
      "          'bothered': 1,\n",
      "          'introduce': 1,\n",
      "          'action': 1,\n",
      "          'na': 1,\n",
      "          'male': 1,\n",
      "          'friend': 1,\n",
      "          'loved': 1,\n",
      "          'suggested': 1,\n",
      "          'relate': 1,\n",
      "          'dont': 1,\n",
      "          'bare': 1,\n",
      "          'souls': 1,\n",
      "          'dying': 1,\n",
      "          'macho': 1,\n",
      "          'concepts': 1,\n",
      "          'heroism': 1,\n",
      "          'chestbeating': 1,\n",
      "          'bravery': 1,\n",
      "          'nto': 1,\n",
      "          'respond': 1,\n",
      "          'boys': 1,\n",
      "          'neither': 1,\n",
      "          'heroic': 1,\n",
      "          'brave': 1,\n",
      "          'smart': 1,\n",
      "          'couldnt': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'birdhouse': 1,\n",
      "          'nand': 1,\n",
      "          'disliking': 1,\n",
      "          'synthetic': 1,\n",
      "          'trailera': 1,\n",
      "          'trailer': 1,\n",
      "          'written': 1,\n",
      "          'bodybuilders': 1,\n",
      "          'greeting': 1,\n",
      "          'card': 1,\n",
      "          'authorsive': 1,\n",
      "          'never': 1,\n",
      "          'prouder': 1,\n",
      "          'wimp': 1,\n",
      "          'whole': 1,\n",
      "          'life': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'comet': 8,\n",
      "          'impact': 6,\n",
      "          'disaster': 6,\n",
      "          'freeman': 6,\n",
      "          'deep': 5,\n",
      "          'two': 5,\n",
      "          'nthe': 5,\n",
      "          'tv': 5,\n",
      "          'earth': 5,\n",
      "          'know': 5,\n",
      "          'people': 5,\n",
      "          'every': 4,\n",
      "          'president': 4,\n",
      "          'plan': 4,\n",
      "          'even': 4,\n",
      "          'theres': 3,\n",
      "          'wave': 3,\n",
      "          'end': 3,\n",
      "          'country': 3,\n",
      "          'strike': 3,\n",
      "          'astronauts': 3,\n",
      "          'fail': 3,\n",
      "          'goes': 3,\n",
      "          'movie': 3,\n",
      "          'going': 3,\n",
      "          'nand': 3,\n",
      "          'tidal': 2,\n",
      "          'say': 2,\n",
      "          'last': 2,\n",
      "          'years': 2,\n",
      "          'movies': 2,\n",
      "          'getting': 2,\n",
      "          'minutes': 2,\n",
      "          'human': 2,\n",
      "          'go': 2,\n",
      "          'tell': 2,\n",
      "          'remote': 2,\n",
      "          'chance': 2,\n",
      "          'nations': 2,\n",
      "          'crack': 2,\n",
      "          'scientists': 2,\n",
      "          'brilliant': 2,\n",
      "          'stop': 2,\n",
      "          'problem': 2,\n",
      "          'get': 2,\n",
      "          'mission': 2,\n",
      "          'still': 2,\n",
      "          'headed': 2,\n",
      "          'toward': 2,\n",
      "          'time': 2,\n",
      "          'seen': 2,\n",
      "          'ads': 2,\n",
      "          'main': 2,\n",
      "          'whats': 2,\n",
      "          'leoni': 2,\n",
      "          'nshe': 2,\n",
      "          'cromwell': 2,\n",
      "          'mistress': 2,\n",
      "          'keep': 2,\n",
      "          'wraps': 2,\n",
      "          'youre': 2,\n",
      "          'ask': 2,\n",
      "          'first': 2,\n",
      "          'question': 2,\n",
      "          'knows': 2,\n",
      "          'course': 2,\n",
      "          'sure': 2,\n",
      "          'comforting': 2,\n",
      "          'though': 2,\n",
      "          'worlds': 2,\n",
      "          'ending': 2,\n",
      "          'matter': 2,\n",
      "          'nthey': 2,\n",
      "          'cave': 2,\n",
      "          'uhaul': 2,\n",
      "          '1': 1,\n",
      "          '000foot': 1,\n",
      "          'nid': 1,\n",
      "          'pretty': 1,\n",
      "          'accurately': 1,\n",
      "          'represents': 1,\n",
      "          'towering': 1,\n",
      "          'flood': 1,\n",
      "          'worth': 1,\n",
      "          'irwin': 1,\n",
      "          'allen': 1,\n",
      "          'esque': 1,\n",
      "          'release': 1,\n",
      "          'early': 1,\n",
      "          'revival': 1,\n",
      "          'cheesy': 1,\n",
      "          'laughable': 1,\n",
      "          'least': 1,\n",
      "          'knew': 1,\n",
      "          'include': 1,\n",
      "          'thrills': 1,\n",
      "          'five': 1,\n",
      "          'ten': 1,\n",
      "          'ndeep': 1,\n",
      "          'tries': 1,\n",
      "          'disguise': 1,\n",
      "          'drama': 1,\n",
      "          'endless': 1,\n",
      "          'filler': 1,\n",
      "          'comprised': 1,\n",
      "          'prevention': 1,\n",
      "          'plans': 1,\n",
      "          'keeps': 1,\n",
      "          'taking': 1,\n",
      "          'repeating': 1,\n",
      "          'cycle': 1,\n",
      "          'follows': 1,\n",
      "          'morgan': 1,\n",
      "          'nthen': 1,\n",
      "          'see': 1,\n",
      "          'action': 1,\n",
      "          'sequence': 1,\n",
      "          'utterly': 1,\n",
      "          'lacking': 1,\n",
      "          'suspense': 1,\n",
      "          'barely': 1,\n",
      "          'nit': 1,\n",
      "          'throughout': 1,\n",
      "          'nhow': 1,\n",
      "          'nbecause': 1,\n",
      "          'weve': 1,\n",
      "          'feature': 1,\n",
      "          'telling': 1,\n",
      "          'nation': 1,\n",
      "          'right': 1,\n",
      "          'us': 1,\n",
      "          'show': 1,\n",
      "          'shots': 1,\n",
      "          'striking': 1,\n",
      "          'giant': 1,\n",
      "          'spreading': 1,\n",
      "          'nladies': 1,\n",
      "          'gentlemen': 1,\n",
      "          'nsuccessful': 1,\n",
      "          'beginning': 1,\n",
      "          'little': 1,\n",
      "          'disasters': 1,\n",
      "          'follow': 1,\n",
      "          'saves': 1,\n",
      "          'one': 1,\n",
      "          'discloses': 1,\n",
      "          '30second': 1,\n",
      "          'spots': 1,\n",
      "          'ntelevision': 1,\n",
      "          'wrong': 1,\n",
      "          'character': 1,\n",
      "          'played': 1,\n",
      "          'tea': 1,\n",
      "          'lowlevel': 1,\n",
      "          'broadcast': 1,\n",
      "          'journalist': 1,\n",
      "          'msnbc': 1,\n",
      "          'thats': 1,\n",
      "          'mere': 1,\n",
      "          'tip': 1,\n",
      "          'productplacement': 1,\n",
      "          'iceberg': 1,\n",
      "          'stumbles': 1,\n",
      "          'upon': 1,\n",
      "          'huge': 1,\n",
      "          'government': 1,\n",
      "          'conspiracy': 1,\n",
      "          'thinks': 1,\n",
      "          'instance': 1,\n",
      "          'exsecretary': 1,\n",
      "          'something': 1,\n",
      "          'james': 1,\n",
      "          'resigning': 1,\n",
      "          'maybe': 1,\n",
      "          'took': 1,\n",
      "          'fall': 1,\n",
      "          'area': 1,\n",
      "          'nwhen': 1,\n",
      "          'nosing': 1,\n",
      "          'around': 1,\n",
      "          'begs': 1,\n",
      "          'n': 1,\n",
      "          'reporter': 1,\n",
      "          'used': 1,\n",
      "          'figures': 1,\n",
      "          'really': 1,\n",
      "          'roughed': 1,\n",
      "          'fbi': 1,\n",
      "          'men': 1,\n",
      "          'internet': 1,\n",
      "          'search': 1,\n",
      "          'good': 1,\n",
      "          'journalists': 1,\n",
      "          'learn': 1,\n",
      "          'difference': 1,\n",
      "          'extinction': 1,\n",
      "          'level': 1,\n",
      "          'nupon': 1,\n",
      "          'topsecret': 1,\n",
      "          'meeting': 1,\n",
      "          'agrees': 1,\n",
      "          'story': 1,\n",
      "          'hold': 1,\n",
      "          'press': 1,\n",
      "          'conference': 1,\n",
      "          'gets': 1,\n",
      "          'everyone': 1,\n",
      "          'baby': 1,\n",
      "          'star': 1,\n",
      "          'nleoni': 1,\n",
      "          'ends': 1,\n",
      "          'anchor': 1,\n",
      "          'chair': 1,\n",
      "          'broadcasting': 1,\n",
      "          'step': 1,\n",
      "          'comets': 1,\n",
      "          'collision': 1,\n",
      "          'im': 1,\n",
      "          'months': 1,\n",
      "          'shes': 1,\n",
      "          'cable': 1,\n",
      "          'news': 1,\n",
      "          'personality': 1,\n",
      "          'nso': 1,\n",
      "          'narrating': 1,\n",
      "          'sixastronaut': 1,\n",
      "          'blow': 1,\n",
      "          'nsuch': 1,\n",
      "          'personalities': 1,\n",
      "          'robert': 1,\n",
      "          'duvall': 1,\n",
      "          'jon': 1,\n",
      "          'favreau': 1,\n",
      "          'blair': 1,\n",
      "          'underwood': 1,\n",
      "          'cash': 1,\n",
      "          'paychecks': 1,\n",
      "          'motions': 1,\n",
      "          'draggedout': 1,\n",
      "          'process': 1,\n",
      "          'nbut': 1,\n",
      "          'anyone': 1,\n",
      "          'whos': 1,\n",
      "          'commercials': 1,\n",
      "          'breaking': 1,\n",
      "          'pieces': 1,\n",
      "          'means': 1,\n",
      "          'destruction': 1,\n",
      "          'nyeah': 1,\n",
      "          'thanks': 1,\n",
      "          'nasa': 1,\n",
      "          'nthats': 1,\n",
      "          'come': 1,\n",
      "          'goodbye': 1,\n",
      "          'arent': 1,\n",
      "          'picked': 1,\n",
      "          'live': 1,\n",
      "          'missouri': 1,\n",
      "          'site': 1,\n",
      "          'animals': 1,\n",
      "          'ready': 1,\n",
      "          'climb': 1,\n",
      "          'nif': 1,\n",
      "          'focus': 1,\n",
      "          'living': 1,\n",
      "          'inside': 1,\n",
      "          'caves': 1,\n",
      "          'world': 1,\n",
      "          'destroyed': 1,\n",
      "          'could': 1,\n",
      "          'far': 1,\n",
      "          'interesting': 1,\n",
      "          'ninstead': 1,\n",
      "          'watch': 1,\n",
      "          'lovestruck': 1,\n",
      "          'elijah': 1,\n",
      "          'wood': 1,\n",
      "          'defies': 1,\n",
      "          'odds': 1,\n",
      "          'chase': 1,\n",
      "          'young': 1,\n",
      "          'wife': 1,\n",
      "          'pack': 1,\n",
      "          'highways': 1,\n",
      "          'town': 1,\n",
      "          'reasoning': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'scenic': 1,\n",
      "          'rural': 1,\n",
      "          'location': 1,\n",
      "          'amusingly': 1,\n",
      "          'highway': 1,\n",
      "          'spotted': 1,\n",
      "          'trucks': 1,\n",
      "          'nim': 1,\n",
      "          'business': 1,\n",
      "          'lives': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'would': 5,\n",
      "          'crow': 5,\n",
      "          'film': 5,\n",
      "          'movie': 4,\n",
      "          'angels': 4,\n",
      "          'hes': 4,\n",
      "          'dead': 3,\n",
      "          'nthe': 3,\n",
      "          'back': 3,\n",
      "          'eric': 3,\n",
      "          'death': 3,\n",
      "          'first': 3,\n",
      "          'nin': 3,\n",
      "          'much': 3,\n",
      "          'good': 3,\n",
      "          'sequel': 2,\n",
      "          'followup': 2,\n",
      "          'anyway': 2,\n",
      "          'come': 2,\n",
      "          'story': 2,\n",
      "          'city': 2,\n",
      "          'grave': 2,\n",
      "          'also': 2,\n",
      "          'audience': 2,\n",
      "          'like': 2,\n",
      "          'bad': 2,\n",
      "          'success': 2,\n",
      "          'ive': 2,\n",
      "          'never': 2,\n",
      "          'ashe': 2,\n",
      "          'thrown': 2,\n",
      "          'serves': 2,\n",
      "          'nhes': 2,\n",
      "          'sarah': 2,\n",
      "          'even': 2,\n",
      "          'seem': 2,\n",
      "          'cutting': 2,\n",
      "          'anything': 2,\n",
      "          'script': 2,\n",
      "          'quick': 2,\n",
      "          'ideas': 2,\n",
      "          'another': 1,\n",
      "          'ads': 1,\n",
      "          'proclaimed': 1,\n",
      "          'ntrue': 1,\n",
      "          'brandon': 1,\n",
      "          'lee': 1,\n",
      "          'reason': 1,\n",
      "          'appear': 1,\n",
      "          '1994s': 1,\n",
      "          'idea': 1,\n",
      "          'spinning': 1,\n",
      "          'artist': 1,\n",
      "          'james': 1,\n",
      "          'obarrs': 1,\n",
      "          'original': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'series': 1,\n",
      "          'franchise': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'notion': 1,\n",
      "          'different': 1,\n",
      "          'startled': 1,\n",
      "          'soul': 1,\n",
      "          'taking': 1,\n",
      "          'righteous': 1,\n",
      "          'vengeance': 1,\n",
      "          'world': 1,\n",
      "          'ngiven': 1,\n",
      "          'basic': 1,\n",
      "          'framework': 1,\n",
      "          'could': 1,\n",
      "          'move': 1,\n",
      "          'number': 1,\n",
      "          'directions': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'doesnt': 1,\n",
      "          'nstubbornly': 1,\n",
      "          'backtracks': 1,\n",
      "          'beginning': 1,\n",
      "          'previous': 1,\n",
      "          'lees': 1,\n",
      "          'draven': 1,\n",
      "          'found': 1,\n",
      "          'drawn': 1,\n",
      "          'charles': 1,\n",
      "          'bronson': 1,\n",
      "          'thugs': 1,\n",
      "          'tortured': 1,\n",
      "          'girlfriend': 1,\n",
      "          'ni': 1,\n",
      "          'remember': 1,\n",
      "          'primarily': 1,\n",
      "          'harrowing': 1,\n",
      "          'exercise': 1,\n",
      "          'brutality': 1,\n",
      "          'flashback': 1,\n",
      "          'see': 1,\n",
      "          'excruciating': 1,\n",
      "          'crimes': 1,\n",
      "          'exacted': 1,\n",
      "          'lover': 1,\n",
      "          'watch': 1,\n",
      "          'realtime': 1,\n",
      "          'pays': 1,\n",
      "          'perpetrator': 1,\n",
      "          'kind': 1,\n",
      "          'nits': 1,\n",
      "          'loud': 1,\n",
      "          'repetitive': 1,\n",
      "          'true': 1,\n",
      "          'sadists': 1,\n",
      "          'delight': 1,\n",
      "          'horrifying': 1,\n",
      "          'fascinating': 1,\n",
      "          'ncity': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'less': 1,\n",
      "          'skillfully': 1,\n",
      "          'ntheres': 1,\n",
      "          'guaranteed': 1,\n",
      "          'although': 1,\n",
      "          'reviews': 1,\n",
      "          'poor': 1,\n",
      "          'wordofmouth': 1,\n",
      "          'likely': 1,\n",
      "          'ensure': 1,\n",
      "          'wont': 1,\n",
      "          'fact': 1,\n",
      "          'miramax': 1,\n",
      "          'subsidiary': 1,\n",
      "          'dimension': 1,\n",
      "          'films': 1,\n",
      "          'fearful': 1,\n",
      "          'critical': 1,\n",
      "          'reaction': 1,\n",
      "          'picture': 1,\n",
      "          'reviewers': 1,\n",
      "          'shut': 1,\n",
      "          'advance': 1,\n",
      "          'screenings': 1,\n",
      "          'n': 1,\n",
      "          'understood': 1,\n",
      "          'reasoning': 1,\n",
      "          'behind': 1,\n",
      "          'tactic': 1,\n",
      "          'since': 1,\n",
      "          'notices': 1,\n",
      "          'key': 1,\n",
      "          'movies': 1,\n",
      "          'nso': 1,\n",
      "          'confidence': 1,\n",
      "          'worthiness': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'frenchaccented': 1,\n",
      "          'actor': 1,\n",
      "          'vincent': 1,\n",
      "          'perez': 1,\n",
      "          'retrieved': 1,\n",
      "          'watery': 1,\n",
      "          'young': 1,\n",
      "          'son': 1,\n",
      "          'shackled': 1,\n",
      "          'together': 1,\n",
      "          'shot': 1,\n",
      "          'pier': 1,\n",
      "          'link': 1,\n",
      "          'worlds': 1,\n",
      "          'living': 1,\n",
      "          'nperez': 1,\n",
      "          'might': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'given': 1,\n",
      "          'something': 1,\n",
      "          'simply': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'pretty': 1,\n",
      "          'face': 1,\n",
      "          'nat': 1,\n",
      "          'shivery': 1,\n",
      "          'frightened': 1,\n",
      "          'quickly': 1,\n",
      "          'recovers': 1,\n",
      "          'shock': 1,\n",
      "          'becomes': 1,\n",
      "          'badass': 1,\n",
      "          'biker': 1,\n",
      "          'beyond': 1,\n",
      "          'befriended': 1,\n",
      "          'mia': 1,\n",
      "          'kirshner': 1,\n",
      "          'presumably': 1,\n",
      "          'older': 1,\n",
      "          'version': 1,\n",
      "          'child': 1,\n",
      "          'narrated': 1,\n",
      "          'nkirshner': 1,\n",
      "          'beguiling': 1,\n",
      "          'exotica': 1,\n",
      "          'exquisitely': 1,\n",
      "          'photographed': 1,\n",
      "          'blank': 1,\n",
      "          'ntattooed': 1,\n",
      "          'wings': 1,\n",
      "          'lovely': 1,\n",
      "          'women': 1,\n",
      "          'purpose': 1,\n",
      "          'seductress': 1,\n",
      "          'gang': 1,\n",
      "          'punks': 1,\n",
      "          'killed': 1,\n",
      "          'ostensibly': 1,\n",
      "          'commanded': 1,\n",
      "          'judah': 1,\n",
      "          'richard': 1,\n",
      "          'brooks': 1,\n",
      "          'far': 1,\n",
      "          'interesting': 1,\n",
      "          'choice': 1,\n",
      "          'leader': 1,\n",
      "          'iggy': 1,\n",
      "          'pop': 1,\n",
      "          'plays': 1,\n",
      "          'gaunt': 1,\n",
      "          'fellow': 1,\n",
      "          'named': 1,\n",
      "          'curve': 1,\n",
      "          'niggy': 1,\n",
      "          'bones': 1,\n",
      "          'veins': 1,\n",
      "          'drawl': 1,\n",
      "          'one': 1,\n",
      "          'seems': 1,\n",
      "          'shared': 1,\n",
      "          'aesthetic': 1,\n",
      "          'ruin': 1,\n",
      "          'defines': 1,\n",
      "          'nlike': 1,\n",
      "          'things': 1,\n",
      "          'dispatched': 1,\n",
      "          'soon': 1,\n",
      "          'without': 1,\n",
      "          'imagination': 1,\n",
      "          'meantime': 1,\n",
      "          'subjected': 1,\n",
      "          'tedious': 1,\n",
      "          'glimpses': 1,\n",
      "          'judahs': 1,\n",
      "          'compound': 1,\n",
      "          'bondage': 1,\n",
      "          'order': 1,\n",
      "          'day': 1,\n",
      "          'hot': 1,\n",
      "          'wax': 1,\n",
      "          'poured': 1,\n",
      "          'naked': 1,\n",
      "          'bodies': 1,\n",
      "          'sm': 1,\n",
      "          'fantasies': 1,\n",
      "          'shy': 1,\n",
      "          'edge': 1,\n",
      "          'werent': 1,\n",
      "          'distinctly': 1,\n",
      "          'secondhand': 1,\n",
      "          'neven': 1,\n",
      "          'soundtrack': 1,\n",
      "          'tired': 1,\n",
      "          'nmore': 1,\n",
      "          'seen': 1,\n",
      "          'hollywood': 1,\n",
      "          'lately': 1,\n",
      "          'smacks': 1,\n",
      "          'baldly': 1,\n",
      "          'product': 1,\n",
      "          'lousy': 1,\n",
      "          'great': 1,\n",
      "          'look': 1,\n",
      "          'ncritics': 1,\n",
      "          'fault': 1,\n",
      "          'direction': 1,\n",
      "          'mtv': 1,\n",
      "          'veteran': 1,\n",
      "          'tim': 1,\n",
      "          'pope': 1,\n",
      "          'work': 1,\n",
      "          'isnt': 1,\n",
      "          'per': 1,\n",
      "          'se': 1,\n",
      "          'got': 1,\n",
      "          'eye': 1,\n",
      "          'intriguing': 1,\n",
      "          'visual': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'ridiculously': 1,\n",
      "          'striking': 1,\n",
      "          'imagery': 1,\n",
      "          'nhis': 1,\n",
      "          'major': 1,\n",
      "          'stylistic': 1,\n",
      "          'failing': 1,\n",
      "          'cant': 1,\n",
      "          'direct': 1,\n",
      "          'action': 1,\n",
      "          'scene': 1,\n",
      "          'nonsensical': 1,\n",
      "          'ensues': 1,\n",
      "          'reminiscent': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'nbut': 1,\n",
      "          'director': 1,\n",
      "          'must': 1,\n",
      "          'shoulder': 1,\n",
      "          'blame': 1,\n",
      "          'little': 1,\n",
      "          'screenplay': 1,\n",
      "          'wasnt': 1,\n",
      "          'performers': 1,\n",
      "          'couldnt': 1,\n",
      "          'apparent': 1,\n",
      "          'lack': 1,\n",
      "          'parts': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'nwho': 1,\n",
      "          'bought': 1,\n",
      "          'david': 1,\n",
      "          'goyers': 1,\n",
      "          'anemic': 1,\n",
      "          'producers': 1,\n",
      "          'either': 1,\n",
      "          'dim': 1,\n",
      "          'realize': 1,\n",
      "          'doomed': 1,\n",
      "          'hollow': 1,\n",
      "          'rehash': 1,\n",
      "          'cynical': 1,\n",
      "          'figure': 1,\n",
      "          'know': 1,\n",
      "          'difference': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'stiles': 6,\n",
      "          'characters': 6,\n",
      "          'prinze': 5,\n",
      "          'couple': 5,\n",
      "          'porn': 5,\n",
      "          'film': 4,\n",
      "          'seems': 3,\n",
      "          'know': 3,\n",
      "          'make': 3,\n",
      "          'screen': 3,\n",
      "          'stars': 3,\n",
      "          'julia': 2,\n",
      "          'artificial': 2,\n",
      "          'freddie': 2,\n",
      "          'jr': 2,\n",
      "          'given': 2,\n",
      "          'attempt': 2,\n",
      "          'romantic': 2,\n",
      "          'comedy': 2,\n",
      "          'everything': 2,\n",
      "          'every': 2,\n",
      "          'college': 2,\n",
      "          'scenes': 2,\n",
      "          'song': 2,\n",
      "          'prinzes': 2,\n",
      "          'style': 2,\n",
      "          'cant': 2,\n",
      "          'exists': 2,\n",
      "          'logic': 2,\n",
      "          'stupid': 2,\n",
      "          'even': 2,\n",
      "          'mostly': 2,\n",
      "          'ridiculous': 2,\n",
      "          'costume': 2,\n",
      "          'epic': 2,\n",
      "          'star': 2,\n",
      "          'shes': 2,\n",
      "          'going': 2,\n",
      "          'weak': 2,\n",
      "          'whole': 2,\n",
      "          'story': 2,\n",
      "          'fast': 2,\n",
      "          'motion': 2,\n",
      "          'late': 1,\n",
      "          'lead': 1,\n",
      "          'female': 1,\n",
      "          'character': 1,\n",
      "          'states': 1,\n",
      "          'greatest': 1,\n",
      "          'fear': 1,\n",
      "          'conversation': 1,\n",
      "          'boyfriend': 1,\n",
      "          'irony': 1,\n",
      "          'statement': 1,\n",
      "          'lost': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'yet': 1,\n",
      "          'walked': 1,\n",
      "          'fallen': 1,\n",
      "          'asleep': 1,\n",
      "          'otherwise': 1,\n",
      "          'pathetic': 1,\n",
      "          'multimillion': 1,\n",
      "          'dollar': 1,\n",
      "          'testament': 1,\n",
      "          'nfilled': 1,\n",
      "          'motivation': 1,\n",
      "          'plot': 1,\n",
      "          'dialogue': 1,\n",
      "          'ring': 1,\n",
      "          'fake': 1,\n",
      "          'shallow': 1,\n",
      "          'step': 1,\n",
      "          'unquestionable': 1,\n",
      "          'disaster': 1,\n",
      "          'nprinze': 1,\n",
      "          'plays': 1,\n",
      "          'student': 1,\n",
      "          'intent': 1,\n",
      "          'playing': 1,\n",
      "          'field': 1,\n",
      "          'falls': 1,\n",
      "          'freshman': 1,\n",
      "          'coed': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'movie': 1,\n",
      "          'string': 1,\n",
      "          'along': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'outdoing': 1,\n",
      "          'previous': 1,\n",
      "          'cute': 1,\n",
      "          'happy': 1,\n",
      "          'psychoanalyze': 1,\n",
      "          'pick': 1,\n",
      "          'dj': 1,\n",
      "          'mother': 1,\n",
      "          'lucie': 1,\n",
      "          'arnez': 1,\n",
      "          'explains': 1,\n",
      "          'needs': 1,\n",
      "          'smells': 1,\n",
      "          'shampoo': 1,\n",
      "          'scratches': 1,\n",
      "          'chest': 1,\n",
      "          'morning': 1,\n",
      "          'let': 1,\n",
      "          'wants': 1,\n",
      "          'love': 1,\n",
      "          'nthen': 1,\n",
      "          'standard': 1,\n",
      "          'things': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'nwhy': 1,\n",
      "          'nwell': 1,\n",
      "          'notherwise': 1,\n",
      "          'live': 1,\n",
      "          'presumably': 1,\n",
      "          'happily': 1,\n",
      "          'ever': 1,\n",
      "          'ndown': 1,\n",
      "          'outside': 1,\n",
      "          'realm': 1,\n",
      "          'normal': 1,\n",
      "          'nscenes': 1,\n",
      "          'connect': 1,\n",
      "          'often': 1,\n",
      "          'attempting': 1,\n",
      "          'sort': 1,\n",
      "          'surrealism': 1,\n",
      "          'handled': 1,\n",
      "          'poorly': 1,\n",
      "          'comes': 1,\n",
      "          'random': 1,\n",
      "          'instead': 1,\n",
      "          'na': 1,\n",
      "          'picnic': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'six': 1,\n",
      "          'key': 1,\n",
      "          'bizarre': 1,\n",
      "          'stretched': 1,\n",
      "          'people': 1,\n",
      "          'hanging': 1,\n",
      "          'together': 1,\n",
      "          'knowing': 1,\n",
      "          'unusual': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'dedicated': 1,\n",
      "          'goat': 1,\n",
      "          'supporting': 1,\n",
      "          'remarkably': 1,\n",
      "          'flat': 1,\n",
      "          'insultingly': 1,\n",
      "          'well': 1,\n",
      "          'nstiles': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'rosario': 1,\n",
      "          'dawson': 1,\n",
      "          'pot': 1,\n",
      "          'head': 1,\n",
      "          'roommate': 1,\n",
      "          'shawn': 1,\n",
      "          'hatosy': 1,\n",
      "          'girl': 1,\n",
      "          'crazy': 1,\n",
      "          'fool': 1,\n",
      "          'meet': 1,\n",
      "          'women': 1,\n",
      "          'zak': 1,\n",
      "          'orth': 1,\n",
      "          'selma': 1,\n",
      "          'blair': 1,\n",
      "          'nhe': 1,\n",
      "          'one': 1,\n",
      "          'famous': 1,\n",
      "          'frequently': 1,\n",
      "          'interviewed': 1,\n",
      "          'television': 1,\n",
      "          'lecture': 1,\n",
      "          'circuit': 1,\n",
      "          'high': 1,\n",
      "          'budget': 1,\n",
      "          'porns': 1,\n",
      "          'shot': 1,\n",
      "          'nyou': 1,\n",
      "          'average': 1,\n",
      "          'idea': 1,\n",
      "          'gives': 1,\n",
      "          'reason': 1,\n",
      "          'appear': 1,\n",
      "          'different': 1,\n",
      "          'outfit': 1,\n",
      "          'everytime': 1,\n",
      "          'hes': 1,\n",
      "          'angle': 1,\n",
      "          'sex': 1,\n",
      "          'jokes': 1,\n",
      "          'nshe': 1,\n",
      "          'slutty': 1,\n",
      "          'existence': 1,\n",
      "          'jealous': 1,\n",
      "          'tempted': 1,\n",
      "          'nattempts': 1,\n",
      "          'drama': 1,\n",
      "          'means': 1,\n",
      "          'cry': 1,\n",
      "          'include': 1,\n",
      "          'pregnancy': 1,\n",
      "          'scare': 1,\n",
      "          'big': 1,\n",
      "          'break': 1,\n",
      "          'nthese': 1,\n",
      "          'insipid': 1,\n",
      "          'forgiving': 1,\n",
      "          'viewer': 1,\n",
      "          'would': 1,\n",
      "          'manipulated': 1,\n",
      "          'nwhat': 1,\n",
      "          'happened': 1,\n",
      "          'cast': 1,\n",
      "          'full': 1,\n",
      "          'likable': 1,\n",
      "          'promising': 1,\n",
      "          'young': 1,\n",
      "          'actors': 1,\n",
      "          'especially': 1,\n",
      "          'places': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'kris': 1,\n",
      "          'isacsson': 1,\n",
      "          'simply': 1,\n",
      "          'material': 1,\n",
      "          'seasoned': 1,\n",
      "          'pros': 1,\n",
      "          'could': 1,\n",
      "          'pull': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'reworking': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'extremely': 1,\n",
      "          'unpleasant': 1,\n",
      "          'us': 1,\n",
      "          'teen': 1,\n",
      "          'audiences': 1,\n",
      "          'direction': 1,\n",
      "          'filmschoolgrad': 1,\n",
      "          'obvious': 1,\n",
      "          'nits': 1,\n",
      "          'stylish': 1,\n",
      "          'hugely': 1,\n",
      "          'self': 1,\n",
      "          'conscious': 1,\n",
      "          'way': 1,\n",
      "          'throws': 1,\n",
      "          'split': 1,\n",
      "          'pointless': 1,\n",
      "          'parody': 1,\n",
      "          'cops': 1,\n",
      "          'walking': 1,\n",
      "          'flashbacks': 1,\n",
      "          'hilariously': 1,\n",
      "          'cheesy': 1,\n",
      "          'airport': 1,\n",
      "          'meeting': 1,\n",
      "          'extras': 1,\n",
      "          'move': 1,\n",
      "          'moves': 1,\n",
      "          'extreme': 1,\n",
      "          'slow': 1,\n",
      "          'nplus': 1,\n",
      "          'told': 1,\n",
      "          'flashback': 1,\n",
      "          'narrated': 1,\n",
      "          'directly': 1,\n",
      "          'addressing': 1,\n",
      "          'camera': 1,\n",
      "          'nthis': 1,\n",
      "          'second': 1,\n",
      "          'row': 1,\n",
      "          'following': 1,\n",
      "          'wing': 1,\n",
      "          'commander': 1,\n",
      "          'starring': 1,\n",
      "          'premiered': 1,\n",
      "          'aisles': 1,\n",
      "          'local': 1,\n",
      "          'blockbuster': 1,\n",
      "          'likely': 1,\n",
      "          'saved': 1,\n",
      "          'fate': 1,\n",
      "          'due': 1,\n",
      "          'fluke': 1,\n",
      "          'success': 1,\n",
      "          'nif': 1,\n",
      "          'doesnt': 1,\n",
      "          'start': 1,\n",
      "          'making': 1,\n",
      "          'better': 1,\n",
      "          'choices': 1,\n",
      "          'future': 1,\n",
      "          'films': 1,\n",
      "          'wont': 1,\n",
      "          'lucky': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'sex': 5,\n",
      "          'really': 4,\n",
      "          'worse': 3,\n",
      "          'thing': 3,\n",
      "          'since': 3,\n",
      "          'body': 3,\n",
      "          'evidence': 3,\n",
      "          'first': 3,\n",
      "          'nand': 3,\n",
      "          'nthe': 3,\n",
      "          'eszterhas': 2,\n",
      "          'stars': 2,\n",
      "          'woman': 2,\n",
      "          'accused': 2,\n",
      "          'older': 2,\n",
      "          'unless': 2,\n",
      "          'least': 2,\n",
      "          'nwhats': 2,\n",
      "          'well': 2,\n",
      "          'character': 2,\n",
      "          'n': 2,\n",
      "          'also': 2,\n",
      "          'nhow': 2,\n",
      "          'know': 2,\n",
      "          'get': 2,\n",
      "          'ndont': 2,\n",
      "          'involves': 2,\n",
      "          'dull': 2,\n",
      "          'scenes': 2,\n",
      "          'courtroom': 2,\n",
      "          'one': 2,\n",
      "          'endings': 2,\n",
      "          'better': 1,\n",
      "          'appearance': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'marketplace': 1,\n",
      "          'gave': 1,\n",
      "          'greenlight': 1,\n",
      "          'whole': 1,\n",
      "          'slew': 1,\n",
      "          'overheated': 1,\n",
      "          'oversexed': 1,\n",
      "          'underwritten': 1,\n",
      "          'thrillers': 1,\n",
      "          'napparently': 1,\n",
      "          'joe': 1,\n",
      "          'writer': 1,\n",
      "          'doesnt': 1,\n",
      "          'change': 1,\n",
      "          'wasnt': 1,\n",
      "          'written': 1,\n",
      "          'puzzling': 1,\n",
      "          'eszterhasish': 1,\n",
      "          'presence': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'dirty': 1,\n",
      "          'b': 1,\n",
      "          'stupid': 1,\n",
      "          'nmadonna': 1,\n",
      "          'warning': 1,\n",
      "          'sign': 1,\n",
      "          'piles': 1,\n",
      "          'money': 1,\n",
      "          'apparent': 1,\n",
      "          'job': 1,\n",
      "          'lives': 1,\n",
      "          'houseboat': 1,\n",
      "          'likes': 1,\n",
      "          'parade': 1,\n",
      "          'around': 1,\n",
      "          'seminaked': 1,\n",
      "          'presumably': 1,\n",
      "          'edification': 1,\n",
      "          'shrimp': 1,\n",
      "          'nshes': 1,\n",
      "          'murdered': 1,\n",
      "          'man': 1,\n",
      "          'lover': 1,\n",
      "          'nalready': 1,\n",
      "          'two': 1,\n",
      "          'classic': 1,\n",
      "          'examples': 1,\n",
      "          'hollywood': 1,\n",
      "          'sexism': 1,\n",
      "          'effect': 1,\n",
      "          'sexual': 1,\n",
      "          'shes': 1,\n",
      "          'thirty': 1,\n",
      "          'looks': 1,\n",
      "          'usually': 1,\n",
      "          'exist': 1,\n",
      "          'sake': 1,\n",
      "          'studs': 1,\n",
      "          'filthy': 1,\n",
      "          'rich': 1,\n",
      "          'men': 1,\n",
      "          'confirms': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wallows': 1,\n",
      "          'nmadonnas': 1,\n",
      "          'forcing': 1,\n",
      "          'old': 1,\n",
      "          'goat': 1,\n",
      "          'knew': 1,\n",
      "          'darned': 1,\n",
      "          'heart': 1,\n",
      "          'condition': 1,\n",
      "          'yes': 1,\n",
      "          'obligatory': 1,\n",
      "          'cracks': 1,\n",
      "          'cops': 1,\n",
      "          'died': 1,\n",
      "          'happy': 1,\n",
      "          'nthis': 1,\n",
      "          'leave': 1,\n",
      "          'scummy': 1,\n",
      "          'stone': 1,\n",
      "          'unturned': 1,\n",
      "          'nanyway': 1,\n",
      "          'willem': 1,\n",
      "          'dafoe': 1,\n",
      "          'good': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'lawyer': 1,\n",
      "          'doomed': 1,\n",
      "          'run': 1,\n",
      "          'afoul': 1,\n",
      "          'madonnas': 1,\n",
      "          'sexuality': 1,\n",
      "          'nbecause': 1,\n",
      "          'set': 1,\n",
      "          'token': 1,\n",
      "          'wife': 1,\n",
      "          'kids': 1,\n",
      "          'obvious': 1,\n",
      "          'hes': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'cheat': 1,\n",
      "          'fess': 1,\n",
      "          'everything': 1,\n",
      "          'kicked': 1,\n",
      "          'house': 1,\n",
      "          'welcomed': 1,\n",
      "          'back': 1,\n",
      "          'anyway': 1,\n",
      "          'skip': 1,\n",
      "          'end': 1,\n",
      "          'yet': 1,\n",
      "          'getting': 1,\n",
      "          'warmed': 1,\n",
      "          'ndafoe': 1,\n",
      "          'madonna': 1,\n",
      "          'lot': 1,\n",
      "          'nmost': 1,\n",
      "          'erotic': 1,\n",
      "          'openheart': 1,\n",
      "          'surgery': 1,\n",
      "          'goodies': 1,\n",
      "          'hot': 1,\n",
      "          'candlewax': 1,\n",
      "          'always': 1,\n",
      "          'kink': 1,\n",
      "          'choice': 1,\n",
      "          'among': 1,\n",
      "          'screenwriters': 1,\n",
      "          'dont': 1,\n",
      "          'kinky': 1,\n",
      "          'smashed': 1,\n",
      "          'light': 1,\n",
      "          'bulbs': 1,\n",
      "          'ask': 1,\n",
      "          'nanother': 1,\n",
      "          'people': 1,\n",
      "          'starting': 1,\n",
      "          'realize': 1,\n",
      "          'explicit': 1,\n",
      "          'movies': 1,\n",
      "          'critically': 1,\n",
      "          'important': 1,\n",
      "          'story': 1,\n",
      "          'insanely': 1,\n",
      "          'everywhere': 1,\n",
      "          'stuff': 1,\n",
      "          'recycled': 1,\n",
      "          'ninthhand': 1,\n",
      "          'bad': 1,\n",
      "          'drama': 1,\n",
      "          'thriller': 1,\n",
      "          'business': 1,\n",
      "          'ridiculous': 1,\n",
      "          'nasal': 1,\n",
      "          'spray': 1,\n",
      "          'bottles': 1,\n",
      "          'drugs': 1,\n",
      "          'juergen': 1,\n",
      "          'prochnow': 1,\n",
      "          'surly': 1,\n",
      "          'doctor': 1,\n",
      "          'ending': 1,\n",
      "          'another': 1,\n",
      "          'homage': 1,\n",
      "          'maybe': 1,\n",
      "          'almost': 1,\n",
      "          'see': 1,\n",
      "          'exact': 1,\n",
      "          'frame': 1,\n",
      "          'five': 1,\n",
      "          'six': 1,\n",
      "          'various': 1,\n",
      "          'mess': 1,\n",
      "          'spliced': 1,\n",
      "          'director': 1,\n",
      "          'uli': 1,\n",
      "          'edel': 1,\n",
      "          'disappointing': 1,\n",
      "          'directed': 1,\n",
      "          'elegiac': 1,\n",
      "          'powerful': 1,\n",
      "          'last': 1,\n",
      "          'exit': 1,\n",
      "          'brooklyn': 1,\n",
      "          'christiane': 1,\n",
      "          'f': 1,\n",
      "          'everyone': 1,\n",
      "          'eat': 1,\n",
      "          'guess': 1,\n",
      "          'isnt': 1,\n",
      "          'meal': 1,\n",
      "          'ticket': 1,\n",
      "          'leftovers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'wallace': 4,\n",
      "          'braveheart': 3,\n",
      "          'nthe': 3,\n",
      "          'nit': 3,\n",
      "          'one': 3,\n",
      "          'score': 3,\n",
      "          'freedom': 3,\n",
      "          'emotional': 3,\n",
      "          'spartacus': 3,\n",
      "          'also': 2,\n",
      "          'horner': 2,\n",
      "          'nwhat': 2,\n",
      "          'drags': 2,\n",
      "          'screenplay': 2,\n",
      "          'high': 2,\n",
      "          'production': 2,\n",
      "          'values': 2,\n",
      "          'make': 2,\n",
      "          'nbut': 2,\n",
      "          'script': 2,\n",
      "          'paint': 2,\n",
      "          'speaks': 2,\n",
      "          'acts': 2,\n",
      "          'vengeance': 2,\n",
      "          'english': 2,\n",
      "          'point': 2,\n",
      "          'nthis': 2,\n",
      "          'connection': 2,\n",
      "          'great': 1,\n",
      "          'anticipation': 1,\n",
      "          'sat': 1,\n",
      "          'view': 1,\n",
      "          'last': 1,\n",
      "          'week': 1,\n",
      "          'premiered': 1,\n",
      "          'american': 1,\n",
      "          'cable': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'winning': 1,\n",
      "          'highly': 1,\n",
      "          'acclaimed': 1,\n",
      "          'featured': 1,\n",
      "          'music': 1,\n",
      "          'favorite': 1,\n",
      "          'composers': 1,\n",
      "          'james': 1,\n",
      "          'disappointing': 1,\n",
      "          'overlong': 1,\n",
      "          'anything': 1,\n",
      "          'best': 1,\n",
      "          'picture': 1,\n",
      "          '1995': 1,\n",
      "          'abounds': 1,\n",
      "          'john': 1,\n",
      "          'tolls': 1,\n",
      "          'awardwinning': 1,\n",
      "          'cinematography': 1,\n",
      "          'graced': 1,\n",
      "          'edward': 1,\n",
      "          'zwicks': 1,\n",
      "          '1994': 1,\n",
      "          'legends': 1,\n",
      "          'fall': 1,\n",
      "          'gorgeous': 1,\n",
      "          'sort': 1,\n",
      "          'logistics': 1,\n",
      "          'wish': 1,\n",
      "          'assistant': 1,\n",
      "          'directors': 1,\n",
      "          'household': 1,\n",
      "          'names': 1,\n",
      "          'save': 1,\n",
      "          'misguided': 1,\n",
      "          'wishes': 1,\n",
      "          'central': 1,\n",
      "          'character': 1,\n",
      "          'hero': 1,\n",
      "          'viewers': 1,\n",
      "          'response': 1,\n",
      "          'heroism': 1,\n",
      "          'intellectual': 1,\n",
      "          'william': 1,\n",
      "          'producerdirector': 1,\n",
      "          'mel': 1,\n",
      "          'gibson': 1,\n",
      "          'fighting': 1,\n",
      "          'tyranny': 1,\n",
      "          'root': 1,\n",
      "          'wallaces': 1,\n",
      "          'actions': 1,\n",
      "          'different': 1,\n",
      "          'story': 1,\n",
      "          'nhe': 1,\n",
      "          'nthough': 1,\n",
      "          'intellectually': 1,\n",
      "          'realizes': 1,\n",
      "          'right': 1,\n",
      "          'side': 1,\n",
      "          'paints': 1,\n",
      "          'unconvincing': 1,\n",
      "          'portait': 1,\n",
      "          'bad': 1,\n",
      "          'king': 1,\n",
      "          'nwallace': 1,\n",
      "          'toward': 1,\n",
      "          'nafter': 1,\n",
      "          'kicking': 1,\n",
      "          'scotland': 1,\n",
      "          'decides': 1,\n",
      "          'invade': 1,\n",
      "          'england': 1,\n",
      "          'evident': 1,\n",
      "          'complex': 1,\n",
      "          'example': 1,\n",
      "          'applies': 1,\n",
      "          'historically': 1,\n",
      "          'cinematically': 1,\n",
      "          'historical': 1,\n",
      "          'moved': 1,\n",
      "          'liberating': 1,\n",
      "          'slaves': 1,\n",
      "          'sacking': 1,\n",
      "          'roman': 1,\n",
      "          'cities': 1,\n",
      "          'like': 1,\n",
      "          'competent': 1,\n",
      "          'performaces': 1,\n",
      "          'dragged': 1,\n",
      "          'awful': 1,\n",
      "          'shame': 1,\n",
      "          'excellent': 1,\n",
      "          'part': 1,\n",
      "          'terrible': 1,\n",
      "          'nhorners': 1,\n",
      "          'tries': 1,\n",
      "          'performances': 1,\n",
      "          'help': 1,\n",
      "          'ngibson': 1,\n",
      "          'portrays': 1,\n",
      "          'way': 1,\n",
      "          'audience': 1,\n",
      "          'relate': 1,\n",
      "          'identify': 1,\n",
      "          'films': 1,\n",
      "          'plot': 1,\n",
      "          'turns': 1,\n",
      "          'three': 1,\n",
      "          'hours': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'reeves': 5,\n",
      "          'spader': 3,\n",
      "          'along': 3,\n",
      "          'spaders': 3,\n",
      "          'watcher': 2,\n",
      "          'need': 2,\n",
      "          'killer': 2,\n",
      "          'keanu': 2,\n",
      "          'chicago': 2,\n",
      "          'convincing': 2,\n",
      "          'sometimes': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'universal': 1,\n",
      "          'njust': 1,\n",
      "          'another': 1,\n",
      "          'lurid': 1,\n",
      "          'trashy': 1,\n",
      "          'serial': 1,\n",
      "          'saga': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'plays': 1,\n",
      "          'elusive': 1,\n",
      "          'homicidal': 1,\n",
      "          'maniac': 1,\n",
      "          'engages': 1,\n",
      "          'gruesome': 1,\n",
      "          'tickingclock': 1,\n",
      "          'catandmouse': 1,\n",
      "          'game': 1,\n",
      "          'james': 1,\n",
      "          'burntout': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'suffered': 1,\n",
      "          'traumatic': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'many': 1,\n",
      "          'years': 1,\n",
      "          'job': 1,\n",
      "          'lapd': 1,\n",
      "          'nto': 1,\n",
      "          'taunt': 1,\n",
      "          'relocated': 1,\n",
      "          'packs': 1,\n",
      "          'trusty': 1,\n",
      "          'piano': 1,\n",
      "          'wire': 1,\n",
      "          'moves': 1,\n",
      "          'nbefore': 1,\n",
      "          'long': 1,\n",
      "          'starts': 1,\n",
      "          'mailing': 1,\n",
      "          'photographs': 1,\n",
      "          'lonely': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'young': 1,\n",
      "          'women': 1,\n",
      "          'intended': 1,\n",
      "          'windy': 1,\n",
      "          'city': 1,\n",
      "          'victims': 1,\n",
      "          'challenging': 1,\n",
      "          'police': 1,\n",
      "          'department': 1,\n",
      "          'stop': 1,\n",
      "          'within': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'strikes': 1,\n",
      "          'nin': 1,\n",
      "          'midst': 1,\n",
      "          'murderous': 1,\n",
      "          'frenzy': 1,\n",
      "          'theres': 1,\n",
      "          'psychologist': 1,\n",
      "          'played': 1,\n",
      "          'marisa': 1,\n",
      "          'tomei': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'medical': 1,\n",
      "          'professional': 1,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'cell': 1,\n",
      "          'nwriters': 1,\n",
      "          'david': 1,\n",
      "          'elliot': 1,\n",
      "          'clay': 1,\n",
      "          'ayers': 1,\n",
      "          'darcy': 1,\n",
      "          'meyers': 1,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'joe': 1,\n",
      "          'charbanic': 1,\n",
      "          'helmer': 1,\n",
      "          'music': 1,\n",
      "          'videos': 1,\n",
      "          'band': 1,\n",
      "          'dogstar': 1,\n",
      "          'dwell': 1,\n",
      "          'warped': 1,\n",
      "          'thrill': 1,\n",
      "          'methodology': 1,\n",
      "          'chase': 1,\n",
      "          'revealing': 1,\n",
      "          'early': 1,\n",
      "          'exactly': 1,\n",
      "          'whodunit': 1,\n",
      "          'since': 1,\n",
      "          'says': 1,\n",
      "          'cop': 1,\n",
      "          'give': 1,\n",
      "          'meaning': 1,\n",
      "          'lives': 1,\n",
      "          'nplus': 1,\n",
      "          'explains': 1,\n",
      "          'stacked': 1,\n",
      "          'right': 1,\n",
      "          'top': 1,\n",
      "          'dont': 1,\n",
      "          'notice': 1,\n",
      "          'nafter': 1,\n",
      "          'sound': 1,\n",
      "          'effects': 1,\n",
      "          'tricky': 1,\n",
      "          'camerawork': 1,\n",
      "          'muddled': 1,\n",
      "          'discordant': 1,\n",
      "          'soundtrack': 1,\n",
      "          'njames': 1,\n",
      "          'acting': 1,\n",
      "          'technique': 1,\n",
      "          'described': 1,\n",
      "          'wooden': 1,\n",
      "          'deadpan': 1,\n",
      "          'maintains': 1,\n",
      "          'perpetually': 1,\n",
      "          'monotone': 1,\n",
      "          'dude': 1,\n",
      "          'persona': 1,\n",
      "          'works': 1,\n",
      "          'doesnt': 1,\n",
      "          'nchris': 1,\n",
      "          'ellis': 1,\n",
      "          'selfimportant': 1,\n",
      "          'colleague': 1,\n",
      "          'cast': 1,\n",
      "          'member': 1,\n",
      "          'manages': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'appallingly': 1,\n",
      "          'awful': 1,\n",
      "          'amateurish': 1,\n",
      "          '2': 1,\n",
      "          'real': 1,\n",
      "          'torture': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'romance': 4,\n",
      "          'movies': 4,\n",
      "          'end': 4,\n",
      "          'prinze': 4,\n",
      "          'jr': 4,\n",
      "          'characters': 4,\n",
      "          'could': 3,\n",
      "          'teenage': 2,\n",
      "          'young': 2,\n",
      "          'cast': 2,\n",
      "          'unlikely': 2,\n",
      "          'scenario': 2,\n",
      "          'happen': 2,\n",
      "          'nand': 2,\n",
      "          'hit': 2,\n",
      "          'shes': 2,\n",
      "          'things': 2,\n",
      "          'hate': 2,\n",
      "          'nonly': 2,\n",
      "          'teen': 2,\n",
      "          'comedy': 2,\n",
      "          'giggly': 2,\n",
      "          '12year': 2,\n",
      "          'old': 2,\n",
      "          'girls': 2,\n",
      "          'nin': 2,\n",
      "          'textbook': 2,\n",
      "          'chef': 2,\n",
      "          'julia': 2,\n",
      "          'stiles': 2,\n",
      "          'couple': 2,\n",
      "          'screen': 2,\n",
      "          'shows': 2,\n",
      "          'neven': 2,\n",
      "          'winkler': 2,\n",
      "          'film': 2,\n",
      "          'course': 2,\n",
      "          'featured': 2,\n",
      "          'would': 2,\n",
      "          'something': 2,\n",
      "          'work': 2,\n",
      "          'ahh': 1,\n",
      "          'yes': 1,\n",
      "          'nan': 1,\n",
      "          'attractive': 1,\n",
      "          'pitted': 1,\n",
      "          'guy': 1,\n",
      "          'always': 1,\n",
      "          'gets': 1,\n",
      "          'girl': 1,\n",
      "          'arrival': 1,\n",
      "          'breakout': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'followed': 1,\n",
      "          'long': 1,\n",
      "          'catalogue': 1,\n",
      "          'imitators': 1,\n",
      "          'including': 1,\n",
      "          '10': 1,\n",
      "          'drive': 1,\n",
      "          'crazy': 1,\n",
      "          'genre': 1,\n",
      "          'previously': 1,\n",
      "          'life': 1,\n",
      "          'support': 1,\n",
      "          'hot': 1,\n",
      "          'commodity': 1,\n",
      "          'nalong': 1,\n",
      "          'comes': 1,\n",
      "          'folks': 1,\n",
      "          'miramax': 1,\n",
      "          'obviously': 1,\n",
      "          'trying': 1,\n",
      "          'capitalize': 1,\n",
      "          'rabid': 1,\n",
      "          'craze': 1,\n",
      "          'latest': 1,\n",
      "          'project': 1,\n",
      "          'studdly': 1,\n",
      "          'freddie': 1,\n",
      "          'attached': 1,\n",
      "          'doesnt': 1,\n",
      "          'mentioned': 1,\n",
      "          'nit': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'ordinary': 1,\n",
      "          'dull': 1,\n",
      "          'unattractive': 1,\n",
      "          'sticks': 1,\n",
      "          'boring': 1,\n",
      "          'game': 1,\n",
      "          'plan': 1,\n",
      "          'accustomed': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'find': 1,\n",
      "          'convincing': 1,\n",
      "          'strictly': 1,\n",
      "          'fashion': 1,\n",
      "          'college': 1,\n",
      "          'sophomore': 1,\n",
      "          'aspiring': 1,\n",
      "          'al': 1,\n",
      "          'meets': 1,\n",
      "          'freshman': 1,\n",
      "          'artist': 1,\n",
      "          'imogen': 1,\n",
      "          'nthey': 1,\n",
      "          'like': 1,\n",
      "          'nfrom': 1,\n",
      "          'standard': 1,\n",
      "          'boymeetsgirl': 1,\n",
      "          'boylosesgirl': 1,\n",
      "          'boydrinksentirebottleofshampooandmayormaynotgetgirlback': 1,\n",
      "          'story': 1,\n",
      "          'plot': 1,\n",
      "          'conveniently': 1,\n",
      "          'assembled': 1,\n",
      "          'suit': 1,\n",
      "          'requirements': 1,\n",
      "          'main': 1,\n",
      "          'frequently': 1,\n",
      "          'taking': 1,\n",
      "          'part': 1,\n",
      "          'activities': 1,\n",
      "          'nwell': 1,\n",
      "          'nfortunately': 1,\n",
      "          'certain': 1,\n",
      "          'appeal': 1,\n",
      "          'nfreddie': 1,\n",
      "          'adorable': 1,\n",
      "          'together': 1,\n",
      "          'radiate': 1,\n",
      "          'sort': 1,\n",
      "          'warmth': 1,\n",
      "          'charisma': 1,\n",
      "          'movie': 1,\n",
      "          'centered': 1,\n",
      "          'around': 1,\n",
      "          'nzak': 1,\n",
      "          'orth': 1,\n",
      "          'newly': 1,\n",
      "          'realized': 1,\n",
      "          'porn': 1,\n",
      "          'star': 1,\n",
      "          'monk': 1,\n",
      "          'unmistakable': 1,\n",
      "          'flair': 1,\n",
      "          'handling': 1,\n",
      "          'films': 1,\n",
      "          'intelligent': 1,\n",
      "          'dialogue': 1,\n",
      "          'nrounding': 1,\n",
      "          'impressive': 1,\n",
      "          'ensemble': 1,\n",
      "          'talent': 1,\n",
      "          'shawn': 1,\n",
      "          'hatosy': 1,\n",
      "          'faculty': 1,\n",
      "          'selma': 1,\n",
      "          'blair': 1,\n",
      "          'cruel': 1,\n",
      "          'intentions': 1,\n",
      "          'ashton': 1,\n",
      "          'kutcher': 1,\n",
      "          'tvs': 1,\n",
      "          '70s': 1,\n",
      "          'fonz': 1,\n",
      "          'henry': 1,\n",
      "          'epitome': 1,\n",
      "          'angst': 1,\n",
      "          'nostalgia': 1,\n",
      "          'welcome': 1,\n",
      "          'role': 1,\n",
      "          'als': 1,\n",
      "          'dad': 1,\n",
      "          'host': 1,\n",
      "          'popular': 1,\n",
      "          'cooking': 1,\n",
      "          'program': 1,\n",
      "          'ray': 1,\n",
      "          'nmaybe': 1,\n",
      "          'concept': 1,\n",
      "          'looked': 1,\n",
      "          'good': 1,\n",
      "          'paper': 1,\n",
      "          'draw': 1,\n",
      "          'crowd': 1,\n",
      "          'nas': 1,\n",
      "          'feature': 1,\n",
      "          'however': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'bland': 1,\n",
      "          'tasteless': 1,\n",
      "          'fluff': 1,\n",
      "          'occasional': 1,\n",
      "          'whiff': 1,\n",
      "          'cuteness': 1,\n",
      "          'keep': 1,\n",
      "          'gears': 1,\n",
      "          'stopping': 1,\n",
      "          'entirely': 1,\n",
      "          'nperhaps': 1,\n",
      "          'worst': 1,\n",
      "          'funny': 1,\n",
      "          'jokes': 1,\n",
      "          'drawn': 1,\n",
      "          'obvious': 1,\n",
      "          'sources': 1,\n",
      "          'resulting': 1,\n",
      "          'humor': 1,\n",
      "          'banal': 1,\n",
      "          'uninspired': 1,\n",
      "          'often': 1,\n",
      "          'laughing': 1,\n",
      "          'others': 1,\n",
      "          'goofyembarrassing': 1,\n",
      "          'antics': 1,\n",
      "          'seemed': 1,\n",
      "          'far': 1,\n",
      "          'amused': 1,\n",
      "          'audience': 1,\n",
      "          'grown': 1,\n",
      "          'restless': 1,\n",
      "          'toward': 1,\n",
      "          'waited': 1,\n",
      "          'impatiently': 1,\n",
      "          'formula': 1,\n",
      "          'run': 1,\n",
      "          'one': 1,\n",
      "          'mildly': 1,\n",
      "          'clever': 1,\n",
      "          'segment': 1,\n",
      "          'fantasy': 1,\n",
      "          'sequence': 1,\n",
      "          'called': 1,\n",
      "          'cooks': 1,\n",
      "          'cops': 1,\n",
      "          'takeoff': 1,\n",
      "          'father': 1,\n",
      "          'son': 1,\n",
      "          'storm': 1,\n",
      "          'houses': 1,\n",
      "          'cook': 1,\n",
      "          'decent': 1,\n",
      "          'meal': 1,\n",
      "          'needy': 1,\n",
      "          'families': 1,\n",
      "          'assistance': 1,\n",
      "          'fullyarmed': 1,\n",
      "          'swat': 1,\n",
      "          'team': 1,\n",
      "          'nwhen': 1,\n",
      "          'highlight': 1,\n",
      "          'reel': 1,\n",
      "          'know': 1,\n",
      "          'remaining': 1,\n",
      "          'leave': 1,\n",
      "          'desired': 1,\n",
      "          'order': 1,\n",
      "          'make': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'show': 1,\n",
      "          'way': 1,\n",
      "          'depth': 1,\n",
      "          'identity': 1,\n",
      "          'n10': 1,\n",
      "          'actually': 1,\n",
      "          'walking': 1,\n",
      "          'flashcards': 1,\n",
      "          'result': 1,\n",
      "          'refreshing': 1,\n",
      "          'nno': 1,\n",
      "          'luck': 1,\n",
      "          'nits': 1,\n",
      "          'despite': 1,\n",
      "          'absurd': 1,\n",
      "          'circumstances': 1,\n",
      "          'everything': 1,\n",
      "          'bound': 1,\n",
      "          'whole': 1,\n",
      "          'clich': 1,\n",
      "          'ordeal': 1,\n",
      "          'nicest': 1,\n",
      "          'thing': 1,\n",
      "          'possibly': 1,\n",
      "          'say': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'virus': 5,\n",
      "          'one': 4,\n",
      "          'even': 3,\n",
      "          'making': 3,\n",
      "          'last': 3,\n",
      "          'ship': 3,\n",
      "          'creature': 3,\n",
      "          'nthe': 3,\n",
      "          'type': 2,\n",
      "          'times': 2,\n",
      "          'anyone': 2,\n",
      "          'would': 2,\n",
      "          'year': 2,\n",
      "          'another': 2,\n",
      "          'like': 2,\n",
      "          'deep': 2,\n",
      "          'movies': 2,\n",
      "          'include': 2,\n",
      "          '1989s': 2,\n",
      "          'alien': 2,\n",
      "          'since': 2,\n",
      "          'doesnt': 2,\n",
      "          'water': 2,\n",
      "          'crew': 2,\n",
      "          'ocean': 2,\n",
      "          'nafter': 2,\n",
      "          'electrical': 2,\n",
      "          'sutherland': 2,\n",
      "          'jamie': 2,\n",
      "          'lee': 2,\n",
      "          'curtis': 2,\n",
      "          'life': 2,\n",
      "          'space': 2,\n",
      "          'nalthough': 2,\n",
      "          'fairly': 2,\n",
      "          'money': 2,\n",
      "          'good': 2,\n",
      "          'hard': 2,\n",
      "          'films': 2,\n",
      "          'cliched': 1,\n",
      "          'vacuous': 1,\n",
      "          'recylcled': 1,\n",
      "          'many': 1,\n",
      "          'wonder': 1,\n",
      "          'bother': 1,\n",
      "          'putting': 1,\n",
      "          'work': 1,\n",
      "          'nstrangely': 1,\n",
      "          'enough': 1,\n",
      "          'midjanuary': 1,\n",
      "          'weekend': 1,\n",
      "          'released': 1,\n",
      "          'rising': 1,\n",
      "          'ugly': 1,\n",
      "          'monster': 1,\n",
      "          'cruise': 1,\n",
      "          'liner': 1,\n",
      "          'nprior': 1,\n",
      "          'almost': 1,\n",
      "          'exact': 1,\n",
      "          'storyline': 1,\n",
      "          'leviathan': 1,\n",
      "          'star': 1,\n",
      "          'six': 1,\n",
      "          'four': 1,\n",
      "          'pictures': 1,\n",
      "          'n': 1,\n",
      "          'comparison': 1,\n",
      "          'servicable': 1,\n",
      "          'thriller': 1,\n",
      "          'wellmade': 1,\n",
      "          'produced': 1,\n",
      "          'moment': 1,\n",
      "          'remote': 1,\n",
      "          'originality': 1,\n",
      "          'intelligence': 1,\n",
      "          'sinks': 1,\n",
      "          'weight': 1,\n",
      "          'shot': 1,\n",
      "          'nbased': 1,\n",
      "          'series': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'concerns': 1,\n",
      "          'salvage': 1,\n",
      "          'tugboat': 1,\n",
      "          'becomes': 1,\n",
      "          'extremely': 1,\n",
      "          'damaged': 1,\n",
      "          'violent': 1,\n",
      "          'typhoon': 1,\n",
      "          'discovering': 1,\n",
      "          'boat': 1,\n",
      "          'slowly': 1,\n",
      "          'sinking': 1,\n",
      "          'un': 1,\n",
      "          'lucky': 1,\n",
      "          'huge': 1,\n",
      "          'vessel': 1,\n",
      "          'appears': 1,\n",
      "          'dead': 1,\n",
      "          'turns': 1,\n",
      "          'within': 1,\n",
      "          'confines': 1,\n",
      "          'radar': 1,\n",
      "          'screen': 1,\n",
      "          'nonce': 1,\n",
      "          'team': 1,\n",
      "          'reaches': 1,\n",
      "          'russian': 1,\n",
      "          'go': 1,\n",
      "          'board': 1,\n",
      "          'find': 1,\n",
      "          'place': 1,\n",
      "          'seemingly': 1,\n",
      "          'deserted': 1,\n",
      "          'turning': 1,\n",
      "          'power': 1,\n",
      "          'back': 1,\n",
      "          'however': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'gradually': 1,\n",
      "          'signs': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'equipment': 1,\n",
      "          'oddly': 1,\n",
      "          'working': 1,\n",
      "          'none': 1,\n",
      "          'survivor': 1,\n",
      "          'finally': 1,\n",
      "          'turn': 1,\n",
      "          'nadia': 1,\n",
      "          'joanna': 1,\n",
      "          'pacula': 1,\n",
      "          'informs': 1,\n",
      "          'suicidal': 1,\n",
      "          'stern': 1,\n",
      "          'captain': 1,\n",
      "          'donald': 1,\n",
      "          'kit': 1,\n",
      "          'foster': 1,\n",
      "          'mysterious': 1,\n",
      "          'form': 1,\n",
      "          'hit': 1,\n",
      "          'santi': 1,\n",
      "          'mir': 1,\n",
      "          'station': 1,\n",
      "          'transported': 1,\n",
      "          'taking': 1,\n",
      "          'minds': 1,\n",
      "          'machines': 1,\n",
      "          'thinking': 1,\n",
      "          'humans': 1,\n",
      "          'viruses': 1,\n",
      "          'completely': 1,\n",
      "          'wiped': 1,\n",
      "          'nif': 1,\n",
      "          'sounds': 1,\n",
      "          'previously': 1,\n",
      "          'mentioned': 1,\n",
      "          'youre': 1,\n",
      "          'correct': 1,\n",
      "          'technical': 1,\n",
      "          'artistry': 1,\n",
      "          'impressive': 1,\n",
      "          'bring': 1,\n",
      "          'mechanical': 1,\n",
      "          'appear': 1,\n",
      "          'brain': 1,\n",
      "          'head': 1,\n",
      "          'sticks': 1,\n",
      "          'close': 1,\n",
      "          'wornout': 1,\n",
      "          'conventions': 1,\n",
      "          'genre': 1,\n",
      "          'amazing': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'filming': 1,\n",
      "          'could': 1,\n",
      "          'original': 1,\n",
      "          'actors': 1,\n",
      "          'proven': 1,\n",
      "          'acting': 1,\n",
      "          'abilities': 1,\n",
      "          'past': 1,\n",
      "          'sorely': 1,\n",
      "          'wasted': 1,\n",
      "          'really': 1,\n",
      "          'characters': 1,\n",
      "          'play': 1,\n",
      "          'nin': 1,\n",
      "          'second': 1,\n",
      "          'return': 1,\n",
      "          'horror': 1,\n",
      "          'proves': 1,\n",
      "          'strong': 1,\n",
      "          'resourceful': 1,\n",
      "          'heroine': 1,\n",
      "          '1998s': 1,\n",
      "          'halloween': 1,\n",
      "          'h20': 1,\n",
      "          'also': 1,\n",
      "          'disappointment': 1,\n",
      "          'least': 1,\n",
      "          'given': 1,\n",
      "          'scenes': 1,\n",
      "          'develop': 1,\n",
      "          'character': 1,\n",
      "          'unlike': 1,\n",
      "          'ndonald': 1,\n",
      "          'fallen': 1,\n",
      "          'recently': 1,\n",
      "          'starring': 1,\n",
      "          'thoroughly': 1,\n",
      "          'disposable': 1,\n",
      "          '1994s': 1,\n",
      "          'puppet': 1,\n",
      "          'masters': 1,\n",
      "          'although': 1,\n",
      "          'watched': 1,\n",
      "          'superb': 1,\n",
      "          '1978': 1,\n",
      "          'scifi': 1,\n",
      "          'classic': 1,\n",
      "          'invasion': 1,\n",
      "          'body': 1,\n",
      "          'snatchers': 1,\n",
      "          'fabulous': 1,\n",
      "          'three': 1,\n",
      "          'topbillers': 1,\n",
      "          'william': 1,\n",
      "          'baldwin': 1,\n",
      "          'say': 1,\n",
      "          'picture': 1,\n",
      "          'nothing': 1,\n",
      "          'nbasically': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'walk': 1,\n",
      "          'around': 1,\n",
      "          'investigate': 1,\n",
      "          'shipocean': 1,\n",
      "          'linerhaunted': 1,\n",
      "          'house': 1,\n",
      "          'deadly': 1,\n",
      "          'equally': 1,\n",
      "          'grotesque': 1,\n",
      "          'slimy': 1,\n",
      "          'pops': 1,\n",
      "          'kills': 1,\n",
      "          'onebyone': 1,\n",
      "          'nit': 1,\n",
      "          'worst': 1,\n",
      "          'far': 1,\n",
      "          'best': 1,\n",
      "          'exactly': 1,\n",
      "          'studios': 1,\n",
      "          'going': 1,\n",
      "          'give': 1,\n",
      "          'recycling': 1,\n",
      "          'shameless': 1,\n",
      "          'overdone': 1,\n",
      "          'plot': 1,\n",
      "          'gimmicks': 1,\n",
      "          'nas': 1,\n",
      "          'long': 1,\n",
      "          'keep': 1,\n",
      "          'suspect': 1,\n",
      "          'answer': 1,\n",
      "          'never': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'godzilla': 15,\n",
      "          'one': 9,\n",
      "          'film': 6,\n",
      "          'movie': 6,\n",
      "          'make': 5,\n",
      "          'creature': 4,\n",
      "          'new': 4,\n",
      "          'city': 4,\n",
      "          'nthe': 4,\n",
      "          'character': 4,\n",
      "          'nwhy': 4,\n",
      "          'years': 3,\n",
      "          'called': 3,\n",
      "          'gojira': 3,\n",
      "          'three': 3,\n",
      "          'raymond': 3,\n",
      "          'burr': 3,\n",
      "          'emmerich': 3,\n",
      "          'york': 3,\n",
      "          'big': 3,\n",
      "          'reno': 3,\n",
      "          'could': 3,\n",
      "          'makes': 3,\n",
      "          'script': 3,\n",
      "          'dont': 3,\n",
      "          'buildings': 3,\n",
      "          'seem': 3,\n",
      "          'simply': 3,\n",
      "          'seems': 3,\n",
      "          'characters': 3,\n",
      "          'production': 2,\n",
      "          'toho': 2,\n",
      "          'nuclear': 2,\n",
      "          'testing': 2,\n",
      "          'later': 2,\n",
      "          'states': 2,\n",
      "          'adding': 2,\n",
      "          'things': 2,\n",
      "          'name': 2,\n",
      "          'track': 2,\n",
      "          'took': 2,\n",
      "          'rest': 2,\n",
      "          'world': 2,\n",
      "          'american': 2,\n",
      "          'yes': 2,\n",
      "          'nnow': 2,\n",
      "          'giant': 2,\n",
      "          'lizard': 2,\n",
      "          'first': 2,\n",
      "          'nin': 2,\n",
      "          'niko': 2,\n",
      "          'tatopoulos': 2,\n",
      "          'mutant': 2,\n",
      "          'audrey': 2,\n",
      "          'maria': 2,\n",
      "          'pitillo': 2,\n",
      "          'reporter': 2,\n",
      "          'like': 2,\n",
      "          'comes': 2,\n",
      "          'running': 2,\n",
      "          'bound': 2,\n",
      "          'azaria': 2,\n",
      "          'phillipe': 2,\n",
      "          'jean': 2,\n",
      "          'whose': 2,\n",
      "          'attempt': 2,\n",
      "          'nwith': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'think': 2,\n",
      "          'much': 2,\n",
      "          'expect': 2,\n",
      "          'bad': 2,\n",
      "          'nits': 2,\n",
      "          'even': 2,\n",
      "          'many': 2,\n",
      "          'well': 2,\n",
      "          'flying': 2,\n",
      "          'straight': 2,\n",
      "          'entire': 2,\n",
      "          'good': 2,\n",
      "          'screenplay': 2,\n",
      "          'way': 2,\n",
      "          'see': 2,\n",
      "          'quite': 2,\n",
      "          'enough': 2,\n",
      "          'role': 2,\n",
      "          'nalthough': 2,\n",
      "          'threat': 2,\n",
      "          'ends': 2,\n",
      "          'almost': 2,\n",
      "          'take': 2,\n",
      "          'seriously': 2,\n",
      "          'wanted': 2,\n",
      "          'action': 2,\n",
      "          'want': 2,\n",
      "          'doesnt': 2,\n",
      "          '40': 1,\n",
      "          'ago': 1,\n",
      "          'japanese': 1,\n",
      "          'company': 1,\n",
      "          'introduced': 1,\n",
      "          'land': 1,\n",
      "          'rising': 1,\n",
      "          'sun': 1,\n",
      "          'reptilian': 1,\n",
      "          'immense': 1,\n",
      "          'proportions': 1,\n",
      "          'created': 1,\n",
      "          'mankinds': 1,\n",
      "          'npartly': 1,\n",
      "          'flight': 1,\n",
      "          'fancy': 1,\n",
      "          'partly': 1,\n",
      "          'commentary': 1,\n",
      "          'exploitation': 1,\n",
      "          'atomic': 1,\n",
      "          'power': 1,\n",
      "          'weaponry': 1,\n",
      "          'emerged': 1,\n",
      "          'ocean': 1,\n",
      "          'terrorize': 1,\n",
      "          'tokyo': 1,\n",
      "          'na': 1,\n",
      "          'year': 1,\n",
      "          'marketed': 1,\n",
      "          'united': 1,\n",
      "          'dubbed': 1,\n",
      "          'english': 1,\n",
      "          'nas': 1,\n",
      "          'nthirty': 1,\n",
      "          'remade': 1,\n",
      "          'classic': 1,\n",
      "          'market': 1,\n",
      "          'including': 1,\n",
      "          '1985': 1,\n",
      "          '14': 1,\n",
      "          'tohos': 1,\n",
      "          'remake': 1,\n",
      "          'director': 1,\n",
      "          'roland': 1,\n",
      "          'allowed': 1,\n",
      "          'run': 1,\n",
      "          'emmerichs': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'plays': 1,\n",
      "          'dr': 1,\n",
      "          'biologist': 1,\n",
      "          'join': 1,\n",
      "          'scientists': 1,\n",
      "          'south': 1,\n",
      "          'pacific': 1,\n",
      "          'already': 1,\n",
      "          'studying': 1,\n",
      "          'existence': 1,\n",
      "          'radiationinduced': 1,\n",
      "          'super': 1,\n",
      "          'leaves': 1,\n",
      "          'footprints': 1,\n",
      "          'size': 1,\n",
      "          'livingrooms': 1,\n",
      "          'nwhen': 1,\n",
      "          'reptile': 1,\n",
      "          'suddenly': 1,\n",
      "          'appears': 1,\n",
      "          'hudson': 1,\n",
      "          'river': 1,\n",
      "          'team': 1,\n",
      "          'relocate': 1,\n",
      "          'back': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'tatopouloss': 1,\n",
      "          'college': 1,\n",
      "          'girlfriend': 1,\n",
      "          'timmonds': 1,\n",
      "          'works': 1,\n",
      "          'assistant': 1,\n",
      "          'bigtime': 1,\n",
      "          'news': 1,\n",
      "          'nshed': 1,\n",
      "          'ashore': 1,\n",
      "          'figures': 1,\n",
      "          'break': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'guy': 1,\n",
      "          'amok': 1,\n",
      "          'cross': 1,\n",
      "          'paths': 1,\n",
      "          'joined': 1,\n",
      "          'victor': 1,\n",
      "          'animal': 1,\n",
      "          'palotti': 1,\n",
      "          'hank': 1,\n",
      "          'audreys': 1,\n",
      "          'trusty': 1,\n",
      "          'cameraman': 1,\n",
      "          'friend': 1,\n",
      "          'roche': 1,\n",
      "          'operative': 1,\n",
      "          'french': 1,\n",
      "          'government': 1,\n",
      "          'started': 1,\n",
      "          'whole': 1,\n",
      "          'problem': 1,\n",
      "          'place': 1,\n",
      "          'ntogether': 1,\n",
      "          'find': 1,\n",
      "          'destroy': 1,\n",
      "          'surprisingly': 1,\n",
      "          'elusive': 1,\n",
      "          'resources': 1,\n",
      "          'cutting': 1,\n",
      "          'edge': 1,\n",
      "          'houses': 1,\n",
      "          'clout': 1,\n",
      "          'nations': 1,\n",
      "          'premiere': 1,\n",
      "          'companies': 1,\n",
      "          'would': 1,\n",
      "          'truly': 1,\n",
      "          'deserving': 1,\n",
      "          'nhe': 1,\n",
      "          'didnt': 1,\n",
      "          'nright': 1,\n",
      "          'lost': 1,\n",
      "          'biggest': 1,\n",
      "          'disappointments': 1,\n",
      "          'recent': 1,\n",
      "          'cinematic': 1,\n",
      "          'history': 1,\n",
      "          'plot': 1,\n",
      "          'pretty': 1,\n",
      "          'dinosaurlike': 1,\n",
      "          'water': 1,\n",
      "          'starts': 1,\n",
      "          'smashing': 1,\n",
      "          'heroes': 1,\n",
      "          'figure': 1,\n",
      "          'thing': 1,\n",
      "          'rampage': 1,\n",
      "          'stopped': 1,\n",
      "          'military': 1,\n",
      "          'futile': 1,\n",
      "          'attempts': 1,\n",
      "          'bring': 1,\n",
      "          'however': 1,\n",
      "          'painfully': 1,\n",
      "          'fraught': 1,\n",
      "          'lines': 1,\n",
      "          'corny': 1,\n",
      "          'belong': 1,\n",
      "          'bmovies': 1,\n",
      "          'includes': 1,\n",
      "          'actions': 1,\n",
      "          'idiot': 1,\n",
      "          'stupid': 1,\n",
      "          'girl': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'loose': 1,\n",
      "          'semblance': 1,\n",
      "          'reality': 1,\n",
      "          'goes': 1,\n",
      "          'window': 1,\n",
      "          'topples': 1,\n",
      "          'merely': 1,\n",
      "          'brushing': 1,\n",
      "          'conveniently': 1,\n",
      "          'able': 1,\n",
      "          'leap': 1,\n",
      "          'atop': 1,\n",
      "          'others': 1,\n",
      "          'helicopters': 1,\n",
      "          'follow': 1,\n",
      "          'dangerously': 1,\n",
      "          'lose': 1,\n",
      "          'sight': 1,\n",
      "          'easily': 1,\n",
      "          'keep': 1,\n",
      "          'little': 1,\n",
      "          'higher': 1,\n",
      "          'line': 1,\n",
      "          'sidewinder': 1,\n",
      "          'missiles': 1,\n",
      "          'small': 1,\n",
      "          'explosive': 1,\n",
      "          'warheads': 1,\n",
      "          'blow': 1,\n",
      "          'miss': 1,\n",
      "          'mission': 1,\n",
      "          'bomb': 1,\n",
      "          'madison': 1,\n",
      "          'square': 1,\n",
      "          'garden': 1,\n",
      "          'carried': 1,\n",
      "          'f18': 1,\n",
      "          'fighterbombers': 1,\n",
      "          'flights': 1,\n",
      "          'aircraft': 1,\n",
      "          'always': 1,\n",
      "          'comprised': 1,\n",
      "          'multiples': 1,\n",
      "          'two': 1,\n",
      "          'nokay': 1,\n",
      "          'maybe': 1,\n",
      "          'last': 1,\n",
      "          'bit': 1,\n",
      "          'nitpicky': 1,\n",
      "          'hey': 1,\n",
      "          'roll': 1,\n",
      "          'nbroderick': 1,\n",
      "          'usually': 1,\n",
      "          'actor': 1,\n",
      "          'hes': 1,\n",
      "          'weighed': 1,\n",
      "          'unexciting': 1,\n",
      "          'atrocious': 1,\n",
      "          'fight': 1,\n",
      "          'every': 1,\n",
      "          'step': 1,\n",
      "          'nhank': 1,\n",
      "          'development': 1,\n",
      "          'promise': 1,\n",
      "          'showed': 1,\n",
      "          'birdcage': 1,\n",
      "          'nlike': 1,\n",
      "          'brodericks': 1,\n",
      "          'azarias': 1,\n",
      "          'lacking': 1,\n",
      "          'color': 1,\n",
      "          'nwhat': 1,\n",
      "          'really': 1,\n",
      "          'annoyed': 1,\n",
      "          'actually': 1,\n",
      "          'takes': 1,\n",
      "          'worse': 1,\n",
      "          'acting': 1,\n",
      "          'ncasting': 1,\n",
      "          'must': 1,\n",
      "          'asleep': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'oddly': 1,\n",
      "          'fit': 1,\n",
      "          'often': 1,\n",
      "          'comedic': 1,\n",
      "          'unlike': 1,\n",
      "          'weve': 1,\n",
      "          'past': 1,\n",
      "          'contradictory': 1,\n",
      "          'unfolding': 1,\n",
      "          'disaster': 1,\n",
      "          'brings': 1,\n",
      "          'style': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'said': 1,\n",
      "          'incongruities': 1,\n",
      "          'feel': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'pay': 1,\n",
      "          'comical': 1,\n",
      "          'homage': 1,\n",
      "          'dozen': 1,\n",
      "          'films': 1,\n",
      "          'come': 1,\n",
      "          'nthis': 1,\n",
      "          'results': 1,\n",
      "          'significant': 1,\n",
      "          'amount': 1,\n",
      "          'parody': 1,\n",
      "          'contrasts': 1,\n",
      "          'sharply': 1,\n",
      "          'monster': 1,\n",
      "          'producing': 1,\n",
      "          'mess': 1,\n",
      "          'nmost': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'none': 1,\n",
      "          'smart': 1,\n",
      "          'audience': 1,\n",
      "          'obviously': 1,\n",
      "          'fun': 1,\n",
      "          'picture': 1,\n",
      "          'sink': 1,\n",
      "          'millions': 1,\n",
      "          'cgi': 1,\n",
      "          'ferocity': 1,\n",
      "          'undermined': 1,\n",
      "          'humans': 1,\n",
      "          'threatens': 1,\n",
      "          'nif': 1,\n",
      "          'cant': 1,\n",
      "          'face': 1,\n",
      "          'empty': 1,\n",
      "          'care': 1,\n",
      "          'happens': 1,\n",
      "          'ngodzilla': 1,\n",
      "          'pulls': 1,\n",
      "          'punches': 1,\n",
      "          'lighthearted': 1,\n",
      "          'nfar': 1,\n",
      "          'carnage': 1,\n",
      "          'theaters': 1,\n",
      "          'heres': 1,\n",
      "          'behemoth': 1,\n",
      "          'ntheres': 1,\n",
      "          'lot': 1,\n",
      "          'casualties': 1,\n",
      "          'instead': 1,\n",
      "          'afflicted': 1,\n",
      "          'afterschool': 1,\n",
      "          'g': 1,\n",
      "          'njoe': 1,\n",
      "          'cartoon': 1,\n",
      "          'syndrome': 1,\n",
      "          'everyone': 1,\n",
      "          'get': 1,\n",
      "          'harms': 1,\n",
      "          'time': 1,\n",
      "          'couple': 1,\n",
      "          'scenes': 1,\n",
      "          'briefly': 1,\n",
      "          'breathes': 1,\n",
      "          'fire': 1,\n",
      "          'nnone': 1,\n",
      "          'remark': 1,\n",
      "          'upon': 1,\n",
      "          'ability': 1,\n",
      "          'used': 1,\n",
      "          'particular': 1,\n",
      "          'advantage': 1,\n",
      "          'filmmakers': 1,\n",
      "          'people': 1,\n",
      "          'show': 1,\n",
      "          'old': 1,\n",
      "          'nconsider': 1,\n",
      "          'another': 1,\n",
      "          'punch': 1,\n",
      "          'pulled': 1,\n",
      "          'nthrough': 1,\n",
      "          'creative': 1,\n",
      "          'writing': 1,\n",
      "          'sequel': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'leave': 1,\n",
      "          'door': 1,\n",
      "          'open': 1,\n",
      "          'opens': 1,\n",
      "          'hallway': 1,\n",
      "          'leading': 1,\n",
      "          'directly': 1,\n",
      "          'room': 1,\n",
      "          'ii': 1,\n",
      "          'waiting': 1,\n",
      "          'patiently': 1,\n",
      "          'nit': 1,\n",
      "          'made': 1,\n",
      "          'gag': 1,\n",
      "          'nemmerich': 1,\n",
      "          'done': 1,\n",
      "          'away': 1,\n",
      "          '90': 1,\n",
      "          'humor': 1,\n",
      "          'injokes': 1,\n",
      "          'played': 1,\n",
      "          'intelligently': 1,\n",
      "          'written': 1,\n",
      "          'nhowever': 1,\n",
      "          'confusing': 1,\n",
      "          'viewer': 1,\n",
      "          'ton': 1,\n",
      "          'addins': 1,\n",
      "          'parodies': 1,\n",
      "          'something': 1,\n",
      "          'work': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 7,\n",
      "          'douglas': 7,\n",
      "          'david': 5,\n",
      "          'murder': 4,\n",
      "          'paltrow': 4,\n",
      "          'stephen': 3,\n",
      "          'moves': 3,\n",
      "          'remake': 2,\n",
      "          'appears': 2,\n",
      "          'mortensen': 2,\n",
      "          'interesting': 2,\n",
      "          'nmortensen': 2,\n",
      "          'keep': 2,\n",
      "          'coming': 2,\n",
      "          'fast': 2,\n",
      "          'thriller': 2,\n",
      "          'nalso': 2,\n",
      "          'talent': 2,\n",
      "          'better': 2,\n",
      "          'nhowever': 2,\n",
      "          'suchet': 2,\n",
      "          'also': 2,\n",
      "          'characters': 2,\n",
      "          'last': 2,\n",
      "          'perfect': 2,\n",
      "          'psycho': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'suffer': 1,\n",
      "          'earlier': 1,\n",
      "          'hitchcock': 1,\n",
      "          'dial': 1,\n",
      "          'nas': 1,\n",
      "          'usual': 1,\n",
      "          'hollywood': 1,\n",
      "          'filled': 1,\n",
      "          'glitz': 1,\n",
      "          'big': 1,\n",
      "          'name': 1,\n",
      "          'stars': 1,\n",
      "          'amounts': 1,\n",
      "          'loud': 1,\n",
      "          'sounding': 1,\n",
      "          'nothing': 1,\n",
      "          'opens': 1,\n",
      "          'emily': 1,\n",
      "          'viggo': 1,\n",
      "          'fun': 1,\n",
      "          'loft': 1,\n",
      "          'apartment': 1,\n",
      "          'problem': 1,\n",
      "          'married': 1,\n",
      "          'happy': 1,\n",
      "          'discovers': 1,\n",
      "          'affair': 1,\n",
      "          'nif': 1,\n",
      "          'though': 1,\n",
      "          'id': 1,\n",
      "          'definitely': 1,\n",
      "          'go': 1,\n",
      "          'nless': 1,\n",
      "          'wrinkles': 1,\n",
      "          'nanyhow': 1,\n",
      "          'approaches': 1,\n",
      "          'proposition': 1,\n",
      "          'hell': 1,\n",
      "          'pay': 1,\n",
      "          'kill': 1,\n",
      "          'lovely': 1,\n",
      "          'wife': 1,\n",
      "          'agrees': 1,\n",
      "          'goes': 1,\n",
      "          'awry': 1,\n",
      "          'twists': 1,\n",
      "          'progresses': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'dosent': 1,\n",
      "          'progress': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'like': 1,\n",
      "          'tortoise': 1,\n",
      "          'arthritis': 1,\n",
      "          'read': 1,\n",
      "          'slow': 1,\n",
      "          'plot': 1,\n",
      "          'nowhere': 1,\n",
      "          'becomes': 1,\n",
      "          'exciting': 1,\n",
      "          'short': 1,\n",
      "          'bursts': 1,\n",
      "          'nnot': 1,\n",
      "          'good': 1,\n",
      "          'performances': 1,\n",
      "          'apart': 1,\n",
      "          'par': 1,\n",
      "          'npaltrow': 1,\n",
      "          'showing': 1,\n",
      "          'immense': 1,\n",
      "          'se7en': 1,\n",
      "          '1995': 1,\n",
      "          'sliding': 1,\n",
      "          'doors': 1,\n",
      "          '1997': 1,\n",
      "          'strangely': 1,\n",
      "          'stilted': 1,\n",
      "          'even': 1,\n",
      "          'unconvincing': 1,\n",
      "          'movie': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'across': 1,\n",
      "          'younger': 1,\n",
      "          'role': 1,\n",
      "          'isnt': 1,\n",
      "          'meaty': 1,\n",
      "          'enough': 1,\n",
      "          'show': 1,\n",
      "          'nwhich': 1,\n",
      "          'leaves': 1,\n",
      "          'waltz': 1,\n",
      "          'away': 1,\n",
      "          'doubt': 1,\n",
      "          'finds': 1,\n",
      "          'hard': 1,\n",
      "          'play': 1,\n",
      "          'stogie': 1,\n",
      "          'smoking': 1,\n",
      "          'drinking': 1,\n",
      "          'womanizer': 1,\n",
      "          'creepy': 1,\n",
      "          'underside': 1,\n",
      "          'popping': 1,\n",
      "          'playing': 1,\n",
      "          'shifty': 1,\n",
      "          'looking': 1,\n",
      "          'detective': 1,\n",
      "          'nagain': 1,\n",
      "          'character': 1,\n",
      "          'seeing': 1,\n",
      "          'screen': 1,\n",
      "          'director': 1,\n",
      "          'bought': 1,\n",
      "          'us': 1,\n",
      "          'fugitive': 1,\n",
      "          'piles': 1,\n",
      "          'flash': 1,\n",
      "          'techniques': 1,\n",
      "          'zoomins': 1,\n",
      "          'quick': 1,\n",
      "          'cuts': 1,\n",
      "          'etc': 1,\n",
      "          'lighting': 1,\n",
      "          'looks': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'depths': 1,\n",
      "          'mediocre': 1,\n",
      "          'seemed': 1,\n",
      "          'work': 1,\n",
      "          'single': 1,\n",
      "          'set': 1,\n",
      "          'anyway': 1,\n",
      "          'screenplay': 1,\n",
      "          'k': 1,\n",
      "          'theres': 1,\n",
      "          'hackneyed': 1,\n",
      "          'subplot': 1,\n",
      "          'ruthless': 1,\n",
      "          'player': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'ending': 1,\n",
      "          'surprisingly': 1,\n",
      "          'stupid': 1,\n",
      "          'cliched': 1,\n",
      "          'make': 1,\n",
      "          'incredibly': 1,\n",
      "          'dumb': 1,\n",
      "          'especially': 1,\n",
      "          'lose': 1,\n",
      "          'intelligence': 1,\n",
      "          'reel': 1,\n",
      "          'nwith': 1,\n",
      "          'combination': 1,\n",
      "          'tension': 1,\n",
      "          'drama': 1,\n",
      "          'decent': 1,\n",
      "          'failure': 1,\n",
      "          'round': 1,\n",
      "          'incredible': 1,\n",
      "          'disappointment': 1,\n",
      "          'nthere': 1,\n",
      "          'bright': 1,\n",
      "          'moments': 1,\n",
      "          'far': 1,\n",
      "          'thing': 1,\n",
      "          'boring': 1,\n",
      "          'although': 1,\n",
      "          'barely': 1,\n",
      "          'manages': 1,\n",
      "          'interest': 1,\n",
      "          'thanks': 1,\n",
      "          'michael': 1,\n",
      "          'wouldnt': 1,\n",
      "          'missing': 1,\n",
      "          'anything': 1,\n",
      "          'decided': 1,\n",
      "          'watch': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'nreview': 1,\n",
      "          'wilcock': 1,\n",
      "          '1998': 1,\n",
      "          'n': 1,\n",
      "          'know': 1,\n",
      "          'kids': 1,\n",
      "          'norville': 1,\n",
      "          'barnes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'serial': 3,\n",
      "          'relentless': 3,\n",
      "          'dietz': 3,\n",
      "          'killer': 3,\n",
      "          'one': 3,\n",
      "          'movies': 2,\n",
      "          'deal': 2,\n",
      "          'killers': 2,\n",
      "          'detective': 2,\n",
      "          'sam': 2,\n",
      "          'leo': 2,\n",
      "          'rossi': 2,\n",
      "          '3': 2,\n",
      "          'vicious': 2,\n",
      "          'doesnt': 2,\n",
      "          'old': 2,\n",
      "          'dietzs': 2,\n",
      "          'british': 2,\n",
      "          'lot': 2,\n",
      "          'similarities': 2,\n",
      "          'also': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'career': 2,\n",
      "          'coinciding': 1,\n",
      "          'emerging': 1,\n",
      "          'popularity': 1,\n",
      "          'anything': 1,\n",
      "          'related': 1,\n",
      "          '1989': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'thriller': 1,\n",
      "          'lapd': 1,\n",
      "          'played': 1,\n",
      "          'character': 1,\n",
      "          'actor': 1,\n",
      "          'spawned': 1,\n",
      "          'three': 1,\n",
      "          'sequels': 1,\n",
      "          'nrelentless': 1,\n",
      "          'third': 1,\n",
      "          'row': 1,\n",
      "          'features': 1,\n",
      "          'time': 1,\n",
      "          'catch': 1,\n",
      "          'first': 1,\n",
      "          'case': 1,\n",
      "          'want': 1,\n",
      "          'similar': 1,\n",
      "          'line': 1,\n",
      "          'work': 1,\n",
      "          'ndivorced': 1,\n",
      "          'demoralised': 1,\n",
      "          'transferred': 1,\n",
      "          'reluctantly': 1,\n",
      "          'returns': 1,\n",
      "          'post': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'becomes': 1,\n",
      "          'hunting': 1,\n",
      "          'ground': 1,\n",
      "          'another': 1,\n",
      "          'evidence': 1,\n",
      "          'indicate': 1,\n",
      "          'connection': 1,\n",
      "          'cases': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'things': 1,\n",
      "          'even': 1,\n",
      "          'interesting': 1,\n",
      "          'seems': 1,\n",
      "          'deliberately': 1,\n",
      "          'stages': 1,\n",
      "          'murders': 1,\n",
      "          'order': 1,\n",
      "          'bring': 1,\n",
      "          'investigation': 1,\n",
      "          'nfans': 1,\n",
      "          'tv': 1,\n",
      "          'films': 1,\n",
      "          'miniseries': 1,\n",
      "          'like': 1,\n",
      "          'prime': 1,\n",
      "          'suspect': 1,\n",
      "          'cracker': 1,\n",
      "          'would': 1,\n",
      "          'probably': 1,\n",
      "          'see': 1,\n",
      "          'series': 1,\n",
      "          'nthey': 1,\n",
      "          'feature': 1,\n",
      "          'psychopathic': 1,\n",
      "          'yet': 1,\n",
      "          'give': 1,\n",
      "          'usually': 1,\n",
      "          'depressive': 1,\n",
      "          'details': 1,\n",
      "          'chief': 1,\n",
      "          'investigators': 1,\n",
      "          'private': 1,\n",
      "          'lives': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'exception': 1,\n",
      "          'television': 1,\n",
      "          'content': 1,\n",
      "          'execution': 1,\n",
      "          'style': 1,\n",
      "          'different': 1,\n",
      "          'makes': 1,\n",
      "          'mediocre': 1,\n",
      "          'piece': 1,\n",
      "          'entertainment': 1,\n",
      "          'best': 1,\n",
      "          'nuseless': 1,\n",
      "          'gratuitous': 1,\n",
      "          'erotica': 1,\n",
      "          'help': 1,\n",
      "          'either': 1,\n",
      "          'obviously': 1,\n",
      "          'making': 1,\n",
      "          'longer': 1,\n",
      "          'actors': 1,\n",
      "          'good': 1,\n",
      "          'though': 1,\n",
      "          'fine': 1,\n",
      "          'usual': 1,\n",
      "          'william': 1,\n",
      "          'forsythe': 1,\n",
      "          'plays': 1,\n",
      "          'compelling': 1,\n",
      "          'villains': 1,\n",
      "          'nsigny': 1,\n",
      "          'coleman': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'hand': 1,\n",
      "          'quite': 1,\n",
      "          'miscast': 1,\n",
      "          'nbut': 1,\n",
      "          'wont': 1,\n",
      "          'worry': 1,\n",
      "          'future': 1,\n",
      "          'since': 1,\n",
      "          'wasnt': 1,\n",
      "          'supposed': 1,\n",
      "          'anybodys': 1,\n",
      "          'finest': 1,\n",
      "          'moment': 1,\n",
      "          'anyway': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'back': 5,\n",
      "          'looking': 4,\n",
      "          'film': 4,\n",
      "          'town': 4,\n",
      "          'never': 4,\n",
      "          'character': 4,\n",
      "          'much': 4,\n",
      "          'burns': 3,\n",
      "          'previous': 3,\n",
      "          'work': 3,\n",
      "          'holly': 3,\n",
      "          'life': 3,\n",
      "          'nhe': 3,\n",
      "          'makes': 3,\n",
      "          'ntheres': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'edward': 2,\n",
      "          'picture': 2,\n",
      "          'boring': 2,\n",
      "          'without': 2,\n",
      "          'lauren': 2,\n",
      "          'michael': 2,\n",
      "          'jovi': 2,\n",
      "          'escape': 2,\n",
      "          'charlie': 2,\n",
      "          'claudias': 2,\n",
      "          'old': 2,\n",
      "          'flame': 2,\n",
      "          'claudia': 2,\n",
      "          'nshould': 2,\n",
      "          'seems': 2,\n",
      "          'ninety': 2,\n",
      "          'minutes': 2,\n",
      "          'rather': 2,\n",
      "          'whole': 2,\n",
      "          'role': 2,\n",
      "          'bad': 2,\n",
      "          'tackles': 1,\n",
      "          'third': 1,\n",
      "          'like': 1,\n",
      "          'two': 1,\n",
      "          'workingclass': 1,\n",
      "          'relationship': 1,\n",
      "          'nhowever': 1,\n",
      "          'unlike': 1,\n",
      "          'dwells': 1,\n",
      "          'personal': 1,\n",
      "          'story': 1,\n",
      "          'female': 1,\n",
      "          'protagonist': 1,\n",
      "          'nand': 1,\n",
      "          'stumbles': 1,\n",
      "          'making': 1,\n",
      "          'slow': 1,\n",
      "          'spark': 1,\n",
      "          'enlivened': 1,\n",
      "          'nclaudia': 1,\n",
      "          'small': 1,\n",
      "          'waitress': 1,\n",
      "          'feeling': 1,\n",
      "          'stifled': 1,\n",
      "          'nshes': 1,\n",
      "          'turning': 1,\n",
      "          'point': 1,\n",
      "          'feels': 1,\n",
      "          'shes': 1,\n",
      "          'going': 1,\n",
      "          'nowhere': 1,\n",
      "          'nher': 1,\n",
      "          'boyfriend': 1,\n",
      "          'jon': 1,\n",
      "          'bon': 1,\n",
      "          'broke': 1,\n",
      "          'dead': 1,\n",
      "          'end': 1,\n",
      "          'job': 1,\n",
      "          'nif': 1,\n",
      "          'marry': 1,\n",
      "          'shed': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'nenter': 1,\n",
      "          'skipped': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'explanations': 1,\n",
      "          'even': 1,\n",
      "          'nfor': 1,\n",
      "          'come': 1,\n",
      "          'see': 1,\n",
      "          'suddenly': 1,\n",
      "          'torn': 1,\n",
      "          'stay': 1,\n",
      "          'stable': 1,\n",
      "          'hometown': 1,\n",
      "          'ignore': 1,\n",
      "          'instincts': 1,\n",
      "          'fall': 1,\n",
      "          'npart': 1,\n",
      "          'answer': 1,\n",
      "          'lies': 1,\n",
      "          'mother': 1,\n",
      "          'blythe': 1,\n",
      "          'danner': 1,\n",
      "          'fell': 1,\n",
      "          'wrong': 1,\n",
      "          'man': 1,\n",
      "          'spent': 1,\n",
      "          'pining': 1,\n",
      "          'father': 1,\n",
      "          'return': 1,\n",
      "          'nnow': 1,\n",
      "          'make': 1,\n",
      "          'mistakes': 1,\n",
      "          'nat': 1,\n",
      "          'little': 1,\n",
      "          'past': 1,\n",
      "          'short': 1,\n",
      "          'genre': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'longer': 1,\n",
      "          'nthe': 1,\n",
      "          'storyline': 1,\n",
      "          'simple': 1,\n",
      "          'uninspired': 1,\n",
      "          'theres': 1,\n",
      "          'lack': 1,\n",
      "          'energy': 1,\n",
      "          'proceedings': 1,\n",
      "          'entire': 1,\n",
      "          'drama': 1,\n",
      "          'tedious': 1,\n",
      "          'nedward': 1,\n",
      "          'misstep': 1,\n",
      "          'casting': 1,\n",
      "          'crucial': 1,\n",
      "          'egomaniacal': 1,\n",
      "          'one': 1,\n",
      "          'restrain': 1,\n",
      "          'ego': 1,\n",
      "          'reigns': 1,\n",
      "          'unchecked': 1,\n",
      "          'walks': 1,\n",
      "          'room': 1,\n",
      "          'swoons': 1,\n",
      "          'yeah': 1,\n",
      "          'nright': 1,\n",
      "          'nlauren': 1,\n",
      "          'central': 1,\n",
      "          'nbut': 1,\n",
      "          'understand': 1,\n",
      "          'pathetically': 1,\n",
      "          'decisions': 1,\n",
      "          'nwe': 1,\n",
      "          'really': 1,\n",
      "          'care': 1,\n",
      "          'nbon': 1,\n",
      "          'sympathetic': 1,\n",
      "          'movie': 1,\n",
      "          'nhis': 1,\n",
      "          'acting': 1,\n",
      "          'talents': 1,\n",
      "          'greater': 1,\n",
      "          'might': 1,\n",
      "          'seem': 1,\n",
      "          'given': 1,\n",
      "          'mostly': 1,\n",
      "          'bland': 1,\n",
      "          'ineffective': 1,\n",
      "          'recommend': 1,\n",
      "          'nits': 1,\n",
      "          'nsimply': 1,\n",
      "          'zest': 1,\n",
      "          'aspect': 1,\n",
      "          'reason': 1,\n",
      "          'spend': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 11,\n",
      "          'one': 7,\n",
      "          'love': 7,\n",
      "          'family': 7,\n",
      "          'professor': 6,\n",
      "          'murphy': 5,\n",
      "          'movie': 5,\n",
      "          'klumps': 5,\n",
      "          'sherman': 5,\n",
      "          'buddy': 4,\n",
      "          'first': 4,\n",
      "          'like': 4,\n",
      "          'people': 4,\n",
      "          'eddie': 3,\n",
      "          'bad': 3,\n",
      "          'man': 3,\n",
      "          'film': 3,\n",
      "          'nutty': 3,\n",
      "          'become': 3,\n",
      "          'every': 3,\n",
      "          'nits': 3,\n",
      "          'five': 3,\n",
      "          'story': 3,\n",
      "          'around': 3,\n",
      "          'days': 2,\n",
      "          'studio': 2,\n",
      "          'make': 2,\n",
      "          'films': 2,\n",
      "          'life': 2,\n",
      "          'comedic': 2,\n",
      "          'shame': 2,\n",
      "          'klump': 2,\n",
      "          'university': 2,\n",
      "          'nsherman': 2,\n",
      "          'short': 2,\n",
      "          'time': 2,\n",
      "          'nwith': 2,\n",
      "          'act': 2,\n",
      "          'dna': 2,\n",
      "          'beaker': 2,\n",
      "          'nbut': 2,\n",
      "          'breasts': 2,\n",
      "          'jokes': 2,\n",
      "          'enough': 2,\n",
      "          'lost': 2,\n",
      "          'minutes': 2,\n",
      "          'nand': 2,\n",
      "          'really': 2,\n",
      "          'special': 2,\n",
      "          'scene': 2,\n",
      "          'scenes': 2,\n",
      "          'weitz': 2,\n",
      "          'last': 2,\n",
      "          'american': 2,\n",
      "          'ignorant': 2,\n",
      "          'anything': 2,\n",
      "          'character': 2,\n",
      "          'type': 2,\n",
      "          'worked': 2,\n",
      "          'conversations': 2,\n",
      "          'sequel': 2,\n",
      "          'pathetic': 2,\n",
      "          'effects': 2,\n",
      "          'cant': 2,\n",
      "          'dont': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'nfor': 1,\n",
      "          'past': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'gods': 1,\n",
      "          'cinemaor': 1,\n",
      "          'expansive': 1,\n",
      "          'payrolls': 1,\n",
      "          'conglomerateshave': 1,\n",
      "          'allowed': 1,\n",
      "          'another': 1,\n",
      "          'nsuch': 1,\n",
      "          'metro': 1,\n",
      "          'doctor': 1,\n",
      "          'dolittle': 1,\n",
      "          'holy': 1,\n",
      "          'bowfinger': 1,\n",
      "          'reduced': 1,\n",
      "          'great': 1,\n",
      "          'persona': 1,\n",
      "          'living': 1,\n",
      "          'breathing': 1,\n",
      "          'washedup': 1,\n",
      "          'hack': 1,\n",
      "          'performing': 1,\n",
      "          'puppet': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'universal': 1,\n",
      "          'pictures': 1,\n",
      "          'biggest': 1,\n",
      "          'fall': 1,\n",
      "          'shoulders': 1,\n",
      "          'newest': 1,\n",
      "          'ii': 1,\n",
      "          'revisits': 1,\n",
      "          'overweight': 1,\n",
      "          'science': 1,\n",
      "          'looking': 1,\n",
      "          'wrong': 1,\n",
      "          'places': 1,\n",
      "          'invented': 1,\n",
      "          'new': 1,\n",
      "          'youth': 1,\n",
      "          'drink': 1,\n",
      "          'enables': 1,\n",
      "          'beast': 1,\n",
      "          'younger': 1,\n",
      "          'period': 1,\n",
      "          'njanet': 1,\n",
      "          'jackson': 1,\n",
      "          'interest': 1,\n",
      "          'chooses': 1,\n",
      "          'lovable': 1,\n",
      "          'soul': 1,\n",
      "          'mate': 1,\n",
      "          'rather': 1,\n",
      "          'excel': 1,\n",
      "          'career': 1,\n",
      "          'ridiculous': 1,\n",
      "          'reasons': 1,\n",
      "          'mind': 1,\n",
      "          'determined': 1,\n",
      "          'rid': 1,\n",
      "          'alter': 1,\n",
      "          'ego': 1,\n",
      "          'still': 1,\n",
      "          'resides': 1,\n",
      "          'vigor': 1,\n",
      "          'inside': 1,\n",
      "          'psyche': 1,\n",
      "          'causes': 1,\n",
      "          'imitation': 1,\n",
      "          'vince': 1,\n",
      "          'vaughn': 1,\n",
      "          'swingers': 1,\n",
      "          'convoluted': 1,\n",
      "          'mumbojumbo': 1,\n",
      "          'extraction': 1,\n",
      "          'extracts': 1,\n",
      "          'link': 1,\n",
      "          'smartly': 1,\n",
      "          'deposits': 1,\n",
      "          'handydandy': 1,\n",
      "          'lab': 1,\n",
      "          'night': 1,\n",
      "          'knocked': 1,\n",
      "          'regenerated': 1,\n",
      "          'nbecause': 1,\n",
      "          'needs': 1,\n",
      "          'unnecessary': 1,\n",
      "          'villain': 1,\n",
      "          'thwart': 1,\n",
      "          'good': 1,\n",
      "          'guy': 1,\n",
      "          'nthen': 1,\n",
      "          'played': 1,\n",
      "          'step': 1,\n",
      "          'relief': 1,\n",
      "          'involving': 1,\n",
      "          'old': 1,\n",
      "          'sex': 1,\n",
      "          'flabby': 1,\n",
      "          'slew': 1,\n",
      "          'fart': 1,\n",
      "          'dick': 1,\n",
      "          'fat': 1,\n",
      "          'count': 1,\n",
      "          'thirty': 1,\n",
      "          'mention': 1,\n",
      "          'part': 1,\n",
      "          'larry': 1,\n",
      "          'miller': 1,\n",
      "          'gets': 1,\n",
      "          'anally': 1,\n",
      "          'raped': 1,\n",
      "          'overgrown': 1,\n",
      "          'hamster': 1,\n",
      "          'finally': 1,\n",
      "          'dissolves': 1,\n",
      "          'hallmark': 1,\n",
      "          'realizing': 1,\n",
      "          'world': 1,\n",
      "          'soft': 1,\n",
      "          'lighting': 1,\n",
      "          'verge': 1,\n",
      "          'tears': 1,\n",
      "          'npure': 1,\n",
      "          'simple': 1,\n",
      "          'failure': 1,\n",
      "          'script': 1,\n",
      "          'handled': 1,\n",
      "          'screenwriters': 1,\n",
      "          'shows': 1,\n",
      "          'awkward': 1,\n",
      "          'transitions': 1,\n",
      "          'nany': 1,\n",
      "          'sense': 1,\n",
      "          'plot': 1,\n",
      "          'rewrite': 1,\n",
      "          'process': 1,\n",
      "          'discerning': 1,\n",
      "          'learn': 1,\n",
      "          'chris': 1,\n",
      "          'paul': 1,\n",
      "          'team': 1,\n",
      "          'behind': 1,\n",
      "          'funniest': 1,\n",
      "          'decade': 1,\n",
      "          'pie': 1,\n",
      "          'names': 1,\n",
      "          'stamped': 1,\n",
      "          'trash': 1,\n",
      "          'nhey': 1,\n",
      "          'guys': 1,\n",
      "          'quick': 1,\n",
      "          'note': 1,\n",
      "          'keep': 1,\n",
      "          'resumes': 1,\n",
      "          'characterization': 1,\n",
      "          'shermans': 1,\n",
      "          'stereotypes': 1,\n",
      "          'black': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'cinema': 1,\n",
      "          'neveryone': 1,\n",
      "          'member': 1,\n",
      "          'large': 1,\n",
      "          'person': 1,\n",
      "          'wipes': 1,\n",
      "          'bins': 1,\n",
      "          'clean': 1,\n",
      "          'local': 1,\n",
      "          'buffet': 1,\n",
      "          'restaurant': 1,\n",
      "          'pigs': 1,\n",
      "          'trough': 1,\n",
      "          'grandma': 1,\n",
      "          'oversexed': 1,\n",
      "          'fiend': 1,\n",
      "          'constantly': 1,\n",
      "          'talks': 1,\n",
      "          'ways': 1,\n",
      "          'pleasure': 1,\n",
      "          'sagging': 1,\n",
      "          'father': 1,\n",
      "          'gruff': 1,\n",
      "          'fired': 1,\n",
      "          'bluecollar': 1,\n",
      "          'job': 1,\n",
      "          'sexually': 1,\n",
      "          'inadequate': 1,\n",
      "          'communicate': 1,\n",
      "          'feelings': 1,\n",
      "          'mother': 1,\n",
      "          'negativity': 1,\n",
      "          'seems': 1,\n",
      "          'hold': 1,\n",
      "          'opinion': 1,\n",
      "          'anyone': 1,\n",
      "          'brother': 1,\n",
      "          'silent': 1,\n",
      "          'brooding': 1,\n",
      "          'resembles': 1,\n",
      "          'ice': 1,\n",
      "          'cube': 1,\n",
      "          'gangster': 1,\n",
      "          'boyz': 1,\n",
      "          'hood': 1,\n",
      "          'terribly': 1,\n",
      "          'insecure': 1,\n",
      "          'never': 1,\n",
      "          'conveys': 1,\n",
      "          'audience': 1,\n",
      "          'attached': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'inability': 1,\n",
      "          'create': 1,\n",
      "          'convincing': 1,\n",
      "          'conversational': 1,\n",
      "          'situational': 1,\n",
      "          'comedy': 1,\n",
      "          'well': 1,\n",
      "          'direct': 1,\n",
      "          'got': 1,\n",
      "          'feeling': 1,\n",
      "          'crass': 1,\n",
      "          'couldnt': 1,\n",
      "          'reverse': 1,\n",
      "          'drives': 1,\n",
      "          'negatives': 1,\n",
      "          'right': 1,\n",
      "          'hilt': 1,\n",
      "          'making': 1,\n",
      "          'interaction': 1,\n",
      "          'enjoyable': 1,\n",
      "          '55': 1,\n",
      "          'unbearable': 1,\n",
      "          'nafter': 1,\n",
      "          'barrage': 1,\n",
      "          'frustrated': 1,\n",
      "          'anger': 1,\n",
      "          'tinged': 1,\n",
      "          'indecency': 1,\n",
      "          'overworked': 1,\n",
      "          'premises': 1,\n",
      "          'end': 1,\n",
      "          'drawing': 1,\n",
      "          'energy': 1,\n",
      "          'away': 1,\n",
      "          'empathy': 1,\n",
      "          'might': 1,\n",
      "          'feel': 1,\n",
      "          'central': 1,\n",
      "          'themes': 1,\n",
      "          'also': 1,\n",
      "          'damn': 1,\n",
      "          'makeup': 1,\n",
      "          'magic': 1,\n",
      "          'rick': 1,\n",
      "          'baker': 1,\n",
      "          'original': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'work': 1,\n",
      "          'werewolf': 1,\n",
      "          'london': 1,\n",
      "          'amazing': 1,\n",
      "          'digital': 1,\n",
      "          'enabled': 1,\n",
      "          'interact': 1,\n",
      "          'beautiful': 1,\n",
      "          'motions': 1,\n",
      "          'built': 1,\n",
      "          'lame': 1,\n",
      "          'line': 1,\n",
      "          'neven': 1,\n",
      "          'best': 1,\n",
      "          'seem': 1,\n",
      "          'save': 1,\n",
      "          'movies': 1,\n",
      "          'nnow': 1,\n",
      "          'think': 1,\n",
      "          'worst': 1,\n",
      "          'thing': 1,\n",
      "          'money': 1,\n",
      "          'npeople': 1,\n",
      "          'lined': 1,\n",
      "          'block': 1,\n",
      "          'studios': 1,\n",
      "          'concoct': 1,\n",
      "          'release': 1,\n",
      "          'summer': 1,\n",
      "          '2002': 1,\n",
      "          'neddie': 1,\n",
      "          'signed': 1,\n",
      "          'take': 1,\n",
      "          'role': 1,\n",
      "          'roles': 1,\n",
      "          'hell': 1,\n",
      "          'play': 1,\n",
      "          'ni': 1,\n",
      "          'wait': 1,\n",
      "          'see': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 12,\n",
      "          'nthe': 5,\n",
      "          'characters': 4,\n",
      "          'quickly': 4,\n",
      "          'de': 3,\n",
      "          'palma': 3,\n",
      "          'good': 3,\n",
      "          'story': 3,\n",
      "          'cage': 3,\n",
      "          'flashbacks': 3,\n",
      "          'doesnt': 3,\n",
      "          'big': 3,\n",
      "          'end': 3,\n",
      "          'bought': 2,\n",
      "          'bring': 2,\n",
      "          'nnic': 2,\n",
      "          'santaro': 2,\n",
      "          'kevin': 2,\n",
      "          'dunne': 2,\n",
      "          'sinise': 2,\n",
      "          'place': 2,\n",
      "          'tries': 2,\n",
      "          'together': 2,\n",
      "          'work': 2,\n",
      "          'mystery': 2,\n",
      "          'nhowever': 2,\n",
      "          'dead': 2,\n",
      "          'start': 2,\n",
      "          'problem': 2,\n",
      "          'gary': 2,\n",
      "          'use': 2,\n",
      "          'nthey': 2,\n",
      "          'boring': 2,\n",
      "          'completely': 2,\n",
      "          'theres': 2,\n",
      "          'character': 2,\n",
      "          'becomes': 2,\n",
      "          'throughout': 2,\n",
      "          'way': 2,\n",
      "          'nwhile': 2,\n",
      "          'certainly': 2,\n",
      "          'suspense': 2,\n",
      "          'thriller': 2,\n",
      "          'rather': 2,\n",
      "          'snake': 2,\n",
      "          'eyes': 2,\n",
      "          'case': 2,\n",
      "          'brian': 1,\n",
      "          'director': 1,\n",
      "          'us': 1,\n",
      "          'carrie': 1,\n",
      "          'dressed': 1,\n",
      "          'kill': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'back': 1,\n",
      "          'technical': 1,\n",
      "          'expertise': 1,\n",
      "          'nsadly': 1,\n",
      "          'forget': 1,\n",
      "          'believable': 1,\n",
      "          'plays': 1,\n",
      "          'rick': 1,\n",
      "          'fast': 1,\n",
      "          'talking': 1,\n",
      "          'cop': 1,\n",
      "          'watching': 1,\n",
      "          'boxing': 1,\n",
      "          'match': 1,\n",
      "          'friend': 1,\n",
      "          'commander': 1,\n",
      "          'nan': 1,\n",
      "          'assassination': 1,\n",
      "          'takes': 1,\n",
      "          'peace': 1,\n",
      "          'took': 1,\n",
      "          'trying': 1,\n",
      "          'roles': 1,\n",
      "          'people': 1,\n",
      "          'involved': 1,\n",
      "          'conspiracy': 1,\n",
      "          'uses': 1,\n",
      "          'video': 1,\n",
      "          'cameras': 1,\n",
      "          'keep': 1,\n",
      "          'long': 1,\n",
      "          'secret': 1,\n",
      "          'concerning': 1,\n",
      "          'nalthough': 1,\n",
      "          'fantastic': 1,\n",
      "          'shots': 1,\n",
      "          'including': 1,\n",
      "          '15': 1,\n",
      "          'minute': 1,\n",
      "          'steadicam': 1,\n",
      "          'shot': 1,\n",
      "          'halfway': 1,\n",
      "          'drops': 1,\n",
      "          'strong': 1,\n",
      "          'nhe': 1,\n",
      "          'offshoot': 1,\n",
      "          'flashy': 1,\n",
      "          'camera': 1,\n",
      "          'techniques': 1,\n",
      "          'pretty': 1,\n",
      "          'soon': 1,\n",
      "          'effect': 1,\n",
      "          'audience': 1,\n",
      "          'got': 1,\n",
      "          'bored': 1,\n",
      "          'try': 1,\n",
      "          'inject': 1,\n",
      "          'life': 1,\n",
      "          'poorly': 1,\n",
      "          'realised': 1,\n",
      "          'faceless': 1,\n",
      "          'unlikeable': 1,\n",
      "          'nyes': 1,\n",
      "          'another': 1,\n",
      "          'noone': 1,\n",
      "          'root': 1,\n",
      "          'nwere': 1,\n",
      "          'supposed': 1,\n",
      "          'cages': 1,\n",
      "          'side': 1,\n",
      "          'nicer': 1,\n",
      "          'change': 1,\n",
      "          'sadly': 1,\n",
      "          'unbelievable': 1,\n",
      "          'npoor': 1,\n",
      "          'sinises': 1,\n",
      "          'terrible': 1,\n",
      "          'changes': 1,\n",
      "          'middle': 1,\n",
      "          'appalling': 1,\n",
      "          'films': 1,\n",
      "          'flashback': 1,\n",
      "          'gets': 1,\n",
      "          'clever': 1,\n",
      "          'interesting': 1,\n",
      "          'first': 1,\n",
      "          'times': 1,\n",
      "          'apparent': 1,\n",
      "          'used': 1,\n",
      "          'nowhere': 1,\n",
      "          'go': 1,\n",
      "          'dont': 1,\n",
      "          'increase': 1,\n",
      "          'tension': 1,\n",
      "          'movie': 1,\n",
      "          'nthere': 1,\n",
      "          'small': 1,\n",
      "          'thread': 1,\n",
      "          'running': 1,\n",
      "          'make': 1,\n",
      "          'powerhouse': 1,\n",
      "          'slightly': 1,\n",
      "          'average': 1,\n",
      "          'one': 1,\n",
      "          'script': 1,\n",
      "          'lousy': 1,\n",
      "          'contrived': 1,\n",
      "          'flat': 1,\n",
      "          'two': 1,\n",
      "          'dimensional': 1,\n",
      "          'ncertainly': 1,\n",
      "          'factors': 1,\n",
      "          'passing': 1,\n",
      "          'depressing': 1,\n",
      "          'aspect': 1,\n",
      "          'potential': 1,\n",
      "          'ntheres': 1,\n",
      "          'buried': 1,\n",
      "          'bogged': 1,\n",
      "          'razzle': 1,\n",
      "          'dazzle': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'gives': 1,\n",
      "          'away': 1,\n",
      "          'far': 1,\n",
      "          'leaving': 1,\n",
      "          'twist': 1,\n",
      "          'performances': 1,\n",
      "          'intriguing': 1,\n",
      "          'especially': 1,\n",
      "          'newcomer': 1,\n",
      "          'carla': 1,\n",
      "          'gugino': 1,\n",
      "          'sexy': 1,\n",
      "          'number': 1,\n",
      "          'cruncher': 1,\n",
      "          'wrapped': 1,\n",
      "          'altering': 1,\n",
      "          'fact': 1,\n",
      "          'terminal': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'fan': 1,\n",
      "          'either': 1,\n",
      "          'flash': 1,\n",
      "          'directing': 1,\n",
      "          'avoided': 1,\n",
      "          'na': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'review': 1,\n",
      "          '1998': 1,\n",
      "          'n': 1,\n",
      "          'know': 1,\n",
      "          'kids': 1,\n",
      "          'norville': 1,\n",
      "          'barnes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'julie': 5,\n",
      "          'friends': 5,\n",
      "          'movie': 5,\n",
      "          'man': 3,\n",
      "          'get': 3,\n",
      "          'even': 3,\n",
      "          'island': 3,\n",
      "          'nbut': 3,\n",
      "          'nthe': 3,\n",
      "          'love': 2,\n",
      "          'cant': 2,\n",
      "          'good': 2,\n",
      "          'shadows': 2,\n",
      "          'rubber': 2,\n",
      "          'slicker': 2,\n",
      "          'hook': 2,\n",
      "          'know': 2,\n",
      "          'body': 2,\n",
      "          'never': 2,\n",
      "          'njulie': 2,\n",
      "          'one': 2,\n",
      "          'college': 2,\n",
      "          'four': 2,\n",
      "          'secluded': 2,\n",
      "          'tyrell': 2,\n",
      "          'nthis': 2,\n",
      "          'around': 2,\n",
      "          'funny': 2,\n",
      "          'thing': 2,\n",
      "          'heard': 2,\n",
      "          'giggling': 2,\n",
      "          'see': 2,\n",
      "          'want': 2,\n",
      "          'say': 2,\n",
      "          'ni': 2,\n",
      "          'anniversary': 1,\n",
      "          'slayings': 1,\n",
      "          'james': 1,\n",
      "          'jennifer': 1,\n",
      "          'hewitt': 1,\n",
      "          'best': 1,\n",
      "          'nstill': 1,\n",
      "          'besieged': 1,\n",
      "          'nightmarish': 1,\n",
      "          'memories': 1,\n",
      "          'responsible': 1,\n",
      "          'seems': 1,\n",
      "          'verge': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'nshe': 1,\n",
      "          'concentrate': 1,\n",
      "          'schoolwork': 1,\n",
      "          'nights': 1,\n",
      "          'sleep': 1,\n",
      "          'frightened': 1,\n",
      "          'blinking': 1,\n",
      "          'strobe': 1,\n",
      "          'lights': 1,\n",
      "          'local': 1,\n",
      "          'dance': 1,\n",
      "          'club': 1,\n",
      "          'neverywhere': 1,\n",
      "          'looks': 1,\n",
      "          'sees': 1,\n",
      "          'visions': 1,\n",
      "          'hand': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'three': 1,\n",
      "          'accidentally': 1,\n",
      "          'kill': 1,\n",
      "          'running': 1,\n",
      "          'driving': 1,\n",
      "          'dark': 1,\n",
      "          'mountain': 1,\n",
      "          'highway': 1,\n",
      "          'nto': 1,\n",
      "          'cover': 1,\n",
      "          'misdeed': 1,\n",
      "          'dump': 1,\n",
      "          'ocean': 1,\n",
      "          'nhowever': 1,\n",
      "          'quite': 1,\n",
      "          'died': 1,\n",
      "          'returned': 1,\n",
      "          'hunt': 1,\n",
      "          'ray': 1,\n",
      "          'freddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'survived': 1,\n",
      "          'make': 1,\n",
      "          'dismal': 1,\n",
      "          'sequal': 1,\n",
      "          'nneeding': 1,\n",
      "          'desparate': 1,\n",
      "          'rest': 1,\n",
      "          'relaxation': 1,\n",
      "          'elated': 1,\n",
      "          'learn': 1,\n",
      "          'roommate': 1,\n",
      "          'karla': 1,\n",
      "          'brandy': 1,\n",
      "          'trip': 1,\n",
      "          'tropical': 1,\n",
      "          'naccompanying': 1,\n",
      "          'two': 1,\n",
      "          'girls': 1,\n",
      "          'karlas': 1,\n",
      "          'overbearing': 1,\n",
      "          'boyfriend': 1,\n",
      "          'mehki': 1,\n",
      "          'phifer': 1,\n",
      "          'potential': 1,\n",
      "          'beau': 1,\n",
      "          'contest': 1,\n",
      "          'true': 1,\n",
      "          'resort': 1,\n",
      "          'filled': 1,\n",
      "          'skeleton': 1,\n",
      "          'staff': 1,\n",
      "          'seemed': 1,\n",
      "          'like': 1,\n",
      "          'boat': 1,\n",
      "          'rejects': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'hotel': 1,\n",
      "          'practically': 1,\n",
      "          'deserted': 1,\n",
      "          'storm': 1,\n",
      "          'season': 1,\n",
      "          'begin': 1,\n",
      "          'presumably': 1,\n",
      "          'creates': 1,\n",
      "          'venue': 1,\n",
      "          'possible': 1,\n",
      "          'means': 1,\n",
      "          'neventually': 1,\n",
      "          'hunted': 1,\n",
      "          'power': 1,\n",
      "          'outages': 1,\n",
      "          'chased': 1,\n",
      "          'intense': 1,\n",
      "          'lightning': 1,\n",
      "          'storms': 1,\n",
      "          'nas': 1,\n",
      "          'might': 1,\n",
      "          'guessed': 1,\n",
      "          'somewhere': 1,\n",
      "          'lurk': 1,\n",
      "          'mysteriously': 1,\n",
      "          'strange': 1,\n",
      "          'figure': 1,\n",
      "          'wearing': 1,\n",
      "          'wielding': 1,\n",
      "          'tries': 1,\n",
      "          'convince': 1,\n",
      "          'killer': 1,\n",
      "          'eerie': 1,\n",
      "          'touch': 1,\n",
      "          'singing': 1,\n",
      "          'survive': 1,\n",
      "          'karaoke': 1,\n",
      "          'bar': 1,\n",
      "          'words': 1,\n",
      "          'scroll': 1,\n",
      "          'still': 1,\n",
      "          'chalk': 1,\n",
      "          'paranoia': 1,\n",
      "          'count': 1,\n",
      "          'soon': 1,\n",
      "          'starts': 1,\n",
      "          'rise': 1,\n",
      "          'going': 1,\n",
      "          'worst': 1,\n",
      "          'vacation': 1,\n",
      "          'life': 1,\n",
      "          'yes': 1,\n",
      "          'used': 1,\n",
      "          'word': 1,\n",
      "          'chortling': 1,\n",
      "          'maybe': 1,\n",
      "          'screaming': 1,\n",
      "          'boils': 1,\n",
      "          'mindless': 1,\n",
      "          'slashfest': 1,\n",
      "          'conjures': 1,\n",
      "          'amount': 1,\n",
      "          'wry': 1,\n",
      "          'wit': 1,\n",
      "          'quirky': 1,\n",
      "          'campiness': 1,\n",
      "          'nthere': 1,\n",
      "          'isnt': 1,\n",
      "          'suspense': 1,\n",
      "          'leads': 1,\n",
      "          'deaths': 1,\n",
      "          'nheres': 1,\n",
      "          'appropriate': 1,\n",
      "          'example': 1,\n",
      "          'nknockknock': 1,\n",
      "          'n': 1,\n",
      "          'housekeeping': 1,\n",
      "          'says': 1,\n",
      "          'diminuitive': 1,\n",
      "          'cleaning': 1,\n",
      "          'lady': 1,\n",
      "          'door': 1,\n",
      "          'suddenly': 1,\n",
      "          'opens': 1,\n",
      "          'nslash': 1,\n",
      "          'nnext': 1,\n",
      "          'victim': 1,\n",
      "          'nis': 1,\n",
      "          'reason': 1,\n",
      "          'go': 1,\n",
      "          'nnot': 1,\n",
      "          'unless': 1,\n",
      "          'uninteresting': 1,\n",
      "          'kids': 1,\n",
      "          'run': 1,\n",
      "          'circles': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'satisfied': 1,\n",
      "          'thoroughly': 1,\n",
      "          'irritated': 1,\n",
      "          'incessantly': 1,\n",
      "          'ranted': 1,\n",
      "          'raved': 1,\n",
      "          'sexual': 1,\n",
      "          'libido': 1,\n",
      "          'secretly': 1,\n",
      "          'wished': 1,\n",
      "          'filleted': 1,\n",
      "          'ndid': 1,\n",
      "          'hooked': 1,\n",
      "          'nwell': 1,\n",
      "          'lets': 1,\n",
      "          'didnt': 1,\n",
      "          'would': 1,\n",
      "          'give': 1,\n",
      "          'film': 1,\n",
      "          'grade': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 18,\n",
      "          'film': 13,\n",
      "          'little': 10,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'plot': 6,\n",
      "          'ntheres': 6,\n",
      "          'boring': 5,\n",
      "          'episode': 4,\n",
      "          'script': 4,\n",
      "          'characters': 4,\n",
      "          'much': 4,\n",
      "          'given': 4,\n",
      "          'lucas': 3,\n",
      "          'star': 3,\n",
      "          'wars': 3,\n",
      "          '1': 3,\n",
      "          'features': 3,\n",
      "          'effects': 3,\n",
      "          'time': 3,\n",
      "          'movie': 3,\n",
      "          'confederation': 3,\n",
      "          'seems': 3,\n",
      "          'many': 3,\n",
      "          'darth': 3,\n",
      "          'make': 3,\n",
      "          'story': 3,\n",
      "          'see': 3,\n",
      "          'evident': 3,\n",
      "          'even': 3,\n",
      "          'everyone': 3,\n",
      "          'lines': 3,\n",
      "          'trilogy': 2,\n",
      "          'nice': 2,\n",
      "          'special': 2,\n",
      "          'computer': 2,\n",
      "          'trade': 2,\n",
      "          'amidala': 2,\n",
      "          'portman': 2,\n",
      "          'jedi': 2,\n",
      "          'knights': 2,\n",
      "          'neeson': 2,\n",
      "          'deal': 2,\n",
      "          'blockade': 2,\n",
      "          'maul': 2,\n",
      "          'also': 2,\n",
      "          'anakin': 2,\n",
      "          'jake': 2,\n",
      "          'lloyd': 2,\n",
      "          'two': 2,\n",
      "          'hour': 2,\n",
      "          'exciting': 2,\n",
      "          'goes': 2,\n",
      "          'takes': 2,\n",
      "          'help': 2,\n",
      "          'speak': 2,\n",
      "          'audience': 2,\n",
      "          'root': 2,\n",
      "          'probably': 2,\n",
      "          'bad': 2,\n",
      "          'throughout': 2,\n",
      "          'cute': 2,\n",
      "          'doubt': 2,\n",
      "          'nits': 2,\n",
      "          'hateful': 2,\n",
      "          'boy': 2,\n",
      "          'quickly': 2,\n",
      "          'possible': 2,\n",
      "          'provided': 2,\n",
      "          'jar': 2,\n",
      "          'end': 2,\n",
      "          'pod': 2,\n",
      "          'nothing': 2,\n",
      "          'serves': 2,\n",
      "          'purpose': 2,\n",
      "          'must': 2,\n",
      "          'actors': 2,\n",
      "          'bored': 2,\n",
      "          'chose': 2,\n",
      "          'delivers': 2,\n",
      "          'stormtroopers': 2,\n",
      "          'except': 2,\n",
      "          'us': 2,\n",
      "          'affair': 2,\n",
      "          'wise': 1,\n",
      "          'start': 1,\n",
      "          '4': 1,\n",
      "          'empty': 1,\n",
      "          'spectacle': 1,\n",
      "          'nafter': 1,\n",
      "          'familiar': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'nopening': 1,\n",
      "          'starts': 1,\n",
      "          'opening': 1,\n",
      "          'yellow': 1,\n",
      "          'crawl': 1,\n",
      "          'every': 1,\n",
      "          'game': 1,\n",
      "          'blocking': 1,\n",
      "          'supplies': 1,\n",
      "          'peaceful': 1,\n",
      "          'planet': 1,\n",
      "          'naboo': 1,\n",
      "          'ruled': 1,\n",
      "          'queen': 1,\n",
      "          'quigon': 1,\n",
      "          'obi': 1,\n",
      "          'wan': 1,\n",
      "          'mcgregor': 1,\n",
      "          'sent': 1,\n",
      "          'negotiate': 1,\n",
      "          'stop': 1,\n",
      "          'nhowever': 1,\n",
      "          'simple': 1,\n",
      "          'soon': 1,\n",
      "          'dangers': 1,\n",
      "          'including': 1,\n",
      "          'facing': 1,\n",
      "          'evil': 1,\n",
      "          'ray': 1,\n",
      "          'park': 1,\n",
      "          'nthey': 1,\n",
      "          'meet': 1,\n",
      "          'future': 1,\n",
      "          'vadar': 1,\n",
      "          'skywalker': 1,\n",
      "          'nstar': 1,\n",
      "          'largely': 1,\n",
      "          'failure': 1,\n",
      "          'major': 1,\n",
      "          'areas': 1,\n",
      "          'filmmaking': 1,\n",
      "          'direction': 1,\n",
      "          'desperately': 1,\n",
      "          'tries': 1,\n",
      "          'thin': 1,\n",
      "          'epic': 1,\n",
      "          'death': 1,\n",
      "          'drama': 1,\n",
      "          'becomes': 1,\n",
      "          'nonexistent': 1,\n",
      "          'underlying': 1,\n",
      "          'tension': 1,\n",
      "          'urgent': 1,\n",
      "          'need': 1,\n",
      "          'outcome': 1,\n",
      "          'leisurely': 1,\n",
      "          'pace': 1,\n",
      "          'telling': 1,\n",
      "          'doesnt': 1,\n",
      "          'snap': 1,\n",
      "          'work': 1,\n",
      "          'moves': 1,\n",
      "          'plod': 1,\n",
      "          'morals': 1,\n",
      "          'especially': 1,\n",
      "          'anakins': 1,\n",
      "          'mother': 1,\n",
      "          'group': 1,\n",
      "          'spirit': 1,\n",
      "          'profound': 1,\n",
      "          'statements': 1,\n",
      "          'bark': 1,\n",
      "          'orders': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'leads': 1,\n",
      "          'hideously': 1,\n",
      "          'static': 1,\n",
      "          'nquigon': 1,\n",
      "          'obiwan': 1,\n",
      "          'hold': 1,\n",
      "          'presence': 1,\n",
      "          'give': 1,\n",
      "          'warm': 1,\n",
      "          'guy': 1,\n",
      "          'screen': 1,\n",
      "          'nmaul': 1,\n",
      "          'one': 1,\n",
      "          'underused': 1,\n",
      "          'guys': 1,\n",
      "          'history': 1,\n",
      "          'provide': 1,\n",
      "          'straight': 1,\n",
      "          'line': 1,\n",
      "          'plots': 1,\n",
      "          'concluded': 1,\n",
      "          'nanakin': 1,\n",
      "          'annoying': 1,\n",
      "          'unlikeable': 1,\n",
      "          'ninstead': 1,\n",
      "          'huggable': 1,\n",
      "          'intended': 1,\n",
      "          'surprising': 1,\n",
      "          'unfortunately': 1,\n",
      "          'blessed': 1,\n",
      "          'ani': 1,\n",
      "          'knows': 1,\n",
      "          'joins': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'kills': 1,\n",
      "          'comedy': 1,\n",
      "          'relief': 1,\n",
      "          'supposedly': 1,\n",
      "          'gangly': 1,\n",
      "          'brinks': 1,\n",
      "          'although': 1,\n",
      "          'none': 1,\n",
      "          'nalthough': 1,\n",
      "          'floppy': 1,\n",
      "          'great': 1,\n",
      "          'stuffed': 1,\n",
      "          'toys': 1,\n",
      "          'actions': 1,\n",
      "          'painfully': 1,\n",
      "          'unfunny': 1,\n",
      "          'good': 1,\n",
      "          'laugh': 1,\n",
      "          'tongue': 1,\n",
      "          'burned': 1,\n",
      "          'racer': 1,\n",
      "          'knew': 1,\n",
      "          'wouldnt': 1,\n",
      "          'able': 1,\n",
      "          'talk': 1,\n",
      "          'nqueen': 1,\n",
      "          'real': 1,\n",
      "          'apart': 1,\n",
      "          'fact': 1,\n",
      "          'serve': 1,\n",
      "          'people': 1,\n",
      "          'go': 1,\n",
      "          'googoo': 1,\n",
      "          'nagain': 1,\n",
      "          'role': 1,\n",
      "          'become': 1,\n",
      "          'important': 1,\n",
      "          'later': 1,\n",
      "          'episodes': 1,\n",
      "          'dont': 1,\n",
      "          'either': 1,\n",
      "          'nliam': 1,\n",
      "          'embarrassed': 1,\n",
      "          'desperate': 1,\n",
      "          'leave': 1,\n",
      "          'nmcgregor': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'posh': 1,\n",
      "          'mothers': 1,\n",
      "          'charm': 1,\n",
      "          'casting': 1,\n",
      "          'director': 1,\n",
      "          'hes': 1,\n",
      "          'scottish': 1,\n",
      "          'like': 1,\n",
      "          'alec': 1,\n",
      "          'guinness': 1,\n",
      "          'theres': 1,\n",
      "          'explanation': 1,\n",
      "          'nnatalie': 1,\n",
      "          'plagued': 1,\n",
      "          'hideous': 1,\n",
      "          'costumes': 1,\n",
      "          'poor': 1,\n",
      "          'spunky': 1,\n",
      "          'performance': 1,\n",
      "          'nand': 1,\n",
      "          'looks': 1,\n",
      "          'eyes': 1,\n",
      "          'voice': 1,\n",
      "          'talent': 1,\n",
      "          'hard': 1,\n",
      "          'better': 1,\n",
      "          'child': 1,\n",
      "          'nhes': 1,\n",
      "          'main': 1,\n",
      "          'claim': 1,\n",
      "          'okay': 1,\n",
      "          'impressive': 1,\n",
      "          'yet': 1,\n",
      "          'complement': 1,\n",
      "          'well': 1,\n",
      "          'cgi': 1,\n",
      "          'away': 1,\n",
      "          'human': 1,\n",
      "          'element': 1,\n",
      "          'however': 1,\n",
      "          'battle': 1,\n",
      "          'droids': 1,\n",
      "          'example': 1,\n",
      "          'replacement': 1,\n",
      "          'characterless': 1,\n",
      "          'graphics': 1,\n",
      "          'lacking': 1,\n",
      "          'humour': 1,\n",
      "          'humanness': 1,\n",
      "          'came': 1,\n",
      "          'nepisode': 1,\n",
      "          'disappointing': 1,\n",
      "          'got': 1,\n",
      "          'high': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'else': 1,\n",
      "          'music': 1,\n",
      "          'meandering': 1,\n",
      "          'near': 1,\n",
      "          'gives': 1,\n",
      "          'noone': 1,\n",
      "          'care': 1,\n",
      "          'dull': 1,\n",
      "          'half': 1,\n",
      "          'longer': 1,\n",
      "          'air': 1,\n",
      "          'manufacturing': 1,\n",
      "          'among': 1,\n",
      "          'whole': 1,\n",
      "          'sorry': 1,\n",
      "          'clich': 1,\n",
      "          'catered': 1,\n",
      "          'napart': 1,\n",
      "          'remotely': 1,\n",
      "          'race': 1,\n",
      "          'sequence': 1,\n",
      "          'dry': 1,\n",
      "          'money': 1,\n",
      "          'get': 1,\n",
      "          'watch': 1,\n",
      "          '2': 1,\n",
      "          'happens': 1,\n",
      "          'unfinished': 1,\n",
      "          'ndisappointing': 1,\n",
      "          'barely': 1,\n",
      "          'word': 1,\n",
      "          'nrating': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 17,\n",
      "          'nthe': 14,\n",
      "          'one': 7,\n",
      "          'story': 5,\n",
      "          'girls': 4,\n",
      "          'big': 4,\n",
      "          'also': 4,\n",
      "          'get': 4,\n",
      "          'two': 4,\n",
      "          'completely': 4,\n",
      "          'line': 4,\n",
      "          'actress': 4,\n",
      "          'nim': 3,\n",
      "          'many': 3,\n",
      "          'point': 3,\n",
      "          'obviously': 3,\n",
      "          'box': 2,\n",
      "          'gets': 2,\n",
      "          'see': 2,\n",
      "          'watching': 2,\n",
      "          'sorority': 2,\n",
      "          'house': 2,\n",
      "          'massacre': 2,\n",
      "          '2': 2,\n",
      "          'r': 2,\n",
      "          'actresses': 2,\n",
      "          'ketchum': 2,\n",
      "          'like': 2,\n",
      "          'actors': 2,\n",
      "          'could': 2,\n",
      "          'well': 2,\n",
      "          'lost': 2,\n",
      "          'effects': 2,\n",
      "          'got': 2,\n",
      "          'ridiculous': 2,\n",
      "          'good': 2,\n",
      "          'make': 2,\n",
      "          'every': 2,\n",
      "          'folks': 2,\n",
      "          'script': 2,\n",
      "          'thing': 2,\n",
      "          'along': 2,\n",
      "          'gun': 2,\n",
      "          'nthis': 2,\n",
      "          'nnow': 2,\n",
      "          'viewers': 2,\n",
      "          'department': 2,\n",
      "          'nin': 2,\n",
      "          'five': 1,\n",
      "          'spend': 1,\n",
      "          'day': 1,\n",
      "          'closed': 1,\n",
      "          'building': 1,\n",
      "          'inventory': 1,\n",
      "          'strange': 1,\n",
      "          'delivered': 1,\n",
      "          'starting': 1,\n",
      "          'sound': 1,\n",
      "          'familiar': 1,\n",
      "          'mistake': 1,\n",
      "          'accidentlly': 1,\n",
      "          'open': 1,\n",
      "          'surprise': 1,\n",
      "          'huh': 1,\n",
      "          'release': 1,\n",
      "          'evil': 1,\n",
      "          'spirit': 1,\n",
      "          'killer': 1,\n",
      "          'kills': 1,\n",
      "          'betcha': 1,\n",
      "          'didnt': 1,\n",
      "          'coming': 1,\n",
      "          'nhard': 1,\n",
      "          'die': 1,\n",
      "          'found': 1,\n",
      "          'sequel': 1,\n",
      "          'nightie': 1,\n",
      "          'nightmare': 1,\n",
      "          'n1521': 1,\n",
      "          'ntwo': 1,\n",
      "          'robyn': 1,\n",
      "          'harris': 1,\n",
      "          'melissa': 1,\n",
      "          'moore': 1,\n",
      "          'play': 1,\n",
      "          'different': 1,\n",
      "          'characters': 1,\n",
      "          'norville': 1,\n",
      "          'back': 1,\n",
      "          'ready': 1,\n",
      "          'orville': 1,\n",
      "          'yes': 1,\n",
      "          'character': 1,\n",
      "          'number': 1,\n",
      "          'nyes': 1,\n",
      "          'built': 1,\n",
      "          'tank': 1,\n",
      "          'telling': 1,\n",
      "          'nuclear': 1,\n",
      "          'bomb': 1,\n",
      "          'detonated': 1,\n",
      "          'next': 1,\n",
      "          'man': 1,\n",
      "          'wouldnt': 1,\n",
      "          'harm': 1,\n",
      "          'mentioned': 1,\n",
      "          'three': 1,\n",
      "          'part': 1,\n",
      "          'thought': 1,\n",
      "          'act': 1,\n",
      "          'seemed': 1,\n",
      "          'ability': 1,\n",
      "          'nthankfully': 1,\n",
      "          'sanity': 1,\n",
      "          'saw': 1,\n",
      "          'warlock': 1,\n",
      "          'undid': 1,\n",
      "          'ill': 1,\n",
      "          'elements': 1,\n",
      "          'cheapo': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'horror': 1,\n",
      "          'flicks': 1,\n",
      "          'nany': 1,\n",
      "          'moments': 1,\n",
      "          'fails': 1,\n",
      "          'even': 1,\n",
      "          'destroyed': 1,\n",
      "          'pathetically': 1,\n",
      "          'predictable': 1,\n",
      "          'moment': 1,\n",
      "          'already': 1,\n",
      "          'figured': 1,\n",
      "          'analyzed': 1,\n",
      "          'discarded': 1,\n",
      "          'happens': 1,\n",
      "          'nthere': 1,\n",
      "          'suspense': 1,\n",
      "          'ever': 1,\n",
      "          'afoot': 1,\n",
      "          'nwhile': 1,\n",
      "          'subject': 1,\n",
      "          'provides': 1,\n",
      "          'chance': 1,\n",
      "          'disrobe': 1,\n",
      "          'goes': 1,\n",
      "          'extent': 1,\n",
      "          'putting': 1,\n",
      "          'shower': 1,\n",
      "          'managers': 1,\n",
      "          'office': 1,\n",
      "          'sorry': 1,\n",
      "          'unnecessary': 1,\n",
      "          'hurts': 1,\n",
      "          'still': 1,\n",
      "          'possible': 1,\n",
      "          'pathetic': 1,\n",
      "          'lines': 1,\n",
      "          'come': 1,\n",
      "          'horrible': 1,\n",
      "          'think': 1,\n",
      "          'happened': 1,\n",
      "          'made': 1,\n",
      "          'went': 1,\n",
      "          'nhere': 1,\n",
      "          'example': 1,\n",
      "          'wonderful': 1,\n",
      "          'dialog': 1,\n",
      "          'scene': 1,\n",
      "          'entered': 1,\n",
      "          'store': 1,\n",
      "          'picked': 1,\n",
      "          'really': 1,\n",
      "          'dad': 1,\n",
      "          'used': 1,\n",
      "          'marine': 1,\n",
      "          'bet': 1,\n",
      "          'work': 1,\n",
      "          'contender': 1,\n",
      "          'bad': 1,\n",
      "          'hall': 1,\n",
      "          'infamy': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          'minutes': 1,\n",
      "          'plan': 1,\n",
      "          'presented': 1,\n",
      "          'none': 1,\n",
      "          'comment': 1,\n",
      "          'lot': 1,\n",
      "          'strategy': 1,\n",
      "          'involved': 1,\n",
      "          'afraid': 1,\n",
      "          'lets': 1,\n",
      "          'talk': 1,\n",
      "          'great': 1,\n",
      "          'special': 1,\n",
      "          'wasnt': 1,\n",
      "          'concern': 1,\n",
      "          'makers': 1,\n",
      "          'killing': 1,\n",
      "          'scenes': 1,\n",
      "          'faked': 1,\n",
      "          'go': 1,\n",
      "          'threatening': 1,\n",
      "          'intelligence': 1,\n",
      "          'na': 1,\n",
      "          'girl': 1,\n",
      "          'hacked': 1,\n",
      "          'knife': 1,\n",
      "          'enough': 1,\n",
      "          'blood': 1,\n",
      "          'comes': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'movie': 1,\n",
      "          'nare': 1,\n",
      "          'trying': 1,\n",
      "          'unrealistic': 1,\n",
      "          'continuity': 1,\n",
      "          'asleep': 1,\n",
      "          'shot': 1,\n",
      "          'cloths': 1,\n",
      "          'camera': 1,\n",
      "          'angle': 1,\n",
      "          'changes': 1,\n",
      "          'seems': 1,\n",
      "          'clothing': 1,\n",
      "          'nvery': 1,\n",
      "          'impressive': 1,\n",
      "          'trick': 1,\n",
      "          'half': 1,\n",
      "          'nplus': 1,\n",
      "          'going': 1,\n",
      "          'places': 1,\n",
      "          'unintentionally': 1,\n",
      "          'hilarious': 1,\n",
      "          'incompetence': 1,\n",
      "          'behind': 1,\n",
      "          'makes': 1,\n",
      "          'incredibly': 1,\n",
      "          'funny': 1,\n",
      "          'viewer': 1,\n",
      "          'enjoyment': 1,\n",
      "          'nhowever': 1,\n",
      "          'doesnt': 1,\n",
      "          'worth': 1,\n",
      "          'rental': 1,\n",
      "          'fee': 1,\n",
      "          'penny': 1,\n",
      "          'acting': 1,\n",
      "          'say': 1,\n",
      "          'thumbs': 1,\n",
      "          'squared': 1,\n",
      "          'head': 1,\n",
      "          'ni': 1,\n",
      "          'would': 1,\n",
      "          'normally': 1,\n",
      "          'detailed': 1,\n",
      "          'paragraph': 1,\n",
      "          'topic': 1,\n",
      "          'nobody': 1,\n",
      "          'impressed': 1,\n",
      "          'least': 1,\n",
      "          'noh': 1,\n",
      "          'win': 1,\n",
      "          'lose': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'one': 4,\n",
      "          'joke': 3,\n",
      "          'movie': 3,\n",
      "          'trailer': 3,\n",
      "          'scenes': 3,\n",
      "          'storyboards': 3,\n",
      "          'happy': 2,\n",
      "          'production': 2,\n",
      "          'title': 2,\n",
      "          'stars': 2,\n",
      "          'fish': 2,\n",
      "          'tank': 2,\n",
      "          'home': 2,\n",
      "          'ndeuce': 2,\n",
      "          'goes': 2,\n",
      "          'see': 2,\n",
      "          'nseen': 2,\n",
      "          'dvd': 2,\n",
      "          'diney': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          '1': 2,\n",
      "          'comparisons': 2,\n",
      "          'nthere': 2,\n",
      "          'first': 1,\n",
      "          'produced': 1,\n",
      "          'adam': 1,\n",
      "          'sandlers': 1,\n",
      "          'madison': 1,\n",
      "          'company': 1,\n",
      "          'clever': 1,\n",
      "          'eh': 1,\n",
      "          'essentially': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'movies': 1,\n",
      "          'sandler': 1,\n",
      "          'nhowever': 1,\n",
      "          'difference': 1,\n",
      "          'isnt': 1,\n",
      "          'funny': 1,\n",
      "          'nrob': 1,\n",
      "          'schneider': 1,\n",
      "          'character': 1,\n",
      "          'scruffy': 1,\n",
      "          'cleaner': 1,\n",
      "          'ends': 1,\n",
      "          'becoming': 1,\n",
      "          'manwhore': 1,\n",
      "          'raise': 1,\n",
      "          'enough': 1,\n",
      "          'money': 1,\n",
      "          'replace': 1,\n",
      "          'wealthy': 1,\n",
      "          'clients': 1,\n",
      "          'custom': 1,\n",
      "          'made': 1,\n",
      "          'deuce': 1,\n",
      "          'destroyed': 1,\n",
      "          'staying': 1,\n",
      "          'numerous': 1,\n",
      "          'dates': 1,\n",
      "          'woman': 1,\n",
      "          'humorous': 1,\n",
      "          'quirk': 1,\n",
      "          'none': 1,\n",
      "          'narcolepsy': 1,\n",
      "          'tourettes': 1,\n",
      "          'syndrome': 1,\n",
      "          'man': 1,\n",
      "          'netc': 1,\n",
      "          'etc': 1,\n",
      "          'nmy': 1,\n",
      "          'problem': 1,\n",
      "          'women': 1,\n",
      "          'films': 1,\n",
      "          'need': 1,\n",
      "          'watch': 1,\n",
      "          'nonly': 1,\n",
      "          'quick': 1,\n",
      "          'cameo': 1,\n",
      "          'norm': 1,\n",
      "          'macdonald': 1,\n",
      "          'follow': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'generates': 1,\n",
      "          'chuckles': 1,\n",
      "          'bigalow': 1,\n",
      "          'male': 1,\n",
      "          'gigolo': 1,\n",
      "          'available': 1,\n",
      "          'touchstone': 1,\n",
      "          'video': 1,\n",
      "          'division': 1,\n",
      "          'nthe': 1,\n",
      "          'disc': 1,\n",
      "          'includes': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          'features': 1,\n",
      "          'well': 1,\n",
      "          'trailers': 1,\n",
      "          'mystery': 1,\n",
      "          'alaska': 1,\n",
      "          'texas': 1,\n",
      "          'outside': 1,\n",
      "          'providence': 1,\n",
      "          'extremely': 1,\n",
      "          'brief': 1,\n",
      "          'featurette': 1,\n",
      "          'contains': 1,\n",
      "          'footage': 1,\n",
      "          'used': 1,\n",
      "          'storyboardtoscene': 1,\n",
      "          'nyep': 1,\n",
      "          'read': 1,\n",
      "          'right': 1,\n",
      "          'storyboard': 1,\n",
      "          'ntwo': 1,\n",
      "          'storyboarded': 1,\n",
      "          'nneither': 1,\n",
      "          'particularly': 1,\n",
      "          'exciting': 1,\n",
      "          'fight': 1,\n",
      "          'arent': 1,\n",
      "          'seeing': 1,\n",
      "          'segments': 1,\n",
      "          'especially': 1,\n",
      "          'parody': 1,\n",
      "          'moments': 1,\n",
      "          'matrix': 1,\n",
      "          'ni': 1,\n",
      "          'wonder': 1,\n",
      "          'whats': 1,\n",
      "          'funnier': 1,\n",
      "          'fact': 1,\n",
      "          'moment': 1,\n",
      "          'required': 1,\n",
      "          'thought': 1,\n",
      "          'fans': 1,\n",
      "          'would': 1,\n",
      "          'want': 1,\n",
      "          'ndeleted': 1,\n",
      "          'nsure': 1,\n",
      "          'naudio': 1,\n",
      "          'commentary': 1,\n",
      "          'nyou': 1,\n",
      "          'betcha': 1,\n",
      "          'nbut': 1,\n",
      "          'ncome': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'plates': 7,\n",
      "          'tectonic': 4,\n",
      "          'nthe': 4,\n",
      "          'movie': 3,\n",
      "          'play': 3,\n",
      "          'lapage': 3,\n",
      "          'ntectonic': 3,\n",
      "          'although': 3,\n",
      "          'madeleine': 3,\n",
      "          'jacques': 3,\n",
      "          'motion': 2,\n",
      "          'picture': 2,\n",
      "          'minutes': 2,\n",
      "          'film': 2,\n",
      "          'never': 2,\n",
      "          'robert': 2,\n",
      "          'like': 2,\n",
      "          'art': 2,\n",
      "          'seen': 2,\n",
      "          'uninteresting': 2,\n",
      "          'pretentious': 2,\n",
      "          'characters': 2,\n",
      "          'anything': 2,\n",
      "          'trying': 2,\n",
      "          'something': 2,\n",
      "          'different': 2,\n",
      "          'montreal': 2,\n",
      "          'love': 2,\n",
      "          'venice': 2,\n",
      "          'topless': 2,\n",
      "          'goddess': 2,\n",
      "          'point': 2,\n",
      "          'else': 2,\n",
      "          'incredibly': 1,\n",
      "          'painful': 1,\n",
      "          'experience': 1,\n",
      "          'nearly': 1,\n",
      "          'prompted': 1,\n",
      "          'walk': 1,\n",
      "          '20': 1,\n",
      "          'opened': 1,\n",
      "          'canada': 1,\n",
      "          '1992': 1,\n",
      "          'released': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'based': 1,\n",
      "          '1988': 1,\n",
      "          'stage': 1,\n",
      "          'canadian': 1,\n",
      "          'auteur': 1,\n",
      "          'evident': 1,\n",
      "          'could': 1,\n",
      "          'fascinating': 1,\n",
      "          'live': 1,\n",
      "          'production': 1,\n",
      "          'translation': 1,\n",
      "          'screen': 1,\n",
      "          'creative': 1,\n",
      "          'disaster': 1,\n",
      "          'nenduring': 1,\n",
      "          'sitting': 1,\n",
      "          'filmed': 1,\n",
      "          'version': 1,\n",
      "          'performance': 1,\n",
      "          'lifeless': 1,\n",
      "          'tedious': 1,\n",
      "          'qualities': 1,\n",
      "          'make': 1,\n",
      "          'captivating': 1,\n",
      "          'person': 1,\n",
      "          'effaced': 1,\n",
      "          'medium': 1,\n",
      "          'storyline': 1,\n",
      "          'narrative': 1,\n",
      "          'developed': 1,\n",
      "          'decidedly': 1,\n",
      "          'nontraditional': 1,\n",
      "          'fashion': 1,\n",
      "          'shots': 1,\n",
      "          'stagebound': 1,\n",
      "          'intercut': 1,\n",
      "          'typical': 1,\n",
      "          'cinematic': 1,\n",
      "          'sequences': 1,\n",
      "          'nits': 1,\n",
      "          'inherently': 1,\n",
      "          'way': 1,\n",
      "          'present': 1,\n",
      "          'despite': 1,\n",
      "          'valid': 1,\n",
      "          'complaint': 1,\n",
      "          'allbutscreaming': 1,\n",
      "          'look': 1,\n",
      "          'nart': 1,\n",
      "          'nalthough': 1,\n",
      "          'keeps': 1,\n",
      "          'audience': 1,\n",
      "          'distanced': 1,\n",
      "          'nbecause': 1,\n",
      "          'constantly': 1,\n",
      "          'made': 1,\n",
      "          'aware': 1,\n",
      "          'watching': 1,\n",
      "          'impossible': 1,\n",
      "          'accept': 1,\n",
      "          'individuals': 1,\n",
      "          'mouthpieces': 1,\n",
      "          'writers': 1,\n",
      "          'ideas': 1,\n",
      "          'ntheyre': 1,\n",
      "          'real': 1,\n",
      "          'sympathetic': 1,\n",
      "          'believable': 1,\n",
      "          'nim': 1,\n",
      "          'willing': 1,\n",
      "          'give': 1,\n",
      "          'director': 1,\n",
      "          'peter': 1,\n",
      "          'mettler': 1,\n",
      "          'credit': 1,\n",
      "          'particular': 1,\n",
      "          'experiment': 1,\n",
      "          'success': 1,\n",
      "          'opens': 1,\n",
      "          'introducing': 1,\n",
      "          'us': 1,\n",
      "          'marie': 1,\n",
      "          'gignac': 1,\n",
      "          'student': 1,\n",
      "          'studying': 1,\n",
      "          'fallen': 1,\n",
      "          'professor': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'disappears': 1,\n",
      "          'fearing': 1,\n",
      "          'left': 1,\n",
      "          'undeserving': 1,\n",
      "          'travels': 1,\n",
      "          'kill': 1,\n",
      "          'nwhile': 1,\n",
      "          'preparing': 1,\n",
      "          'commit': 1,\n",
      "          'suicide': 1,\n",
      "          'encounters': 1,\n",
      "          'drug': 1,\n",
      "          'addict': 1,\n",
      "          'constance': 1,\n",
      "          'celine': 1,\n",
      "          'bonnier': 1,\n",
      "          'causes': 1,\n",
      "          'rethink': 1,\n",
      "          'decision': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'moved': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'starts': 1,\n",
      "          'crossdressing': 1,\n",
      "          'calls': 1,\n",
      "          'jennifer': 1,\n",
      "          'becomes': 1,\n",
      "          'successful': 1,\n",
      "          'counterculture': 1,\n",
      "          'talkshow': 1,\n",
      "          'host': 1,\n",
      "          'nwith': 1,\n",
      "          'settings': 1,\n",
      "          'shift': 1,\n",
      "          'paris': 1,\n",
      "          'manhattan': 1,\n",
      "          'scotland': 1,\n",
      "          'supporting': 1,\n",
      "          'include': 1,\n",
      "          'deafmute': 1,\n",
      "          'cultural': 1,\n",
      "          'references': 1,\n",
      "          'chopin': 1,\n",
      "          'george': 1,\n",
      "          'sand': 1,\n",
      "          'jim': 1,\n",
      "          'morrison': 1,\n",
      "          'unique': 1,\n",
      "          'nothing': 1,\n",
      "          'nhowever': 1,\n",
      "          'interesting': 1,\n",
      "          'sounds': 1,\n",
      "          'excited': 1,\n",
      "          'see': 1,\n",
      "          'synopsis': 1,\n",
      "          'promising': 1,\n",
      "          'really': 1,\n",
      "          'delivers': 1,\n",
      "          'tone': 1,\n",
      "          'soporific': 1,\n",
      "          'supposedlyintellectual': 1,\n",
      "          'prattle': 1,\n",
      "          'inane': 1,\n",
      "          'plot': 1,\n",
      "          'meanders': 1,\n",
      "          'pointless': 1,\n",
      "          'irritating': 1,\n",
      "          'manner': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'long': 1,\n",
      "          'viewer': 1,\n",
      "          'determine': 1,\n",
      "          'story': 1,\n",
      "          'largely': 1,\n",
      "          'unimportant': 1,\n",
      "          'symbolism': 1,\n",
      "          'obvious': 1,\n",
      "          'show': 1,\n",
      "          'human': 1,\n",
      "          'interaction': 1,\n",
      "          'volatile': 1,\n",
      "          'unpredictable': 1,\n",
      "          'shifting': 1,\n",
      "          'earth': 1,\n",
      "          'takes': 1,\n",
      "          'onehundred': 1,\n",
      "          'get': 1,\n",
      "          'across': 1,\n",
      "          'transparent': 1,\n",
      "          'nthere': 1,\n",
      "          'worthwhile': 1,\n",
      "          'moments': 1,\n",
      "          'silly': 1,\n",
      "          'sword': 1,\n",
      "          'fight': 1,\n",
      "          'entertaining': 1,\n",
      "          'discussion': 1,\n",
      "          'french': 1,\n",
      "          'english': 1,\n",
      "          'differences': 1,\n",
      "          'two': 1,\n",
      "          'languages': 1,\n",
      "          'fine': 1,\n",
      "          'points': 1,\n",
      "          'certainly': 1,\n",
      "          'lost': 1,\n",
      "          'arent': 1,\n",
      "          'bilingual': 1,\n",
      "          'people': 1,\n",
      "          'likely': 1,\n",
      "          'enjoy': 1,\n",
      "          'feel': 1,\n",
      "          'strong': 1,\n",
      "          'need': 1,\n",
      "          'praise': 1,\n",
      "          'rootless': 1,\n",
      "          'boring': 1,\n",
      "          'b': 1,\n",
      "          'theyve': 1,\n",
      "          'c': 1,\n",
      "          'nfor': 1,\n",
      "          'everyone': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'poor': 1,\n",
      "          'introduction': 1,\n",
      "          'work': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 16,\n",
      "          'director': 7,\n",
      "          'nthe': 7,\n",
      "          'good': 6,\n",
      "          'east': 6,\n",
      "          'welles': 4,\n",
      "          'short': 4,\n",
      "          'several': 4,\n",
      "          'thompson': 4,\n",
      "          'raoul': 4,\n",
      "          'walsh': 4,\n",
      "          'silent': 4,\n",
      "          'last': 4,\n",
      "          'nthis': 4,\n",
      "          'one': 4,\n",
      "          'ending': 4,\n",
      "          'west': 4,\n",
      "          'germany': 4,\n",
      "          'folk': 3,\n",
      "          'story': 3,\n",
      "          'cast': 3,\n",
      "          'nafter': 3,\n",
      "          'sadie': 3,\n",
      "          'script': 3,\n",
      "          'wants': 3,\n",
      "          'seems': 3,\n",
      "          'certainly': 3,\n",
      "          '1986': 3,\n",
      "          'like': 3,\n",
      "          'bring': 3,\n",
      "          'meier': 3,\n",
      "          'son': 3,\n",
      "          'films': 2,\n",
      "          'seen': 2,\n",
      "          'seattle': 2,\n",
      "          'festival': 2,\n",
      "          'nits': 2,\n",
      "          'raft': 2,\n",
      "          'u': 2,\n",
      "          'orson': 2,\n",
      "          'na': 2,\n",
      "          'stories': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'attempts': 2,\n",
      "          'actions': 2,\n",
      "          'trying': 2,\n",
      "          'set': 2,\n",
      "          'photography': 2,\n",
      "          'really': 2,\n",
      "          'interesting': 2,\n",
      "          'screenwriter': 2,\n",
      "          'somerset': 2,\n",
      "          'maughams': 2,\n",
      "          'miss': 2,\n",
      "          'gloria': 2,\n",
      "          'swanson': 2,\n",
      "          'lionel': 2,\n",
      "          'barrymore': 2,\n",
      "          'version': 2,\n",
      "          'stills': 2,\n",
      "          'minutes': 2,\n",
      "          'years': 2,\n",
      "          'also': 2,\n",
      "          'screenplay': 2,\n",
      "          'get': 2,\n",
      "          'absolute': 2,\n",
      "          'real': 2,\n",
      "          'life': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'poorly': 2,\n",
      "          'tied': 2,\n",
      "          'difficult': 2,\n",
      "          'know': 2,\n",
      "          'due': 2,\n",
      "          'australia': 2,\n",
      "          'nstill': 2,\n",
      "          'right': 2,\n",
      "          'worth': 2,\n",
      "          '2': 2,\n",
      "          '50': 2,\n",
      "          'find': 2,\n",
      "          'pied': 2,\n",
      "          'piper': 2,\n",
      "          'czechoslovakia': 2,\n",
      "          'animated': 2,\n",
      "          'old': 2,\n",
      "          'better': 2,\n",
      "          'doesnt': 2,\n",
      "          'capitalism': 2,\n",
      "          'matter': 2,\n",
      "          'kind': 2,\n",
      "          'done': 2,\n",
      "          'puppets': 2,\n",
      "          'comedy': 2,\n",
      "          'something': 2,\n",
      "          'night': 2,\n",
      "          'ndont': 2,\n",
      "          'unless': 2,\n",
      "          'nmeier': 2,\n",
      "          'takes': 2,\n",
      "          'german': 2,\n",
      "          'father': 2,\n",
      "          'money': 2,\n",
      "          'girlfriend': 2,\n",
      "          'thinks': 2,\n",
      "          'hes': 2,\n",
      "          'credit': 2,\n",
      "          'funny': 2,\n",
      "          'long': 2,\n",
      "          'rules': 2,\n",
      "          'people': 2,\n",
      "          'watching': 2,\n",
      "          'awards': 2,\n",
      "          'horses': 2,\n",
      "          'various': 1,\n",
      "          'truethree': 1,\n",
      "          'men': 1,\n",
      "          '19421986': 1,\n",
      "          'recently': 1,\n",
      "          'uncovered': 1,\n",
      "          'onefourth': 1,\n",
      "          'planned': 1,\n",
      "          'docudrama': 1,\n",
      "          'amazing': 1,\n",
      "          'around': 1,\n",
      "          'world': 1,\n",
      "          'named': 1,\n",
      "          'true': 1,\n",
      "          'dealt': 1,\n",
      "          'document': 1,\n",
      "          'brazilian': 1,\n",
      "          'fisherman': 1,\n",
      "          '1942': 1,\n",
      "          'become': 1,\n",
      "          'heroes': 1,\n",
      "          'fantastic': 1,\n",
      "          'voyage': 1,\n",
      "          'rio': 1,\n",
      "          'nwhile': 1,\n",
      "          'clips': 1,\n",
      "          'tends': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'recount': 1,\n",
      "          'despite': 1,\n",
      "          'studio': 1,\n",
      "          'problems': 1,\n",
      "          'staggering': 1,\n",
      "          'workload': 1,\n",
      "          'extremely': 1,\n",
      "          'ill': 1,\n",
      "          'fortune': 1,\n",
      "          'nimpressive': 1,\n",
      "          'historians': 1,\n",
      "          'nsadie': 1,\n",
      "          '1928': 1,\n",
      "          'john': 1,\n",
      "          'colton': 1,\n",
      "          'play': 1,\n",
      "          'rain': 1,\n",
      "          'based': 1,\n",
      "          'w': 1,\n",
      "          'discussion': 1,\n",
      "          'newlyrestored': 1,\n",
      "          'frank': 1,\n",
      "          'capras': 1,\n",
      "          'lost': 1,\n",
      "          'horizon': 1,\n",
      "          'scenes': 1,\n",
      "          'restored': 1,\n",
      "          'using': 1,\n",
      "          'interested': 1,\n",
      "          'see': 1,\n",
      "          '5': 1,\n",
      "          'destroyed': 1,\n",
      "          'many': 1,\n",
      "          'ago': 1,\n",
      "          'maugham': 1,\n",
      "          'skillful': 1,\n",
      "          'ever': 1,\n",
      "          'seenlittle': 1,\n",
      "          'awkwardness': 1,\n",
      "          'clever': 1,\n",
      "          'actors': 1,\n",
      "          'directed': 1,\n",
      "          'wrote': 1,\n",
      "          'especially': 1,\n",
      "          'hypocritical': 1,\n",
      "          'reformer': 1,\n",
      "          'supposedly': 1,\n",
      "          'save': 1,\n",
      "          'sadies': 1,\n",
      "          'soul': 1,\n",
      "          'sheets': 1,\n",
      "          'epitome': 1,\n",
      "          'sanctimonious': 1,\n",
      "          'scoundrel': 1,\n",
      "          'nswanson': 1,\n",
      "          'adds': 1,\n",
      "          'character': 1,\n",
      "          'adding': 1,\n",
      "          'worldly': 1,\n",
      "          'affectionate': 1,\n",
      "          'air': 1,\n",
      "          'bawdy': 1,\n",
      "          'rather': 1,\n",
      "          'whether': 1,\n",
      "          'lack': 1,\n",
      "          'liveaction': 1,\n",
      "          'original': 1,\n",
      "          'happy': 1,\n",
      "          'particularly': 1,\n",
      "          'believe': 1,\n",
      "          'ended': 1,\n",
      "          'hero': 1,\n",
      "          'moving': 1,\n",
      "          'expected': 1,\n",
      "          'fill': 1,\n",
      "          'conclusion': 1,\n",
      "          'weve': 1,\n",
      "          'waiting': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'entertaining': 1,\n",
      "          'end': 1,\n",
      "          'barrymores': 1,\n",
      "          'incredibly': 1,\n",
      "          'hammy': 1,\n",
      "          'performance': 1,\n",
      "          'nonetheless': 1,\n",
      "          'works': 1,\n",
      "          'perhaps': 1,\n",
      "          'screen': 1,\n",
      "          'must': 1,\n",
      "          'anyone': 1,\n",
      "          'fed': 1,\n",
      "          'falwells': 1,\n",
      "          'bakkers': 1,\n",
      "          'robertses': 1,\n",
      "          'religious': 1,\n",
      "          'worlds': 1,\n",
      "          'c': 1,\n",
      "          'movie': 1,\n",
      "          'jim': 1,\n",
      "          'barta': 1,\n",
      "          'kamil': 1,\n",
      "          'piza': 1,\n",
      "          'definitely': 1,\n",
      "          'kids': 1,\n",
      "          'nit': 1,\n",
      "          'tells': 1,\n",
      "          'tale': 1,\n",
      "          'twist': 1,\n",
      "          'highly': 1,\n",
      "          'appropriate': 1,\n",
      "          'lot': 1,\n",
      "          'political': 1,\n",
      "          'comment': 1,\n",
      "          'along': 1,\n",
      "          'nperhaps': 1,\n",
      "          'economic': 1,\n",
      "          'content': 1,\n",
      "          'wordit': 1,\n",
      "          'show': 1,\n",
      "          'light': 1,\n",
      "          'nnor': 1,\n",
      "          'human': 1,\n",
      "          'nature': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'nas': 1,\n",
      "          'may': 1,\n",
      "          'guessed': 1,\n",
      "          'tgif': 1,\n",
      "          'glad': 1,\n",
      "          'nnot': 1,\n",
      "          'wasnt': 1,\n",
      "          'technical': 1,\n",
      "          'reasons': 1,\n",
      "          'stopanimation': 1,\n",
      "          'well': 1,\n",
      "          'nall': 1,\n",
      "          'carefully': 1,\n",
      "          'carved': 1,\n",
      "          'walnutsexcept': 1,\n",
      "          'stuffed': 1,\n",
      "          'rats': 1,\n",
      "          'nboy': 1,\n",
      "          'sounds': 1,\n",
      "          'vehicle': 1,\n",
      "          'nadd': 1,\n",
      "          'onto': 1,\n",
      "          'design': 1,\n",
      "          'makes': 1,\n",
      "          'cabinet': 1,\n",
      "          'doctor': 1,\n",
      "          'caligari': 1,\n",
      "          'absolutely': 1,\n",
      "          'cheerful': 1,\n",
      "          'comparison': 1,\n",
      "          'give': 1,\n",
      "          'wee': 1,\n",
      "          'ones': 1,\n",
      "          'mentally': 1,\n",
      "          'unstable': 1,\n",
      "          'larger': 1,\n",
      "          'keep': 1,\n",
      "          'nsome': 1,\n",
      "          'gore': 1,\n",
      "          'children': 1,\n",
      "          'adults': 1,\n",
      "          'theyre': 1,\n",
      "          'fascinated': 1,\n",
      "          'puppetry': 1,\n",
      "          'andor': 1,\n",
      "          'hate': 1,\n",
      "          'badly': 1,\n",
      "          'enjoy': 1,\n",
      "          'seeing': 1,\n",
      "          'wooden': 1,\n",
      "          'raped': 1,\n",
      "          'nblech': 1,\n",
      "          'n': 1,\n",
      "          'fun': 1,\n",
      "          'whatsoever': 1,\n",
      "          'directorscreenwriter': 1,\n",
      "          'peter': 1,\n",
      "          'timm': 1,\n",
      "          'rainier': 1,\n",
      "          'grenkowitz': 1,\n",
      "          'nadja': 1,\n",
      "          'engelbrecht': 1,\n",
      "          'alexander': 1,\n",
      "          'hauff': 1,\n",
      "          'thomas': 1,\n",
      "          'besvater': 1,\n",
      "          'subtitled': 1,\n",
      "          'us': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'germanwest': 1,\n",
      "          'border': 1,\n",
      "          'wallpaperer': 1,\n",
      "          'whose': 1,\n",
      "          'dies': 1,\n",
      "          'leaves': 1,\n",
      "          'deal': 1,\n",
      "          'nhis': 1,\n",
      "          'uncle': 1,\n",
      "          'sneaks': 1,\n",
      "          'country': 1,\n",
      "          'unknown': 1,\n",
      "          'germans': 1,\n",
      "          'however': 1,\n",
      "          'less': 1,\n",
      "          'thrilled': 1,\n",
      "          'friends': 1,\n",
      "          'job': 1,\n",
      "          'likes': 1,\n",
      "          'exist': 1,\n",
      "          'roundtheworld': 1,\n",
      "          'trip': 1,\n",
      "          'boss': 1,\n",
      "          'leave': 1,\n",
      "          'bulgaria': 1,\n",
      "          'starts': 1,\n",
      "          'visiting': 1,\n",
      "          'day': 1,\n",
      "          'visas': 1,\n",
      "          'fake': 1,\n",
      "          'id': 1,\n",
      "          'uses': 1,\n",
      "          'connections': 1,\n",
      "          'buy': 1,\n",
      "          'presents': 1,\n",
      "          'work': 1,\n",
      "          'crews': 1,\n",
      "          'workwhile': 1,\n",
      "          'everyone': 1,\n",
      "          'still': 1,\n",
      "          'living': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'goes': 1,\n",
      "          'wrongand': 1,\n",
      "          'humor': 1,\n",
      "          'spread': 1,\n",
      "          'thin': 1,\n",
      "          'much': 1,\n",
      "          'plot': 1,\n",
      "          'obvious': 1,\n",
      "          'acting': 1,\n",
      "          'concept': 1,\n",
      "          'five': 1,\n",
      "          'pretty': 1,\n",
      "          'nc': 1,\n",
      "          'hand': 1,\n",
      "          'man': 1,\n",
      "          'di': 1,\n",
      "          'drew': 1,\n",
      "          'helen': 1,\n",
      "          'hodgman': 1,\n",
      "          'rupert': 1,\n",
      "          'everett': 1,\n",
      "          'hugo': 1,\n",
      "          'weaving': 1,\n",
      "          'arthur': 1,\n",
      "          'dignam': 1,\n",
      "          'jennifer': 1,\n",
      "          'claire': 1,\n",
      "          'catherine': 1,\n",
      "          'mcclements': 1,\n",
      "          'lifetime': 1,\n",
      "          'moviegoing': 1,\n",
      "          'four': 1,\n",
      "          'attending': 1,\n",
      "          'international': 1,\n",
      "          'ive': 1,\n",
      "          'learned': 1,\n",
      "          'given': 1,\n",
      "          'deference': 1,\n",
      "          'n1': 1,\n",
      "          'wary': 1,\n",
      "          'french': 1,\n",
      "          'comedies': 1,\n",
      "          'nthese': 1,\n",
      "          'jerry': 1,\n",
      "          'lewis': 1,\n",
      "          'n2': 1,\n",
      "          'ken': 1,\n",
      "          'russell': 1,\n",
      "          'never': 1,\n",
      "          'going': 1,\n",
      "          'grow': 1,\n",
      "          'wait': 1,\n",
      "          'n3': 1,\n",
      "          'siff': 1,\n",
      "          'associate': 1,\n",
      "          'gary': 1,\n",
      "          'tucker': 1,\n",
      "          'refers': 1,\n",
      "          'lead': 1,\n",
      "          'poutylips': 1,\n",
      "          'probably': 1,\n",
      "          'n4': 1,\n",
      "          'australian': 1,\n",
      "          'best': 1,\n",
      "          'cinematography': 1,\n",
      "          'watch': 1,\n",
      "          'naustralia': 1,\n",
      "          'cinematographers': 1,\n",
      "          'whazoo': 1,\n",
      "          'since': 1,\n",
      "          'weir': 1,\n",
      "          'miller': 1,\n",
      "          'left': 1,\n",
      "          'foreign': 1,\n",
      "          'shores': 1,\n",
      "          'finding': 1,\n",
      "          'impossiblewitness': 1,\n",
      "          'malcolm': 1,\n",
      "          'year': 1,\n",
      "          'task': 1,\n",
      "          'nwell': 1,\n",
      "          'ignored': 1,\n",
      "          '3': 1,\n",
      "          '4': 1,\n",
      "          'sat': 1,\n",
      "          'golden': 1,\n",
      "          'turkey': 1,\n",
      "          'classic': 1,\n",
      "          'romance': 1,\n",
      "          '30s': 1,\n",
      "          'tragedy': 1,\n",
      "          'among': 1,\n",
      "          'gentry': 1,\n",
      "          'falling': 1,\n",
      "          'love': 1,\n",
      "          'station': 1,\n",
      "          'nlots': 1,\n",
      "          'lots': 1,\n",
      "          'opens': 1,\n",
      "          'stallion': 1,\n",
      "          'mounting': 1,\n",
      "          'mare': 1,\n",
      "          'direction': 1,\n",
      "          'ladyship': 1,\n",
      "          'guess': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'missus': 1,\n",
      "          'house': 1,\n",
      "          'produce': 1,\n",
      "          'heir': 1,\n",
      "          'said': 1,\n",
      "          'reckless': 1,\n",
      "          'idiot': 1,\n",
      "          'faints': 1,\n",
      "          'worst': 1,\n",
      "          'times': 1,\n",
      "          'kills': 1,\n",
      "          'loses': 1,\n",
      "          'arm': 1,\n",
      "          'racing': 1,\n",
      "          'accident': 1,\n",
      "          'nhighlights': 1,\n",
      "          'include': 1,\n",
      "          'amputation': 1,\n",
      "          'sequence': 1,\n",
      "          'doctors': 1,\n",
      "          'daughter': 1,\n",
      "          'hots': 1,\n",
      "          'tasting': 1,\n",
      "          'urine': 1,\n",
      "          'diagnosis': 1,\n",
      "          'tender': 1,\n",
      "          'kissing': 1,\n",
      "          'window': 1,\n",
      "          'rainingyoud': 1,\n",
      "          'think': 1,\n",
      "          'woman': 1,\n",
      "          'studying': 1,\n",
      "          'medicine': 1,\n",
      "          'would': 1,\n",
      "          'kept': 1,\n",
      "          'wishing': 1,\n",
      "          'bweverything': 1,\n",
      "          'sepiacolored': 1,\n",
      "          'anyway': 1,\n",
      "          'nactually': 1,\n",
      "          'wished': 1,\n",
      "          'swimming': 1,\n",
      "          'cambodia': 1,\n",
      "          'instead': 1,\n",
      "          'thats': 1,\n",
      "          'ngrade': 1,\n",
      "          'z': 1,\n",
      "          'avoid': 1,\n",
      "          'plague': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'inadvertent': 1,\n",
      "          'yuks': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'pod': 4,\n",
      "          'alien': 3,\n",
      "          'story': 3,\n",
      "          'ripley': 3,\n",
      "          'end': 3,\n",
      "          'nthe': 3,\n",
      "          'ending': 3,\n",
      "          'tension': 2,\n",
      "          '3': 2,\n",
      "          'seems': 2,\n",
      "          'remarkably': 2,\n",
      "          'nin': 2,\n",
      "          'anything': 2,\n",
      "          'little': 2,\n",
      "          'nat': 2,\n",
      "          'way': 2,\n",
      "          'ship': 2,\n",
      "          'escape': 2,\n",
      "          'prison': 2,\n",
      "          'actors': 2,\n",
      "          'another': 2,\n",
      "          'looks': 2,\n",
      "          'like': 2,\n",
      "          'except': 2,\n",
      "          'role': 2,\n",
      "          'charles': 2,\n",
      "          'good': 2,\n",
      "          'found': 2,\n",
      "          'capsule': 1,\n",
      "          'weakest': 1,\n",
      "          'least': 1,\n",
      "          'engaging': 1,\n",
      "          'movies': 1,\n",
      "          'dragged': 1,\n",
      "          'uninvolving': 1,\n",
      "          'real': 1,\n",
      "          'nalien': 1,\n",
      "          'superscript': 1,\n",
      "          'sad': 1,\n",
      "          'wan': 1,\n",
      "          'entry': 1,\n",
      "          'shaping': 1,\n",
      "          'one': 1,\n",
      "          'best': 1,\n",
      "          'sf': 1,\n",
      "          'sagas': 1,\n",
      "          'ever': 1,\n",
      "          'put': 1,\n",
      "          'screen': 1,\n",
      "          'nit': 1,\n",
      "          'continues': 1,\n",
      "          'spacetruckerturnedimpromptusurvivalist': 1,\n",
      "          'uninterested': 1,\n",
      "          'fact': 1,\n",
      "          'lucky': 1,\n",
      "          'interested': 1,\n",
      "          'elegaic': 1,\n",
      "          'limp': 1,\n",
      "          'na': 1,\n",
      "          'would': 1,\n",
      "          'nice': 1,\n",
      "          'atmosphere': 1,\n",
      "          'telegraphs': 1,\n",
      "          'tragedy': 1,\n",
      "          'beginning': 1,\n",
      "          'last': 1,\n",
      "          'film': 1,\n",
      "          'aliens': 1,\n",
      "          'two': 1,\n",
      "          'survivors': 1,\n",
      "          'home': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'deposited': 1,\n",
      "          'wound': 1,\n",
      "          'triggering': 1,\n",
      "          'ejection': 1,\n",
      "          'crashes': 1,\n",
      "          'firorina': 1,\n",
      "          '161': 1,\n",
      "          'planet': 1,\n",
      "          'designed': 1,\n",
      "          'house': 1,\n",
      "          'incurably': 1,\n",
      "          'criminally': 1,\n",
      "          'violent': 1,\n",
      "          'nripley': 1,\n",
      "          'lives': 1,\n",
      "          'crash': 1,\n",
      "          'others': 1,\n",
      "          'grim': 1,\n",
      "          'place': 1,\n",
      "          'even': 1,\n",
      "          'prisons': 1,\n",
      "          'go': 1,\n",
      "          'built': 1,\n",
      "          'around': 1,\n",
      "          'remnants': 1,\n",
      "          'abandoned': 1,\n",
      "          'steelworks': 1,\n",
      "          'provides': 1,\n",
      "          'technogothic': 1,\n",
      "          'backdrops': 1,\n",
      "          'backlit': 1,\n",
      "          'nlice': 1,\n",
      "          'endemic': 1,\n",
      "          'ripleys': 1,\n",
      "          'head': 1,\n",
      "          'shaved': 1,\n",
      "          'surreal': 1,\n",
      "          'touch': 1,\n",
      "          'first': 1,\n",
      "          'hold': 1,\n",
      "          'unwelcome': 1,\n",
      "          'guest': 1,\n",
      "          'company': 1,\n",
      "          'rescue': 1,\n",
      "          'arrive': 1,\n",
      "          'doesnt': 1,\n",
      "          'stay': 1,\n",
      "          'none': 1,\n",
      "          'eggs': 1,\n",
      "          'board': 1,\n",
      "          'wrecked': 1,\n",
      "          'hatches': 1,\n",
      "          'soon': 1,\n",
      "          'newlygestated': 1,\n",
      "          'running': 1,\n",
      "          'amuck': 1,\n",
      "          'nworse': 1,\n",
      "          'impregnated': 1,\n",
      "          'nwhats': 1,\n",
      "          'weird': 1,\n",
      "          'generates': 1,\n",
      "          'near': 1,\n",
      "          'pressure': 1,\n",
      "          'troweled': 1,\n",
      "          'every': 1,\n",
      "          'cheap': 1,\n",
      "          'cinematic': 1,\n",
      "          'form': 1,\n",
      "          'cheating': 1,\n",
      "          'imaginable': 1,\n",
      "          'loud': 1,\n",
      "          'music': 1,\n",
      "          'shaky': 1,\n",
      "          'camerawork': 1,\n",
      "          'etc': 1,\n",
      "          'sigourney': 1,\n",
      "          'weaver': 1,\n",
      "          'become': 1,\n",
      "          'comfortable': 1,\n",
      "          'well': 1,\n",
      "          'time': 1,\n",
      "          'underwritten': 1,\n",
      "          'left': 1,\n",
      "          'slack': 1,\n",
      "          'supporting': 1,\n",
      "          'also': 1,\n",
      "          'given': 1,\n",
      "          'lot': 1,\n",
      "          'doctor': 1,\n",
      "          'dance': 1,\n",
      "          'rather': 1,\n",
      "          'religious': 1,\n",
      "          'inmate': 1,\n",
      "          'dutton': 1,\n",
      "          'hiave': 1,\n",
      "          'presence': 1,\n",
      "          'theyre': 1,\n",
      "          'asked': 1,\n",
      "          'light': 1,\n",
      "          'impending': 1,\n",
      "          'sequel': 1,\n",
      "          'apparently': 1,\n",
      "          'plays': 1,\n",
      "          'fast': 1,\n",
      "          'loose': 1,\n",
      "          'talk': 1,\n",
      "          'say': 1,\n",
      "          'drab': 1,\n",
      "          'nits': 1,\n",
      "          'strange': 1,\n",
      "          'desperate': 1,\n",
      "          'improvisational': 1,\n",
      "          'thinking': 1,\n",
      "          'wind': 1,\n",
      "          'couldnt': 1,\n",
      "          'driven': 1,\n",
      "          'rest': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bone': 12,\n",
      "          'monkey': 11,\n",
      "          'stu': 7,\n",
      "          'really': 6,\n",
      "          'get': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'seems': 4,\n",
      "          'go': 3,\n",
      "          'however': 3,\n",
      "          'bad': 3,\n",
      "          'effects': 3,\n",
      "          'everyone': 3,\n",
      "          'well': 3,\n",
      "          'nwhen': 3,\n",
      "          'know': 3,\n",
      "          'film': 3,\n",
      "          'nightmare': 2,\n",
      "          'said': 2,\n",
      "          'im': 2,\n",
      "          'guessing': 2,\n",
      "          'see': 2,\n",
      "          'since': 2,\n",
      "          'million': 2,\n",
      "          'miley': 2,\n",
      "          'behind': 2,\n",
      "          'new': 2,\n",
      "          'wants': 2,\n",
      "          'powder': 2,\n",
      "          'julie': 2,\n",
      "          'fonda': 2,\n",
      "          'goes': 2,\n",
      "          'coma': 2,\n",
      "          'town': 2,\n",
      "          'life': 2,\n",
      "          'nightmares': 2,\n",
      "          'rose': 2,\n",
      "          'mcgowan': 2,\n",
      "          'pass': 2,\n",
      "          'becomes': 2,\n",
      "          'takes': 2,\n",
      "          'body': 2,\n",
      "          'like': 2,\n",
      "          'even': 2,\n",
      "          'story': 2,\n",
      "          'lack': 2,\n",
      "          'character': 2,\n",
      "          'development': 2,\n",
      "          'nfor': 2,\n",
      "          'dont': 2,\n",
      "          'given': 2,\n",
      "          'role': 2,\n",
      "          'bring': 2,\n",
      "          'performance': 2,\n",
      "          'funny': 2,\n",
      "          'special': 2,\n",
      "          'might': 2,\n",
      "          'curious': 2,\n",
      "          'good': 2,\n",
      "          'director': 1,\n",
      "          'christmas': 1,\n",
      "          'previews': 1,\n",
      "          'people': 1,\n",
      "          'obviously': 1,\n",
      "          'hasnt': 1,\n",
      "          'worked': 1,\n",
      "          '75': 1,\n",
      "          'dollar': 1,\n",
      "          'yet': 1,\n",
      "          'break': 1,\n",
      "          '5': 1,\n",
      "          'nto': 1,\n",
      "          'together': 1,\n",
      "          'technically': 1,\n",
      "          'wellmade': 1,\n",
      "          'na': 1,\n",
      "          'tragic': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'incredible': 1,\n",
      "          'visual': 1,\n",
      "          'nstu': 1,\n",
      "          'genius': 1,\n",
      "          'phenomena': 1,\n",
      "          'crude': 1,\n",
      "          'comic': 1,\n",
      "          'strip': 1,\n",
      "          'merchandise': 1,\n",
      "          'great': 1,\n",
      "          'links': 1,\n",
      "          'including': 1,\n",
      "          'dollars': 1,\n",
      "          'let': 1,\n",
      "          'fart': 1,\n",
      "          'girlfriend': 1,\n",
      "          'bridget': 1,\n",
      "          'freak': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'youll': 1,\n",
      "          'travels': 1,\n",
      "          'dark': 1,\n",
      "          'characters': 1,\n",
      "          'dreams': 1,\n",
      "          'come': 1,\n",
      "          'npeople': 1,\n",
      "          'stuck': 1,\n",
      "          'roaming': 1,\n",
      "          'around': 1,\n",
      "          'spots': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'tries': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'keep': 1,\n",
      "          'control': 1,\n",
      "          'nmaking': 1,\n",
      "          'friend': 1,\n",
      "          'kitty': 1,\n",
      "          'learns': 1,\n",
      "          'gets': 1,\n",
      "          'exit': 1,\n",
      "          'death': 1,\n",
      "          'back': 1,\n",
      "          'live': 1,\n",
      "          'steal': 1,\n",
      "          'trader': 1,\n",
      "          'stus': 1,\n",
      "          'nnow': 1,\n",
      "          'must': 1,\n",
      "          'buy': 1,\n",
      "          'dolls': 1,\n",
      "          'nsomething': 1,\n",
      "          'nrather': 1,\n",
      "          'complex': 1,\n",
      "          'fact': 1,\n",
      "          'needs': 1,\n",
      "          'potential': 1,\n",
      "          'script': 1,\n",
      "          'nwhat': 1,\n",
      "          'considerably': 1,\n",
      "          'noticeable': 1,\n",
      "          'gaping': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'instance': 1,\n",
      "          'care': 1,\n",
      "          'nkitty': 1,\n",
      "          'played': 1,\n",
      "          'ha': 1,\n",
      "          'chance': 1,\n",
      "          'cast': 1,\n",
      "          'decent': 1,\n",
      "          'brendan': 1,\n",
      "          'fraser': 1,\n",
      "          'enjoying': 1,\n",
      "          'awfully': 1,\n",
      "          'annoying': 1,\n",
      "          'nbridget': 1,\n",
      "          'dreary': 1,\n",
      "          'screeching': 1,\n",
      "          'halt': 1,\n",
      "          'miscast': 1,\n",
      "          'ndave': 1,\n",
      "          'foley': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'graces': 1,\n",
      "          'megan': 1,\n",
      "          'mullally': 1,\n",
      "          'standout': 1,\n",
      "          'voice': 1,\n",
      "          'nick': 1,\n",
      "          'turturro': 1,\n",
      "          'entertaining': 1,\n",
      "          'keeps': 1,\n",
      "          'total': 1,\n",
      "          'bust': 1,\n",
      "          'viewers': 1,\n",
      "          'highly': 1,\n",
      "          'effective': 1,\n",
      "          'nice': 1,\n",
      "          'look': 1,\n",
      "          'eyes': 1,\n",
      "          'nsome': 1,\n",
      "          'believable': 1,\n",
      "          'unbelievable': 1,\n",
      "          'nmonkey': 1,\n",
      "          'stuart': 1,\n",
      "          'little': 1,\n",
      "          'realize': 1,\n",
      "          'animated': 1,\n",
      "          'non': 1,\n",
      "          'occasion': 1,\n",
      "          'sneaks': 1,\n",
      "          'direction': 1,\n",
      "          'henry': 1,\n",
      "          'selick': 1,\n",
      "          'times': 1,\n",
      "          'doesnt': 1,\n",
      "          'kind': 1,\n",
      "          'make': 1,\n",
      "          'ending': 1,\n",
      "          'climax': 1,\n",
      "          'falls': 1,\n",
      "          'cliff': 1,\n",
      "          'nits': 1,\n",
      "          'could': 1,\n",
      "          'real': 1,\n",
      "          'heavily': 1,\n",
      "          'done': 1,\n",
      "          'hack': 1,\n",
      "          'job': 1,\n",
      "          'sinks': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'worth': 1,\n",
      "          'rental': 1,\n",
      "          'avoid': 1,\n",
      "          'one': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'made': 3,\n",
      "          'movie': 3,\n",
      "          'action': 3,\n",
      "          'nthe': 2,\n",
      "          'nbesides': 2,\n",
      "          'flicks': 2,\n",
      "          'unusually': 2,\n",
      "          'character': 2,\n",
      "          'sergeant': 2,\n",
      "          'numerous': 1,\n",
      "          'comparisons': 1,\n",
      "          'past': 1,\n",
      "          'scifi': 1,\n",
      "          'suspense': 1,\n",
      "          'thrillers': 1,\n",
      "          'nsoldier': 1,\n",
      "          'multi': 1,\n",
      "          'crossbreed': 1,\n",
      "          'likes': 1,\n",
      "          'terminator': 1,\n",
      "          'aliens': 1,\n",
      "          'offspring': 1,\n",
      "          'problem': 1,\n",
      "          'mixed': 1,\n",
      "          'genes': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'real': 1,\n",
      "          'mongrel': 1,\n",
      "          'well': 1,\n",
      "          'put': 1,\n",
      "          'production': 1,\n",
      "          'got': 1,\n",
      "          'ground': 1,\n",
      "          'mediocre': 1,\n",
      "          'compared': 1,\n",
      "          'standard': 1,\n",
      "          'day': 1,\n",
      "          'age': 1,\n",
      "          'fight': 1,\n",
      "          'scenes': 1,\n",
      "          'jason': 1,\n",
      "          'scott': 1,\n",
      "          'lee': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'seem': 1,\n",
      "          'laboured': 1,\n",
      "          'slow': 1,\n",
      "          'sluggish': 1,\n",
      "          'could': 1,\n",
      "          'done': 1,\n",
      "          'better': 1,\n",
      "          'choreography': 1,\n",
      "          'nrussell': 1,\n",
      "          'usually': 1,\n",
      "          'good': 1,\n",
      "          'actor': 1,\n",
      "          'bgrade': 1,\n",
      "          'hampered': 1,\n",
      "          'todd': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'toad': 1,\n",
      "          'almost': 1,\n",
      "          'dialogue': 1,\n",
      "          'appears': 1,\n",
      "          'stunted': 1,\n",
      "          'zombielike': 1,\n",
      "          'line': 1,\n",
      "          'screen': 1,\n",
      "          'persona': 1,\n",
      "          'scores': 1,\n",
      "          'little': 1,\n",
      "          'points': 1,\n",
      "          'empathy': 1,\n",
      "          'audience': 1,\n",
      "          'nthis': 1,\n",
      "          'change': 1,\n",
      "          'opinion': 1,\n",
      "          'director': 1,\n",
      "          'paul': 1,\n",
      "          'anderson': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'epic': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'left': 1,\n",
      "          'bitter': 1,\n",
      "          'taste': 1,\n",
      "          'mouth': 1,\n",
      "          'nalthough': 1,\n",
      "          'come': 1,\n",
      "          'anywhere': 1,\n",
      "          'close': 1,\n",
      "          'strangeness': 1,\n",
      "          'former': 1,\n",
      "          'still': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'anything': 1,\n",
      "          'considered': 1,\n",
      "          'desirable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'pimps': 13,\n",
      "          'pimp': 10,\n",
      "          'film': 6,\n",
      "          'nthe': 5,\n",
      "          'get': 4,\n",
      "          'make': 4,\n",
      "          'money': 4,\n",
      "          'need': 4,\n",
      "          'nit': 3,\n",
      "          'way': 3,\n",
      "          'word': 3,\n",
      "          'used': 3,\n",
      "          'also': 3,\n",
      "          'girls': 3,\n",
      "          'style': 3,\n",
      "          'could': 3,\n",
      "          'hughes': 2,\n",
      "          'brothers': 2,\n",
      "          'mostly': 2,\n",
      "          'hos': 2,\n",
      "          'flamboyant': 2,\n",
      "          'makes': 2,\n",
      "          'say': 2,\n",
      "          'might': 2,\n",
      "          'seem': 2,\n",
      "          'nthey': 2,\n",
      "          'business': 2,\n",
      "          'work': 2,\n",
      "          'became': 2,\n",
      "          'nthese': 2,\n",
      "          'never': 2,\n",
      "          'story': 2,\n",
      "          'nwe': 2,\n",
      "          'cnote': 2,\n",
      "          'rosebudd': 2,\n",
      "          'ho': 2,\n",
      "          'n': 2,\n",
      "          'number': 2,\n",
      "          'white': 2,\n",
      "          'nwhile': 2,\n",
      "          'black': 2,\n",
      "          'community': 2,\n",
      "          'hollywood': 2,\n",
      "          'see': 2,\n",
      "          'taking': 2,\n",
      "          'documentary': 1,\n",
      "          'twin': 1,\n",
      "          'allen': 1,\n",
      "          'albert': 1,\n",
      "          'dead': 1,\n",
      "          'presidents': 1,\n",
      "          'menace': 1,\n",
      "          'ii': 1,\n",
      "          'society': 1,\n",
      "          'street': 1,\n",
      "          'africanamerican': 1,\n",
      "          'nan': 1,\n",
      "          'offscreen': 1,\n",
      "          'interviewer': 1,\n",
      "          'questions': 1,\n",
      "          'lives': 1,\n",
      "          'profession': 1,\n",
      "          'talking': 1,\n",
      "          'egotistical': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'ni': 1,\n",
      "          'learned': 1,\n",
      "          'bitch': 1,\n",
      "          'favorite': 1,\n",
      "          'seemed': 1,\n",
      "          'crop': 1,\n",
      "          'every': 1,\n",
      "          'sentence': 1,\n",
      "          'surprises': 1,\n",
      "          'nothing': 1,\n",
      "          'fresh': 1,\n",
      "          'one': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'lifestyle': 1,\n",
      "          'rap': 1,\n",
      "          'amusing': 1,\n",
      "          'want': 1,\n",
      "          'thought': 1,\n",
      "          'businessmen': 1,\n",
      "          'easiest': 1,\n",
      "          'big': 1,\n",
      "          'nits': 1,\n",
      "          'power': 1,\n",
      "          'trip': 1,\n",
      "          'accomplished': 1,\n",
      "          'manipulating': 1,\n",
      "          'humiliating': 1,\n",
      "          'keeping': 1,\n",
      "          'place': 1,\n",
      "          'nthis': 1,\n",
      "          'sleazy': 1,\n",
      "          'pic': 1,\n",
      "          'soon': 1,\n",
      "          'grating': 1,\n",
      "          'wore': 1,\n",
      "          'welcome': 1,\n",
      "          'unreceptive': 1,\n",
      "          'ears': 1,\n",
      "          'verbose': 1,\n",
      "          'smart': 1,\n",
      "          'answer': 1,\n",
      "          'everything': 1,\n",
      "          'knew': 1,\n",
      "          'shut': 1,\n",
      "          'face': 1,\n",
      "          'role': 1,\n",
      "          'models': 1,\n",
      "          'featherhatted': 1,\n",
      "          'furcoated': 1,\n",
      "          'diamond': 1,\n",
      "          'ringwearing': 1,\n",
      "          'gold': 1,\n",
      "          'chain': 1,\n",
      "          'wearing': 1,\n",
      "          'flashy': 1,\n",
      "          'cadillaccruising': 1,\n",
      "          'late': 1,\n",
      "          '70s': 1,\n",
      "          'blaxploitation': 1,\n",
      "          'movieslike': 1,\n",
      "          'mack': 1,\n",
      "          'willie': 1,\n",
      "          'dynamite': 1,\n",
      "          'nalso': 1,\n",
      "          'reference': 1,\n",
      "          'iceberg': 1,\n",
      "          'slims': 1,\n",
      "          'bestseller': 1,\n",
      "          'life': 1,\n",
      "          'meet': 1,\n",
      "          'fillmore': 1,\n",
      "          'slim': 1,\n",
      "          'charm': 1,\n",
      "          'kred': 1,\n",
      "          'gorgeous': 1,\n",
      "          'dre': 1,\n",
      "          'bishop': 1,\n",
      "          'magic': 1,\n",
      "          'juan': 1,\n",
      "          'readily': 1,\n",
      "          'discuss': 1,\n",
      "          'arrangements': 1,\n",
      "          'including': 1,\n",
      "          'percentages': 1,\n",
      "          'lifestyles': 1,\n",
      "          'knockin': 1,\n",
      "          'stealing': 1,\n",
      "          'another': 1,\n",
      "          'thrill': 1,\n",
      "          'women': 1,\n",
      "          'giving': 1,\n",
      "          'dudes': 1,\n",
      "          'needed': 1,\n",
      "          'prompting': 1,\n",
      "          'talk': 1,\n",
      "          'love': 1,\n",
      "          'brag': 1,\n",
      "          'priests': 1,\n",
      "          'nuns': 1,\n",
      "          'yaps': 1,\n",
      "          'san': 1,\n",
      "          'francisco': 1,\n",
      "          'doctors': 1,\n",
      "          'nurses': 1,\n",
      "          'nso': 1,\n",
      "          'nas': 1,\n",
      "          'tries': 1,\n",
      "          'persuasively': 1,\n",
      "          'case': 1,\n",
      "          'show': 1,\n",
      "          'ropes': 1,\n",
      "          'security': 1,\n",
      "          'blankets': 1,\n",
      "          'protectors': 1,\n",
      "          'counselors': 1,\n",
      "          'race': 1,\n",
      "          'issue': 1,\n",
      "          'brought': 1,\n",
      "          'right': 1,\n",
      "          'films': 1,\n",
      "          'onset': 1,\n",
      "          'interviewees': 1,\n",
      "          'regular': 1,\n",
      "          'citizens': 1,\n",
      "          'note': 1,\n",
      "          'impression': 1,\n",
      "          'hes': 1,\n",
      "          'lowest': 1,\n",
      "          'form': 1,\n",
      "          'human': 1,\n",
      "          'told': 1,\n",
      "          'looked': 1,\n",
      "          'upon': 1,\n",
      "          'successful': 1,\n",
      "          'entrepenaur': 1,\n",
      "          'riding': 1,\n",
      "          'around': 1,\n",
      "          'fancy': 1,\n",
      "          'cars': 1,\n",
      "          'flashing': 1,\n",
      "          'wads': 1,\n",
      "          'dressed': 1,\n",
      "          'snakegaiter': 1,\n",
      "          'shoes': 1,\n",
      "          'cost': 1,\n",
      "          'grand': 1,\n",
      "          'boasts': 1,\n",
      "          'status': 1,\n",
      "          'stable': 1,\n",
      "          'treat': 1,\n",
      "          'like': 1,\n",
      "          'dirt': 1,\n",
      "          'implies': 1,\n",
      "          'payback': 1,\n",
      "          'days': 1,\n",
      "          'slavery': 1,\n",
      "          'master': 1,\n",
      "          'slave': 1,\n",
      "          'relations': 1,\n",
      "          'projected': 1,\n",
      "          'image': 1,\n",
      "          'run': 1,\n",
      "          'hardsell': 1,\n",
      "          'riff': 1,\n",
      "          'virtues': 1,\n",
      "          'nthere': 1,\n",
      "          'different': 1,\n",
      "          'styles': 1,\n",
      "          'pimping': 1,\n",
      "          'mentions': 1,\n",
      "          'macks': 1,\n",
      "          'players': 1,\n",
      "          'real': 1,\n",
      "          'perpetrator': 1,\n",
      "          'clarity': 1,\n",
      "          'attempted': 1,\n",
      "          'failed': 1,\n",
      "          'womens': 1,\n",
      "          'side': 1,\n",
      "          'abuse': 1,\n",
      "          'primarily': 1,\n",
      "          'core': 1,\n",
      "          'think': 1,\n",
      "          'perverted': 1,\n",
      "          'filmmakers': 1,\n",
      "          'ride': 1,\n",
      "          'looking': 1,\n",
      "          'pose': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'thing': 1,\n",
      "          'hungry': 1,\n",
      "          '15minutes': 1,\n",
      "          'fame': 1,\n",
      "          'laughs': 1,\n",
      "          'got': 1,\n",
      "          'bleak': 1,\n",
      "          'look': 1,\n",
      "          'american': 1,\n",
      "          'subculture': 1,\n",
      "          'hearing': 1,\n",
      "          'retired': 1,\n",
      "          'ndanny': 1,\n",
      "          'brown': 1,\n",
      "          'blues': 1,\n",
      "          'singer': 1,\n",
      "          'keep': 1,\n",
      "          'wardrobe': 1,\n",
      "          'called': 1,\n",
      "          'married': 1,\n",
      "          'turned': 1,\n",
      "          'square': 1,\n",
      "          'working': 1,\n",
      "          'support': 1,\n",
      "          'wife': 1,\n",
      "          'daughter': 1,\n",
      "          'telemarketer': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'green': 6,\n",
      "          'tom': 5,\n",
      "          'make': 5,\n",
      "          'greens': 4,\n",
      "          'dad': 3,\n",
      "          'freddy': 3,\n",
      "          'got': 3,\n",
      "          'fingered': 3,\n",
      "          'films': 3,\n",
      "          'gord': 2,\n",
      "          'torn': 2,\n",
      "          'doesnt': 2,\n",
      "          'go': 2,\n",
      "          'first': 2,\n",
      "          'attempt': 2,\n",
      "          'mom': 2,\n",
      "          'essentially': 2,\n",
      "          'gets': 2,\n",
      "          'sex': 2,\n",
      "          'nwhile': 2,\n",
      "          'enough': 2,\n",
      "          'skateboarding': 2,\n",
      "          'scene': 2,\n",
      "          'time': 2,\n",
      "          'would': 2,\n",
      "          'end': 2,\n",
      "          'brody': 1,\n",
      "          'aspiring': 1,\n",
      "          'animator': 1,\n",
      "          'approaching': 1,\n",
      "          'thirty': 1,\n",
      "          'still': 1,\n",
      "          'lives': 1,\n",
      "          'parents': 1,\n",
      "          'jim': 1,\n",
      "          'rip': 1,\n",
      "          'julies': 1,\n",
      "          'julie': 1,\n",
      "          'hagerty': 1,\n",
      "          'airplane': 1,\n",
      "          'basement': 1,\n",
      "          'nas': 1,\n",
      "          'declares': 1,\n",
      "          'war': 1,\n",
      "          'secures': 1,\n",
      "          'job': 1,\n",
      "          'cheese': 1,\n",
      "          'sandwich': 1,\n",
      "          'factory': 1,\n",
      "          'far': 1,\n",
      "          'la': 1,\n",
      "          'sets': 1,\n",
      "          'dreams': 1,\n",
      "          'come': 1,\n",
      "          'true': 1,\n",
      "          'ngord': 1,\n",
      "          'much': 1,\n",
      "          'lands': 1,\n",
      "          'back': 1,\n",
      "          'home': 1,\n",
      "          'fawning': 1,\n",
      "          'outraged': 1,\n",
      "          'ntom': 1,\n",
      "          'cowrites': 1,\n",
      "          'show': 1,\n",
      "          'scribe': 1,\n",
      "          'derek': 1,\n",
      "          'harvie': 1,\n",
      "          'directs': 1,\n",
      "          'stars': 1,\n",
      "          'primal': 1,\n",
      "          'scream': 1,\n",
      "          'nso': 1,\n",
      "          'screams': 1,\n",
      "          'empty': 1,\n",
      "          'theater': 1,\n",
      "          'sound': 1,\n",
      "          'nits': 1,\n",
      "          'clear': 1,\n",
      "          'least': 1,\n",
      "          'partially': 1,\n",
      "          'autobiographical': 1,\n",
      "          'sure': 1,\n",
      "          'one': 1,\n",
      "          'hell': 1,\n",
      "          'complex': 1,\n",
      "          'easier': 1,\n",
      "          'sonny': 1,\n",
      "          'boy': 1,\n",
      "          'advises': 1,\n",
      "          'basketball': 1,\n",
      "          'players': 1,\n",
      "          'greeks': 1,\n",
      "          'may': 1,\n",
      "          'interest': 1,\n",
      "          'hard': 1,\n",
      "          'core': 1,\n",
      "          'fans': 1,\n",
      "          'theres': 1,\n",
      "          'little': 1,\n",
      "          'mania': 1,\n",
      "          'display': 1,\n",
      "          'recommend': 1,\n",
      "          'movie': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'nthe': 1,\n",
      "          'film': 1,\n",
      "          'starts': 1,\n",
      "          'promisingly': 1,\n",
      "          'well': 1,\n",
      "          'executed': 1,\n",
      "          'shopping': 1,\n",
      "          'mall': 1,\n",
      "          'set': 1,\n",
      "          'pistols': 1,\n",
      "          'problem': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'rate': 1,\n",
      "          'soundtrack': 1,\n",
      "          'yes': 1,\n",
      "          'laughed': 1,\n",
      "          'times': 1,\n",
      "          'ngreens': 1,\n",
      "          'flummoxing': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'psychotic': 1,\n",
      "          'ramblings': 1,\n",
      "          'draw': 1,\n",
      "          'music': 1,\n",
      "          'eat': 1,\n",
      "          'daddy': 1,\n",
      "          'like': 1,\n",
      "          'sausages': 1,\n",
      "          'repeatedly': 1,\n",
      "          'shown': 1,\n",
      "          'trailer': 1,\n",
      "          'inspired': 1,\n",
      "          'comedy': 1,\n",
      "          'nbut': 1,\n",
      "          'whats': 1,\n",
      "          'funny': 1,\n",
      "          'paraplegic': 1,\n",
      "          'girlfriend': 1,\n",
      "          'turned': 1,\n",
      "          'legs': 1,\n",
      "          'caned': 1,\n",
      "          'injury': 1,\n",
      "          'results': 1,\n",
      "          'exposed': 1,\n",
      "          'kneecap': 1,\n",
      "          'na': 1,\n",
      "          'baby': 1,\n",
      "          'delivery': 1,\n",
      "          'bit': 1,\n",
      "          'shows': 1,\n",
      "          'groaninducing': 1,\n",
      "          'promise': 1,\n",
      "          'blood': 1,\n",
      "          'splattered': 1,\n",
      "          'coagulate': 1,\n",
      "          'laughs': 1,\n",
      "          'nyounger': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'brother': 1,\n",
      "          'freddys': 1,\n",
      "          'internment': 1,\n",
      "          'institute': 1,\n",
      "          'sexually': 1,\n",
      "          'abused': 1,\n",
      "          'children': 1,\n",
      "          'nothing': 1,\n",
      "          'confirm': 1,\n",
      "          'ones': 1,\n",
      "          'worst': 1,\n",
      "          'fears': 1,\n",
      "          'regarding': 1,\n",
      "          'title': 1,\n",
      "          'infamous': 1,\n",
      "          'handling': 1,\n",
      "          'real': 1,\n",
      "          'horse': 1,\n",
      "          'nearly': 1,\n",
      "          'shocking': 1,\n",
      "          'seem': 1,\n",
      "          'sense': 1,\n",
      "          'nby': 1,\n",
      "          'repeats': 1,\n",
      "          'gag': 1,\n",
      "          'elephant': 1,\n",
      "          'overall': 1,\n",
      "          'effect': 1,\n",
      "          'numbness': 1,\n",
      "          'admirable': 1,\n",
      "          'result': 1,\n",
      "          'depicting': 1,\n",
      "          'harm': 1,\n",
      "          'demeaning': 1,\n",
      "          'childs': 1,\n",
      "          'self': 1,\n",
      "          'esteem': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'noisy': 1,\n",
      "          'nrip': 1,\n",
      "          'thinking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nothing': 6,\n",
      "          'ho': 6,\n",
      "          'much': 5,\n",
      "          'comedy': 5,\n",
      "          'ado': 4,\n",
      "          'nthe': 4,\n",
      "          'shakespeare': 3,\n",
      "          'shakespeares': 3,\n",
      "          'nget': 3,\n",
      "          'nho': 3,\n",
      "          'among': 2,\n",
      "          'english': 2,\n",
      "          'taste': 2,\n",
      "          'film': 2,\n",
      "          'modern': 2,\n",
      "          'time': 2,\n",
      "          'get': 2,\n",
      "          'clever': 2,\n",
      "          'im': 2,\n",
      "          'two': 2,\n",
      "          'cinema': 2,\n",
      "          'movie': 2,\n",
      "          'going': 2,\n",
      "          'nbut': 2,\n",
      "          'boy': 2,\n",
      "          'one': 2,\n",
      "          'ni': 2,\n",
      "          'ntheres': 2,\n",
      "          'awfully': 2,\n",
      "          'wrong': 2,\n",
      "          'problem': 2,\n",
      "          'something': 2,\n",
      "          'nah': 1,\n",
      "          'sweet': 1,\n",
      "          'irony': 1,\n",
      "          'nits': 1,\n",
      "          'accepted': 1,\n",
      "          'wisdom': 1,\n",
      "          'circles': 1,\n",
      "          'literature': 1,\n",
      "          'nuts': 1,\n",
      "          'mainly': 1,\n",
      "          'whenever': 1,\n",
      "          'critic': 1,\n",
      "          'knocks': 1,\n",
      "          'ignorance': 1,\n",
      "          'nhe': 1,\n",
      "          'doesnt': 1,\n",
      "          'understand': 1,\n",
      "          'hear': 1,\n",
      "          'say': 1,\n",
      "          'bards': 1,\n",
      "          'work': 1,\n",
      "          'apparently': 1,\n",
      "          'beyond': 1,\n",
      "          'criticism': 1,\n",
      "          'nwhat': 1,\n",
      "          'load': 1,\n",
      "          'old': 1,\n",
      "          'cobblers': 1,\n",
      "          'nif': 1,\n",
      "          'arbiters': 1,\n",
      "          'public': 1,\n",
      "          'think': 1,\n",
      "          'kenneth': 1,\n",
      "          'branaughs': 1,\n",
      "          'sense': 1,\n",
      "          'word': 1,\n",
      "          'life': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'john': 1,\n",
      "          'waters': 1,\n",
      "          'nwhatever': 1,\n",
      "          'njust': 1,\n",
      "          'real': 1,\n",
      "          'witty': 1,\n",
      "          'risky': 1,\n",
      "          'nand': 1,\n",
      "          'banish': 1,\n",
      "          'nonsense': 1,\n",
      "          'belongs': 1,\n",
      "          'ndrama': 1,\n",
      "          'tragedy': 1,\n",
      "          'strength': 1,\n",
      "          'nto': 1,\n",
      "          'sensibilities': 1,\n",
      "          'stick': 1,\n",
      "          'mud': 1,\n",
      "          'resonates': 1,\n",
      "          'spark': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nno': 1,\n",
      "          'kidding': 1,\n",
      "          'ranks': 1,\n",
      "          'embarrassing': 1,\n",
      "          'hours': 1,\n",
      "          'ever': 1,\n",
      "          'spent': 1,\n",
      "          '20': 1,\n",
      "          'years': 1,\n",
      "          'thing': 1,\n",
      "          'stopped': 1,\n",
      "          'walking': 1,\n",
      "          'loyalty': 1,\n",
      "          'lady': 1,\n",
      "          'friend': 1,\n",
      "          'day': 1,\n",
      "          'hadnt': 1,\n",
      "          'seen': 1,\n",
      "          'ages': 1,\n",
      "          'owe': 1,\n",
      "          'wont': 1,\n",
      "          'spend': 1,\n",
      "          'plot': 1,\n",
      "          'nbasically': 1,\n",
      "          'follow': 1,\n",
      "          'trials': 1,\n",
      "          'tribulations': 1,\n",
      "          'wouldbe': 1,\n",
      "          'couples': 1,\n",
      "          'young': 1,\n",
      "          'older': 1,\n",
      "          'dark': 1,\n",
      "          'treachery': 1,\n",
      "          'amongst': 1,\n",
      "          'everyone': 1,\n",
      "          'jolly': 1,\n",
      "          'youd': 1,\n",
      "          'hardly': 1,\n",
      "          'know': 1,\n",
      "          'nmind': 1,\n",
      "          'theres': 1,\n",
      "          'basic': 1,\n",
      "          'story': 1,\n",
      "          'ngood': 1,\n",
      "          'romantic': 1,\n",
      "          'comedies': 1,\n",
      "          'based': 1,\n",
      "          'similar': 1,\n",
      "          'premises': 1,\n",
      "          'abound': 1,\n",
      "          'nnothing': 1,\n",
      "          'cast': 1,\n",
      "          'either': 1,\n",
      "          'nbranaugh': 1,\n",
      "          'emma': 1,\n",
      "          'thompson': 1,\n",
      "          'denzel': 1,\n",
      "          'washington': 1,\n",
      "          'talented': 1,\n",
      "          'performers': 1,\n",
      "          'script': 1,\n",
      "          'accurately': 1,\n",
      "          'original': 1,\n",
      "          'text': 1,\n",
      "          'nlight': 1,\n",
      "          'shouldnt': 1,\n",
      "          'complex': 1,\n",
      "          'nyet': 1,\n",
      "          'wrapped': 1,\n",
      "          'elizabethan': 1,\n",
      "          'dialogue': 1,\n",
      "          'becomes': 1,\n",
      "          'difficult': 1,\n",
      "          'comprehend': 1,\n",
      "          'nfor': 1,\n",
      "          'alone': 1,\n",
      "          'audiences': 1,\n",
      "          'unschooled': 1,\n",
      "          'search': 1,\n",
      "          'good': 1,\n",
      "          'undemanding': 1,\n",
      "          'laugh': 1,\n",
      "          'laughs': 1,\n",
      "          'escape': 1,\n",
      "          'belly': 1,\n",
      "          'brought': 1,\n",
      "          'gloriously': 1,\n",
      "          'inept': 1,\n",
      "          'performance': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'actor': 1,\n",
      "          'miscast': 1,\n",
      "          'jealous': 1,\n",
      "          'halfbrother': 1,\n",
      "          'dissected': 1,\n",
      "          'understood': 1,\n",
      "          'boils': 1,\n",
      "          'stuff': 1,\n",
      "          'goddamn': 1,\n",
      "          'lame': 1,\n",
      "          'nthis': 1,\n",
      "          'clean': 1,\n",
      "          'nice': 1,\n",
      "          'corny': 1,\n",
      "          'devoid': 1,\n",
      "          'danger': 1,\n",
      "          'leaves': 1,\n",
      "          'viewer': 1,\n",
      "          'totally': 1,\n",
      "          'cold': 1,\n",
      "          'likes': 1,\n",
      "          'girl': 1,\n",
      "          'men': 1,\n",
      "          'klutzes': 1,\n",
      "          'shes': 1,\n",
      "          'clumsy': 1,\n",
      "          'noh': 1,\n",
      "          'please': 1,\n",
      "          'wit': 1,\n",
      "          'somewhere': 1,\n",
      "          'told': 1,\n",
      "          'call': 1,\n",
      "          'pretentious': 1,\n",
      "          'nsomething': 1,\n",
      "          'lightweight': 1,\n",
      "          'striving': 1,\n",
      "          'sophisticated': 1,\n",
      "          'wordplay': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'cringeworthy': 1,\n",
      "          'nwatching': 1,\n",
      "          'patrons': 1,\n",
      "          'around': 1,\n",
      "          'collapse': 1,\n",
      "          'laughter': 1,\n",
      "          'made': 1,\n",
      "          'weird': 1,\n",
      "          'experience': 1,\n",
      "          'ncomedy': 1,\n",
      "          'nbah': 1,\n",
      "          'humbug': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'film': 8,\n",
      "          'drug': 8,\n",
      "          'grace': 7,\n",
      "          'one': 5,\n",
      "          'smoking': 4,\n",
      "          'war': 4,\n",
      "          'business': 4,\n",
      "          'finds': 4,\n",
      "          'matthew': 4,\n",
      "          'go': 4,\n",
      "          'becomes': 4,\n",
      "          'locals': 3,\n",
      "          'theme': 3,\n",
      "          'completely': 3,\n",
      "          'becoming': 3,\n",
      "          'message': 3,\n",
      "          'drugs': 3,\n",
      "          'public': 3,\n",
      "          'something': 3,\n",
      "          'husband': 3,\n",
      "          'widow': 3,\n",
      "          'house': 3,\n",
      "          'london': 3,\n",
      "          'dealer': 3,\n",
      "          'formula': 2,\n",
      "          'feel': 2,\n",
      "          'good': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'like': 2,\n",
      "          'thin': 2,\n",
      "          'story': 2,\n",
      "          'nit': 2,\n",
      "          'quaint': 2,\n",
      "          'pot': 2,\n",
      "          'legalized': 2,\n",
      "          'first': 2,\n",
      "          'long': 2,\n",
      "          'overdue': 2,\n",
      "          'total': 2,\n",
      "          'far': 2,\n",
      "          'hope': 2,\n",
      "          'americas': 2,\n",
      "          'offers': 2,\n",
      "          'get': 2,\n",
      "          'vietnam': 2,\n",
      "          'action': 2,\n",
      "          'weed': 2,\n",
      "          'never': 2,\n",
      "          'nthere': 2,\n",
      "          'police': 2,\n",
      "          'village': 2,\n",
      "          'middleaged': 2,\n",
      "          'woman': 2,\n",
      "          'brenda': 2,\n",
      "          'blethyn': 2,\n",
      "          'soon': 2,\n",
      "          'enormous': 2,\n",
      "          'old': 2,\n",
      "          'taking': 2,\n",
      "          'bankrupt': 2,\n",
      "          'husbands': 2,\n",
      "          'affair': 2,\n",
      "          'honey': 2,\n",
      "          'makes': 2,\n",
      "          'help': 2,\n",
      "          'best': 2,\n",
      "          'decides': 2,\n",
      "          'plants': 2,\n",
      "          'way': 2,\n",
      "          'live': 2,\n",
      "          'enough': 2,\n",
      "          'nicky': 2,\n",
      "          'instead': 2,\n",
      "          'jail': 2,\n",
      "          'notting': 2,\n",
      "          'hill': 2,\n",
      "          'figure': 2,\n",
      "          'silly': 2,\n",
      "          'another': 1,\n",
      "          'quirky': 1,\n",
      "          'comedy': 1,\n",
      "          'british': 1,\n",
      "          'isles': 1,\n",
      "          'much': 1,\n",
      "          'waking': 1,\n",
      "          'ned': 1,\n",
      "          'devine': 1,\n",
      "          'host': 1,\n",
      "          'popular': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'movies': 1,\n",
      "          'turned': 1,\n",
      "          'nifty': 1,\n",
      "          'profit': 1,\n",
      "          'line': 1,\n",
      "          'filled': 1,\n",
      "          'likable': 1,\n",
      "          'establishment': 1,\n",
      "          'types': 1,\n",
      "          'living': 1,\n",
      "          'town': 1,\n",
      "          'tolerant': 1,\n",
      "          'vicars': 1,\n",
      "          'policemen': 1,\n",
      "          'plenty': 1,\n",
      "          'eccentrics': 1,\n",
      "          'stick': 1,\n",
      "          'together': 1,\n",
      "          'thick': 1,\n",
      "          'strength': 1,\n",
      "          'lies': 1,\n",
      "          'rational': 1,\n",
      "          'since': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'dangerous': 1,\n",
      "          'drinking': 1,\n",
      "          'alcohol': 1,\n",
      "          'tolerable': 1,\n",
      "          'hour': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'absurd': 1,\n",
      "          'consider': 1,\n",
      "          'anything': 1,\n",
      "          'sitcom': 1,\n",
      "          'fluff': 1,\n",
      "          'gone': 1,\n",
      "          'bananas': 1,\n",
      "          'nbut': 1,\n",
      "          'decriminalization': 1,\n",
      "          'certain': 1,\n",
      "          'target': 1,\n",
      "          'allows': 1,\n",
      "          'least': 1,\n",
      "          'viewed': 1,\n",
      "          'containing': 1,\n",
      "          'pertinent': 1,\n",
      "          'nits': 1,\n",
      "          'especially': 1,\n",
      "          'appropriate': 1,\n",
      "          'nowadays': 1,\n",
      "          'considering': 1,\n",
      "          'escalated': 1,\n",
      "          'colombia': 1,\n",
      "          'failure': 1,\n",
      "          'law': 1,\n",
      "          'enforcement': 1,\n",
      "          'methods': 1,\n",
      "          'future': 1,\n",
      "          'ended': 1,\n",
      "          'causing': 1,\n",
      "          'jails': 1,\n",
      "          'overcrowded': 1,\n",
      "          'nonviolent': 1,\n",
      "          'prisoners': 1,\n",
      "          'zero': 1,\n",
      "          'curtailing': 1,\n",
      "          'usage': 1,\n",
      "          'supply': 1,\n",
      "          'nbillions': 1,\n",
      "          'dollars': 1,\n",
      "          'allocated': 1,\n",
      "          'congress': 1,\n",
      "          'officially': 1,\n",
      "          'involved': 1,\n",
      "          'colombian': 1,\n",
      "          'civil': 1,\n",
      "          'backing': 1,\n",
      "          'corrupt': 1,\n",
      "          'government': 1,\n",
      "          'remember': 1,\n",
      "          'idea': 1,\n",
      "          'military': 1,\n",
      "          'might': 1,\n",
      "          'could': 1,\n",
      "          'stop': 1,\n",
      "          'cocaine': 1,\n",
      "          'marijuana': 1,\n",
      "          'harvests': 1,\n",
      "          'country': 1,\n",
      "          'neverything': 1,\n",
      "          'proposed': 1,\n",
      "          'smacks': 1,\n",
      "          'scenario': 1,\n",
      "          'closer': 1,\n",
      "          'home': 1,\n",
      "          'probably': 1,\n",
      "          'awaits': 1,\n",
      "          'effort': 1,\n",
      "          'futile': 1,\n",
      "          'result': 1,\n",
      "          'films': 1,\n",
      "          'mild': 1,\n",
      "          'showing': 1,\n",
      "          'squares': 1,\n",
      "          'getting': 1,\n",
      "          'finding': 1,\n",
      "          'acceptable': 1,\n",
      "          'accepted': 1,\n",
      "          '40': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'acceptance': 1,\n",
      "          'better': 1,\n",
      "          'received': 1,\n",
      "          'late': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'distinguishing': 1,\n",
      "          'educate': 1,\n",
      "          'rather': 1,\n",
      "          'making': 1,\n",
      "          'matter': 1,\n",
      "          'altogether': 1,\n",
      "          'opens': 1,\n",
      "          'cornish': 1,\n",
      "          'seaside': 1,\n",
      "          'funeral': 1,\n",
      "          'fell': 1,\n",
      "          'airplane': 1,\n",
      "          'evidently': 1,\n",
      "          'committing': 1,\n",
      "          'suicide': 1,\n",
      "          'bigger': 1,\n",
      "          'bastard': 1,\n",
      "          'imagined': 1,\n",
      "          'nhe': 1,\n",
      "          'left': 1,\n",
      "          'stack': 1,\n",
      "          'bills': 1,\n",
      "          'put': 1,\n",
      "          'without': 1,\n",
      "          'knowledge': 1,\n",
      "          'comfortable': 1,\n",
      "          '300': 1,\n",
      "          'year': 1,\n",
      "          'collateral': 1,\n",
      "          'failed': 1,\n",
      "          'venture': 1,\n",
      "          'second': 1,\n",
      "          'mortgage': 1,\n",
      "          'marketable': 1,\n",
      "          'skills': 1,\n",
      "          'pay': 1,\n",
      "          'back': 1,\n",
      "          'debts': 1,\n",
      "          'prevent': 1,\n",
      "          'losing': 1,\n",
      "          'homeless': 1,\n",
      "          'nshe': 1,\n",
      "          'also': 1,\n",
      "          'knows': 1,\n",
      "          'sophisticated': 1,\n",
      "          'quick': 1,\n",
      "          'nwhat': 1,\n",
      "          'doubly': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'conferring': 1,\n",
      "          'tiger': 1,\n",
      "          'bed': 1,\n",
      "          'refrained': 1,\n",
      "          'sex': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'try': 1,\n",
      "          'creditors': 1,\n",
      "          'swoop': 1,\n",
      "          'vultures': 1,\n",
      "          'nher': 1,\n",
      "          'gardener': 1,\n",
      "          'handyman': 1,\n",
      "          'ferguson': 1,\n",
      "          'stay': 1,\n",
      "          'despite': 1,\n",
      "          'last': 1,\n",
      "          'check': 1,\n",
      "          'bouncing': 1,\n",
      "          'nsince': 1,\n",
      "          'expert': 1,\n",
      "          'amateur': 1,\n",
      "          'horticulturist': 1,\n",
      "          'convinces': 1,\n",
      "          'revive': 1,\n",
      "          'hemp': 1,\n",
      "          'grows': 1,\n",
      "          'private': 1,\n",
      "          'use': 1,\n",
      "          'two': 1,\n",
      "          'see': 1,\n",
      "          'possibly': 1,\n",
      "          'big': 1,\n",
      "          'opportunity': 1,\n",
      "          'works': 1,\n",
      "          'miracles': 1,\n",
      "          'turn': 1,\n",
      "          'highquality': 1,\n",
      "          'stuff': 1,\n",
      "          'nfor': 1,\n",
      "          'save': 1,\n",
      "          'debt': 1,\n",
      "          'scotsman': 1,\n",
      "          'chance': 1,\n",
      "          'continue': 1,\n",
      "          'beautiful': 1,\n",
      "          'earn': 1,\n",
      "          'money': 1,\n",
      "          'marry': 1,\n",
      "          'fisherman': 1,\n",
      "          'girlfriend': 1,\n",
      "          'valerie': 1,\n",
      "          'let': 1,\n",
      "          'illegal': 1,\n",
      "          'activities': 1,\n",
      "          'undisturbed': 1,\n",
      "          'sergeant': 1,\n",
      "          'campbell': 1,\n",
      "          'pretends': 1,\n",
      "          'notice': 1,\n",
      "          'bright': 1,\n",
      "          'lights': 1,\n",
      "          'graces': 1,\n",
      "          'greenhouse': 1,\n",
      "          'friendly': 1,\n",
      "          'vicar': 1,\n",
      "          'phillips': 1,\n",
      "          'counsels': 1,\n",
      "          'wisdom': 1,\n",
      "          'cant': 1,\n",
      "          'control': 1,\n",
      "          'doctor': 1,\n",
      "          'clunes': 1,\n",
      "          'enjoys': 1,\n",
      "          'recreation': 1,\n",
      "          'incredulous': 1,\n",
      "          'score': 1,\n",
      "          'bigtime': 1,\n",
      "          'pregnant': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'end': 1,\n",
      "          'interesting': 1,\n",
      "          'note': 1,\n",
      "          'thinks': 1,\n",
      "          'grass': 1,\n",
      "          'bad': 1,\n",
      "          'scene': 1,\n",
      "          'portobello': 1,\n",
      "          'road': 1,\n",
      "          'section': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'dressed': 1,\n",
      "          'place': 1,\n",
      "          'white': 1,\n",
      "          'dress': 1,\n",
      "          'hat': 1,\n",
      "          'would': 1,\n",
      "          'wear': 1,\n",
      "          'tea': 1,\n",
      "          'party': 1,\n",
      "          'cornwall': 1,\n",
      "          'streets': 1,\n",
      "          'looking': 1,\n",
      "          'make': 1,\n",
      "          'deal': 1,\n",
      "          'hokey': 1,\n",
      "          'descended': 1,\n",
      "          'huge': 1,\n",
      "          'black': 1,\n",
      "          'hole': 1,\n",
      "          'whereby': 1,\n",
      "          'recovered': 1,\n",
      "          'dignity': 1,\n",
      "          'moves': 1,\n",
      "          'mode': 1,\n",
      "          'whereas': 1,\n",
      "          'beats': 1,\n",
      "          'odds': 1,\n",
      "          'failing': 1,\n",
      "          'survive': 1,\n",
      "          'meets': 1,\n",
      "          'international': 1,\n",
      "          'frenchman': 1,\n",
      "          'tcheky': 1,\n",
      "          'karyo': 1,\n",
      "          'seen': 1,\n",
      "          'threatening': 1,\n",
      "          'cut': 1,\n",
      "          'fingers': 1,\n",
      "          'later': 1,\n",
      "          'partner': 1,\n",
      "          'millionaire': 1,\n",
      "          'writes': 1,\n",
      "          'selling': 1,\n",
      "          'fiction': 1,\n",
      "          'book': 1,\n",
      "          'experiences': 1,\n",
      "          'thereby': 1,\n",
      "          'celebrity': 1,\n",
      "          'nthings': 1,\n",
      "          'work': 1,\n",
      "          'ridiculous': 1,\n",
      "          'breakdown': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'matronly': 1,\n",
      "          'suddenly': 1,\n",
      "          'merely': 1,\n",
      "          'cartoon': 1,\n",
      "          'flesh': 1,\n",
      "          'blood': 1,\n",
      "          'lot': 1,\n",
      "          'giggles': 1,\n",
      "          'come': 1,\n",
      "          'forth': 1,\n",
      "          'acting': 1,\n",
      "          'performance': 1,\n",
      "          'breathe': 1,\n",
      "          'air': 1,\n",
      "          'comes': 1,\n",
      "          'belated': 1,\n",
      "          'finale': 1,\n",
      "          'drones': 1,\n",
      "          'transparently': 1,\n",
      "          'gratuitous': 1,\n",
      "          'upbeat': 1,\n",
      "          'tone': 1,\n",
      "          'audience': 1,\n",
      "          'sweet': 1,\n",
      "          'lady': 1,\n",
      "          'succeeded': 1,\n",
      "          'nthis': 1,\n",
      "          'unhip': 1,\n",
      "          'leaves': 1,\n",
      "          'impression': 1,\n",
      "          'growing': 1,\n",
      "          'tolerated': 1,\n",
      "          'naughty': 1,\n",
      "          'widows': 1,\n",
      "          'screwed': 1,\n",
      "          'terrible': 1,\n",
      "          'former': 1,\n",
      "          'must': 1,\n",
      "          'order': 1,\n",
      "          'remain': 1,\n",
      "          'destitute': 1,\n",
      "          'nummm': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'kill': 4,\n",
      "          'trying': 4,\n",
      "          'danza': 3,\n",
      "          'whos': 3,\n",
      "          'sister': 3,\n",
      "          'thing': 3,\n",
      "          'really': 3,\n",
      "          'love': 2,\n",
      "          'time': 2,\n",
      "          'tony': 2,\n",
      "          'relationship': 2,\n",
      "          'well': 2,\n",
      "          'danzas': 2,\n",
      "          'confusing': 2,\n",
      "          'ni': 2,\n",
      "          'crime': 2,\n",
      "          'little': 2,\n",
      "          'works': 2,\n",
      "          'nbut': 2,\n",
      "          'film': 2,\n",
      "          'nthe': 2,\n",
      "          'story': 2,\n",
      "          'guy': 2,\n",
      "          'half': 2,\n",
      "          'starts': 1,\n",
      "          'aimlessly': 1,\n",
      "          'gets': 1,\n",
      "          'progressively': 1,\n",
      "          'less': 1,\n",
      "          'coherent': 1,\n",
      "          'passes': 1,\n",
      "          'nat': 1,\n",
      "          'outset': 1,\n",
      "          'appears': 1,\n",
      "          'illegal': 1,\n",
      "          'distributor': 1,\n",
      "          'guns': 1,\n",
      "          'establish': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'woman': 1,\n",
      "          'ndanza': 1,\n",
      "          'sets': 1,\n",
      "          'double': 1,\n",
      "          'date': 1,\n",
      "          'collegue': 1,\n",
      "          'neverything': 1,\n",
      "          'seems': 1,\n",
      "          'going': 1,\n",
      "          'accidentally': 1,\n",
      "          'dies': 1,\n",
      "          'falling': 1,\n",
      "          'set': 1,\n",
      "          'stairs': 1,\n",
      "          'nmuch': 1,\n",
      "          'confusion': 1,\n",
      "          'mahem': 1,\n",
      "          'ensues': 1,\n",
      "          'death': 1,\n",
      "          'covered': 1,\n",
      "          'associates': 1,\n",
      "          'begin': 1,\n",
      "          'emerge': 1,\n",
      "          'one': 1,\n",
      "          'another': 1,\n",
      "          'nsound': 1,\n",
      "          'nit': 1,\n",
      "          'think': 1,\n",
      "          'filmmakers': 1,\n",
      "          'take': 1,\n",
      "          'standard': 1,\n",
      "          'throw': 1,\n",
      "          'humour': 1,\n",
      "          'levity': 1,\n",
      "          'nin': 1,\n",
      "          'respects': 1,\n",
      "          'majority': 1,\n",
      "          'convoluted': 1,\n",
      "          'mess': 1,\n",
      "          'ncharacters': 1,\n",
      "          'keep': 1,\n",
      "          'popping': 1,\n",
      "          'explanation': 1,\n",
      "          'demanding': 1,\n",
      "          'money': 1,\n",
      "          'deals': 1,\n",
      "          'occur': 1,\n",
      "          'offscreen': 1,\n",
      "          'aspect': 1,\n",
      "          'actually': 1,\n",
      "          'budding': 1,\n",
      "          'dead': 1,\n",
      "          'womans': 1,\n",
      "          'devoted': 1,\n",
      "          'part': 1,\n",
      "          'never': 1,\n",
      "          'become': 1,\n",
      "          'familiar': 1,\n",
      "          'characters': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'happens': 1,\n",
      "          'nwell': 1,\n",
      "          'didnt': 1,\n",
      "          'least': 1,\n",
      "          'none': 1,\n",
      "          'give': 1,\n",
      "          'complete': 1,\n",
      "          'departure': 1,\n",
      "          'nheres': 1,\n",
      "          'many': 1,\n",
      "          'sitcom': 1,\n",
      "          'roles': 1,\n",
      "          'ingrained': 1,\n",
      "          'consciousness': 1,\n",
      "          'nice': 1,\n",
      "          'always': 1,\n",
      "          'right': 1,\n",
      "          'nhere': 1,\n",
      "          'plays': 1,\n",
      "          'man': 1,\n",
      "          'looking': 1,\n",
      "          'means': 1,\n",
      "          'needs': 1,\n",
      "          'order': 1,\n",
      "          'save': 1,\n",
      "          'skin': 1,\n",
      "          'impressed': 1,\n",
      "          'performance': 1,\n",
      "          'within': 1,\n",
      "          'minutes': 1,\n",
      "          'start': 1,\n",
      "          'forgotten': 1,\n",
      "          'goodguy': 1,\n",
      "          'persona': 1,\n",
      "          'nmichael': 1,\n",
      "          'madsen': 1,\n",
      "          'also': 1,\n",
      "          'good': 1,\n",
      "          'associate': 1,\n",
      "          'spends': 1,\n",
      "          'buddying': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'exactly': 1,\n",
      "          'linear': 1,\n",
      "          'storyline': 1,\n",
      "          'n': 1,\n",
      "          'praised': 1,\n",
      "          'something': 1,\n",
      "          'different': 1,\n",
      "          'worn': 1,\n",
      "          'genre': 1,\n",
      "          'bad': 1,\n",
      "          'doesnt': 1,\n",
      "          'add': 1,\n",
      "          'much': 1,\n",
      "          'stars': 1,\n",
      "          'deserved': 1,\n",
      "          'better': 1,\n",
      "          'audience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 4,\n",
      "          'song': 4,\n",
      "          'billy': 4,\n",
      "          'beatles': 3,\n",
      "          'thats': 3,\n",
      "          'n': 3,\n",
      "          'know': 3,\n",
      "          'bad': 3,\n",
      "          'sgt': 3,\n",
      "          'npeppers': 3,\n",
      "          'lonely': 3,\n",
      "          'hearts': 3,\n",
      "          'band': 3,\n",
      "          'world': 3,\n",
      "          'one': 3,\n",
      "          'nbut': 3,\n",
      "          'strawberry': 3,\n",
      "          'fields': 3,\n",
      "          '70s': 3,\n",
      "          'leaving': 3,\n",
      "          'take': 2,\n",
      "          'songs': 2,\n",
      "          'nwell': 2,\n",
      "          'true': 2,\n",
      "          'look': 2,\n",
      "          'years': 2,\n",
      "          'released': 2,\n",
      "          'find': 2,\n",
      "          'story': 2,\n",
      "          'made': 2,\n",
      "          'name': 2,\n",
      "          'movie': 2,\n",
      "          'rock': 2,\n",
      "          'doesnt': 2,\n",
      "          'home': 2,\n",
      "          'ni': 2,\n",
      "          'characters': 2,\n",
      "          'gets': 2,\n",
      "          'nthe': 2,\n",
      "          'really': 2,\n",
      "          'martin': 2,\n",
      "          'cooper': 2,\n",
      "          'mr': 2,\n",
      "          'singing': 2,\n",
      "          'creepy': 2,\n",
      "          'robots': 2,\n",
      "          'horrible': 2,\n",
      "          'thing': 2,\n",
      "          'poor': 2,\n",
      "          'nits': 2,\n",
      "          'found': 2,\n",
      "          'nin': 2,\n",
      "          'whether': 1,\n",
      "          'nobody': 1,\n",
      "          'wants': 1,\n",
      "          'see': 1,\n",
      "          'bee': 1,\n",
      "          'gees': 1,\n",
      "          'fab': 1,\n",
      "          'fours': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'maybe': 1,\n",
      "          'nmaybe': 1,\n",
      "          'youre': 1,\n",
      "          'curious': 1,\n",
      "          'way': 1,\n",
      "          'hanky': 1,\n",
      "          'blow': 1,\n",
      "          'nose': 1,\n",
      "          'nyou': 1,\n",
      "          'nif': 1,\n",
      "          'case': 1,\n",
      "          'rejoice': 1,\n",
      "          'twenty': 1,\n",
      "          'ago': 1,\n",
      "          'today': 1,\n",
      "          'club': 1,\n",
      "          'unleashed': 1,\n",
      "          'thanks': 1,\n",
      "          'modern': 1,\n",
      "          'technological': 1,\n",
      "          'advances': 1,\n",
      "          'retched': 1,\n",
      "          'piece': 1,\n",
      "          'filmmaking': 1,\n",
      "          'vhs': 1,\n",
      "          'nderived': 1,\n",
      "          'lyrics': 1,\n",
      "          'various': 1,\n",
      "          'tells': 1,\n",
      "          'fictitious': 1,\n",
      "          'popular': 1,\n",
      "          'album': 1,\n",
      "          '1967': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'eleven': 1,\n",
      "          'later': 1,\n",
      "          'gibbs': 1,\n",
      "          'three': 1,\n",
      "          'become': 1,\n",
      "          'peter': 1,\n",
      "          'frampton': 1,\n",
      "          'shears': 1,\n",
      "          'aside': 1,\n",
      "          'correlate': 1,\n",
      "          'nand': 1,\n",
      "          'oh': 1,\n",
      "          'joy': 1,\n",
      "          'lovely': 1,\n",
      "          'audience': 1,\n",
      "          'theyd': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'least': 1,\n",
      "          'actually': 1,\n",
      "          'people': 1,\n",
      "          'whereas': 1,\n",
      "          'sandy': 1,\n",
      "          'farina': 1,\n",
      "          'place': 1,\n",
      "          'called': 1,\n",
      "          'debate': 1,\n",
      "          'quite': 1,\n",
      "          'futile': 1,\n",
      "          'comes': 1,\n",
      "          'film': 1,\n",
      "          'offer': 1,\n",
      "          'feast': 1,\n",
      "          'horrid': 1,\n",
      "          'cover': 1,\n",
      "          'tunes': 1,\n",
      "          'embarrassing': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'george': 1,\n",
      "          'burns': 1,\n",
      "          'nsteve': 1,\n",
      "          'nalice': 1,\n",
      "          'uuuuuuggggggglllllllyyyyy': 1,\n",
      "          'fashion': 1,\n",
      "          'faces': 1,\n",
      "          'ncheck': 1,\n",
      "          'please': 1,\n",
      "          'plot': 1,\n",
      "          'bit': 1,\n",
      "          'unclear': 1,\n",
      "          'npeople': 1,\n",
      "          'hair': 1,\n",
      "          'run': 1,\n",
      "          'around': 1,\n",
      "          'leisure': 1,\n",
      "          'suits': 1,\n",
      "          'engaging': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'sequences': 1,\n",
      "          'sick': 1,\n",
      "          'twisted': 1,\n",
      "          'makebelieve': 1,\n",
      "          'overly': 1,\n",
      "          'demented': 1,\n",
      "          'rogers': 1,\n",
      "          'nmean': 1,\n",
      "          'mustard': 1,\n",
      "          'frankie': 1,\n",
      "          'howerd': 1,\n",
      "          'somehow': 1,\n",
      "          'hold': 1,\n",
      "          'co': 1,\n",
      "          'instruments': 1,\n",
      "          'calling': 1,\n",
      "          'dr': 1,\n",
      "          'maxwell': 1,\n",
      "          'edison': 1,\n",
      "          'steve': 1,\n",
      "          'silver': 1,\n",
      "          'hammer': 1,\n",
      "          'outofkey': 1,\n",
      "          'voice': 1,\n",
      "          'sun': 1,\n",
      "          'king': 1,\n",
      "          'marvin': 1,\n",
      "          'sunk': 1,\n",
      "          'alice': 1,\n",
      "          'couple': 1,\n",
      "          'aid': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'guess': 1,\n",
      "          'heartland': 1,\n",
      "          'talent': 1,\n",
      "          'pretty': 1,\n",
      "          'nonexistent': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'classic': 1,\n",
      "          'sex': 1,\n",
      "          'drugs': 1,\n",
      "          'roll': 1,\n",
      "          'without': 1,\n",
      "          'love': 1,\n",
      "          'nshe': 1,\n",
      "          'sets': 1,\n",
      "          'dad': 1,\n",
      "          'mom': 1,\n",
      "          'mrs': 1,\n",
      "          'nfields': 1,\n",
      "          'nhey': 1,\n",
      "          'wan': 1,\n",
      "          'na': 1,\n",
      "          'cookie': 1,\n",
      "          'nall': 1,\n",
      "          'alone': 1,\n",
      "          'sing': 1,\n",
      "          'rendition': 1,\n",
      "          'shes': 1,\n",
      "          'accompanied': 1,\n",
      "          'getting': 1,\n",
      "          'lucy': 1,\n",
      "          'dianne': 1,\n",
      "          'steinberg': 1,\n",
      "          'nya': 1,\n",
      "          'diamond': 1,\n",
      "          'possessing': 1,\n",
      "          'girl': 1,\n",
      "          'hangs': 1,\n",
      "          'sky': 1,\n",
      "          'theres': 1,\n",
      "          'crazy': 1,\n",
      "          'chick': 1,\n",
      "          'soprano': 1,\n",
      "          'roof': 1,\n",
      "          'building': 1,\n",
      "          'next': 1,\n",
      "          'bus': 1,\n",
      "          'stop': 1,\n",
      "          'assume': 1,\n",
      "          'movies': 1,\n",
      "          'make': 1,\n",
      "          'ya': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'ask': 1,\n",
      "          'unanswerable': 1,\n",
      "          'question': 1,\n",
      "          'hell': 1,\n",
      "          'thinking': 1,\n",
      "          'nnobody': 1,\n",
      "          'ever': 1,\n",
      "          'novelty': 1,\n",
      "          'examine': 1,\n",
      "          'ncarol': 1,\n",
      "          'channing': 1,\n",
      "          'robert': 1,\n",
      "          'palmer': 1,\n",
      "          'keith': 1,\n",
      "          'carradine': 1,\n",
      "          'theyre': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'irrelevant': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'meaning': 1,\n",
      "          'bellybutton': 1,\n",
      "          'lint': 1,\n",
      "          'although': 1,\n",
      "          'latter': 1,\n",
      "          'may': 1,\n",
      "          'interesting': 1,\n",
      "          'nwith': 1,\n",
      "          'recent': 1,\n",
      "          'onslaught': 1,\n",
      "          'nostalgia': 1,\n",
      "          'ice': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'storm': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'reissues': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'trilogy': 1,\n",
      "          'etc': 1,\n",
      "          'lets': 1,\n",
      "          'pray': 1,\n",
      "          'get': 1,\n",
      "          'special': 1,\n",
      "          '20th': 1,\n",
      "          'anniversary': 1,\n",
      "          'secondchance': 1,\n",
      "          'theaters': 1,\n",
      "          'words': 1,\n",
      "          'paul': 1,\n",
      "          'mccartney': 1,\n",
      "          'live': 1,\n",
      "          'let': 1,\n",
      "          'die': 1,\n",
      "          'fact': 1,\n",
      "          'bury': 1,\n",
      "          'still': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 19,\n",
      "          'one': 12,\n",
      "          'comet': 12,\n",
      "          'nthe': 9,\n",
      "          'much': 7,\n",
      "          'impact': 7,\n",
      "          'leder': 7,\n",
      "          'actually': 6,\n",
      "          'effects': 6,\n",
      "          'nbut': 5,\n",
      "          'na': 5,\n",
      "          'disaster': 5,\n",
      "          'nthis': 5,\n",
      "          'time': 5,\n",
      "          'audience': 5,\n",
      "          'could': 5,\n",
      "          'special': 5,\n",
      "          'plot': 5,\n",
      "          'ndeep': 4,\n",
      "          'also': 4,\n",
      "          'back': 4,\n",
      "          'nwell': 4,\n",
      "          'go': 4,\n",
      "          'bad': 4,\n",
      "          'people': 4,\n",
      "          'course': 4,\n",
      "          'fun': 4,\n",
      "          'actors': 4,\n",
      "          'characters': 4,\n",
      "          'year': 4,\n",
      "          'information': 4,\n",
      "          'nand': 4,\n",
      "          'emotional': 4,\n",
      "          'show': 4,\n",
      "          'hit': 4,\n",
      "          'action': 4,\n",
      "          'movie': 3,\n",
      "          'first': 3,\n",
      "          'films': 3,\n",
      "          'two': 3,\n",
      "          'watch': 3,\n",
      "          'drama': 3,\n",
      "          'good': 3,\n",
      "          'wood': 3,\n",
      "          'gets': 3,\n",
      "          'rittenhouse': 3,\n",
      "          'take': 3,\n",
      "          'yada': 3,\n",
      "          'surface': 3,\n",
      "          'nits': 3,\n",
      "          'know': 3,\n",
      "          'pace': 3,\n",
      "          'given': 3,\n",
      "          'isnt': 3,\n",
      "          'think': 3,\n",
      "          'earth': 3,\n",
      "          'note': 3,\n",
      "          'faces': 3,\n",
      "          'character': 3,\n",
      "          'doesnt': 2,\n",
      "          'really': 2,\n",
      "          'begins': 2,\n",
      "          'summer': 2,\n",
      "          'dantes': 2,\n",
      "          'peak': 2,\n",
      "          'came': 2,\n",
      "          'months': 2,\n",
      "          'released': 2,\n",
      "          'smart': 2,\n",
      "          'best': 2,\n",
      "          'ever': 2,\n",
      "          'wasted': 2,\n",
      "          'head': 2,\n",
      "          'may': 2,\n",
      "          'away': 2,\n",
      "          'armageddon': 2,\n",
      "          'nof': 2,\n",
      "          'watching': 2,\n",
      "          'anyone': 2,\n",
      "          'right': 2,\n",
      "          'like': 2,\n",
      "          'many': 2,\n",
      "          'nto': 2,\n",
      "          'entire': 2,\n",
      "          'implausibilities': 2,\n",
      "          'still': 2,\n",
      "          'rather': 2,\n",
      "          'human': 2,\n",
      "          'poorly': 2,\n",
      "          'thing': 2,\n",
      "          'gives': 2,\n",
      "          'star': 2,\n",
      "          'final': 2,\n",
      "          'fifteen': 2,\n",
      "          'minutes': 2,\n",
      "          'making': 2,\n",
      "          'sky': 2,\n",
      "          'sobieski': 2,\n",
      "          'car': 2,\n",
      "          'nothing': 2,\n",
      "          'heard': 2,\n",
      "          'jenny': 2,\n",
      "          'leoni': 2,\n",
      "          'nshe': 2,\n",
      "          'government': 2,\n",
      "          'involving': 2,\n",
      "          'james': 2,\n",
      "          'girl': 2,\n",
      "          'ellie': 2,\n",
      "          'nafter': 2,\n",
      "          'decides': 2,\n",
      "          'use': 2,\n",
      "          'nluckily': 2,\n",
      "          'spell': 2,\n",
      "          'nthey': 2,\n",
      "          'president': 2,\n",
      "          'freeman': 2,\n",
      "          'hours': 2,\n",
      "          'wants': 2,\n",
      "          'ones': 2,\n",
      "          'wont': 2,\n",
      "          'years': 2,\n",
      "          'humans': 2,\n",
      "          'come': 2,\n",
      "          'rest': 2,\n",
      "          'worth': 2,\n",
      "          'schell': 2,\n",
      "          'moment': 2,\n",
      "          'heartfelt': 2,\n",
      "          'shame': 2,\n",
      "          'else': 2,\n",
      "          'work': 2,\n",
      "          'mimi': 2,\n",
      "          'successful': 2,\n",
      "          'direction': 2,\n",
      "          'nher': 2,\n",
      "          'worse': 2,\n",
      "          'big': 2,\n",
      "          'screen': 2,\n",
      "          'blame': 2,\n",
      "          'us': 2,\n",
      "          'boring': 2,\n",
      "          'nwhat': 2,\n",
      "          'anyway': 2,\n",
      "          'going': 2,\n",
      "          'might': 2,\n",
      "          'cant': 2,\n",
      "          'miss': 2,\n",
      "          'done': 2,\n",
      "          'huge': 2,\n",
      "          'even': 2,\n",
      "          'land': 2,\n",
      "          'enough': 2,\n",
      "          'forgiveable': 2,\n",
      "          'water': 2,\n",
      "          'along': 2,\n",
      "          'comes': 2,\n",
      "          'none': 2,\n",
      "          'leders': 2,\n",
      "          'nleder': 2,\n",
      "          'moments': 2,\n",
      "          'another': 2,\n",
      "          'harlin': 2,\n",
      "          'shows': 2,\n",
      "          'coming': 2,\n",
      "          'space': 2,\n",
      "          'response': 2,\n",
      "          'tvs': 2,\n",
      "          'role': 2,\n",
      "          'presence': 2,\n",
      "          'successfully': 2,\n",
      "          'talented': 2,\n",
      "          'better': 2,\n",
      "          'worst': 2,\n",
      "          'warning': 1,\n",
      "          'spoilers': 1,\n",
      "          'included': 1,\n",
      "          'review': 1,\n",
      "          'make': 1,\n",
      "          'difference': 1,\n",
      "          'official': 1,\n",
      "          'season': 1,\n",
      "          'brings': 1,\n",
      "          'memories': 1,\n",
      "          '1997': 1,\n",
      "          'nremember': 1,\n",
      "          'february': 1,\n",
      "          'later': 1,\n",
      "          'volcano': 1,\n",
      "          'exhilirating': 1,\n",
      "          'seen': 1,\n",
      "          'latter': 1,\n",
      "          'incohesive': 1,\n",
      "          'mess': 1,\n",
      "          'defied': 1,\n",
      "          'logic': 1,\n",
      "          'talent': 1,\n",
      "          'deja': 1,\n",
      "          'vu': 1,\n",
      "          'competition': 1,\n",
      "          'unfortunately': 1,\n",
      "          'flick': 1,\n",
      "          'shy': 1,\n",
      "          'upcoming': 1,\n",
      "          'cometdisaster': 1,\n",
      "          'beginning': 1,\n",
      "          'july': 1,\n",
      "          'general': 1,\n",
      "          'reaction': 1,\n",
      "          'oppposed': 1,\n",
      "          'mine': 1,\n",
      "          'minority': 1,\n",
      "          'stood': 1,\n",
      "          'side': 1,\n",
      "          'deep': 1,\n",
      "          'began': 1,\n",
      "          'wonder': 1,\n",
      "          'mind': 1,\n",
      "          'napparently': 1,\n",
      "          'utterly': 1,\n",
      "          'baffles': 1,\n",
      "          'completely': 1,\n",
      "          'honest': 1,\n",
      "          'havent': 1,\n",
      "          'little': 1,\n",
      "          'life': 1,\n",
      "          'nvolcano': 1,\n",
      "          'wazoo': 1,\n",
      "          'contains': 1,\n",
      "          'cheap': 1,\n",
      "          'incredibly': 1,\n",
      "          'horrible': 1,\n",
      "          'constructed': 1,\n",
      "          'half': 1,\n",
      "          'bottom': 1,\n",
      "          'ranking': 1,\n",
      "          'slightly': 1,\n",
      "          'entertaining': 1,\n",
      "          'unnamed': 1,\n",
      "          'varies': 1,\n",
      "          'advanced': 1,\n",
      "          'technology': 1,\n",
      "          'sets': 1,\n",
      "          'future': 1,\n",
      "          'fire': 1,\n",
      "          'showing': 1,\n",
      "          'local': 1,\n",
      "          'theater': 1,\n",
      "          'pushing': 1,\n",
      "          '1993': 1,\n",
      "          'line': 1,\n",
      "          'students': 1,\n",
      "          'outside': 1,\n",
      "          'night': 1,\n",
      "          'peering': 1,\n",
      "          'telescopes': 1,\n",
      "          'dark': 1,\n",
      "          'namong': 1,\n",
      "          'leo': 1,\n",
      "          'biederman': 1,\n",
      "          'elijah': 1,\n",
      "          'sarah': 1,\n",
      "          'hotchner': 1,\n",
      "          'leelee': 1,\n",
      "          'nleo': 1,\n",
      "          'unknowingly': 1,\n",
      "          'discovers': 1,\n",
      "          'teacher': 1,\n",
      "          'sends': 1,\n",
      "          'photo': 1,\n",
      "          'unknown': 1,\n",
      "          'object': 1,\n",
      "          'astronomer': 1,\n",
      "          'able': 1,\n",
      "          'determine': 1,\n",
      "          'correct': 1,\n",
      "          'path': 1,\n",
      "          'distant': 1,\n",
      "          'seconds': 1,\n",
      "          'nhe': 1,\n",
      "          'races': 1,\n",
      "          'mail': 1,\n",
      "          'killed': 1,\n",
      "          'reckless': 1,\n",
      "          'accident': 1,\n",
      "          'passes': 1,\n",
      "          'nwe': 1,\n",
      "          'introduced': 1,\n",
      "          'lerner': 1,\n",
      "          'reporter': 1,\n",
      "          'msnbc': 1,\n",
      "          'handed': 1,\n",
      "          'job': 1,\n",
      "          'investigate': 1,\n",
      "          'possible': 1,\n",
      "          'coverup': 1,\n",
      "          'senator': 1,\n",
      "          'alan': 1,\n",
      "          'cromwell': 1,\n",
      "          'talks': 1,\n",
      "          'woman': 1,\n",
      "          'mentions': 1,\n",
      "          'affair': 1,\n",
      "          'named': 1,\n",
      "          'talking': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'internet': 1,\n",
      "          'help': 1,\n",
      "          'knows': 1,\n",
      "          'exactly': 1,\n",
      "          'certain': 1,\n",
      "          'looking': 1,\n",
      "          'ele': 1,\n",
      "          'nthat': 1,\n",
      "          'pretty': 1,\n",
      "          'darn': 1,\n",
      "          'guessing': 1,\n",
      "          'spelled': 1,\n",
      "          'nbefore': 1,\n",
      "          'push': 1,\n",
      "          'road': 1,\n",
      "          'meet': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'beck': 1,\n",
      "          'morgan': 1,\n",
      "          'nbeck': 1,\n",
      "          'recommends': 1,\n",
      "          'keep': 1,\n",
      "          'secret': 1,\n",
      "          '48': 1,\n",
      "          'confirm': 1,\n",
      "          'hold': 1,\n",
      "          'press': 1,\n",
      "          'conference': 1,\n",
      "          'nnaturally': 1,\n",
      "          'compensated': 1,\n",
      "          'offer': 1,\n",
      "          'front': 1,\n",
      "          'row': 1,\n",
      "          'seat': 1,\n",
      "          'chance': 1,\n",
      "          'question': 1,\n",
      "          'reveal': 1,\n",
      "          'public': 1,\n",
      "          'plans': 1,\n",
      "          'send': 1,\n",
      "          'massive': 1,\n",
      "          'spacecraft': 1,\n",
      "          'destroy': 1,\n",
      "          'arrive': 1,\n",
      "          'announce': 1,\n",
      "          'plan': 1,\n",
      "          'called': 1,\n",
      "          'ark': 1,\n",
      "          'hope': 1,\n",
      "          'survival': 1,\n",
      "          'computer': 1,\n",
      "          'select': 1,\n",
      "          '800': 1,\n",
      "          '000': 1,\n",
      "          'random': 1,\n",
      "          'nthese': 1,\n",
      "          'large': 1,\n",
      "          'cave': 1,\n",
      "          'underground': 1,\n",
      "          'kill': 1,\n",
      "          'race': 1,\n",
      "          'dust': 1,\n",
      "          'settle': 1,\n",
      "          'would': 1,\n",
      "          'longerapproximately': 1,\n",
      "          'ninety': 1,\n",
      "          'understand': 1,\n",
      "          'start': 1,\n",
      "          'standard': 1,\n",
      "          'procedures': 1,\n",
      "          'subplot': 1,\n",
      "          'mentioning': 1,\n",
      "          'njenny': 1,\n",
      "          'father': 1,\n",
      "          'jason': 1,\n",
      "          'maximilian': 1,\n",
      "          'touching': 1,\n",
      "          'relationship': 1,\n",
      "          'forms': 1,\n",
      "          'impending': 1,\n",
      "          'doom': 1,\n",
      "          'nnow': 1,\n",
      "          'title': 1,\n",
      "          'alone': 1,\n",
      "          'suggests': 1,\n",
      "          'previews': 1,\n",
      "          'nby': 1,\n",
      "          'absoltuely': 1,\n",
      "          'tension': 1,\n",
      "          'drawn': 1,\n",
      "          'attempt': 1,\n",
      "          'stop': 1,\n",
      "          'ndirector': 1,\n",
      "          'tries': 1,\n",
      "          'episodes': 1,\n",
      "          'television': 1,\n",
      "          'er': 1,\n",
      "          'major': 1,\n",
      "          'debut': 1,\n",
      "          'peacemaker': 1,\n",
      "          'pathetic': 1,\n",
      "          'heartless': 1,\n",
      "          'outdid': 1,\n",
      "          'creating': 1,\n",
      "          'nsuggestion': 1,\n",
      "          'ms': 1,\n",
      "          'please': 1,\n",
      "          'stay': 1,\n",
      "          'least': 1,\n",
      "          'genre': 1,\n",
      "          'nmuch': 1,\n",
      "          'placed': 1,\n",
      "          'directly': 1,\n",
      "          'disastrously': 1,\n",
      "          'nthroughout': 1,\n",
      "          'subtitles': 1,\n",
      "          'tell': 1,\n",
      "          'passed': 1,\n",
      "          'goes': 1,\n",
      "          'weeks': 1,\n",
      "          'nit': 1,\n",
      "          'literally': 1,\n",
      "          'feels': 1,\n",
      "          'lapsed': 1,\n",
      "          'taking': 1,\n",
      "          'place': 1,\n",
      "          'realtimeits': 1,\n",
      "          'nscreenwriters': 1,\n",
      "          'michael': 1,\n",
      "          'tolkin': 1,\n",
      "          'bruce': 1,\n",
      "          'joel': 1,\n",
      "          'rubin': 1,\n",
      "          'crafted': 1,\n",
      "          'simplistic': 1,\n",
      "          'story': 1,\n",
      "          'starts': 1,\n",
      "          'promising': 1,\n",
      "          'soon': 1,\n",
      "          'turns': 1,\n",
      "          'deadly': 1,\n",
      "          'nchock': 1,\n",
      "          'full': 1,\n",
      "          'cheesy': 1,\n",
      "          'liners': 1,\n",
      "          'sex': 1,\n",
      "          'school': 1,\n",
      "          'stupid': 1,\n",
      "          '70s': 1,\n",
      "          'nonly': 1,\n",
      "          'subplots': 1,\n",
      "          'remotely': 1,\n",
      "          'interesting': 1,\n",
      "          'forgettable': 1,\n",
      "          'main': 1,\n",
      "          'outrageous': 1,\n",
      "          'figure': 1,\n",
      "          'supposed': 1,\n",
      "          'scifi': 1,\n",
      "          'put': 1,\n",
      "          'simply': 1,\n",
      "          'situation': 1,\n",
      "          'nthats': 1,\n",
      "          '80': 1,\n",
      "          '20': 1,\n",
      "          'nscenes': 1,\n",
      "          'well': 1,\n",
      "          'orbiting': 1,\n",
      "          'ship': 1,\n",
      "          'majestic': 1,\n",
      "          'mistake': 1,\n",
      "          'laughable': 1,\n",
      "          'frightening': 1,\n",
      "          'concept': 1,\n",
      "          'trying': 1,\n",
      "          'preposterous': 1,\n",
      "          'thats': 1,\n",
      "          'walk': 1,\n",
      "          'ngive': 1,\n",
      "          'break': 1,\n",
      "          'ya': 1,\n",
      "          'hyped': 1,\n",
      "          'collision': 1,\n",
      "          'far': 1,\n",
      "          'spectacular': 1,\n",
      "          'makes': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'look': 1,\n",
      "          'brilliant': 1,\n",
      "          'rushing': 1,\n",
      "          'towards': 1,\n",
      "          'effective': 1,\n",
      "          'hits': 1,\n",
      "          'continent': 1,\n",
      "          'turn': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ncgi': 1,\n",
      "          'used': 1,\n",
      "          'looks': 1,\n",
      "          'laughs': 1,\n",
      "          'shrieks': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'recommend': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'get': 1,\n",
      "          'days': 1,\n",
      "          'njust': 1,\n",
      "          'visual': 1,\n",
      "          'improved': 1,\n",
      "          'struck': 1,\n",
      "          'wrong': 1,\n",
      "          'concerning': 1,\n",
      "          'influences': 1,\n",
      "          'loves': 1,\n",
      "          'terror': 1,\n",
      "          'reminded': 1,\n",
      "          'director': 1,\n",
      "          'renny': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          '2': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'succeeds': 1,\n",
      "          'victims': 1,\n",
      "          'realistic': 1,\n",
      "          'situations': 1,\n",
      "          'likes': 1,\n",
      "          'flaunt': 1,\n",
      "          'peoples': 1,\n",
      "          'fears': 1,\n",
      "          'via': 1,\n",
      "          'instead': 1,\n",
      "          'sympathetic': 1,\n",
      "          'seems': 1,\n",
      "          'sadist': 1,\n",
      "          'astronaut': 1,\n",
      "          'flying': 1,\n",
      "          'warrant': 1,\n",
      "          'farther': 1,\n",
      "          'persons': 1,\n",
      "          'face': 1,\n",
      "          'drifting': 1,\n",
      "          'cheapest': 1,\n",
      "          'ways': 1,\n",
      "          'ellicit': 1,\n",
      "          'fooled': 1,\n",
      "          'non': 1,\n",
      "          'picks': 1,\n",
      "          'last': 1,\n",
      "          'impacts': 1,\n",
      "          'pick': 1,\n",
      "          'shown': 1,\n",
      "          'nthen': 1,\n",
      "          'cry': 1,\n",
      "          'loved': 1,\n",
      "          'obvious': 1,\n",
      "          'mostly': 1,\n",
      "          'trick': 1,\n",
      "          'rope': 1,\n",
      "          'viewers': 1,\n",
      "          'feeling': 1,\n",
      "          'didnt': 1,\n",
      "          'nt': 1,\n",
      "          'boys': 1,\n",
      "          'naked': 1,\n",
      "          'truth': 1,\n",
      "          'meatiest': 1,\n",
      "          'made': 1,\n",
      "          'stronger': 1,\n",
      "          'leonis': 1,\n",
      "          'grow': 1,\n",
      "          'care': 1,\n",
      "          'nrobert': 1,\n",
      "          'duvall': 1,\n",
      "          'energetic': 1,\n",
      "          'turned': 1,\n",
      "          'shreds': 1,\n",
      "          'nelijah': 1,\n",
      "          'hasnt': 1,\n",
      "          'roles': 1,\n",
      "          'stick': 1,\n",
      "          'nyou': 1,\n",
      "          'stuff': 1,\n",
      "          'nvanessa': 1,\n",
      "          'redgrave': 1,\n",
      "          'barely': 1,\n",
      "          'acknowledgeable': 1,\n",
      "          'performance': 1,\n",
      "          'enhanced': 1,\n",
      "          'strong': 1,\n",
      "          'nmaximilian': 1,\n",
      "          'distracting': 1,\n",
      "          'provide': 1,\n",
      "          'nice': 1,\n",
      "          'humor': 1,\n",
      "          'nmorgan': 1,\n",
      "          'infinitely': 1,\n",
      "          'shallow': 1,\n",
      "          'performances': 1,\n",
      "          'date': 1,\n",
      "          'quite': 1,\n",
      "          'remarkable': 1,\n",
      "          'nleelee': 1,\n",
      "          'suffered': 1,\n",
      "          'written': 1,\n",
      "          'ron': 1,\n",
      "          'eldard': 1,\n",
      "          'denise': 1,\n",
      "          'crosby': 1,\n",
      "          'neldard': 1,\n",
      "          'limited': 1,\n",
      "          'ncrosby': 1,\n",
      "          'personally': 1,\n",
      "          'tasha': 1,\n",
      "          'yar': 1,\n",
      "          'trek': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'nseeing': 1,\n",
      "          'highlights': 1,\n",
      "          'noverall': 1,\n",
      "          'cast': 1,\n",
      "          'virtually': 1,\n",
      "          'rated': 1,\n",
      "          'pg13': 1,\n",
      "          'related': 1,\n",
      "          'elements': 1,\n",
      "          'brief': 1,\n",
      "          'language': 1,\n",
      "          'omen': 1,\n",
      "          'things': 1,\n",
      "          'xfiles': 1,\n",
      "          'hopefully': 1,\n",
      "          'ncosting': 1,\n",
      "          'nearly': 1,\n",
      "          '75': 1,\n",
      "          'million': 1,\n",
      "          'illustrious': 1,\n",
      "          'ilm': 1,\n",
      "          'shocker': 1,\n",
      "          'score': 1,\n",
      "          'composed': 1,\n",
      "          'oscarwinner': 1,\n",
      "          'horner': 1,\n",
      "          'titanic': 1,\n",
      "          'expected': 1,\n",
      "          'witness': 1,\n",
      "          'experience': 1,\n",
      "          'nwhen': 1,\n",
      "          'almost': 1,\n",
      "          'wish': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'burning': 5,\n",
      "          'one': 4,\n",
      "          'even': 4,\n",
      "          'beginning': 3,\n",
      "          'forest': 3,\n",
      "          'get': 3,\n",
      "          'fire': 3,\n",
      "          'girl': 3,\n",
      "          'played': 3,\n",
      "          'long': 3,\n",
      "          'nthe': 3,\n",
      "          'first': 2,\n",
      "          'film': 2,\n",
      "          'new': 2,\n",
      "          'nfirestorm': 2,\n",
      "          'cinematographer': 2,\n",
      "          'nas': 2,\n",
      "          'story': 2,\n",
      "          'nwhen': 2,\n",
      "          'right': 2,\n",
      "          'trapped': 2,\n",
      "          'people': 2,\n",
      "          'near': 2,\n",
      "          'cars': 2,\n",
      "          'monica': 2,\n",
      "          'away': 2,\n",
      "          'nnot': 2,\n",
      "          'nin': 2,\n",
      "          'building': 2,\n",
      "          'two': 2,\n",
      "          'howie': 2,\n",
      "          'little': 2,\n",
      "          'flames': 2,\n",
      "          'group': 2,\n",
      "          'firefighting': 2,\n",
      "          'shaye': 2,\n",
      "          'look': 2,\n",
      "          'saw': 2,\n",
      "          'riding': 2,\n",
      "          'motorcycle': 2,\n",
      "          'press': 1,\n",
      "          'screening': 1,\n",
      "          '1998': 1,\n",
      "          'already': 1,\n",
      "          'ive': 1,\n",
      "          'gotten': 1,\n",
      "          'prime': 1,\n",
      "          'candidate': 1,\n",
      "          'worst': 1,\n",
      "          'ten': 1,\n",
      "          'year': 1,\n",
      "          'list': 1,\n",
      "          'nwhat': 1,\n",
      "          'auspicious': 1,\n",
      "          'nwelcome': 1,\n",
      "          'dog': 1,\n",
      "          'days': 1,\n",
      "          'winter': 1,\n",
      "          'openings': 1,\n",
      "          'merit': 1,\n",
      "          'oscar': 1,\n",
      "          'contenders': 1,\n",
      "          'studios': 1,\n",
      "          'opened': 1,\n",
      "          'late': 1,\n",
      "          'december': 1,\n",
      "          'york': 1,\n",
      "          'l': 1,\n",
      "          'appear': 1,\n",
      "          'elsewhere': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'dances': 1,\n",
      "          'wolvess': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'winning': 1,\n",
      "          'dean': 1,\n",
      "          'semler': 1,\n",
      "          'years': 1,\n",
      "          'crop': 1,\n",
      "          'movies': 1,\n",
      "          'opens': 1,\n",
      "          'pretentiously': 1,\n",
      "          'informs': 1,\n",
      "          'us': 1,\n",
      "          'tens': 1,\n",
      "          'thousands': 1,\n",
      "          'firefighters': 1,\n",
      "          '400': 1,\n",
      "          'smokejumpers': 1,\n",
      "          'nwe': 1,\n",
      "          'cut': 1,\n",
      "          'plane': 1,\n",
      "          'load': 1,\n",
      "          'smoke': 1,\n",
      "          'jumping': 1,\n",
      "          'cowboys': 1,\n",
      "          'cowgirl': 1,\n",
      "          'gungho': 1,\n",
      "          'guys': 1,\n",
      "          'taking': 1,\n",
      "          'romance': 1,\n",
      "          'quiz': 1,\n",
      "          'cosmopolitan': 1,\n",
      "          'nhaving': 1,\n",
      "          'time': 1,\n",
      "          'lives': 1,\n",
      "          'jump': 1,\n",
      "          'middle': 1,\n",
      "          'director': 1,\n",
      "          'cant': 1,\n",
      "          'small': 1,\n",
      "          'parts': 1,\n",
      "          'sense': 1,\n",
      "          'trouble': 1,\n",
      "          'nwith': 1,\n",
      "          'noisy': 1,\n",
      "          'roaring': 1,\n",
      "          'huddled': 1,\n",
      "          'gasolinefilled': 1,\n",
      "          'smokejumper': 1,\n",
      "          'christianne': 1,\n",
      "          'hirt': 1,\n",
      "          'tells': 1,\n",
      "          'soontoexplode': 1,\n",
      "          'vehicles': 1,\n",
      "          'bothering': 1,\n",
      "          'shout': 1,\n",
      "          'close': 1,\n",
      "          'announces': 1,\n",
      "          'warning': 1,\n",
      "          'without': 1,\n",
      "          'raising': 1,\n",
      "          'voice': 1,\n",
      "          'much': 1,\n",
      "          'approaching': 1,\n",
      "          'nmiraculously': 1,\n",
      "          'manage': 1,\n",
      "          'hear': 1,\n",
      "          'move': 1,\n",
      "          'specializes': 1,\n",
      "          'cheap': 1,\n",
      "          'shots': 1,\n",
      "          'camera': 1,\n",
      "          'locates': 1,\n",
      "          'proverbial': 1,\n",
      "          'young': 1,\n",
      "          'nearby': 1,\n",
      "          'throughout': 1,\n",
      "          'overly': 1,\n",
      "          'dramatic': 1,\n",
      "          'stephen': 1,\n",
      "          'f': 1,\n",
      "          'windon': 1,\n",
      "          'postman': 1,\n",
      "          'uses': 1,\n",
      "          'extremely': 1,\n",
      "          'fast': 1,\n",
      "          'zooms': 1,\n",
      "          'endangered': 1,\n",
      "          'girls': 1,\n",
      "          'face': 1,\n",
      "          'nour': 1,\n",
      "          'shows': 1,\n",
      "          'heroes': 1,\n",
      "          'crews': 1,\n",
      "          'chief': 1,\n",
      "          'wynt': 1,\n",
      "          'perkins': 1,\n",
      "          'laconically': 1,\n",
      "          'scott': 1,\n",
      "          'glenn': 1,\n",
      "          'secondincommand': 1,\n",
      "          'jesse': 1,\n",
      "          'graves': 1,\n",
      "          'weak': 1,\n",
      "          'attempt': 1,\n",
      "          'next': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'enter': 1,\n",
      "          'house': 1,\n",
      "          'looking': 1,\n",
      "          'panic': 1,\n",
      "          'difficulty': 1,\n",
      "          'locating': 1,\n",
      "          'engulfed': 1,\n",
      "          'manipulative': 1,\n",
      "          'script': 1,\n",
      "          'hidden': 1,\n",
      "          'dollhouse': 1,\n",
      "          'nthis': 1,\n",
      "          'mawkish': 1,\n",
      "          'show': 1,\n",
      "          'cuts': 1,\n",
      "          'back': 1,\n",
      "          'lifeordeath': 1,\n",
      "          'decision': 1,\n",
      "          'make': 1,\n",
      "          'chopper': 1,\n",
      "          'fireretardant': 1,\n",
      "          'chemicals': 1,\n",
      "          'enough': 1,\n",
      "          'save': 1,\n",
      "          'nwill': 1,\n",
      "          'large': 1,\n",
      "          'helpless': 1,\n",
      "          'monicas': 1,\n",
      "          'buddies': 1,\n",
      "          'nshe': 1,\n",
      "          'seconds': 1,\n",
      "          'decide': 1,\n",
      "          'saved': 1,\n",
      "          'nyes': 1,\n",
      "          'goes': 1,\n",
      "          'majority': 1,\n",
      "          'miracle': 1,\n",
      "          'miracles': 1,\n",
      "          'three': 1,\n",
      "          'come': 1,\n",
      "          'alive': 1,\n",
      "          'anyway': 1,\n",
      "          'content': 1,\n",
      "          'traditional': 1,\n",
      "          'chris': 1,\n",
      "          'soths': 1,\n",
      "          'screenplay': 1,\n",
      "          'attempts': 1,\n",
      "          'jazz': 1,\n",
      "          'william': 1,\n",
      "          'forsythe': 1,\n",
      "          'palookaville': 1,\n",
      "          'play': 1,\n",
      "          'vicious': 1,\n",
      "          'killer': 1,\n",
      "          'named': 1,\n",
      "          'randy': 1,\n",
      "          'earl': 1,\n",
      "          'sets': 1,\n",
      "          'join': 1,\n",
      "          'crew': 1,\n",
      "          'put': 1,\n",
      "          'escape': 1,\n",
      "          'n': 1,\n",
      "          'hoods': 1,\n",
      "          'woods': 1,\n",
      "          'groundpounders': 1,\n",
      "          'yell': 1,\n",
      "          'convicts': 1,\n",
      "          'bused': 1,\n",
      "          'help': 1,\n",
      "          'fight': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'picks': 1,\n",
      "          'ornithologist': 1,\n",
      "          'hostage': 1,\n",
      "          'suzy': 1,\n",
      "          'amis': 1,\n",
      "          'turns': 1,\n",
      "          'trained': 1,\n",
      "          'warrior': 1,\n",
      "          'ways': 1,\n",
      "          'father': 1,\n",
      "          'marine': 1,\n",
      "          'drill': 1,\n",
      "          'instructor': 1,\n",
      "          'nmost': 1,\n",
      "          'highly': 1,\n",
      "          'predictable': 1,\n",
      "          'chase': 1,\n",
      "          'poor': 1,\n",
      "          'given': 1,\n",
      "          'ridiculous': 1,\n",
      "          'stunt': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'another': 1,\n",
      "          'silly': 1,\n",
      "          'performing': 1,\n",
      "          'nhe': 1,\n",
      "          'flings': 1,\n",
      "          'chain': 1,\n",
      "          'backwards': 1,\n",
      "          'head': 1,\n",
      "          'speeding': 1,\n",
      "          'hit': 1,\n",
      "          'windshield': 1,\n",
      "          'pursuing': 1,\n",
      "          'truck': 1,\n",
      "          'narguably': 1,\n",
      "          'low': 1,\n",
      "          'point': 1,\n",
      "          'escapes': 1,\n",
      "          'locked': 1,\n",
      "          'conveniently': 1,\n",
      "          'parked': 1,\n",
      "          'inside': 1,\n",
      "          'nusing': 1,\n",
      "          'ramp': 1,\n",
      "          'shoots': 1,\n",
      "          'straight': 1,\n",
      "          'top': 1,\n",
      "          'buildings': 1,\n",
      "          'attic': 1,\n",
      "          'hits': 1,\n",
      "          'ground': 1,\n",
      "          'rides': 1,\n",
      "          'cloud': 1,\n",
      "          'dust': 1,\n",
      "          'isnt': 1,\n",
      "          'using': 1,\n",
      "          'stock': 1,\n",
      "          'footage': 1,\n",
      "          'actual': 1,\n",
      "          'fires': 1,\n",
      "          'simulated': 1,\n",
      "          'ones': 1,\n",
      "          'hokey': 1,\n",
      "          'neditor': 1,\n",
      "          'jack': 1,\n",
      "          'hofstra': 1,\n",
      "          'cheapens': 1,\n",
      "          'action': 1,\n",
      "          'use': 1,\n",
      "          'scene': 1,\n",
      "          'transitions': 1,\n",
      "          'ending': 1,\n",
      "          'sick': 1,\n",
      "          'twists': 1,\n",
      "          'manages': 1,\n",
      "          'worse': 1,\n",
      "          'rest': 1,\n",
      "          'nperhaps': 1,\n",
      "          'best': 1,\n",
      "          'said': 1,\n",
      "          'picture': 1,\n",
      "          'faint': 1,\n",
      "          'praise': 1,\n",
      "          'heard': 1,\n",
      "          'afterwards': 1,\n",
      "          'lobby': 1,\n",
      "          'bad': 1,\n",
      "          'television': 1,\n",
      "          'sitcoms': 1,\n",
      "          'runs': 1,\n",
      "          'mercifully': 1,\n",
      "          '1': 1,\n",
      "          '29': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'language': 1,\n",
      "          'would': 1,\n",
      "          'acceptable': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'computer': 12,\n",
      "          'computers': 8,\n",
      "          'film': 7,\n",
      "          'hacking': 6,\n",
      "          'movie': 5,\n",
      "          'hackers': 5,\n",
      "          'dade': 4,\n",
      "          'little': 4,\n",
      "          'real': 3,\n",
      "          'films': 3,\n",
      "          'usually': 3,\n",
      "          'nthe': 3,\n",
      "          'murphy': 3,\n",
      "          'young': 3,\n",
      "          'first': 2,\n",
      "          'look': 2,\n",
      "          'impossible': 2,\n",
      "          'ridiculous': 2,\n",
      "          'nif': 2,\n",
      "          'would': 2,\n",
      "          'nto': 2,\n",
      "          'internet': 2,\n",
      "          'cant': 2,\n",
      "          'world': 2,\n",
      "          'section': 2,\n",
      "          'movies': 2,\n",
      "          'nthis': 2,\n",
      "          'extremely': 2,\n",
      "          'plot': 2,\n",
      "          'around': 2,\n",
      "          'hacker': 2,\n",
      "          'eighteen': 2,\n",
      "          'old': 2,\n",
      "          'away': 2,\n",
      "          'acid': 2,\n",
      "          'burn': 2,\n",
      "          'fbi': 2,\n",
      "          'think': 2,\n",
      "          'much': 2,\n",
      "          'geeks': 2,\n",
      "          'advanced': 2,\n",
      "          'makes': 2,\n",
      "          'time': 2,\n",
      "          'many': 2,\n",
      "          'users': 2,\n",
      "          'ever': 1,\n",
      "          'since': 1,\n",
      "          'wargames': 1,\n",
      "          'hollywood': 1,\n",
      "          'attempted': 1,\n",
      "          'produce': 1,\n",
      "          'nthese': 1,\n",
      "          'show': 1,\n",
      "          'audience': 1,\n",
      "          'really': 1,\n",
      "          'exaggeration': 1,\n",
      "          'greater': 1,\n",
      "          'expect': 1,\n",
      "          'nhackers': 1,\n",
      "          'guilty': 1,\n",
      "          'crimes': 1,\n",
      "          'anyone': 1,\n",
      "          'familiar': 1,\n",
      "          'andor': 1,\n",
      "          'incredibly': 1,\n",
      "          'stupid': 1,\n",
      "          'take': 1,\n",
      "          'anymore': 1,\n",
      "          'nthose': 1,\n",
      "          'frequent': 1,\n",
      "          'one': 1,\n",
      "          'greatest': 1,\n",
      "          'sites': 1,\n",
      "          'wide': 1,\n",
      "          'web': 1,\n",
      "          'database': 1,\n",
      "          'probably': 1,\n",
      "          'aware': 1,\n",
      "          'entitled': 1,\n",
      "          'goofs': 1,\n",
      "          'mistakes': 1,\n",
      "          'nwell': 1,\n",
      "          'imdb': 1,\n",
      "          'sums': 1,\n",
      "          'well': 1,\n",
      "          'goof': 1,\n",
      "          'listed': 1,\n",
      "          'generally': 1,\n",
      "          'illinformed': 1,\n",
      "          'extreme': 1,\n",
      "          'regarding': 1,\n",
      "          'capabilities': 1,\n",
      "          'technology': 1,\n",
      "          'nand': 1,\n",
      "          'truthfully': 1,\n",
      "          'onehundred': 1,\n",
      "          'percent': 1,\n",
      "          'correct': 1,\n",
      "          'obviously': 1,\n",
      "          'centers': 1,\n",
      "          'nmore': 1,\n",
      "          'specifically': 1,\n",
      "          'follows': 1,\n",
      "          'exploits': 1,\n",
      "          'played': 1,\n",
      "          'jonny': 1,\n",
      "          'lee': 1,\n",
      "          'miller': 1,\n",
      "          'nmiller': 1,\n",
      "          'thankful': 1,\n",
      "          'trainspotting': 1,\n",
      "          'knows': 1,\n",
      "          'career': 1,\n",
      "          'opens': 1,\n",
      "          'arrested': 1,\n",
      "          'systems': 1,\n",
      "          'nhe': 1,\n",
      "          'forbidden': 1,\n",
      "          'use': 1,\n",
      "          'turned': 1,\n",
      "          'years': 1,\n",
      "          'picks': 1,\n",
      "          'point': 1,\n",
      "          'year': 1,\n",
      "          'ndade': 1,\n",
      "          'later': 1,\n",
      "          'meets': 1,\n",
      "          'fellow': 1,\n",
      "          'angelina': 1,\n",
      "          'jolie': 1,\n",
      "          'cereal': 1,\n",
      "          'killer': 1,\n",
      "          'matthew': 1,\n",
      "          'lillard': 1,\n",
      "          'lord': 1,\n",
      "          'nikon': 1,\n",
      "          'laurence': 1,\n",
      "          'mason': 1,\n",
      "          'phantom': 1,\n",
      "          'phreak': 1,\n",
      "          'renoly': 1,\n",
      "          'santiago': 1,\n",
      "          'basically': 1,\n",
      "          'trying': 1,\n",
      "          'next': 1,\n",
      "          'hack': 1,\n",
      "          'gibson': 1,\n",
      "          'get': 1,\n",
      "          'caught': 1,\n",
      "          'noh': 1,\n",
      "          'subplot': 1,\n",
      "          'also': 1,\n",
      "          'tries': 1,\n",
      "          'woo': 1,\n",
      "          'female': 1,\n",
      "          'nreally': 1,\n",
      "          'say': 1,\n",
      "          'aside': 1,\n",
      "          'ive': 1,\n",
      "          'said': 1,\n",
      "          'nits': 1,\n",
      "          'bunch': 1,\n",
      "          'obsessive': 1,\n",
      "          'compulsive': 1,\n",
      "          'reality': 1,\n",
      "          'running': 1,\n",
      "          'staying': 1,\n",
      "          'nthanks': 1,\n",
      "          'public': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'distorted': 1,\n",
      "          'viewpoint': 1,\n",
      "          'bit': 1,\n",
      "          'frivolous': 1,\n",
      "          'suggestions': 1,\n",
      "          'list': 1,\n",
      "          'sum': 1,\n",
      "          'terrible': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'closer': 1,\n",
      "          'goes': 1,\n",
      "          'suggest': 1,\n",
      "          'sneakers': 1,\n",
      "          'nalthough': 1,\n",
      "          'times': 1,\n",
      "          'may': 1,\n",
      "          'seem': 1,\n",
      "          'far': 1,\n",
      "          'fetched': 1,\n",
      "          'believable': 1,\n",
      "          'regular': 1,\n",
      "          'nhopefully': 1,\n",
      "          'didnt': 1,\n",
      "          'influence': 1,\n",
      "          'portrayed': 1,\n",
      "          '105': 1,\n",
      "          'minute': 1,\n",
      "          'waste': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'giant': 5,\n",
      "          'get': 5,\n",
      "          'sam': 5,\n",
      "          'great': 5,\n",
      "          'nit': 4,\n",
      "          'romania': 4,\n",
      "          'family': 4,\n",
      "          'one': 3,\n",
      "          'thing': 3,\n",
      "          'sentimentality': 3,\n",
      "          'people': 3,\n",
      "          'nmy': 3,\n",
      "          'max': 3,\n",
      "          'son': 3,\n",
      "          'hes': 3,\n",
      "          'funny': 3,\n",
      "          'seagal': 3,\n",
      "          'could': 3,\n",
      "          'cant': 2,\n",
      "          'stand': 2,\n",
      "          'makers': 2,\n",
      "          'films': 2,\n",
      "          'emotions': 2,\n",
      "          'good': 2,\n",
      "          'us': 2,\n",
      "          'audience': 2,\n",
      "          'choked': 2,\n",
      "          'moved': 2,\n",
      "          'cute': 2,\n",
      "          'create': 2,\n",
      "          'might': 2,\n",
      "          'turns': 2,\n",
      "          'intended': 2,\n",
      "          'kind': 2,\n",
      "          'work': 2,\n",
      "          'actor': 2,\n",
      "          'nmax': 2,\n",
      "          'nsam': 2,\n",
      "          'moments': 2,\n",
      "          'best': 2,\n",
      "          'fun': 2,\n",
      "          'gets': 2,\n",
      "          'would': 2,\n",
      "          'however': 2,\n",
      "          'completely': 2,\n",
      "          'nand': 2,\n",
      "          'theres': 1,\n",
      "          'oozes': 1,\n",
      "          'nheres': 1,\n",
      "          'note': 1,\n",
      "          'effective': 1,\n",
      "          'characters': 1,\n",
      "          'speak': 1,\n",
      "          'nswelling': 1,\n",
      "          'saddening': 1,\n",
      "          'music': 1,\n",
      "          'way': 1,\n",
      "          'tell': 1,\n",
      "          'unhappy': 1,\n",
      "          'situation': 1,\n",
      "          'hopeless': 1,\n",
      "          'nalas': 1,\n",
      "          'uses': 1,\n",
      "          'manipulative': 1,\n",
      "          'frequently': 1,\n",
      "          'high': 1,\n",
      "          'intensity': 1,\n",
      "          'forgot': 1,\n",
      "          'watched': 1,\n",
      "          'ways': 1,\n",
      "          'getting': 1,\n",
      "          'members': 1,\n",
      "          'nwhat': 1,\n",
      "          'reminded': 1,\n",
      "          'wasnt': 1,\n",
      "          'even': 1,\n",
      "          'slightest': 1,\n",
      "          'bit': 1,\n",
      "          'matter': 1,\n",
      "          'forced': 1,\n",
      "          'contrived': 1,\n",
      "          'conspicuously': 1,\n",
      "          'uncute': 1,\n",
      "          'detest': 1,\n",
      "          'word': 1,\n",
      "          'ive': 1,\n",
      "          'chosen': 1,\n",
      "          'use': 1,\n",
      "          'clearly': 1,\n",
      "          'wanted': 1,\n",
      "          'takes': 1,\n",
      "          'premise': 1,\n",
      "          'interesting': 1,\n",
      "          'liked': 1,\n",
      "          'preview': 1,\n",
      "          'bogs': 1,\n",
      "          'endless': 1,\n",
      "          'plot': 1,\n",
      "          'cliches': 1,\n",
      "          'easy': 1,\n",
      "          'emotional': 1,\n",
      "          'rise': 1,\n",
      "          'nmaybe': 1,\n",
      "          'didnt': 1,\n",
      "          'nbilly': 1,\n",
      "          'crystal': 1,\n",
      "          'plays': 1,\n",
      "          'cayman': 1,\n",
      "          'agent': 1,\n",
      "          'beginning': 1,\n",
      "          'nhes': 1,\n",
      "          'kid': 1,\n",
      "          'made': 1,\n",
      "          'famous': 1,\n",
      "          'nthe': 1,\n",
      "          'screenplay': 1,\n",
      "          'fired': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'saved': 1,\n",
      "          'enormous': 1,\n",
      "          'individual': 1,\n",
      "          'stands': 1,\n",
      "          'almost': 1,\n",
      "          'eight': 1,\n",
      "          'feet': 1,\n",
      "          'tall': 1,\n",
      "          'nhis': 1,\n",
      "          'name': 1,\n",
      "          'gheorghe': 1,\n",
      "          'muresan': 1,\n",
      "          'thinks': 1,\n",
      "          'hed': 1,\n",
      "          'movie': 1,\n",
      "          'star': 1,\n",
      "          'size': 1,\n",
      "          'nsubplots': 1,\n",
      "          'follows': 1,\n",
      "          'wife': 1,\n",
      "          'kathleen': 1,\n",
      "          'quinlan': 1,\n",
      "          'never': 1,\n",
      "          'around': 1,\n",
      "          'move': 1,\n",
      "          'chicago': 1,\n",
      "          'love': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'lilianna': 1,\n",
      "          'away': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'begins': 1,\n",
      "          'convinces': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'america': 1,\n",
      "          'make': 1,\n",
      "          'lots': 1,\n",
      "          'money': 1,\n",
      "          'various': 1,\n",
      "          'subplots': 1,\n",
      "          'resolved': 1,\n",
      "          'broke': 1,\n",
      "          'dying': 1,\n",
      "          'npass': 1,\n",
      "          'kleenex': 1,\n",
      "          'comedy': 1,\n",
      "          'moderately': 1,\n",
      "          'features': 1,\n",
      "          'steven': 1,\n",
      "          'making': 1,\n",
      "          'nin': 1,\n",
      "          'scene': 1,\n",
      "          'phone': 1,\n",
      "          'talk': 1,\n",
      "          'course': 1,\n",
      "          'doesnt': 1,\n",
      "          'believe': 1,\n",
      "          'actually': 1,\n",
      "          'speaking': 1,\n",
      "          'goes': 1,\n",
      "          'bad': 1,\n",
      "          'quote': 1,\n",
      "          'line': 1,\n",
      "          'like': 1,\n",
      "          'probably': 1,\n",
      "          'lose': 1,\n",
      "          'effect': 1,\n",
      "          'ncrystal': 1,\n",
      "          'always': 1,\n",
      "          'entertaining': 1,\n",
      "          'lines': 1,\n",
      "          'subtle': 1,\n",
      "          'throwaways': 1,\n",
      "          'many': 1,\n",
      "          'miss': 1,\n",
      "          'entirely': 1,\n",
      "          'often': 1,\n",
      "          'countered': 1,\n",
      "          'slew': 1,\n",
      "          'jokes': 1,\n",
      "          'arent': 1,\n",
      "          'cause': 1,\n",
      "          'involuntary': 1,\n",
      "          'rolling': 1,\n",
      "          'eyes': 1,\n",
      "          'nmuresan': 1,\n",
      "          'watch': 1,\n",
      "          'act': 1,\n",
      "          'well': 1,\n",
      "          'nquinlan': 1,\n",
      "          'hand': 1,\n",
      "          'actress': 1,\n",
      "          'needs': 1,\n",
      "          'role': 1,\n",
      "          'shows': 1,\n",
      "          'talents': 1,\n",
      "          'nshe': 1,\n",
      "          'underused': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'breakdown': 1,\n",
      "          'least': 1,\n",
      "          'show': 1,\n",
      "          'stuff': 1,\n",
      "          'nhere': 1,\n",
      "          'fake': 1,\n",
      "          'romanian': 1,\n",
      "          'accent': 1,\n",
      "          'nall': 1,\n",
      "          'disappointing': 1,\n",
      "          'ingredients': 1,\n",
      "          'much': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'simply': 1,\n",
      "          'mediocre': 1,\n",
      "          'nas': 1,\n",
      "          'lumbers': 1,\n",
      "          'inevitable': 1,\n",
      "          'conclusion': 1,\n",
      "          'director': 1,\n",
      "          'michael': 1,\n",
      "          'lehmann': 1,\n",
      "          'job': 1,\n",
      "          'directing': 1,\n",
      "          'underrated': 1,\n",
      "          'hudson': 1,\n",
      "          'hawk': 1,\n",
      "          'scriptwriter': 1,\n",
      "          'david': 1,\n",
      "          'seltzer': 1,\n",
      "          'pile': 1,\n",
      "          'every': 1,\n",
      "          'cliche': 1,\n",
      "          'imaginable': 1,\n",
      "          'specifically': 1,\n",
      "          'pull': 1,\n",
      "          'heartstrings': 1,\n",
      "          'nsams': 1,\n",
      "          'multiple': 1,\n",
      "          'engagements': 1,\n",
      "          'hackneyed': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'healthy': 1,\n",
      "          'relationship': 1,\n",
      "          'nlater': 1,\n",
      "          'entire': 1,\n",
      "          'story': 1,\n",
      "          'supposed': 1,\n",
      "          'big': 1,\n",
      "          'metaphor': 1,\n",
      "          'signifying': 1,\n",
      "          'sams': 1,\n",
      "          'reunion': 1,\n",
      "          'think': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'valiant': 1,\n",
      "          'morality': 1,\n",
      "          'problems': 1,\n",
      "          'apologize': 1,\n",
      "          'vague': 1,\n",
      "          'nits': 1,\n",
      "          'icky': 1,\n",
      "          'drips': 1,\n",
      "          'gooey': 1,\n",
      "          'wannabe': 1,\n",
      "          'human': 1,\n",
      "          'straightforward': 1,\n",
      "          'nmore': 1,\n",
      "          'importantly': 1,\n",
      "          'moving': 1,\n",
      "          'level': 1,\n",
      "          'far': 1,\n",
      "          'deeper': 1,\n",
      "          'ninstead': 1,\n",
      "          'complicated': 1,\n",
      "          'overlong': 1,\n",
      "          'underengaging': 1,\n",
      "          'elicits': 1,\n",
      "          'laughs': 1,\n",
      "          'strives': 1,\n",
      "          'superficial': 1,\n",
      "          'tears': 1,\n",
      "          'since': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'unmoved': 1,\n",
      "          'position': 1,\n",
      "          'evil': 1,\n",
      "          'ultimately': 1,\n",
      "          'destroy': 1,\n",
      "          'world': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'simple': 4,\n",
      "          'money': 4,\n",
      "          'greed': 4,\n",
      "          'end': 3,\n",
      "          'movie': 3,\n",
      "          'plan': 2,\n",
      "          'nthis': 2,\n",
      "          'become': 2,\n",
      "          'blood': 2,\n",
      "          'love': 2,\n",
      "          'one': 2,\n",
      "          'tedious': 2,\n",
      "          'brothers': 2,\n",
      "          'performance': 2,\n",
      "          'brother': 2,\n",
      "          'finding': 1,\n",
      "          'plane': 1,\n",
      "          'load': 1,\n",
      "          'getting': 1,\n",
      "          'away': 1,\n",
      "          'cash': 1,\n",
      "          'parable': 1,\n",
      "          'bane': 1,\n",
      "          'life': 1,\n",
      "          'nyes': 1,\n",
      "          'elements': 1,\n",
      "          'fargo': 1,\n",
      "          'snow': 1,\n",
      "          'cold': 1,\n",
      "          'although': 1,\n",
      "          'vivid': 1,\n",
      "          'gore': 1,\n",
      "          'department': 1,\n",
      "          'nit': 1,\n",
      "          'shows': 1,\n",
      "          'set': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'leading': 1,\n",
      "          'death': 1,\n",
      "          'destruction': 1,\n",
      "          'lives': 1,\n",
      "          'nand': 1,\n",
      "          'day': 1,\n",
      "          'things': 1,\n",
      "          'matter': 1,\n",
      "          'truth': 1,\n",
      "          'honesty': 1,\n",
      "          'nalthough': 1,\n",
      "          'sense': 1,\n",
      "          'may': 1,\n",
      "          'seem': 1,\n",
      "          'making': 1,\n",
      "          'ugliness': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'material': 1,\n",
      "          'morale': 1,\n",
      "          'ending': 1,\n",
      "          'expects': 1,\n",
      "          'way': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'first': 1,\n",
      "          'murder': 1,\n",
      "          'cover': 1,\n",
      "          'crime': 1,\n",
      "          'rest': 1,\n",
      "          'spirals': 1,\n",
      "          'downward': 1,\n",
      "          'nthe': 1,\n",
      "          'characters': 1,\n",
      "          'drama': 1,\n",
      "          'mixture': 1,\n",
      "          'intellectual': 1,\n",
      "          'folk': 1,\n",
      "          'friends': 1,\n",
      "          'fall': 1,\n",
      "          'prey': 1,\n",
      "          'avarice': 1,\n",
      "          'nthey': 1,\n",
      "          'perhaps': 1,\n",
      "          'thrown': 1,\n",
      "          'someone': 1,\n",
      "          'sensible': 1,\n",
      "          'level': 1,\n",
      "          'headed': 1,\n",
      "          'affected': 1,\n",
      "          'give': 1,\n",
      "          'party': 1,\n",
      "          'balance': 1,\n",
      "          'ncommendable': 1,\n",
      "          'exceptional': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'thornton': 1,\n",
      "          'whose': 1,\n",
      "          'portrayal': 1,\n",
      "          'simpleton': 1,\n",
      "          'masterful': 1,\n",
      "          'nbill': 1,\n",
      "          'paxton': 1,\n",
      "          'also': 1,\n",
      "          'gives': 1,\n",
      "          'powerful': 1,\n",
      "          'greedier': 1,\n",
      "          'younger': 1,\n",
      "          'whilst': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'convincing': 1,\n",
      "          'greediest': 1,\n",
      "          'wife': 1,\n",
      "          'indirectly': 1,\n",
      "          'causes': 1,\n",
      "          'problems': 1,\n",
      "          'nfill': 1,\n",
      "          'room': 1,\n",
      "          'full': 1,\n",
      "          'greedy': 1,\n",
      "          'people': 1,\n",
      "          'several': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'recipe': 1,\n",
      "          'bath': 1,\n",
      "          'nits': 1,\n",
      "          'shoot': 1,\n",
      "          'everyone': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'menendez': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'movie': 5,\n",
      "          'one': 4,\n",
      "          'say': 4,\n",
      "          'lovely': 4,\n",
      "          'hayek': 4,\n",
      "          'much': 4,\n",
      "          'smith': 3,\n",
      "          'independence': 3,\n",
      "          'day': 3,\n",
      "          '710': 3,\n",
      "          'consider': 3,\n",
      "          'also': 3,\n",
      "          'little': 3,\n",
      "          'salma': 3,\n",
      "          'bad': 3,\n",
      "          'seen': 2,\n",
      "          'lame': 2,\n",
      "          'take': 2,\n",
      "          'men': 2,\n",
      "          'black': 2,\n",
      "          'man': 2,\n",
      "          '610': 2,\n",
      "          'times': 2,\n",
      "          'top': 2,\n",
      "          'united': 2,\n",
      "          'states': 2,\n",
      "          'nwhen': 2,\n",
      "          'thats': 2,\n",
      "          'sign': 2,\n",
      "          'ni': 2,\n",
      "          'enjoy': 2,\n",
      "          'would': 2,\n",
      "          'first': 2,\n",
      "          'hour': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'plot': 2,\n",
      "          'pretty': 2,\n",
      "          'big': 2,\n",
      "          'summer': 2,\n",
      "          'blockbuster': 2,\n",
      "          'blows': 2,\n",
      "          'french': 2,\n",
      "          'ncould': 2,\n",
      "          'dont': 2,\n",
      "          'last': 2,\n",
      "          'even': 2,\n",
      "          'see': 2,\n",
      "          'could': 2,\n",
      "          'movies': 2,\n",
      "          'scene': 2,\n",
      "          'kline': 2,\n",
      "          'known': 2,\n",
      "          'two': 2,\n",
      "          'films': 2,\n",
      "          'career': 2,\n",
      "          'actress': 2,\n",
      "          'none': 2,\n",
      "          'kasdan': 2,\n",
      "          'star': 2,\n",
      "          'nshe': 2,\n",
      "          'made': 2,\n",
      "          'role': 2,\n",
      "          'starring': 2,\n",
      "          'rodriguezs': 2,\n",
      "          'opposite': 2,\n",
      "          'based': 1,\n",
      "          '1960s': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'never': 1,\n",
      "          'heard': 1,\n",
      "          'happy': 1,\n",
      "          'wont': 1,\n",
      "          'bore': 1,\n",
      "          'unnecessary': 1,\n",
      "          'comparisons': 1,\n",
      "          'allows': 1,\n",
      "          'third': 1,\n",
      "          'stab': 1,\n",
      "          'weekend': 1,\n",
      "          'boxoffice': 1,\n",
      "          'scoring': 1,\n",
      "          'huge': 1,\n",
      "          'successes': 1,\n",
      "          'directed': 1,\n",
      "          'controlled': 1,\n",
      "          'ncan': 1,\n",
      "          'nthird': 1,\n",
      "          'charm': 1,\n",
      "          'nplot': 1,\n",
      "          'james': 1,\n",
      "          'west': 1,\n",
      "          'artemus': 1,\n",
      "          'gordon': 1,\n",
      "          'chosen': 1,\n",
      "          'president': 1,\n",
      "          'find': 1,\n",
      "          'responsible': 1,\n",
      "          'kidnapping': 1,\n",
      "          'nations': 1,\n",
      "          'scientists': 1,\n",
      "          'threatening': 1,\n",
      "          'within': 1,\n",
      "          'week': 1,\n",
      "          'ncritique': 1,\n",
      "          'laugh': 1,\n",
      "          'entire': 1,\n",
      "          'picture': 1,\n",
      "          'partcomedy': 1,\n",
      "          'good': 1,\n",
      "          'tense': 1,\n",
      "          'particularly': 1,\n",
      "          'unenergetic': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'provided': 1,\n",
      "          'minutes': 1,\n",
      "          'time': 1,\n",
      "          'think': 1,\n",
      "          'back': 1,\n",
      "          'scenes': 1,\n",
      "          'part': 1,\n",
      "          'geared': 1,\n",
      "          'actionadventure': 1,\n",
      "          'another': 1,\n",
      "          'negative': 1,\n",
      "          'nand': 1,\n",
      "          'boring': 1,\n",
      "          'slow': 1,\n",
      "          'storyline': 1,\n",
      "          'tired': 1,\n",
      "          'reminiscent': 1,\n",
      "          'swiss': 1,\n",
      "          'cheese': 1,\n",
      "          'uninvolving': 1,\n",
      "          'interesting': 1,\n",
      "          'worth': 1,\n",
      "          'inside': 1,\n",
      "          'filled': 1,\n",
      "          'oneliners': 1,\n",
      "          'weak': 1,\n",
      "          'characterizations': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'end': 1,\n",
      "          'gist': 1,\n",
      "          'impression': 1,\n",
      "          'nit': 1,\n",
      "          'eet': 1,\n",
      "          'script': 1,\n",
      "          'crappy': 1,\n",
      "          'took': 1,\n",
      "          'four': 1,\n",
      "          'people': 1,\n",
      "          'write': 1,\n",
      "          'nmaybe': 1,\n",
      "          'show': 1,\n",
      "          'half': 1,\n",
      "          'anything': 1,\n",
      "          'trailers': 1,\n",
      "          'hadnt': 1,\n",
      "          'already': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'given': 1,\n",
      "          'away': 1,\n",
      "          'nperhaps': 1,\n",
      "          'come': 1,\n",
      "          'expect': 1,\n",
      "          'hollywood': 1,\n",
      "          'bigbudget': 1,\n",
      "          'help': 1,\n",
      "          'evaluate': 1,\n",
      "          'scale': 1,\n",
      "          'onto': 1,\n",
      "          'nnaaaaaaah': 1,\n",
      "          'na': 1,\n",
      "          'non': 1,\n",
      "          'positive': 1,\n",
      "          'note': 1,\n",
      "          'honestly': 1,\n",
      "          'performance': 1,\n",
      "          'adorable': 1,\n",
      "          'seemed': 1,\n",
      "          'underused': 1,\n",
      "          'humble': 1,\n",
      "          'opinion': 1,\n",
      "          'lit': 1,\n",
      "          'every': 1,\n",
      "          'bubbly': 1,\n",
      "          'hardly': 1,\n",
      "          'nbranagh': 1,\n",
      "          'fun': 1,\n",
      "          'scenerymunching': 1,\n",
      "          'overthetop': 1,\n",
      "          'guy': 1,\n",
      "          'entertainmentbuck': 1,\n",
      "          'stopped': 1,\n",
      "          'nsmith': 1,\n",
      "          'static': 1,\n",
      "          'best': 1,\n",
      "          'full': 1,\n",
      "          'holes': 1,\n",
      "          'score': 1,\n",
      "          'insignificant': 1,\n",
      "          'derivative': 1,\n",
      "          'dozen': 1,\n",
      "          'others': 1,\n",
      "          'strongly': 1,\n",
      "          'advise': 1,\n",
      "          'anyone': 1,\n",
      "          'nthen': 1,\n",
      "          'tied': 1,\n",
      "          'cage': 1,\n",
      "          'huh': 1,\n",
      "          'oh': 1,\n",
      "          'nyeah': 1,\n",
      "          'rest': 1,\n",
      "          'sucked': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'starred': 1,\n",
      "          'ten': 1,\n",
      "          'alltime': 1,\n",
      "          'grossing': 1,\n",
      "          'worldwide': 1,\n",
      "          '1997s': 1,\n",
      "          'recorded': 1,\n",
      "          'grammywinning': 1,\n",
      "          'title': 1,\n",
      "          'song': 1,\n",
      "          '1996s': 1,\n",
      "          'nhe': 1,\n",
      "          'turned': 1,\n",
      "          'scholarship': 1,\n",
      "          'mit': 1,\n",
      "          'pursue': 1,\n",
      "          'singing': 1,\n",
      "          'nkevin': 1,\n",
      "          'graduate': 1,\n",
      "          'juilliard': 1,\n",
      "          'school': 1,\n",
      "          'drama': 1,\n",
      "          'married': 1,\n",
      "          'cuteasabutton': 1,\n",
      "          'phoebe': 1,\n",
      "          'cates': 1,\n",
      "          'since': 1,\n",
      "          '1989': 1,\n",
      "          'nthey': 1,\n",
      "          'kids': 1,\n",
      "          'together': 1,\n",
      "          'greta': 1,\n",
      "          'simone': 1,\n",
      "          'owen': 1,\n",
      "          'buildings': 1,\n",
      "          'gets': 1,\n",
      "          'blown': 1,\n",
      "          'written': 1,\n",
      "          'nlawrence': 1,\n",
      "          'director': 1,\n",
      "          'worked': 1,\n",
      "          'kevin': 1,\n",
      "          'five': 1,\n",
      "          'including': 1,\n",
      "          'chill': 1,\n",
      "          'silverado': 1,\n",
      "          'love': 1,\n",
      "          'death': 1,\n",
      "          'grand': 1,\n",
      "          'canyon': 1,\n",
      "          'kiss': 1,\n",
      "          'nsalma': 1,\n",
      "          'gave': 1,\n",
      "          'successful': 1,\n",
      "          'major': 1,\n",
      "          'television': 1,\n",
      "          'latin': 1,\n",
      "          'america': 1,\n",
      "          'moved': 1,\n",
      "          'start': 1,\n",
      "          'though': 1,\n",
      "          'spoke': 1,\n",
      "          'english': 1,\n",
      "          'feature': 1,\n",
      "          'debut': 1,\n",
      "          'small': 1,\n",
      "          'allison': 1,\n",
      "          'anders': 1,\n",
      "          'mi': 1,\n",
      "          'vida': 1,\n",
      "          'loca': 1,\n",
      "          'rickie': 1,\n",
      "          'martin': 1,\n",
      "          'video': 1,\n",
      "          'played': 1,\n",
      "          'robert': 1,\n",
      "          'desperado': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'nsince': 1,\n",
      "          'appearance': 1,\n",
      "          'stands': 1,\n",
      "          '52': 1,\n",
      "          'born': 1,\n",
      "          'southeast': 1,\n",
      "          'mexico': 1,\n",
      "          'daughter': 1,\n",
      "          'lebanese': 1,\n",
      "          'father': 1,\n",
      "          'mexican': 1,\n",
      "          'mother': 1,\n",
      "          'actresses': 1,\n",
      "          'cast': 1,\n",
      "          'branaghs': 1,\n",
      "          'lethal': 1,\n",
      "          'beauties': 1,\n",
      "          'includes': 1,\n",
      "          'bail': 1,\n",
      "          'ling': 1,\n",
      "          'stage': 1,\n",
      "          'screen': 1,\n",
      "          'native': 1,\n",
      "          'china': 1,\n",
      "          'dick': 1,\n",
      "          'gere': 1,\n",
      "          'red': 1,\n",
      "          'corner': 1,\n",
      "          'nanother': 1,\n",
      "          'dutchborn': 1,\n",
      "          'frederique': 1,\n",
      "          'van': 1,\n",
      "          'der': 1,\n",
      "          'wal': 1,\n",
      "          'worlds': 1,\n",
      "          'recognized': 1,\n",
      "          'supermodels': 1,\n",
      "          'graced': 1,\n",
      "          'cover': 1,\n",
      "          'cosmopolitan': 1,\n",
      "          'numerous': 1,\n",
      "          'well': 1,\n",
      "          'harpers': 1,\n",
      "          'bazaar': 1,\n",
      "          'vogue': 1,\n",
      "          'mademoiselle': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'kahl': 4,\n",
      "          'television': 3,\n",
      "          'movies': 3,\n",
      "          'pay': 3,\n",
      "          'still': 3,\n",
      "          'film': 3,\n",
      "          'series': 2,\n",
      "          'dealing': 2,\n",
      "          'law': 2,\n",
      "          'enforcement': 2,\n",
      "          'officers': 2,\n",
      "          'twilight': 2,\n",
      "          'murders': 2,\n",
      "          'one': 2,\n",
      "          'gordon': 2,\n",
      "          'rod': 2,\n",
      "          'steiger': 2,\n",
      "          'would': 2,\n",
      "          'taxes': 2,\n",
      "          'u': 2,\n",
      "          'nafter': 2,\n",
      "          'arrest': 2,\n",
      "          'turns': 2,\n",
      "          'northwest': 2,\n",
      "          'routine': 2,\n",
      "          'michael': 2,\n",
      "          'gross': 2,\n",
      "          'nhowever': 2,\n",
      "          'many': 2,\n",
      "          'american': 2,\n",
      "          'time': 2,\n",
      "          'like': 2,\n",
      "          'drama': 2,\n",
      "          'shouldnt': 2,\n",
      "          'non': 2,\n",
      "          'hand': 2,\n",
      "          'line': 1,\n",
      "          'duty': 1,\n",
      "          'critically': 1,\n",
      "          'praised': 1,\n",
      "          'reallife': 1,\n",
      "          'incidents': 1,\n",
      "          'claimed': 1,\n",
      "          'lives': 1,\n",
      "          'usa': 1,\n",
      "          'nthe': 1,\n",
      "          'another': 1,\n",
      "          'case': 1,\n",
      "          'played': 1,\n",
      "          'old': 1,\n",
      "          'farmer': 1,\n",
      "          'north': 1,\n",
      "          'dakota': 1,\n",
      "          'rather': 1,\n",
      "          'spend': 1,\n",
      "          'year': 1,\n",
      "          'prison': 1,\n",
      "          'despised': 1,\n",
      "          'government': 1,\n",
      "          'released': 1,\n",
      "          'refuses': 1,\n",
      "          'warrant': 1,\n",
      "          'issued': 1,\n",
      "          'nwhen': 1,\n",
      "          'marshals': 1,\n",
      "          'come': 1,\n",
      "          'isnt': 1,\n",
      "          'alone': 1,\n",
      "          'nmany': 1,\n",
      "          'poor': 1,\n",
      "          'farmers': 1,\n",
      "          'rural': 1,\n",
      "          'share': 1,\n",
      "          'extremist': 1,\n",
      "          'antigovernment': 1,\n",
      "          'beliefs': 1,\n",
      "          'operation': 1,\n",
      "          'shootout': 1,\n",
      "          'leave': 1,\n",
      "          'federal': 1,\n",
      "          'nthat': 1,\n",
      "          'brings': 1,\n",
      "          'fbi': 1,\n",
      "          'scene': 1,\n",
      "          'agent': 1,\n",
      "          'mayberly': 1,\n",
      "          'supervising': 1,\n",
      "          'manhunt': 1,\n",
      "          'efforts': 1,\n",
      "          'seem': 1,\n",
      "          'fruitless': 1,\n",
      "          'since': 1,\n",
      "          'supporters': 1,\n",
      "          'even': 1,\n",
      "          'local': 1,\n",
      "          'betrayed': 1,\n",
      "          '1988': 1,\n",
      "          'thriller': 1,\n",
      "          'costa': 1,\n",
      "          'gavras': 1,\n",
      "          'hollywood': 1,\n",
      "          'mostly': 1,\n",
      "          'ignored': 1,\n",
      "          'disturbing': 1,\n",
      "          'trends': 1,\n",
      "          'rising': 1,\n",
      "          'rightwing': 1,\n",
      "          'extremism': 1,\n",
      "          'remained': 1,\n",
      "          'oklahoma': 1,\n",
      "          'city': 1,\n",
      "          'bombing': 1,\n",
      "          'media': 1,\n",
      "          'hype': 1,\n",
      "          'brought': 1,\n",
      "          'rightwingers': 1,\n",
      "          'back': 1,\n",
      "          'spotlight': 1,\n",
      "          'nuntil': 1,\n",
      "          'bothered': 1,\n",
      "          'attention': 1,\n",
      "          'phenomenon': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'formulaic': 1,\n",
      "          'uses': 1,\n",
      "          'sensationalist': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'content': 1,\n",
      "          'order': 1,\n",
      "          'cover': 1,\n",
      "          'lack': 1,\n",
      "          'originality': 1,\n",
      "          'script': 1,\n",
      "          'nsometimes': 1,\n",
      "          'tv': 1,\n",
      "          'creates': 1,\n",
      "          'steadily': 1,\n",
      "          'directed': 1,\n",
      "          'dick': 1,\n",
      "          'lowry': 1,\n",
      "          'good': 1,\n",
      "          'job': 1,\n",
      "          'potraying': 1,\n",
      "          'pursuer': 1,\n",
      "          'quite': 1,\n",
      "          'wooden': 1,\n",
      "          'interaction': 1,\n",
      "          'actors': 1,\n",
      "          'terrible': 1,\n",
      "          'deal': 1,\n",
      "          'potentially': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'social': 1,\n",
      "          'political': 1,\n",
      "          'issues': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'spent': 1,\n",
      "          'front': 1,\n",
      "          'screen': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 16,\n",
      "          'supergirl': 12,\n",
      "          'nthe': 10,\n",
      "          'superman': 10,\n",
      "          'one': 8,\n",
      "          'movie': 7,\n",
      "          'shes': 6,\n",
      "          'even': 6,\n",
      "          'omegahedron': 6,\n",
      "          'release': 6,\n",
      "          'dvd': 6,\n",
      "          'ni': 5,\n",
      "          'two': 5,\n",
      "          'time': 5,\n",
      "          'city': 5,\n",
      "          'get': 5,\n",
      "          'never': 5,\n",
      "          'peter': 5,\n",
      "          'also': 5,\n",
      "          'szwarc': 5,\n",
      "          'slater': 4,\n",
      "          'still': 4,\n",
      "          'nsupergirl': 4,\n",
      "          'right': 4,\n",
      "          'people': 4,\n",
      "          'world': 4,\n",
      "          'much': 4,\n",
      "          'school': 4,\n",
      "          'im': 4,\n",
      "          'however': 4,\n",
      "          'track': 4,\n",
      "          'helen': 3,\n",
      "          'know': 3,\n",
      "          'opening': 3,\n",
      "          'nas': 3,\n",
      "          'see': 3,\n",
      "          'argo': 3,\n",
      "          'like': 3,\n",
      "          'krypton': 3,\n",
      "          'inner': 3,\n",
      "          'space': 3,\n",
      "          'nok': 3,\n",
      "          'nso': 3,\n",
      "          'nhow': 3,\n",
      "          'particularly': 3,\n",
      "          'things': 3,\n",
      "          'power': 3,\n",
      "          'none': 3,\n",
      "          'immediately': 3,\n",
      "          'earth': 3,\n",
      "          'dunaway': 3,\n",
      "          'evil': 3,\n",
      "          'lake': 3,\n",
      "          'nonsense': 3,\n",
      "          'though': 3,\n",
      "          'nat': 3,\n",
      "          'give': 3,\n",
      "          'well': 3,\n",
      "          'films': 3,\n",
      "          'first': 3,\n",
      "          'actually': 3,\n",
      "          'character': 3,\n",
      "          'released': 3,\n",
      "          'original': 3,\n",
      "          'disc': 3,\n",
      "          'audio': 3,\n",
      "          'commentary': 3,\n",
      "          'bosco': 3,\n",
      "          'nbosco': 3,\n",
      "          'wont': 3,\n",
      "          'directors': 3,\n",
      "          'back': 3,\n",
      "          'review': 2,\n",
      "          'contains': 2,\n",
      "          'n': 2,\n",
      "          'nwe': 2,\n",
      "          'dialogue': 2,\n",
      "          'love': 2,\n",
      "          'iii': 2,\n",
      "          'think': 2,\n",
      "          'doesnt': 2,\n",
      "          'terms': 2,\n",
      "          'alone': 2,\n",
      "          'scenes': 2,\n",
      "          'went': 2,\n",
      "          'running': 2,\n",
      "          'daily': 2,\n",
      "          'nwhat': 2,\n",
      "          'information': 2,\n",
      "          'source': 2,\n",
      "          'called': 2,\n",
      "          'zaltar': 2,\n",
      "          'supermans': 2,\n",
      "          'kara': 2,\n",
      "          'nkara': 2,\n",
      "          'thing': 2,\n",
      "          'nin': 2,\n",
      "          'three': 2,\n",
      "          'dip': 2,\n",
      "          'selena': 2,\n",
      "          'cook': 2,\n",
      "          'nselena': 2,\n",
      "          'sky': 2,\n",
      "          'course': 2,\n",
      "          'arrived': 2,\n",
      "          'complete': 2,\n",
      "          'bottom': 2,\n",
      "          'arrives': 2,\n",
      "          'nim': 2,\n",
      "          'given': 2,\n",
      "          'scene': 2,\n",
      "          'moment': 2,\n",
      "          'comes': 2,\n",
      "          'put': 2,\n",
      "          'point': 2,\n",
      "          'nthere': 2,\n",
      "          'sequence': 2,\n",
      "          'featuring': 2,\n",
      "          'done': 2,\n",
      "          'nalso': 2,\n",
      "          'interest': 2,\n",
      "          'moments': 2,\n",
      "          'flying': 2,\n",
      "          'effects': 2,\n",
      "          'meet': 2,\n",
      "          'notably': 2,\n",
      "          'latter': 2,\n",
      "          'logo': 2,\n",
      "          'otoole': 2,\n",
      "          'annoying': 2,\n",
      "          'vaccaro': 2,\n",
      "          'better': 2,\n",
      "          'written': 2,\n",
      "          'amount': 2,\n",
      "          'wonder': 2,\n",
      "          'make': 2,\n",
      "          'many': 2,\n",
      "          'bay': 2,\n",
      "          'features': 2,\n",
      "          'international': 2,\n",
      "          'version': 2,\n",
      "          'runs': 2,\n",
      "          'minutes': 2,\n",
      "          'print': 2,\n",
      "          'theaters': 2,\n",
      "          'full': 2,\n",
      "          'thx': 2,\n",
      "          'director': 2,\n",
      "          'special': 2,\n",
      "          'project': 2,\n",
      "          'consultant': 2,\n",
      "          'spots': 2,\n",
      "          'score': 2,\n",
      "          'new': 2,\n",
      "          'screen': 2,\n",
      "          'everyone': 2,\n",
      "          'everything': 2,\n",
      "          'learn': 2,\n",
      "          'times': 2,\n",
      "          'response': 2,\n",
      "          'surprised': 2,\n",
      "          'reeve': 2,\n",
      "          'sake': 2,\n",
      "          'brevity': 2,\n",
      "          'ndisc': 2,\n",
      "          'seen': 2,\n",
      "          'cut': 2,\n",
      "          'sat': 2,\n",
      "          'made': 2,\n",
      "          'end': 2,\n",
      "          'flies': 2,\n",
      "          'following': 1,\n",
      "          'spoilers': 1,\n",
      "          'way': 1,\n",
      "          'rapist': 1,\n",
      "          'matt': 1,\n",
      "          'frewer': 1,\n",
      "          'responds': 1,\n",
      "          'supergirls': 1,\n",
      "          'query': 1,\n",
      "          'attacked': 1,\n",
      "          'example': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'bad': 1,\n",
      "          'nill': 1,\n",
      "          'admit': 1,\n",
      "          'hated': 1,\n",
      "          'amongst': 1,\n",
      "          'faithful': 1,\n",
      "          'dismiss': 1,\n",
      "          'nothing': 1,\n",
      "          'vehicle': 1,\n",
      "          'richard': 1,\n",
      "          'pryor': 1,\n",
      "          'worthy': 1,\n",
      "          'addition': 1,\n",
      "          'man': 1,\n",
      "          'steel': 1,\n",
      "          'franchise': 1,\n",
      "          'spinoff': 1,\n",
      "          'sorts': 1,\n",
      "          'series': 1,\n",
      "          'producers': 1,\n",
      "          'alexander': 1,\n",
      "          'ilya': 1,\n",
      "          'salkind': 1,\n",
      "          'rival': 1,\n",
      "          'quality': 1,\n",
      "          'let': 1,\n",
      "          'ii': 1,\n",
      "          'lost': 1,\n",
      "          'steadily': 1,\n",
      "          'downhill': 1,\n",
      "          'rest': 1,\n",
      "          'hour': 1,\n",
      "          'plus': 1,\n",
      "          'begins': 1,\n",
      "          'residents': 1,\n",
      "          'commune': 1,\n",
      "          'place': 1,\n",
      "          'consisting': 1,\n",
      "          'refugees': 1,\n",
      "          'resides': 1,\n",
      "          'go': 1,\n",
      "          'lives': 1,\n",
      "          'exiles': 1,\n",
      "          'blew': 1,\n",
      "          'nwere': 1,\n",
      "          'living': 1,\n",
      "          'exploded': 1,\n",
      "          'nthis': 1,\n",
      "          'whole': 1,\n",
      "          'notion': 1,\n",
      "          'explained': 1,\n",
      "          'outside': 1,\n",
      "          'took': 1,\n",
      "          'name': 1,\n",
      "          'clark': 1,\n",
      "          'kent': 1,\n",
      "          'works': 1,\n",
      "          'planet': 1,\n",
      "          'nthese': 1,\n",
      "          'kinds': 1,\n",
      "          'frustrate': 1,\n",
      "          'hell': 1,\n",
      "          'nargo': 1,\n",
      "          'kept': 1,\n",
      "          'day': 1,\n",
      "          'founder': 1,\n",
      "          'toole': 1,\n",
      "          'gives': 1,\n",
      "          'cousin': 1,\n",
      "          'use': 1,\n",
      "          'inspiration': 1,\n",
      "          'art': 1,\n",
      "          'uses': 1,\n",
      "          'create': 1,\n",
      "          'buglike': 1,\n",
      "          'crashes': 1,\n",
      "          'layer': 1,\n",
      "          'whatever': 1,\n",
      "          'protects': 1,\n",
      "          'chaos': 1,\n",
      "          'sails': 1,\n",
      "          'dooming': 1,\n",
      "          'argonians': 1,\n",
      "          'death': 1,\n",
      "          'days': 1,\n",
      "          'something': 1,\n",
      "          'climbs': 1,\n",
      "          'pod': 1,\n",
      "          'designed': 1,\n",
      "          'interdimensional': 1,\n",
      "          'travel': 1,\n",
      "          'chases': 1,\n",
      "          'save': 1,\n",
      "          'travels': 1,\n",
      "          'directly': 1,\n",
      "          'lands': 1,\n",
      "          'bowl': 1,\n",
      "          'belonging': 1,\n",
      "          'minorleague': 1,\n",
      "          'witch': 1,\n",
      "          'named': 1,\n",
      "          'faye': 1,\n",
      "          'ruined': 1,\n",
      "          'announced': 1,\n",
      "          'desires': 1,\n",
      "          'rule': 1,\n",
      "          'sometimes': 1,\n",
      "          'warlock': 1,\n",
      "          'boyfriend': 1,\n",
      "          'nigel': 1,\n",
      "          'somehow': 1,\n",
      "          'knows': 1,\n",
      "          'ball': 1,\n",
      "          'help': 1,\n",
      "          'plans': 1,\n",
      "          'sets': 1,\n",
      "          'achieve': 1,\n",
      "          'domination': 1,\n",
      "          'unaware': 1,\n",
      "          'appropriate': 1,\n",
      "          'costume': 1,\n",
      "          'emerges': 1,\n",
      "          'nhuh': 1,\n",
      "          'nwhy': 1,\n",
      "          'fall': 1,\n",
      "          'shoots': 1,\n",
      "          'nattention': 1,\n",
      "          'explain': 1,\n",
      "          'sorry': 1,\n",
      "          'suspend': 1,\n",
      "          'disbelief': 1,\n",
      "          'cant': 1,\n",
      "          'buy': 1,\n",
      "          'wants': 1,\n",
      "          'nknowing': 1,\n",
      "          'needs': 1,\n",
      "          'secret': 1,\n",
      "          'identity': 1,\n",
      "          'basically': 1,\n",
      "          'wills': 1,\n",
      "          'girl': 1,\n",
      "          'outfit': 1,\n",
      "          'different': 1,\n",
      "          'hairstyle': 1,\n",
      "          'picks': 1,\n",
      "          'alias': 1,\n",
      "          'linda': 1,\n",
      "          'lee': 1,\n",
      "          'enrolls': 1,\n",
      "          'nshes': 1,\n",
      "          'dorm': 1,\n",
      "          'assignment': 1,\n",
      "          'happens': 1,\n",
      "          'roommate': 1,\n",
      "          'nlois': 1,\n",
      "          'lanes': 1,\n",
      "          'sister': 1,\n",
      "          'lucy': 1,\n",
      "          'coincidence': 1,\n",
      "          'folks': 1,\n",
      "          'getting': 1,\n",
      "          'really': 1,\n",
      "          'contrived': 1,\n",
      "          'follows': 1,\n",
      "          'generic': 1,\n",
      "          'allgirls': 1,\n",
      "          'hijinks': 1,\n",
      "          'ncomplete': 1,\n",
      "          'bully': 1,\n",
      "          'girls': 1,\n",
      "          'mean': 1,\n",
      "          'reason': 1,\n",
      "          'shower': 1,\n",
      "          'nbest': 1,\n",
      "          'decides': 1,\n",
      "          'bra': 1,\n",
      "          'uniform': 1,\n",
      "          'starts': 1,\n",
      "          'stuffing': 1,\n",
      "          'socks': 1,\n",
      "          'rapidly': 1,\n",
      "          'wondering': 1,\n",
      "          'bothering': 1,\n",
      "          'credit': 1,\n",
      "          'lengthy': 1,\n",
      "          'elaborate': 1,\n",
      "          'bulldozer': 1,\n",
      "          'destroying': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'search': 1,\n",
      "          'prey': 1,\n",
      "          'commendable': 1,\n",
      "          'genders': 1,\n",
      "          'reversed': 1,\n",
      "          'whereas': 1,\n",
      "          'women': 1,\n",
      "          'men': 1,\n",
      "          'merely': 1,\n",
      "          'objects': 1,\n",
      "          'tools': 1,\n",
      "          'nhart': 1,\n",
      "          'bochner': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'fun': 1,\n",
      "          'karas': 1,\n",
      "          'lovesick': 1,\n",
      "          'landscaper': 1,\n",
      "          'spell': 1,\n",
      "          'cast': 1,\n",
      "          'although': 1,\n",
      "          'unfortunately': 1,\n",
      "          'part': 1,\n",
      "          'ridiculous': 1,\n",
      "          'rescued': 1,\n",
      "          'tapped': 1,\n",
      "          'menacing': 1,\n",
      "          'bumper': 1,\n",
      "          'cars': 1,\n",
      "          'nthen': 1,\n",
      "          'numerous': 1,\n",
      "          'little': 1,\n",
      "          'bothered': 1,\n",
      "          'convincing': 1,\n",
      "          'nits': 1,\n",
      "          'obvious': 1,\n",
      "          'hooked': 1,\n",
      "          'wires': 1,\n",
      "          'ninstead': 1,\n",
      "          'look': 1,\n",
      "          'filmmakers': 1,\n",
      "          'wanted': 1,\n",
      "          'graceful': 1,\n",
      "          'poses': 1,\n",
      "          'lot': 1,\n",
      "          'ballettype': 1,\n",
      "          'maneuvers': 1,\n",
      "          'humans': 1,\n",
      "          'na': 1,\n",
      "          'pair': 1,\n",
      "          'truck': 1,\n",
      "          'driversrapists': 1,\n",
      "          'attack': 1,\n",
      "          'wacky': 1,\n",
      "          'demise': 1,\n",
      "          'rampant': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'popeyes': 1,\n",
      "          'tylenol': 1,\n",
      "          'aw': 1,\n",
      "          'root': 1,\n",
      "          'beer': 1,\n",
      "          'putting': 1,\n",
      "          'tshirt': 1,\n",
      "          'rapists': 1,\n",
      "          'nfinally': 1,\n",
      "          'word': 1,\n",
      "          'monsters': 1,\n",
      "          'nfaye': 1,\n",
      "          'ham': 1,\n",
      "          'unmercifully': 1,\n",
      "          'overacts': 1,\n",
      "          'hes': 1,\n",
      "          'entertaining': 1,\n",
      "          'says': 1,\n",
      "          'line': 1,\n",
      "          'seize': 1,\n",
      "          'ndunaways': 1,\n",
      "          'henchmen': 1,\n",
      "          'played': 1,\n",
      "          'brenda': 1,\n",
      "          'fare': 1,\n",
      "          'coming': 1,\n",
      "          'best': 1,\n",
      "          'equivalent': 1,\n",
      "          'ned': 1,\n",
      "          'beattys': 1,\n",
      "          'otis': 1,\n",
      "          'movies': 1,\n",
      "          'nhelen': 1,\n",
      "          'effectively': 1,\n",
      "          'portrays': 1,\n",
      "          'innocent': 1,\n",
      "          'naive': 1,\n",
      "          'able': 1,\n",
      "          'gaze': 1,\n",
      "          'flowers': 1,\n",
      "          'bunnies': 1,\n",
      "          'genuine': 1,\n",
      "          'believable': 1,\n",
      "          'nbelievability': 1,\n",
      "          'aside': 1,\n",
      "          'nnow': 1,\n",
      "          'despite': 1,\n",
      "          'negativity': 1,\n",
      "          'liked': 1,\n",
      "          'respected': 1,\n",
      "          'circles': 1,\n",
      "          'leave': 1,\n",
      "          'good': 1,\n",
      "          'anchor': 1,\n",
      "          'entertainment': 1,\n",
      "          'interested': 1,\n",
      "          'excited': 1,\n",
      "          'nthey': 1,\n",
      "          'separate': 1,\n",
      "          'editions': 1,\n",
      "          'delight': 1,\n",
      "          'including': 1,\n",
      "          'nyet': 1,\n",
      "          'unclear': 1,\n",
      "          'since': 1,\n",
      "          'awful': 1,\n",
      "          'widely': 1,\n",
      "          'available': 1,\n",
      "          '10': 1,\n",
      "          'longer': 1,\n",
      "          'ran': 1,\n",
      "          'u': 1,\n",
      "          'presented': 1,\n",
      "          'theatrical': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '2': 1,\n",
      "          '35': 1,\n",
      "          '1': 1,\n",
      "          'enhanced': 1,\n",
      "          '16x9': 1,\n",
      "          'televisions': 1,\n",
      "          'remastered': 1,\n",
      "          'glory': 1,\n",
      "          'nextras': 1,\n",
      "          'include': 1,\n",
      "          'length': 1,\n",
      "          'jeannot': 1,\n",
      "          'scott': 1,\n",
      "          'michael': 1,\n",
      "          'excellent': 1,\n",
      "          '50minute': 1,\n",
      "          'documentary': 1,\n",
      "          '1984': 1,\n",
      "          'supergirlthe': 1,\n",
      "          'making': 1,\n",
      "          'feature': 1,\n",
      "          'dig': 1,\n",
      "          'workout': 1,\n",
      "          'montage': 1,\n",
      "          '5': 1,\n",
      "          'trailers': 1,\n",
      "          '3': 1,\n",
      "          'tv': 1,\n",
      "          'talent': 1,\n",
      "          'bios': 1,\n",
      "          'indepth': 1,\n",
      "          'storyboards': 1,\n",
      "          'accompanied': 1,\n",
      "          'assorted': 1,\n",
      "          'galleries': 1,\n",
      "          'transfer': 1,\n",
      "          'incredible': 1,\n",
      "          'nyoud': 1,\n",
      "          'watching': 1,\n",
      "          'nimages': 1,\n",
      "          'sharp': 1,\n",
      "          'colors': 1,\n",
      "          'jump': 1,\n",
      "          'picture': 1,\n",
      "          'free': 1,\n",
      "          'scratches': 1,\n",
      "          'artifacts': 1,\n",
      "          'nonly': 1,\n",
      "          'sequences': 1,\n",
      "          'show': 1,\n",
      "          'wear': 1,\n",
      "          'isnt': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'obsessive': 1,\n",
      "          'george': 1,\n",
      "          'lucas': 1,\n",
      "          'approved': 1,\n",
      "          'loud': 1,\n",
      "          'clear': 1,\n",
      "          'places': 1,\n",
      "          'youll': 1,\n",
      "          'hearing': 1,\n",
      "          'absurd': 1,\n",
      "          'mediocre': 1,\n",
      "          'jerry': 1,\n",
      "          'goldsmith': 1,\n",
      "          'completely': 1,\n",
      "          'unrelated': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'classic': 1,\n",
      "          'theme': 1,\n",
      "          'sounds': 1,\n",
      "          'suited': 1,\n",
      "          'cannon': 1,\n",
      "          'golanglobus': 1,\n",
      "          'production': 1,\n",
      "          'step': 1,\n",
      "          'direction': 1,\n",
      "          'evolution': 1,\n",
      "          'commentaries': 1,\n",
      "          'seems': 1,\n",
      "          'expert': 1,\n",
      "          'ensure': 1,\n",
      "          'theres': 1,\n",
      "          'dead': 1,\n",
      "          'air': 1,\n",
      "          'probes': 1,\n",
      "          'virtually': 1,\n",
      "          'onscreen': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'result': 1,\n",
      "          'participation': 1,\n",
      "          'nalthough': 1,\n",
      "          'tell': 1,\n",
      "          'looking': 1,\n",
      "          'specific': 1,\n",
      "          'fascinating': 1,\n",
      "          'tidbits': 1,\n",
      "          'almost': 1,\n",
      "          'appearance': 1,\n",
      "          'christopher': 1,\n",
      "          'ngreat': 1,\n",
      "          'detail': 1,\n",
      "          'proposed': 1,\n",
      "          'role': 1,\n",
      "          'script': 1,\n",
      "          'wisely': 1,\n",
      "          'dropped': 1,\n",
      "          'stands': 1,\n",
      "          'early': 1,\n",
      "          'hear': 1,\n",
      "          'radio': 1,\n",
      "          'broadcast': 1,\n",
      "          'mention': 1,\n",
      "          'billions': 1,\n",
      "          'light': 1,\n",
      "          'years': 1,\n",
      "          'away': 1,\n",
      "          'sort': 1,\n",
      "          'peace': 1,\n",
      "          'mission': 1,\n",
      "          'nfor': 1,\n",
      "          'nszwarc': 1,\n",
      "          'reveals': 1,\n",
      "          'conscious': 1,\n",
      "          'decision': 1,\n",
      "          'salkinds': 1,\n",
      "          'else': 1,\n",
      "          'agreed': 1,\n",
      "          'needed': 1,\n",
      "          'stand': 1,\n",
      "          'replacing': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'cutsy': 1,\n",
      "          'whimsical': 1,\n",
      "          'fantasy': 1,\n",
      "          'points': 1,\n",
      "          'american': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'claiming': 1,\n",
      "          'would': 1,\n",
      "          'hit': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nagain': 1,\n",
      "          'nanchor': 1,\n",
      "          'limited': 1,\n",
      "          'edition': 1,\n",
      "          '50': 1,\n",
      "          '000': 1,\n",
      "          'copies': 1,\n",
      "          'pressed': 1,\n",
      "          'twodisc': 1,\n",
      "          'set': 1,\n",
      "          'mentioned': 1,\n",
      "          'regular': 1,\n",
      "          '138': 1,\n",
      "          'long': 1,\n",
      "          'additions': 1,\n",
      "          'mainly': 1,\n",
      "          'consist': 1,\n",
      "          'extensions': 1,\n",
      "          'dont': 1,\n",
      "          'add': 1,\n",
      "          'note': 1,\n",
      "          'except': 1,\n",
      "          'lengthen': 1,\n",
      "          'otooles': 1,\n",
      "          'appearances': 1,\n",
      "          'rough': 1,\n",
      "          'sound': 1,\n",
      "          'mono': 1,\n",
      "          'fans': 1,\n",
      "          'care': 1,\n",
      "          'question': 1,\n",
      "          'nshouldnt': 1,\n",
      "          'nid': 1,\n",
      "          'watch': 1,\n",
      "          'nine': 1,\n",
      "          'smart': 1,\n",
      "          'enough': 1,\n",
      "          'inform': 1,\n",
      "          'parents': 1,\n",
      "          'take': 1,\n",
      "          'popped': 1,\n",
      "          'player': 1,\n",
      "          'easy': 1,\n",
      "          'chair': 1,\n",
      "          'idea': 1,\n",
      "          'expect': 1,\n",
      "          'knew': 1,\n",
      "          'wasnt': 1,\n",
      "          'beloved': 1,\n",
      "          'willing': 1,\n",
      "          'shot': 1,\n",
      "          'impressive': 1,\n",
      "          'work': 1,\n",
      "          'began': 1,\n",
      "          'spin': 1,\n",
      "          'rather': 1,\n",
      "          'impressed': 1,\n",
      "          'sit': 1,\n",
      "          'assumptions': 1,\n",
      "          'could': 1,\n",
      "          'wrong': 1,\n",
      "          'ncome': 1,\n",
      "          'find': 1,\n",
      "          'chase': 1,\n",
      "          'digital': 1,\n",
      "          'stereo': 1,\n",
      "          'slunk': 1,\n",
      "          'seat': 1,\n",
      "          'nightmare': 1,\n",
      "          'started': 1,\n",
      "          'nugh': 1,\n",
      "          'twice': 1,\n",
      "          'discs': 1,\n",
      "          'definitely': 1,\n",
      "          'terrific': 1,\n",
      "          'package': 1,\n",
      "          'lousy': 1,\n",
      "          'npg': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'even': 5,\n",
      "          'two': 5,\n",
      "          'practical': 4,\n",
      "          'magic': 4,\n",
      "          'nthe': 3,\n",
      "          'sally': 3,\n",
      "          'gillian': 3,\n",
      "          'batman': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'actors': 2,\n",
      "          'get': 2,\n",
      "          'one': 2,\n",
      "          'bullock': 2,\n",
      "          'comes': 2,\n",
      "          'line': 2,\n",
      "          'years': 2,\n",
      "          'children': 2,\n",
      "          'aunts': 2,\n",
      "          'channing': 2,\n",
      "          'wiest': 2,\n",
      "          'meets': 2,\n",
      "          'dark': 2,\n",
      "          'abusive': 2,\n",
      "          'visjnic': 2,\n",
      "          'falls': 2,\n",
      "          'love': 2,\n",
      "          'devastated': 2,\n",
      "          'come': 2,\n",
      "          'since': 2,\n",
      "          'body': 2,\n",
      "          'story': 2,\n",
      "          'involving': 2,\n",
      "          'scene': 2,\n",
      "          'nit': 2,\n",
      "          'bit': 2,\n",
      "          'way': 2,\n",
      "          'getting': 2,\n",
      "          'character': 2,\n",
      "          'every': 2,\n",
      "          'attempt': 2,\n",
      "          'made': 2,\n",
      "          'people': 2,\n",
      "          'know': 2,\n",
      "          'ni': 2,\n",
      "          'last': 2,\n",
      "          'hes': 2,\n",
      "          'misguided': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'makes': 1,\n",
      "          'wonder': 1,\n",
      "          'talented': 1,\n",
      "          'highprofile': 1,\n",
      "          'would': 1,\n",
      "          'involved': 1,\n",
      "          'embarrassing': 1,\n",
      "          'claptrap': 1,\n",
      "          'like': 1,\n",
      "          'stars': 1,\n",
      "          'sandra': 1,\n",
      "          'nicole': 1,\n",
      "          'kidman': 1,\n",
      "          'owens': 1,\n",
      "          'sisters': 1,\n",
      "          'whose': 1,\n",
      "          'family': 1,\n",
      "          'long': 1,\n",
      "          'witches': 1,\n",
      "          'spanning': 1,\n",
      "          'back': 1,\n",
      "          '200': 1,\n",
      "          'nat': 1,\n",
      "          'start': 1,\n",
      "          'parents': 1,\n",
      "          'die': 1,\n",
      "          'still': 1,\n",
      "          'go': 1,\n",
      "          'live': 1,\n",
      "          'zany': 1,\n",
      "          'stockard': 1,\n",
      "          'dianne': 1,\n",
      "          'nswitch': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'stronger': 1,\n",
      "          'rebellious': 1,\n",
      "          'sibling': 1,\n",
      "          'leaves': 1,\n",
      "          'home': 1,\n",
      "          'guy': 1,\n",
      "          'goran': 1,\n",
      "          'stays': 1,\n",
      "          'hometown': 1,\n",
      "          'sweet': 1,\n",
      "          'caring': 1,\n",
      "          'man': 1,\n",
      "          'husband': 1,\n",
      "          'hit': 1,\n",
      "          'truck': 1,\n",
      "          'killed': 1,\n",
      "          'think': 1,\n",
      "          'shes': 1,\n",
      "          'gets': 1,\n",
      "          'minutes': 1,\n",
      "          'nwhen': 1,\n",
      "          'calls': 1,\n",
      "          'another': 1,\n",
      "          'spat': 1,\n",
      "          'accidentally': 1,\n",
      "          'murder': 1,\n",
      "          'desperation': 1,\n",
      "          'bury': 1,\n",
      "          'backyard': 1,\n",
      "          'house': 1,\n",
      "          'nadd': 1,\n",
      "          'wildly': 1,\n",
      "          'convoluted': 1,\n",
      "          'subplots': 1,\n",
      "          'dead': 1,\n",
      "          'rising': 1,\n",
      "          'exorcism': 1,\n",
      "          'mention': 1,\n",
      "          'spattering': 1,\n",
      "          'lighthearted': 1,\n",
      "          'whimsy': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'idea': 1,\n",
      "          'messy': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'reflected': 1,\n",
      "          'element': 1,\n",
      "          'liked': 1,\n",
      "          'enjoyed': 1,\n",
      "          'comedy': 1,\n",
      "          'sure': 1,\n",
      "          'humor': 1,\n",
      "          'astoundingly': 1,\n",
      "          'flat': 1,\n",
      "          'occasional': 1,\n",
      "          'dramatic': 1,\n",
      "          'moments': 1,\n",
      "          'least': 1,\n",
      "          'touching': 1,\n",
      "          'charming': 1,\n",
      "          'entertaining': 1,\n",
      "          'nand': 1,\n",
      "          'top': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'birdbrained': 1,\n",
      "          'evil': 1,\n",
      "          'spirit': 1,\n",
      "          'taking': 1,\n",
      "          'gillians': 1,\n",
      "          'nwhatever': 1,\n",
      "          'characters': 1,\n",
      "          'handled': 1,\n",
      "          'terribly': 1,\n",
      "          'actually': 1,\n",
      "          'fortune': 1,\n",
      "          'could': 1,\n",
      "          'call': 1,\n",
      "          'nthere': 1,\n",
      "          'reason': 1,\n",
      "          'decided': 1,\n",
      "          'always': 1,\n",
      "          'standing': 1,\n",
      "          'sidebyside': 1,\n",
      "          'nno': 1,\n",
      "          'flesh': 1,\n",
      "          'actual': 1,\n",
      "          'goes': 1,\n",
      "          'aidan': 1,\n",
      "          'quinn': 1,\n",
      "          'handsome': 1,\n",
      "          'police': 1,\n",
      "          'investigator': 1,\n",
      "          'misfortune': 1,\n",
      "          'romantic': 1,\n",
      "          'lead': 1,\n",
      "          'opposite': 1,\n",
      "          'though': 1,\n",
      "          'around': 1,\n",
      "          '70minute': 1,\n",
      "          'mark': 1,\n",
      "          'develop': 1,\n",
      "          'relationship': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'dialogue': 1,\n",
      "          'service': 1,\n",
      "          'moving': 1,\n",
      "          'plot': 1,\n",
      "          'along': 1,\n",
      "          'rather': 1,\n",
      "          'saying': 1,\n",
      "          'lines': 1,\n",
      "          'headed': 1,\n",
      "          'trouble': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'found': 1,\n",
      "          'screenplay': 1,\n",
      "          'written': 1,\n",
      "          'deeply': 1,\n",
      "          'hated': 1,\n",
      "          'akiva': 1,\n",
      "          'goldsman': 1,\n",
      "          'managed': 1,\n",
      "          'destroy': 1,\n",
      "          'series': 1,\n",
      "          'forever': 1,\n",
      "          'robin': 1,\n",
      "          'n': 1,\n",
      "          'directed': 1,\n",
      "          'griffin': 1,\n",
      "          'dunne': 1,\n",
      "          'primarily': 1,\n",
      "          'actor': 1,\n",
      "          'year': 1,\n",
      "          'contrived': 1,\n",
      "          'clumsy': 1,\n",
      "          'romance': 1,\n",
      "          'addicted': 1,\n",
      "          'meg': 1,\n",
      "          'ryan': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'disliked': 1,\n",
      "          'movie': 1,\n",
      "          'quite': 1,\n",
      "          'worse': 1,\n",
      "          'give': 1,\n",
      "          'taste': 1,\n",
      "          'talentless': 1,\n",
      "          'filmmaker': 1,\n",
      "          'nid': 1,\n",
      "          'tell': 1,\n",
      "          'quit': 1,\n",
      "          'ahead': 1,\n",
      "          'ultimately': 1,\n",
      "          'already': 1,\n",
      "          'buried': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 7,\n",
      "          'sleepy': 5,\n",
      "          'hollow': 5,\n",
      "          'ichabod': 5,\n",
      "          'series': 4,\n",
      "          'nthe': 4,\n",
      "          'ni': 3,\n",
      "          'horror': 2,\n",
      "          'films': 2,\n",
      "          'burtons': 2,\n",
      "          'leading': 2,\n",
      "          'kevin': 2,\n",
      "          'character': 2,\n",
      "          'story': 2,\n",
      "          'movie': 2,\n",
      "          'depp': 2,\n",
      "          'new': 2,\n",
      "          'scientific': 2,\n",
      "          'town': 2,\n",
      "          'headless': 2,\n",
      "          'horseman': 2,\n",
      "          'nalthough': 2,\n",
      "          'also': 2,\n",
      "          'victims': 2,\n",
      "          'nalong': 2,\n",
      "          'help': 2,\n",
      "          'one': 2,\n",
      "          'without': 2,\n",
      "          'goofy': 2,\n",
      "          'doesnt': 2,\n",
      "          'producer': 2,\n",
      "          'work': 2,\n",
      "          'like': 2,\n",
      "          'hes': 2,\n",
      "          'thats': 2,\n",
      "          'comes': 2,\n",
      "          'christopher': 2,\n",
      "          'pictures': 2,\n",
      "          'bird': 2,\n",
      "          'card': 2,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'film': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'directed': 1,\n",
      "          'homage': 1,\n",
      "          'genre': 1,\n",
      "          'frankenweenie': 1,\n",
      "          'beetlejuice': 1,\n",
      "          'batman': 1,\n",
      "          'edward': 1,\n",
      "          'scissorhands': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'mars': 1,\n",
      "          'attacks': 1,\n",
      "          'yet': 1,\n",
      "          'none': 1,\n",
      "          'first': 1,\n",
      "          'attempt': 1,\n",
      "          'actually': 1,\n",
      "          'scare': 1,\n",
      "          'people': 1,\n",
      "          'greeted': 1,\n",
      "          'prospect': 1,\n",
      "          'high': 1,\n",
      "          'anticipation': 1,\n",
      "          'whole': 1,\n",
      "          'career': 1,\n",
      "          'seemed': 1,\n",
      "          'left': 1,\n",
      "          'disappointed': 1,\n",
      "          'nandrew': 1,\n",
      "          'walkers': 1,\n",
      "          'screenplay': 1,\n",
      "          'takes': 1,\n",
      "          'names': 1,\n",
      "          'classic': 1,\n",
      "          'short': 1,\n",
      "          'legend': 1,\n",
      "          'nin': 1,\n",
      "          'crane': 1,\n",
      "          'johnny': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'police': 1,\n",
      "          'constable': 1,\n",
      "          'trying': 1,\n",
      "          'introduce': 1,\n",
      "          'methods': 1,\n",
      "          'investigation': 1,\n",
      "          'superiors': 1,\n",
      "          'nichabod': 1,\n",
      "          'dispatched': 1,\n",
      "          'small': 1,\n",
      "          'investigate': 1,\n",
      "          'murders': 1,\n",
      "          'nseveral': 1,\n",
      "          'towns': 1,\n",
      "          'citizens': 1,\n",
      "          'decapitated': 1,\n",
      "          'rejects': 1,\n",
      "          'ghost': 1,\n",
      "          'elders': 1,\n",
      "          'tell': 1,\n",
      "          'finds': 1,\n",
      "          'facts': 1,\n",
      "          'case': 1,\n",
      "          'confound': 1,\n",
      "          'reasoning': 1,\n",
      "          'nhe': 1,\n",
      "          'discovers': 1,\n",
      "          'killings': 1,\n",
      "          'random': 1,\n",
      "          'tied': 1,\n",
      "          'together': 1,\n",
      "          'secret': 1,\n",
      "          'way': 1,\n",
      "          'gets': 1,\n",
      "          'bewitching': 1,\n",
      "          'literally': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'son': 1,\n",
      "          'murder': 1,\n",
      "          'marc': 1,\n",
      "          'pickering': 1,\n",
      "          'nmy': 1,\n",
      "          'reaction': 1,\n",
      "          'hohum': 1,\n",
      "          'plot': 1,\n",
      "          'accumulation': 1,\n",
      "          'cliches': 1,\n",
      "          'even': 1,\n",
      "          'slightest': 1,\n",
      "          'touch': 1,\n",
      "          'originality': 1,\n",
      "          'make': 1,\n",
      "          'interesting': 1,\n",
      "          'nthat': 1,\n",
      "          'forgivable': 1,\n",
      "          'hollywood': 1,\n",
      "          'constantly': 1,\n",
      "          'tries': 1,\n",
      "          'sell': 1,\n",
      "          'us': 1,\n",
      "          'used': 1,\n",
      "          'products': 1,\n",
      "          'packages': 1,\n",
      "          'nhowever': 1,\n",
      "          'attempts': 1,\n",
      "          'inducing': 1,\n",
      "          'fright': 1,\n",
      "          'come': 1,\n",
      "          'nit': 1,\n",
      "          'might': 1,\n",
      "          'background': 1,\n",
      "          'previous': 1,\n",
      "          'movies': 1,\n",
      "          'goal': 1,\n",
      "          'lines': 1,\n",
      "          'creature': 1,\n",
      "          'designer': 1,\n",
      "          'yagher': 1,\n",
      "          'done': 1,\n",
      "          'best': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'tales': 1,\n",
      "          'crypt': 1,\n",
      "          'tv': 1,\n",
      "          'na': 1,\n",
      "          'witchs': 1,\n",
      "          'eyes': 1,\n",
      "          'tongue': 1,\n",
      "          'shoot': 1,\n",
      "          'roger': 1,\n",
      "          'rabbits': 1,\n",
      "          'tree': 1,\n",
      "          'spurts': 1,\n",
      "          'blood': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'sketch': 1,\n",
      "          'nwell': 1,\n",
      "          'guy': 1,\n",
      "          'head': 1,\n",
      "          'non': 1,\n",
      "          'horse': 1,\n",
      "          'boo': 1,\n",
      "          'performances': 1,\n",
      "          'awful': 1,\n",
      "          'impressed': 1,\n",
      "          'seem': 1,\n",
      "          'know': 1,\n",
      "          'dialogue': 1,\n",
      "          'hampered': 1,\n",
      "          'stilted': 1,\n",
      "          'diction': 1,\n",
      "          'supposed': 1,\n",
      "          'pass': 1,\n",
      "          '18th': 1,\n",
      "          'century': 1,\n",
      "          'accent': 1,\n",
      "          'nricci': 1,\n",
      "          'seems': 1,\n",
      "          'put': 1,\n",
      "          'effort': 1,\n",
      "          'seeming': 1,\n",
      "          'enigmatic': 1,\n",
      "          'guarantees': 1,\n",
      "          'wont': 1,\n",
      "          'sympathize': 1,\n",
      "          'actor': 1,\n",
      "          'revealed': 1,\n",
      "          'end': 1,\n",
      "          'villain': 1,\n",
      "          'ridiculously': 1,\n",
      "          'cartoonish': 1,\n",
      "          'pleasure': 1,\n",
      "          'generated': 1,\n",
      "          'cast': 1,\n",
      "          'surprise': 1,\n",
      "          'cameos': 1,\n",
      "          'lee': 1,\n",
      "          'martin': 1,\n",
      "          'landau': 1,\n",
      "          'walken': 1,\n",
      "          'wonder': 1,\n",
      "          'originally': 1,\n",
      "          'conceived': 1,\n",
      "          'part': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          'coppolas': 1,\n",
      "          'projected': 1,\n",
      "          'gothic': 1,\n",
      "          'adaptations': 1,\n",
      "          'produced': 1,\n",
      "          'bram': 1,\n",
      "          'stokers': 1,\n",
      "          'dracula': 1,\n",
      "          'mary': 1,\n",
      "          'shelleys': 1,\n",
      "          'frankenstein': 1,\n",
      "          'ncoppola': 1,\n",
      "          'executive': 1,\n",
      "          'script': 1,\n",
      "          'reflects': 1,\n",
      "          'interest': 1,\n",
      "          'early': 1,\n",
      "          'forms': 1,\n",
      "          'moving': 1,\n",
      "          'particularly': 1,\n",
      "          'toy': 1,\n",
      "          'carries': 1,\n",
      "          'blends': 1,\n",
      "          'two': 1,\n",
      "          'create': 1,\n",
      "          'optical': 1,\n",
      "          'illusion': 1,\n",
      "          'theres': 1,\n",
      "          'side': 1,\n",
      "          'cage': 1,\n",
      "          'nwhen': 1,\n",
      "          'flipped': 1,\n",
      "          'rapidly': 1,\n",
      "          'appears': 1,\n",
      "          'caged': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'isnt': 1,\n",
      "          'thing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gift': 3,\n",
      "          'south': 3,\n",
      "          'nits': 3,\n",
      "          'town': 2,\n",
      "          'something': 2,\n",
      "          'psychic': 2,\n",
      "          'supernatural': 2,\n",
      "          'nasty': 2,\n",
      "          'may': 2,\n",
      "          'nwhats': 2,\n",
      "          'good': 2,\n",
      "          'one': 2,\n",
      "          'film': 2,\n",
      "          'screenplay': 2,\n",
      "          'trite': 2,\n",
      "          'makes': 2,\n",
      "          'n': 2,\n",
      "          'cliche': 2,\n",
      "          'like': 2,\n",
      "          'nfor': 2,\n",
      "          'annie': 1,\n",
      "          'wilson': 1,\n",
      "          'cate': 1,\n",
      "          'blanchett': 1,\n",
      "          'widow': 1,\n",
      "          'struggles': 1,\n",
      "          'raise': 1,\n",
      "          'children': 1,\n",
      "          'small': 1,\n",
      "          'georgia': 1,\n",
      "          'asked': 1,\n",
      "          'help': 1,\n",
      "          'local': 1,\n",
      "          'authorities': 1,\n",
      "          'solving': 1,\n",
      "          'case': 1,\n",
      "          'missing': 1,\n",
      "          'woman': 1,\n",
      "          'nannie': 1,\n",
      "          'involuntary': 1,\n",
      "          'bouts': 1,\n",
      "          'see': 1,\n",
      "          'past': 1,\n",
      "          'future': 1,\n",
      "          'physically': 1,\n",
      "          'feel': 1,\n",
      "          'actions': 1,\n",
      "          'happenning': 1,\n",
      "          'envisions': 1,\n",
      "          'nher': 1,\n",
      "          'leads': 1,\n",
      "          'arrest': 1,\n",
      "          'wife': 1,\n",
      "          'beater': 1,\n",
      "          'killed': 1,\n",
      "          'pretty': 1,\n",
      "          'rich': 1,\n",
      "          'girl': 1,\n",
      "          'found': 1,\n",
      "          'swamp': 1,\n",
      "          'property': 1,\n",
      "          'nin': 1,\n",
      "          'ultra': 1,\n",
      "          'conservative': 1,\n",
      "          'backwoods': 1,\n",
      "          'testimony': 1,\n",
      "          'based': 1,\n",
      "          'visions': 1,\n",
      "          'hold': 1,\n",
      "          'court': 1,\n",
      "          'ndo': 1,\n",
      "          'even': 1,\n",
      "          'right': 1,\n",
      "          'man': 1,\n",
      "          'naside': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'giving': 1,\n",
      "          'best': 1,\n",
      "          'performances': 1,\n",
      "          'career': 1,\n",
      "          'loathable': 1,\n",
      "          'redneck': 1,\n",
      "          'donnie': 1,\n",
      "          'barksdale': 1,\n",
      "          'little': 1,\n",
      "          'else': 1,\n",
      "          'going': 1,\n",
      "          'nlame': 1,\n",
      "          'unoriginal': 1,\n",
      "          'npredictable': 1,\n",
      "          'ending': 1,\n",
      "          'nsuspense': 1,\n",
      "          'scenes': 1,\n",
      "          'plain': 1,\n",
      "          'boring': 1,\n",
      "          'nridicously': 1,\n",
      "          'characterization': 1,\n",
      "          'entire': 1,\n",
      "          'ingnorant': 1,\n",
      "          'hateful': 1,\n",
      "          'goobers': 1,\n",
      "          'nrelentless': 1,\n",
      "          'emotional': 1,\n",
      "          'sensationaliztion': 1,\n",
      "          'noverall': 1,\n",
      "          'critique': 1,\n",
      "          'movies': 1,\n",
      "          'wonder': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'story': 1,\n",
      "          'collection': 1,\n",
      "          'every': 1,\n",
      "          'stereotype': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'coming': 1,\n",
      "          'yankee': 1,\n",
      "          'dislikes': 1,\n",
      "          'thats': 1,\n",
      "          'really': 1,\n",
      "          'saying': 1,\n",
      "          'established': 1,\n",
      "          'talented': 1,\n",
      "          'director': 1,\n",
      "          'sam': 1,\n",
      "          'raimi': 1,\n",
      "          'unable': 1,\n",
      "          'provide': 1,\n",
      "          'kind': 1,\n",
      "          'originality': 1,\n",
      "          'predictable': 1,\n",
      "          'first': 1,\n",
      "          'scene': 1,\n",
      "          'written': 1,\n",
      "          'ripoff': 1,\n",
      "          'photocopied': 1,\n",
      "          'bootlegged': 1,\n",
      "          'play': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'murder': 1,\n",
      "          'suspect': 1,\n",
      "          'didnt': 1,\n",
      "          'actually': 1,\n",
      "          'surprise': 1,\n",
      "          'either': 1,\n",
      "          'real': 1,\n",
      "          'villain': 1,\n",
      "          'turns': 1,\n",
      "          'motive': 1,\n",
      "          'nsigh': 1,\n",
      "          'thriller': 1,\n",
      "          'neither': 1,\n",
      "          'scary': 1,\n",
      "          'intense': 1,\n",
      "          'basically': 1,\n",
      "          'glorified': 1,\n",
      "          'bmovie': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'first': 6,\n",
      "          'species': 5,\n",
      "          'character': 5,\n",
      "          'ii': 4,\n",
      "          'patrick': 4,\n",
      "          'eve': 4,\n",
      "          'fails': 3,\n",
      "          'one': 3,\n",
      "          'like': 3,\n",
      "          'theres': 3,\n",
      "          'hes': 3,\n",
      "          'alien': 3,\n",
      "          'nand': 3,\n",
      "          'henstridge': 3,\n",
      "          'time': 3,\n",
      "          'around': 3,\n",
      "          'sense': 3,\n",
      "          'much': 3,\n",
      "          'incredulous': 2,\n",
      "          'original': 2,\n",
      "          'audiences': 2,\n",
      "          'dennis': 2,\n",
      "          'series': 2,\n",
      "          'instead': 2,\n",
      "          'silly': 2,\n",
      "          'nthe': 2,\n",
      "          'ross': 2,\n",
      "          'lazard': 2,\n",
      "          'focus': 2,\n",
      "          'along': 2,\n",
      "          'lot': 2,\n",
      "          'activities': 2,\n",
      "          'astronaut': 2,\n",
      "          'recently': 2,\n",
      "          'mission': 2,\n",
      "          'mars': 2,\n",
      "          'whos': 2,\n",
      "          'mate': 2,\n",
      "          'offspring': 2,\n",
      "          'halfalien': 2,\n",
      "          'patricks': 2,\n",
      "          'would': 2,\n",
      "          'laura': 2,\n",
      "          'helgenberger': 2,\n",
      "          'reprising': 2,\n",
      "          'role': 2,\n",
      "          'even': 2,\n",
      "          'really': 2,\n",
      "          'nmr': 2,\n",
      "          'screenplay': 2,\n",
      "          'often': 2,\n",
      "          'leaves': 2,\n",
      "          'upon': 2,\n",
      "          'nthis': 2,\n",
      "          'shes': 2,\n",
      "          'sequence': 2,\n",
      "          'make': 2,\n",
      "          'sort': 2,\n",
      "          'plot': 2,\n",
      "          'contain': 2,\n",
      "          'disbelief': 2,\n",
      "          'guards': 2,\n",
      "          'look': 2,\n",
      "          'ms': 2,\n",
      "          'note': 1,\n",
      "          'may': 1,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'ni': 1,\n",
      "          'heard': 1,\n",
      "          'mgm': 1,\n",
      "          'planning': 1,\n",
      "          'sequel': 1,\n",
      "          '1995': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'flick': 1,\n",
      "          'nsquandering': 1,\n",
      "          'intriguing': 1,\n",
      "          'premise': 1,\n",
      "          'turned': 1,\n",
      "          'dreadful': 1,\n",
      "          'mess': 1,\n",
      "          'widely': 1,\n",
      "          'disliked': 1,\n",
      "          'critics': 1,\n",
      "          'alike': 1,\n",
      "          'nonetheless': 1,\n",
      "          'still': 1,\n",
      "          'somehow': 1,\n",
      "          'succeeded': 1,\n",
      "          'becoming': 1,\n",
      "          'financial': 1,\n",
      "          'success': 1,\n",
      "          'raking': 1,\n",
      "          '60': 1,\n",
      "          'million': 1,\n",
      "          'domestic': 1,\n",
      "          'competitive': 1,\n",
      "          'summer': 1,\n",
      "          'season': 1,\n",
      "          'despite': 1,\n",
      "          'distinct': 1,\n",
      "          'lack': 1,\n",
      "          'star': 1,\n",
      "          'power': 1,\n",
      "          'cast': 1,\n",
      "          'ben': 1,\n",
      "          'kingsleys': 1,\n",
      "          'splendid': 1,\n",
      "          'actor': 1,\n",
      "          'marquee': 1,\n",
      "          'name': 1,\n",
      "          'aint': 1,\n",
      "          'nmiraculously': 1,\n",
      "          'dodging': 1,\n",
      "          'bullet': 1,\n",
      "          'doubted': 1,\n",
      "          'theyd': 1,\n",
      "          'dare': 1,\n",
      "          'tempt': 1,\n",
      "          'fate': 1,\n",
      "          'go': 1,\n",
      "          'another': 1,\n",
      "          'round': 1,\n",
      "          'nso': 1,\n",
      "          'comes': 1,\n",
      "          'new': 1,\n",
      "          'creative': 1,\n",
      "          'team': 1,\n",
      "          'director': 1,\n",
      "          'peter': 1,\n",
      "          'medak': 1,\n",
      "          'screenwriter': 1,\n",
      "          'chris': 1,\n",
      "          'brancato': 1,\n",
      "          'step': 1,\n",
      "          'roger': 1,\n",
      "          'donaldson': 1,\n",
      "          'feldman': 1,\n",
      "          'respectively': 1,\n",
      "          'improve': 1,\n",
      "          'iota': 1,\n",
      "          'predecessor': 1,\n",
      "          'capitalize': 1,\n",
      "          'potentially': 1,\n",
      "          'promising': 1,\n",
      "          'kernel': 1,\n",
      "          'runs': 1,\n",
      "          'gamut': 1,\n",
      "          'ridiculously': 1,\n",
      "          'unmitigatedly': 1,\n",
      "          'stupid': 1,\n",
      "          'follows': 1,\n",
      "          'exploits': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n",
      "          'justin': 1,\n",
      "          'whose': 1,\n",
      "          'sole': 1,\n",
      "          'cruising': 1,\n",
      "          'streets': 1,\n",
      "          'order': 1,\n",
      "          'pick': 1,\n",
      "          'women': 1,\n",
      "          'loitering': 1,\n",
      "          'strip': 1,\n",
      "          'clubs': 1,\n",
      "          'generally': 1,\n",
      "          'trying': 1,\n",
      "          'bed': 1,\n",
      "          'many': 1,\n",
      "          'different': 1,\n",
      "          'ladies': 1,\n",
      "          'possibly': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'guys': 1,\n",
      "          'could': 1,\n",
      "          'describe': 1,\n",
      "          'everyday': 1,\n",
      "          'routines': 1,\n",
      "          'huge': 1,\n",
      "          'percentage': 1,\n",
      "          'men': 1,\n",
      "          'age': 1,\n",
      "          'catch': 1,\n",
      "          'returned': 1,\n",
      "          'seemingly': 1,\n",
      "          'successful': 1,\n",
      "          'infected': 1,\n",
      "          'dna': 1,\n",
      "          'npatricks': 1,\n",
      "          'overriding': 1,\n",
      "          'compulsion': 1,\n",
      "          'sire': 1,\n",
      "          'countless': 1,\n",
      "          'numbers': 1,\n",
      "          'gooey': 1,\n",
      "          'little': 1,\n",
      "          'becomes': 1,\n",
      "          'aware': 1,\n",
      "          'natasha': 1,\n",
      "          'halfhuman': 1,\n",
      "          'clone': 1,\n",
      "          'monster': 1,\n",
      "          'studied': 1,\n",
      "          'government': 1,\n",
      "          'lab': 1,\n",
      "          'primary': 1,\n",
      "          'turns': 1,\n",
      "          'two': 1,\n",
      "          'resulting': 1,\n",
      "          'pure': 1,\n",
      "          'strain': 1,\n",
      "          'unstoppable': 1,\n",
      "          'warns': 1,\n",
      "          'dr': 1,\n",
      "          'baker': 1,\n",
      "          'marg': 1,\n",
      "          'gamely': 1,\n",
      "          'admirable': 1,\n",
      "          'conviction': 1,\n",
      "          'nspecies': 1,\n",
      "          'opens': 1,\n",
      "          'space': 1,\n",
      "          'scenes': 1,\n",
      "          'remarkably': 1,\n",
      "          'unconvincing': 1,\n",
      "          'hokeylooking': 1,\n",
      "          'splicing': 1,\n",
      "          'back': 1,\n",
      "          'dated': 1,\n",
      "          'grainy': 1,\n",
      "          'footage': 1,\n",
      "          'actual': 1,\n",
      "          'spacecraft': 1,\n",
      "          'skimped': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'nhowever': 1,\n",
      "          'looks': 1,\n",
      "          'positively': 1,\n",
      "          'inspired': 1,\n",
      "          'compared': 1,\n",
      "          'appearance': 1,\n",
      "          'evil': 1,\n",
      "          'goo': 1,\n",
      "          'ultimately': 1,\n",
      "          'infests': 1,\n",
      "          'watching': 1,\n",
      "          'slinks': 1,\n",
      "          'command': 1,\n",
      "          'module': 1,\n",
      "          'spaceship': 1,\n",
      "          'question': 1,\n",
      "          'whether': 1,\n",
      "          'cheesy': 1,\n",
      "          'bmovie': 1,\n",
      "          'quickly': 1,\n",
      "          'answered': 1,\n",
      "          'brancatos': 1,\n",
      "          'filled': 1,\n",
      "          'outrageous': 1,\n",
      "          'lines': 1,\n",
      "          'audience': 1,\n",
      "          'stitches': 1,\n",
      "          'nlike': 1,\n",
      "          'perhaps': 1,\n",
      "          'homage': 1,\n",
      "          'real': 1,\n",
      "          'penchant': 1,\n",
      "          'dialogue': 1,\n",
      "          'underlines': 1,\n",
      "          'obvious': 1,\n",
      "          'nlast': 1,\n",
      "          'featured': 1,\n",
      "          'hootworthy': 1,\n",
      "          'line': 1,\n",
      "          'uttered': 1,\n",
      "          'forest': 1,\n",
      "          'whitakers': 1,\n",
      "          'psychic': 1,\n",
      "          'empath': 1,\n",
      "          'entering': 1,\n",
      "          'bloodsoaked': 1,\n",
      "          'room': 1,\n",
      "          'something': 1,\n",
      "          'bad': 1,\n",
      "          'happened': 1,\n",
      "          'gets': 1,\n",
      "          'stand': 1,\n",
      "          'fresh': 1,\n",
      "          'shredded': 1,\n",
      "          'corpse': 1,\n",
      "          'entails': 1,\n",
      "          'ripped': 1,\n",
      "          'mutter': 1,\n",
      "          'awful': 1,\n",
      "          'empathic': 1,\n",
      "          'psychotically': 1,\n",
      "          'horny': 1,\n",
      "          'accosts': 1,\n",
      "          'supermarket': 1,\n",
      "          'shopper': 1,\n",
      "          'drags': 1,\n",
      "          'kicking': 1,\n",
      "          'screaming': 1,\n",
      "          'behind': 1,\n",
      "          'building': 1,\n",
      "          'woefullypaced': 1,\n",
      "          'suspense': 1,\n",
      "          'telepathically': 1,\n",
      "          'linked': 1,\n",
      "          'alienhumanhybrid': 1,\n",
      "          'counterpart': 1,\n",
      "          'whatever': 1,\n",
      "          'helpfully': 1,\n",
      "          'tells': 1,\n",
      "          'alienhunting': 1,\n",
      "          'protagonists': 1,\n",
      "          'going': 1,\n",
      "          'rape': 1,\n",
      "          'nwhile': 1,\n",
      "          'unintentionally': 1,\n",
      "          'hilarious': 1,\n",
      "          'least': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'occasionally': 1,\n",
      "          'demonstrates': 1,\n",
      "          'humour': 1,\n",
      "          'ntheres': 1,\n",
      "          'amusing': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'bit': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'doesnt': 1,\n",
      "          'appreciated': 1,\n",
      "          'sentiment': 1,\n",
      "          'well': 1,\n",
      "          'supermarketrelated': 1,\n",
      "          'hijinx': 1,\n",
      "          'aisle': 1,\n",
      "          '1': 1,\n",
      "          'ninforms': 1,\n",
      "          'nif': 1,\n",
      "          'maintained': 1,\n",
      "          'lighthearted': 1,\n",
      "          'tone': 1,\n",
      "          'charming': 1,\n",
      "          'enjoyable': 1,\n",
      "          'watch': 1,\n",
      "          'detriment': 1,\n",
      "          'takes': 1,\n",
      "          'far': 1,\n",
      "          'seriously': 1,\n",
      "          'barrels': 1,\n",
      "          'bloody': 1,\n",
      "          'effectsladened': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'conclusion': 1,\n",
      "          'nmuch': 1,\n",
      "          'whole': 1,\n",
      "          'gaping': 1,\n",
      "          'holes': 1,\n",
      "          'terribly': 1,\n",
      "          'difficult': 1,\n",
      "          'suspension': 1,\n",
      "          'implausibilities': 1,\n",
      "          'endless': 1,\n",
      "          'toxic': 1,\n",
      "          'bomb': 1,\n",
      "          'eves': 1,\n",
      "          'brain': 1,\n",
      "          'nwhy': 1,\n",
      "          'armed': 1,\n",
      "          'guns': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'firearms': 1,\n",
      "          'ineffectual': 1,\n",
      "          'nmy': 1,\n",
      "          'favourite': 1,\n",
      "          'slowmotion': 1,\n",
      "          'sporting': 1,\n",
      "          'superhuman': 1,\n",
      "          'strength': 1,\n",
      "          'shown': 1,\n",
      "          'tossing': 1,\n",
      "          'aside': 1,\n",
      "          'attempting': 1,\n",
      "          'body': 1,\n",
      "          'blocks': 1,\n",
      "          'movie': 1,\n",
      "          'holding': 1,\n",
      "          'head': 1,\n",
      "          'amazed': 1,\n",
      "          'foisted': 1,\n",
      "          'public': 1,\n",
      "          'nreturning': 1,\n",
      "          'headlines': 1,\n",
      "          'michael': 1,\n",
      "          'madsen': 1,\n",
      "          'reprises': 1,\n",
      "          'tough': 1,\n",
      "          'guy': 1,\n",
      "          'press': 1,\n",
      "          'lennox': 1,\n",
      "          'goofy': 1,\n",
      "          'realistically': 1,\n",
      "          'script': 1,\n",
      "          'basis': 1,\n",
      "          'nmykelti': 1,\n",
      "          'williamson': 1,\n",
      "          'portraying': 1,\n",
      "          'gamble': 1,\n",
      "          'churns': 1,\n",
      "          'alltoofamiliar': 1,\n",
      "          'spin': 1,\n",
      "          'generic': 1,\n",
      "          'brashmouthed': 1,\n",
      "          'fine': 1,\n",
      "          'actors': 1,\n",
      "          'george': 1,\n",
      "          'dzundza': 1,\n",
      "          'playing': 1,\n",
      "          'colonel': 1,\n",
      "          'burgess': 1,\n",
      "          'looking': 1,\n",
      "          'ridiculous': 1,\n",
      "          'process': 1,\n",
      "          'james': 1,\n",
      "          'cromwell': 1,\n",
      "          'neglectful': 1,\n",
      "          'father': 1,\n",
      "          'senator': 1,\n",
      "          'utterly': 1,\n",
      "          'wasted': 1,\n",
      "          'gives': 1,\n",
      "          'appropriately': 1,\n",
      "          'shiftyeyed': 1,\n",
      "          'returning': 1,\n",
      "          'vixen': 1,\n",
      "          'actually': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'act': 1,\n",
      "          'scene': 1,\n",
      "          'acquits': 1,\n",
      "          'nicely': 1,\n",
      "          'mostly': 1,\n",
      "          'relegated': 1,\n",
      "          'familiar': 1,\n",
      "          'parading': 1,\n",
      "          'skimpy': 1,\n",
      "          'clothing': 1,\n",
      "          'none': 1,\n",
      "          'nms': 1,\n",
      "          'commented': 1,\n",
      "          'female': 1,\n",
      "          'expressed': 1,\n",
      "          'appreciation': 1,\n",
      "          'entry': 1,\n",
      "          'claiming': 1,\n",
      "          'empowered': 1,\n",
      "          'na': 1,\n",
      "          'lethal': 1,\n",
      "          'heat': 1,\n",
      "          'dispatches': 1,\n",
      "          'sexual': 1,\n",
      "          'partners': 1,\n",
      "          'grotesque': 1,\n",
      "          'fashion': 1,\n",
      "          'thats': 1,\n",
      "          'call': 1,\n",
      "          'empowerment': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'fugitive': 12,\n",
      "          'movie': 7,\n",
      "          'u': 6,\n",
      "          'marshals': 6,\n",
      "          'snipes': 6,\n",
      "          'film': 6,\n",
      "          'time': 5,\n",
      "          'average': 4,\n",
      "          'gerard': 4,\n",
      "          'plane': 4,\n",
      "          'character': 4,\n",
      "          'nthe': 4,\n",
      "          'make': 3,\n",
      "          'role': 3,\n",
      "          'harrison': 3,\n",
      "          'action': 3,\n",
      "          'director': 3,\n",
      "          'even': 3,\n",
      "          'little': 3,\n",
      "          'crash': 3,\n",
      "          'good': 3,\n",
      "          'sequel': 2,\n",
      "          'thriller': 2,\n",
      "          'using': 2,\n",
      "          'ntommy': 2,\n",
      "          'lee': 2,\n",
      "          'jones': 2,\n",
      "          'ford': 2,\n",
      "          'hes': 2,\n",
      "          'police': 2,\n",
      "          'fbi': 2,\n",
      "          'course': 2,\n",
      "          'nbut': 2,\n",
      "          'nwhile': 2,\n",
      "          'know': 2,\n",
      "          'films': 2,\n",
      "          'develop': 2,\n",
      "          'straight': 2,\n",
      "          'almost': 2,\n",
      "          'hardly': 2,\n",
      "          'nudge': 2,\n",
      "          'apart': 2,\n",
      "          'nnobody': 2,\n",
      "          'performers': 2,\n",
      "          'plot': 2,\n",
      "          'theres': 2,\n",
      "          'loud': 2,\n",
      "          'end': 2,\n",
      "          '1993': 1,\n",
      "          'association': 1,\n",
      "          'extra': 1,\n",
      "          'bucks': 1,\n",
      "          'returns': 1,\n",
      "          'chief': 1,\n",
      "          'deputy': 1,\n",
      "          'samuel': 1,\n",
      "          'grizzly': 1,\n",
      "          'cop': 1,\n",
      "          'nthis': 1,\n",
      "          'mark': 1,\n",
      "          'sheridan': 1,\n",
      "          'think': 1,\n",
      "          'killed': 1,\n",
      "          'two': 1,\n",
      "          'agents': 1,\n",
      "          'set': 1,\n",
      "          'escort': 1,\n",
      "          'riding': 1,\n",
      "          'crashes': 1,\n",
      "          'makes': 1,\n",
      "          'run': 1,\n",
      "          'hot': 1,\n",
      "          'tail': 1,\n",
      "          'nwhat': 1,\n",
      "          'follows': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'brought': 1,\n",
      "          'us': 1,\n",
      "          'executive': 1,\n",
      "          'decision': 1,\n",
      "          '1995': 1,\n",
      "          'another': 1,\n",
      "          'curiously': 1,\n",
      "          'involving': 1,\n",
      "          'nwhen': 1,\n",
      "          'comparing': 1,\n",
      "          'prequel': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'pretty': 1,\n",
      "          'lousy': 1,\n",
      "          'original': 1,\n",
      "          'reasonably': 1,\n",
      "          'intelligent': 1,\n",
      "          'root': 1,\n",
      "          'audience': 1,\n",
      "          'feels': 1,\n",
      "          'strangely': 1,\n",
      "          'distanced': 1,\n",
      "          'mainly': 1,\n",
      "          'way': 1,\n",
      "          'overlong': 1,\n",
      "          'running': 1,\n",
      "          'gave': 1,\n",
      "          'fords': 1,\n",
      "          'pulling': 1,\n",
      "          'trump': 1,\n",
      "          'card': 1,\n",
      "          'place': 1,\n",
      "          'immediately': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'couldnt': 1,\n",
      "          'care': 1,\n",
      "          'less': 1,\n",
      "          'got': 1,\n",
      "          'captured': 1,\n",
      "          'nsnipes': 1,\n",
      "          'performance': 1,\n",
      "          'gets': 1,\n",
      "          'surprisingly': 1,\n",
      "          'screen': 1,\n",
      "          'considering': 1,\n",
      "          'reasons': 1,\n",
      "          'ill': 1,\n",
      "          'explain': 1,\n",
      "          'later': 1,\n",
      "          'fine': 1,\n",
      "          'ever': 1,\n",
      "          'although': 1,\n",
      "          'challenge': 1,\n",
      "          'sense': 1,\n",
      "          'deja': 1,\n",
      "          'vu': 1,\n",
      "          'overwhelming': 1,\n",
      "          'ni': 1,\n",
      "          'seemingly': 1,\n",
      "          'attempt': 1,\n",
      "          'last': 1,\n",
      "          'ntheres': 1,\n",
      "          'references': 1,\n",
      "          'first': 1,\n",
      "          'nothing': 1,\n",
      "          'mentions': 1,\n",
      "          'ndowney': 1,\n",
      "          'jnr': 1,\n",
      "          'ok': 1,\n",
      "          'agent': 1,\n",
      "          'john': 1,\n",
      "          'royce': 1,\n",
      "          'whos': 1,\n",
      "          'roped': 1,\n",
      "          'chase': 1,\n",
      "          'sexy': 1,\n",
      "          'french': 1,\n",
      "          'actress': 1,\n",
      "          'irene': 1,\n",
      "          'jacob': 1,\n",
      "          'wanders': 1,\n",
      "          'wife': 1,\n",
      "          'looks': 1,\n",
      "          'autopilot': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'k': 1,\n",
      "          'comes': 1,\n",
      "          'performances': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'face': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'fare': 1,\n",
      "          'better': 1,\n",
      "          'plotwise': 1,\n",
      "          'either': 1,\n",
      "          'starts': 1,\n",
      "          'trying': 1,\n",
      "          'capture': 1,\n",
      "          'veers': 1,\n",
      "          'terrorists': 1,\n",
      "          'territory': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'normal': 1,\n",
      "          'terrorist': 1,\n",
      "          'seen': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'reputation': 1,\n",
      "          'sound': 1,\n",
      "          'professional': 1,\n",
      "          'nif': 1,\n",
      "          'wasnt': 1,\n",
      "          'would': 1,\n",
      "          'probably': 1,\n",
      "          'go': 1,\n",
      "          'video': 1,\n",
      "          'made': 1,\n",
      "          'nand': 1,\n",
      "          'changing': 1,\n",
      "          'forgotten': 1,\n",
      "          'features': 1,\n",
      "          'nstuart': 1,\n",
      "          'baird': 1,\n",
      "          'right': 1,\n",
      "          'particular': 1,\n",
      "          'scene': 1,\n",
      "          'stands': 1,\n",
      "          'nits': 1,\n",
      "          'usual': 1,\n",
      "          'style': 1,\n",
      "          'neven': 1,\n",
      "          'sorely': 1,\n",
      "          'lacking': 1,\n",
      "          'tension': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nice': 1,\n",
      "          'especially': 1,\n",
      "          'soundtrack': 1,\n",
      "          'veteran': 1,\n",
      "          'composer': 1,\n",
      "          'jerry': 1,\n",
      "          'goldsmith': 1,\n",
      "          'suffers': 1,\n",
      "          'overwhelmingly': 1,\n",
      "          'lack': 1,\n",
      "          'excitement': 1,\n",
      "          'nsure': 1,\n",
      "          'dumb': 1,\n",
      "          'aint': 1,\n",
      "          'fun': 1,\n",
      "          'nbored': 1,\n",
      "          'lackluster': 1,\n",
      "          'script': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'review': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'web': 1,\n",
      "          'space': 1,\n",
      "          'provided': 1,\n",
      "          'geocities': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'jimmie': 7,\n",
      "          'hes': 5,\n",
      "          'nthe': 5,\n",
      "          'women': 5,\n",
      "          'odonnell': 4,\n",
      "          'point': 4,\n",
      "          'one': 3,\n",
      "          'chances': 3,\n",
      "          'character': 3,\n",
      "          '100': 3,\n",
      "          'business': 3,\n",
      "          'wasnt': 3,\n",
      "          'nit': 3,\n",
      "          'chris': 2,\n",
      "          'seven': 2,\n",
      "          'im': 2,\n",
      "          'fan': 2,\n",
      "          'could': 2,\n",
      "          'pool': 2,\n",
      "          'table': 2,\n",
      "          'nhe': 2,\n",
      "          'also': 2,\n",
      "          'anne': 2,\n",
      "          'renee': 2,\n",
      "          'zellweger': 2,\n",
      "          'marry': 2,\n",
      "          'well': 2,\n",
      "          'like': 2,\n",
      "          'time': 2,\n",
      "          'ever': 2,\n",
      "          'says': 2,\n",
      "          'prior': 2,\n",
      "          'girlfriends': 2,\n",
      "          'proposition': 2,\n",
      "          'bad': 2,\n",
      "          'even': 2,\n",
      "          'video': 2,\n",
      "          'thought': 2,\n",
      "          'brewsters': 2,\n",
      "          'millions': 2,\n",
      "          'nas': 2,\n",
      "          'jimmies': 2,\n",
      "          'good': 2,\n",
      "          'nat': 2,\n",
      "          'nwhen': 2,\n",
      "          'goofy': 2,\n",
      "          'friend': 2,\n",
      "          '000': 2,\n",
      "          'bride': 2,\n",
      "          'enough': 2,\n",
      "          'angry': 2,\n",
      "          'around': 2,\n",
      "          'city': 2,\n",
      "          'contains': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          '1': 2,\n",
      "          'contributors': 1,\n",
      "          'destruction': 1,\n",
      "          'batman': 1,\n",
      "          'franchise': 1,\n",
      "          'stars': 1,\n",
      "          'remake': 1,\n",
      "          'buster': 1,\n",
      "          'keatons': 1,\n",
      "          '1925': 1,\n",
      "          'silent': 1,\n",
      "          'nnow': 1,\n",
      "          'ive': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'chaplin': 1,\n",
      "          'keaton': 1,\n",
      "          'seriously': 1,\n",
      "          'doubt': 1,\n",
      "          'classic': 1,\n",
      "          'version': 1,\n",
      "          'insipid': 1,\n",
      "          'nodonnell': 1,\n",
      "          'plays': 1,\n",
      "          'shannon': 1,\n",
      "          'manager': 1,\n",
      "          'manufacturing': 1,\n",
      "          'company': 1,\n",
      "          'fears': 1,\n",
      "          'commitment': 1,\n",
      "          'despite': 1,\n",
      "          'dating': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'unwilling': 1,\n",
      "          'nhis': 1,\n",
      "          'reasons': 1,\n",
      "          'nwell': 1,\n",
      "          'guy': 1,\n",
      "          'see': 1,\n",
      "          'guys': 1,\n",
      "          'stallions': 1,\n",
      "          'apparently': 1,\n",
      "          'dont': 1,\n",
      "          'roped': 1,\n",
      "          'something': 1,\n",
      "          'hey': 1,\n",
      "          'thats': 1,\n",
      "          'movies': 1,\n",
      "          'explanation': 1,\n",
      "          'nid': 1,\n",
      "          'second': 1,\n",
      "          'neventually': 1,\n",
      "          'comes': 1,\n",
      "          'propose': 1,\n",
      "          'absurd': 1,\n",
      "          'proposal': 1,\n",
      "          'uttered': 1,\n",
      "          'man': 1,\n",
      "          'essentially': 1,\n",
      "          'win': 1,\n",
      "          'hands': 1,\n",
      "          'ring': 1,\n",
      "          'audience': 1,\n",
      "          'hate': 1,\n",
      "          'ni': 1,\n",
      "          'nthen': 1,\n",
      "          'meat': 1,\n",
      "          'plot': 1,\n",
      "          'presents': 1,\n",
      "          'njimmies': 1,\n",
      "          'grandfather': 1,\n",
      "          'peter': 1,\n",
      "          'ustinov': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'dies': 1,\n",
      "          'leaves': 1,\n",
      "          'entire': 1,\n",
      "          'estate': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'ownership': 1,\n",
      "          'nhowever': 1,\n",
      "          'order': 1,\n",
      "          'get': 1,\n",
      "          'money': 1,\n",
      "          'save': 1,\n",
      "          'jobs': 1,\n",
      "          'factory': 1,\n",
      "          'workers': 1,\n",
      "          'must': 1,\n",
      "          'married': 1,\n",
      "          'next': 1,\n",
      "          'birthday': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'away': 1,\n",
      "          'nhaving': 1,\n",
      "          'blown': 1,\n",
      "          'proceeds': 1,\n",
      "          'track': 1,\n",
      "          'suggest': 1,\n",
      "          'movie': 1,\n",
      "          'half': 1,\n",
      "          'surprisingly': 1,\n",
      "          'boring': 1,\n",
      "          'managed': 1,\n",
      "          'read': 1,\n",
      "          'thoughts': 1,\n",
      "          'nustinovs': 1,\n",
      "          'left': 1,\n",
      "          'reading': 1,\n",
      "          'ridiculous': 1,\n",
      "          'clause': 1,\n",
      "          'soon': 1,\n",
      "          'hal': 1,\n",
      "          'holbrooks': 1,\n",
      "          'actually': 1,\n",
      "          'quite': 1,\n",
      "          'surreal': 1,\n",
      "          'nsomething': 1,\n",
      "          'happens': 1,\n",
      "          'though': 1,\n",
      "          'films': 1,\n",
      "          'final': 1,\n",
      "          'act': 1,\n",
      "          'caused': 1,\n",
      "          'sharply': 1,\n",
      "          'drop': 1,\n",
      "          'rating': 1,\n",
      "          'going': 1,\n",
      "          'receive': 1,\n",
      "          'nup': 1,\n",
      "          'turned': 1,\n",
      "          'felt': 1,\n",
      "          'least': 1,\n",
      "          'painting': 1,\n",
      "          'cold': 1,\n",
      "          'hearted': 1,\n",
      "          'gold': 1,\n",
      "          'diggers': 1,\n",
      "          'options': 1,\n",
      "          'played': 1,\n",
      "          'artie': 1,\n",
      "          'lange': 1,\n",
      "          'making': 1,\n",
      "          'career': 1,\n",
      "          'playing': 1,\n",
      "          'places': 1,\n",
      "          'ad': 1,\n",
      "          'newspaper': 1,\n",
      "          'somehow': 1,\n",
      "          'becomes': 1,\n",
      "          'front': 1,\n",
      "          'page': 1,\n",
      "          'story': 1,\n",
      "          'wedding': 1,\n",
      "          'gowns': 1,\n",
      "          'head': 1,\n",
      "          'persuade': 1,\n",
      "          'pick': 1,\n",
      "          'nthese': 1,\n",
      "          'arrive': 1,\n",
      "          'location': 1,\n",
      "          'immediately': 1,\n",
      "          'start': 1,\n",
      "          'bullying': 1,\n",
      "          'looking': 1,\n",
      "          'woman': 1,\n",
      "          'unjustified': 1,\n",
      "          'attacks': 1,\n",
      "          'tells': 1,\n",
      "          'mob': 1,\n",
      "          'theres': 1,\n",
      "          'mistake': 1,\n",
      "          'wont': 1,\n",
      "          'marrying': 1,\n",
      "          'result': 1,\n",
      "          'proceed': 1,\n",
      "          'chase': 1,\n",
      "          'hopes': 1,\n",
      "          'catching': 1,\n",
      "          'tearing': 1,\n",
      "          'limbs': 1,\n",
      "          'nthis': 1,\n",
      "          'goes': 1,\n",
      "          'rest': 1,\n",
      "          'nits': 1,\n",
      "          'running': 1,\n",
      "          'obnoxious': 1,\n",
      "          'greedy': 1,\n",
      "          'stupid': 1,\n",
      "          'nmy': 1,\n",
      "          'groans': 1,\n",
      "          'disgust': 1,\n",
      "          'heard': 1,\n",
      "          'miles': 1,\n",
      "          'finally': 1,\n",
      "          'ended': 1,\n",
      "          'thankfully': 1,\n",
      "          'day': 1,\n",
      "          'still': 1,\n",
      "          'groaning': 1,\n",
      "          'bachelor': 1,\n",
      "          'available': 1,\n",
      "          'dvd': 1,\n",
      "          'new': 1,\n",
      "          'line': 1,\n",
      "          'home': 1,\n",
      "          'full': 1,\n",
      "          'frame': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          'cast': 1,\n",
      "          'crew': 1,\n",
      "          'info': 1,\n",
      "          'special': 1,\n",
      "          'dvdrom': 1,\n",
      "          'features': 1,\n",
      "          'trailer': 1,\n",
      "          'disc': 1,\n",
      "          'scenes': 1,\n",
      "          'napparently': 1,\n",
      "          'footage': 1,\n",
      "          'gang': 1,\n",
      "          'brides': 1,\n",
      "          'chasing': 1,\n",
      "          'leaping': 1,\n",
      "          'tops': 1,\n",
      "          'buses': 1,\n",
      "          'nso': 1,\n",
      "          'cut': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'shenanigans': 1,\n",
      "          'nugh': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'goldblum': 3,\n",
      "          'g': 2,\n",
      "          'comes': 2,\n",
      "          'across': 2,\n",
      "          'morgan': 2,\n",
      "          'seems': 2,\n",
      "          'nat': 2,\n",
      "          'get': 2,\n",
      "          'poor': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quick': 1,\n",
      "          'review': 1,\n",
      "          'nholy': 1,\n",
      "          'man': 1,\n",
      "          'nmore': 1,\n",
      "          'like': 1,\n",
      "          'holy': 1,\n",
      "          'crap': 1,\n",
      "          'nthe': 1,\n",
      "          'film': 1,\n",
      "          'stars': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'mysticalish': 1,\n",
      "          'figure': 1,\n",
      "          'named': 1,\n",
      "          'strange': 1,\n",
      "          'journey': 1,\n",
      "          'sort': 1,\n",
      "          'two': 1,\n",
      "          'network': 1,\n",
      "          'execs': 1,\n",
      "          'jeff': 1,\n",
      "          'kelly': 1,\n",
      "          'preston': 1,\n",
      "          'flat': 1,\n",
      "          'tire': 1,\n",
      "          'hands': 1,\n",
      "          'nsomehow': 1,\n",
      "          'ends': 1,\n",
      "          'car': 1,\n",
      "          'channel': 1,\n",
      "          'lineup': 1,\n",
      "          'infomercial': 1,\n",
      "          'programs': 1,\n",
      "          'featuring': 1,\n",
      "          'likes': 1,\n",
      "          'betty': 1,\n",
      "          'white': 1,\n",
      "          'fairchild': 1,\n",
      "          'slew': 1,\n",
      "          'celebrities': 1,\n",
      "          'nameless': 1,\n",
      "          'figures': 1,\n",
      "          'nits': 1,\n",
      "          'hit': 1,\n",
      "          'stride': 1,\n",
      "          'speaking': 1,\n",
      "          'life': 1,\n",
      "          'instead': 1,\n",
      "          'somehow': 1,\n",
      "          'boosting': 1,\n",
      "          'sales': 1,\n",
      "          'point': 1,\n",
      "          'course': 1,\n",
      "          'morality': 1,\n",
      "          'play': 1,\n",
      "          'particularly': 1,\n",
      "          'suddenly': 1,\n",
      "          'feels': 1,\n",
      "          'market': 1,\n",
      "          'magical': 1,\n",
      "          'megabucks': 1,\n",
      "          'good': 1,\n",
      "          'boss': 1,\n",
      "          'robert': 1,\n",
      "          'loggia': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'long': 1,\n",
      "          'unfold': 1,\n",
      "          'sappy': 1,\n",
      "          'mush': 1,\n",
      "          'realizations': 1,\n",
      "          'taking': 1,\n",
      "          'place': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'plot': 1,\n",
      "          'points': 1,\n",
      "          'nonly': 1,\n",
      "          'real': 1,\n",
      "          'zippy': 1,\n",
      "          'sequence': 1,\n",
      "          'involving': 1,\n",
      "          'frying': 1,\n",
      "          'fairchilds': 1,\n",
      "          'face': 1,\n",
      "          'interest': 1,\n",
      "          'nmurphy': 1,\n",
      "          'lends': 1,\n",
      "          'nothing': 1,\n",
      "          'character': 1,\n",
      "          'looks': 1,\n",
      "          'hed': 1,\n",
      "          'rather': 1,\n",
      "          'someplace': 1,\n",
      "          'else': 1,\n",
      "          'nsome': 1,\n",
      "          'may': 1,\n",
      "          'argue': 1,\n",
      "          'message': 1,\n",
      "          'came': 1,\n",
      "          'could': 1,\n",
      "          'probably': 1,\n",
      "          'entertainment': 1,\n",
      "          'watching': 1,\n",
      "          'informercial': 1,\n",
      "          'guy': 1,\n",
      "          'question': 1,\n",
      "          'mark': 1,\n",
      "          'coat': 1,\n",
      "          'least': 1,\n",
      "          'something': 1,\n",
      "          'us': 1,\n",
      "          'laught': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carter': 8,\n",
      "          'stallone': 7,\n",
      "          'action': 6,\n",
      "          'film': 5,\n",
      "          'rourke': 5,\n",
      "          'get': 4,\n",
      "          'nget': 4,\n",
      "          'like': 4,\n",
      "          'nthe': 3,\n",
      "          'trying': 3,\n",
      "          'nstallone': 3,\n",
      "          'strange': 3,\n",
      "          'amazing': 3,\n",
      "          'bad': 3,\n",
      "          'brother': 3,\n",
      "          'tough': 3,\n",
      "          'caine': 3,\n",
      "          'still': 3,\n",
      "          'nwhat': 2,\n",
      "          'good': 2,\n",
      "          'nwhen': 2,\n",
      "          'taking': 2,\n",
      "          'turn': 2,\n",
      "          'towards': 2,\n",
      "          'roles': 2,\n",
      "          'seems': 2,\n",
      "          'made': 2,\n",
      "          'movie': 2,\n",
      "          'gave': 2,\n",
      "          'role': 2,\n",
      "          'frank': 2,\n",
      "          'played': 2,\n",
      "          'actor': 2,\n",
      "          'involved': 2,\n",
      "          'seattle': 2,\n",
      "          'way': 2,\n",
      "          'nhe': 2,\n",
      "          'talks': 2,\n",
      "          'brothers': 2,\n",
      "          'lends': 2,\n",
      "          'ncarter': 2,\n",
      "          'porn': 2,\n",
      "          'king': 2,\n",
      "          'mickey': 2,\n",
      "          'guy': 2,\n",
      "          'proper': 2,\n",
      "          'lacks': 2,\n",
      "          'purpose': 2,\n",
      "          'character': 2,\n",
      "          'forget': 1,\n",
      "          'ninstead': 1,\n",
      "          'cup': 1,\n",
      "          'coffee': 1,\n",
      "          'hell': 1,\n",
      "          'happened': 1,\n",
      "          'american': 1,\n",
      "          'movies': 1,\n",
      "          'ndid': 1,\n",
      "          'unknowingly': 1,\n",
      "          'miss': 1,\n",
      "          'meeting': 1,\n",
      "          'somewhere': 1,\n",
      "          'badass': 1,\n",
      "          'kicking': 1,\n",
      "          'butt': 1,\n",
      "          'names': 1,\n",
      "          'guntoting': 1,\n",
      "          'crazed': 1,\n",
      "          'vengeful': 1,\n",
      "          'characters': 1,\n",
      "          '1980s': 1,\n",
      "          'films': 1,\n",
      "          'commando': 1,\n",
      "          'cobra': 1,\n",
      "          'predator': 1,\n",
      "          'raw': 1,\n",
      "          'deal': 1,\n",
      "          'first': 1,\n",
      "          'blood': 1,\n",
      "          'suddenly': 1,\n",
      "          'innocent': 1,\n",
      "          'compassionate': 1,\n",
      "          'sensitive': 1,\n",
      "          'tearyeyed': 1,\n",
      "          'knuckleheads': 1,\n",
      "          'place': 1,\n",
      "          'days': 1,\n",
      "          'honest': 1,\n",
      "          'east': 1,\n",
      "          'dont': 1,\n",
      "          'mean': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'latest': 1,\n",
      "          'masterpiece': 1,\n",
      "          'uberthespian': 1,\n",
      "          'sylvester': 1,\n",
      "          'prime': 1,\n",
      "          'example': 1,\n",
      "          'large': 1,\n",
      "          'charge': 1,\n",
      "          '80s': 1,\n",
      "          'stars': 1,\n",
      "          'fit': 1,\n",
      "          'back': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'outgrown': 1,\n",
      "          'one': 1,\n",
      "          'uncle': 1,\n",
      "          'tries': 1,\n",
      "          'cool': 1,\n",
      "          'members': 1,\n",
      "          'jacket': 1,\n",
      "          'izod': 1,\n",
      "          'polo': 1,\n",
      "          'shirt': 1,\n",
      "          'collar': 1,\n",
      "          'popped': 1,\n",
      "          'na': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'opportunity': 1,\n",
      "          'gracefully': 1,\n",
      "          'exit': 1,\n",
      "          'typecast': 1,\n",
      "          'monkey': 1,\n",
      "          'nthat': 1,\n",
      "          'sheriff': 1,\n",
      "          'freddy': 1,\n",
      "          'heflin': 1,\n",
      "          'copland': 1,\n",
      "          'redemption': 1,\n",
      "          'within': 1,\n",
      "          'broken': 1,\n",
      "          'soul': 1,\n",
      "          'actually': 1,\n",
      "          'performance': 1,\n",
      "          'seemed': 1,\n",
      "          'shaken': 1,\n",
      "          'past': 1,\n",
      "          'ntoo': 1,\n",
      "          'returns': 1,\n",
      "          'shiny': 1,\n",
      "          'paint': 1,\n",
      "          'rusted': 1,\n",
      "          'edges': 1,\n",
      "          'simple': 1,\n",
      "          'story': 1,\n",
      "          'plays': 1,\n",
      "          'vegas': 1,\n",
      "          'bruiser': 1,\n",
      "          'loan': 1,\n",
      "          'shark': 1,\n",
      "          'gusto': 1,\n",
      "          'uncredited': 1,\n",
      "          'voice': 1,\n",
      "          'tom': 1,\n",
      "          'sizemore': 1,\n",
      "          'franks': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'drunk': 1,\n",
      "          'driving': 1,\n",
      "          'accident': 1,\n",
      "          'feeling': 1,\n",
      "          'guilty': 1,\n",
      "          'mushy': 1,\n",
      "          'inside': 1,\n",
      "          'thinks': 1,\n",
      "          'foul': 1,\n",
      "          'play': 1,\n",
      "          'travels': 1,\n",
      "          'set': 1,\n",
      "          'right': 1,\n",
      "          'wrongs': 1,\n",
      "          'patented': 1,\n",
      "          'carters': 1,\n",
      "          'wife': 1,\n",
      "          'helping': 1,\n",
      "          'daughter': 1,\n",
      "          'doreen': 1,\n",
      "          'rachel': 1,\n",
      "          'leigh': 1,\n",
      "          'cook': 1,\n",
      "          'walks': 1,\n",
      "          'around': 1,\n",
      "          'pouring': 1,\n",
      "          'rain': 1,\n",
      "          'dressed': 1,\n",
      "          'lost': 1,\n",
      "          'member': 1,\n",
      "          'rat': 1,\n",
      "          'pack': 1,\n",
      "          'really': 1,\n",
      "          'goatee': 1,\n",
      "          'finds': 1,\n",
      "          'stuff': 1,\n",
      "          'slimy': 1,\n",
      "          'ultracool': 1,\n",
      "          'mcqueenesque': 1,\n",
      "          'multimillionaire': 1,\n",
      "          'computer': 1,\n",
      "          'geek': 1,\n",
      "          'alan': 1,\n",
      "          'cumming': 1,\n",
      "          'foreign': 1,\n",
      "          'michael': 1,\n",
      "          'speaks': 1,\n",
      "          'riddles': 1,\n",
      "          'stalks': 1,\n",
      "          'figure': 1,\n",
      "          'extract': 1,\n",
      "          'revenge': 1,\n",
      "          'responsible': 1,\n",
      "          'parties': 1,\n",
      "          'minute': 1,\n",
      "          'nthis': 1,\n",
      "          'sounds': 1,\n",
      "          'another': 1,\n",
      "          'saw': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'limey': 1,\n",
      "          'nbetter': 1,\n",
      "          'tell': 1,\n",
      "          'terence': 1,\n",
      "          'stamp': 1,\n",
      "          'ripping': 1,\n",
      "          'nactually': 1,\n",
      "          'remake': 1,\n",
      "          '1971': 1,\n",
      "          'british': 1,\n",
      "          'production': 1,\n",
      "          'name': 1,\n",
      "          'starring': 1,\n",
      "          'title': 1,\n",
      "          'cameo': 1,\n",
      "          'cleverness': 1,\n",
      "          'astonishing': 1,\n",
      "          'nwhile': 1,\n",
      "          'carries': 1,\n",
      "          'weight': 1,\n",
      "          'original': 1,\n",
      "          'well': 1,\n",
      "          'nthroughout': 1,\n",
      "          'looks': 1,\n",
      "          'old': 1,\n",
      "          'act': 1,\n",
      "          'nobody': 1,\n",
      "          'seriously': 1,\n",
      "          'nhis': 1,\n",
      "          'oneliners': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'tired': 1,\n",
      "          'uncertain': 1,\n",
      "          'actions': 1,\n",
      "          'mental': 1,\n",
      "          'physical': 1,\n",
      "          'required': 1,\n",
      "          'nthere': 1,\n",
      "          'even': 1,\n",
      "          'homoeroticism': 1,\n",
      "          'bizarre': 1,\n",
      "          'tone': 1,\n",
      "          'numerous': 1,\n",
      "          'conversations': 1,\n",
      "          'fists': 1,\n",
      "          'words': 1,\n",
      "          'biggest': 1,\n",
      "          'surprise': 1,\n",
      "          'best': 1,\n",
      "          'job': 1,\n",
      "          'done': 1,\n",
      "          'versatile': 1,\n",
      "          'nan': 1,\n",
      "          'method': 1,\n",
      "          'eighties': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'fell': 1,\n",
      "          'drugs': 1,\n",
      "          'spousal': 1,\n",
      "          'abuse': 1,\n",
      "          'boxing': 1,\n",
      "          'career': 1,\n",
      "          'intolerable': 1,\n",
      "          'attitude': 1,\n",
      "          'getting': 1,\n",
      "          'brings': 1,\n",
      "          'dangerous': 1,\n",
      "          'sense': 1,\n",
      "          'may': 1,\n",
      "          'win': 1,\n",
      "          'oscars': 1,\n",
      "          'ranks': 1,\n",
      "          'highly': 1,\n",
      "          'book': 1,\n",
      "          'great': 1,\n",
      "          'directing': 1,\n",
      "          'strong': 1,\n",
      "          'acting': 1,\n",
      "          'energetic': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'would': 1,\n",
      "          'make': 1,\n",
      "          'william': 1,\n",
      "          'friedkin': 1,\n",
      "          'proud': 1,\n",
      "          'thing': 1,\n",
      "          'hollywood': 1,\n",
      "          'productions': 1,\n",
      "          'script': 1,\n",
      "          'casting': 1,\n",
      "          'nnever': 1,\n",
      "          'mind': 1,\n",
      "          'never': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chris': 5,\n",
      "          'rock': 5,\n",
      "          'show': 4,\n",
      "          'wellingtons': 4,\n",
      "          'vehicle': 3,\n",
      "          'heaven': 3,\n",
      "          'earth': 3,\n",
      "          'body': 3,\n",
      "          'wellington': 3,\n",
      "          'lances': 3,\n",
      "          'remake': 2,\n",
      "          'beatty': 2,\n",
      "          'wait': 2,\n",
      "          'turn': 2,\n",
      "          'comes': 2,\n",
      "          'lance': 2,\n",
      "          'young': 2,\n",
      "          'comic': 2,\n",
      "          'apollo': 2,\n",
      "          'hes': 2,\n",
      "          'levy': 2,\n",
      "          'best': 2,\n",
      "          'man': 2,\n",
      "          'white': 2,\n",
      "          'old': 2,\n",
      "          'well': 2,\n",
      "          'taylor': 2,\n",
      "          'weitz': 2,\n",
      "          '1978': 1,\n",
      "          'warren': 1,\n",
      "          'mr': 1,\n",
      "          'jordan': 1,\n",
      "          'tells': 1,\n",
      "          'tale': 1,\n",
      "          'barton': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'iv': 1,\n",
      "          'black': 1,\n",
      "          'standup': 1,\n",
      "          'trying': 1,\n",
      "          'win': 1,\n",
      "          'audience': 1,\n",
      "          'harlems': 1,\n",
      "          'theater': 1,\n",
      "          'nwhen': 1,\n",
      "          'taken': 1,\n",
      "          'prematurely': 1,\n",
      "          'bumbling': 1,\n",
      "          'angel': 1,\n",
      "          'keyes': 1,\n",
      "          'eugene': 1,\n",
      "          'recourse': 1,\n",
      "          'return': 1,\n",
      "          'another': 1,\n",
      "          'nhe': 1,\n",
      "          'chooses': 1,\n",
      "          'charles': 1,\n",
      "          'tenth': 1,\n",
      "          'richest': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'rich': 1,\n",
      "          '53': 1,\n",
      "          'years': 1,\n",
      "          'makes': 1,\n",
      "          'bid': 1,\n",
      "          'closing': 1,\n",
      "          'night': 1,\n",
      "          'desire': 1,\n",
      "          'woo': 1,\n",
      "          'suntee': 1,\n",
      "          'regina': 1,\n",
      "          'jerry': 1,\n",
      "          'maguire': 1,\n",
      "          'tad': 1,\n",
      "          'tricky': 1,\n",
      "          'nthe': 1,\n",
      "          'original': 1,\n",
      "          'elaine': 1,\n",
      "          'maywarren': 1,\n",
      "          'script': 1,\n",
      "          'reworked': 1,\n",
      "          'crouther': 1,\n",
      "          'ali': 1,\n",
      "          'leroi': 1,\n",
      "          'louis': 1,\n",
      "          'c': 1,\n",
      "          'k': 1,\n",
      "          'nto': 1,\n",
      "          'beattys': 1,\n",
      "          'football': 1,\n",
      "          'player': 1,\n",
      "          'rocks': 1,\n",
      "          'add': 1,\n",
      "          'racial': 1,\n",
      "          'humor': 1,\n",
      "          'nas': 1,\n",
      "          'directed': 1,\n",
      "          'paul': 1,\n",
      "          'codirectors': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'costars': 1,\n",
      "          'chuck': 1,\n",
      "          'buck': 1,\n",
      "          'whole': 1,\n",
      "          'affair': 1,\n",
      "          'amateur': 1,\n",
      "          'hour': 1,\n",
      "          'ninitial': 1,\n",
      "          'scenes': 1,\n",
      "          'play': 1,\n",
      "          'like': 1,\n",
      "          'filmed': 1,\n",
      "          'line': 1,\n",
      "          'reading': 1,\n",
      "          'rehearsals': 1,\n",
      "          'nproduction': 1,\n",
      "          'values': 1,\n",
      "          'shoddy': 1,\n",
      "          'nmost': 1,\n",
      "          'serious': 1,\n",
      "          'use': 1,\n",
      "          'counterpart': 1,\n",
      "          'would': 1,\n",
      "          'appropriate': 1,\n",
      "          'nthis': 1,\n",
      "          'problem': 1,\n",
      "          'clearly': 1,\n",
      "          'attributable': 1,\n",
      "          'fact': 1,\n",
      "          'guy': 1,\n",
      "          'never': 1,\n",
      "          'lip': 1,\n",
      "          'action': 1,\n",
      "          'synched': 1,\n",
      "          'screen': 1,\n",
      "          'nrock': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'fun': 1,\n",
      "          'schtick': 1,\n",
      "          'turnaround': 1,\n",
      "          'plans': 1,\n",
      "          'poor': 1,\n",
      "          'neighborhood': 1,\n",
      "          'hospital': 1,\n",
      "          'bullet': 1,\n",
      "          'head': 1,\n",
      "          'nyou': 1,\n",
      "          'got': 1,\n",
      "          'bed': 1,\n",
      "          'uneven': 1,\n",
      "          'interacting': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'nregina': 1,\n",
      "          'fares': 1,\n",
      "          'amidst': 1,\n",
      "          'mediocrity': 1,\n",
      "          'activist': 1,\n",
      "          'confusedly': 1,\n",
      "          'ends': 1,\n",
      "          'falling': 1,\n",
      "          'believed': 1,\n",
      "          'nemesis': 1,\n",
      "          'nalso': 1,\n",
      "          'good': 1,\n",
      "          'frankie': 1,\n",
      "          'faison': 1,\n",
      "          'hannibal': 1,\n",
      "          'whitney': 1,\n",
      "          'compassionate': 1,\n",
      "          'manager': 1,\n",
      "          'human': 1,\n",
      "          'whos': 1,\n",
      "          'made': 1,\n",
      "          'privy': 1,\n",
      "          'switch': 1,\n",
      "          'nchaz': 1,\n",
      "          'palminteri': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'wasted': 1,\n",
      "          'heavens': 1,\n",
      "          'ambassadors': 1,\n",
      "          'nanother': 1,\n",
      "          'alumnus': 1,\n",
      "          'jennifer': 1,\n",
      "          'coolidge': 1,\n",
      "          'poorly': 1,\n",
      "          'used': 1,\n",
      "          'cheating': 1,\n",
      "          'wife': 1,\n",
      "          'shown': 1,\n",
      "          'several': 1,\n",
      "          'days': 1,\n",
      "          'apart': 1,\n",
      "          'wearing': 1,\n",
      "          'outfit': 1,\n",
      "          'greg': 1,\n",
      "          'germann': 1,\n",
      "          'tvs': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'sweet': 1,\n",
      "          'november': 1,\n",
      "          'continues': 1,\n",
      "          'display': 1,\n",
      "          'sitcom': 1,\n",
      "          'roots': 1,\n",
      "          'lover': 1,\n",
      "          'husbands': 1,\n",
      "          'lawyer': 1,\n",
      "          'nmark': 1,\n",
      "          'addy': 1,\n",
      "          'full': 1,\n",
      "          'monty': 1,\n",
      "          'sorely': 1,\n",
      "          'underutilized': 1,\n",
      "          'cisco': 1,\n",
      "          'fake': 1,\n",
      "          'english': 1,\n",
      "          'butler': 1,\n",
      "          'nstealing': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'shes': 1,\n",
      "          'wanda': 1,\n",
      "          'sykes': 1,\n",
      "          'disgruntled': 1,\n",
      "          'maid': 1,\n",
      "          'n': 1,\n",
      "          'fans': 1,\n",
      "          'nall': 1,\n",
      "          'others': 1,\n",
      "          'go': 1,\n",
      "          'rent': 1,\n",
      "          'truly': 1,\n",
      "          'brought': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hollow': 4,\n",
      "          'man': 4,\n",
      "          'right': 3,\n",
      "          'invisible': 3,\n",
      "          'bacon': 3,\n",
      "          'film': 3,\n",
      "          'much': 3,\n",
      "          'time': 3,\n",
      "          'would': 2,\n",
      "          'one': 2,\n",
      "          'could': 2,\n",
      "          'see': 2,\n",
      "          'super': 2,\n",
      "          'smart': 2,\n",
      "          'biomolecular': 2,\n",
      "          'research': 2,\n",
      "          'scientist': 2,\n",
      "          'military': 2,\n",
      "          'kevin': 2,\n",
      "          'bacons': 2,\n",
      "          'character': 2,\n",
      "          'verhoeven': 2,\n",
      "          'director': 2,\n",
      "          'actors': 2,\n",
      "          'elisabeth': 2,\n",
      "          'shue': 2,\n",
      "          'gets': 2,\n",
      "          'half': 2,\n",
      "          'nits': 2,\n",
      "          'nwell': 1,\n",
      "          'youre': 1,\n",
      "          'working': 1,\n",
      "          'youd': 1,\n",
      "          'grope': 1,\n",
      "          'coworker': 1,\n",
      "          'roughup': 1,\n",
      "          'neighbor': 1,\n",
      "          'across': 1,\n",
      "          'street': 1,\n",
      "          'nthats': 1,\n",
      "          'nof': 1,\n",
      "          'noncriminal': 1,\n",
      "          'possibilities': 1,\n",
      "          'brought': 1,\n",
      "          'rendering': 1,\n",
      "          'oneself': 1,\n",
      "          'opts': 1,\n",
      "          'commit': 1,\n",
      "          'sex': 1,\n",
      "          'crimes': 1,\n",
      "          'ner': 1,\n",
      "          'plays': 1,\n",
      "          'nsomething': 1,\n",
      "          'sounds': 1,\n",
      "          'horribly': 1,\n",
      "          'wrong': 1,\n",
      "          'already': 1,\n",
      "          'nbut': 1,\n",
      "          'paul': 1,\n",
      "          'sleazepin': 1,\n",
      "          'opencrotch': 1,\n",
      "          'classics': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'infamous': 1,\n",
      "          'showgirls': 1,\n",
      "          'never': 1,\n",
      "          'lets': 1,\n",
      "          'little': 1,\n",
      "          'credibility': 1,\n",
      "          'get': 1,\n",
      "          'way': 1,\n",
      "          'voyeuristic': 1,\n",
      "          'tendencies': 1,\n",
      "          'come': 1,\n",
      "          'n': 1,\n",
      "          'features': 1,\n",
      "          'string': 1,\n",
      "          'hapless': 1,\n",
      "          'clist': 1,\n",
      "          'among': 1,\n",
      "          'josh': 1,\n",
      "          'brolin': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'gradez': 1,\n",
      "          'plot': 1,\n",
      "          'lot': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'frankly': 1,\n",
      "          'dont': 1,\n",
      "          'look': 1,\n",
      "          'better': 1,\n",
      "          'used': 1,\n",
      "          '1933': 1,\n",
      "          'version': 1,\n",
      "          'noh': 1,\n",
      "          'glistens': 1,\n",
      "          'wet': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'rather': 1,\n",
      "          'fatty': 1,\n",
      "          'side': 1,\n",
      "          'cheap': 1,\n",
      "          'flank': 1,\n",
      "          'steak': 1,\n",
      "          'hes': 1,\n",
      "          'attempting': 1,\n",
      "          'reentry': 1,\n",
      "          'otherwise': 1,\n",
      "          'lots': 1,\n",
      "          'thermal': 1,\n",
      "          'shots': 1,\n",
      "          'inanimate': 1,\n",
      "          'objects': 1,\n",
      "          'included': 1,\n",
      "          'bobbing': 1,\n",
      "          'around': 1,\n",
      "          'without': 1,\n",
      "          'visible': 1,\n",
      "          'signs': 1,\n",
      "          'support': 1,\n",
      "          'nsince': 1,\n",
      "          'invisibility': 1,\n",
      "          'achieved': 1,\n",
      "          'isnt': 1,\n",
      "          'effect': 1,\n",
      "          'spend': 1,\n",
      "          'conversing': 1,\n",
      "          'nobody': 1,\n",
      "          'talking': 1,\n",
      "          'otherit': 1,\n",
      "          'amounts': 1,\n",
      "          'muchness': 1,\n",
      "          'elects': 1,\n",
      "          'wardrobe': 1,\n",
      "          'female': 1,\n",
      "          'protagonists': 1,\n",
      "          'looselybuttoned': 1,\n",
      "          'sweaters': 1,\n",
      "          'minute': 1,\n",
      "          'head': 1,\n",
      "          'straight': 1,\n",
      "          'fascinating': 1,\n",
      "          'conceptwhat': 1,\n",
      "          'nsimply': 1,\n",
      "          'ploy': 1,\n",
      "          'show': 1,\n",
      "          'skin': 1,\n",
      "          'nas': 1,\n",
      "          'horror': 1,\n",
      "          'unsophisticated': 1,\n",
      "          'disturbing': 1,\n",
      "          'intent': 1,\n",
      "          'achievements': 1,\n",
      "          'worth': 1,\n",
      "          'hardearned': 1,\n",
      "          'dollars': 1,\n",
      "          'minor': 1,\n",
      "          'verhoevenand': 1,\n",
      "          'even': 1,\n",
      "          'thats': 1,\n",
      "          'saying': 1,\n",
      "          'muchand': 1,\n",
      "          'boy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gal': 7,\n",
      "          'plot': 7,\n",
      "          'nthe': 6,\n",
      "          'beast': 5,\n",
      "          'film': 5,\n",
      "          'crime': 5,\n",
      "          'old': 5,\n",
      "          'sexy': 4,\n",
      "          'would': 4,\n",
      "          'respectability': 4,\n",
      "          'kingsley': 3,\n",
      "          'london': 3,\n",
      "          'comes': 3,\n",
      "          'nin': 3,\n",
      "          'done': 3,\n",
      "          'pool': 3,\n",
      "          'familiar': 3,\n",
      "          '4': 3,\n",
      "          'guessed': 2,\n",
      "          'gangster': 2,\n",
      "          'played': 2,\n",
      "          'seen': 2,\n",
      "          'time': 2,\n",
      "          'know': 2,\n",
      "          'even': 2,\n",
      "          'roles': 2,\n",
      "          'make': 2,\n",
      "          'villa': 2,\n",
      "          'nbut': 2,\n",
      "          'first': 2,\n",
      "          'punch': 2,\n",
      "          'gang': 2,\n",
      "          'bank': 2,\n",
      "          'wants': 2,\n",
      "          'sends': 2,\n",
      "          'rabid': 2,\n",
      "          'ben': 2,\n",
      "          'makes': 2,\n",
      "          'yes': 2,\n",
      "          'including': 2,\n",
      "          'see': 2,\n",
      "          'could': 2,\n",
      "          'vault': 2,\n",
      "          'water': 2,\n",
      "          'story': 2,\n",
      "          'overly': 2,\n",
      "          'ni': 2,\n",
      "          'type': 2,\n",
      "          'one': 2,\n",
      "          'nit': 2,\n",
      "          'western': 2,\n",
      "          'british': 2,\n",
      "          'new': 2,\n",
      "          'least': 2,\n",
      "          'style': 2,\n",
      "          'side': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'asks': 1,\n",
      "          'review': 1,\n",
      "          'savage': 1,\n",
      "          'maddog': 1,\n",
      "          'frothing': 1,\n",
      "          'recent': 1,\n",
      "          'movies': 1,\n",
      "          'nben': 1,\n",
      "          'nmy': 1,\n",
      "          'response': 1,\n",
      "          'anyone': 1,\n",
      "          'alan': 1,\n",
      "          'arkin': 1,\n",
      "          'wait': 1,\n",
      "          'dark': 1,\n",
      "          'henry': 1,\n",
      "          'fonda': 1,\n",
      "          'upon': 1,\n",
      "          'west': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'nthey': 1,\n",
      "          'way': 1,\n",
      "          'create': 1,\n",
      "          'really': 1,\n",
      "          'creepy': 1,\n",
      "          'sociopath': 1,\n",
      "          'cast': 1,\n",
      "          'someone': 1,\n",
      "          'generally': 1,\n",
      "          'plays': 1,\n",
      "          'mild': 1,\n",
      "          'sympathetic': 1,\n",
      "          'ineffectual': 1,\n",
      "          'character': 1,\n",
      "          'characteristics': 1,\n",
      "          'actor': 1,\n",
      "          'seem': 1,\n",
      "          'gentle': 1,\n",
      "          'work': 1,\n",
      "          'favor': 1,\n",
      "          'role': 1,\n",
      "          'calls': 1,\n",
      "          'fierce': 1,\n",
      "          'vicious': 1,\n",
      "          'nthat': 1,\n",
      "          'principle': 1,\n",
      "          'works': 1,\n",
      "          'ngary': 1,\n",
      "          'dove': 1,\n",
      "          'ray': 1,\n",
      "          'winstone': 1,\n",
      "          'retired': 1,\n",
      "          'career': 1,\n",
      "          'living': 1,\n",
      "          'luxurious': 1,\n",
      "          'spain': 1,\n",
      "          'nlife': 1,\n",
      "          'become': 1,\n",
      "          'routine': 1,\n",
      "          'sunning': 1,\n",
      "          'relaxing': 1,\n",
      "          'paradise': 1,\n",
      "          'shattered': 1,\n",
      "          'onetwopunch': 1,\n",
      "          'boulder': 1,\n",
      "          'rolling': 1,\n",
      "          'hill': 1,\n",
      "          'next': 1,\n",
      "          'second': 1,\n",
      "          'gals': 1,\n",
      "          'past': 1,\n",
      "          'nback': 1,\n",
      "          'boss': 1,\n",
      "          'teddy': 1,\n",
      "          'bass': 1,\n",
      "          'ian': 1,\n",
      "          'mcshane': 1,\n",
      "          'tvs': 1,\n",
      "          'lovejoy': 1,\n",
      "          'planning': 1,\n",
      "          'break': 1,\n",
      "          'safety': 1,\n",
      "          'deposit': 1,\n",
      "          'room': 1,\n",
      "          'nhe': 1,\n",
      "          'henchman': 1,\n",
      "          'logan': 1,\n",
      "          'fetch': 1,\n",
      "          'ndon': 1,\n",
      "          'accept': 1,\n",
      "          'decision': 1,\n",
      "          'certainly': 1,\n",
      "          'nhowever': 1,\n",
      "          'says': 1,\n",
      "          'whatever': 1,\n",
      "          'takes': 1,\n",
      "          'turn': 1,\n",
      "          'threatening': 1,\n",
      "          'guys': 1,\n",
      "          'exporn': 1,\n",
      "          'star': 1,\n",
      "          'wife': 1,\n",
      "          'deedee': 1,\n",
      "          'amanda': 1,\n",
      "          'redman': 1,\n",
      "          'meantime': 1,\n",
      "          'knows': 1,\n",
      "          'get': 1,\n",
      "          'everybodys': 1,\n",
      "          'skin': 1,\n",
      "          'nkingsley': 1,\n",
      "          'compact': 1,\n",
      "          'package': 1,\n",
      "          'fury': 1,\n",
      "          'nastiness': 1,\n",
      "          'nthere': 1,\n",
      "          'serious': 1,\n",
      "          'problems': 1,\n",
      "          'louis': 1,\n",
      "          'melliss': 1,\n",
      "          'david': 1,\n",
      "          'scintos': 1,\n",
      "          'script': 1,\n",
      "          'caught': 1,\n",
      "          'filming': 1,\n",
      "          'nwhen': 1,\n",
      "          'actual': 1,\n",
      "          'idea': 1,\n",
      "          'important': 1,\n",
      "          'success': 1,\n",
      "          'nbeyond': 1,\n",
      "          'ability': 1,\n",
      "          'use': 1,\n",
      "          'skindiving': 1,\n",
      "          'gear': 1,\n",
      "          'special': 1,\n",
      "          'talents': 1,\n",
      "          'required': 1,\n",
      "          'nany': 1,\n",
      "          'local': 1,\n",
      "          'hood': 1,\n",
      "          'needed': 1,\n",
      "          'nadditionally': 1,\n",
      "          'involves': 1,\n",
      "          'digging': 1,\n",
      "          'swimming': 1,\n",
      "          'flooding': 1,\n",
      "          'nno': 1,\n",
      "          'let': 1,\n",
      "          'avoided': 1,\n",
      "          'complication': 1,\n",
      "          'altogether': 1,\n",
      "          'far': 1,\n",
      "          'much': 1,\n",
      "          'accounted': 1,\n",
      "          'spite': 1,\n",
      "          'provocative': 1,\n",
      "          'title': 1,\n",
      "          'cliched': 1,\n",
      "          'elements': 1,\n",
      "          'westerns': 1,\n",
      "          'like': 1,\n",
      "          'law': 1,\n",
      "          'jake': 1,\n",
      "          'wade': 1,\n",
      "          'usually': 1,\n",
      "          'reformed': 1,\n",
      "          'outlaw': 1,\n",
      "          'robert': 1,\n",
      "          'taylor': 1,\n",
      "          'hung': 1,\n",
      "          'guns': 1,\n",
      "          'trying': 1,\n",
      "          'life': 1,\n",
      "          'peaceful': 1,\n",
      "          'however': 1,\n",
      "          'job': 1,\n",
      "          'buddy': 1,\n",
      "          'richard': 1,\n",
      "          'widmark': 1,\n",
      "          'go': 1,\n",
      "          'git': 1,\n",
      "          'im': 1,\n",
      "          'great': 1,\n",
      "          'twists': 1,\n",
      "          'gray': 1,\n",
      "          'beards': 1,\n",
      "          'nperhaps': 1,\n",
      "          'little': 1,\n",
      "          'made': 1,\n",
      "          'stylish': 1,\n",
      "          'dressed': 1,\n",
      "          'look': 1,\n",
      "          'nif': 1,\n",
      "          'creative': 1,\n",
      "          'nthis': 1,\n",
      "          'director': 1,\n",
      "          'jonathan': 1,\n",
      "          'glazers': 1,\n",
      "          'reputedly': 1,\n",
      "          'notable': 1,\n",
      "          'tv': 1,\n",
      "          'ads': 1,\n",
      "          'guinness': 1,\n",
      "          'stout': 1,\n",
      "          'nhis': 1,\n",
      "          'unexpected': 1,\n",
      "          'touches': 1,\n",
      "          'odd': 1,\n",
      "          'dream': 1,\n",
      "          'sequences': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'ivan': 1,\n",
      "          'bird': 1,\n",
      "          'uses': 1,\n",
      "          'lot': 1,\n",
      "          'half': 1,\n",
      "          'lit': 1,\n",
      "          'scenes': 1,\n",
      "          'nwe': 1,\n",
      "          'persons': 1,\n",
      "          'faces': 1,\n",
      "          'fades': 1,\n",
      "          'darkness': 1,\n",
      "          'sort': 1,\n",
      "          'metaphor': 1,\n",
      "          'halfworld': 1,\n",
      "          'characters': 1,\n",
      "          'inhabit': 1,\n",
      "          'nhalf': 1,\n",
      "          'everything': 1,\n",
      "          'happening': 1,\n",
      "          'also': 1,\n",
      "          'kept': 1,\n",
      "          'hidden': 1,\n",
      "          'nus': 1,\n",
      "          'yanks': 1,\n",
      "          'hard': 1,\n",
      "          'dialog': 1,\n",
      "          'nat': 1,\n",
      "          'theater': 1,\n",
      "          'difficult': 1,\n",
      "          'words': 1,\n",
      "          'quiet': 1,\n",
      "          'speaking': 1,\n",
      "          'heavy': 1,\n",
      "          'accents': 1,\n",
      "          'cockney': 1,\n",
      "          'language': 1,\n",
      "          'nsexy': 1,\n",
      "          'minor': 1,\n",
      "          'lent': 1,\n",
      "          'us': 1,\n",
      "          'still': 1,\n",
      "          'somewhat': 1,\n",
      "          'novel': 1,\n",
      "          'genre': 1,\n",
      "          'may': 1,\n",
      "          'films': 1,\n",
      "          'nfurther': 1,\n",
      "          'kingsleys': 1,\n",
      "          'highpowered': 1,\n",
      "          'performance': 1,\n",
      "          'give': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'talks': 5,\n",
      "          'money': 4,\n",
      "          'franklin': 4,\n",
      "          'film': 3,\n",
      "          'movie': 3,\n",
      "          'way': 3,\n",
      "          'n': 2,\n",
      "          'much': 2,\n",
      "          'swore': 2,\n",
      "          'nearly': 2,\n",
      "          'constantly': 2,\n",
      "          'one': 2,\n",
      "          'nmoney': 2,\n",
      "          'less': 2,\n",
      "          'expected': 2,\n",
      "          'whos': 2,\n",
      "          'franklins': 2,\n",
      "          'james': 2,\n",
      "          'help': 2,\n",
      "          'along': 2,\n",
      "          'friends': 2,\n",
      "          'apparantly': 1,\n",
      "          'nand': 1,\n",
      "          'uses': 1,\n",
      "          'quite': 1,\n",
      "          'bit': 1,\n",
      "          'obscenities': 1,\n",
      "          'nive': 1,\n",
      "          'always': 1,\n",
      "          'considered': 1,\n",
      "          'pretty': 1,\n",
      "          'open': 1,\n",
      "          'gratuity': 1,\n",
      "          'possess': 1,\n",
      "          'whether': 1,\n",
      "          'language': 1,\n",
      "          'violence': 1,\n",
      "          'sex': 1,\n",
      "          'ni': 1,\n",
      "          'find': 1,\n",
      "          'fact': 1,\n",
      "          'gives': 1,\n",
      "          'little': 1,\n",
      "          'leverage': 1,\n",
      "          'complain': 1,\n",
      "          'goes': 1,\n",
      "          'overboard': 1,\n",
      "          'definitely': 1,\n",
      "          'nits': 1,\n",
      "          'mean': 1,\n",
      "          'seemed': 1,\n",
      "          'overly': 1,\n",
      "          'prominent': 1,\n",
      "          'staged': 1,\n",
      "          'nperhaps': 1,\n",
      "          'character': 1,\n",
      "          'foul': 1,\n",
      "          'mouthed': 1,\n",
      "          'everybody': 1,\n",
      "          'swears': 1,\n",
      "          'every': 1,\n",
      "          'word': 1,\n",
      "          'black': 1,\n",
      "          'ticket': 1,\n",
      "          'scalper': 1,\n",
      "          'named': 1,\n",
      "          'hatchett': 1,\n",
      "          'played': 1,\n",
      "          'annoyingly': 1,\n",
      "          'chris': 1,\n",
      "          'tucker': 1,\n",
      "          'nfranklin': 1,\n",
      "          'typical': 1,\n",
      "          'conman': 1,\n",
      "          'ends': 1,\n",
      "          'person': 1,\n",
      "          'get': 1,\n",
      "          'nwhen': 1,\n",
      "          'plot': 1,\n",
      "          'finally': 1,\n",
      "          'gets': 1,\n",
      "          'underway': 1,\n",
      "          'theres': 1,\n",
      "          'three': 1,\n",
      "          'people': 1,\n",
      "          'groups': 1,\n",
      "          'want': 1,\n",
      "          'dead': 1,\n",
      "          'alive': 1,\n",
      "          'nthe': 1,\n",
      "          'frenchman': 1,\n",
      "          'somewhat': 1,\n",
      "          'responsible': 1,\n",
      "          'escape': 1,\n",
      "          'prisonerpacked': 1,\n",
      "          'bus': 1,\n",
      "          'hoodlum': 1,\n",
      "          'owes': 1,\n",
      "          'seven': 1,\n",
      "          'grand': 1,\n",
      "          'cops': 1,\n",
      "          'wrongly': 1,\n",
      "          'suspect': 1,\n",
      "          'murder': 1,\n",
      "          'nfranklins': 1,\n",
      "          'hope': 1,\n",
      "          'russell': 1,\n",
      "          'charlie': 1,\n",
      "          'sheen': 1,\n",
      "          'investigative': 1,\n",
      "          'reporter': 1,\n",
      "          'local': 1,\n",
      "          'news': 1,\n",
      "          'prove': 1,\n",
      "          'worthy': 1,\n",
      "          'journalist': 1,\n",
      "          'njames': 1,\n",
      "          'offers': 1,\n",
      "          'clear': 1,\n",
      "          'name': 1,\n",
      "          'allow': 1,\n",
      "          'exclusive': 1,\n",
      "          'report': 1,\n",
      "          'channel': 1,\n",
      "          '12': 1,\n",
      "          'conquer': 1,\n",
      "          'sweeps': 1,\n",
      "          'week': 1,\n",
      "          'nboth': 1,\n",
      "          'elements': 1,\n",
      "          'completely': 1,\n",
      "          'lost': 1,\n",
      "          'however': 1,\n",
      "          'never': 1,\n",
      "          'reappear': 1,\n",
      "          'nas': 1,\n",
      "          'odd': 1,\n",
      "          'couple': 1,\n",
      "          'wind': 1,\n",
      "          'end': 1,\n",
      "          'another': 1,\n",
      "          'wasted': 1,\n",
      "          'element': 1,\n",
      "          'seeing': 1,\n",
      "          'show': 1,\n",
      "          'signs': 1,\n",
      "          'becoming': 1,\n",
      "          'point': 1,\n",
      "          'nthere': 1,\n",
      "          'nothing': 1,\n",
      "          'original': 1,\n",
      "          'intriguing': 1,\n",
      "          'many': 1,\n",
      "          'developments': 1,\n",
      "          'either': 1,\n",
      "          'nonrelevant': 1,\n",
      "          'plain': 1,\n",
      "          'forgotten': 1,\n",
      "          'paintbynumbers': 1,\n",
      "          'lacks': 1,\n",
      "          'real': 1,\n",
      "          'involvment': 1,\n",
      "          'audience': 1,\n",
      "          'nfrivilous': 1,\n",
      "          'dialogue': 1,\n",
      "          'predictable': 1,\n",
      "          'flat': 1,\n",
      "          'storyline': 1,\n",
      "          'twodimensional': 1,\n",
      "          'characters': 1,\n",
      "          'make': 1,\n",
      "          'reason': 1,\n",
      "          'save': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'disney': 7,\n",
      "          'nthe': 7,\n",
      "          'john': 5,\n",
      "          'smith': 5,\n",
      "          'time': 4,\n",
      "          'film': 4,\n",
      "          'many': 4,\n",
      "          'pocahontas': 3,\n",
      "          'story': 3,\n",
      "          'ratcliffe': 3,\n",
      "          'english': 3,\n",
      "          'much': 3,\n",
      "          'one': 3,\n",
      "          'even': 3,\n",
      "          'talking': 3,\n",
      "          'viewing': 2,\n",
      "          'kids': 2,\n",
      "          'mentioned': 2,\n",
      "          'movies': 2,\n",
      "          'disappointed': 2,\n",
      "          'characters': 2,\n",
      "          'governor': 2,\n",
      "          'world': 2,\n",
      "          'savages': 2,\n",
      "          'films': 2,\n",
      "          'instance': 2,\n",
      "          'man': 2,\n",
      "          'best': 2,\n",
      "          'animals': 2,\n",
      "          'used': 2,\n",
      "          'tree': 2,\n",
      "          'work': 2,\n",
      "          'delight': 2,\n",
      "          'humor': 2,\n",
      "          'rather': 2,\n",
      "          'would': 2,\n",
      "          'character': 2,\n",
      "          'voice': 2,\n",
      "          'singing': 2,\n",
      "          'simplistic': 2,\n",
      "          'ni': 2,\n",
      "          'neven': 2,\n",
      "          'audience': 2,\n",
      "          'nwhile': 2,\n",
      "          'history': 2,\n",
      "          'change': 2,\n",
      "          'doesnt': 2,\n",
      "          'questions': 2,\n",
      "          'making': 2,\n",
      "          'nas': 2,\n",
      "          'ways': 2,\n",
      "          'starting': 1,\n",
      "          'little': 1,\n",
      "          'mermaid': 1,\n",
      "          'recently': 1,\n",
      "          'lion': 1,\n",
      "          'king': 1,\n",
      "          'walt': 1,\n",
      "          'company': 1,\n",
      "          'proved': 1,\n",
      "          'could': 1,\n",
      "          'consistently': 1,\n",
      "          'make': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'animated': 1,\n",
      "          'classics': 1,\n",
      "          'particularly': 1,\n",
      "          'touch': 1,\n",
      "          'general': 1,\n",
      "          'publicparticularly': 1,\n",
      "          'wanted': 1,\n",
      "          'see': 1,\n",
      "          'ntherefore': 1,\n",
      "          'surprise': 1,\n",
      "          'big': 1,\n",
      "          'fan': 1,\n",
      "          'ndespite': 1,\n",
      "          'innovation': 1,\n",
      "          'risk': 1,\n",
      "          'taking': 1,\n",
      "          'surprisingly': 1,\n",
      "          'straightforward': 1,\n",
      "          'dramatized': 1,\n",
      "          'broad': 1,\n",
      "          'strokes': 1,\n",
      "          'na': 1,\n",
      "          'group': 1,\n",
      "          'englishmen': 1,\n",
      "          'lead': 1,\n",
      "          'evil': 1,\n",
      "          'come': 1,\n",
      "          'new': 1,\n",
      "          'search': 1,\n",
      "          'gold': 1,\n",
      "          'regard': 1,\n",
      "          'live': 1,\n",
      "          'natives': 1,\n",
      "          'look': 1,\n",
      "          'upon': 1,\n",
      "          'fear': 1,\n",
      "          'distrust': 1,\n",
      "          'nonly': 1,\n",
      "          'love': 1,\n",
      "          'beautifully': 1,\n",
      "          'structured': 1,\n",
      "          'dashing': 1,\n",
      "          'captain': 1,\n",
      "          'prevent': 1,\n",
      "          'terrible': 1,\n",
      "          'clash': 1,\n",
      "          'ending': 1,\n",
      "          'turns': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'entirely': 1,\n",
      "          'happy': 1,\n",
      "          'finer': 1,\n",
      "          'moments': 1,\n",
      "          'mixtures': 1,\n",
      "          'stereotypes': 1,\n",
      "          'lack': 1,\n",
      "          'real': 1,\n",
      "          'depth': 1,\n",
      "          'ngovernor': 1,\n",
      "          'snobbish': 1,\n",
      "          'singleminded': 1,\n",
      "          'bore': 1,\n",
      "          'whose': 1,\n",
      "          'mere': 1,\n",
      "          'appearance': 1,\n",
      "          'supposed': 1,\n",
      "          'bring': 1,\n",
      "          'hisses': 1,\n",
      "          'ncaptain': 1,\n",
      "          'blond': 1,\n",
      "          'hunk': 1,\n",
      "          'slightly': 1,\n",
      "          'misguided': 1,\n",
      "          'good': 1,\n",
      "          'heart': 1,\n",
      "          'npocahontas': 1,\n",
      "          'typical': 1,\n",
      "          'heroine': 1,\n",
      "          'practically': 1,\n",
      "          'forced': 1,\n",
      "          'marry': 1,\n",
      "          'everyone': 1,\n",
      "          'likes': 1,\n",
      "          'finds': 1,\n",
      "          'dreams': 1,\n",
      "          'nshe': 1,\n",
      "          'comes': 1,\n",
      "          'complete': 1,\n",
      "          'insignificant': 1,\n",
      "          'friend': 1,\n",
      "          'nagain': 1,\n",
      "          'tradition': 1,\n",
      "          'arent': 1,\n",
      "          'lusty': 1,\n",
      "          'wizened': 1,\n",
      "          'nthis': 1,\n",
      "          'odd': 1,\n",
      "          'compromise': 1,\n",
      "          'elements': 1,\n",
      "          'really': 1,\n",
      "          'brief': 1,\n",
      "          'interactions': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'brings': 1,\n",
      "          'fun': 1,\n",
      "          'bland': 1,\n",
      "          'presentation': 1,\n",
      "          'nmaybe': 1,\n",
      "          'better': 1,\n",
      "          'saw': 1,\n",
      "          'unfold': 1,\n",
      "          'eyes': 1,\n",
      "          'seems': 1,\n",
      "          'thing': 1,\n",
      "          'hold': 1,\n",
      "          'interest': 1,\n",
      "          'perhaps': 1,\n",
      "          'developed': 1,\n",
      "          'bunch': 1,\n",
      "          'music': 1,\n",
      "          'welcome': 1,\n",
      "          'later': 1,\n",
      "          'mostly': 1,\n",
      "          'let': 1,\n",
      "          'exception': 1,\n",
      "          'catchy': 1,\n",
      "          'motivational': 1,\n",
      "          'colors': 1,\n",
      "          'wind': 1,\n",
      "          'nmel': 1,\n",
      "          'gibson': 1,\n",
      "          'solid': 1,\n",
      "          'opposite': 1,\n",
      "          'holds': 1,\n",
      "          'true': 1,\n",
      "          'led': 1,\n",
      "          'songs': 1,\n",
      "          'grating': 1,\n",
      "          'bored': 1,\n",
      "          'turned': 1,\n",
      "          'shorter': 1,\n",
      "          'expected': 1,\n",
      "          'running': 1,\n",
      "          'children': 1,\n",
      "          'seemed': 1,\n",
      "          'restless': 1,\n",
      "          'theres': 1,\n",
      "          'stopping': 1,\n",
      "          'kid': 1,\n",
      "          'seeing': 1,\n",
      "          'something': 1,\n",
      "          'wantor': 1,\n",
      "          'wants': 1,\n",
      "          'tomost': 1,\n",
      "          'believe': 1,\n",
      "          'nperhaps': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'strayed': 1,\n",
      "          'familiar': 1,\n",
      "          'fable': 1,\n",
      "          'fairy': 1,\n",
      "          'tale': 1,\n",
      "          'themes': 1,\n",
      "          'nits': 1,\n",
      "          'right': 1,\n",
      "          'embellish': 1,\n",
      "          'fantasy': 1,\n",
      "          'suit': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'historical': 1,\n",
      "          'facts': 1,\n",
      "          'nearly': 1,\n",
      "          'well': 1,\n",
      "          'creating': 1,\n",
      "          'nagging': 1,\n",
      "          'viewers': 1,\n",
      "          'minds': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'never': 1,\n",
      "          'filled': 1,\n",
      "          'artwork': 1,\n",
      "          'another': 1,\n",
      "          'strong': 1,\n",
      "          'point': 1,\n",
      "          'varies': 1,\n",
      "          'greatly': 1,\n",
      "          'quality': 1,\n",
      "          'problems': 1,\n",
      "          'obvious': 1,\n",
      "          'stayed': 1,\n",
      "          'nfor': 1,\n",
      "          'truly': 1,\n",
      "          'traveler': 1,\n",
      "          'experience': 1,\n",
      "          'quickly': 1,\n",
      "          'previous': 1,\n",
      "          'kill': 1,\n",
      "          'indians': 1,\n",
      "          'attitude': 1,\n",
      "          'nif': 1,\n",
      "          'nice': 1,\n",
      "          'guy': 1,\n",
      "          'changed': 1,\n",
      "          'long': 1,\n",
      "          'amazing': 1,\n",
      "          'speaking': 1,\n",
      "          'ability': 1,\n",
      "          'supposedly': 1,\n",
      "          'first': 1,\n",
      "          'seen': 1,\n",
      "          'white': 1,\n",
      "          'men': 1,\n",
      "          'understand': 1,\n",
      "          'native': 1,\n",
      "          'americans': 1,\n",
      "          'speak': 1,\n",
      "          'benefit': 1,\n",
      "          'simply': 1,\n",
      "          'saying': 1,\n",
      "          'met': 1,\n",
      "          'missionary': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'cleared': 1,\n",
      "          'lot': 1,\n",
      "          'modified': 1,\n",
      "          'anyway': 1,\n",
      "          'wonder': 1,\n",
      "          'give': 1,\n",
      "          'wrong': 1,\n",
      "          'impression': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'adults': 1,\n",
      "          'contains': 1,\n",
      "          'romance': 1,\n",
      "          'enough': 1,\n",
      "          'action': 1,\n",
      "          'younger': 1,\n",
      "          'set': 1,\n",
      "          'tried': 1,\n",
      "          'valiantly': 1,\n",
      "          'break': 1,\n",
      "          'firmest': 1,\n",
      "          'traditions': 1,\n",
      "          'end': 1,\n",
      "          'failing': 1,\n",
      "          'levels': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tom': 4,\n",
      "          'film': 4,\n",
      "          'hanks': 4,\n",
      "          'comedy': 3,\n",
      "          'scott': 3,\n",
      "          'roommates': 2,\n",
      "          'find': 2,\n",
      "          'subject': 2,\n",
      "          'matter': 2,\n",
      "          'movie': 2,\n",
      "          'everett': 2,\n",
      "          'scotts': 2,\n",
      "          'element': 2,\n",
      "          'black': 2,\n",
      "          'youre': 2,\n",
      "          'gon': 2,\n",
      "          'na': 2,\n",
      "          'bad': 2,\n",
      "          'known': 2,\n",
      "          'first': 2,\n",
      "          'feature': 2,\n",
      "          'director': 2,\n",
      "          'hiring': 2,\n",
      "          'decided': 2,\n",
      "          'played': 2,\n",
      "          'plot': 1,\n",
      "          'upon': 1,\n",
      "          'realization': 1,\n",
      "          'failing': 1,\n",
      "          'classes': 1,\n",
      "          'two': 1,\n",
      "          'try': 1,\n",
      "          'third': 1,\n",
      "          'roomie': 1,\n",
      "          'kill': 1,\n",
      "          'since': 1,\n",
      "          'schools': 1,\n",
      "          'charter': 1,\n",
      "          'automatically': 1,\n",
      "          'grants': 1,\n",
      "          'top': 1,\n",
      "          'grades': 1,\n",
      "          'student': 1,\n",
      "          'succeeds': 1,\n",
      "          'suicide': 1,\n",
      "          'ncritique': 1,\n",
      "          'despite': 1,\n",
      "          'films': 1,\n",
      "          'interesting': 1,\n",
      "          'premise': 1,\n",
      "          'dark': 1,\n",
      "          'sucks': 1,\n",
      "          'unfunny': 1,\n",
      "          'boring': 1,\n",
      "          'presents': 1,\n",
      "          'us': 1,\n",
      "          'one': 1,\n",
      "          'worst': 1,\n",
      "          'acting': 1,\n",
      "          'performances': 1,\n",
      "          'nadd': 1,\n",
      "          'completely': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'romance': 1,\n",
      "          'many': 1,\n",
      "          'lame': 1,\n",
      "          'corny': 1,\n",
      "          'jokes': 1,\n",
      "          'long': 1,\n",
      "          'wait': 1,\n",
      "          'setup': 1,\n",
      "          'ending': 1,\n",
      "          'takes': 1,\n",
      "          'blackness': 1,\n",
      "          'create': 1,\n",
      "          'dont': 1,\n",
      "          'chicken': 1,\n",
      "          'endsee': 1,\n",
      "          'things': 1,\n",
      "          '810': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'trite': 1,\n",
      "          'mtv': 1,\n",
      "          'creation': 1,\n",
      "          'worthy': 1,\n",
      "          'ni': 1,\n",
      "          'barely': 1,\n",
      "          'laughed': 1,\n",
      "          'gags': 1,\n",
      "          'found': 1,\n",
      "          'bong': 1,\n",
      "          'contrived': 1,\n",
      "          'repetitive': 1,\n",
      "          'horrified': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nudity': 1,\n",
      "          'tossed': 1,\n",
      "          'anywhere': 1,\n",
      "          'make': 1,\n",
      "          'college': 1,\n",
      "          'least': 1,\n",
      "          'slap': 1,\n",
      "          'free': 1,\n",
      "          'ta': 1,\n",
      "          'shots': 1,\n",
      "          'kids': 1,\n",
      "          'nthis': 1,\n",
      "          'ones': 1,\n",
      "          'even': 1,\n",
      "          'worth': 1,\n",
      "          'rental': 1,\n",
      "          'fellas': 1,\n",
      "          'nskip': 1,\n",
      "          'altogether': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'auditions': 1,\n",
      "          'thing': 1,\n",
      "          'role': 1,\n",
      "          'opposed': 1,\n",
      "          'fact': 1,\n",
      "          'couldve': 1,\n",
      "          'passed': 1,\n",
      "          '15': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nit': 1,\n",
      "          'wasnt': 1,\n",
      "          'wife': 1,\n",
      "          'rita': 1,\n",
      "          'wilson': 1,\n",
      "          'saw': 1,\n",
      "          'audition': 1,\n",
      "          'tape': 1,\n",
      "          'cute': 1,\n",
      "          'risk': 1,\n",
      "          'nthe': 1,\n",
      "          'actor': 1,\n",
      "          'cooper': 1,\n",
      "          'markpaul': 1,\n",
      "          'gosselaar': 1,\n",
      "          'best': 1,\n",
      "          'character': 1,\n",
      "          'zack': 1,\n",
      "          'morris': 1,\n",
      "          'tvs': 1,\n",
      "          'saved': 1,\n",
      "          'bell': 1,\n",
      "          'nhis': 1,\n",
      "          'parents': 1,\n",
      "          'dutch': 1,\n",
      "          'named': 1,\n",
      "          'hans': 1,\n",
      "          'paula': 1,\n",
      "          'nand': 1,\n",
      "          'wouldve': 1,\n",
      "          'guessed': 1,\n",
      "          'alan': 1,\n",
      "          'cohns': 1,\n",
      "          'shot': 1,\n",
      "          'directing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 14,\n",
      "          'film': 10,\n",
      "          'good': 9,\n",
      "          'nbut': 9,\n",
      "          'nthe': 9,\n",
      "          'films': 8,\n",
      "          'made': 7,\n",
      "          'quentin': 7,\n",
      "          'funny': 6,\n",
      "          'director': 5,\n",
      "          'couple': 5,\n",
      "          'never': 5,\n",
      "          'ted': 5,\n",
      "          'starring': 5,\n",
      "          'also': 4,\n",
      "          'first': 4,\n",
      "          'two': 4,\n",
      "          'nhe': 4,\n",
      "          'rodriguez': 4,\n",
      "          'crap': 4,\n",
      "          'new': 4,\n",
      "          'back': 4,\n",
      "          'actually': 4,\n",
      "          'writerdirector': 4,\n",
      "          'plot': 4,\n",
      "          'get': 4,\n",
      "          'man': 4,\n",
      "          'stupid': 4,\n",
      "          'ni': 3,\n",
      "          'bad': 3,\n",
      "          'tarantino': 3,\n",
      "          'tv': 3,\n",
      "          'nand': 3,\n",
      "          'n': 3,\n",
      "          'cool': 3,\n",
      "          'ensemble': 3,\n",
      "          'goes': 3,\n",
      "          'something': 3,\n",
      "          'bring': 3,\n",
      "          'etc': 3,\n",
      "          'thing': 3,\n",
      "          'wrong': 3,\n",
      "          'david': 3,\n",
      "          'proval': 3,\n",
      "          'jennifer': 3,\n",
      "          'beals': 3,\n",
      "          'much': 3,\n",
      "          'seemed': 3,\n",
      "          'nit': 3,\n",
      "          'anticlimactic': 3,\n",
      "          'kids': 3,\n",
      "          'long': 3,\n",
      "          'hollywood': 3,\n",
      "          'doesnt': 3,\n",
      "          'seem': 3,\n",
      "          'makes': 3,\n",
      "          'respect': 2,\n",
      "          'perfect': 2,\n",
      "          'scorsese': 2,\n",
      "          'classic': 2,\n",
      "          'make': 2,\n",
      "          'whos': 2,\n",
      "          'great': 2,\n",
      "          'nnow': 2,\n",
      "          'second': 2,\n",
      "          'time': 2,\n",
      "          'wasnt': 2,\n",
      "          'year': 2,\n",
      "          'way': 2,\n",
      "          'nive': 2,\n",
      "          'seen': 2,\n",
      "          'alexandre': 2,\n",
      "          'rockwell': 2,\n",
      "          'allison': 2,\n",
      "          'anders': 2,\n",
      "          'directors': 2,\n",
      "          'give': 2,\n",
      "          'really': 2,\n",
      "          'york': 2,\n",
      "          'stories': 2,\n",
      "          'totally': 2,\n",
      "          'bellhop': 2,\n",
      "          'roth': 2,\n",
      "          'god': 2,\n",
      "          'though': 2,\n",
      "          'working': 2,\n",
      "          'years': 2,\n",
      "          'old': 2,\n",
      "          'hotel': 2,\n",
      "          'pulp': 2,\n",
      "          'fiction': 2,\n",
      "          'hands': 2,\n",
      "          'job': 2,\n",
      "          'night': 2,\n",
      "          'ione': 2,\n",
      "          'skye': 2,\n",
      "          'nthis': 2,\n",
      "          'starts': 2,\n",
      "          'dialogue': 2,\n",
      "          'painful': 2,\n",
      "          'watch': 2,\n",
      "          'room': 2,\n",
      "          'supposed': 2,\n",
      "          'said': 2,\n",
      "          'arent': 2,\n",
      "          'even': 2,\n",
      "          'stars': 2,\n",
      "          'laurence': 2,\n",
      "          'bender': 2,\n",
      "          'little': 2,\n",
      "          'sex': 2,\n",
      "          'nted': 2,\n",
      "          'gets': 2,\n",
      "          'playing': 2,\n",
      "          'end': 2,\n",
      "          'robert': 2,\n",
      "          'antonio': 2,\n",
      "          'tomita': 2,\n",
      "          'lana': 2,\n",
      "          'danny': 2,\n",
      "          'salma': 2,\n",
      "          'see': 2,\n",
      "          'nantonio': 2,\n",
      "          'go': 2,\n",
      "          'drunk': 2,\n",
      "          'best': 2,\n",
      "          'light': 2,\n",
      "          'lighter': 2,\n",
      "          'nthey': 2,\n",
      "          'lot': 2,\n",
      "          'cause': 2,\n",
      "          'nif': 2,\n",
      "          'nits': 2,\n",
      "          'theyre': 2,\n",
      "          'respecting': 1,\n",
      "          'must': 1,\n",
      "          'fact': 1,\n",
      "          'nwoody': 1,\n",
      "          'allen': 1,\n",
      "          'lessthan': 1,\n",
      "          'hes': 1,\n",
      "          'favorite': 1,\n",
      "          'neven': 1,\n",
      "          'martin': 1,\n",
      "          'hasnt': 1,\n",
      "          'track': 1,\n",
      "          'record': 1,\n",
      "          'nkevin': 1,\n",
      "          'smith': 1,\n",
      "          'smashing': 1,\n",
      "          'debut': 1,\n",
      "          'clerks': 1,\n",
      "          'stooped': 1,\n",
      "          'low': 1,\n",
      "          'sellout': 1,\n",
      "          'dreadful': 1,\n",
      "          'mallrats': 1,\n",
      "          'mean': 1,\n",
      "          'far': 1,\n",
      "          'several': 1,\n",
      "          'none': 1,\n",
      "          'richard': 1,\n",
      "          'linklater': 1,\n",
      "          'slacker': 1,\n",
      "          'dazed': 1,\n",
      "          'confused': 1,\n",
      "          'sunrise': 1,\n",
      "          'suburbia': 1,\n",
      "          'nwhich': 1,\n",
      "          'adore': 1,\n",
      "          'nhis': 1,\n",
      "          'greatest': 1,\n",
      "          '1995': 1,\n",
      "          'many': 1,\n",
      "          'appearances': 1,\n",
      "          'mispronounced': 1,\n",
      "          'jackie': 1,\n",
      "          'chans': 1,\n",
      "          'name': 1,\n",
      "          'mtv': 1,\n",
      "          'movie': 1,\n",
      "          'awards': 1,\n",
      "          'awarded': 1,\n",
      "          'oscar': 1,\n",
      "          'guess': 1,\n",
      "          'would': 1,\n",
      "          'grand': 1,\n",
      "          'exception': 1,\n",
      "          'nrobert': 1,\n",
      "          'brilliant': 1,\n",
      "          'cant': 1,\n",
      "          'comment': 1,\n",
      "          'four': 1,\n",
      "          'pitiful': 1,\n",
      "          'efforts': 1,\n",
      "          'npitiful': 1,\n",
      "          'fairness': 1,\n",
      "          'pieces': 1,\n",
      "          'work': 1,\n",
      "          'heard': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          'coppola': 1,\n",
      "          'saw': 1,\n",
      "          'woodys': 1,\n",
      "          'hilarious': 1,\n",
      "          'par': 1,\n",
      "          'rate': 1,\n",
      "          'individually': 1,\n",
      "          'report': 1,\n",
      "          'overal': 1,\n",
      "          'average': 1,\n",
      "          'score': 1,\n",
      "          'nexposition': 1,\n",
      "          'simple': 1,\n",
      "          'overdone': 1,\n",
      "          'tim': 1,\n",
      "          'moments': 1,\n",
      "          'eve': 1,\n",
      "          'shift': 1,\n",
      "          'fancy': 1,\n",
      "          'nhes': 1,\n",
      "          'rooms': 1,\n",
      "          'yet': 1,\n",
      "          'seemingly': 1,\n",
      "          'immortal': 1,\n",
      "          'marc': 1,\n",
      "          'lawrence': 1,\n",
      "          'hated': 1,\n",
      "          'cap': 1,\n",
      "          'happily': 1,\n",
      "          'nas': 1,\n",
      "          'becomes': 1,\n",
      "          'increasingly': 1,\n",
      "          'annoyed': 1,\n",
      "          'hostile': 1,\n",
      "          'nyea': 1,\n",
      "          'short': 1,\n",
      "          'presented': 1,\n",
      "          'order': 1,\n",
      "          'btw': 1,\n",
      "          'missing': 1,\n",
      "          'ingredient': 1,\n",
      "          'sammi': 1,\n",
      "          'davis': 1,\n",
      "          'amanda': 1,\n",
      "          'decadenet': 1,\n",
      "          'valeria': 1,\n",
      "          'golino': 1,\n",
      "          'madonna': 1,\n",
      "          'lili': 1,\n",
      "          'taylor': 1,\n",
      "          'alicia': 1,\n",
      "          'witt': 1,\n",
      "          'horribly': 1,\n",
      "          'intrigue': 1,\n",
      "          'situation': 1,\n",
      "          'terrible': 1,\n",
      "          'physically': 1,\n",
      "          'coven': 1,\n",
      "          'witches': 1,\n",
      "          'needing': 1,\n",
      "          'sperm': 1,\n",
      "          'godess': 1,\n",
      "          'gasp': 1,\n",
      "          'nstuck': 1,\n",
      "          'inside': 1,\n",
      "          'object': 1,\n",
      "          'witch': 1,\n",
      "          'calls': 1,\n",
      "          'asks': 1,\n",
      "          'perform': 1,\n",
      "          'fellatio': 1,\n",
      "          'nyeah': 1,\n",
      "          'thats': 1,\n",
      "          'nstupid': 1,\n",
      "          'inane': 1,\n",
      "          'characters': 1,\n",
      "          'interesting': 1,\n",
      "          'cast': 1,\n",
      "          'turn': 1,\n",
      "          'wastes': 1,\n",
      "          'pitifully': 1,\n",
      "          'nnot': 1,\n",
      "          'nmy': 1,\n",
      "          'rating': 1,\n",
      "          '5': 1,\n",
      "          'nanother': 1,\n",
      "          'another': 1,\n",
      "          'going': 1,\n",
      "          'stumbles': 1,\n",
      "          'middle': 1,\n",
      "          'attempt': 1,\n",
      "          'coming': 1,\n",
      "          'games': 1,\n",
      "          'tries': 1,\n",
      "          'escape': 1,\n",
      "          'cheer': 1,\n",
      "          'soon': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'comedy': 1,\n",
      "          'overacted': 1,\n",
      "          'producer': 1,\n",
      "          'puke': 1,\n",
      "          'window': 1,\n",
      "          'na': 1,\n",
      "          'masterpiece': 1,\n",
      "          'compared': 1,\n",
      "          'still': 1,\n",
      "          'misbehavers': 1,\n",
      "          'banderes': 1,\n",
      "          'tamlyn': 1,\n",
      "          'mckissack': 1,\n",
      "          'verduzco': 1,\n",
      "          'hayek': 1,\n",
      "          'nwould': 1,\n",
      "          'without': 1,\n",
      "          'hayeks': 1,\n",
      "          'navel': 1,\n",
      "          'nnope': 1,\n",
      "          'nluckily': 1,\n",
      "          'shes': 1,\n",
      "          'dancing': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'enough': 1,\n",
      "          'read': 1,\n",
      "          'screenplay': 1,\n",
      "          'seeing': 1,\n",
      "          'potential': 1,\n",
      "          'fastpaced': 1,\n",
      "          'well': 1,\n",
      "          'watched': 1,\n",
      "          'gain': 1,\n",
      "          'momentum': 1,\n",
      "          'towards': 1,\n",
      "          'everything': 1,\n",
      "          'happened': 1,\n",
      "          'overacts': 1,\n",
      "          'nicely': 1,\n",
      "          'moves': 1,\n",
      "          'slowly': 1,\n",
      "          'ending': 1,\n",
      "          'noh': 1,\n",
      "          'gangster': 1,\n",
      "          'assumed': 1,\n",
      "          'leaves': 1,\n",
      "          'troubling': 1,\n",
      "          'home': 1,\n",
      "          'wife': 1,\n",
      "          'party': 1,\n",
      "          'hires': 1,\n",
      "          'bucks': 1,\n",
      "          'things': 1,\n",
      "          'nwas': 1,\n",
      "          'okay': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'paul': 1,\n",
      "          'calderon': 1,\n",
      "          'nironically': 1,\n",
      "          'could': 1,\n",
      "          'considered': 1,\n",
      "          'reason': 1,\n",
      "          'represents': 1,\n",
      "          'done': 1,\n",
      "          'plays': 1,\n",
      "          'chester': 1,\n",
      "          'spoiled': 1,\n",
      "          'brat': 1,\n",
      "          'actor': 1,\n",
      "          'huge': 1,\n",
      "          'boxoffice': 1,\n",
      "          'hit': 1,\n",
      "          'living': 1,\n",
      "          'game': 1,\n",
      "          'hitchcock': 1,\n",
      "          'episode': 1,\n",
      "          'steve': 1,\n",
      "          'mcqueen': 1,\n",
      "          'peter': 1,\n",
      "          'lorre': 1,\n",
      "          'gamble': 1,\n",
      "          'ten': 1,\n",
      "          'times': 1,\n",
      "          'row': 1,\n",
      "          'ntheyre': 1,\n",
      "          'need': 1,\n",
      "          'sober': 1,\n",
      "          'nervous': 1,\n",
      "          'hold': 1,\n",
      "          'cleaver': 1,\n",
      "          'pay': 1,\n",
      "          'cash': 1,\n",
      "          'exactly': 1,\n",
      "          'campy': 1,\n",
      "          'ntim': 1,\n",
      "          'probably': 1,\n",
      "          'payed': 1,\n",
      "          'money': 1,\n",
      "          'part': 1,\n",
      "          'bunch': 1,\n",
      "          'people': 1,\n",
      "          'high': 1,\n",
      "          'theyve': 1,\n",
      "          'hits': 1,\n",
      "          'major': 1,\n",
      "          'minor': 1,\n",
      "          'took': 1,\n",
      "          'realize': 1,\n",
      "          'like': 1,\n",
      "          'realizes': 1,\n",
      "          'id': 1,\n",
      "          '3': 1,\n",
      "          'sucked': 1,\n",
      "          'steadicam': 1,\n",
      "          'shot': 1,\n",
      "          'flashes': 1,\n",
      "          'nthat': 1,\n",
      "          'sense': 1,\n",
      "          'uneven': 1,\n",
      "          'nhopefully': 1,\n",
      "          'repeats': 1,\n",
      "          'nconclusion': 1,\n",
      "          'whats': 1,\n",
      "          'moral': 1,\n",
      "          'youve': 1,\n",
      "          'celebrated': 1,\n",
      "          'dont': 1,\n",
      "          'piece': 1,\n",
      "          'rewatched': 1,\n",
      "          'stopped': 1,\n",
      "          'tracks': 1,\n",
      "          'nnone': 1,\n",
      "          'point': 1,\n",
      "          'embarrassing': 1,\n",
      "          'writerdirectors': 1,\n",
      "          'actors': 1,\n",
      "          'forgive': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'especially': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'quentins': 1,\n",
      "          'next': 1,\n",
      "          'directing': 1,\n",
      "          'jumped': 1,\n",
      "          'top': 1,\n",
      "          'immeadiately': 1,\n",
      "          'dusk': 1,\n",
      "          'till': 1,\n",
      "          'dawn': 1,\n",
      "          'found': 1,\n",
      "          'exhilerating': 1,\n",
      "          'love': 1,\n",
      "          'suppose': 1,\n",
      "          'realistic': 1,\n",
      "          'cinema': 1,\n",
      "          'gods': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'mistakes': 1,\n",
      "          'big': 1,\n",
      "          'mistake': 1,\n",
      "          'lets': 1,\n",
      "          'hope': 1,\n",
      "          'return': 1,\n",
      "          'continuously': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'species': 7,\n",
      "          'one': 5,\n",
      "          'ii': 4,\n",
      "          'nits': 3,\n",
      "          'alien': 3,\n",
      "          'first': 3,\n",
      "          'film': 3,\n",
      "          'isnt': 2,\n",
      "          'reason': 2,\n",
      "          'effects': 2,\n",
      "          'nthe': 2,\n",
      "          'back': 2,\n",
      "          'mars': 2,\n",
      "          'slime': 2,\n",
      "          'movie': 2,\n",
      "          'eve': 2,\n",
      "          'henstridge': 2,\n",
      "          'tv': 2,\n",
      "          'go': 2,\n",
      "          'sequel': 2,\n",
      "          'press': 2,\n",
      "          'like': 2,\n",
      "          'peter': 2,\n",
      "          'better': 2,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'seen': 1,\n",
      "          'original': 1,\n",
      "          'appreciate': 1,\n",
      "          'utterly': 1,\n",
      "          'lousy': 1,\n",
      "          'nwith': 1,\n",
      "          'exceptions': 1,\n",
      "          'sequels': 1,\n",
      "          'tend': 1,\n",
      "          'worse': 1,\n",
      "          'films': 1,\n",
      "          'spawned': 1,\n",
      "          'fact': 1,\n",
      "          'followup': 1,\n",
      "          'miserable': 1,\n",
      "          'predictable': 1,\n",
      "          'storyline': 1,\n",
      "          'cardboard': 1,\n",
      "          'characters': 1,\n",
      "          'banal': 1,\n",
      "          'dialogue': 1,\n",
      "          'failed': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'revolting': 1,\n",
      "          'special': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nudity': 1,\n",
      "          'female': 1,\n",
      "          'course': 1,\n",
      "          'bad': 1,\n",
      "          'acting': 1,\n",
      "          'bland': 1,\n",
      "          'direction': 1,\n",
      "          'plot': 1,\n",
      "          'simply': 1,\n",
      "          'geared': 1,\n",
      "          'getting': 1,\n",
      "          'planet': 1,\n",
      "          'earth': 1,\n",
      "          'reak': 1,\n",
      "          'havoc': 1,\n",
      "          'involves': 1,\n",
      "          'three': 1,\n",
      "          'astronauts': 1,\n",
      "          'landing': 1,\n",
      "          'inadvertently': 1,\n",
      "          'bringing': 1,\n",
      "          'soil': 1,\n",
      "          'sample': 1,\n",
      "          'aboard': 1,\n",
      "          'shuttle': 1,\n",
      "          'well': 1,\n",
      "          'sort': 1,\n",
      "          'jumps': 1,\n",
      "          'screen': 1,\n",
      "          'turns': 1,\n",
      "          'black': 1,\n",
      "          'nthat': 1,\n",
      "          'end': 1,\n",
      "          'right': 1,\n",
      "          'nback': 1,\n",
      "          'terra': 1,\n",
      "          'firma': 1,\n",
      "          'least': 1,\n",
      "          'crew': 1,\n",
      "          'carrier': 1,\n",
      "          'dna': 1,\n",
      "          'youll': 1,\n",
      "          'remember': 1,\n",
      "          'saw': 1,\n",
      "          'driven': 1,\n",
      "          'strong': 1,\n",
      "          'urge': 1,\n",
      "          'procreate': 1,\n",
      "          'non': 1,\n",
      "          'parallel': 1,\n",
      "          'track': 1,\n",
      "          'government': 1,\n",
      "          'scientists': 1,\n",
      "          'cloned': 1,\n",
      "          'version': 1,\n",
      "          'sil': 1,\n",
      "          'called': 1,\n",
      "          'played': 1,\n",
      "          'natasha': 1,\n",
      "          'keeping': 1,\n",
      "          'around': 1,\n",
      "          'testing': 1,\n",
      "          'nthis': 1,\n",
      "          'apparently': 1,\n",
      "          'includes': 1,\n",
      "          'observing': 1,\n",
      "          'eves': 1,\n",
      "          'reaction': 1,\n",
      "          'dukes': 1,\n",
      "          'hazzard': 1,\n",
      "          'show': 1,\n",
      "          'appears': 1,\n",
      "          'enjoy': 1,\n",
      "          'neves': 1,\n",
      "          'biorhythms': 1,\n",
      "          'scale': 1,\n",
      "          'time': 1,\n",
      "          'kinfolk': 1,\n",
      "          'mates': 1,\n",
      "          'forced': 1,\n",
      "          'witness': 1,\n",
      "          'grossout': 1,\n",
      "          'detail': 1,\n",
      "          'otherwise': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'unless': 1,\n",
      "          'written': 1,\n",
      "          'contract': 1,\n",
      "          'lets': 1,\n",
      "          'hope': 1,\n",
      "          'cited': 1,\n",
      "          'neve': 1,\n",
      "          'finally': 1,\n",
      "          'breaks': 1,\n",
      "          'free': 1,\n",
      "          'confinesand': 1,\n",
      "          'brafor': 1,\n",
      "          'finale': 1,\n",
      "          'messy': 1,\n",
      "          'cant': 1,\n",
      "          'really': 1,\n",
      "          'see': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'npeter': 1,\n",
      "          'boyle': 1,\n",
      "          'totally': 1,\n",
      "          'wasted': 1,\n",
      "          'institutionalized': 1,\n",
      "          'scientist': 1,\n",
      "          'screams': 1,\n",
      "          'told': 1,\n",
      "          'em': 1,\n",
      "          'nat': 1,\n",
      "          'top': 1,\n",
      "          'lungs': 1,\n",
      "          'referring': 1,\n",
      "          'mission': 1,\n",
      "          'likely': 1,\n",
      "          'aimed': 1,\n",
      "          'makers': 1,\n",
      "          'piffle': 1,\n",
      "          'nmichael': 1,\n",
      "          'madsen': 1,\n",
      "          'reprises': 1,\n",
      "          'role': 1,\n",
      "          'lennox': 1,\n",
      "          'enter': 1,\n",
      "          'high': 1,\n",
      "          'security': 1,\n",
      "          'areas': 1,\n",
      "          'flash': 1,\n",
      "          'badge': 1,\n",
      "          'claim': 1,\n",
      "          'maybe': 1,\n",
      "          'marg': 1,\n",
      "          'helgenberger': 1,\n",
      "          'dr': 1,\n",
      "          'laura': 1,\n",
      "          'baker': 1,\n",
      "          'subjecting': 1,\n",
      "          'reruns': 1,\n",
      "          'ntheyre': 1,\n",
      "          'unbelievably': 1,\n",
      "          'wooden': 1,\n",
      "          'nwhats': 1,\n",
      "          'talented': 1,\n",
      "          'filmmaker': 1,\n",
      "          'medak': 1,\n",
      "          'ruling': 1,\n",
      "          'class': 1,\n",
      "          'krays': 1,\n",
      "          'let': 1,\n",
      "          'directing': 1,\n",
      "          'tripe': 1,\n",
      "          'wonder': 1,\n",
      "          'unfortunate': 1,\n",
      "          'trend': 1,\n",
      "          'oncetalented': 1,\n",
      "          'directors': 1,\n",
      "          'throwing': 1,\n",
      "          'towel': 1,\n",
      "          'lending': 1,\n",
      "          'names': 1,\n",
      "          'unchallenging': 1,\n",
      "          'horror': 1,\n",
      "          'flicks': 1,\n",
      "          'nlast': 1,\n",
      "          'year': 1,\n",
      "          'hyams': 1,\n",
      "          'gave': 1,\n",
      "          'us': 1,\n",
      "          'relic': 1,\n",
      "          'thanks': 1,\n",
      "          'necessary': 1,\n",
      "          'nand': 1,\n",
      "          'helmed': 1,\n",
      "          'roger': 1,\n",
      "          'donaldson': 1,\n",
      "          'although': 1,\n",
      "          'certainly': 1,\n",
      "          'genius': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'demonstrated': 1,\n",
      "          'much': 1,\n",
      "          'judgment': 1,\n",
      "          'previous': 1,\n",
      "          'choice': 1,\n",
      "          'projects': 1,\n",
      "          'nis': 1,\n",
      "          'offers': 1,\n",
      "          'n': 1,\n",
      "          'worthless': 1,\n",
      "          'nworse': 1,\n",
      "          'also': 1,\n",
      "          'exploitative': 1,\n",
      "          'offensive': 1,\n",
      "          'insulting': 1,\n",
      "          'intelligence': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'anything': 1,\n",
      "          'positive': 1,\n",
      "          'say': 1,\n",
      "          'nthere': 1,\n",
      "          'nafter': 1,\n",
      "          '92': 1,\n",
      "          'minutes': 1,\n",
      "          'ends': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'nthe': 8,\n",
      "          'years': 4,\n",
      "          'one': 4,\n",
      "          'could': 4,\n",
      "          'movies': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'done': 3,\n",
      "          'like': 3,\n",
      "          'lone': 3,\n",
      "          'widow': 3,\n",
      "          'water': 3,\n",
      "          'n': 3,\n",
      "          'called': 3,\n",
      "          'budget': 3,\n",
      "          'isnt': 3,\n",
      "          'script': 3,\n",
      "          'way': 3,\n",
      "          'enough': 3,\n",
      "          'ignores': 3,\n",
      "          'cost': 3,\n",
      "          'ten': 2,\n",
      "          'back': 2,\n",
      "          'warrior': 2,\n",
      "          'yarns': 2,\n",
      "          'plot': 2,\n",
      "          'gunman': 2,\n",
      "          'town': 2,\n",
      "          'well': 2,\n",
      "          'small': 2,\n",
      "          'young': 2,\n",
      "          'daughter': 2,\n",
      "          'get': 2,\n",
      "          'played': 2,\n",
      "          'stunning': 2,\n",
      "          'jean': 2,\n",
      "          'given': 2,\n",
      "          'even': 2,\n",
      "          'child': 2,\n",
      "          'enola': 2,\n",
      "          'tina': 2,\n",
      "          'bad': 2,\n",
      "          'thing': 2,\n",
      "          'material': 2,\n",
      "          'nin': 2,\n",
      "          'ice': 2,\n",
      "          'caps': 2,\n",
      "          'melted': 2,\n",
      "          'people': 2,\n",
      "          'boats': 2,\n",
      "          'centuries': 2,\n",
      "          'smokers': 2,\n",
      "          'engines': 2,\n",
      "          'sea': 2,\n",
      "          'dryland': 2,\n",
      "          'deacon': 2,\n",
      "          'find': 2,\n",
      "          'surface': 2,\n",
      "          'still': 2,\n",
      "          'work': 2,\n",
      "          'million': 2,\n",
      "          'dollars': 2,\n",
      "          'nothing': 2,\n",
      "          'sf': 2,\n",
      "          'tv': 2,\n",
      "          'series': 2,\n",
      "          'fx': 2,\n",
      "          'see': 2,\n",
      "          'something': 1,\n",
      "          'fishy': 1,\n",
      "          'state': 1,\n",
      "          'universal': 1,\n",
      "          'nabout': 1,\n",
      "          'unexpected': 1,\n",
      "          'success': 1,\n",
      "          'mad': 1,\n",
      "          'max': 1,\n",
      "          'road': 1,\n",
      "          'postapocalypse': 1,\n",
      "          'nittygritty': 1,\n",
      "          'survival': 1,\n",
      "          'became': 1,\n",
      "          'popular': 1,\n",
      "          'nweve': 1,\n",
      "          'always': 1,\n",
      "          'nature': 1,\n",
      "          'beach': 1,\n",
      "          'end': 1,\n",
      "          'world': 1,\n",
      "          'damnation': 1,\n",
      "          'alley': 1,\n",
      "          'ultimate': 1,\n",
      "          'nto': 1,\n",
      "          'date': 1,\n",
      "          'smoothly': 1,\n",
      "          'straightforward': 1,\n",
      "          'haircuts': 1,\n",
      "          'classic': 1,\n",
      "          'western': 1,\n",
      "          'comes': 1,\n",
      "          'protects': 1,\n",
      "          'son': 1,\n",
      "          'evil': 1,\n",
      "          'organization': 1,\n",
      "          'usually': 1,\n",
      "          'possession': 1,\n",
      "          'critical': 1,\n",
      "          'resource': 1,\n",
      "          'feed': 1,\n",
      "          'range': 1,\n",
      "          'mining': 1,\n",
      "          'claim': 1,\n",
      "          'nmost': 1,\n",
      "          'grew': 1,\n",
      "          'venerable': 1,\n",
      "          'solid': 1,\n",
      "          'hero': 1,\n",
      "          'virginian': 1,\n",
      "          'shane': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'patrick': 1,\n",
      "          'swayze': 1,\n",
      "          'steel': 1,\n",
      "          'dawn': 1,\n",
      "          'fairly': 1,\n",
      "          'made': 1,\n",
      "          'nnow': 1,\n",
      "          'waterworld': 1,\n",
      "          'brings': 1,\n",
      "          'traditional': 1,\n",
      "          'rescue': 1,\n",
      "          'shes': 1,\n",
      "          'kid': 1,\n",
      "          'idea': 1,\n",
      "          'lady': 1,\n",
      "          'helen': 1,\n",
      "          'tripplehorn': 1,\n",
      "          'chance': 1,\n",
      "          'interesting': 1,\n",
      "          'mediocre': 1,\n",
      "          'unimaginative': 1,\n",
      "          'majorino': 1,\n",
      "          'living': 1,\n",
      "          'proof': 1,\n",
      "          'actor': 1,\n",
      "          'need': 1,\n",
      "          'outshines': 1,\n",
      "          'simple': 1,\n",
      "          'scene': 1,\n",
      "          'earth': 1,\n",
      "          'hundreds': 1,\n",
      "          'polar': 1,\n",
      "          'somehow': 1,\n",
      "          'produced': 1,\n",
      "          'inundate': 1,\n",
      "          'entire': 1,\n",
      "          'planet': 1,\n",
      "          'remaining': 1,\n",
      "          'live': 1,\n",
      "          'floating': 1,\n",
      "          'colonies': 1,\n",
      "          'survive': 1,\n",
      "          'trade': 1,\n",
      "          'theft': 1,\n",
      "          'piracy': 1,\n",
      "          'nsomehow': 1,\n",
      "          'oil': 1,\n",
      "          'tanker': 1,\n",
      "          'survived': 1,\n",
      "          'inhabitants': 1,\n",
      "          'able': 1,\n",
      "          'keep': 1,\n",
      "          'gasoline': 1,\n",
      "          'running': 1,\n",
      "          'despite': 1,\n",
      "          'dearth': 1,\n",
      "          'replacement': 1,\n",
      "          'parts': 1,\n",
      "          'raw': 1,\n",
      "          'materials': 1,\n",
      "          'guys': 1,\n",
      "          'outboard': 1,\n",
      "          'fastmoving': 1,\n",
      "          'airplanes': 1,\n",
      "          'jet': 1,\n",
      "          'skis': 1,\n",
      "          'nenola': 1,\n",
      "          'found': 1,\n",
      "          'girl': 1,\n",
      "          'mysterious': 1,\n",
      "          'map': 1,\n",
      "          'read': 1,\n",
      "          'tattooed': 1,\n",
      "          'nwe': 1,\n",
      "          'suspect': 1,\n",
      "          'early': 1,\n",
      "          'mythical': 1,\n",
      "          'place': 1,\n",
      "          'trees': 1,\n",
      "          'crops': 1,\n",
      "          'animals': 1,\n",
      "          'grow': 1,\n",
      "          'hinges': 1,\n",
      "          'psycho': 1,\n",
      "          'ruler': 1,\n",
      "          'trying': 1,\n",
      "          'nplayed': 1,\n",
      "          'typical': 1,\n",
      "          'selflampooning': 1,\n",
      "          'rugchewing': 1,\n",
      "          'histrionics': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'thats': 1,\n",
      "          'close': 1,\n",
      "          'amusing': 1,\n",
      "          'nhis': 1,\n",
      "          'performance': 1,\n",
      "          'almost': 1,\n",
      "          'laughable': 1,\n",
      "          'funny': 1,\n",
      "          'star': 1,\n",
      "          'coproducer': 1,\n",
      "          'kevin': 1,\n",
      "          'costner': 1,\n",
      "          'nhes': 1,\n",
      "          'playing': 1,\n",
      "          'unnamed': 1,\n",
      "          'denizen': 1,\n",
      "          'man': 1,\n",
      "          'mariner': 1,\n",
      "          'turns': 1,\n",
      "          'gilled': 1,\n",
      "          'waterbreathing': 1,\n",
      "          'mutant': 1,\n",
      "          'webbed': 1,\n",
      "          'feet': 1,\n",
      "          'nvery': 1,\n",
      "          'little': 1,\n",
      "          'ineffectuality': 1,\n",
      "          'gills': 1,\n",
      "          'supplying': 1,\n",
      "          'oxygen': 1,\n",
      "          'support': 1,\n",
      "          'human': 1,\n",
      "          'metabolism': 1,\n",
      "          'fact': 1,\n",
      "          'completely': 1,\n",
      "          'much': 1,\n",
      "          'earths': 1,\n",
      "          'would': 1,\n",
      "          'blatant': 1,\n",
      "          'impossibility': 1,\n",
      "          'cultures': 1,\n",
      "          'technology': 1,\n",
      "          'shown': 1,\n",
      "          'canned': 1,\n",
      "          'meat': 1,\n",
      "          'last': 1,\n",
      "          'ammunition': 1,\n",
      "          'fire': 1,\n",
      "          'decades': 1,\n",
      "          'old': 1,\n",
      "          'nim': 1,\n",
      "          'quite': 1,\n",
      "          'fond': 1,\n",
      "          'majorinos': 1,\n",
      "          'previous': 1,\n",
      "          'impressed': 1,\n",
      "          'tripplehorns': 1,\n",
      "          'past': 1,\n",
      "          'accomplishments': 1,\n",
      "          'speechless': 1,\n",
      "          'costners': 1,\n",
      "          'dances': 1,\n",
      "          'wolves': 1,\n",
      "          'nbut': 1,\n",
      "          'destroy': 1,\n",
      "          'careers': 1,\n",
      "          'anyone': 1,\n",
      "          'associated': 1,\n",
      "          'nthis': 1,\n",
      "          'hundred': 1,\n",
      "          'eightytwo': 1,\n",
      "          'theres': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'better': 1,\n",
      "          'percent': 1,\n",
      "          'turkey': 1,\n",
      "          'nat': 1,\n",
      "          '125': 1,\n",
      "          'minutes': 1,\n",
      "          'point': 1,\n",
      "          'four': 1,\n",
      "          'per': 1,\n",
      "          'minute': 1,\n",
      "          'make': 1,\n",
      "          'us': 1,\n",
      "          'thirty': 1,\n",
      "          'paid': 1,\n",
      "          'six': 1,\n",
      "          'primetime': 1,\n",
      "          'expensive': 1,\n",
      "          'good': 1,\n",
      "          'digital': 1,\n",
      "          'sum': 1,\n",
      "          'beneath': 1,\n",
      "          'contempt': 1,\n",
      "          'nit': 1,\n",
      "          'new': 1,\n",
      "          'offer': 1,\n",
      "          'easily': 1,\n",
      "          'bettered': 1,\n",
      "          'write': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'dc': 1,\n",
      "          'spent': 1,\n",
      "          'money': 1,\n",
      "          'national': 1,\n",
      "          'nation': 1,\n",
      "          'nif': 1,\n",
      "          'go': 1,\n",
      "          'fourdollar': 1,\n",
      "          'matinee': 1,\n",
      "          'notherwise': 1,\n",
      "          'youll': 1,\n",
      "          'sneering': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'pass': 1,\n",
      "          'reflective': 1,\n",
      "          'weeks': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'switchback': 6,\n",
      "          'nbut': 4,\n",
      "          'movie': 3,\n",
      "          'lacrosse': 3,\n",
      "          'even': 3,\n",
      "          'thats': 3,\n",
      "          'needs': 2,\n",
      "          'killer': 2,\n",
      "          'like': 2,\n",
      "          'lee': 2,\n",
      "          'fast': 2,\n",
      "          'know': 2,\n",
      "          'material': 2,\n",
      "          'enough': 2,\n",
      "          'make': 2,\n",
      "          'interesting': 2,\n",
      "          'n': 2,\n",
      "          'learn': 2,\n",
      "          'dennis': 2,\n",
      "          'quaid': 2,\n",
      "          'doesnt': 2,\n",
      "          'nin': 2,\n",
      "          'bob': 2,\n",
      "          'danny': 2,\n",
      "          'glover': 2,\n",
      "          'way': 2,\n",
      "          'life': 2,\n",
      "          'lane': 2,\n",
      "          'leto': 2,\n",
      "          'end': 2,\n",
      "          'turn': 2,\n",
      "          'knows': 2,\n",
      "          'much': 2,\n",
      "          'well': 2,\n",
      "          'true': 2,\n",
      "          'look': 2,\n",
      "          'season': 1,\n",
      "          'another': 1,\n",
      "          'serial': 1,\n",
      "          'kathie': 1,\n",
      "          'gifford': 1,\n",
      "          'public': 1,\n",
      "          'devastation': 1,\n",
      "          'lo': 1,\n",
      "          'behold': 1,\n",
      "          'comes': 1,\n",
      "          'heels': 1,\n",
      "          'stalker': 1,\n",
      "          'fare': 1,\n",
      "          'kiss': 1,\n",
      "          'girls': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'weak': 1,\n",
      "          'genre': 1,\n",
      "          'entry': 1,\n",
      "          'covers': 1,\n",
      "          'old': 1,\n",
      "          'tired': 1,\n",
      "          'filmmakers': 1,\n",
      "          'rarely': 1,\n",
      "          'sustain': 1,\n",
      "          'energy': 1,\n",
      "          'proceedings': 1,\n",
      "          'opens': 1,\n",
      "          'murder': 1,\n",
      "          'babysitter': 1,\n",
      "          'abduction': 1,\n",
      "          'young': 1,\n",
      "          'child': 1,\n",
      "          'shes': 1,\n",
      "          'watching': 1,\n",
      "          'nwe': 1,\n",
      "          'late': 1,\n",
      "          'game': 1,\n",
      "          'kid': 1,\n",
      "          'belongs': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'frank': 1,\n",
      "          'kidnapperkiller': 1,\n",
      "          'nameless': 1,\n",
      "          'fiend': 1,\n",
      "          'tracking': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'quite': 1,\n",
      "          'nhe': 1,\n",
      "          'promptly': 1,\n",
      "          'removed': 1,\n",
      "          'case': 1,\n",
      "          'conflict': 1,\n",
      "          'interest': 1,\n",
      "          'keep': 1,\n",
      "          'offering': 1,\n",
      "          'pursuit': 1,\n",
      "          'nlacrosses': 1,\n",
      "          'recent': 1,\n",
      "          'trek': 1,\n",
      "          'takes': 1,\n",
      "          'bloodsoaked': 1,\n",
      "          'hotel': 1,\n",
      "          'room': 1,\n",
      "          'amarillo': 1,\n",
      "          'texas': 1,\n",
      "          'local': 1,\n",
      "          'sheriff': 1,\n",
      "          'r': 1,\n",
      "          'ermey': 1,\n",
      "          'torn': 1,\n",
      "          'reelection': 1,\n",
      "          'campaign': 1,\n",
      "          'helping': 1,\n",
      "          'new': 1,\n",
      "          'ally': 1,\n",
      "          'catch': 1,\n",
      "          'man': 1,\n",
      "          'related': 1,\n",
      "          'aside': 1,\n",
      "          'former': 1,\n",
      "          'railway': 1,\n",
      "          'worker': 1,\n",
      "          'goodall': 1,\n",
      "          'cruising': 1,\n",
      "          'snowbound': 1,\n",
      "          'west': 1,\n",
      "          'pinupplastered': 1,\n",
      "          'seatbelts': 1,\n",
      "          'el': 1,\n",
      "          'dorado': 1,\n",
      "          'nalong': 1,\n",
      "          'picks': 1,\n",
      "          'subsequently': 1,\n",
      "          'saves': 1,\n",
      "          'hitchhiking': 1,\n",
      "          'loner': 1,\n",
      "          'dixon': 1,\n",
      "          'jared': 1,\n",
      "          'nthis': 1,\n",
      "          'tangent': 1,\n",
      "          'isnt': 1,\n",
      "          'random': 1,\n",
      "          'one': 1,\n",
      "          'either': 1,\n",
      "          'holding': 1,\n",
      "          'piece': 1,\n",
      "          'puzzle': 1,\n",
      "          'villain': 1,\n",
      "          'fact': 1,\n",
      "          'pretending': 1,\n",
      "          'coldhearted': 1,\n",
      "          'murderer': 1,\n",
      "          'sense': 1,\n",
      "          'half': 1,\n",
      "          'basic': 1,\n",
      "          'problem': 1,\n",
      "          'nfor': 1,\n",
      "          'first': 1,\n",
      "          'hour': 1,\n",
      "          'presents': 1,\n",
      "          'evidence': 1,\n",
      "          'three': 1,\n",
      "          'men': 1,\n",
      "          'could': 1,\n",
      "          'perpetrator': 1,\n",
      "          'given': 1,\n",
      "          'little': 1,\n",
      "          'insight': 1,\n",
      "          'likely': 1,\n",
      "          'fear': 1,\n",
      "          'therefore': 1,\n",
      "          'able': 1,\n",
      "          'proper': 1,\n",
      "          'deduction': 1,\n",
      "          'decides': 1,\n",
      "          'explicitly': 1,\n",
      "          'reveal': 1,\n",
      "          'killers': 1,\n",
      "          'identity': 1,\n",
      "          'midpoint': 1,\n",
      "          'following': 1,\n",
      "          'contradictory': 1,\n",
      "          'character': 1,\n",
      "          'motivations': 1,\n",
      "          'muddle': 1,\n",
      "          'pacing': 1,\n",
      "          'generation': 1,\n",
      "          'suspense': 1,\n",
      "          'nsome': 1,\n",
      "          'acting': 1,\n",
      "          'burdensome': 1,\n",
      "          'area': 1,\n",
      "          'probably': 1,\n",
      "          'performers': 1,\n",
      "          'instructed': 1,\n",
      "          'build': 1,\n",
      "          'personas': 1,\n",
      "          'exact': 1,\n",
      "          'opposite': 1,\n",
      "          'selves': 1,\n",
      "          'nwhat': 1,\n",
      "          'grinning': 1,\n",
      "          'yeehawing': 1,\n",
      "          'messy': 1,\n",
      "          'plot': 1,\n",
      "          'nand': 1,\n",
      "          'monotone': 1,\n",
      "          'stop': 1,\n",
      "          'nermey': 1,\n",
      "          'solid': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'thrown': 1,\n",
      "          'together': 1,\n",
      "          'charismatic': 1,\n",
      "          'claire': 1,\n",
      "          'danes': 1,\n",
      "          'object': 1,\n",
      "          'affection': 1,\n",
      "          'socalled': 1,\n",
      "          'scenestealer': 1,\n",
      "          'tried': 1,\n",
      "          'nfrom': 1,\n",
      "          'standpoint': 1,\n",
      "          'pretty': 1,\n",
      "          'empty': 1,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'jeb': 1,\n",
      "          'stuart': 1,\n",
      "          'wrote': 1,\n",
      "          'fugitive': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'wants': 1,\n",
      "          'provides': 1,\n",
      "          'great': 1,\n",
      "          'visuals': 1,\n",
      "          'nthe': 1,\n",
      "          'setonatrain': 1,\n",
      "          'climax': 1,\n",
      "          'looks': 1,\n",
      "          'good': 1,\n",
      "          'though': 1,\n",
      "          'action': 1,\n",
      "          'illogical': 1,\n",
      "          'beautiful': 1,\n",
      "          'crisp': 1,\n",
      "          'cinematography': 1,\n",
      "          'captures': 1,\n",
      "          'rockies': 1,\n",
      "          'icy': 1,\n",
      "          'splendor': 1,\n",
      "          'nstill': 1,\n",
      "          'lump': 1,\n",
      "          'coal': 1,\n",
      "          'diamond': 1,\n",
      "          'movies': 1,\n",
      "          'leaving': 1,\n",
      "          'cold': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'julia': 4,\n",
      "          'character': 4,\n",
      "          'nand': 4,\n",
      "          'well': 4,\n",
      "          'film': 4,\n",
      "          'like': 4,\n",
      "          'beyond': 3,\n",
      "          'roberts': 3,\n",
      "          'one': 3,\n",
      "          'funny': 3,\n",
      "          'romantic': 3,\n",
      "          'way': 3,\n",
      "          'plot': 2,\n",
      "          'hollywood': 2,\n",
      "          'pretend': 2,\n",
      "          'ni': 2,\n",
      "          'seen': 2,\n",
      "          'nhow': 2,\n",
      "          'premise': 2,\n",
      "          'doesnt': 2,\n",
      "          'chemistry': 2,\n",
      "          'dog': 2,\n",
      "          'around': 2,\n",
      "          'comedy': 2,\n",
      "          'actor': 2,\n",
      "          'uninteresting': 2,\n",
      "          'leads': 2,\n",
      "          'enough': 2,\n",
      "          'green': 2,\n",
      "          'basically': 2,\n",
      "          'nit': 2,\n",
      "          'got': 2,\n",
      "          'characters': 2,\n",
      "          'everyone': 2,\n",
      "          'story': 2,\n",
      "          'waiting': 2,\n",
      "          'laugh': 2,\n",
      "          'azaria': 2,\n",
      "          'might': 2,\n",
      "          'nbut': 2,\n",
      "          'time': 2,\n",
      "          'na': 2,\n",
      "          'fat': 2,\n",
      "          'suit': 2,\n",
      "          'scene': 2,\n",
      "          'wedding': 2,\n",
      "          '710': 2,\n",
      "          '510': 2,\n",
      "          '410': 2,\n",
      "          'separated': 1,\n",
      "          'glamorous': 1,\n",
      "          'couple': 1,\n",
      "          'must': 1,\n",
      "          'reunite': 1,\n",
      "          'press': 1,\n",
      "          'junket': 1,\n",
      "          'last': 1,\n",
      "          'ever': 1,\n",
      "          'shot': 1,\n",
      "          'together': 1,\n",
      "          'nkewl': 1,\n",
      "          'wish': 1,\n",
      "          'could': 1,\n",
      "          'never': 1,\n",
      "          'ncritique': 1,\n",
      "          'trite': 1,\n",
      "          'unfunny': 1,\n",
      "          'boring': 1,\n",
      "          'waste': 1,\n",
      "          'everyones': 1,\n",
      "          'talent': 1,\n",
      "          'zest': 1,\n",
      "          'bite': 1,\n",
      "          'turn': 1,\n",
      "          'feature': 1,\n",
      "          'real': 1,\n",
      "          'laughs': 1,\n",
      "          'surprises': 1,\n",
      "          'spice': 1,\n",
      "          'used': 1,\n",
      "          'solely': 1,\n",
      "          'puppy': 1,\n",
      "          'puttering': 1,\n",
      "          'background': 1,\n",
      "          'endure': 1,\n",
      "          'complete': 1,\n",
      "          'bitchiness': 1,\n",
      "          'zetajones': 1,\n",
      "          'bit': 1,\n",
      "          'two': 1,\n",
      "          'ideal': 1,\n",
      "          'ingredients': 1,\n",
      "          'also': 1,\n",
      "          'chose': 1,\n",
      "          'john': 1,\n",
      "          'cusack': 1,\n",
      "          'great': 1,\n",
      "          'quirky': 1,\n",
      "          'right': 1,\n",
      "          'play': 1,\n",
      "          'bland': 1,\n",
      "          'unfetching': 1,\n",
      "          'zero': 1,\n",
      "          'either': 1,\n",
      "          'anybody': 1,\n",
      "          'decided': 1,\n",
      "          'project': 1,\n",
      "          'greenlight': 1,\n",
      "          'featuring': 1,\n",
      "          'talents': 1,\n",
      "          'mentioned': 1,\n",
      "          'along': 1,\n",
      "          'billy': 1,\n",
      "          'crystal': 1,\n",
      "          'christopher': 1,\n",
      "          'walker': 1,\n",
      "          'seth': 1,\n",
      "          'stanley': 1,\n",
      "          'tucci': 1,\n",
      "          'nwhat': 1,\n",
      "          'say': 1,\n",
      "          'njust': 1,\n",
      "          'dont': 1,\n",
      "          'words': 1,\n",
      "          'nso': 1,\n",
      "          'worst': 1,\n",
      "          'ive': 1,\n",
      "          'year': 1,\n",
      "          'nno': 1,\n",
      "          'definitely': 1,\n",
      "          'sucks': 1,\n",
      "          'nits': 1,\n",
      "          'record': 1,\n",
      "          'allow': 1,\n",
      "          'state': 1,\n",
      "          'problems': 1,\n",
      "          'starts': 1,\n",
      "          'slow': 1,\n",
      "          'energy': 1,\n",
      "          'engage': 1,\n",
      "          'barely': 1,\n",
      "          'gets': 1,\n",
      "          'somewhat': 1,\n",
      "          'interesting': 1,\n",
      "          'else': 1,\n",
      "          'lame': 1,\n",
      "          'utilizes': 1,\n",
      "          'many': 1,\n",
      "          'flashbacks': 1,\n",
      "          'move': 1,\n",
      "          'forward': 1,\n",
      "          'utterly': 1,\n",
      "          'predictable': 1,\n",
      "          'standard': 1,\n",
      "          'routine': 1,\n",
      "          'seethrough': 1,\n",
      "          'sits': 1,\n",
      "          'screen': 1,\n",
      "          'big': 1,\n",
      "          'ugly': 1,\n",
      "          'find': 1,\n",
      "          'something': 1,\n",
      "          'amusing': 1,\n",
      "          'hank': 1,\n",
      "          'shows': 1,\n",
      "          'aaaaaah': 1,\n",
      "          'films': 1,\n",
      "          'savior': 1,\n",
      "          'mind': 1,\n",
      "          'offended': 1,\n",
      "          'exaggeration': 1,\n",
      "          'stereotype': 1,\n",
      "          'thats': 1,\n",
      "          'another': 1,\n",
      "          'altogether': 1,\n",
      "          'experienced': 1,\n",
      "          'voice': 1,\n",
      "          'upstages': 1,\n",
      "          'main': 1,\n",
      "          'stars': 1,\n",
      "          'summer': 1,\n",
      "          'blockbuster': 1,\n",
      "          'overthetop': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'accent': 1,\n",
      "          'damn': 1,\n",
      "          'dude': 1,\n",
      "          'nfilms': 1,\n",
      "          'trouble': 1,\n",
      "          'nrent': 1,\n",
      "          'video': 1,\n",
      "          'see': 1,\n",
      "          'went': 1,\n",
      "          'wrong': 1,\n",
      "          'nthe': 1,\n",
      "          'references': 1,\n",
      "          'ricky': 1,\n",
      "          'ricardo': 1,\n",
      "          'senor': 1,\n",
      "          'wences': 1,\n",
      "          'huh': 1,\n",
      "          'idioplot': 1,\n",
      "          'points': 1,\n",
      "          'goes': 1,\n",
      "          'roof': 1,\n",
      "          'stretch': 1,\n",
      "          'arms': 1,\n",
      "          'relax': 1,\n",
      "          'believes': 1,\n",
      "          'hes': 1,\n",
      "          'going': 1,\n",
      "          'kill': 1,\n",
      "          'hardyharhar': 1,\n",
      "          'cheap': 1,\n",
      "          'getting': 1,\n",
      "          'audience': 1,\n",
      "          'leave': 1,\n",
      "          'theater': 1,\n",
      "          'laughing': 1,\n",
      "          'bringing': 1,\n",
      "          'back': 1,\n",
      "          'ballsniffing': 1,\n",
      "          'place': 1,\n",
      "          'location': 1,\n",
      "          'end': 1,\n",
      "          'ncould': 1,\n",
      "          'go': 1,\n",
      "          'wont': 1,\n",
      "          'still': 1,\n",
      "          'respect': 1,\n",
      "          'actors': 1,\n",
      "          'actually': 1,\n",
      "          'tuccis': 1,\n",
      "          'antics': 1,\n",
      "          'ironic': 1,\n",
      "          'eh': 1,\n",
      "          'nabout': 1,\n",
      "          'dammit': 1,\n",
      "          'liked': 1,\n",
      "          'behind': 1,\n",
      "          'saw': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'course': 1,\n",
      "          'dud': 1,\n",
      "          'nbtw': 1,\n",
      "          'talk': 1,\n",
      "          'supposed': 1,\n",
      "          'lost': 1,\n",
      "          '60': 1,\n",
      "          'pounds': 1,\n",
      "          'finally': 1,\n",
      "          'came': 1,\n",
      "          'get': 1,\n",
      "          'little': 1,\n",
      "          'excited': 1,\n",
      "          'look': 1,\n",
      "          'looked': 1,\n",
      "          'nugh': 1,\n",
      "          'think': 1,\n",
      "          'im': 1,\n",
      "          'gon': 1,\n",
      "          'start': 1,\n",
      "          'drinking': 1,\n",
      "          'lameass': 1,\n",
      "          'ncmon': 1,\n",
      "          'crud': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'nbeautiful': 1,\n",
      "          '110': 1,\n",
      "          'best': 1,\n",
      "          'friends': 1,\n",
      "          'notting': 1,\n",
      "          'hill': 1,\n",
      "          'pretty': 1,\n",
      "          'woman': 1,\n",
      "          'runaway': 1,\n",
      "          'bride': 1,\n",
      "          'someone': 1,\n",
      "          'planner': 1,\n",
      "          '310': 1,\n",
      "          'harry': 1,\n",
      "          'met': 1,\n",
      "          'sally': 1,\n",
      "          '1010': 1,\n",
      "          'youve': 1,\n",
      "          'mail': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'stone': 5,\n",
      "          'ngloria': 4,\n",
      "          'n': 4,\n",
      "          'almost': 3,\n",
      "          'play': 3,\n",
      "          'got': 3,\n",
      "          'bad': 3,\n",
      "          'kevin': 3,\n",
      "          'talented': 2,\n",
      "          'nas': 2,\n",
      "          'basic': 2,\n",
      "          'instinct': 2,\n",
      "          'roles': 2,\n",
      "          'rest': 2,\n",
      "          'trying': 2,\n",
      "          'one': 2,\n",
      "          'neither': 2,\n",
      "          'less': 2,\n",
      "          'never': 2,\n",
      "          'stones': 2,\n",
      "          'nit': 2,\n",
      "          'film': 2,\n",
      "          'gloria': 2,\n",
      "          'named': 2,\n",
      "          'nicky': 2,\n",
      "          'yellow': 2,\n",
      "          'floppy': 2,\n",
      "          'disk': 2,\n",
      "          'dont': 2,\n",
      "          'like': 2,\n",
      "          'life': 2,\n",
      "          'say': 2,\n",
      "          'nthe': 2,\n",
      "          'movie': 2,\n",
      "          'kid': 2,\n",
      "          'assumed': 2,\n",
      "          'right': 2,\n",
      "          'lot': 2,\n",
      "          'actresses': 1,\n",
      "          'blessed': 1,\n",
      "          'demonstrated': 1,\n",
      "          'wide': 1,\n",
      "          'acting': 1,\n",
      "          'range': 1,\n",
      "          'others': 1,\n",
      "          'gifted': 1,\n",
      "          'limited': 1,\n",
      "          'types': 1,\n",
      "          'parts': 1,\n",
      "          'suitable': 1,\n",
      "          'amply': 1,\n",
      "          'evident': 1,\n",
      "          'sharon': 1,\n",
      "          'sensual': 1,\n",
      "          'great': 1,\n",
      "          'abandon': 1,\n",
      "          'nrejecting': 1,\n",
      "          'natural': 1,\n",
      "          'abilities': 1,\n",
      "          'spent': 1,\n",
      "          'entire': 1,\n",
      "          'career': 1,\n",
      "          'little': 1,\n",
      "          'success': 1,\n",
      "          'type': 1,\n",
      "          'latest': 1,\n",
      "          'disaster': 1,\n",
      "          'nbabe': 1,\n",
      "          'ruth': 1,\n",
      "          'didnt': 1,\n",
      "          'quit': 1,\n",
      "          'baseball': 1,\n",
      "          'season': 1,\n",
      "          'football': 1,\n",
      "          'quixotic': 1,\n",
      "          'quest': 1,\n",
      "          'prove': 1,\n",
      "          'athletic': 1,\n",
      "          'dexterity': 1,\n",
      "          'reject': 1,\n",
      "          'best': 1,\n",
      "          'njaneane': 1,\n",
      "          'garofalo': 1,\n",
      "          'example': 1,\n",
      "          'wonderful': 1,\n",
      "          'actress': 1,\n",
      "          'could': 1,\n",
      "          'pulled': 1,\n",
      "          'part': 1,\n",
      "          'couldnt': 1,\n",
      "          'garofalos': 1,\n",
      "          'comedic': 1,\n",
      "          'directed': 1,\n",
      "          'respected': 1,\n",
      "          'director': 1,\n",
      "          'sidney': 1,\n",
      "          'lumet': 1,\n",
      "          'adapted': 1,\n",
      "          'steve': 1,\n",
      "          'antin': 1,\n",
      "          '1980': 1,\n",
      "          'screenplay': 1,\n",
      "          'john': 1,\n",
      "          'cassavetes': 1,\n",
      "          'screened': 1,\n",
      "          'advance': 1,\n",
      "          'critics': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'always': 1,\n",
      "          'sign': 1,\n",
      "          'studio': 1,\n",
      "          'isnt': 1,\n",
      "          'behind': 1,\n",
      "          'picture': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'nearly': 1,\n",
      "          'empty': 1,\n",
      "          'audience': 1,\n",
      "          'opened': 1,\n",
      "          'clear': 1,\n",
      "          'held': 1,\n",
      "          'press': 1,\n",
      "          'endured': 1,\n",
      "          'enjoyed': 1,\n",
      "          'story': 1,\n",
      "          'opens': 1,\n",
      "          'angry': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          '3': 1,\n",
      "          'years': 1,\n",
      "          'confinement': 1,\n",
      "          'nshes': 1,\n",
      "          'attitude': 1,\n",
      "          'big': 1,\n",
      "          'mouth': 1,\n",
      "          'nshe': 1,\n",
      "          'also': 1,\n",
      "          'case': 1,\n",
      "          'wavering': 1,\n",
      "          'overblown': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'accents': 1,\n",
      "          'disease': 1,\n",
      "          'suffered': 1,\n",
      "          'much': 1,\n",
      "          'cast': 1,\n",
      "          'nan': 1,\n",
      "          'annoying': 1,\n",
      "          'child': 1,\n",
      "          'actor': 1,\n",
      "          'jeanluke': 1,\n",
      "          'figueroa': 1,\n",
      "          'plays': 1,\n",
      "          'soontobe': 1,\n",
      "          'orphan': 1,\n",
      "          'njust': 1,\n",
      "          'whole': 1,\n",
      "          'family': 1,\n",
      "          'gunned': 1,\n",
      "          'hoods': 1,\n",
      "          'working': 1,\n",
      "          'glorias': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'jeremy': 1,\n",
      "          'northam': 1,\n",
      "          'nickys': 1,\n",
      "          'dad': 1,\n",
      "          'gives': 1,\n",
      "          'banana': 1,\n",
      "          'secrets': 1,\n",
      "          'kevins': 1,\n",
      "          'operation': 1,\n",
      "          'offers': 1,\n",
      "          'piece': 1,\n",
      "          'fatherly': 1,\n",
      "          'advice': 1,\n",
      "          'man': 1,\n",
      "          'father': 1,\n",
      "          'lectures': 1,\n",
      "          'sternly': 1,\n",
      "          'trust': 1,\n",
      "          'nobody': 1,\n",
      "          'nnot': 1,\n",
      "          'broads': 1,\n",
      "          'nnobody': 1,\n",
      "          'nmost': 1,\n",
      "          'films': 1,\n",
      "          'leaden': 1,\n",
      "          'dialog': 1,\n",
      "          'delivered': 1,\n",
      "          'emotive': 1,\n",
      "          'power': 1,\n",
      "          'automated': 1,\n",
      "          'time': 1,\n",
      "          'temperature': 1,\n",
      "          'announcements': 1,\n",
      "          'nadd': 1,\n",
      "          'movies': 1,\n",
      "          'nonexistent': 1,\n",
      "          'background': 1,\n",
      "          'noise': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'slow': 1,\n",
      "          'pacing': 1,\n",
      "          'hear': 1,\n",
      "          'sounds': 1,\n",
      "          'lines': 1,\n",
      "          'falling': 1,\n",
      "          'ground': 1,\n",
      "          'nlumet': 1,\n",
      "          'places': 1,\n",
      "          'actors': 1,\n",
      "          'frames': 1,\n",
      "          'fruit': 1,\n",
      "          'still': 1,\n",
      "          'painting': 1,\n",
      "          'nthey': 1,\n",
      "          'stand': 1,\n",
      "          'awkwardly': 1,\n",
      "          'mouthing': 1,\n",
      "          'stiff': 1,\n",
      "          'sentences': 1,\n",
      "          'pass': 1,\n",
      "          'discourse': 1,\n",
      "          'youre': 1,\n",
      "          'baby': 1,\n",
      "          'coos': 1,\n",
      "          'demandingly': 1,\n",
      "          'im': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'pouts': 1,\n",
      "          'back': 1,\n",
      "          'plethora': 1,\n",
      "          'logical': 1,\n",
      "          'flaws': 1,\n",
      "          'implausibilites': 1,\n",
      "          'rarely': 1,\n",
      "          'seems': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'worried': 1,\n",
      "          'scared': 1,\n",
      "          'matter': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'guns': 1,\n",
      "          'kill': 1,\n",
      "          'nand': 1,\n",
      "          'key': 1,\n",
      "          'scene': 1,\n",
      "          'holds': 1,\n",
      "          'without': 1,\n",
      "          'checking': 1,\n",
      "          'copied': 1,\n",
      "          'keeps': 1,\n",
      "          'saying': 1,\n",
      "          'hates': 1,\n",
      "          'kids': 1,\n",
      "          'takes': 1,\n",
      "          'wing': 1,\n",
      "          'protects': 1,\n",
      "          'guys': 1,\n",
      "          'nthink': 1,\n",
      "          'maternal': 1,\n",
      "          'instincts': 1,\n",
      "          'show': 1,\n",
      "          'finally': 1,\n",
      "          'predictably': 1,\n",
      "          'ends': 1,\n",
      "          'nif': 1,\n",
      "          'know': 1,\n",
      "          'answer': 1,\n",
      "          'may': 1,\n",
      "          'viewer': 1,\n",
      "          'nyou': 1,\n",
      "          'keep': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'nwhen': 1,\n",
      "          'explaining': 1,\n",
      "          '7yearold': 1,\n",
      "          'says': 1,\n",
      "          'utter': 1,\n",
      "          'seriousness': 1,\n",
      "          'love': 1,\n",
      "          'making': 1,\n",
      "          'make': 1,\n",
      "          'boozing': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '48': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'profanity': 1,\n",
      "          'violence': 1,\n",
      "          'brief': 1,\n",
      "          'male': 1,\n",
      "          'nudity': 1,\n",
      "          'would': 1,\n",
      "          'acceptable': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mars': 6,\n",
      "          'ghosts': 2,\n",
      "          'carpenter': 2,\n",
      "          'thats': 2,\n",
      "          'released': 2,\n",
      "          'living': 2,\n",
      "          'shining': 2,\n",
      "          'canyon': 2,\n",
      "          'ice': 2,\n",
      "          'cube': 2,\n",
      "          'nbut': 2,\n",
      "          'miners': 2,\n",
      "          'red': 2,\n",
      "          'planet': 2,\n",
      "          '1': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'sony': 1,\n",
      "          'pictures': 1,\n",
      "          'entertainment': 1,\n",
      "          'nhorror': 1,\n",
      "          'auteur': 1,\n",
      "          'john': 1,\n",
      "          'halloween': 1,\n",
      "          'vampires': 1,\n",
      "          'strikes': 1,\n",
      "          'scifi': 1,\n",
      "          'ecofable': 1,\n",
      "          'bad': 1,\n",
      "          'boggles': 1,\n",
      "          'mind': 1,\n",
      "          'imagine': 1,\n",
      "          'project': 1,\n",
      "          'ever': 1,\n",
      "          'got': 1,\n",
      "          'greenlit': 1,\n",
      "          'nthe': 1,\n",
      "          'script': 1,\n",
      "          'larry': 1,\n",
      "          'sulkis': 1,\n",
      "          'appears': 1,\n",
      "          'lifted': 1,\n",
      "          'directly': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'pitch': 1,\n",
      "          'black': 1,\n",
      "          'involving': 1,\n",
      "          'violent': 1,\n",
      "          'prisoner': 1,\n",
      "          'must': 1,\n",
      "          'bondage': 1,\n",
      "          'help': 1,\n",
      "          'small': 1,\n",
      "          'band': 1,\n",
      "          'humans': 1,\n",
      "          'protect': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'marauding': 1,\n",
      "          'aliens': 1,\n",
      "          'nin': 1,\n",
      "          'year': 1,\n",
      "          '2176': 1,\n",
      "          '640': 1,\n",
      "          '000': 1,\n",
      "          'earthlings': 1,\n",
      "          'matriarchal': 1,\n",
      "          'society': 1,\n",
      "          'led': 1,\n",
      "          'commander': 1,\n",
      "          'played': 1,\n",
      "          'pam': 1,\n",
      "          'grier': 1,\n",
      "          'ngrier': 1,\n",
      "          'pillpoppin': 1,\n",
      "          'natasha': 1,\n",
      "          'henstridge': 1,\n",
      "          'rookie': 1,\n",
      "          'police': 1,\n",
      "          'officers': 1,\n",
      "          'clea': 1,\n",
      "          'duvall': 1,\n",
      "          'jason': 1,\n",
      "          'statham': 1,\n",
      "          'travel': 1,\n",
      "          'remote': 1,\n",
      "          'mining': 1,\n",
      "          'town': 1,\n",
      "          'fetch': 1,\n",
      "          'desolation': 1,\n",
      "          'williams': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'chryse': 1,\n",
      "          'city': 1,\n",
      "          'stand': 1,\n",
      "          'trial': 1,\n",
      "          'murder': 1,\n",
      "          'theyre': 1,\n",
      "          'besieged': 1,\n",
      "          'demented': 1,\n",
      "          'zombielike': 1,\n",
      "          'bodysnatching': 1,\n",
      "          'readily': 1,\n",
      "          'free': 1,\n",
      "          'scowling': 1,\n",
      "          'since': 1,\n",
      "          'need': 1,\n",
      "          'protection': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'cloud': 1,\n",
      "          'cave': 1,\n",
      "          'soon': 1,\n",
      "          'went': 1,\n",
      "          'bonkers': 1,\n",
      "          'longdormant': 1,\n",
      "          'remnants': 1,\n",
      "          'ancient': 1,\n",
      "          'martian': 1,\n",
      "          'civilization': 1,\n",
      "          'took': 1,\n",
      "          'minds': 1,\n",
      "          'bodies': 1,\n",
      "          'lopping': 1,\n",
      "          'heads': 1,\n",
      "          'vengeance': 1,\n",
      "          'anything': 1,\n",
      "          'tries': 1,\n",
      "          'lay': 1,\n",
      "          'claim': 1,\n",
      "          'according': 1,\n",
      "          'scientist': 1,\n",
      "          'joanna': 1,\n",
      "          'cassidy': 1,\n",
      "          'ncarpenter': 1,\n",
      "          'uses': 1,\n",
      "          'many': 1,\n",
      "          'flashbacks': 1,\n",
      "          'tell': 1,\n",
      "          'night': 1,\n",
      "          'dead': 1,\n",
      "          'like': 1,\n",
      "          'story': 1,\n",
      "          'idiotic': 1,\n",
      "          'plot': 1,\n",
      "          'gets': 1,\n",
      "          'incomprehensibly': 1,\n",
      "          'confusing': 1,\n",
      "          'easily': 1,\n",
      "          'predict': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'killed': 1,\n",
      "          'along': 1,\n",
      "          'order': 1,\n",
      "          'elimination': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '10': 1,\n",
      "          'thuds': 1,\n",
      "          'laborious': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'nperhaps': 1,\n",
      "          'indeed': 1,\n",
      "          'curse': 1,\n",
      "          'films': 1,\n",
      "          'recall': 1,\n",
      "          'two': 1,\n",
      "          'duds': 1,\n",
      "          'mission': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'jerry': 5,\n",
      "          'springer': 5,\n",
      "          'show': 3,\n",
      "          'would': 3,\n",
      "          'real': 3,\n",
      "          'ni': 3,\n",
      "          'complete': 3,\n",
      "          'us': 3,\n",
      "          'plot': 2,\n",
      "          'based': 2,\n",
      "          'tv': 2,\n",
      "          'movie': 2,\n",
      "          'people': 2,\n",
      "          'day': 2,\n",
      "          'despite': 2,\n",
      "          'laughs': 2,\n",
      "          'drama': 2,\n",
      "          'onedimensional': 2,\n",
      "          'boring': 2,\n",
      "          'featuring': 2,\n",
      "          'much': 2,\n",
      "          'burn': 2,\n",
      "          'wildly': 1,\n",
      "          'popular': 1,\n",
      "          'follows': 1,\n",
      "          'lives': 1,\n",
      "          'two': 1,\n",
      "          'groups': 1,\n",
      "          'make': 1,\n",
      "          'bizarre': 1,\n",
      "          'appearances': 1,\n",
      "          'infamous': 1,\n",
      "          'program': 1,\n",
      "          'none': 1,\n",
      "          'posse': 1,\n",
      "          'comes': 1,\n",
      "          'trailer': 1,\n",
      "          'parks': 1,\n",
      "          'featured': 1,\n",
      "          'slept': 1,\n",
      "          'stepfather': 1,\n",
      "          'segment': 1,\n",
      "          'flygirl': 1,\n",
      "          'whose': 1,\n",
      "          'girlfriends': 1,\n",
      "          'keep': 1,\n",
      "          'sleeping': 1,\n",
      "          'undevoted': 1,\n",
      "          'dog': 1,\n",
      "          'boyfriend': 1,\n",
      "          'ncritique': 1,\n",
      "          'truth': 1,\n",
      "          'didnt': 1,\n",
      "          'job': 1,\n",
      "          'probably': 1,\n",
      "          'watch': 1,\n",
      "          'every': 1,\n",
      "          'find': 1,\n",
      "          'quite': 1,\n",
      "          'entertaining': 1,\n",
      "          'lack': 1,\n",
      "          'redeeming': 1,\n",
      "          'value': 1,\n",
      "          'nhaving': 1,\n",
      "          'said': 1,\n",
      "          'outrageous': 1,\n",
      "          'funny': 1,\n",
      "          'always': 1,\n",
      "          'filled': 1,\n",
      "          'goofy': 1,\n",
      "          'surprises': 1,\n",
      "          'opposed': 1,\n",
      "          'features': 1,\n",
      "          'comedy': 1,\n",
      "          'uninteresting': 1,\n",
      "          'completely': 1,\n",
      "          'unbelievable': 1,\n",
      "          'stereotypes': 1,\n",
      "          'contrived': 1,\n",
      "          'bores': 1,\n",
      "          'stupid': 1,\n",
      "          'way': 1,\n",
      "          'never': 1,\n",
      "          'thought': 1,\n",
      "          'utter': 1,\n",
      "          'word': 1,\n",
      "          'sentence': 1,\n",
      "          'absolute': 1,\n",
      "          'yawnfest': 1,\n",
      "          'offering': 1,\n",
      "          'various': 1,\n",
      "          'scenes': 1,\n",
      "          'simulated': 1,\n",
      "          'blowjobs': 1,\n",
      "          'lesbians': 1,\n",
      "          'ta': 1,\n",
      "          'violence': 1,\n",
      "          'wouldve': 1,\n",
      "          'guessed': 1,\n",
      "          'wish': 1,\n",
      "          'either': 1,\n",
      "          'made': 1,\n",
      "          'funnier': 1,\n",
      "          'b': 1,\n",
      "          'turned': 1,\n",
      "          'given': 1,\n",
      "          'perspective': 1,\n",
      "          'like': 1,\n",
      "          'actually': 1,\n",
      "          'put': 1,\n",
      "          'public': 1,\n",
      "          'forums': 1,\n",
      "          'embarrassment': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'though': 1,\n",
      "          'screenwriter': 1,\n",
      "          'jon': 1,\n",
      "          'bernstein': 1,\n",
      "          'spent': 1,\n",
      "          'drunken': 1,\n",
      "          'weekend': 1,\n",
      "          'watching': 1,\n",
      "          'reruns': 1,\n",
      "          'script': 1,\n",
      "          'leaving': 1,\n",
      "          'characters': 1,\n",
      "          'fun': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'used': 1,\n",
      "          'mayor': 1,\n",
      "          'cincinnati': 1,\n",
      "          'ohio': 1,\n",
      "          'nfor': 1,\n",
      "          '1999': 1,\n",
      "          'razzie': 1,\n",
      "          'award': 1,\n",
      "          'worst': 1,\n",
      "          'new': 1,\n",
      "          'star': 1,\n",
      "          'tied': 1,\n",
      "          'joe': 1,\n",
      "          'esterhas': 1,\n",
      "          'alan': 1,\n",
      "          'smithee': 1,\n",
      "          'hollywood': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'never': 6,\n",
      "          'hell': 4,\n",
      "          'earth': 4,\n",
      "          'ive': 4,\n",
      "          'war': 3,\n",
      "          'really': 3,\n",
      "          'cruel': 3,\n",
      "          'intentions': 3,\n",
      "          'truly': 2,\n",
      "          'meant': 2,\n",
      "          'perfect': 2,\n",
      "          'world': 2,\n",
      "          'would': 2,\n",
      "          'nthe': 2,\n",
      "          'cast': 2,\n",
      "          'jail': 2,\n",
      "          'crimes': 2,\n",
      "          'probably': 2,\n",
      "          'pouring': 2,\n",
      "          'salt': 2,\n",
      "          'dont': 2,\n",
      "          'opening': 2,\n",
      "          'scene': 2,\n",
      "          'understood': 1,\n",
      "          'clich': 1,\n",
      "          'recently': 1,\n",
      "          'nive': 1,\n",
      "          'experienced': 1,\n",
      "          'anything': 1,\n",
      "          'life': 1,\n",
      "          'terrifying': 1,\n",
      "          'horrible': 1,\n",
      "          'monstrously': 1,\n",
      "          'deplorable': 1,\n",
      "          'justified': 1,\n",
      "          'termed': 1,\n",
      "          'nafter': 1,\n",
      "          'victim': 1,\n",
      "          'violent': 1,\n",
      "          'crime': 1,\n",
      "          'broken': 1,\n",
      "          'hearted': 1,\n",
      "          'audited': 1,\n",
      "          'frame': 1,\n",
      "          'reference': 1,\n",
      "          'people': 1,\n",
      "          'said': 1,\n",
      "          'something': 1,\n",
      "          'nthen': 1,\n",
      "          'saw': 1,\n",
      "          'nin': 1,\n",
      "          'charge': 1,\n",
      "          'movie': 1,\n",
      "          'studios': 1,\n",
      "          'first': 1,\n",
      "          'thing': 1,\n",
      "          'id': 1,\n",
      "          'take': 1,\n",
      "          'every': 1,\n",
      "          'hollywood': 1,\n",
      "          'producer': 1,\n",
      "          'thinks': 1,\n",
      "          'setting': 1,\n",
      "          'story': 1,\n",
      "          'contemporary': 1,\n",
      "          'america': 1,\n",
      "          '20something': 1,\n",
      "          'playing': 1,\n",
      "          'teenagers': 1,\n",
      "          'featuring': 1,\n",
      "          'soundtrack': 1,\n",
      "          'ripped': 1,\n",
      "          'directly': 1,\n",
      "          'mtv': 1,\n",
      "          'throw': 1,\n",
      "          'nbut': 1,\n",
      "          'wouldnt': 1,\n",
      "          'average': 1,\n",
      "          'even': 1,\n",
      "          'maximum': 1,\n",
      "          'security': 1,\n",
      "          'installation': 1,\n",
      "          'nid': 1,\n",
      "          'producers': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'involved': 1,\n",
      "          'production': 1,\n",
      "          'films': 1,\n",
      "          'put': 1,\n",
      "          'front': 1,\n",
      "          'tribunal': 1,\n",
      "          'forced': 1,\n",
      "          'beg': 1,\n",
      "          'mercy': 1,\n",
      "          'humanity': 1,\n",
      "          'nnow': 1,\n",
      "          'youre': 1,\n",
      "          'thinking': 1,\n",
      "          'bad': 1,\n",
      "          'answer': 1,\n",
      "          'nits': 1,\n",
      "          'actually': 1,\n",
      "          'much': 1,\n",
      "          'worse': 1,\n",
      "          'nwatching': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'atrocity': 1,\n",
      "          'try': 1,\n",
      "          'act': 1,\n",
      "          'way': 1,\n",
      "          'roger': 1,\n",
      "          'kumbles': 1,\n",
      "          'awfully': 1,\n",
      "          'written': 1,\n",
      "          'script': 1,\n",
      "          'lot': 1,\n",
      "          'like': 1,\n",
      "          'stabbing': 1,\n",
      "          'arm': 1,\n",
      "          'chainsaw': 1,\n",
      "          'open': 1,\n",
      "          'wound': 1,\n",
      "          'nand': 1,\n",
      "          'acid': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'kumble': 1,\n",
      "          'trying': 1,\n",
      "          'evoke': 1,\n",
      "          'comedy': 1,\n",
      "          'tragedy': 1,\n",
      "          'marci': 1,\n",
      "          'greenbaum': 1,\n",
      "          'tara': 1,\n",
      "          'reid': 1,\n",
      "          'whines': 1,\n",
      "          'nude': 1,\n",
      "          'photos': 1,\n",
      "          'posted': 1,\n",
      "          'internet': 1,\n",
      "          'emotion': 1,\n",
      "          'felt': 1,\n",
      "          'sheer': 1,\n",
      "          'boredom': 1,\n",
      "          'nfrom': 1,\n",
      "          'boring': 1,\n",
      "          'actor': 1,\n",
      "          'ryan': 1,\n",
      "          'phillippe': 1,\n",
      "          'tries': 1,\n",
      "          'seduce': 1,\n",
      "          'tv': 1,\n",
      "          'actress': 1,\n",
      "          'swoosie': 1,\n",
      "          'kurtz': 1,\n",
      "          'conclusion': 1,\n",
      "          'remember': 1,\n",
      "          'practically': 1,\n",
      "          'fallen': 1,\n",
      "          'asleep': 1,\n",
      "          'right': 1,\n",
      "          'tax': 1,\n",
      "          'audits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jackal': 15,\n",
      "          'film': 11,\n",
      "          'nthe': 9,\n",
      "          'like': 8,\n",
      "          'one': 7,\n",
      "          'character': 6,\n",
      "          'poitier': 6,\n",
      "          'couple': 6,\n",
      "          'trying': 5,\n",
      "          'suspense': 4,\n",
      "          'played': 4,\n",
      "          'sidney': 4,\n",
      "          'hes': 4,\n",
      "          'fun': 4,\n",
      "          'nand': 4,\n",
      "          'nis': 4,\n",
      "          'man': 4,\n",
      "          'even': 4,\n",
      "          'scene': 4,\n",
      "          'completely': 4,\n",
      "          'way': 4,\n",
      "          'big': 3,\n",
      "          'actors': 3,\n",
      "          'willis': 3,\n",
      "          'saint': 3,\n",
      "          'almost': 3,\n",
      "          'n': 3,\n",
      "          'bad': 3,\n",
      "          'suave': 3,\n",
      "          'hitman': 3,\n",
      "          'russian': 3,\n",
      "          'bit': 3,\n",
      "          'working': 3,\n",
      "          'declan': 3,\n",
      "          'never': 3,\n",
      "          'plot': 3,\n",
      "          'much': 3,\n",
      "          'little': 3,\n",
      "          'may': 3,\n",
      "          'time': 3,\n",
      "          'could': 3,\n",
      "          'good': 3,\n",
      "          'kinda': 3,\n",
      "          'around': 2,\n",
      "          'people': 2,\n",
      "          'sequence': 2,\n",
      "          'audience': 2,\n",
      "          'members': 2,\n",
      "          'hope': 2,\n",
      "          'killed': 2,\n",
      "          'didnt': 2,\n",
      "          'care': 2,\n",
      "          'characters': 2,\n",
      "          'really': 2,\n",
      "          'know': 2,\n",
      "          'nevery': 2,\n",
      "          'released': 2,\n",
      "          'cheap': 2,\n",
      "          'international': 2,\n",
      "          'featuring': 2,\n",
      "          'bruce': 2,\n",
      "          'forget': 2,\n",
      "          'cold': 2,\n",
      "          'several': 2,\n",
      "          '97': 2,\n",
      "          'featured': 2,\n",
      "          'amoral': 2,\n",
      "          'villain': 2,\n",
      "          'loosely': 2,\n",
      "          'apparently': 2,\n",
      "          'called': 2,\n",
      "          'assasinate': 2,\n",
      "          'nwell': 2,\n",
      "          'person': 2,\n",
      "          'get': 2,\n",
      "          'look': 2,\n",
      "          'agent': 2,\n",
      "          'gere': 2,\n",
      "          'tight': 2,\n",
      "          'worst': 2,\n",
      "          'whos': 2,\n",
      "          'two': 2,\n",
      "          'agents': 2,\n",
      "          'help': 2,\n",
      "          'nthere': 2,\n",
      "          'problems': 2,\n",
      "          'pretty': 2,\n",
      "          'moments': 2,\n",
      "          'every': 2,\n",
      "          'nasty': 2,\n",
      "          'money': 2,\n",
      "          'notably': 2,\n",
      "          'given': 2,\n",
      "          'worse': 2,\n",
      "          'times': 2,\n",
      "          'likable': 2,\n",
      "          'pasted': 2,\n",
      "          'together': 2,\n",
      "          'someone': 2,\n",
      "          'quickly': 2,\n",
      "          'makes': 2,\n",
      "          'things': 2,\n",
      "          'filmmakers': 2,\n",
      "          'toss': 2,\n",
      "          'touched': 2,\n",
      "          'anything': 2,\n",
      "          'kind': 2,\n",
      "          'gun': 2,\n",
      "          'go': 2,\n",
      "          'us': 2,\n",
      "          'made': 2,\n",
      "          'make': 2,\n",
      "          'hour': 1,\n",
      "          'wandered': 1,\n",
      "          'shot': 1,\n",
      "          'theatre': 1,\n",
      "          'saw': 1,\n",
      "          'shouted': 1,\n",
      "          'gets': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'hit': 1,\n",
      "          'nwhen': 1,\n",
      "          'sole': 1,\n",
      "          'reason': 1,\n",
      "          'somethings': 1,\n",
      "          'rotten': 1,\n",
      "          'state': 1,\n",
      "          'denmark': 1,\n",
      "          'year': 1,\n",
      "          'films': 1,\n",
      "          'nyou': 1,\n",
      "          'action': 1,\n",
      "          'packed': 1,\n",
      "          'espionnage': 1,\n",
      "          'semipromising': 1,\n",
      "          'premise': 1,\n",
      "          'bigname': 1,\n",
      "          'usually': 1,\n",
      "          'hopes': 1,\n",
      "          'war': 1,\n",
      "          'ended': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nthis': 1,\n",
      "          'third': 1,\n",
      "          'following': 1,\n",
      "          'lackluster': 1,\n",
      "          'costume': 1,\n",
      "          'changing': 1,\n",
      "          'bond': 1,\n",
      "          'wannabe': 1,\n",
      "          'surprisingly': 1,\n",
      "          'peacemaker': 1,\n",
      "          'clooney': 1,\n",
      "          'kidman': 1,\n",
      "          'stop': 1,\n",
      "          'untraceable': 1,\n",
      "          'tries': 1,\n",
      "          'mix': 1,\n",
      "          'elements': 1,\n",
      "          'thought': 1,\n",
      "          'based': 1,\n",
      "          '1973': 1,\n",
      "          'fred': 1,\n",
      "          'zimmerman': 1,\n",
      "          'classic': 1,\n",
      "          'ive': 1,\n",
      "          'yet': 1,\n",
      "          'see': 1,\n",
      "          'day': 1,\n",
      "          'edward': 1,\n",
      "          'fox': 1,\n",
      "          'charles': 1,\n",
      "          'degaule': 1,\n",
      "          'welcome': 1,\n",
      "          '90s': 1,\n",
      "          'sorta': 1,\n",
      "          'also': 1,\n",
      "          'kill': 1,\n",
      "          'head': 1,\n",
      "          'fbi': 1,\n",
      "          'nafter': 1,\n",
      "          'hired': 1,\n",
      "          'mob': 1,\n",
      "          'lord': 1,\n",
      "          'vengeance': 1,\n",
      "          'murder': 1,\n",
      "          'brother': 1,\n",
      "          'opening': 1,\n",
      "          'scenes': 1,\n",
      "          'romps': 1,\n",
      "          'northen': 1,\n",
      "          'hemisphere': 1,\n",
      "          'helsinki': 1,\n",
      "          'virginia': 1,\n",
      "          'setting': 1,\n",
      "          'elaborate': 1,\n",
      "          'scheme': 1,\n",
      "          'wherein': 1,\n",
      "          'hell': 1,\n",
      "          'able': 1,\n",
      "          'still': 1,\n",
      "          'away': 1,\n",
      "          'live': 1,\n",
      "          'seclusion': 1,\n",
      "          'changes': 1,\n",
      "          'elude': 1,\n",
      "          'case': 1,\n",
      "          'cater': 1,\n",
      "          'preston': 1,\n",
      "          'yes': 1,\n",
      "          'valentina': 1,\n",
      "          'koslova': 1,\n",
      "          'diane': 1,\n",
      "          'venora': 1,\n",
      "          'lady': 1,\n",
      "          'capulet': 1,\n",
      "          'romeo': 1,\n",
      "          'juliet': 1,\n",
      "          'gives': 1,\n",
      "          'early': 1,\n",
      "          'meets': 1,\n",
      "          'exira': 1,\n",
      "          'mulqueen': 1,\n",
      "          'richard': 1,\n",
      "          'putting': 1,\n",
      "          'competition': 1,\n",
      "          'brad': 1,\n",
      "          'pitt': 1,\n",
      "          'fake': 1,\n",
      "          'irish': 1,\n",
      "          'accent': 1,\n",
      "          'massachusetts': 1,\n",
      "          'jail': 1,\n",
      "          'seen': 1,\n",
      "          'eluding': 1,\n",
      "          'law': 1,\n",
      "          'forever': 1,\n",
      "          'nsoon': 1,\n",
      "          'untrusting': 1,\n",
      "          'catch': 1,\n",
      "          'numerous': 1,\n",
      "          'biggest': 1,\n",
      "          'impossible': 1,\n",
      "          'put': 1,\n",
      "          'finger': 1,\n",
      "          'supposed': 1,\n",
      "          'thriller': 1,\n",
      "          'save': 1,\n",
      "          'achieves': 1,\n",
      "          'sense': 1,\n",
      "          'intrigue': 1,\n",
      "          'nsure': 1,\n",
      "          'assasination': 1,\n",
      "          'attempt': 1,\n",
      "          'cool': 1,\n",
      "          'looking': 1,\n",
      "          'slightly': 1,\n",
      "          'tense': 1,\n",
      "          'short': 1,\n",
      "          'dull': 1,\n",
      "          'register': 1,\n",
      "          'picks': 1,\n",
      "          'enough': 1,\n",
      "          'become': 1,\n",
      "          'thrilling': 1,\n",
      "          'experience': 1,\n",
      "          'entertaining': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'designed': 1,\n",
      "          'complex': 1,\n",
      "          'falls': 1,\n",
      "          'many': 1,\n",
      "          'holes': 1,\n",
      "          'unbelievable': 1,\n",
      "          'circumstances': 1,\n",
      "          'script': 1,\n",
      "          'complete': 1,\n",
      "          'mess': 1,\n",
      "          'mostly': 1,\n",
      "          'cant': 1,\n",
      "          'decide': 1,\n",
      "          'wants': 1,\n",
      "          'focus': 1,\n",
      "          'find': 1,\n",
      "          'redemption': 1,\n",
      "          'catching': 1,\n",
      "          'killer': 1,\n",
      "          'everything': 1,\n",
      "          'combination': 1,\n",
      "          'aims': 1,\n",
      "          'latter': 1,\n",
      "          'focuses': 1,\n",
      "          'either': 1,\n",
      "          'connection': 1,\n",
      "          'feels': 1,\n",
      "          'edited': 1,\n",
      "          'turns': 1,\n",
      "          'notices': 1,\n",
      "          'wonder': 1,\n",
      "          'recognized': 1,\n",
      "          'fast': 1,\n",
      "          'part': 1,\n",
      "          'past': 1,\n",
      "          'try': 1,\n",
      "          'give': 1,\n",
      "          'relationship': 1,\n",
      "          'old': 1,\n",
      "          'girlfriend': 1,\n",
      "          'isabella': 1,\n",
      "          'mathilda': 1,\n",
      "          'screen': 1,\n",
      "          'exists': 1,\n",
      "          'pops': 1,\n",
      "          'supporting': 1,\n",
      "          'nsidney': 1,\n",
      "          'unplayable': 1,\n",
      "          'role': 1,\n",
      "          'stern': 1,\n",
      "          'sometimes': 1,\n",
      "          'giving': 1,\n",
      "          'nwhat': 1,\n",
      "          'nhes': 1,\n",
      "          'best': 1,\n",
      "          'living': 1,\n",
      "          'ndoes': 1,\n",
      "          'need': 1,\n",
      "          'waste': 1,\n",
      "          'drivel': 1,\n",
      "          'ndiane': 1,\n",
      "          'venoras': 1,\n",
      "          'cigarette': 1,\n",
      "          'perpetually': 1,\n",
      "          'mouth': 1,\n",
      "          'plastered': 1,\n",
      "          'expressionless': 1,\n",
      "          'facade': 1,\n",
      "          'nits': 1,\n",
      "          'anyones': 1,\n",
      "          'nothing': 1,\n",
      "          'joke': 1,\n",
      "          'feeling': 1,\n",
      "          'postproduction': 1,\n",
      "          'dropped': 1,\n",
      "          'floor': 1,\n",
      "          'situation': 1,\n",
      "          'explanation': 1,\n",
      "          'wanted': 1,\n",
      "          'thrill': 1,\n",
      "          'ntake': 1,\n",
      "          'followed': 1,\n",
      "          'parking': 1,\n",
      "          'garage': 1,\n",
      "          'sprays': 1,\n",
      "          'car': 1,\n",
      "          'another': 1,\n",
      "          'color': 1,\n",
      "          'adds': 1,\n",
      "          'solvent': 1,\n",
      "          'kills': 1,\n",
      "          'ndoesnt': 1,\n",
      "          'killing': 1,\n",
      "          'attract': 1,\n",
      "          'attention': 1,\n",
      "          'distract': 1,\n",
      "          'think': 1,\n",
      "          'dying': 1,\n",
      "          'hair': 1,\n",
      "          'bottle': 1,\n",
      "          'blond': 1,\n",
      "          'fit': 1,\n",
      "          'public': 1,\n",
      "          'place': 1,\n",
      "          'ngeez': 1,\n",
      "          'ncouple': 1,\n",
      "          'ni': 1,\n",
      "          'williss': 1,\n",
      "          'icy': 1,\n",
      "          'expressions': 1,\n",
      "          'real': 1,\n",
      "          'looks': 1,\n",
      "          'worth': 1,\n",
      "          'chuckle': 1,\n",
      "          'nrichard': 1,\n",
      "          'making': 1,\n",
      "          'possibly': 1,\n",
      "          'sequences': 1,\n",
      "          'kicky': 1,\n",
      "          'proposterous': 1,\n",
      "          'inane': 1,\n",
      "          'tests': 1,\n",
      "          'new': 1,\n",
      "          'annoying': 1,\n",
      "          'builder': 1,\n",
      "          'jack': 1,\n",
      "          'black': 1,\n",
      "          'seduces': 1,\n",
      "          'gay': 1,\n",
      "          'washington': 1,\n",
      "          'share': 1,\n",
      "          'jokes': 1,\n",
      "          'particular': 1,\n",
      "          'kiss': 1,\n",
      "          'nbut': 1,\n",
      "          'none': 1,\n",
      "          'elevate': 1,\n",
      "          'higher': 1,\n",
      "          'theyre': 1,\n",
      "          'distractions': 1,\n",
      "          'along': 1,\n",
      "          'amuse': 1,\n",
      "          'mildly': 1,\n",
      "          'back': 1,\n",
      "          'world': 1,\n",
      "          'dullness': 1,\n",
      "          'stupidity': 1,\n",
      "          'ndirector': 1,\n",
      "          'michael': 1,\n",
      "          'catonjones': 1,\n",
      "          'directed': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'rob': 1,\n",
      "          'roy': 1,\n",
      "          'months': 1,\n",
      "          'unentertaining': 1,\n",
      "          'unintriguing': 1,\n",
      "          'nevertheless': 1,\n",
      "          'hey': 1,\n",
      "          'trailers': 1,\n",
      "          'retroclancy': 1,\n",
      "          'right': 1,\n",
      "          'clear': 1,\n",
      "          'present': 1,\n",
      "          'danger': 1,\n",
      "          'enormous': 1,\n",
      "          'smart': 1,\n",
      "          'example': 1,\n",
      "          'wrong': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'showgirls': 4,\n",
      "          'film': 3,\n",
      "          'entertainment': 2,\n",
      "          'make': 2,\n",
      "          'nthe': 2,\n",
      "          'first': 1,\n",
      "          'bigbudget': 1,\n",
      "          'bigstudio': 1,\n",
      "          'receive': 1,\n",
      "          'nc17': 1,\n",
      "          'rating': 1,\n",
      "          'nand': 1,\n",
      "          'release': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'came': 1,\n",
      "          'time': 1,\n",
      "          'senator': 1,\n",
      "          'bob': 1,\n",
      "          'dole': 1,\n",
      "          'politicans': 1,\n",
      "          'chastised': 1,\n",
      "          'industry': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'promoting': 1,\n",
      "          'sex': 1,\n",
      "          'violence': 1,\n",
      "          'nbut': 1,\n",
      "          'indication': 1,\n",
      "          'hollywoods': 1,\n",
      "          'future': 1,\n",
      "          'folks': 1,\n",
      "          'washington': 1,\n",
      "          'focus': 1,\n",
      "          'attack': 1,\n",
      "          'dangerous': 1,\n",
      "          'threat': 1,\n",
      "          'american': 1,\n",
      "          'valuesbad': 1,\n",
      "          'moviemaking': 1,\n",
      "          'n': 1,\n",
      "          'relentlessly': 1,\n",
      "          'exploitive': 1,\n",
      "          'look': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'strip': 1,\n",
      "          'scene': 1,\n",
      "          'turns': 1,\n",
      "          'trashy': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'ndirector': 1,\n",
      "          'paul': 1,\n",
      "          'verhoeven': 1,\n",
      "          'writer': 1,\n",
      "          'joe': 1,\n",
      "          'eszterhas': 1,\n",
      "          'collaborated': 1,\n",
      "          'another': 1,\n",
      "          'shockvalue': 1,\n",
      "          'project': 1,\n",
      "          '1992s': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'follow': 1,\n",
      "          'plight': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'teen': 1,\n",
      "          'tv': 1,\n",
      "          'star': 1,\n",
      "          'elizabeth': 1,\n",
      "          'berkley': 1,\n",
      "          'determined': 1,\n",
      "          'name': 1,\n",
      "          'topless': 1,\n",
      "          'dancer': 1,\n",
      "          'nits': 1,\n",
      "          'hackneyed': 1,\n",
      "          'premise': 1,\n",
      "          'begin': 1,\n",
      "          'surprisingly': 1,\n",
      "          'stock': 1,\n",
      "          'characters': 1,\n",
      "          'trucked': 1,\n",
      "          'ntheres': 1,\n",
      "          'demanding': 1,\n",
      "          'producer': 1,\n",
      "          'loyal': 1,\n",
      "          'friend': 1,\n",
      "          'bitchy': 1,\n",
      "          'competitor': 1,\n",
      "          'nlest': 1,\n",
      "          'forget': 1,\n",
      "          'scummy': 1,\n",
      "          'club': 1,\n",
      "          'owner': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'attempt': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'coherent': 1,\n",
      "          'storyline': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'films': 1,\n",
      "          'main': 1,\n",
      "          'attractionan': 1,\n",
      "          'endless': 1,\n",
      "          'parade': 1,\n",
      "          'fullfrontal': 1,\n",
      "          'nudity': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'satisfy': 1,\n",
      "          'department': 1,\n",
      "          'nverhoevens': 1,\n",
      "          'slambang': 1,\n",
      "          'inyourface': 1,\n",
      "          'style': 1,\n",
      "          'direction': 1,\n",
      "          'proves': 1,\n",
      "          'neither': 1,\n",
      "          'arousing': 1,\n",
      "          'erotic': 1,\n",
      "          'nto': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'youll': 1,\n",
      "          'forced': 1,\n",
      "          'sit': 1,\n",
      "          'movies': 1,\n",
      "          'clothed': 1,\n",
      "          'scenes': 1,\n",
      "          'dont': 1,\n",
      "          'cover': 1,\n",
      "          'laughable': 1,\n",
      "          'acting': 1,\n",
      "          'absurd': 1,\n",
      "          'dialogue': 1,\n",
      "          'ever': 1,\n",
      "          'spoken': 1,\n",
      "          'history': 1,\n",
      "          'nverhoeven': 1,\n",
      "          'ezsterhas': 1,\n",
      "          'deserve': 1,\n",
      "          'credit': 1,\n",
      "          'trying': 1,\n",
      "          'break': 1,\n",
      "          'ground': 1,\n",
      "          'adult': 1,\n",
      "          'want': 1,\n",
      "          'stay': 1,\n",
      "          'home': 1,\n",
      "          'watch': 1,\n",
      "          'playboy': 1,\n",
      "          'channel': 1,\n",
      "          'nyoull': 1,\n",
      "          'wiser': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'damme': 7,\n",
      "          'van': 5,\n",
      "          'jeanclaude': 4,\n",
      "          'killed': 4,\n",
      "          'gets': 3,\n",
      "          'twin': 3,\n",
      "          'brother': 3,\n",
      "          'species': 3,\n",
      "          'first': 2,\n",
      "          'minutes': 2,\n",
      "          'isnt': 2,\n",
      "          'get': 2,\n",
      "          'see': 2,\n",
      "          'dont': 2,\n",
      "          'sarcasm': 2,\n",
      "          'certainly': 2,\n",
      "          'find': 2,\n",
      "          'deceased': 2,\n",
      "          'nvan': 2,\n",
      "          '1': 2,\n",
      "          'united': 2,\n",
      "          'states': 2,\n",
      "          'france': 2,\n",
      "          'played': 2,\n",
      "          'natasha': 2,\n",
      "          'henstridge': 2,\n",
      "          'acting': 2,\n",
      "          'high': 2,\n",
      "          'much': 2,\n",
      "          'nthis': 2,\n",
      "          'new': 2,\n",
      "          'nothing': 2,\n",
      "          'every': 2,\n",
      "          'heres': 1,\n",
      "          'concept': 1,\n",
      "          'within': 1,\n",
      "          'ten': 1,\n",
      "          'nnow': 1,\n",
      "          'enough': 1,\n",
      "          'finally': 1,\n",
      "          'know': 1,\n",
      "          'nall': 1,\n",
      "          'aside': 1,\n",
      "          'different': 1,\n",
      "          'way': 1,\n",
      "          'start': 1,\n",
      "          'course': 1,\n",
      "          'later': 1,\n",
      "          'newly': 1,\n",
      "          'lucky': 1,\n",
      "          'us': 1,\n",
      "          'works': 1,\n",
      "          'russian': 1,\n",
      "          'mafia': 1,\n",
      "          'operatives': 1,\n",
      "          '2': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'finds': 1,\n",
      "          'never': 1,\n",
      "          'knew': 1,\n",
      "          'nthe': 1,\n",
      "          'remaining': 1,\n",
      "          'french': 1,\n",
      "          'cop': 1,\n",
      "          'goes': 1,\n",
      "          'avenge': 1,\n",
      "          'death': 1,\n",
      "          'nonce': 1,\n",
      "          'hooks': 1,\n",
      "          'brothers': 1,\n",
      "          'girlfriend': 1,\n",
      "          'two': 1,\n",
      "          'set': 1,\n",
      "          'discover': 1,\n",
      "          'murderers': 1,\n",
      "          'njeanclaudes': 1,\n",
      "          'abilities': 1,\n",
      "          'seem': 1,\n",
      "          'usual': 1,\n",
      "          'lackluster': 1,\n",
      "          'standards': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'case': 1,\n",
      "          'missed': 1,\n",
      "          'worse': 1,\n",
      "          'normal': 1,\n",
      "          'non': 1,\n",
      "          'upside': 1,\n",
      "          'film': 1,\n",
      "          'best': 1,\n",
      "          'naked': 1,\n",
      "          'nsadly': 1,\n",
      "          'probably': 1,\n",
      "          'point': 1,\n",
      "          'nshe': 1,\n",
      "          'actually': 1,\n",
      "          'decent': 1,\n",
      "          'actress': 1,\n",
      "          'didnt': 1,\n",
      "          'improve': 1,\n",
      "          'thought': 1,\n",
      "          'would': 1,\n",
      "          'typical': 1,\n",
      "          'variety': 1,\n",
      "          'end': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'moves': 1,\n",
      "          'opponents': 1,\n",
      "          'nnothing': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'nsimply': 1,\n",
      "          'put': 1,\n",
      "          'absolutely': 1,\n",
      "          'nit': 1,\n",
      "          'retread': 1,\n",
      "          'plot': 1,\n",
      "          'time': 1,\n",
      "          'twins': 1,\n",
      "          'nhe': 1,\n",
      "          'still': 1,\n",
      "          'cant': 1,\n",
      "          'act': 1,\n",
      "          'nwe': 1,\n",
      "          'saw': 1,\n",
      "          'natashas': 1,\n",
      "          'breasts': 1,\n",
      "          'although': 1,\n",
      "          'one': 1,\n",
      "          'repeat': 1,\n",
      "          'performance': 1,\n",
      "          'im': 1,\n",
      "          'complaining': 1,\n",
      "          'pretty': 1,\n",
      "          'like': 1,\n",
      "          'ever': 1,\n",
      "          'involved': 1,\n",
      "          'sub': 1,\n",
      "          'par': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 10,\n",
      "          'movie': 9,\n",
      "          'rudy': 7,\n",
      "          'nick': 6,\n",
      "          'games': 5,\n",
      "          'hero': 5,\n",
      "          'reindeer': 4,\n",
      "          'even': 4,\n",
      "          'way': 4,\n",
      "          'first': 4,\n",
      "          'ashley': 4,\n",
      "          'script': 3,\n",
      "          'affleck': 3,\n",
      "          'nwhen': 3,\n",
      "          'actors': 3,\n",
      "          'like': 3,\n",
      "          'fun': 3,\n",
      "          'audience': 3,\n",
      "          'prison': 3,\n",
      "          'pretend': 3,\n",
      "          'kill': 3,\n",
      "          'getting': 3,\n",
      "          'bad': 3,\n",
      "          'makes': 2,\n",
      "          'cast': 2,\n",
      "          'people': 2,\n",
      "          'still': 2,\n",
      "          'scenes': 2,\n",
      "          'horrible': 2,\n",
      "          'charlize': 2,\n",
      "          'theron': 2,\n",
      "          'act': 2,\n",
      "          'stars': 2,\n",
      "          'would': 2,\n",
      "          'entertaining': 2,\n",
      "          'ben': 2,\n",
      "          'number': 2,\n",
      "          'want': 2,\n",
      "          'anything': 2,\n",
      "          'woman': 2,\n",
      "          'cellmate': 2,\n",
      "          'person': 2,\n",
      "          'decides': 2,\n",
      "          'date': 2,\n",
      "          'christmas': 2,\n",
      "          'brother': 2,\n",
      "          'gabriel': 2,\n",
      "          'must': 2,\n",
      "          'gets': 2,\n",
      "          'complex': 2,\n",
      "          'dead': 2,\n",
      "          'guys': 2,\n",
      "          'see': 2,\n",
      "          'fail': 2,\n",
      "          'pointless': 2,\n",
      "          'nwhy': 2,\n",
      "          'beats': 2,\n",
      "          'disappointing': 1,\n",
      "          'predictable': 1,\n",
      "          'lifeless': 1,\n",
      "          'action': 1,\n",
      "          'flick': 1,\n",
      "          'crew': 1,\n",
      "          'signed': 1,\n",
      "          'onto': 1,\n",
      "          'project': 1,\n",
      "          'nmost': 1,\n",
      "          'involved': 1,\n",
      "          'came': 1,\n",
      "          'terrible': 1,\n",
      "          'slumps': 1,\n",
      "          'excellent': 1,\n",
      "          'comeback': 1,\n",
      "          'performances': 1,\n",
      "          'recent': 1,\n",
      "          'films': 1,\n",
      "          'njohn': 1,\n",
      "          'frankenheimer': 1,\n",
      "          'made': 1,\n",
      "          'unforgettable': 1,\n",
      "          'cold': 1,\n",
      "          'war': 1,\n",
      "          'drama': 1,\n",
      "          'manchurian': 1,\n",
      "          'candidate': 1,\n",
      "          'back': 1,\n",
      "          'early': 1,\n",
      "          '60s': 1,\n",
      "          'recently': 1,\n",
      "          'showed': 1,\n",
      "          'critics': 1,\n",
      "          'fans': 1,\n",
      "          'alike': 1,\n",
      "          'magic': 1,\n",
      "          'left': 1,\n",
      "          'directorial': 1,\n",
      "          'skills': 1,\n",
      "          'created': 1,\n",
      "          'brilliant': 1,\n",
      "          'car': 1,\n",
      "          'chase': 1,\n",
      "          'ronin': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'ehren': 1,\n",
      "          'kruger': 1,\n",
      "          'gave': 1,\n",
      "          'remarkable': 1,\n",
      "          'impression': 1,\n",
      "          'wrote': 1,\n",
      "          'underrated': 1,\n",
      "          'arlington': 1,\n",
      "          'rd': 1,\n",
      "          'nben': 1,\n",
      "          'displayed': 1,\n",
      "          'comedic': 1,\n",
      "          'talents': 1,\n",
      "          'dogma': 1,\n",
      "          'boiler': 1,\n",
      "          'room': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'directly': 1,\n",
      "          'forces': 1,\n",
      "          'nature': 1,\n",
      "          '200': 1,\n",
      "          'cigarettes': 1,\n",
      "          'neven': 1,\n",
      "          'convinced': 1,\n",
      "          'couldnt': 1,\n",
      "          'decent': 1,\n",
      "          'job': 1,\n",
      "          'cider': 1,\n",
      "          'house': 1,\n",
      "          'rules': 1,\n",
      "          'bright': 1,\n",
      "          'come': 1,\n",
      "          'together': 1,\n",
      "          'one': 1,\n",
      "          'assume': 1,\n",
      "          'great': 1,\n",
      "          'potential': 1,\n",
      "          'nafter': 1,\n",
      "          'coming': 1,\n",
      "          'theater': 1,\n",
      "          'showing': 1,\n",
      "          'disbelief': 1,\n",
      "          'reaction': 1,\n",
      "          'frustration': 1,\n",
      "          'could': 1,\n",
      "          'premiered': 1,\n",
      "          'cinemax': 1,\n",
      "          'two': 1,\n",
      "          'morning': 1,\n",
      "          'starring': 1,\n",
      "          'allrookie': 1,\n",
      "          'equally': 1,\n",
      "          'lacking': 1,\n",
      "          'acting': 1,\n",
      "          'pitiful': 1,\n",
      "          'dull': 1,\n",
      "          'may': 1,\n",
      "          'rethink': 1,\n",
      "          'opinions': 1,\n",
      "          'talented': 1,\n",
      "          'actually': 1,\n",
      "          'nit': 1,\n",
      "          'seemed': 1,\n",
      "          'everyone': 1,\n",
      "          'restricted': 1,\n",
      "          'given': 1,\n",
      "          'fair': 1,\n",
      "          'amount': 1,\n",
      "          'improvisational': 1,\n",
      "          'rights': 1,\n",
      "          'nwe': 1,\n",
      "          'seen': 1,\n",
      "          'set': 1,\n",
      "          'apparent': 1,\n",
      "          'good': 1,\n",
      "          'hunting': 1,\n",
      "          'exchanges': 1,\n",
      "          'jokes': 1,\n",
      "          'friends': 1,\n",
      "          'bar': 1,\n",
      "          'nreindeer': 1,\n",
      "          'complete': 1,\n",
      "          'opposite': 1,\n",
      "          'dont': 1,\n",
      "          'seem': 1,\n",
      "          'characters': 1,\n",
      "          'danny': 1,\n",
      "          'trejo': 1,\n",
      "          'practically': 1,\n",
      "          'doesnt': 1,\n",
      "          'look': 1,\n",
      "          'enjoying': 1,\n",
      "          'causing': 1,\n",
      "          'quickly': 1,\n",
      "          'lose': 1,\n",
      "          'interest': 1,\n",
      "          'nevidence': 1,\n",
      "          'public': 1,\n",
      "          'disapproval': 1,\n",
      "          'noted': 1,\n",
      "          'behind': 1,\n",
      "          'yelled': 1,\n",
      "          'boy': 1,\n",
      "          'nand': 1,\n",
      "          'scattered': 1,\n",
      "          'giggles': 1,\n",
      "          'dramatic': 1,\n",
      "          'moments': 1,\n",
      "          'story': 1,\n",
      "          'follows': 1,\n",
      "          'man': 1,\n",
      "          'leaving': 1,\n",
      "          'days': 1,\n",
      "          'along': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'james': 1,\n",
      "          'frain': 1,\n",
      "          'nnick': 1,\n",
      "          'exchanging': 1,\n",
      "          'love': 1,\n",
      "          'letters': 1,\n",
      "          'beautiful': 1,\n",
      "          'wait': 1,\n",
      "          'leave': 1,\n",
      "          'meet': 1,\n",
      "          'killed': 1,\n",
      "          'riot': 1,\n",
      "          'take': 1,\n",
      "          'holidays': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'ashleys': 1,\n",
      "          'gary': 1,\n",
      "          'sinise': 1,\n",
      "          'interferes': 1,\n",
      "          'relationship': 1,\n",
      "          'nthinking': 1,\n",
      "          'kidnaps': 1,\n",
      "          'threatens': 1,\n",
      "          'unless': 1,\n",
      "          'helps': 1,\n",
      "          'rob': 1,\n",
      "          'casino': 1,\n",
      "          'use': 1,\n",
      "          'work': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'nnow': 1,\n",
      "          'protect': 1,\n",
      "          'nconfused': 1,\n",
      "          'goes': 1,\n",
      "          'climax': 1,\n",
      "          'nbut': 1,\n",
      "          'serious': 1,\n",
      "          'mistake': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'commits': 1,\n",
      "          'greedy': 1,\n",
      "          'selfish': 1,\n",
      "          'order': 1,\n",
      "          'nsome': 1,\n",
      "          'point': 1,\n",
      "          'morally': 1,\n",
      "          'correct': 1,\n",
      "          'thing': 1,\n",
      "          'relate': 1,\n",
      "          'admire': 1,\n",
      "          'lies': 1,\n",
      "          'cheats': 1,\n",
      "          'trouble': 1,\n",
      "          'instead': 1,\n",
      "          'gathering': 1,\n",
      "          'support': 1,\n",
      "          'ultimately': 1,\n",
      "          'succeed': 1,\n",
      "          'felt': 1,\n",
      "          'deserved': 1,\n",
      "          'wanted': 1,\n",
      "          'times': 1,\n",
      "          'irritating': 1,\n",
      "          'part': 1,\n",
      "          'film': 1,\n",
      "          'besides': 1,\n",
      "          'fact': 1,\n",
      "          'released': 1,\n",
      "          'february': 1,\n",
      "          'chances': 1,\n",
      "          'get': 1,\n",
      "          'delay': 1,\n",
      "          'idiotic': 1,\n",
      "          'reason': 1,\n",
      "          'routine': 1,\n",
      "          'guy': 1,\n",
      "          'explain': 1,\n",
      "          'genius': 1,\n",
      "          'plan': 1,\n",
      "          'attempting': 1,\n",
      "          'elaborate': 1,\n",
      "          'machine': 1,\n",
      "          'tired': 1,\n",
      "          'nowadays': 1,\n",
      "          'especially': 1,\n",
      "          'eagerly': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'keeping': 1,\n",
      "          'receiving': 1,\n",
      "          'zero': 1,\n",
      "          'amusing': 1,\n",
      "          'cameo': 1,\n",
      "          'isaac': 1,\n",
      "          'hayes': 1,\n",
      "          'prisoner': 1,\n",
      "          'upset': 1,\n",
      "          'food': 1,\n",
      "          'role': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'effects': 9,\n",
      "          'asteroid': 6,\n",
      "          'film': 6,\n",
      "          'special': 5,\n",
      "          'nthe': 5,\n",
      "          'good': 5,\n",
      "          'duvall': 4,\n",
      "          'really': 4,\n",
      "          'leoni': 3,\n",
      "          'wood': 3,\n",
      "          'plays': 3,\n",
      "          'space': 3,\n",
      "          'characters': 3,\n",
      "          'never': 3,\n",
      "          'average': 3,\n",
      "          'seems': 3,\n",
      "          'underwritten': 3,\n",
      "          'role': 3,\n",
      "          'dreamworks': 2,\n",
      "          'time': 2,\n",
      "          '2': 2,\n",
      "          'hours': 2,\n",
      "          'robert': 2,\n",
      "          'tea': 2,\n",
      "          'leder': 2,\n",
      "          'armageddon': 2,\n",
      "          'actually': 2,\n",
      "          'nelijah': 2,\n",
      "          'leo': 2,\n",
      "          'discovers': 2,\n",
      "          'earth': 2,\n",
      "          'rather': 2,\n",
      "          'crap': 2,\n",
      "          'jenny': 2,\n",
      "          'lerner': 2,\n",
      "          'crew': 2,\n",
      "          'freeman': 2,\n",
      "          'president': 2,\n",
      "          'many': 2,\n",
      "          'character': 2,\n",
      "          'one': 2,\n",
      "          'surprisingly': 2,\n",
      "          'director': 2,\n",
      "          '1996': 2,\n",
      "          'cast': 2,\n",
      "          'autopilot': 2,\n",
      "          'although': 2,\n",
      "          'bit': 2,\n",
      "          'money': 2,\n",
      "          'wasted': 2,\n",
      "          'much': 2,\n",
      "          'deep': 2,\n",
      "          'impact': 2,\n",
      "          'look': 2,\n",
      "          'like': 2,\n",
      "          'could': 2,\n",
      "          'movie': 2,\n",
      "          'skg': 1,\n",
      "          'running': 1,\n",
      "          'starring': 1,\n",
      "          'elijah': 1,\n",
      "          'directed': 1,\n",
      "          'mimi': 1,\n",
      "          'first': 1,\n",
      "          'two': 1,\n",
      "          'movies': 1,\n",
      "          'coming': 1,\n",
      "          'year': 1,\n",
      "          'second': 1,\n",
      "          'macho': 1,\n",
      "          'dull': 1,\n",
      "          'affair': 1,\n",
      "          'biederman': 1,\n",
      "          'astronomy': 1,\n",
      "          'class': 1,\n",
      "          'large': 1,\n",
      "          'heading': 1,\n",
      "          'ntea': 1,\n",
      "          'news': 1,\n",
      "          'reporter': 1,\n",
      "          'soon': 1,\n",
      "          'long': 1,\n",
      "          'winded': 1,\n",
      "          'boring': 1,\n",
      "          'way': 1,\n",
      "          'leader': 1,\n",
      "          'spurgeon': 1,\n",
      "          'tanner': 1,\n",
      "          'planning': 1,\n",
      "          'blow': 1,\n",
      "          'path': 1,\n",
      "          'nalso': 1,\n",
      "          'featuring': 1,\n",
      "          'morgan': 1,\n",
      "          'maximilian': 1,\n",
      "          'schell': 1,\n",
      "          'vanessa': 1,\n",
      "          'redgrave': 1,\n",
      "          'jennys': 1,\n",
      "          'father': 1,\n",
      "          'mother': 1,\n",
      "          'nwhile': 1,\n",
      "          'people': 1,\n",
      "          'walk': 1,\n",
      "          'expecting': 1,\n",
      "          'big': 1,\n",
      "          'fest': 1,\n",
      "          'blowing': 1,\n",
      "          'everything': 1,\n",
      "          'trailers': 1,\n",
      "          'seem': 1,\n",
      "          'promise': 1,\n",
      "          'study': 1,\n",
      "          'poor': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'enough': 1,\n",
      "          'explore': 1,\n",
      "          'nonly': 1,\n",
      "          'given': 1,\n",
      "          'depth': 1,\n",
      "          '2d': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          'nand': 1,\n",
      "          'couldnt': 1,\n",
      "          'care': 1,\n",
      "          'didnt': 1,\n",
      "          'give': 1,\n",
      "          'killed': 1,\n",
      "          'script': 1,\n",
      "          'bruce': 1,\n",
      "          'joel': 1,\n",
      "          'rubin': 1,\n",
      "          'michael': 1,\n",
      "          'tolkin': 1,\n",
      "          'horribly': 1,\n",
      "          'simple': 1,\n",
      "          'makes': 1,\n",
      "          'interesting': 1,\n",
      "          'statements': 1,\n",
      "          'nmimi': 1,\n",
      "          'former': 1,\n",
      "          'er': 1,\n",
      "          'peacemaker': 1,\n",
      "          'directs': 1,\n",
      "          'hohum': 1,\n",
      "          'style': 1,\n",
      "          'gets': 1,\n",
      "          'emotion': 1,\n",
      "          'scene': 1,\n",
      "          'shame': 1,\n",
      "          'seemingly': 1,\n",
      "          'gives': 1,\n",
      "          'performance': 1,\n",
      "          'even': 1,\n",
      "          'acts': 1,\n",
      "          'dorky': 1,\n",
      "          'nshe': 1,\n",
      "          'uncommonly': 1,\n",
      "          'stupid': 1,\n",
      "          'journalist': 1,\n",
      "          'nrobert': 1,\n",
      "          'best': 1,\n",
      "          'child': 1,\n",
      "          'actors': 1,\n",
      "          'working': 1,\n",
      "          'today': 1,\n",
      "          'choice': 1,\n",
      "          'roles': 1,\n",
      "          'lately': 1,\n",
      "          'havent': 1,\n",
      "          'exactly': 1,\n",
      "          'brilliant': 1,\n",
      "          'e': 1,\n",
      "          'nflipper': 1,\n",
      "          'nhis': 1,\n",
      "          'also': 1,\n",
      "          'vastly': 1,\n",
      "          'nmorgan': 1,\n",
      "          'utterly': 1,\n",
      "          'ridiculously': 1,\n",
      "          'nlike': 1,\n",
      "          'supporting': 1,\n",
      "          'k': 1,\n",
      "          'none': 1,\n",
      "          'making': 1,\n",
      "          'impression': 1,\n",
      "          'nok': 1,\n",
      "          'may': 1,\n",
      "          'messed': 1,\n",
      "          'wise': 1,\n",
      "          'surely': 1,\n",
      "          'nwell': 1,\n",
      "          'yes': 1,\n",
      "          'nalthough': 1,\n",
      "          'impressive': 1,\n",
      "          'massive': 1,\n",
      "          'tidal': 1,\n",
      "          'wave': 1,\n",
      "          'destroying': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'well': 1,\n",
      "          'nsadly': 1,\n",
      "          'waves': 1,\n",
      "          'looks': 1,\n",
      "          'drawn': 1,\n",
      "          'computer': 1,\n",
      "          'doesnt': 1,\n",
      "          'nsurprising': 1,\n",
      "          'done': 1,\n",
      "          'industrial': 1,\n",
      "          'light': 1,\n",
      "          'magic': 1,\n",
      "          'lost': 1,\n",
      "          'world': 1,\n",
      "          'twister': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'opportunity': 1,\n",
      "          'nwhat': 1,\n",
      "          'moving': 1,\n",
      "          'turns': 1,\n",
      "          'dud': 1,\n",
      "          'used': 1,\n",
      "          'greater': 1,\n",
      "          'effect': 1,\n",
      "          'nonce': 1,\n",
      "          'churned': 1,\n",
      "          'another': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'better': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'review': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'web': 1,\n",
      "          'provided': 1,\n",
      "          'geocities': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'film': 5,\n",
      "          'time': 5,\n",
      "          'space': 4,\n",
      "          'scenes': 4,\n",
      "          'family': 4,\n",
      "          'act': 4,\n",
      "          'story': 4,\n",
      "          'lost': 3,\n",
      "          'nits': 3,\n",
      "          'amount': 3,\n",
      "          'without': 3,\n",
      "          'robinson': 3,\n",
      "          'completely': 3,\n",
      "          'good': 2,\n",
      "          'becoming': 2,\n",
      "          'instead': 2,\n",
      "          'one': 2,\n",
      "          'things': 2,\n",
      "          'n': 2,\n",
      "          'rapidly': 2,\n",
      "          'scene': 2,\n",
      "          'written': 2,\n",
      "          'way': 2,\n",
      "          'special': 2,\n",
      "          'since': 2,\n",
      "          'happens': 2,\n",
      "          'nin': 2,\n",
      "          'like': 2,\n",
      "          'find': 2,\n",
      "          'planet': 2,\n",
      "          'fact': 2,\n",
      "          'presented': 2,\n",
      "          'first': 2,\n",
      "          'building': 2,\n",
      "          'elements': 2,\n",
      "          'plot': 2,\n",
      "          'conflict': 2,\n",
      "          'might': 2,\n",
      "          'dialogue': 2,\n",
      "          'never': 2,\n",
      "          'cartoony': 2,\n",
      "          'major': 2,\n",
      "          'robinsons': 2,\n",
      "          'ensues': 2,\n",
      "          'series': 2,\n",
      "          'alien': 2,\n",
      "          'changes': 2,\n",
      "          'scenario': 2,\n",
      "          'seen': 1,\n",
      "          'may': 1,\n",
      "          '2': 1,\n",
      "          '1998': 1,\n",
      "          '3': 1,\n",
      "          '40': 1,\n",
      "          'p': 1,\n",
      "          'crossgates': 1,\n",
      "          'cinema': 1,\n",
      "          '18': 1,\n",
      "          'theater': 1,\n",
      "          '13': 1,\n",
      "          'chris': 1,\n",
      "          'wessell': 1,\n",
      "          'sean': 1,\n",
      "          'oshea': 1,\n",
      "          '5': 1,\n",
      "          'ntheater': 1,\n",
      "          'rating': 1,\n",
      "          '12': 1,\n",
      "          'sound': 1,\n",
      "          'picture': 1,\n",
      "          'seats': 1,\n",
      "          'bigbudget': 1,\n",
      "          'megahype': 1,\n",
      "          'event': 1,\n",
      "          'movie': 1,\n",
      "          'trendy': 1,\n",
      "          'weekly': 1,\n",
      "          'routine': 1,\n",
      "          'seasonal': 1,\n",
      "          'ngluttony': 1,\n",
      "          'hollywoods': 1,\n",
      "          'favorite': 1,\n",
      "          'sin': 1,\n",
      "          'moviegoers': 1,\n",
      "          'pay': 1,\n",
      "          'price': 1,\n",
      "          'dealt': 1,\n",
      "          'everworsening': 1,\n",
      "          'basis': 1,\n",
      "          'latest': 1,\n",
      "          'offering': 1,\n",
      "          'poor': 1,\n",
      "          'would': 1,\n",
      "          'twice': 1,\n",
      "          'mediocre': 1,\n",
      "          'made': 1,\n",
      "          'every': 1,\n",
      "          'element': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'evoke': 1,\n",
      "          'slightest': 1,\n",
      "          'wonderment': 1,\n",
      "          'genre': 1,\n",
      "          'meant': 1,\n",
      "          'naudiences': 1,\n",
      "          'attention': 1,\n",
      "          'spans': 1,\n",
      "          'decreasing': 1,\n",
      "          'trend': 1,\n",
      "          'films': 1,\n",
      "          'opens': 1,\n",
      "          'fastpaced': 1,\n",
      "          'battle': 1,\n",
      "          'serves': 1,\n",
      "          'interesting': 1,\n",
      "          'probably': 1,\n",
      "          'star': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wars': 1,\n",
      "          'producers': 1,\n",
      "          'showing': 1,\n",
      "          'budget': 1,\n",
      "          'effects': 1,\n",
      "          'nbattle': 1,\n",
      "          'worthless': 1,\n",
      "          'tension': 1,\n",
      "          'idea': 1,\n",
      "          'setting': 1,\n",
      "          'impossible': 1,\n",
      "          'care': 1,\n",
      "          'anything': 1,\n",
      "          'essence': 1,\n",
      "          'entire': 1,\n",
      "          'segment': 1,\n",
      "          'works': 1,\n",
      "          'teaser': 1,\n",
      "          'arcade': 1,\n",
      "          'game': 1,\n",
      "          'piece': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nwe': 1,\n",
      "          'meet': 1,\n",
      "          'five': 1,\n",
      "          'get': 1,\n",
      "          'along': 1,\n",
      "          'chosen': 1,\n",
      "          'earths': 1,\n",
      "          'behalf': 1,\n",
      "          'effort': 1,\n",
      "          'another': 1,\n",
      "          'worthy': 1,\n",
      "          'colonization': 1,\n",
      "          'due': 1,\n",
      "          'exhausting': 1,\n",
      "          'natural': 1,\n",
      "          'resources': 1,\n",
      "          'neach': 1,\n",
      "          'member': 1,\n",
      "          'trait': 1,\n",
      "          'personality': 1,\n",
      "          'yet': 1,\n",
      "          'none': 1,\n",
      "          'seem': 1,\n",
      "          'actual': 1,\n",
      "          'people': 1,\n",
      "          'nprofessor': 1,\n",
      "          'john': 1,\n",
      "          'hurt': 1,\n",
      "          'intelligent': 1,\n",
      "          'quiet': 1,\n",
      "          'leader': 1,\n",
      "          'devoted': 1,\n",
      "          'much': 1,\n",
      "          'work': 1,\n",
      "          'marriage': 1,\n",
      "          'suffering': 1,\n",
      "          'realizing': 1,\n",
      "          'obvious': 1,\n",
      "          'role': 1,\n",
      "          'aspect': 1,\n",
      "          'play': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'established': 1,\n",
      "          'extremely': 1,\n",
      "          'melodramatic': 1,\n",
      "          'children': 1,\n",
      "          'parents': 1,\n",
      "          'arguing': 1,\n",
      "          'bickering': 1,\n",
      "          'among': 1,\n",
      "          'necessary': 1,\n",
      "          'problems': 1,\n",
      "          'resolved': 1,\n",
      "          'right': 1,\n",
      "          'moments': 1,\n",
      "          'thing': 1,\n",
      "          'worse': 1,\n",
      "          'screenplay': 1,\n",
      "          'serious': 1,\n",
      "          'manner': 1,\n",
      "          'trace': 1,\n",
      "          'satire': 1,\n",
      "          'pathetic': 1,\n",
      "          'laughable': 1,\n",
      "          'juxtaposition': 1,\n",
      "          'serve': 1,\n",
      "          'purpose': 1,\n",
      "          'plug': 1,\n",
      "          'required': 1,\n",
      "          'characterization': 1,\n",
      "          'god': 1,\n",
      "          'forbid': 1,\n",
      "          'nwere': 1,\n",
      "          'provided': 1,\n",
      "          'minimum': 1,\n",
      "          'possible': 1,\n",
      "          'keep': 1,\n",
      "          'silent': 1,\n",
      "          'well': 1,\n",
      "          'virtually': 1,\n",
      "          'nonexistent': 1,\n",
      "          'nyes': 1,\n",
      "          'characters': 1,\n",
      "          'speak': 1,\n",
      "          'talk': 1,\n",
      "          'nthey': 1,\n",
      "          'say': 1,\n",
      "          'relate': 1,\n",
      "          'really': 1,\n",
      "          'interact': 1,\n",
      "          'unless': 1,\n",
      "          'flirting': 1,\n",
      "          'arrogant': 1,\n",
      "          'west': 1,\n",
      "          'leblanc': 1,\n",
      "          'uptight': 1,\n",
      "          'unemotional': 1,\n",
      "          'judy': 1,\n",
      "          'graham': 1,\n",
      "          'amazing': 1,\n",
      "          'hour': 1,\n",
      "          'trite': 1,\n",
      "          'generic': 1,\n",
      "          'devices': 1,\n",
      "          'little': 1,\n",
      "          'neventually': 1,\n",
      "          'pacing': 1,\n",
      "          'increases': 1,\n",
      "          'genuine': 1,\n",
      "          'interest': 1,\n",
      "          'finally': 1,\n",
      "          'gains': 1,\n",
      "          'prospective': 1,\n",
      "          'living': 1,\n",
      "          'title': 1,\n",
      "          'narrowly': 1,\n",
      "          'managing': 1,\n",
      "          'defeat': 1,\n",
      "          'dr': 1,\n",
      "          'smith': 1,\n",
      "          'oldman': 1,\n",
      "          'villain': 1,\n",
      "          'plans': 1,\n",
      "          'sabotage': 1,\n",
      "          'nwhat': 1,\n",
      "          'upon': 1,\n",
      "          'unrelated': 1,\n",
      "          'conflicts': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'abandoned': 1,\n",
      "          'spaceship': 1,\n",
      "          'could': 1,\n",
      "          'best': 1,\n",
      "          'described': 1,\n",
      "          'lite': 1,\n",
      "          'crash': 1,\n",
      "          'land': 1,\n",
      "          'must': 1,\n",
      "          'quickly': 1,\n",
      "          'escape': 1,\n",
      "          'survive': 1,\n",
      "          'nbut': 1,\n",
      "          'theres': 1,\n",
      "          'real': 1,\n",
      "          'notion': 1,\n",
      "          'suspense': 1,\n",
      "          'script': 1,\n",
      "          'constantly': 1,\n",
      "          'wanders': 1,\n",
      "          'aimlessly': 1,\n",
      "          'nplotlines': 1,\n",
      "          'developed': 1,\n",
      "          'becomes': 1,\n",
      "          'totally': 1,\n",
      "          'irrelevant': 1,\n",
      "          'atmosphere': 1,\n",
      "          'attempts': 1,\n",
      "          'surreal': 1,\n",
      "          'incorporating': 1,\n",
      "          'travel': 1,\n",
      "          'various': 1,\n",
      "          'paradoxes': 1,\n",
      "          'ridiculous': 1,\n",
      "          'utterly': 1,\n",
      "          'boring': 1,\n",
      "          'nby': 1,\n",
      "          'last': 1,\n",
      "          'rolls': 1,\n",
      "          'around': 1,\n",
      "          'sense': 1,\n",
      "          'payoff': 1,\n",
      "          'ending': 1,\n",
      "          'go': 1,\n",
      "          'high': 1,\n",
      "          'note': 1,\n",
      "          'kind': 1,\n",
      "          'climax': 1,\n",
      "          'seems': 1,\n",
      "          'come': 1,\n",
      "          'sudden': 1,\n",
      "          'halt': 1,\n",
      "          'least': 1,\n",
      "          'ends': 1,\n",
      "          'production': 1,\n",
      "          'worst': 1,\n",
      "          'frightening': 1,\n",
      "          'poorly': 1,\n",
      "          'directed': 1,\n",
      "          'acted': 1,\n",
      "          'considered': 1,\n",
      "          'mainstream': 1,\n",
      "          'entertainment': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'movie': 8,\n",
      "          'film': 8,\n",
      "          'music': 4,\n",
      "          'horror': 3,\n",
      "          'first': 3,\n",
      "          'slasher': 3,\n",
      "          'killer': 3,\n",
      "          'one': 3,\n",
      "          'scene': 3,\n",
      "          'always': 3,\n",
      "          'used': 3,\n",
      "          'nthis': 3,\n",
      "          'illogical': 3,\n",
      "          'lot': 2,\n",
      "          'couldve': 2,\n",
      "          'case': 2,\n",
      "          '_urban': 2,\n",
      "          'legend_': 2,\n",
      "          'new': 2,\n",
      "          'time': 2,\n",
      "          'director': 2,\n",
      "          'blanks': 2,\n",
      "          'person': 2,\n",
      "          'inside': 2,\n",
      "          'l': 2,\n",
      "          'ni': 2,\n",
      "          'guess': 2,\n",
      "          'days': 2,\n",
      "          'certainly': 2,\n",
      "          'good': 2,\n",
      "          'takes': 2,\n",
      "          'also': 2,\n",
      "          'wielding': 2,\n",
      "          'maniac': 2,\n",
      "          'dont': 2,\n",
      "          'degenerates': 2,\n",
      "          'scares': 2,\n",
      "          'loud': 2,\n",
      "          'bursts': 2,\n",
      "          'appears': 2,\n",
      "          'like': 2,\n",
      "          'still': 2,\n",
      "          'moments': 2,\n",
      "          'youll': 2,\n",
      "          'screaming': 2,\n",
      "          'thing': 1,\n",
      "          'worse': 1,\n",
      "          'watching': 1,\n",
      "          'bad': 1,\n",
      "          'realizing': 1,\n",
      "          'potential': 1,\n",
      "          'effective': 1,\n",
      "          'nsuch': 1,\n",
      "          'jamie': 1,\n",
      "          'idea': 1,\n",
      "          'behind': 1,\n",
      "          'mad': 1,\n",
      "          'muders': 1,\n",
      "          'people': 1,\n",
      "          'according': 1,\n",
      "          'various': 1,\n",
      "          'urban': 1,\n",
      "          'legends': 1,\n",
      "          'nexamples': 1,\n",
      "          'include': 1,\n",
      "          'backseat': 1,\n",
      "          'car': 1,\n",
      "          'getting': 1,\n",
      "          'calls': 1,\n",
      "          'house': 1,\n",
      "          'wears': 1,\n",
      "          'bean': 1,\n",
      "          'parkas': 1,\n",
      "          'hood': 1,\n",
      "          'drawn': 1,\n",
      "          'completely': 1,\n",
      "          'cant': 1,\n",
      "          'see': 1,\n",
      "          'face': 1,\n",
      "          'halloween': 1,\n",
      "          'masks': 1,\n",
      "          'style': 1,\n",
      "          'psychos': 1,\n",
      "          'nanyhow': 1,\n",
      "          'premise': 1,\n",
      "          'nifty': 1,\n",
      "          'opening': 1,\n",
      "          'spooky': 1,\n",
      "          'atmospheric': 1,\n",
      "          'nits': 1,\n",
      "          'setup': 1,\n",
      "          'promises': 1,\n",
      "          'chills': 1,\n",
      "          'come': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'never': 1,\n",
      "          'place': 1,\n",
      "          'peaceful': 1,\n",
      "          'england': 1,\n",
      "          'college': 1,\n",
      "          'campus': 1,\n",
      "          'nlike': 1,\n",
      "          'flicks': 1,\n",
      "          'centers': 1,\n",
      "          'around': 1,\n",
      "          'young': 1,\n",
      "          'female': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'whose': 1,\n",
      "          'friends': 1,\n",
      "          'slowly': 1,\n",
      "          'killed': 1,\n",
      "          'knife': 1,\n",
      "          'axe': 1,\n",
      "          'nive': 1,\n",
      "          'wondered': 1,\n",
      "          'killers': 1,\n",
      "          'save': 1,\n",
      "          'trouble': 1,\n",
      "          'go': 1,\n",
      "          'ultimately': 1,\n",
      "          'aim': 1,\n",
      "          'kill': 1,\n",
      "          'nafter': 1,\n",
      "          'fine': 1,\n",
      "          'monotonous': 1,\n",
      "          'series': 1,\n",
      "          'annoying': 1,\n",
      "          'youthoughtitwasthekillerbutwasjust': 1,\n",
      "          'someoneelse': 1,\n",
      "          'nthese': 1,\n",
      "          'accompanied': 1,\n",
      "          'sudden': 1,\n",
      "          'sharp': 1,\n",
      "          'chords': 1,\n",
      "          'passes': 1,\n",
      "          'terror': 1,\n",
      "          'actual': 1,\n",
      "          'attack': 1,\n",
      "          'every': 1,\n",
      "          'third': 1,\n",
      "          'blast': 1,\n",
      "          'attacks': 1,\n",
      "          'victim': 1,\n",
      "          'eviscerated': 1,\n",
      "          'tedious': 1,\n",
      "          'cycle': 1,\n",
      "          'anew': 1,\n",
      "          'nfalse': 1,\n",
      "          'moderation': 1,\n",
      "          'nsomeone': 1,\n",
      "          'needs': 1,\n",
      "          'tell': 1,\n",
      "          'things': 1,\n",
      "          'arent': 1,\n",
      "          'scary': 1,\n",
      "          'commits': 1,\n",
      "          'biggest': 1,\n",
      "          'sin': 1,\n",
      "          'commitits': 1,\n",
      "          'frightening': 1,\n",
      "          'nremember': 1,\n",
      "          'cliches': 1,\n",
      "          'mercilessly': 1,\n",
      "          'mocked': 1,\n",
      "          '_scream_': 1,\n",
      "          '_scream': 1,\n",
      "          '2_': 1,\n",
      "          'adheres': 1,\n",
      "          'ntons': 1,\n",
      "          'really': 1,\n",
      "          'inclination': 1,\n",
      "          'list': 1,\n",
      "          'nand': 1,\n",
      "          'mean': 1,\n",
      "          'summer': 1,\n",
      "          'popcorn': 1,\n",
      "          'sense': 1,\n",
      "          'nthat': 1,\n",
      "          'type': 1,\n",
      "          'fun': 1,\n",
      "          'insults': 1,\n",
      "          'intelligence': 1,\n",
      "          'times': 1,\n",
      "          'care': 1,\n",
      "          'remember': 1,\n",
      "          'last': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'especially': 1,\n",
      "          'lunacy': 1,\n",
      "          'laughing': 1,\n",
      "          'nactually': 1,\n",
      "          'wont': 1,\n",
      "          'nat': 1,\n",
      "          'best': 1,\n",
      "          'acting': 1,\n",
      "          'barely': 1,\n",
      "          'called': 1,\n",
      "          'adequate': 1,\n",
      "          'script': 1,\n",
      "          'definitely': 1,\n",
      "          'rewrite': 1,\n",
      "          'two': 1,\n",
      "          'manages': 1,\n",
      "          'strong': 1,\n",
      "          'points': 1,\n",
      "          'killings': 1,\n",
      "          'inventive': 1,\n",
      "          'plentiful': 1,\n",
      "          'enough': 1,\n",
      "          'satistfy': 1,\n",
      "          'gore': 1,\n",
      "          'fans': 1,\n",
      "          'nthere': 1,\n",
      "          'intentionally': 1,\n",
      "          'funny': 1,\n",
      "          'n': 1,\n",
      "          'exceeded': 1,\n",
      "          'unintentional': 1,\n",
      "          'ones': 1,\n",
      "          'well': 1,\n",
      "          'made': 1,\n",
      "          'technical': 1,\n",
      "          'standpoint': 1,\n",
      "          'nbesides': 1,\n",
      "          'part': 1,\n",
      "          'another': 1,\n",
      "          'prolonged': 1,\n",
      "          'cat': 1,\n",
      "          'mouse': 1,\n",
      "          'chase': 1,\n",
      "          'radio': 1,\n",
      "          'station': 1,\n",
      "          'nif': 1,\n",
      "          'sequences': 1,\n",
      "          'relied': 1,\n",
      "          'tautness': 1,\n",
      "          'suspense': 1,\n",
      "          'rather': 1,\n",
      "          'mightve': 1,\n",
      "          'worth': 1,\n",
      "          'money': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 15,\n",
      "          'ni': 15,\n",
      "          'nthe': 9,\n",
      "          'actors': 8,\n",
      "          'love': 7,\n",
      "          'even': 6,\n",
      "          'like': 6,\n",
      "          'avengers': 5,\n",
      "          'nand': 5,\n",
      "          'never': 5,\n",
      "          'dont': 5,\n",
      "          'seems': 5,\n",
      "          'one': 5,\n",
      "          'scenes': 5,\n",
      "          'didnt': 4,\n",
      "          'would': 4,\n",
      "          'sets': 4,\n",
      "          'also': 4,\n",
      "          'makes': 4,\n",
      "          'action': 4,\n",
      "          'fiennes': 3,\n",
      "          'thurman': 3,\n",
      "          'saw': 3,\n",
      "          'ive': 3,\n",
      "          'final': 3,\n",
      "          'bit': 3,\n",
      "          'peel': 3,\n",
      "          'see': 3,\n",
      "          'clearly': 3,\n",
      "          'guy': 3,\n",
      "          'really': 3,\n",
      "          'lot': 3,\n",
      "          'weather': 3,\n",
      "          'people': 3,\n",
      "          'nthey': 3,\n",
      "          'played': 3,\n",
      "          'de': 3,\n",
      "          'heroes': 3,\n",
      "          'n': 3,\n",
      "          'go': 3,\n",
      "          'way': 3,\n",
      "          'subplot': 3,\n",
      "          'sense': 3,\n",
      "          'arent': 3,\n",
      "          'many': 3,\n",
      "          'story': 3,\n",
      "          'good': 3,\n",
      "          'best': 3,\n",
      "          'blame': 3,\n",
      "          'presence': 2,\n",
      "          'ralph': 2,\n",
      "          'connery': 2,\n",
      "          'big': 2,\n",
      "          'jim': 2,\n",
      "          'broadbent': 2,\n",
      "          'fiona': 2,\n",
      "          'shaw': 2,\n",
      "          'preview': 2,\n",
      "          'months': 2,\n",
      "          'ever': 2,\n",
      "          'however': 2,\n",
      "          'release': 2,\n",
      "          'times': 2,\n",
      "          'learned': 2,\n",
      "          'man': 2,\n",
      "          'us': 2,\n",
      "          'expectations': 2,\n",
      "          'pieces': 2,\n",
      "          'today': 2,\n",
      "          'nthis': 2,\n",
      "          'nbut': 2,\n",
      "          'ultimately': 2,\n",
      "          'completely': 2,\n",
      "          'none': 2,\n",
      "          'feels': 2,\n",
      "          'superhero': 2,\n",
      "          'nit': 2,\n",
      "          'cut': 2,\n",
      "          'television': 2,\n",
      "          'show': 2,\n",
      "          'know': 2,\n",
      "          'steed': 2,\n",
      "          'roles': 2,\n",
      "          'understand': 2,\n",
      "          'kind': 2,\n",
      "          'james': 2,\n",
      "          'dr': 2,\n",
      "          'happens': 2,\n",
      "          'together': 2,\n",
      "          'nhis': 2,\n",
      "          'wynter': 2,\n",
      "          'nhe': 2,\n",
      "          'crazy': 2,\n",
      "          'keep': 2,\n",
      "          'getting': 2,\n",
      "          'films': 2,\n",
      "          'feel': 2,\n",
      "          'make': 2,\n",
      "          'nfor': 2,\n",
      "          'bugs': 2,\n",
      "          'purpose': 2,\n",
      "          'theyre': 2,\n",
      "          'bad': 2,\n",
      "          'particularly': 2,\n",
      "          'electric': 2,\n",
      "          'cast': 2,\n",
      "          'lost': 2,\n",
      "          'cant': 2,\n",
      "          'look': 2,\n",
      "          'interest': 2,\n",
      "          'nis': 2,\n",
      "          'movie': 2,\n",
      "          'director': 2,\n",
      "          'music': 2,\n",
      "          'nice': 2,\n",
      "          'opinion': 1,\n",
      "          'easily': 1,\n",
      "          'swayed': 1,\n",
      "          'uma': 1,\n",
      "          'sean': 1,\n",
      "          'nhell': 1,\n",
      "          'im': 1,\n",
      "          'fan': 1,\n",
      "          'fantastic': 1,\n",
      "          'nearly': 1,\n",
      "          'eight': 1,\n",
      "          'ago': 1,\n",
      "          'eagerly': 1,\n",
      "          'awaiting': 1,\n",
      "          'since': 1,\n",
      "          'na': 1,\n",
      "          'summer': 1,\n",
      "          'noticed': 1,\n",
      "          'date': 1,\n",
      "          'changed': 1,\n",
      "          'ended': 1,\n",
      "          'midaugust': 1,\n",
      "          'dumping': 1,\n",
      "          'ground': 1,\n",
      "          'nthen': 1,\n",
      "          'week': 1,\n",
      "          'official': 1,\n",
      "          'screened': 1,\n",
      "          'critics': 1,\n",
      "          'plugging': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'programs': 1,\n",
      "          'directed': 1,\n",
      "          'brought': 1,\n",
      "          'remake': 1,\n",
      "          'diabolique': 1,\n",
      "          'nmy': 1,\n",
      "          'fell': 1,\n",
      "          'things': 1,\n",
      "          'meet': 1,\n",
      "          'lousy': 1,\n",
      "          'incoherent': 1,\n",
      "          'mess': 1,\n",
      "          'slam': 1,\n",
      "          'harder': 1,\n",
      "          'werent': 1,\n",
      "          'nifty': 1,\n",
      "          'mere': 1,\n",
      "          'fine': 1,\n",
      "          'lovable': 1,\n",
      "          'empty': 1,\n",
      "          'performances': 1,\n",
      "          'uninspired': 1,\n",
      "          'nthats': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'hiphop': 1,\n",
      "          'flash': 1,\n",
      "          'tidal': 1,\n",
      "          'waves': 1,\n",
      "          'least': 1,\n",
      "          'energetic': 1,\n",
      "          'inspired': 1,\n",
      "          'nits': 1,\n",
      "          'chore': 1,\n",
      "          'bland': 1,\n",
      "          'exercise': 1,\n",
      "          'making': 1,\n",
      "          'clocking': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'forgetting': 1,\n",
      "          'close': 1,\n",
      "          'subplots': 1,\n",
      "          'plain': 1,\n",
      "          'depressing': 1,\n",
      "          'version': 1,\n",
      "          'popular': 1,\n",
      "          '60s': 1,\n",
      "          'nfrequent': 1,\n",
      "          'readers': 1,\n",
      "          'mine': 1,\n",
      "          'surprised': 1,\n",
      "          'learn': 1,\n",
      "          'watched': 1,\n",
      "          'episode': 1,\n",
      "          'wasnt': 1,\n",
      "          'alive': 1,\n",
      "          'watch': 1,\n",
      "          'nim': 1,\n",
      "          'sorry': 1,\n",
      "          'perspective': 1,\n",
      "          'judging': 1,\n",
      "          'reviews': 1,\n",
      "          'already': 1,\n",
      "          'read': 1,\n",
      "          'knowing': 1,\n",
      "          'tv': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'john': 1,\n",
      "          'emma': 1,\n",
      "          'therefore': 1,\n",
      "          'upset': 1,\n",
      "          'managed': 1,\n",
      "          'thrash': 1,\n",
      "          'doubt': 1,\n",
      "          'familiarity': 1,\n",
      "          'series': 1,\n",
      "          'allow': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'nbased': 1,\n",
      "          'told': 1,\n",
      "          'gather': 1,\n",
      "          'british': 1,\n",
      "          'super': 1,\n",
      "          'somewhat': 1,\n",
      "          'bond': 1,\n",
      "          'smart': 1,\n",
      "          'doctor': 1,\n",
      "          'beating': 1,\n",
      "          'limited': 1,\n",
      "          'tight': 1,\n",
      "          'leather': 1,\n",
      "          'suits': 1,\n",
      "          'work': 1,\n",
      "          'mothers': 1,\n",
      "          'orders': 1,\n",
      "          'mother': 1,\n",
      "          'jolly': 1,\n",
      "          'coconspirator': 1,\n",
      "          'father': 1,\n",
      "          'equallytalented': 1,\n",
      "          'controlling': 1,\n",
      "          'name': 1,\n",
      "          'scottish': 1,\n",
      "          'nour': 1,\n",
      "          'better': 1,\n",
      "          'stop': 1,\n",
      "          'else': 1,\n",
      "          'colder': 1,\n",
      "          'hell': 1,\n",
      "          'warm': 1,\n",
      "          'funny': 1,\n",
      "          'lines': 1,\n",
      "          'nalong': 1,\n",
      "          'hinged': 1,\n",
      "          'sloppily': 1,\n",
      "          'nowhere': 1,\n",
      "          'perfunctory': 1,\n",
      "          'example': 1,\n",
      "          'eventually': 1,\n",
      "          'attacked': 1,\n",
      "          'swarm': 1,\n",
      "          'giant': 1,\n",
      "          'mechanical': 1,\n",
      "          'insects': 1,\n",
      "          'machineguns': 1,\n",
      "          'attached': 1,\n",
      "          'torsos': 1,\n",
      "          'nnow': 1,\n",
      "          'killer': 1,\n",
      "          'weathercontrolling': 1,\n",
      "          'theme': 1,\n",
      "          'annihilate': 1,\n",
      "          'established': 1,\n",
      "          'ntheyre': 1,\n",
      "          'directly': 1,\n",
      "          'connected': 1,\n",
      "          'controlled': 1,\n",
      "          'henchman': 1,\n",
      "          'eddie': 1,\n",
      "          'izzard': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'intrusive': 1,\n",
      "          'nlike': 1,\n",
      "          'present': 1,\n",
      "          'attention': 1,\n",
      "          'waning': 1,\n",
      "          'guarantee': 1,\n",
      "          'wane': 1,\n",
      "          'stopped': 1,\n",
      "          'thinking': 1,\n",
      "          'realized': 1,\n",
      "          'think': 1,\n",
      "          'chopped': 1,\n",
      "          'reassembled': 1,\n",
      "          'involved': 1,\n",
      "          'couldnt': 1,\n",
      "          'tell': 1,\n",
      "          'nthere': 1,\n",
      "          'several': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'sequences': 1,\n",
      "          'irritating': 1,\n",
      "          'grainy': 1,\n",
      "          'quality': 1,\n",
      "          'lowbudget': 1,\n",
      "          'last': 1,\n",
      "          'scene': 1,\n",
      "          'feature': 1,\n",
      "          'thanks': 1,\n",
      "          'wonderful': 1,\n",
      "          'either': 1,\n",
      "          'wasted': 1,\n",
      "          'noh': 1,\n",
      "          'weep': 1,\n",
      "          'disappointment': 1,\n",
      "          'nwere': 1,\n",
      "          'talking': 1,\n",
      "          'working': 1,\n",
      "          'nive': 1,\n",
      "          'loved': 1,\n",
      "          'wants': 1,\n",
      "          'hes': 1,\n",
      "          'spectacular': 1,\n",
      "          'beauty': 1,\n",
      "          'talent': 1,\n",
      "          'manage': 1,\n",
      "          'home': 1,\n",
      "          'strange': 1,\n",
      "          'involving': 1,\n",
      "          'evil': 1,\n",
      "          'twin': 1,\n",
      "          'explained': 1,\n",
      "          'easy': 1,\n",
      "          'deal': 1,\n",
      "          'terrible': 1,\n",
      "          'screenwriting': 1,\n",
      "          'nconnery': 1,\n",
      "          'totally': 1,\n",
      "          'lacking': 1,\n",
      "          'focus': 1,\n",
      "          'matter': 1,\n",
      "          'nwho': 1,\n",
      "          'screenwriter': 1,\n",
      "          'macpherson': 1,\n",
      "          'nperhaps': 1,\n",
      "          'although': 1,\n",
      "          'shell': 1,\n",
      "          'could': 1,\n",
      "          'handled': 1,\n",
      "          'right': 1,\n",
      "          'gods': 1,\n",
      "          'sake': 1,\n",
      "          'inevitable': 1,\n",
      "          'path': 1,\n",
      "          'destruction': 1,\n",
      "          'travelling': 1,\n",
      "          'jeremiah': 1,\n",
      "          'chechik': 1,\n",
      "          'shouldnt': 1,\n",
      "          'given': 1,\n",
      "          'task': 1,\n",
      "          'begin': 1,\n",
      "          'benny': 1,\n",
      "          'joon': 1,\n",
      "          'quirky': 1,\n",
      "          'supposed': 1,\n",
      "          'mostly': 1,\n",
      "          'failed': 1,\n",
      "          'attempts': 1,\n",
      "          'wit': 1,\n",
      "          'humor': 1,\n",
      "          'nadd': 1,\n",
      "          'lack': 1,\n",
      "          'experience': 1,\n",
      "          'bigbudget': 1,\n",
      "          'worst': 1,\n",
      "          'choice': 1,\n",
      "          'side': 1,\n",
      "          'ivory': 1,\n",
      "          'nif': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'set': 1,\n",
      "          'design': 1,\n",
      "          'stuart': 1,\n",
      "          'craig': 1,\n",
      "          'colorful': 1,\n",
      "          'often': 1,\n",
      "          'pleasing': 1,\n",
      "          'setpiece': 1,\n",
      "          'wynters': 1,\n",
      "          'island': 1,\n",
      "          'admired': 1,\n",
      "          'overhead': 1,\n",
      "          'view': 1,\n",
      "          'stairs': 1,\n",
      "          'showing': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'circles': 1,\n",
      "          'anywhere': 1,\n",
      "          'enjoyed': 1,\n",
      "          'michael': 1,\n",
      "          'kamens': 1,\n",
      "          'score': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'stuff': 1,\n",
      "          'routine': 1,\n",
      "          'theres': 1,\n",
      "          'needs': 1,\n",
      "          'ninspiration': 1,\n",
      "          'instance': 1,\n",
      "          'nmaybe': 1,\n",
      "          'little': 1,\n",
      "          'cohesion': 1,\n",
      "          'nmost': 1,\n",
      "          'though': 1,\n",
      "          'liked': 1,\n",
      "          'relish': 1,\n",
      "          'ndamn': 1,\n",
      "          'giving': 1,\n",
      "          'chance': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'eyes': 10,\n",
      "          'movie': 10,\n",
      "          'nthe': 9,\n",
      "          'trailer': 8,\n",
      "          'snake': 6,\n",
      "          'good': 6,\n",
      "          'nif': 5,\n",
      "          'nsnake': 4,\n",
      "          'mystery': 4,\n",
      "          'palma': 4,\n",
      "          'plot': 4,\n",
      "          'much': 4,\n",
      "          'youd': 3,\n",
      "          'would': 3,\n",
      "          'reason': 3,\n",
      "          'movies': 3,\n",
      "          'de': 3,\n",
      "          'sinise': 3,\n",
      "          'cage': 3,\n",
      "          'without': 3,\n",
      "          'story': 3,\n",
      "          'one': 3,\n",
      "          'better': 3,\n",
      "          'put': 2,\n",
      "          'n': 2,\n",
      "          'side': 2,\n",
      "          'game': 2,\n",
      "          'nthis': 2,\n",
      "          'free': 2,\n",
      "          'seen': 2,\n",
      "          'supposed': 2,\n",
      "          'questions': 2,\n",
      "          'way': 2,\n",
      "          'readmit': 2,\n",
      "          'pass': 2,\n",
      "          'brian': 2,\n",
      "          'cages': 2,\n",
      "          'give': 2,\n",
      "          'worthy': 2,\n",
      "          'seeing': 2,\n",
      "          'work': 2,\n",
      "          'sheer': 2,\n",
      "          'steadicam': 2,\n",
      "          'atlantic': 2,\n",
      "          'city': 2,\n",
      "          'deserves': 2,\n",
      "          'best': 2,\n",
      "          'category': 2,\n",
      "          'nbut': 2,\n",
      "          'us': 2,\n",
      "          'must': 2,\n",
      "          'secretary': 2,\n",
      "          'boxing': 2,\n",
      "          'match': 2,\n",
      "          'killed': 2,\n",
      "          'characters': 2,\n",
      "          'interesting': 2,\n",
      "          'horrid': 2,\n",
      "          'scene': 2,\n",
      "          'job': 2,\n",
      "          'technical': 2,\n",
      "          'even': 2,\n",
      "          'evil': 2,\n",
      "          'worst': 2,\n",
      "          'time': 2,\n",
      "          'dog': 1,\n",
      "          'sleep': 1,\n",
      "          'couch': 1,\n",
      "          'sidewalk': 1,\n",
      "          'sit': 1,\n",
      "          'week': 1,\n",
      "          'child': 1,\n",
      "          'reading': 1,\n",
      "          'military': 1,\n",
      "          'school': 1,\n",
      "          'catalogs': 1,\n",
      "          'ship': 1,\n",
      "          'wouldnt': 1,\n",
      "          'titanic': 1,\n",
      "          'imply': 1,\n",
      "          'glamor': 1,\n",
      "          'tragedy': 1,\n",
      "          'exxon': 1,\n",
      "          'valdez': 1,\n",
      "          'personal': 1,\n",
      "          'note': 1,\n",
      "          'saw': 1,\n",
      "          'road': 1,\n",
      "          'houston': 1,\n",
      "          'business': 1,\n",
      "          'trip': 1,\n",
      "          'nfor': 1,\n",
      "          'whatever': 1,\n",
      "          'hotels': 1,\n",
      "          'cable': 1,\n",
      "          'system': 1,\n",
      "          'wasnt': 1,\n",
      "          'showing': 1,\n",
      "          'astrosbraves': 1,\n",
      "          'featured': 1,\n",
      "          'randy': 1,\n",
      "          'johnsongreg': 1,\n",
      "          'maddux': 1,\n",
      "          'matchup': 1,\n",
      "          'forced': 1,\n",
      "          'pay': 1,\n",
      "          'full': 1,\n",
      "          'price': 1,\n",
      "          'instead': 1,\n",
      "          'watching': 1,\n",
      "          'perfectly': 1,\n",
      "          'baseball': 1,\n",
      "          'invective': 1,\n",
      "          'deserved': 1,\n",
      "          'perspective': 1,\n",
      "          'leave': 1,\n",
      "          'asking': 1,\n",
      "          'theater': 1,\n",
      "          'wheres': 1,\n",
      "          'manager': 1,\n",
      "          'get': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'drive': 1,\n",
      "          'home': 1,\n",
      "          'wreck': 1,\n",
      "          'rentacar': 1,\n",
      "          'sue': 1,\n",
      "          'nis': 1,\n",
      "          'late': 1,\n",
      "          'academy': 1,\n",
      "          'revoke': 1,\n",
      "          'nicolas': 1,\n",
      "          'oscar': 1,\n",
      "          'nwill': 1,\n",
      "          'someone': 1,\n",
      "          'please': 1,\n",
      "          'im': 1,\n",
      "          'begging': 1,\n",
      "          'gary': 1,\n",
      "          'role': 1,\n",
      "          'talents': 1,\n",
      "          'nand': 1,\n",
      "          'exactly': 1,\n",
      "          'end': 1,\n",
      "          'wearing': 1,\n",
      "          'exact': 1,\n",
      "          'shirt': 1,\n",
      "          'tie': 1,\n",
      "          'first': 1,\n",
      "          'glaringly': 1,\n",
      "          'wrong': 1,\n",
      "          'thing': 1,\n",
      "          'youve': 1,\n",
      "          'consider': 1,\n",
      "          'fortunate': 1,\n",
      "          'genius': 1,\n",
      "          'nit': 1,\n",
      "          'manages': 1,\n",
      "          'convey': 1,\n",
      "          'everything': 1,\n",
      "          'noteworthy': 1,\n",
      "          'exuberance': 1,\n",
      "          'performance': 1,\n",
      "          'thoroughly': 1,\n",
      "          'corrupt': 1,\n",
      "          'policeman': 1,\n",
      "          'essential': 1,\n",
      "          'elements': 1,\n",
      "          'marginal': 1,\n",
      "          'expert': 1,\n",
      "          'craftsman': 1,\n",
      "          'pieced': 1,\n",
      "          'together': 1,\n",
      "          'fairly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'snippets': 1,\n",
      "          'wretched': 1,\n",
      "          'praise': 1,\n",
      "          'percentage': 1,\n",
      "          'gross': 1,\n",
      "          'oscars': 1,\n",
      "          'farfetched': 1,\n",
      "          'set': 1,\n",
      "          'overwhelmingly': 1,\n",
      "          'disappointing': 1,\n",
      "          'sets': 1,\n",
      "          'promising': 1,\n",
      "          'detective': 1,\n",
      "          'ricky': 1,\n",
      "          'santoro': 1,\n",
      "          'solve': 1,\n",
      "          'shot': 1,\n",
      "          'defense': 1,\n",
      "          'payperview': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'multiple': 1,\n",
      "          'problems': 1,\n",
      "          'afoot': 1,\n",
      "          'gives': 1,\n",
      "          'away': 1,\n",
      "          'shooter': 1,\n",
      "          'instantly': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'involved': 1,\n",
      "          'conspiracy': 1,\n",
      "          'films': 1,\n",
      "          'secret': 1,\n",
      "          'hohum': 1,\n",
      "          'anyone': 1,\n",
      "          'watched': 1,\n",
      "          'aware': 1,\n",
      "          'law': 1,\n",
      "          'economy': 1,\n",
      "          'figure': 1,\n",
      "          'top': 1,\n",
      "          'conspirator': 1,\n",
      "          'nwithout': 1,\n",
      "          'dialogue': 1,\n",
      "          'care': 1,\n",
      "          'failure': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'possible': 1,\n",
      "          'level': 1,\n",
      "          'nas': 1,\n",
      "          'hated': 1,\n",
      "          'tiny': 1,\n",
      "          'bit': 1,\n",
      "          'credit': 1,\n",
      "          'nde': 1,\n",
      "          'maddeningly': 1,\n",
      "          'inconsistent': 1,\n",
      "          'nhe': 1,\n",
      "          'day': 1,\n",
      "          'create': 1,\n",
      "          'amazingly': 1,\n",
      "          'welldone': 1,\n",
      "          'untouchables': 1,\n",
      "          'carlitos': 1,\n",
      "          'non': 1,\n",
      "          'offdays': 1,\n",
      "          'well': 1,\n",
      "          'bonfire': 1,\n",
      "          'vanities': 1,\n",
      "          'raising': 1,\n",
      "          'cain': 1,\n",
      "          'falls': 1,\n",
      "          'couple': 1,\n",
      "          'moments': 1,\n",
      "          'worth': 1,\n",
      "          'strictly': 1,\n",
      "          'filmschool': 1,\n",
      "          'degreeofdifficulty': 1,\n",
      "          'value': 1,\n",
      "          'opening': 1,\n",
      "          'introducing': 1,\n",
      "          'character': 1,\n",
      "          'virtuoso': 1,\n",
      "          'director': 1,\n",
      "          'actor': 1,\n",
      "          'nthere': 1,\n",
      "          'splitscreen': 1,\n",
      "          'chase': 1,\n",
      "          'looks': 1,\n",
      "          'pretty': 1,\n",
      "          'followed': 1,\n",
      "          'gods': 1,\n",
      "          'eye': 1,\n",
      "          'view': 1,\n",
      "          'bank': 1,\n",
      "          'hotel': 1,\n",
      "          'rooms': 1,\n",
      "          'thats': 1,\n",
      "          'imaginitively': 1,\n",
      "          'done': 1,\n",
      "          'whats': 1,\n",
      "          'called': 1,\n",
      "          'giving': 1,\n",
      "          'devil': 1,\n",
      "          'due': 1,\n",
      "          'skill': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'making': 1,\n",
      "          'nplacing': 1,\n",
      "          'holes': 1,\n",
      "          'moment': 1,\n",
      "          'features': 1,\n",
      "          'easily': 1,\n",
      "          'cinema': 1,\n",
      "          'history': 1,\n",
      "          'george': 1,\n",
      "          'foreman': 1,\n",
      "          'shape': 1,\n",
      "          'boxers': 1,\n",
      "          'hurricane': 1,\n",
      "          'exists': 1,\n",
      "          'punctuate': 1,\n",
      "          'significant': 1,\n",
      "          'plotlines': 1,\n",
      "          'portentuous': 1,\n",
      "          'thunderclaps': 1,\n",
      "          'perhaps': 1,\n",
      "          'overly': 1,\n",
      "          'drawn': 1,\n",
      "          'ending': 1,\n",
      "          'years': 1,\n",
      "          'criminal': 1,\n",
      "          'act': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'ncage': 1,\n",
      "          'yes': 1,\n",
      "          'deserve': 1,\n",
      "          'audience': 1,\n",
      "          'refund': 1,\n",
      "          'popcorn': 1,\n",
      "          'coupon': 1,\n",
      "          'ever': 1,\n",
      "          'restore': 1,\n",
      "          'weve': 1,\n",
      "          'spent': 1,\n",
      "          'wash': 1,\n",
      "          'awful': 1,\n",
      "          'images': 1,\n",
      "          'mind': 1,\n",
      "          'nhowever': 1,\n",
      "          'left': 1,\n",
      "          'consolation': 1,\n",
      "          'warned': 1,\n",
      "          'title': 1,\n",
      "          'nothing': 1,\n",
      "          'roll': 1,\n",
      "          'craps': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 17,\n",
      "          'nand': 10,\n",
      "          'batman': 10,\n",
      "          'ni': 10,\n",
      "          'good': 9,\n",
      "          'like': 9,\n",
      "          'nbut': 8,\n",
      "          'film': 7,\n",
      "          'much': 7,\n",
      "          'nthis': 7,\n",
      "          'joel': 7,\n",
      "          'nthe': 7,\n",
      "          'nhes': 7,\n",
      "          'time': 7,\n",
      "          'last': 6,\n",
      "          'get': 6,\n",
      "          'series': 6,\n",
      "          'films': 6,\n",
      "          'nthats': 5,\n",
      "          'big': 5,\n",
      "          'nits': 5,\n",
      "          'elle': 5,\n",
      "          'gets': 5,\n",
      "          'also': 5,\n",
      "          'uma': 5,\n",
      "          'two': 5,\n",
      "          'batgirl': 4,\n",
      "          'freeze': 4,\n",
      "          'dying': 4,\n",
      "          'hes': 4,\n",
      "          'nothing': 4,\n",
      "          'almost': 4,\n",
      "          'part': 4,\n",
      "          'shes': 4,\n",
      "          'love': 4,\n",
      "          'around': 4,\n",
      "          'see': 4,\n",
      "          'butler': 3,\n",
      "          'alfred': 3,\n",
      "          'michael': 3,\n",
      "          'think': 3,\n",
      "          'need': 3,\n",
      "          'subplot': 3,\n",
      "          'never': 3,\n",
      "          'better': 3,\n",
      "          'schumacher': 3,\n",
      "          'first': 3,\n",
      "          'mr': 3,\n",
      "          'wife': 3,\n",
      "          'villain': 3,\n",
      "          'george': 3,\n",
      "          'nmeanwhile': 3,\n",
      "          'another': 3,\n",
      "          'poison': 3,\n",
      "          'nshe': 3,\n",
      "          'woman': 3,\n",
      "          'really': 3,\n",
      "          'bruce': 3,\n",
      "          'know': 3,\n",
      "          'seems': 3,\n",
      "          'although': 3,\n",
      "          'saw': 3,\n",
      "          'next': 3,\n",
      "          'makes': 3,\n",
      "          'parts': 3,\n",
      "          'scene': 3,\n",
      "          'great': 2,\n",
      "          'ncut': 2,\n",
      "          'villains': 2,\n",
      "          'characters': 2,\n",
      "          'npoor': 2,\n",
      "          'scenes': 2,\n",
      "          'way': 2,\n",
      "          'fourth': 2,\n",
      "          'second': 2,\n",
      "          'director': 2,\n",
      "          'worst': 2,\n",
      "          'since': 2,\n",
      "          'anticlimactic': 2,\n",
      "          'gon': 2,\n",
      "          'na': 2,\n",
      "          'suck': 2,\n",
      "          'fun': 2,\n",
      "          'forever': 2,\n",
      "          'action': 2,\n",
      "          'bit': 2,\n",
      "          'whos': 2,\n",
      "          'disease': 2,\n",
      "          'new': 2,\n",
      "          'weird': 2,\n",
      "          'body': 2,\n",
      "          'robin': 2,\n",
      "          'chris': 2,\n",
      "          'growing': 2,\n",
      "          'apart': 2,\n",
      "          'ivy': 2,\n",
      "          'scientist': 2,\n",
      "          'john': 2,\n",
      "          'kills': 2,\n",
      "          'chemicals': 2,\n",
      "          'killed': 2,\n",
      "          'ever': 2,\n",
      "          'dont': 2,\n",
      "          'ask': 2,\n",
      "          'cant': 2,\n",
      "          'ya': 2,\n",
      "          'scent': 2,\n",
      "          'people': 2,\n",
      "          'away': 2,\n",
      "          'soon': 2,\n",
      "          'well': 2,\n",
      "          'even': 2,\n",
      "          'year': 2,\n",
      "          'want': 2,\n",
      "          'world': 2,\n",
      "          'plants': 2,\n",
      "          'must': 2,\n",
      "          'together': 2,\n",
      "          'family': 2,\n",
      "          'nthere': 2,\n",
      "          'whole': 2,\n",
      "          'right': 2,\n",
      "          'nice': 2,\n",
      "          'couple': 2,\n",
      "          'lines': 2,\n",
      "          'thats': 2,\n",
      "          'nfor': 2,\n",
      "          'clooney': 2,\n",
      "          'guy': 2,\n",
      "          'horrible': 2,\n",
      "          'keaton': 2,\n",
      "          'quintessential': 2,\n",
      "          'im': 2,\n",
      "          'theyll': 2,\n",
      "          'interesting': 2,\n",
      "          'somewhat': 2,\n",
      "          'sympathetic': 2,\n",
      "          'nwe': 2,\n",
      "          'feel': 2,\n",
      "          'kill': 2,\n",
      "          'isnt': 2,\n",
      "          'hokey': 2,\n",
      "          'kinda': 2,\n",
      "          'points': 2,\n",
      "          'nwhen': 2,\n",
      "          'point': 2,\n",
      "          'best': 2,\n",
      "          'cool': 2,\n",
      "          'act': 2,\n",
      "          'stupid': 2,\n",
      "          'loved': 2,\n",
      "          'poor': 2,\n",
      "          'couch': 2,\n",
      "          'nin': 2,\n",
      "          'lot': 2,\n",
      "          'show': 2,\n",
      "          'laughed': 2,\n",
      "          'serve': 2,\n",
      "          'word': 2,\n",
      "          'person': 2,\n",
      "          'costuming': 2,\n",
      "          'line': 1,\n",
      "          'near': 1,\n",
      "          'honor': 1,\n",
      "          'ubergod': 1,\n",
      "          'gough': 1,\n",
      "          'saying': 1,\n",
      "          'bigger': 1,\n",
      "          'bat': 1,\n",
      "          'cave': 1,\n",
      "          'something': 1,\n",
      "          'note': 1,\n",
      "          'exactly': 1,\n",
      "          'damn': 1,\n",
      "          'handle': 1,\n",
      "          'dosage': 1,\n",
      "          'left': 1,\n",
      "          'behind': 1,\n",
      "          'mere': 1,\n",
      "          '3': 1,\n",
      "          'introduced': 1,\n",
      "          'finished': 1,\n",
      "          'shape': 1,\n",
      "          'form': 1,\n",
      "          'deserves': 1,\n",
      "          'gigantic': 1,\n",
      "          'declining': 1,\n",
      "          'stunning': 1,\n",
      "          'debut': 1,\n",
      "          'followed': 1,\n",
      "          'almostasstunning': 1,\n",
      "          'sequel': 1,\n",
      "          'third': 1,\n",
      "          'ones': 1,\n",
      "          'knew': 1,\n",
      "          'make': 1,\n",
      "          'though': 1,\n",
      "          'n': 1,\n",
      "          'bore': 1,\n",
      "          'overproduced': 1,\n",
      "          'sequences': 1,\n",
      "          'shallow': 1,\n",
      "          'mean': 1,\n",
      "          'nim': 1,\n",
      "          'put': 1,\n",
      "          'plot': 1,\n",
      "          'paragraph': 1,\n",
      "          'ahnold': 1,\n",
      "          'become': 1,\n",
      "          'days': 1,\n",
      "          'huge': 1,\n",
      "          'exscientist': 1,\n",
      "          'fell': 1,\n",
      "          'liquid': 1,\n",
      "          'hello': 1,\n",
      "          'njoker': 1,\n",
      "          'temperature': 1,\n",
      "          'fat': 1,\n",
      "          'zero': 1,\n",
      "          'blue': 1,\n",
      "          'nbatman': 1,\n",
      "          'fight': 1,\n",
      "          'find': 1,\n",
      "          'theyre': 1,\n",
      "          'shows': 1,\n",
      "          'dorky': 1,\n",
      "          'chick': 1,\n",
      "          'working': 1,\n",
      "          'flowers': 1,\n",
      "          'south': 1,\n",
      "          'america': 1,\n",
      "          'twistet': 1,\n",
      "          'glover': 1,\n",
      "          'finds': 1,\n",
      "          'used': 1,\n",
      "          'research': 1,\n",
      "          'develop': 1,\n",
      "          'uberman': 1,\n",
      "          'bane': 1,\n",
      "          'basically': 1,\n",
      "          'man': 1,\n",
      "          'pumped': 1,\n",
      "          'probably': 1,\n",
      "          'personality': 1,\n",
      "          'emerges': 1,\n",
      "          'cause': 1,\n",
      "          'tell': 1,\n",
      "          'sexy': 1,\n",
      "          'real': 1,\n",
      "          'kiss': 1,\n",
      "          'aphrodiasiatic': 1,\n",
      "          'blows': 1,\n",
      "          'starts': 1,\n",
      "          'tear': 1,\n",
      "          'dynamic': 1,\n",
      "          'duo': 1,\n",
      "          'alfreds': 1,\n",
      "          'freezes': 1,\n",
      "          'earlier': 1,\n",
      "          'state': 1,\n",
      "          'niece': 1,\n",
      "          'barbara': 1,\n",
      "          'alicia': 1,\n",
      "          'comes': 1,\n",
      "          'oxford': 1,\n",
      "          'without': 1,\n",
      "          'english': 1,\n",
      "          'accent': 1,\n",
      "          'trade': 1,\n",
      "          'takes': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'becomes': 1,\n",
      "          'unfinished': 1,\n",
      "          'batmans': 1,\n",
      "          'alterego': 1,\n",
      "          'forgot': 1,\n",
      "          'dating': 1,\n",
      "          'lovely': 1,\n",
      "          'julie': 1,\n",
      "          'madison': 1,\n",
      "          'lovlier': 1,\n",
      "          'macpherson': 1,\n",
      "          'wants': 1,\n",
      "          'commitment': 1,\n",
      "          'says': 1,\n",
      "          'nend': 1,\n",
      "          'nmr': 1,\n",
      "          'ultimately': 1,\n",
      "          'teams': 1,\n",
      "          'take': 1,\n",
      "          'population': 1,\n",
      "          'trio': 1,\n",
      "          'team': 1,\n",
      "          'beat': 1,\n",
      "          'go': 1,\n",
      "          'nnot': 1,\n",
      "          'story': 1,\n",
      "          'context': 1,\n",
      "          'clues': 1,\n",
      "          'ntoo': 1,\n",
      "          'nright': 1,\n",
      "          'patched': 1,\n",
      "          'little': 1,\n",
      "          'ideas': 1,\n",
      "          'would': 1,\n",
      "          'made': 1,\n",
      "          'sequels': 1,\n",
      "          'nhowever': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'nicely': 1,\n",
      "          'balanced': 1,\n",
      "          'villainbatman': 1,\n",
      "          'storyline': 1,\n",
      "          'wonderfully': 1,\n",
      "          'nhe': 1,\n",
      "          'corny': 1,\n",
      "          'speeches': 1,\n",
      "          'clever': 1,\n",
      "          'nmaybe': 1,\n",
      "          'stunts': 1,\n",
      "          'comment': 1,\n",
      "          'hardly': 1,\n",
      "          'dialogue': 1,\n",
      "          'say': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'robotic': 1,\n",
      "          'fake': 1,\n",
      "          'episode': 1,\n",
      "          'ngeorge': 1,\n",
      "          'sure': 1,\n",
      "          'decide': 1,\n",
      "          'renovate': 1,\n",
      "          'critically': 1,\n",
      "          'murdered': 1,\n",
      "          'sorry': 1,\n",
      "          'effort': 1,\n",
      "          'script': 1,\n",
      "          'shine': 1,\n",
      "          'still': 1,\n",
      "          'job': 1,\n",
      "          'according': 1,\n",
      "          'nlast': 1,\n",
      "          'brawn': 1,\n",
      "          'face': 1,\n",
      "          'played': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'brainscomedy': 1,\n",
      "          'supplied': 1,\n",
      "          'riddler': 1,\n",
      "          'realized': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'hatable': 1,\n",
      "          'bad': 1,\n",
      "          'mentalphysical': 1,\n",
      "          'collapse': 1,\n",
      "          'everyone': 1,\n",
      "          'narnold': 1,\n",
      "          'watches': 1,\n",
      "          'old': 1,\n",
      "          'movies': 1,\n",
      "          'actually': 1,\n",
      "          'looks': 1,\n",
      "          'somber': 1,\n",
      "          'nwow': 1,\n",
      "          'seductive': 1,\n",
      "          'character': 1,\n",
      "          'getting': 1,\n",
      "          'hamminess': 1,\n",
      "          'seductiveness': 1,\n",
      "          'parodying': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'nshes': 1,\n",
      "          'incredibly': 1,\n",
      "          'hot': 1,\n",
      "          'movie': 1,\n",
      "          'pretty': 1,\n",
      "          'star': 1,\n",
      "          'nas': 1,\n",
      "          'lower': 1,\n",
      "          'batpeople': 1,\n",
      "          'work': 1,\n",
      "          'quieter': 1,\n",
      "          'plain': 1,\n",
      "          'fried': 1,\n",
      "          'green': 1,\n",
      "          'tomotoes': 1,\n",
      "          'nalicia': 1,\n",
      "          'girl': 1,\n",
      "          'particularly': 1,\n",
      "          'hypotheitically': 1,\n",
      "          'clueless': 1,\n",
      "          'sound': 1,\n",
      "          'mushymouth': 1,\n",
      "          'fairness': 1,\n",
      "          'virtually': 1,\n",
      "          'njoel': 1,\n",
      "          'occasionally': 1,\n",
      "          'stuff': 1,\n",
      "          'catfight': 1,\n",
      "          'hypothetically': 1,\n",
      "          'us': 1,\n",
      "          'sirens': 1,\n",
      "          'nit': 1,\n",
      "          'footage': 1,\n",
      "          'edit': 1,\n",
      "          'hour': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'friend': 1,\n",
      "          'noticed': 1,\n",
      "          'nnow': 1,\n",
      "          'listen': 1,\n",
      "          'every': 1,\n",
      "          'flick': 1,\n",
      "          'theres': 1,\n",
      "          'original': 1,\n",
      "          'vicki': 1,\n",
      "          'returns': 1,\n",
      "          'makeout': 1,\n",
      "          'selena': 1,\n",
      "          'chat': 1,\n",
      "          'nicole': 1,\n",
      "          'nexttonothing': 1,\n",
      "          'till': 1,\n",
      "          'end': 1,\n",
      "          'suddenly': 1,\n",
      "          'nfortunately': 1,\n",
      "          'always': 1,\n",
      "          'reliable': 1,\n",
      "          'case': 1,\n",
      "          'didnt': 1,\n",
      "          'life': 1,\n",
      "          'god': 1,\n",
      "          'father': 1,\n",
      "          'figure': 1,\n",
      "          'got': 1,\n",
      "          'robe': 1,\n",
      "          'tux': 1,\n",
      "          'freaking': 1,\n",
      "          'idea': 1,\n",
      "          'might': 1,\n",
      "          'unhappy': 1,\n",
      "          'answered': 1,\n",
      "          'cluttered': 1,\n",
      "          'defense': 1,\n",
      "          'unfortunately': 1,\n",
      "          'touches': 1,\n",
      "          'asylum': 1,\n",
      "          'patients': 1,\n",
      "          'belongings': 1,\n",
      "          'room': 1,\n",
      "          'riddlers': 1,\n",
      "          'costume': 1,\n",
      "          'biker': 1,\n",
      "          'involving': 1,\n",
      "          'handled': 1,\n",
      "          'past': 1,\n",
      "          'initiation': 1,\n",
      "          'period': 1,\n",
      "          'coolio': 1,\n",
      "          'bunch': 1,\n",
      "          'badasses': 1,\n",
      "          'dressed': 1,\n",
      "          'droogs': 1,\n",
      "          'clockwork': 1,\n",
      "          'orange': 1,\n",
      "          'falls': 1,\n",
      "          'fiveminute': 1,\n",
      "          'mark': 1,\n",
      "          'enormously': 1,\n",
      "          'long': 1,\n",
      "          'sequence': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'ndid': 1,\n",
      "          'longline': 1,\n",
      "          'demonstrate': 1,\n",
      "          'intelligent': 1,\n",
      "          'nowadays': 1,\n",
      "          'npeople': 1,\n",
      "          'fed': 1,\n",
      "          'mouth': 1,\n",
      "          'lost': 1,\n",
      "          'indy': 1,\n",
      "          'grossed': 1,\n",
      "          'strong': 1,\n",
      "          'boxoffice': 1,\n",
      "          'initative': 1,\n",
      "          'die': 1,\n",
      "          'week': 1,\n",
      "          'grapevine': 1,\n",
      "          'bigbudget': 1,\n",
      "          'aciton': 1,\n",
      "          'pics': 1,\n",
      "          'woos': 1,\n",
      "          'faceoff': 1,\n",
      "          'barry': 1,\n",
      "          'sonnenfelds': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'catch': 1,\n",
      "          'wave': 1,\n",
      "          'early': 1,\n",
      "          'artiste': 1,\n",
      "          'flatliners': 1,\n",
      "          'eccentric': 1,\n",
      "          'quotes': 1,\n",
      "          'admits': 1,\n",
      "          'mediocre': 1,\n",
      "          'woody': 1,\n",
      "          'allens': 1,\n",
      "          'sleeper': 1,\n",
      "          'look': 1,\n",
      "          'nazi': 1,\n",
      "          'number': 1,\n",
      "          'rocked': 1,\n",
      "          'going': 1,\n",
      "          'watch': 1,\n",
      "          'repeatedly': 1,\n",
      "          'three': 1,\n",
      "          'nhopefully': 1,\n",
      "          'springboard': 1,\n",
      "          'maybe': 1,\n",
      "          'smart': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'catwoman': 1,\n",
      "          'hope': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'virus': 9,\n",
      "          'even': 9,\n",
      "          'film': 9,\n",
      "          'bruno': 7,\n",
      "          'movie': 7,\n",
      "          'one': 7,\n",
      "          'cameron': 5,\n",
      "          'could': 5,\n",
      "          'say': 5,\n",
      "          'fact': 5,\n",
      "          'least': 5,\n",
      "          'like': 5,\n",
      "          'alien': 5,\n",
      "          'aliens': 4,\n",
      "          'back': 4,\n",
      "          'years': 4,\n",
      "          'make': 4,\n",
      "          'upon': 4,\n",
      "          'nand': 4,\n",
      "          'dont': 4,\n",
      "          'see': 4,\n",
      "          'universal': 4,\n",
      "          'action': 4,\n",
      "          'curtis': 3,\n",
      "          'ni': 3,\n",
      "          'john': 3,\n",
      "          'early': 3,\n",
      "          'nin': 3,\n",
      "          'another': 3,\n",
      "          'group': 3,\n",
      "          'worked': 3,\n",
      "          'may': 3,\n",
      "          'part': 3,\n",
      "          'n': 3,\n",
      "          'cruiser': 3,\n",
      "          'nthey': 3,\n",
      "          'interesting': 3,\n",
      "          'lead': 3,\n",
      "          'without': 3,\n",
      "          'go': 3,\n",
      "          'mostly': 3,\n",
      "          'shot': 3,\n",
      "          'well': 3,\n",
      "          'making': 3,\n",
      "          'jamie': 2,\n",
      "          'lee': 2,\n",
      "          'donald': 2,\n",
      "          'sutherland': 2,\n",
      "          'im': 2,\n",
      "          'comes': 2,\n",
      "          'us': 2,\n",
      "          'hard': 2,\n",
      "          'mr': 2,\n",
      "          'camerons': 2,\n",
      "          'long': 2,\n",
      "          'line': 2,\n",
      "          'find': 2,\n",
      "          'get': 2,\n",
      "          'first': 2,\n",
      "          'albeit': 2,\n",
      "          'thing': 2,\n",
      "          'happen': 2,\n",
      "          'believe': 2,\n",
      "          'capacity': 2,\n",
      "          'feature': 2,\n",
      "          'wonder': 2,\n",
      "          'man': 2,\n",
      "          'director': 2,\n",
      "          'aimed': 2,\n",
      "          'zgrade': 2,\n",
      "          'schlockfest': 2,\n",
      "          'respectable': 2,\n",
      "          'nthe': 2,\n",
      "          'seems': 2,\n",
      "          'also': 2,\n",
      "          'peter': 2,\n",
      "          'stumble': 2,\n",
      "          'lifeform': 2,\n",
      "          'russian': 2,\n",
      "          'board': 2,\n",
      "          'machines': 2,\n",
      "          'ha': 2,\n",
      "          'second': 2,\n",
      "          'bit': 2,\n",
      "          'cast': 2,\n",
      "          'characters': 2,\n",
      "          'captain': 2,\n",
      "          'couple': 2,\n",
      "          'soldiers': 2,\n",
      "          'whole': 2,\n",
      "          'instead': 2,\n",
      "          'cliche': 2,\n",
      "          'give': 2,\n",
      "          'damn': 2,\n",
      "          'almost': 2,\n",
      "          'horrific': 2,\n",
      "          'really': 2,\n",
      "          'favorite': 2,\n",
      "          'studios': 2,\n",
      "          'much': 2,\n",
      "          'read': 2,\n",
      "          'still': 2,\n",
      "          'believable': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'godzilla': 2,\n",
      "          'light': 2,\n",
      "          'sit': 2,\n",
      "          'basically': 2,\n",
      "          'follow': 2,\n",
      "          'scene': 2,\n",
      "          'end': 2,\n",
      "          'ship': 2,\n",
      "          'dramatic': 2,\n",
      "          'movies': 2,\n",
      "          'millions': 2,\n",
      "          'contempt': 2,\n",
      "          'writers': 1,\n",
      "          'dennis': 1,\n",
      "          'feldman': 1,\n",
      "          'jonathan': 1,\n",
      "          'hensleigh': 1,\n",
      "          'based': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'chuck': 1,\n",
      "          'pfarrer': 1,\n",
      "          'nstarring': 1,\n",
      "          'william': 1,\n",
      "          'baldwin': 1,\n",
      "          'joanna': 1,\n",
      "          'pacula': 1,\n",
      "          'sherman': 1,\n",
      "          'augustus': 1,\n",
      "          'marshall': 1,\n",
      "          'bell': 1,\n",
      "          'cliff': 1,\n",
      "          'julio': 1,\n",
      "          'oscar': 1,\n",
      "          'mechoso': 1,\n",
      "          'suppose': 1,\n",
      "          'extremely': 1,\n",
      "          'surprised': 1,\n",
      "          'deciple': 1,\n",
      "          'james': 1,\n",
      "          'strain': 1,\n",
      "          'real': 1,\n",
      "          'obvious': 1,\n",
      "          'given': 1,\n",
      "          'particuarly': 1,\n",
      "          'looking': 1,\n",
      "          'standpoint': 1,\n",
      "          'works': 1,\n",
      "          'yet': 1,\n",
      "          'actionhorrorparanoia': 1,\n",
      "          'thrillers': 1,\n",
      "          'vein': 1,\n",
      "          'people': 1,\n",
      "          'dropped': 1,\n",
      "          'mysterious': 1,\n",
      "          'situation': 1,\n",
      "          'mortallythreatening': 1,\n",
      "          'entity': 1,\n",
      "          'textbook': 1,\n",
      "          'example': 1,\n",
      "          'hailing': 1,\n",
      "          'way': 1,\n",
      "          'talkies': 1,\n",
      "          'maybe': 1,\n",
      "          'pictures': 1,\n",
      "          'redeveloped': 1,\n",
      "          '1986': 1,\n",
      "          'blockbuster': 1,\n",
      "          'earned': 1,\n",
      "          'esteem': 1,\n",
      "          'bigger': 1,\n",
      "          'budgets': 1,\n",
      "          'come': 1,\n",
      "          'future': 1,\n",
      "          'nno': 1,\n",
      "          'quasilandmark': 1,\n",
      "          'studied': 1,\n",
      "          'wing': 1,\n",
      "          'beginning': 1,\n",
      "          'exactly': 1,\n",
      "          'learn': 1,\n",
      "          'mediocre': 1,\n",
      "          'anything': 1,\n",
      "          'knows': 1,\n",
      "          'detraction': 1,\n",
      "          'fairly': 1,\n",
      "          'budget': 1,\n",
      "          'borrow': 1,\n",
      "          'plot': 1,\n",
      "          'last': 1,\n",
      "          'similarlyfated': 1,\n",
      "          'deep': 1,\n",
      "          'rising': 1,\n",
      "          'clunkish': 1,\n",
      "          'bmovie': 1,\n",
      "          '80s': 1,\n",
      "          'called': 1,\n",
      "          'leviathan': 1,\n",
      "          'underwater': 1,\n",
      "          'thriller': 1,\n",
      "          'starring': 1,\n",
      "          'weller': 1,\n",
      "          'richard': 1,\n",
      "          'crenna': 1,\n",
      "          'hector': 1,\n",
      "          'elizando': 1,\n",
      "          'daniel': 1,\n",
      "          'stern': 1,\n",
      "          'miners': 1,\n",
      "          'carpenters': 1,\n",
      "          'twisted': 1,\n",
      "          'remake': 1,\n",
      "          'similar': 1,\n",
      "          'uh': 1,\n",
      "          'selling': 1,\n",
      "          'point': 1,\n",
      "          'sailors': 1,\n",
      "          'boat': 1,\n",
      "          'dead': 1,\n",
      "          'water': 1,\n",
      "          'break': 1,\n",
      "          'pairs': 1,\n",
      "          'investigate': 1,\n",
      "          'form': 1,\n",
      "          'energy': 1,\n",
      "          'taken': 1,\n",
      "          'meshed': 1,\n",
      "          'parts': 1,\n",
      "          'corpses': 1,\n",
      "          'deemed': 1,\n",
      "          'humankind': 1,\n",
      "          'enemy': 1,\n",
      "          'misquote': 1,\n",
      "          'dictionary': 1,\n",
      "          'nnot': 1,\n",
      "          'scary': 1,\n",
      "          'involving': 1,\n",
      "          'start': 1,\n",
      "          'chintzy': 1,\n",
      "          'bondian': 1,\n",
      "          'opening': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'destruction': 1,\n",
      "          'via': 1,\n",
      "          'satellite': 1,\n",
      "          'transmission': 1,\n",
      "          'mir': 1,\n",
      "          'destroying': 1,\n",
      "          'suspense': 1,\n",
      "          'fails': 1,\n",
      "          'bring': 1,\n",
      "          'chracters': 1,\n",
      "          'nof': 1,\n",
      "          'motley': 1,\n",
      "          'crew': 1,\n",
      "          'choses': 1,\n",
      "          'potentially': 1,\n",
      "          'eccentric': 1,\n",
      "          'woman': 1,\n",
      "          'skipper': 1,\n",
      "          'masculine': 1,\n",
      "          'potentialromanticinterest': 1,\n",
      "          'drunken': 1,\n",
      "          'black': 1,\n",
      "          'technician': 1,\n",
      "          'tatooed': 1,\n",
      "          'aborigine': 1,\n",
      "          'manic': 1,\n",
      "          'survivor': 1,\n",
      "          'candidates': 1,\n",
      "          'food': 1,\n",
      "          'none': 1,\n",
      "          'dimensional': 1,\n",
      "          'thin': 1,\n",
      "          'plain': 1,\n",
      "          'piece': 1,\n",
      "          'writing': 1,\n",
      "          'paper': 1,\n",
      "          'traditional': 1,\n",
      "          'argument': 1,\n",
      "          'films': 1,\n",
      "          'want': 1,\n",
      "          'eaten': 1,\n",
      "          'played': 1,\n",
      "          'karma': 1,\n",
      "          'arrogant': 1,\n",
      "          'plusside': 1,\n",
      "          'opposite': 1,\n",
      "          'goes': 1,\n",
      "          'acting': 1,\n",
      "          'everyone': 1,\n",
      "          'ranges': 1,\n",
      "          'subpar': 1,\n",
      "          'former': 1,\n",
      "          'showing': 1,\n",
      "          'strong': 1,\n",
      "          'female': 1,\n",
      "          'latter': 1,\n",
      "          'pains': 1,\n",
      "          'hes': 1,\n",
      "          'particular': 1,\n",
      "          'mine': 1,\n",
      "          'plays': 1,\n",
      "          'poorly': 1,\n",
      "          'credibility': 1,\n",
      "          'performanceofwhichheshouldbeashamed': 1,\n",
      "          'nlike': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'legends': 1,\n",
      "          'fall': 1,\n",
      "          'scrooooooo': 1,\n",
      "          'em': 1,\n",
      "          'thus': 1,\n",
      "          'embroidered': 1,\n",
      "          'membrance': 1,\n",
      "          'otoole': 1,\n",
      "          'caligula': 1,\n",
      "          'ngreat': 1,\n",
      "          'actor': 1,\n",
      "          'performance': 1,\n",
      "          'nit': 1,\n",
      "          'happens': 1,\n",
      "          'every': 1,\n",
      "          'helps': 1,\n",
      "          'sutherlands': 1,\n",
      "          'career': 1,\n",
      "          'except': 1,\n",
      "          'elite': 1,\n",
      "          'bothered': 1,\n",
      "          'nthough': 1,\n",
      "          'sat': 1,\n",
      "          'shelves': 1,\n",
      "          'two': 1,\n",
      "          'waiting': 1,\n",
      "          'released': 1,\n",
      "          'money': 1,\n",
      "          'possibly': 1,\n",
      "          'january': 1,\n",
      "          'everyones': 1,\n",
      "          'trying': 1,\n",
      "          'catch': 1,\n",
      "          'potential': 1,\n",
      "          'oscarnominees': 1,\n",
      "          'show': 1,\n",
      "          'shelled': 1,\n",
      "          'pretty': 1,\n",
      "          'penny': 1,\n",
      "          'laden': 1,\n",
      "          'complex': 1,\n",
      "          'machinery': 1,\n",
      "          'boasts': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'course': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'large': 1,\n",
      "          'abandoned': 1,\n",
      "          'night': 1,\n",
      "          'dawn': 1,\n",
      "          'use': 1,\n",
      "          'lights': 1,\n",
      "          'productivity': 1,\n",
      "          'creatures': 1,\n",
      "          'pursuit': 1,\n",
      "          'human': 1,\n",
      "          'prey': 1,\n",
      "          'hollywood': 1,\n",
      "          'dark': 1,\n",
      "          'enough': 1,\n",
      "          'rent': 1,\n",
      "          'tell': 1,\n",
      "          'theres': 1,\n",
      "          'either': 1,\n",
      "          'entirety': 1,\n",
      "          'wide': 1,\n",
      "          'b': 1,\n",
      "          'take': 1,\n",
      "          'word': 1,\n",
      "          'nbut': 1,\n",
      "          'doesnt': 1,\n",
      "          'matter': 1,\n",
      "          'since': 1,\n",
      "          'loud': 1,\n",
      "          'cluttered': 1,\n",
      "          'mess': 1,\n",
      "          'scenes': 1,\n",
      "          'muddled': 1,\n",
      "          'difficult': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'um': 1,\n",
      "          'trio': 1,\n",
      "          'somehow': 1,\n",
      "          'outside': 1,\n",
      "          'five': 1,\n",
      "          'minute': 1,\n",
      "          'bouillabaisse': 1,\n",
      "          'tidal': 1,\n",
      "          'waves': 1,\n",
      "          'rain': 1,\n",
      "          'oceanextremeties': 1,\n",
      "          'cook': 1,\n",
      "          'revealed': 1,\n",
      "          'apparently': 1,\n",
      "          'drowned': 1,\n",
      "          'must': 1,\n",
      "          'thanks': 1,\n",
      "          'telling': 1,\n",
      "          'afterwards': 1,\n",
      "          'sure': 1,\n",
      "          'couldnt': 1,\n",
      "          'figure': 1,\n",
      "          'saw': 1,\n",
      "          'nimagine': 1,\n",
      "          'attack': 1,\n",
      "          'pov': 1,\n",
      "          'authorities': 1,\n",
      "          'battle': 1,\n",
      "          'car': 1,\n",
      "          'done': 1,\n",
      "          'intensity': 1,\n",
      "          'thats': 1,\n",
      "          'horriblydirected': 1,\n",
      "          'capping': 1,\n",
      "          'proposterous': 1,\n",
      "          'gadget': 1,\n",
      "          'saves': 1,\n",
      "          'day': 1,\n",
      "          'original': 1,\n",
      "          'members': 1,\n",
      "          'god': 1,\n",
      "          'nwith': 1,\n",
      "          'urgency': 1,\n",
      "          'tension': 1,\n",
      "          'good': 1,\n",
      "          'moment': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'visuals': 1,\n",
      "          'got': 1,\n",
      "          'made': 1,\n",
      "          'nwe': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'big': 1,\n",
      "          'mentality': 1,\n",
      "          'shallow': 1,\n",
      "          'best': 1,\n",
      "          'sight': 1,\n",
      "          'saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'faith': 1,\n",
      "          'manage': 1,\n",
      "          'drain': 1,\n",
      "          'little': 1,\n",
      "          'pool': 1,\n",
      "          'wish': 1,\n",
      "          'gone': 1,\n",
      "          'cinema': 1,\n",
      "          'verite': 1,\n",
      "          'captured': 1,\n",
      "          'meetings': 1,\n",
      "          'heads': 1,\n",
      "          'gave': 1,\n",
      "          'green': 1,\n",
      "          'script': 1,\n",
      "          'knew': 1,\n",
      "          'entrusting': 1,\n",
      "          'dollars': 1,\n",
      "          'might': 1,\n",
      "          'hack': 1,\n",
      "          'went': 1,\n",
      "          'ahead': 1,\n",
      "          'project': 1,\n",
      "          'company': 1,\n",
      "          'shit': 1,\n",
      "          'face': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'hold': 1,\n",
      "          'horrible': 1,\n",
      "          'id': 1,\n",
      "          'bad': 1,\n",
      "          'shouts': 1,\n",
      "          'egad': 1,\n",
      "          'anyway': 1,\n",
      "          'nare': 1,\n",
      "          'justifiable': 1,\n",
      "          'encouraged': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'deuce': 12,\n",
      "          'fish': 4,\n",
      "          'antoine': 4,\n",
      "          'one': 3,\n",
      "          'whose': 3,\n",
      "          'ntheres': 3,\n",
      "          'doesnt': 3,\n",
      "          'n': 3,\n",
      "          'sandler': 3,\n",
      "          'funny': 3,\n",
      "          'bigalow': 2,\n",
      "          'rob': 2,\n",
      "          'schneider': 2,\n",
      "          'know': 2,\n",
      "          'tank': 2,\n",
      "          'decides': 2,\n",
      "          'j': 2,\n",
      "          'eddie': 2,\n",
      "          'griffin': 2,\n",
      "          'chi': 2,\n",
      "          'discover': 2,\n",
      "          'nthe': 2,\n",
      "          'nbe': 2,\n",
      "          'afraid': 2,\n",
      "          'actually': 2,\n",
      "          'toilet': 2,\n",
      "          'cleans': 1,\n",
      "          'tanks': 1,\n",
      "          'nyeah': 1,\n",
      "          'didnt': 1,\n",
      "          'real': 1,\n",
      "          'job': 1,\n",
      "          'either': 1,\n",
      "          'none': 1,\n",
      "          'customers': 1,\n",
      "          'leconte': 1,\n",
      "          'oded': 1,\n",
      "          'fehr': 1,\n",
      "          'successful': 1,\n",
      "          'gigolo': 1,\n",
      "          'nwhen': 1,\n",
      "          'go': 1,\n",
      "          'sweden': 1,\n",
      "          'three': 1,\n",
      "          'weeks': 1,\n",
      "          'lets': 1,\n",
      "          'use': 1,\n",
      "          'house': 1,\n",
      "          'look': 1,\n",
      "          'ailing': 1,\n",
      "          '800': 1,\n",
      "          'nfooling': 1,\n",
      "          'around': 1,\n",
      "          'sets': 1,\n",
      "          'fire': 1,\n",
      "          'kitchen': 1,\n",
      "          'smashes': 1,\n",
      "          '6000': 1,\n",
      "          'nafter': 1,\n",
      "          'taking': 1,\n",
      "          'try': 1,\n",
      "          'antoines': 1,\n",
      "          'clients': 1,\n",
      "          'earning': 1,\n",
      "          '10': 1,\n",
      "          'prostitute': 1,\n",
      "          'raise': 1,\n",
      "          'money': 1,\n",
      "          'replace': 1,\n",
      "          'fierytempered': 1,\n",
      "          'returns': 1,\n",
      "          'nenter': 1,\n",
      "          'pimp': 1,\n",
      "          'manwhores': 1,\n",
      "          'arranges': 1,\n",
      "          'service': 1,\n",
      "          'assortment': 1,\n",
      "          'women': 1,\n",
      "          'imperfections': 1,\n",
      "          'keep': 1,\n",
      "          'dating': 1,\n",
      "          'enormous': 1,\n",
      "          'woman': 1,\n",
      "          'played': 1,\n",
      "          'transvestite': 1,\n",
      "          'porn': 1,\n",
      "          'star': 1,\n",
      "          'la': 1,\n",
      "          'rue': 1,\n",
      "          'hides': 1,\n",
      "          'food': 1,\n",
      "          'clothes': 1,\n",
      "          'claire': 1,\n",
      "          'gail': 1,\n",
      "          'ogrady': 1,\n",
      "          'narcolepsy': 1,\n",
      "          'causes': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'every': 1,\n",
      "          'minutes': 1,\n",
      "          'ntina': 1,\n",
      "          'torsten': 1,\n",
      "          'voges': 1,\n",
      "          'tall': 1,\n",
      "          'face': 1,\n",
      "          'fit': 1,\n",
      "          'screen': 1,\n",
      "          'ruth': 1,\n",
      "          'amy': 1,\n",
      "          'poehler': 1,\n",
      "          'tourettes': 1,\n",
      "          'syndrome': 1,\n",
      "          'shouts': 1,\n",
      "          'obscenities': 1,\n",
      "          'without': 1,\n",
      "          'warning': 1,\n",
      "          'nfinally': 1,\n",
      "          'theres': 1,\n",
      "          'kate': 1,\n",
      "          'arija': 1,\n",
      "          'bareikis': 1,\n",
      "          'sorority': 1,\n",
      "          'sisters': 1,\n",
      "          'secretly': 1,\n",
      "          'paid': 1,\n",
      "          'fare': 1,\n",
      "          'nshe': 1,\n",
      "          'seems': 1,\n",
      "          'perfect': 1,\n",
      "          'quickly': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'later': 1,\n",
      "          'imperfection': 1,\n",
      "          'isnt': 1,\n",
      "          'important': 1,\n",
      "          'ndeuces': 1,\n",
      "          'life': 1,\n",
      "          'complicated': 1,\n",
      "          'bothersome': 1,\n",
      "          'cop': 1,\n",
      "          'william': 1,\n",
      "          'forsythe': 1,\n",
      "          'looking': 1,\n",
      "          'information': 1,\n",
      "          'kates': 1,\n",
      "          'discovery': 1,\n",
      "          'manwhoring': 1,\n",
      "          'nhowever': 1,\n",
      "          'neither': 1,\n",
      "          'threat': 1,\n",
      "          'generates': 1,\n",
      "          'much': 1,\n",
      "          'suspense': 1,\n",
      "          'formula': 1,\n",
      "          'familiar': 1,\n",
      "          'end': 1,\n",
      "          'start': 1,\n",
      "          'first': 1,\n",
      "          'project': 1,\n",
      "          'adam': 1,\n",
      "          'sandlers': 1,\n",
      "          'company': 1,\n",
      "          'happy': 1,\n",
      "          'madison': 1,\n",
      "          'formation': 1,\n",
      "          'assures': 1,\n",
      "          'well': 1,\n",
      "          'seeing': 1,\n",
      "          'style': 1,\n",
      "          'comedy': 1,\n",
      "          'massproduced': 1,\n",
      "          'increasing': 1,\n",
      "          'rate': 1,\n",
      "          'years': 1,\n",
      "          'come': 1,\n",
      "          'good': 1,\n",
      "          'news': 1,\n",
      "          'appear': 1,\n",
      "          'funnier': 1,\n",
      "          'nschneider': 1,\n",
      "          'sweetness': 1,\n",
      "          'makes': 1,\n",
      "          'clueless': 1,\n",
      "          'goodhearted': 1,\n",
      "          'believable': 1,\n",
      "          'ngriffins': 1,\n",
      "          'delivery': 1,\n",
      "          'deadon': 1,\n",
      "          'especially': 1,\n",
      "          'coining': 1,\n",
      "          'technical': 1,\n",
      "          'terms': 1,\n",
      "          'profession': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'hebitch': 1,\n",
      "          'manslap': 1,\n",
      "          'expected': 1,\n",
      "          'amount': 1,\n",
      "          'humor': 1,\n",
      "          'thing': 1,\n",
      "          'deuces': 1,\n",
      "          'dad': 1,\n",
      "          'mens': 1,\n",
      "          'room': 1,\n",
      "          'attendant': 1,\n",
      "          'ndoes': 1,\n",
      "          'anyone': 1,\n",
      "          'age': 1,\n",
      "          'eight': 1,\n",
      "          'find': 1,\n",
      "          'bowel': 1,\n",
      "          'movements': 1,\n",
      "          'nfor': 1,\n",
      "          'us': 1,\n",
      "          'think': 1,\n",
      "          'childhood': 1,\n",
      "          'fascination': 1,\n",
      "          'bodily': 1,\n",
      "          'functions': 1,\n",
      "          'disappears': 1,\n",
      "          'hit': 1,\n",
      "          'farside': 1,\n",
      "          'puberty': 1,\n",
      "          'sex': 1,\n",
      "          'ni': 1,\n",
      "          'glad': 1,\n",
      "          'trend': 1,\n",
      "          'finally': 1,\n",
      "          'flushed': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'offer': 1,\n",
      "          'anything': 1,\n",
      "          'new': 1,\n",
      "          'intermittently': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'could': 4,\n",
      "          'movie': 3,\n",
      "          'jones': 3,\n",
      "          'husband': 3,\n",
      "          'basically': 3,\n",
      "          'get': 3,\n",
      "          'law': 3,\n",
      "          'good': 3,\n",
      "          'well': 3,\n",
      "          'nthe': 3,\n",
      "          'plot': 3,\n",
      "          'action': 3,\n",
      "          'writing': 2,\n",
      "          'seemed': 2,\n",
      "          'exciting': 2,\n",
      "          'tommy': 2,\n",
      "          'lee': 2,\n",
      "          'character': 2,\n",
      "          'fugitive': 2,\n",
      "          'judd': 2,\n",
      "          'nwhile': 2,\n",
      "          'jail': 2,\n",
      "          'really': 2,\n",
      "          'alive': 2,\n",
      "          'works': 2,\n",
      "          'nnow': 2,\n",
      "          'although': 2,\n",
      "          'way': 2,\n",
      "          'believe': 2,\n",
      "          'acting': 2,\n",
      "          'may': 2,\n",
      "          'better': 2,\n",
      "          'said': 2,\n",
      "          'fine': 2,\n",
      "          'much': 2,\n",
      "          'work': 2,\n",
      "          'ni': 2,\n",
      "          'definitive': 1,\n",
      "          'hollywood': 1,\n",
      "          'extremely': 1,\n",
      "          'predictable': 1,\n",
      "          'following': 1,\n",
      "          'basic': 1,\n",
      "          'formula': 1,\n",
      "          'horrible': 1,\n",
      "          'ending': 1,\n",
      "          'overzealous': 1,\n",
      "          'meaning': 1,\n",
      "          'bad': 1,\n",
      "          'trying': 1,\n",
      "          'hard': 1,\n",
      "          'make': 1,\n",
      "          'therefore': 1,\n",
      "          'making': 1,\n",
      "          'look': 1,\n",
      "          'many': 1,\n",
      "          'things': 1,\n",
      "          'merely': 1,\n",
      "          'tossed': 1,\n",
      "          'fill': 1,\n",
      "          'space': 1,\n",
      "          'lovable': 1,\n",
      "          'wiseass': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'wasnt': 1,\n",
      "          'used': 1,\n",
      "          'enough': 1,\n",
      "          'im': 1,\n",
      "          'afraid': 1,\n",
      "          'would': 1,\n",
      "          'completely': 1,\n",
      "          'unbearable': 1,\n",
      "          'nin': 1,\n",
      "          'ashley': 1,\n",
      "          'plays': 1,\n",
      "          'women': 1,\n",
      "          'wrongfully': 1,\n",
      "          'convicted': 1,\n",
      "          'killing': 1,\n",
      "          'sailing': 1,\n",
      "          'weekend': 1,\n",
      "          'finds': 1,\n",
      "          'framed': 1,\n",
      "          'murder': 1,\n",
      "          'nover': 1,\n",
      "          'money': 1,\n",
      "          'original': 1,\n",
      "          'exercises': 1,\n",
      "          'best': 1,\n",
      "          'near': 1,\n",
      "          'perfect': 1,\n",
      "          'condition': 1,\n",
      "          'learned': 1,\n",
      "          'titled': 1,\n",
      "          'double': 1,\n",
      "          'jeopardy': 1,\n",
      "          'stating': 1,\n",
      "          'serves': 1,\n",
      "          'full': 1,\n",
      "          'sentence': 1,\n",
      "          'kill': 1,\n",
      "          'touch': 1,\n",
      "          'talk': 1,\n",
      "          'actual': 1,\n",
      "          'po': 1,\n",
      "          'parole': 1,\n",
      "          'officer': 1,\n",
      "          'bunch': 1,\n",
      "          'cops': 1,\n",
      "          'chasing': 1,\n",
      "          'conflicted': 1,\n",
      "          'whether': 1,\n",
      "          'claims': 1,\n",
      "          'nskipping': 1,\n",
      "          'fact': 1,\n",
      "          'looker': 1,\n",
      "          'actress': 1,\n",
      "          'offense': 1,\n",
      "          'simon': 1,\n",
      "          'birch': 1,\n",
      "          'even': 1,\n",
      "          'great': 1,\n",
      "          'kiss': 1,\n",
      "          'girls': 1,\n",
      "          'times': 1,\n",
      "          'past': 1,\n",
      "          'potential': 1,\n",
      "          'nbut': 1,\n",
      "          'shes': 1,\n",
      "          'terribly': 1,\n",
      "          'unconvincing': 1,\n",
      "          'performance': 1,\n",
      "          'seems': 1,\n",
      "          'stale': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'doesnt': 1,\n",
      "          'add': 1,\n",
      "          'takes': 1,\n",
      "          'away': 1,\n",
      "          'nas': 1,\n",
      "          'id': 1,\n",
      "          'nhe': 1,\n",
      "          'supporting': 1,\n",
      "          'nwhich': 1,\n",
      "          'handled': 1,\n",
      "          'especially': 1,\n",
      "          'considering': 1,\n",
      "          'material': 1,\n",
      "          'feel': 1,\n",
      "          'alot': 1,\n",
      "          'going': 1,\n",
      "          'noriginality': 1,\n",
      "          'issue': 1,\n",
      "          'thing': 1,\n",
      "          'keeping': 1,\n",
      "          'pretty': 1,\n",
      "          'intriguing': 1,\n",
      "          'applied': 1,\n",
      "          'scenes': 1,\n",
      "          'made': 1,\n",
      "          'however': 1,\n",
      "          'sometimes': 1,\n",
      "          'place': 1,\n",
      "          'left': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'long': 1,\n",
      "          'run': 1,\n",
      "          'nso': 1,\n",
      "          'genuinely': 1,\n",
      "          'overthought': 1,\n",
      "          'certainly': 1,\n",
      "          'done': 1,\n",
      "          'generally': 1,\n",
      "          'speaking': 1,\n",
      "          'moves': 1,\n",
      "          'fast': 1,\n",
      "          'us': 1,\n",
      "          'involved': 1,\n",
      "          'either': 1,\n",
      "          'characters': 1,\n",
      "          'almost': 1,\n",
      "          'saved': 1,\n",
      "          'screentime': 1,\n",
      "          'perhaps': 1,\n",
      "          'earned': 1,\n",
      "          'higher': 1,\n",
      "          'rating': 1,\n",
      "          'book': 1,\n",
      "          'anyway': 1,\n",
      "          'nkeep': 1,\n",
      "          'mind': 1,\n",
      "          'youre': 1,\n",
      "          'mood': 1,\n",
      "          'rent': 1,\n",
      "          'nd': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'deadbang': 11,\n",
      "          'nthe': 8,\n",
      "          'johnson': 6,\n",
      "          'beck': 5,\n",
      "          'character': 4,\n",
      "          'movie': 4,\n",
      "          'scene': 4,\n",
      "          'action': 3,\n",
      "          'dead': 3,\n",
      "          'film': 3,\n",
      "          'since': 3,\n",
      "          'detective': 3,\n",
      "          'nbut': 3,\n",
      "          'becks': 3,\n",
      "          'movies': 3,\n",
      "          'thriller': 2,\n",
      "          'title': 2,\n",
      "          'definitely': 2,\n",
      "          'bang': 2,\n",
      "          'one': 2,\n",
      "          'nin': 2,\n",
      "          'plays': 2,\n",
      "          'nyou': 2,\n",
      "          'na': 2,\n",
      "          'cop': 2,\n",
      "          'role': 2,\n",
      "          'must': 2,\n",
      "          'jerry': 2,\n",
      "          'real': 2,\n",
      "          'vice': 2,\n",
      "          'emotional': 2,\n",
      "          'violent': 2,\n",
      "          'methods': 2,\n",
      "          'life': 2,\n",
      "          'investigation': 2,\n",
      "          'white': 2,\n",
      "          'never': 2,\n",
      "          'ni': 2,\n",
      "          'frankenheimer': 2,\n",
      "          'black': 2,\n",
      "          'however': 2,\n",
      "          'script': 2,\n",
      "          'ndeadbang': 2,\n",
      "          'tries': 2,\n",
      "          'nothing': 2,\n",
      "          'less': 2,\n",
      "          'guess': 2,\n",
      "          'characters': 2,\n",
      "          'love': 2,\n",
      "          'wisecracks': 2,\n",
      "          'two': 2,\n",
      "          'amusing': 2,\n",
      "          'starring': 1,\n",
      "          'lives': 1,\n",
      "          'dumb': 1,\n",
      "          'least': 1,\n",
      "          'half': 1,\n",
      "          'nalthough': 1,\n",
      "          'anything': 1,\n",
      "          'fact': 1,\n",
      "          'called': 1,\n",
      "          'bore': 1,\n",
      "          'guessed': 1,\n",
      "          'really': 1,\n",
      "          'challenging': 1,\n",
      "          'gritty': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'homicide': 1,\n",
      "          'stretch': 1,\n",
      "          'slick': 1,\n",
      "          'portrayed': 1,\n",
      "          'miami': 1,\n",
      "          'la': 1,\n",
      "          'mel': 1,\n",
      "          'gibson': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'wreck': 1,\n",
      "          'complete': 1,\n",
      "          'outbursts': 1,\n",
      "          'unscrupulous': 1,\n",
      "          'police': 1,\n",
      "          'bleak': 1,\n",
      "          'outlook': 1,\n",
      "          'nbecks': 1,\n",
      "          'wife': 1,\n",
      "          'divorced': 1,\n",
      "          'cutting': 1,\n",
      "          'children': 1,\n",
      "          'nshe': 1,\n",
      "          'even': 1,\n",
      "          'allow': 1,\n",
      "          'wish': 1,\n",
      "          'merry': 1,\n",
      "          'christmas': 1,\n",
      "          'telephone': 1,\n",
      "          'family': 1,\n",
      "          'problems': 1,\n",
      "          'take': 1,\n",
      "          'back': 1,\n",
      "          'seat': 1,\n",
      "          'thrills': 1,\n",
      "          'nbeck': 1,\n",
      "          'investigating': 1,\n",
      "          'brutal': 1,\n",
      "          'murders': 1,\n",
      "          'shopkeeper': 1,\n",
      "          'nhis': 1,\n",
      "          'starts': 1,\n",
      "          'l': 1,\n",
      "          'finally': 1,\n",
      "          'culminates': 1,\n",
      "          'climaxes': 1,\n",
      "          'oklahoma': 1,\n",
      "          'showdown': 1,\n",
      "          'killers': 1,\n",
      "          'supremacist': 1,\n",
      "          'camp': 1,\n",
      "          'nvirtually': 1,\n",
      "          'every': 1,\n",
      "          'aspect': 1,\n",
      "          'inept': 1,\n",
      "          'ineffective': 1,\n",
      "          'plot': 1,\n",
      "          'incoherent': 1,\n",
      "          'full': 1,\n",
      "          'holes': 1,\n",
      "          'depicts': 1,\n",
      "          'clumsily': 1,\n",
      "          'see': 1,\n",
      "          'connections': 1,\n",
      "          'clues': 1,\n",
      "          'conclusions': 1,\n",
      "          'sequences': 1,\n",
      "          'strictly': 1,\n",
      "          'thirdrate': 1,\n",
      "          'absolutely': 1,\n",
      "          'momentum': 1,\n",
      "          'suspense': 1,\n",
      "          'certainly': 1,\n",
      "          'expected': 1,\n",
      "          'longtime': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'directed': 1,\n",
      "          'classic': 1,\n",
      "          'political': 1,\n",
      "          'manchurian': 1,\n",
      "          'candidateas': 1,\n",
      "          'well': 1,\n",
      "          'sunday': 1,\n",
      "          'seven': 1,\n",
      "          'days': 1,\n",
      "          'may': 1,\n",
      "          'french': 1,\n",
      "          'connection': 1,\n",
      "          'ii': 1,\n",
      "          'fairness': 1,\n",
      "          'note': 1,\n",
      "          'deadbangs': 1,\n",
      "          'shortcomings': 1,\n",
      "          'seem': 1,\n",
      "          'stem': 1,\n",
      "          'shabby': 1,\n",
      "          'rather': 1,\n",
      "          'direction': 1,\n",
      "          'mask': 1,\n",
      "          'social': 1,\n",
      "          'relevance': 1,\n",
      "          'incorporating': 1,\n",
      "          'themes': 1,\n",
      "          'racism': 1,\n",
      "          'supremacy': 1,\n",
      "          'efforts': 1,\n",
      "          'token': 1,\n",
      "          'gestures': 1,\n",
      "          'insulting': 1,\n",
      "          'naccording': 1,\n",
      "          'production': 1,\n",
      "          'notes': 1,\n",
      "          'based': 1,\n",
      "          'reallife': 1,\n",
      "          'experiences': 1,\n",
      "          'stillactive': 1,\n",
      "          'would': 1,\n",
      "          'watching': 1,\n",
      "          'totally': 1,\n",
      "          'lacks': 1,\n",
      "          'credibility': 1,\n",
      "          'utterly': 1,\n",
      "          'unconvincing': 1,\n",
      "          'unbelievable': 1,\n",
      "          'nmost': 1,\n",
      "          'either': 1,\n",
      "          'atrociously': 1,\n",
      "          'acted': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'superfluous': 1,\n",
      "          'nwilliam': 1,\n",
      "          'forsythe': 1,\n",
      "          'example': 1,\n",
      "          'painfully': 1,\n",
      "          'bad': 1,\n",
      "          'arthur': 1,\n",
      "          'kressler': 1,\n",
      "          'wholesome': 1,\n",
      "          'bythebook': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'whos': 1,\n",
      "          'offended': 1,\n",
      "          'foul': 1,\n",
      "          'language': 1,\n",
      "          'unorthodox': 1,\n",
      "          'nforsythes': 1,\n",
      "          'lame': 1,\n",
      "          'performance': 1,\n",
      "          'corny': 1,\n",
      "          'dialogue': 1,\n",
      "          'makes': 1,\n",
      "          'unbearable': 1,\n",
      "          'marks': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'debut': 1,\n",
      "          'tim': 1,\n",
      "          'reid': 1,\n",
      "          'wkrp': 1,\n",
      "          'cincinnati': 1,\n",
      "          'franks': 1,\n",
      "          'place': 1,\n",
      "          'talents': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'cliched': 1,\n",
      "          'contrived': 1,\n",
      "          'chief': 1,\n",
      "          'officer': 1,\n",
      "          'squadron': 1,\n",
      "          'cops': 1,\n",
      "          'help': 1,\n",
      "          'nail': 1,\n",
      "          'villains': 1,\n",
      "          'sole': 1,\n",
      "          'function': 1,\n",
      "          'penelope': 1,\n",
      "          'ann': 1,\n",
      "          'millers': 1,\n",
      "          'give': 1,\n",
      "          'excuse': 1,\n",
      "          'include': 1,\n",
      "          'gratuitous': 1,\n",
      "          'could': 1,\n",
      "          'care': 1,\n",
      "          'films': 1,\n",
      "          'refers': 1,\n",
      "          'virtue': 1,\n",
      "          'believe': 1,\n",
      "          'overcome': 1,\n",
      "          'limitations': 1,\n",
      "          'pitiful': 1,\n",
      "          'njohnson': 1,\n",
      "          'succeeds': 1,\n",
      "          'giving': 1,\n",
      "          'sarcastic': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'hint': 1,\n",
      "          'depth': 1,\n",
      "          'pessimistic': 1,\n",
      "          'occasionally': 1,\n",
      "          'bring': 1,\n",
      "          'nand': 1,\n",
      "          'admit': 1,\n",
      "          'moments': 1,\n",
      "          'funniest': 1,\n",
      "          'throwingup': 1,\n",
      "          'criminal': 1,\n",
      "          'interrogates': 1,\n",
      "          'barf': 1,\n",
      "          'highlight': 1,\n",
      "          'know': 1,\n",
      "          'trouble': 1,\n",
      "          'involves': 1,\n",
      "          'psychological': 1,\n",
      "          'examination': 1,\n",
      "          'cant': 1,\n",
      "          'keep': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'resembles': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'funny': 1,\n",
      "          'scenes': 1,\n",
      "          'couple': 1,\n",
      "          'good': 1,\n",
      "          'make': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'hard': 5,\n",
      "          'slater': 5,\n",
      "          'freeman': 4,\n",
      "          'films': 4,\n",
      "          'enough': 4,\n",
      "          'would': 4,\n",
      "          'rain': 4,\n",
      "          'john': 4,\n",
      "          'dam': 3,\n",
      "          'somewhat': 3,\n",
      "          'morgan': 3,\n",
      "          'town': 3,\n",
      "          'nbut': 3,\n",
      "          'three': 3,\n",
      "          'million': 3,\n",
      "          'dollars': 3,\n",
      "          'van': 3,\n",
      "          'may': 3,\n",
      "          'well': 3,\n",
      "          'could': 3,\n",
      "          'screen': 3,\n",
      "          'broken': 3,\n",
      "          'arrow': 3,\n",
      "          'travolta': 3,\n",
      "          'mind': 2,\n",
      "          'bunch': 2,\n",
      "          'lies': 2,\n",
      "          'huntingburg': 2,\n",
      "          'store': 2,\n",
      "          'even': 2,\n",
      "          'rains': 2,\n",
      "          'plot': 2,\n",
      "          'dont': 2,\n",
      "          'cast': 2,\n",
      "          'money': 2,\n",
      "          'sheriff': 2,\n",
      "          'flood': 2,\n",
      "          'started': 2,\n",
      "          'presumably': 2,\n",
      "          'water': 2,\n",
      "          'ni': 2,\n",
      "          'never': 2,\n",
      "          'know': 2,\n",
      "          'tom': 2,\n",
      "          'christian': 2,\n",
      "          'doesnt': 2,\n",
      "          'nthe': 2,\n",
      "          'local': 2,\n",
      "          'character': 2,\n",
      "          'definite': 2,\n",
      "          'slightly': 2,\n",
      "          'enjoyable': 2,\n",
      "          'time': 2,\n",
      "          'much': 2,\n",
      "          'one': 2,\n",
      "          'achieved': 2,\n",
      "          'since': 2,\n",
      "          'action': 2,\n",
      "          'really': 2,\n",
      "          'said': 1,\n",
      "          'order': 1,\n",
      "          'truly': 1,\n",
      "          'enjoy': 1,\n",
      "          'todays': 1,\n",
      "          'movies': 1,\n",
      "          'novels': 1,\n",
      "          'must': 1,\n",
      "          'suspend': 1,\n",
      "          'disbelief': 1,\n",
      "          'nhowever': 1,\n",
      "          'distinct': 1,\n",
      "          'separation': 1,\n",
      "          'opening': 1,\n",
      "          'ridiculous': 1,\n",
      "          'situations': 1,\n",
      "          'believing': 1,\n",
      "          'flat': 1,\n",
      "          'nit': 1,\n",
      "          'came': 1,\n",
      "          'surprise': 1,\n",
      "          'learn': 1,\n",
      "          'indiana': 1,\n",
      "          'set': 1,\n",
      "          'mcdonalds': 1,\n",
      "          'sears': 1,\n",
      "          'statue': 1,\n",
      "          'man': 1,\n",
      "          'horse': 1,\n",
      "          'close': 1,\n",
      "          'neven': 1,\n",
      "          'ignore': 1,\n",
      "          'white': 1,\n",
      "          'though': 1,\n",
      "          'crucial': 1,\n",
      "          'still': 1,\n",
      "          'things': 1,\n",
      "          'gel': 1,\n",
      "          'nfirstly': 1,\n",
      "          'possibly': 1,\n",
      "          'greatest': 1,\n",
      "          'actor': 1,\n",
      "          'alive': 1,\n",
      "          'driving': 1,\n",
      "          'miss': 1,\n",
      "          'daisy': 1,\n",
      "          'shawshank': 1,\n",
      "          'redemption': 1,\n",
      "          'se7en': 1,\n",
      "          'shifty': 1,\n",
      "          'goon': 1,\n",
      "          'intent': 1,\n",
      "          'stealing': 1,\n",
      "          'healthy': 1,\n",
      "          'retirement': 1,\n",
      "          'nhe': 1,\n",
      "          '_should_': 1,\n",
      "          'played': 1,\n",
      "          'experienced': 1,\n",
      "          'intriguing': 1,\n",
      "          'policeman': 1,\n",
      "          'nas': 1,\n",
      "          'massive': 1,\n",
      "          'accident': 1,\n",
      "          'overwhelms': 1,\n",
      "          'residents': 1,\n",
      "          'flee': 1,\n",
      "          'level': 1,\n",
      "          'steadily': 1,\n",
      "          'increases': 1,\n",
      "          'say': 1,\n",
      "          'simply': 1,\n",
      "          'happened': 1,\n",
      "          'seems': 1,\n",
      "          'tad': 1,\n",
      "          'strange': 1,\n",
      "          'entire': 1,\n",
      "          'exception': 1,\n",
      "          'folk': 1,\n",
      "          'get': 1,\n",
      "          'introduced': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'vanish': 1,\n",
      "          'actually': 1,\n",
      "          'nether': 1,\n",
      "          'less': 1,\n",
      "          'armored': 1,\n",
      "          'guard': 1,\n",
      "          'couriers': 1,\n",
      "          'uncle': 1,\n",
      "          'carrying': 1,\n",
      "          'back': 1,\n",
      "          'nwith': 1,\n",
      "          'heavy': 1,\n",
      "          'rainstorm': 1,\n",
      "          'causing': 1,\n",
      "          'depressing': 1,\n",
      "          'conditions': 1,\n",
      "          'slippery': 1,\n",
      "          'roads': 1,\n",
      "          'take': 1,\n",
      "          'long': 1,\n",
      "          'end': 1,\n",
      "          'stuck': 1,\n",
      "          'amongst': 1,\n",
      "          'mud': 1,\n",
      "          'side': 1,\n",
      "          'road': 1,\n",
      "          'njim': 1,\n",
      "          'small': 1,\n",
      "          'gang': 1,\n",
      "          'thieves': 1,\n",
      "          'locate': 1,\n",
      "          'attempt': 1,\n",
      "          'steal': 1,\n",
      "          'course': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'willing': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'takes': 1,\n",
      "          'hides': 1,\n",
      "          'elsewhere': 1,\n",
      "          'randy': 1,\n",
      "          'quaid': 1,\n",
      "          'remember': 1,\n",
      "          'drunken': 1,\n",
      "          'pilot': 1,\n",
      "          'id4': 1,\n",
      "          'couple': 1,\n",
      "          'police': 1,\n",
      "          'men': 1,\n",
      "          'investigate': 1,\n",
      "          'situation': 1,\n",
      "          'morals': 1,\n",
      "          'soon': 1,\n",
      "          'overpowered': 1,\n",
      "          'greediness': 1,\n",
      "          'contemplates': 1,\n",
      "          'heshe': 1,\n",
      "          'share': 1,\n",
      "          'ndirector': 1,\n",
      "          'mikael': 1,\n",
      "          'salomon': 1,\n",
      "          'made': 1,\n",
      "          'sure': 1,\n",
      "          'ends': 1,\n",
      "          'turning': 1,\n",
      "          'everything': 1,\n",
      "          'topsyturvy': 1,\n",
      "          'whilst': 1,\n",
      "          'first': 1,\n",
      "          'appear': 1,\n",
      "          'goodies': 1,\n",
      "          'versus': 1,\n",
      "          'baddies': 1,\n",
      "          'numerous': 1,\n",
      "          'twists': 1,\n",
      "          'make': 1,\n",
      "          'experience': 1,\n",
      "          'interesting': 1,\n",
      "          'changes': 1,\n",
      "          'occur': 1,\n",
      "          'far': 1,\n",
      "          'late': 1,\n",
      "          'affect': 1,\n",
      "          'nhard': 1,\n",
      "          'continuos': 1,\n",
      "          'corniness': 1,\n",
      "          'lack': 1,\n",
      "          'originality': 1,\n",
      "          'washes': 1,\n",
      "          'whatever': 1,\n",
      "          'hope': 1,\n",
      "          'script': 1,\n",
      "          'although': 1,\n",
      "          'appealing': 1,\n",
      "          'stars': 1,\n",
      "          'act': 1,\n",
      "          'par': 1,\n",
      "          'nnot': 1,\n",
      "          'stage': 1,\n",
      "          'capturing': 1,\n",
      "          'fabulous': 1,\n",
      "          'battle': 1,\n",
      "          'left': 1,\n",
      "          'reminisce': 1,\n",
      "          'dared': 1,\n",
      "          'something': 1,\n",
      "          'different': 1,\n",
      "          'expected': 1,\n",
      "          'nsuch': 1,\n",
      "          'titles': 1,\n",
      "          'faceoff': 1,\n",
      "          'nicholas': 1,\n",
      "          'cage': 1,\n",
      "          'come': 1,\n",
      "          'mastered': 1,\n",
      "          'silver': 1,\n",
      "          'confrontations': 1,\n",
      "          'nstrangely': 1,\n",
      "          'directed': 1,\n",
      "          'woo': 1,\n",
      "          'star': 1,\n",
      "          'nwe': 1,\n",
      "          'forgive': 1,\n",
      "          'giving': 1,\n",
      "          'disappointing': 1,\n",
      "          'performance': 1,\n",
      "          'newish': 1,\n",
      "          'genre': 1,\n",
      "          'amount': 1,\n",
      "          'crummy': 1,\n",
      "          'liners': 1,\n",
      "          'reduced': 1,\n",
      "          'personality': 1,\n",
      "          'added': 1,\n",
      "          'nif': 1,\n",
      "          'asked': 1,\n",
      "          'whether': 1,\n",
      "          'perform': 1,\n",
      "          'substantially': 1,\n",
      "          'boost': 1,\n",
      "          'movie': 1,\n",
      "          'prior': 1,\n",
      "          'release': 1,\n",
      "          'answer': 1,\n",
      "          'excuse': 1,\n",
      "          '_can_': 1,\n",
      "          'better': 1,\n",
      "          'believe': 1,\n",
      "          'rent': 1,\n",
      "          'copy': 1,\n",
      "          'video': 1,\n",
      "          'nalthough': 1,\n",
      "          'works': 1,\n",
      "          'start': 1,\n",
      "          'somehow': 1,\n",
      "          'felt': 1,\n",
      "          'feelings': 1,\n",
      "          'missed': 1,\n",
      "          'opportunity': 1,\n",
      "          'credits': 1,\n",
      "          'filled': 1,\n",
      "          'addition': 1,\n",
      "          'enticing': 1,\n",
      "          'subplot': 1,\n",
      "          'given': 1,\n",
      "          'breathe': 1,\n",
      "          'rather': 1,\n",
      "          'try': 1,\n",
      "          'cram': 1,\n",
      "          '96': 1,\n",
      "          'minutes': 1,\n",
      "          'disaster': 1,\n",
      "          'story': 1,\n",
      "          'cant': 1,\n",
      "          'handle': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'ndespite': 1,\n",
      "          'fact': 1,\n",
      "          'fails': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'account': 1,\n",
      "          'standards': 1,\n",
      "          'low': 1,\n",
      "          'find': 1,\n",
      "          'mildly': 1,\n",
      "          'nno': 1,\n",
      "          'creative': 1,\n",
      "          'flair': 1,\n",
      "          'inventive': 1,\n",
      "          'scenes': 1,\n",
      "          'means': 1,\n",
      "          'stand': 1,\n",
      "          'many': 1,\n",
      "          'competitors': 1,\n",
      "          'matter': 1,\n",
      "          'last': 1,\n",
      "          'thing': 1,\n",
      "          'want': 1,\n",
      "          'shelling': 1,\n",
      "          '8': 1,\n",
      "          '50': 1,\n",
      "          'compare': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nell': 6,\n",
      "          'house': 4,\n",
      "          'one': 4,\n",
      "          'new': 3,\n",
      "          'haunting': 3,\n",
      "          'much': 3,\n",
      "          'hill': 3,\n",
      "          'neeson': 3,\n",
      "          'life': 3,\n",
      "          'de': 3,\n",
      "          'bont': 3,\n",
      "          'houses': 2,\n",
      "          'jacksons': 2,\n",
      "          'nthe': 2,\n",
      "          'dont': 2,\n",
      "          'shout': 2,\n",
      "          'taylor': 2,\n",
      "          'zetajones': 2,\n",
      "          'luke': 2,\n",
      "          'three': 2,\n",
      "          'marrow': 2,\n",
      "          'real': 2,\n",
      "          'even': 2,\n",
      "          'scenes': 2,\n",
      "          'mansion': 2,\n",
      "          'character': 2,\n",
      "          'nas': 2,\n",
      "          'n': 2,\n",
      "          'foster': 2,\n",
      "          'kane': 2,\n",
      "          'meets': 2,\n",
      "          'munsters': 2,\n",
      "          'would': 2,\n",
      "          'hes': 2,\n",
      "          'nhis': 2,\n",
      "          'ni': 2,\n",
      "          'enjoyable': 2,\n",
      "          'mean': 2,\n",
      "          'suggest': 2,\n",
      "          'born': 1,\n",
      "          'bad': 1,\n",
      "          'goes': 1,\n",
      "          'hauntings': 1,\n",
      "          'tag': 1,\n",
      "          'line': 1,\n",
      "          'must': 1,\n",
      "          'add': 1,\n",
      "          'movies': 1,\n",
      "          'nnothing': 1,\n",
      "          'short': 1,\n",
      "          'hiring': 1,\n",
      "          'cast': 1,\n",
      "          'literate': 1,\n",
      "          'screenwriter': 1,\n",
      "          'director': 1,\n",
      "          'could': 1,\n",
      "          'saved': 1,\n",
      "          'tragically': 1,\n",
      "          'misguided': 1,\n",
      "          'adaptation': 1,\n",
      "          'meritorious': 1,\n",
      "          'novel': 1,\n",
      "          'late': 1,\n",
      "          'entry': 1,\n",
      "          'summer': 1,\n",
      "          'dreck': 1,\n",
      "          'slick': 1,\n",
      "          'creepy': 1,\n",
      "          'seemingly': 1,\n",
      "          'endless': 1,\n",
      "          'stream': 1,\n",
      "          'digital': 1,\n",
      "          'trickery': 1,\n",
      "          'spooky': 1,\n",
      "          'ooky': 1,\n",
      "          'sound': 1,\n",
      "          'effects': 1,\n",
      "          'frighten': 1,\n",
      "          'numb': 1,\n",
      "          'audience': 1,\n",
      "          'submissionthe': 1,\n",
      "          'film': 1,\n",
      "          'like': 1,\n",
      "          'rube': 1,\n",
      "          'goldberg': 1,\n",
      "          'contraption': 1,\n",
      "          'rigged': 1,\n",
      "          'boo': 1,\n",
      "          'nfragile': 1,\n",
      "          'bisexual': 1,\n",
      "          'theo': 1,\n",
      "          'smiley': 1,\n",
      "          'wilson': 1,\n",
      "          'insomniacs': 1,\n",
      "          'gather': 1,\n",
      "          'reputedly': 1,\n",
      "          'possessed': 1,\n",
      "          'extended': 1,\n",
      "          'study': 1,\n",
      "          'sleep': 1,\n",
      "          'disorders': 1,\n",
      "          'hosted': 1,\n",
      "          'professor': 1,\n",
      "          'nmarrows': 1,\n",
      "          'secretly': 1,\n",
      "          'gathering': 1,\n",
      "          'data': 1,\n",
      "          'respective': 1,\n",
      "          'paranoid': 1,\n",
      "          'responses': 1,\n",
      "          'recount': 1,\n",
      "          'bleak': 1,\n",
      "          'history': 1,\n",
      "          'nhes': 1,\n",
      "          'prepared': 1,\n",
      "          'apparitions': 1,\n",
      "          'terrorize': 1,\n",
      "          'crew': 1,\n",
      "          'especially': 1,\n",
      "          'ancestral': 1,\n",
      "          'connection': 1,\n",
      "          'manors': 1,\n",
      "          'previous': 1,\n",
      "          'inhabitants': 1,\n",
      "          'ntaylor': 1,\n",
      "          'thoroughly': 1,\n",
      "          'insufferable': 1,\n",
      "          'first': 1,\n",
      "          'bigbudget': 1,\n",
      "          'lead': 1,\n",
      "          'nfor': 1,\n",
      "          'starters': 1,\n",
      "          'consistently': 1,\n",
      "          'dour': 1,\n",
      "          'expression': 1,\n",
      "          'sucks': 1,\n",
      "          'early': 1,\n",
      "          'introduced': 1,\n",
      "          'funhouse': 1,\n",
      "          'trappings': 1,\n",
      "          'nher': 1,\n",
      "          'supposed': 1,\n",
      "          'depressed': 1,\n",
      "          'tended': 1,\n",
      "          'unloving': 1,\n",
      "          'mother': 1,\n",
      "          'many': 1,\n",
      "          'years': 1,\n",
      "          'plays': 1,\n",
      "          'supernaturally': 1,\n",
      "          'lame': 1,\n",
      "          'alternately': 1,\n",
      "          'grouchy': 1,\n",
      "          'mopey': 1,\n",
      "          'wiggy': 1,\n",
      "          'pathetic': 1,\n",
      "          'kept': 1,\n",
      "          'wondering': 1,\n",
      "          'characters': 1,\n",
      "          'didnt': 1,\n",
      "          'ditch': 1,\n",
      "          'bitch': 1,\n",
      "          'obscenely': 1,\n",
      "          'photogenic': 1,\n",
      "          'breezes': 1,\n",
      "          'wink': 1,\n",
      "          'smile': 1,\n",
      "          'takes': 1,\n",
      "          'scenery': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'shes': 1,\n",
      "          'saddled': 1,\n",
      "          'unlikely': 1,\n",
      "          'dialogue': 1,\n",
      "          'screenplay': 1,\n",
      "          'offer': 1,\n",
      "          'ntheos': 1,\n",
      "          'assessment': 1,\n",
      "          'love': 1,\n",
      "          'nsort': 1,\n",
      "          'charles': 1,\n",
      "          'nwho': 1,\n",
      "          'earth': 1,\n",
      "          'say': 1,\n",
      "          'place': 1,\n",
      "          'citizen': 1,\n",
      "          'furthermore': 1,\n",
      "          'gladly': 1,\n",
      "          'spend': 1,\n",
      "          'single': 1,\n",
      "          'night': 1,\n",
      "          'befitting': 1,\n",
      "          'description': 1,\n",
      "          'nboth': 1,\n",
      "          'actresses': 1,\n",
      "          'fare': 1,\n",
      "          'better': 1,\n",
      "          'looks': 1,\n",
      "          'embarrassed': 1,\n",
      "          'part': 1,\n",
      "          'ensemble': 1,\n",
      "          'good': 1,\n",
      "          'reason': 1,\n",
      "          'bland': 1,\n",
      "          'puts': 1,\n",
      "          'dr': 1,\n",
      "          'pulls': 1,\n",
      "          'old': 1,\n",
      "          'academic': 1,\n",
      "          'bait': 1,\n",
      "          'switch': 1,\n",
      "          'subjects': 1,\n",
      "          'breaks': 1,\n",
      "          'confesses': 1,\n",
      "          'second': 1,\n",
      "          'accused': 1,\n",
      "          'nlater': 1,\n",
      "          'risks': 1,\n",
      "          'climbing': 1,\n",
      "          'crumbling': 1,\n",
      "          'stairwell': 1,\n",
      "          'save': 1,\n",
      "          'amusing': 1,\n",
      "          'hear': 1,\n",
      "          'repeatedly': 1,\n",
      "          'given': 1,\n",
      "          'starring': 1,\n",
      "          'role': 1,\n",
      "          '1994': 1,\n",
      "          'jodie': 1,\n",
      "          'vehicle': 1,\n",
      "          'name': 1,\n",
      "          'nwhy': 1,\n",
      "          'nice': 1,\n",
      "          'helpful': 1,\n",
      "          'redemptive': 1,\n",
      "          'researcher': 1,\n",
      "          'absent': 1,\n",
      "          'ethics': 1,\n",
      "          'start': 1,\n",
      "          'well': 1,\n",
      "          'designed': 1,\n",
      "          'eugenio': 1,\n",
      "          'zanetti': 1,\n",
      "          'sets': 1,\n",
      "          'obsessively': 1,\n",
      "          'detailed': 1,\n",
      "          'cgi': 1,\n",
      "          'kicks': 1,\n",
      "          'seem': 1,\n",
      "          'alive': 1,\n",
      "          'never': 1,\n",
      "          'quite': 1,\n",
      "          'still': 1,\n",
      "          'beef': 1,\n",
      "          'aspect': 1,\n",
      "          'production': 1,\n",
      "          'used': 1,\n",
      "          'exterior': 1,\n",
      "          'shots': 1,\n",
      "          'nottinghamshires': 1,\n",
      "          'harlaxton': 1,\n",
      "          'manor': 1,\n",
      "          'vast': 1,\n",
      "          'trouble': 1,\n",
      "          'believing': 1,\n",
      "          'company': 1,\n",
      "          'matter': 1,\n",
      "          'running': 1,\n",
      "          'away': 1,\n",
      "          'ghosts': 1,\n",
      "          'goblins': 1,\n",
      "          'always': 1,\n",
      "          'finish': 1,\n",
      "          'locations': 1,\n",
      "          'established': 1,\n",
      "          'act': 1,\n",
      "          'action': 1,\n",
      "          'confined': 1,\n",
      "          'wing': 1,\n",
      "          'neighty': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'spent': 1,\n",
      "          'despite': 1,\n",
      "          'powerhouse': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'debut': 1,\n",
      "          'doubt': 1,\n",
      "          'recoup': 1,\n",
      "          'costs': 1,\n",
      "          'including': 1,\n",
      "          'marketing': 1,\n",
      "          'domestically': 1,\n",
      "          'nthank': 1,\n",
      "          'jan': 1,\n",
      "          'proving': 1,\n",
      "          'third': 1,\n",
      "          'time': 1,\n",
      "          'speed': 1,\n",
      "          'fluke': 1,\n",
      "          'actually': 1,\n",
      "          'served': 1,\n",
      "          'another': 1,\n",
      "          'ride': 1,\n",
      "          'sans': 1,\n",
      "          'thrill': 1,\n",
      "          'images': 1,\n",
      "          'welllit': 1,\n",
      "          'though': 1,\n",
      "          'unmistakable': 1,\n",
      "          'theredone': 1,\n",
      "          'quality': 1,\n",
      "          'fact': 1,\n",
      "          'whole': 1,\n",
      "          'sequences': 1,\n",
      "          'mention': 1,\n",
      "          'cloaked': 1,\n",
      "          'airy': 1,\n",
      "          'ghoul': 1,\n",
      "          'owns': 1,\n",
      "          'climax': 1,\n",
      "          'feel': 1,\n",
      "          'lifted': 1,\n",
      "          'smarter': 1,\n",
      "          'infinitely': 1,\n",
      "          'spectacle': 1,\n",
      "          'summers': 1,\n",
      "          'back': 1,\n",
      "          'peter': 1,\n",
      "          'frighteners': 1,\n",
      "          'plagiarist': 1,\n",
      "          'hack': 1,\n",
      "          'found': 1,\n",
      "          'ways': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'chills': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'fight': 7,\n",
      "          'play': 5,\n",
      "          'bone': 5,\n",
      "          'nthe': 5,\n",
      "          'one': 4,\n",
      "          'two': 4,\n",
      "          'vince': 4,\n",
      "          'film': 4,\n",
      "          'movie': 3,\n",
      "          'men': 3,\n",
      "          'us': 3,\n",
      "          'harrelson': 3,\n",
      "          'caesar': 3,\n",
      "          'banderas': 3,\n",
      "          'vegas': 3,\n",
      "          'title': 3,\n",
      "          'life': 3,\n",
      "          'time': 3,\n",
      "          'actually': 3,\n",
      "          'run': 3,\n",
      "          'good': 2,\n",
      "          'interesting': 2,\n",
      "          'ron': 2,\n",
      "          'shelton': 2,\n",
      "          'cant': 2,\n",
      "          'rocky': 2,\n",
      "          'nrocky': 2,\n",
      "          'christian': 2,\n",
      "          'achieved': 2,\n",
      "          'nboth': 2,\n",
      "          'promoters': 2,\n",
      "          'need': 2,\n",
      "          'order': 2,\n",
      "          'make': 2,\n",
      "          'way': 2,\n",
      "          'mr': 2,\n",
      "          'past': 2,\n",
      "          'know': 2,\n",
      "          'nmr': 2,\n",
      "          'screen': 2,\n",
      "          'another': 2,\n",
      "          'weak': 2,\n",
      "          'characters': 2,\n",
      "          'nbut': 2,\n",
      "          'well': 2,\n",
      "          'nas': 2,\n",
      "          'phrase': 2,\n",
      "          'principle': 2,\n",
      "          'ye': 2,\n",
      "          'lives': 2,\n",
      "          'punchdrunk': 1,\n",
      "          'mess': 1,\n",
      "          'ncontaining': 1,\n",
      "          'cast': 1,\n",
      "          'awful': 1,\n",
      "          'acting': 1,\n",
      "          'premise': 1,\n",
      "          'terrible': 1,\n",
      "          'execution': 1,\n",
      "          'white': 1,\n",
      "          'jump': 1,\n",
      "          'gives': 1,\n",
      "          'story': 1,\n",
      "          '1': 1,\n",
      "          'boudreau': 1,\n",
      "          'woody': 1,\n",
      "          'edtv': 1,\n",
      "          'bald': 1,\n",
      "          'tattooed': 1,\n",
      "          'newly': 1,\n",
      "          'converted': 1,\n",
      "          'whose': 1,\n",
      "          'idea': 1,\n",
      "          'christianity': 1,\n",
      "          'using': 1,\n",
      "          'name': 1,\n",
      "          'christ': 1,\n",
      "          'curse': 1,\n",
      "          'word': 1,\n",
      "          'nsomething': 1,\n",
      "          'yet': 1,\n",
      "          'successfully': 1,\n",
      "          '2': 1,\n",
      "          'dominguez': 1,\n",
      "          'antonio': 1,\n",
      "          '13th': 1,\n",
      "          'warrior': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'currently': 1,\n",
      "          'dating': 1,\n",
      "          'vinces': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'grace': 1,\n",
      "          'nearing': 1,\n",
      "          'end': 1,\n",
      "          'almost': 1,\n",
      "          'careers': 1,\n",
      "          'fluke': 1,\n",
      "          'provides': 1,\n",
      "          'redemptive': 1,\n",
      "          'opportunity': 1,\n",
      "          'nwhen': 1,\n",
      "          'fighters': 1,\n",
      "          'undercard': 1,\n",
      "          'based': 1,\n",
      "          'mike': 1,\n",
      "          'tyson': 1,\n",
      "          'become': 1,\n",
      "          'incapacitated': 1,\n",
      "          'find': 1,\n",
      "          'quick': 1,\n",
      "          'replacement': 1,\n",
      "          'nour': 1,\n",
      "          'boys': 1,\n",
      "          'tapped': 1,\n",
      "          'winner': 1,\n",
      "          'promised': 1,\n",
      "          'shot': 1,\n",
      "          'future': 1,\n",
      "          'divided': 1,\n",
      "          'sections': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'buddy': 1,\n",
      "          'road': 1,\n",
      "          'picture': 1,\n",
      "          'heroes': 1,\n",
      "          'graces': 1,\n",
      "          'sassy': 1,\n",
      "          'grassy': 1,\n",
      "          'green': 1,\n",
      "          'muscle': 1,\n",
      "          'car': 1,\n",
      "          'travel': 1,\n",
      "          'desert': 1,\n",
      "          'scheduled': 1,\n",
      "          'day': 1,\n",
      "          'nalong': 1,\n",
      "          'learn': 1,\n",
      "          'pasts': 1,\n",
      "          'opportunities': 1,\n",
      "          'come': 1,\n",
      "          'gone': 1,\n",
      "          'nonce': 1,\n",
      "          'settles': 1,\n",
      "          'effectively': 1,\n",
      "          'staged': 1,\n",
      "          'sequences': 1,\n",
      "          'provided': 1,\n",
      "          'stunning': 1,\n",
      "          'characterizations': 1,\n",
      "          'wed': 1,\n",
      "          'work': 1,\n",
      "          'uncomfortably': 1,\n",
      "          'awkward': 1,\n",
      "          'apparently': 1,\n",
      "          'never': 1,\n",
      "          'gotten': 1,\n",
      "          'firm': 1,\n",
      "          'handle': 1,\n",
      "          'conversion': 1,\n",
      "          'angle': 1,\n",
      "          'simply': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'unbelievable': 1,\n",
      "          'uncharacteristically': 1,\n",
      "          'noncharismatic': 1,\n",
      "          'nweak': 1,\n",
      "          'ineffectual': 1,\n",
      "          'little': 1,\n",
      "          'performance': 1,\n",
      "          'actors': 1,\n",
      "          'involved': 1,\n",
      "          'merely': 1,\n",
      "          'stereotypes': 1,\n",
      "          'sort': 1,\n",
      "          'ntom': 1,\n",
      "          'sizemore': 1,\n",
      "          'saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'robert': 1,\n",
      "          'wagner': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'ii': 1,\n",
      "          'spy': 1,\n",
      "          'shagged': 1,\n",
      "          'richard': 1,\n",
      "          'masur': 1,\n",
      "          'fire': 1,\n",
      "          'crooked': 1,\n",
      "          'lucy': 1,\n",
      "          'liu': 1,\n",
      "          'payback': 1,\n",
      "          'sexstarved': 1,\n",
      "          'hitchhiker': 1,\n",
      "          'looking': 1,\n",
      "          'lolita': 1,\n",
      "          'davidovich': 1,\n",
      "          'gods': 1,\n",
      "          'monsters': 1,\n",
      "          'shared': 1,\n",
      "          'girlfriend': 1,\n",
      "          'mind': 1,\n",
      "          'boxer': 1,\n",
      "          'prefers': 1,\n",
      "          'nbecause': 1,\n",
      "          'lack': 1,\n",
      "          'chemistry': 1,\n",
      "          'flounders': 1,\n",
      "          'appeal': 1,\n",
      "          'dead': 1,\n",
      "          'fish': 1,\n",
      "          'boxing': 1,\n",
      "          'match': 1,\n",
      "          'begins': 1,\n",
      "          'even': 1,\n",
      "          'outcome': 1,\n",
      "          'predictably': 1,\n",
      "          'obvious': 1,\n",
      "          'suspense': 1,\n",
      "          'factor': 1,\n",
      "          'negated': 1,\n",
      "          'relegated': 1,\n",
      "          'watching': 1,\n",
      "          'pummel': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'clearly': 1,\n",
      "          'spent': 1,\n",
      "          'much': 1,\n",
      "          'orchestrating': 1,\n",
      "          'sequence': 1,\n",
      "          'photographed': 1,\n",
      "          'wellchoreographed': 1,\n",
      "          'welledited': 1,\n",
      "          'wellperformed': 1,\n",
      "          'nif': 1,\n",
      "          'detailed': 1,\n",
      "          'attention': 1,\n",
      "          'diverted': 1,\n",
      "          'remaining': 1,\n",
      "          'parts': 1,\n",
      "          'scenes': 1,\n",
      "          'require': 1,\n",
      "          'talk': 1,\n",
      "          'laughable': 1,\n",
      "          'aspect': 1,\n",
      "          'reference': 1,\n",
      "          'seeing': 1,\n",
      "          'something': 1,\n",
      "          'quitting': 1,\n",
      "          'youve': 1,\n",
      "          'desired': 1,\n",
      "          'goal': 1,\n",
      "          'nthat': 1,\n",
      "          'biblical': 1,\n",
      "          'n': 1,\n",
      "          'race': 1,\n",
      "          'receiveth': 1,\n",
      "          'prize': 1,\n",
      "          'nso': 1,\n",
      "          'may': 1,\n",
      "          'obtain': 1,\n",
      "          'n1': 1,\n",
      "          'corinthians': 1,\n",
      "          '9': 1,\n",
      "          '24': 1,\n",
      "          'kjv': 1,\n",
      "          'nachieving': 1,\n",
      "          'anything': 1,\n",
      "          'worthy': 1,\n",
      "          'requires': 1,\n",
      "          'playing': 1,\n",
      "          'nwe': 1,\n",
      "          'develop': 1,\n",
      "          'fully': 1,\n",
      "          'persuaded': 1,\n",
      "          'mindsets': 1,\n",
      "          'commitment': 1,\n",
      "          'levels': 1,\n",
      "          'endure': 1,\n",
      "          'persevere': 1,\n",
      "          'obstacles': 1,\n",
      "          'distractions': 1,\n",
      "          'lay': 1,\n",
      "          'stated': 1,\n",
      "          'objectives': 1,\n",
      "          'nthis': 1,\n",
      "          'true': 1,\n",
      "          'practical': 1,\n",
      "          'matters': 1,\n",
      "          'physical': 1,\n",
      "          'developing': 1,\n",
      "          'maturity': 1,\n",
      "          'spiritual': 1,\n",
      "          'hardly': 1,\n",
      "          'worth': 1,\n",
      "          'words': 1,\n",
      "          'live': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'zetajones': 6,\n",
      "          'bad': 4,\n",
      "          'movie': 4,\n",
      "          'macdougal': 4,\n",
      "          'nthe': 4,\n",
      "          'entrapment': 4,\n",
      "          'time': 3,\n",
      "          'wrong': 3,\n",
      "          'baker': 3,\n",
      "          'various': 3,\n",
      "          'picture': 3,\n",
      "          'mask': 3,\n",
      "          'hollywood': 2,\n",
      "          'director': 2,\n",
      "          'good': 2,\n",
      "          'really': 2,\n",
      "          'production': 2,\n",
      "          'budget': 2,\n",
      "          'jon': 2,\n",
      "          'amiel': 2,\n",
      "          'eighty': 2,\n",
      "          'million': 2,\n",
      "          'dollar': 2,\n",
      "          'nnow': 2,\n",
      "          'whats': 2,\n",
      "          'connery': 2,\n",
      "          'seen': 2,\n",
      "          'much': 2,\n",
      "          'plot': 2,\n",
      "          'going': 2,\n",
      "          'thing': 2,\n",
      "          'think': 2,\n",
      "          'youd': 2,\n",
      "          'action': 2,\n",
      "          'scenes': 2,\n",
      "          'screen': 2,\n",
      "          'know': 2,\n",
      "          'exactly': 2,\n",
      "          'none': 2,\n",
      "          'scene': 2,\n",
      "          'room': 2,\n",
      "          'great': 2,\n",
      "          'also': 2,\n",
      "          'real': 1,\n",
      "          'tangible': 1,\n",
      "          'proof': 1,\n",
      "          'swear': 1,\n",
      "          'lot': 1,\n",
      "          'producers': 1,\n",
      "          'adamantly': 1,\n",
      "          'believe': 1,\n",
      "          'take': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'writer': 1,\n",
      "          'give': 1,\n",
      "          'project': 1,\n",
      "          'equally': 1,\n",
      "          'actually': 1,\n",
      "          'possible': 1,\n",
      "          'make': 1,\n",
      "          'nusing': 1,\n",
      "          'logic': 1,\n",
      "          'needs': 1,\n",
      "          'done': 1,\n",
      "          'change': 1,\n",
      "          'cast': 1,\n",
      "          'bunch': 1,\n",
      "          'superfamous': 1,\n",
      "          'actors': 1,\n",
      "          'provide': 1,\n",
      "          'almost': 1,\n",
      "          'unlimited': 1,\n",
      "          'nthis': 1,\n",
      "          'way': 1,\n",
      "          'fathom': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'hired': 1,\n",
      "          'order': 1,\n",
      "          'direct': 1,\n",
      "          'waste': 1,\n",
      "          'counting': 1,\n",
      "          'took': 1,\n",
      "          'get': 1,\n",
      "          'theatre': 1,\n",
      "          'continue': 1,\n",
      "          'ferociously': 1,\n",
      "          'attack': 1,\n",
      "          'want': 1,\n",
      "          'point': 1,\n",
      "          'one': 1,\n",
      "          'reasons': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'potential': 1,\n",
      "          'exciting': 1,\n",
      "          'thriller': 1,\n",
      "          'ncatherine': 1,\n",
      "          'plays': 1,\n",
      "          'virginia': 1,\n",
      "          'insurance': 1,\n",
      "          'investigator': 1,\n",
      "          'tracking': 1,\n",
      "          'infamous': 1,\n",
      "          'art': 1,\n",
      "          'thief': 1,\n",
      "          'named': 1,\n",
      "          'robert': 1,\n",
      "          'sean': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'ever': 1,\n",
      "          'blockbuster': 1,\n",
      "          'dont': 1,\n",
      "          'spend': 1,\n",
      "          'frivolous': 1,\n",
      "          'details': 1,\n",
      "          'two': 1,\n",
      "          'team': 1,\n",
      "          'jobs': 1,\n",
      "          'stealing': 1,\n",
      "          'things': 1,\n",
      "          'purposes': 1,\n",
      "          'problem': 1,\n",
      "          'come': 1,\n",
      "          'weve': 1,\n",
      "          'billion': 1,\n",
      "          'times': 1,\n",
      "          'doesnt': 1,\n",
      "          'break': 1,\n",
      "          'new': 1,\n",
      "          'ground': 1,\n",
      "          'bigbudgethollywoodaction': 1,\n",
      "          'genre': 1,\n",
      "          'result': 1,\n",
      "          'entire': 1,\n",
      "          'feels': 1,\n",
      "          'contrived': 1,\n",
      "          'nim': 1,\n",
      "          'completely': 1,\n",
      "          'honest': 1,\n",
      "          'pretty': 1,\n",
      "          'keeping': 1,\n",
      "          'awake': 1,\n",
      "          'throughout': 1,\n",
      "          'runtime': 1,\n",
      "          'looking': 1,\n",
      "          'catherine': 1,\n",
      "          'may': 1,\n",
      "          'compliment': 1,\n",
      "          'ms': 1,\n",
      "          'certainly': 1,\n",
      "          'isnt': 1,\n",
      "          'either': 1,\n",
      "          'writers': 1,\n",
      "          'nearly': 1,\n",
      "          'clever': 1,\n",
      "          'njust': 1,\n",
      "          'profound': 1,\n",
      "          'thought': 1,\n",
      "          'inject': 1,\n",
      "          'lecture': 1,\n",
      "          'semantic': 1,\n",
      "          'difference': 1,\n",
      "          'blackmail': 1,\n",
      "          'nwith': 1,\n",
      "          'would': 1,\n",
      "          'least': 1,\n",
      "          'feature': 1,\n",
      "          'edgeofyour': 1,\n",
      "          'seat': 1,\n",
      "          'breathtaking': 1,\n",
      "          'special': 1,\n",
      "          'fx': 1,\n",
      "          'nwell': 1,\n",
      "          'present': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'huge': 1,\n",
      "          'skyscraper': 1,\n",
      "          'relatively': 1,\n",
      "          'unspectacular': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'involved': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'narrowly': 1,\n",
      "          'beat': 1,\n",
      "          '11': 1,\n",
      "          'years': 1,\n",
      "          'reality': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'watching': 1,\n",
      "          'happen': 1,\n",
      "          'despite': 1,\n",
      "          'rather': 1,\n",
      "          'pathetic': 1,\n",
      "          'attempts': 1,\n",
      "          'screenplay': 1,\n",
      "          'throw': 1,\n",
      "          'twists': 1,\n",
      "          'nmany': 1,\n",
      "          'seem': 1,\n",
      "          'exist': 1,\n",
      "          'merely': 1,\n",
      "          'reason': 1,\n",
      "          'outfit': 1,\n",
      "          'extremely': 1,\n",
      "          'tightfitting': 1,\n",
      "          'clothing': 1,\n",
      "          'particular': 1,\n",
      "          'features': 1,\n",
      "          'crawling': 1,\n",
      "          'around': 1,\n",
      "          'trying': 1,\n",
      "          'avoid': 1,\n",
      "          'laserbeams': 1,\n",
      "          'tries': 1,\n",
      "          'steal': 1,\n",
      "          'ancient': 1,\n",
      "          'chinese': 1,\n",
      "          'nnothing': 1,\n",
      "          'entered': 1,\n",
      "          'floor': 1,\n",
      "          'knew': 1,\n",
      "          'didnt': 1,\n",
      "          'tunnel': 1,\n",
      "          'directly': 1,\n",
      "          'instead': 1,\n",
      "          'side': 1,\n",
      "          'nill': 1,\n",
      "          'tell': 1,\n",
      "          'excuse': 1,\n",
      "          'photograph': 1,\n",
      "          'posterior': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'slides': 1,\n",
      "          'underneath': 1,\n",
      "          'beams': 1,\n",
      "          'allows': 1,\n",
      "          'second': 1,\n",
      "          'exact': 1,\n",
      "          'rehearsal': 1,\n",
      "          'nving': 1,\n",
      "          'rhames': 1,\n",
      "          'makes': 1,\n",
      "          'appearance': 1,\n",
      "          'though': 1,\n",
      "          'presence': 1,\n",
      "          'although': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'even': 1,\n",
      "          'rescue': 1,\n",
      "          'depths': 1,\n",
      "          'boring': 1,\n",
      "          'abyss': 1,\n",
      "          'concept': 1,\n",
      "          'invented': 1,\n",
      "          'describe': 1,\n",
      "          'last': 1,\n",
      "          'complaint': 1,\n",
      "          'littered': 1,\n",
      "          'instances': 1,\n",
      "          'slip': 1,\n",
      "          'shadow': 1,\n",
      "          'behind': 1,\n",
      "          'building': 1,\n",
      "          'becomes': 1,\n",
      "          'obstructed': 1,\n",
      "          'moving': 1,\n",
      "          'vehicle': 1,\n",
      "          'next': 1,\n",
      "          'shot': 1,\n",
      "          'hell': 1,\n",
      "          'spontaneously': 1,\n",
      "          'disappear': 1,\n",
      "          'ninjalike': 1,\n",
      "          'fashion': 1,\n",
      "          'ni': 1,\n",
      "          'patting': 1,\n",
      "          'back': 1,\n",
      "          'thinking': 1,\n",
      "          'itll': 1,\n",
      "          'leave': 1,\n",
      "          'audience': 1,\n",
      "          'wondering': 1,\n",
      "          'days': 1,\n",
      "          'nwe': 1,\n",
      "          'called': 1,\n",
      "          'editing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'analyze': 5,\n",
      "          'think': 5,\n",
      "          'movie': 5,\n",
      "          'nit': 4,\n",
      "          'deniro': 4,\n",
      "          'ni': 4,\n",
      "          'character': 4,\n",
      "          'funny': 4,\n",
      "          'ago': 3,\n",
      "          'nbut': 3,\n",
      "          'parody': 3,\n",
      "          'mob': 3,\n",
      "          'know': 3,\n",
      "          'one': 3,\n",
      "          'saw': 2,\n",
      "          'must': 2,\n",
      "          'thought': 2,\n",
      "          'looked': 2,\n",
      "          'nand': 2,\n",
      "          'bad': 2,\n",
      "          'thing': 2,\n",
      "          'deadon': 2,\n",
      "          'nwell': 2,\n",
      "          'good': 2,\n",
      "          'expression': 2,\n",
      "          'says': 2,\n",
      "          'always': 2,\n",
      "          'badly': 2,\n",
      "          'plays': 2,\n",
      "          'boss': 2,\n",
      "          'comedy': 2,\n",
      "          'nif': 2,\n",
      "          'would': 2,\n",
      "          'though': 2,\n",
      "          'laughs': 2,\n",
      "          'nthis': 2,\n",
      "          'doesnt': 2,\n",
      "          'never': 2,\n",
      "          'scene': 2,\n",
      "          'nits': 2,\n",
      "          'really': 2,\n",
      "          'go': 2,\n",
      "          'nthe': 2,\n",
      "          'formula': 2,\n",
      "          'times': 2,\n",
      "          'laughing': 2,\n",
      "          'originally': 1,\n",
      "          'trailer': 1,\n",
      "          'months': 1,\n",
      "          'admit': 1,\n",
      "          'kind': 1,\n",
      "          'lame': 1,\n",
      "          'commercials': 1,\n",
      "          'started': 1,\n",
      "          'popping': 1,\n",
      "          'week': 1,\n",
      "          'two': 1,\n",
      "          'outright': 1,\n",
      "          'finally': 1,\n",
      "          'opened': 1,\n",
      "          'days': 1,\n",
      "          'odd': 1,\n",
      "          'happened': 1,\n",
      "          'got': 1,\n",
      "          'great': 1,\n",
      "          'reviews': 1,\n",
      "          'ncritics': 1,\n",
      "          'proclaiming': 1,\n",
      "          'hilarious': 1,\n",
      "          'movies': 1,\n",
      "          'praise': 1,\n",
      "          'like': 1,\n",
      "          'figured': 1,\n",
      "          'headed': 1,\n",
      "          'theater': 1,\n",
      "          'nyou': 1,\n",
      "          'trust': 1,\n",
      "          'gut': 1,\n",
      "          'instincts': 1,\n",
      "          'turns': 1,\n",
      "          'valid': 1,\n",
      "          'ever': 1,\n",
      "          'gave': 1,\n",
      "          'credit': 1,\n",
      "          'n': 1,\n",
      "          'slow': 1,\n",
      "          'unfunny': 1,\n",
      "          'acted': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'top': 1,\n",
      "          'ten': 1,\n",
      "          'greatest': 1,\n",
      "          'actors': 1,\n",
      "          'century': 1,\n",
      "          'league': 1,\n",
      "          'problem': 1,\n",
      "          'didnt': 1,\n",
      "          'quite': 1,\n",
      "          'approach': 1,\n",
      "          'material': 1,\n",
      "          'nhe': 1,\n",
      "          'paull': 1,\n",
      "          'vitti': 1,\n",
      "          'somewhere': 1,\n",
      "          'realm': 1,\n",
      "          'drama': 1,\n",
      "          'played': 1,\n",
      "          'straight': 1,\n",
      "          'along': 1,\n",
      "          'lines': 1,\n",
      "          'leslie': 1,\n",
      "          'nielson': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'series': 1,\n",
      "          'probably': 1,\n",
      "          'lot': 1,\n",
      "          'successful': 1,\n",
      "          'nas': 1,\n",
      "          'completely': 1,\n",
      "          'serious': 1,\n",
      "          'moments': 1,\n",
      "          'others': 1,\n",
      "          'work': 1,\n",
      "          'creates': 1,\n",
      "          'uneven': 1,\n",
      "          'breaks': 1,\n",
      "          'mold': 1,\n",
      "          'paced': 1,\n",
      "          'takes': 1,\n",
      "          'crawls': 1,\n",
      "          'another': 1,\n",
      "          'without': 1,\n",
      "          'forward': 1,\n",
      "          'momentum': 1,\n",
      "          'blame': 1,\n",
      "          'placed': 1,\n",
      "          'script': 1,\n",
      "          'obvious': 1,\n",
      "          'writer': 1,\n",
      "          'idea': 1,\n",
      "          'faces': 1,\n",
      "          'breakdown': 1,\n",
      "          'needs': 1,\n",
      "          'services': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'established': 1,\n",
      "          'anywhere': 1,\n",
      "          'film': 1,\n",
      "          'seems': 1,\n",
      "          'billy': 1,\n",
      "          'crystal': 1,\n",
      "          'forces': 1,\n",
      "          'much': 1,\n",
      "          'wackiness': 1,\n",
      "          'ensues': 1,\n",
      "          'sorts': 1,\n",
      "          'repeated': 1,\n",
      "          'several': 1,\n",
      "          'throughout': 1,\n",
      "          'nive': 1,\n",
      "          'said': 1,\n",
      "          'ill': 1,\n",
      "          'say': 1,\n",
      "          'matters': 1,\n",
      "          'whether': 1,\n",
      "          'pacing': 1,\n",
      "          'acting': 1,\n",
      "          'wouldnt': 1,\n",
      "          'bothered': 1,\n",
      "          'busy': 1,\n",
      "          'notice': 1,\n",
      "          'chuckled': 1,\n",
      "          'godfather': 1,\n",
      "          'nsadly': 1,\n",
      "          'dont': 1,\n",
      "          'anyone': 1,\n",
      "          'audience': 1,\n",
      "          'realized': 1,\n",
      "          'sense': 1,\n",
      "          'humour': 1,\n",
      "          'come': 1,\n",
      "          'realize': 1,\n",
      "          'vastly': 1,\n",
      "          'different': 1,\n",
      "          'general': 1,\n",
      "          'population': 1,\n",
      "          'loathed': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'yet': 1,\n",
      "          'loved': 1,\n",
      "          'baseketball': 1,\n",
      "          'nnow': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'office': 1,\n",
      "          'space': 1,\n",
      "          'full': 1,\n",
      "          'genuine': 1,\n",
      "          'wont': 1,\n",
      "          'leave': 1,\n",
      "          'glancing': 1,\n",
      "          'watch': 1,\n",
      "          'every': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'van': 8,\n",
      "          'damme': 7,\n",
      "          'film': 5,\n",
      "          'jeanclaude': 3,\n",
      "          'knock': 3,\n",
      "          'schneider': 3,\n",
      "          'first': 3,\n",
      "          'within': 3,\n",
      "          'hong': 3,\n",
      "          'mindless': 2,\n",
      "          'fun': 2,\n",
      "          'latest': 2,\n",
      "          'nno': 2,\n",
      "          'expected': 2,\n",
      "          'nand': 2,\n",
      "          'whats': 2,\n",
      "          'nthe': 2,\n",
      "          'minutes': 2,\n",
      "          'doesnt': 2,\n",
      "          'action': 2,\n",
      "          'around': 2,\n",
      "          'hark': 2,\n",
      "          'whose': 2,\n",
      "          'nif': 2,\n",
      "          'youre': 2,\n",
      "          'plot': 2,\n",
      "          'kong': 2,\n",
      "          'mael': 2,\n",
      "          'movies': 1,\n",
      "          'tend': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'lot': 1,\n",
      "          'nhis': 1,\n",
      "          'skips': 1,\n",
      "          'part': 1,\n",
      "          'leaving': 1,\n",
      "          'wildly': 1,\n",
      "          'incoherent': 1,\n",
      "          'exercise': 1,\n",
      "          'well': 1,\n",
      "          'simply': 1,\n",
      "          'nyou': 1,\n",
      "          'cant': 1,\n",
      "          'really': 1,\n",
      "          'blame': 1,\n",
      "          'one': 1,\n",
      "          'suspect': 1,\n",
      "          'ever': 1,\n",
      "          'muscles': 1,\n",
      "          'brussels': 1,\n",
      "          'contribute': 1,\n",
      "          'heartfelt': 1,\n",
      "          'performance': 1,\n",
      "          'brimming': 1,\n",
      "          'introspection': 1,\n",
      "          'delicate': 1,\n",
      "          'shades': 1,\n",
      "          'gray': 1,\n",
      "          'even': 1,\n",
      "          'sidekick': 1,\n",
      "          'costar': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'alumnus': 1,\n",
      "          'rob': 1,\n",
      "          'makin': 1,\n",
      "          'copies': 1,\n",
      "          'although': 1,\n",
      "          'neither': 1,\n",
      "          'appear': 1,\n",
      "          'want': 1,\n",
      "          'role': 1,\n",
      "          'straight': 1,\n",
      "          'man': 1,\n",
      "          'problem': 1,\n",
      "          'direction': 1,\n",
      "          'five': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'goes': 1,\n",
      "          'downhill': 1,\n",
      "          'nfive': 1,\n",
      "          'hundred': 1,\n",
      "          'characters': 1,\n",
      "          'seems': 1,\n",
      "          'introduced': 1,\n",
      "          'fifteen': 1,\n",
      "          'nvan': 1,\n",
      "          'land': 1,\n",
      "          'kick': 1,\n",
      "          'thirtytoo': 1,\n",
      "          'late': 1,\n",
      "          'fansand': 1,\n",
      "          'time': 1,\n",
      "          'hour': 1,\n",
      "          'mark': 1,\n",
      "          'rolled': 1,\n",
      "          'jaw': 1,\n",
      "          'cup': 1,\n",
      "          'holder': 1,\n",
      "          'youll': 1,\n",
      "          'wondering': 1,\n",
      "          'elected': 1,\n",
      "          'spend': 1,\n",
      "          'seven': 1,\n",
      "          'dollars': 1,\n",
      "          'mess': 1,\n",
      "          'ndirector': 1,\n",
      "          'tsui': 1,\n",
      "          'previous': 1,\n",
      "          'dammedennis': 1,\n",
      "          'rodman': 1,\n",
      "          'teamed': 1,\n",
      "          'double': 1,\n",
      "          'team': 1,\n",
      "          'films': 1,\n",
      "          'frenetic': 1,\n",
      "          'pace': 1,\n",
      "          'hard': 1,\n",
      "          'know': 1,\n",
      "          'going': 1,\n",
      "          'whos': 1,\n",
      "          'side': 1,\n",
      "          'point': 1,\n",
      "          'nfaster': 1,\n",
      "          'yell': 1,\n",
      "          'fruit': 1,\n",
      "          'stand': 1,\n",
      "          'nwere': 1,\n",
      "          'watching': 1,\n",
      "          'crazed': 1,\n",
      "          'rickshaw': 1,\n",
      "          'race': 1,\n",
      "          'bounced': 1,\n",
      "          'along': 1,\n",
      "          'energetic': 1,\n",
      "          'nwhen': 1,\n",
      "          'starts': 1,\n",
      "          'whacking': 1,\n",
      "          'behind': 1,\n",
      "          'fourfoot': 1,\n",
      "          'eel': 1,\n",
      "          'enthusing': 1,\n",
      "          'move': 1,\n",
      "          'beautiful': 1,\n",
      "          'big': 1,\n",
      "          'ass': 1,\n",
      "          'movie': 1,\n",
      "          'takes': 1,\n",
      "          'unprecedented': 1,\n",
      "          'turn': 1,\n",
      "          'bizarre': 1,\n",
      "          'nevery': 1,\n",
      "          'deliver': 1,\n",
      "          'truly': 1,\n",
      "          'ingenious': 1,\n",
      "          'directorial': 1,\n",
      "          'flourishesinventive': 1,\n",
      "          'camera': 1,\n",
      "          'shots': 1,\n",
      "          'angles': 1,\n",
      "          'wild': 1,\n",
      "          'rides': 1,\n",
      "          'gun': 1,\n",
      "          'silencers': 1,\n",
      "          'tops': 1,\n",
      "          'buildings': 1,\n",
      "          'sprawling': 1,\n",
      "          'street': 1,\n",
      "          'revealing': 1,\n",
      "          'cutins': 1,\n",
      "          'framebut': 1,\n",
      "          'happen': 1,\n",
      "          'quickly': 1,\n",
      "          'furious': 1,\n",
      "          'frame': 1,\n",
      "          'reference': 1,\n",
      "          'theyre': 1,\n",
      "          'wasted': 1,\n",
      "          'could': 1,\n",
      "          'slowed': 1,\n",
      "          'things': 1,\n",
      "          'minute': 1,\n",
      "          'interested': 1,\n",
      "          'better': 1,\n",
      "          'reading': 1,\n",
      "          'capsule': 1,\n",
      "          'review': 1,\n",
      "          'trying': 1,\n",
      "          'extract': 1,\n",
      "          'meaning': 1,\n",
      "          'onscreen': 1,\n",
      "          'shenanigans': 1,\n",
      "          'plays': 1,\n",
      "          'shady': 1,\n",
      "          'bluejeans': 1,\n",
      "          'manufacturer': 1,\n",
      "          'uncovers': 1,\n",
      "          'russian': 1,\n",
      "          'mafia': 1,\n",
      "          'terrorize': 1,\n",
      "          'world': 1,\n",
      "          'nanobombs': 1,\n",
      "          'hidden': 1,\n",
      "          'cabbage': 1,\n",
      "          'patch': 1,\n",
      "          'knockoffs': 1,\n",
      "          'nmaybe': 1,\n",
      "          'nwith': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'na': 1,\n",
      "          'accurate': 1,\n",
      "          'summary': 1,\n",
      "          'would': 1,\n",
      "          'bums': 1,\n",
      "          'failing': 1,\n",
      "          'avoid': 1,\n",
      "          'large': 1,\n",
      "          'blatant': 1,\n",
      "          'cocacola': 1,\n",
      "          'product': 1,\n",
      "          'placements': 1,\n",
      "          'fact': 1,\n",
      "          'staged': 1,\n",
      "          'kongs': 1,\n",
      "          'last': 1,\n",
      "          'days': 1,\n",
      "          'british': 1,\n",
      "          'rule': 1,\n",
      "          'gets': 1,\n",
      "          'lip': 1,\n",
      "          'service': 1,\n",
      "          'figure': 1,\n",
      "          'nperhaps': 1,\n",
      "          'intriguing': 1,\n",
      "          'credit': 1,\n",
      "          'ron': 1,\n",
      "          'russell': 1,\n",
      "          'composed': 1,\n",
      "          'frenzied': 1,\n",
      "          'music': 1,\n",
      "          'score': 1,\n",
      "          'nsome': 1,\n",
      "          'might': 1,\n",
      "          'remember': 1,\n",
      "          'brothers': 1,\n",
      "          '80s': 1,\n",
      "          'synth': 1,\n",
      "          'pop': 1,\n",
      "          'duo': 1,\n",
      "          'sparks': 1,\n",
      "          'contributions': 1,\n",
      "          'confused': 1,\n",
      "          'accompanying': 1,\n",
      "          'kimono': 1,\n",
      "          'house': 1,\n",
      "          'indeed': 1,\n",
      "          'nlike': 1,\n",
      "          'cheap': 1,\n",
      "          'jeans': 1,\n",
      "          'pumma': 1,\n",
      "          'sneakers': 1,\n",
      "          'manufactured': 1,\n",
      "          'dammes': 1,\n",
      "          'real': 1,\n",
      "          'phony': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'twilight': 5,\n",
      "          'harry': 5,\n",
      "          'script': 4,\n",
      "          'actors': 3,\n",
      "          'catherine': 3,\n",
      "          'jack': 3,\n",
      "          'hero': 3,\n",
      "          'nthe': 3,\n",
      "          'benton': 3,\n",
      "          'n': 3,\n",
      "          'every': 3,\n",
      "          'harrys': 3,\n",
      "          'also': 3,\n",
      "          'excop': 2,\n",
      "          'newman': 2,\n",
      "          'sarandon': 2,\n",
      "          'njack': 2,\n",
      "          'blackmailers': 2,\n",
      "          'dying': 2,\n",
      "          'bodies': 2,\n",
      "          'catherines': 2,\n",
      "          'cast': 2,\n",
      "          'like': 2,\n",
      "          'would': 2,\n",
      "          'seem': 2,\n",
      "          'tired': 2,\n",
      "          'stars': 2,\n",
      "          'wants': 2,\n",
      "          'noir': 2,\n",
      "          'little': 2,\n",
      "          'russo': 2,\n",
      "          'try': 2,\n",
      "          'love': 2,\n",
      "          'force': 2,\n",
      "          'exalcoholic': 1,\n",
      "          'exhusband': 1,\n",
      "          'exprivateeye': 1,\n",
      "          'ross': 1,\n",
      "          'paul': 1,\n",
      "          'works': 1,\n",
      "          'pair': 1,\n",
      "          'aging': 1,\n",
      "          'hollywood': 1,\n",
      "          'susan': 1,\n",
      "          'ames': 1,\n",
      "          'gene': 1,\n",
      "          'hackman': 1,\n",
      "          'blackmailed': 1,\n",
      "          'asks': 1,\n",
      "          'deliver': 1,\n",
      "          'payoff': 1,\n",
      "          'ninstead': 1,\n",
      "          'finds': 1,\n",
      "          'nemmet': 1,\n",
      "          'walsh': 1,\n",
      "          'nas': 1,\n",
      "          'begin': 1,\n",
      "          'pile': 1,\n",
      "          'realizes': 1,\n",
      "          'solve': 1,\n",
      "          'disappearance': 1,\n",
      "          'first': 1,\n",
      "          'husband': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'find': 1,\n",
      "          'whos': 1,\n",
      "          'willing': 1,\n",
      "          'kill': 1,\n",
      "          'keep': 1,\n",
      "          'secret': 1,\n",
      "          'buried': 1,\n",
      "          'nnewman': 1,\n",
      "          'nhackman': 1,\n",
      "          'nwith': 1,\n",
      "          'alist': 1,\n",
      "          'oscar': 1,\n",
      "          'laureates': 1,\n",
      "          'promising': 1,\n",
      "          'nhowever': 1,\n",
      "          'predictable': 1,\n",
      "          'nit': 1,\n",
      "          'serve': 1,\n",
      "          'well': 1,\n",
      "          'tvmovieoftheweek': 1,\n",
      "          'possibly': 1,\n",
      "          '1970s': 1,\n",
      "          'detective': 1,\n",
      "          'reprising': 1,\n",
      "          'role': 1,\n",
      "          'appeal': 1,\n",
      "          'project': 1,\n",
      "          'director': 1,\n",
      "          'robert': 1,\n",
      "          'nostalgia': 1,\n",
      "          'much': 1,\n",
      "          '1940s': 1,\n",
      "          'film': 1,\n",
      "          'alan': 1,\n",
      "          'ladd': 1,\n",
      "          'dick': 1,\n",
      "          'powell': 1,\n",
      "          'nall': 1,\n",
      "          'standard': 1,\n",
      "          'tropes': 1,\n",
      "          'hardboiled': 1,\n",
      "          'p': 1,\n",
      "          'namong': 1,\n",
      "          'rich': 1,\n",
      "          'beautiful': 1,\n",
      "          'whose': 1,\n",
      "          'glamour': 1,\n",
      "          'hides': 1,\n",
      "          'sinister': 1,\n",
      "          'secrets': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'tempts': 1,\n",
      "          'confounds': 1,\n",
      "          'shadowy': 1,\n",
      "          'figures': 1,\n",
      "          'shooting': 1,\n",
      "          'doorways': 1,\n",
      "          'dead': 1,\n",
      "          'confronting': 1,\n",
      "          'turn': 1,\n",
      "          'cops': 1,\n",
      "          'dogging': 1,\n",
      "          'path': 1,\n",
      "          'interfering': 1,\n",
      "          'investigation': 1,\n",
      "          'offers': 1,\n",
      "          'originality': 1,\n",
      "          'coauthors': 1,\n",
      "          'richard': 1,\n",
      "          'unaware': 1,\n",
      "          'original': 1,\n",
      "          '1948': 1,\n",
      "          'clich': 1,\n",
      "          '1998': 1,\n",
      "          'nelmer': 1,\n",
      "          'bernsteins': 1,\n",
      "          'score': 1,\n",
      "          'hauntingly': 1,\n",
      "          'melodic': 1,\n",
      "          'could': 1,\n",
      "          'drawn': 1,\n",
      "          'notefornote': 1,\n",
      "          'vintage': 1,\n",
      "          'lead': 1,\n",
      "          'hardnone': 1,\n",
      "          'three': 1,\n",
      "          'made': 1,\n",
      "          'less': 1,\n",
      "          'full': 1,\n",
      "          'effort': 1,\n",
      "          'even': 1,\n",
      "          'burdened': 1,\n",
      "          'bad': 1,\n",
      "          'nthey': 1,\n",
      "          'invest': 1,\n",
      "          'line': 1,\n",
      "          'gesture': 1,\n",
      "          'meaning': 1,\n",
      "          'create': 1,\n",
      "          'convincing': 1,\n",
      "          'sense': 1,\n",
      "          'relationships': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'nharry': 1,\n",
      "          'fond': 1,\n",
      "          'cancer': 1,\n",
      "          'jealous': 1,\n",
      "          'ncatherine': 1,\n",
      "          'teases': 1,\n",
      "          'enjoys': 1,\n",
      "          'attention': 1,\n",
      "          'real': 1,\n",
      "          'feelings': 1,\n",
      "          'hidden': 1,\n",
      "          'beneath': 1,\n",
      "          'carefullymaintained': 1,\n",
      "          'veneer': 1,\n",
      "          'characterdriven': 1,\n",
      "          'nobodys': 1,\n",
      "          'fool': 1,\n",
      "          'directed': 1,\n",
      "          'starring': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'gives': 1,\n",
      "          'work': 1,\n",
      "          'squanders': 1,\n",
      "          'fine': 1,\n",
      "          'supporting': 1,\n",
      "          'stockard': 1,\n",
      "          'channing': 1,\n",
      "          'friend': 1,\n",
      "          'police': 1,\n",
      "          'reese': 1,\n",
      "          'witherspoon': 1,\n",
      "          'bratty': 1,\n",
      "          'kid': 1,\n",
      "          'giancarlo': 1,\n",
      "          'esposito': 1,\n",
      "          'humorous': 1,\n",
      "          'sidekick': 1,\n",
      "          'john': 1,\n",
      "          'spencer': 1,\n",
      "          'nemesis': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'margo': 1,\n",
      "          'martindale': 1,\n",
      "          'james': 1,\n",
      "          'garner': 1,\n",
      "          'cop': 1,\n",
      "          'bailed': 1,\n",
      "          'movie': 1,\n",
      "          'trouble': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'seagal': 6,\n",
      "          'toxic': 3,\n",
      "          'like': 3,\n",
      "          'nseagal': 3,\n",
      "          'epa': 3,\n",
      "          'nbut': 3,\n",
      "          'take': 3,\n",
      "          'film': 2,\n",
      "          'first': 2,\n",
      "          'nand': 2,\n",
      "          'waste': 2,\n",
      "          'nthis': 2,\n",
      "          'mining': 2,\n",
      "          'kentucky': 2,\n",
      "          'nits': 2,\n",
      "          'kristopherson': 2,\n",
      "          'agent': 2,\n",
      "          'turns': 2,\n",
      "          'ni': 2,\n",
      "          'idea': 2,\n",
      "          'agents': 2,\n",
      "          'bring': 2,\n",
      "          'middle': 2,\n",
      "          'fix': 2,\n",
      "          'porches': 2,\n",
      "          'nthe': 2,\n",
      "          'watching': 2,\n",
      "          'message': 2,\n",
      "          'gets': 2,\n",
      "          'earth': 2,\n",
      "          'probably': 1,\n",
      "          'good': 1,\n",
      "          'reason': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'studio': 1,\n",
      "          'chose': 1,\n",
      "          'allow': 1,\n",
      "          'critics': 1,\n",
      "          'view': 1,\n",
      "          'steven': 1,\n",
      "          'opened': 1,\n",
      "          'seeing': 1,\n",
      "          'piece': 1,\n",
      "          'know': 1,\n",
      "          'movie': 1,\n",
      "          'far': 1,\n",
      "          'worst': 1,\n",
      "          'offering': 1,\n",
      "          'hit': 1,\n",
      "          'screen': 1,\n",
      "          'since': 1,\n",
      "          'possibly': 1,\n",
      "          'ernest': 1,\n",
      "          'movies': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nfire': 1,\n",
      "          'centers': 1,\n",
      "          'story': 1,\n",
      "          'little': 1,\n",
      "          'town': 1,\n",
      "          'gods': 1,\n",
      "          'country': 1,\n",
      "          'somewhere': 1,\n",
      "          'eastern': 1,\n",
      "          'beauty': 1,\n",
      "          'natural': 1,\n",
      "          'goodness': 1,\n",
      "          'slowly': 1,\n",
      "          'destroyed': 1,\n",
      "          'uncaring': 1,\n",
      "          'magnate': 1,\n",
      "          'kris': 1,\n",
      "          'constantly': 1,\n",
      "          'looks': 1,\n",
      "          'wants': 1,\n",
      "          'kill': 1,\n",
      "          'getting': 1,\n",
      "          'role': 1,\n",
      "          'nit': 1,\n",
      "          'hes': 1,\n",
      "          'filling': 1,\n",
      "          'mines': 1,\n",
      "          'throughout': 1,\n",
      "          'tidy': 1,\n",
      "          'profit': 1,\n",
      "          'plays': 1,\n",
      "          'jack': 1,\n",
      "          'taggert': 1,\n",
      "          'aikidoversed': 1,\n",
      "          'fighting': 1,\n",
      "          'machine': 1,\n",
      "          'nno': 1,\n",
      "          'cia': 1,\n",
      "          'fbi': 1,\n",
      "          'nsa': 1,\n",
      "          'environmental': 1,\n",
      "          'protection': 1,\n",
      "          'agency': 1,\n",
      "          'trained': 1,\n",
      "          'killers': 1,\n",
      "          'ntaggert': 1,\n",
      "          'sent': 1,\n",
      "          'find': 1,\n",
      "          'perpetrators': 1,\n",
      "          'justice': 1,\n",
      "          'nwritten': 1,\n",
      "          'someone': 1,\n",
      "          'named': 1,\n",
      "          'jeb': 1,\n",
      "          'could': 1,\n",
      "          'already': 1,\n",
      "          'envision': 1,\n",
      "          'stereotypes': 1,\n",
      "          'incestuous': 1,\n",
      "          'relationships': 1,\n",
      "          'banjopicking': 1,\n",
      "          'preachers': 1,\n",
      "          'dumbasnails': 1,\n",
      "          'rednecks': 1,\n",
      "          'script': 1,\n",
      "          'puts': 1,\n",
      "          'right': 1,\n",
      "          'smack': 1,\n",
      "          'dab': 1,\n",
      "          'scenarios': 1,\n",
      "          'tries': 1,\n",
      "          'discreetly': 1,\n",
      "          'fit': 1,\n",
      "          'nseagals': 1,\n",
      "          'disguise': 1,\n",
      "          'longlength': 1,\n",
      "          '1000': 1,\n",
      "          'leather': 1,\n",
      "          'jacket': 1,\n",
      "          'get': 1,\n",
      "          'closer': 1,\n",
      "          'kinfolk': 1,\n",
      "          'peoples': 1,\n",
      "          'free': 1,\n",
      "          'nthats': 1,\n",
      "          'another': 1,\n",
      "          'great': 1,\n",
      "          'asset': 1,\n",
      "          'teaching': 1,\n",
      "          'nslow': 1,\n",
      "          'plodding': 1,\n",
      "          'project': 1,\n",
      "          'total': 1,\n",
      "          'mess': 1,\n",
      "          'sometimes': 1,\n",
      "          'allure': 1,\n",
      "          'outmaneuver': 1,\n",
      "          'enemies': 1,\n",
      "          'outnumber': 1,\n",
      "          'outgun': 1,\n",
      "          'seige': 1,\n",
      "          'nhere': 1,\n",
      "          'bravado': 1,\n",
      "          'basically': 1,\n",
      "          'bullyness': 1,\n",
      "          'ntownsfolk': 1,\n",
      "          'foolish': 1,\n",
      "          'enough': 1,\n",
      "          'challenge': 1,\n",
      "          'quickly': 1,\n",
      "          'subdued': 1,\n",
      "          'nfight': 1,\n",
      "          'scenes': 1,\n",
      "          'quick': 1,\n",
      "          'senseless': 1,\n",
      "          'offers': 1,\n",
      "          'enjoyment': 1,\n",
      "          'value': 1,\n",
      "          'whatsoever': 1,\n",
      "          'soap': 1,\n",
      "          'box': 1,\n",
      "          'wears': 1,\n",
      "          'thin': 1,\n",
      "          'within': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'annoying': 1,\n",
      "          'moment': 1,\n",
      "          'comes': 1,\n",
      "          'barges': 1,\n",
      "          'sunday': 1,\n",
      "          'church': 1,\n",
      "          'ceremony': 1,\n",
      "          'behind': 1,\n",
      "          'pulpit': 1,\n",
      "          'beseeches': 1,\n",
      "          'townsfolk': 1,\n",
      "          'control': 1,\n",
      "          'lives': 1,\n",
      "          'help': 1,\n",
      "          'clean': 1,\n",
      "          'environment': 1,\n",
      "          'epitome': 1,\n",
      "          'moralistically': 1,\n",
      "          'mushy': 1,\n",
      "          'happens': 1,\n",
      "          'person': 1,\n",
      "          'responsible': 1,\n",
      "          'dumping': 1,\n",
      "          'meets': 1,\n",
      "          'nkristopherson': 1,\n",
      "          'asks': 1,\n",
      "          'much': 1,\n",
      "          'go': 1,\n",
      "          'away': 1,\n",
      "          'gallantly': 1,\n",
      "          'replies': 1,\n",
      "          'ill': 1,\n",
      "          'leave': 1,\n",
      "          'poison': 1,\n",
      "          'streams': 1,\n",
      "          'expecting': 1,\n",
      "          'patriotic': 1,\n",
      "          'music': 1,\n",
      "          'start': 1,\n",
      "          'blasting': 1,\n",
      "          'show': 1,\n",
      "          'fireworks': 1,\n",
      "          'background': 1,\n",
      "          'truly': 1,\n",
      "          'nothing': 1,\n",
      "          'pompous': 1,\n",
      "          'showcase': 1,\n",
      "          'seagals': 1,\n",
      "          'righteousness': 1,\n",
      "          'narcissistic': 1,\n",
      "          'arrogance': 1,\n",
      "          'vanguard': 1,\n",
      "          'trying': 1,\n",
      "          'new': 1,\n",
      "          'genre': 1,\n",
      "          'filmplace': 1,\n",
      "          'envirothriller': 1,\n",
      "          'deadly': 1,\n",
      "          'ground': 1,\n",
      "          'nhowever': 1,\n",
      "          'never': 1,\n",
      "          'come': 1,\n",
      "          'across': 1,\n",
      "          'poorly': 1,\n",
      "          'developed': 1,\n",
      "          'vehicles': 1,\n",
      "          'nstill': 1,\n",
      "          'believe': 1,\n",
      "          'preserving': 1,\n",
      "          'mother': 1,\n",
      "          'save': 1,\n",
      "          '5': 1,\n",
      "          'please': 1,\n",
      "          'donate': 1,\n",
      "          'instead': 1,\n",
      "          'worthy': 1,\n",
      "          'environmentally': 1,\n",
      "          'conscious': 1,\n",
      "          'charity': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'real': 4,\n",
      "          'enough': 4,\n",
      "          'humor': 4,\n",
      "          'superficial': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'meaning': 3,\n",
      "          'blonde': 3,\n",
      "          'little': 3,\n",
      "          'nthe': 3,\n",
      "          'comedy': 2,\n",
      "          'nhowever': 2,\n",
      "          'find': 2,\n",
      "          'modine': 2,\n",
      "          'struggling': 2,\n",
      "          'actor': 2,\n",
      "          'catherine': 2,\n",
      "          'keener': 2,\n",
      "          'best': 2,\n",
      "          'bob': 2,\n",
      "          'films': 2,\n",
      "          'pathetic': 2,\n",
      "          'makes': 2,\n",
      "          'sense': 2,\n",
      "          'completely': 2,\n",
      "          'plotlines': 2,\n",
      "          'stuck': 2,\n",
      "          'stronger': 2,\n",
      "          'tom': 1,\n",
      "          'dicillo': 1,\n",
      "          'directs': 1,\n",
      "          'people': 1,\n",
      "          'careers': 1,\n",
      "          'searching': 1,\n",
      "          'deeper': 1,\n",
      "          'wont': 1,\n",
      "          'much': 1,\n",
      "          'either': 1,\n",
      "          'njoe': 1,\n",
      "          'matthew': 1,\n",
      "          'claims': 1,\n",
      "          'one': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'credits': 1,\n",
      "          'belt': 1,\n",
      "          'nhis': 1,\n",
      "          'girlfriend': 1,\n",
      "          'mary': 1,\n",
      "          'pretensions': 1,\n",
      "          'career': 1,\n",
      "          'shes': 1,\n",
      "          'makeup': 1,\n",
      "          'artist': 1,\n",
      "          'working': 1,\n",
      "          'eccentric': 1,\n",
      "          'fashion': 1,\n",
      "          'photographer': 1,\n",
      "          'blair': 1,\n",
      "          'marlo': 1,\n",
      "          'thomas': 1,\n",
      "          'supermodel': 1,\n",
      "          'month': 1,\n",
      "          'sahara': 1,\n",
      "          'bridgette': 1,\n",
      "          'wilson': 1,\n",
      "          'nsahara': 1,\n",
      "          'acquired': 1,\n",
      "          'new': 1,\n",
      "          'age': 1,\n",
      "          'spirituality': 1,\n",
      "          'repeated': 1,\n",
      "          'viewing': 1,\n",
      "          'mermaid': 1,\n",
      "          'onagain': 1,\n",
      "          'offagain': 1,\n",
      "          'relationship': 1,\n",
      "          'joes': 1,\n",
      "          'friend': 1,\n",
      "          'maxwell': 1,\n",
      "          'caulfield': 1,\n",
      "          'gotten': 1,\n",
      "          'biggest': 1,\n",
      "          'break': 1,\n",
      "          'yet': 1,\n",
      "          'starring': 1,\n",
      "          'role': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'opposite': 1,\n",
      "          'beautiful': 1,\n",
      "          'kelly': 1,\n",
      "          'daryl': 1,\n",
      "          'hannah': 1,\n",
      "          'may': 1,\n",
      "          'illusive': 1,\n",
      "          'woman': 1,\n",
      "          'hes': 1,\n",
      "          'always': 1,\n",
      "          'pursued': 1,\n",
      "          'nthere': 1,\n",
      "          'moments': 1,\n",
      "          'good': 1,\n",
      "          'stuff': 1,\n",
      "          'throwaway': 1,\n",
      "          'details': 1,\n",
      "          'background': 1,\n",
      "          'saharas': 1,\n",
      "          'perfume': 1,\n",
      "          'ads': 1,\n",
      "          'depression': 1,\n",
      "          'state': 1,\n",
      "          'mind': 1,\n",
      "          'nbut': 1,\n",
      "          'superficiality': 1,\n",
      "          'models': 1,\n",
      "          'actors': 1,\n",
      "          'shoot': 1,\n",
      "          'fish': 1,\n",
      "          'barrel': 1,\n",
      "          'nand': 1,\n",
      "          'unfortunately': 1,\n",
      "          'forays': 1,\n",
      "          'outside': 1,\n",
      "          'realm': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'framing': 1,\n",
      "          'device': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n",
      "          'dog': 1,\n",
      "          'story': 1,\n",
      "          'serves': 1,\n",
      "          'absolutely': 1,\n",
      "          'purpose': 1,\n",
      "          'tangential': 1,\n",
      "          'main': 1,\n",
      "          'movie': 1,\n",
      "          'nmatthew': 1,\n",
      "          'sympathetic': 1,\n",
      "          'characters': 1,\n",
      "          'film': 1,\n",
      "          'theyre': 1,\n",
      "          'boring': 1,\n",
      "          'nmodine': 1,\n",
      "          'whines': 1,\n",
      "          'complains': 1,\n",
      "          'would': 1,\n",
      "          'matched': 1,\n",
      "          'someone': 1,\n",
      "          'elizabeth': 1,\n",
      "          'berkley': 1,\n",
      "          'appears': 1,\n",
      "          'another': 1,\n",
      "          'nkeeners': 1,\n",
      "          'character': 1,\n",
      "          'edge': 1,\n",
      "          'insult': 1,\n",
      "          'selfdefense': 1,\n",
      "          'class': 1,\n",
      "          'taught': 1,\n",
      "          'denis': 1,\n",
      "          'leary': 1,\n",
      "          'less': 1,\n",
      "          'movies': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'well': 1,\n",
      "          'ntheres': 1,\n",
      "          'speed': 1,\n",
      "          'things': 1,\n",
      "          'along': 1,\n",
      "          'propel': 1,\n",
      "          'drama': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'batman': 14,\n",
      "          'robin': 9,\n",
      "          'nthe': 6,\n",
      "          'film': 5,\n",
      "          'movie': 4,\n",
      "          'n': 4,\n",
      "          'scenes': 4,\n",
      "          'schumacher': 4,\n",
      "          'characters': 4,\n",
      "          'one': 3,\n",
      "          'joker': 3,\n",
      "          'run': 3,\n",
      "          'merely': 3,\n",
      "          'clooney': 3,\n",
      "          'bruce': 3,\n",
      "          'event': 2,\n",
      "          'thats': 2,\n",
      "          'producers': 2,\n",
      "          'apparently': 2,\n",
      "          'spectacle': 2,\n",
      "          'sets': 2,\n",
      "          'costumes': 2,\n",
      "          'fight': 2,\n",
      "          'hint': 2,\n",
      "          'nits': 2,\n",
      "          'like': 2,\n",
      "          'way': 2,\n",
      "          'burtons': 2,\n",
      "          'darkness': 2,\n",
      "          'far': 2,\n",
      "          'nbatman': 2,\n",
      "          'jack': 2,\n",
      "          'nicholson': 2,\n",
      "          'joel': 2,\n",
      "          'na': 2,\n",
      "          'people': 2,\n",
      "          'time': 2,\n",
      "          'action': 2,\n",
      "          'momentum': 2,\n",
      "          'doesnt': 2,\n",
      "          'lose': 2,\n",
      "          'gives': 2,\n",
      "          'character': 2,\n",
      "          'sense': 2,\n",
      "          'even': 2,\n",
      "          'michael': 2,\n",
      "          'gough': 2,\n",
      "          'waynes': 2,\n",
      "          'nas': 2,\n",
      "          'hell': 2,\n",
      "          'alicia': 2,\n",
      "          'silverstone': 2,\n",
      "          'hard': 2,\n",
      "          'batgirl': 2,\n",
      "          'ni': 2,\n",
      "          'rubber': 2,\n",
      "          'really': 2,\n",
      "          'schwarzenegger': 2,\n",
      "          'thurman': 2,\n",
      "          'better': 2,\n",
      "          'poison': 2,\n",
      "          'ivy': 2,\n",
      "          'series': 2,\n",
      "          'ads': 1,\n",
      "          'scream': 1,\n",
      "          'summer': 1,\n",
      "          'problem': 1,\n",
      "          'intent': 1,\n",
      "          'creating': 1,\n",
      "          'forgot': 1,\n",
      "          'put': 1,\n",
      "          'actual': 1,\n",
      "          'inside': 1,\n",
      "          '126': 1,\n",
      "          'minutes': 1,\n",
      "          'lavish': 1,\n",
      "          'flashy': 1,\n",
      "          'big': 1,\n",
      "          'confusing': 1,\n",
      "          'barely': 1,\n",
      "          'substance': 1,\n",
      "          'cheesy': 1,\n",
      "          'kings': 1,\n",
      "          'island': 1,\n",
      "          'stage': 1,\n",
      "          'shows': 1,\n",
      "          'bright': 1,\n",
      "          'busy': 1,\n",
      "          'visually': 1,\n",
      "          'diverting': 1,\n",
      "          'much': 1,\n",
      "          'fun': 1,\n",
      "          'nit': 1,\n",
      "          'wasnt': 1,\n",
      "          'always': 1,\n",
      "          'ntim': 1,\n",
      "          'epic': 1,\n",
      "          'story': 1,\n",
      "          'obsession': 1,\n",
      "          'duality': 1,\n",
      "          'revenge': 1,\n",
      "          'perfect': 1,\n",
      "          'striking': 1,\n",
      "          'mood': 1,\n",
      "          'piece': 1,\n",
      "          'otherworldly': 1,\n",
      "          'feel': 1,\n",
      "          'creepy': 1,\n",
      "          'brooding': 1,\n",
      "          'creature': 1,\n",
      "          'night': 1,\n",
      "          'brilliantly': 1,\n",
      "          'overplayed': 1,\n",
      "          'charismatic': 1,\n",
      "          'repellent': 1,\n",
      "          'opposite': 1,\n",
      "          'sides': 1,\n",
      "          'coin': 1,\n",
      "          'battling': 1,\n",
      "          'inner': 1,\n",
      "          'demons': 1,\n",
      "          'another': 1,\n",
      "          'gotham': 1,\n",
      "          'citys': 1,\n",
      "          'breathtaking': 1,\n",
      "          'gothic': 1,\n",
      "          'skyline': 1,\n",
      "          'nthose': 1,\n",
      "          'days': 1,\n",
      "          'dark': 1,\n",
      "          'knight': 1,\n",
      "          'gone': 1,\n",
      "          'replaced': 1,\n",
      "          'psychedelic': 1,\n",
      "          'ice': 1,\n",
      "          'capades': 1,\n",
      "          'amuck': 1,\n",
      "          'common': 1,\n",
      "          'campy': 1,\n",
      "          '60s': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'tim': 1,\n",
      "          'tale': 1,\n",
      "          'blame': 1,\n",
      "          'lies': 1,\n",
      "          'director': 1,\n",
      "          'former': 1,\n",
      "          'windowdresser': 1,\n",
      "          'adept': 1,\n",
      "          'decorating': 1,\n",
      "          'dressing': 1,\n",
      "          'exotic': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'comes': 1,\n",
      "          'walk': 1,\n",
      "          'talk': 1,\n",
      "          'hasnt': 1,\n",
      "          'faintest': 1,\n",
      "          'notion': 1,\n",
      "          'overstuffed': 1,\n",
      "          'intricately': 1,\n",
      "          'choreographed': 1,\n",
      "          'poorly': 1,\n",
      "          'edited': 1,\n",
      "          'often': 1,\n",
      "          'difficult': 1,\n",
      "          'tell': 1,\n",
      "          'whos': 1,\n",
      "          'whacking': 1,\n",
      "          'nwhile': 1,\n",
      "          'flail': 1,\n",
      "          'oneliners': 1,\n",
      "          'bad': 1,\n",
      "          'puns': 1,\n",
      "          'tossed': 1,\n",
      "          'confetti': 1,\n",
      "          'carefully': 1,\n",
      "          'placed': 1,\n",
      "          'jokes': 1,\n",
      "          'set': 1,\n",
      "          'sailing': 1,\n",
      "          'many': 1,\n",
      "          'wisecracks': 1,\n",
      "          'undermine': 1,\n",
      "          'stalls': 1,\n",
      "          'completely': 1,\n",
      "          'several': 1,\n",
      "          'occasions': 1,\n",
      "          'rare': 1,\n",
      "          'see': 1,\n",
      "          'flick': 1,\n",
      "          'sluggish': 1,\n",
      "          'nironically': 1,\n",
      "          'parts': 1,\n",
      "          'work': 1,\n",
      "          'ones': 1,\n",
      "          'showing': 1,\n",
      "          'street': 1,\n",
      "          'clothing': 1,\n",
      "          'succeed': 1,\n",
      "          'george': 1,\n",
      "          'wayne': 1,\n",
      "          'neasily': 1,\n",
      "          'best': 1,\n",
      "          'yet': 1,\n",
      "          'clooneys': 1,\n",
      "          'expressive': 1,\n",
      "          'eyes': 1,\n",
      "          'weary': 1,\n",
      "          'smile': 1,\n",
      "          'depth': 1,\n",
      "          'script': 1,\n",
      "          'films': 1,\n",
      "          'effective': 1,\n",
      "          'scene': 1,\n",
      "          'tender': 1,\n",
      "          'quiet': 1,\n",
      "          'exchange': 1,\n",
      "          'alfred': 1,\n",
      "          'butler': 1,\n",
      "          'surrogate': 1,\n",
      "          'father': 1,\n",
      "          'heroes': 1,\n",
      "          'chris': 1,\n",
      "          'odonnells': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'perky': 1,\n",
      "          'horny': 1,\n",
      "          'pudgy': 1,\n",
      "          'accept': 1,\n",
      "          'athlete': 1,\n",
      "          'debut': 1,\n",
      "          'nin': 1,\n",
      "          'filled': 1,\n",
      "          'brim': 1,\n",
      "          'major': 1,\n",
      "          'decision': 1,\n",
      "          'add': 1,\n",
      "          'entirely': 1,\n",
      "          'unnecessary': 1,\n",
      "          'elle': 1,\n",
      "          'macpherson': 1,\n",
      "          'girlfriend': 1,\n",
      "          'puzzling': 1,\n",
      "          'suspect': 1,\n",
      "          'inserted': 1,\n",
      "          'women': 1,\n",
      "          'attempt': 1,\n",
      "          'convince': 1,\n",
      "          'audiences': 1,\n",
      "          'two': 1,\n",
      "          'guys': 1,\n",
      "          'around': 1,\n",
      "          'suits': 1,\n",
      "          'builtin': 1,\n",
      "          'nipples': 1,\n",
      "          'shapely': 1,\n",
      "          'buttocks': 1,\n",
      "          'huge': 1,\n",
      "          'codpieces': 1,\n",
      "          'actually': 1,\n",
      "          'straight': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'real': 1,\n",
      "          'stars': 1,\n",
      "          'villains': 1,\n",
      "          'suffers': 1,\n",
      "          'mr': 1,\n",
      "          'freeze': 1,\n",
      "          'arnold': 1,\n",
      "          'worst': 1,\n",
      "          'performance': 1,\n",
      "          'years': 1,\n",
      "          'spitting': 1,\n",
      "          'stream': 1,\n",
      "          'lame': 1,\n",
      "          'catch': 1,\n",
      "          'phrases': 1,\n",
      "          'wooden': 1,\n",
      "          'fashion': 1,\n",
      "          'nlaboring': 1,\n",
      "          'ton': 1,\n",
      "          'appliances': 1,\n",
      "          'looks': 1,\n",
      "          'hes': 1,\n",
      "          'trouble': 1,\n",
      "          'moving': 1,\n",
      "          'suit': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'trying': 1,\n",
      "          'act': 1,\n",
      "          'numa': 1,\n",
      "          'fares': 1,\n",
      "          'somewhat': 1,\n",
      "          'nshe': 1,\n",
      "          'overacts': 1,\n",
      "          'terribly': 1,\n",
      "          'early': 1,\n",
      "          'establishing': 1,\n",
      "          'rule': 1,\n",
      "          'person': 1,\n",
      "          'becomes': 1,\n",
      "          'villain': 1,\n",
      "          'must': 1,\n",
      "          'cartoonish': 1,\n",
      "          'bumbling': 1,\n",
      "          'nerd': 1,\n",
      "          'nonce': 1,\n",
      "          'transforms': 1,\n",
      "          'ecopsychotic': 1,\n",
      "          'nice': 1,\n",
      "          'mae': 1,\n",
      "          'west': 1,\n",
      "          'impersonation': 1,\n",
      "          'classic': 1,\n",
      "          'vamp': 1,\n",
      "          'seduce': 1,\n",
      "          'men': 1,\n",
      "          'breath': 1,\n",
      "          'kill': 1,\n",
      "          'kiss': 1,\n",
      "          'nthurman': 1,\n",
      "          'fails': 1,\n",
      "          'maintain': 1,\n",
      "          'maniacal': 1,\n",
      "          'style': 1,\n",
      "          'though': 1,\n",
      "          'ends': 1,\n",
      "          'sputtering': 1,\n",
      "          'latter': 1,\n",
      "          'biggest': 1,\n",
      "          'lesson': 1,\n",
      "          'learned': 1,\n",
      "          'njoel': 1,\n",
      "          'fills': 1,\n",
      "          'screen': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'technicolor': 1,\n",
      "          'overkill': 1,\n",
      "          'emphasizes': 1,\n",
      "          'trifle': 1,\n",
      "          'nsome': 1,\n",
      "          'critics': 1,\n",
      "          'suggest': 1,\n",
      "          'steam': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'nmy': 1,\n",
      "          'prescription': 1,\n",
      "          'nfire': 1,\n",
      "          'offer': 1,\n",
      "          'ticket': 1,\n",
      "          'fetishists': 1,\n",
      "          'convention': 1,\n",
      "          'understand': 1,\n",
      "          'theres': 1,\n",
      "          'feelings': 1,\n",
      "          'ngive': 1,\n",
      "          'walking': 1,\n",
      "          'papers': 1,\n",
      "          'keeping': 1,\n",
      "          'odonnell': 1,\n",
      "          'ncall': 1,\n",
      "          'michelle': 1,\n",
      "          'pfieffer': 1,\n",
      "          'beg': 1,\n",
      "          'reprise': 1,\n",
      "          'roles': 1,\n",
      "          'catwoman': 1,\n",
      "          'nthen': 1,\n",
      "          'ditch': 1,\n",
      "          'campiness': 1,\n",
      "          'love': 1,\n",
      "          'pete': 1,\n",
      "          'mentality': 1,\n",
      "          'make': 1,\n",
      "          'instead': 1,\n",
      "          'next': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gordy': 8,\n",
      "          'movie': 5,\n",
      "          'one': 4,\n",
      "          'stupid': 4,\n",
      "          'story': 3,\n",
      "          'named': 3,\n",
      "          'course': 3,\n",
      "          'jinnie': 3,\n",
      "          'hank': 3,\n",
      "          'bad': 2,\n",
      "          'dumb': 2,\n",
      "          'actually': 2,\n",
      "          'even': 2,\n",
      "          'children': 2,\n",
      "          'may': 2,\n",
      "          'family': 2,\n",
      "          'nof': 2,\n",
      "          'little': 2,\n",
      "          'sue': 2,\n",
      "          'young': 2,\n",
      "          'film': 2,\n",
      "          'huge': 2,\n",
      "          'show': 2,\n",
      "          'nhe': 2,\n",
      "          'leaves': 2,\n",
      "          'see': 2,\n",
      "          'ceo': 2,\n",
      "          'villain': 2,\n",
      "          '90minutelong': 1,\n",
      "          'sesame': 1,\n",
      "          'street': 1,\n",
      "          'skit': 1,\n",
      "          'nthis': 1,\n",
      "          'depressing': 1,\n",
      "          'think': 1,\n",
      "          'hollywood': 1,\n",
      "          'executives': 1,\n",
      "          'gave': 1,\n",
      "          'green': 1,\n",
      "          'light': 1,\n",
      "          'surprising': 1,\n",
      "          'fact': 1,\n",
      "          'disney': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'kids': 1,\n",
      "          'age': 1,\n",
      "          'five': 1,\n",
      "          'able': 1,\n",
      "          'tolerate': 1,\n",
      "          'nit': 1,\n",
      "          'farm': 1,\n",
      "          'piglet': 1,\n",
      "          'voiced': 1,\n",
      "          'garms': 1,\n",
      "          'whose': 1,\n",
      "          'taken': 1,\n",
      "          'away': 1,\n",
      "          'north': 1,\n",
      "          'know': 1,\n",
      "          'means': 1,\n",
      "          'death': 1,\n",
      "          'hear': 1,\n",
      "          'animals': 1,\n",
      "          'talk': 1,\n",
      "          'went': 1,\n",
      "          'trouble': 1,\n",
      "          'attempting': 1,\n",
      "          'sync': 1,\n",
      "          'voices': 1,\n",
      "          'mouths': 1,\n",
      "          'comes': 1,\n",
      "          'terrible': 1,\n",
      "          'nactually': 1,\n",
      "          'almost': 1,\n",
      "          'funny': 1,\n",
      "          'way': 1,\n",
      "          'nthe': 1,\n",
      "          'remotely': 1,\n",
      "          'interesting': 1,\n",
      "          'likable': 1,\n",
      "          'character': 1,\n",
      "          'soon': 1,\n",
      "          'appears': 1,\n",
      "          'girl': 1,\n",
      "          'macallister': 1,\n",
      "          'sees': 1,\n",
      "          'back': 1,\n",
      "          'truck': 1,\n",
      "          'essentially': 1,\n",
      "          'steals': 1,\n",
      "          'njinnie': 1,\n",
      "          'country': 1,\n",
      "          'singer': 1,\n",
      "          'goes': 1,\n",
      "          'tangent': 1,\n",
      "          'concert': 1,\n",
      "          'people': 1,\n",
      "          'dancing': 1,\n",
      "          'nwhat': 1,\n",
      "          'point': 1,\n",
      "          'nmaybe': 1,\n",
      "          'producers': 1,\n",
      "          'relatives': 1,\n",
      "          'wanted': 1,\n",
      "          'camera': 1,\n",
      "          'promote': 1,\n",
      "          'something': 1,\n",
      "          'nwe': 1,\n",
      "          'cut': 1,\n",
      "          'social': 1,\n",
      "          'gathering': 1,\n",
      "          'drop': 1,\n",
      "          'another': 1,\n",
      "          'kid': 1,\n",
      "          'royce': 1,\n",
      "          'roescher': 1,\n",
      "          'sad': 1,\n",
      "          'divorced': 1,\n",
      "          'mother': 1,\n",
      "          'dating': 1,\n",
      "          'party': 1,\n",
      "          'meets': 1,\n",
      "          'accidentally': 1,\n",
      "          'falls': 1,\n",
      "          'pool': 1,\n",
      "          'probably': 1,\n",
      "          'sitting': 1,\n",
      "          'diving': 1,\n",
      "          'board': 1,\n",
      "          '200': 1,\n",
      "          'suit': 1,\n",
      "          'nah': 1,\n",
      "          'didnt': 1,\n",
      "          'coming': 1,\n",
      "          'nstarts': 1,\n",
      "          'drown': 1,\n",
      "          'miraculously': 1,\n",
      "          'saved': 1,\n",
      "          'pushes': 1,\n",
      "          'inflatable': 1,\n",
      "          'float': 1,\n",
      "          'saves': 1,\n",
      "          'nif': 1,\n",
      "          'insanely': 1,\n",
      "          'already': 1,\n",
      "          'quickly': 1,\n",
      "          'changes': 1,\n",
      "          'gives': 1,\n",
      "          'ends': 1,\n",
      "          'becoming': 1,\n",
      "          'food': 1,\n",
      "          'processing': 1,\n",
      "          'corporation': 1,\n",
      "          'hanks': 1,\n",
      "          'grandfather': 1,\n",
      "          'original': 1,\n",
      "          'dies': 1,\n",
      "          'fortune': 1,\n",
      "          'nand': 1,\n",
      "          'must': 1,\n",
      "          'donadio': 1,\n",
      "          'sipes': 1,\n",
      "          'isnt': 1,\n",
      "          'evil': 1,\n",
      "          'never': 1,\n",
      "          'raises': 1,\n",
      "          'voice': 1,\n",
      "          'becomes': 1,\n",
      "          'angry': 1,\n",
      "          'typical': 1,\n",
      "          'idiot': 1,\n",
      "          'goons': 1,\n",
      "          'kidnap': 1,\n",
      "          'beyond': 1,\n",
      "          'cartoony': 1,\n",
      "          'constantly': 1,\n",
      "          'two': 1,\n",
      "          'steps': 1,\n",
      "          'ahead': 1,\n",
      "          'nits': 1,\n",
      "          'hard': 1,\n",
      "          'tell': 1,\n",
      "          'whether': 1,\n",
      "          'overall': 1,\n",
      "          'corniness': 1,\n",
      "          'cheesiness': 1,\n",
      "          'intentional': 1,\n",
      "          'filmmakers': 1,\n",
      "          'untalented': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'tolerable': 1,\n",
      "          'watch': 1,\n",
      "          'thus': 1,\n",
      "          'earning': 1,\n",
      "          'star': 1,\n",
      "          'dreaded': 1,\n",
      "          'z': 1,\n",
      "          'nbut': 1,\n",
      "          'unbelievably': 1,\n",
      "          'boring': 1,\n",
      "          'cliche': 1,\n",
      "          'unfunny': 1,\n",
      "          'corny': 1,\n",
      "          'plain': 1,\n",
      "          'scare': 1,\n",
      "          'certainly': 1,\n",
      "          'disturbed': 1,\n",
      "          'n': 1,\n",
      "          '42196': 1,\n",
      "          '12997': 1,\n",
      "          '61397': 1,\n",
      "          'also': 1,\n",
      "          'babe': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'senseless': 5,\n",
      "          'darryl': 5,\n",
      "          'moments': 4,\n",
      "          'senses': 4,\n",
      "          'wayans': 3,\n",
      "          'simply': 3,\n",
      "          'wayanss': 3,\n",
      "          'comedy': 3,\n",
      "          'marlon': 2,\n",
      "          'physical': 2,\n",
      "          'gift': 2,\n",
      "          'five': 2,\n",
      "          'point': 2,\n",
      "          'film': 2,\n",
      "          'use': 2,\n",
      "          'goes': 2,\n",
      "          'nbut': 2,\n",
      "          'movie': 2,\n",
      "          'nonce': 2,\n",
      "          'comic': 2,\n",
      "          'way': 2,\n",
      "          'anything': 2,\n",
      "          'serious': 2,\n",
      "          'man': 2,\n",
      "          'television': 2,\n",
      "          'r': 1,\n",
      "          'talented': 1,\n",
      "          'comedian': 1,\n",
      "          'brings': 1,\n",
      "          'life': 1,\n",
      "          'nalas': 1,\n",
      "          'enough': 1,\n",
      "          'lift': 1,\n",
      "          'fantasycomedy': 1,\n",
      "          'onejoke': 1,\n",
      "          'premise': 1,\n",
      "          'ngranted': 1,\n",
      "          'one': 1,\n",
      "          'joke': 1,\n",
      "          'initially': 1,\n",
      "          'amusing': 1,\n",
      "          'nwhen': 1,\n",
      "          'witherspoon': 1,\n",
      "          'economics': 1,\n",
      "          'major': 1,\n",
      "          'stratford': 1,\n",
      "          'university': 1,\n",
      "          'hits': 1,\n",
      "          'dire': 1,\n",
      "          'financial': 1,\n",
      "          'straits': 1,\n",
      "          'becomes': 1,\n",
      "          'guinea': 1,\n",
      "          'pig': 1,\n",
      "          'experimental': 1,\n",
      "          'drug': 1,\n",
      "          'heightens': 1,\n",
      "          'nafter': 1,\n",
      "          'initial': 1,\n",
      "          'side': 1,\n",
      "          'effects': 1,\n",
      "          'problems': 1,\n",
      "          'controlling': 1,\n",
      "          'superhuman': 1,\n",
      "          'learns': 1,\n",
      "          'enjoy': 1,\n",
      "          'benefits': 1,\n",
      "          'abilities': 1,\n",
      "          'uses': 1,\n",
      "          'land': 1,\n",
      "          'position': 1,\n",
      "          'highly': 1,\n",
      "          'esteemed': 1,\n",
      "          'corporate': 1,\n",
      "          'firm': 1,\n",
      "          'nat': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'senseful': 1,\n",
      "          'turns': 1,\n",
      "          'plot': 1,\n",
      "          'finds': 1,\n",
      "          'able': 1,\n",
      "          'four': 1,\n",
      "          'essentially': 1,\n",
      "          'leaving': 1,\n",
      "          'himyessenseless': 1,\n",
      "          'nthis': 1,\n",
      "          'sets': 1,\n",
      "          'showcase': 1,\n",
      "          'especially': 1,\n",
      "          'loses': 1,\n",
      "          'sense': 1,\n",
      "          'feeling': 1,\n",
      "          'body': 1,\n",
      "          'completely': 1,\n",
      "          'hilariously': 1,\n",
      "          'limp': 1,\n",
      "          'gags': 1,\n",
      "          'gag': 1,\n",
      "          'behind': 1,\n",
      "          'entire': 1,\n",
      "          'quickly': 1,\n",
      "          'grows': 1,\n",
      "          'stale': 1,\n",
      "          'shown': 1,\n",
      "          'without': 1,\n",
      "          'instead': 1,\n",
      "          'exploring': 1,\n",
      "          'new': 1,\n",
      "          'territory': 1,\n",
      "          'director': 1,\n",
      "          'penelope': 1,\n",
      "          'spheeris': 1,\n",
      "          'screenwriters': 1,\n",
      "          'greg': 1,\n",
      "          'erb': 1,\n",
      "          'craig': 1,\n",
      "          'mazin': 1,\n",
      "          'take': 1,\n",
      "          'easy': 1,\n",
      "          'recycle': 1,\n",
      "          'form': 1,\n",
      "          'senselessness': 1,\n",
      "          'nwayans': 1,\n",
      "          'approaches': 1,\n",
      "          'goround': 1,\n",
      "          'gusto': 1,\n",
      "          'hes': 1,\n",
      "          'treading': 1,\n",
      "          'water': 1,\n",
      "          'rest': 1,\n",
      "          'films': 1,\n",
      "          'unfunny': 1,\n",
      "          'duration': 1,\n",
      "          'nsenseless': 1,\n",
      "          'would': 1,\n",
      "          'problematic': 1,\n",
      "          'didnt': 1,\n",
      "          'strive': 1,\n",
      "          'trifle': 1,\n",
      "          'nhowever': 1,\n",
      "          'raucous': 1,\n",
      "          'often': 1,\n",
      "          'raunchy': 1,\n",
      "          'wrapped': 1,\n",
      "          'blanket': 1,\n",
      "          'bogus': 1,\n",
      "          'sincerity': 1,\n",
      "          'ndarryl': 1,\n",
      "          'experiment': 1,\n",
      "          'order': 1,\n",
      "          'help': 1,\n",
      "          'cashstrapped': 1,\n",
      "          'family': 1,\n",
      "          'angle': 1,\n",
      "          'seems': 1,\n",
      "          'come': 1,\n",
      "          'entirely': 1,\n",
      "          'different': 1,\n",
      "          'nunlike': 1,\n",
      "          'last': 1,\n",
      "          'starring': 1,\n",
      "          'vehicle': 1,\n",
      "          'surprisingly': 1,\n",
      "          'effective': 1,\n",
      "          '6th': 1,\n",
      "          'emotional': 1,\n",
      "          'content': 1,\n",
      "          'forced': 1,\n",
      "          'unconvincing': 1,\n",
      "          'nany': 1,\n",
      "          'attempt': 1,\n",
      "          'substantial': 1,\n",
      "          'broad': 1,\n",
      "          'fizzlesdarryls': 1,\n",
      "          'romance': 1,\n",
      "          'janice': 1,\n",
      "          'tamara': 1,\n",
      "          'taylor': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'yearns': 1,\n",
      "          'true': 1,\n",
      "          'generate': 1,\n",
      "          'sparks': 1,\n",
      "          'kind': 1,\n",
      "          'wb': 1,\n",
      "          'sitcom': 1,\n",
      "          'bros': 1,\n",
      "          'comes': 1,\n",
      "          'end': 1,\n",
      "          'genuinely': 1,\n",
      "          'funny': 1,\n",
      "          'promising': 1,\n",
      "          'bigscreen': 1,\n",
      "          'future': 1,\n",
      "          'ahead': 1,\n",
      "          'continues': 1,\n",
      "          'associate': 1,\n",
      "          'projects': 1,\n",
      "          'flat': 1,\n",
      "          'career': 1,\n",
      "          'could': 1,\n",
      "          'go': 1,\n",
      "          'oncepromising': 1,\n",
      "          'older': 1,\n",
      "          'brother': 1,\n",
      "          'damon': 1,\n",
      "          'set': 1,\n",
      "          'make': 1,\n",
      "          'comebackon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'kate': 4,\n",
      "          'nshe': 4,\n",
      "          'publisher': 4,\n",
      "          'vanni': 4,\n",
      "          'film': 3,\n",
      "          'nits': 3,\n",
      "          'set': 3,\n",
      "          'man': 3,\n",
      "          'story': 3,\n",
      "          'could': 3,\n",
      "          'romantic': 2,\n",
      "          'one': 2,\n",
      "          'nit': 2,\n",
      "          'usual': 2,\n",
      "          'writer': 2,\n",
      "          'husband': 2,\n",
      "          'alec': 2,\n",
      "          'selfabsorbed': 2,\n",
      "          'hes': 2,\n",
      "          'model': 2,\n",
      "          'wife': 2,\n",
      "          'wants': 2,\n",
      "          'meets': 2,\n",
      "          'first': 2,\n",
      "          'someone': 2,\n",
      "          'like': 2,\n",
      "          'london': 2,\n",
      "          'rebuffs': 2,\n",
      "          'publishing': 2,\n",
      "          'novel': 2,\n",
      "          'married': 2,\n",
      "          'sell': 2,\n",
      "          'hubby': 2,\n",
      "          'slight': 1,\n",
      "          'comedy': 1,\n",
      "          'feminist': 1,\n",
      "          'bent': 1,\n",
      "          'edge': 1,\n",
      "          'turns': 1,\n",
      "          'conventional': 1,\n",
      "          'filled': 1,\n",
      "          'clich': 1,\n",
      "          'stock': 1,\n",
      "          'characters': 1,\n",
      "          'genre': 1,\n",
      "          'nthough': 1,\n",
      "          'wellwritten': 1,\n",
      "          'wellacted': 1,\n",
      "          'fluff': 1,\n",
      "          'piece': 1,\n",
      "          'still': 1,\n",
      "          'much': 1,\n",
      "          'say': 1,\n",
      "          'surprising': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'made': 1,\n",
      "          'gentle': 1,\n",
      "          'arthouse': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'something': 1,\n",
      "          'disturbing': 1,\n",
      "          'think': 1,\n",
      "          'critically': 1,\n",
      "          'successful': 1,\n",
      "          'pryce': 1,\n",
      "          'threatened': 1,\n",
      "          'department': 1,\n",
      "          'store': 1,\n",
      "          'floorwalking': 1,\n",
      "          'bouquet': 1,\n",
      "          'crass': 1,\n",
      "          'corso': 1,\n",
      "          'walken': 1,\n",
      "          'another': 1,\n",
      "          'predictable': 1,\n",
      "          'relationship': 1,\n",
      "          'occurs': 1,\n",
      "          'fireworks': 1,\n",
      "          'occur': 1,\n",
      "          'outgrows': 1,\n",
      "          'husbands': 1,\n",
      "          'impressions': 1,\n",
      "          'impressed': 1,\n",
      "          'genius': 1,\n",
      "          'worships': 1,\n",
      "          'feet': 1,\n",
      "          'identity': 1,\n",
      "          'independence': 1,\n",
      "          'looked': 1,\n",
      "          'sitcom': 1,\n",
      "          'stuff': 1,\n",
      "          'plagued': 1,\n",
      "          'cheap': 1,\n",
      "          'design': 1,\n",
      "          'features': 1,\n",
      "          'reserved': 1,\n",
      "          'tv': 1,\n",
      "          'movie': 1,\n",
      "          'sagged': 1,\n",
      "          'middle': 1,\n",
      "          'weight': 1,\n",
      "          'tedium': 1,\n",
      "          'eventually': 1,\n",
      "          'landed': 1,\n",
      "          'rear': 1,\n",
      "          'end': 1,\n",
      "          'unspectacular': 1,\n",
      "          'climax': 1,\n",
      "          'opens': 1,\n",
      "          'sexual': 1,\n",
      "          'advances': 1,\n",
      "          'wealthy': 1,\n",
      "          'american': 1,\n",
      "          'shopper': 1,\n",
      "          'later': 1,\n",
      "          'hubbys': 1,\n",
      "          'new': 1,\n",
      "          'upstart': 1,\n",
      "          'seeks': 1,\n",
      "          'intellectual': 1,\n",
      "          'author': 1,\n",
      "          'stable': 1,\n",
      "          'order': 1,\n",
      "          'give': 1,\n",
      "          'credibility': 1,\n",
      "          'quality': 1,\n",
      "          'quickly': 1,\n",
      "          'wins': 1,\n",
      "          'favor': 1,\n",
      "          'vanity': 1,\n",
      "          'nalec': 1,\n",
      "          'obnoxious': 1,\n",
      "          'grouse': 1,\n",
      "          'seems': 1,\n",
      "          'would': 1,\n",
      "          'impossible': 1,\n",
      "          'live': 1,\n",
      "          'tries': 1,\n",
      "          'everything': 1,\n",
      "          'stop': 1,\n",
      "          'book': 1,\n",
      "          'publishedwhich': 1,\n",
      "          'pushes': 1,\n",
      "          'grasping': 1,\n",
      "          'arms': 1,\n",
      "          'proud': 1,\n",
      "          'mammas': 1,\n",
      "          'boy': 1,\n",
      "          'never': 1,\n",
      "          'selfmade': 1,\n",
      "          'earned': 1,\n",
      "          'millions': 1,\n",
      "          'nhe': 1,\n",
      "          'recently': 1,\n",
      "          'acquired': 1,\n",
      "          'failing': 1,\n",
      "          'old': 1,\n",
      "          'house': 1,\n",
      "          'plans': 1,\n",
      "          'revitalize': 1,\n",
      "          'proudly': 1,\n",
      "          'tells': 1,\n",
      "          'father': 1,\n",
      "          'pizzas': 1,\n",
      "          'harlem': 1,\n",
      "          'culture': 1,\n",
      "          'europe': 1,\n",
      "          'thing': 1,\n",
      "          'couldnt': 1,\n",
      "          'sold': 1,\n",
      "          'stiff': 1,\n",
      "          'tired': 1,\n",
      "          'plot': 1,\n",
      "          'line': 1,\n",
      "          'mystery': 1,\n",
      "          'lovely': 1,\n",
      "          'either': 1,\n",
      "          'unless': 1,\n",
      "          'insensitive': 1,\n",
      "          'dummy': 1,\n",
      "          'soon': 1,\n",
      "          'divorces': 1,\n",
      "          'beleaguered': 1,\n",
      "          'marries': 1,\n",
      "          'soontobecomebeleaguered': 1,\n",
      "          'nwhen': 1,\n",
      "          'writes': 1,\n",
      "          'second': 1,\n",
      "          'way': 1,\n",
      "          'ends': 1,\n",
      "          'results': 1,\n",
      "          'happened': 1,\n",
      "          'number': 1,\n",
      "          'ambition': 1,\n",
      "          'lust': 1,\n",
      "          'winds': 1,\n",
      "          'whimper': 1,\n",
      "          'na': 1,\n",
      "          'business': 1,\n",
      "          'affair': 1,\n",
      "          'loosely': 1,\n",
      "          'based': 1,\n",
      "          'reallife': 1,\n",
      "          'literary': 1,\n",
      "          'travails': 1,\n",
      "          'authors': 1,\n",
      "          'barbara': 1,\n",
      "          'skelton': 1,\n",
      "          'cyril': 1,\n",
      "          'connolly': 1,\n",
      "          'celebrated': 1,\n",
      "          '1950s': 1,\n",
      "          'love': 1,\n",
      "          'triangle': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'ship': 4,\n",
      "          'kind': 3,\n",
      "          'movie': 3,\n",
      "          'action': 3,\n",
      "          'ocean': 3,\n",
      "          'boat': 3,\n",
      "          'youre': 2,\n",
      "          'see': 2,\n",
      "          'movies': 2,\n",
      "          'theatre': 2,\n",
      "          'popcorn': 2,\n",
      "          'one': 2,\n",
      "          'recent': 2,\n",
      "          'nits': 2,\n",
      "          'nbut': 2,\n",
      "          'us': 2,\n",
      "          'show': 2,\n",
      "          'scary': 2,\n",
      "          'cargo': 2,\n",
      "          'nhe': 2,\n",
      "          'mercenaries': 2,\n",
      "          'cruise': 2,\n",
      "          'way': 2,\n",
      "          'machine': 2,\n",
      "          'continue': 2,\n",
      "          'monster': 2,\n",
      "          'nyet': 2,\n",
      "          'nthe': 2,\n",
      "          'person': 1,\n",
      "          'goes': 1,\n",
      "          'long': 1,\n",
      "          'overpriced': 1,\n",
      "          'butter': 1,\n",
      "          'optional': 1,\n",
      "          'nindeed': 1,\n",
      "          'got': 1,\n",
      "          'either': 1,\n",
      "          'unimaginative': 1,\n",
      "          'ripoffs': 1,\n",
      "          'incredibly': 1,\n",
      "          'unfunny': 1,\n",
      "          'spoof': 1,\n",
      "          'difficult': 1,\n",
      "          'fathom': 1,\n",
      "          'insipidness': 1,\n",
      "          'unless': 1,\n",
      "          'actually': 1,\n",
      "          'watch': 1,\n",
      "          'least': 1,\n",
      "          'warned': 1,\n",
      "          'quickly': 1,\n",
      "          'may': 1,\n",
      "          'regret': 1,\n",
      "          'ticket': 1,\n",
      "          'purchase': 1,\n",
      "          'giving': 1,\n",
      "          'opportunity': 1,\n",
      "          'sneak': 1,\n",
      "          'adjacent': 1,\n",
      "          'nwhat': 1,\n",
      "          'four': 1,\n",
      "          'ingredients': 1,\n",
      "          'really': 1,\n",
      "          'bad': 1,\n",
      "          'nfirst': 1,\n",
      "          'gives': 1,\n",
      "          'introductory': 1,\n",
      "          'premise': 1,\n",
      "          'nhuge': 1,\n",
      "          'caverns': 1,\n",
      "          'exist': 1,\n",
      "          'deep': 1,\n",
      "          'beneath': 1,\n",
      "          'floor': 1,\n",
      "          'area': 1,\n",
      "          'many': 1,\n",
      "          'ships': 1,\n",
      "          'disappeared': 1,\n",
      "          'noooh': 1,\n",
      "          'nsecondly': 1,\n",
      "          'cheesy': 1,\n",
      "          'soundtrack': 1,\n",
      "          'tries': 1,\n",
      "          'connote': 1,\n",
      "          'tone': 1,\n",
      "          'mystery': 1,\n",
      "          'succeeds': 1,\n",
      "          'drowning': 1,\n",
      "          'ears': 1,\n",
      "          'abrasive': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'nthird': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'mercenary': 1,\n",
      "          'delivers': 1,\n",
      "          'goods': 1,\n",
      "          'without': 1,\n",
      "          'asking': 1,\n",
      "          'contents': 1,\n",
      "          'treat': 1,\n",
      "          'williams': 1,\n",
      "          'operates': 1,\n",
      "          'sophisticated': 1,\n",
      "          'militarystyle': 1,\n",
      "          'pt': 1,\n",
      "          'every': 1,\n",
      "          'word': 1,\n",
      "          'comes': 1,\n",
      "          'mouth': 1,\n",
      "          'awash': 1,\n",
      "          'comical': 1,\n",
      "          'flippancy': 1,\n",
      "          'nfinally': 1,\n",
      "          'hold': 1,\n",
      "          'hired': 1,\n",
      "          'nthey': 1,\n",
      "          'also': 1,\n",
      "          'toughlooking': 1,\n",
      "          'haircuts': 1,\n",
      "          'talk': 1,\n",
      "          'accents': 1,\n",
      "          'try': 1,\n",
      "          'macho': 1,\n",
      "          'nduring': 1,\n",
      "          'trip': 1,\n",
      "          'across': 1,\n",
      "          'stormy': 1,\n",
      "          'sea': 1,\n",
      "          'suffers': 1,\n",
      "          'incident': 1,\n",
      "          'requires': 1,\n",
      "          'repairs': 1,\n",
      "          'nspotting': 1,\n",
      "          'distance': 1,\n",
      "          'make': 1,\n",
      "          'liner': 1,\n",
      "          'devise': 1,\n",
      "          'plan': 1,\n",
      "          'raid': 1,\n",
      "          'shop': 1,\n",
      "          'take': 1,\n",
      "          'parts': 1,\n",
      "          'need': 1,\n",
      "          'merry': 1,\n",
      "          'nlittle': 1,\n",
      "          'know': 1,\n",
      "          'become': 1,\n",
      "          'infested': 1,\n",
      "          'board': 1,\n",
      "          'armed': 1,\n",
      "          'hilt': 1,\n",
      "          'grenades': 1,\n",
      "          'guns': 1,\n",
      "          'kill': 1,\n",
      "          'dozens': 1,\n",
      "          'matter': 1,\n",
      "          'seconds': 1,\n",
      "          'nthis': 1,\n",
      "          'nothing': 1,\n",
      "          'bythebook': 1,\n",
      "          'ntheir': 1,\n",
      "          'realization': 1,\n",
      "          'situation': 1,\n",
      "          'theyre': 1,\n",
      "          'doesnt': 1,\n",
      "          'happen': 1,\n",
      "          'bowels': 1,\n",
      "          'nthose': 1,\n",
      "          'dumb': 1,\n",
      "          'enough': 1,\n",
      "          'stray': 1,\n",
      "          'ultimately': 1,\n",
      "          'get': 1,\n",
      "          'killed': 1,\n",
      "          'corridors': 1,\n",
      "          'narrow': 1,\n",
      "          'misty': 1,\n",
      "          'provide': 1,\n",
      "          'atmosphere': 1,\n",
      "          'scarefests': 1,\n",
      "          'must': 1,\n",
      "          'despite': 1,\n",
      "          'predictable': 1,\n",
      "          'nature': 1,\n",
      "          'boo': 1,\n",
      "          'moments': 1,\n",
      "          'outright': 1,\n",
      "          'silly': 1,\n",
      "          'nand': 1,\n",
      "          'unusually': 1,\n",
      "          'gory': 1,\n",
      "          'nmonsters': 1,\n",
      "          'basically': 1,\n",
      "          'suck': 1,\n",
      "          'flesh': 1,\n",
      "          'spit': 1,\n",
      "          'skeletal': 1,\n",
      "          'remains': 1,\n",
      "          'nthere': 1,\n",
      "          'particularly': 1,\n",
      "          'neat': 1,\n",
      "          'scene': 1,\n",
      "          'cut': 1,\n",
      "          'apart': 1,\n",
      "          'reveals': 1,\n",
      "          'victim': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'screams': 1,\n",
      "          'horribly': 1,\n",
      "          'monsters': 1,\n",
      "          'digestive': 1,\n",
      "          'juices': 1,\n",
      "          'slowly': 1,\n",
      "          'eat': 1,\n",
      "          'away': 1,\n",
      "          'nadditionally': 1,\n",
      "          'borrows': 1,\n",
      "          'heavily': 1,\n",
      "          'speed2': 1,\n",
      "          'alien': 1,\n",
      "          'bunch': 1,\n",
      "          'films': 1,\n",
      "          'even': 1,\n",
      "          'run': 1,\n",
      "          'lone': 1,\n",
      "          'surviving': 1,\n",
      "          'passenger': 1,\n",
      "          'femke': 1,\n",
      "          'jannsen': 1,\n",
      "          'looks': 1,\n",
      "          'amazingly': 1,\n",
      "          'like': 1,\n",
      "          'sandra': 1,\n",
      "          'bullock': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'left': 1,\n",
      "          'laugh': 1,\n",
      "          'witless': 1,\n",
      "          'moronic': 1,\n",
      "          'fun': 1,\n",
      "          'best': 1,\n",
      "          'nso': 1,\n",
      "          'hankering': 1,\n",
      "          'large': 1,\n",
      "          'bucket': 1,\n",
      "          'served': 1,\n",
      "          'side': 1,\n",
      "          'silliness': 1,\n",
      "          'might': 1,\n",
      "          'hit': 1,\n",
      "          'spot': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'evolution': 4,\n",
      "          'certainly': 3,\n",
      "          'kane': 2,\n",
      "          'duchovny': 2,\n",
      "          'block': 2,\n",
      "          'jones': 2,\n",
      "          'scene': 2,\n",
      "          'alien': 2,\n",
      "          'lifeform': 2,\n",
      "          'moore': 2,\n",
      "          'aliens': 2,\n",
      "          'may': 2,\n",
      "          'comedy': 2,\n",
      "          'ghostbusters': 2,\n",
      "          'nit': 2,\n",
      "          'nand': 2,\n",
      "          'n': 2,\n",
      "          'script': 2,\n",
      "          'could': 2,\n",
      "          'synopsis': 1,\n",
      "          'meteorite': 1,\n",
      "          'crashlands': 1,\n",
      "          'arizona': 1,\n",
      "          'desert': 1,\n",
      "          'community': 1,\n",
      "          'college': 1,\n",
      "          'professors': 1,\n",
      "          'ira': 1,\n",
      "          'harry': 1,\n",
      "          'first': 1,\n",
      "          'nthey': 1,\n",
      "          'discover': 1,\n",
      "          'arisen': 1,\n",
      "          'rock': 1,\n",
      "          'evolving': 1,\n",
      "          'amazing': 1,\n",
      "          'rate': 1,\n",
      "          'nsoon': 1,\n",
      "          'army': 1,\n",
      "          'advised': 1,\n",
      "          'dr': 1,\n",
      "          'allison': 1,\n",
      "          'reed': 1,\n",
      "          'moves': 1,\n",
      "          'forces': 1,\n",
      "          'nbut': 1,\n",
      "          'begin': 1,\n",
      "          'menace': 1,\n",
      "          'society': 1,\n",
      "          'take': 1,\n",
      "          'scientists': 1,\n",
      "          'combined': 1,\n",
      "          'efforts': 1,\n",
      "          'stop': 1,\n",
      "          'terminate': 1,\n",
      "          'another': 1,\n",
      "          'humanity': 1,\n",
      "          'nreview': 1,\n",
      "          'ingredients': 1,\n",
      "          'decent': 1,\n",
      "          'nits': 1,\n",
      "          'directed': 1,\n",
      "          'reitman': 1,\n",
      "          'clearly': 1,\n",
      "          'trying': 1,\n",
      "          'parlay': 1,\n",
      "          'success': 1,\n",
      "          'twentyfirstcentury': 1,\n",
      "          'counterpart': 1,\n",
      "          'stars': 1,\n",
      "          'although': 1,\n",
      "          'one': 1,\n",
      "          'might': 1,\n",
      "          'question': 1,\n",
      "          'judgment': 1,\n",
      "          'lampooning': 1,\n",
      "          'xfiles': 1,\n",
      "          'character': 1,\n",
      "          'soon': 1,\n",
      "          'leaving': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'provide': 1,\n",
      "          'plenty': 1,\n",
      "          'ammunition': 1,\n",
      "          'theres': 1,\n",
      "          'much': 1,\n",
      "          'prior': 1,\n",
      "          'experience': 1,\n",
      "          'proven': 1,\n",
      "          'ability': 1,\n",
      "          'actress': 1,\n",
      "          'na': 1,\n",
      "          'shame': 1,\n",
      "          'deteriorates': 1,\n",
      "          'hopelessly': 1,\n",
      "          'unfunny': 1,\n",
      "          'morass': 1,\n",
      "          'movie': 1,\n",
      "          'concerned': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'quite': 1,\n",
      "          'good': 1,\n",
      "          'anything': 1,\n",
      "          'resembling': 1,\n",
      "          'consistently': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'body': 1,\n",
      "          'invaded': 1,\n",
      "          'particularly': 1,\n",
      "          'entertaining': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'long': 1,\n",
      "          'stretches': 1,\n",
      "          'utterly': 1,\n",
      "          'devoid': 1,\n",
      "          'humour': 1,\n",
      "          'nmoore': 1,\n",
      "          'totally': 1,\n",
      "          'wasted': 1,\n",
      "          'clumsy': 1,\n",
      "          'shtick': 1,\n",
      "          'getting': 1,\n",
      "          'old': 1,\n",
      "          'fast': 1,\n",
      "          'nduchovny': 1,\n",
      "          'stunningly': 1,\n",
      "          'little': 1,\n",
      "          'way': 1,\n",
      "          'material': 1,\n",
      "          'work': 1,\n",
      "          'story': 1,\n",
      "          'formulaic': 1,\n",
      "          'written': 1,\n",
      "          'monkeys': 1,\n",
      "          'npart': 1,\n",
      "          'made': 1,\n",
      "          'wonderful': 1,\n",
      "          'combination': 1,\n",
      "          'great': 1,\n",
      "          'characters': 1,\n",
      "          'audience': 1,\n",
      "          'root': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'tedious': 1,\n",
      "          'difficult': 1,\n",
      "          'start': 1,\n",
      "          'cheering': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'plot': 7,\n",
      "          'film': 3,\n",
      "          'nbraxton': 3,\n",
      "          'turns': 3,\n",
      "          'nthe': 3,\n",
      "          'complex': 3,\n",
      "          'deceiver': 2,\n",
      "          'surprises': 2,\n",
      "          'nbut': 2,\n",
      "          'worthy': 2,\n",
      "          'kennesaw': 2,\n",
      "          'wayland': 2,\n",
      "          'nhowever': 2,\n",
      "          'one': 2,\n",
      "          'lost': 2,\n",
      "          'dialogue': 2,\n",
      "          'characters': 2,\n",
      "          'brothers': 2,\n",
      "          'twist': 1,\n",
      "          'search': 1,\n",
      "          'movie': 1,\n",
      "          'nthis': 1,\n",
      "          'overly': 1,\n",
      "          'constructed': 1,\n",
      "          'succeeds': 1,\n",
      "          'many': 1,\n",
      "          'true': 1,\n",
      "          'title': 1,\n",
      "          'deceptive': 1,\n",
      "          'little': 1,\n",
      "          'deceit': 1,\n",
      "          'chris': 1,\n",
      "          'penn': 1,\n",
      "          'michael': 1,\n",
      "          'rooker': 1,\n",
      "          'two': 1,\n",
      "          'cops': 1,\n",
      "          'investigating': 1,\n",
      "          'brutal': 1,\n",
      "          'murder': 1,\n",
      "          'prostitute': 1,\n",
      "          'renee': 1,\n",
      "          'zellweger': 1,\n",
      "          'ntheir': 1,\n",
      "          'lone': 1,\n",
      "          'suspect': 1,\n",
      "          'tim': 1,\n",
      "          'roth': 1,\n",
      "          'wealthy': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n",
      "          'whose': 1,\n",
      "          'phone': 1,\n",
      "          'number': 1,\n",
      "          'found': 1,\n",
      "          'hookers': 1,\n",
      "          'pocket': 1,\n",
      "          'routine': 1,\n",
      "          'lie': 1,\n",
      "          'detector': 1,\n",
      "          'test': 1,\n",
      "          'investigators': 1,\n",
      "          'crafty': 1,\n",
      "          'somehow': 1,\n",
      "          'tables': 1,\n",
      "          'forced': 1,\n",
      "          'confront': 1,\n",
      "          'troubled': 1,\n",
      "          'lives': 1,\n",
      "          'gambling': 1,\n",
      "          'addict': 1,\n",
      "          'deep': 1,\n",
      "          'mook': 1,\n",
      "          'ellen': 1,\n",
      "          'burstyn': 1,\n",
      "          'local': 1,\n",
      "          'bookie': 1,\n",
      "          'nkennesaw': 1,\n",
      "          'bitter': 1,\n",
      "          'marriage': 1,\n",
      "          'socialite': 1,\n",
      "          'rosanna': 1,\n",
      "          'arquette': 1,\n",
      "          'believing': 1,\n",
      "          'wife': 1,\n",
      "          'unfaithful': 1,\n",
      "          'twisty': 1,\n",
      "          'lots': 1,\n",
      "          'lengthy': 1,\n",
      "          'flashbacks': 1,\n",
      "          'plenty': 1,\n",
      "          'times': 1,\n",
      "          'needlessly': 1,\n",
      "          'least': 1,\n",
      "          'instance': 1,\n",
      "          'storytelling': 1,\n",
      "          'muddled': 1,\n",
      "          'answers': 1,\n",
      "          'important': 1,\n",
      "          'points': 1,\n",
      "          'actually': 1,\n",
      "          'get': 1,\n",
      "          'ntake': 1,\n",
      "          'look': 1,\n",
      "          'l': 1,\n",
      "          'confidential': 1,\n",
      "          'films': 1,\n",
      "          'likely': 1,\n",
      "          'inspiration': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'properly': 1,\n",
      "          'handled': 1,\n",
      "          'overcrafted': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'tells': 1,\n",
      "          'substories': 1,\n",
      "          'tale': 1,\n",
      "          'woeful': 1,\n",
      "          'absinthe': 1,\n",
      "          'bender': 1,\n",
      "          'alternative': 1,\n",
      "          'telling': 1,\n",
      "          'van': 1,\n",
      "          'gogh': 1,\n",
      "          'ear': 1,\n",
      "          'flat': 1,\n",
      "          'plastic': 1,\n",
      "          'come': 1,\n",
      "          'prefabricated': 1,\n",
      "          'unbelievable': 1,\n",
      "          'ntheres': 1,\n",
      "          'never': 1,\n",
      "          'sense': 1,\n",
      "          'real': 1,\n",
      "          'engaging': 1,\n",
      "          'conversation': 1,\n",
      "          'nthey': 1,\n",
      "          'appear': 1,\n",
      "          'nothing': 1,\n",
      "          'words': 1,\n",
      "          'screenplay': 1,\n",
      "          'rather': 1,\n",
      "          'pathetic': 1,\n",
      "          'despicable': 1,\n",
      "          'nnot': 1,\n",
      "          'ounce': 1,\n",
      "          'sympathetic': 1,\n",
      "          'result': 1,\n",
      "          'labyrinthine': 1,\n",
      "          'naught': 1,\n",
      "          'nwhat': 1,\n",
      "          'matter': 1,\n",
      "          'guilty': 1,\n",
      "          'nwriterdirectors': 1,\n",
      "          'josh': 1,\n",
      "          'jonas': 1,\n",
      "          'pate': 1,\n",
      "          'seem': 1,\n",
      "          'desire': 1,\n",
      "          'emulate': 1,\n",
      "          'coen': 1,\n",
      "          'masterwork': 1,\n",
      "          'blood': 1,\n",
      "          'simple': 1,\n",
      "          'wachowski': 1,\n",
      "          'less': 1,\n",
      "          'bound': 1,\n",
      "          'got': 1,\n",
      "          'twists': 1,\n",
      "          'cold': 1,\n",
      "          'need': 1,\n",
      "          'work': 1,\n",
      "          'characterization': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tarzan': 14,\n",
      "          'lost': 7,\n",
      "          'city': 7,\n",
      "          'nthe': 7,\n",
      "          'one': 6,\n",
      "          'jungle': 6,\n",
      "          'film': 4,\n",
      "          'adventure': 3,\n",
      "          'nand': 3,\n",
      "          'story': 3,\n",
      "          'way': 3,\n",
      "          'nwith': 3,\n",
      "          'ape': 3,\n",
      "          'van': 3,\n",
      "          'dien': 3,\n",
      "          'lady': 3,\n",
      "          'jane': 3,\n",
      "          'march': 3,\n",
      "          'steven': 3,\n",
      "          'years': 3,\n",
      "          'movie': 2,\n",
      "          'makes': 2,\n",
      "          'action': 2,\n",
      "          'george': 2,\n",
      "          'ntarzan': 2,\n",
      "          'attempt': 2,\n",
      "          'bring': 2,\n",
      "          'idea': 2,\n",
      "          'version': 2,\n",
      "          'production': 2,\n",
      "          'course': 2,\n",
      "          'line': 2,\n",
      "          'like': 2,\n",
      "          'elements': 2,\n",
      "          'two': 2,\n",
      "          'actors': 2,\n",
      "          'ninstead': 2,\n",
      "          'k': 2,\n",
      "          'man': 2,\n",
      "          'casper': 2,\n",
      "          'nmeanwhile': 2,\n",
      "          'ravens': 2,\n",
      "          'waddington': 2,\n",
      "          'acting': 2,\n",
      "          'every': 2,\n",
      "          'may': 2,\n",
      "          'performance': 2,\n",
      "          'made': 2,\n",
      "          'necessary': 2,\n",
      "          'bad': 2,\n",
      "          'movies': 2,\n",
      "          'including': 2,\n",
      "          '12': 2,\n",
      "          'would': 2,\n",
      "          'kind': 1,\n",
      "          'appreciate': 1,\n",
      "          'disneys': 1,\n",
      "          'live': 1,\n",
      "          'latest': 1,\n",
      "          'edgar': 1,\n",
      "          'rice': 1,\n",
      "          'burroughs': 1,\n",
      "          'legendary': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hero': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'inept': 1,\n",
      "          'illtimed': 1,\n",
      "          'far': 1,\n",
      "          'nbadly': 1,\n",
      "          'conceived': 1,\n",
      "          'poorly': 1,\n",
      "          'executed': 1,\n",
      "          'appears': 1,\n",
      "          'headed': 1,\n",
      "          'quick': 1,\n",
      "          'trip': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'shelves': 1,\n",
      "          'ni': 1,\n",
      "          'producers': 1,\n",
      "          'chose': 1,\n",
      "          'back': 1,\n",
      "          'legions': 1,\n",
      "          'new': 1,\n",
      "          'fans': 1,\n",
      "          'clamoring': 1,\n",
      "          'next': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'even': 1,\n",
      "          'curious': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'definition': 1,\n",
      "          'rules': 1,\n",
      "          'sex': 1,\n",
      "          'explicit': 1,\n",
      "          'violence': 1,\n",
      "          'im': 1,\n",
      "          'advocating': 1,\n",
      "          'excesses': 1,\n",
      "          'embraced': 1,\n",
      "          '1981': 1,\n",
      "          'bo': 1,\n",
      "          'derek': 1,\n",
      "          'deserves': 1,\n",
      "          'slightly': 1,\n",
      "          'adult': 1,\n",
      "          'approach': 1,\n",
      "          'used': 1,\n",
      "          'embarrassing': 1,\n",
      "          'nof': 1,\n",
      "          'tweaking': 1,\n",
      "          'content': 1,\n",
      "          'change': 1,\n",
      "          'rating': 1,\n",
      "          'could': 1,\n",
      "          'saved': 1,\n",
      "          'since': 1,\n",
      "          'films': 1,\n",
      "          'troubles': 1,\n",
      "          'originated': 1,\n",
      "          'script': 1,\n",
      "          'propagated': 1,\n",
      "          'nimagine': 1,\n",
      "          'stripped': 1,\n",
      "          'intentional': 1,\n",
      "          'humor': 1,\n",
      "          'fair': 1,\n",
      "          'uninspired': 1,\n",
      "          'tepid': 1,\n",
      "          'sequences': 1,\n",
      "          'barely': 1,\n",
      "          'registers': 1,\n",
      "          'pulse': 1,\n",
      "          'nanyone': 1,\n",
      "          'search': 1,\n",
      "          'relatively': 1,\n",
      "          'entertaining': 1,\n",
      "          'family': 1,\n",
      "          'check': 1,\n",
      "          '1994': 1,\n",
      "          'book': 1,\n",
      "          'uses': 1,\n",
      "          'basic': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'effect': 1,\n",
      "          'worthwhile': 1,\n",
      "          'element': 1,\n",
      "          'pretty': 1,\n",
      "          'scenery': 1,\n",
      "          'unfortunately': 1,\n",
      "          'includes': 1,\n",
      "          'lead': 1,\n",
      "          'doesnt': 1,\n",
      "          'retell': 1,\n",
      "          'origin': 1,\n",
      "          'thinking': 1,\n",
      "          'done': 1,\n",
      "          'often': 1,\n",
      "          'enough': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'lord': 1,\n",
      "          'graystoke': 1,\n",
      "          'john': 1,\n",
      "          'clayton': 1,\n",
      "          'several': 1,\n",
      "          'days': 1,\n",
      "          'marriage': 1,\n",
      "          'porter': 1,\n",
      "          'nhe': 1,\n",
      "          'living': 1,\n",
      "          'happily': 1,\n",
      "          'england': 1,\n",
      "          'enjoying': 1,\n",
      "          'benefits': 1,\n",
      "          'landowning': 1,\n",
      "          'noble': 1,\n",
      "          'central': 1,\n",
      "          'africa': 1,\n",
      "          'dastardly': 1,\n",
      "          'nigel': 1,\n",
      "          'selfproclaimed': 1,\n",
      "          'scholar': 1,\n",
      "          'explorer': 1,\n",
      "          'believes': 1,\n",
      "          'found': 1,\n",
      "          'opar': 1,\n",
      "          'calls': 1,\n",
      "          'cradle': 1,\n",
      "          'civilization': 1,\n",
      "          'non': 1,\n",
      "          'band': 1,\n",
      "          'mercenaries': 1,\n",
      "          'sorts': 1,\n",
      "          'nasty': 1,\n",
      "          'things': 1,\n",
      "          'burning': 1,\n",
      "          'native': 1,\n",
      "          'villages': 1,\n",
      "          'earn': 1,\n",
      "          'wrath': 1,\n",
      "          'locals': 1,\n",
      "          'none': 1,\n",
      "          'shaman': 1,\n",
      "          'determined': 1,\n",
      "          'stop': 1,\n",
      "          'unearthing': 1,\n",
      "          'opal': 1,\n",
      "          'sends': 1,\n",
      "          'mystical': 1,\n",
      "          'message': 1,\n",
      "          'help': 1,\n",
      "          'following': 1,\n",
      "          'close': 1,\n",
      "          'behind': 1,\n",
      "          'returns': 1,\n",
      "          'born': 1,\n",
      "          'nits': 1,\n",
      "          'patently': 1,\n",
      "          'obvious': 1,\n",
      "          'prettyboy': 1,\n",
      "          'heroes': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'hired': 1,\n",
      "          'basis': 1,\n",
      "          'ability': 1,\n",
      "          'plastic': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'monotone': 1,\n",
      "          'voice': 1,\n",
      "          'complete': 1,\n",
      "          'inability': 1,\n",
      "          'make': 1,\n",
      "          'convincing': 1,\n",
      "          'animal': 1,\n",
      "          'noises': 1,\n",
      "          'range': 1,\n",
      "          'rivals': 1,\n",
      "          'seagal': 1,\n",
      "          'nhis': 1,\n",
      "          'pecs': 1,\n",
      "          'however': 1,\n",
      "          'impressive': 1,\n",
      "          'director': 1,\n",
      "          'carl': 1,\n",
      "          'schenkel': 1,\n",
      "          'sure': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'show': 1,\n",
      "          'njane': 1,\n",
      "          'hand': 1,\n",
      "          'keep': 1,\n",
      "          'shirt': 1,\n",
      "          'first': 1,\n",
      "          'nsome': 1,\n",
      "          'six': 1,\n",
      "          'ago': 1,\n",
      "          'give': 1,\n",
      "          'solid': 1,\n",
      "          'jean': 1,\n",
      "          'jacques': 1,\n",
      "          'annauds': 1,\n",
      "          'steamy': 1,\n",
      "          'lover': 1,\n",
      "          'nsince': 1,\n",
      "          'careerkilling': 1,\n",
      "          'decision': 1,\n",
      "          'appearing': 1,\n",
      "          'opposite': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'color': 1,\n",
      "          'night': 1,\n",
      "          'exploited': 1,\n",
      "          'defiency': 1,\n",
      "          'continues': 1,\n",
      "          'trend': 1,\n",
      "          'nmarch': 1,\n",
      "          'attractive': 1,\n",
      "          'least': 1,\n",
      "          'judging': 1,\n",
      "          'cant': 1,\n",
      "          'act': 1,\n",
      "          'serious': 1,\n",
      "          'trouble': 1,\n",
      "          'summoning': 1,\n",
      "          'menace': 1,\n",
      "          'really': 1,\n",
      "          'detestable': 1,\n",
      "          'guy': 1,\n",
      "          'turns': 1,\n",
      "          'little': 1,\n",
      "          'nuisance': 1,\n",
      "          'pure': 1,\n",
      "          'formula': 1,\n",
      "          'largely': 1,\n",
      "          'true': 1,\n",
      "          'throughout': 1,\n",
      "          'almost': 1,\n",
      "          'problem': 1,\n",
      "          'seems': 1,\n",
      "          'childish': 1,\n",
      "          'lifeless': 1,\n",
      "          'romantic': 1,\n",
      "          'contrived': 1,\n",
      "          'fact': 1,\n",
      "          'janes': 1,\n",
      "          'presence': 1,\n",
      "          'captured': 1,\n",
      "          'subsequently': 1,\n",
      "          'rescued': 1,\n",
      "          'buff': 1,\n",
      "          'fiance': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'truly': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'laughably': 1,\n",
      "          'men': 1,\n",
      "          'costumes': 1,\n",
      "          'apparently': 1,\n",
      "          'animatronics': 1,\n",
      "          'expensive': 1,\n",
      "          'obligatory': 1,\n",
      "          'cute': 1,\n",
      "          'animals': 1,\n",
      "          'nover': 1,\n",
      "          'legend': 1,\n",
      "          'popular': 1,\n",
      "          'sources': 1,\n",
      "          'series': 1,\n",
      "          'material': 1,\n",
      "          'famous': 1,\n",
      "          'johnny': 1,\n",
      "          'weismuller': 1,\n",
      "          'less': 1,\n",
      "          'dozen': 1,\n",
      "          'essayed': 1,\n",
      "          'part': 1,\n",
      "          'gordon': 1,\n",
      "          'scott': 1,\n",
      "          'widely': 1,\n",
      "          'believed': 1,\n",
      "          'best': 1,\n",
      "          'actor': 1,\n",
      "          'tackle': 1,\n",
      "          'role': 1,\n",
      "          'nweismuller': 1,\n",
      "          'features': 1,\n",
      "          'probably': 1,\n",
      "          'fall': 1,\n",
      "          '11': 1,\n",
      "          'short': 1,\n",
      "          'number': 1,\n",
      "          'seen': 1,\n",
      "          'argue': 1,\n",
      "          'moviegoing': 1,\n",
      "          'public': 1,\n",
      "          'well': 1,\n",
      "          'served': 1,\n",
      "          'missed': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mccabe': 10,\n",
      "          'desperate': 6,\n",
      "          'measures': 6,\n",
      "          'connor': 6,\n",
      "          'michael': 3,\n",
      "          'keaton': 3,\n",
      "          'garcia': 3,\n",
      "          'son': 3,\n",
      "          'generic': 2,\n",
      "          'film': 2,\n",
      "          'solid': 2,\n",
      "          'andy': 2,\n",
      "          'nthe': 2,\n",
      "          'movie': 2,\n",
      "          'big': 2,\n",
      "          'yet': 2,\n",
      "          'though': 2,\n",
      "          'frank': 2,\n",
      "          'cross': 2,\n",
      "          'bone': 2,\n",
      "          'marrow': 2,\n",
      "          'peter': 2,\n",
      "          'nconnor': 2,\n",
      "          'best': 2,\n",
      "          'hes': 2,\n",
      "          'hospital': 2,\n",
      "          'make': 2,\n",
      "          'needs': 2,\n",
      "          'keep': 2,\n",
      "          'alive': 2,\n",
      "          'lost': 2,\n",
      "          'little': 2,\n",
      "          'spotlight': 2,\n",
      "          'get': 2,\n",
      "          'movies': 2,\n",
      "          'scenes': 2,\n",
      "          'becomes': 2,\n",
      "          'nthere': 2,\n",
      "          'good': 2,\n",
      "          'much': 2,\n",
      "          'title': 1,\n",
      "          'thats': 1,\n",
      "          'beyond': 1,\n",
      "          'nits': 1,\n",
      "          'also': 1,\n",
      "          'depressing': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'team': 1,\n",
      "          'unthankfully': 1,\n",
      "          'thrown': 1,\n",
      "          'thankless': 1,\n",
      "          'lead': 1,\n",
      "          'roles': 1,\n",
      "          'mention': 1,\n",
      "          'oncecool': 1,\n",
      "          'director': 1,\n",
      "          'barbet': 1,\n",
      "          'schroeder': 1,\n",
      "          'sadly': 1,\n",
      "          'continuing': 1,\n",
      "          'string': 1,\n",
      "          'notcool': 1,\n",
      "          'flicks': 1,\n",
      "          'thriller': 1,\n",
      "          'reversal': 1,\n",
      "          'fortune': 1,\n",
      "          'disappointment': 1,\n",
      "          'somewhat': 1,\n",
      "          'easy': 1,\n",
      "          'see': 1,\n",
      "          'motivated': 1,\n",
      "          'names': 1,\n",
      "          'attach': 1,\n",
      "          'premise': 1,\n",
      "          'promising': 1,\n",
      "          'intriguing': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'executions': 1,\n",
      "          'wrong': 1,\n",
      "          'setup': 1,\n",
      "          'boasts': 1,\n",
      "          'rather': 1,\n",
      "          'enticing': 1,\n",
      "          'elements': 1,\n",
      "          'deserve': 1,\n",
      "          'put': 1,\n",
      "          'far': 1,\n",
      "          'better': 1,\n",
      "          'use': 1,\n",
      "          'nsan': 1,\n",
      "          'francisco': 1,\n",
      "          'cop': 1,\n",
      "          'single': 1,\n",
      "          'parent': 1,\n",
      "          'troubling': 1,\n",
      "          'dilemma': 1,\n",
      "          'matt': 1,\n",
      "          'joseph': 1,\n",
      "          'stricken': 1,\n",
      "          'cancer': 1,\n",
      "          'transplant': 1,\n",
      "          'push': 1,\n",
      "          'remission': 1,\n",
      "          'neven': 1,\n",
      "          'worse': 1,\n",
      "          'compatible': 1,\n",
      "          'donor': 1,\n",
      "          'violent': 1,\n",
      "          'sociopath': 1,\n",
      "          'currently': 1,\n",
      "          'serving': 1,\n",
      "          'life': 1,\n",
      "          'sentence': 1,\n",
      "          'multiple': 1,\n",
      "          'murders': 1,\n",
      "          'various': 1,\n",
      "          'crimes': 1,\n",
      "          'society': 1,\n",
      "          'tries': 1,\n",
      "          'convince': 1,\n",
      "          'go': 1,\n",
      "          'along': 1,\n",
      "          'surgery': 1,\n",
      "          'first': 1,\n",
      "          'reluctant': 1,\n",
      "          'reconsiders': 1,\n",
      "          'realizes': 1,\n",
      "          'plan': 1,\n",
      "          'escape': 1,\n",
      "          'nwhen': 1,\n",
      "          'run': 1,\n",
      "          'offers': 1,\n",
      "          'close': 1,\n",
      "          'pursuit': 1,\n",
      "          'different': 1,\n",
      "          'reasons': 1,\n",
      "          'superiors': 1,\n",
      "          'including': 1,\n",
      "          'crusty': 1,\n",
      "          'brian': 1,\n",
      "          'cox': 1,\n",
      "          'want': 1,\n",
      "          'take': 1,\n",
      "          'hope': 1,\n",
      "          'boy': 1,\n",
      "          'none': 1,\n",
      "          'misstep': 1,\n",
      "          'makes': 1,\n",
      "          'underdevelopment': 1,\n",
      "          'matts': 1,\n",
      "          'illness': 1,\n",
      "          'nwhats': 1,\n",
      "          'needed': 1,\n",
      "          'details': 1,\n",
      "          'exactly': 1,\n",
      "          'match': 1,\n",
      "          'works': 1,\n",
      "          'would': 1,\n",
      "          'seem': 1,\n",
      "          'possible': 1,\n",
      "          'contenders': 1,\n",
      "          'somewhere': 1,\n",
      "          'country': 1,\n",
      "          'thus': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'endangers': 1,\n",
      "          'lives': 1,\n",
      "          'around': 1,\n",
      "          'attempting': 1,\n",
      "          'hard': 1,\n",
      "          'swallow': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'scene': 1,\n",
      "          'trying': 1,\n",
      "          'getaway': 1,\n",
      "          'climbing': 1,\n",
      "          'elevated': 1,\n",
      "          'passage': 1,\n",
      "          'tunnel': 1,\n",
      "          'connecting': 1,\n",
      "          'two': 1,\n",
      "          'sections': 1,\n",
      "          'police': 1,\n",
      "          'guns': 1,\n",
      "          'aimed': 1,\n",
      "          'right': 1,\n",
      "          'nhe': 1,\n",
      "          'shoots': 1,\n",
      "          'continue': 1,\n",
      "          'flight': 1,\n",
      "          'knows': 1,\n",
      "          'well': 1,\n",
      "          'dangerous': 1,\n",
      "          'deeds': 1,\n",
      "          'guy': 1,\n",
      "          'capable': 1,\n",
      "          'never': 1,\n",
      "          'seems': 1,\n",
      "          'think': 1,\n",
      "          'eventually': 1,\n",
      "          'try': 1,\n",
      "          'harm': 1,\n",
      "          'nwhatever': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'lack': 1,\n",
      "          'story': 1,\n",
      "          'background': 1,\n",
      "          'least': 1,\n",
      "          'problems': 1,\n",
      "          'nfirst': 1,\n",
      "          'foremost': 1,\n",
      "          'cheaply': 1,\n",
      "          'trades': 1,\n",
      "          'potential': 1,\n",
      "          'opening': 1,\n",
      "          'routine': 1,\n",
      "          'action': 1,\n",
      "          'ballistics': 1,\n",
      "          'final': 1,\n",
      "          'hour': 1,\n",
      "          'nonce': 1,\n",
      "          'escapes': 1,\n",
      "          'fugitive': 1,\n",
      "          'reverse': 1,\n",
      "          'thrills': 1,\n",
      "          'countless': 1,\n",
      "          'guys': 1,\n",
      "          'catch': 1,\n",
      "          'grab': 1,\n",
      "          'hostage': 1,\n",
      "          'away': 1,\n",
      "          'nalso': 1,\n",
      "          'intent': 1,\n",
      "          'giving': 1,\n",
      "          'hootinducing': 1,\n",
      "          'lipsmacking': 1,\n",
      "          'villain': 1,\n",
      "          'ads': 1,\n",
      "          'compared': 1,\n",
      "          'hannibal': 1,\n",
      "          'lechter': 1,\n",
      "          'natch': 1,\n",
      "          'completely': 1,\n",
      "          'casts': 1,\n",
      "          'garcias': 1,\n",
      "          'dullsville': 1,\n",
      "          'wayside': 1,\n",
      "          'appears': 1,\n",
      "          'like': 1,\n",
      "          'antagonist': 1,\n",
      "          'protagonist': 1,\n",
      "          'headscratcher': 1,\n",
      "          'sendoff': 1,\n",
      "          'confirms': 1,\n",
      "          'found': 1,\n",
      "          'amongst': 1,\n",
      "          'mess': 1,\n",
      "          'particularly': 1,\n",
      "          'acting': 1,\n",
      "          'department': 1,\n",
      "          'ncast': 1,\n",
      "          'type': 1,\n",
      "          'keatons': 1,\n",
      "          'understated': 1,\n",
      "          'menace': 1,\n",
      "          'highly': 1,\n",
      "          'effective': 1,\n",
      "          'nalthough': 1,\n",
      "          'given': 1,\n",
      "          'believable': 1,\n",
      "          'work': 1,\n",
      "          'plays': 1,\n",
      "          'taut': 1,\n",
      "          'emotional': 1,\n",
      "          'chord': 1,\n",
      "          'njoseph': 1,\n",
      "          'garicias': 1,\n",
      "          'ailing': 1,\n",
      "          'surprisingly': 1,\n",
      "          'unsentimental': 1,\n",
      "          'marcia': 1,\n",
      "          'gay': 1,\n",
      "          'harden': 1,\n",
      "          'lends': 1,\n",
      "          'support': 1,\n",
      "          'doctor': 1,\n",
      "          'major': 1,\n",
      "          'player': 1,\n",
      "          'unfolding': 1,\n",
      "          'chaos': 1,\n",
      "          'nthis': 1,\n",
      "          'cast': 1,\n",
      "          'camouflage': 1,\n",
      "          'sorry': 1,\n",
      "          'plot': 1,\n",
      "          'chugs': 1,\n",
      "          'towards': 1,\n",
      "          'inevitably': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'nit': 1,\n",
      "          'goes': 1,\n",
      "          'without': 1,\n",
      "          'saying': 1,\n",
      "          'operation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'flying': 6,\n",
      "          'nthe': 6,\n",
      "          'one': 5,\n",
      "          'flubber': 4,\n",
      "          'little': 4,\n",
      "          'williams': 3,\n",
      "          'hes': 3,\n",
      "          'film': 3,\n",
      "          'disney': 3,\n",
      "          'films': 3,\n",
      "          'home': 3,\n",
      "          'college': 3,\n",
      "          'nhis': 3,\n",
      "          'around': 3,\n",
      "          'move': 2,\n",
      "          'make': 2,\n",
      "          'get': 2,\n",
      "          'nin': 2,\n",
      "          'remake': 2,\n",
      "          'professor': 2,\n",
      "          'new': 2,\n",
      "          'brainard': 2,\n",
      "          'forgetful': 2,\n",
      "          'sara': 2,\n",
      "          'jean': 2,\n",
      "          'none': 2,\n",
      "          'memory': 2,\n",
      "          'chance': 2,\n",
      "          'discovery': 2,\n",
      "          'nits': 2,\n",
      "          'bad': 2,\n",
      "          'nflubber': 2,\n",
      "          'save': 2,\n",
      "          'croft': 2,\n",
      "          'ntheres': 2,\n",
      "          'car': 2,\n",
      "          'lab': 2,\n",
      "          'least': 2,\n",
      "          'audience': 2,\n",
      "          'like': 2,\n",
      "          'ni': 2,\n",
      "          'nthere': 2,\n",
      "          'big': 2,\n",
      "          'nthis': 2,\n",
      "          'story': 2,\n",
      "          'lover': 2,\n",
      "          'nafter': 2,\n",
      "          'ball': 2,\n",
      "          'alone': 2,\n",
      "          'robin': 1,\n",
      "          'comedic': 1,\n",
      "          'genus': 1,\n",
      "          'nthat': 1,\n",
      "          'allows': 1,\n",
      "          'space': 1,\n",
      "          'n': 1,\n",
      "          'straps': 1,\n",
      "          'straitjacket': 1,\n",
      "          'covers': 1,\n",
      "          'duct': 1,\n",
      "          'tape': 1,\n",
      "          'stuffs': 1,\n",
      "          'coat': 1,\n",
      "          'closet': 1,\n",
      "          'piles': 1,\n",
      "          'furniture': 1,\n",
      "          'door': 1,\n",
      "          'sure': 1,\n",
      "          'doesnt': 1,\n",
      "          '1961': 1,\n",
      "          'absent': 1,\n",
      "          'minded': 1,\n",
      "          'offers': 1,\n",
      "          'us': 1,\n",
      "          'proof': 1,\n",
      "          'definitely': 1,\n",
      "          'less': 1,\n",
      "          'nrecycling': 1,\n",
      "          'old': 1,\n",
      "          'darned': 1,\n",
      "          'cat': 1,\n",
      "          '101': 1,\n",
      "          'dalmatians': 1,\n",
      "          'dressed': 1,\n",
      "          'newest': 1,\n",
      "          'money': 1,\n",
      "          'machine': 1,\n",
      "          'mouse': 1,\n",
      "          'roared': 1,\n",
      "          'nprofessor': 1,\n",
      "          'phillip': 1,\n",
      "          'terminally': 1,\n",
      "          'scientist': 1,\n",
      "          'teaching': 1,\n",
      "          'small': 1,\n",
      "          'fiancee': 1,\n",
      "          'reynolds': 1,\n",
      "          'marcia': 1,\n",
      "          'gay': 1,\n",
      "          'harden': 1,\n",
      "          'president': 1,\n",
      "          'happy': 1,\n",
      "          'left': 1,\n",
      "          'waiting': 1,\n",
      "          'altar': 1,\n",
      "          'due': 1,\n",
      "          'lack': 1,\n",
      "          'shortterm': 1,\n",
      "          'longterm': 1,\n",
      "          'nshes': 1,\n",
      "          'giving': 1,\n",
      "          'nhe': 1,\n",
      "          'blows': 1,\n",
      "          'invents': 1,\n",
      "          'rubber': 1,\n",
      "          'excited': 1,\n",
      "          'awaiting': 1,\n",
      "          'white': 1,\n",
      "          'dress': 1,\n",
      "          'tardiness': 1,\n",
      "          'helped': 1,\n",
      "          'along': 1,\n",
      "          'jealous': 1,\n",
      "          'robotic': 1,\n",
      "          'assistant': 1,\n",
      "          'wants': 1,\n",
      "          'news': 1,\n",
      "          'green': 1,\n",
      "          'jello': 1,\n",
      "          'magnify': 1,\n",
      "          'reflect': 1,\n",
      "          'energy': 1,\n",
      "          'applied': 1,\n",
      "          'nbrainard': 1,\n",
      "          'realizes': 1,\n",
      "          'commercial': 1,\n",
      "          'potential': 1,\n",
      "          'within': 1,\n",
      "          'goo': 1,\n",
      "          'school': 1,\n",
      "          'bankruptcy': 1,\n",
      "          'taken': 1,\n",
      "          'towns': 1,\n",
      "          'evil': 1,\n",
      "          'industrialist': 1,\n",
      "          'charles': 1,\n",
      "          'hoenicker': 1,\n",
      "          'raymond': 1,\n",
      "          'barry': 1,\n",
      "          'nwhile': 1,\n",
      "          'busy': 1,\n",
      "          'breakthrough': 1,\n",
      "          'slighted': 1,\n",
      "          'sweetheart': 1,\n",
      "          'wooed': 1,\n",
      "          'sleazy': 1,\n",
      "          'rival': 1,\n",
      "          'wilson': 1,\n",
      "          'christopher': 1,\n",
      "          'mcdonald': 1,\n",
      "          'flubberenhanced': 1,\n",
      "          'basketball': 1,\n",
      "          'game': 1,\n",
      "          'assortment': 1,\n",
      "          'broken': 1,\n",
      "          'equipment': 1,\n",
      "          'bit': 1,\n",
      "          'interesting': 1,\n",
      "          'funny': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'son': 1,\n",
      "          'looked': 1,\n",
      "          'asked': 1,\n",
      "          'people': 1,\n",
      "          'laughing': 1,\n",
      "          'nalthough': 1,\n",
      "          'turns': 1,\n",
      "          'inspired': 1,\n",
      "          'roles': 1,\n",
      "          'easily': 1,\n",
      "          'lively': 1,\n",
      "          'actors': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'halfasleep': 1,\n",
      "          'successful': 1,\n",
      "          'respect': 1,\n",
      "          'nit': 1,\n",
      "          'feels': 1,\n",
      "          'movie': 1,\n",
      "          'sixties': 1,\n",
      "          'remember': 1,\n",
      "          'original': 1,\n",
      "          'charming': 1,\n",
      "          'guess': 1,\n",
      "          'almost': 1,\n",
      "          'four': 1,\n",
      "          'decades': 1,\n",
      "          'ago': 1,\n",
      "          'artificially': 1,\n",
      "          'enhanced': 1,\n",
      "          'years': 1,\n",
      "          'updates': 1,\n",
      "          'nfred': 1,\n",
      "          'macmurrays': 1,\n",
      "          'model': 1,\n",
      "          'replaced': 1,\n",
      "          'tbird': 1,\n",
      "          'faithful': 1,\n",
      "          'dog': 1,\n",
      "          'charlie': 1,\n",
      "          'weebo': 1,\n",
      "          'hovering': 1,\n",
      "          'robot': 1,\n",
      "          'biggest': 1,\n",
      "          'change': 1,\n",
      "          'sophisticated': 1,\n",
      "          'computer': 1,\n",
      "          'animation': 1,\n",
      "          'show': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'without': 1,\n",
      "          'entertaining': 1,\n",
      "          'anthropomorphized': 1,\n",
      "          'supposedly': 1,\n",
      "          'personality': 1,\n",
      "          'gloop': 1,\n",
      "          'arms': 1,\n",
      "          'legs': 1,\n",
      "          'splits': 1,\n",
      "          'tiny': 1,\n",
      "          'gloopettes': 1,\n",
      "          'dance': 1,\n",
      "          'number': 1,\n",
      "          'nothing': 1,\n",
      "          'possible': 1,\n",
      "          'reason': 1,\n",
      "          'create': 1,\n",
      "          'merchandising': 1,\n",
      "          'opportunities': 1,\n",
      "          'kids': 1,\n",
      "          'badger': 1,\n",
      "          'parents': 1,\n",
      "          'taking': 1,\n",
      "          'mcdonalds': 1,\n",
      "          'toys': 1,\n",
      "          'nnot': 1,\n",
      "          'contributing': 1,\n",
      "          'plot': 1,\n",
      "          'problem': 1,\n",
      "          'aspects': 1,\n",
      "          'dont': 1,\n",
      "          'sense': 1,\n",
      "          'going': 1,\n",
      "          'sell': 1,\n",
      "          'ford': 1,\n",
      "          'nanyone': 1,\n",
      "          'half': 1,\n",
      "          'brain': 1,\n",
      "          'would': 1,\n",
      "          'able': 1,\n",
      "          'see': 1,\n",
      "          'intelligent': 1,\n",
      "          'automaton': 1,\n",
      "          'worth': 1,\n",
      "          'billions': 1,\n",
      "          'unbelievable': 1,\n",
      "          'well': 1,\n",
      "          'probably': 1,\n",
      "          'starts': 1,\n",
      "          'dating': 1,\n",
      "          'aborted': 1,\n",
      "          'wedding': 1,\n",
      "          'appealing': 1,\n",
      "          'component': 1,\n",
      "          'man': 1,\n",
      "          'discovers': 1,\n",
      "          'smearing': 1,\n",
      "          'golf': 1,\n",
      "          'gunk': 1,\n",
      "          'causes': 1,\n",
      "          'bounce': 1,\n",
      "          'uncontrollably': 1,\n",
      "          'wreaking': 1,\n",
      "          'havoc': 1,\n",
      "          'cringed': 1,\n",
      "          'picked': 1,\n",
      "          'bowling': 1,\n",
      "          'guy': 1,\n",
      "          'beyond': 1,\n",
      "          'venturing': 1,\n",
      "          'certifiable': 1,\n",
      "          'ncowriter': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          'used': 1,\n",
      "          'direct': 1,\n",
      "          'lightweight': 1,\n",
      "          'thoughtful': 1,\n",
      "          'teen': 1,\n",
      "          'care': 1,\n",
      "          'behind': 1,\n",
      "          'pretty': 1,\n",
      "          'pink': 1,\n",
      "          'breakfast': 1,\n",
      "          'club': 1,\n",
      "          'went': 1,\n",
      "          'window': 1,\n",
      "          'franchise': 1,\n",
      "          'heated': 1,\n",
      "          'box': 1,\n",
      "          'offices': 1,\n",
      "          'nlooking': 1,\n",
      "          'much': 1,\n",
      "          '3': 1,\n",
      "          '12': 1,\n",
      "          'even': 1,\n",
      "          'features': 1,\n",
      "          'couple': 1,\n",
      "          'vapid': 1,\n",
      "          'goons': 1,\n",
      "          'banged': 1,\n",
      "          'cute': 1,\n",
      "          'boy': 1,\n",
      "          'screams': 1,\n",
      "          'lot': 1,\n",
      "          'ways': 1,\n",
      "          'difficult': 1,\n",
      "          'judge': 1,\n",
      "          'suspicion': 1,\n",
      "          'im': 1,\n",
      "          'target': 1,\n",
      "          'measure': 1,\n",
      "          'age': 1,\n",
      "          'two': 1,\n",
      "          'digits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthere': 7,\n",
      "          'town': 5,\n",
      "          'one': 5,\n",
      "          'way': 4,\n",
      "          'mona': 3,\n",
      "          'attempt': 3,\n",
      "          'gag': 3,\n",
      "          'yugo': 3,\n",
      "          'characters': 3,\n",
      "          'jeff': 3,\n",
      "          'watch': 2,\n",
      "          'child': 2,\n",
      "          'nits': 2,\n",
      "          'drowning': 2,\n",
      "          'comedy': 2,\n",
      "          'serve': 2,\n",
      "          'running': 2,\n",
      "          'drives': 2,\n",
      "          'neven': 2,\n",
      "          'police': 2,\n",
      "          'nit': 2,\n",
      "          'monas': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'neach': 2,\n",
      "          'scream': 2,\n",
      "          'someone': 2,\n",
      "          'ntheres': 2,\n",
      "          'could': 2,\n",
      "          'nmonas': 2,\n",
      "          'daughter': 2,\n",
      "          'people': 2,\n",
      "          'angry': 2,\n",
      "          'ever': 1,\n",
      "          'young': 1,\n",
      "          'try': 1,\n",
      "          'tell': 1,\n",
      "          'joke': 1,\n",
      "          'beyond': 1,\n",
      "          'sophistication': 1,\n",
      "          'full': 1,\n",
      "          'stops': 1,\n",
      "          'starts': 1,\n",
      "          'usually': 1,\n",
      "          'punch': 1,\n",
      "          'line': 1,\n",
      "          'ruined': 1,\n",
      "          'ni': 1,\n",
      "          'felt': 1,\n",
      "          'watching': 1,\n",
      "          'nskip': 1,\n",
      "          'stone': 1,\n",
      "          'across': 1,\n",
      "          'water': 1,\n",
      "          'approximate': 1,\n",
      "          'depth': 1,\n",
      "          'ensemble': 1,\n",
      "          'slightly': 1,\n",
      "          'successful': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'verplanck': 1,\n",
      "          'n': 1,\n",
      "          'test': 1,\n",
      "          'new': 1,\n",
      "          'neveryone': 1,\n",
      "          'differentiating': 1,\n",
      "          'cars': 1,\n",
      "          'personalized': 1,\n",
      "          'license': 1,\n",
      "          'plates': 1,\n",
      "          'chief': 1,\n",
      "          'certain': 1,\n",
      "          'sublimeness': 1,\n",
      "          'image': 1,\n",
      "          'lights': 1,\n",
      "          'siren': 1,\n",
      "          'decked': 1,\n",
      "          'skittering': 1,\n",
      "          'streets': 1,\n",
      "          'also': 1,\n",
      "          'missing': 1,\n",
      "          'hand': 1,\n",
      "          'occurred': 1,\n",
      "          'pokes': 1,\n",
      "          'gentle': 1,\n",
      "          'fun': 1,\n",
      "          'notion': 1,\n",
      "          'urban': 1,\n",
      "          'legends': 1,\n",
      "          'turns': 1,\n",
      "          'truth': 1,\n",
      "          'horrifying': 1,\n",
      "          'legend': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'pop': 1,\n",
      "          'well': 1,\n",
      "          'tombstone': 1,\n",
      "          'reads': 1,\n",
      "          'demoted': 1,\n",
      "          'instead': 1,\n",
      "          'devoted': 1,\n",
      "          'nstill': 1,\n",
      "          'core': 1,\n",
      "          'story': 1,\n",
      "          'maintains': 1,\n",
      "          'flatness': 1,\n",
      "          'still': 1,\n",
      "          'pond': 1,\n",
      "          'lynchpin': 1,\n",
      "          'falls': 1,\n",
      "          'redundant': 1,\n",
      "          'sporadic': 1,\n",
      "          'scenes': 1,\n",
      "          'involving': 1,\n",
      "          'midler': 1,\n",
      "          'scene': 1,\n",
      "          'hit': 1,\n",
      "          'uniqueness': 1,\n",
      "          'modulation': 1,\n",
      "          'explanation': 1,\n",
      "          'meanness': 1,\n",
      "          'nanyone': 1,\n",
      "          'street': 1,\n",
      "          'played': 1,\n",
      "          'role': 1,\n",
      "          'walking': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutouts': 1,\n",
      "          'defined': 1,\n",
      "          'trait': 1,\n",
      "          'made': 1,\n",
      "          'deeper': 1,\n",
      "          'characterization': 1,\n",
      "          'burly': 1,\n",
      "          'female': 1,\n",
      "          'car': 1,\n",
      "          'mechanic': 1,\n",
      "          'course': 1,\n",
      "          'forced': 1,\n",
      "          'lesbianism': 1,\n",
      "          'son': 1,\n",
      "          'marcus': 1,\n",
      "          'thomas': 1,\n",
      "          'simpleton': 1,\n",
      "          'hence': 1,\n",
      "          'predict': 1,\n",
      "          'dialogue': 1,\n",
      "          'even': 1,\n",
      "          'plods': 1,\n",
      "          'mouth': 1,\n",
      "          'nchief': 1,\n",
      "          'rash': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'devito': 1,\n",
      "          'likes': 1,\n",
      "          'broadway': 1,\n",
      "          'musicals': 1,\n",
      "          'loves': 1,\n",
      "          'nothing': 1,\n",
      "          'nelle': 1,\n",
      "          'chiefs': 1,\n",
      "          'campbell': 1,\n",
      "          'bland': 1,\n",
      "          'personified': 1,\n",
      "          'dutiful': 1,\n",
      "          'girl': 1,\n",
      "          'higher': 1,\n",
      "          'aspiration': 1,\n",
      "          'married': 1,\n",
      "          'husband': 1,\n",
      "          'phil': 1,\n",
      "          'fichtner': 1,\n",
      "          'jeckle': 1,\n",
      "          'hydes': 1,\n",
      "          'shirking': 1,\n",
      "          'coward': 1,\n",
      "          'reptilian': 1,\n",
      "          'letch': 1,\n",
      "          'nbob': 1,\n",
      "          'affleck': 1,\n",
      "          'elles': 1,\n",
      "          'betrothed': 1,\n",
      "          'business': 1,\n",
      "          'partner': 1,\n",
      "          'mumbling': 1,\n",
      "          'obvious': 1,\n",
      "          'dullard': 1,\n",
      "          'contrast': 1,\n",
      "          'nby': 1,\n",
      "          'least': 1,\n",
      "          'character': 1,\n",
      "          'wit': 1,\n",
      "          'wits': 1,\n",
      "          'counterpoint': 1,\n",
      "          'others': 1,\n",
      "          'perhaps': 1,\n",
      "          'steinfelds': 1,\n",
      "          'satirizing': 1,\n",
      "          'small': 1,\n",
      "          'infested': 1,\n",
      "          'ambitionless': 1,\n",
      "          'might': 1,\n",
      "          'come': 1,\n",
      "          'better': 1,\n",
      "          'nostensibly': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'gives': 1,\n",
      "          'almost': 1,\n",
      "          'clues': 1,\n",
      "          'immediately': 1,\n",
      "          'lets': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'feel': 1,\n",
      "          'superior': 1,\n",
      "          'cast': 1,\n",
      "          'paper': 1,\n",
      "          'fumble': 1,\n",
      "          'finding': 1,\n",
      "          'killer': 1,\n",
      "          'anyone': 1,\n",
      "          'due': 1,\n",
      "          'loving': 1,\n",
      "          'manner': 1,\n",
      "          'everyone': 1,\n",
      "          'aspect': 1,\n",
      "          'fails': 1,\n",
      "          'throwing': 1,\n",
      "          'convenient': 1,\n",
      "          'ridiculous': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'wrap': 1,\n",
      "          'things': 1,\n",
      "          'since': 1,\n",
      "          'walked': 1,\n",
      "          'away': 1,\n",
      "          'movie': 1,\n",
      "          'theater': 1,\n",
      "          'mood': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'remarkable': 1,\n",
      "          'rarely': 1,\n",
      "          'remember': 1,\n",
      "          'making': 1,\n",
      "          'wasting': 1,\n",
      "          'time': 1,\n",
      "          'ineptitude': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carrey': 8,\n",
      "          'ventura': 3,\n",
      "          'nthe': 3,\n",
      "          'even': 3,\n",
      "          'jim': 2,\n",
      "          'nviewers': 2,\n",
      "          'living': 2,\n",
      "          'color': 2,\n",
      "          'know': 2,\n",
      "          'ace': 2,\n",
      "          'pet': 2,\n",
      "          'detective': 2,\n",
      "          'writers': 2,\n",
      "          'story': 2,\n",
      "          'miami': 2,\n",
      "          'around': 2,\n",
      "          'nhe': 2,\n",
      "          'funny': 2,\n",
      "          'stuff': 2,\n",
      "          'audience': 2,\n",
      "          'film': 2,\n",
      "          'takes': 2,\n",
      "          'going': 1,\n",
      "          'televisions': 1,\n",
      "          'oneman': 1,\n",
      "          'cartoon': 1,\n",
      "          'characters': 1,\n",
      "          'fire': 1,\n",
      "          'marshall': 1,\n",
      "          'bill': 1,\n",
      "          'also': 1,\n",
      "          'skitshow': 1,\n",
      "          'little': 1,\n",
      "          'goes': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'fact': 1,\n",
      "          'forgotten': 1,\n",
      "          'makers': 1,\n",
      "          'comedy': 1,\n",
      "          'nthree': 1,\n",
      "          'including': 1,\n",
      "          'worked': 1,\n",
      "          'slapstick': 1,\n",
      "          'sends': 1,\n",
      "          'selfstyled': 1,\n",
      "          'trail': 1,\n",
      "          'stolen': 1,\n",
      "          'dolphin': 1,\n",
      "          'missing': 1,\n",
      "          'mammal': 1,\n",
      "          'belongs': 1,\n",
      "          'dolphins': 1,\n",
      "          'need': 1,\n",
      "          'mascot': 1,\n",
      "          'upcoming': 1,\n",
      "          'superbowl': 1,\n",
      "          'nfor': 1,\n",
      "          'plot': 1,\n",
      "          'porpoises': 1,\n",
      "          'works': 1,\n",
      "          'well': 1,\n",
      "          'three': 1,\n",
      "          'stooges': 1,\n",
      "          'short': 1,\n",
      "          'ncarrey': 1,\n",
      "          'gets': 1,\n",
      "          'official': 1,\n",
      "          'schtick': 1,\n",
      "          'snoops': 1,\n",
      "          'greater': 1,\n",
      "          'leers': 1,\n",
      "          'sneers': 1,\n",
      "          'craning': 1,\n",
      "          'neck': 1,\n",
      "          'effect': 1,\n",
      "          'captain': 1,\n",
      "          'kirk': 1,\n",
      "          'impersonation': 1,\n",
      "          'nagain': 1,\n",
      "          'nall': 1,\n",
      "          'pretty': 1,\n",
      "          'harmless': 1,\n",
      "          'point': 1,\n",
      "          'realize': 1,\n",
      "          'absolutely': 1,\n",
      "          'intention': 1,\n",
      "          'focusing': 1,\n",
      "          'anyone': 1,\n",
      "          'n': 1,\n",
      "          'suggested': 1,\n",
      "          'alternate': 1,\n",
      "          'titlejim': 1,\n",
      "          'anything': 1,\n",
      "          'laugh': 1,\n",
      "          'nexport': 1,\n",
      "          'france': 1,\n",
      "          'may': 1,\n",
      "          'hit': 1,\n",
      "          'nas': 1,\n",
      "          'stands': 1,\n",
      "          'isnt': 1,\n",
      "          'good': 1,\n",
      "          'kids': 1,\n",
      "          'profanity': 1,\n",
      "          'count': 1,\n",
      "          'alone': 1,\n",
      "          'high': 1,\n",
      "          'nwhich': 1,\n",
      "          'ironic': 1,\n",
      "          'since': 1,\n",
      "          'children': 1,\n",
      "          'probably': 1,\n",
      "          'carreys': 1,\n",
      "          'best': 1,\n",
      "          'doesnt': 1,\n",
      "          'goofball': 1,\n",
      "          'charm': 1,\n",
      "          'chris': 1,\n",
      "          'elliotts': 1,\n",
      "          'recent': 1,\n",
      "          'nobrainer': 1,\n",
      "          'cabin': 1,\n",
      "          'boy': 1,\n",
      "          'nsure': 1,\n",
      "          'moments': 1,\n",
      "          'nbut': 1,\n",
      "          'say': 1,\n",
      "          'whose': 1,\n",
      "          'highpoints': 1,\n",
      "          'include': 1,\n",
      "          'watching': 1,\n",
      "          'slink': 1,\n",
      "          'theme': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'nace': 1,\n",
      "          'one': 1,\n",
      "          'glaring': 1,\n",
      "          'incongruity': 1,\n",
      "          'namid': 1,\n",
      "          'buttjokes': 1,\n",
      "          'doubletakes': 1,\n",
      "          'script': 1,\n",
      "          'great': 1,\n",
      "          'pains': 1,\n",
      "          'setup': 1,\n",
      "          'elaborate': 1,\n",
      "          'rather': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          'gag': 1,\n",
      "          'nand': 1,\n",
      "          'intended': 1,\n",
      "          'ahem': 1,\n",
      "          'cojones': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'space': 8,\n",
      "          'family': 6,\n",
      "          'lost': 5,\n",
      "          'like': 5,\n",
      "          'film': 4,\n",
      "          'pretty': 3,\n",
      "          'stars': 3,\n",
      "          'nthe': 3,\n",
      "          'nlost': 3,\n",
      "          'robinson': 3,\n",
      "          'mission': 3,\n",
      "          'planet': 3,\n",
      "          'entire': 3,\n",
      "          'oldman': 3,\n",
      "          'could': 3,\n",
      "          'wrong': 3,\n",
      "          'ever': 3,\n",
      "          'incredibly': 3,\n",
      "          'example': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'impressive': 2,\n",
      "          'actors': 2,\n",
      "          'make': 2,\n",
      "          'thru': 2,\n",
      "          'find': 2,\n",
      "          'way': 2,\n",
      "          'home': 2,\n",
      "          'terms': 2,\n",
      "          'acting': 2,\n",
      "          'star': 2,\n",
      "          'n': 2,\n",
      "          'nwell': 2,\n",
      "          'much': 2,\n",
      "          'know': 2,\n",
      "          'scifi': 2,\n",
      "          'series': 2,\n",
      "          'nits': 2,\n",
      "          'year': 2,\n",
      "          'hurt': 2,\n",
      "          'scientist': 2,\n",
      "          'hired': 2,\n",
      "          'leblanc': 2,\n",
      "          'rogers': 2,\n",
      "          'daughter': 2,\n",
      "          'jupiter': 2,\n",
      "          '2': 2,\n",
      "          'makes': 2,\n",
      "          'audience': 2,\n",
      "          'evil': 2,\n",
      "          'smith': 2,\n",
      "          'robot': 2,\n",
      "          'go': 2,\n",
      "          'plot': 2,\n",
      "          'get': 2,\n",
      "          'hard': 2,\n",
      "          'corny': 2,\n",
      "          'lame': 2,\n",
      "          'nif': 2,\n",
      "          'voice': 2,\n",
      "          'would': 2,\n",
      "          'yet': 2,\n",
      "          'dull': 2,\n",
      "          'ass': 2,\n",
      "          'escape': 2,\n",
      "          'pod': 2,\n",
      "          'without': 2,\n",
      "          'think': 2,\n",
      "          'time': 2,\n",
      "          'character': 2,\n",
      "          'couldnt': 2,\n",
      "          'worse': 2,\n",
      "          'nothing': 2,\n",
      "          'considered': 2,\n",
      "          'ending': 2,\n",
      "          'movie': 2,\n",
      "          'none': 1,\n",
      "          'happen': 1,\n",
      "          'im': 1,\n",
      "          'referring': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'ones': 1,\n",
      "          'movies': 1,\n",
      "          'outer': 1,\n",
      "          'less': 1,\n",
      "          'hurtle': 1,\n",
      "          'try': 1,\n",
      "          'nyes': 1,\n",
      "          'power': 1,\n",
      "          'falling': 1,\n",
      "          'nkinda': 1,\n",
      "          'shortlived': 1,\n",
      "          'dead': 1,\n",
      "          'really': 1,\n",
      "          'didnt': 1,\n",
      "          'based': 1,\n",
      "          '60s': 1,\n",
      "          'television': 1,\n",
      "          'name': 1,\n",
      "          '2058': 1,\n",
      "          'earths': 1,\n",
      "          'precious': 1,\n",
      "          'resources': 1,\n",
      "          'quickly': 1,\n",
      "          'usurped': 1,\n",
      "          'needs': 1,\n",
      "          'massive': 1,\n",
      "          'population': 1,\n",
      "          'njohn': 1,\n",
      "          'william': 1,\n",
      "          'leading': 1,\n",
      "          'program': 1,\n",
      "          'colonize': 1,\n",
      "          'foreign': 1,\n",
      "          'nearths': 1,\n",
      "          'existance': 1,\n",
      "          'contingent': 1,\n",
      "          'upon': 1,\n",
      "          'successful': 1,\n",
      "          'nobody': 1,\n",
      "          'whether': 1,\n",
      "          'johns': 1,\n",
      "          'battle': 1,\n",
      "          'pilot': 1,\n",
      "          'west': 1,\n",
      "          'matt': 1,\n",
      "          'seems': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'leaving': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'njohns': 1,\n",
      "          'consists': 1,\n",
      "          'wife': 1,\n",
      "          'maureen': 1,\n",
      "          'mimi': 1,\n",
      "          'atypical': 1,\n",
      "          'teenage': 1,\n",
      "          'penny': 1,\n",
      "          'lacey': 1,\n",
      "          'chabert': 1,\n",
      "          'ingenious': 1,\n",
      "          'son': 1,\n",
      "          'jack': 1,\n",
      "          'johnson': 1,\n",
      "          'beautiful': 1,\n",
      "          'judy': 1,\n",
      "          'heather': 1,\n",
      "          'graham': 1,\n",
      "          'ndespite': 1,\n",
      "          'everyones': 1,\n",
      "          'reluctance': 1,\n",
      "          'spacecraft': 1,\n",
      "          'abandons': 1,\n",
      "          'earth': 1,\n",
      "          'vast': 1,\n",
      "          'eternity': 1,\n",
      "          'nunknown': 1,\n",
      "          'anyone': 1,\n",
      "          'doctor': 1,\n",
      "          'stowaway': 1,\n",
      "          'determined': 1,\n",
      "          'sabotage': 1,\n",
      "          'ndr': 1,\n",
      "          'gary': 1,\n",
      "          'group': 1,\n",
      "          'rebel': 1,\n",
      "          'conspirators': 1,\n",
      "          'turn': 1,\n",
      "          'expedition': 1,\n",
      "          'sour': 1,\n",
      "          'dr': 1,\n",
      "          'reprogrammed': 1,\n",
      "          'talking': 1,\n",
      "          'destroy': 1,\n",
      "          'nwhen': 1,\n",
      "          'everything': 1,\n",
      "          'sides': 1,\n",
      "          'spaceship': 1,\n",
      "          'warped': 1,\n",
      "          'unknown': 1,\n",
      "          'destination': 1,\n",
      "          'premise': 1,\n",
      "          'complete': 1,\n",
      "          'nas': 1,\n",
      "          'likely': 1,\n",
      "          'boredom': 1,\n",
      "          'point': 1,\n",
      "          'wondering': 1,\n",
      "          'ground': 1,\n",
      "          'tell': 1,\n",
      "          'deserves': 1,\n",
      "          'blame': 1,\n",
      "          'bland': 1,\n",
      "          'characters': 1,\n",
      "          'horrifically': 1,\n",
      "          'script': 1,\n",
      "          'nchabert': 1,\n",
      "          'basically': 1,\n",
      "          'one': 1,\n",
      "          'overdo': 1,\n",
      "          'sounding': 1,\n",
      "          'whiny': 1,\n",
      "          'munchkin': 1,\n",
      "          'helium': 1,\n",
      "          'convinced': 1,\n",
      "          'commercials': 1,\n",
      "          'altered': 1,\n",
      "          'sort': 1,\n",
      "          'twist': 1,\n",
      "          'body': 1,\n",
      "          'taken': 1,\n",
      "          'aliens': 1,\n",
      "          'youre': 1,\n",
      "          'nthats': 1,\n",
      "          'normal': 1,\n",
      "          'nin': 1,\n",
      "          'another': 1,\n",
      "          'friend': 1,\n",
      "          'faltering': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'obviously': 1,\n",
      "          'trying': 1,\n",
      "          'charming': 1,\n",
      "          'sense': 1,\n",
      "          'want': 1,\n",
      "          'shove': 1,\n",
      "          'corridor': 1,\n",
      "          'ngraham': 1,\n",
      "          'babe': 1,\n",
      "          'thank': 1,\n",
      "          'goodness': 1,\n",
      "          'something': 1,\n",
      "          'nhurt': 1,\n",
      "          'black': 1,\n",
      "          'hole': 1,\n",
      "          'excitement': 1,\n",
      "          'sucks': 1,\n",
      "          'energy': 1,\n",
      "          'might': 1,\n",
      "          'left': 1,\n",
      "          'available': 1,\n",
      "          'tablet': 1,\n",
      "          'form': 1,\n",
      "          'prescription': 1,\n",
      "          'strength': 1,\n",
      "          'sleeping': 1,\n",
      "          'pill': 1,\n",
      "          'njohnson': 1,\n",
      "          'isnt': 1,\n",
      "          'hes': 1,\n",
      "          'young': 1,\n",
      "          'winds': 1,\n",
      "          'saving': 1,\n",
      "          'everybodys': 1,\n",
      "          'nwant': 1,\n",
      "          'cool': 1,\n",
      "          'kid': 1,\n",
      "          'nhow': 1,\n",
      "          'convinces': 1,\n",
      "          'heart': 1,\n",
      "          'reconsider': 1,\n",
      "          'killing': 1,\n",
      "          'nhey': 1,\n",
      "          'dont': 1,\n",
      "          'laugh': 1,\n",
      "          'thing': 1,\n",
      "          'actually': 1,\n",
      "          'listened': 1,\n",
      "          'mr': 1,\n",
      "          'rogerswouldbeproud': 1,\n",
      "          'sentiment': 1,\n",
      "          'nbut': 1,\n",
      "          'alas': 1,\n",
      "          'thought': 1,\n",
      "          'epitome': 1,\n",
      "          'generic': 1,\n",
      "          'mother': 1,\n",
      "          'known': 1,\n",
      "          'nwhy': 1,\n",
      "          'hire': 1,\n",
      "          'actress': 1,\n",
      "          'nthey': 1,\n",
      "          'couldve': 1,\n",
      "          'white': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutout': 1,\n",
      "          'word': 1,\n",
      "          'mom': 1,\n",
      "          'printed': 1,\n",
      "          'nnow': 1,\n",
      "          'wouldve': 1,\n",
      "          'pizzazz': 1,\n",
      "          'luckily': 1,\n",
      "          'doesnt': 1,\n",
      "          'suffer': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'category': 1,\n",
      "          'crisp': 1,\n",
      "          'clear': 1,\n",
      "          'least': 1,\n",
      "          'mildly': 1,\n",
      "          'captivating': 1,\n",
      "          'unlike': 1,\n",
      "          'presences': 1,\n",
      "          'onscreen': 1,\n",
      "          'save': 1,\n",
      "          'plays': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'fun': 1,\n",
      "          'finesse': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'locked': 1,\n",
      "          'away': 1,\n",
      "          'giving': 1,\n",
      "          'us': 1,\n",
      "          'ample': 1,\n",
      "          'mocking': 1,\n",
      "          'opportunities': 1,\n",
      "          'enjoy': 1,\n",
      "          'nwhile': 1,\n",
      "          'pleasing': 1,\n",
      "          'eye': 1,\n",
      "          'modern': 1,\n",
      "          'films': 1,\n",
      "          'ncontact': 1,\n",
      "          'far': 1,\n",
      "          'exceeds': 1,\n",
      "          'imagery': 1,\n",
      "          'imagination': 1,\n",
      "          'many': 1,\n",
      "          'shortcomings': 1,\n",
      "          'work': 1,\n",
      "          'cinematic': 1,\n",
      "          'art': 1,\n",
      "          'numerous': 1,\n",
      "          'contradictions': 1,\n",
      "          'travel': 1,\n",
      "          'aspect': 1,\n",
      "          'horribly': 1,\n",
      "          'flawed': 1,\n",
      "          'wooden': 1,\n",
      "          'dialogue': 1,\n",
      "          'disappointing': 1,\n",
      "          'youd': 1,\n",
      "          'happier': 1,\n",
      "          'seen': 1,\n",
      "          'blown': 1,\n",
      "          'smithereens': 1,\n",
      "          'nthen': 1,\n",
      "          'obvious': 1,\n",
      "          'sequel': 1,\n",
      "          'already': 1,\n",
      "          'nwhat': 1,\n",
      "          'awful': 1,\n",
      "          'note': 1,\n",
      "          'end': 1,\n",
      "          'knowing': 1,\n",
      "          'two': 1,\n",
      "          'attempt': 1,\n",
      "          'oriented': 1,\n",
      "          'commendable': 1,\n",
      "          'illusion': 1,\n",
      "          'nostalgia': 1,\n",
      "          'classic': 1,\n",
      "          'tv': 1,\n",
      "          'revisited': 1,\n",
      "          'enough': 1,\n",
      "          'satisfy': 1,\n",
      "          'age': 1,\n",
      "          'groups': 1,\n",
      "          'danger': 1,\n",
      "          'potential': 1,\n",
      "          'goers': 1,\n",
      "          'ndanger': 1,\n",
      "          'nthis': 1,\n",
      "          'crash': 1,\n",
      "          'lands': 1,\n",
      "          'breaking': 1,\n",
      "          'atmosphere': 1,\n",
      "          'mediocrity': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'old': 8,\n",
      "          'couple': 6,\n",
      "          'men': 6,\n",
      "          'n': 6,\n",
      "          'odd': 5,\n",
      "          'grumpy': 5,\n",
      "          'oscar': 4,\n",
      "          'felix': 4,\n",
      "          'lemmon': 4,\n",
      "          'matthau': 3,\n",
      "          'movies': 3,\n",
      "          'e': 3,\n",
      "          'ii': 3,\n",
      "          'nthe': 3,\n",
      "          'women': 3,\n",
      "          'years': 2,\n",
      "          'together': 2,\n",
      "          '1993s': 2,\n",
      "          'sea': 2,\n",
      "          'grumpiest': 2,\n",
      "          'series': 2,\n",
      "          'characters': 2,\n",
      "          'car': 2,\n",
      "          'original': 2,\n",
      "          'two': 2,\n",
      "          'movie': 2,\n",
      "          'nit': 2,\n",
      "          'since': 2,\n",
      "          'buddy': 2,\n",
      "          'first': 2,\n",
      "          'nlets': 2,\n",
      "          'hope': 2,\n",
      "          'thirty': 1,\n",
      "          'later': 1,\n",
      "          'nthat': 1,\n",
      "          'might': 1,\n",
      "          'exciting': 1,\n",
      "          'notion': 1,\n",
      "          'wasnt': 1,\n",
      "          'fact': 1,\n",
      "          'jack': 1,\n",
      "          'walter': 1,\n",
      "          'reunited': 1,\n",
      "          'several': 1,\n",
      "          'recent': 1,\n",
      "          '1995s': 1,\n",
      "          'grumpier': 1,\n",
      "          '1997s': 1,\n",
      "          'nso': 1,\n",
      "          'really': 1,\n",
      "          'seems': 1,\n",
      "          'another': 1,\n",
      "          'entry': 1,\n",
      "          'tired': 1,\n",
      "          'plot': 1,\n",
      "          'even': 1,\n",
      "          'similar': 1,\n",
      "          'matthaus': 1,\n",
      "          'mismatched': 1,\n",
      "          'brought': 1,\n",
      "          'romance': 1,\n",
      "          'children': 1,\n",
      "          'noscars': 1,\n",
      "          'son': 1,\n",
      "          'jonathan': 1,\n",
      "          'silverman': 1,\n",
      "          'felixs': 1,\n",
      "          'daughter': 1,\n",
      "          'lisa': 1,\n",
      "          'waltz': 1,\n",
      "          'getting': 1,\n",
      "          'married': 1,\n",
      "          'former': 1,\n",
      "          'roommates': 1,\n",
      "          'ungar': 1,\n",
      "          'madison': 1,\n",
      "          'meet': 1,\n",
      "          'airport': 1,\n",
      "          'decide': 1,\n",
      "          'share': 1,\n",
      "          'nthen': 1,\n",
      "          'hilarity': 1,\n",
      "          'ensues': 1,\n",
      "          'nwell': 1,\n",
      "          'chuckles': 1,\n",
      "          'ensue': 1,\n",
      "          'anyway': 1,\n",
      "          'nneil': 1,\n",
      "          'simon': 1,\n",
      "          'awardwinning': 1,\n",
      "          'playwright': 1,\n",
      "          'created': 1,\n",
      "          'provides': 1,\n",
      "          'screenplay': 1,\n",
      "          'shock': 1,\n",
      "          'script': 1,\n",
      "          'piece': 1,\n",
      "          'talentless': 1,\n",
      "          'hackwork': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'nunlike': 1,\n",
      "          'playmovie': 1,\n",
      "          'doesnt': 1,\n",
      "          'find': 1,\n",
      "          'humor': 1,\n",
      "          'personality': 1,\n",
      "          'conflict': 1,\n",
      "          'ninstead': 1,\n",
      "          'depends': 1,\n",
      "          'upon': 1,\n",
      "          'humorous': 1,\n",
      "          'situations': 1,\n",
      "          'lose': 1,\n",
      "          'cliff': 1,\n",
      "          'caught': 1,\n",
      "          'smuggling': 1,\n",
      "          'mexicans': 1,\n",
      "          'border': 1,\n",
      "          'take': 1,\n",
      "          'run': 1,\n",
      "          'violent': 1,\n",
      "          'husbands': 1,\n",
      "          'played': 1,\n",
      "          'christine': 1,\n",
      "          'baranski': 1,\n",
      "          'cybill': 1,\n",
      "          'jean': 1,\n",
      "          'smart': 1,\n",
      "          'designing': 1,\n",
      "          'hitch': 1,\n",
      "          'ride': 1,\n",
      "          'man': 1,\n",
      "          'dies': 1,\n",
      "          'desert': 1,\n",
      "          '1968': 1,\n",
      "          'remains': 1,\n",
      "          'classic': 1,\n",
      "          'comedy': 1,\n",
      "          'introduced': 1,\n",
      "          'motif': 1,\n",
      "          'roommateasspouse': 1,\n",
      "          'provided': 1,\n",
      "          'gags': 1,\n",
      "          'sitcoms': 1,\n",
      "          'ever': 1,\n",
      "          'second': 1,\n",
      "          'outing': 1,\n",
      "          'lemmonmatthau': 1,\n",
      "          'team': 1,\n",
      "          'debuted': 1,\n",
      "          '1966s': 1,\n",
      "          'fortune': 1,\n",
      "          'cookie': 1,\n",
      "          'made': 1,\n",
      "          'worthwhile': 1,\n",
      "          'comedies': 1,\n",
      "          'front': 1,\n",
      "          'page': 1,\n",
      "          '1974': 1,\n",
      "          '1981': 1,\n",
      "          'going': 1,\n",
      "          'separate': 1,\n",
      "          'ways': 1,\n",
      "          'reunion': 1,\n",
      "          'six': 1,\n",
      "          'ago': 1,\n",
      "          'delightful': 1,\n",
      "          'sequel': 1,\n",
      "          'seemed': 1,\n",
      "          'appropriate': 1,\n",
      "          'tied': 1,\n",
      "          'loose': 1,\n",
      "          'ends': 1,\n",
      "          'nbut': 1,\n",
      "          'beating': 1,\n",
      "          'horse': 1,\n",
      "          'add': 1,\n",
      "          'lemmons': 1,\n",
      "          'fellow': 1,\n",
      "          'americans': 1,\n",
      "          'presidents': 1,\n",
      "          'list': 1,\n",
      "          'hollywood': 1,\n",
      "          'offers': 1,\n",
      "          'actors': 1,\n",
      "          'something': 1,\n",
      "          'fresh': 1,\n",
      "          'also': 1,\n",
      "          'see': 1,\n",
      "          'neil': 1,\n",
      "          'simons': 1,\n",
      "          'name': 1,\n",
      "          'justice': 1,\n",
      "          'lost': 1,\n",
      "          'yonkers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'comedy': 4,\n",
      "          'dan': 3,\n",
      "          'love': 3,\n",
      "          'husband': 3,\n",
      "          'wife': 3,\n",
      "          'nthe': 3,\n",
      "          'movie': 3,\n",
      "          'write': 3,\n",
      "          'good': 2,\n",
      "          'midler': 2,\n",
      "          'farina': 2,\n",
      "          'married': 2,\n",
      "          'mollys': 2,\n",
      "          'wedding': 2,\n",
      "          'passionately': 2,\n",
      "          'runs': 2,\n",
      "          'search': 2,\n",
      "          'parents': 2,\n",
      "          'keith': 2,\n",
      "          'somehow': 2,\n",
      "          'falls': 2,\n",
      "          'dans': 2,\n",
      "          'thought': 2,\n",
      "          'n': 2,\n",
      "          'romantic': 2,\n",
      "          'bitch': 2,\n",
      "          'shes': 2,\n",
      "          'prick': 2,\n",
      "          'except': 1,\n",
      "          'bright': 1,\n",
      "          'moments': 1,\n",
      "          'verbal': 1,\n",
      "          'old': 1,\n",
      "          'feeling': 1,\n",
      "          'embarrassing': 1,\n",
      "          'sit': 1,\n",
      "          'nbette': 1,\n",
      "          'dennis': 1,\n",
      "          'play': 1,\n",
      "          'lilly': 1,\n",
      "          'actress': 1,\n",
      "          'author': 1,\n",
      "          'violently': 1,\n",
      "          'divorced': 1,\n",
      "          'back': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'together': 1,\n",
      "          'one': 1,\n",
      "          'last': 1,\n",
      "          'time': 1,\n",
      "          'daughter': 1,\n",
      "          'paula': 1,\n",
      "          'marshall': 1,\n",
      "          'nlilly': 1,\n",
      "          'hate': 1,\n",
      "          'sex': 1,\n",
      "          'fall': 1,\n",
      "          'neach': 1,\n",
      "          'ditches': 1,\n",
      "          'current': 1,\n",
      "          'spouse': 1,\n",
      "          '14': 1,\n",
      "          'years': 1,\n",
      "          'nmolly': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'irresponsible': 1,\n",
      "          'jamie': 1,\n",
      "          'denton': 1,\n",
      "          'tries': 1,\n",
      "          'console': 1,\n",
      "          'abandoned': 1,\n",
      "          'spouses': 1,\n",
      "          'nin': 1,\n",
      "          'lillys': 1,\n",
      "          'paparazzo': 1,\n",
      "          'joey': 1,\n",
      "          'danny': 1,\n",
      "          'nucci': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'newlywed': 1,\n",
      "          'ends': 1,\n",
      "          'consoling': 1,\n",
      "          'rowena': 1,\n",
      "          'gail': 1,\n",
      "          'ogrady': 1,\n",
      "          'bed': 1,\n",
      "          'audience': 1,\n",
      "          'saw': 1,\n",
      "          'apparently': 1,\n",
      "          'adultery': 1,\n",
      "          'hilarious': 1,\n",
      "          'nim': 1,\n",
      "          'quayle': 1,\n",
      "          'bit': 1,\n",
      "          'creepy': 1,\n",
      "          'message': 1,\n",
      "          'seemed': 1,\n",
      "          'ignore': 1,\n",
      "          'responsibilities': 1,\n",
      "          'unrepentantly': 1,\n",
      "          'fun': 1,\n",
      "          'fucking': 1,\n",
      "          'wish': 1,\n",
      "          'family': 1,\n",
      "          'values': 1,\n",
      "          'aside': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'cruel': 1,\n",
      "          'nperhaps': 1,\n",
      "          'would': 1,\n",
      "          'played': 1,\n",
      "          'well': 1,\n",
      "          'black': 1,\n",
      "          'nwe': 1,\n",
      "          'supposed': 1,\n",
      "          'rooting': 1,\n",
      "          'creeps': 1,\n",
      "          'nreiner': 1,\n",
      "          'screenwriter': 1,\n",
      "          'leslie': 1,\n",
      "          'dixon': 1,\n",
      "          'tried': 1,\n",
      "          'make': 1,\n",
      "          'easier': 1,\n",
      "          'us': 1,\n",
      "          'making': 1,\n",
      "          'victims': 1,\n",
      "          'unlikeable': 1,\n",
      "          'nlillys': 1,\n",
      "          'newage': 1,\n",
      "          'flake': 1,\n",
      "          'rambles': 1,\n",
      "          'emotional': 1,\n",
      "          'valet': 1,\n",
      "          'parking': 1,\n",
      "          'irrelevant': 1,\n",
      "          'ndans': 1,\n",
      "          'vain': 1,\n",
      "          'manipulative': 1,\n",
      "          'jealous': 1,\n",
      "          'nmollys': 1,\n",
      "          'careerconscious': 1,\n",
      "          'selfcentered': 1,\n",
      "          'republican': 1,\n",
      "          'politician': 1,\n",
      "          'thinks': 1,\n",
      "          'fat': 1,\n",
      "          'measure': 1,\n",
      "          'also': 1,\n",
      "          'fucked': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'nbut': 1,\n",
      "          'still': 1,\n",
      "          'doesnt': 1,\n",
      "          'justify': 1,\n",
      "          'actions': 1,\n",
      "          'movies': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'hes': 1,\n",
      "          'defense': 1,\n",
      "          'somewhat': 1,\n",
      "          'redeemed': 1,\n",
      "          'funny': 1,\n",
      "          'dialog': 1,\n",
      "          'often': 1,\n",
      "          'heated': 1,\n",
      "          'arguments': 1,\n",
      "          'aboveaverage': 1,\n",
      "          'performances': 1,\n",
      "          'breaking': 1,\n",
      "          'characteractor': 1,\n",
      "          'mold': 1,\n",
      "          'nother': 1,\n",
      "          'standard': 1,\n",
      "          'substandard': 1,\n",
      "          'gimmick': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'nerror': 4,\n",
      "          'mars': 3,\n",
      "          'na': 3,\n",
      "          'mission': 2,\n",
      "          'film': 2,\n",
      "          'michael': 2,\n",
      "          'redman': 2,\n",
      "          'ntheres': 2,\n",
      "          'world': 2,\n",
      "          'artist': 2,\n",
      "          'something': 2,\n",
      "          'nhe': 2,\n",
      "          'well': 2,\n",
      "          'good': 2,\n",
      "          'technician': 2,\n",
      "          'make': 2,\n",
      "          'films': 2,\n",
      "          'de': 2,\n",
      "          'work': 2,\n",
      "          'turns': 2,\n",
      "          'enjoyed': 2,\n",
      "          '2001': 2,\n",
      "          'close': 2,\n",
      "          'encounters': 2,\n",
      "          'nwhen': 2,\n",
      "          'first': 2,\n",
      "          'crew': 2,\n",
      "          'nthey': 2,\n",
      "          'dont': 2,\n",
      "          'either': 2,\n",
      "          'solve': 2,\n",
      "          'looks': 2,\n",
      "          'much': 2,\n",
      "          'anything': 2,\n",
      "          'space': 2,\n",
      "          'seems': 2,\n",
      "          'theres': 2,\n",
      "          'nfrom': 2,\n",
      "          'maybe': 1,\n",
      "          'scrubbed': 1,\n",
      "          'nmission': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '2000': 1,\n",
      "          'difference': 1,\n",
      "          'artists': 1,\n",
      "          'technicians': 1,\n",
      "          'vision': 1,\n",
      "          'create': 1,\n",
      "          'new': 1,\n",
      "          'may': 1,\n",
      "          'might': 1,\n",
      "          'sloppy': 1,\n",
      "          'youve': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'look': 1,\n",
      "          'without': 1,\n",
      "          'direction': 1,\n",
      "          'inner': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'going': 1,\n",
      "          'xerox': 1,\n",
      "          'nobviously': 1,\n",
      "          'successful': 1,\n",
      "          'need': 1,\n",
      "          'skills': 1,\n",
      "          'nbrian': 1,\n",
      "          'palma': 1,\n",
      "          'masterful': 1,\n",
      "          'nhes': 1,\n",
      "          'spent': 1,\n",
      "          'career': 1,\n",
      "          'copying': 1,\n",
      "          'others': 1,\n",
      "          'notably': 1,\n",
      "          'hitchcock': 1,\n",
      "          'usually': 1,\n",
      "          'knows': 1,\n",
      "          'exactly': 1,\n",
      "          'scene': 1,\n",
      "          'learned': 1,\n",
      "          'rote': 1,\n",
      "          'naside': 1,\n",
      "          'rare': 1,\n",
      "          'flashes': 1,\n",
      "          'originality': 1,\n",
      "          'often': 1,\n",
      "          'souldead': 1,\n",
      "          'nin': 1,\n",
      "          'palmas': 1,\n",
      "          'latest': 1,\n",
      "          'attention': 1,\n",
      "          'stanley': 1,\n",
      "          'kubrick': 1,\n",
      "          'nto': 1,\n",
      "          'tell': 1,\n",
      "          'truth': 1,\n",
      "          'portions': 1,\n",
      "          'movie': 1,\n",
      "          'liked': 1,\n",
      "          'lot': 1,\n",
      "          'better': 1,\n",
      "          '30': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'called': 1,\n",
      "          'ni': 1,\n",
      "          'even': 1,\n",
      "          'titled': 1,\n",
      "          'nnasa': 1,\n",
      "          'set': 1,\n",
      "          'sights': 1,\n",
      "          'meets': 1,\n",
      "          'disaster': 1,\n",
      "          'rescue': 1,\n",
      "          'sent': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'eventually': 1,\n",
      "          'meet': 1,\n",
      "          'lone': 1,\n",
      "          'surviving': 1,\n",
      "          'astronautgonerasta': 1,\n",
      "          'mysteries': 1,\n",
      "          'universe': 1,\n",
      "          'nand': 1,\n",
      "          'boring': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'difficult': 1,\n",
      "          'begin': 1,\n",
      "          'feet': 1,\n",
      "          'away': 1,\n",
      "          'raging': 1,\n",
      "          'massive': 1,\n",
      "          'upsidedown': 1,\n",
      "          'martian': 1,\n",
      "          'tornado': 1,\n",
      "          'remarkably': 1,\n",
      "          'like': 1,\n",
      "          'sandworm': 1,\n",
      "          'dune': 1,\n",
      "          'destroying': 1,\n",
      "          'everything': 1,\n",
      "          'path': 1,\n",
      "          'hang': 1,\n",
      "          'watching': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'thats': 1,\n",
      "          'saying': 1,\n",
      "          'killed': 1,\n",
      "          'alien': 1,\n",
      "          'laughable': 1,\n",
      "          'rest': 1,\n",
      "          'characters': 1,\n",
      "          'dullest': 1,\n",
      "          'people': 1,\n",
      "          'imaginable': 1,\n",
      "          'nice': 1,\n",
      "          'eyecandy': 1,\n",
      "          'face': 1,\n",
      "          'giant': 1,\n",
      "          'metal': 1,\n",
      "          'thai': 1,\n",
      "          'buddha': 1,\n",
      "          'head': 1,\n",
      "          'cool': 1,\n",
      "          'threedimensional': 1,\n",
      "          'holographic': 1,\n",
      "          'planetarium': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'disney': 1,\n",
      "          'nmaneuvering': 1,\n",
      "          'suits': 1,\n",
      "          'outside': 1,\n",
      "          'ship': 1,\n",
      "          'realistic': 1,\n",
      "          'nbut': 1,\n",
      "          'feels': 1,\n",
      "          'weve': 1,\n",
      "          'rotating': 1,\n",
      "          'station': 1,\n",
      "          'blinding': 1,\n",
      "          'white': 1,\n",
      "          'room': 1,\n",
      "          'sound': 1,\n",
      "          'puzzle': 1,\n",
      "          'play': 1,\n",
      "          'aliens': 1,\n",
      "          'list': 1,\n",
      "          'goes': 1,\n",
      "          'actors': 1,\n",
      "          'mostly': 1,\n",
      "          'mobile': 1,\n",
      "          'wooden': 1,\n",
      "          'statues': 1,\n",
      "          'neven': 1,\n",
      "          'gary': 1,\n",
      "          'sinise': 1,\n",
      "          'tim': 1,\n",
      "          'robbins': 1,\n",
      "          'cant': 1,\n",
      "          'muster': 1,\n",
      "          'enough': 1,\n",
      "          'emotion': 1,\n",
      "          'convince': 1,\n",
      "          'us': 1,\n",
      "          'breathing': 1,\n",
      "          'nno': 1,\n",
      "          'one': 1,\n",
      "          'care': 1,\n",
      "          'happens': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'absolutely': 1,\n",
      "          'worst': 1,\n",
      "          'sin': 1,\n",
      "          'blatant': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'dr': 1,\n",
      "          'pepper': 1,\n",
      "          '20': 1,\n",
      "          'foot': 1,\n",
      "          'tall': 1,\n",
      "          'logo': 1,\n",
      "          'saves': 1,\n",
      "          'day': 1,\n",
      "          'save': 1,\n",
      "          'commercials': 1,\n",
      "          'insipid': 1,\n",
      "          'bits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 20,\n",
      "          'drive': 5,\n",
      "          'nthe': 5,\n",
      "          'lynch': 5,\n",
      "          'mulholland': 4,\n",
      "          'nin': 4,\n",
      "          'think': 4,\n",
      "          'pilot': 4,\n",
      "          'woman': 4,\n",
      "          'nshe': 4,\n",
      "          'strange': 4,\n",
      "          'story': 3,\n",
      "          'end': 3,\n",
      "          'tv': 3,\n",
      "          'david': 3,\n",
      "          'else': 3,\n",
      "          'wants': 3,\n",
      "          'little': 3,\n",
      "          'know': 3,\n",
      "          'crime': 3,\n",
      "          'nthere': 3,\n",
      "          'called': 3,\n",
      "          '4': 3,\n",
      "          'audience': 3,\n",
      "          'clues': 3,\n",
      "          'well': 2,\n",
      "          'festival': 2,\n",
      "          'nas': 2,\n",
      "          'see': 2,\n",
      "          'fact': 2,\n",
      "          'hollywood': 2,\n",
      "          'ntoward': 2,\n",
      "          'director': 2,\n",
      "          'something': 2,\n",
      "          'opens': 2,\n",
      "          'car': 2,\n",
      "          'bungalow': 2,\n",
      "          'nmeanwhile': 2,\n",
      "          'actress': 2,\n",
      "          'surprised': 2,\n",
      "          'sure': 2,\n",
      "          'nhe': 2,\n",
      "          'cast': 2,\n",
      "          'one': 2,\n",
      "          'intended': 2,\n",
      "          'nlynch': 2,\n",
      "          'make': 2,\n",
      "          'ni': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          'low': 2,\n",
      "          'read': 2,\n",
      "          'large': 2,\n",
      "          'simple': 2,\n",
      "          'explanation': 2,\n",
      "          'add': 2,\n",
      "          'ubar': 2,\n",
      "          'nlook': 2,\n",
      "          'cannes': 1,\n",
      "          'rating': 1,\n",
      "          'toronto': 1,\n",
      "          'international': 1,\n",
      "          'nit': 1,\n",
      "          'may': 1,\n",
      "          'clear': 1,\n",
      "          'viewer': 1,\n",
      "          'negative': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'interesting': 1,\n",
      "          'mystery': 1,\n",
      "          'told': 1,\n",
      "          'backdrop': 1,\n",
      "          'industry': 1,\n",
      "          'everything': 1,\n",
      "          'built': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'series': 1,\n",
      "          'writer': 1,\n",
      "          'sell': 1,\n",
      "          'decided': 1,\n",
      "          'wanted': 1,\n",
      "          'nsomething': 1,\n",
      "          'played': 1,\n",
      "          'laura': 1,\n",
      "          'harring': 1,\n",
      "          'killed': 1,\n",
      "          'crash': 1,\n",
      "          'saves': 1,\n",
      "          'life': 1,\n",
      "          'crawls': 1,\n",
      "          'away': 1,\n",
      "          'accident': 1,\n",
      "          'concussion': 1,\n",
      "          'finds': 1,\n",
      "          'unlocked': 1,\n",
      "          'door': 1,\n",
      "          'sleep': 1,\n",
      "          'young': 1,\n",
      "          'vivacious': 1,\n",
      "          'betty': 1,\n",
      "          'naomi': 1,\n",
      "          'watts': 1,\n",
      "          'arrives': 1,\n",
      "          'canada': 1,\n",
      "          'build': 1,\n",
      "          'career': 1,\n",
      "          'nbetty': 1,\n",
      "          'find': 1,\n",
      "          'sleeping': 1,\n",
      "          'borrowed': 1,\n",
      "          'even': 1,\n",
      "          'awakes': 1,\n",
      "          'nthey': 1,\n",
      "          'fix': 1,\n",
      "          'name': 1,\n",
      "          'rita': 1,\n",
      "          'right': 1,\n",
      "          'local': 1,\n",
      "          'adam': 1,\n",
      "          'kesher': 1,\n",
      "          'justin': 1,\n",
      "          'theroux': 1,\n",
      "          'problems': 1,\n",
      "          'trying': 1,\n",
      "          'new': 1,\n",
      "          'getting': 1,\n",
      "          'pressure': 1,\n",
      "          'producers': 1,\n",
      "          'figures': 1,\n",
      "          'someone': 1,\n",
      "          'cammie': 1,\n",
      "          'rhodes': 1,\n",
      "          'melissa': 1,\n",
      "          'george': 1,\n",
      "          'nthese': 1,\n",
      "          'two': 1,\n",
      "          'threads': 1,\n",
      "          'joined': 1,\n",
      "          'third': 1,\n",
      "          'comic': 1,\n",
      "          'murder': 1,\n",
      "          'goes': 1,\n",
      "          'terribly': 1,\n",
      "          'wrong': 1,\n",
      "          'also': 1,\n",
      "          'character': 1,\n",
      "          'cowboy': 1,\n",
      "          'monty': 1,\n",
      "          'montgomery': 1,\n",
      "          'adding': 1,\n",
      "          'confusion': 1,\n",
      "          'probably': 1,\n",
      "          'television': 1,\n",
      "          'great': 1,\n",
      "          'vibrancy': 1,\n",
      "          'showing': 1,\n",
      "          'dancing': 1,\n",
      "          '60s': 1,\n",
      "          'style': 1,\n",
      "          'credits': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'starts': 1,\n",
      "          'fun': 1,\n",
      "          'could': 1,\n",
      "          'enjoyable': 1,\n",
      "          'stylish': 1,\n",
      "          'chooses': 1,\n",
      "          'material': 1,\n",
      "          'added': 1,\n",
      "          'reason': 1,\n",
      "          'earthworms': 1,\n",
      "          'decidedly': 1,\n",
      "          'touches': 1,\n",
      "          'long': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'gets': 1,\n",
      "          'heavier': 1,\n",
      "          'violence': 1,\n",
      "          'sex': 1,\n",
      "          'scenes': 1,\n",
      "          'clearly': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'important': 1,\n",
      "          'comments': 1,\n",
      "          'would': 1,\n",
      "          'spoilers': 1,\n",
      "          'mention': 1,\n",
      "          'main': 1,\n",
      "          'body': 1,\n",
      "          'review': 1,\n",
      "          'give': 1,\n",
      "          '10': 1,\n",
      "          'nmulholland': 1,\n",
      "          'spoiler': 1,\n",
      "          'warning': 1,\n",
      "          'rated': 1,\n",
      "          'fairly': 1,\n",
      "          'nyou': 1,\n",
      "          'seeing': 1,\n",
      "          'deciding': 1,\n",
      "          'ndavid': 1,\n",
      "          'part': 1,\n",
      "          'dark': 1,\n",
      "          'satirist': 1,\n",
      "          'nmost': 1,\n",
      "          'work': 1,\n",
      "          'done': 1,\n",
      "          'familiar': 1,\n",
      "          'genres': 1,\n",
      "          'way': 1,\n",
      "          'shows': 1,\n",
      "          'underside': 1,\n",
      "          'laugh': 1,\n",
      "          'expense': 1,\n",
      "          'genre': 1,\n",
      "          'nwhat': 1,\n",
      "          'want': 1,\n",
      "          'nplaying': 1,\n",
      "          'expectations': 1,\n",
      "          'going': 1,\n",
      "          'first': 1,\n",
      "          '80': 1,\n",
      "          'tells': 1,\n",
      "          'multithread': 1,\n",
      "          'sprinkled': 1,\n",
      "          'throughout': 1,\n",
      "          'nthen': 1,\n",
      "          'suddenly': 1,\n",
      "          'turns': 1,\n",
      "          'ear': 1,\n",
      "          'number': 1,\n",
      "          'appear': 1,\n",
      "          'expectation': 1,\n",
      "          'nbut': 1,\n",
      "          'given': 1,\n",
      "          'selfcontradictory': 1,\n",
      "          'argue': 1,\n",
      "          'seen': 1,\n",
      "          'afterward': 1,\n",
      "          'come': 1,\n",
      "          'theories': 1,\n",
      "          'pointers': 1,\n",
      "          'noticeably': 1,\n",
      "          'contradictory': 1,\n",
      "          'hear': 1,\n",
      "          'better': 1,\n",
      "          'merely': 1,\n",
      "          'playing': 1,\n",
      "          'joke': 1,\n",
      "          'visual': 1,\n",
      "          'curiosity': 1,\n",
      "          'popular': 1,\n",
      "          'sixties': 1,\n",
      "          'nmad': 1,\n",
      "          'magazine': 1,\n",
      "          'poiuyt': 1,\n",
      "          'nother': 1,\n",
      "          'sources': 1,\n",
      "          'tri': 1,\n",
      "          'pronged': 1,\n",
      "          'small': 1,\n",
      "          'portions': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'whole': 1,\n",
      "          'figure': 1,\n",
      "          'nthis': 1,\n",
      "          'estimation': 1,\n",
      "          'cinematic': 1,\n",
      "          'equivalent': 1,\n",
      "          'tripronged': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chucky': 9,\n",
      "          'plastic': 4,\n",
      "          'bride': 4,\n",
      "          'tiffany': 4,\n",
      "          'dolls': 3,\n",
      "          'jennifer': 3,\n",
      "          'married': 3,\n",
      "          'nthe': 3,\n",
      "          'possessed': 2,\n",
      "          'tilly': 2,\n",
      "          'doll': 2,\n",
      "          'spirit': 2,\n",
      "          'murderer': 2,\n",
      "          'couple': 2,\n",
      "          'mid': 2,\n",
      "          'life': 2,\n",
      "          'crisis': 2,\n",
      "          'gotten': 2,\n",
      "          'make': 2,\n",
      "          'scary': 2,\n",
      "          'keep': 2,\n",
      "          'attention': 2,\n",
      "          'half': 2,\n",
      "          'ingredients': 1,\n",
      "          'love': 1,\n",
      "          'sex': 1,\n",
      "          'nstarring': 1,\n",
      "          'voice': 1,\n",
      "          'brad': 1,\n",
      "          'dourif': 1,\n",
      "          'katherine': 1,\n",
      "          'heigl': 1,\n",
      "          'nick': 1,\n",
      "          'stabile': 1,\n",
      "          'john': 1,\n",
      "          'ritter': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'fourth': 1,\n",
      "          'film': 1,\n",
      "          'series': 1,\n",
      "          'debuted': 1,\n",
      "          'late': 1,\n",
      "          '1980s': 1,\n",
      "          'nbasically': 1,\n",
      "          'walk': 1,\n",
      "          'talk': 1,\n",
      "          'slain': 1,\n",
      "          'nin': 1,\n",
      "          'chuckys': 1,\n",
      "          'longtime': 1,\n",
      "          'girlfriend': 1,\n",
      "          'dies': 1,\n",
      "          'inhabits': 1,\n",
      "          'female': 1,\n",
      "          'voodoo': 1,\n",
      "          'ndolls': 1,\n",
      "          'get': 1,\n",
      "          'embark': 1,\n",
      "          'quest': 1,\n",
      "          'reach': 1,\n",
      "          'cemetery': 1,\n",
      "          'new': 1,\n",
      "          'jersey': 1,\n",
      "          'mystical': 1,\n",
      "          'gem': 1,\n",
      "          'might': 1,\n",
      "          'enable': 1,\n",
      "          'humans': 1,\n",
      "          'stow': 1,\n",
      "          'away': 1,\n",
      "          'back': 1,\n",
      "          'vehicle': 1,\n",
      "          'driven': 1,\n",
      "          'newly': 1,\n",
      "          'eloped': 1,\n",
      "          'side': 1,\n",
      "          'plot': 1,\n",
      "          'suspects': 1,\n",
      "          'nopinion': 1,\n",
      "          'attempt': 1,\n",
      "          'horror': 1,\n",
      "          'humor': 1,\n",
      "          'doesnt': 1,\n",
      "          'succeed': 1,\n",
      "          'nsomehow': 1,\n",
      "          'moaning': 1,\n",
      "          'nand': 1,\n",
      "          'harping': 1,\n",
      "          'suspenseless': 1,\n",
      "          'relies': 1,\n",
      "          'mostly': 1,\n",
      "          'tillys': 1,\n",
      "          'cleavage': 1,\n",
      "          'first': 1,\n",
      "          'occasional': 1,\n",
      "          'puns': 1,\n",
      "          'second': 1,\n",
      "          'best': 1,\n",
      "          'said': 1,\n",
      "          'sarcastic': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 15,\n",
      "          'bad': 8,\n",
      "          'movies': 6,\n",
      "          'robinson': 6,\n",
      "          'lost': 5,\n",
      "          'nthe': 5,\n",
      "          'star': 4,\n",
      "          'space': 4,\n",
      "          'made': 4,\n",
      "          'good': 4,\n",
      "          'family': 4,\n",
      "          'monkey': 3,\n",
      "          'sound': 3,\n",
      "          'ni': 3,\n",
      "          'even': 3,\n",
      "          'actor': 3,\n",
      "          'nand': 3,\n",
      "          'one': 3,\n",
      "          'time': 3,\n",
      "          'enough': 3,\n",
      "          'nthen': 3,\n",
      "          'film': 3,\n",
      "          'shows': 3,\n",
      "          'half': 2,\n",
      "          'saccharine': 2,\n",
      "          'n': 2,\n",
      "          'computergenerated': 2,\n",
      "          'end': 2,\n",
      "          'actually': 2,\n",
      "          '2': 2,\n",
      "          'nwhen': 2,\n",
      "          'johnson': 2,\n",
      "          'pet': 2,\n",
      "          'robot': 2,\n",
      "          'supposed': 2,\n",
      "          'nthere': 2,\n",
      "          'away': 2,\n",
      "          'much': 2,\n",
      "          'mean': 2,\n",
      "          'nalso': 2,\n",
      "          'rooting': 2,\n",
      "          'robinsons': 2,\n",
      "          'like': 2,\n",
      "          'little': 2,\n",
      "          'futuristic': 2,\n",
      "          'gary': 2,\n",
      "          'oldman': 2,\n",
      "          'though': 2,\n",
      "          'tone': 2,\n",
      "          'strong': 2,\n",
      "          'bit': 2,\n",
      "          'nthat': 2,\n",
      "          'dialogue': 2,\n",
      "          'hip': 2,\n",
      "          'better': 2,\n",
      "          'line': 2,\n",
      "          'place': 2,\n",
      "          'interest': 2,\n",
      "          'silly': 2,\n",
      "          'interesting': 2,\n",
      "          'john': 2,\n",
      "          'nstill': 2,\n",
      "          'njust': 2,\n",
      "          'quality': 2,\n",
      "          'nin': 2,\n",
      "          'rebels': 2,\n",
      "          'guys': 2,\n",
      "          'specific': 2,\n",
      "          'us': 2,\n",
      "          'year': 2,\n",
      "          'nwhy': 2,\n",
      "          'future': 2,\n",
      "          'bring': 2,\n",
      "          'chair': 2,\n",
      "          'nthis': 2,\n",
      "          'cool': 2,\n",
      "          'watching': 1,\n",
      "          'vowed': 1,\n",
      "          'subtract': 1,\n",
      "          'review': 1,\n",
      "          'filmmakers': 1,\n",
      "          'included': 1,\n",
      "          'syrup': 1,\n",
      "          'cute': 1,\n",
      "          'cuddly': 1,\n",
      "          'nif': 1,\n",
      "          'died': 1,\n",
      "          'got': 1,\n",
      "          'extra': 1,\n",
      "          'nalas': 1,\n",
      "          'showed': 1,\n",
      "          'unharmed': 1,\n",
      "          'wet': 1,\n",
      "          'sickly': 1,\n",
      "          'gagging': 1,\n",
      "          'rolling': 1,\n",
      "          'eyeballs': 1,\n",
      "          'nwhat': 1,\n",
      "          'means': 1,\n",
      "          'deserved': 1,\n",
      "          'stars': 1,\n",
      "          'nthats': 1,\n",
      "          'pretty': 1,\n",
      "          'generous': 1,\n",
      "          'considering': 1,\n",
      "          'camp': 1,\n",
      "          'lacked': 1,\n",
      "          'hint': 1,\n",
      "          'tongue': 1,\n",
      "          'cheek': 1,\n",
      "          'jack': 1,\n",
      "          'teaches': 1,\n",
      "          'friendship': 1,\n",
      "          'buy': 1,\n",
      "          'nso': 1,\n",
      "          'seemingly': 1,\n",
      "          'high': 1,\n",
      "          'rating': 1,\n",
      "          'reasons': 1,\n",
      "          'unable': 1,\n",
      "          'throw': 1,\n",
      "          'experience': 1,\n",
      "          'garbage': 1,\n",
      "          'nfirst': 1,\n",
      "          'saw': 1,\n",
      "          'opening': 1,\n",
      "          'night': 1,\n",
      "          'first': 1,\n",
      "          'day': 1,\n",
      "          'operation': 1,\n",
      "          'brand': 1,\n",
      "          'new': 1,\n",
      "          'theater': 1,\n",
      "          'screen': 1,\n",
      "          'kicked': 1,\n",
      "          'ass': 1,\n",
      "          'nnobody': 1,\n",
      "          'country': 1,\n",
      "          'enjoyed': 1,\n",
      "          'audience': 1,\n",
      "          'dont': 1,\n",
      "          'necessarily': 1,\n",
      "          'way': 1,\n",
      "          'zero': 1,\n",
      "          'scenes': 1,\n",
      "          'found': 1,\n",
      "          'getting': 1,\n",
      "          'caught': 1,\n",
      "          'tension': 1,\n",
      "          'liked': 1,\n",
      "          'settings': 1,\n",
      "          'usually': 1,\n",
      "          'prefer': 1,\n",
      "          'see': 1,\n",
      "          'models': 1,\n",
      "          'sets': 1,\n",
      "          'cg': 1,\n",
      "          'detailed': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'lot': 1,\n",
      "          'looks': 1,\n",
      "          'someone': 1,\n",
      "          'spent': 1,\n",
      "          'overtime': 1,\n",
      "          'render': 1,\n",
      "          'cities': 1,\n",
      "          'never': 1,\n",
      "          'typecast': 1,\n",
      "          'villain': 1,\n",
      "          'nwilliam': 1,\n",
      "          'hurt': 1,\n",
      "          'isnt': 1,\n",
      "          'either': 1,\n",
      "          'nneither': 1,\n",
      "          'great': 1,\n",
      "          'role': 1,\n",
      "          'performances': 1,\n",
      "          'watchable': 1,\n",
      "          'perhaps': 1,\n",
      "          'shouldnt': 1,\n",
      "          'admit': 1,\n",
      "          'something': 1,\n",
      "          'outlook': 1,\n",
      "          'brought': 1,\n",
      "          'back': 1,\n",
      "          'childhood': 1,\n",
      "          'swearing': 1,\n",
      "          'blood': 1,\n",
      "          'moral': 1,\n",
      "          'message': 1,\n",
      "          'romance': 1,\n",
      "          'whose': 1,\n",
      "          'culmination': 1,\n",
      "          'hours': 1,\n",
      "          'real': 1,\n",
      "          'kiss': 1,\n",
      "          'sex': 1,\n",
      "          'nit': 1,\n",
      "          'felt': 1,\n",
      "          'disney': 1,\n",
      "          'looked': 1,\n",
      "          'forward': 1,\n",
      "          'six': 1,\n",
      "          'nthose': 1,\n",
      "          'probably': 1,\n",
      "          'manna': 1,\n",
      "          'heaven': 1,\n",
      "          'type': 1,\n",
      "          'moviemaking': 1,\n",
      "          'art': 1,\n",
      "          'nnow': 1,\n",
      "          'news': 1,\n",
      "          'nworst': 1,\n",
      "          'unforgivable': 1,\n",
      "          'incredibly': 1,\n",
      "          'nits': 1,\n",
      "          'squeakyclean': 1,\n",
      "          'fun': 1,\n",
      "          'trying': 1,\n",
      "          'hard': 1,\n",
      "          'pulp': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'fiction': 1,\n",
      "          'hold': 1,\n",
      "          'joystick': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'deliver': 1,\n",
      "          'warp': 1,\n",
      "          'conduit': 1,\n",
      "          'thingamajigs': 1,\n",
      "          'inevitably': 1,\n",
      "          'stumble': 1,\n",
      "          'badly': 1,\n",
      "          'embarrass': 1,\n",
      "          'lowliest': 1,\n",
      "          'trek': 1,\n",
      "          'ensign': 1,\n",
      "          'nsecond': 1,\n",
      "          'worst': 1,\n",
      "          'closely': 1,\n",
      "          'related': 1,\n",
      "          'screenplay': 1,\n",
      "          'storys': 1,\n",
      "          'exposition': 1,\n",
      "          'takes': 1,\n",
      "          'press': 1,\n",
      "          'conference': 1,\n",
      "          'allows': 1,\n",
      "          'writers': 1,\n",
      "          'explain': 1,\n",
      "          'whats': 1,\n",
      "          'happening': 1,\n",
      "          'least': 1,\n",
      "          'amount': 1,\n",
      "          'creativity': 1,\n",
      "          'effort': 1,\n",
      "          'nonce': 1,\n",
      "          'story': 1,\n",
      "          'gets': 1,\n",
      "          'going': 1,\n",
      "          'concede': 1,\n",
      "          'momentary': 1,\n",
      "          'burst': 1,\n",
      "          'whole': 1,\n",
      "          'situations': 1,\n",
      "          'arise': 1,\n",
      "          'contrived': 1,\n",
      "          'easily': 1,\n",
      "          'reprograms': 1,\n",
      "          'wills': 1,\n",
      "          'kill': 1,\n",
      "          'friend': 1,\n",
      "          'summed': 1,\n",
      "          'perfectly': 1,\n",
      "          'flipped': 1,\n",
      "          'switch': 1,\n",
      "          'evil': 1,\n",
      "          'theres': 1,\n",
      "          'colorado': 1,\n",
      "          'daily': 1,\n",
      "          'said': 1,\n",
      "          'would': 1,\n",
      "          'central': 1,\n",
      "          'character': 1,\n",
      "          'father': 1,\n",
      "          'could': 1,\n",
      "          'adventure': 1,\n",
      "          'ntheyre': 1,\n",
      "          'mostly': 1,\n",
      "          'right': 1,\n",
      "          'except': 1,\n",
      "          'wasnt': 1,\n",
      "          'carry': 1,\n",
      "          'patriarch': 1,\n",
      "          'hero': 1,\n",
      "          'lack': 1,\n",
      "          'imagination': 1,\n",
      "          'tame': 1,\n",
      "          'kids': 1,\n",
      "          'doesnt': 1,\n",
      "          'bow': 1,\n",
      "          'promise': 1,\n",
      "          'keepers': 1,\n",
      "          'notion': 1,\n",
      "          'whos': 1,\n",
      "          'center': 1,\n",
      "          'nmany': 1,\n",
      "          'films': 1,\n",
      "          'nontraditional': 1,\n",
      "          'structure': 1,\n",
      "          'fly': 1,\n",
      "          'home': 1,\n",
      "          'comes': 1,\n",
      "          'mind': 1,\n",
      "          'effect': 1,\n",
      "          'politics': 1,\n",
      "          'seem': 1,\n",
      "          'conservative': 1,\n",
      "          'regressive': 1,\n",
      "          'wars': 1,\n",
      "          'nwe': 1,\n",
      "          'fighting': 1,\n",
      "          'system': 1,\n",
      "          'terrorist': 1,\n",
      "          'force': 1,\n",
      "          'must': 1,\n",
      "          'killed': 1,\n",
      "          'crushed': 1,\n",
      "          'silenced': 1,\n",
      "          'children': 1,\n",
      "          'may': 1,\n",
      "          'live': 1,\n",
      "          'free': 1,\n",
      "          'ominous': 1,\n",
      "          'excuse': 1,\n",
      "          'violence': 1,\n",
      "          'almost': 1,\n",
      "          'makes': 1,\n",
      "          'sympathize': 1,\n",
      "          'terrorists': 1,\n",
      "          'nfinally': 1,\n",
      "          'details': 1,\n",
      "          'deserve': 1,\n",
      "          'criticism': 1,\n",
      "          'tells': 1,\n",
      "          'setting': 1,\n",
      "          '2056': 1,\n",
      "          'bother': 1,\n",
      "          'saying': 1,\n",
      "          'tell': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'take': 1,\n",
      "          '1997': 1,\n",
      "          'nsetting': 1,\n",
      "          'date': 1,\n",
      "          'dates': 1,\n",
      "          'guarantees': 1,\n",
      "          'wont': 1,\n",
      "          'timeless': 1,\n",
      "          'really': 1,\n",
      "          'running': 1,\n",
      "          'anyway': 1,\n",
      "          'scene': 1,\n",
      "          'checking': 1,\n",
      "          'controls': 1,\n",
      "          'rises': 1,\n",
      "          'fifteen': 1,\n",
      "          'feet': 1,\n",
      "          'pole': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'reminded': 1,\n",
      "          'bugs': 1,\n",
      "          'bunnys': 1,\n",
      "          'barber': 1,\n",
      "          'spaceship': 1,\n",
      "          'designers': 1,\n",
      "          'havent': 1,\n",
      "          'learned': 1,\n",
      "          'thing': 1,\n",
      "          'ergonomics': 1,\n",
      "          'none': 1,\n",
      "          'vaguely': 1,\n",
      "          'redeeming': 1,\n",
      "          'credits': 1,\n",
      "          'succeed': 1,\n",
      "          'rest': 1,\n",
      "          'failed': 1,\n",
      "          'look': 1,\n",
      "          'techno': 1,\n",
      "          'beat': 1,\n",
      "          'sampled': 1,\n",
      "          'cheesiest': 1,\n",
      "          'context': 1,\n",
      "          'overlaid': 1,\n",
      "          'jumpy': 1,\n",
      "          'credit': 1,\n",
      "          'sequence': 1,\n",
      "          'distorted': 1,\n",
      "          'clips': 1,\n",
      "          'nbut': 1,\n",
      "          'thats': 1,\n",
      "          'best': 1,\n",
      "          'part': 1,\n",
      "          'cant': 1,\n",
      "          'conscience': 1,\n",
      "          'recommend': 1,\n",
      "          'get': 1,\n",
      "          'stuck': 1,\n",
      "          'seeing': 1,\n",
      "          'might': 1,\n",
      "          'able': 1,\n",
      "          'appreciate': 1,\n",
      "          'keep': 1,\n",
      "          'distance': 1,\n",
      "          'think': 1,\n",
      "          'liking': 1,\n",
      "          'child': 1,\n",
      "          'along': 1,\n",
      "          'bingo': 1,\n",
      "          'cards': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 6,\n",
      "          'movie': 5,\n",
      "          'ni': 4,\n",
      "          'shroff': 4,\n",
      "          'going': 3,\n",
      "          'jackie': 3,\n",
      "          'ram': 2,\n",
      "          'shrasta': 2,\n",
      "          'video': 2,\n",
      "          'print': 2,\n",
      "          'couldnt': 2,\n",
      "          'watching': 2,\n",
      "          'didnt': 2,\n",
      "          'three': 2,\n",
      "          'really': 2,\n",
      "          'looked': 2,\n",
      "          'nthe': 2,\n",
      "          'even': 2,\n",
      "          'like': 2,\n",
      "          'see': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'last': 1,\n",
      "          'night': 1,\n",
      "          'stopped': 1,\n",
      "          'store': 1,\n",
      "          'rent': 1,\n",
      "          'movies': 1,\n",
      "          'nluckily': 1,\n",
      "          'guy': 1,\n",
      "          'middle': 1,\n",
      "          'recording': 1,\n",
      "          'knew': 1,\n",
      "          'halffaces': 1,\n",
      "          'poor': 1,\n",
      "          'sound': 1,\n",
      "          'quality': 1,\n",
      "          'help': 1,\n",
      "          'got': 1,\n",
      "          'nwell': 1,\n",
      "          'indeed': 1,\n",
      "          'glad': 1,\n",
      "          'dish': 1,\n",
      "          '7': 1,\n",
      "          'waste': 1,\n",
      "          'hours': 1,\n",
      "          'time': 1,\n",
      "          'sitting': 1,\n",
      "          'theatre': 1,\n",
      "          'nthis': 1,\n",
      "          'sucks': 1,\n",
      "          'nit': 1,\n",
      "          'many': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'driving': 1,\n",
      "          'crazy': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'grow': 1,\n",
      "          'two': 1,\n",
      "          'feet': 1,\n",
      "          'hair': 1,\n",
      "          'four': 1,\n",
      "          'days': 1,\n",
      "          'njackie': 1,\n",
      "          'stupid': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'ponytail': 1,\n",
      "          'songs': 1,\n",
      "          'acting': 1,\n",
      "          'especially': 1,\n",
      "          'deepti': 1,\n",
      "          'bhatnagars': 1,\n",
      "          'direction': 1,\n",
      "          'worst': 1,\n",
      "          'comedy': 1,\n",
      "          'scenes': 1,\n",
      "          'jagdish': 1,\n",
      "          'johnny': 1,\n",
      "          'lever': 1,\n",
      "          'made': 1,\n",
      "          'want': 1,\n",
      "          'throw': 1,\n",
      "          'finish': 1,\n",
      "          'take': 1,\n",
      "          'anymore': 1,\n",
      "          'nnote': 1,\n",
      "          'anyone': 1,\n",
      "          'liked': 1,\n",
      "          'aatish': 1,\n",
      "          'director': 1,\n",
      "          'guess': 1,\n",
      "          'youd': 1,\n",
      "          'nits': 1,\n",
      "          'practically': 1,\n",
      "          'except': 1,\n",
      "          'sanjay': 1,\n",
      "          'dutt': 1,\n",
      "          'replaced': 1,\n",
      "          'naditya': 1,\n",
      "          'panscholi': 1,\n",
      "          'sidekick': 1,\n",
      "          'n': 1,\n",
      "          'give': 1,\n",
      "          'zero': 1,\n",
      "          'personally': 1,\n",
      "          'loosened': 1,\n",
      "          'little': 1,\n",
      "          'nhe': 1,\n",
      "          'fresh': 1,\n",
      "          'wore': 1,\n",
      "          'good': 1,\n",
      "          'clothes': 1,\n",
      "          'always': 1,\n",
      "          'performance': 1,\n",
      "          'though': 1,\n",
      "          'wasnt': 1,\n",
      "          'best': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'ni': 5,\n",
      "          'bugs': 4,\n",
      "          'weapons': 4,\n",
      "          'troopers': 3,\n",
      "          'bad': 3,\n",
      "          'line': 3,\n",
      "          'plot': 3,\n",
      "          'onto': 3,\n",
      "          'film': 3,\n",
      "          'nas': 3,\n",
      "          'one': 3,\n",
      "          'planet': 3,\n",
      "          'really': 2,\n",
      "          'blood': 2,\n",
      "          'shown': 2,\n",
      "          'screen': 2,\n",
      "          'strong': 2,\n",
      "          'physics': 2,\n",
      "          'review': 2,\n",
      "          'federation': 2,\n",
      "          'nazi': 2,\n",
      "          'go': 2,\n",
      "          'fight': 2,\n",
      "          'sound': 2,\n",
      "          'familiar': 2,\n",
      "          'recruits': 2,\n",
      "          'way': 2,\n",
      "          'burst': 2,\n",
      "          'brandishing': 2,\n",
      "          '1997': 2,\n",
      "          'group': 2,\n",
      "          'nthis': 2,\n",
      "          'course': 2,\n",
      "          'see': 2,\n",
      "          'nin': 2,\n",
      "          'scene': 2,\n",
      "          'could': 2,\n",
      "          'step': 2,\n",
      "          'starship': 1,\n",
      "          'mean': 1,\n",
      "          'nnot': 1,\n",
      "          'cross': 1,\n",
      "          'taste': 1,\n",
      "          'comes': 1,\n",
      "          'gore': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'blissfully': 1,\n",
      "          'jumps': 1,\n",
      "          'apparently': 1,\n",
      "          'unaware': 1,\n",
      "          'trailers': 1,\n",
      "          'appeal': 1,\n",
      "          'audience': 1,\n",
      "          'five': 1,\n",
      "          'fifteen': 1,\n",
      "          'year': 1,\n",
      "          'olds': 1,\n",
      "          'saw': 1,\n",
      "          'many': 1,\n",
      "          'theatre': 1,\n",
      "          'nlooking': 1,\n",
      "          'past': 1,\n",
      "          'appalling': 1,\n",
      "          'sight': 1,\n",
      "          'overdone': 1,\n",
      "          'violence': 1,\n",
      "          'left': 1,\n",
      "          'thin': 1,\n",
      "          'best': 1,\n",
      "          'lead': 1,\n",
      "          'characters': 1,\n",
      "          'blatant': 1,\n",
      "          'disregard': 1,\n",
      "          'obvious': 1,\n",
      "          'naziesque': 1,\n",
      "          'theme': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'starts': 1,\n",
      "          'propaganda': 1,\n",
      "          'message': 1,\n",
      "          'whos': 1,\n",
      "          'logo': 1,\n",
      "          'bears': 1,\n",
      "          'resemblance': 1,\n",
      "          'german': 1,\n",
      "          'eagle': 1,\n",
      "          'urging': 1,\n",
      "          'populace': 1,\n",
      "          'attempting': 1,\n",
      "          'destroy': 1,\n",
      "          'earth': 1,\n",
      "          'nthe': 1,\n",
      "          'shows': 1,\n",
      "          'large': 1,\n",
      "          'rallies': 1,\n",
      "          'young': 1,\n",
      "          'children': 1,\n",
      "          'attendance': 1,\n",
      "          'pledging': 1,\n",
      "          'allegiance': 1,\n",
      "          'progresses': 1,\n",
      "          'terror': 1,\n",
      "          'tactic': 1,\n",
      "          'training': 1,\n",
      "          'drill': 1,\n",
      "          'sargeant': 1,\n",
      "          'graphically': 1,\n",
      "          'compound': 1,\n",
      "          'fractures': 1,\n",
      "          'arm': 1,\n",
      "          'throws': 1,\n",
      "          'knife': 1,\n",
      "          'anothers': 1,\n",
      "          'hand': 1,\n",
      "          'neventually': 1,\n",
      "          'embark': 1,\n",
      "          'journey': 1,\n",
      "          'location': 1,\n",
      "          'two': 1,\n",
      "          'thirds': 1,\n",
      "          'across': 1,\n",
      "          'milky': 1,\n",
      "          'galaxy': 1,\n",
      "          'home': 1,\n",
      "          'faster': 1,\n",
      "          'light': 1,\n",
      "          'travelling': 1,\n",
      "          'heroes': 1,\n",
      "          'arrive': 1,\n",
      "          'drop': 1,\n",
      "          'craft': 1,\n",
      "          'n': 1,\n",
      "          'nyou': 1,\n",
      "          'say': 1,\n",
      "          'laser': 1,\n",
      "          'beam': 1,\n",
      "          'nsonic': 1,\n",
      "          'nphasers': 1,\n",
      "          'nphoton': 1,\n",
      "          'cannons': 1,\n",
      "          'nnope': 1,\n",
      "          'hop': 1,\n",
      "          'good': 1,\n",
      "          'old': 1,\n",
      "          'machine': 1,\n",
      "          'guns': 1,\n",
      "          'pump': 1,\n",
      "          'action': 1,\n",
      "          'rifles': 1,\n",
      "          'tactical': 1,\n",
      "          'nuclear': 1,\n",
      "          'guess': 1,\n",
      "          'lot': 1,\n",
      "          'money': 1,\n",
      "          'rd': 1,\n",
      "          'went': 1,\n",
      "          'travel': 1,\n",
      "          'weaponry': 1,\n",
      "          'assault': 1,\n",
      "          'begins': 1,\n",
      "          'seen': 1,\n",
      "          'walking': 1,\n",
      "          'straight': 1,\n",
      "          'box': 1,\n",
      "          'canyon': 1,\n",
      "          'ntwo': 1,\n",
      "          'members': 1,\n",
      "          'notice': 1,\n",
      "          'rocks': 1,\n",
      "          'slipping': 1,\n",
      "          'falling': 1,\n",
      "          'even': 1,\n",
      "          'sees': 1,\n",
      "          'streak': 1,\n",
      "          'fly': 1,\n",
      "          'disregards': 1,\n",
      "          'nothing': 1,\n",
      "          'leads': 1,\n",
      "          'massive': 1,\n",
      "          'carnage': 1,\n",
      "          'shed': 1,\n",
      "          'graphic': 1,\n",
      "          'depictions': 1,\n",
      "          'limbs': 1,\n",
      "          'heads': 1,\n",
      "          'ripped': 1,\n",
      "          'severed': 1,\n",
      "          'bodies': 1,\n",
      "          'nagain': 1,\n",
      "          'military': 1,\n",
      "          'tactics': 1,\n",
      "          'future': 1,\n",
      "          'must': 1,\n",
      "          'evolved': 1,\n",
      "          'pace': 1,\n",
      "          'end': 1,\n",
      "          'neil': 1,\n",
      "          'patrick': 1,\n",
      "          'doogie': 1,\n",
      "          'howser': 1,\n",
      "          'harris': 1,\n",
      "          'accurately': 1,\n",
      "          'described': 1,\n",
      "          'ss': 1,\n",
      "          'trenchcoat': 1,\n",
      "          'hat': 1,\n",
      "          'gloves': 1,\n",
      "          'nhe': 1,\n",
      "          'vulcan': 1,\n",
      "          'mind': 1,\n",
      "          'meld': 1,\n",
      "          'giant': 1,\n",
      "          'slug': 1,\n",
      "          'proclaims': 1,\n",
      "          'scared': 1,\n",
      "          'sets': 1,\n",
      "          'frenzy': 1,\n",
      "          'closer': 1,\n",
      "          'completing': 1,\n",
      "          'goal': 1,\n",
      "          'total': 1,\n",
      "          'genocide': 1,\n",
      "          'species': 1,\n",
      "          'tried': 1,\n",
      "          'hard': 1,\n",
      "          'spoil': 1,\n",
      "          'given': 1,\n",
      "          'nonexistence': 1,\n",
      "          'may': 1,\n",
      "          'anyway': 1,\n",
      "          'pages': 1,\n",
      "          'ripping': 1,\n",
      "          'apart': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'bore': 1,\n",
      "          'badly': 1,\n",
      "          'short': 1,\n",
      "          'felt': 1,\n",
      "          'subjected': 1,\n",
      "          'mix': 1,\n",
      "          'pronazi': 1,\n",
      "          'war': 1,\n",
      "          'substituted': 1,\n",
      "          'allies': 1,\n",
      "          'drivers': 1,\n",
      "          'education': 1,\n",
      "          'accident': 1,\n",
      "          'complete': 1,\n",
      "          'blank': 1,\n",
      "          'wouldnt': 1,\n",
      "          'recommend': 1,\n",
      "          'anyone': 1,\n",
      "          'anywhere': 1,\n",
      "          'circumstance': 1,\n",
      "          'ncopyright': 1,\n",
      "          'c': 1,\n",
      "          'tim': 1,\n",
      "          'jandt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'lambert': 6,\n",
      "          'movie': 6,\n",
      "          'one': 5,\n",
      "          'movies': 4,\n",
      "          'could': 4,\n",
      "          'good': 4,\n",
      "          'scene': 4,\n",
      "          'nthe': 3,\n",
      "          'hunted': 3,\n",
      "          'bad': 3,\n",
      "          'getting': 3,\n",
      "          'ninja': 3,\n",
      "          'real': 3,\n",
      "          'characters': 3,\n",
      "          'ten': 2,\n",
      "          'nchristopher': 2,\n",
      "          'evil': 2,\n",
      "          'modernday': 2,\n",
      "          'japan': 2,\n",
      "          'almost': 2,\n",
      "          'ni': 2,\n",
      "          'insulting': 2,\n",
      "          'business': 2,\n",
      "          'manages': 2,\n",
      "          'witness': 2,\n",
      "          'course': 2,\n",
      "          'nin': 2,\n",
      "          'goof': 2,\n",
      "          'field': 2,\n",
      "          'know': 2,\n",
      "          'nthis': 2,\n",
      "          'samurai': 2,\n",
      "          'two': 2,\n",
      "          'even': 2,\n",
      "          'guy': 2,\n",
      "          'get': 2,\n",
      "          'whole': 2,\n",
      "          'thing': 2,\n",
      "          'key': 2,\n",
      "          'somewhere': 2,\n",
      "          'interesting': 2,\n",
      "          'capsule': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'vs': 1,\n",
      "          'ninjas': 1,\n",
      "          'nand': 1,\n",
      "          'nobody': 1,\n",
      "          'wins': 1,\n",
      "          'completely': 1,\n",
      "          'inept': 1,\n",
      "          'totally': 1,\n",
      "          'braindamaged': 1,\n",
      "          'feel': 1,\n",
      "          'affection': 1,\n",
      "          'see': 1,\n",
      "          'showing': 1,\n",
      "          'friends': 1,\n",
      "          'jolly': 1,\n",
      "          'guffaw': 1,\n",
      "          'werent': 1,\n",
      "          'also': 1,\n",
      "          'insanely': 1,\n",
      "          'xenophobic': 1,\n",
      "          'plays': 1,\n",
      "          'computerparts': 1,\n",
      "          'salesman': 1,\n",
      "          'whos': 1,\n",
      "          'nhe': 1,\n",
      "          'meets': 1,\n",
      "          'slinky': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'joan': 1,\n",
      "          'chen': 1,\n",
      "          'torrid': 1,\n",
      "          'night': 1,\n",
      "          'lovemaking': 1,\n",
      "          'death': 1,\n",
      "          'hands': 1,\n",
      "          'clan': 1,\n",
      "          'leader': 1,\n",
      "          'john': 1,\n",
      "          'lone': 1,\n",
      "          'napparently': 1,\n",
      "          'unfinished': 1,\n",
      "          'concluded': 1,\n",
      "          'slaughtered': 1,\n",
      "          'nsince': 1,\n",
      "          'hes': 1,\n",
      "          'next': 1,\n",
      "          'die': 1,\n",
      "          'nlets': 1,\n",
      "          'stop': 1,\n",
      "          'think': 1,\n",
      "          'second': 1,\n",
      "          'nif': 1,\n",
      "          'life': 1,\n",
      "          'chased': 1,\n",
      "          'fanatical': 1,\n",
      "          'devotees': 1,\n",
      "          'secret': 1,\n",
      "          'society': 1,\n",
      "          'hed': 1,\n",
      "          'lifespan': 1,\n",
      "          'measure': 1,\n",
      "          'atomic': 1,\n",
      "          'clock': 1,\n",
      "          'manage': 1,\n",
      "          'kill': 1,\n",
      "          'everyone': 1,\n",
      "          'except': 1,\n",
      "          'imagine': 1,\n",
      "          'japanese': 1,\n",
      "          'gods': 1,\n",
      "          'smiled': 1,\n",
      "          'provided': 1,\n",
      "          'radiates': 1,\n",
      "          'feet': 1,\n",
      "          'body': 1,\n",
      "          'nyou': 1,\n",
      "          'invisible': 1,\n",
      "          'zone': 1,\n",
      "          'anyone': 1,\n",
      "          'intent': 1,\n",
      "          'harm': 1,\n",
      "          'becomes': 1,\n",
      "          'klutz': 1,\n",
      "          'matter': 1,\n",
      "          'dexterity': 1,\n",
      "          'beginning': 1,\n",
      "          'problems': 1,\n",
      "          'nlambert': 1,\n",
      "          'eventually': 1,\n",
      "          'finds': 1,\n",
      "          'pseudosafety': 1,\n",
      "          'longhaired': 1,\n",
      "          'yoshio': 1,\n",
      "          'harada': 1,\n",
      "          'partner': 1,\n",
      "          'yoko': 1,\n",
      "          'shimada': 1,\n",
      "          'may': 1,\n",
      "          'remember': 1,\n",
      "          'lady': 1,\n",
      "          'toda': 1,\n",
      "          'buntaro': 1,\n",
      "          'shogun': 1,\n",
      "          'nthey': 1,\n",
      "          'best': 1,\n",
      "          'things': 1,\n",
      "          'every': 1,\n",
      "          'authority': 1,\n",
      "          'presence': 1,\n",
      "          'actually': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'belong': 1,\n",
      "          'dressed': 1,\n",
      "          'full': 1,\n",
      "          'armor': 1,\n",
      "          'wielding': 1,\n",
      "          'bows': 1,\n",
      "          'script': 1,\n",
      "          'doesnt': 1,\n",
      "          'hell': 1,\n",
      "          'nlone': 1,\n",
      "          'zerodimensional': 1,\n",
      "          'badguy': 1,\n",
      "          'cliche': 1,\n",
      "          'wallow': 1,\n",
      "          'around': 1,\n",
      "          'always': 1,\n",
      "          'exotic': 1,\n",
      "          'women': 1,\n",
      "          'dripping': 1,\n",
      "          'elevated': 1,\n",
      "          'level': 1,\n",
      "          'stereotype': 1,\n",
      "          'nwhats': 1,\n",
      "          'funny': 1,\n",
      "          'peripheral': 1,\n",
      "          'sterotypes': 1,\n",
      "          'theres': 1,\n",
      "          'nice': 1,\n",
      "          'little': 1,\n",
      "          'tokyo': 1,\n",
      "          'cabdriver': 1,\n",
      "          'girl': 1,\n",
      "          'pachinko': 1,\n",
      "          'parlor': 1,\n",
      "          'many': 1,\n",
      "          'main': 1,\n",
      "          'unsalveageably': 1,\n",
      "          'hateful': 1,\n",
      "          'nalso': 1,\n",
      "          'phenomenal': 1,\n",
      "          'instrumental': 1,\n",
      "          'troupe': 1,\n",
      "          'kodo': 1,\n",
      "          'assembled': 1,\n",
      "          'superior': 1,\n",
      "          'soundtrack': 1,\n",
      "          'cd': 1,\n",
      "          'survive': 1,\n",
      "          'despite': 1,\n",
      "          'drek': 1,\n",
      "          'designed': 1,\n",
      "          'accompany': 1,\n",
      "          'nthere': 1,\n",
      "          'extended': 1,\n",
      "          'battle': 1,\n",
      "          'middle': 1,\n",
      "          'reason': 1,\n",
      "          'enough': 1,\n",
      "          'watch': 1,\n",
      "          'gory': 1,\n",
      "          'excellently': 1,\n",
      "          'staged': 1,\n",
      "          'fight': 1,\n",
      "          'bullet': 1,\n",
      "          'train': 1,\n",
      "          'shows': 1,\n",
      "          'imagination': 1,\n",
      "          'moment': 1,\n",
      "          'smothers': 1,\n",
      "          'trying': 1,\n",
      "          'clumsily': 1,\n",
      "          'recouple': 1,\n",
      "          'relentlessly': 1,\n",
      "          'stupid': 1,\n",
      "          'plot': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'final': 1,\n",
      "          'showdown': 1,\n",
      "          'wield': 1,\n",
      "          'sword': 1,\n",
      "          'judging': 1,\n",
      "          'hamhanded': 1,\n",
      "          'editing': 1,\n",
      "          'forged': 1,\n",
      "          'seven': 1,\n",
      "          'hours': 1,\n",
      "          'longer': 1,\n",
      "          'care': 1,\n",
      "          'nwere': 1,\n",
      "          'given': 1,\n",
      "          'definitive': 1,\n",
      "          'information': 1,\n",
      "          'whether': 1,\n",
      "          'lives': 1,\n",
      "          'dies': 1,\n",
      "          'nsomeone': 1,\n",
      "          'said': 1,\n",
      "          'art': 1,\n",
      "          'books': 1,\n",
      "          'whatever': 1,\n",
      "          'start': 1,\n",
      "          'end': 1,\n",
      "          'show': 1,\n",
      "          'respect': 1,\n",
      "          'audience': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'bungles': 1,\n",
      "          'three': 1,\n",
      "          'badly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nand': 9,\n",
      "          'film': 4,\n",
      "          'capital': 4,\n",
      "          'nit': 4,\n",
      "          'action': 4,\n",
      "          'must': 4,\n",
      "          'n': 4,\n",
      "          'narmageddon': 3,\n",
      "          'oneliners': 3,\n",
      "          'steve': 3,\n",
      "          'buscemi': 3,\n",
      "          'kids': 2,\n",
      "          'take': 2,\n",
      "          '_armageddon_': 2,\n",
      "          'right': 2,\n",
      "          'c': 2,\n",
      "          'bruce': 2,\n",
      "          'willis': 2,\n",
      "          'new': 2,\n",
      "          'chuckle': 2,\n",
      "          'one': 2,\n",
      "          'sniff': 2,\n",
      "          'funny': 2,\n",
      "          'also': 2,\n",
      "          'r': 2,\n",
      "          'sequence': 2,\n",
      "          'drill': 2,\n",
      "          'people': 2,\n",
      "          'p': 2,\n",
      "          'hand': 2,\n",
      "          'final': 2,\n",
      "          'cheer': 2,\n",
      "          'mean': 2,\n",
      "          'could': 2,\n",
      "          'sets': 2,\n",
      "          'malloy': 2,\n",
      "          'shocking': 2,\n",
      "          'cost': 2,\n",
      "          'hello': 1,\n",
      "          'ntoday': 1,\n",
      "          'movie': 1,\n",
      "          'studios': 1,\n",
      "          'want': 1,\n",
      "          'critical': 1,\n",
      "          'review': 1,\n",
      "          'somehow': 1,\n",
      "          'persuade': 1,\n",
      "          'summers': 1,\n",
      "          'biggest': 1,\n",
      "          'blockbuster': 1,\n",
      "          'everybody': 1,\n",
      "          'remember': 1,\n",
      "          '_everybody_': 1,\n",
      "          'makes': 1,\n",
      "          'money': 1,\n",
      "          'summer': 1,\n",
      "          '_must_': 1,\n",
      "          'good': 1,\n",
      "          'comedy': 1,\n",
      "          'stars': 1,\n",
      "          'hundred': 1,\n",
      "          'tiny': 1,\n",
      "          'rock': 1,\n",
      "          'land': 1,\n",
      "          'directly': 1,\n",
      "          'middle': 1,\n",
      "          'heated': 1,\n",
      "          'argument': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'yorkers': 1,\n",
      "          '_survives_': 1,\n",
      "          'charcoal': 1,\n",
      "          'face': 1,\n",
      "          'nsnorkle': 1,\n",
      "          'hiccup': 1,\n",
      "          '_genius_': 1,\n",
      "          'wants': 1,\n",
      "          'work': 1,\n",
      "          'oil': 1,\n",
      "          'rig': 1,\n",
      "          'nkneeslap': 1,\n",
      "          'nisnt': 1,\n",
      "          'romance': 1,\n",
      "          'tender': 1,\n",
      "          'moment': 1,\n",
      "          'forbidden': 1,\n",
      "          'lovers': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'liv': 1,\n",
      "          'tyler': 1,\n",
      "          'animal': 1,\n",
      "          'crackers': 1,\n",
      "          'patton': 1,\n",
      "          'long': 1,\n",
      "          'lost': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'husband': 1,\n",
      "          'trying': 1,\n",
      "          'reunite': 1,\n",
      "          'separated': 1,\n",
      "          'wife': 1,\n",
      "          'child': 1,\n",
      "          'thinks': 1,\n",
      "          'hes': 1,\n",
      "          'salesman': 1,\n",
      "          'ngurgle': 1,\n",
      "          'awwwww': 1,\n",
      "          'spewing': 1,\n",
      "          'minors': 1,\n",
      "          'strippers': 1,\n",
      "          'numm': 1,\n",
      "          'moving': 1,\n",
      "          'along': 1,\n",
      "          'lots': 1,\n",
      "          'nnot': 1,\n",
      "          'would': 1,\n",
      "          '_original_': 1,\n",
      "          'sequences': 1,\n",
      "          'designed': 1,\n",
      "          'thrill': 1,\n",
      "          'nlike': 1,\n",
      "          'darn': 1,\n",
      "          'lets': 1,\n",
      "          'inept': 1,\n",
      "          'destroy': 1,\n",
      "          'mir': 1,\n",
      "          'space': 1,\n",
      "          'station': 1,\n",
      "          'ncant': 1,\n",
      "          'hear': 1,\n",
      "          'heart': 1,\n",
      "          'beating': 1,\n",
      "          'goes': 1,\n",
      "          'crazy': 1,\n",
      "          'starts': 1,\n",
      "          'shooting': 1,\n",
      "          'nwhat': 1,\n",
      "          'drama': 1,\n",
      "          'nlastly': 1,\n",
      "          'armageddon': 1,\n",
      "          'save': 1,\n",
      "          'planet': 1,\n",
      "          'nthis': 1,\n",
      "          'cant': 1,\n",
      "          'old': 1,\n",
      "          'thrillerwe': 1,\n",
      "          'asteroid': 1,\n",
      "          'size': 1,\n",
      "          'texas': 1,\n",
      "          'head': 1,\n",
      "          'straight': 1,\n",
      "          'earth': 1,\n",
      "          'beautiful': 1,\n",
      "          'scenic': 1,\n",
      "          'worldwide': 1,\n",
      "          'shots': 1,\n",
      "          'like': 1,\n",
      "          'paris': 1,\n",
      "          'blown': 1,\n",
      "          'peoples': 1,\n",
      "          'colors': 1,\n",
      "          'nations': 1,\n",
      "          'religions': 1,\n",
      "          'join': 1,\n",
      "          'hopeful': 1,\n",
      "          'hug': 1,\n",
      "          'nthe': 1,\n",
      "          'muslims': 1,\n",
      "          'prostrate': 1,\n",
      "          'worship': 1,\n",
      "          'stand': 1,\n",
      "          'upin': 1,\n",
      "          'domino': 1,\n",
      "          'fashionto': 1,\n",
      "          'victory': 1,\n",
      "          'filled': 1,\n",
      "          'emotional': 1,\n",
      "          'goo': 1,\n",
      "          'wanted': 1,\n",
      "          'rip': 1,\n",
      "          'screen': 1,\n",
      "          'shreds': 1,\n",
      "          'ni': 1,\n",
      "          'ecstatic': 1,\n",
      "          'joy': 1,\n",
      "          'ncomedy': 1,\n",
      "          'nromance': 1,\n",
      "          'naction': 1,\n",
      "          'nplanet': 1,\n",
      "          'nokay': 1,\n",
      "          'spell': 1,\n",
      "          'nseriously': 1,\n",
      "          'folks': 1,\n",
      "          'nany': 1,\n",
      "          'indiefilms': 1,\n",
      "          'valuable': 1,\n",
      "          'talents': 1,\n",
      "          'throw': 1,\n",
      "          'away': 1,\n",
      "          'vehicle': 1,\n",
      "          'hundredmillion': 1,\n",
      "          'dollar': 1,\n",
      "          'budget': 1,\n",
      "          'cheapo': 1,\n",
      "          'lousy': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'living': 1,\n",
      "          'proof': 1,\n",
      "          'hell': 1,\n",
      "          'exists': 1,\n",
      "          'made': 1,\n",
      "          'multipicture': 1,\n",
      "          'deal': 1,\n",
      "          'universal': 1,\n",
      "          'nin': 1,\n",
      "          'midst': 1,\n",
      "          'terseness': 1,\n",
      "          'fake': 1,\n",
      "          'overall': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'recognized': 1,\n",
      "          'matt': 1,\n",
      "          'playing': 1,\n",
      "          'underwritten': 1,\n",
      "          'nasa': 1,\n",
      "          'technician': 1,\n",
      "          'give': 1,\n",
      "          'reading': 1,\n",
      "          'nremember': 1,\n",
      "          'nhe': 1,\n",
      "          'principal': 1,\n",
      "          'player': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          '_in': 1,\n",
      "          'company': 1,\n",
      "          'men_': 1,\n",
      "          'powerful': 1,\n",
      "          'terrifying': 1,\n",
      "          'ever': 1,\n",
      "          'aspire': 1,\n",
      "          'n_armageddon_': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'make': 1,\n",
      "          'n_itcom_': 1,\n",
      "          'paltry': 1,\n",
      "          '30': 1,\n",
      "          '000': 1,\n",
      "          'nneed': 1,\n",
      "          'say': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'costner': 3,\n",
      "          'movie': 2,\n",
      "          'hour': 2,\n",
      "          'new': 2,\n",
      "          'deserves': 1,\n",
      "          'recognition': 1,\n",
      "          'achieving': 1,\n",
      "          'nearimpossible': 1,\n",
      "          'task': 1,\n",
      "          'making': 1,\n",
      "          'grander': 1,\n",
      "          'monument': 1,\n",
      "          'selflove': 1,\n",
      "          'steven': 1,\n",
      "          'seagals': 1,\n",
      "          'deadly': 1,\n",
      "          'ground': 1,\n",
      "          'ncapsule': 1,\n",
      "          'review': 1,\n",
      "          'question': 1,\n",
      "          'floating': 1,\n",
      "          'baby': 1,\n",
      "          'ruth': 1,\n",
      "          'waterworld': 1,\n",
      "          'hollywood': 1,\n",
      "          'execs': 1,\n",
      "          'gave': 1,\n",
      "          'kevin': 1,\n",
      "          'money': 1,\n",
      "          'make': 1,\n",
      "          'another': 1,\n",
      "          'postapocalyptic': 1,\n",
      "          'thinking': 1,\n",
      "          'nin': 1,\n",
      "          '3': 1,\n",
      "          'advertisement': 1,\n",
      "          'hair': 1,\n",
      "          'weave': 1,\n",
      "          'plays': 1,\n",
      "          'nameless': 1,\n",
      "          'drifter': 1,\n",
      "          'dons': 1,\n",
      "          'long': 1,\n",
      "          'dead': 1,\n",
      "          'postal': 1,\n",
      "          'employees': 1,\n",
      "          'uniform': 1,\n",
      "          'gradually': 1,\n",
      "          'turns': 1,\n",
      "          'nukedout': 1,\n",
      "          'usa': 1,\n",
      "          'idealized': 1,\n",
      "          'hippydippy': 1,\n",
      "          'society': 1,\n",
      "          'n': 1,\n",
      "          'judging': 1,\n",
      "          'costuming': 1,\n",
      "          'end': 1,\n",
      "          'main': 1,\n",
      "          'accomplishment': 1,\n",
      "          'brave': 1,\n",
      "          'world': 1,\n",
      "          'reinventing': 1,\n",
      "          'polyester': 1,\n",
      "          'nwhen': 1,\n",
      "          'hes': 1,\n",
      "          'pointing': 1,\n",
      "          'camera': 1,\n",
      "          'directly': 1,\n",
      "          'director': 1,\n",
      "          'nice': 1,\n",
      "          'visual': 1,\n",
      "          'sense': 1,\n",
      "          'undeniably': 1,\n",
      "          'fascinating': 1,\n",
      "          'see': 1,\n",
      "          'unabashedly': 1,\n",
      "          'jingoistic': 1,\n",
      "          'film': 1,\n",
      "          'trustnoone': 1,\n",
      "          '90s': 1,\n",
      "          'time': 1,\n",
      "          'second': 1,\n",
      "          'rolled': 1,\n",
      "          'around': 1,\n",
      "          'reduced': 1,\n",
      "          'sitting': 1,\n",
      "          'hands': 1,\n",
      "          'keep': 1,\n",
      "          'clawing': 1,\n",
      "          'eyes': 1,\n",
      "          'nmark': 1,\n",
      "          'one': 1,\n",
      "          'return': 1,\n",
      "          'sender': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'stahl': 12,\n",
      "          'stiller': 8,\n",
      "          'midnight': 5,\n",
      "          'hurley': 4,\n",
      "          'movie': 4,\n",
      "          'veloz': 3,\n",
      "          'film': 3,\n",
      "          'drug': 3,\n",
      "          'habit': 3,\n",
      "          'bello': 2,\n",
      "          'david': 2,\n",
      "          'based': 2,\n",
      "          'jerry': 2,\n",
      "          'npermanent': 2,\n",
      "          'character': 2,\n",
      "          'n': 2,\n",
      "          'week': 2,\n",
      "          'one': 2,\n",
      "          'less': 2,\n",
      "          'chompers': 2,\n",
      "          'alf': 2,\n",
      "          'like': 2,\n",
      "          'hes': 2,\n",
      "          'heroin': 2,\n",
      "          'mostly': 2,\n",
      "          'life': 2,\n",
      "          'story': 2,\n",
      "          'trying': 2,\n",
      "          'figure': 2,\n",
      "          'find': 2,\n",
      "          'hollywood': 2,\n",
      "          'seems': 2,\n",
      "          'book': 2,\n",
      "          'nwatch': 2,\n",
      "          'could': 2,\n",
      "          'permanent': 2,\n",
      "          'basically': 2,\n",
      "          'person': 2,\n",
      "          'nso': 2,\n",
      "          'starring': 1,\n",
      "          'ben': 1,\n",
      "          'elizabeth': 1,\n",
      "          'maria': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'screenplay': 1,\n",
      "          'novel': 1,\n",
      "          'directed': 1,\n",
      "          'pretty': 1,\n",
      "          'bad': 1,\n",
      "          'though': 1,\n",
      "          'took': 1,\n",
      "          'days': 1,\n",
      "          'conclude': 1,\n",
      "          'nthe': 1,\n",
      "          'masturbatory': 1,\n",
      "          'bleak': 1,\n",
      "          'main': 1,\n",
      "          'intent': 1,\n",
      "          'confounding': 1,\n",
      "          'us': 1,\n",
      "          'stupidity': 1,\n",
      "          '6000': 1,\n",
      "          'nultimately': 1,\n",
      "          'adapted': 1,\n",
      "          'comes': 1,\n",
      "          'playground': 1,\n",
      "          'braggarts': 1,\n",
      "          'chainsmokes': 1,\n",
      "          'age': 1,\n",
      "          'twelve': 1,\n",
      "          'mystified': 1,\n",
      "          'selfdestructive': 1,\n",
      "          'nature': 1,\n",
      "          'bored': 1,\n",
      "          'stupor': 1,\n",
      "          'nben': 1,\n",
      "          'plays': 1,\n",
      "          'young': 1,\n",
      "          'author': 1,\n",
      "          'arrives': 1,\n",
      "          'l': 1,\n",
      "          'ambition': 1,\n",
      "          'nasty': 1,\n",
      "          'nhe': 1,\n",
      "          'eventually': 1,\n",
      "          'gets': 1,\n",
      "          'gig': 1,\n",
      "          '5000week': 1,\n",
      "          'writing': 1,\n",
      "          'sitcom': 1,\n",
      "          'called': 1,\n",
      "          'mr': 1,\n",
      "          'thinly': 1,\n",
      "          'veiled': 1,\n",
      "          'standin': 1,\n",
      "          'looks': 1,\n",
      "          'except': 1,\n",
      "          'blue': 1,\n",
      "          'marries': 1,\n",
      "          'producer': 1,\n",
      "          'get': 1,\n",
      "          'green': 1,\n",
      "          'card': 1,\n",
      "          'hooks': 1,\n",
      "          'spanish': 1,\n",
      "          'mother': 1,\n",
      "          'liz': 1,\n",
      "          'torres': 1,\n",
      "          'shoots': 1,\n",
      "          'afternoons': 1,\n",
      "          'ninsert': 1,\n",
      "          'proverbial': 1,\n",
      "          'downward': 1,\n",
      "          'spiral': 1,\n",
      "          'structured': 1,\n",
      "          'flashback': 1,\n",
      "          'recovering': 1,\n",
      "          'addict': 1,\n",
      "          'meeting': 1,\n",
      "          'fastfood': 1,\n",
      "          'restaurant': 1,\n",
      "          'works': 1,\n",
      "          'drivethru': 1,\n",
      "          'part': 1,\n",
      "          'rehab': 1,\n",
      "          'taking': 1,\n",
      "          'back': 1,\n",
      "          'hotel': 1,\n",
      "          'bouts': 1,\n",
      "          'serious': 1,\n",
      "          'screwing': 1,\n",
      "          'listening': 1,\n",
      "          'nive': 1,\n",
      "          'spent': 1,\n",
      "          'last': 1,\n",
      "          'never': 1,\n",
      "          'seemed': 1,\n",
      "          'frighteningly': 1,\n",
      "          'gorgeous': 1,\n",
      "          'attractiveworse': 1,\n",
      "          'ive': 1,\n",
      "          'attractive': 1,\n",
      "          'nas': 1,\n",
      "          'displays': 1,\n",
      "          'none': 1,\n",
      "          'charm': 1,\n",
      "          'wit': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'posttheres': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'either': 1,\n",
      "          'actor': 1,\n",
      "          'comedy': 1,\n",
      "          'writer': 1,\n",
      "          'nwhat': 1,\n",
      "          'separates': 1,\n",
      "          'hundreds': 1,\n",
      "          'punkjunkies': 1,\n",
      "          'wrote': 1,\n",
      "          'idiocy': 1,\n",
      "          'shoot': 1,\n",
      "          'next': 1,\n",
      "          'baby': 1,\n",
      "          'spoil': 1,\n",
      "          'numerous': 1,\n",
      "          'pitch': 1,\n",
      "          'meetings': 1,\n",
      "          'smackfueled': 1,\n",
      "          'babble': 1,\n",
      "          'nstiller': 1,\n",
      "          'gives': 1,\n",
      "          'technically': 1,\n",
      "          'flawless': 1,\n",
      "          'performance': 1,\n",
      "          'double': 1,\n",
      "          'documentary': 1,\n",
      "          'junkie': 1,\n",
      "          'nbut': 1,\n",
      "          'soulless': 1,\n",
      "          'nwhen': 1,\n",
      "          'poses': 1,\n",
      "          'question': 1,\n",
      "          'saved': 1,\n",
      "          'nand': 1,\n",
      "          'answers': 1,\n",
      "          'form': 1,\n",
      "          'bellos': 1,\n",
      "          'shrink': 1,\n",
      "          'black': 1,\n",
      "          'panties': 1,\n",
      "          'care': 1,\n",
      "          'nin': 1,\n",
      "          'version': 1,\n",
      "          'autobiography': 1,\n",
      "          'name': 1,\n",
      "          'doesnt': 1,\n",
      "          'need': 1,\n",
      "          'saving': 1,\n",
      "          'needs': 1,\n",
      "          'someone': 1,\n",
      "          'sit': 1,\n",
      "          'listen': 1,\n",
      "          'go': 1,\n",
      "          'nif': 1,\n",
      "          'learn': 1,\n",
      "          'anything': 1,\n",
      "          'characters': 1,\n",
      "          'incredibly': 1,\n",
      "          'tolerant': 1,\n",
      "          'hollywoodtypes': 1,\n",
      "          'known': 1,\n",
      "          'man': 1,\n",
      "          'also': 1,\n",
      "          'schmooze': 1,\n",
      "          'parties': 1,\n",
      "          'drugs': 1,\n",
      "          'nis': 1,\n",
      "          'california': 1,\n",
      "          'ni': 1,\n",
      "          'learned': 1,\n",
      "          'little': 1,\n",
      "          'entertainment': 1,\n",
      "          'business': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'egotistical': 1,\n",
      "          'lunkhead': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'know': 1,\n",
      "          'triumphed': 1,\n",
      "          'lived': 1,\n",
      "          'talk': 1,\n",
      "          'problems': 1,\n",
      "          'got': 1,\n",
      "          'deal': 1,\n",
      "          'apparently': 1,\n",
      "          'collaborating': 1,\n",
      "          'future': 1,\n",
      "          'projects': 1,\n",
      "          'much': 1,\n",
      "          'moral': 1,\n",
      "          'ntemporary': 1,\n",
      "          'nbill': 1,\n",
      "          'chambers': 1,\n",
      "          'september': 1,\n",
      "          '1998': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nit': 6,\n",
      "          'nthe': 6,\n",
      "          'eerie': 5,\n",
      "          'four': 5,\n",
      "          'thunderous': 4,\n",
      "          'sound': 4,\n",
      "          'effect': 4,\n",
      "          'sounding': 4,\n",
      "          'musical': 4,\n",
      "          'pulse': 4,\n",
      "          'characters': 4,\n",
      "          'movie': 4,\n",
      "          'could': 4,\n",
      "          'camera': 3,\n",
      "          'zooms': 3,\n",
      "          'incredibly': 3,\n",
      "          'close': 3,\n",
      "          'focuses': 3,\n",
      "          'killer': 3,\n",
      "          'teens': 3,\n",
      "          'nall': 2,\n",
      "          'sudden': 2,\n",
      "          'open': 2,\n",
      "          'one': 2,\n",
      "          'whats': 2,\n",
      "          'seemed': 2,\n",
      "          'youre': 2,\n",
      "          'goes': 2,\n",
      "          'killed': 2,\n",
      "          'friends': 2,\n",
      "          'summer': 2,\n",
      "          'someone': 2,\n",
      "          'year': 2,\n",
      "          'change': 2,\n",
      "          'begins': 2,\n",
      "          'know': 2,\n",
      "          'figure': 2,\n",
      "          'rubber': 2,\n",
      "          'nits': 2,\n",
      "          'much': 2,\n",
      "          'extreme': 2,\n",
      "          'suspense': 2,\n",
      "          'us': 2,\n",
      "          'aspect': 2,\n",
      "          'film': 2,\n",
      "          'see': 2,\n",
      "          'hello': 2,\n",
      "          'costume': 2,\n",
      "          'closed': 1,\n",
      "          'eyes': 1,\n",
      "          'person': 1,\n",
      "          'presumed': 1,\n",
      "          'dead': 1,\n",
      "          'eyelids': 1,\n",
      "          'desperately': 1,\n",
      "          'running': 1,\n",
      "          'life': 1,\n",
      "          'nthen': 1,\n",
      "          'bumps': 1,\n",
      "          'door': 1,\n",
      "          'seemingly': 1,\n",
      "          'strange': 1,\n",
      "          'sounds': 1,\n",
      "          'emanate': 1,\n",
      "          'doors': 1,\n",
      "          'swing': 1,\n",
      "          'reveal': 1,\n",
      "          'inside': 1,\n",
      "          'ncloseup': 1,\n",
      "          'thrillshots': 1,\n",
      "          'elicit': 1,\n",
      "          'laughter': 1,\n",
      "          'audience': 1,\n",
      "          'rather': 1,\n",
      "          'genuine': 1,\n",
      "          'fear': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'sign': 1,\n",
      "          'watching': 1,\n",
      "          'thriller': 1,\n",
      "          'director': 1,\n",
      "          'originally': 1,\n",
      "          'envisioned': 1,\n",
      "          'nrather': 1,\n",
      "          'adopt': 1,\n",
      "          'opinion': 1,\n",
      "          'goofy': 1,\n",
      "          'unaware': 1,\n",
      "          'trouble': 1,\n",
      "          'theyre': 1,\n",
      "          'stop': 1,\n",
      "          'caring': 1,\n",
      "          'lives': 1,\n",
      "          'dies': 1,\n",
      "          'story': 1,\n",
      "          'ninstead': 1,\n",
      "          'become': 1,\n",
      "          'interested': 1,\n",
      "          'get': 1,\n",
      "          'young': 1,\n",
      "          'teenagers': 1,\n",
      "          'potential': 1,\n",
      "          'sacrificial': 1,\n",
      "          'lambs': 1,\n",
      "          'helen': 1,\n",
      "          'barry': 1,\n",
      "          'julie': 1,\n",
      "          'ray': 1,\n",
      "          'two': 1,\n",
      "          'couples': 1,\n",
      "          'dear': 1,\n",
      "          'another': 1,\n",
      "          'nduring': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'graduation': 1,\n",
      "          'take': 1,\n",
      "          'fateful': 1,\n",
      "          'drive': 1,\n",
      "          'dark': 1,\n",
      "          'mountain': 1,\n",
      "          'highway': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'without': 1,\n",
      "          'warning': 1,\n",
      "          'car': 1,\n",
      "          'hits': 1,\n",
      "          'presume': 1,\n",
      "          'result': 1,\n",
      "          'collision': 1,\n",
      "          'nfearing': 1,\n",
      "          'jail': 1,\n",
      "          'time': 1,\n",
      "          'possible': 1,\n",
      "          'manslaughter': 1,\n",
      "          'charges': 1,\n",
      "          'confess': 1,\n",
      "          'instead': 1,\n",
      "          'decide': 1,\n",
      "          'dump': 1,\n",
      "          'body': 1,\n",
      "          'ocean': 1,\n",
      "          'make': 1,\n",
      "          'pact': 1,\n",
      "          'never': 1,\n",
      "          'discuss': 1,\n",
      "          'episode': 1,\n",
      "          'na': 1,\n",
      "          'things': 1,\n",
      "          'among': 1,\n",
      "          'begin': 1,\n",
      "          'nrelationships': 1,\n",
      "          'fizzle': 1,\n",
      "          'future': 1,\n",
      "          'dreams': 1,\n",
      "          'crumble': 1,\n",
      "          'attitudes': 1,\n",
      "          'nbut': 1,\n",
      "          'forget': 1,\n",
      "          'nand': 1,\n",
      "          'apparently': 1,\n",
      "          'neither': 1,\n",
      "          'else': 1,\n",
      "          'nsomeone': 1,\n",
      "          'send': 1,\n",
      "          'letters': 1,\n",
      "          'frightening': 1,\n",
      "          'message': 1,\n",
      "          'last': 1,\n",
      "          'letterwriter': 1,\n",
      "          'slicker': 1,\n",
      "          'wielding': 1,\n",
      "          'large': 1,\n",
      "          'metal': 1,\n",
      "          'hook': 1,\n",
      "          'soon': 1,\n",
      "          'makes': 1,\n",
      "          'presence': 1,\n",
      "          'known': 1,\n",
      "          'hunt': 1,\n",
      "          'try': 1,\n",
      "          'late': 1,\n",
      "          'nwhile': 1,\n",
      "          'nice': 1,\n",
      "          'visually': 1,\n",
      "          'effects': 1,\n",
      "          'impact': 1,\n",
      "          'generated': 1,\n",
      "          'closeups': 1,\n",
      "          'level': 1,\n",
      "          'choppy': 1,\n",
      "          'best': 1,\n",
      "          'nthere': 1,\n",
      "          'decided': 1,\n",
      "          'give': 1,\n",
      "          'nothing': 1,\n",
      "          'cheap': 1,\n",
      "          'thrills': 1,\n",
      "          'clever': 1,\n",
      "          'whodunit': 1,\n",
      "          'discovering': 1,\n",
      "          'ultimately': 1,\n",
      "          'made': 1,\n",
      "          'shrug': 1,\n",
      "          'shoulders': 1,\n",
      "          'explored': 1,\n",
      "          'changed': 1,\n",
      "          'friendships': 1,\n",
      "          'adulthood': 1,\n",
      "          'include': 1,\n",
      "          'add': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'given': 1,\n",
      "          'smarter': 1,\n",
      "          'knew': 1,\n",
      "          'anytime': 1,\n",
      "          'alone': 1,\n",
      "          'shadowy': 1,\n",
      "          'figures': 1,\n",
      "          'moving': 1,\n",
      "          'dont': 1,\n",
      "          'walk': 1,\n",
      "          'towards': 1,\n",
      "          'yelling': 1,\n",
      "          'nonce': 1,\n",
      "          'yell': 1,\n",
      "          'expect': 1,\n",
      "          'closeup': 1,\n",
      "          'difficult': 1,\n",
      "          'happen': 1,\n",
      "          'redeeming': 1,\n",
      "          'neat': 1,\n",
      "          'idea': 1,\n",
      "          'halloween': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'local': 1,\n",
      "          'store': 1,\n",
      "          'sells': 1,\n",
      "          'slickers': 1,\n",
      "          'hooks': 1,\n",
      "          'horror': 1,\n",
      "          'experienced': 1,\n",
      "          'realizing': 1,\n",
      "          'actually': 1,\n",
      "          'went': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'film': 4,\n",
      "          'nits': 4,\n",
      "          'degeneres': 4,\n",
      "          'ellen': 3,\n",
      "          'ni': 3,\n",
      "          'wrote': 3,\n",
      "          'yet': 3,\n",
      "          'plot': 3,\n",
      "          'car': 3,\n",
      "          'goodbye': 2,\n",
      "          'lover': 2,\n",
      "          'sat': 2,\n",
      "          'shelf': 2,\n",
      "          'nand': 2,\n",
      "          'thats': 2,\n",
      "          'way': 2,\n",
      "          'nthe': 2,\n",
      "          'joff': 2,\n",
      "          'much': 2,\n",
      "          'supposed': 2,\n",
      "          'ndegeneres': 2,\n",
      "          'bad': 2,\n",
      "          'wearing': 2,\n",
      "          'killing': 2,\n",
      "          'least': 2,\n",
      "          'little': 2,\n",
      "          'going': 2,\n",
      "          'twists': 2,\n",
      "          'nsandra': 2,\n",
      "          'likes': 2,\n",
      "          'cheating': 2,\n",
      "          'lovers': 2,\n",
      "          'see': 2,\n",
      "          'films': 2,\n",
      "          'wig': 2,\n",
      "          'sound': 2,\n",
      "          'music': 2,\n",
      "          'wild': 2,\n",
      "          'heart': 2,\n",
      "          'hard': 2,\n",
      "          'almost': 1,\n",
      "          'year': 1,\n",
      "          'since': 1,\n",
      "          'lukewarm': 1,\n",
      "          'reception': 1,\n",
      "          'cannes': 1,\n",
      "          'festival': 1,\n",
      "          'last': 1,\n",
      "          'may': 1,\n",
      "          'look': 1,\n",
      "          'tell': 1,\n",
      "          'mess': 1,\n",
      "          'shows': 1,\n",
      "          'torrid': 1,\n",
      "          'doubleindemnity': 1,\n",
      "          'crime': 1,\n",
      "          'stories': 1,\n",
      "          'case': 1,\n",
      "          'required': 1,\n",
      "          'services': 1,\n",
      "          'three': 1,\n",
      "          'screenwriters': 1,\n",
      "          'suspect': 1,\n",
      "          'sexy': 1,\n",
      "          'thriller': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'comedy': 1,\n",
      "          'director': 1,\n",
      "          'roland': 1,\n",
      "          'tried': 1,\n",
      "          'piece': 1,\n",
      "          'together': 1,\n",
      "          'editing': 1,\n",
      "          'room': 1,\n",
      "          'scratching': 1,\n",
      "          'head': 1,\n",
      "          'bewilderment': 1,\n",
      "          'didnt': 1,\n",
      "          'laugh': 1,\n",
      "          'think': 1,\n",
      "          'horrible': 1,\n",
      "          'character': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'toughtalking': 1,\n",
      "          'vulgar': 1,\n",
      "          'cop': 1,\n",
      "          'wardrobe': 1,\n",
      "          'hair': 1,\n",
      "          'neither': 1,\n",
      "          'wigas': 1,\n",
      "          'actors': 1,\n",
      "          'appear': 1,\n",
      "          'beor': 1,\n",
      "          'doesnt': 1,\n",
      "          'enough': 1,\n",
      "          'clout': 1,\n",
      "          'secure': 1,\n",
      "          'hairstylist': 1,\n",
      "          'nevery': 1,\n",
      "          'single': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'racy': 1,\n",
      "          'hip': 1,\n",
      "          'incessant': 1,\n",
      "          'wisecracking': 1,\n",
      "          'poorlywritten': 1,\n",
      "          'merely': 1,\n",
      "          'stupid': 1,\n",
      "          'nher': 1,\n",
      "          'reaction': 1,\n",
      "          'brutal': 1,\n",
      "          'jogger': 1,\n",
      "          'died': 1,\n",
      "          'healthy': 1,\n",
      "          'wittier': 1,\n",
      "          'asides': 1,\n",
      "          'sgt': 1,\n",
      "          'nrita': 1,\n",
      "          'pompano': 1,\n",
      "          'called': 1,\n",
      "          'investigate': 1,\n",
      "          'allegedly': 1,\n",
      "          'accidental': 1,\n",
      "          'death': 1,\n",
      "          'wait': 1,\n",
      "          'nto': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'would': 1,\n",
      "          'ruin': 1,\n",
      "          'outside': 1,\n",
      "          'numbing': 1,\n",
      "          'multiple': 1,\n",
      "          'triplecrosses': 1,\n",
      "          'best': 1,\n",
      "          'described': 1,\n",
      "          'nsultry': 1,\n",
      "          'sexpotreal': 1,\n",
      "          'estate': 1,\n",
      "          'agent': 1,\n",
      "          'sandra': 1,\n",
      "          'dunmore': 1,\n",
      "          'patricia': 1,\n",
      "          'arquette': 1,\n",
      "          'married': 1,\n",
      "          'jake': 1,\n",
      "          'creative': 1,\n",
      "          'unfocused': 1,\n",
      "          'alcoholic': 1,\n",
      "          'advertising': 1,\n",
      "          'rep': 1,\n",
      "          'played': 1,\n",
      "          'dermot': 1,\n",
      "          'mulroney': 1,\n",
      "          'act': 1,\n",
      "          'deepseated': 1,\n",
      "          'sexual': 1,\n",
      "          'fantasies': 1,\n",
      "          'jakes': 1,\n",
      "          'brother': 1,\n",
      "          'ben': 1,\n",
      "          'suaveasever': 1,\n",
      "          'johnson': 1,\n",
      "          'help': 1,\n",
      "          'nben': 1,\n",
      "          'also': 1,\n",
      "          'coming': 1,\n",
      "          'petite': 1,\n",
      "          'mousy': 1,\n",
      "          'coworker': 1,\n",
      "          'peggy': 1,\n",
      "          'blaine': 1,\n",
      "          'marylouise': 1,\n",
      "          'parker': 1,\n",
      "          'someone': 1,\n",
      "          'somewhere': 1,\n",
      "          'planning': 1,\n",
      "          'cash': 1,\n",
      "          'huge': 1,\n",
      "          'life': 1,\n",
      "          'insurance': 1,\n",
      "          'policy': 1,\n",
      "          'ripe': 1,\n",
      "          'back': 1,\n",
      "          'nalthough': 1,\n",
      "          'genuine': 1,\n",
      "          'surprises': 1,\n",
      "          'get': 1,\n",
      "          'contrived': 1,\n",
      "          'quickly': 1,\n",
      "          'nprobably': 1,\n",
      "          'around': 1,\n",
      "          'time': 1,\n",
      "          'gumcracking': 1,\n",
      "          'gumshoe': 1,\n",
      "          'appears': 1,\n",
      "          'nat': 1,\n",
      "          'former': 1,\n",
      "          'star': 1,\n",
      "          'something': 1,\n",
      "          'different': 1,\n",
      "          'narquette': 1,\n",
      "          'turns': 1,\n",
      "          'another': 1,\n",
      "          'stilettoheeled': 1,\n",
      "          'platinum': 1,\n",
      "          'blonde': 1,\n",
      "          'bombshell': 1,\n",
      "          'roles': 1,\n",
      "          'lost': 1,\n",
      "          'highway': 1,\n",
      "          'true': 1,\n",
      "          'romance': 1,\n",
      "          'quoting': 1,\n",
      "          'embarrassing': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'im': 1,\n",
      "          'underwear': 1,\n",
      "          'hope': 1,\n",
      "          'got': 1,\n",
      "          'paid': 1,\n",
      "          'lot': 1,\n",
      "          'money': 1,\n",
      "          'nheres': 1,\n",
      "          'example': 1,\n",
      "          'flatout': 1,\n",
      "          'stupidity': 1,\n",
      "          'purchases': 1,\n",
      "          'used': 1,\n",
      "          'disguises': 1,\n",
      "          'red': 1,\n",
      "          'prior': 1,\n",
      "          'stalking': 1,\n",
      "          'two': 1,\n",
      "          'duplicitous': 1,\n",
      "          'nshe': 1,\n",
      "          'drives': 1,\n",
      "          'motorbiking': 1,\n",
      "          'couple': 1,\n",
      "          'cliff': 1,\n",
      "          'blaring': 1,\n",
      "          'favorite': 1,\n",
      "          'stereo': 1,\n",
      "          'intent': 1,\n",
      "          'identifying': 1,\n",
      "          'hapless': 1,\n",
      "          'victims': 1,\n",
      "          'nso': 1,\n",
      "          'point': 1,\n",
      "          'n': 1,\n",
      "          'stuff': 1,\n",
      "          'might': 1,\n",
      "          'reference': 1,\n",
      "          'wizard': 1,\n",
      "          'oz': 1,\n",
      "          'allusions': 1,\n",
      "          'david': 1,\n",
      "          'lynchs': 1,\n",
      "          'must': 1,\n",
      "          'forgotten': 1,\n",
      "          'despicable': 1,\n",
      "          'movie': 1,\n",
      "          'believe': 1,\n",
      "          'directed': 1,\n",
      "          'person': 1,\n",
      "          'made': 1,\n",
      "          'fields': 1,\n",
      "          'mission': 1,\n",
      "          'however': 1,\n",
      "          'long': 1,\n",
      "          'nit': 1,\n",
      "          'stayed': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 3,\n",
      "          'two': 3,\n",
      "          'like': 2,\n",
      "          'last': 2,\n",
      "          'years': 2,\n",
      "          'campus': 2,\n",
      "          'audience': 2,\n",
      "          'sex': 2,\n",
      "          'football': 2,\n",
      "          'nothing': 2,\n",
      "          'theres': 2,\n",
      "          'even': 2,\n",
      "          'voight': 2,\n",
      "          'west': 2,\n",
      "          'canaan': 2,\n",
      "          'coyotes': 2,\n",
      "          'coach': 2,\n",
      "          'kilmer': 2,\n",
      "          'goes': 2,\n",
      "          'james': 2,\n",
      "          'van': 2,\n",
      "          'der': 2,\n",
      "          'beek': 2,\n",
      "          'footballcrazy': 2,\n",
      "          'high': 2,\n",
      "          'school': 2,\n",
      "          'never': 2,\n",
      "          'nthis': 2,\n",
      "          'manages': 2,\n",
      "          'much': 2,\n",
      "          'genx': 1,\n",
      "          'mtv': 1,\n",
      "          'dead': 1,\n",
      "          'man': 1,\n",
      "          'marketed': 1,\n",
      "          'primarily': 1,\n",
      "          'male': 1,\n",
      "          'indicated': 1,\n",
      "          'main': 1,\n",
      "          'selling': 1,\n",
      "          'points': 1,\n",
      "          'nthose': 1,\n",
      "          'items': 1,\n",
      "          'wrapped': 1,\n",
      "          'guiltypleasure': 1,\n",
      "          'package': 1,\n",
      "          'sure': 1,\n",
      "          'snare': 1,\n",
      "          'sizeable': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'chunk': 1,\n",
      "          'initially': 1,\n",
      "          'sales': 1,\n",
      "          'decline': 1,\n",
      "          'reasons': 1,\n",
      "          'nfirst': 1,\n",
      "          'sequences': 1,\n",
      "          'new': 1,\n",
      "          'sports': 1,\n",
      "          'genre': 1,\n",
      "          'isnt': 1,\n",
      "          'mainstream': 1,\n",
      "          'retread': 1,\n",
      "          'death': 1,\n",
      "          'nsecond': 1,\n",
      "          'bad': 1,\n",
      "          'ndespite': 1,\n",
      "          'appearance': 1,\n",
      "          'whipped': 1,\n",
      "          'cream': 1,\n",
      "          'bikini': 1,\n",
      "          'allnight': 1,\n",
      "          'stripclub': 1,\n",
      "          'party': 1,\n",
      "          'remotely': 1,\n",
      "          'tantalizing': 1,\n",
      "          'nthe': 1,\n",
      "          'acting': 1,\n",
      "          'mostly': 1,\n",
      "          'mediocre': 1,\n",
      "          'including': 1,\n",
      "          'fantastic': 1,\n",
      "          'jon': 1,\n",
      "          'ncultivating': 1,\n",
      "          'usual': 1,\n",
      "          'sliminess': 1,\n",
      "          'gives': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'standout': 1,\n",
      "          'performance': 1,\n",
      "          'head': 1,\n",
      "          'bud': 1,\n",
      "          'nkilmer': 1,\n",
      "          'driving': 1,\n",
      "          'force': 1,\n",
      "          'behind': 1,\n",
      "          'twentytwo': 1,\n",
      "          'conference': 1,\n",
      "          'championships': 1,\n",
      "          'state': 1,\n",
      "          'titles': 1,\n",
      "          'thirty': 1,\n",
      "          'year': 1,\n",
      "          'plans': 1,\n",
      "          'make': 1,\n",
      "          'twentythree': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'star': 1,\n",
      "          'quarterback': 1,\n",
      "          'lance': 1,\n",
      "          'harbor': 1,\n",
      "          'paul': 1,\n",
      "          'walker': 1,\n",
      "          'count': 1,\n",
      "          'hes': 1,\n",
      "          'got': 1,\n",
      "          'rely': 1,\n",
      "          'unreliable': 1,\n",
      "          'abilities': 1,\n",
      "          'backup': 1,\n",
      "          'john': 1,\n",
      "          'moxon': 1,\n",
      "          'nmoxon': 1,\n",
      "          'leads': 1,\n",
      "          'team': 1,\n",
      "          'four': 1,\n",
      "          'games': 1,\n",
      "          'must': 1,\n",
      "          'cope': 1,\n",
      "          'newfound': 1,\n",
      "          'stardom': 1,\n",
      "          'effect': 1,\n",
      "          'relationship': 1,\n",
      "          'girlfriend': 1,\n",
      "          'julie': 1,\n",
      "          'amy': 1,\n",
      "          'smart': 1,\n",
      "          'temptations': 1,\n",
      "          'abound': 1,\n",
      "          'nmost': 1,\n",
      "          'regions': 1,\n",
      "          'country': 1,\n",
      "          'nearly': 1,\n",
      "          'texas': 1,\n",
      "          'atmosphere': 1,\n",
      "          'likely': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'lost': 1,\n",
      "          'nsimilarly': 1,\n",
      "          'set': 1,\n",
      "          'design': 1,\n",
      "          'wrong': 1,\n",
      "          'setting': 1,\n",
      "          'teams': 1,\n",
      "          'decked': 1,\n",
      "          'sparkling': 1,\n",
      "          'uniforms': 1,\n",
      "          'radio': 1,\n",
      "          'headsets': 1,\n",
      "          'seem': 1,\n",
      "          'work': 1,\n",
      "          'however': 1,\n",
      "          'instead': 1,\n",
      "          'require': 1,\n",
      "          'coaches': 1,\n",
      "          'signal': 1,\n",
      "          'plays': 1,\n",
      "          'manually': 1,\n",
      "          'giant': 1,\n",
      "          'bronze': 1,\n",
      "          'statue': 1,\n",
      "          'nthese': 1,\n",
      "          'elements': 1,\n",
      "          'well': 1,\n",
      "          'heavy': 1,\n",
      "          'drinking': 1,\n",
      "          'carousing': 1,\n",
      "          'might': 1,\n",
      "          'appropriate': 1,\n",
      "          'college': 1,\n",
      "          'mtvs': 1,\n",
      "          'core': 1,\n",
      "          'demographic': 1,\n",
      "          'focus': 1,\n",
      "          'emphasized': 1,\n",
      "          'casting': 1,\n",
      "          'tvs': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'understandable': 1,\n",
      "          'choice': 1,\n",
      "          'reluctant': 1,\n",
      "          'hero': 1,\n",
      "          'although': 1,\n",
      "          'anything': 1,\n",
      "          'role': 1,\n",
      "          'nother': 1,\n",
      "          'stars': 1,\n",
      "          'similarly': 1,\n",
      "          'young': 1,\n",
      "          'unmemorable': 1,\n",
      "          'ntheres': 1,\n",
      "          'right': 1,\n",
      "          'varsity': 1,\n",
      "          'blues': 1,\n",
      "          'either': 1,\n",
      "          'neverything': 1,\n",
      "          'herein': 1,\n",
      "          'already': 1,\n",
      "          'done': 1,\n",
      "          'hasnt': 1,\n",
      "          'botch': 1,\n",
      "          'one': 1,\n",
      "          'way': 1,\n",
      "          'another': 1,\n",
      "          'certainly': 1,\n",
      "          'missable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'con': 9,\n",
      "          'bruckheimer': 8,\n",
      "          'air': 7,\n",
      "          'cage': 6,\n",
      "          'rock': 5,\n",
      "          'poe': 4,\n",
      "          'prison': 4,\n",
      "          'one': 4,\n",
      "          'many': 4,\n",
      "          'nthe': 3,\n",
      "          'something': 3,\n",
      "          'production': 3,\n",
      "          'cages': 3,\n",
      "          'performance': 3,\n",
      "          'nin': 3,\n",
      "          'like': 3,\n",
      "          'desk': 3,\n",
      "          'big': 3,\n",
      "          'much': 3,\n",
      "          'nicolas': 2,\n",
      "          'role': 2,\n",
      "          'cameron': 2,\n",
      "          'life': 2,\n",
      "          'home': 2,\n",
      "          'simple': 2,\n",
      "          'nif': 2,\n",
      "          'scene': 2,\n",
      "          'ncage': 2,\n",
      "          'going': 2,\n",
      "          'raising': 2,\n",
      "          'getting': 2,\n",
      "          'count': 2,\n",
      "          'time': 2,\n",
      "          'action': 2,\n",
      "          'nthat': 2,\n",
      "          'nwhile': 2,\n",
      "          'goal': 2,\n",
      "          'get': 2,\n",
      "          'film': 2,\n",
      "          'measure': 2,\n",
      "          'fact': 2,\n",
      "          'people': 2,\n",
      "          'exactly': 2,\n",
      "          'west': 2,\n",
      "          'kind': 2,\n",
      "          'doesnt': 2,\n",
      "          'bomb': 2,\n",
      "          'really': 2,\n",
      "          '_really_': 2,\n",
      "          'buscemi': 2,\n",
      "          'john': 2,\n",
      "          'malkovich': 2,\n",
      "          'nit': 2,\n",
      "          'goes': 2,\n",
      "          'word': 2,\n",
      "          'comes': 1,\n",
      "          'ingenious': 1,\n",
      "          'survival': 1,\n",
      "          'mechanism': 1,\n",
      "          'winkandaconcussivenudge': 1,\n",
      "          'bombastorama': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'sequence': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'gulf': 1,\n",
      "          'war': 1,\n",
      "          'veteran': 1,\n",
      "          'convicted': 1,\n",
      "          'manslaughter': 1,\n",
      "          'serving': 1,\n",
      "          'eight': 1,\n",
      "          'years': 1,\n",
      "          'illfated': 1,\n",
      "          'barroom': 1,\n",
      "          'brawl': 1,\n",
      "          'scenes': 1,\n",
      "          'accompanied': 1,\n",
      "          'voiceovers': 1,\n",
      "          'languid': 1,\n",
      "          'southern': 1,\n",
      "          'drawl': 1,\n",
      "          'describes': 1,\n",
      "          'wife': 1,\n",
      "          'back': 1,\n",
      "          'offers': 1,\n",
      "          'homilies': 1,\n",
      "          'daughter': 1,\n",
      "          'never': 1,\n",
      "          'met': 1,\n",
      "          'gives': 1,\n",
      "          'tickle': 1,\n",
      "          'familiarity': 1,\n",
      "          'probably': 1,\n",
      "          'appears': 1,\n",
      "          'realize': 1,\n",
      "          'utterly': 1,\n",
      "          'dimwitted': 1,\n",
      "          'ridiculous': 1,\n",
      "          'hes': 1,\n",
      "          'keep': 1,\n",
      "          'entertained': 1,\n",
      "          'nand': 1,\n",
      "          'thus': 1,\n",
      "          'slips': 1,\n",
      "          'familiar': 1,\n",
      "          'surreal': 1,\n",
      "          'commentary': 1,\n",
      "          'proceedings': 1,\n",
      "          'plays': 1,\n",
      "          'buffedup': 1,\n",
      "          'version': 1,\n",
      "          'arizonas': 1,\n",
      "          'h': 1,\n",
      "          'mcdonnough': 1,\n",
      "          'known': 1,\n",
      "          'nhe': 1,\n",
      "          'got': 1,\n",
      "          'paycheck': 1,\n",
      "          'jerry': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'theres': 1,\n",
      "          'thing': 1,\n",
      "          'even': 1,\n",
      "          'without': 1,\n",
      "          'late': 1,\n",
      "          'partner': 1,\n",
      "          'simpson': 1,\n",
      "          'seeing': 1,\n",
      "          'everything': 1,\n",
      "          'saw': 1,\n",
      "          '_last_': 1,\n",
      "          'critical': 1,\n",
      "          'difference': 1,\n",
      "          'appeared': 1,\n",
      "          'jumping': 1,\n",
      "          'fray': 1,\n",
      "          'first': 1,\n",
      "          'sense': 1,\n",
      "          'discovery': 1,\n",
      "          'replaced': 1,\n",
      "          'wry': 1,\n",
      "          'selfawareness': 1,\n",
      "          'plot': 1,\n",
      "          'finds': 1,\n",
      "          'parolee': 1,\n",
      "          'board': 1,\n",
      "          'hijacked': 1,\n",
      "          'transport': 1,\n",
      "          'plane': 1,\n",
      "          'whose': 1,\n",
      "          'different': 1,\n",
      "          'dignity': 1,\n",
      "          'intact': 1,\n",
      "          'naudiences': 1,\n",
      "          'know': 1,\n",
      "          'theyre': 1,\n",
      "          'marketing': 1,\n",
      "          'counting': 1,\n",
      "          'nno': 1,\n",
      "          'loathed': 1,\n",
      "          'sweargruntblast': 1,\n",
      "          'repetitiveness': 1,\n",
      "          'converted': 1,\n",
      "          'loved': 1,\n",
      "          'reasons': 1,\n",
      "          'dissuaded': 1,\n",
      "          'ndirector': 1,\n",
      "          'simon': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'tv': 1,\n",
      "          'commercial': 1,\n",
      "          'auteur': 1,\n",
      "          'plucked': 1,\n",
      "          'advertising': 1,\n",
      "          'equivalent': 1,\n",
      "          'schwabs': 1,\n",
      "          'soda': 1,\n",
      "          'fountain': 1,\n",
      "          'delivers': 1,\n",
      "          'adrenalinetestosterone': 1,\n",
      "          'cocktail': 1,\n",
      "          'could': 1,\n",
      "          'launch': 1,\n",
      "          'endocrinology': 1,\n",
      "          'lecture': 1,\n",
      "          'perversely': 1,\n",
      "          'appropriate': 1,\n",
      "          'sympathetic': 1,\n",
      "          'spends': 1,\n",
      "          'flight': 1,\n",
      "          'nearing': 1,\n",
      "          'diabetic': 1,\n",
      "          'coma': 1,\n",
      "          'insulin': 1,\n",
      "          'work': 1,\n",
      "          'gland': 1,\n",
      "          'nwhat': 1,\n",
      "          'deliver': 1,\n",
      "          'moment': 1,\n",
      "          'suspense': 1,\n",
      "          'na': 1,\n",
      "          'use': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'notion': 1,\n",
      "          'showing': 1,\n",
      "          'creates': 1,\n",
      "          'interesting': 1,\n",
      "          'blowing': 1,\n",
      "          'serve': 1,\n",
      "          'purpose': 1,\n",
      "          'nicely': 1,\n",
      "          'either': 1,\n",
      "          'interested': 1,\n",
      "          'genuine': 1,\n",
      "          'tension': 1,\n",
      "          'might': 1,\n",
      "          'done': 1,\n",
      "          'airs': 1,\n",
      "          'creepiest': 1,\n",
      "          'setup': 1,\n",
      "          'nat': 1,\n",
      "          'desert': 1,\n",
      "          'stop': 1,\n",
      "          'planeload': 1,\n",
      "          'convicts': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'garland': 1,\n",
      "          'greene': 1,\n",
      "          'steve': 1,\n",
      "          'wanders': 1,\n",
      "          'trailer': 1,\n",
      "          'park': 1,\n",
      "          'meets': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'tea': 1,\n",
      "          'party': 1,\n",
      "          'drained': 1,\n",
      "          'swimming': 1,\n",
      "          'pool': 1,\n",
      "          'ntheir': 1,\n",
      "          'teteatete': 1,\n",
      "          'eerie': 1,\n",
      "          'menacing': 1,\n",
      "          'providing': 1,\n",
      "          'welcome': 1,\n",
      "          'shift': 1,\n",
      "          'tone': 1,\n",
      "          'giving': 1,\n",
      "          'chance': 1,\n",
      "          'stand': 1,\n",
      "          'cast': 1,\n",
      "          'villains': 1,\n",
      "          'danny': 1,\n",
      "          'trejo': 1,\n",
      "          'ving': 1,\n",
      "          'rhames': 1,\n",
      "          'characteristically': 1,\n",
      "          'reptilian': 1,\n",
      "          'among': 1,\n",
      "          'usually': 1,\n",
      "          'opts': 1,\n",
      "          'tiniest': 1,\n",
      "          'restraint': 1,\n",
      "          'would': 1,\n",
      "          'improvement': 1,\n",
      "          'characters': 1,\n",
      "          'editing': 1,\n",
      "          'dopey': 1,\n",
      "          'punch': 1,\n",
      "          'lines': 1,\n",
      "          'cheap': 1,\n",
      "          'ugly': 1,\n",
      "          'appeals': 1,\n",
      "          'machismo': 1,\n",
      "          'characterize': 1,\n",
      "          'efforts': 1,\n",
      "          'exhausting': 1,\n",
      "          'excess': 1,\n",
      "          'responding': 1,\n",
      "          'detached': 1,\n",
      "          'outrageous': 1,\n",
      "          'cusack': 1,\n",
      "          'u': 1,\n",
      "          'marshal': 1,\n",
      "          'earnest': 1,\n",
      "          'looks': 1,\n",
      "          'wants': 1,\n",
      "          'go': 1,\n",
      "          'sleep': 1,\n",
      "          'nhis': 1,\n",
      "          'recycled': 1,\n",
      "          'arizona': 1,\n",
      "          'means': 1,\n",
      "          'escape': 1,\n",
      "          'chase': 1,\n",
      "          'stuffed': 1,\n",
      "          'bunny': 1,\n",
      "          'continuation': 1,\n",
      "          'pursuit': 1,\n",
      "          'box': 1,\n",
      "          'huggies': 1,\n",
      "          'bode': 1,\n",
      "          'well': 1,\n",
      "          'appearance': 1,\n",
      "          'faceoff': 1,\n",
      "          'later': 1,\n",
      "          'month': 1,\n",
      "          'perhaps': 1,\n",
      "          'already': 1,\n",
      "          'realizes': 1,\n",
      "          'films': 1,\n",
      "          'ntheres': 1,\n",
      "          'called': 1,\n",
      "          'recidivist': 1,\n",
      "          'repeat': 1,\n",
      "          'noffender': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'big': 6,\n",
      "          'actor': 6,\n",
      "          'special': 5,\n",
      "          'one': 5,\n",
      "          'film': 5,\n",
      "          'house': 4,\n",
      "          'effects': 4,\n",
      "          'little': 4,\n",
      "          'get': 4,\n",
      "          'also': 4,\n",
      "          'na': 3,\n",
      "          'zetajones': 3,\n",
      "          'haunting': 3,\n",
      "          'us': 3,\n",
      "          'good': 3,\n",
      "          'scare': 3,\n",
      "          'going': 3,\n",
      "          'wilson': 3,\n",
      "          'role': 3,\n",
      "          'director': 2,\n",
      "          'jan': 2,\n",
      "          'de': 2,\n",
      "          'bont': 2,\n",
      "          'catherine': 2,\n",
      "          'entrapment': 2,\n",
      "          'nand': 2,\n",
      "          'doctor': 2,\n",
      "          'spooky': 2,\n",
      "          'fear': 2,\n",
      "          'movie': 2,\n",
      "          'didnt': 2,\n",
      "          'basically': 2,\n",
      "          'nwell': 2,\n",
      "          'well': 2,\n",
      "          'lily': 2,\n",
      "          'taylor': 2,\n",
      "          'character': 2,\n",
      "          'owen': 2,\n",
      "          'like': 2,\n",
      "          'shining': 2,\n",
      "          'gone': 2,\n",
      "          'known': 2,\n",
      "          'goofy': 2,\n",
      "          'year': 2,\n",
      "          'nshe': 2,\n",
      "          'stay': 2,\n",
      "          'played': 2,\n",
      "          'michael': 2,\n",
      "          'nhe': 2,\n",
      "          'nactor': 2,\n",
      "          'speed': 1,\n",
      "          'twister': 1,\n",
      "          'fame': 1,\n",
      "          'star': 1,\n",
      "          'hot': 1,\n",
      "          'heels': 1,\n",
      "          '6': 1,\n",
      "          '510': 1,\n",
      "          'zorro': 1,\n",
      "          'remake': 1,\n",
      "          'nso': 1,\n",
      "          'amount': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'bore': 1,\n",
      "          'nplot': 1,\n",
      "          'hotshot': 1,\n",
      "          'brings': 1,\n",
      "          'three': 1,\n",
      "          'insomniacs': 1,\n",
      "          'old': 1,\n",
      "          'mansion': 1,\n",
      "          'controlled': 1,\n",
      "          'testing': 1,\n",
      "          'nunbeknownst': 1,\n",
      "          'patients': 1,\n",
      "          'actually': 1,\n",
      "          'conducting': 1,\n",
      "          'cover': 1,\n",
      "          'project': 1,\n",
      "          'psychology': 1,\n",
      "          'ncritique': 1,\n",
      "          'bit': 1,\n",
      "          'nsure': 1,\n",
      "          'creeped': 1,\n",
      "          'spooked': 1,\n",
      "          'whole': 1,\n",
      "          'took': 1,\n",
      "          'waaaaay': 1,\n",
      "          'long': 1,\n",
      "          'provided': 1,\n",
      "          'meat': 1,\n",
      "          'plot': 1,\n",
      "          'went': 1,\n",
      "          'way': 1,\n",
      "          'past': 1,\n",
      "          'bedtime': 1,\n",
      "          'relied': 1,\n",
      "          'grunts': 1,\n",
      "          'muttering': 1,\n",
      "          'childrens': 1,\n",
      "          'voices': 1,\n",
      "          'overthetop': 1,\n",
      "          'much': 1,\n",
      "          'might': 1,\n",
      "          'called': 1,\n",
      "          'since': 1,\n",
      "          'shes': 1,\n",
      "          'real': 1,\n",
      "          'depth': 1,\n",
      "          'background': 1,\n",
      "          'reason': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'zeta': 1,\n",
      "          'sweet': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'despite': 1,\n",
      "          'continued': 1,\n",
      "          'perception': 1,\n",
      "          'faint': 1,\n",
      "          'mustachesee': 1,\n",
      "          'standard': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'come': 1,\n",
      "          'people': 1,\n",
      "          'youre': 1,\n",
      "          'sit': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'theater': 1,\n",
      "          'folks': 1,\n",
      "          'bout': 1,\n",
      "          'giving': 1,\n",
      "          'oneliners': 1,\n",
      "          'dimension': 1,\n",
      "          'nneeson': 1,\n",
      "          'wasted': 1,\n",
      "          'smart': 1,\n",
      "          'british': 1,\n",
      "          'guy': 1,\n",
      "          'nits': 1,\n",
      "          'sad': 1,\n",
      "          'cause': 1,\n",
      "          'certainly': 1,\n",
      "          'idea': 1,\n",
      "          'seemed': 1,\n",
      "          'see': 1,\n",
      "          '910': 1,\n",
      "          'close': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'creepy': 1,\n",
      "          'awry': 1,\n",
      "          'story': 1,\n",
      "          'thin': 1,\n",
      "          'conclusion': 1,\n",
      "          'laughable': 1,\n",
      "          'poof': 1,\n",
      "          'sure': 1,\n",
      "          'nice': 1,\n",
      "          'look': 1,\n",
      "          'moment': 1,\n",
      "          'even': 1,\n",
      "          'splitsecond': 1,\n",
      "          'believe': 1,\n",
      "          'anything': 1,\n",
      "          'hollywood': 1,\n",
      "          'gadgetry': 1,\n",
      "          'nsee': 1,\n",
      "          'scary': 1,\n",
      "          'movies': 1,\n",
      "          'take': 1,\n",
      "          'forever': 1,\n",
      "          'provide': 1,\n",
      "          'payback': 1,\n",
      "          'otherwise': 1,\n",
      "          'skip': 1,\n",
      "          'check': 1,\n",
      "          'original': 1,\n",
      "          'ultimate': 1,\n",
      "          'homes': 1,\n",
      "          'netherworld': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'coscripted': 1,\n",
      "          'indie': 1,\n",
      "          'favorites': 1,\n",
      "          'rushmore': 1,\n",
      "          '810': 1,\n",
      "          'bottle': 1,\n",
      "          'rocket': 1,\n",
      "          'wes': 1,\n",
      "          'anderson': 1,\n",
      "          'nhis': 1,\n",
      "          'brother': 1,\n",
      "          'luke': 1,\n",
      "          'dated': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'nbrother': 1,\n",
      "          'andrew': 1,\n",
      "          'nsinger': 1,\n",
      "          'lisa': 1,\n",
      "          'loeb': 1,\n",
      "          'listed': 1,\n",
      "          'credits': 1,\n",
      "          'portrayed': 1,\n",
      "          'olivia': 1,\n",
      "          'morice': 1,\n",
      "          'personally': 1,\n",
      "          'notice': 1,\n",
      "          'number': 1,\n",
      "          'single': 1,\n",
      "          'missed': 1,\n",
      "          'glasses': 1,\n",
      "          'nthe': 1,\n",
      "          'creaks': 1,\n",
      "          'moans': 1,\n",
      "          'heard': 1,\n",
      "          'throughout': 1,\n",
      "          'prerecorded': 1,\n",
      "          'filming': 1,\n",
      "          'order': 1,\n",
      "          'natural': 1,\n",
      "          'expression': 1,\n",
      "          'actors': 1,\n",
      "          'ncatherine': 1,\n",
      "          'currently': 1,\n",
      "          'dating': 1,\n",
      "          'flabby': 1,\n",
      "          'ass': 1,\n",
      "          'sex': 1,\n",
      "          'life': 1,\n",
      "          'douglas': 1,\n",
      "          'stands': 1,\n",
      "          '58': 1,\n",
      "          'nin': 1,\n",
      "          '1998': 1,\n",
      "          'rapaport': 1,\n",
      "          'pleaded': 1,\n",
      "          'guilty': 1,\n",
      "          'aggravated': 1,\n",
      "          'harassment': 1,\n",
      "          'ordered': 1,\n",
      "          'away': 1,\n",
      "          'undergo': 1,\n",
      "          'counseling': 1,\n",
      "          'bruce': 1,\n",
      "          'dern': 1,\n",
      "          'plays': 1,\n",
      "          'throwaway': 1,\n",
      "          'gatekeeper': 1,\n",
      "          'nominated': 1,\n",
      "          'oscar': 1,\n",
      "          'best': 1,\n",
      "          'supporting': 1,\n",
      "          'coming': 1,\n",
      "          'home': 1,\n",
      "          'ndirector': 1,\n",
      "          'born': 1,\n",
      "          'holland': 1,\n",
      "          'began': 1,\n",
      "          'lengthy': 1,\n",
      "          'career': 1,\n",
      "          'cinematographer': 1,\n",
      "          'films': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'hunt': 1,\n",
      "          'red': 1,\n",
      "          'october': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'directed': 1,\n",
      "          'another': 1,\n",
      "          'dutchman': 1,\n",
      "          'paul': 1,\n",
      "          'verhoeven': 1,\n",
      "          'todd': 1,\n",
      "          'field': 1,\n",
      "          'small': 1,\n",
      "          'pivotal': 1,\n",
      "          'stanley': 1,\n",
      "          'kubricks': 1,\n",
      "          'last': 1,\n",
      "          'eyes': 1,\n",
      "          'wide': 1,\n",
      "          'shut': 1,\n",
      "          'nick': 1,\n",
      "          'nightingale': 1,\n",
      "          'pianist': 1,\n",
      "          'nthis': 1,\n",
      "          'originally': 1,\n",
      "          'titled': 1,\n",
      "          'hill': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dalmatians': 5,\n",
      "          'film': 4,\n",
      "          'close': 4,\n",
      "          'dalmatian': 4,\n",
      "          '102': 3,\n",
      "          'glenn': 3,\n",
      "          'original': 3,\n",
      "          '101': 3,\n",
      "          'nthe': 3,\n",
      "          'dog': 3,\n",
      "          'point': 3,\n",
      "          'bad': 2,\n",
      "          'puppy': 2,\n",
      "          'one': 2,\n",
      "          'time': 2,\n",
      "          'made': 2,\n",
      "          'back': 2,\n",
      "          'ncruella': 2,\n",
      "          'lover': 2,\n",
      "          'becomes': 2,\n",
      "          'plot': 2,\n",
      "          'needs': 2,\n",
      "          'nhow': 2,\n",
      "          'depardieu': 2,\n",
      "          'nand': 2,\n",
      "          'french': 2,\n",
      "          'accent': 2,\n",
      "          'always': 1,\n",
      "          'sign': 1,\n",
      "          'core': 1,\n",
      "          'audience': 1,\n",
      "          'children': 1,\n",
      "          'either': 1,\n",
      "          'walking': 1,\n",
      "          'early': 1,\n",
      "          'halfasleep': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'end': 1,\n",
      "          'nthat': 1,\n",
      "          'sums': 1,\n",
      "          'dreadful': 1,\n",
      "          'ugliness': 1,\n",
      "          'cold': 1,\n",
      "          'pea': 1,\n",
      "          'soup': 1,\n",
      "          'cute': 1,\n",
      "          'animals': 1,\n",
      "          'stupid': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'antics': 1,\n",
      "          'boring': 1,\n",
      "          'love': 1,\n",
      "          'subplot': 1,\n",
      "          'dumb': 1,\n",
      "          'humans': 1,\n",
      "          'reprising': 1,\n",
      "          'best': 1,\n",
      "          'joan': 1,\n",
      "          'crawford': 1,\n",
      "          'impression': 1,\n",
      "          'nindeed': 1,\n",
      "          'walt': 1,\n",
      "          'disney': 1,\n",
      "          'rolling': 1,\n",
      "          'grave': 1,\n",
      "          'cursing': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          'name': 1,\n",
      "          'making': 1,\n",
      "          'liveaction': 1,\n",
      "          'worst': 1,\n",
      "          'kiddie': 1,\n",
      "          'flicks': 1,\n",
      "          'sequel': 1,\n",
      "          'main': 1,\n",
      "          'culprit': 1,\n",
      "          'behind': 1,\n",
      "          'hideousness': 1,\n",
      "          'predecessor': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'spawned': 1,\n",
      "          'torrid': 1,\n",
      "          'collection': 1,\n",
      "          'collectible': 1,\n",
      "          'items': 1,\n",
      "          'ended': 1,\n",
      "          'months': 1,\n",
      "          'later': 1,\n",
      "          'discount': 1,\n",
      "          'bins': 1,\n",
      "          'walmarts': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'generally': 1,\n",
      "          'every': 1,\n",
      "          'kid': 1,\n",
      "          'planet': 1,\n",
      "          'want': 1,\n",
      "          'damn': 1,\n",
      "          'pup': 1,\n",
      "          'christmas': 1,\n",
      "          'nwell': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'since': 1,\n",
      "          'fever': 1,\n",
      "          'coming': 1,\n",
      "          'digitally': 1,\n",
      "          'enhanced': 1,\n",
      "          'nheres': 1,\n",
      "          'story': 1,\n",
      "          'de': 1,\n",
      "          'vil': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'due': 1,\n",
      "          'cure': 1,\n",
      "          'homicide': 1,\n",
      "          'urges': 1,\n",
      "          'dr': 1,\n",
      "          'pavlov': 1,\n",
      "          'n': 1,\n",
      "          'oh': 1,\n",
      "          'witty': 1,\n",
      "          'nshe': 1,\n",
      "          'rejoins': 1,\n",
      "          'world': 1,\n",
      "          'assigned': 1,\n",
      "          'probation': 1,\n",
      "          'officer': 1,\n",
      "          'oddly': 1,\n",
      "          'turns': 1,\n",
      "          'victim': 1,\n",
      "          'ella': 1,\n",
      "          'twists': 1,\n",
      "          'like': 1,\n",
      "          'leash': 1,\n",
      "          'caught': 1,\n",
      "          'moving': 1,\n",
      "          'truck': 1,\n",
      "          'evil': 1,\n",
      "          'vixen': 1,\n",
      "          'na': 1,\n",
      "          'kidnapping': 1,\n",
      "          'unfurls': 1,\n",
      "          'cruella': 1,\n",
      "          'decides': 1,\n",
      "          'still': 1,\n",
      "          'coat': 1,\n",
      "          'instead': 1,\n",
      "          'commonly': 1,\n",
      "          'used': 1,\n",
      "          'formula': 1,\n",
      "          'nat': 1,\n",
      "          'envying': 1,\n",
      "          'kids': 1,\n",
      "          'filing': 1,\n",
      "          'theater': 1,\n",
      "          'low': 1,\n",
      "          'gerard': 1,\n",
      "          'films': 1,\n",
      "          'villain': 1,\n",
      "          'sunk': 1,\n",
      "          'business': 1,\n",
      "          'nits': 1,\n",
      "          'almost': 1,\n",
      "          'laughable': 1,\n",
      "          'sadistic': 1,\n",
      "          'way': 1,\n",
      "          'watch': 1,\n",
      "          'walk': 1,\n",
      "          'around': 1,\n",
      "          'costumes': 1,\n",
      "          'seem': 1,\n",
      "          'pulled': 1,\n",
      "          'wardrobe': 1,\n",
      "          'flash': 1,\n",
      "          'gordon': 1,\n",
      "          'guy': 1,\n",
      "          'never': 1,\n",
      "          'mind': 1,\n",
      "          'toilet': 1,\n",
      "          'brush': 1,\n",
      "          'haircut': 1,\n",
      "          'minutely': 1,\n",
      "          'positive': 1,\n",
      "          'selling': 1,\n",
      "          'even': 1,\n",
      "          'think': 1,\n",
      "          'talking': 1,\n",
      "          'bird': 1,\n",
      "          'british': 1,\n",
      "          'courtesy': 1,\n",
      "          'eric': 1,\n",
      "          'idle': 1,\n",
      "          'thinks': 1,\n",
      "          'hes': 1,\n",
      "          'rottweiler': 1,\n",
      "          'nnow': 1,\n",
      "          'thats': 1,\n",
      "          'funny': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'marvin': 5,\n",
      "          'like': 4,\n",
      "          'animal': 3,\n",
      "          'time': 3,\n",
      "          'bad': 3,\n",
      "          'nits': 2,\n",
      "          'trying': 2,\n",
      "          'seen': 2,\n",
      "          'hes': 2,\n",
      "          'little': 2,\n",
      "          'nthis': 2,\n",
      "          'cant': 2,\n",
      "          'nhowever': 2,\n",
      "          'speed': 2,\n",
      "          'nhe': 2,\n",
      "          'nwith': 2,\n",
      "          'could': 2,\n",
      "          'film': 2,\n",
      "          'see': 2,\n",
      "          'marginally': 1,\n",
      "          'inspired': 1,\n",
      "          'comedy': 1,\n",
      "          'manages': 1,\n",
      "          'lumber': 1,\n",
      "          'along': 1,\n",
      "          'generating': 1,\n",
      "          'enough': 1,\n",
      "          'momentum': 1,\n",
      "          'keep': 1,\n",
      "          'stalling': 1,\n",
      "          'clunky': 1,\n",
      "          'slow': 1,\n",
      "          'watching': 1,\n",
      "          '18wheeler': 1,\n",
      "          'accelerate': 1,\n",
      "          'hill': 1,\n",
      "          'nthere': 1,\n",
      "          'certainly': 1,\n",
      "          'better': 1,\n",
      "          'things': 1,\n",
      "          'nactually': 1,\n",
      "          'youve': 1,\n",
      "          'trailer': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'plot': 1,\n",
      "          'funniest': 1,\n",
      "          'moments': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'centers': 1,\n",
      "          'bland': 1,\n",
      "          'rob': 1,\n",
      "          'schneider': 1,\n",
      "          'evidence': 1,\n",
      "          'clerk': 1,\n",
      "          'local': 1,\n",
      "          'police': 1,\n",
      "          'department': 1,\n",
      "          'yearns': 1,\n",
      "          'real': 1,\n",
      "          'officer': 1,\n",
      "          'nbut': 1,\n",
      "          'afflicted': 1,\n",
      "          'loseritis': 1,\n",
      "          'ndogs': 1,\n",
      "          'attack': 1,\n",
      "          'neighbors': 1,\n",
      "          'torment': 1,\n",
      "          'children': 1,\n",
      "          'bully': 1,\n",
      "          'coworkers': 1,\n",
      "          'ignore': 1,\n",
      "          'ntruthfully': 1,\n",
      "          'haircut': 1,\n",
      "          'seemingly': 1,\n",
      "          'modeled': 1,\n",
      "          'weird': 1,\n",
      "          'al': 1,\n",
      "          'yankovic': 1,\n",
      "          'richard': 1,\n",
      "          'giant': 1,\n",
      "          'poodles': 1,\n",
      "          'unenthusiastic': 1,\n",
      "          'demeanor': 1,\n",
      "          'wed': 1,\n",
      "          'probably': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'throw': 1,\n",
      "          'tomatoes': 1,\n",
      "          'fun': 1,\n",
      "          'actually': 1,\n",
      "          'character': 1,\n",
      "          'develop': 1,\n",
      "          'sympathy': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'may': 1,\n",
      "          'well': 1,\n",
      "          'drives': 1,\n",
      "          'cliff': 1,\n",
      "          'plummets': 1,\n",
      "          'canyon': 1,\n",
      "          'floor': 1,\n",
      "          'found': 1,\n",
      "          'eccentric': 1,\n",
      "          'doctor': 1,\n",
      "          'michael': 1,\n",
      "          'caton': 1,\n",
      "          'uses': 1,\n",
      "          'radical': 1,\n",
      "          'experimental': 1,\n",
      "          'procedure': 1,\n",
      "          'save': 1,\n",
      "          'implanting': 1,\n",
      "          'doofus': 1,\n",
      "          'various': 1,\n",
      "          'parts': 1,\n",
      "          'organs': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'develops': 1,\n",
      "          'heightened': 1,\n",
      "          'senses': 1,\n",
      "          'increased': 1,\n",
      "          'agility': 1,\n",
      "          'smell': 1,\n",
      "          'drugs': 1,\n",
      "          'hidden': 1,\n",
      "          'anywhere': 1,\n",
      "          'body': 1,\n",
      "          'swim': 1,\n",
      "          'dolphin': 1,\n",
      "          'run': 1,\n",
      "          'fast': 1,\n",
      "          'cheetah': 1,\n",
      "          'nimagine': 1,\n",
      "          'comedic': 1,\n",
      "          'possibilities': 1,\n",
      "          'arise': 1,\n",
      "          'operation': 1,\n",
      "          'enhanced': 1,\n",
      "          'abilities': 1,\n",
      "          'reap': 1,\n",
      "          'vengeance': 1,\n",
      "          'shunned': 1,\n",
      "          'spirit': 1,\n",
      "          'takes': 1,\n",
      "          'raunchy': 1,\n",
      "          'turn': 1,\n",
      "          'instead': 1,\n",
      "          'spends': 1,\n",
      "          'subdue': 1,\n",
      "          'satiate': 1,\n",
      "          'voracious': 1,\n",
      "          'appetite': 1,\n",
      "          'animalistic': 1,\n",
      "          'sexual': 1,\n",
      "          'urges': 1,\n",
      "          'ngoats': 1,\n",
      "          'beware': 1,\n",
      "          'also': 1,\n",
      "          'chases': 1,\n",
      "          'cats': 1,\n",
      "          'urinates': 1,\n",
      "          'mark': 1,\n",
      "          'territory': 1,\n",
      "          'growls': 1,\n",
      "          'enemies': 1,\n",
      "          'nwhat': 1,\n",
      "          'shouldve': 1,\n",
      "          'done': 1,\n",
      "          'stick': 1,\n",
      "          'head': 1,\n",
      "          'sand': 1,\n",
      "          'ostrich': 1,\n",
      "          'nequally': 1,\n",
      "          'tenuous': 1,\n",
      "          'running': 1,\n",
      "          'joke': 1,\n",
      "          'involves': 1,\n",
      "          'one': 1,\n",
      "          'friends': 1,\n",
      "          'guy': 1,\n",
      "          'torry': 1,\n",
      "          'constantly': 1,\n",
      "          'complains': 1,\n",
      "          'everyone': 1,\n",
      "          'treating': 1,\n",
      "          'nicely': 1,\n",
      "          'black': 1,\n",
      "          'n': 1,\n",
      "          'reverse': 1,\n",
      "          'racism': 1,\n",
      "          'declares': 1,\n",
      "          'blows': 1,\n",
      "          'smoke': 1,\n",
      "          'faces': 1,\n",
      "          'strangers': 1,\n",
      "          'none': 1,\n",
      "          'says': 1,\n",
      "          'anything': 1,\n",
      "          'element': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'first': 1,\n",
      "          'mentioned': 1,\n",
      "          'becomes': 1,\n",
      "          'increasingly': 1,\n",
      "          'trite': 1,\n",
      "          'every': 1,\n",
      "          'recurrence': 1,\n",
      "          'nyou': 1,\n",
      "          'dont': 1,\n",
      "          'wise': 1,\n",
      "          'owl': 1,\n",
      "          'realize': 1,\n",
      "          'tame': 1,\n",
      "          'nif': 1,\n",
      "          'theres': 1,\n",
      "          'reason': 1,\n",
      "          'colleen': 1,\n",
      "          'haskell': 1,\n",
      "          'makes': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'debut': 1,\n",
      "          'nremember': 1,\n",
      "          'nshe': 1,\n",
      "          'voted': 1,\n",
      "          'week': 1,\n",
      "          '11': 1,\n",
      "          '13week': 1,\n",
      "          'program': 1,\n",
      "          'survivor': 1,\n",
      "          'nhere': 1,\n",
      "          'plays': 1,\n",
      "          'marvins': 1,\n",
      "          'sunny': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'nwhile': 1,\n",
      "          'role': 1,\n",
      "          'required': 1,\n",
      "          'actual': 1,\n",
      "          'acting': 1,\n",
      "          'seemed': 1,\n",
      "          'comfortable': 1,\n",
      "          'even': 1,\n",
      "          'licks': 1,\n",
      "          'side': 1,\n",
      "          'face': 1,\n",
      "          'lapping': 1,\n",
      "          'dog': 1,\n",
      "          'yuck': 1,\n",
      "          'adorable': 1,\n",
      "          'disposition': 1,\n",
      "          'radiant': 1,\n",
      "          'smile': 1,\n",
      "          'playful': 1,\n",
      "          'innocence': 1,\n",
      "          'meg': 1,\n",
      "          'ryan': 1,\n",
      "          'making': 1,\n",
      "          'shes': 1,\n",
      "          'mediocre': 1,\n",
      "          'offering': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'character': 6,\n",
      "          'boss': 4,\n",
      "          'certainly': 4,\n",
      "          'one': 4,\n",
      "          'good': 3,\n",
      "          'jack': 3,\n",
      "          'mob': 3,\n",
      "          'shot': 3,\n",
      "          'nthere': 3,\n",
      "          'isnt': 3,\n",
      "          'nthe': 3,\n",
      "          'romeo': 2,\n",
      "          'bleeding': 2,\n",
      "          'wants': 2,\n",
      "          'reservoir': 2,\n",
      "          'dogs': 2,\n",
      "          'bad': 2,\n",
      "          'director': 2,\n",
      "          'whose': 2,\n",
      "          'previous': 2,\n",
      "          'credits': 2,\n",
      "          'films': 2,\n",
      "          'oldman': 2,\n",
      "          'lena': 2,\n",
      "          'olin': 2,\n",
      "          'combination': 2,\n",
      "          'something': 2,\n",
      "          'screenplay': 2,\n",
      "          'seem': 2,\n",
      "          'well': 2,\n",
      "          'ngary': 2,\n",
      "          'cheating': 2,\n",
      "          'wife': 2,\n",
      "          'obvious': 2,\n",
      "          'although': 2,\n",
      "          'doesnt': 2,\n",
      "          'provide': 2,\n",
      "          'insight': 2,\n",
      "          'njack': 2,\n",
      "          'hole': 2,\n",
      "          'money': 2,\n",
      "          'get': 2,\n",
      "          'performance': 2,\n",
      "          'also': 2,\n",
      "          'demarkov': 2,\n",
      "          'take': 2,\n",
      "          'falcone': 2,\n",
      "          'played': 2,\n",
      "          'sexy': 2,\n",
      "          'woman': 2,\n",
      "          'problems': 2,\n",
      "          'nthis': 2,\n",
      "          'still': 2,\n",
      "          'important': 2,\n",
      "          'nwhat': 2,\n",
      "          'romeos': 2,\n",
      "          'little': 2,\n",
      "          'makes': 2,\n",
      "          'around': 2,\n",
      "          'lewis': 2,\n",
      "          'friends': 2,\n",
      "          'funeral': 2,\n",
      "          'nfine': 2,\n",
      "          'goons': 2,\n",
      "          'gravesite': 2,\n",
      "          'shift': 2,\n",
      "          'carry': 1,\n",
      "          'unusual': 1,\n",
      "          'flavor': 1,\n",
      "          'lieutenant': 1,\n",
      "          'nwith': 1,\n",
      "          'peter': 1,\n",
      "          'medak': 1,\n",
      "          'include': 1,\n",
      "          'let': 1,\n",
      "          'krays': 1,\n",
      "          'topnotch': 1,\n",
      "          'actors': 1,\n",
      "          'gary': 1,\n",
      "          'seemed': 1,\n",
      "          'likely': 1,\n",
      "          'successful': 1,\n",
      "          'nthose': 1,\n",
      "          'mentioned': 1,\n",
      "          'however': 1,\n",
      "          'brought': 1,\n",
      "          'screen': 1,\n",
      "          'solid': 1,\n",
      "          'wellwritten': 1,\n",
      "          'ncall': 1,\n",
      "          'cynical': 1,\n",
      "          'jobs': 1,\n",
      "          'writer': 1,\n",
      "          'producer': 1,\n",
      "          'dont': 1,\n",
      "          'mix': 1,\n",
      "          'plays': 1,\n",
      "          'grimaldi': 1,\n",
      "          'cop': 1,\n",
      "          'turned': 1,\n",
      "          'selling': 1,\n",
      "          'information': 1,\n",
      "          'nhis': 1,\n",
      "          'enough': 1,\n",
      "          'obtain': 1,\n",
      "          'nickname': 1,\n",
      "          'name': 1,\n",
      "          'analogy': 1,\n",
      "          'shakespearean': 1,\n",
      "          'become': 1,\n",
      "          'addicted': 1,\n",
      "          'feeding': 1,\n",
      "          'ground': 1,\n",
      "          'stores': 1,\n",
      "          'payoff': 1,\n",
      "          'nwhen': 1,\n",
      "          'realizes': 1,\n",
      "          'colleagues': 1,\n",
      "          'feebly': 1,\n",
      "          'attempts': 1,\n",
      "          'oldmans': 1,\n",
      "          'disappointingly': 1,\n",
      "          'weak': 1,\n",
      "          'seems': 1,\n",
      "          'nearly': 1,\n",
      "          'bored': 1,\n",
      "          'nin': 1,\n",
      "          'process': 1,\n",
      "          'gets': 1,\n",
      "          'tangledup': 1,\n",
      "          'mona': 1,\n",
      "          'russian': 1,\n",
      "          'mobsterette': 1,\n",
      "          'territory': 1,\n",
      "          'top': 1,\n",
      "          'adequately': 1,\n",
      "          'roy': 1,\n",
      "          'scheider': 1,\n",
      "          'ndemarkov': 1,\n",
      "          'tough': 1,\n",
      "          'tremendously': 1,\n",
      "          'seemingly': 1,\n",
      "          'maneuvering': 1,\n",
      "          'within': 1,\n",
      "          'world': 1,\n",
      "          'linda': 1,\n",
      "          'hamilton': 1,\n",
      "          'arnold': 1,\n",
      "          'schwarznegger': 1,\n",
      "          'terminator': 1,\n",
      "          '2': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'seeing': 1,\n",
      "          'quite': 1,\n",
      "          'like': 1,\n",
      "          'nafter': 1,\n",
      "          'handcuffed': 1,\n",
      "          'thrown': 1,\n",
      "          'back': 1,\n",
      "          'seat': 1,\n",
      "          'car': 1,\n",
      "          'manages': 1,\n",
      "          'cause': 1,\n",
      "          'accident': 1,\n",
      "          'kick': 1,\n",
      "          'windshield': 1,\n",
      "          'legs': 1,\n",
      "          'grab': 1,\n",
      "          'suitcase': 1,\n",
      "          'full': 1,\n",
      "          'plus': 1,\n",
      "          'documentation': 1,\n",
      "          'climb': 1,\n",
      "          'rubble': 1,\n",
      "          'land': 1,\n",
      "          'leg': 1,\n",
      "          'succeed': 1,\n",
      "          'running': 1,\n",
      "          'safety': 1,\n",
      "          'nlena': 1,\n",
      "          'olins': 1,\n",
      "          'glimmer': 1,\n",
      "          'dismal': 1,\n",
      "          'nanabella': 1,\n",
      "          'sciorra': 1,\n",
      "          'wasted': 1,\n",
      "          'role': 1,\n",
      "          'nshes': 1,\n",
      "          'depressed': 1,\n",
      "          'references': 1,\n",
      "          'mopes': 1,\n",
      "          'house': 1,\n",
      "          'njuliette': 1,\n",
      "          'girlfriend': 1,\n",
      "          'treated': 1,\n",
      "          'cliche': 1,\n",
      "          'attitudes': 1,\n",
      "          'ms': 1,\n",
      "          'portrayal': 1,\n",
      "          'didnt': 1,\n",
      "          'improve': 1,\n",
      "          'nboth': 1,\n",
      "          'women': 1,\n",
      "          'anything': 1,\n",
      "          'attractive': 1,\n",
      "          'npoorly': 1,\n",
      "          'developed': 1,\n",
      "          'characters': 1,\n",
      "          'aside': 1,\n",
      "          'suffers': 1,\n",
      "          'several': 1,\n",
      "          'logistical': 1,\n",
      "          'nit': 1,\n",
      "          'discouraging': 1,\n",
      "          'watch': 1,\n",
      "          'want': 1,\n",
      "          'shout': 1,\n",
      "          'main': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'attend': 1,\n",
      "          'hang': 1,\n",
      "          'background': 1,\n",
      "          'scopeout': 1,\n",
      "          'scene': 1,\n",
      "          'spots': 1,\n",
      "          'big': 1,\n",
      "          'proceed': 1,\n",
      "          'nhe': 1,\n",
      "          'brushes': 1,\n",
      "          'telling': 1,\n",
      "          'feeling': 1,\n",
      "          'strolls': 1,\n",
      "          'nwhy': 1,\n",
      "          'ready': 1,\n",
      "          'threatened': 1,\n",
      "          'simply': 1,\n",
      "          'takes': 1,\n",
      "          'opportunity': 1,\n",
      "          'issue': 1,\n",
      "          'threats': 1,\n",
      "          'ordering': 1,\n",
      "          'jacks': 1,\n",
      "          'toes': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'werent': 1,\n",
      "          'worried': 1,\n",
      "          'federal': 1,\n",
      "          'agents': 1,\n",
      "          'lingering': 1,\n",
      "          'heres': 1,\n",
      "          'another': 1,\n",
      "          'setup': 1,\n",
      "          'death': 1,\n",
      "          'cutting': 1,\n",
      "          'arm': 1,\n",
      "          'circular': 1,\n",
      "          'saw': 1,\n",
      "          'nshe': 1,\n",
      "          'proceeded': 1,\n",
      "          'set': 1,\n",
      "          'place': 1,\n",
      "          'fire': 1,\n",
      "          'nwouldnt': 1,\n",
      "          'flames': 1,\n",
      "          'burn': 1,\n",
      "          'fingerprints': 1,\n",
      "          'narent': 1,\n",
      "          'dental': 1,\n",
      "          'records': 1,\n",
      "          'nas': 1,\n",
      "          'bright': 1,\n",
      "          'resourceful': 1,\n",
      "          'supposed': 1,\n",
      "          'couldnt': 1,\n",
      "          'come': 1,\n",
      "          'better': 1,\n",
      "          'plot': 1,\n",
      "          'n': 1,\n",
      "          'took': 1,\n",
      "          'time': 1,\n",
      "          'goodfitting': 1,\n",
      "          'functional': 1,\n",
      "          'prosthesis': 1,\n",
      "          'nlack': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'adds': 1,\n",
      "          'even': 1,\n",
      "          'add': 1,\n",
      "          'large': 1,\n",
      "          'details': 1,\n",
      "          'consistency': 1,\n",
      "          'storyline': 1,\n",
      "          'nnot': 1,\n",
      "          'much': 1,\n",
      "          'sense': 1,\n",
      "          'direction': 1,\n",
      "          'lacks': 1,\n",
      "          'cohesion': 1,\n",
      "          'surprising': 1,\n",
      "          'impeccable': 1,\n",
      "          'moods': 1,\n",
      "          'styles': 1,\n",
      "          'decide': 1,\n",
      "          'serious': 1,\n",
      "          'satire': 1,\n",
      "          'nso': 1,\n",
      "          'diva': 1,\n",
      "          'ntheres': 1,\n",
      "          'plenty': 1,\n",
      "          'tear': 1,\n",
      "          'apart': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'someone': 1,\n",
      "          'hasnt': 1,\n",
      "          'seen': 1,\n",
      "          'wait': 1,\n",
      "          'comes': 1,\n",
      "          'video': 1,\n",
      "          'quotable': 1,\n",
      "          'lines': 1,\n",
      "          'would': 1,\n",
      "          'campy': 1,\n",
      "          'evening': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'nits': 1,\n",
      "          'boring': 1,\n",
      "          'intelligent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          '54': 7,\n",
      "          'myers': 6,\n",
      "          'characters': 5,\n",
      "          'boogie': 5,\n",
      "          'nights': 5,\n",
      "          'christopher': 5,\n",
      "          'dull': 4,\n",
      "          'perfunctory': 4,\n",
      "          'uninspired': 4,\n",
      "          'boring': 4,\n",
      "          'ni': 4,\n",
      "          'theyre': 4,\n",
      "          'dont': 4,\n",
      "          'nits': 4,\n",
      "          'performance': 4,\n",
      "          'shane': 4,\n",
      "          'n54': 3,\n",
      "          'nthere': 3,\n",
      "          'depth': 3,\n",
      "          'mark': 3,\n",
      "          'production': 3,\n",
      "          'last': 3,\n",
      "          'one': 3,\n",
      "          'young': 3,\n",
      "          'phillippe': 3,\n",
      "          'friends': 3,\n",
      "          'scene': 3,\n",
      "          'really': 3,\n",
      "          'role': 3,\n",
      "          'doesnt': 3,\n",
      "          'na': 2,\n",
      "          'nothing': 2,\n",
      "          'intelligence': 2,\n",
      "          'insight': 2,\n",
      "          'scenes': 2,\n",
      "          'interest': 2,\n",
      "          'nand': 2,\n",
      "          'array': 2,\n",
      "          'played': 2,\n",
      "          'wrong': 2,\n",
      "          'nthe': 2,\n",
      "          'picture': 2,\n",
      "          'know': 2,\n",
      "          'job': 2,\n",
      "          'business': 2,\n",
      "          'club': 2,\n",
      "          'work': 2,\n",
      "          'even': 2,\n",
      "          'disco': 2,\n",
      "          'kind': 2,\n",
      "          'interesting': 2,\n",
      "          'character': 2,\n",
      "          'rubell': 2,\n",
      "          'studio': 2,\n",
      "          'good': 2,\n",
      "          'gets': 2,\n",
      "          'greg': 2,\n",
      "          'julie': 2,\n",
      "          'black': 2,\n",
      "          'drugs': 2,\n",
      "          'never': 2,\n",
      "          'fact': 2,\n",
      "          'isnt': 2,\n",
      "          'dumb': 2,\n",
      "          'without': 2,\n",
      "          'nthis': 2,\n",
      "          'talented': 2,\n",
      "          'actress': 2,\n",
      "          'almost': 2,\n",
      "          'seems': 2,\n",
      "          'help': 2,\n",
      "          'rest': 2,\n",
      "          'nin': 2,\n",
      "          'greater': 1,\n",
      "          'writer': 1,\n",
      "          'might': 1,\n",
      "          'created': 1,\n",
      "          'lyrical': 1,\n",
      "          'sentence': 1,\n",
      "          'adjectives': 1,\n",
      "          'flowing': 1,\n",
      "          'lovely': 1,\n",
      "          'arangements': 1,\n",
      "          'soaring': 1,\n",
      "          'metaphors': 1,\n",
      "          'however': 1,\n",
      "          'would': 1,\n",
      "          'rather': 1,\n",
      "          'cut': 1,\n",
      "          'chase': 1,\n",
      "          'glimpse': 1,\n",
      "          'shimmer': 1,\n",
      "          'electricity': 1,\n",
      "          'moment': 1,\n",
      "          'story': 1,\n",
      "          'subplots': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'features': 1,\n",
      "          'bland': 1,\n",
      "          'actors': 1,\n",
      "          'think': 1,\n",
      "          'years': 1,\n",
      "          'nthey': 1,\n",
      "          'assembled': 1,\n",
      "          'nbased': 1,\n",
      "          'got': 1,\n",
      "          'supposed': 1,\n",
      "          'amazing': 1,\n",
      "          'world': 1,\n",
      "          'dance': 1,\n",
      "          'name': 1,\n",
      "          'originated': 1,\n",
      "          '70s': 1,\n",
      "          'closed': 1,\n",
      "          '80s': 1,\n",
      "          'went': 1,\n",
      "          'released': 1,\n",
      "          'managed': 1,\n",
      "          'plagiarize': 1,\n",
      "          'paul': 1,\n",
      "          'thomas': 1,\n",
      "          'andersons': 1,\n",
      "          'brilliant': 1,\n",
      "          'every': 1,\n",
      "          'possible': 1,\n",
      "          'way': 1,\n",
      "          'framework': 1,\n",
      "          'plot': 1,\n",
      "          'style': 1,\n",
      "          'cinematography': 1,\n",
      "          'nwhat': 1,\n",
      "          'lacks': 1,\n",
      "          'everything': 1,\n",
      "          'made': 1,\n",
      "          'great': 1,\n",
      "          'energy': 1,\n",
      "          'fascinating': 1,\n",
      "          'challenging': 1,\n",
      "          'themes': 1,\n",
      "          'cant': 1,\n",
      "          'measure': 1,\n",
      "          'days': 1,\n",
      "          'flawed': 1,\n",
      "          'still': 1,\n",
      "          'smart': 1,\n",
      "          'entertaining': 1,\n",
      "          'remarkably': 1,\n",
      "          'bad': 1,\n",
      "          'timing': 1,\n",
      "          'id': 1,\n",
      "          'say': 1,\n",
      "          'release': 1,\n",
      "          'tedious': 1,\n",
      "          'couple': 1,\n",
      "          'noteworthy': 1,\n",
      "          'pictures': 1,\n",
      "          'exaggerated': 1,\n",
      "          'though': 1,\n",
      "          'terrific': 1,\n",
      "          'nthat': 1,\n",
      "          'steve': 1,\n",
      "          'perceptiveness': 1,\n",
      "          'mike': 1,\n",
      "          'limp': 1,\n",
      "          'deserves': 1,\n",
      "          'nsteve': 1,\n",
      "          'owner': 1,\n",
      "          'focused': 1,\n",
      "          'could': 1,\n",
      "          'forced': 1,\n",
      "          'wreck': 1,\n",
      "          'nalas': 1,\n",
      "          'instead': 1,\n",
      "          'guided': 1,\n",
      "          'endure': 1,\n",
      "          'trials': 1,\n",
      "          'man': 1,\n",
      "          'named': 1,\n",
      "          'ryan': 1,\n",
      "          'goingnowhere': 1,\n",
      "          'new': 1,\n",
      "          'jersey': 1,\n",
      "          'teen': 1,\n",
      "          'thanks': 1,\n",
      "          'rubells': 1,\n",
      "          'homosexual': 1,\n",
      "          'impulses': 1,\n",
      "          'meets': 1,\n",
      "          'uninteresting': 1,\n",
      "          'coworker': 1,\n",
      "          'brecklin': 1,\n",
      "          'meyer': 1,\n",
      "          'wife': 1,\n",
      "          'anita': 1,\n",
      "          'salma': 1,\n",
      "          'hayek': 1,\n",
      "          'course': 1,\n",
      "          'love': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'nshane': 1,\n",
      "          'innocent': 1,\n",
      "          'fool': 1,\n",
      "          'beginning': 1,\n",
      "          'reasonably': 1,\n",
      "          'sturdy': 1,\n",
      "          'home': 1,\n",
      "          'life': 1,\n",
      "          'n': 1,\n",
      "          'father': 1,\n",
      "          'border': 1,\n",
      "          'heather': 1,\n",
      "          'matarazzo': 1,\n",
      "          'plays': 1,\n",
      "          'sister': 1,\n",
      "          'pushes': 1,\n",
      "          'screen': 1,\n",
      "          'nbut': 1,\n",
      "          'decides': 1,\n",
      "          'envelop': 1,\n",
      "          'succumb': 1,\n",
      "          'peer': 1,\n",
      "          'pressure': 1,\n",
      "          'nwhy': 1,\n",
      "          'push': 1,\n",
      "          'explained': 1,\n",
      "          'questioned': 1,\n",
      "          'superficial': 1,\n",
      "          'ways': 1,\n",
      "          'mad': 1,\n",
      "          'hes': 1,\n",
      "          'elevated': 1,\n",
      "          'bartender': 1,\n",
      "          'status': 1,\n",
      "          'single': 1,\n",
      "          'conflict': 1,\n",
      "          'takes': 1,\n",
      "          'center': 1,\n",
      "          'stage': 1,\n",
      "          'except': 1,\n",
      "          'unexplored': 1,\n",
      "          'reservation': 1,\n",
      "          'works': 1,\n",
      "          'nmost': 1,\n",
      "          'dialogue': 1,\n",
      "          'inane': 1,\n",
      "          'ntheres': 1,\n",
      "          'late': 1,\n",
      "          'confronts': 1,\n",
      "          'next': 1,\n",
      "          'arminarm': 1,\n",
      "          'bit': 1,\n",
      "          'development': 1,\n",
      "          'nthen': 1,\n",
      "          'kissing': 1,\n",
      "          'bowling': 1,\n",
      "          'alley': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'material': 1,\n",
      "          'thrown': 1,\n",
      "          'minute': 1,\n",
      "          'well': 1,\n",
      "          'past': 1,\n",
      "          'onehour': 1,\n",
      "          'long': 1,\n",
      "          'begin': 1,\n",
      "          'ncampbell': 1,\n",
      "          'needs': 1,\n",
      "          'gives': 1,\n",
      "          'little': 1,\n",
      "          'presence': 1,\n",
      "          'whatsoever': 1,\n",
      "          'pales': 1,\n",
      "          'comparison': 1,\n",
      "          'whalbergs': 1,\n",
      "          'starmaking': 1,\n",
      "          'nhe': 1,\n",
      "          'misguided': 1,\n",
      "          'voice': 1,\n",
      "          'changes': 1,\n",
      "          'tone': 1,\n",
      "          'guess': 1,\n",
      "          'picked': 1,\n",
      "          'color': 1,\n",
      "          'hair': 1,\n",
      "          'shape': 1,\n",
      "          'body': 1,\n",
      "          'pretty': 1,\n",
      "          'lanky': 1,\n",
      "          'nhes': 1,\n",
      "          'lead': 1,\n",
      "          'forgotten': 1,\n",
      "          'develop': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'shanes': 1,\n",
      "          'notable': 1,\n",
      "          'trait': 1,\n",
      "          'stupid': 1,\n",
      "          'fake': 1,\n",
      "          'accent': 1,\n",
      "          'performances': 1,\n",
      "          'wasted': 1,\n",
      "          'nhayek': 1,\n",
      "          'energetic': 1,\n",
      "          'nmeyer': 1,\n",
      "          'endearing': 1,\n",
      "          'allowed': 1,\n",
      "          'deeper': 1,\n",
      "          'cardboard': 1,\n",
      "          'nonly': 1,\n",
      "          'sheer': 1,\n",
      "          'force': 1,\n",
      "          'talent': 1,\n",
      "          'manages': 1,\n",
      "          'rise': 1,\n",
      "          'christophers': 1,\n",
      "          'wadingpool': 1,\n",
      "          'script': 1,\n",
      "          'nrubell': 1,\n",
      "          'written': 1,\n",
      "          'depthless': 1,\n",
      "          'enough': 1,\n",
      "          'inject': 1,\n",
      "          'subtleties': 1,\n",
      "          'round': 1,\n",
      "          'sole': 1,\n",
      "          'reason': 1,\n",
      "          'see': 1,\n",
      "          'make': 1,\n",
      "          'wish': 1,\n",
      "          'revolved': 1,\n",
      "          'around': 1,\n",
      "          'nive': 1,\n",
      "          'read': 1,\n",
      "          'recreated': 1,\n",
      "          'detail': 1,\n",
      "          'nfrankly': 1,\n",
      "          'care': 1,\n",
      "          'easy': 1,\n",
      "          'recreate': 1,\n",
      "          'something': 1,\n",
      "          'technical': 1,\n",
      "          'like': 1,\n",
      "          'fairly': 1,\n",
      "          'skilled': 1,\n",
      "          'designer': 1,\n",
      "          'carpenters': 1,\n",
      "          'manage': 1,\n",
      "          'task': 1,\n",
      "          'nbesides': 1,\n",
      "          'keeps': 1,\n",
      "          'lights': 1,\n",
      "          'low': 1,\n",
      "          'sets': 1,\n",
      "          'invisible': 1,\n",
      "          'anyway': 1,\n",
      "          'naside': 1,\n",
      "          'complete': 1,\n",
      "          'failure': 1,\n",
      "          'nsome': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'comparisons': 1,\n",
      "          'unfair': 1,\n",
      "          'obvious': 1,\n",
      "          'event': 1,\n",
      "          'pallid': 1,\n",
      "          'contrast': 1,\n",
      "          'nit': 1,\n",
      "          'mindless': 1,\n",
      "          'entertainment': 1,\n",
      "          'shallow': 1,\n",
      "          'escapist': 1,\n",
      "          'viewers': 1,\n",
      "          'likely': 1,\n",
      "          'dismiss': 1,\n",
      "          'nso': 1,\n",
      "          'forget': 1,\n",
      "          'key': 1,\n",
      "          'words': 1,\n",
      "          'neverything': 1,\n",
      "          'else': 1,\n",
      "          'said': 1,\n",
      "          'padding': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'film': 6,\n",
      "          'babies': 6,\n",
      "          'baby': 4,\n",
      "          'geniuses': 4,\n",
      "          'would': 4,\n",
      "          'ni': 4,\n",
      "          'like': 3,\n",
      "          'may': 3,\n",
      "          'monkeys': 3,\n",
      "          'plot': 3,\n",
      "          'going': 3,\n",
      "          'avoid': 3,\n",
      "          'effects': 2,\n",
      "          'nyou': 2,\n",
      "          'life': 2,\n",
      "          'existence': 2,\n",
      "          'nwhen': 2,\n",
      "          'think': 2,\n",
      "          'behind': 2,\n",
      "          'director': 2,\n",
      "          'clarks': 2,\n",
      "          'monkey': 2,\n",
      "          'heep': 2,\n",
      "          'secrets': 2,\n",
      "          'using': 2,\n",
      "          'sylvester': 2,\n",
      "          'home': 2,\n",
      "          'nthere': 2,\n",
      "          'talking': 2,\n",
      "          'able': 2,\n",
      "          'cute': 2,\n",
      "          'suppose': 2,\n",
      "          'experience': 1,\n",
      "          'certain': 1,\n",
      "          'average': 1,\n",
      "          'moviegoer': 1,\n",
      "          'scarred': 1,\n",
      "          'seeing': 1,\n",
      "          'petrified': 1,\n",
      "          'piece': 1,\n",
      "          'garbage': 1,\n",
      "          'disarmingly': 1,\n",
      "          'horrible': 1,\n",
      "          'cause': 1,\n",
      "          'ponder': 1,\n",
      "          'hollywood': 1,\n",
      "          'screenwriters': 1,\n",
      "          'picture': 1,\n",
      "          'room': 1,\n",
      "          'full': 1,\n",
      "          'pounding': 1,\n",
      "          'typewriters': 1,\n",
      "          'scratching': 1,\n",
      "          'nall': 1,\n",
      "          'combine': 1,\n",
      "          'efforts': 1,\n",
      "          'hop': 1,\n",
      "          'cab': 1,\n",
      "          'take': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'downtown': 1,\n",
      "          'bob': 1,\n",
      "          'office': 1,\n",
      "          'designated': 1,\n",
      "          'explains': 1,\n",
      "          'jumping': 1,\n",
      "          'desk': 1,\n",
      "          'flailing': 1,\n",
      "          'arms': 1,\n",
      "          'shrieking': 1,\n",
      "          'appears': 1,\n",
      "          'deep': 1,\n",
      "          'thought': 1,\n",
      "          'slams': 1,\n",
      "          'fist': 1,\n",
      "          'desktop': 1,\n",
      "          'exclaims': 1,\n",
      "          'love': 1,\n",
      "          'writing': 1,\n",
      "          'project': 1,\n",
      "          'embarrassing': 1,\n",
      "          'nfor': 1,\n",
      "          'amusement': 1,\n",
      "          'explain': 1,\n",
      "          'ndr': 1,\n",
      "          'kinder': 1,\n",
      "          'kathleen': 1,\n",
      "          'turner': 1,\n",
      "          'dr': 1,\n",
      "          'christopher': 1,\n",
      "          'lloyd': 1,\n",
      "          'two': 1,\n",
      "          'coldhearted': 1,\n",
      "          'executives': 1,\n",
      "          'institute': 1,\n",
      "          'peculiar': 1,\n",
      "          'studies': 1,\n",
      "          'nas': 1,\n",
      "          'story': 1,\n",
      "          'goes': 1,\n",
      "          'ancient': 1,\n",
      "          'myth': 1,\n",
      "          'explaining': 1,\n",
      "          'ages': 1,\n",
      "          '2': 1,\n",
      "          'know': 1,\n",
      "          'world': 1,\n",
      "          'previous': 1,\n",
      "          'experiences': 1,\n",
      "          'move': 1,\n",
      "          'past': 1,\n",
      "          'phase': 1,\n",
      "          'become': 1,\n",
      "          'drooling': 1,\n",
      "          'toddler': 1,\n",
      "          'nkinder': 1,\n",
      "          'want': 1,\n",
      "          'unlock': 1,\n",
      "          'test': 1,\n",
      "          'namely': 1,\n",
      "          'little': 1,\n",
      "          'sly': 1,\n",
      "          'short': 1,\n",
      "          'break': 1,\n",
      "          'given': 1,\n",
      "          'situation': 1,\n",
      "          'efficiently': 1,\n",
      "          'right': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'team': 1,\n",
      "          'much': 1,\n",
      "          'crap': 1,\n",
      "          'derived': 1,\n",
      "          'premise': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'virtually': 1,\n",
      "          'identical': 1,\n",
      "          'look': 1,\n",
      "          'whos': 1,\n",
      "          'n': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'league': 1,\n",
      "          'determine': 1,\n",
      "          'quality': 1,\n",
      "          'examining': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'nsylvester': 1,\n",
      "          'broken': 1,\n",
      "          'managed': 1,\n",
      "          'elude': 1,\n",
      "          'several': 1,\n",
      "          'security': 1,\n",
      "          'guards': 1,\n",
      "          'amazing': 1,\n",
      "          'intellect': 1,\n",
      "          'kungfu': 1,\n",
      "          'tactics': 1,\n",
      "          'nquestion': 1,\n",
      "          'obvious': 1,\n",
      "          'supersmart': 1,\n",
      "          'fight': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'adults': 1,\n",
      "          'furiously': 1,\n",
      "          'beaten': 1,\n",
      "          'youngsters': 1,\n",
      "          'diapers': 1,\n",
      "          'nits': 1,\n",
      "          'shock': 1,\n",
      "          'writers': 1,\n",
      "          'stoop': 1,\n",
      "          'low': 1,\n",
      "          'draw': 1,\n",
      "          'cheap': 1,\n",
      "          'laughs': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          'familiar': 1,\n",
      "          'alone': 1,\n",
      "          'formula': 1,\n",
      "          'also': 1,\n",
      "          'found': 1,\n",
      "          'disturbing': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'attitude': 1,\n",
      "          'endless': 1,\n",
      "          '90s': 1,\n",
      "          'knowledge': 1,\n",
      "          'quoting': 1,\n",
      "          'numerous': 1,\n",
      "          'movies': 1,\n",
      "          'insulting': 1,\n",
      "          'adult': 1,\n",
      "          'captors': 1,\n",
      "          'similar': 1,\n",
      "          'animals': 1,\n",
      "          'babe': 1,\n",
      "          'pathetic': 1,\n",
      "          'editing': 1,\n",
      "          'disaster': 1,\n",
      "          'jokes': 1,\n",
      "          'never': 1,\n",
      "          'funny': 1,\n",
      "          'reason': 1,\n",
      "          'viewers': 1,\n",
      "          'vomiting': 1,\n",
      "          'argument': 1,\n",
      "          'admit': 1,\n",
      "          'smiling': 1,\n",
      "          'times': 1,\n",
      "          'nother': 1,\n",
      "          'instances': 1,\n",
      "          'though': 1,\n",
      "          'howling': 1,\n",
      "          'laughter': 1,\n",
      "          'due': 1,\n",
      "          'inane': 1,\n",
      "          'stupidity': 1,\n",
      "          'script': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'personality': 1,\n",
      "          'whatsoever': 1,\n",
      "          'entire': 1,\n",
      "          'based': 1,\n",
      "          'punch': 1,\n",
      "          'lines': 1,\n",
      "          'npeter': 1,\n",
      "          'macnicol': 1,\n",
      "          'kim': 1,\n",
      "          'cattrall': 1,\n",
      "          'unwilling': 1,\n",
      "          'couple': 1,\n",
      "          'adopted': 1,\n",
      "          'sylvesters': 1,\n",
      "          'twin': 1,\n",
      "          'miscast': 1,\n",
      "          'nthen': 1,\n",
      "          'dont': 1,\n",
      "          'performer': 1,\n",
      "          'could': 1,\n",
      "          'handle': 1,\n",
      "          'uneven': 1,\n",
      "          'material': 1,\n",
      "          'without': 1,\n",
      "          'looking': 1,\n",
      "          'incredibly': 1,\n",
      "          'stupid': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'dom': 1,\n",
      "          'deluise': 1,\n",
      "          'plays': 1,\n",
      "          'fellow': 1,\n",
      "          'gets': 1,\n",
      "          'hit': 1,\n",
      "          'crotch': 1,\n",
      "          'wrench': 1,\n",
      "          'hahaha': 1,\n",
      "          'costs': 1,\n",
      "          'ninstead': 1,\n",
      "          'watching': 1,\n",
      "          'recommended': 1,\n",
      "          'filling': 1,\n",
      "          'bathtub': 1,\n",
      "          'cement': 1,\n",
      "          'snorkeling': 1,\n",
      "          'perhaps': 1,\n",
      "          'consider': 1,\n",
      "          'diving': 1,\n",
      "          'sharkinfested': 1,\n",
      "          'waters': 1,\n",
      "          'nanything': 1,\n",
      "          'painful': 1,\n",
      "          'movie': 1,\n",
      "          'final': 1,\n",
      "          'line': 1,\n",
      "          'spoken': 1,\n",
      "          'bratty': 1,\n",
      "          'im': 1,\n",
      "          'sequel': 1,\n",
      "          'less': 1,\n",
      "          '20': 1,\n",
      "          'mill': 1,\n",
      "          'theyre': 1,\n",
      "          'nuts': 1,\n",
      "          'nsequel': 1,\n",
      "          'nplease': 1,\n",
      "          'mercy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'palma': 5,\n",
      "          'de': 4,\n",
      "          'nit': 4,\n",
      "          'film': 4,\n",
      "          'great': 3,\n",
      "          'nthe': 3,\n",
      "          'hard': 3,\n",
      "          'achievement': 3,\n",
      "          'space': 3,\n",
      "          'youre': 3,\n",
      "          'problem': 2,\n",
      "          'making': 2,\n",
      "          'brian': 2,\n",
      "          'live': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'nand': 2,\n",
      "          'result': 2,\n",
      "          'apollo': 2,\n",
      "          '13': 2,\n",
      "          'slowly': 2,\n",
      "          'mars': 2,\n",
      "          'expedition': 2,\n",
      "          'another': 2,\n",
      "          'one': 2,\n",
      "          'find': 2,\n",
      "          'plot': 2,\n",
      "          'films': 2,\n",
      "          'seem': 2,\n",
      "          'thought': 2,\n",
      "          'like': 2,\n",
      "          'several': 2,\n",
      "          'would': 2,\n",
      "          'ni': 2,\n",
      "          'since': 2,\n",
      "          'youll': 2,\n",
      "          'supposed': 2,\n",
      "          'cry': 2,\n",
      "          'see': 2,\n",
      "          'never': 2,\n",
      "          'nif': 2,\n",
      "          'houston': 1,\n",
      "          'serious': 1,\n",
      "          'nafter': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'lot': 1,\n",
      "          'nby': 1,\n",
      "          'epic': 1,\n",
      "          'inviting': 1,\n",
      "          'cast': 1,\n",
      "          'talented': 1,\n",
      "          'crew': 1,\n",
      "          'hopes': 1,\n",
      "          'reach': 1,\n",
      "          'modern': 1,\n",
      "          'audience': 1,\n",
      "          'possibilities': 1,\n",
      "          'certainly': 1,\n",
      "          'disaster': 1,\n",
      "          'nstarting': 1,\n",
      "          'near': 1,\n",
      "          'future': 1,\n",
      "          'prologue': 1,\n",
      "          'copied': 1,\n",
      "          'builds': 1,\n",
      "          'story': 1,\n",
      "          'human': 1,\n",
      "          'race': 1,\n",
      "          'already': 1,\n",
      "          'set': 1,\n",
      "          'foot': 1,\n",
      "          'na': 1,\n",
      "          'research': 1,\n",
      "          'vanished': 1,\n",
      "          'without': 1,\n",
      "          'trace': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'sent': 1,\n",
      "          'happened': 1,\n",
      "          'nthis': 1,\n",
      "          'basically': 1,\n",
      "          'whole': 1,\n",
      "          'nso': 1,\n",
      "          'imagine': 1,\n",
      "          'stretched': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'nbut': 1,\n",
      "          'manages': 1,\n",
      "          'good': 1,\n",
      "          'nas': 1,\n",
      "          'follow': 1,\n",
      "          'watch': 1,\n",
      "          'float': 1,\n",
      "          'hardest': 1,\n",
      "          'thing': 1,\n",
      "          'stay': 1,\n",
      "          'awake': 1,\n",
      "          'major': 1,\n",
      "          'tries': 1,\n",
      "          'clever': 1,\n",
      "          'ndavid': 1,\n",
      "          'mamets': 1,\n",
      "          'dialogue': 1,\n",
      "          'trying': 1,\n",
      "          'natural': 1,\n",
      "          'distant': 1,\n",
      "          'simply': 1,\n",
      "          'fake': 1,\n",
      "          'nde': 1,\n",
      "          'mamet': 1,\n",
      "          'wanted': 1,\n",
      "          'combine': 1,\n",
      "          'action': 1,\n",
      "          'provoking': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'mutation': 1,\n",
      "          'kubricks': 1,\n",
      "          '2001': 1,\n",
      "          'odyssey': 1,\n",
      "          'godzilla': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'time': 1,\n",
      "          'pass': 1,\n",
      "          'creators': 1,\n",
      "          'inserted': 1,\n",
      "          'refreshing': 1,\n",
      "          'scientific': 1,\n",
      "          'details': 1,\n",
      "          'convince': 1,\n",
      "          'halfcrazed': 1,\n",
      "          'frog': 1,\n",
      "          'consists': 1,\n",
      "          'multiple': 1,\n",
      "          'copies': 1,\n",
      "          'direct': 1,\n",
      "          'rippoffs': 1,\n",
      "          'stories': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'presents': 1,\n",
      "          'almost': 1,\n",
      "          'original': 1,\n",
      "          'idea': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'uncovered': 1,\n",
      "          'stupidity': 1,\n",
      "          'cant': 1,\n",
      "          'even': 1,\n",
      "          'call': 1,\n",
      "          'predictable': 1,\n",
      "          'healthy': 1,\n",
      "          'imagination': 1,\n",
      "          'come': 1,\n",
      "          'something': 1,\n",
      "          'nsometimes': 1,\n",
      "          'gets': 1,\n",
      "          'cheesy': 1,\n",
      "          'start': 1,\n",
      "          'laughing': 1,\n",
      "          'laugh': 1,\n",
      "          'nyoull': 1,\n",
      "          'enormous': 1,\n",
      "          'sandstorms': 1,\n",
      "          'hear': 1,\n",
      "          'mysterious': 1,\n",
      "          'sounds': 1,\n",
      "          'last': 1,\n",
      "          'least': 1,\n",
      "          'constantly': 1,\n",
      "          'surprising': 1,\n",
      "          'tour': 1,\n",
      "          'alien': 1,\n",
      "          'nits': 1,\n",
      "          'really': 1,\n",
      "          'comparisons': 1,\n",
      "          'experience': 1,\n",
      "          'know': 1,\n",
      "          'ive': 1,\n",
      "          'said': 1,\n",
      "          'lost': 1,\n",
      "          'actually': 1,\n",
      "          'better': 1,\n",
      "          'nthats': 1,\n",
      "          'ndirector': 1,\n",
      "          'stroke': 1,\n",
      "          'gold': 1,\n",
      "          'untouchables': 1,\n",
      "          'became': 1,\n",
      "          'instant': 1,\n",
      "          'american': 1,\n",
      "          'classic': 1,\n",
      "          'remembered': 1,\n",
      "          'failures': 1,\n",
      "          'forgotten': 1,\n",
      "          'nhell': 1,\n",
      "          'fight': 1,\n",
      "          'day': 1,\n",
      "          'send': 1,\n",
      "          'actors': 1,\n",
      "          'condolences': 1,\n",
      "          'truly': 1,\n",
      "          'try': 1,\n",
      "          'transform': 1,\n",
      "          'undeveloped': 1,\n",
      "          'dull': 1,\n",
      "          'characters': 1,\n",
      "          'cinematography': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'decent': 1,\n",
      "          '254': 1,\n",
      "          'people': 1,\n",
      "          'rate': 1,\n",
      "          '210': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'work': 1,\n",
      "          'vain': 1,\n",
      "          'problems': 1,\n",
      "          'insomnia': 1,\n",
      "          'recommend': 1,\n",
      "          'asleep': 1,\n",
      "          'within': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'consult': 1,\n",
      "          'doctor': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'satan': 6,\n",
      "          'arnold': 5,\n",
      "          'end': 5,\n",
      "          'days': 4,\n",
      "          'world': 4,\n",
      "          'nthe': 4,\n",
      "          'even': 4,\n",
      "          'evil': 4,\n",
      "          'people': 3,\n",
      "          'save': 3,\n",
      "          'nit': 3,\n",
      "          'guard': 3,\n",
      "          'new': 3,\n",
      "          'priest': 3,\n",
      "          'woman': 3,\n",
      "          'fired': 3,\n",
      "          'becomes': 2,\n",
      "          'god': 2,\n",
      "          'final': 2,\n",
      "          'faith': 2,\n",
      "          'windows': 2,\n",
      "          'arrogance': 2,\n",
      "          'nits': 2,\n",
      "          'n': 2,\n",
      "          'director': 2,\n",
      "          'security': 2,\n",
      "          'finds': 2,\n",
      "          'stop': 2,\n",
      "          'body': 2,\n",
      "          'wall': 2,\n",
      "          '1979': 2,\n",
      "          'pope': 2,\n",
      "          'looking': 2,\n",
      "          'seeing': 2,\n",
      "          'born': 2,\n",
      "          'find': 2,\n",
      "          'nbut': 2,\n",
      "          'kill': 2,\n",
      "          'nyc': 2,\n",
      "          'chosen': 2,\n",
      "          'christine': 2,\n",
      "          'year': 2,\n",
      "          '2000': 2,\n",
      "          'partner': 2,\n",
      "          'nhe': 2,\n",
      "          'piss': 2,\n",
      "          'like': 2,\n",
      "          'sometimes': 2,\n",
      "          'nothing': 2,\n",
      "          'purpose': 2,\n",
      "          'value': 2,\n",
      "          '1999': 2,\n",
      "          '666': 2,\n",
      "          'gun': 1,\n",
      "          'wielding': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'change': 1,\n",
      "          'heart': 1,\n",
      "          'films': 1,\n",
      "          'believer': 1,\n",
      "          'instead': 1,\n",
      "          'skeptic': 1,\n",
      "          'going': 1,\n",
      "          'amazing': 1,\n",
      "          'transformation': 1,\n",
      "          'christian': 1,\n",
      "          'epiphany': 1,\n",
      "          'scene': 1,\n",
      "          'someone': 1,\n",
      "          'beat': 1,\n",
      "          'devil': 1,\n",
      "          'alone': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'throwing': 1,\n",
      "          'shooting': 1,\n",
      "          'average': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'nnobody': 1,\n",
      "          'bomb': 1,\n",
      "          'stupidity': 1,\n",
      "          'filmmaking': 1,\n",
      "          'believing': 1,\n",
      "          'positive': 1,\n",
      "          'religioustype': 1,\n",
      "          'pile': 1,\n",
      "          'dreck': 1,\n",
      "          'nillconceived': 1,\n",
      "          'exploitive': 1,\n",
      "          'project': 1,\n",
      "          'pyrotechnical': 1,\n",
      "          'aims': 1,\n",
      "          'apocalyptic': 1,\n",
      "          'thriller': 1,\n",
      "          'features': 1,\n",
      "          'idiotic': 1,\n",
      "          'script': 1,\n",
      "          'hack': 1,\n",
      "          'onedimensional': 1,\n",
      "          'star': 1,\n",
      "          'past': 1,\n",
      "          'prime': 1,\n",
      "          'nmakes': 1,\n",
      "          'dumber': 1,\n",
      "          'dumb': 1,\n",
      "          'plus': 1,\n",
      "          'funny': 1,\n",
      "          'campy': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'entertaining': 1,\n",
      "          'dreary': 1,\n",
      "          'unwatchable': 1,\n",
      "          'nbigbudget': 1,\n",
      "          'slasher': 1,\n",
      "          'narnold': 1,\n",
      "          'plays': 1,\n",
      "          'alcoholic': 1,\n",
      "          'mission': 1,\n",
      "          'life': 1,\n",
      "          'occupying': 1,\n",
      "          'gabriel': 1,\n",
      "          'byrnes': 1,\n",
      "          'possessing': 1,\n",
      "          'st': 1,\n",
      "          'bank': 1,\n",
      "          'account': 1,\n",
      "          'destroying': 1,\n",
      "          'opens': 1,\n",
      "          'vatican': 1,\n",
      "          'city': 1,\n",
      "          'roma': 1,\n",
      "          'alerted': 1,\n",
      "          'young': 1,\n",
      "          'visionary': 1,\n",
      "          'tomaso': 1,\n",
      "          'night': 1,\n",
      "          'sky': 1,\n",
      "          'comet': 1,\n",
      "          'whiz': 1,\n",
      "          'proclaims': 1,\n",
      "          'scrolls': 1,\n",
      "          'thats': 1,\n",
      "          'sign': 1,\n",
      "          'eye': 1,\n",
      "          'reveals': 1,\n",
      "          'child': 1,\n",
      "          'prepared': 1,\n",
      "          'give': 1,\n",
      "          'birth': 1,\n",
      "          'satans': 1,\n",
      "          'baby': 1,\n",
      "          'antichrist': 1,\n",
      "          'hour': 1,\n",
      "          'century': 1,\n",
      "          'begins': 1,\n",
      "          'fuck': 1,\n",
      "          'open': 1,\n",
      "          'gates': 1,\n",
      "          'hell': 1,\n",
      "          'earth': 1,\n",
      "          'ntomaso': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'doom': 1,\n",
      "          'popes': 1,\n",
      "          'circle': 1,\n",
      "          'want': 1,\n",
      "          'found': 1,\n",
      "          'though': 1,\n",
      "          'insists': 1,\n",
      "          'letting': 1,\n",
      "          'live': 1,\n",
      "          'lectures': 1,\n",
      "          'worlds': 1,\n",
      "          'darkest': 1,\n",
      "          'doesnt': 1,\n",
      "          'brings': 1,\n",
      "          'nwe': 1,\n",
      "          'saw': 1,\n",
      "          'girl': 1,\n",
      "          'seems': 1,\n",
      "          'logical': 1,\n",
      "          'place': 1,\n",
      "          'look': 1,\n",
      "          'according': 1,\n",
      "          'astrology': 1,\n",
      "          'charts': 1,\n",
      "          'visionaries': 1,\n",
      "          'york': 1,\n",
      "          'robin': 1,\n",
      "          'celebration': 1,\n",
      "          'wisecracking': 1,\n",
      "          'kevin': 1,\n",
      "          'pollack': 1,\n",
      "          'hired': 1,\n",
      "          'street': 1,\n",
      "          'turd': 1,\n",
      "          'upon': 1,\n",
      "          'renograde': 1,\n",
      "          'thomas': 1,\n",
      "          'aquinas': 1,\n",
      "          'saves': 1,\n",
      "          'ridiculous': 1,\n",
      "          'chase': 1,\n",
      "          'captures': 1,\n",
      "          'tongue': 1,\n",
      "          'less': 1,\n",
      "          'shot': 1,\n",
      "          'nevertheless': 1,\n",
      "          'speak': 1,\n",
      "          'tells': 1,\n",
      "          'coming': 1,\n",
      "          'prophesized': 1,\n",
      "          'revelations': 1,\n",
      "          'gets': 1,\n",
      "          'hospital': 1,\n",
      "          'room': 1,\n",
      "          'nails': 1,\n",
      "          'ceiling': 1,\n",
      "          'scribbling': 1,\n",
      "          'latin': 1,\n",
      "          'warnings': 1,\n",
      "          'quickly': 1,\n",
      "          'everything': 1,\n",
      "          'protect': 1,\n",
      "          'forces': 1,\n",
      "          'around': 1,\n",
      "          'includes': 1,\n",
      "          'ludicrous': 1,\n",
      "          'helicopter': 1,\n",
      "          'rescues': 1,\n",
      "          'jumping': 1,\n",
      "          'taking': 1,\n",
      "          'dropping': 1,\n",
      "          'match': 1,\n",
      "          'arnolds': 1,\n",
      "          'explodes': 1,\n",
      "          'gasoline': 1,\n",
      "          'resulting': 1,\n",
      "          'experiencing': 1,\n",
      "          'pain': 1,\n",
      "          'forgot': 1,\n",
      "          'way': 1,\n",
      "          'wants': 1,\n",
      "          'nthere': 1,\n",
      "          'spared': 1,\n",
      "          'fire': 1,\n",
      "          'bombs': 1,\n",
      "          'including': 1,\n",
      "          'subway': 1,\n",
      "          'churches': 1,\n",
      "          'luxury': 1,\n",
      "          'buildings': 1,\n",
      "          'trouble': 1,\n",
      "          'highbudget': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'lacked': 1,\n",
      "          'entertainment': 1,\n",
      "          'story': 1,\n",
      "          'terrible': 1,\n",
      "          'inaccurate': 1,\n",
      "          'iota': 1,\n",
      "          'credibility': 1,\n",
      "          'nmercifully': 1,\n",
      "          'movie': 1,\n",
      "          'drags': 1,\n",
      "          'confrontation': 1,\n",
      "          'times': 1,\n",
      "          'square': 1,\n",
      "          'trying': 1,\n",
      "          'unsuccessfully': 1,\n",
      "          'build': 1,\n",
      "          'tension': 1,\n",
      "          'countdown': 1,\n",
      "          'toward': 1,\n",
      "          'nwhy': 1,\n",
      "          'considered': 1,\n",
      "          'devils': 1,\n",
      "          'number': 1,\n",
      "          'well': 1,\n",
      "          'nsatans': 1,\n",
      "          'numeral': 1,\n",
      "          'actually': 1,\n",
      "          '999': 1,\n",
      "          'upside': 1,\n",
      "          'naccordingly': 1,\n",
      "          'put': 1,\n",
      "          '1': 1,\n",
      "          'front': 1,\n",
      "          'bingo': 1,\n",
      "          'get': 1,\n",
      "          'nwith': 1,\n",
      "          'logic': 1,\n",
      "          'might': 1,\n",
      "          'think': 1,\n",
      "          'pulled': 1,\n",
      "          'wool': 1,\n",
      "          'viewers': 1,\n",
      "          'eyes': 1,\n",
      "          'got': 1,\n",
      "          'away': 1,\n",
      "          'febrile': 1,\n",
      "          'explanation': 1,\n",
      "          'occult': 1,\n",
      "          'nthis': 1,\n",
      "          'become': 1,\n",
      "          'classic': 1,\n",
      "          'used': 1,\n",
      "          'schools': 1,\n",
      "          'make': 1,\n",
      "          'horror': 1,\n",
      "          'ni': 1,\n",
      "          'highly': 1,\n",
      "          'recommend': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'movie': 5,\n",
      "          'billie': 4,\n",
      "          'mariah': 3,\n",
      "          'glitter': 3,\n",
      "          'nin': 3,\n",
      "          'carey': 3,\n",
      "          'nthe': 3,\n",
      "          'dice': 3,\n",
      "          'billies': 3,\n",
      "          'nbut': 3,\n",
      "          'careys': 2,\n",
      "          'im': 2,\n",
      "          'says': 2,\n",
      "          'dont': 2,\n",
      "          'mean': 2,\n",
      "          'done': 2,\n",
      "          'nto': 2,\n",
      "          'say': 2,\n",
      "          'give': 2,\n",
      "          'star': 2,\n",
      "          'days': 2,\n",
      "          'spice': 2,\n",
      "          'period': 2,\n",
      "          'make': 2,\n",
      "          'starts': 2,\n",
      "          'gets': 2,\n",
      "          'like': 2,\n",
      "          'making': 2,\n",
      "          'dramatic': 2,\n",
      "          'would': 2,\n",
      "          'scene': 2,\n",
      "          'director': 2,\n",
      "          'audience': 2,\n",
      "          'one': 2,\n",
      "          'love': 2,\n",
      "          'much': 2,\n",
      "          'suffer': 2,\n",
      "          'enduring': 1,\n",
      "          'debut': 1,\n",
      "          'reminded': 1,\n",
      "          'bit': 1,\n",
      "          'chris': 1,\n",
      "          'rocks': 1,\n",
      "          'bigger': 1,\n",
      "          'blacker': 1,\n",
      "          'response': 1,\n",
      "          'women': 1,\n",
      "          'saying': 1,\n",
      "          'raise': 1,\n",
      "          'child': 1,\n",
      "          'without': 1,\n",
      "          'man': 1,\n",
      "          'rock': 1,\n",
      "          'drive': 1,\n",
      "          'car': 1,\n",
      "          'feet': 1,\n",
      "          'certainly': 1,\n",
      "          'nsure': 1,\n",
      "          'plenty': 1,\n",
      "          'pop': 1,\n",
      "          'vehicles': 1,\n",
      "          'beatles': 1,\n",
      "          'hard': 1,\n",
      "          'night': 1,\n",
      "          'girls': 1,\n",
      "          'world': 1,\n",
      "          'none': 1,\n",
      "          'vapidly': 1,\n",
      "          'pointless': 1,\n",
      "          'laughable': 1,\n",
      "          'neverything': 1,\n",
      "          'complete': 1,\n",
      "          'tripe': 1,\n",
      "          'ludicrous': 1,\n",
      "          'nstart': 1,\n",
      "          'story': 1,\n",
      "          'gruesomely': 1,\n",
      "          'predictable': 1,\n",
      "          'least': 1,\n",
      "          'offensive': 1,\n",
      "          'part': 1,\n",
      "          'inexplicably': 1,\n",
      "          'set': 1,\n",
      "          '80s': 1,\n",
      "          'piece': 1,\n",
      "          'really': 1,\n",
      "          'shows': 1,\n",
      "          'sign': 1,\n",
      "          'except': 1,\n",
      "          'chicks': 1,\n",
      "          'leg': 1,\n",
      "          'warmers': 1,\n",
      "          'nworse': 1,\n",
      "          'yet': 1,\n",
      "          'everyones': 1,\n",
      "          'speaking': 1,\n",
      "          'late': 1,\n",
      "          '90s': 1,\n",
      "          'hiphop': 1,\n",
      "          'slang': 1,\n",
      "          '1983': 1,\n",
      "          'nmeant': 1,\n",
      "          'partially': 1,\n",
      "          'autobiographical': 1,\n",
      "          'plays': 1,\n",
      "          'frank': 1,\n",
      "          'young': 1,\n",
      "          'singer': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'struggles': 1,\n",
      "          'overcome': 1,\n",
      "          'rough': 1,\n",
      "          'childhood': 1,\n",
      "          'abandonment': 1,\n",
      "          'alcoholic': 1,\n",
      "          'mother': 1,\n",
      "          'ninfluential': 1,\n",
      "          'club': 1,\n",
      "          'dj': 1,\n",
      "          'julian': 1,\n",
      "          'k': 1,\n",
      "          'lucky': 1,\n",
      "          '7': 1,\n",
      "          'max': 1,\n",
      "          'beesley': 1,\n",
      "          'playing': 1,\n",
      "          'bad': 1,\n",
      "          'mix': 1,\n",
      "          'puff': 1,\n",
      "          'daddy': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'niro': 1,\n",
      "          'hears': 1,\n",
      "          'sing': 1,\n",
      "          'track': 1,\n",
      "          'decides': 1,\n",
      "          'predictably': 1,\n",
      "          'rapid': 1,\n",
      "          'succession': 1,\n",
      "          'fall': 1,\n",
      "          'hitting': 1,\n",
      "          'big': 1,\n",
      "          'jealous': 1,\n",
      "          'acting': 1,\n",
      "          'ass': 1,\n",
      "          'suddenly': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'superstardom': 1,\n",
      "          'meantime': 1,\n",
      "          'emotional': 1,\n",
      "          'hunt': 1,\n",
      "          'missing': 1,\n",
      "          'mom': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'away': 1,\n",
      "          'ending': 1,\n",
      "          'honestly': 1,\n",
      "          'think': 1,\n",
      "          'unicorns': 1,\n",
      "          'rainbows': 1,\n",
      "          'nyoull': 1,\n",
      "          'figure': 1,\n",
      "          'screams': 1,\n",
      "          'made': 1,\n",
      "          'camp': 1,\n",
      "          'couldve': 1,\n",
      "          'fun': 1,\n",
      "          'filmmakers': 1,\n",
      "          'thought': 1,\n",
      "          'bulk': 1,\n",
      "          'weepy': 1,\n",
      "          'better': 1,\n",
      "          'nwhat': 1,\n",
      "          'mistake': 1,\n",
      "          'brief': 1,\n",
      "          'attempts': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'effeminate': 1,\n",
      "          'russiansounding': 1,\n",
      "          'wacky': 1,\n",
      "          'filming': 1,\n",
      "          'first': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'go': 1,\n",
      "          'lead': 1,\n",
      "          'balloons': 1,\n",
      "          'ninstead': 1,\n",
      "          'screening': 1,\n",
      "          'tended': 1,\n",
      "          'laugh': 1,\n",
      "          'loudest': 1,\n",
      "          'mariahs': 1,\n",
      "          'scenes': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'performances': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'good': 1,\n",
      "          'said': 1,\n",
      "          'nmariah': 1,\n",
      "          'primarily': 1,\n",
      "          'seen': 1,\n",
      "          'wideeyed': 1,\n",
      "          'deerintheheadlights': 1,\n",
      "          'look': 1,\n",
      "          'frozen': 1,\n",
      "          'face': 1,\n",
      "          'nshe': 1,\n",
      "          'actually': 1,\n",
      "          'looks': 1,\n",
      "          'scared': 1,\n",
      "          'wonder': 1,\n",
      "          'writing': 1,\n",
      "          'isnt': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'nso': 1,\n",
      "          'dialogue': 1,\n",
      "          'hackneyed': 1,\n",
      "          'watered': 1,\n",
      "          'virginal': 1,\n",
      "          'target': 1,\n",
      "          'probably': 1,\n",
      "          'impossible': 1,\n",
      "          'actor': 1,\n",
      "          'pull': 1,\n",
      "          'aplomb': 1,\n",
      "          'neven': 1,\n",
      "          'characters': 1,\n",
      "          'couldnt': 1,\n",
      "          'written': 1,\n",
      "          'absurdly': 1,\n",
      "          'ntheyre': 1,\n",
      "          'members': 1,\n",
      "          'barbie': 1,\n",
      "          'playset': 1,\n",
      "          'important': 1,\n",
      "          'swoons': 1,\n",
      "          'id': 1,\n",
      "          'put': 1,\n",
      "          'bigtime': 1,\n",
      "          'record': 1,\n",
      "          'executive': 1,\n",
      "          'takes': 1,\n",
      "          'demo': 1,\n",
      "          'tape': 1,\n",
      "          'oh': 1,\n",
      "          'ill': 1,\n",
      "          'sure': 1,\n",
      "          'whole': 1,\n",
      "          'team': 1,\n",
      "          'listens': 1,\n",
      "          'morning': 1,\n",
      "          'neveryone': 1,\n",
      "          'device': 1,\n",
      "          'painful': 1,\n",
      "          'keep': 1,\n",
      "          'watching': 1,\n",
      "          'see': 1,\n",
      "          'another': 1,\n",
      "          'appear': 1,\n",
      "          'waste': 1,\n",
      "          'ntheres': 1,\n",
      "          'wrong': 1,\n",
      "          'nand': 1,\n",
      "          'pains': 1,\n",
      "          'ego': 1,\n",
      "          'sanity': 1,\n",
      "          'fragile': 1,\n",
      "          'condition': 1,\n",
      "          'evidenced': 1,\n",
      "          'multiple': 1,\n",
      "          'hospital': 1,\n",
      "          'stays': 1,\n",
      "          'negative': 1,\n",
      "          'reviews': 1,\n",
      "          'shes': 1,\n",
      "          'likely': 1,\n",
      "          'get': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 13,\n",
      "          'film': 8,\n",
      "          'patch': 6,\n",
      "          'adams': 5,\n",
      "          'films': 4,\n",
      "          'people': 4,\n",
      "          'nit': 4,\n",
      "          'scene': 4,\n",
      "          'npatch': 3,\n",
      "          'feel': 3,\n",
      "          'make': 3,\n",
      "          'nthere': 3,\n",
      "          'number': 3,\n",
      "          'real': 3,\n",
      "          'good': 3,\n",
      "          'patients': 3,\n",
      "          'nhe': 3,\n",
      "          'wants': 3,\n",
      "          'patchs': 3,\n",
      "          'dean': 3,\n",
      "          'one': 3,\n",
      "          'makes': 3,\n",
      "          'poster': 2,\n",
      "          'boy': 2,\n",
      "          'codependency': 2,\n",
      "          'michael': 2,\n",
      "          'redman': 2,\n",
      "          'nin': 2,\n",
      "          'need': 2,\n",
      "          'us': 2,\n",
      "          'quality': 2,\n",
      "          'like': 2,\n",
      "          'profit': 2,\n",
      "          'movies': 2,\n",
      "          'put': 2,\n",
      "          'nfor': 2,\n",
      "          'reason': 2,\n",
      "          'audience': 2,\n",
      "          'ones': 2,\n",
      "          'time': 2,\n",
      "          'bad': 2,\n",
      "          'actor': 2,\n",
      "          'story': 2,\n",
      "          'could': 2,\n",
      "          'williams': 2,\n",
      "          'mental': 2,\n",
      "          'institute': 2,\n",
      "          'help': 2,\n",
      "          'around': 2,\n",
      "          'doesnt': 2,\n",
      "          'later': 2,\n",
      "          'medical': 2,\n",
      "          'student': 2,\n",
      "          'hes': 2,\n",
      "          'students': 2,\n",
      "          'history': 2,\n",
      "          'also': 2,\n",
      "          'nthen': 2,\n",
      "          'must': 2,\n",
      "          'movie': 2,\n",
      "          'free': 2,\n",
      "          'clinic': 2,\n",
      "          'another': 2,\n",
      "          'nmost': 2,\n",
      "          'man': 2,\n",
      "          'cancer': 2,\n",
      "          'woman': 2,\n",
      "          'laugh': 2,\n",
      "          'old': 2,\n",
      "          'use': 2,\n",
      "          'n': 2,\n",
      "          'first': 2,\n",
      "          'tries': 2,\n",
      "          'directed': 2,\n",
      "          'care': 2,\n",
      "          'needs': 1,\n",
      "          'patching': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1999': 1,\n",
      "          'nmediocrity': 1,\n",
      "          'pox': 1,\n",
      "          'civilization': 1,\n",
      "          'heavily': 1,\n",
      "          'consumer': 1,\n",
      "          'oriented': 1,\n",
      "          'society': 1,\n",
      "          'enormous': 1,\n",
      "          'demand': 1,\n",
      "          'churn': 1,\n",
      "          'stuff': 1,\n",
      "          'nwhat': 1,\n",
      "          'would': 1,\n",
      "          'happen': 1,\n",
      "          'economy': 1,\n",
      "          'didnt': 1,\n",
      "          'things': 1,\n",
      "          'nto': 1,\n",
      "          'buy': 1,\n",
      "          'businesses': 1,\n",
      "          'produce': 1,\n",
      "          'ton': 1,\n",
      "          'product': 1,\n",
      "          'sheer': 1,\n",
      "          'volume': 1,\n",
      "          'items': 1,\n",
      "          'necessitates': 1,\n",
      "          'dubious': 1,\n",
      "          'industry': 1,\n",
      "          'order': 1,\n",
      "          'studios': 1,\n",
      "          'survive': 1,\n",
      "          'money': 1,\n",
      "          'prevailing': 1,\n",
      "          'attitude': 1,\n",
      "          'equal': 1,\n",
      "          'nsome': 1,\n",
      "          'obviously': 1,\n",
      "          'exist': 1,\n",
      "          'wares': 1,\n",
      "          'screen': 1,\n",
      "          'less': 1,\n",
      "          'talented': 1,\n",
      "          'used': 1,\n",
      "          'arent': 1,\n",
      "          'enough': 1,\n",
      "          'great': 1,\n",
      "          'directors': 1,\n",
      "          'actors': 1,\n",
      "          'create': 1,\n",
      "          'necessary': 1,\n",
      "          'never': 1,\n",
      "          'crossed': 1,\n",
      "          'anyones': 1,\n",
      "          'mind': 1,\n",
      "          'equation': 1,\n",
      "          'noften': 1,\n",
      "          'mediocre': 1,\n",
      "          'pain': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'horrendous': 1,\n",
      "          'nat': 1,\n",
      "          'making': 1,\n",
      "          'fun': 1,\n",
      "          'nim': 1,\n",
      "          'suggesting': 1,\n",
      "          'tossed': 1,\n",
      "          'rake': 1,\n",
      "          'bucks': 1,\n",
      "          'nmy': 1,\n",
      "          'guess': 1,\n",
      "          'someone': 1,\n",
      "          'asleep': 1,\n",
      "          'wheel': 1,\n",
      "          'features': 1,\n",
      "          'accomplished': 1,\n",
      "          'potentially': 1,\n",
      "          'engrossing': 1,\n",
      "          'dull': 1,\n",
      "          'nhunter': 1,\n",
      "          'robin': 1,\n",
      "          'desire': 1,\n",
      "          'become': 1,\n",
      "          'doctor': 1,\n",
      "          'unusual': 1,\n",
      "          'genesis': 1,\n",
      "          'nchecking': 1,\n",
      "          'suicide': 1,\n",
      "          'attempt': 1,\n",
      "          'discovers': 1,\n",
      "          'clowning': 1,\n",
      "          'explains': 1,\n",
      "          'likes': 1,\n",
      "          'devoting': 1,\n",
      "          'others': 1,\n",
      "          'focus': 1,\n",
      "          'problems': 1,\n",
      "          'decides': 1,\n",
      "          'physician': 1,\n",
      "          'leaves': 1,\n",
      "          'place': 1,\n",
      "          'couple': 1,\n",
      "          'years': 1,\n",
      "          'enrolls': 1,\n",
      "          'college': 1,\n",
      "          'virginia': 1,\n",
      "          'nas': 1,\n",
      "          'med': 1,\n",
      "          'antics': 1,\n",
      "          'schools': 1,\n",
      "          'hospital': 1,\n",
      "          'catch': 1,\n",
      "          'attention': 1,\n",
      "          'soon': 1,\n",
      "          'archenemy': 1,\n",
      "          'straightlaced': 1,\n",
      "          'walcott': 1,\n",
      "          'bob': 1,\n",
      "          'gunton': 1,\n",
      "          'opposed': 1,\n",
      "          'goofiness': 1,\n",
      "          'kicked': 1,\n",
      "          'school': 1,\n",
      "          'although': 1,\n",
      "          'top': 1,\n",
      "          'writes': 1,\n",
      "          'academic': 1,\n",
      "          'file': 1,\n",
      "          'shows': 1,\n",
      "          'excessive': 1,\n",
      "          'happiness': 1,\n",
      "          'ni': 1,\n",
      "          'walked': 1,\n",
      "          'knowing': 1,\n",
      "          'little': 1,\n",
      "          'wondered': 1,\n",
      "          'odd': 1,\n",
      "          'mechanical': 1,\n",
      "          'pacing': 1,\n",
      "          'seemed': 1,\n",
      "          'set': 1,\n",
      "          'early': 1,\n",
      "          'seventies': 1,\n",
      "          'struck': 1,\n",
      "          'based': 1,\n",
      "          'true': 1,\n",
      "          'adaptation': 1,\n",
      "          'book': 1,\n",
      "          'hunter': 1,\n",
      "          'founded': 1,\n",
      "          'gesundheit': 1,\n",
      "          'nrobin': 1,\n",
      "          'amazing': 1,\n",
      "          'nwhile': 1,\n",
      "          'adept': 1,\n",
      "          'dramatic': 1,\n",
      "          'roles': 1,\n",
      "          'forte': 1,\n",
      "          'overthetop': 1,\n",
      "          'spirits': 1,\n",
      "          'nthats': 1,\n",
      "          'failure': 1,\n",
      "          'remarkable': 1,\n",
      "          'exactly': 1,\n",
      "          'character': 1,\n",
      "          'best': 1,\n",
      "          'yet': 1,\n",
      "          'even': 1,\n",
      "          'patient': 1,\n",
      "          'battling': 1,\n",
      "          'fierce': 1,\n",
      "          'imaginary': 1,\n",
      "          'squirrels': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'nsomething': 1,\n",
      "          'holds': 1,\n",
      "          'back': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'twodimensional': 1,\n",
      "          'champions': 1,\n",
      "          'seeing': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'curious': 1,\n",
      "          'cardboard': 1,\n",
      "          'characters': 1,\n",
      "          'npeter': 1,\n",
      "          'coyote': 1,\n",
      "          'dying': 1,\n",
      "          'refreshing': 1,\n",
      "          'seems': 1,\n",
      "          'person': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'two': 1,\n",
      "          'minutes': 1,\n",
      "          'blatantly': 1,\n",
      "          'lead': 1,\n",
      "          'ring': 1,\n",
      "          'nose': 1,\n",
      "          'nwere': 1,\n",
      "          'left': 1,\n",
      "          'emotional': 1,\n",
      "          'decisions': 1,\n",
      "          'hit': 1,\n",
      "          'head': 1,\n",
      "          'nshavedheaded': 1,\n",
      "          'children': 1,\n",
      "          'elderly': 1,\n",
      "          'beautiful': 1,\n",
      "          'cant': 1,\n",
      "          'love': 1,\n",
      "          'abusive': 1,\n",
      "          'nwhen': 1,\n",
      "          'group': 1,\n",
      "          'fix': 1,\n",
      "          'house': 1,\n",
      "          'andy': 1,\n",
      "          'hardy': 1,\n",
      "          'hey': 1,\n",
      "          'lets': 1,\n",
      "          'play': 1,\n",
      "          'nwe': 1,\n",
      "          'barn': 1,\n",
      "          'mom': 1,\n",
      "          'curtains': 1,\n",
      "          'nmode': 1,\n",
      "          'roll': 1,\n",
      "          'painting': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'giant': 1,\n",
      "          'signs': 1,\n",
      "          'flashing': 1,\n",
      "          'title': 1,\n",
      "          'patchwork': 1,\n",
      "          'every': 1,\n",
      "          'manipulative': 1,\n",
      "          'think': 1,\n",
      "          'fulloflife': 1,\n",
      "          'fights': 1,\n",
      "          'stodgy': 1,\n",
      "          'establishment': 1,\n",
      "          'types': 1,\n",
      "          'ntheres': 1,\n",
      "          'touching': 1,\n",
      "          'death': 1,\n",
      "          'theres': 1,\n",
      "          'trust': 1,\n",
      "          'get': 1,\n",
      "          'kick': 1,\n",
      "          'nworst': 1,\n",
      "          'final': 1,\n",
      "          'courtroom': 1,\n",
      "          'bit': 1,\n",
      "          'nscarylooking': 1,\n",
      "          'men': 1,\n",
      "          'sit': 1,\n",
      "          'judgment': 1,\n",
      "          'room': 1,\n",
      "          'packed': 1,\n",
      "          'supporters': 1,\n",
      "          'nwilliams': 1,\n",
      "          'supposedly': 1,\n",
      "          'impassioned': 1,\n",
      "          'speech': 1,\n",
      "          'humanity': 1,\n",
      "          'much': 1,\n",
      "          'emotion': 1,\n",
      "          'earlier': 1,\n",
      "          'statement': 1,\n",
      "          'humans': 1,\n",
      "          'animal': 1,\n",
      "          'kills': 1,\n",
      "          'members': 1,\n",
      "          'species': 1,\n",
      "          'contains': 1,\n",
      "          'truth': 1,\n",
      "          'blame': 1,\n",
      "          'placed': 1,\n",
      "          'director': 1,\n",
      "          'tom': 1,\n",
      "          'shadyac': 1,\n",
      "          'screenwriter': 1,\n",
      "          'steve': 1,\n",
      "          'oedekerk': 1,\n",
      "          'nshadyac': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'noedekerk': 1,\n",
      "          'second': 1,\n",
      "          'nneed': 1,\n",
      "          'say': 1,\n",
      "          'admired': 1,\n",
      "          'devotion': 1,\n",
      "          'treating': 1,\n",
      "          'rather': 1,\n",
      "          'diseases': 1,\n",
      "          'worthy': 1,\n",
      "          'messages': 1,\n",
      "          'state': 1,\n",
      "          'modern': 1,\n",
      "          'business': 1,\n",
      "          'hmos': 1,\n",
      "          'managed': 1,\n",
      "          'doctors': 1,\n",
      "          'gods': 1,\n",
      "          'theme': 1,\n",
      "          'resonate': 1,\n",
      "          'poorly': 1,\n",
      "          'produced': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'einstein': 7,\n",
      "          'movie': 6,\n",
      "          'young': 5,\n",
      "          'nin': 3,\n",
      "          'yahoo': 3,\n",
      "          'film': 3,\n",
      "          'nyahoo': 3,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'hoping': 2,\n",
      "          'nyoung': 2,\n",
      "          'nthe': 2,\n",
      "          'takes': 2,\n",
      "          'tasmania': 2,\n",
      "          'albert': 2,\n",
      "          'first': 2,\n",
      "          'nbut': 2,\n",
      "          'quickly': 2,\n",
      "          'comedy': 2,\n",
      "          'music': 2,\n",
      "          'embarrassingly': 1,\n",
      "          'lame': 1,\n",
      "          'didnt': 1,\n",
      "          'stop': 1,\n",
      "          'becoming': 1,\n",
      "          'phenomenon': 1,\n",
      "          'australia': 1,\n",
      "          'became': 1,\n",
      "          'third': 1,\n",
      "          'largest': 1,\n",
      "          'hit': 1,\n",
      "          'time': 1,\n",
      "          'u': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'follow': 1,\n",
      "          'footsteps': 1,\n",
      "          'paul': 1,\n",
      "          'hogan': 1,\n",
      "          'inxs': 1,\n",
      "          'shrimp': 1,\n",
      "          'barby': 1,\n",
      "          'become': 1,\n",
      "          'latest': 1,\n",
      "          'rage': 1,\n",
      "          'npersonally': 1,\n",
      "          'im': 1,\n",
      "          'americans': 1,\n",
      "          'everywhere': 1,\n",
      "          'rise': 1,\n",
      "          'occasion': 1,\n",
      "          'make': 1,\n",
      "          'bomb': 1,\n",
      "          'sprang': 1,\n",
      "          'twisted': 1,\n",
      "          'mind': 1,\n",
      "          'serious': 1,\n",
      "          'wrote': 1,\n",
      "          'produced': 1,\n",
      "          'edited': 1,\n",
      "          'directed': 1,\n",
      "          'also': 1,\n",
      "          'starred': 1,\n",
      "          'stunts': 1,\n",
      "          'nhis': 1,\n",
      "          'creation': 1,\n",
      "          'stupid': 1,\n",
      "          'contrived': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'someone': 1,\n",
      "          'named': 1,\n",
      "          'substantial': 1,\n",
      "          'historical': 1,\n",
      "          'liberties': 1,\n",
      "          'recreating': 1,\n",
      "          'einsteins': 1,\n",
      "          'youth': 1,\n",
      "          'nwhereas': 1,\n",
      "          'scientist': 1,\n",
      "          'actually': 1,\n",
      "          'hailed': 1,\n",
      "          'germany': 1,\n",
      "          'finds': 1,\n",
      "          'still': 1,\n",
      "          'living': 1,\n",
      "          'parents': 1,\n",
      "          'remote': 1,\n",
      "          'australian': 1,\n",
      "          'island': 1,\n",
      "          'addition': 1,\n",
      "          'deriving': 1,\n",
      "          'formula': 1,\n",
      "          'energy': 1,\n",
      "          'theory': 1,\n",
      "          'relativity': 1,\n",
      "          'invents': 1,\n",
      "          'surfing': 1,\n",
      "          'bubbles': 1,\n",
      "          'beer': 1,\n",
      "          'electric': 1,\n",
      "          'guitar': 1,\n",
      "          'plays': 1,\n",
      "          'naive': 1,\n",
      "          'unrefined': 1,\n",
      "          'country': 1,\n",
      "          'hicka': 1,\n",
      "          'clown': 1,\n",
      "          'insatiable': 1,\n",
      "          'curiosity': 1,\n",
      "          'nalthough': 1,\n",
      "          'yahoos': 1,\n",
      "          'performance': 1,\n",
      "          'endearing': 1,\n",
      "          'onedimensional': 1,\n",
      "          'characterization': 1,\n",
      "          'loses': 1,\n",
      "          'novelty': 1,\n",
      "          'faster': 1,\n",
      "          'say': 1,\n",
      "          'emc2': 1,\n",
      "          'created': 1,\n",
      "          'charming': 1,\n",
      "          'family': 1,\n",
      "          'scenes': 1,\n",
      "          'often': 1,\n",
      "          'clever': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'plummets': 1,\n",
      "          'degenerates': 1,\n",
      "          'poor': 1,\n",
      "          'excuse': 1,\n",
      "          'hampered': 1,\n",
      "          'lethargic': 1,\n",
      "          'pace': 1,\n",
      "          'inane': 1,\n",
      "          'plot': 1,\n",
      "          'must': 1,\n",
      "          'mtv': 1,\n",
      "          'addict': 1,\n",
      "          'features': 1,\n",
      "          'omnipresent': 1,\n",
      "          'soundtrack': 1,\n",
      "          'unfortunately': 1,\n",
      "          'altogether': 1,\n",
      "          'gratuitous': 1,\n",
      "          'becomes': 1,\n",
      "          'overbearing': 1,\n",
      "          'nalmost': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'includes': 1,\n",
      "          'blaring': 1,\n",
      "          'rock': 1,\n",
      "          'song': 1,\n",
      "          'leaves': 1,\n",
      "          'wondering': 1,\n",
      "          'whether': 1,\n",
      "          'watching': 1,\n",
      "          'video': 1,\n",
      "          'instrumental': 1,\n",
      "          'score': 1,\n",
      "          'hand': 1,\n",
      "          'generally': 1,\n",
      "          'playful': 1,\n",
      "          'uses': 1,\n",
      "          'classics': 1,\n",
      "          '1812': 1,\n",
      "          'overture': 1,\n",
      "          'theme': 1,\n",
      "          'good': 1,\n",
      "          'bad': 1,\n",
      "          'ugly': 1,\n",
      "          'great': 1,\n",
      "          'comic': 1,\n",
      "          'effect': 1,\n",
      "          'nhalfway': 1,\n",
      "          'knew': 1,\n",
      "          'sure': 1,\n",
      "          'stinker': 1,\n",
      "          'wasnt': 1,\n",
      "          'end': 1,\n",
      "          'finally': 1,\n",
      "          'put': 1,\n",
      "          'finger': 1,\n",
      "          'roots': 1,\n",
      "          'whimsical': 1,\n",
      "          'fantasies': 1,\n",
      "          'sherlock': 1,\n",
      "          'holmes': 1,\n",
      "          'cheesy': 1,\n",
      "          'primetime': 1,\n",
      "          'sitcoms': 1,\n",
      "          'fact': 1,\n",
      "          'might': 1,\n",
      "          'home': 1,\n",
      "          'network': 1,\n",
      "          'television': 1,\n",
      "          'sophomoric': 1,\n",
      "          'humor': 1,\n",
      "          'wouldnt': 1,\n",
      "          'raise': 1,\n",
      "          'eyebrows': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carry': 5,\n",
      "          'sid': 5,\n",
      "          'james': 5,\n",
      "          'turpin': 5,\n",
      "          'performance': 4,\n",
      "          'last': 3,\n",
      "          'robberies': 3,\n",
      "          'kenneth': 3,\n",
      "          'sir': 3,\n",
      "          'roger': 3,\n",
      "          'movie': 3,\n",
      "          'film': 2,\n",
      "          'cast': 2,\n",
      "          'hattie': 2,\n",
      "          'jacques': 2,\n",
      "          'gang': 2,\n",
      "          'windsor': 2,\n",
      "          'tom': 2,\n",
      "          'butterworth': 2,\n",
      "          'turpins': 2,\n",
      "          'fancey': 2,\n",
      "          'williams': 2,\n",
      "          'jock': 2,\n",
      "          'strapp': 2,\n",
      "          'douglas': 2,\n",
      "          'daley': 2,\n",
      "          'bernard': 2,\n",
      "          'reverend': 2,\n",
      "          'flasher': 2,\n",
      "          'dick': 2,\n",
      "          'earlier': 2,\n",
      "          'part': 2,\n",
      "          'catch': 2,\n",
      "          'harriett': 2,\n",
      "          'nthe': 2,\n",
      "          'notable': 2,\n",
      "          'jokes': 2,\n",
      "          'script': 2,\n",
      "          'almost': 1,\n",
      "          'intact': 1,\n",
      "          'regular': 1,\n",
      "          'swansong': 1,\n",
      "          'ndick': 1,\n",
      "          'includes': 1,\n",
      "          'harriettharry': 1,\n",
      "          'barbara': 1,\n",
      "          'doc': 1,\n",
      "          'scholl': 1,\n",
      "          'peter': 1,\n",
      "          'terrorise': 1,\n",
      "          'countryside': 1,\n",
      "          'staging': 1,\n",
      "          'highway': 1,\n",
      "          'stand': 1,\n",
      "          'deliver': 1,\n",
      "          'nowing': 1,\n",
      "          'increased': 1,\n",
      "          'occurrence': 1,\n",
      "          'captain': 1,\n",
      "          'desmond': 1,\n",
      "          'bow': 1,\n",
      "          'street': 1,\n",
      "          'runners': 1,\n",
      "          'sidekick': 1,\n",
      "          'sergeant': 1,\n",
      "          'jack': 1,\n",
      "          'visit': 1,\n",
      "          'area': 1,\n",
      "          'influence': 1,\n",
      "          'bring': 1,\n",
      "          'justice': 1,\n",
      "          'nthey': 1,\n",
      "          'express': 1,\n",
      "          'orders': 1,\n",
      "          'bresslaw': 1,\n",
      "          'ntheir': 1,\n",
      "          'intellect': 1,\n",
      "          'count': 1,\n",
      "          'much': 1,\n",
      "          'increasingly': 1,\n",
      "          'become': 1,\n",
      "          'suspicious': 1,\n",
      "          'aka': 1,\n",
      "          'confided': 1,\n",
      "          'still': 1,\n",
      "          'believe': 1,\n",
      "          'rector': 1,\n",
      "          'nhowever': 1,\n",
      "          'put': 1,\n",
      "          'jail': 1,\n",
      "          'takes': 1,\n",
      "          'complete': 1,\n",
      "          'charge': 1,\n",
      "          'seems': 1,\n",
      "          'hope': 1,\n",
      "          'nthen': 1,\n",
      "          'assigned': 1,\n",
      "          'dimwits': 1,\n",
      "          'aswell': 1,\n",
      "          'old': 1,\n",
      "          'dithering': 1,\n",
      "          'constable': 1,\n",
      "          'connor': 1,\n",
      "          'keep': 1,\n",
      "          'eye': 1,\n",
      "          'prisoner': 1,\n",
      "          'nthere': 1,\n",
      "          'doubt': 1,\n",
      "          'nhe': 1,\n",
      "          'excels': 1,\n",
      "          'double': 1,\n",
      "          'roles': 1,\n",
      "          'dont': 1,\n",
      "          'lose': 1,\n",
      "          'head': 1,\n",
      "          'hilarious': 1,\n",
      "          'nbarbara': 1,\n",
      "          'also': 1,\n",
      "          'funny': 1,\n",
      "          'sex': 1,\n",
      "          'mad': 1,\n",
      "          'housemaid': 1,\n",
      "          'member': 1,\n",
      "          'small': 1,\n",
      "          'effective': 1,\n",
      "          'role': 1,\n",
      "          'rectors': 1,\n",
      "          'housekeeper': 1,\n",
      "          'martha': 1,\n",
      "          'hoggett': 1,\n",
      "          'played': 1,\n",
      "          'perfection': 1,\n",
      "          'njack': 1,\n",
      "          'plays': 1,\n",
      "          'milder': 1,\n",
      "          'version': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'annoying': 1,\n",
      "          'onscreen': 1,\n",
      "          'persona': 1,\n",
      "          'given': 1,\n",
      "          'rather': 1,\n",
      "          'mundane': 1,\n",
      "          'npeter': 1,\n",
      "          'allowed': 1,\n",
      "          'shine': 1,\n",
      "          'boring': 1,\n",
      "          'bresslaws': 1,\n",
      "          'character': 1,\n",
      "          'appears': 1,\n",
      "          'briefly': 1,\n",
      "          'support': 1,\n",
      "          'comes': 1,\n",
      "          'joan': 1,\n",
      "          'sims': 1,\n",
      "          'madame': 1,\n",
      "          'desiree': 1,\n",
      "          'travelling': 1,\n",
      "          'around': 1,\n",
      "          'country': 1,\n",
      "          'escorting': 1,\n",
      "          'starlets': 1,\n",
      "          'birds': 1,\n",
      "          'paradise': 1,\n",
      "          'sporting': 1,\n",
      "          'fake': 1,\n",
      "          'french': 1,\n",
      "          'accent': 1,\n",
      "          'nwhen': 1,\n",
      "          'girls': 1,\n",
      "          'robbed': 1,\n",
      "          'determined': 1,\n",
      "          'helps': 1,\n",
      "          'find': 1,\n",
      "          'culprit': 1,\n",
      "          'na': 1,\n",
      "          'numbers': 1,\n",
      "          'great': 1,\n",
      "          'bluer': 1,\n",
      "          'poorer': 1,\n",
      "          'written': 1,\n",
      "          'talbot': 1,\n",
      "          'rothwell': 1,\n",
      "          'music': 1,\n",
      "          'marked': 1,\n",
      "          'improvement': 1,\n",
      "          'nalthough': 1,\n",
      "          'nearly': 1,\n",
      "          'regulars': 1,\n",
      "          'appear': 1,\n",
      "          'seem': 1,\n",
      "          'going': 1,\n",
      "          'motions': 1,\n",
      "          'nnone': 1,\n",
      "          'high': 1,\n",
      "          'spirits': 1,\n",
      "          'films': 1,\n",
      "          'apparent': 1,\n",
      "          'njust': 1,\n",
      "          'selection': 1,\n",
      "          'crude': 1,\n",
      "          'repititive': 1,\n",
      "          'doubleentendres': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'films': 4,\n",
      "          'much': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 3,\n",
      "          'first': 3,\n",
      "          'mtv': 3,\n",
      "          'role': 3,\n",
      "          'der': 3,\n",
      "          'beek': 3,\n",
      "          'town': 3,\n",
      "          'smart': 3,\n",
      "          'kilmer': 3,\n",
      "          'feature': 2,\n",
      "          'james': 2,\n",
      "          'van': 2,\n",
      "          'star': 2,\n",
      "          'dawsons': 2,\n",
      "          'creek': 2,\n",
      "          'man': 2,\n",
      "          '1998': 2,\n",
      "          'varsity': 2,\n",
      "          'blues': 2,\n",
      "          'texas': 2,\n",
      "          'small': 2,\n",
      "          'high': 2,\n",
      "          'football': 2,\n",
      "          'quarterback': 2,\n",
      "          'mox': 2,\n",
      "          'lance': 2,\n",
      "          'walker': 2,\n",
      "          'nalso': 2,\n",
      "          'team': 2,\n",
      "          'guy': 2,\n",
      "          'gets': 2,\n",
      "          'chance': 2,\n",
      "          'would': 2,\n",
      "          'ntheres': 2,\n",
      "          'still': 2,\n",
      "          'interesting': 2,\n",
      "          'including': 2,\n",
      "          'bit': 2,\n",
      "          '1999': 1,\n",
      "          'pictures': 1,\n",
      "          'release': 1,\n",
      "          'marks': 1,\n",
      "          'leading': 1,\n",
      "          'wbs': 1,\n",
      "          'runaway': 1,\n",
      "          'hit': 1,\n",
      "          'nfollowing': 1,\n",
      "          'foot': 1,\n",
      "          'steps': 1,\n",
      "          'mtvs': 1,\n",
      "          'two': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'joes': 1,\n",
      "          'apartment': 1,\n",
      "          '1996': 1,\n",
      "          'dead': 1,\n",
      "          'campus': 1,\n",
      "          'bad': 1,\n",
      "          'unlikely': 1,\n",
      "          'cause': 1,\n",
      "          'sensation': 1,\n",
      "          'marketplace': 1,\n",
      "          'nset': 1,\n",
      "          'west': 1,\n",
      "          'cannan': 1,\n",
      "          'examines': 1,\n",
      "          'obsession': 1,\n",
      "          'school': 1,\n",
      "          'eyes': 1,\n",
      "          'second': 1,\n",
      "          'string': 1,\n",
      "          'john': 1,\n",
      "          'moxon': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'hes': 1,\n",
      "          'reads': 1,\n",
      "          'kurt': 1,\n",
      "          'vonnegut': 1,\n",
      "          'instead': 1,\n",
      "          'playbook': 1,\n",
      "          'ncoach': 1,\n",
      "          'bud': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'around': 1,\n",
      "          'long': 1,\n",
      "          'actually': 1,\n",
      "          'bronze': 1,\n",
      "          'statue': 1,\n",
      "          'commemorating': 1,\n",
      "          'harbor': 1,\n",
      "          'paul': 1,\n",
      "          'handsome': 1,\n",
      "          'blonde': 1,\n",
      "          'hero': 1,\n",
      "          'billboard': 1,\n",
      "          'front': 1,\n",
      "          'yard': 1,\n",
      "          'dates': 1,\n",
      "          'sexy': 1,\n",
      "          'head': 1,\n",
      "          'cheerleader': 1,\n",
      "          'darcy': 1,\n",
      "          'ali': 1,\n",
      "          'larter': 1,\n",
      "          'enormous': 1,\n",
      "          'ron': 1,\n",
      "          'lester': 1,\n",
      "          'health': 1,\n",
      "          'problems': 1,\n",
      "          'token': 1,\n",
      "          'africanamerican': 1,\n",
      "          'member': 1,\n",
      "          'eliel': 1,\n",
      "          'swinton': 1,\n",
      "          'whose': 1,\n",
      "          'real': 1,\n",
      "          'dialogue': 1,\n",
      "          'scene': 1,\n",
      "          'deals': 1,\n",
      "          'directly': 1,\n",
      "          'color': 1,\n",
      "          'skin': 1,\n",
      "          'nwhen': 1,\n",
      "          'seriously': 1,\n",
      "          'injured': 1,\n",
      "          'shine': 1,\n",
      "          'runs': 1,\n",
      "          'undermining': 1,\n",
      "          'unusual': 1,\n",
      "          'playing': 1,\n",
      "          'strategies': 1,\n",
      "          'nhis': 1,\n",
      "          'relationship': 1,\n",
      "          'dutiful': 1,\n",
      "          'girlfriend': 1,\n",
      "          'jules': 1,\n",
      "          'amy': 1,\n",
      "          'threatened': 1,\n",
      "          'theres': 1,\n",
      "          'big': 1,\n",
      "          'game': 1,\n",
      "          'end': 1,\n",
      "          'nguess': 1,\n",
      "          'wins': 1,\n",
      "          'nnothing': 1,\n",
      "          'inspired': 1,\n",
      "          'whole': 1,\n",
      "          'simply': 1,\n",
      "          'moves': 1,\n",
      "          'sort': 1,\n",
      "          'conventional': 1,\n",
      "          'motions': 1,\n",
      "          'coach': 1,\n",
      "          'love': 1,\n",
      "          'satire': 1,\n",
      "          'obsessions': 1,\n",
      "          'humor': 1,\n",
      "          'decidedly': 1,\n",
      "          'lowbrow': 1,\n",
      "          'nvan': 1,\n",
      "          'decent': 1,\n",
      "          'job': 1,\n",
      "          'carrying': 1,\n",
      "          'although': 1,\n",
      "          'silly': 1,\n",
      "          'accent': 1,\n",
      "          'trips': 1,\n",
      "          'sometimes': 1,\n",
      "          'isnt': 1,\n",
      "          'stretch': 1,\n",
      "          'dawson': 1,\n",
      "          'leary': 1,\n",
      "          'character': 1,\n",
      "          'nhes': 1,\n",
      "          'pseudointellectual': 1,\n",
      "          'whiny': 1,\n",
      "          'nice': 1,\n",
      "          'except': 1,\n",
      "          'also': 1,\n",
      "          'happens': 1,\n",
      "          'jock': 1,\n",
      "          'nvoight': 1,\n",
      "          'terror': 1,\n",
      "          'chews': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'piece': 1,\n",
      "          'scenery': 1,\n",
      "          'spits': 1,\n",
      "          'adults': 1,\n",
      "          'notably': 1,\n",
      "          'awful': 1,\n",
      "          'younger': 1,\n",
      "          'performers': 1,\n",
      "          'dont': 1,\n",
      "          'fare': 1,\n",
      "          'better': 1,\n",
      "          'non': 1,\n",
      "          'positive': 1,\n",
      "          'side': 1,\n",
      "          'charismatic': 1,\n",
      "          'actor': 1,\n",
      "          'due': 1,\n",
      "          'breakout': 1,\n",
      "          'following': 1,\n",
      "          'supporting': 1,\n",
      "          'turn': 1,\n",
      "          'pleasantville': 1,\n",
      "          'nscott': 1,\n",
      "          'son': 1,\n",
      "          'caan': 1,\n",
      "          'lively': 1,\n",
      "          'moments': 1,\n",
      "          'tweeder': 1,\n",
      "          'teams': 1,\n",
      "          'wild': 1,\n",
      "          'nlarter': 1,\n",
      "          'gorgeous': 1,\n",
      "          'seductress': 1,\n",
      "          'looking': 1,\n",
      "          'way': 1,\n",
      "          'ticket': 1,\n",
      "          'show': 1,\n",
      "          'costumes': 1,\n",
      "          'eyeopening': 1,\n",
      "          'whipped': 1,\n",
      "          'cream': 1,\n",
      "          'bikini': 1,\n",
      "          'nits': 1,\n",
      "          'note': 1,\n",
      "          'definitely': 1,\n",
      "          'earns': 1,\n",
      "          'rrating': 1,\n",
      "          'lot': 1,\n",
      "          'harsh': 1,\n",
      "          'language': 1,\n",
      "          'alcohol': 1,\n",
      "          'abuse': 1,\n",
      "          'unusually': 1,\n",
      "          'amount': 1,\n",
      "          'nudity': 1,\n",
      "          'gratuitous': 1,\n",
      "          'trip': 1,\n",
      "          'strip': 1,\n",
      "          'bar': 1,\n",
      "          'reveals': 1,\n",
      "          'surprising': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'surprise': 1,\n",
      "          'nall': 1,\n",
      "          'likely': 1,\n",
      "          'come': 1,\n",
      "          'shock': 1,\n",
      "          'young': 1,\n",
      "          'female': 1,\n",
      "          'fan': 1,\n",
      "          'base': 1,\n",
      "          'presumably': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'picture': 1,\n",
      "          'ndirector': 1,\n",
      "          'brian': 1,\n",
      "          'robbins': 1,\n",
      "          'previously': 1,\n",
      "          'helmed': 1,\n",
      "          'kids': 1,\n",
      "          'good': 1,\n",
      "          'burger': 1,\n",
      "          'nickelodeon': 1,\n",
      "          'sister': 1,\n",
      "          'company': 1,\n",
      "          'changes': 1,\n",
      "          'directions': 1,\n",
      "          'fails': 1,\n",
      "          'make': 1,\n",
      "          'impression': 1,\n",
      "          'look': 1,\n",
      "          'movie': 1,\n",
      "          'bland': 1,\n",
      "          'characters': 1,\n",
      "          'populate': 1,\n",
      "          'scenes': 1,\n",
      "          'generally': 1,\n",
      "          'unexciting': 1,\n",
      "          'entire': 1,\n",
      "          'looks': 1,\n",
      "          'washed': 1,\n",
      "          'ok': 1,\n",
      "          'soundtrack': 1,\n",
      "          'featuring': 1,\n",
      "          'music': 1,\n",
      "          'collective': 1,\n",
      "          'soul': 1,\n",
      "          'foo': 1,\n",
      "          'fighters': 1,\n",
      "          'green': 1,\n",
      "          'day': 1,\n",
      "          'aaliyah': 1,\n",
      "          'impressive': 1,\n",
      "          'expect': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'crystal': 3,\n",
      "          'movie': 3,\n",
      "          'americas': 2,\n",
      "          'sweethearts': 2,\n",
      "          'concocted': 2,\n",
      "          'romantic': 2,\n",
      "          'exec': 2,\n",
      "          'roberts': 2,\n",
      "          'characters': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'columbiasony': 1,\n",
      "          'nwhat': 1,\n",
      "          'waste': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'nbilly': 1,\n",
      "          'cowriter': 1,\n",
      "          'peter': 1,\n",
      "          'tolan': 1,\n",
      "          'sly': 1,\n",
      "          'provocative': 1,\n",
      "          'premise': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'obvious': 1,\n",
      "          'theyre': 1,\n",
      "          'attempting': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'comedy': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'involves': 1,\n",
      "          'veteran': 1,\n",
      "          'publicist': 1,\n",
      "          'billy': 1,\n",
      "          'summoned': 1,\n",
      "          'orchestrate': 1,\n",
      "          'press': 1,\n",
      "          'junket': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'arrogant': 1,\n",
      "          'director': 1,\n",
      "          'christopher': 1,\n",
      "          'walken': 1,\n",
      "          'holds': 1,\n",
      "          'megabuck': 1,\n",
      "          'hostage': 1,\n",
      "          'editing': 1,\n",
      "          'room': 1,\n",
      "          'refusing': 1,\n",
      "          'show': 1,\n",
      "          'anyone': 1,\n",
      "          'nhe': 1,\n",
      "          'figures': 1,\n",
      "          'giving': 1,\n",
      "          'journalists': 1,\n",
      "          'juicy': 1,\n",
      "          'hints': 1,\n",
      "          'possible': 1,\n",
      "          'reconciliation': 1,\n",
      "          'films': 1,\n",
      "          'oncemarriedbutnowestranged': 1,\n",
      "          'stars': 1,\n",
      "          'gwen': 1,\n",
      "          'eddie': 1,\n",
      "          'catherine': 1,\n",
      "          'zetajones': 1,\n",
      "          'john': 1,\n",
      "          'cusack': 1,\n",
      "          'theyll': 1,\n",
      "          'distracted': 1,\n",
      "          'wont': 1,\n",
      "          'remember': 1,\n",
      "          'didnt': 1,\n",
      "          'see': 1,\n",
      "          'wasnt': 1,\n",
      "          'expected': 1,\n",
      "          'n': 1,\n",
      "          'thought': 1,\n",
      "          'long': 1,\n",
      "          'sony': 1,\n",
      "          'phony': 1,\n",
      "          'criticdavid': 1,\n",
      "          'manning': 1,\n",
      "          'quote': 1,\n",
      "          'scandal': 1,\n",
      "          'nfor': 1,\n",
      "          'help': 1,\n",
      "          'turns': 1,\n",
      "          'gwens': 1,\n",
      "          'personal': 1,\n",
      "          'assistantsister': 1,\n",
      "          'julia': 1,\n",
      "          'nbut': 1,\n",
      "          'laughs': 1,\n",
      "          'farbetween': 1,\n",
      "          'ncrystals': 1,\n",
      "          'glib': 1,\n",
      "          'cynical': 1,\n",
      "          'flack': 1,\n",
      "          'isnt': 1,\n",
      "          'wickedly': 1,\n",
      "          'funny': 1,\n",
      "          'enough': 1,\n",
      "          'amusing': 1,\n",
      "          'oneliners': 1,\n",
      "          'nafter': 1,\n",
      "          'six': 1,\n",
      "          'months': 1,\n",
      "          'care': 1,\n",
      "          'depak': 1,\n",
      "          'chopralike': 1,\n",
      "          'guru': 1,\n",
      "          'alan': 1,\n",
      "          'arkin': 1,\n",
      "          'cusacks': 1,\n",
      "          'emotionally': 1,\n",
      "          'fragile': 1,\n",
      "          'lacking': 1,\n",
      "          'necessary': 1,\n",
      "          'charisma': 1,\n",
      "          'nzetajoness': 1,\n",
      "          'vain': 1,\n",
      "          'narcissistic': 1,\n",
      "          'diva': 1,\n",
      "          'undeveloped': 1,\n",
      "          'onedimensional': 1,\n",
      "          'nonly': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'zetajoness': 1,\n",
      "          'muchmacho': 1,\n",
      "          'spanish': 1,\n",
      "          'lover': 1,\n",
      "          'stanley': 1,\n",
      "          'tucci': 1,\n",
      "          'studio': 1,\n",
      "          'manage': 1,\n",
      "          'whip': 1,\n",
      "          'farcical': 1,\n",
      "          'froth': 1,\n",
      "          'nbasically': 1,\n",
      "          'dont': 1,\n",
      "          'like': 1,\n",
      "          'egodriven': 1,\n",
      "          'stereotypical': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'root': 1,\n",
      "          'unwind': 1,\n",
      "          'entanglements': 1,\n",
      "          'joe': 1,\n",
      "          'roths': 1,\n",
      "          'direction': 1,\n",
      "          'predictable': 1,\n",
      "          'formulaic': 1,\n",
      "          'telegraphic': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'contrived': 1,\n",
      "          'shallow': 1,\n",
      "          '4': 1,\n",
      "          'screwball': 1,\n",
      "          'satire': 1,\n",
      "          'strictly': 1,\n",
      "          'superficial': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jeepers': 3,\n",
      "          'creepers': 3,\n",
      "          'film': 3,\n",
      "          'mgmua': 2,\n",
      "          'long': 2,\n",
      "          'bodies': 2,\n",
      "          'nwhen': 2,\n",
      "          'n': 2,\n",
      "          'know': 2,\n",
      "          'scary': 2,\n",
      "          'old': 2,\n",
      "          'boy': 2,\n",
      "          'nand': 2,\n",
      "          'story': 2,\n",
      "          'fact': 2,\n",
      "          'salva': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'entertainment': 1,\n",
      "          'nthis': 1,\n",
      "          'nasty': 1,\n",
      "          'little': 1,\n",
      "          'horror': 1,\n",
      "          'begins': 1,\n",
      "          'bickering': 1,\n",
      "          'brother': 1,\n",
      "          'justin': 1,\n",
      "          'sister': 1,\n",
      "          'gina': 1,\n",
      "          'philips': 1,\n",
      "          'driving': 1,\n",
      "          'desolate': 1,\n",
      "          'countryside': 1,\n",
      "          'way': 1,\n",
      "          'home': 1,\n",
      "          'college': 1,\n",
      "          'spy': 1,\n",
      "          'man': 1,\n",
      "          'dropping': 1,\n",
      "          'wrappedup': 1,\n",
      "          'drainage': 1,\n",
      "          'pipe': 1,\n",
      "          'decides': 1,\n",
      "          'investigate': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'trouble': 1,\n",
      "          'part': 1,\n",
      "          'movies': 1,\n",
      "          'somebody': 1,\n",
      "          'something': 1,\n",
      "          'really': 1,\n",
      "          'stupid': 1,\n",
      "          'everybody': 1,\n",
      "          'hates': 1,\n",
      "          'well': 1,\n",
      "          'nphilips': 1,\n",
      "          'warns': 1,\n",
      "          'nwhat': 1,\n",
      "          'finds': 1,\n",
      "          'basement': 1,\n",
      "          'abandoned': 1,\n",
      "          'church': 1,\n",
      "          'dying': 1,\n",
      "          'horrifying': 1,\n",
      "          'jaggedstitched': 1,\n",
      "          'incision': 1,\n",
      "          'neck': 1,\n",
      "          'navel': 1,\n",
      "          'plus': 1,\n",
      "          'hundreds': 1,\n",
      "          'mutilated': 1,\n",
      "          'stitched': 1,\n",
      "          'together': 1,\n",
      "          'walls': 1,\n",
      "          'ceiling': 1,\n",
      "          'like': 1,\n",
      "          'disgusting': 1,\n",
      "          'tapestry': 1,\n",
      "          'nlong': 1,\n",
      "          'flees': 1,\n",
      "          'monstrous': 1,\n",
      "          'winged': 1,\n",
      "          'creeper': 1,\n",
      "          'jonathan': 1,\n",
      "          'breck': 1,\n",
      "          'neileen': 1,\n",
      "          'brennan': 1,\n",
      "          'appears': 1,\n",
      "          'briefly': 1,\n",
      "          'cat': 1,\n",
      "          'lady': 1,\n",
      "          'patricia': 1,\n",
      "          'belcher': 1,\n",
      "          'jezelle': 1,\n",
      "          'psychic': 1,\n",
      "          'explains': 1,\n",
      "          'evil': 1,\n",
      "          'creatures': 1,\n",
      "          'bizarre': 1,\n",
      "          'feeding': 1,\n",
      "          'habits': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'fiendishly': 1,\n",
      "          'visceral': 1,\n",
      "          '2': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'gruesome': 1,\n",
      "          'conclusion': 1,\n",
      "          'giving': 1,\n",
      "          'new': 1,\n",
      "          'meaning': 1,\n",
      "          'song': 1,\n",
      "          'paul': 1,\n",
      "          'harvey': 1,\n",
      "          'would': 1,\n",
      "          'say': 1,\n",
      "          'rest': 1,\n",
      "          'nwhats': 1,\n",
      "          'cruelty': 1,\n",
      "          'satanic': 1,\n",
      "          'writerdirector': 1,\n",
      "          'victor': 1,\n",
      "          'convicted': 1,\n",
      "          'child': 1,\n",
      "          'molester': 1,\n",
      "          'videotaped': 1,\n",
      "          'oral': 1,\n",
      "          'sex': 1,\n",
      "          '12': 1,\n",
      "          'yearold': 1,\n",
      "          'actor': 1,\n",
      "          'california': 1,\n",
      "          'nsentenced': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'prison': 1,\n",
      "          'served': 1,\n",
      "          '15': 1,\n",
      "          'months': 1,\n",
      "          'completed': 1,\n",
      "          'parole': 1,\n",
      "          '1992': 1,\n",
      "          'made': 1,\n",
      "          'powder': 1,\n",
      "          '1995': 1,\n",
      "          'albino': 1,\n",
      "          'supernatural': 1,\n",
      "          'abilities': 1,\n",
      "          'disney': 1,\n",
      "          'studio': 1,\n",
      "          'executives': 1,\n",
      "          'claimed': 1,\n",
      "          'prior': 1,\n",
      "          'conviction': 1,\n",
      "          'pedophile': 1,\n",
      "          'conspicuously': 1,\n",
      "          'absent': 1,\n",
      "          'press': 1,\n",
      "          'kit': 1,\n",
      "          'bio': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'story': 5,\n",
      "          'nthe': 5,\n",
      "          'ray': 5,\n",
      "          'make': 4,\n",
      "          'buddies': 3,\n",
      "          'anything': 3,\n",
      "          'independent': 2,\n",
      "          'feel': 2,\n",
      "          'films': 2,\n",
      "          'nit': 2,\n",
      "          'director': 2,\n",
      "          'growing': 2,\n",
      "          'new': 2,\n",
      "          'jersey': 2,\n",
      "          'could': 2,\n",
      "          'see': 2,\n",
      "          'old': 2,\n",
      "          'get': 2,\n",
      "          'relationship': 2,\n",
      "          'enough': 2,\n",
      "          'star': 2,\n",
      "          'adrien': 2,\n",
      "          'brody': 2,\n",
      "          'nray': 2,\n",
      "          'son': 2,\n",
      "          'running': 2,\n",
      "          'business': 2,\n",
      "          'nhis': 2,\n",
      "          'lives': 2,\n",
      "          'shoe': 2,\n",
      "          'nothing': 2,\n",
      "          'loanshark': 2,\n",
      "          'nthere': 2,\n",
      "          'mike': 2,\n",
      "          'artistic': 2,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'eric': 1,\n",
      "          'bross': 1,\n",
      "          'look': 1,\n",
      "          'troubled': 1,\n",
      "          'bluecollar': 1,\n",
      "          'youth': 1,\n",
      "          'inundated': 1,\n",
      "          'market': 1,\n",
      "          'recent': 1,\n",
      "          'times': 1,\n",
      "          'hard': 1,\n",
      "          'tell': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'made': 1,\n",
      "          'hollywood': 1,\n",
      "          'home': 1,\n",
      "          'videocam': 1,\n",
      "          'debut': 1,\n",
      "          'tells': 1,\n",
      "          'personal': 1,\n",
      "          'italians': 1,\n",
      "          'heavy': 1,\n",
      "          'accents': 1,\n",
      "          'remaining': 1,\n",
      "          'tight': 1,\n",
      "          'grow': 1,\n",
      "          'young': 1,\n",
      "          'adults': 1,\n",
      "          'tale': 1,\n",
      "          'rewarding': 1,\n",
      "          '1950s': 1,\n",
      "          'mindset': 1,\n",
      "          'characters': 1,\n",
      "          'depicted': 1,\n",
      "          'grounded': 1,\n",
      "          '1990s': 1,\n",
      "          'different': 1,\n",
      "          'news': 1,\n",
      "          'love': 1,\n",
      "          'simple': 1,\n",
      "          'girl': 1,\n",
      "          'waiting': 1,\n",
      "          'married': 1,\n",
      "          'luckless': 1,\n",
      "          'boyfriend': 1,\n",
      "          'turning': 1,\n",
      "          'nasty': 1,\n",
      "          'doesnt': 1,\n",
      "          'mean': 1,\n",
      "          'much': 1,\n",
      "          'since': 1,\n",
      "          'remained': 1,\n",
      "          'undeveloped': 1,\n",
      "          'introduction': 1,\n",
      "          'wiseguy': 1,\n",
      "          'angle': 1,\n",
      "          'loyality': 1,\n",
      "          'among': 1,\n",
      "          'bit': 1,\n",
      "          'moving': 1,\n",
      "          'emotional': 1,\n",
      "          'experiences': 1,\n",
      "          'intelligent': 1,\n",
      "          'dramatics': 1,\n",
      "          'elevate': 1,\n",
      "          'limited': 1,\n",
      "          'line': 1,\n",
      "          'despite': 1,\n",
      "          'tourdeforce': 1,\n",
      "          'performance': 1,\n",
      "          'lowlevel': 1,\n",
      "          'mobster': 1,\n",
      "          'arrested': 1,\n",
      "          'illegal': 1,\n",
      "          'casino': 1,\n",
      "          'operation': 1,\n",
      "          'bloomfield': 1,\n",
      "          'suburban': 1,\n",
      "          'basement': 1,\n",
      "          'sr': 1,\n",
      "          'vincent': 1,\n",
      "          'trying': 1,\n",
      "          'go': 1,\n",
      "          'small': 1,\n",
      "          'scale': 1,\n",
      "          'homerepair': 1,\n",
      "          'works': 1,\n",
      "          'unhappily': 1,\n",
      "          'salesman': 1,\n",
      "          'dreaming': 1,\n",
      "          'getting': 1,\n",
      "          'rich': 1,\n",
      "          'quickly': 1,\n",
      "          'open': 1,\n",
      "          'marry': 1,\n",
      "          'longtime': 1,\n",
      "          'waitress': 1,\n",
      "          'girlfriend': 1,\n",
      "          'joanne': 1,\n",
      "          'sybil': 1,\n",
      "          'title': 1,\n",
      "          'refers': 1,\n",
      "          'size': 1,\n",
      "          'paul': 1,\n",
      "          'newman10b': 1,\n",
      "          'really': 1,\n",
      "          'explaining': 1,\n",
      "          'nshould': 1,\n",
      "          'aware': 1,\n",
      "          'lot': 1,\n",
      "          'things': 1,\n",
      "          'dont': 1,\n",
      "          'sense': 1,\n",
      "          'constant': 1,\n",
      "          'brainless': 1,\n",
      "          'chatter': 1,\n",
      "          'uneventful': 1,\n",
      "          'pains': 1,\n",
      "          'despair': 1,\n",
      "          'difficult': 1,\n",
      "          'empathy': 1,\n",
      "          'ndesperate': 1,\n",
      "          'dream': 1,\n",
      "          'come': 1,\n",
      "          'goes': 1,\n",
      "          'humorously': 1,\n",
      "          'menacingly': 1,\n",
      "          'played': 1,\n",
      "          'james': 1,\n",
      "          'e': 1,\n",
      "          'moriarty': 1,\n",
      "          'borrows': 1,\n",
      "          '10': 1,\n",
      "          'grand': 1,\n",
      "          'bet': 1,\n",
      "          'sure': 1,\n",
      "          'thing': 1,\n",
      "          'freehold': 1,\n",
      "          'raceway': 1,\n",
      "          'horse': 1,\n",
      "          'loses': 1,\n",
      "          'big': 1,\n",
      "          'problems': 1,\n",
      "          'comes': 1,\n",
      "          'muscle': 1,\n",
      "          'dough': 1,\n",
      "          'seen': 1,\n",
      "          'far': 1,\n",
      "          'like': 1,\n",
      "          'nhe': 1,\n",
      "          'undependable': 1,\n",
      "          'meanspirited': 1,\n",
      "          'stupid': 1,\n",
      "          'nso': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'gallagher': 1,\n",
      "          'narrator': 1,\n",
      "          'gets': 1,\n",
      "          'chance': 1,\n",
      "          'sleep': 1,\n",
      "          'girlfriendwho': 1,\n",
      "          'cares': 1,\n",
      "          'must': 1,\n",
      "          'kidding': 1,\n",
      "          'thinks': 1,\n",
      "          'nas': 1,\n",
      "          'rays': 1,\n",
      "          'gambling': 1,\n",
      "          'debt': 1,\n",
      "          'dilemma': 1,\n",
      "          'pay': 1,\n",
      "          'predictable': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'happen': 1,\n",
      "          'college': 1,\n",
      "          'student': 1,\n",
      "          'dependable': 1,\n",
      "          'butchie': 1,\n",
      "          'gillan': 1,\n",
      "          'man': 1,\n",
      "          'lovehate': 1,\n",
      "          'rally': 1,\n",
      "          'aid': 1,\n",
      "          'nand': 1,\n",
      "          'ends': 1,\n",
      "          'obligatory': 1,\n",
      "          'note': 1,\n",
      "          'ambiguity': 1,\n",
      "          'seems': 1,\n",
      "          'way': 1,\n",
      "          'wannabe': 1,\n",
      "          'florida': 1,\n",
      "          'lonesome': 1,\n",
      "          'self': 1,\n",
      "          'try': 1,\n",
      "          'put': 1,\n",
      "          'life': 1,\n",
      "          'together': 1,\n",
      "          'energy': 1,\n",
      "          'spark': 1,\n",
      "          'relevant': 1,\n",
      "          'superficial': 1,\n",
      "          'keep': 1,\n",
      "          'interesting': 1,\n",
      "          'though': 1,\n",
      "          'showed': 1,\n",
      "          'signs': 1,\n",
      "          'future': 1,\n",
      "          'nbecause': 1,\n",
      "          'intensity': 1,\n",
      "          'looks': 1,\n",
      "          'reminds': 1,\n",
      "          'sean': 1,\n",
      "          'penn': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'characters': 5,\n",
      "          'written': 3,\n",
      "          'dialogue': 3,\n",
      "          'freeman': 3,\n",
      "          'girls': 3,\n",
      "          'one': 3,\n",
      "          'women': 3,\n",
      "          'hollywood': 2,\n",
      "          'us': 2,\n",
      "          'predictable': 2,\n",
      "          'nthe': 2,\n",
      "          'case': 2,\n",
      "          'victims': 2,\n",
      "          'twist': 2,\n",
      "          'successful': 2,\n",
      "          'nwe': 2,\n",
      "          'ashly': 2,\n",
      "          'judd': 2,\n",
      "          'lambs': 2,\n",
      "          'film': 2,\n",
      "          'also': 2,\n",
      "          'story': 2,\n",
      "          'smart': 2,\n",
      "          'movie': 2,\n",
      "          'comparisons': 2,\n",
      "          'nand': 2,\n",
      "          'novel': 2,\n",
      "          'thats': 2,\n",
      "          'interesting': 2,\n",
      "          'script': 2,\n",
      "          'things': 2,\n",
      "          'nbut': 2,\n",
      "          'come': 1,\n",
      "          'surprise': 1,\n",
      "          'nstop': 1,\n",
      "          'giving': 1,\n",
      "          'poorly': 1,\n",
      "          'thrillers': 1,\n",
      "          'banal': 1,\n",
      "          'sketchy': 1,\n",
      "          'plots': 1,\n",
      "          'sunset': 1,\n",
      "          'always': 1,\n",
      "          'watchable': 1,\n",
      "          'morgan': 1,\n",
      "          'plays': 1,\n",
      "          'detective': 1,\n",
      "          'becomes': 1,\n",
      "          'personally': 1,\n",
      "          'involved': 1,\n",
      "          'involving': 1,\n",
      "          'missing': 1,\n",
      "          'npersonal': 1,\n",
      "          'niece': 1,\n",
      "          'nits': 1,\n",
      "          'slobbering': 1,\n",
      "          'psychopath': 1,\n",
      "          'course': 1,\n",
      "          'time': 1,\n",
      "          'theres': 1,\n",
      "          'nfreeman': 1,\n",
      "          'notes': 1,\n",
      "          'young': 1,\n",
      "          'whove': 1,\n",
      "          'disappeared': 1,\n",
      "          'strong': 1,\n",
      "          'willed': 1,\n",
      "          'assertive': 1,\n",
      "          'careers': 1,\n",
      "          'average': 1,\n",
      "          'girl': 1,\n",
      "          'soon': 1,\n",
      "          'learn': 1,\n",
      "          'guy': 1,\n",
      "          'calls': 1,\n",
      "          'casanova': 1,\n",
      "          'whose': 1,\n",
      "          'aim': 1,\n",
      "          'dominate': 1,\n",
      "          'modern': 1,\n",
      "          'gals': 1,\n",
      "          'imprisoning': 1,\n",
      "          'dungeon': 1,\n",
      "          'keeping': 1,\n",
      "          'personal': 1,\n",
      "          'harem': 1,\n",
      "          'nanyway': 1,\n",
      "          'manages': 1,\n",
      "          'escape': 1,\n",
      "          'teams': 1,\n",
      "          'well': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'rest': 1,\n",
      "          'na': 1,\n",
      "          'brief': 1,\n",
      "          'glance': 1,\n",
      "          'plot': 1,\n",
      "          'silence': 1,\n",
      "          'constantly': 1,\n",
      "          'compared': 1,\n",
      "          'hype': 1,\n",
      "          'merchants': 1,\n",
      "          'may': 1,\n",
      "          'suggest': 1,\n",
      "          'fairly': 1,\n",
      "          'nperhaps': 1,\n",
      "          'superbly': 1,\n",
      "          'drawn': 1,\n",
      "          'nso': 1,\n",
      "          'lets': 1,\n",
      "          'insult': 1,\n",
      "          'great': 1,\n",
      "          'taking': 1,\n",
      "          'okay': 1,\n",
      "          'seven': 1,\n",
      "          'oh': 1,\n",
      "          'nplease': 1,\n",
      "          'nkiss': 1,\n",
      "          'based': 1,\n",
      "          'james': 1,\n",
      "          'patterson': 1,\n",
      "          'screen': 1,\n",
      "          'david': 1,\n",
      "          'klass': 1,\n",
      "          'nmaybe': 1,\n",
      "          'stinker': 1,\n",
      "          'start': 1,\n",
      "          'whatever': 1,\n",
      "          'writing': 1,\n",
      "          'clearly': 1,\n",
      "          'fault': 1,\n",
      "          'none': 1,\n",
      "          'little': 1,\n",
      "          'say': 1,\n",
      "          'engaging': 1,\n",
      "          'ntwo': 1,\n",
      "          'sense': 1,\n",
      "          'humour': 1,\n",
      "          'nthree': 1,\n",
      "          'notion': 1,\n",
      "          'psychos': 1,\n",
      "          'execution': 1,\n",
      "          'isnt': 1,\n",
      "          'even': 1,\n",
      "          'half': 1,\n",
      "          'good': 1,\n",
      "          'idea': 1,\n",
      "          'nthus': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'focus': 1,\n",
      "          'instead': 1,\n",
      "          'heart': 1,\n",
      "          'cant': 1,\n",
      "          'feel': 1,\n",
      "          'rage': 1,\n",
      "          'nsome': 1,\n",
      "          'atrociously': 1,\n",
      "          'casual': 1,\n",
      "          'exchanges': 1,\n",
      "          'several': 1,\n",
      "          'male': 1,\n",
      "          'supposed': 1,\n",
      "          'remind': 1,\n",
      "          'shes': 1,\n",
      "          'nobullshit': 1,\n",
      "          '90s': 1,\n",
      "          'type': 1,\n",
      "          'conversations': 1,\n",
      "          'barely': 1,\n",
      "          'register': 1,\n",
      "          'kiss': 1,\n",
      "          'second': 1,\n",
      "          'dog': 1,\n",
      "          'year': 1,\n",
      "          'first': 1,\n",
      "          'chain': 1,\n",
      "          'reaction': 1,\n",
      "          'nfor': 1,\n",
      "          'actor': 1,\n",
      "          'calibre': 1,\n",
      "          'worrying': 1,\n",
      "          'nyoung': 1,\n",
      "          'director': 1,\n",
      "          'gary': 1,\n",
      "          'fleder': 1,\n",
      "          'scored': 1,\n",
      "          'hit': 1,\n",
      "          'years': 1,\n",
      "          'back': 1,\n",
      "          'quirky': 1,\n",
      "          'pulp': 1,\n",
      "          'fictionesque': 1,\n",
      "          'denver': 1,\n",
      "          'dead': 1,\n",
      "          'material': 1,\n",
      "          'resolutely': 1,\n",
      "          'mediocre': 1,\n",
      "          'nnot': 1,\n",
      "          'much': 1,\n",
      "          'hardly': 1,\n",
      "          'blame': 1,\n",
      "          'ntheres': 1,\n",
      "          'wellstaged': 1,\n",
      "          'chase': 1,\n",
      "          'scenes': 1,\n",
      "          'forest': 1,\n",
      "          'camera': 1,\n",
      "          'whirls': 1,\n",
      "          'dives': 1,\n",
      "          'jumps': 1,\n",
      "          'effect': 1,\n",
      "          'startling': 1,\n",
      "          'beyond': 1,\n",
      "          'rescue': 1,\n",
      "          'nwhat': 1,\n",
      "          'hurts': 1,\n",
      "          'continues': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'serving': 1,\n",
      "          'tripe': 1,\n",
      "          'safe': 1,\n",
      "          'knowledge': 1,\n",
      "          'jaded': 1,\n",
      "          'audiences': 1,\n",
      "          'lap': 1,\n",
      "          'ncomplacency': 1,\n",
      "          'rules': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'saw': 1,\n",
      "          'mainstream': 1,\n",
      "          'american': 1,\n",
      "          'thriller': 1,\n",
      "          'delivered': 1,\n",
      "          'juicy': 1,\n",
      "          'real': 1,\n",
      "          'surprises': 1,\n",
      "          'consistently': 1,\n",
      "          'sharp': 1,\n",
      "          'consolation': 1,\n",
      "          'viewer': 1,\n",
      "          'ticket': 1,\n",
      "          'freebie': 1,\n",
      "          'positive': 1,\n",
      "          'proof': 1,\n",
      "          'best': 1,\n",
      "          'life': 1,\n",
      "          'arent': 1,\n",
      "          'free': 1,\n",
      "          'n': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 23,\n",
      "          'apes': 19,\n",
      "          'planet': 11,\n",
      "          'nthe': 9,\n",
      "          '1968': 8,\n",
      "          'language': 7,\n",
      "          'nin': 7,\n",
      "          'much': 6,\n",
      "          'little': 6,\n",
      "          'like': 6,\n",
      "          'ape': 6,\n",
      "          'makeup': 6,\n",
      "          'version': 5,\n",
      "          '4': 5,\n",
      "          'nit': 5,\n",
      "          'book': 5,\n",
      "          'humans': 5,\n",
      "          'human': 5,\n",
      "          'best': 5,\n",
      "          'novel': 4,\n",
      "          'nthat': 4,\n",
      "          'makes': 4,\n",
      "          'serling': 4,\n",
      "          'never': 4,\n",
      "          'script': 4,\n",
      "          'would': 4,\n",
      "          'english': 4,\n",
      "          'even': 4,\n",
      "          'shows': 4,\n",
      "          'score': 4,\n",
      "          'one': 4,\n",
      "          'good': 4,\n",
      "          'nhe': 4,\n",
      "          'leo': 4,\n",
      "          'place': 4,\n",
      "          '0': 3,\n",
      "          'roles': 3,\n",
      "          'make': 3,\n",
      "          'become': 3,\n",
      "          'could': 3,\n",
      "          'series': 3,\n",
      "          'speak': 3,\n",
      "          'surprise': 3,\n",
      "          'well': 3,\n",
      "          'violence': 3,\n",
      "          'battle': 3,\n",
      "          'nas': 3,\n",
      "          'actor': 3,\n",
      "          'storm': 3,\n",
      "          'occur': 3,\n",
      "          'look': 3,\n",
      "          'nthis': 3,\n",
      "          'society': 3,\n",
      "          'lines': 3,\n",
      "          'work': 3,\n",
      "          'boulle': 2,\n",
      "          'screen': 2,\n",
      "          'chases': 2,\n",
      "          'fighting': 2,\n",
      "          'intelligence': 2,\n",
      "          'gullivers': 2,\n",
      "          'travels': 2,\n",
      "          'n': 2,\n",
      "          'lot': 2,\n",
      "          'reversed': 2,\n",
      "          'seems': 2,\n",
      "          'also': 2,\n",
      "          'looking': 2,\n",
      "          'nwhen': 2,\n",
      "          'added': 2,\n",
      "          'ending': 2,\n",
      "          'final': 2,\n",
      "          'original': 2,\n",
      "          'history': 2,\n",
      "          'ni': 2,\n",
      "          'serious': 2,\n",
      "          'question': 2,\n",
      "          'done': 2,\n",
      "          'required': 2,\n",
      "          'may': 2,\n",
      "          'nbut': 2,\n",
      "          'intelligent': 2,\n",
      "          'ever': 2,\n",
      "          'least': 2,\n",
      "          'jerry': 2,\n",
      "          'goldsmiths': 2,\n",
      "          'films': 2,\n",
      "          'called': 2,\n",
      "          'filmmakers': 2,\n",
      "          'political': 2,\n",
      "          'first': 2,\n",
      "          'point': 2,\n",
      "          'tim': 2,\n",
      "          'burton': 2,\n",
      "          'faithful': 2,\n",
      "          'less': 2,\n",
      "          'really': 2,\n",
      "          'works': 2,\n",
      "          'talk': 2,\n",
      "          'didnt': 2,\n",
      "          'either': 2,\n",
      "          'real': 2,\n",
      "          'case': 2,\n",
      "          'relationships': 2,\n",
      "          'played': 2,\n",
      "          'carter': 2,\n",
      "          'attractive': 2,\n",
      "          'close': 2,\n",
      "          'nshe': 2,\n",
      "          'nwe': 2,\n",
      "          'see': 2,\n",
      "          'ones': 2,\n",
      "          'almost': 2,\n",
      "          'nthey': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'visuals': 2,\n",
      "          'visual': 2,\n",
      "          'nicely': 2,\n",
      "          'baker': 2,\n",
      "          'chambers': 2,\n",
      "          'enough': 2,\n",
      "          'leaps': 2,\n",
      "          'scenes': 2,\n",
      "          'stardom': 2,\n",
      "          'thing': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'anticipated': 1,\n",
      "          'readaptation': 1,\n",
      "          'pierre': 1,\n",
      "          'comes': 1,\n",
      "          'dark': 1,\n",
      "          'dreary': 1,\n",
      "          'lots': 1,\n",
      "          'nvisually': 1,\n",
      "          'approach': 1,\n",
      "          'take': 1,\n",
      "          'adventure': 1,\n",
      "          'style': 1,\n",
      "          'treat': 1,\n",
      "          'action': 1,\n",
      "          'without': 1,\n",
      "          'center': 1,\n",
      "          'npierre': 1,\n",
      "          'author': 1,\n",
      "          'bridge': 1,\n",
      "          'river': 1,\n",
      "          'kwai': 1,\n",
      "          'wrote': 1,\n",
      "          'k': 1,\n",
      "          'monkey': 1,\n",
      "          'social': 1,\n",
      "          'satire': 1,\n",
      "          'reads': 1,\n",
      "          'fifth': 1,\n",
      "          'nhumans': 1,\n",
      "          'discover': 1,\n",
      "          'unlike': 1,\n",
      "          'horses': 1,\n",
      "          'jonathan': 1,\n",
      "          'swifts': 1,\n",
      "          'island': 1,\n",
      "          'houyhnhnms': 1,\n",
      "          'moves': 1,\n",
      "          'somewhat': 1,\n",
      "          'slowly': 1,\n",
      "          'create': 1,\n",
      "          'suspense': 1,\n",
      "          'revealing': 1,\n",
      "          'things': 1,\n",
      "          'fans': 1,\n",
      "          'know': 1,\n",
      "          'true': 1,\n",
      "          'nature': 1,\n",
      "          'statement': 1,\n",
      "          'cruelty': 1,\n",
      "          'animals': 1,\n",
      "          'perhaps': 1,\n",
      "          'rod': 1,\n",
      "          'adapted': 1,\n",
      "          'released': 1,\n",
      "          'number': 1,\n",
      "          'touches': 1,\n",
      "          'familiar': 1,\n",
      "          'episodes': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'changed': 1,\n",
      "          'serlingish': 1,\n",
      "          'irony': 1,\n",
      "          'nwithout': 1,\n",
      "          'surmise': 1,\n",
      "          'ran': 1,\n",
      "          'problems': 1,\n",
      "          'handle': 1,\n",
      "          'tricky': 1,\n",
      "          'eventually': 1,\n",
      "          'learned': 1,\n",
      "          'entire': 1,\n",
      "          'subtitled': 1,\n",
      "          'nonapespeaking': 1,\n",
      "          'nserling': 1,\n",
      "          'avoided': 1,\n",
      "          'course': 1,\n",
      "          'justification': 1,\n",
      "          'end': 1,\n",
      "          'njustifying': 1,\n",
      "          'spoke': 1,\n",
      "          'inspiration': 1,\n",
      "          'tackles': 1,\n",
      "          'allimportant': 1,\n",
      "          'supposedly': 1,\n",
      "          'curiosity': 1,\n",
      "          'opportunity': 1,\n",
      "          'hear': 1,\n",
      "          'nfew': 1,\n",
      "          'viewers': 1,\n",
      "          'questioned': 1,\n",
      "          'plot': 1,\n",
      "          'hole': 1,\n",
      "          'however': 1,\n",
      "          'respected': 1,\n",
      "          'cinema': 1,\n",
      "          'npartial': 1,\n",
      "          'credit': 1,\n",
      "          'go': 1,\n",
      "          'goldsmith': 1,\n",
      "          'whose': 1,\n",
      "          'extremely': 1,\n",
      "          'inventive': 1,\n",
      "          'success': 1,\n",
      "          'sequels': 1,\n",
      "          'turned': 1,\n",
      "          'wellintentioned': 1,\n",
      "          'though': 1,\n",
      "          'subtle': 1,\n",
      "          'messages': 1,\n",
      "          'happening': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          '1960s': 1,\n",
      "          '1970s': 1,\n",
      "          'nwhile': 1,\n",
      "          'shooting': 1,\n",
      "          'guns': 1,\n",
      "          'seemed': 1,\n",
      "          'half': 1,\n",
      "          'hearted': 1,\n",
      "          'second': 1,\n",
      "          'beneath': 1,\n",
      "          'deal': 1,\n",
      "          'concluded': 1,\n",
      "          '1973': 1,\n",
      "          'nnow': 1,\n",
      "          'director': 1,\n",
      "          'tries': 1,\n",
      "          'hand': 1,\n",
      "          'adapting': 1,\n",
      "          'nfor': 1,\n",
      "          'thought': 1,\n",
      "          'burtons': 1,\n",
      "          'new': 1,\n",
      "          'nfirst': 1,\n",
      "          'reverse': 1,\n",
      "          'articulate': 1,\n",
      "          'races': 1,\n",
      "          'battling': 1,\n",
      "          'dominance': 1,\n",
      "          'currently': 1,\n",
      "          'hands': 1,\n",
      "          'uh': 1,\n",
      "          'paws': 1,\n",
      "          'story': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'many': 1,\n",
      "          'cinematic': 1,\n",
      "          'homages': 1,\n",
      "          'third': 1,\n",
      "          'quarter': 1,\n",
      "          'last': 1,\n",
      "          'century': 1,\n",
      "          'title': 1,\n",
      "          'promises': 1,\n",
      "          'intention': 1,\n",
      "          'honoring': 1,\n",
      "          '2029': 1,\n",
      "          'davidson': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'worlds': 1,\n",
      "          'expressive': 1,\n",
      "          'space': 1,\n",
      "          'station': 1,\n",
      "          'increasing': 1,\n",
      "          'usefulness': 1,\n",
      "          'nthen': 1,\n",
      "          'convenient': 1,\n",
      "          'time': 1,\n",
      "          'sweeps': 1,\n",
      "          'wizardofozfashion': 1,\n",
      "          'drops': 1,\n",
      "          'alien': 1,\n",
      "          'yes': 1,\n",
      "          'survives': 1,\n",
      "          'perfect': 1,\n",
      "          'quickly': 1,\n",
      "          'finds': 1,\n",
      "          'greatly': 1,\n",
      "          'rule': 1,\n",
      "          'drool': 1,\n",
      "          'everybody': 1,\n",
      "          'talks': 1,\n",
      "          'nand': 1,\n",
      "          'earth': 1,\n",
      "          'napparently': 1,\n",
      "          'mystery': 1,\n",
      "          'needs': 1,\n",
      "          'explained': 1,\n",
      "          'fact': 1,\n",
      "          'apparently': 1,\n",
      "          'heart': 1,\n",
      "          'horror': 1,\n",
      "          'nboth': 1,\n",
      "          'assumed': 1,\n",
      "          'going': 1,\n",
      "          'talking': 1,\n",
      "          'race': 1,\n",
      "          'dominating': 1,\n",
      "          'another': 1,\n",
      "          'humananimal': 1,\n",
      "          'masterslave': 1,\n",
      "          'noutside': 1,\n",
      "          'sudan': 1,\n",
      "          'countries': 1,\n",
      "          'relevant': 1,\n",
      "          'topic': 1,\n",
      "          'nleo': 1,\n",
      "          'captured': 1,\n",
      "          'used': 1,\n",
      "          'slave': 1,\n",
      "          'discovered': 1,\n",
      "          'ari': 1,\n",
      "          'helena': 1,\n",
      "          'bonham': 1,\n",
      "          'nari': 1,\n",
      "          'ties': 1,\n",
      "          'high': 1,\n",
      "          'power': 1,\n",
      "          'bent': 1,\n",
      "          'making': 1,\n",
      "          'world': 1,\n",
      "          'better': 1,\n",
      "          'nperhaps': 1,\n",
      "          'previous': 1,\n",
      "          'draft': 1,\n",
      "          'hilari': 1,\n",
      "          'stifles': 1,\n",
      "          'usual': 1,\n",
      "          'pout': 1,\n",
      "          'want': 1,\n",
      "          'consider': 1,\n",
      "          'standard': 1,\n",
      "          'forward': 1,\n",
      "          'long': 1,\n",
      "          'escapes': 1,\n",
      "          'couple': 1,\n",
      "          'sympathetic': 1,\n",
      "          'abandonment': 1,\n",
      "          'source': 1,\n",
      "          'material': 1,\n",
      "          'chase': 1,\n",
      "          'severely': 1,\n",
      "          'limits': 1,\n",
      "          'interplay': 1,\n",
      "          'examination': 1,\n",
      "          'eachs': 1,\n",
      "          'important': 1,\n",
      "          'screentime': 1,\n",
      "          'broken': 1,\n",
      "          'separated': 1,\n",
      "          'nburton': 1,\n",
      "          'chooses': 1,\n",
      "          'visceral': 1,\n",
      "          'thrills': 1,\n",
      "          'cerebral': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'miscalculation': 1,\n",
      "          'characters': 1,\n",
      "          'lacking': 1,\n",
      "          'empathy': 1,\n",
      "          'value': 1,\n",
      "          'difficult': 1,\n",
      "          'emotional': 1,\n",
      "          'investment': 1,\n",
      "          'basically': 1,\n",
      "          'chess': 1,\n",
      "          'pieces': 1,\n",
      "          'viewer': 1,\n",
      "          'reason': 1,\n",
      "          'root': 1,\n",
      "          'win': 1,\n",
      "          'subtlety': 1,\n",
      "          'met': 1,\n",
      "          'cared': 1,\n",
      "          'happened': 1,\n",
      "          'taylor': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'nmost': 1,\n",
      "          'offer': 1,\n",
      "          'spotty': 1,\n",
      "          'generally': 1,\n",
      "          'except': 1,\n",
      "          'takes': 1,\n",
      "          'night': 1,\n",
      "          'fog': 1,\n",
      "          'tends': 1,\n",
      "          'limit': 1,\n",
      "          'looks': 1,\n",
      "          'general': 1,\n",
      "          'improved': 1,\n",
      "          'team': 1,\n",
      "          'led': 1,\n",
      "          'rick': 1,\n",
      "          'instead': 1,\n",
      "          'john': 1,\n",
      "          'jawdropper': 1,\n",
      "          'realistic': 1,\n",
      "          'believable': 1,\n",
      "          'flexible': 1,\n",
      "          'show': 1,\n",
      "          'emotion': 1,\n",
      "          'nchambers': 1,\n",
      "          'anyone': 1,\n",
      "          'chance': 1,\n",
      "          'ntoday': 1,\n",
      "          'audiences': 1,\n",
      "          'higher': 1,\n",
      "          'expectations': 1,\n",
      "          'bakers': 1,\n",
      "          'visualization': 1,\n",
      "          'improvement': 1,\n",
      "          'nthese': 1,\n",
      "          'nwhat': 1,\n",
      "          'wire': 1,\n",
      "          'assisted': 1,\n",
      "          'inspired': 1,\n",
      "          'physics': 1,\n",
      "          'defying': 1,\n",
      "          'crouching': 1,\n",
      "          'tiger': 1,\n",
      "          'hidden': 1,\n",
      "          'dragon': 1,\n",
      "          'napes': 1,\n",
      "          'spring': 1,\n",
      "          'incredible': 1,\n",
      "          'distances': 1,\n",
      "          'nsome': 1,\n",
      "          'running': 1,\n",
      "          'posture': 1,\n",
      "          'start': 1,\n",
      "          'flying': 1,\n",
      "          'air': 1,\n",
      "          'effect': 1,\n",
      "          'lost': 1,\n",
      "          'none': 1,\n",
      "          'problem': 1,\n",
      "          'frequently': 1,\n",
      "          'budget': 1,\n",
      "          'spectacular': 1,\n",
      "          'camera': 1,\n",
      "          'us': 1,\n",
      "          'small': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'closeup': 1,\n",
      "          'nsince': 1,\n",
      "          'days': 1,\n",
      "          'lon': 1,\n",
      "          'chaney': 1,\n",
      "          'boris': 1,\n",
      "          'karloff': 1,\n",
      "          'actors': 1,\n",
      "          'crossed': 1,\n",
      "          'role': 1,\n",
      "          'heavy': 1,\n",
      "          'shot': 1,\n",
      "          'paul': 1,\n",
      "          'giamatti': 1,\n",
      "          'silly': 1,\n",
      "          'jokes': 1,\n",
      "          'delivers': 1,\n",
      "          'always': 1,\n",
      "          'watchable': 1,\n",
      "          'yet': 1,\n",
      "          'made': 1,\n",
      "          'apetrader': 1,\n",
      "          'limbo': 1,\n",
      "          'overemotes': 1,\n",
      "          'overcome': 1,\n",
      "          'interesting': 1,\n",
      "          'probably': 1,\n",
      "          'conjures': 1,\n",
      "          'memories': 1,\n",
      "          'peter': 1,\n",
      "          'ustinovs': 1,\n",
      "          'performance': 1,\n",
      "          'spartacus': 1,\n",
      "          'injoke': 1,\n",
      "          'several': 1,\n",
      "          'borrowed': 1,\n",
      "          'old': 1,\n",
      "          'charleton': 1,\n",
      "          'heston': 1,\n",
      "          'becomes': 1,\n",
      "          'allusion': 1,\n",
      "          'ndanny': 1,\n",
      "          'elfmans': 1,\n",
      "          'nice': 1,\n",
      "          'primitive': 1,\n",
      "          'feel': 1,\n",
      "          'tour': 1,\n",
      "          'de': 1,\n",
      "          'force': 1,\n",
      "          'classic': 1,\n",
      "          'whole': 1,\n",
      "          'remembered': 1,\n",
      "          '2001': 1,\n",
      "          'forgotten': 1,\n",
      "          'rate': 1,\n",
      "          'remake': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 5,\n",
      "          'part': 4,\n",
      "          'day': 4,\n",
      "          '3': 3,\n",
      "          '2': 3,\n",
      "          'music': 2,\n",
      "          'opening': 2,\n",
      "          'citizens': 2,\n",
      "          'patrol': 2,\n",
      "          'time': 2,\n",
      "          'teens': 2,\n",
      "          'crystal': 2,\n",
      "          'lake': 2,\n",
      "          'later': 2,\n",
      "          'wish': 1,\n",
      "          'could': 1,\n",
      "          'accurately': 1,\n",
      "          'describe': 1,\n",
      "          'theme': 1,\n",
      "          'nthe': 1,\n",
      "          'best': 1,\n",
      "          'way': 1,\n",
      "          'put': 1,\n",
      "          'funky': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'odd': 1,\n",
      "          'question': 1,\n",
      "          'remember': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          '4': 1,\n",
      "          'steve': 1,\n",
      "          'guttenberg': 1,\n",
      "          'michael': 1,\n",
      "          'winslow': 1,\n",
      "          'perform': 1,\n",
      "          'title': 1,\n",
      "          'song': 1,\n",
      "          'credits': 1,\n",
      "          'nits': 1,\n",
      "          'like': 1,\n",
      "          'nanyway': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'events': 1,\n",
      "          'technically': 1,\n",
      "          'still': 1,\n",
      "          '1985': 1,\n",
      "          'nthis': 1,\n",
      "          'group': 1,\n",
      "          'horny': 1,\n",
      "          'also': 1,\n",
      "          'bring': 1,\n",
      "          'along': 1,\n",
      "          'two': 1,\n",
      "          'aging': 1,\n",
      "          'hippie': 1,\n",
      "          'potheads': 1,\n",
      "          'reason': 1,\n",
      "          'head': 1,\n",
      "          'cabin': 1,\n",
      "          'weekend': 1,\n",
      "          'sex': 1,\n",
      "          'weed': 1,\n",
      "          'nit': 1,\n",
      "          'turns': 1,\n",
      "          'attacked': 1,\n",
      "          'jason': 1,\n",
      "          'earlier': 1,\n",
      "          'life': 1,\n",
      "          'must': 1,\n",
      "          'parts': 1,\n",
      "          '1': 1,\n",
      "          'returned': 1,\n",
      "          'new': 1,\n",
      "          'batch': 1,\n",
      "          'murders': 1,\n",
      "          'beyond': 1,\n",
      "          'nshes': 1,\n",
      "          'lone': 1,\n",
      "          'survivor': 1,\n",
      "          'npart': 1,\n",
      "          'originally': 1,\n",
      "          'shown': 1,\n",
      "          'theaters': 1,\n",
      "          '3d': 1,\n",
      "          'tell': 1,\n",
      "          'video': 1,\n",
      "          'looks': 1,\n",
      "          'though': 1,\n",
      "          'may': 1,\n",
      "          'fairly': 1,\n",
      "          'decent': 1,\n",
      "          'effects': 1,\n",
      "          'njason': 1,\n",
      "          'long': 1,\n",
      "          'wild': 1,\n",
      "          'hair': 1,\n",
      "          'unmasked': 1,\n",
      "          'hes': 1,\n",
      "          'completely': 1,\n",
      "          'bald': 1,\n",
      "          'nalso': 1,\n",
      "          'cant': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'noh': 1,\n",
      "          'well': 1,\n",
      "          'nsteve': 1,\n",
      "          'miner': 1,\n",
      "          'director': 1,\n",
      "          'helmed': 1,\n",
      "          'film': 1,\n",
      "          'series': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'helen': 5,\n",
      "          'like': 5,\n",
      "          'bad': 4,\n",
      "          'lange': 3,\n",
      "          'one': 3,\n",
      "          'hand': 3,\n",
      "          'watch': 3,\n",
      "          'film': 3,\n",
      "          'picture': 3,\n",
      "          'nthe': 3,\n",
      "          'thrillers': 3,\n",
      "          'couple': 3,\n",
      "          'martha': 3,\n",
      "          'incredibly': 3,\n",
      "          'good': 3,\n",
      "          'movie': 3,\n",
      "          'non': 2,\n",
      "          'much': 2,\n",
      "          'probably': 2,\n",
      "          'every': 2,\n",
      "          'work': 2,\n",
      "          'nhush': 2,\n",
      "          'example': 2,\n",
      "          'psychological': 2,\n",
      "          'jackson': 2,\n",
      "          'schaech': 2,\n",
      "          'gwyneth': 2,\n",
      "          'paltrow': 2,\n",
      "          'first': 2,\n",
      "          'started': 2,\n",
      "          'way': 2,\n",
      "          'get': 2,\n",
      "          'nas': 2,\n",
      "          'predictable': 2,\n",
      "          'ending': 2,\n",
      "          'nice': 2,\n",
      "          'lines': 2,\n",
      "          'course': 2,\n",
      "          'character': 2,\n",
      "          'someone': 2,\n",
      "          'evil': 2,\n",
      "          'shes': 2,\n",
      "          'nthats': 2,\n",
      "          'hush': 2,\n",
      "          'plot': 2,\n",
      "          'twists': 2,\n",
      "          'anyone': 2,\n",
      "          'matter': 2,\n",
      "          'really': 2,\n",
      "          'jessica': 1,\n",
      "          'inconsistent': 1,\n",
      "          'actresses': 1,\n",
      "          'working': 1,\n",
      "          'today': 1,\n",
      "          'nfrom': 1,\n",
      "          'timetotime': 1,\n",
      "          'blows': 1,\n",
      "          'away': 1,\n",
      "          'audiences': 1,\n",
      "          'powerful': 1,\n",
      "          'intense': 1,\n",
      "          'performances': 1,\n",
      "          'woman': 1,\n",
      "          'made': 1,\n",
      "          'jawdroppingly': 1,\n",
      "          'awful': 1,\n",
      "          'feature': 1,\n",
      "          'debut': 1,\n",
      "          'dino': 1,\n",
      "          'delaurentiis': 1,\n",
      "          'king': 1,\n",
      "          'kong': 1,\n",
      "          'nand': 1,\n",
      "          'would': 1,\n",
      "          'prefer': 1,\n",
      "          'moviegoers': 1,\n",
      "          'develop': 1,\n",
      "          'amnesia': 1,\n",
      "          'regarding': 1,\n",
      "          'particular': 1,\n",
      "          'entry': 1,\n",
      "          'resume': 1,\n",
      "          'reminiscent': 1,\n",
      "          'quality': 1,\n",
      "          'nlange': 1,\n",
      "          'might': 1,\n",
      "          'fun': 1,\n",
      "          'rest': 1,\n",
      "          'wasnt': 1,\n",
      "          'prime': 1,\n",
      "          'motion': 1,\n",
      "          'tedium': 1,\n",
      "          'opens': 1,\n",
      "          'many': 1,\n",
      "          'socalled': 1,\n",
      "          'posing': 1,\n",
      "          'light': 1,\n",
      "          'drama': 1,\n",
      "          'nwe': 1,\n",
      "          'introduced': 1,\n",
      "          'johnathon': 1,\n",
      "          'last': 1,\n",
      "          'encounter': 1,\n",
      "          'tom': 1,\n",
      "          'hanks': 1,\n",
      "          'thing': 1,\n",
      "          'perfect': 1,\n",
      "          'young': 1,\n",
      "          'love': 1,\n",
      "          'njackson': 1,\n",
      "          'taking': 1,\n",
      "          'home': 1,\n",
      "          'holidays': 1,\n",
      "          'meet': 1,\n",
      "          'mother': 1,\n",
      "          'moment': 1,\n",
      "          'saw': 1,\n",
      "          'looking': 1,\n",
      "          'fangs': 1,\n",
      "          'nsoon': 1,\n",
      "          'wicked': 1,\n",
      "          'witch': 1,\n",
      "          'east': 1,\n",
      "          'plotting': 1,\n",
      "          'son': 1,\n",
      "          'pregnant': 1,\n",
      "          'involves': 1,\n",
      "          'poking': 1,\n",
      "          'hole': 1,\n",
      "          'diaphragm': 1,\n",
      "          'nonce': 1,\n",
      "          'goal': 1,\n",
      "          'accomplished': 1,\n",
      "          'manipulates': 1,\n",
      "          'events': 1,\n",
      "          'expecting': 1,\n",
      "          'moves': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'horse': 1,\n",
      "          'farm': 1,\n",
      "          'lives': 1,\n",
      "          'long': 1,\n",
      "          'gets': 1,\n",
      "          'perfectly': 1,\n",
      "          'amicable': 1,\n",
      "          'person': 1,\n",
      "          'defies': 1,\n",
      "          'declaration': 1,\n",
      "          'war': 1,\n",
      "          'three': 1,\n",
      "          'simple': 1,\n",
      "          'problems': 1,\n",
      "          'dumb': 1,\n",
      "          'boring': 1,\n",
      "          'least': 1,\n",
      "          'stupefying': 1,\n",
      "          'nthis': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'recommend': 1,\n",
      "          'exception': 1,\n",
      "          'shots': 1,\n",
      "          'snowcovered': 1,\n",
      "          'fields': 1,\n",
      "          'quick': 1,\n",
      "          'glimpse': 1,\n",
      "          'paltrows': 1,\n",
      "          'bare': 1,\n",
      "          'buttocks': 1,\n",
      "          'nfrankly': 1,\n",
      "          'embarrassing': 1,\n",
      "          'respected': 1,\n",
      "          'actress': 1,\n",
      "          'langes': 1,\n",
      "          'stature': 1,\n",
      "          'give': 1,\n",
      "          'performance': 1,\n",
      "          'blanche': 1,\n",
      "          'dubois': 1,\n",
      "          'role': 1,\n",
      "          'played': 1,\n",
      "          '1995': 1,\n",
      "          'tv': 1,\n",
      "          'version': 1,\n",
      "          'streetcar': 1,\n",
      "          'named': 1,\n",
      "          'desire': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'best': 1,\n",
      "          'dialogue': 1,\n",
      "          'without': 1,\n",
      "          'gaping': 1,\n",
      "          'stupidity': 1,\n",
      "          'attempts': 1,\n",
      "          'passable': 1,\n",
      "          'imitation': 1,\n",
      "          'inanimate': 1,\n",
      "          'object': 1,\n",
      "          'battle': 1,\n",
      "          'clearly': 1,\n",
      "          'drawn': 1,\n",
      "          'nhere': 1,\n",
      "          'mom': 1,\n",
      "          'wife': 1,\n",
      "          'caught': 1,\n",
      "          'middle': 1,\n",
      "          'nof': 1,\n",
      "          'since': 1,\n",
      "          'schaechs': 1,\n",
      "          'poorlydeveloped': 1,\n",
      "          'badly': 1,\n",
      "          'acted': 1,\n",
      "          'impossible': 1,\n",
      "          'say': 1,\n",
      "          'feels': 1,\n",
      "          'situation': 1,\n",
      "          'nmaybe': 1,\n",
      "          'ask': 1,\n",
      "          'hes': 1,\n",
      "          'familiar': 1,\n",
      "          'oedipus': 1,\n",
      "          'nmartha': 1,\n",
      "          'nhow': 1,\n",
      "          'know': 1,\n",
      "          'nshe': 1,\n",
      "          'smokes': 1,\n",
      "          'cigarettes': 1,\n",
      "          'drinks': 1,\n",
      "          'hard': 1,\n",
      "          'liquor': 1,\n",
      "          'two': 1,\n",
      "          'sure': 1,\n",
      "          'signs': 1,\n",
      "          'devil': 1,\n",
      "          'girl': 1,\n",
      "          'evidence': 1,\n",
      "          'old': 1,\n",
      "          'ladies': 1,\n",
      "          'treasures': 1,\n",
      "          'locket': 1,\n",
      "          'dead': 1,\n",
      "          'parents': 1,\n",
      "          'development': 1,\n",
      "          'nbeyond': 1,\n",
      "          'point': 1,\n",
      "          'series': 1,\n",
      "          'increasingly': 1,\n",
      "          'hardtoswallow': 1,\n",
      "          'coincidences': 1,\n",
      "          'contrivances': 1,\n",
      "          'moronic': 1,\n",
      "          'nhowever': 1,\n",
      "          '85': 1,\n",
      "          'minutes': 1,\n",
      "          'warmup': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'profoundly': 1,\n",
      "          'dissatisfying': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'thought': 1,\n",
      "          'whole': 1,\n",
      "          'liking': 1,\n",
      "          'conclusion': 1,\n",
      "          'neither': 1,\n",
      "          'serious': 1,\n",
      "          'lastminute': 1,\n",
      "          'editing': 1,\n",
      "          'left': 1,\n",
      "          'pages': 1,\n",
      "          'script': 1,\n",
      "          'nbefore': 1,\n",
      "          'climax': 1,\n",
      "          'disliked': 1,\n",
      "          'time': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'hated': 1,\n",
      "          'nviewers': 1,\n",
      "          'invest': 1,\n",
      "          'something': 1,\n",
      "          'ncheating': 1,\n",
      "          'offensive': 1,\n",
      "          'unpardonable': 1,\n",
      "          'nmost': 1,\n",
      "          'entries': 1,\n",
      "          'wornout': 1,\n",
      "          'wormeaten': 1,\n",
      "          'genre': 1,\n",
      "          'arent': 1,\n",
      "          'especially': 1,\n",
      "          'nfilms': 1,\n",
      "          'consenting': 1,\n",
      "          'adults': 1,\n",
      "          'rocks': 1,\n",
      "          'cradle': 1,\n",
      "          'single': 1,\n",
      "          'white': 1,\n",
      "          'female': 1,\n",
      "          'rely': 1,\n",
      "          'stock': 1,\n",
      "          'plots': 1,\n",
      "          'propel': 1,\n",
      "          'narrative': 1,\n",
      "          'along': 1,\n",
      "          'nin': 1,\n",
      "          'general': 1,\n",
      "          'however': 1,\n",
      "          'theyre': 1,\n",
      "          'directed': 1,\n",
      "          'degree': 1,\n",
      "          'competence': 1,\n",
      "          'assures': 1,\n",
      "          'level': 1,\n",
      "          'sustained': 1,\n",
      "          'tension': 1,\n",
      "          'case': 1,\n",
      "          'fail': 1,\n",
      "          'generate': 1,\n",
      "          'even': 1,\n",
      "          'momentary': 1,\n",
      "          'heart': 1,\n",
      "          'palpitation': 1,\n",
      "          'characters': 1,\n",
      "          'bland': 1,\n",
      "          'uninvolving': 1,\n",
      "          'audience': 1,\n",
      "          'care': 1,\n",
      "          'nindeed': 1,\n",
      "          'title': 1,\n",
      "          'refers': 1,\n",
      "          'producers': 1,\n",
      "          'hope': 1,\n",
      "          'viewers': 1,\n",
      "          'lieu': 1,\n",
      "          'telling': 1,\n",
      "          'friends': 1,\n",
      "          'think': 1,\n",
      "          'sorry': 1,\n",
      "          'piece': 1,\n",
      "          'celluloid': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'julian': 5,\n",
      "          'sonny': 3,\n",
      "          'year': 3,\n",
      "          'get': 3,\n",
      "          'adam': 2,\n",
      "          'sandler': 2,\n",
      "          'vanessa': 2,\n",
      "          'kevin': 2,\n",
      "          'boy': 2,\n",
      "          'named': 2,\n",
      "          'sonnys': 2,\n",
      "          'supervision': 2,\n",
      "          'kid': 2,\n",
      "          'movie': 2,\n",
      "          'little': 2,\n",
      "          'big': 2,\n",
      "          'daddy': 2,\n",
      "          'theres': 2,\n",
      "          'preteen': 2,\n",
      "          'raunchy': 2,\n",
      "          'characters': 2,\n",
      "          'olds': 2,\n",
      "          'market': 2,\n",
      "          'american': 2,\n",
      "          'synopsis': 1,\n",
      "          'koufax': 1,\n",
      "          'rich': 1,\n",
      "          'childish': 1,\n",
      "          'angry': 1,\n",
      "          'man': 1,\n",
      "          'dumped': 1,\n",
      "          'girlfriend': 1,\n",
      "          'kristy': 1,\n",
      "          'swanson': 1,\n",
      "          'nin': 1,\n",
      "          'bid': 1,\n",
      "          'impress': 1,\n",
      "          'impersonates': 1,\n",
      "          'friend': 1,\n",
      "          'jon': 1,\n",
      "          'stewart': 1,\n",
      "          'adopts': 1,\n",
      "          '5': 1,\n",
      "          'old': 1,\n",
      "          'cole': 1,\n",
      "          'dylan': 1,\n",
      "          'sprouse': 1,\n",
      "          'overseas': 1,\n",
      "          'trip': 1,\n",
      "          'nunder': 1,\n",
      "          'soon': 1,\n",
      "          'learns': 1,\n",
      "          'lie': 1,\n",
      "          'women': 1,\n",
      "          'tell': 1,\n",
      "          'people': 1,\n",
      "          'wipes': 1,\n",
      "          'ass': 1,\n",
      "          'throw': 1,\n",
      "          'tantrums': 1,\n",
      "          'scream': 1,\n",
      "          'god': 1,\n",
      "          'damned': 1,\n",
      "          'treats': 1,\n",
      "          'nself': 1,\n",
      "          'centered': 1,\n",
      "          'breaks': 1,\n",
      "          'school': 1,\n",
      "          'classmates': 1,\n",
      "          'arm': 1,\n",
      "          'without': 1,\n",
      "          'apologizing': 1,\n",
      "          'even': 1,\n",
      "          'realizing': 1,\n",
      "          'done': 1,\n",
      "          'anything': 1,\n",
      "          'wrong': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'bribes': 1,\n",
      "          'sugary': 1,\n",
      "          'talk': 1,\n",
      "          'food': 1,\n",
      "          'toys': 1,\n",
      "          'flashy': 1,\n",
      "          'promises': 1,\n",
      "          'order': 1,\n",
      "          'perform': 1,\n",
      "          'nnot': 1,\n",
      "          'surprisingly': 1,\n",
      "          'government': 1,\n",
      "          'takes': 1,\n",
      "          'away': 1,\n",
      "          'incompetent': 1,\n",
      "          'leads': 1,\n",
      "          'custody': 1,\n",
      "          'battle': 1,\n",
      "          'nopinion': 1,\n",
      "          'embittered': 1,\n",
      "          'creep': 1,\n",
      "          'teaching': 1,\n",
      "          'jerk': 1,\n",
      "          'cheap': 1,\n",
      "          'laughs': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'innocent': 1,\n",
      "          'kindergartner': 1,\n",
      "          'never': 1,\n",
      "          'finds': 1,\n",
      "          'means': 1,\n",
      "          'mimics': 1,\n",
      "          'bad': 1,\n",
      "          'behavior': 1,\n",
      "          'nthats': 1,\n",
      "          'essence': 1,\n",
      "          'nbut': 1,\n",
      "          'bigger': 1,\n",
      "          'issue': 1,\n",
      "          'involved': 1,\n",
      "          'marketing': 1,\n",
      "          'nmovies': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'pg13': 1,\n",
      "          'heavily': 1,\n",
      "          'marketed': 1,\n",
      "          'towards': 1,\n",
      "          'children': 1,\n",
      "          'age': 1,\n",
      "          'non': 1,\n",
      "          'tv': 1,\n",
      "          'film': 1,\n",
      "          'clips': 1,\n",
      "          'advertise': 1,\n",
      "          'movies': 1,\n",
      "          'familyfriendly': 1,\n",
      "          'hit': 1,\n",
      "          'comedies': 1,\n",
      "          'nthen': 1,\n",
      "          'go': 1,\n",
      "          'see': 1,\n",
      "          'turn': 1,\n",
      "          'either': 1,\n",
      "          'sex': 1,\n",
      "          'acts': 1,\n",
      "          'like': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'fat': 1,\n",
      "          'bastard': 1,\n",
      "          'adult': 1,\n",
      "          'jollies': 1,\n",
      "          'buddying': 1,\n",
      "          'naive': 1,\n",
      "          'five': 1,\n",
      "          'encouraging': 1,\n",
      "          'experiment': 1,\n",
      "          'drugs': 1,\n",
      "          'mistreatment': 1,\n",
      "          'nfolks': 1,\n",
      "          'hollywood': 1,\n",
      "          'trying': 1,\n",
      "          'develop': 1,\n",
      "          'stuff': 1,\n",
      "          'think': 1,\n",
      "          'parents': 1,\n",
      "          'would': 1,\n",
      "          'agree': 1,\n",
      "          'early': 1,\n",
      "          'childhood': 1,\n",
      "          'time': 1,\n",
      "          'mental': 1,\n",
      "          'innocence': 1,\n",
      "          'protected': 1,\n",
      "          'uncaring': 1,\n",
      "          'media': 1,\n",
      "          'exploitation': 1,\n",
      "          'nto': 1,\n",
      "          'many': 1,\n",
      "          'mothers': 1,\n",
      "          'probably': 1,\n",
      "          'nothing': 1,\n",
      "          'pathetic': 1,\n",
      "          'unsettling': 1,\n",
      "          'sight': 1,\n",
      "          'theater': 1,\n",
      "          'full': 1,\n",
      "          'unsupervised': 1,\n",
      "          'eight': 1,\n",
      "          'laughing': 1,\n",
      "          'raucously': 1,\n",
      "          'character': 1,\n",
      "          'father': 1,\n",
      "          'jokes': 1,\n",
      "          'womans': 1,\n",
      "          'ice': 1,\n",
      "          'cold': 1,\n",
      "          'tits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 17,\n",
      "          'glen': 6,\n",
      "          'glenda': 6,\n",
      "          'movie': 5,\n",
      "          'seems': 4,\n",
      "          'wood': 4,\n",
      "          'much': 4,\n",
      "          'pretty': 3,\n",
      "          'ni': 3,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'documentary': 3,\n",
      "          'half': 3,\n",
      "          'lugosi': 3,\n",
      "          'film': 3,\n",
      "          'point': 3,\n",
      "          'would': 2,\n",
      "          'woods': 2,\n",
      "          'transvestitism': 2,\n",
      "          'didnt': 2,\n",
      "          'actually': 2,\n",
      "          'two': 2,\n",
      "          'quite': 2,\n",
      "          'mostly': 2,\n",
      "          'transvestites': 2,\n",
      "          'glenglenda': 2,\n",
      "          'us': 2,\n",
      "          'probably': 2,\n",
      "          'man': 2,\n",
      "          'woman': 2,\n",
      "          'time': 2,\n",
      "          'camera': 2,\n",
      "          'say': 2,\n",
      "          'door': 2,\n",
      "          'characters': 2,\n",
      "          'also': 2,\n",
      "          'stock': 2,\n",
      "          'footage': 2,\n",
      "          'place': 2,\n",
      "          'people': 2,\n",
      "          'occasional': 2,\n",
      "          'lightning': 2,\n",
      "          'nhad': 2,\n",
      "          'wanders': 2,\n",
      "          'far': 2,\n",
      "          'string': 2,\n",
      "          'appears': 2,\n",
      "          'big': 2,\n",
      "          'green': 2,\n",
      "          'dragon': 2,\n",
      "          'nand': 2,\n",
      "          'scene': 2,\n",
      "          'soon': 2,\n",
      "          'certainly': 1,\n",
      "          'one': 1,\n",
      "          'rent': 1,\n",
      "          'ed': 1,\n",
      "          'nexpecting': 1,\n",
      "          'see': 1,\n",
      "          'good': 1,\n",
      "          'screwy': 1,\n",
      "          'discourse': 1,\n",
      "          'betrays': 1,\n",
      "          'level': 1,\n",
      "          'incompetence': 1,\n",
      "          'know': 1,\n",
      "          'possible': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'infamous': 1,\n",
      "          'plan': 1,\n",
      "          '9': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'tame': 1,\n",
      "          'comparison': 1,\n",
      "          'nwatching': 1,\n",
      "          'found': 1,\n",
      "          'occasionally': 1,\n",
      "          'wondering': 1,\n",
      "          'originally': 1,\n",
      "          'made': 1,\n",
      "          'three': 1,\n",
      "          'separate': 1,\n",
      "          'movies': 1,\n",
      "          'accidentally': 1,\n",
      "          'edited': 1,\n",
      "          'together': 1,\n",
      "          'result': 1,\n",
      "          'entertaining': 1,\n",
      "          'unintentionally': 1,\n",
      "          'hilarious': 1,\n",
      "          'starts': 1,\n",
      "          'bad': 1,\n",
      "          'endless': 1,\n",
      "          'repetitive': 1,\n",
      "          'narration': 1,\n",
      "          'difficult': 1,\n",
      "          'transvestite': 1,\n",
      "          'look': 1,\n",
      "          'girlfriends': 1,\n",
      "          'clothes': 1,\n",
      "          'without': 1,\n",
      "          'able': 1,\n",
      "          'wear': 1,\n",
      "          'necessarily': 1,\n",
      "          'homosexuals': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'reminds': 1,\n",
      "          'dozen': 1,\n",
      "          'times': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'work': 1,\n",
      "          'terribleoccasionally': 1,\n",
      "          'lingers': 1,\n",
      "          'closed': 1,\n",
      "          'talk': 1,\n",
      "          'offscreen': 1,\n",
      "          'inexplicably': 1,\n",
      "          'zooms': 1,\n",
      "          'someones': 1,\n",
      "          'ear': 1,\n",
      "          'nose': 1,\n",
      "          'nwood': 1,\n",
      "          'makes': 1,\n",
      "          'copious': 1,\n",
      "          'use': 1,\n",
      "          'irrelevant': 1,\n",
      "          'leads': 1,\n",
      "          'voicedover': 1,\n",
      "          'nonsequiturs': 1,\n",
      "          'yes': 1,\n",
      "          'world': 1,\n",
      "          'busy': 1,\n",
      "          'frightening': 1,\n",
      "          'many': 1,\n",
      "          'driving': 1,\n",
      "          'automobiles': 1,\n",
      "          'nfinally': 1,\n",
      "          'commentary': 1,\n",
      "          'bela': 1,\n",
      "          'sort': 1,\n",
      "          'omniscient': 1,\n",
      "          'inhabit': 1,\n",
      "          'frankensteinstyle': 1,\n",
      "          'laboratory': 1,\n",
      "          'delivering': 1,\n",
      "          'pointless': 1,\n",
      "          'lines': 1,\n",
      "          'nall': 1,\n",
      "          'thoughts': 1,\n",
      "          'ntheir': 1,\n",
      "          'ideas': 1,\n",
      "          'nwhile': 1,\n",
      "          'crackles': 1,\n",
      "          'quasiominously': 1,\n",
      "          'overhead': 1,\n",
      "          'continued': 1,\n",
      "          'vein': 1,\n",
      "          'nprobably': 1,\n",
      "          'remembered': 1,\n",
      "          'nothing': 1,\n",
      "          'poorly': 1,\n",
      "          'done': 1,\n",
      "          'inappropriate': 1,\n",
      "          'horrormovie': 1,\n",
      "          'touch': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'left': 1,\n",
      "          'field': 1,\n",
      "          'wonder': 1,\n",
      "          'eating': 1,\n",
      "          'funny': 1,\n",
      "          'mushrooms': 1,\n",
      "          'wrote': 1,\n",
      "          'script': 1,\n",
      "          'pull': 1,\n",
      "          'npull': 1,\n",
      "          'nannounces': 1,\n",
      "          'alarmed': 1,\n",
      "          'buffalo': 1,\n",
      "          'nthere': 1,\n",
      "          'another': 1,\n",
      "          'crash': 1,\n",
      "          'returns': 1,\n",
      "          'warning': 1,\n",
      "          'beware': 1,\n",
      "          'nbeware': 1,\n",
      "          'lurks': 1,\n",
      "          'outside': 1,\n",
      "          'nit': 1,\n",
      "          'eats': 1,\n",
      "          'little': 1,\n",
      "          'boys': 1,\n",
      "          'puppy': 1,\n",
      "          'dogs': 1,\n",
      "          'tails': 1,\n",
      "          'fat': 1,\n",
      "          'snails': 1,\n",
      "          'na': 1,\n",
      "          'bizarre': 1,\n",
      "          'nightmare': 1,\n",
      "          'sequence': 1,\n",
      "          'meant': 1,\n",
      "          'symbolic': 1,\n",
      "          'instead': 1,\n",
      "          'incredibly': 1,\n",
      "          'stupid': 1,\n",
      "          'ensues': 1,\n",
      "          'finds': 1,\n",
      "          'fiance': 1,\n",
      "          'trapped': 1,\n",
      "          'fallen': 1,\n",
      "          'treein': 1,\n",
      "          'living': 1,\n",
      "          'room': 1,\n",
      "          'nsomeone': 1,\n",
      "          'apparently': 1,\n",
      "          'intended': 1,\n",
      "          'sinister': 1,\n",
      "          'looks': 1,\n",
      "          'klingon': 1,\n",
      "          'original': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'series': 1,\n",
      "          'orchestrating': 1,\n",
      "          'though': 1,\n",
      "          'clear': 1,\n",
      "          'put': 1,\n",
      "          'kindly': 1,\n",
      "          'nnear': 1,\n",
      "          'end': 1,\n",
      "          'sceneand': 1,\n",
      "          'must': 1,\n",
      "          'confess': 1,\n",
      "          'lost': 1,\n",
      "          'completelyis': 1,\n",
      "          'violent': 1,\n",
      "          'sexual': 1,\n",
      "          'encounter': 1,\n",
      "          'couch': 1,\n",
      "          'features': 1,\n",
      "          'even': 1,\n",
      "          'appear': 1,\n",
      "          'rest': 1,\n",
      "          'scored': 1,\n",
      "          'goofily': 1,\n",
      "          'upbeat': 1,\n",
      "          'folk': 1,\n",
      "          'music': 1,\n",
      "          'nafter': 1,\n",
      "          'ends': 1,\n",
      "          'moment': 1,\n",
      "          'nreturns': 1,\n",
      "          'style': 1,\n",
      "          'lingering': 1,\n",
      "          'sense': 1,\n",
      "          'slightest': 1,\n",
      "          'idea': 1,\n",
      "          'gone': 1,\n",
      "          'dumb': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'abandon': 1,\n",
      "          'trying': 1,\n",
      "          'matter': 1,\n",
      "          'happened': 1,\n",
      "          'nas': 1,\n",
      "          'aforementioned': 1,\n",
      "          'sex': 1,\n",
      "          'cemented': 1,\n",
      "          'mind': 1,\n",
      "          'incoherent': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'honestly': 1,\n",
      "          'think': 1,\n",
      "          'picked': 1,\n",
      "          'camcorder': 1,\n",
      "          'deliberately': 1,\n",
      "          'tried': 1,\n",
      "          'make': 1,\n",
      "          'worst': 1,\n",
      "          'possibly': 1,\n",
      "          'could': 1,\n",
      "          'still': 1,\n",
      "          'might': 1,\n",
      "          'match': 1,\n",
      "          'nfor': 1,\n",
      "          'sheer': 1,\n",
      "          'cinematic': 1,\n",
      "          'disaster': 1,\n",
      "          'giving': 1,\n",
      "          'f': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'justice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'second': 2,\n",
      "          'murder': 2,\n",
      "          'quaid': 2,\n",
      "          'nthe': 2,\n",
      "          'whole': 2,\n",
      "          'thing': 2,\n",
      "          'theres': 2,\n",
      "          'serialkiller': 1,\n",
      "          'thriller': 1,\n",
      "          'month': 1,\n",
      "          'awful': 1,\n",
      "          'noh': 1,\n",
      "          'starts': 1,\n",
      "          'deceptively': 1,\n",
      "          'okay': 1,\n",
      "          'handful': 1,\n",
      "          'intriguing': 1,\n",
      "          'characters': 1,\n",
      "          'solid': 1,\n",
      "          'location': 1,\n",
      "          'work': 1,\n",
      "          'nafter': 1,\n",
      "          'babysitter': 1,\n",
      "          'gets': 1,\n",
      "          'gutted': 1,\n",
      "          'suit': 1,\n",
      "          'ably': 1,\n",
      "          'spooky': 1,\n",
      "          'someonesinthehouse': 1,\n",
      "          'prologue': 1,\n",
      "          'parallel': 1,\n",
      "          'stories': 1,\n",
      "          'unfold': 1,\n",
      "          'first': 1,\n",
      "          'involving': 1,\n",
      "          'texas': 1,\n",
      "          'sheriff': 1,\n",
      "          'r': 1,\n",
      "          'lee': 1,\n",
      "          'emery': 1,\n",
      "          'gruesome': 1,\n",
      "          'double': 1,\n",
      "          'arrival': 1,\n",
      "          'morose': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'dennis': 1,\n",
      "          'eve': 1,\n",
      "          'voting': 1,\n",
      "          'local': 1,\n",
      "          'lawmans': 1,\n",
      "          'reelection': 1,\n",
      "          'pairs': 1,\n",
      "          'hitch': 1,\n",
      "          'hiker': 1,\n",
      "          'jared': 1,\n",
      "          'leto': 1,\n",
      "          'friendly': 1,\n",
      "          'former': 1,\n",
      "          'railroad': 1,\n",
      "          'worker': 1,\n",
      "          'danny': 1,\n",
      "          'glover': 1,\n",
      "          'ntheyre': 1,\n",
      "          'headed': 1,\n",
      "          'west': 1,\n",
      "          'toward': 1,\n",
      "          'rockies': 1,\n",
      "          'away': 1,\n",
      "          'scene': 1,\n",
      "          'nwhich': 1,\n",
      "          'one': 1,\n",
      "          'killer': 1,\n",
      "          'nwell': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'matter': 1,\n",
      "          'cause': 1,\n",
      "          'writerfirsttime': 1,\n",
      "          'director': 1,\n",
      "          'jeb': 1,\n",
      "          'stuart': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'finally': 1,\n",
      "          'spills': 1,\n",
      "          'beans': 1,\n",
      "          'wont': 1,\n",
      "          'take': 1,\n",
      "          'choice': 1,\n",
      "          'seriously': 1,\n",
      "          'anyway': 1,\n",
      "          'goes': 1,\n",
      "          'south': 1,\n",
      "          'hour': 1,\n",
      "          'tale': 1,\n",
      "          'taking': 1,\n",
      "          'hairpin': 1,\n",
      "          'turns': 1,\n",
      "          'certainly': 1,\n",
      "          'couldnt': 1,\n",
      "          'follow': 1,\n",
      "          'nand': 1,\n",
      "          'playing': 1,\n",
      "          'intense': 1,\n",
      "          'monotony': 1,\n",
      "          'side': 1,\n",
      "          'steven': 1,\n",
      "          'sea': 1,\n",
      "          'gal': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'im': 1,\n",
      "          'glad': 1,\n",
      "          'didnt': 1,\n",
      "          'walk': 1,\n",
      "          'nice': 1,\n",
      "          'train': 1,\n",
      "          'stuff': 1,\n",
      "          'end': 1,\n",
      "          'fun': 1,\n",
      "          'nod': 1,\n",
      "          'dr': 1,\n",
      "          'nstrangelove': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'moses': 8,\n",
      "          'story': 7,\n",
      "          'one': 4,\n",
      "          'nit': 4,\n",
      "          'features': 4,\n",
      "          'like': 3,\n",
      "          'film': 3,\n",
      "          'even': 3,\n",
      "          'nthe': 3,\n",
      "          'original': 3,\n",
      "          'god': 3,\n",
      "          'thing': 3,\n",
      "          'though': 3,\n",
      "          'rameses': 3,\n",
      "          'contains': 3,\n",
      "          'say': 2,\n",
      "          'care': 2,\n",
      "          'prince': 2,\n",
      "          'egypt': 2,\n",
      "          'shallow': 2,\n",
      "          'nbut': 2,\n",
      "          'version': 2,\n",
      "          'divinity': 2,\n",
      "          'impression': 2,\n",
      "          'differences': 2,\n",
      "          'nmost': 2,\n",
      "          'ni': 2,\n",
      "          'movie': 2,\n",
      "          'interests': 2,\n",
      "          'character': 2,\n",
      "          'annoying': 2,\n",
      "          'bullock': 2,\n",
      "          'first': 1,\n",
      "          'review': 1,\n",
      "          'post': 1,\n",
      "          'newsgroup': 1,\n",
      "          'kind': 1,\n",
      "          'feel': 1,\n",
      "          'something': 1,\n",
      "          'negative': 1,\n",
      "          'nno': 1,\n",
      "          'else': 1,\n",
      "          'seems': 1,\n",
      "          'takes': 1,\n",
      "          'certain': 1,\n",
      "          'liberties': 1,\n",
      "          'taken': 1,\n",
      "          'historical': 1,\n",
      "          'nhowever': 1,\n",
      "          'thinks': 1,\n",
      "          'fiction': 1,\n",
      "          'remains': 1,\n",
      "          'ill': 1,\n",
      "          'begin': 1,\n",
      "          'beginning': 1,\n",
      "          'biggest': 1,\n",
      "          'difference': 1,\n",
      "          'biblical': 1,\n",
      "          'semblance': 1,\n",
      "          'bible': 1,\n",
      "          'whereas': 1,\n",
      "          'animated': 1,\n",
      "          'gives': 1,\n",
      "          'reluctant': 1,\n",
      "          'hero': 1,\n",
      "          'nmaybe': 1,\n",
      "          'knew': 1,\n",
      "          'side': 1,\n",
      "          'id': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'confidence': 1,\n",
      "          'nthere': 1,\n",
      "          'well': 1,\n",
      "          'lack': 1,\n",
      "          'important': 1,\n",
      "          'female': 1,\n",
      "          'characters': 1,\n",
      "          'passing': 1,\n",
      "          'pharoahs': 1,\n",
      "          'death': 1,\n",
      "          'nothing': 1,\n",
      "          'storys': 1,\n",
      "          'focus': 1,\n",
      "          'shifted': 1,\n",
      "          'nrather': 1,\n",
      "          'fatherson': 1,\n",
      "          'manethnicity': 1,\n",
      "          'mangod': 1,\n",
      "          'almost': 1,\n",
      "          'solely': 1,\n",
      "          'brotherbrother': 1,\n",
      "          'relationship': 1,\n",
      "          'originally': 1,\n",
      "          'excited': 1,\n",
      "          'element': 1,\n",
      "          'saw': 1,\n",
      "          'came': 1,\n",
      "          'maudlin': 1,\n",
      "          'nrameses': 1,\n",
      "          'squabble': 1,\n",
      "          'children': 1,\n",
      "          'peace': 1,\n",
      "          'saves': 1,\n",
      "          'butt': 1,\n",
      "          'started': 1,\n",
      "          'n': 1,\n",
      "          'yawn': 1,\n",
      "          'didnt': 1,\n",
      "          'anymore': 1,\n",
      "          'time': 1,\n",
      "          'ran': 1,\n",
      "          'murdering': 1,\n",
      "          'overseer': 1,\n",
      "          'course': 1,\n",
      "          'never': 1,\n",
      "          'happened': 1,\n",
      "          'exiled': 1,\n",
      "          'enough': 1,\n",
      "          'nlets': 1,\n",
      "          'talk': 1,\n",
      "          'making': 1,\n",
      "          'human': 1,\n",
      "          'lacks': 1,\n",
      "          'whatsoever': 1,\n",
      "          'isnt': 1,\n",
      "          'convincing': 1,\n",
      "          'anyone': 1,\n",
      "          'knows': 1,\n",
      "          'cookiecutter': 1,\n",
      "          'iwannapleasedada': 1,\n",
      "          'least': 1,\n",
      "          'given': 1,\n",
      "          'dignity': 1,\n",
      "          'voicework': 1,\n",
      "          'ralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'among': 1,\n",
      "          'things': 1,\n",
      "          'also': 1,\n",
      "          'extremely': 1,\n",
      "          'way': 1,\n",
      "          'newimproved': 1,\n",
      "          'miriam': 1,\n",
      "          'voiced': 1,\n",
      "          'everantsy': 1,\n",
      "          'sandra': 1,\n",
      "          'irritating': 1,\n",
      "          'tendency': 1,\n",
      "          'burst': 1,\n",
      "          'song': 1,\n",
      "          'apparent': 1,\n",
      "          'reason': 1,\n",
      "          'replaced': 1,\n",
      "          'singing': 1,\n",
      "          'voice': 1,\n",
      "          'nspeaking': 1,\n",
      "          'music': 1,\n",
      "          'writing': 1,\n",
      "          'extraordinary': 1,\n",
      "          'animation': 1,\n",
      "          'good': 1,\n",
      "          'attempt': 1,\n",
      "          'commercialize': 1,\n",
      "          'homogenize': 1,\n",
      "          'massmarket': 1,\n",
      "          'manifestation': 1,\n",
      "          'christian': 1,\n",
      "          'got': 1,\n",
      "          'blasphemy': 1,\n",
      "          'writers': 1,\n",
      "          'producers': 1,\n",
      "          'took': 1,\n",
      "          'butcher': 1,\n",
      "          'knife': 1,\n",
      "          'chopchopped': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'luis': 6,\n",
      "          'julia': 6,\n",
      "          'original': 4,\n",
      "          'sin': 4,\n",
      "          'film': 4,\n",
      "          'nthe': 4,\n",
      "          'banderas': 4,\n",
      "          'movie': 4,\n",
      "          'nluis': 4,\n",
      "          'bad': 3,\n",
      "          'jolie': 3,\n",
      "          'makes': 3,\n",
      "          'something': 3,\n",
      "          'like': 3,\n",
      "          'story': 3,\n",
      "          'ever': 3,\n",
      "          'road': 2,\n",
      "          'slated': 2,\n",
      "          'summer': 2,\n",
      "          'really': 2,\n",
      "          'antonio': 2,\n",
      "          'people': 2,\n",
      "          'films': 2,\n",
      "          'time': 2,\n",
      "          'plenty': 2,\n",
      "          'things': 2,\n",
      "          'different': 2,\n",
      "          'far': 2,\n",
      "          'im': 2,\n",
      "          'find': 2,\n",
      "          'comes': 2,\n",
      "          'also': 2,\n",
      "          'jolies': 2,\n",
      "          'appears': 2,\n",
      "          'love': 2,\n",
      "          'golddiggers': 2,\n",
      "          'man': 2,\n",
      "          'frumpy': 2,\n",
      "          'turns': 2,\n",
      "          'attractive': 2,\n",
      "          'woman': 2,\n",
      "          'womans': 2,\n",
      "          'great': 2,\n",
      "          'accounts': 2,\n",
      "          'nhis': 2,\n",
      "          'sister': 2,\n",
      "          'acting': 2,\n",
      "          'detective': 2,\n",
      "          'thomas': 2,\n",
      "          'jane': 2,\n",
      "          'real': 2,\n",
      "          'anyone': 2,\n",
      "          'questions': 2,\n",
      "          'difference': 2,\n",
      "          'show': 2,\n",
      "          'screen': 1,\n",
      "          'rocky': 1,\n",
      "          'ninitially': 1,\n",
      "          'release': 1,\n",
      "          'last': 1,\n",
      "          'november': 1,\n",
      "          'bumped': 1,\n",
      "          'twice': 1,\n",
      "          'finally': 1,\n",
      "          'landing': 1,\n",
      "          'dog': 1,\n",
      "          'days': 1,\n",
      "          '2001': 1,\n",
      "          'nadvance': 1,\n",
      "          'screenings': 1,\n",
      "          'denied': 1,\n",
      "          'critics': 1,\n",
      "          'generally': 1,\n",
      "          'sign': 1,\n",
      "          'studio': 1,\n",
      "          'realizes': 1,\n",
      "          'dud': 1,\n",
      "          'hands': 1,\n",
      "          'nso': 1,\n",
      "          'nyes': 1,\n",
      "          'melodrama': 1,\n",
      "          'offer': 1,\n",
      "          'rewards': 1,\n",
      "          'location': 1,\n",
      "          'settings': 1,\n",
      "          'gorgeous': 1,\n",
      "          'healthy': 1,\n",
      "          'sprinkling': 1,\n",
      "          'ta': 1,\n",
      "          'angelina': 1,\n",
      "          'providing': 1,\n",
      "          'nmore': 1,\n",
      "          'importantly': 1,\n",
      "          'entertainingly': 1,\n",
      "          'nveteran': 1,\n",
      "          'readers': 1,\n",
      "          'know': 1,\n",
      "          'rule': 1,\n",
      "          'dont': 1,\n",
      "          'encourage': 1,\n",
      "          'patronize': 1,\n",
      "          'lousy': 1,\n",
      "          'nmost': 1,\n",
      "          'quality': 1,\n",
      "          'offerings': 1,\n",
      "          'marketplace': 1,\n",
      "          'deserving': 1,\n",
      "          'money': 1,\n",
      "          'besides': 1,\n",
      "          'lets': 1,\n",
      "          'go': 1,\n",
      "          'laugh': 1,\n",
      "          'failings': 1,\n",
      "          'others': 1,\n",
      "          'mindset': 1,\n",
      "          'reflects': 1,\n",
      "          'elitism': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'nbut': 1,\n",
      "          'nquality': 1,\n",
      "          'put': 1,\n",
      "          'mildly': 1,\n",
      "          'concerned': 1,\n",
      "          'fair': 1,\n",
      "          'kicks': 1,\n",
      "          'may': 1,\n",
      "          'n': 1,\n",
      "          'never': 1,\n",
      "          'join': 1,\n",
      "          'treasures': 1,\n",
      "          'valley': 1,\n",
      "          'dolls': 1,\n",
      "          'house': 1,\n",
      "          'showgirls': 1,\n",
      "          'hall': 1,\n",
      "          'fame': 1,\n",
      "          'itll': 1,\n",
      "          'worse': 1,\n",
      "          'along': 1,\n",
      "          'adapted': 1,\n",
      "          'director': 1,\n",
      "          'michael': 1,\n",
      "          'cristofer': 1,\n",
      "          'cornell': 1,\n",
      "          'woolrich': 1,\n",
      "          'novel': 1,\n",
      "          'waltz': 1,\n",
      "          'darkness': 1,\n",
      "          'source': 1,\n",
      "          '1969': 1,\n",
      "          'francois': 1,\n",
      "          'truffaut': 1,\n",
      "          'mississippi': 1,\n",
      "          'mermaid': 1,\n",
      "          'opens': 1,\n",
      "          'turnofthecentury': 1,\n",
      "          'prison': 1,\n",
      "          'character': 1,\n",
      "          'dawn': 1,\n",
      "          'execution': 1,\n",
      "          'tells': 1,\n",
      "          'lurid': 1,\n",
      "          'tale': 1,\n",
      "          'priest': 1,\n",
      "          'desperately': 1,\n",
      "          'horny': 1,\n",
      "          'freshman': 1,\n",
      "          'writing': 1,\n",
      "          'class': 1,\n",
      "          'tone': 1,\n",
      "          'quickly': 1,\n",
      "          'established': 1,\n",
      "          'says': 1,\n",
      "          'nwary': 1,\n",
      "          'local': 1,\n",
      "          'cuban': 1,\n",
      "          'coffee': 1,\n",
      "          'dealer': 1,\n",
      "          'vargas': 1,\n",
      "          'arrangements': 1,\n",
      "          'secure': 1,\n",
      "          'mail': 1,\n",
      "          'order': 1,\n",
      "          'bride': 1,\n",
      "          'america': 1,\n",
      "          'listing': 1,\n",
      "          'mere': 1,\n",
      "          'clerk': 1,\n",
      "          'dissuade': 1,\n",
      "          'foreign': 1,\n",
      "          'na': 1,\n",
      "          'practical': 1,\n",
      "          'chooses': 1,\n",
      "          'looking': 1,\n",
      "          'lady': 1,\n",
      "          'hoping': 1,\n",
      "          'loyal': 1,\n",
      "          'mate': 1,\n",
      "          'able': 1,\n",
      "          'provide': 1,\n",
      "          'children': 1,\n",
      "          'nimagine': 1,\n",
      "          'surprise': 1,\n",
      "          'fianc': 1,\n",
      "          'e': 1,\n",
      "          'russell': 1,\n",
      "          'infinitely': 1,\n",
      "          'photo': 1,\n",
      "          'njulia': 1,\n",
      "          'explains': 1,\n",
      "          'sent': 1,\n",
      "          'image': 1,\n",
      "          'didnt': 1,\n",
      "          'want': 1,\n",
      "          'selected': 1,\n",
      "          'solely': 1,\n",
      "          'pretty': 1,\n",
      "          'face': 1,\n",
      "          'confesses': 1,\n",
      "          'deception': 1,\n",
      "          'leading': 1,\n",
      "          'julie': 1,\n",
      "          'state': 1,\n",
      "          'significance': 1,\n",
      "          'common': 1,\n",
      "          'trusted': 1,\n",
      "          'nafter': 1,\n",
      "          'wedding': 1,\n",
      "          'retire': 1,\n",
      "          'glorious': 1,\n",
      "          'night': 1,\n",
      "          'carefully': 1,\n",
      "          'choreographed': 1,\n",
      "          'lovemaking': 1,\n",
      "          'bodies': 1,\n",
      "          'positioned': 1,\n",
      "          'display': 1,\n",
      "          'breasts': 1,\n",
      "          'bottom': 1,\n",
      "          'erotically': 1,\n",
      "          'possible': 1,\n",
      "          'njolie': 1,\n",
      "          'watching': 1,\n",
      "          'naked': 1,\n",
      "          'fun': 1,\n",
      "          'although': 1,\n",
      "          'filmmakers': 1,\n",
      "          'insistence': 1,\n",
      "          'using': 1,\n",
      "          'one': 1,\n",
      "          'legs': 1,\n",
      "          'cover': 1,\n",
      "          'crotch': 1,\n",
      "          'look': 1,\n",
      "          'hes': 1,\n",
      "          'trying': 1,\n",
      "          'climb': 1,\n",
      "          'stupidest': 1,\n",
      "          'lived': 1,\n",
      "          'immediately': 1,\n",
      "          'instructs': 1,\n",
      "          'bank': 1,\n",
      "          'make': 1,\n",
      "          'personal': 1,\n",
      "          'business': 1,\n",
      "          'available': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'seems': 1,\n",
      "          'nothing': 1,\n",
      "          'corresponded': 1,\n",
      "          'blissful': 1,\n",
      "          'ignorance': 1,\n",
      "          'continues': 1,\n",
      "          'warning': 1,\n",
      "          'signs': 1,\n",
      "          'mount': 1,\n",
      "          'must': 1,\n",
      "          'force': 1,\n",
      "          'write': 1,\n",
      "          'emily': 1,\n",
      "          'frantic': 1,\n",
      "          'lack': 1,\n",
      "          'communication': 1,\n",
      "          'nshortly': 1,\n",
      "          'complains': 1,\n",
      "          'chirping': 1,\n",
      "          'pet': 1,\n",
      "          'bird': 1,\n",
      "          'found': 1,\n",
      "          'floor': 1,\n",
      "          'cage': 1,\n",
      "          'broken': 1,\n",
      "          'neck': 1,\n",
      "          'nfinally': 1,\n",
      "          'cleans': 1,\n",
      "          'disappears': 1,\n",
      "          'begins': 1,\n",
      "          'suspect': 1,\n",
      "          'might': 1,\n",
      "          'wrong': 1,\n",
      "          'nincidentally': 1,\n",
      "          'youre': 1,\n",
      "          'afraid': 1,\n",
      "          'giving': 1,\n",
      "          'much': 1,\n",
      "          'away': 1,\n",
      "          'rest': 1,\n",
      "          'assured': 1,\n",
      "          'happens': 1,\n",
      "          'first': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'leaving': 1,\n",
      "          'numerous': 1,\n",
      "          'dopey': 1,\n",
      "          'plot': 1,\n",
      "          'twists': 1,\n",
      "          'deal': 1,\n",
      "          'operatic': 1,\n",
      "          'footage': 1,\n",
      "          'tits': 1,\n",
      "          'ass': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'private': 1,\n",
      "          'walter': 1,\n",
      "          'downs': 1,\n",
      "          'played': 1,\n",
      "          'terrific': 1,\n",
      "          'mickey': 1,\n",
      "          'mantle': 1,\n",
      "          'hbo': 1,\n",
      "          '61': 1,\n",
      "          'hired': 1,\n",
      "          'happened': 1,\n",
      "          'eager': 1,\n",
      "          'track': 1,\n",
      "          'con': 1,\n",
      "          'artist': 1,\n",
      "          'decided': 1,\n",
      "          'cant': 1,\n",
      "          'kill': 1,\n",
      "          'noh': 1,\n",
      "          'pathos': 1,\n",
      "          'cast': 1,\n",
      "          'recognize': 1,\n",
      "          'trashiness': 1,\n",
      "          'adjusting': 1,\n",
      "          'performances': 1,\n",
      "          'accordingly': 1,\n",
      "          'nbanderas': 1,\n",
      "          'suitably': 1,\n",
      "          'impassioned': 1,\n",
      "          'alternates': 1,\n",
      "          'vamping': 1,\n",
      "          'pouting': 1,\n",
      "          'lips': 1,\n",
      "          'pout': 1,\n",
      "          'nas': 1,\n",
      "          'starts': 1,\n",
      "          'suspicious': 1,\n",
      "          'cagey': 1,\n",
      "          'accelerates': 1,\n",
      "          'snidely': 1,\n",
      "          'whiplash': 1,\n",
      "          'level': 1,\n",
      "          'nastiness': 1,\n",
      "          'startling': 1,\n",
      "          'moment': 1,\n",
      "          'prove': 1,\n",
      "          'power': 1,\n",
      "          'humiliate': 1,\n",
      "          'forces': 1,\n",
      "          'wall': 1,\n",
      "          'verbally': 1,\n",
      "          'taunts': 1,\n",
      "          'rubbing': 1,\n",
      "          'cheeks': 1,\n",
      "          'finishes': 1,\n",
      "          'establishing': 1,\n",
      "          'dominance': 1,\n",
      "          'fullon': 1,\n",
      "          'kiss': 1,\n",
      "          'nif': 1,\n",
      "          'sex': 1,\n",
      "          'rape': 1,\n",
      "          'chilling': 1,\n",
      "          'scene': 1,\n",
      "          'nand': 1,\n",
      "          'drama': 1,\n",
      "          'laughable': 1,\n",
      "          'potboiler': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'film': 6,\n",
      "          'would': 5,\n",
      "          'work': 4,\n",
      "          'one': 3,\n",
      "          'duchovny': 3,\n",
      "          'doctor': 3,\n",
      "          'blossom': 3,\n",
      "          'big': 3,\n",
      "          'time': 3,\n",
      "          'xfiles': 2,\n",
      "          'none': 2,\n",
      "          'sands': 2,\n",
      "          'becomes': 2,\n",
      "          'bad': 2,\n",
      "          'bar': 2,\n",
      "          'heroin': 2,\n",
      "          'chance': 2,\n",
      "          'life': 2,\n",
      "          'hutton': 2,\n",
      "          'needs': 2,\n",
      "          'films': 2,\n",
      "          'seem': 2,\n",
      "          'threaten': 2,\n",
      "          'fbi': 2,\n",
      "          'else': 2,\n",
      "          'take': 2,\n",
      "          'solid': 2,\n",
      "          'screen': 2,\n",
      "          'neven': 2,\n",
      "          'get': 2,\n",
      "          'partially': 2,\n",
      "          'nowhere': 2,\n",
      "          'think': 1,\n",
      "          'david': 1,\n",
      "          'star': 1,\n",
      "          'cult': 1,\n",
      "          'favorite': 1,\n",
      "          'careful': 1,\n",
      "          'choosing': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'cinema': 1,\n",
      "          'roles': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'hope': 1,\n",
      "          'seriously': 1,\n",
      "          'incorrect': 1,\n",
      "          'neugene': 1,\n",
      "          'surgeon': 1,\n",
      "          'dedicated': 1,\n",
      "          'craft': 1,\n",
      "          'addicted': 1,\n",
      "          'amphetamines': 1,\n",
      "          'stay': 1,\n",
      "          'awake': 1,\n",
      "          'nit': 1,\n",
      "          'turns': 1,\n",
      "          'plan': 1,\n",
      "          'loses': 1,\n",
      "          'patient': 1,\n",
      "          'license': 1,\n",
      "          'influence': 1,\n",
      "          'nten': 1,\n",
      "          'months': 1,\n",
      "          'later': 1,\n",
      "          'seedy': 1,\n",
      "          'score': 1,\n",
      "          'synthetic': 1,\n",
      "          'gets': 1,\n",
      "          'ply': 1,\n",
      "          'trade': 1,\n",
      "          'assassins': 1,\n",
      "          'gun': 1,\n",
      "          'customer': 1,\n",
      "          'nusing': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'plastic': 1,\n",
      "          'water': 1,\n",
      "          'bottle': 1,\n",
      "          'tubing': 1,\n",
      "          'operates': 1,\n",
      "          'saves': 1,\n",
      "          'nsmalltime': 1,\n",
      "          'hoodlum': 1,\n",
      "          'raymond': 1,\n",
      "          'timothy': 1,\n",
      "          'impressed': 1,\n",
      "          'cutlery': 1,\n",
      "          'skills': 1,\n",
      "          'associate': 1,\n",
      "          'nhe': 1,\n",
      "          'kidnaps': 1,\n",
      "          'offers': 1,\n",
      "          'downandout': 1,\n",
      "          'eugene': 1,\n",
      "          'position': 1,\n",
      "          'organization': 1,\n",
      "          'nblossom': 1,\n",
      "          'patch': 1,\n",
      "          'gunshot': 1,\n",
      "          'victims': 1,\n",
      "          'problematic': 1,\n",
      "          'hospital': 1,\n",
      "          'nsands': 1,\n",
      "          'temptation': 1,\n",
      "          'give': 1,\n",
      "          'practice': 1,\n",
      "          'medicine': 1,\n",
      "          'albeit': 1,\n",
      "          'illegally': 1,\n",
      "          'chunks': 1,\n",
      "          'cash': 1,\n",
      "          'fuel': 1,\n",
      "          'habit': 1,\n",
      "          'close': 1,\n",
      "          'proximity': 1,\n",
      "          'gangsters': 1,\n",
      "          'womanfriend': 1,\n",
      "          'claire': 1,\n",
      "          'angelina': 1,\n",
      "          'jolie': 1,\n",
      "          'babe': 1,\n",
      "          'factor': 1,\n",
      "          'wouldbe': 1,\n",
      "          'operator': 1,\n",
      "          'desperately': 1,\n",
      "          'need': 1,\n",
      "          'help': 1,\n",
      "          'non': 1,\n",
      "          'run': 1,\n",
      "          'russian': 1,\n",
      "          'mobsters': 1,\n",
      "          'guys': 1,\n",
      "          'rage': 1,\n",
      "          'years': 1,\n",
      "          'trying': 1,\n",
      "          'cut': 1,\n",
      "          'pirate': 1,\n",
      "          'software': 1,\n",
      "          'deal': 1,\n",
      "          'chinese': 1,\n",
      "          'mafia': 1,\n",
      "          'surrounded': 1,\n",
      "          'blood': 1,\n",
      "          'nafter': 1,\n",
      "          'medical': 1,\n",
      "          'misadventures': 1,\n",
      "          'physician': 1,\n",
      "          'grows': 1,\n",
      "          'disenchanted': 1,\n",
      "          'employment': 1,\n",
      "          'nan': 1,\n",
      "          'encounter': 1,\n",
      "          'couple': 1,\n",
      "          'psycho': 1,\n",
      "          'surfer': 1,\n",
      "          'dudes': 1,\n",
      "          'blow': 1,\n",
      "          'away': 1,\n",
      "          'unless': 1,\n",
      "          'fixes': 1,\n",
      "          'dead': 1,\n",
      "          'buddy': 1,\n",
      "          'cements': 1,\n",
      "          'feeling': 1,\n",
      "          'wrong': 1,\n",
      "          'line': 1,\n",
      "          'nwhen': 1,\n",
      "          'visits': 1,\n",
      "          'forces': 1,\n",
      "          'become': 1,\n",
      "          'informant': 1,\n",
      "          'question': 1,\n",
      "          'somewhere': 1,\n",
      "          'noddly': 1,\n",
      "          'enough': 1,\n",
      "          'like': 1,\n",
      "          'could': 1,\n",
      "          'exciting': 1,\n",
      "          'scenes': 1,\n",
      "          'disproves': 1,\n",
      "          'assumption': 1,\n",
      "          'nthen': 1,\n",
      "          'bunch': 1,\n",
      "          'uninteresting': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'nwriting': 1,\n",
      "          'two': 1,\n",
      "          'days': 1,\n",
      "          'seeing': 1,\n",
      "          'struggle': 1,\n",
      "          'remember': 1,\n",
      "          'events': 1,\n",
      "          'nyou': 1,\n",
      "          'lack': 1,\n",
      "          'recommendation': 1,\n",
      "          'nfor': 1,\n",
      "          'coolness': 1,\n",
      "          'exhibits': 1,\n",
      "          'surprise': 1,\n",
      "          'presence': 1,\n",
      "          'lacking': 1,\n",
      "          'charisma': 1,\n",
      "          'particularly': 1,\n",
      "          'bland': 1,\n",
      "          'dull': 1,\n",
      "          'cold': 1,\n",
      "          'turkey': 1,\n",
      "          'bit': 1,\n",
      "          'rife': 1,\n",
      "          'dramatic': 1,\n",
      "          'possibilities': 1,\n",
      "          'come': 1,\n",
      "          'across': 1,\n",
      "          'banal': 1,\n",
      "          'na': 1,\n",
      "          'little': 1,\n",
      "          'chocolate': 1,\n",
      "          'minor': 1,\n",
      "          'sweats': 1,\n",
      "          'withdrawal': 1,\n",
      "          'nlike': 1,\n",
      "          'virtually': 1,\n",
      "          'everything': 1,\n",
      "          'missed': 1,\n",
      "          'opportunity': 1,\n",
      "          'fox': 1,\n",
      "          'mulder': 1,\n",
      "          'detachment': 1,\n",
      "          'doesnt': 1,\n",
      "          'noscarwinner': 1,\n",
      "          'huttons': 1,\n",
      "          'manic': 1,\n",
      "          'mobster': 1,\n",
      "          'much': 1,\n",
      "          'difficult': 1,\n",
      "          'handle': 1,\n",
      "          'nplayed': 1,\n",
      "          'comedy': 1,\n",
      "          'crazed': 1,\n",
      "          'killer': 1,\n",
      "          'almost': 1,\n",
      "          'real': 1,\n",
      "          'sinks': 1,\n",
      "          'goofiness': 1,\n",
      "          'nmost': 1,\n",
      "          'looks': 1,\n",
      "          'hes': 1,\n",
      "          'searching': 1,\n",
      "          'character': 1,\n",
      "          'coming': 1,\n",
      "          'empty': 1,\n",
      "          'njolie': 1,\n",
      "          'also': 1,\n",
      "          'makes': 1,\n",
      "          'false': 1,\n",
      "          'moves': 1,\n",
      "          'towards': 1,\n",
      "          'creating': 1,\n",
      "          'threedimensional': 1,\n",
      "          'human': 1,\n",
      "          'giving': 1,\n",
      "          'turning': 1,\n",
      "          'scenery': 1,\n",
      "          'interesting': 1,\n",
      "          'aspect': 1,\n",
      "          'performance': 1,\n",
      "          'watching': 1,\n",
      "          'pouty': 1,\n",
      "          'lips': 1,\n",
      "          'rest': 1,\n",
      "          'arent': 1,\n",
      "          'better': 1,\n",
      "          'nmichael': 1,\n",
      "          'massees': 1,\n",
      "          'eccentric': 1,\n",
      "          'agent': 1,\n",
      "          'never': 1,\n",
      "          'revs': 1,\n",
      "          'blossoms': 1,\n",
      "          'henchmen': 1,\n",
      "          'steals': 1,\n",
      "          'moments': 1,\n",
      "          'show': 1,\n",
      "          'quirky': 1,\n",
      "          'gunman': 1,\n",
      "          'reminiscent': 1,\n",
      "          'val': 1,\n",
      "          'kilmers': 1,\n",
      "          'doc': 1,\n",
      "          'holliday': 1,\n",
      "          'tombstone': 1,\n",
      "          'nhis': 1,\n",
      "          'twogunned': 1,\n",
      "          'blasting': 1,\n",
      "          'bizarre': 1,\n",
      "          'dance': 1,\n",
      "          'high': 1,\n",
      "          'point': 1,\n",
      "          'nbut': 1,\n",
      "          '15': 1,\n",
      "          'seconds': 1,\n",
      "          'isnt': 1,\n",
      "          'worth': 1,\n",
      "          'sitting': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'nfirst': 1,\n",
      "          'director': 1,\n",
      "          'andy': 1,\n",
      "          'wilson': 1,\n",
      "          'known': 1,\n",
      "          'british': 1,\n",
      "          'television': 1,\n",
      "          'series': 1,\n",
      "          'cracker': 1,\n",
      "          'appears': 1,\n",
      "          'attempting': 1,\n",
      "          'jump': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'bandwagon': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'combine': 1,\n",
      "          'sense': 1,\n",
      "          'style': 1,\n",
      "          'flash': 1,\n",
      "          'significant': 1,\n",
      "          'substance': 1,\n",
      "          'secondrate': 1,\n",
      "          'ones': 1,\n",
      "          'concentrate': 1,\n",
      "          'aspects': 1,\n",
      "          'n': 1,\n",
      "          'playing': 1,\n",
      "          'god': 1,\n",
      "          'neither': 1,\n",
      "          'well': 1,\n",
      "          'basic': 1,\n",
      "          'idea': 1,\n",
      "          'nand': 1,\n",
      "          'goes': 1,\n",
      "          'worse': 1,\n",
      "          'plods': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'long': 1,\n",
      "          'winding': 1,\n",
      "          'road': 1,\n",
      "          'ends': 1,\n",
      "          'nfox': 1,\n",
      "          'fails': 1,\n",
      "          'yet': 1,\n",
      "          'search': 1,\n",
      "          'intelligent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 5,\n",
      "          'li': 4,\n",
      "          'dragon': 4,\n",
      "          'nthe': 4,\n",
      "          'jet': 3,\n",
      "          'lis': 3,\n",
      "          'even': 3,\n",
      "          'ever': 3,\n",
      "          'would': 2,\n",
      "          'karyo': 2,\n",
      "          'plot': 2,\n",
      "          'action': 2,\n",
      "          'nwhen': 2,\n",
      "          'scenes': 2,\n",
      "          'justify': 2,\n",
      "          'problem': 2,\n",
      "          'nkiss': 2,\n",
      "          'dont': 2,\n",
      "          'call': 2,\n",
      "          'isnt': 2,\n",
      "          'chinese': 2,\n",
      "          'killing': 2,\n",
      "          'terminator': 2,\n",
      "          'instead': 2,\n",
      "          'day': 2,\n",
      "          'whatsoever': 2,\n",
      "          'acupuncture': 2,\n",
      "          'needle': 2,\n",
      "          'kiss': 2,\n",
      "          'ntheres': 2,\n",
      "          'love': 2,\n",
      "          'whose': 2,\n",
      "          'movie': 2,\n",
      "          'story': 2,\n",
      "          'ni': 2,\n",
      "          'mainstream': 2,\n",
      "          'appreciate': 1,\n",
      "          'didnt': 1,\n",
      "          'nstarring': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'tch': 1,\n",
      "          'ky': 1,\n",
      "          'burt': 1,\n",
      "          'kwouk': 1,\n",
      "          'ndirected': 1,\n",
      "          'chris': 1,\n",
      "          'nahon': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'nits': 1,\n",
      "          'secret': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'film': 1,\n",
      "          'often': 1,\n",
      "          'use': 1,\n",
      "          'simply': 1,\n",
      "          'get': 1,\n",
      "          'sequence': 1,\n",
      "          'another': 1,\n",
      "          'fight': 1,\n",
      "          'enough': 1,\n",
      "          'paying': 1,\n",
      "          'admission': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'projects': 1,\n",
      "          'lot': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'actioners': 1,\n",
      "          'arent': 1,\n",
      "          'well': 1,\n",
      "          'bad': 1,\n",
      "          'shape': 1,\n",
      "          'second': 1,\n",
      "          'consecutive': 1,\n",
      "          'american': 1,\n",
      "          'misfire': 1,\n",
      "          'plays': 1,\n",
      "          'like': 1,\n",
      "          'big': 1,\n",
      "          'miscalculation': 1,\n",
      "          'fails': 1,\n",
      "          'rudimentary': 1,\n",
      "          'entertainment': 1,\n",
      "          'nnow': 1,\n",
      "          'start': 1,\n",
      "          'getting': 1,\n",
      "          'emails': 1,\n",
      "          'angrily': 1,\n",
      "          'touting': 1,\n",
      "          'genius': 1,\n",
      "          'let': 1,\n",
      "          'explain': 1,\n",
      "          'nli': 1,\n",
      "          'spectacular': 1,\n",
      "          'think': 1,\n",
      "          'anyone': 1,\n",
      "          'dare': 1,\n",
      "          'martialartsstar': 1,\n",
      "          'skills': 1,\n",
      "          'question': 1,\n",
      "          'movies': 1,\n",
      "          'tone': 1,\n",
      "          'much': 1,\n",
      "          'touted': 1,\n",
      "          'fightscenes': 1,\n",
      "          'filmed': 1,\n",
      "          'unflinching': 1,\n",
      "          'unrelenting': 1,\n",
      "          'brutality': 1,\n",
      "          'unpleasant': 1,\n",
      "          'watch': 1,\n",
      "          'ntheyre': 1,\n",
      "          'joyless': 1,\n",
      "          'perfuctory': 1,\n",
      "          'rogue': 1,\n",
      "          'detective': 1,\n",
      "          'machine': 1,\n",
      "          'hero': 1,\n",
      "          'black': 1,\n",
      "          'belt': 1,\n",
      "          'metal': 1,\n",
      "          'skeleton': 1,\n",
      "          'nbut': 1,\n",
      "          'judgement': 1,\n",
      "          'sympathetic': 1,\n",
      "          'side': 1,\n",
      "          'relevant': 1,\n",
      "          'youre': 1,\n",
      "          'curious': 1,\n",
      "          'nonsense': 1,\n",
      "          'law': 1,\n",
      "          'enforcement': 1,\n",
      "          'officer': 1,\n",
      "          'sent': 1,\n",
      "          'paris': 1,\n",
      "          'investigate': 1,\n",
      "          'possible': 1,\n",
      "          'drug': 1,\n",
      "          'ring': 1,\n",
      "          'encounter': 1,\n",
      "          'corrupt': 1,\n",
      "          'chief': 1,\n",
      "          'police': 1,\n",
      "          'tcheky': 1,\n",
      "          'kills': 1,\n",
      "          'people': 1,\n",
      "          'sinister': 1,\n",
      "          'things': 1,\n",
      "          'motivation': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'character': 1,\n",
      "          'also': 1,\n",
      "          'expert': 1,\n",
      "          'able': 1,\n",
      "          'ease': 1,\n",
      "          'pain': 1,\n",
      "          'andor': 1,\n",
      "          'kill': 1,\n",
      "          'touch': 1,\n",
      "          'n': 1,\n",
      "          'name': 1,\n",
      "          'maneuver': 1,\n",
      "          'stick': 1,\n",
      "          'precise': 1,\n",
      "          'location': 1,\n",
      "          'back': 1,\n",
      "          'victims': 1,\n",
      "          'neck': 1,\n",
      "          'somehow': 1,\n",
      "          'redirecting': 1,\n",
      "          'bodys': 1,\n",
      "          'bloodflow': 1,\n",
      "          'brain': 1,\n",
      "          'poor': 1,\n",
      "          'sap': 1,\n",
      "          'less': 1,\n",
      "          'immediately': 1,\n",
      "          'vague': 1,\n",
      "          'attempt': 1,\n",
      "          'humanize': 1,\n",
      "          'fall': 1,\n",
      "          'downtrodden': 1,\n",
      "          'prostitute': 1,\n",
      "          'daughter': 1,\n",
      "          'held': 1,\n",
      "          'hostage': 1,\n",
      "          'reason': 1,\n",
      "          'villain': 1,\n",
      "          'nthis': 1,\n",
      "          'worst': 1,\n",
      "          'stories': 1,\n",
      "          'seen': 1,\n",
      "          'screen': 1,\n",
      "          'worse': 1,\n",
      "          'pearl': 1,\n",
      "          'harbor': 1,\n",
      "          'conviction': 1,\n",
      "          'barely': 1,\n",
      "          'pays': 1,\n",
      "          'lip': 1,\n",
      "          'service': 1,\n",
      "          'someone': 1,\n",
      "          'apparently': 1,\n",
      "          'thought': 1,\n",
      "          'kind': 1,\n",
      "          'boymeetsgirl': 1,\n",
      "          'subplot': 1,\n",
      "          'written': 1,\n",
      "          'luc': 1,\n",
      "          'besson': 1,\n",
      "          'screenplay': 1,\n",
      "          'messenger': 1,\n",
      "          'joan': 1,\n",
      "          'arc': 1,\n",
      "          'films': 1,\n",
      "          'flaws': 1,\n",
      "          'least': 1,\n",
      "          'thoughtful': 1,\n",
      "          'know': 1,\n",
      "          'guy': 1,\n",
      "          'got': 1,\n",
      "          'involved': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'perhaps': 1,\n",
      "          'wanted': 1,\n",
      "          'something': 1,\n",
      "          'neverending': 1,\n",
      "          'weirdness': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'aforementioned': 1,\n",
      "          'stylized': 1,\n",
      "          'biopic': 1,\n",
      "          'suppose': 1,\n",
      "          'could': 1,\n",
      "          'ill': 1,\n",
      "          'choose': 1,\n",
      "          'bizarre': 1,\n",
      "          'time': 1,\n",
      "          'nif': 1,\n",
      "          'going': 1,\n",
      "          'brutal': 1,\n",
      "          'dazzling': 1,\n",
      "          'need': 1,\n",
      "          'watching': 1,\n",
      "          'filmmakers': 1,\n",
      "          'behind': 1,\n",
      "          'rethought': 1,\n",
      "          'strategy': 1,\n",
      "          'nno': 1,\n",
      "          'walk': 1,\n",
      "          'misbegotten': 1,\n",
      "          'project': 1,\n",
      "          'smiling': 1,\n",
      "          'hear': 1,\n",
      "          'rush': 1,\n",
      "          'hour': 1,\n",
      "          '2': 1,\n",
      "          'coming': 1,\n",
      "          'weeks': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'verhoeven': 6,\n",
      "          'starship': 5,\n",
      "          'troopers': 5,\n",
      "          'one': 5,\n",
      "          'military': 4,\n",
      "          'look': 4,\n",
      "          'film': 4,\n",
      "          'mind': 3,\n",
      "          'giant': 3,\n",
      "          'war': 3,\n",
      "          'insects': 3,\n",
      "          'nin': 3,\n",
      "          'bad': 3,\n",
      "          'bug': 3,\n",
      "          'satire': 3,\n",
      "          'fashion': 3,\n",
      "          'teens': 3,\n",
      "          'na': 3,\n",
      "          'bugs': 3,\n",
      "          'attack': 3,\n",
      "          'scenes': 3,\n",
      "          'certain': 2,\n",
      "          'flying': 2,\n",
      "          'nand': 2,\n",
      "          'paul': 2,\n",
      "          'doogie': 2,\n",
      "          'meld': 2,\n",
      "          'n': 2,\n",
      "          'novel': 2,\n",
      "          'scifi': 2,\n",
      "          'gift': 2,\n",
      "          'creating': 2,\n",
      "          'entertaining': 2,\n",
      "          'social': 2,\n",
      "          'starts': 2,\n",
      "          'meet': 2,\n",
      "          'school': 2,\n",
      "          'kids': 2,\n",
      "          'like': 2,\n",
      "          'nits': 2,\n",
      "          'around': 2,\n",
      "          'none': 2,\n",
      "          'nhe': 2,\n",
      "          'long': 2,\n",
      "          'scene': 2,\n",
      "          'showgirls': 2,\n",
      "          'action': 2,\n",
      "          'even': 2,\n",
      "          'part': 2,\n",
      "          'enough': 2,\n",
      "          'two': 2,\n",
      "          'fails': 2,\n",
      "          'rich': 1,\n",
      "          'legacy': 1,\n",
      "          'cinema': 1,\n",
      "          'left': 1,\n",
      "          'us': 1,\n",
      "          'indelible': 1,\n",
      "          'images': 1,\n",
      "          'tinkling': 1,\n",
      "          'christmas': 1,\n",
      "          'tree': 1,\n",
      "          'bell': 1,\n",
      "          'wonderful': 1,\n",
      "          'life': 1,\n",
      "          'nbogies': 1,\n",
      "          'speech': 1,\n",
      "          'airport': 1,\n",
      "          'casablanca': 1,\n",
      "          'nlittle': 1,\n",
      "          'elliotts': 1,\n",
      "          'bicycle': 1,\n",
      "          'silhouetted': 1,\n",
      "          'moon': 1,\n",
      "          'e': 1,\n",
      "          'director': 1,\n",
      "          'adds': 1,\n",
      "          'image': 1,\n",
      "          'live': 1,\n",
      "          'memories': 1,\n",
      "          'forever': 1,\n",
      "          'houser': 1,\n",
      "          'vulcan': 1,\n",
      "          'slug': 1,\n",
      "          'loosely': 1,\n",
      "          'based': 1,\n",
      "          'robert': 1,\n",
      "          'heinlein': 1,\n",
      "          'story': 1,\n",
      "          'interstellar': 1,\n",
      "          'humans': 1,\n",
      "          'hands': 1,\n",
      "          'mammoth': 1,\n",
      "          'battle': 1,\n",
      "          'flick': 1,\n",
      "          'astonishingly': 1,\n",
      "          'films': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'monument': 1,\n",
      "          'inept': 1,\n",
      "          'filmmaking': 1,\n",
      "          'colossal': 1,\n",
      "          'scale': 1,\n",
      "          'nto': 1,\n",
      "          'put': 1,\n",
      "          'simply': 1,\n",
      "          'bomb': 1,\n",
      "          'robocop': 1,\n",
      "          'total': 1,\n",
      "          'recall': 1,\n",
      "          'displayed': 1,\n",
      "          'mix': 1,\n",
      "          'violence': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'similar': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'futuristic': 1,\n",
      "          'recruitment': 1,\n",
      "          'ad': 1,\n",
      "          'shows': 1,\n",
      "          'promise': 1,\n",
      "          'nthings': 1,\n",
      "          'go': 1,\n",
      "          'downhill': 1,\n",
      "          'fast': 1,\n",
      "          'though': 1,\n",
      "          'heroes': 1,\n",
      "          'group': 1,\n",
      "          'buenos': 1,\n",
      "          'aires': 1,\n",
      "          'preparing': 1,\n",
      "          'graduate': 1,\n",
      "          'high': 1,\n",
      "          'ninexplicably': 1,\n",
      "          'johnny': 1,\n",
      "          'rico': 1,\n",
      "          'carmen': 1,\n",
      "          'ibenez': 1,\n",
      "          'dizzy': 1,\n",
      "          'flores': 1,\n",
      "          'xander': 1,\n",
      "          'barcalow': 1,\n",
      "          'played': 1,\n",
      "          'squarejawed': 1,\n",
      "          'anglo': 1,\n",
      "          'stepped': 1,\n",
      "          'mountain': 1,\n",
      "          'dew': 1,\n",
      "          'commercial': 1,\n",
      "          'veritable': 1,\n",
      "          'alpha': 1,\n",
      "          'centuri': 1,\n",
      "          '90210': 1,\n",
      "          'watch': 1,\n",
      "          'lovesmitten': 1,\n",
      "          'squabble': 1,\n",
      "          'name': 1,\n",
      "          'love': 1,\n",
      "          'nmichael': 1,\n",
      "          'ironside': 1,\n",
      "          'plays': 1,\n",
      "          'teacher': 1,\n",
      "          'waves': 1,\n",
      "          'cheesy': 1,\n",
      "          'fake': 1,\n",
      "          'severed': 1,\n",
      "          'arm': 1,\n",
      "          'lecturing': 1,\n",
      "          'civic': 1,\n",
      "          'responsibilities': 1,\n",
      "          'neventually': 1,\n",
      "          'join': 1,\n",
      "          'dreams': 1,\n",
      "          'glory': 1,\n",
      "          'addled': 1,\n",
      "          'little': 1,\n",
      "          'minds': 1,\n",
      "          'classmates': 1,\n",
      "          'carl': 1,\n",
      "          'jenkins': 1,\n",
      "          'housers': 1,\n",
      "          'neil': 1,\n",
      "          'patrick': 1,\n",
      "          'harris': 1,\n",
      "          'snags': 1,\n",
      "          'job': 1,\n",
      "          'intelligence': 1,\n",
      "          'strong': 1,\n",
      "          'psychic': 1,\n",
      "          'abilities': 1,\n",
      "          'displays': 1,\n",
      "          'psychically': 1,\n",
      "          'ordering': 1,\n",
      "          'pet': 1,\n",
      "          'ferret': 1,\n",
      "          'crawl': 1,\n",
      "          'mothers': 1,\n",
      "          'leg': 1,\n",
      "          'dull': 1,\n",
      "          'boot': 1,\n",
      "          'camp': 1,\n",
      "          'sequence': 1,\n",
      "          'follows': 1,\n",
      "          'enlivened': 1,\n",
      "          'extended': 1,\n",
      "          'coed': 1,\n",
      "          'shower': 1,\n",
      "          'recruits': 1,\n",
      "          'swap': 1,\n",
      "          'snappy': 1,\n",
      "          'banter': 1,\n",
      "          'directors': 1,\n",
      "          'camera': 1,\n",
      "          'roams': 1,\n",
      "          'buff': 1,\n",
      "          'bodies': 1,\n",
      "          'nfinally': 1,\n",
      "          'full': 1,\n",
      "          'hour': 1,\n",
      "          'finally': 1,\n",
      "          'enemy': 1,\n",
      "          'hail': 1,\n",
      "          'klendathu': 1,\n",
      "          'colonize': 1,\n",
      "          'planets': 1,\n",
      "          'hurling': 1,\n",
      "          'spores': 1,\n",
      "          'space': 1,\n",
      "          'nthey': 1,\n",
      "          'starships': 1,\n",
      "          'spinning': 1,\n",
      "          'firing': 1,\n",
      "          'deadly': 1,\n",
      "          'plasma': 1,\n",
      "          'blasts': 1,\n",
      "          'rears': 1,\n",
      "          'nyes': 1,\n",
      "          'incredible': 1,\n",
      "          'seems': 1,\n",
      "          'actually': 1,\n",
      "          'kill': 1,\n",
      "          'cosmic': 1,\n",
      "          'farts': 1,\n",
      "          'phenomenally': 1,\n",
      "          'large': 1,\n",
      "          'amount': 1,\n",
      "          'money': 1,\n",
      "          'spent': 1,\n",
      "          'computer': 1,\n",
      "          'animated': 1,\n",
      "          'results': 1,\n",
      "          'mixed': 1,\n",
      "          'best': 1,\n",
      "          'nsweeping': 1,\n",
      "          'distant': 1,\n",
      "          'shots': 1,\n",
      "          'depicting': 1,\n",
      "          'hordes': 1,\n",
      "          'racing': 1,\n",
      "          'impressive': 1,\n",
      "          'scary': 1,\n",
      "          'closeups': 1,\n",
      "          'different': 1,\n",
      "          'matter': 1,\n",
      "          'odd': 1,\n",
      "          'artificial': 1,\n",
      "          'origami': 1,\n",
      "          'creations': 1,\n",
      "          'mottled': 1,\n",
      "          'plastic': 1,\n",
      "          'coating': 1,\n",
      "          'intensely': 1,\n",
      "          'violent': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'overall': 1,\n",
      "          'phony': 1,\n",
      "          'generate': 1,\n",
      "          'real': 1,\n",
      "          'tension': 1,\n",
      "          'nwhile': 1,\n",
      "          'frantic': 1,\n",
      "          'strategy': 1,\n",
      "          'wildly': 1,\n",
      "          'illogical': 1,\n",
      "          'hollywood': 1,\n",
      "          'standards': 1,\n",
      "          'grows': 1,\n",
      "          'tiresome': 1,\n",
      "          'quickly': 1,\n",
      "          'nverhoeven': 1,\n",
      "          'tries': 1,\n",
      "          'spice': 1,\n",
      "          'things': 1,\n",
      "          'throwing': 1,\n",
      "          'satiric': 1,\n",
      "          'news': 1,\n",
      "          'coverage': 1,\n",
      "          'fauxjingoistic': 1,\n",
      "          'children': 1,\n",
      "          'effort': 1,\n",
      "          'squishing': 1,\n",
      "          'roaches': 1,\n",
      "          'sidewalk': 1,\n",
      "          'arent': 1,\n",
      "          'make': 1,\n",
      "          'stretches': 1,\n",
      "          'sheer': 1,\n",
      "          'dreck': 1,\n",
      "          'guess': 1,\n",
      "          'trying': 1,\n",
      "          'nhis': 1,\n",
      "          'customary': 1,\n",
      "          'parts': 1,\n",
      "          'ultraviolence': 1,\n",
      "          'formula': 1,\n",
      "          'way': 1,\n",
      "          'whack': 1,\n",
      "          'flounders': 1,\n",
      "          'almost': 1,\n",
      "          'good': 1,\n",
      "          'nan': 1,\n",
      "          'intergalactic': 1,\n",
      "          'kegger': 1,\n",
      "          'party': 1,\n",
      "          'jake': 1,\n",
      "          'busey': 1,\n",
      "          'playing': 1,\n",
      "          'dixie': 1,\n",
      "          'green': 1,\n",
      "          'plexiglas': 1,\n",
      "          'fiddle': 1,\n",
      "          'bizarre': 1,\n",
      "          'appeal': 1,\n",
      "          'sex': 1,\n",
      "          'achieves': 1,\n",
      "          'smarmy': 1,\n",
      "          'charm': 1,\n",
      "          'enhanced': 1,\n",
      "          'minutes': 1,\n",
      "          'later': 1,\n",
      "          'female': 1,\n",
      "          'receives': 1,\n",
      "          'fatal': 1,\n",
      "          'jab': 1,\n",
      "          'tells': 1,\n",
      "          'hero': 1,\n",
      "          'doesnt': 1,\n",
      "          'dying': 1,\n",
      "          'okay': 1,\n",
      "          'gasps': 1,\n",
      "          'got': 1,\n",
      "          'course': 1,\n",
      "          'theres': 1,\n",
      "          'doogies': 1,\n",
      "          'possible': 1,\n",
      "          'attempting': 1,\n",
      "          'create': 1,\n",
      "          'homage': 1,\n",
      "          'era': 1,\n",
      "          'original': 1,\n",
      "          'nheinleins': 1,\n",
      "          'pre': 1,\n",
      "          'stranger': 1,\n",
      "          'strange': 1,\n",
      "          'land': 1,\n",
      "          'books': 1,\n",
      "          'aimed': 1,\n",
      "          'adolescent': 1,\n",
      "          'males': 1,\n",
      "          'antiseptic': 1,\n",
      "          'retrofuture': 1,\n",
      "          'late': 1,\n",
      "          '50searly': 1,\n",
      "          '60s': 1,\n",
      "          'cityscape': 1,\n",
      "          'shown': 1,\n",
      "          'jetsonslike': 1,\n",
      "          'gleaming': 1,\n",
      "          'metropolis': 1,\n",
      "          'cars': 1,\n",
      "          'whizzing': 1,\n",
      "          'past': 1,\n",
      "          'obvious': 1,\n",
      "          'matte': 1,\n",
      "          'painting': 1,\n",
      "          'hairstyles': 1,\n",
      "          'retro': 1,\n",
      "          'straight': 1,\n",
      "          'frankie': 1,\n",
      "          'avalon': 1,\n",
      "          'annette': 1,\n",
      "          'funicello': 1,\n",
      "          'nultimately': 1,\n",
      "          'verhoevens': 1,\n",
      "          'motives': 1,\n",
      "          'irrelevant': 1,\n",
      "          'produce': 1,\n",
      "          'gargantuan': 1,\n",
      "          'nit': 1,\n",
      "          'movie': 1,\n",
      "          'navoid': 1,\n",
      "          'costs': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'robbins': 9,\n",
      "          'chemistry': 6,\n",
      "          'lawernce': 5,\n",
      "          'film': 5,\n",
      "          'lose': 5,\n",
      "          'comedy': 4,\n",
      "          'theres': 4,\n",
      "          'good': 4,\n",
      "          'martin': 3,\n",
      "          'movie': 3,\n",
      "          'nthere': 3,\n",
      "          'like': 3,\n",
      "          'funny': 3,\n",
      "          'much': 3,\n",
      "          'nin': 3,\n",
      "          'nothing': 3,\n",
      "          'nthe': 3,\n",
      "          'road': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nhe': 2,\n",
      "          'car': 2,\n",
      "          'along': 2,\n",
      "          'arizona': 2,\n",
      "          'two': 2,\n",
      "          'robbers': 2,\n",
      "          'gags': 2,\n",
      "          'beverly': 2,\n",
      "          'hills': 2,\n",
      "          'midnight': 2,\n",
      "          'run': 2,\n",
      "          'eddie': 2,\n",
      "          'murphy': 2,\n",
      "          'even': 2,\n",
      "          'chase': 2,\n",
      "          'seemed': 2,\n",
      "          'eighties': 2,\n",
      "          'steve': 2,\n",
      "          'also': 2,\n",
      "          'isnt': 2,\n",
      "          'hardly': 2,\n",
      "          'performance': 2,\n",
      "          'characters': 2,\n",
      "          'better': 2,\n",
      "          'nnothing': 2,\n",
      "          'threatening': 2,\n",
      "          'lawerences': 2,\n",
      "          'ruined': 2,\n",
      "          'tim': 1,\n",
      "          'team': 1,\n",
      "          'nrobbins': 1,\n",
      "          'plays': 1,\n",
      "          'exec': 1,\n",
      "          'discovers': 1,\n",
      "          'wife': 1,\n",
      "          'sex': 1,\n",
      "          'boss': 1,\n",
      "          'goes': 1,\n",
      "          'depression': 1,\n",
      "          'drives': 1,\n",
      "          'around': 1,\n",
      "          'neighbourhood': 1,\n",
      "          'arrives': 1,\n",
      "          'inside': 1,\n",
      "          'usual': 1,\n",
      "          'ghetto': 1,\n",
      "          'side': 1,\n",
      "          'every': 1,\n",
      "          'american': 1,\n",
      "          'city': 1,\n",
      "          'attempts': 1,\n",
      "          'steal': 1,\n",
      "          'avail': 1,\n",
      "          'dragged': 1,\n",
      "          'trip': 1,\n",
      "          'hold': 1,\n",
      "          'store': 1,\n",
      "          'mistaken': 1,\n",
      "          'cousin': 1,\n",
      "          'vinny': 1,\n",
      "          'chased': 1,\n",
      "          'police': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'way': 1,\n",
      "          'usually': 1,\n",
      "          'nalthough': 1,\n",
      "          'midly': 1,\n",
      "          'quite': 1,\n",
      "          'watchable': 1,\n",
      "          'something': 1,\n",
      "          'horribly': 1,\n",
      "          'familiar': 1,\n",
      "          'nthis': 1,\n",
      "          'really': 1,\n",
      "          'called': 1,\n",
      "          'wisecracking': 1,\n",
      "          'heavy': 1,\n",
      "          'profanity': 1,\n",
      "          'cop': 1,\n",
      "          'pratically': 1,\n",
      "          'idea': 1,\n",
      "          'nits': 1,\n",
      "          'full': 1,\n",
      "          'cliches': 1,\n",
      "          'neven': 1,\n",
      "          'credit': 1,\n",
      "          'sequence': 1,\n",
      "          'chevy': 1,\n",
      "          'planes': 1,\n",
      "          'trains': 1,\n",
      "          'automobiles': 1,\n",
      "          'real': 1,\n",
      "          'john': 1,\n",
      "          'candy': 1,\n",
      "          'ntowards': 1,\n",
      "          'end': 1,\n",
      "          'seems': 1,\n",
      "          'work': 1,\n",
      "          'bulk': 1,\n",
      "          'director': 1,\n",
      "          'directs': 1,\n",
      "          'workman': 1,\n",
      "          'fashion': 1,\n",
      "          'gets': 1,\n",
      "          'jokes': 1,\n",
      "          'across': 1,\n",
      "          'nand': 1,\n",
      "          'although': 1,\n",
      "          'leads': 1,\n",
      "          'give': 1,\n",
      "          'performances': 1,\n",
      "          'nlawerence': 1,\n",
      "          'gives': 1,\n",
      "          'alright': 1,\n",
      "          'aswell': 1,\n",
      "          'nhowever': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'played': 1,\n",
      "          'jacobs': 1,\n",
      "          'ladder': 1,\n",
      "          'player': 1,\n",
      "          'fact': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'suggest': 1,\n",
      "          'rent': 1,\n",
      "          'hudsucker': 1,\n",
      "          'proxy': 1,\n",
      "          'funnier': 1,\n",
      "          'moments': 1,\n",
      "          'however': 1,\n",
      "          'humour': 1,\n",
      "          'particulary': 1,\n",
      "          'sophisticated': 1,\n",
      "          'enojyed': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'might': 1,\n",
      "          'enjoy': 1,\n",
      "          'scene': 1,\n",
      "          'asks': 1,\n",
      "          'shopkeeper': 1,\n",
      "          'approach': 1,\n",
      "          'consisted': 1,\n",
      "          'lawerence': 1,\n",
      "          'shoot': 1,\n",
      "          'shopkeepers': 1,\n",
      "          'ass': 1,\n",
      "          'swearing': 1,\n",
      "          'lot': 1,\n",
      "          'himselfs': 1,\n",
      "          'speaking': 1,\n",
      "          'deep': 1,\n",
      "          'scary': 1,\n",
      "          'voice': 1,\n",
      "          'predictable': 1,\n",
      "          'lack': 1,\n",
      "          'infurating': 1,\n",
      "          'ending': 1,\n",
      "          'farfetched': 1,\n",
      "          'perfect': 1,\n",
      "          'first': 1,\n",
      "          'bad': 1,\n",
      "          'hopefully': 1,\n",
      "          'last': 1,\n",
      "          'suggests': 1,\n",
      "          'odereick': 1,\n",
      "          'twice': 1,\n",
      "          'making': 1,\n",
      "          'another': 1,\n",
      "          'nearly': 1,\n",
      "          'carreys': 1,\n",
      "          'career': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'nature': 1,\n",
      "          'calls': 1,\n",
      "          'lets': 1,\n",
      "          'hope': 1,\n",
      "          'hasnt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'fight': 6,\n",
      "          'bad': 5,\n",
      "          'robin': 4,\n",
      "          'scenes': 4,\n",
      "          'made': 4,\n",
      "          'nthe': 4,\n",
      "          'characters': 4,\n",
      "          'nthis': 3,\n",
      "          'minutes': 3,\n",
      "          'style': 3,\n",
      "          'could': 3,\n",
      "          'ni': 3,\n",
      "          'way': 3,\n",
      "          'around': 3,\n",
      "          'sequel': 2,\n",
      "          'batman': 2,\n",
      "          'one': 2,\n",
      "          'everything': 2,\n",
      "          'except': 2,\n",
      "          'shou': 2,\n",
      "          'weep': 2,\n",
      "          'original': 2,\n",
      "          'fun': 2,\n",
      "          'paul': 2,\n",
      "          'anderson': 2,\n",
      "          'leonetti': 2,\n",
      "          'mortal': 2,\n",
      "          'kombat': 2,\n",
      "          'good': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'treatment': 2,\n",
      "          'na': 2,\n",
      "          'back': 2,\n",
      "          'even': 2,\n",
      "          'nbut': 2,\n",
      "          'move': 2,\n",
      "          'jumping': 2,\n",
      "          'im': 2,\n",
      "          'kick': 2,\n",
      "          'seen': 2,\n",
      "          'least': 2,\n",
      "          'first': 2,\n",
      "          'plain': 2,\n",
      "          'games': 2,\n",
      "          'nit': 2,\n",
      "          'stupid': 2,\n",
      "          'video': 2,\n",
      "          'capsule': 1,\n",
      "          'crow': 1,\n",
      "          '2': 1,\n",
      "          'still': 1,\n",
      "          'horribly': 1,\n",
      "          'putrid': 1,\n",
      "          'cheesy': 1,\n",
      "          'illconceived': 1,\n",
      "          'belongs': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'cartoons': 1,\n",
      "          'nextended': 1,\n",
      "          'review': 1,\n",
      "          'know': 1,\n",
      "          'halfway': 1,\n",
      "          'realized': 1,\n",
      "          'hacked': 1,\n",
      "          'youd': 1,\n",
      "          'damn': 1,\n",
      "          'fine': 1,\n",
      "          '35': 1,\n",
      "          'flashy': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'nbeautifully': 1,\n",
      "          'choreographed': 1,\n",
      "          'also': 1,\n",
      "          'plays': 1,\n",
      "          'liu': 1,\n",
      "          'kang': 1,\n",
      "          'mindblowing': 1,\n",
      "          'graceful': 1,\n",
      "          'acrobatic': 1,\n",
      "          'enough': 1,\n",
      "          'make': 1,\n",
      "          'olympic': 1,\n",
      "          'gymnasts': 1,\n",
      "          'unfortunately': 1,\n",
      "          'without': 1,\n",
      "          'frenetic': 1,\n",
      "          'directorial': 1,\n",
      "          'ninstead': 1,\n",
      "          'got': 1,\n",
      "          'john': 1,\n",
      "          'r': 1,\n",
      "          'cinematographer': 1,\n",
      "          'nnot': 1,\n",
      "          'choice': 1,\n",
      "          'nwhile': 1,\n",
      "          'brutal': 1,\n",
      "          'eyepopping': 1,\n",
      "          'rest': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'standard': 1,\n",
      "          'tv': 1,\n",
      "          'fare': 1,\n",
      "          'acting': 1,\n",
      "          'subpar': 1,\n",
      "          'endure': 1,\n",
      "          'directors': 1,\n",
      "          'b': 1,\n",
      "          'c': 1,\n",
      "          'story': 1,\n",
      "          'mr': 1,\n",
      "          'go': 1,\n",
      "          'lighting': 1,\n",
      "          'opinion': 1,\n",
      "          'say': 1,\n",
      "          'dozens': 1,\n",
      "          'things': 1,\n",
      "          'overuses': 1,\n",
      "          'slowmotion': 1,\n",
      "          'eye': 1,\n",
      "          'action': 1,\n",
      "          'cant': 1,\n",
      "          'get': 1,\n",
      "          'mediocre': 1,\n",
      "          'performances': 1,\n",
      "          'actors': 1,\n",
      "          'far': 1,\n",
      "          'worst': 1,\n",
      "          'treated': 1,\n",
      "          'napparantly': 1,\n",
      "          'everybody': 1,\n",
      "          'fly': 1,\n",
      "          'nhell': 1,\n",
      "          'occaisional': 1,\n",
      "          'gravity': 1,\n",
      "          'defying': 1,\n",
      "          'flip': 1,\n",
      "          'whatnot': 1,\n",
      "          'happens': 1,\n",
      "          'every': 1,\n",
      "          'done': 1,\n",
      "          'poorly': 1,\n",
      "          'nbetter': 1,\n",
      "          'acrobatics': 1,\n",
      "          'xena': 1,\n",
      "          'warrior': 1,\n",
      "          'princess': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'gotten': 1,\n",
      "          'let': 1,\n",
      "          'direct': 1,\n",
      "          'nb': 1,\n",
      "          'unlike': 1,\n",
      "          'whose': 1,\n",
      "          'sfx': 1,\n",
      "          'vibrant': 1,\n",
      "          'somewhat': 1,\n",
      "          'realistic': 1,\n",
      "          'mk': 1,\n",
      "          'bland': 1,\n",
      "          'fake': 1,\n",
      "          'looking': 1,\n",
      "          'overall': 1,\n",
      "          'counted': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'times': 1,\n",
      "          'bluescreening': 1,\n",
      "          'painfully': 1,\n",
      "          'obvious': 1,\n",
      "          'nhad': 1,\n",
      "          '80s': 1,\n",
      "          'would': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'todays': 1,\n",
      "          'industry': 1,\n",
      "          'doesnt': 1,\n",
      "          'look': 1,\n",
      "          'finished': 1,\n",
      "          'nc': 1,\n",
      "          '_really_': 1,\n",
      "          'parts': 1,\n",
      "          'admit': 1,\n",
      "          'avid': 1,\n",
      "          'fan': 1,\n",
      "          'series': 1,\n",
      "          'amusing': 1,\n",
      "          'diversions': 1,\n",
      "          'easy': 1,\n",
      "          'work': 1,\n",
      "          'stress': 1,\n",
      "          'anger': 1,\n",
      "          'mindlessly': 1,\n",
      "          'thrillride': 1,\n",
      "          'really': 1,\n",
      "          'cool': 1,\n",
      "          'isnt': 1,\n",
      "          'writers': 1,\n",
      "          'apparantly': 1,\n",
      "          'deemed': 1,\n",
      "          'necessary': 1,\n",
      "          'lower': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'teens': 1,\n",
      "          'preschoolers': 1,\n",
      "          'nsome': 1,\n",
      "          'plot': 1,\n",
      "          'elements': 1,\n",
      "          'nhow': 1,\n",
      "          'ntake': 1,\n",
      "          'instance': 1,\n",
      "          'heroes': 1,\n",
      "          'nthey': 1,\n",
      "          'use': 1,\n",
      "          'giants': 1,\n",
      "          'spheres': 1,\n",
      "          'roll': 1,\n",
      "          'underground': 1,\n",
      "          'supposedly': 1,\n",
      "          'thousands': 1,\n",
      "          'miles': 1,\n",
      "          'per': 1,\n",
      "          'hour': 1,\n",
      "          'oh': 1,\n",
      "          'nboy': 1,\n",
      "          'neven': 1,\n",
      "          'worse': 1,\n",
      "          'secondary': 1,\n",
      "          'nblink': 1,\n",
      "          'youll': 1,\n",
      "          'miss': 1,\n",
      "          'em': 1,\n",
      "          'nmost': 1,\n",
      "          'depth': 1,\n",
      "          'nif': 1,\n",
      "          'thought': 1,\n",
      "          'aint': 1,\n",
      "          'nothin': 1,\n",
      "          'yet': 1,\n",
      "          '75': 1,\n",
      "          'introduced': 1,\n",
      "          'somebody': 1,\n",
      "          'bit': 1,\n",
      "          'either': 1,\n",
      "          'die': 1,\n",
      "          'forgotten': 1,\n",
      "          'ntheres': 1,\n",
      "          'explanation': 1,\n",
      "          'nand': 1,\n",
      "          'final': 1,\n",
      "          'blasphemy': 1,\n",
      "          'fans': 1,\n",
      "          'waiting': 1,\n",
      "          'rabidly': 1,\n",
      "          'hyped': 1,\n",
      "          'intricate': 1,\n",
      "          'lasted': 1,\n",
      "          '3': 1,\n",
      "          'sort': 1,\n",
      "          'ended': 1,\n",
      "          'almost': 1,\n",
      "          'nto': 1,\n",
      "          'sum': 1,\n",
      "          'rent': 1,\n",
      "          'fastforward': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wife': 5,\n",
      "          'astronauts': 4,\n",
      "          'theron': 2,\n",
      "          'far': 2,\n",
      "          'rosemarys': 2,\n",
      "          'species': 2,\n",
      "          'advocate': 2,\n",
      "          'depp': 2,\n",
      "          'get': 2,\n",
      "          'similar': 2,\n",
      "          'n': 2,\n",
      "          'movie': 2,\n",
      "          'story': 2,\n",
      "          'hear': 2,\n",
      "          'charlize': 1,\n",
      "          'plays': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'nervous': 1,\n",
      "          'demeanor': 1,\n",
      "          'pixiehairdo': 1,\n",
      "          'demon': 1,\n",
      "          'spawn': 1,\n",
      "          'unwittingly': 1,\n",
      "          'growing': 1,\n",
      "          'belly': 1,\n",
      "          'nif': 1,\n",
      "          'name': 1,\n",
      "          'wasnt': 1,\n",
      "          'jillian': 1,\n",
      "          'makers': 1,\n",
      "          'embarrassing': 1,\n",
      "          'bit': 1,\n",
      "          'scifi': 1,\n",
      "          'shlock': 1,\n",
      "          'could': 1,\n",
      "          'come': 1,\n",
      "          'appropriate': 1,\n",
      "          'title': 1,\n",
      "          'nwhat': 1,\n",
      "          'shame': 1,\n",
      "          'see': 1,\n",
      "          'gifted': 1,\n",
      "          'actress': 1,\n",
      "          'oscarworthy': 1,\n",
      "          'devils': 1,\n",
      "          'struggle': 1,\n",
      "          'lamest': 1,\n",
      "          'ripoff': 1,\n",
      "          'screendom': 1,\n",
      "          'classic': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'nok': 1,\n",
      "          'maybe': 1,\n",
      "          'deviates': 1,\n",
      "          'baby': 1,\n",
      "          'turf': 1,\n",
      "          'setup': 1,\n",
      "          'finds': 1,\n",
      "          'heroine': 1,\n",
      "          'terrorized': 1,\n",
      "          'satans': 1,\n",
      "          'minions': 1,\n",
      "          'possessed': 1,\n",
      "          'husband': 1,\n",
      "          'johnny': 1,\n",
      "          'shuttle': 1,\n",
      "          'pilot': 1,\n",
      "          'whose': 1,\n",
      "          'mission': 1,\n",
      "          'mishap': 1,\n",
      "          'leaves': 1,\n",
      "          'um': 1,\n",
      "          'changed': 1,\n",
      "          'man': 1,\n",
      "          'npredictably': 1,\n",
      "          'missus': 1,\n",
      "          'sequence': 1,\n",
      "          'best': 1,\n",
      "          'described': 1,\n",
      "          'unpleasant': 1,\n",
      "          'evil': 1,\n",
      "          'seed': 1,\n",
      "          'impregnating': 1,\n",
      "          'twins': 1,\n",
      "          'realizing': 1,\n",
      "          'great': 1,\n",
      "          'bowfinger': 1,\n",
      "          'line': 1,\n",
      "          'alien': 1,\n",
      "          'love': 1,\n",
      "          'ntherons': 1,\n",
      "          'character': 1,\n",
      "          'faced': 1,\n",
      "          'dilemma': 1,\n",
      "          'horror': 1,\n",
      "          'resonating': 1,\n",
      "          'strongly': 1,\n",
      "          'astronaut': 1,\n",
      "          'provides': 1,\n",
      "          'artificial': 1,\n",
      "          'anxiety': 1,\n",
      "          'nlast': 1,\n",
      "          'years': 1,\n",
      "          'equally': 1,\n",
      "          'noodleheaded': 1,\n",
      "          'ii': 1,\n",
      "          'spun': 1,\n",
      "          'premise': 1,\n",
      "          'breeding': 1,\n",
      "          'habits': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'earth': 1,\n",
      "          'least': 1,\n",
      "          'less': 1,\n",
      "          'knew': 1,\n",
      "          'garbage': 1,\n",
      "          'grave': 1,\n",
      "          'humorfree': 1,\n",
      "          'passing': 1,\n",
      "          'increasingly': 1,\n",
      "          'silly': 1,\n",
      "          'fullfledged': 1,\n",
      "          'serious': 1,\n",
      "          'right': 1,\n",
      "          'ambiguous': 1,\n",
      "          'finale': 1,\n",
      "          'isnt': 1,\n",
      "          'even': 1,\n",
      "          'going': 1,\n",
      "          'satisfy': 1,\n",
      "          'whove': 1,\n",
      "          'stayed': 1,\n",
      "          'thus': 1,\n",
      "          'nheres': 1,\n",
      "          'hint': 1,\n",
      "          'involves': 1,\n",
      "          'lots': 1,\n",
      "          'water': 1,\n",
      "          'electrical': 1,\n",
      "          'equipment': 1,\n",
      "          'special': 1,\n",
      "          'effect': 1,\n",
      "          'abyss': 1,\n",
      "          'tots': 1,\n",
      "          'doubled': 1,\n",
      "          'adam': 1,\n",
      "          'sandlers': 1,\n",
      "          'costar': 1,\n",
      "          'big': 1,\n",
      "          'daddy': 1,\n",
      "          'ndraw': 1,\n",
      "          'conclusions': 1,\n",
      "          'ndirectorwriter': 1,\n",
      "          'rand': 1,\n",
      "          'ravich': 1,\n",
      "          'coats': 1,\n",
      "          'proceedings': 1,\n",
      "          'dynamic': 1,\n",
      "          'sights': 1,\n",
      "          'masterminded': 1,\n",
      "          'legendary': 1,\n",
      "          'e': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'allen': 1,\n",
      "          'daviau': 1,\n",
      "          'often': 1,\n",
      "          'favors': 1,\n",
      "          'films': 1,\n",
      "          'visual': 1,\n",
      "          'presentation': 1,\n",
      "          'hes': 1,\n",
      "          'trying': 1,\n",
      "          'tell': 1,\n",
      "          'nthis': 1,\n",
      "          'bodes': 1,\n",
      "          'horribly': 1,\n",
      "          'dramatic': 1,\n",
      "          'development': 1,\n",
      "          'like': 1,\n",
      "          'surfacing': 1,\n",
      "          'suspicious': 1,\n",
      "          'nasa': 1,\n",
      "          'official': 1,\n",
      "          'speed': 1,\n",
      "          'joe': 1,\n",
      "          'morton': 1,\n",
      "          'instigate': 1,\n",
      "          'jills': 1,\n",
      "          'slow': 1,\n",
      "          'stupid': 1,\n",
      "          'comprehension': 1,\n",
      "          'truth': 1,\n",
      "          'nhis': 1,\n",
      "          'hypererratic': 1,\n",
      "          'behavior': 1,\n",
      "          'probably': 1,\n",
      "          'supposed': 1,\n",
      "          'give': 1,\n",
      "          'paranoid': 1,\n",
      "          'edge': 1,\n",
      "          'ninstead': 1,\n",
      "          'adds': 1,\n",
      "          'phoniness': 1,\n",
      "          'ntheron': 1,\n",
      "          'certainly': 1,\n",
      "          'beyond': 1,\n",
      "          'junk': 1,\n",
      "          'chances': 1,\n",
      "          'prove': 1,\n",
      "          'fall': 1,\n",
      "          'part': 1,\n",
      "          'imposing': 1,\n",
      "          'ensemble': 1,\n",
      "          'case': 1,\n",
      "          'john': 1,\n",
      "          'irving': 1,\n",
      "          'adaptation': 1,\n",
      "          'cider': 1,\n",
      "          'house': 1,\n",
      "          'rules': 1,\n",
      "          'lead': 1,\n",
      "          'tim': 1,\n",
      "          'burtons': 1,\n",
      "          'eagerlyawaited': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          'nundeserving': 1,\n",
      "          'talent': 1,\n",
      "          'manages': 1,\n",
      "          'derivative': 1,\n",
      "          'dull': 1,\n",
      "          'uninvolving': 1,\n",
      "          'despite': 1,\n",
      "          'seemingly': 1,\n",
      "          'ripe': 1,\n",
      "          'potential': 1,\n",
      "          'unintentional': 1,\n",
      "          'laughs': 1,\n",
      "          'nin': 1,\n",
      "          'space': 1,\n",
      "          'one': 1,\n",
      "          'scream': 1,\n",
      "          'nbut': 1,\n",
      "          'theatre': 1,\n",
      "          'everyone': 1,\n",
      "          'snore': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chow': 3,\n",
      "          'good': 2,\n",
      "          'super': 2,\n",
      "          'action': 2,\n",
      "          'scene': 2,\n",
      "          'john': 2,\n",
      "          'woo': 2,\n",
      "          'chows': 2,\n",
      "          'would': 2,\n",
      "          'job': 2,\n",
      "          'requires': 2,\n",
      "          'kill': 2,\n",
      "          'nthis': 2,\n",
      "          'replacement': 2,\n",
      "          'killers': 2,\n",
      "          'various': 2,\n",
      "          'quite': 2,\n",
      "          'shoot': 2,\n",
      "          'making': 2,\n",
      "          'nthe': 2,\n",
      "          'lame': 2,\n",
      "          'well': 2,\n",
      "          'theres': 2,\n",
      "          'like': 2,\n",
      "          'first': 2,\n",
      "          'n': 2,\n",
      "          'hill': 2,\n",
      "          'ten': 1,\n",
      "          'years': 1,\n",
      "          'cool': 1,\n",
      "          'yun': 1,\n",
      "          'fat': 1,\n",
      "          'enjoyed': 1,\n",
      "          'god': 1,\n",
      "          'hood': 1,\n",
      "          'status': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'nnow': 1,\n",
      "          'followed': 1,\n",
      "          'footsteps': 1,\n",
      "          'director': 1,\n",
      "          'launched': 1,\n",
      "          'stardom': 1,\n",
      "          'acclaimed': 1,\n",
      "          'better': 1,\n",
      "          'tomorrow': 1,\n",
      "          'moving': 1,\n",
      "          'hollywood': 1,\n",
      "          'ni': 1,\n",
      "          'reservations': 1,\n",
      "          'move': 1,\n",
      "          'seem': 1,\n",
      "          'right': 1,\n",
      "          'nchow': 1,\n",
      "          'plays': 1,\n",
      "          'hitman': 1,\n",
      "          'jobs': 1,\n",
      "          'order': 1,\n",
      "          'repay': 1,\n",
      "          'debt': 1,\n",
      "          'nhis': 1,\n",
      "          'final': 1,\n",
      "          'policemans': 1,\n",
      "          'seven': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'boy': 1,\n",
      "          'refuses': 1,\n",
      "          'runs': 1,\n",
      "          'nhowever': 1,\n",
      "          'forced': 1,\n",
      "          'violent': 1,\n",
      "          'confrontation': 1,\n",
      "          'family': 1,\n",
      "          'threatned': 1,\n",
      "          'brought': 1,\n",
      "          'ncue': 1,\n",
      "          'around': 1,\n",
      "          '80': 1,\n",
      "          'minutes': 1,\n",
      "          'frankly': 1,\n",
      "          'tedious': 1,\n",
      "          'outs': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'locations': 1,\n",
      "          'nsome': 1,\n",
      "          'thought': 1,\n",
      "          'gone': 1,\n",
      "          'bit': 1,\n",
      "          'different': 1,\n",
      "          'unfortunately': 1,\n",
      "          'end': 1,\n",
      "          'plain': 1,\n",
      "          'boring': 1,\n",
      "          'car': 1,\n",
      "          'wash': 1,\n",
      "          'found': 1,\n",
      "          'laughing': 1,\n",
      "          'stupid': 1,\n",
      "          'looked': 1,\n",
      "          'ntut': 1,\n",
      "          'tut': 1,\n",
      "          'emphasis': 1,\n",
      "          'constant': 1,\n",
      "          'seemed': 1,\n",
      "          'accompanying': 1,\n",
      "          'music': 1,\n",
      "          'could': 1,\n",
      "          'sworn': 1,\n",
      "          'one': 1,\n",
      "          'piece': 1,\n",
      "          'ripped': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'movie': 1,\n",
      "          'content': 1,\n",
      "          'nmia': 1,\n",
      "          'sorvino': 1,\n",
      "          'passport': 1,\n",
      "          'forger': 1,\n",
      "          'dragged': 1,\n",
      "          'affay': 1,\n",
      "          'also': 1,\n",
      "          'provides': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'rather': 1,\n",
      "          'handy': 1,\n",
      "          'gun': 1,\n",
      "          'ndirector': 1,\n",
      "          'antoine': 1,\n",
      "          'arqua': 1,\n",
      "          'clearly': 1,\n",
      "          'observed': 1,\n",
      "          'excellent': 1,\n",
      "          'acting': 1,\n",
      "          'capabilties': 1,\n",
      "          'simply': 1,\n",
      "          'mutter': 1,\n",
      "          'lines': 1,\n",
      "          'broken': 1,\n",
      "          'english': 1,\n",
      "          'look': 1,\n",
      "          'flash': 1,\n",
      "          'stands': 1,\n",
      "          'shoots': 1,\n",
      "          'nchows': 1,\n",
      "          'trademark': 1,\n",
      "          'twin': 1,\n",
      "          'pistol': 1,\n",
      "          'shooting': 1,\n",
      "          'saved': 1,\n",
      "          'finale': 1,\n",
      "          'fairness': 1,\n",
      "          'even': 1,\n",
      "          'toothpick': 1,\n",
      "          'site': 1,\n",
      "          'nand': 1,\n",
      "          'cop': 1,\n",
      "          'thats': 1,\n",
      "          'damned': 1,\n",
      "          'unforgiveable': 1,\n",
      "          'nto': 1,\n",
      "          'round': 1,\n",
      "          'pretty': 1,\n",
      "          'darned': 1,\n",
      "          'outing': 1,\n",
      "          'nit': 1,\n",
      "          'appear': 1,\n",
      "          'left': 1,\n",
      "          'asia': 1,\n",
      "          '90': 1,\n",
      "          'minute': 1,\n",
      "          'pop': 1,\n",
      "          'video': 1,\n",
      "          'wanted': 1,\n",
      "          'considering': 1,\n",
      "          'exec': 1,\n",
      "          'producer': 1,\n",
      "          'say': 1,\n",
      "          'nwatch': 1,\n",
      "          'killer': 1,\n",
      "          'weep': 1,\n",
      "          'difference': 1,\n",
      "          'nreview': 1,\n",
      "          'chris': 1,\n",
      "          'room': 1,\n",
      "          'top': 1,\n",
      "          'telling': 1,\n",
      "          'still': 1,\n",
      "          'must': 1,\n",
      "          'learn': 1,\n",
      "          'smile': 1,\n",
      "          'want': 1,\n",
      "          'folks': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'libby': 6,\n",
      "          'husband': 4,\n",
      "          'nick': 4,\n",
      "          'matty': 4,\n",
      "          'n': 4,\n",
      "          'double': 3,\n",
      "          'jeopardy': 3,\n",
      "          'nwhen': 3,\n",
      "          'script': 3,\n",
      "          'ashley': 2,\n",
      "          'judd': 2,\n",
      "          'little': 2,\n",
      "          'life': 2,\n",
      "          'son': 2,\n",
      "          'house': 2,\n",
      "          'ocean': 2,\n",
      "          'bruce': 2,\n",
      "          'makes': 2,\n",
      "          'sent': 2,\n",
      "          'friend': 2,\n",
      "          'nlibby': 2,\n",
      "          'theory': 2,\n",
      "          'gets': 2,\n",
      "          'parole': 2,\n",
      "          'travis': 2,\n",
      "          'jones': 2,\n",
      "          'former': 2,\n",
      "          'law': 2,\n",
      "          'professor': 2,\n",
      "          'driving': 2,\n",
      "          'ntravis': 2,\n",
      "          'fugitive': 2,\n",
      "          'never': 2,\n",
      "          'get': 2,\n",
      "          'line': 2,\n",
      "          'judds': 2,\n",
      "          'us': 2,\n",
      "          'work': 2,\n",
      "          'parsons': 1,\n",
      "          'perfect': 1,\n",
      "          'rich': 1,\n",
      "          'cute': 1,\n",
      "          'greenwood': 1,\n",
      "          'takes': 1,\n",
      "          'sailing': 1,\n",
      "          'awakes': 1,\n",
      "          'find': 1,\n",
      "          'gone': 1,\n",
      "          'hands': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'njust': 1,\n",
      "          'deck': 1,\n",
      "          'picks': 1,\n",
      "          'bloody': 1,\n",
      "          'knife': 1,\n",
      "          'lying': 1,\n",
      "          'coast': 1,\n",
      "          'guard': 1,\n",
      "          'arrives': 1,\n",
      "          'response': 1,\n",
      "          'distress': 1,\n",
      "          'call': 1,\n",
      "          'vanished': 1,\n",
      "          'nshes': 1,\n",
      "          'convicted': 1,\n",
      "          'murder': 1,\n",
      "          'course': 1,\n",
      "          'leaves': 1,\n",
      "          'benjamin': 1,\n",
      "          'weir': 1,\n",
      "          'best': 1,\n",
      "          'annabeth': 1,\n",
      "          'gish': 1,\n",
      "          'ntime': 1,\n",
      "          'passes': 1,\n",
      "          'disappears': 1,\n",
      "          'nduring': 1,\n",
      "          'last': 1,\n",
      "          'phone': 1,\n",
      "          'conversation': 1,\n",
      "          'hears': 1,\n",
      "          'yell': 1,\n",
      "          'daddy': 1,\n",
      "          'nand': 1,\n",
      "          'realizes': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'serves': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'growing': 1,\n",
      "          'harder': 1,\n",
      "          'driven': 1,\n",
      "          'desire': 1,\n",
      "          'kill': 1,\n",
      "          'based': 1,\n",
      "          'amendment': 1,\n",
      "          'impunity': 1,\n",
      "          'shes': 1,\n",
      "          'halfway': 1,\n",
      "          'run': 1,\n",
      "          'lehman': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'ruined': 1,\n",
      "          'drunk': 1,\n",
      "          'accident': 1,\n",
      "          'nafter': 1,\n",
      "          'breaking': 1,\n",
      "          'entering': 1,\n",
      "          'destruction': 1,\n",
      "          'property': 1,\n",
      "          'jumps': 1,\n",
      "          'lams': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'looking': 1,\n",
      "          'pursues': 1,\n",
      "          'naturally': 1,\n",
      "          'watereddown': 1,\n",
      "          'version': 1,\n",
      "          'sleepwalking': 1,\n",
      "          'wellworn': 1,\n",
      "          'pursuer': 1,\n",
      "          'persona': 1,\n",
      "          'nalthough': 1,\n",
      "          'leaps': 1,\n",
      "          'bus': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'collides': 1,\n",
      "          'train': 1,\n",
      "          'manages': 1,\n",
      "          'nailbiters': 1,\n",
      "          'chased': 1,\n",
      "          'beach': 1,\n",
      "          'jeep': 1,\n",
      "          'chained': 1,\n",
      "          'car': 1,\n",
      "          'plunges': 1,\n",
      "          'sealed': 1,\n",
      "          'coffin': 1,\n",
      "          'add': 1,\n",
      "          'much': 1,\n",
      "          'needed': 1,\n",
      "          'thrills': 1,\n",
      "          'anemic': 1,\n",
      "          'slowmoving': 1,\n",
      "          'ncharacter': 1,\n",
      "          'development': 1,\n",
      "          'thin': 1,\n",
      "          'intriguing': 1,\n",
      "          'backstory': 1,\n",
      "          'mentioned': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'effect': 1,\n",
      "          'story': 1,\n",
      "          'think': 1,\n",
      "          'made': 1,\n",
      "          'could': 1,\n",
      "          'verify': 1,\n",
      "          'doublejeopardy': 1,\n",
      "          'drop': 1,\n",
      "          'nits': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'go': 1,\n",
      "          'one': 1,\n",
      "          'ntheres': 1,\n",
      "          'considerable': 1,\n",
      "          'sexual': 1,\n",
      "          'tension': 1,\n",
      "          'hey': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'didnt': 1,\n",
      "          'goes': 1,\n",
      "          'anywhere': 1,\n",
      "          'tvmovie': 1,\n",
      "          'everywoman': 1,\n",
      "          'intense': 1,\n",
      "          'performance': 1,\n",
      "          'draws': 1,\n",
      "          'forget': 1,\n",
      "          'character': 1,\n",
      "          'distinguishing': 1,\n",
      "          'characteristics': 1,\n",
      "          'nthis': 1,\n",
      "          'prominent': 1,\n",
      "          'role': 1,\n",
      "          'date': 1,\n",
      "          'proves': 1,\n",
      "          'light': 1,\n",
      "          'screen': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'hollywood': 1,\n",
      "          'gives': 1,\n",
      "          'next': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'nthe': 1,\n",
      "          'quality': 1,\n",
      "          'director': 1,\n",
      "          'beresfords': 1,\n",
      "          'movies': 1,\n",
      "          'seems': 1,\n",
      "          'depend': 1,\n",
      "          'luck': 1,\n",
      "          'good': 1,\n",
      "          'strong': 1,\n",
      "          'cast': 1,\n",
      "          'turns': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'like': 1,\n",
      "          'breaker': 1,\n",
      "          'morant': 1,\n",
      "          'miss': 1,\n",
      "          'daisy': 1,\n",
      "          'tender': 1,\n",
      "          'mercies': 1,\n",
      "          'doesnt': 1,\n",
      "          'nwe': 1,\n",
      "          'nscreenwriters': 1,\n",
      "          'david': 1,\n",
      "          'weisberg': 1,\n",
      "          'douglas': 1,\n",
      "          'cook': 1,\n",
      "          'previously': 1,\n",
      "          'collaborated': 1,\n",
      "          'rock': 1,\n",
      "          'probably': 1,\n",
      "          'benefited': 1,\n",
      "          'numerous': 1,\n",
      "          'uncredited': 1,\n",
      "          'rewrites': 1,\n",
      "          'nbottom': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'predictable': 1,\n",
      "          'bore': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'get': 4,\n",
      "          'mystery': 3,\n",
      "          'men': 3,\n",
      "          'n': 2,\n",
      "          'yes': 2,\n",
      "          'amazing': 2,\n",
      "          'frankenstein': 2,\n",
      "          'hot': 2,\n",
      "          'c': 2,\n",
      "          'thats': 2,\n",
      "          'stiller': 2,\n",
      "          'paul': 2,\n",
      "          'reubens': 2,\n",
      "          'nthe': 2,\n",
      "          'far': 1,\n",
      "          'concerned': 1,\n",
      "          'burning': 1,\n",
      "          'question': 1,\n",
      "          'less': 1,\n",
      "          'really': 1,\n",
      "          'bad': 1,\n",
      "          'looks': 1,\n",
      "          'trailer': 1,\n",
      "          'answer': 1,\n",
      "          'unequivocal': 1,\n",
      "          'name': 1,\n",
      "          'sweet': 1,\n",
      "          'jesus': 1,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'kinka': 1,\n",
      "          'usher': 1,\n",
      "          'firstrate': 1,\n",
      "          'cast': 1,\n",
      "          'act': 1,\n",
      "          'muck': 1,\n",
      "          'features': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'heavilysponsored': 1,\n",
      "          'captain': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'arch': 1,\n",
      "          'nemesis': 1,\n",
      "          'singular': 1,\n",
      "          'casanova': 1,\n",
      "          'na': 1,\n",
      "          'veritable': 1,\n",
      "          'police': 1,\n",
      "          'lineup': 1,\n",
      "          'hollywood': 1,\n",
      "          'talent': 1,\n",
      "          'plays': 1,\n",
      "          'superhero': 1,\n",
      "          'wannabes': 1,\n",
      "          'title': 1,\n",
      "          'join': 1,\n",
      "          'forces': 1,\n",
      "          'tight': 1,\n",
      "          'spot': 1,\n",
      "          'puts': 1,\n",
      "          'screws': 1,\n",
      "          'champion': 1,\n",
      "          'city': 1,\n",
      "          'ntheres': 1,\n",
      "          'william': 1,\n",
      "          'h': 1,\n",
      "          'macy': 1,\n",
      "          'mildmannered': 1,\n",
      "          'shoveler': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'cutleryflinging': 1,\n",
      "          'blue': 1,\n",
      "          'raja': 1,\n",
      "          'knives': 1,\n",
      "          'phony': 1,\n",
      "          'english': 1,\n",
      "          'accent': 1,\n",
      "          'sharp': 1,\n",
      "          'ben': 1,\n",
      "          'mr': 1,\n",
      "          'furious': 1,\n",
      "          'whose': 1,\n",
      "          'power': 1,\n",
      "          'seems': 1,\n",
      "          'ability': 1,\n",
      "          'collar': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'crazed': 1,\n",
      "          'bowler': 1,\n",
      "          'fathers': 1,\n",
      "          'skull': 1,\n",
      "          'interestingly': 1,\n",
      "          'preserved': 1,\n",
      "          'wes': 1,\n",
      "          'studi': 1,\n",
      "          'rhetoricspouting': 1,\n",
      "          'cowled': 1,\n",
      "          'avenger': 1,\n",
      "          'kel': 1,\n",
      "          'mitchell': 1,\n",
      "          'token': 1,\n",
      "          'adding': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'invisible': 1,\n",
      "          'nblack': 1,\n",
      "          'guy': 1,\n",
      "          'nbringing': 1,\n",
      "          'rear': 1,\n",
      "          'speak': 1,\n",
      "          'pee': 1,\n",
      "          'wee': 1,\n",
      "          'herman': 1,\n",
      "          'nwell': 1,\n",
      "          'lets': 1,\n",
      "          'call': 1,\n",
      "          'gas': 1,\n",
      "          'man': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'overblown': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'overdone': 1,\n",
      "          'script': 1,\n",
      "          'based': 1,\n",
      "          'bob': 1,\n",
      "          'burdens': 1,\n",
      "          'dark': 1,\n",
      "          'horse': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'series': 1,\n",
      "          'overbaked': 1,\n",
      "          'appealing': 1,\n",
      "          'actors': 1,\n",
      "          'uniformly': 1,\n",
      "          'good': 1,\n",
      "          'even': 1,\n",
      "          'stellar': 1,\n",
      "          'cant': 1,\n",
      "          'begin': 1,\n",
      "          'save': 1,\n",
      "          'one': 1,\n",
      "          'big': 1,\n",
      "          'mess': 1,\n",
      "          'nyoure': 1,\n",
      "          'better': 1,\n",
      "          'renting': 1,\n",
      "          'video': 1,\n",
      "          'pressing': 1,\n",
      "          'fastforward': 1,\n",
      "          'funny': 1,\n",
      "          'bits': 1,\n",
      "          'ni': 1,\n",
      "          'believe': 1,\n",
      "          'counted': 1,\n",
      "          'three': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'heartbreakers': 5,\n",
      "          'sex': 4,\n",
      "          'dean': 4,\n",
      "          'weaver': 4,\n",
      "          'max': 4,\n",
      "          'page': 4,\n",
      "          'minutes': 3,\n",
      "          'secretary': 3,\n",
      "          'new': 3,\n",
      "          'ni': 3,\n",
      "          'like': 3,\n",
      "          'hope': 3,\n",
      "          'made': 3,\n",
      "          'love': 3,\n",
      "          'liotta': 3,\n",
      "          'hewitt': 3,\n",
      "          'hackman': 3,\n",
      "          'smoking': 3,\n",
      "          'wanda': 3,\n",
      "          'nray': 2,\n",
      "          'office': 2,\n",
      "          'nwhile': 2,\n",
      "          'threes': 2,\n",
      "          'company': 2,\n",
      "          'next': 2,\n",
      "          'lingering': 2,\n",
      "          'shots': 2,\n",
      "          'young': 2,\n",
      "          'stuck': 2,\n",
      "          'bob': 2,\n",
      "          'breasts': 2,\n",
      "          'laughed': 2,\n",
      "          'n': 2,\n",
      "          'jennifer': 2,\n",
      "          'women': 2,\n",
      "          'nin': 2,\n",
      "          'jason': 2,\n",
      "          'lee': 2,\n",
      "          'bancroft': 2,\n",
      "          'nif': 2,\n",
      "          'two': 2,\n",
      "          'catches': 2,\n",
      "          'beach': 2,\n",
      "          'jack': 2,\n",
      "          'nas': 2,\n",
      "          'enough': 2,\n",
      "          'mind': 2,\n",
      "          'fish': 2,\n",
      "          'called': 2,\n",
      "          'done': 2,\n",
      "          'nothing': 2,\n",
      "          'merely': 2,\n",
      "          'bit': 2,\n",
      "          'low': 2,\n",
      "          'swirling': 1,\n",
      "          'sick': 1,\n",
      "          'feeling': 1,\n",
      "          'hit': 1,\n",
      "          'liottas': 1,\n",
      "          'character': 1,\n",
      "          'making': 1,\n",
      "          'wife': 1,\n",
      "          'knocked': 1,\n",
      "          'door': 1,\n",
      "          'scrambling': 1,\n",
      "          'collect': 1,\n",
      "          'frantically': 1,\n",
      "          'shouted': 1,\n",
      "          'wait': 1,\n",
      "          'er': 1,\n",
      "          'mean': 1,\n",
      "          'sec': 1,\n",
      "          'struck': 1,\n",
      "          'wave': 1,\n",
      "          'revulsion': 1,\n",
      "          'thinking': 1,\n",
      "          'geez': 1,\n",
      "          'didnt': 1,\n",
      "          'lines': 1,\n",
      "          'die': 1,\n",
      "          'canceled': 1,\n",
      "          'nover': 1,\n",
      "          'barely': 1,\n",
      "          'double': 1,\n",
      "          'entendres': 1,\n",
      "          'cleavage': 1,\n",
      "          'grew': 1,\n",
      "          'numerous': 1,\n",
      "          'realized': 1,\n",
      "          'mindset': 1,\n",
      "          'behind': 1,\n",
      "          'predated': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'outofbody': 1,\n",
      "          'experience': 1,\n",
      "          'internal': 1,\n",
      "          'wayback': 1,\n",
      "          'machine': 1,\n",
      "          'swept': 1,\n",
      "          'mid1960s': 1,\n",
      "          'nall': 1,\n",
      "          'across': 1,\n",
      "          'america': 1,\n",
      "          'counterculture': 1,\n",
      "          'growing': 1,\n",
      "          'wildfire': 1,\n",
      "          'scant': 1,\n",
      "          'evidence': 1,\n",
      "          'tv': 1,\n",
      "          'people': 1,\n",
      "          'challenging': 1,\n",
      "          'traditional': 1,\n",
      "          'values': 1,\n",
      "          'streets': 1,\n",
      "          'frustrated': 1,\n",
      "          'teenagers': 1,\n",
      "          'home': 1,\n",
      "          'sulking': 1,\n",
      "          'parents': 1,\n",
      "          'enjoyed': 1,\n",
      "          'latest': 1,\n",
      "          'special': 1,\n",
      "          'nwomen': 1,\n",
      "          'skimpy': 1,\n",
      "          'bathing': 1,\n",
      "          'suits': 1,\n",
      "          'would': 1,\n",
      "          'prance': 1,\n",
      "          'onscreen': 1,\n",
      "          'growling': 1,\n",
      "          'noises': 1,\n",
      "          'leered': 1,\n",
      "          'non': 1,\n",
      "          'another': 1,\n",
      "          'channel': 1,\n",
      "          'martin': 1,\n",
      "          'wisecracks': 1,\n",
      "          'booze': 1,\n",
      "          'broads': 1,\n",
      "          'peter': 1,\n",
      "          'lawford': 1,\n",
      "          'decked': 1,\n",
      "          'beads': 1,\n",
      "          'nehru': 1,\n",
      "          'jacket': 1,\n",
      "          'purred': 1,\n",
      "          'suggestive': 1,\n",
      "          'oneliners': 1,\n",
      "          'ogled': 1,\n",
      "          'gogo': 1,\n",
      "          'dancers': 1,\n",
      "          'adults': 1,\n",
      "          'reeks': 1,\n",
      "          'stagnant': 1,\n",
      "          'mentality': 1,\n",
      "          'hewitts': 1,\n",
      "          'vahvahvoom': 1,\n",
      "          'leaden': 1,\n",
      "          'screenplay': 1,\n",
      "          'paints': 1,\n",
      "          'haughty': 1,\n",
      "          'schemers': 1,\n",
      "          'men': 1,\n",
      "          'drooling': 1,\n",
      "          'buffoons': 1,\n",
      "          'sexobsessed': 1,\n",
      "          'realize': 1,\n",
      "          'manipulated': 1,\n",
      "          'addition': 1,\n",
      "          'cast': 1,\n",
      "          'includes': 1,\n",
      "          'sigourney': 1,\n",
      "          'gene': 1,\n",
      "          'nora': 1,\n",
      "          'dunn': 1,\n",
      "          'anne': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'drew': 1,\n",
      "          'performers': 1,\n",
      "          'caliber': 1,\n",
      "          'project': 1,\n",
      "          'nperhaps': 1,\n",
      "          'thought': 1,\n",
      "          'parody': 1,\n",
      "          'sniggering': 1,\n",
      "          'comedies': 1,\n",
      "          '60s': 1,\n",
      "          'sadly': 1,\n",
      "          'mistaken': 1,\n",
      "          'story': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'motherdaughter': 1,\n",
      "          'conteam': 1,\n",
      "          'nit': 1,\n",
      "          'opens': 1,\n",
      "          'marriage': 1,\n",
      "          'jersey': 1,\n",
      "          'chop': 1,\n",
      "          'shop': 1,\n",
      "          'operator': 1,\n",
      "          'nhaving': 1,\n",
      "          'withheld': 1,\n",
      "          'honeymoon': 1,\n",
      "          'pretends': 1,\n",
      "          'pass': 1,\n",
      "          'wedding': 1,\n",
      "          'night': 1,\n",
      "          'morning': 1,\n",
      "          'feigns': 1,\n",
      "          'illness': 1,\n",
      "          'sending': 1,\n",
      "          'horny': 1,\n",
      "          'ends': 1,\n",
      "          'arms': 1,\n",
      "          'njust': 1,\n",
      "          'get': 1,\n",
      "          'overtly': 1,\n",
      "          'physical': 1,\n",
      "          'bursts': 1,\n",
      "          'room': 1,\n",
      "          'horrified': 1,\n",
      "          'bride': 1,\n",
      "          'dissolves': 1,\n",
      "          'union': 1,\n",
      "          'garnering': 1,\n",
      "          'healthy': 1,\n",
      "          'cash': 1,\n",
      "          'settlement': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'really': 1,\n",
      "          'daughter': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'setup': 1,\n",
      "          'move': 1,\n",
      "          'irs': 1,\n",
      "          'agent': 1,\n",
      "          'demands': 1,\n",
      "          'huge': 1,\n",
      "          'amount': 1,\n",
      "          'money': 1,\n",
      "          'cover': 1,\n",
      "          'unpaid': 1,\n",
      "          'taxes': 1,\n",
      "          'desperate': 1,\n",
      "          'need': 1,\n",
      "          'funds': 1,\n",
      "          'head': 1,\n",
      "          'palm': 1,\n",
      "          'replay': 1,\n",
      "          'scam': 1,\n",
      "          'ntheir': 1,\n",
      "          'mark': 1,\n",
      "          'time': 1,\n",
      "          'william': 1,\n",
      "          'b': 1,\n",
      "          'tensy': 1,\n",
      "          'hideous': 1,\n",
      "          'makeup': 1,\n",
      "          'decrepit': 1,\n",
      "          'tobacco': 1,\n",
      "          'tycoon': 1,\n",
      "          'obsessed': 1,\n",
      "          'joys': 1,\n",
      "          'nmax': 1,\n",
      "          'starts': 1,\n",
      "          'put': 1,\n",
      "          'game': 1,\n",
      "          'action': 1,\n",
      "          'repelled': 1,\n",
      "          'old': 1,\n",
      "          'man': 1,\n",
      "          'angry': 1,\n",
      "          'mom': 1,\n",
      "          'slips': 1,\n",
      "          'enact': 1,\n",
      "          'score': 1,\n",
      "          'targeting': 1,\n",
      "          'laid': 1,\n",
      "          'back': 1,\n",
      "          'bar': 1,\n",
      "          'owner': 1,\n",
      "          'worth': 1,\n",
      "          'fortune': 1,\n",
      "          'ncomplications': 1,\n",
      "          'arise': 1,\n",
      "          'realizes': 1,\n",
      "          'goodnatured': 1,\n",
      "          'stirring': 1,\n",
      "          'actual': 1,\n",
      "          'emotions': 1,\n",
      "          'steely': 1,\n",
      "          'little': 1,\n",
      "          'heart': 1,\n",
      "          'wasnt': 1,\n",
      "          'reappears': 1,\n",
      "          'scene': 1,\n",
      "          'revenge': 1,\n",
      "          'attempt': 1,\n",
      "          'weld': 1,\n",
      "          'romance': 1,\n",
      "          'onto': 1,\n",
      "          'caper': 1,\n",
      "          'comedy': 1,\n",
      "          'served': 1,\n",
      "          'remind': 1,\n",
      "          'infinitely': 1,\n",
      "          'superior': 1,\n",
      "          'wont': 1,\n",
      "          'bother': 1,\n",
      "          'compare': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'everything': 1,\n",
      "          'right': 1,\n",
      "          'wrong': 1,\n",
      "          'soulless': 1,\n",
      "          'inept': 1,\n",
      "          '123': 1,\n",
      "          'least': 1,\n",
      "          'halfhour': 1,\n",
      "          'long': 1,\n",
      "          'nsigourney': 1,\n",
      "          'throw': 1,\n",
      "          'parts': 1,\n",
      "          'nowhere': 1,\n",
      "          'go': 1,\n",
      "          'metallic': 1,\n",
      "          'characters': 1,\n",
      "          'ngene': 1,\n",
      "          'utterly': 1,\n",
      "          'wasted': 1,\n",
      "          'onenote': 1,\n",
      "          'onejoke': 1,\n",
      "          'part': 1,\n",
      "          'coughing': 1,\n",
      "          'waxing': 1,\n",
      "          'rhapsodic': 1,\n",
      "          'npoor': 1,\n",
      "          'ingenue': 1,\n",
      "          'role': 1,\n",
      "          'normally': 1,\n",
      "          'charismatic': 1,\n",
      "          'actor': 1,\n",
      "          'comes': 1,\n",
      "          'bland': 1,\n",
      "          'manages': 1,\n",
      "          'squeeze': 1,\n",
      "          'tiny': 1,\n",
      "          'humanity': 1,\n",
      "          'humor': 1,\n",
      "          'walking': 1,\n",
      "          'clich': 1,\n",
      "          'point': 1,\n",
      "          'film': 1,\n",
      "          'employing': 1,\n",
      "          'russian': 1,\n",
      "          'accent': 1,\n",
      "          'bad': 1,\n",
      "          'make': 1,\n",
      "          'boris': 1,\n",
      "          'natasha': 1,\n",
      "          'wince': 1,\n",
      "          'halfassed': 1,\n",
      "          'slapstick': 1,\n",
      "          'broken': 1,\n",
      "          'penis': 1,\n",
      "          'statue': 1,\n",
      "          'nbear': 1,\n",
      "          'though': 1,\n",
      "          'worst': 1,\n",
      "          'segment': 1,\n",
      "          'movie': 1,\n",
      "          'points': 1,\n",
      "          'remember': 1,\n",
      "          'specials': 1,\n",
      "          'fondness': 1,\n",
      "          'might': 1,\n",
      "          'cup': 1,\n",
      "          'tea': 1,\n",
      "          'im': 1,\n",
      "          'going': 1,\n",
      "          'watch': 1,\n",
      "          'try': 1,\n",
      "          'forget': 1,\n",
      "          'ever': 1,\n",
      "          'saw': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'comedy': 4,\n",
      "          'like': 3,\n",
      "          'romantic': 3,\n",
      "          'biggs': 2,\n",
      "          'suvari': 2,\n",
      "          'looking': 2,\n",
      "          'paul': 2,\n",
      "          'characters': 2,\n",
      "          'nif': 2,\n",
      "          'funny': 2,\n",
      "          'youve': 2,\n",
      "          'seen': 2,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'alums': 1,\n",
      "          'jason': 1,\n",
      "          'mena': 1,\n",
      "          'star': 1,\n",
      "          'summers': 1,\n",
      "          'attempt': 1,\n",
      "          'capitalize': 1,\n",
      "          'youth': 1,\n",
      "          'market': 1,\n",
      "          'young': 1,\n",
      "          'people': 1,\n",
      "          'relate': 1,\n",
      "          'combines': 1,\n",
      "          'generic': 1,\n",
      "          'hollywood': 1,\n",
      "          'cute': 1,\n",
      "          'coupleness': 1,\n",
      "          'zany': 1,\n",
      "          'nits': 1,\n",
      "          'student': 1,\n",
      "          'gets': 1,\n",
      "          'scholarship': 1,\n",
      "          'college': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'sticks': 1,\n",
      "          'sore': 1,\n",
      "          'thumb': 1,\n",
      "          'falls': 1,\n",
      "          'dora': 1,\n",
      "          'ditzy': 1,\n",
      "          'heroinchic': 1,\n",
      "          'goth': 1,\n",
      "          'chick': 1,\n",
      "          'ambition': 1,\n",
      "          'selfrespect': 1,\n",
      "          'whatsoever': 1,\n",
      "          'allows': 1,\n",
      "          'pushed': 1,\n",
      "          'around': 1,\n",
      "          'hickboy': 1,\n",
      "          'nso': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'fishoutwater': 1,\n",
      "          'formula': 1,\n",
      "          'mixed': 1,\n",
      "          'meetcute': 1,\n",
      "          'ideally': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'movie': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'atrocious': 1,\n",
      "          'screenplay': 1,\n",
      "          'boring': 1,\n",
      "          'direction': 1,\n",
      "          'clueless': 1,\n",
      "          'auteur': 1,\n",
      "          'amy': 1,\n",
      "          'heckerling': 1,\n",
      "          'successfully': 1,\n",
      "          'manages': 1,\n",
      "          'screw': 1,\n",
      "          'everything': 1,\n",
      "          'film': 1,\n",
      "          'nthese': 1,\n",
      "          'totally': 1,\n",
      "          'unrealistic': 1,\n",
      "          'unbelievable': 1,\n",
      "          'everyone': 1,\n",
      "          'age': 1,\n",
      "          '30': 1,\n",
      "          'stoned': 1,\n",
      "          'raver': 1,\n",
      "          'ntheres': 1,\n",
      "          'background': 1,\n",
      "          'details': 1,\n",
      "          'anyone': 1,\n",
      "          'anything': 1,\n",
      "          'bunch': 1,\n",
      "          'cartoon': 1,\n",
      "          'running': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'story': 1,\n",
      "          'virtually': 1,\n",
      "          'nonexistant': 1,\n",
      "          'contains': 1,\n",
      "          'many': 1,\n",
      "          'plotholes': 1,\n",
      "          'swiss': 1,\n",
      "          'cheese': 1,\n",
      "          'neven': 1,\n",
      "          'basic': 1,\n",
      "          'editing': 1,\n",
      "          'bad': 1,\n",
      "          'youre': 1,\n",
      "          'stay': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'one': 1,\n",
      "          'neither': 1,\n",
      "          'ni': 1,\n",
      "          'saw': 1,\n",
      "          'packed': 1,\n",
      "          'cinema': 1,\n",
      "          'opening': 1,\n",
      "          'night': 1,\n",
      "          'audience': 1,\n",
      "          'barely': 1,\n",
      "          'laughed': 1,\n",
      "          'commericials': 1,\n",
      "          'parts': 1,\n",
      "          'first': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wild': 11,\n",
      "          'west': 10,\n",
      "          'smith': 5,\n",
      "          'one': 5,\n",
      "          'summer': 4,\n",
      "          'film': 4,\n",
      "          'nbut': 4,\n",
      "          'effects': 4,\n",
      "          'nthe': 4,\n",
      "          'ni': 3,\n",
      "          'go': 3,\n",
      "          'nwild': 3,\n",
      "          'plot': 3,\n",
      "          'movie': 3,\n",
      "          'casting': 3,\n",
      "          'actor': 3,\n",
      "          'role': 3,\n",
      "          'little': 3,\n",
      "          'hit': 2,\n",
      "          'enormous': 2,\n",
      "          'huge': 2,\n",
      "          'robert': 2,\n",
      "          'conrad': 2,\n",
      "          'director': 2,\n",
      "          'make': 2,\n",
      "          'kevin': 2,\n",
      "          'kline': 2,\n",
      "          'special': 2,\n",
      "          'could': 2,\n",
      "          'possibly': 2,\n",
      "          'never': 2,\n",
      "          'chance': 2,\n",
      "          'lot': 2,\n",
      "          'entire': 2,\n",
      "          'technical': 2,\n",
      "          'release': 2,\n",
      "          'usually': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'government': 2,\n",
      "          'gordon': 2,\n",
      "          'even': 2,\n",
      "          'highly': 2,\n",
      "          'last': 1,\n",
      "          'featurelength': 1,\n",
      "          'version': 1,\n",
      "          'avengers': 1,\n",
      "          'theaters': 1,\n",
      "          'tune': 1,\n",
      "          'unanimous': 1,\n",
      "          'critical': 1,\n",
      "          'panning': 1,\n",
      "          'nbased': 1,\n",
      "          'famous': 1,\n",
      "          '60s': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'boxoffice': 1,\n",
      "          'flop': 1,\n",
      "          'disappointment': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'year': 1,\n",
      "          'later': 1,\n",
      "          'studio': 1,\n",
      "          'old': 1,\n",
      "          'tricks': 1,\n",
      "          'unnecessary': 1,\n",
      "          'revival': 1,\n",
      "          'program': 1,\n",
      "          'sounded': 1,\n",
      "          'promising': 1,\n",
      "          'tagteam': 1,\n",
      "          'star': 1,\n",
      "          'barry': 1,\n",
      "          'sonnenfeld': 1,\n",
      "          'contributed': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'financial': 1,\n",
      "          'success': 1,\n",
      "          'reins': 1,\n",
      "          'nand': 1,\n",
      "          'costar': 1,\n",
      "          'attached': 1,\n",
      "          'project': 1,\n",
      "          'well': 1,\n",
      "          'substantial': 1,\n",
      "          'budget': 1,\n",
      "          'spice': 1,\n",
      "          'mean': 1,\n",
      "          'wrong': 1,\n",
      "          'answer': 1,\n",
      "          'everything': 1,\n",
      "          'cinematic': 1,\n",
      "          'abomination': 1,\n",
      "          'entirely': 1,\n",
      "          'pointless': 1,\n",
      "          'begin': 1,\n",
      "          'given': 1,\n",
      "          'proper': 1,\n",
      "          'get': 1,\n",
      "          'gate': 1,\n",
      "          'nthere': 1,\n",
      "          'fancy': 1,\n",
      "          'handful': 1,\n",
      "          'distinguished': 1,\n",
      "          'actors': 1,\n",
      "          'try': 1,\n",
      "          'desperately': 1,\n",
      "          'tunnel': 1,\n",
      "          'inane': 1,\n",
      "          'lasting': 1,\n",
      "          'impression': 1,\n",
      "          'script': 1,\n",
      "          'deliriously': 1,\n",
      "          'uneven': 1,\n",
      "          'course': 1,\n",
      "          'human': 1,\n",
      "          'achievement': 1,\n",
      "          'salvage': 1,\n",
      "          'nat': 1,\n",
      "          'square': 1,\n",
      "          'bizarre': 1,\n",
      "          'case': 1,\n",
      "          'nwill': 1,\n",
      "          'plays': 1,\n",
      "          'james': 1,\n",
      "          'renegade': 1,\n",
      "          'cowboy': 1,\n",
      "          'originally': 1,\n",
      "          'played': 1,\n",
      "          'white': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'nmy': 1,\n",
      "          'guess': 1,\n",
      "          'regarding': 1,\n",
      "          'africanamerican': 1,\n",
      "          'simple': 1,\n",
      "          'cozy': 1,\n",
      "          'summertime': 1,\n",
      "          'big': 1,\n",
      "          'bucks': 1,\n",
      "          'involved': 1,\n",
      "          'nsmith': 1,\n",
      "          'talented': 1,\n",
      "          'performer': 1,\n",
      "          'brings': 1,\n",
      "          'swift': 1,\n",
      "          'assurance': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'material': 1,\n",
      "          'ideal': 1,\n",
      "          'nhes': 1,\n",
      "          'much': 1,\n",
      "          'joker': 1,\n",
      "          'heard': 1,\n",
      "          'initial': 1,\n",
      "          'included': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'lead': 1,\n",
      "          'frankly': 1,\n",
      "          'sounds': 1,\n",
      "          'plausible': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'goes': 1,\n",
      "          'selfassurance': 1,\n",
      "          'eyes': 1,\n",
      "          'practically': 1,\n",
      "          'sense': 1,\n",
      "          'contentment': 1,\n",
      "          'fact': 1,\n",
      "          'knows': 1,\n",
      "          'involves': 1,\n",
      "          'crossdressing': 1,\n",
      "          'agent': 1,\n",
      "          'artemus': 1,\n",
      "          'assigned': 1,\n",
      "          'president': 1,\n",
      "          'recover': 1,\n",
      "          'group': 1,\n",
      "          'kidnapped': 1,\n",
      "          'scientists': 1,\n",
      "          'trail': 1,\n",
      "          'leads': 1,\n",
      "          'diabolical': 1,\n",
      "          'dr': 1,\n",
      "          'arliss': 1,\n",
      "          'loveless': 1,\n",
      "          'kenneth': 1,\n",
      "          'branagh': 1,\n",
      "          'man': 1,\n",
      "          'lower': 1,\n",
      "          'body': 1,\n",
      "          'speaks': 1,\n",
      "          'dry': 1,\n",
      "          'witty': 1,\n",
      "          'southern': 1,\n",
      "          'accent': 1,\n",
      "          'nloveless': 1,\n",
      "          'taken': 1,\n",
      "          'countrys': 1,\n",
      "          'top': 1,\n",
      "          'minds': 1,\n",
      "          'hostage': 1,\n",
      "          'assist': 1,\n",
      "          'deranged': 1,\n",
      "          'plan': 1,\n",
      "          'total': 1,\n",
      "          'control': 1,\n",
      "          'using': 1,\n",
      "          'lethal': 1,\n",
      "          'superweapons': 1,\n",
      "          'destroy': 1,\n",
      "          'towns': 1,\n",
      "          'none': 1,\n",
      "          'weapon': 1,\n",
      "          '80foot': 1,\n",
      "          'mechanical': 1,\n",
      "          'tarantula': 1,\n",
      "          'bearing': 1,\n",
      "          'eight': 1,\n",
      "          'spindly': 1,\n",
      "          'legs': 1,\n",
      "          'thrashing': 1,\n",
      "          'metal': 1,\n",
      "          'spewing': 1,\n",
      "          'fireballs': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'visual': 1,\n",
      "          'bring': 1,\n",
      "          'metallic': 1,\n",
      "          'bug': 1,\n",
      "          'life': 1,\n",
      "          'spectacular': 1,\n",
      "          'seamlessly': 1,\n",
      "          'blending': 1,\n",
      "          'computergenerated': 1,\n",
      "          'imagery': 1,\n",
      "          'western': 1,\n",
      "          'surroundings': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'seem': 1,\n",
      "          'detached': 1,\n",
      "          'story': 1,\n",
      "          'support': 1,\n",
      "          'films': 1,\n",
      "          'deficiencies': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'truly': 1,\n",
      "          'works': 1,\n",
      "          'nmost': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'jokes': 1,\n",
      "          'care': 1,\n",
      "          'die': 1,\n",
      "          'arrival': 1,\n",
      "          'nif': 1,\n",
      "          'thing': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'performances': 1,\n",
      "          'mostly': 1,\n",
      "          'offkilter': 1,\n",
      "          'poorly': 1,\n",
      "          'delivered': 1,\n",
      "          'nkline': 1,\n",
      "          'admirable': 1,\n",
      "          'invent': 1,\n",
      "          'silly': 1,\n",
      "          'devices': 1,\n",
      "          'spot': 1,\n",
      "          'nsalma': 1,\n",
      "          'hayek': 1,\n",
      "          'wasted': 1,\n",
      "          'romantic': 1,\n",
      "          'interest': 1,\n",
      "          'viewed': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'look': 1,\n",
      "          'pretty': 1,\n",
      "          'create': 1,\n",
      "          'conflict': 1,\n",
      "          'nbranagh': 1,\n",
      "          'esteemed': 1,\n",
      "          'shakespearean': 1,\n",
      "          'adds': 1,\n",
      "          'marginal': 1,\n",
      "          'enjoyment': 1,\n",
      "          'utterly': 1,\n",
      "          'weird': 1,\n",
      "          'overthetop': 1,\n",
      "          'nrarely': 1,\n",
      "          'lost': 1,\n",
      "          'suppose': 1,\n",
      "          'theres': 1,\n",
      "          'always': 1,\n",
      "          'turkey': 1,\n",
      "          'season': 1,\n",
      "          'anticipated': 1,\n",
      "          'bigbudget': 1,\n",
      "          'manages': 1,\n",
      "          'completely': 1,\n",
      "          'disappoint': 1,\n",
      "          'probably': 1,\n",
      "          'biggest': 1,\n",
      "          'disappointments': 1,\n",
      "          '1999': 1,\n",
      "          'unlikely': 1,\n",
      "          'defeat': 1,\n",
      "          'nperhaps': 1,\n",
      "          'audiences': 1,\n",
      "          'less': 1,\n",
      "          'assured': 1,\n",
      "          'see': 1,\n",
      "          'smiths': 1,\n",
      "          'name': 1,\n",
      "          'stamped': 1,\n",
      "          'nafter': 1,\n",
      "          'hits': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'mib': 1,\n",
      "          'impressive': 1,\n",
      "          'addition': 1,\n",
      "          'resume': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gabriel': 8,\n",
      "          'swordfish': 3,\n",
      "          'nswordfish': 3,\n",
      "          'nand': 3,\n",
      "          'government': 3,\n",
      "          'movie': 3,\n",
      "          'nthe': 3,\n",
      "          'enough': 3,\n",
      "          'stanley': 3,\n",
      "          'computer': 3,\n",
      "          'daughter': 3,\n",
      "          'one': 3,\n",
      "          'nhis': 3,\n",
      "          'travoltas': 2,\n",
      "          'nit': 2,\n",
      "          'billions': 2,\n",
      "          'terrorists': 2,\n",
      "          'movies': 2,\n",
      "          'see': 2,\n",
      "          'nthis': 2,\n",
      "          'hacker': 2,\n",
      "          'many': 2,\n",
      "          'time': 2,\n",
      "          'little': 2,\n",
      "          'films': 2,\n",
      "          'involving': 2,\n",
      "          'gabriels': 2,\n",
      "          'head': 2,\n",
      "          'real': 2,\n",
      "          'make': 2,\n",
      "          'character': 2,\n",
      "          'hero': 2,\n",
      "          'outset': 1,\n",
      "          'john': 1,\n",
      "          'shear': 1,\n",
      "          'pontificating': 1,\n",
      "          'status': 1,\n",
      "          'american': 1,\n",
      "          'cinema': 1,\n",
      "          'today': 1,\n",
      "          'nbasically': 1,\n",
      "          'says': 1,\n",
      "          'boils': 1,\n",
      "          'lack': 1,\n",
      "          'imagination': 1,\n",
      "          'among': 1,\n",
      "          'majority': 1,\n",
      "          'writers': 1,\n",
      "          'nhow': 1,\n",
      "          'ironic': 1,\n",
      "          'travolta': 1,\n",
      "          'seems': 1,\n",
      "          'describing': 1,\n",
      "          'latest': 1,\n",
      "          'venture': 1,\n",
      "          'loud': 1,\n",
      "          'violent': 1,\n",
      "          'amoral': 1,\n",
      "          'audacity': 1,\n",
      "          'justify': 1,\n",
      "          'murder': 1,\n",
      "          'mayhem': 1,\n",
      "          'name': 1,\n",
      "          'sustaining': 1,\n",
      "          'way': 1,\n",
      "          'life': 1,\n",
      "          'plan': 1,\n",
      "          'nby': 1,\n",
      "          'robbing': 1,\n",
      "          'using': 1,\n",
      "          'funds': 1,\n",
      "          'outterrorize': 1,\n",
      "          'cynical': 1,\n",
      "          'relies': 1,\n",
      "          'audiences': 1,\n",
      "          'perception': 1,\n",
      "          'leaders': 1,\n",
      "          'ineffectual': 1,\n",
      "          'duplicitous': 1,\n",
      "          'nonhuman': 1,\n",
      "          'faceless': 1,\n",
      "          'entities': 1,\n",
      "          'worthy': 1,\n",
      "          'compassion': 1,\n",
      "          'consideration': 1,\n",
      "          'plot': 1,\n",
      "          'preposterous': 1,\n",
      "          'illogical': 1,\n",
      "          'leaps': 1,\n",
      "          'film': 1,\n",
      "          'ever': 1,\n",
      "          'slowed': 1,\n",
      "          'youd': 1,\n",
      "          'actually': 1,\n",
      "          'ridiculous': 1,\n",
      "          'liveaction': 1,\n",
      "          'road': 1,\n",
      "          'runner': 1,\n",
      "          'cartoon': 1,\n",
      "          'moving': 1,\n",
      "          'quickly': 1,\n",
      "          'catch': 1,\n",
      "          'breath': 1,\n",
      "          'ask': 1,\n",
      "          'reasonable': 1,\n",
      "          'questions': 1,\n",
      "          'storyline': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'super': 1,\n",
      "          'jobson': 1,\n",
      "          'hugh': 1,\n",
      "          'jackman': 1,\n",
      "          'recruited': 1,\n",
      "          'crack': 1,\n",
      "          'governments': 1,\n",
      "          'codes': 1,\n",
      "          'gather': 1,\n",
      "          'antiterrorist': 1,\n",
      "          'campaign': 1,\n",
      "          'ntalk': 1,\n",
      "          'whackedout': 1,\n",
      "          'patriotism': 1,\n",
      "          'nmy': 1,\n",
      "          'objections': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'high': 1,\n",
      "          'expected': 1,\n",
      "          'sort': 1,\n",
      "          'nits': 1,\n",
      "          'becoming': 1,\n",
      "          'bore': 1,\n",
      "          'watching': 1,\n",
      "          'anonymous': 1,\n",
      "          'soldiers': 1,\n",
      "          'police': 1,\n",
      "          'officers': 1,\n",
      "          'agents': 1,\n",
      "          'blown': 1,\n",
      "          'bits': 1,\n",
      "          'nanother': 1,\n",
      "          'example': 1,\n",
      "          'family': 1,\n",
      "          'dynamics': 1,\n",
      "          '10yearold': 1,\n",
      "          'exwife': 1,\n",
      "          'nstanley': 1,\n",
      "          'though': 1,\n",
      "          'served': 1,\n",
      "          'prison': 1,\n",
      "          'hacking': 1,\n",
      "          'shown': 1,\n",
      "          'loving': 1,\n",
      "          'caring': 1,\n",
      "          'father': 1,\n",
      "          'forbidden': 1,\n",
      "          'ex': 1,\n",
      "          'girl': 1,\n",
      "          'naudience': 1,\n",
      "          'animosity': 1,\n",
      "          'immediately': 1,\n",
      "          'created': 1,\n",
      "          'former': 1,\n",
      "          'spouse': 1,\n",
      "          'showing': 1,\n",
      "          'drinker': 1,\n",
      "          'smoker': 1,\n",
      "          'also': 1,\n",
      "          'sometimes': 1,\n",
      "          'stars': 1,\n",
      "          'new': 1,\n",
      "          'husbands': 1,\n",
      "          'adult': 1,\n",
      "          'nthus': 1,\n",
      "          'found': 1,\n",
      "          'murdered': 1,\n",
      "          'late': 1,\n",
      "          'neither': 1,\n",
      "          'allowed': 1,\n",
      "          'grieve': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'subconsciously': 1,\n",
      "          'audience': 1,\n",
      "          'probably': 1,\n",
      "          'glad': 1,\n",
      "          'killed': 1,\n",
      "          'nthen': 1,\n",
      "          'sequence': 1,\n",
      "          'henchman': 1,\n",
      "          'holding': 1,\n",
      "          'gun': 1,\n",
      "          'stanleys': 1,\n",
      "          'coerce': 1,\n",
      "          'download': 1,\n",
      "          'key': 1,\n",
      "          'program': 1,\n",
      "          'nchildren': 1,\n",
      "          'pawns': 1,\n",
      "          'become': 1,\n",
      "          'unwelcome': 1,\n",
      "          'clich': 1,\n",
      "          'recent': 1,\n",
      "          'nthere': 1,\n",
      "          'violence': 1,\n",
      "          'world': 1,\n",
      "          'children': 1,\n",
      "          'without': 1,\n",
      "          'onscreen': 1,\n",
      "          'victims': 1,\n",
      "          'well': 1,\n",
      "          'nyea': 1,\n",
      "          'believe': 1,\n",
      "          'doesnt': 1,\n",
      "          'mean': 1,\n",
      "          'tolerate': 1,\n",
      "          'ntravolta': 1,\n",
      "          'cool': 1,\n",
      "          'deadly': 1,\n",
      "          'charming': 1,\n",
      "          'flamboyant': 1,\n",
      "          'nearcrazy': 1,\n",
      "          'reminiscent': 1,\n",
      "          'villainous': 1,\n",
      "          'characterizations': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'faceoff': 1,\n",
      "          'njackman': 1,\n",
      "          'looks': 1,\n",
      "          'dour': 1,\n",
      "          'proceedings': 1,\n",
      "          'moment': 1,\n",
      "          'depth': 1,\n",
      "          'comes': 1,\n",
      "          'finally': 1,\n",
      "          'able': 1,\n",
      "          'create': 1,\n",
      "          'worm': 1,\n",
      "          'get': 1,\n",
      "          'inside': 1,\n",
      "          'database': 1,\n",
      "          'sense': 1,\n",
      "          'joy': 1,\n",
      "          'accomplishment': 1,\n",
      "          'whiz': 1,\n",
      "          'appreciate': 1,\n",
      "          'nhalle': 1,\n",
      "          'berry': 1,\n",
      "          'decorative': 1,\n",
      "          'lovely': 1,\n",
      "          'assistant': 1,\n",
      "          'cheadle': 1,\n",
      "          'given': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'hunting': 1,\n",
      "          'plays': 1,\n",
      "          'like': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'nviewers': 1,\n",
      "          'align': 1,\n",
      "          'despite': 1,\n",
      "          'uncertainty': 1,\n",
      "          'villain': 1,\n",
      "          'maybe': 1,\n",
      "          'underlying': 1,\n",
      "          'flaw': 1,\n",
      "          'speak': 1,\n",
      "          'upmost': 1,\n",
      "          'survive': 1,\n",
      "          'thrown': 1,\n",
      "          'back': 1,\n",
      "          'water': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cell': 9,\n",
      "          'mind': 7,\n",
      "          'carls': 7,\n",
      "          'nthe': 6,\n",
      "          'catharine': 5,\n",
      "          'horse': 4,\n",
      "          'lopez': 3,\n",
      "          'killer': 3,\n",
      "          'carl': 3,\n",
      "          'glass': 3,\n",
      "          'video': 3,\n",
      "          'peter': 3,\n",
      "          'seems': 3,\n",
      "          'could': 3,\n",
      "          'popular': 2,\n",
      "          'virtual': 2,\n",
      "          'reality': 2,\n",
      "          'genre': 2,\n",
      "          'movie': 2,\n",
      "          'boy': 2,\n",
      "          'surreal': 2,\n",
      "          'another': 2,\n",
      "          'keep': 2,\n",
      "          'drowning': 2,\n",
      "          'fast': 2,\n",
      "          'videos': 2,\n",
      "          'find': 2,\n",
      "          'go': 2,\n",
      "          'time': 2,\n",
      "          'universe': 2,\n",
      "          'computergenerated': 2,\n",
      "          'well': 2,\n",
      "          'really': 2,\n",
      "          'promise': 2,\n",
      "          'room': 2,\n",
      "          'developed': 2,\n",
      "          'one': 2,\n",
      "          'catharines': 2,\n",
      "          'probably': 1,\n",
      "          'inevitable': 1,\n",
      "          'matrix': 1,\n",
      "          'existenz': 1,\n",
      "          'would': 1,\n",
      "          'collide': 1,\n",
      "          'even': 1,\n",
      "          'serialkiller': 1,\n",
      "          'kiss': 1,\n",
      "          'girls': 1,\n",
      "          'se7en': 1,\n",
      "          'result': 1,\n",
      "          'interesting': 1,\n",
      "          'nas': 1,\n",
      "          'opens': 1,\n",
      "          'therapist': 1,\n",
      "          'deane': 1,\n",
      "          'jennifer': 1,\n",
      "          'treats': 1,\n",
      "          'catatonic': 1,\n",
      "          'colton': 1,\n",
      "          'james': 1,\n",
      "          'entering': 1,\n",
      "          'sort': 1,\n",
      "          'technique': 1,\n",
      "          'thats': 1,\n",
      "          'never': 1,\n",
      "          'fully': 1,\n",
      "          'explained': 1,\n",
      "          'nafter': 1,\n",
      "          'months': 1,\n",
      "          'therapy': 1,\n",
      "          'sessions': 1,\n",
      "          'desert': 1,\n",
      "          'success': 1,\n",
      "          'report': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'stargher': 1,\n",
      "          'vincent': 1,\n",
      "          'donofrio': 1,\n",
      "          'claimed': 1,\n",
      "          'victim': 1,\n",
      "          'nhis': 1,\n",
      "          'particular': 1,\n",
      "          'hobby': 1,\n",
      "          'kidnap': 1,\n",
      "          'young': 1,\n",
      "          'women': 1,\n",
      "          'overnight': 1,\n",
      "          'drown': 1,\n",
      "          'nhe': 1,\n",
      "          'takes': 1,\n",
      "          'corpse': 1,\n",
      "          'soaks': 1,\n",
      "          'bleach': 1,\n",
      "          'suspends': 1,\n",
      "          'body': 1,\n",
      "          'jerks': 1,\n",
      "          'watching': 1,\n",
      "          'tape': 1,\n",
      "          'nalthough': 1,\n",
      "          'awhile': 1,\n",
      "          'hes': 1,\n",
      "          'recently': 1,\n",
      "          'become': 1,\n",
      "          'sloppy': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'novak': 1,\n",
      "          'vince': 1,\n",
      "          'vaughn': 1,\n",
      "          'closing': 1,\n",
      "          'nnot': 1,\n",
      "          'enough': 1,\n",
      "          'though': 1,\n",
      "          'sticking': 1,\n",
      "          'woman': 1,\n",
      "          'tara': 1,\n",
      "          'subkoff': 1,\n",
      "          'catch': 1,\n",
      "          'suffers': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'attack': 1,\n",
      "          'leaves': 1,\n",
      "          'coma': 1,\n",
      "          'nfrom': 1,\n",
      "          'house': 1,\n",
      "          'see': 1,\n",
      "          'automated': 1,\n",
      "          'fill': 1,\n",
      "          'water': 1,\n",
      "          'forty': 1,\n",
      "          'hours': 1,\n",
      "          'abduction': 1,\n",
      "          'nto': 1,\n",
      "          'save': 1,\n",
      "          'kidnapped': 1,\n",
      "          'girl': 1,\n",
      "          'end': 1,\n",
      "          'day': 1,\n",
      "          'comatose': 1,\n",
      "          'talking': 1,\n",
      "          'nso': 1,\n",
      "          'hope': 1,\n",
      "          'inside': 1,\n",
      "          'focus': 1,\n",
      "          'ornate': 1,\n",
      "          'interior': 1,\n",
      "          'director': 1,\n",
      "          'tarsem': 1,\n",
      "          'singh': 1,\n",
      "          'creates': 1,\n",
      "          'exercise': 1,\n",
      "          'spectacle': 1,\n",
      "          'exploration': 1,\n",
      "          'psychotic': 1,\n",
      "          'personality': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'style': 1,\n",
      "          'without': 1,\n",
      "          'substance': 1,\n",
      "          'nin': 1,\n",
      "          'decadent': 1,\n",
      "          'emperor': 1,\n",
      "          'flowing': 1,\n",
      "          'robes': 1,\n",
      "          'ming': 1,\n",
      "          'merciless': 1,\n",
      "          'frightened': 1,\n",
      "          'jake': 1,\n",
      "          'thomas': 1,\n",
      "          'abused': 1,\n",
      "          'father': 1,\n",
      "          'nall': 1,\n",
      "          'psycho': 1,\n",
      "          'turns': 1,\n",
      "          'strangely': 1,\n",
      "          'dull': 1,\n",
      "          'place': 1,\n",
      "          'kept': 1,\n",
      "          'wishing': 1,\n",
      "          'fastforward': 1,\n",
      "          'next': 1,\n",
      "          'development': 1,\n",
      "          'nsingh': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'directing': 1,\n",
      "          'music': 1,\n",
      "          'particularly': 1,\n",
      "          'rems': 1,\n",
      "          'losing': 1,\n",
      "          'religion': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'long': 1,\n",
      "          'slow': 1,\n",
      "          'mtv': 1,\n",
      "          'sound': 1,\n",
      "          'deleted': 1,\n",
      "          'nsinger': 1,\n",
      "          'think': 1,\n",
      "          'shes': 1,\n",
      "          'devotes': 1,\n",
      "          'posing': 1,\n",
      "          'elaborate': 1,\n",
      "          'costumes': 1,\n",
      "          'acting': 1,\n",
      "          'premise': 1,\n",
      "          'great': 1,\n",
      "          'world': 1,\n",
      "          'within': 1,\n",
      "          'bizarre': 1,\n",
      "          'governed': 1,\n",
      "          'insanity': 1,\n",
      "          'symbolism': 1,\n",
      "          'rather': 1,\n",
      "          'logic': 1,\n",
      "          'first': 1,\n",
      "          'enters': 1,\n",
      "          'head': 1,\n",
      "          'shows': 1,\n",
      "          'nshe': 1,\n",
      "          'finds': 1,\n",
      "          'standing': 1,\n",
      "          'center': 1,\n",
      "          'suddenly': 1,\n",
      "          'sheets': 1,\n",
      "          'sharpedged': 1,\n",
      "          'fall': 1,\n",
      "          'dividing': 1,\n",
      "          'segments': 1,\n",
      "          'panes': 1,\n",
      "          'separate': 1,\n",
      "          'pulling': 1,\n",
      "          'apart': 1,\n",
      "          'pieces': 1,\n",
      "          'stillliving': 1,\n",
      "          'nthis': 1,\n",
      "          'scene': 1,\n",
      "          'twisted': 1,\n",
      "          'disturbing': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'psychological': 1,\n",
      "          'importance': 1,\n",
      "          'fate': 1,\n",
      "          'left': 1,\n",
      "          'viewer': 1,\n",
      "          'ponder': 1,\n",
      "          'nanother': 1,\n",
      "          'element': 1,\n",
      "          'effect': 1,\n",
      "          'merging': 1,\n",
      "          'psychopath': 1,\n",
      "          'ntheir': 1,\n",
      "          'minds': 1,\n",
      "          'begin': 1,\n",
      "          'bleed': 1,\n",
      "          'together': 1,\n",
      "          'point': 1,\n",
      "          'provided': 1,\n",
      "          'opportunity': 1,\n",
      "          'discover': 1,\n",
      "          'dark': 1,\n",
      "          'corners': 1,\n",
      "          'psyche': 1,\n",
      "          'nlike': 1,\n",
      "          'sidney': 1,\n",
      "          'lumets': 1,\n",
      "          'offence': 1,\n",
      "          'michael': 1,\n",
      "          'manns': 1,\n",
      "          'manhunter': 1,\n",
      "          'explored': 1,\n",
      "          'madness': 1,\n",
      "          'brings': 1,\n",
      "          'repressed': 1,\n",
      "          'darkness': 1,\n",
      "          'investigator': 1,\n",
      "          'nhowever': 1,\n",
      "          'character': 1,\n",
      "          'hardly': 1,\n",
      "          'depth': 1,\n",
      "          'offer': 1,\n",
      "          'role': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'trapped': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'nit': 5,\n",
      "          'movie': 4,\n",
      "          'nentrapment': 4,\n",
      "          'millennium': 3,\n",
      "          'connery': 3,\n",
      "          'film': 3,\n",
      "          'feel': 3,\n",
      "          'first': 2,\n",
      "          'appear': 2,\n",
      "          'convoluted': 2,\n",
      "          'boring': 2,\n",
      "          'sean': 2,\n",
      "          'action': 2,\n",
      "          'catherine': 2,\n",
      "          'rhames': 2,\n",
      "          'star': 2,\n",
      "          'set': 2,\n",
      "          'seems': 2,\n",
      "          'days': 2,\n",
      "          'nthis': 2,\n",
      "          'device': 2,\n",
      "          'characters': 2,\n",
      "          'thin': 2,\n",
      "          'bad': 2,\n",
      "          'see': 2,\n",
      "          'synopsis': 1,\n",
      "          'aging': 1,\n",
      "          'master': 1,\n",
      "          'art': 1,\n",
      "          'thief': 1,\n",
      "          'supplier': 1,\n",
      "          'young': 1,\n",
      "          'buxom': 1,\n",
      "          'security': 1,\n",
      "          'consultant': 1,\n",
      "          'mess': 1,\n",
      "          'involving': 1,\n",
      "          'risky': 1,\n",
      "          'heist': 1,\n",
      "          'ncomments': 1,\n",
      "          'nplain': 1,\n",
      "          'simple': 1,\n",
      "          'stars': 1,\n",
      "          'still': 1,\n",
      "          'carry': 1,\n",
      "          'despite': 1,\n",
      "          'age': 1,\n",
      "          'zetajones': 1,\n",
      "          'likeable': 1,\n",
      "          'enough': 1,\n",
      "          'presence': 1,\n",
      "          'ving': 1,\n",
      "          'ultracool': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'takes': 1,\n",
      "          'full': 1,\n",
      "          'advantage': 1,\n",
      "          'y2k': 1,\n",
      "          'computer': 1,\n",
      "          'bug': 1,\n",
      "          'fears': 1,\n",
      "          'current': 1,\n",
      "          'hot': 1,\n",
      "          'topic': 1,\n",
      "          'news': 1,\n",
      "          'storyline': 1,\n",
      "          'end': 1,\n",
      "          '1999': 1,\n",
      "          'genuinely': 1,\n",
      "          'wellstaged': 1,\n",
      "          'sequences': 1,\n",
      "          'nso': 1,\n",
      "          'went': 1,\n",
      "          'wrong': 1,\n",
      "          'nplenty': 1,\n",
      "          'unfortunately': 1,\n",
      "          'major': 1,\n",
      "          'problem': 1,\n",
      "          'entrapment': 1,\n",
      "          'script': 1,\n",
      "          'beenthere': 1,\n",
      "          'donethat': 1,\n",
      "          'nnothing': 1,\n",
      "          'particularly': 1,\n",
      "          'inventive': 1,\n",
      "          'original': 1,\n",
      "          'whole': 1,\n",
      "          'lacks': 1,\n",
      "          'suspense': 1,\n",
      "          'drags': 1,\n",
      "          'runs': 1,\n",
      "          'nearly': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'screenwriters': 1,\n",
      "          'example': 1,\n",
      "          'periodically': 1,\n",
      "          'use': 1,\n",
      "          'countdown': 1,\n",
      "          'means': 1,\n",
      "          'transition': 1,\n",
      "          'scenes': 1,\n",
      "          'e': 1,\n",
      "          'n': 1,\n",
      "          '4': 1,\n",
      "          'used': 1,\n",
      "          'much': 1,\n",
      "          'effectively': 1,\n",
      "          'overlooked': 1,\n",
      "          'scifi': 1,\n",
      "          'strange': 1,\n",
      "          'beginning': 1,\n",
      "          'neat': 1,\n",
      "          'wears': 1,\n",
      "          'umpteenth': 1,\n",
      "          'surprise': 1,\n",
      "          'revelation': 1,\n",
      "          'made': 1,\n",
      "          'words': 1,\n",
      "          'relies': 1,\n",
      "          'heavily': 1,\n",
      "          'audience': 1,\n",
      "          'knowing': 1,\n",
      "          'true': 1,\n",
      "          'motive': 1,\n",
      "          'resulting': 1,\n",
      "          'story': 1,\n",
      "          'leaves': 1,\n",
      "          'many': 1,\n",
      "          'scratching': 1,\n",
      "          'heads': 1,\n",
      "          'confusion': 1,\n",
      "          'power': 1,\n",
      "          'quite': 1,\n",
      "          'strong': 1,\n",
      "          'viewer': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'actors': 1,\n",
      "          'wasted': 1,\n",
      "          'production': 1,\n",
      "          'nsean': 1,\n",
      "          'given': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'lines': 1,\n",
      "          'never': 1,\n",
      "          'trust': 1,\n",
      "          'naked': 1,\n",
      "          'woman': 1,\n",
      "          'nving': 1,\n",
      "          'character': 1,\n",
      "          'like': 1,\n",
      "          'afterthought': 1,\n",
      "          'hes': 1,\n",
      "          'developed': 1,\n",
      "          'camera': 1,\n",
      "          'zooms': 1,\n",
      "          'frequently': 1,\n",
      "          'leeringly': 1,\n",
      "          'zetajoness': 1,\n",
      "          'tight': 1,\n",
      "          'wardrobe': 1,\n",
      "          'juvenile': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'species': 1,\n",
      "          'movies': 1,\n",
      "          'hold': 1,\n",
      "          'bones': 1,\n",
      "          'fact': 1,\n",
      "          'theyre': 1,\n",
      "          'exploiting': 1,\n",
      "          'female': 1,\n",
      "          'body': 1,\n",
      "          'disguise': 1,\n",
      "          'plot': 1,\n",
      "          'development': 1,\n",
      "          'supposedly': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'girl': 1,\n",
      "          'watching': 1,\n",
      "          'tights': 1,\n",
      "          'arc': 1,\n",
      "          'pivot': 1,\n",
      "          'around': 1,\n",
      "          'laser': 1,\n",
      "          'beams': 1,\n",
      "          'tagline': 1,\n",
      "          'reads': 1,\n",
      "          'trap': 1,\n",
      "          'sure': 1,\n",
      "          'spent': 1,\n",
      "          'money': 1,\n",
      "          'really': 1,\n",
      "          'isnt': 1,\n",
      "          'watchable': 1,\n",
      "          'ni': 1,\n",
      "          'would': 1,\n",
      "          'suggest': 1,\n",
      "          'however': 1,\n",
      "          'one': 1,\n",
      "          'waits': 1,\n",
      "          'cable': 1,\n",
      "          'television': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'final': 5,\n",
      "          'fantasy': 5,\n",
      "          'like': 5,\n",
      "          'spirits': 4,\n",
      "          'aliens': 4,\n",
      "          'sid': 4,\n",
      "          'human': 3,\n",
      "          'movie': 3,\n",
      "          'appear': 3,\n",
      "          'aki': 3,\n",
      "          'dr': 3,\n",
      "          'nthey': 3,\n",
      "          'spirit': 3,\n",
      "          'naki': 3,\n",
      "          'wave': 3,\n",
      "          'alien': 3,\n",
      "          'force': 3,\n",
      "          'within': 2,\n",
      "          'eye': 2,\n",
      "          'detailed': 2,\n",
      "          'back': 2,\n",
      "          'woman': 2,\n",
      "          'even': 2,\n",
      "          'facial': 2,\n",
      "          'features': 2,\n",
      "          'seen': 2,\n",
      "          'result': 2,\n",
      "          'doll': 2,\n",
      "          'anything': 2,\n",
      "          'expressive': 2,\n",
      "          'group': 2,\n",
      "          'show': 2,\n",
      "          'based': 2,\n",
      "          'general': 2,\n",
      "          'move': 2,\n",
      "          'nwhy': 2,\n",
      "          'voice': 2,\n",
      "          'buscemi': 2,\n",
      "          'computer': 2,\n",
      "          'animated': 2,\n",
      "          'n': 2,\n",
      "          'ive': 2,\n",
      "          'straight': 2,\n",
      "          'anime': 2,\n",
      "          'bored': 2,\n",
      "          'nif': 2,\n",
      "          'either': 2,\n",
      "          'focus': 2,\n",
      "          'cast': 2,\n",
      "          'action': 2,\n",
      "          'scenes': 2,\n",
      "          'plot': 2,\n",
      "          'humans': 2,\n",
      "          'organic': 2,\n",
      "          'life': 2,\n",
      "          'waves': 2,\n",
      "          'contagion': 2,\n",
      "          'time': 2,\n",
      "          'nso': 2,\n",
      "          'apocalyptic': 2,\n",
      "          'settings': 2,\n",
      "          'films': 2,\n",
      "          'version': 2,\n",
      "          'first': 1,\n",
      "          'image': 1,\n",
      "          'computeranimated': 1,\n",
      "          'closeup': 1,\n",
      "          'nits': 1,\n",
      "          'beautiful': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'remarkably': 1,\n",
      "          'quite': 1,\n",
      "          'convincing': 1,\n",
      "          'nwhen': 1,\n",
      "          'picture': 1,\n",
      "          'pulls': 1,\n",
      "          'reveal': 1,\n",
      "          'owner': 1,\n",
      "          'however': 1,\n",
      "          'things': 1,\n",
      "          'change': 1,\n",
      "          'young': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'hair': 1,\n",
      "          'although': 1,\n",
      "          'hangs': 1,\n",
      "          'artfully': 1,\n",
      "          'standards': 1,\n",
      "          'believed': 1,\n",
      "          'computeranimation': 1,\n",
      "          'date': 1,\n",
      "          'reminiscent': 1,\n",
      "          'wellcrafted': 1,\n",
      "          'nshe': 1,\n",
      "          'pretty': 1,\n",
      "          'bland': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'come': 1,\n",
      "          'person': 1,\n",
      "          'nall': 1,\n",
      "          'characters': 1,\n",
      "          'nof': 1,\n",
      "          'core': 1,\n",
      "          'younger': 1,\n",
      "          'white': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'athletic': 1,\n",
      "          'attractive': 1,\n",
      "          'indistinct': 1,\n",
      "          'applicants': 1,\n",
      "          'tv': 1,\n",
      "          'reality': 1,\n",
      "          'black': 1,\n",
      "          'man': 1,\n",
      "          'taller': 1,\n",
      "          'burlier': 1,\n",
      "          'aging': 1,\n",
      "          'scholar': 1,\n",
      "          'bald': 1,\n",
      "          'wrinkles': 1,\n",
      "          'beard': 1,\n",
      "          'nnone': 1,\n",
      "          'individuals': 1,\n",
      "          'look': 1,\n",
      "          'products': 1,\n",
      "          'descriptions': 1,\n",
      "          'given': 1,\n",
      "          'police': 1,\n",
      "          'sketch': 1,\n",
      "          'artist': 1,\n",
      "          'nit': 1,\n",
      "          'gets': 1,\n",
      "          'worse': 1,\n",
      "          'talk': 1,\n",
      "          'sarcastic': 1,\n",
      "          'steve': 1,\n",
      "          'great': 1,\n",
      "          'twisted': 1,\n",
      "          'face': 1,\n",
      "          'snaggleteeth': 1,\n",
      "          'coming': 1,\n",
      "          'mouth': 1,\n",
      "          'dreary': 1,\n",
      "          'ken': 1,\n",
      "          'every': 1,\n",
      "          'fluid': 1,\n",
      "          'physical': 1,\n",
      "          'gesture': 1,\n",
      "          'also': 1,\n",
      "          'see': 1,\n",
      "          'herkyjerky': 1,\n",
      "          'puppetstyle': 1,\n",
      "          'motions': 1,\n",
      "          'nmore': 1,\n",
      "          'point': 1,\n",
      "          'decided': 1,\n",
      "          'fulllength': 1,\n",
      "          'featuring': 1,\n",
      "          'hyperreal': 1,\n",
      "          'term': 1,\n",
      "          'mine': 1,\n",
      "          'humanoids': 1,\n",
      "          'good': 1,\n",
      "          'idea': 1,\n",
      "          'phenomenally': 1,\n",
      "          'popular': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'never': 1,\n",
      "          'played': 1,\n",
      "          'story': 1,\n",
      "          'japanese': 1,\n",
      "          'often': 1,\n",
      "          'leaves': 1,\n",
      "          'depressed': 1,\n",
      "          'youre': 1,\n",
      "          'fan': 1,\n",
      "          'please': 1,\n",
      "          'spare': 1,\n",
      "          'letters': 1,\n",
      "          'solely': 1,\n",
      "          'finished': 1,\n",
      "          'film': 1,\n",
      "          'source': 1,\n",
      "          'materials': 1,\n",
      "          'nwith': 1,\n",
      "          'expressionchallenged': 1,\n",
      "          'mixes': 1,\n",
      "          'turgid': 1,\n",
      "          'heaps': 1,\n",
      "          'mystical': 1,\n",
      "          'shit': 1,\n",
      "          'ugly': 1,\n",
      "          'confusing': 1,\n",
      "          'boring': 1,\n",
      "          'nnote': 1,\n",
      "          'following': 1,\n",
      "          'reveals': 1,\n",
      "          'basic': 1,\n",
      "          'want': 1,\n",
      "          'fighting': 1,\n",
      "          'chance': 1,\n",
      "          'making': 1,\n",
      "          'sense': 1,\n",
      "          'suggest': 1,\n",
      "          'read': 1,\n",
      "          'nearth': 1,\n",
      "          'war': 1,\n",
      "          'feed': 1,\n",
      "          'souls': 1,\n",
      "          'nmost': 1,\n",
      "          'planet': 1,\n",
      "          'devastated': 1,\n",
      "          'living': 1,\n",
      "          'protected': 1,\n",
      "          'cities': 1,\n",
      "          'nwhile': 1,\n",
      "          'bulk': 1,\n",
      "          'survivors': 1,\n",
      "          'military': 1,\n",
      "          'strategies': 1,\n",
      "          'ross': 1,\n",
      "          'voiced': 1,\n",
      "          'mingna': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'mentor': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'believe': 1,\n",
      "          'approach': 1,\n",
      "          'operate': 1,\n",
      "          'notion': 1,\n",
      "          'quoting': 1,\n",
      "          'press': 1,\n",
      "          'kit': 1,\n",
      "          'forms': 1,\n",
      "          'signature': 1,\n",
      "          'identified': 1,\n",
      "          'contained': 1,\n",
      "          'collect': 1,\n",
      "          'series': 1,\n",
      "          'specimens': 1,\n",
      "          'whose': 1,\n",
      "          'signatures': 1,\n",
      "          'combined': 1,\n",
      "          'form': 1,\n",
      "          'equal': 1,\n",
      "          'opposite': 1,\n",
      "          'intensity': 1,\n",
      "          'effect': 1,\n",
      "          'cancel': 1,\n",
      "          'disarm': 1,\n",
      "          'foreign': 1,\n",
      "          'collected': 1,\n",
      "          'six': 1,\n",
      "          'eight': 1,\n",
      "          'key': 1,\n",
      "          'needed': 1,\n",
      "          'complete': 1,\n",
      "          'desperate': 1,\n",
      "          'hunt': 1,\n",
      "          'find': 1,\n",
      "          'remaining': 1,\n",
      "          'two': 1,\n",
      "          'runs': 1,\n",
      "          'nare': 1,\n",
      "          'still': 1,\n",
      "          'ntheres': 1,\n",
      "          'little': 1,\n",
      "          'infected': 1,\n",
      "          'ndr': 1,\n",
      "          'developed': 1,\n",
      "          'method': 1,\n",
      "          'confining': 1,\n",
      "          'keeping': 1,\n",
      "          'killing': 1,\n",
      "          'defense': 1,\n",
      "          'wall': 1,\n",
      "          'wont': 1,\n",
      "          'hold': 1,\n",
      "          'much': 1,\n",
      "          'longer': 1,\n",
      "          'nalready': 1,\n",
      "          'communicating': 1,\n",
      "          'dreams': 1,\n",
      "          'naiding': 1,\n",
      "          'deep': 1,\n",
      "          'eyes': 1,\n",
      "          'hardasnails': 1,\n",
      "          'types': 1,\n",
      "          'would': 1,\n",
      "          'felt': 1,\n",
      "          'home': 1,\n",
      "          'troops': 1,\n",
      "          'ncapt': 1,\n",
      "          'gray': 1,\n",
      "          'edwards': 1,\n",
      "          'alec': 1,\n",
      "          'baldwin': 1,\n",
      "          'heads': 1,\n",
      "          'task': 1,\n",
      "          'consists': 1,\n",
      "          'wise': 1,\n",
      "          'guy': 1,\n",
      "          'tough': 1,\n",
      "          'peri': 1,\n",
      "          'gilpin': 1,\n",
      "          'gentle': 1,\n",
      "          'giant': 1,\n",
      "          'ving': 1,\n",
      "          'rhames': 1,\n",
      "          'nthrowing': 1,\n",
      "          'monkey': 1,\n",
      "          'wrench': 1,\n",
      "          'plans': 1,\n",
      "          'requisite': 1,\n",
      "          'dumb': 1,\n",
      "          'ass': 1,\n",
      "          'case': 1,\n",
      "          'hein': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'wants': 1,\n",
      "          'use': 1,\n",
      "          'zeus': 1,\n",
      "          'cannon': 1,\n",
      "          'bomb': 1,\n",
      "          'stone': 1,\n",
      "          'age': 1,\n",
      "          'destroys': 1,\n",
      "          'earth': 1,\n",
      "          'well': 1,\n",
      "          'nlike': 1,\n",
      "          'combines': 1,\n",
      "          'lots': 1,\n",
      "          'shooting': 1,\n",
      "          'fuzzy': 1,\n",
      "          'spirituality': 1,\n",
      "          'wrapped': 1,\n",
      "          'savetheearth': 1,\n",
      "          'bow': 1,\n",
      "          'nbut': 1,\n",
      "          'im': 1,\n",
      "          'ni': 1,\n",
      "          'understand': 1,\n",
      "          'many': 1,\n",
      "          'liveaction': 1,\n",
      "          'employ': 1,\n",
      "          'theyre': 1,\n",
      "          'cheap': 1,\n",
      "          'wallow': 1,\n",
      "          'industrial': 1,\n",
      "          'trash': 1,\n",
      "          'heap': 1,\n",
      "          'shootemups': 1,\n",
      "          'dont': 1,\n",
      "          'satisfy': 1,\n",
      "          'oddly': 1,\n",
      "          'muted': 1,\n",
      "          'talented': 1,\n",
      "          'cant': 1,\n",
      "          'bring': 1,\n",
      "          'fact': 1,\n",
      "          'efforts': 1,\n",
      "          'merely': 1,\n",
      "          'emphasize': 1,\n",
      "          'missing': 1,\n",
      "          'especially': 1,\n",
      "          'disappointing': 1,\n",
      "          'lack': 1,\n",
      "          'expression': 1,\n",
      "          'flat': 1,\n",
      "          'delivery': 1,\n",
      "          'looks': 1,\n",
      "          'sound': 1,\n",
      "          'brunet': 1,\n",
      "          'weena': 1,\n",
      "          'eloi': 1,\n",
      "          'girl': 1,\n",
      "          '1960s': 1,\n",
      "          'machine': 1,\n",
      "          'ndrab': 1,\n",
      "          'color': 1,\n",
      "          'choices': 1,\n",
      "          'created': 1,\n",
      "          'jello': 1,\n",
      "          'molds': 1,\n",
      "          'sap': 1,\n",
      "          'pizzazz': 1,\n",
      "          'big': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'nstudents': 1,\n",
      "          'animation': 1,\n",
      "          'may': 1,\n",
      "          'fascinated': 1,\n",
      "          'technology': 1,\n",
      "          'behind': 1,\n",
      "          'found': 1,\n",
      "          'subpar': 1,\n",
      "          'across': 1,\n",
      "          'board': 1,\n",
      "          'futurama': 1,\n",
      "          'effective': 1,\n",
      "          'battle': 1,\n",
      "          'visuals': 1,\n",
      "          'kids': 1,\n",
      "          'south': 1,\n",
      "          'park': 1,\n",
      "          'far': 1,\n",
      "          'mannequins': 1,\n",
      "          'old': 1,\n",
      "          'episode': 1,\n",
      "          'contemporary': 1,\n",
      "          'outer': 1,\n",
      "          'limits': 1,\n",
      "          'better': 1,\n",
      "          'doom': 1,\n",
      "          'gloom': 1,\n",
      "          'scifi': 1,\n",
      "          'needs': 1,\n",
      "          'nnot': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 6,\n",
      "          'worst': 6,\n",
      "          'joe': 5,\n",
      "          'eszterhas': 5,\n",
      "          'cut': 3,\n",
      "          'nhe': 3,\n",
      "          'movie': 3,\n",
      "          'bad': 3,\n",
      "          'original': 3,\n",
      "          'soundtrack': 3,\n",
      "          'plot': 2,\n",
      "          'director': 2,\n",
      "          'alan': 2,\n",
      "          'smithee': 2,\n",
      "          'studio': 2,\n",
      "          'ni': 2,\n",
      "          'really': 2,\n",
      "          'cant': 2,\n",
      "          'boring': 2,\n",
      "          'hollywood': 2,\n",
      "          'movies': 2,\n",
      "          'one': 2,\n",
      "          'star': 2,\n",
      "          'way': 2,\n",
      "          'nthis': 2,\n",
      "          'cinergi': 2,\n",
      "          'pictures': 2,\n",
      "          'money': 2,\n",
      "          'tracks': 2,\n",
      "          'token': 1,\n",
      "          'steals': 1,\n",
      "          'copy': 1,\n",
      "          'trio': 1,\n",
      "          'complete': 1,\n",
      "          'final': 1,\n",
      "          'without': 1,\n",
      "          'threatens': 1,\n",
      "          'burn': 1,\n",
      "          'reel': 1,\n",
      "          'allow': 1,\n",
      "          'keep': 1,\n",
      "          'vision': 1,\n",
      "          'ncritique': 1,\n",
      "          'wow': 1,\n",
      "          'remember': 1,\n",
      "          'last': 1,\n",
      "          'time': 1,\n",
      "          'sucked': 1,\n",
      "          'many': 1,\n",
      "          'levels': 1,\n",
      "          'comedy': 1,\n",
      "          'pathetic': 1,\n",
      "          'obvious': 1,\n",
      "          'dated': 1,\n",
      "          'oj': 1,\n",
      "          'simpson': 1,\n",
      "          'jokes': 1,\n",
      "          'galore': 1,\n",
      "          'uninteresting': 1,\n",
      "          'structure': 1,\n",
      "          'annoying': 1,\n",
      "          'repetitive': 1,\n",
      "          'pretentious': 1,\n",
      "          'acting': 1,\n",
      "          'pretty': 1,\n",
      "          'especially': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'act': 1,\n",
      "          'save': 1,\n",
      "          'life': 1,\n",
      "          'cameos': 1,\n",
      "          'lame': 1,\n",
      "          'seem': 1,\n",
      "          'forced': 1,\n",
      "          'ending': 1,\n",
      "          'blows': 1,\n",
      "          'chunks': 1,\n",
      "          'nall': 1,\n",
      "          'believes': 1,\n",
      "          'clever': 1,\n",
      "          'humorous': 1,\n",
      "          'edgy': 1,\n",
      "          'look': 1,\n",
      "          'behind': 1,\n",
      "          'closed': 1,\n",
      "          'doors': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'stupid': 1,\n",
      "          'completely': 1,\n",
      "          'unentertaining': 1,\n",
      "          'piece': 1,\n",
      "          'shite': 1,\n",
      "          'love': 1,\n",
      "          'see': 1,\n",
      "          'shenanigans': 1,\n",
      "          'bites': 1,\n",
      "          'big': 1,\n",
      "          'nsee': 1,\n",
      "          'like': 1,\n",
      "          'watch': 1,\n",
      "          'otherwise': 1,\n",
      "          'skip': 1,\n",
      "          'hating': 1,\n",
      "          'every': 1,\n",
      "          'makes': 1,\n",
      "          'appearance': 1,\n",
      "          'nluckily': 1,\n",
      "          'us': 1,\n",
      "          'mess': 1,\n",
      "          'lasts': 1,\n",
      "          '80': 1,\n",
      "          'minutes': 1,\n",
      "          'miramax': 1,\n",
      "          'honcho': 1,\n",
      "          'harvey': 1,\n",
      "          'weinstein': 1,\n",
      "          'plays': 1,\n",
      "          'leadfaced': 1,\n",
      "          'detective': 1,\n",
      "          'nby': 1,\n",
      "          'reason': 1,\n",
      "          'producer': 1,\n",
      "          'couldnt': 1,\n",
      "          'another': 1,\n",
      "          'version': 1,\n",
      "          'filmed': 1,\n",
      "          'stock': 1,\n",
      "          'left': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'cares': 1,\n",
      "          'satire': 1,\n",
      "          'sucks': 1,\n",
      "          'bag': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'ironically': 1,\n",
      "          'arthur': 1,\n",
      "          'hiller': 1,\n",
      "          'also': 1,\n",
      "          'requested': 1,\n",
      "          'name': 1,\n",
      "          'taken': 1,\n",
      "          'credits': 1,\n",
      "          'replaced': 1,\n",
      "          'dgas': 1,\n",
      "          'moniker': 1,\n",
      "          'films': 1,\n",
      "          'production': 1,\n",
      "          'company': 1,\n",
      "          'preferred': 1,\n",
      "          'made': 1,\n",
      "          'producerwriter': 1,\n",
      "          'script': 1,\n",
      "          'included': 1,\n",
      "          'arnold': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'neszterhas': 1,\n",
      "          'announced': 1,\n",
      "          'media': 1,\n",
      "          'postproduction': 1,\n",
      "          'didnt': 1,\n",
      "          'pay': 1,\n",
      "          'said': 1,\n",
      "          'would': 1,\n",
      "          'finance': 1,\n",
      "          'asked': 1,\n",
      "          'submit': 1,\n",
      "          'received': 1,\n",
      "          '9': 1,\n",
      "          '200': 1,\n",
      "          'cds': 1,\n",
      "          'cassettes': 1,\n",
      "          'mostly': 1,\n",
      "          'unknown': 1,\n",
      "          'unsigned': 1,\n",
      "          'artists': 1,\n",
      "          'listened': 1,\n",
      "          'sent': 1,\n",
      "          'least': 1,\n",
      "          'couple': 1,\n",
      "          'record': 1,\n",
      "          'compiled': 1,\n",
      "          'practically': 1,\n",
      "          'swept': 1,\n",
      "          'razzie': 1,\n",
      "          'awards': 1,\n",
      "          '1999': 1,\n",
      "          'given': 1,\n",
      "          'categories': 1,\n",
      "          'year': 1,\n",
      "          'less': 1,\n",
      "          'picture': 1,\n",
      "          'award': 1,\n",
      "          'screenplay': 1,\n",
      "          'supporting': 1,\n",
      "          'actor': 1,\n",
      "          'new': 1,\n",
      "          'tied': 1,\n",
      "          'jerry': 1,\n",
      "          'springer': 1,\n",
      "          'song': 1,\n",
      "          'wan': 1,\n",
      "          'na': 1,\n",
      "          'mike': 1,\n",
      "          'ovitz': 1,\n",
      "          'nas': 1,\n",
      "          'written': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'time': 8,\n",
      "          'movie': 6,\n",
      "          'film': 6,\n",
      "          'one': 5,\n",
      "          'plot': 4,\n",
      "          'like': 4,\n",
      "          'nwell': 4,\n",
      "          'ni': 4,\n",
      "          'care': 4,\n",
      "          'love': 3,\n",
      "          'movies': 3,\n",
      "          'watching': 3,\n",
      "          'tv': 3,\n",
      "          'psycho': 3,\n",
      "          '810': 3,\n",
      "          '710': 3,\n",
      "          'guy': 2,\n",
      "          'believe': 2,\n",
      "          'fall': 2,\n",
      "          'year': 2,\n",
      "          'boring': 2,\n",
      "          'hell': 2,\n",
      "          'thinking': 2,\n",
      "          'thing': 2,\n",
      "          'sitting': 2,\n",
      "          'really': 2,\n",
      "          'audience': 2,\n",
      "          'ever': 2,\n",
      "          'make': 2,\n",
      "          'part': 2,\n",
      "          'joke': 2,\n",
      "          'isnt': 2,\n",
      "          'start': 2,\n",
      "          'betrayal': 2,\n",
      "          'nso': 2,\n",
      "          'two': 2,\n",
      "          'surprise': 2,\n",
      "          'mean': 2,\n",
      "          'jolies': 2,\n",
      "          'eyes': 2,\n",
      "          'supposed': 2,\n",
      "          'nno': 2,\n",
      "          'dont': 2,\n",
      "          'actually': 2,\n",
      "          'three': 2,\n",
      "          'points': 2,\n",
      "          'pretty': 2,\n",
      "          'rich': 1,\n",
      "          'doesnt': 1,\n",
      "          'orders': 1,\n",
      "          'mailorder': 1,\n",
      "          'bride': 1,\n",
      "          'nthat': 1,\n",
      "          'evening': 1,\n",
      "          'couple': 1,\n",
      "          'married': 1,\n",
      "          'madly': 1,\n",
      "          'soon': 1,\n",
      "          'thereafter': 1,\n",
      "          'nbut': 1,\n",
      "          'whats': 1,\n",
      "          'none': 1,\n",
      "          'might': 1,\n",
      "          'person': 1,\n",
      "          'pretending': 1,\n",
      "          'nwow': 1,\n",
      "          'nsin': 1,\n",
      "          'indeed': 1,\n",
      "          'ncritique': 1,\n",
      "          'easily': 1,\n",
      "          'worst': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'ntoo': 1,\n",
      "          'long': 1,\n",
      "          'predictable': 1,\n",
      "          'ridiculous': 1,\n",
      "          'anyone': 1,\n",
      "          'interested': 1,\n",
      "          'good': 1,\n",
      "          'nwhat': 1,\n",
      "          'made': 1,\n",
      "          'n': 1,\n",
      "          'wonder': 1,\n",
      "          'racks': 1,\n",
      "          'felt': 1,\n",
      "          'bad': 1,\n",
      "          'week': 1,\n",
      "          'nudity': 1,\n",
      "          'stuffed': 1,\n",
      "          'wake': 1,\n",
      "          'nhave': 1,\n",
      "          'switched': 1,\n",
      "          'channels': 1,\n",
      "          'fallen': 1,\n",
      "          'upon': 1,\n",
      "          'ridiculously': 1,\n",
      "          'melodramatic': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'switch': 1,\n",
      "          'back': 1,\n",
      "          'sure': 1,\n",
      "          'wasnt': 1,\n",
      "          'sick': 1,\n",
      "          'exactly': 1,\n",
      "          'asked': 1,\n",
      "          'pay': 1,\n",
      "          'money': 1,\n",
      "          'see': 1,\n",
      "          'say': 1,\n",
      "          'shite': 1,\n",
      "          'nokay': 1,\n",
      "          'nfirst': 1,\n",
      "          'trailer': 1,\n",
      "          'gives': 1,\n",
      "          'away': 1,\n",
      "          'main': 1,\n",
      "          'twist': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'youre': 1,\n",
      "          'basically': 1,\n",
      "          'lovers': 1,\n",
      "          'go': 1,\n",
      "          'motions': 1,\n",
      "          'occurs': 1,\n",
      "          'nwhoopee': 1,\n",
      "          'big': 1,\n",
      "          'nsecond': 1,\n",
      "          'angelina': 1,\n",
      "          'jolie': 1,\n",
      "          'horribly': 1,\n",
      "          'miscast': 1,\n",
      "          'nwhy': 1,\n",
      "          'second': 1,\n",
      "          'nasty': 1,\n",
      "          'backstabbing': 1,\n",
      "          'woman': 1,\n",
      "          'people': 1,\n",
      "          'complained': 1,\n",
      "          'jack': 1,\n",
      "          'nicholson': 1,\n",
      "          'shining': 1,\n",
      "          'well': 1,\n",
      "          'goes': 1,\n",
      "          'nevery': 1,\n",
      "          'look': 1,\n",
      "          'screams': 1,\n",
      "          'nthen': 1,\n",
      "          'course': 1,\n",
      "          'case': 1,\n",
      "          'patsy': 1,\n",
      "          'husband': 1,\n",
      "          'man': 1,\n",
      "          'cant': 1,\n",
      "          'seem': 1,\n",
      "          'figure': 1,\n",
      "          'anything': 1,\n",
      "          'nboring': 1,\n",
      "          'nyoure': 1,\n",
      "          'screw': 1,\n",
      "          'somehow': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'dude': 1,\n",
      "          'thanks': 1,\n",
      "          'nand': 1,\n",
      "          'shes': 1,\n",
      "          'beeyatch': 1,\n",
      "          'confused': 1,\n",
      "          'actual': 1,\n",
      "          'motivations': 1,\n",
      "          'ill': 1,\n",
      "          'tell': 1,\n",
      "          'nthe': 1,\n",
      "          'worrying': 1,\n",
      "          'whole': 1,\n",
      "          'way': 1,\n",
      "          'picture': 1,\n",
      "          'whether': 1,\n",
      "          'id': 1,\n",
      "          'asleep': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'suspense': 1,\n",
      "          'chemistry': 1,\n",
      "          'leads': 1,\n",
      "          'real': 1,\n",
      "          'passion': 1,\n",
      "          'sense': 1,\n",
      "          'plenty': 1,\n",
      "          'holes': 1,\n",
      "          'everyone': 1,\n",
      "          'extra': 1,\n",
      "          'moronic': 1,\n",
      "          'ending': 1,\n",
      "          'even': 1,\n",
      "          'giving': 1,\n",
      "          'rating': 1,\n",
      "          'simple': 1,\n",
      "          'liked': 1,\n",
      "          'locations': 1,\n",
      "          'groovy': 1,\n",
      "          'score': 1,\n",
      "          'primary': 1,\n",
      "          'reason': 1,\n",
      "          'slipping': 1,\n",
      "          'notches': 1,\n",
      "          'onto': 1,\n",
      "          'bedpost': 1,\n",
      "          'gratuitous': 1,\n",
      "          'shots': 1,\n",
      "          'boobies': 1,\n",
      "          'thats': 1,\n",
      "          'right': 1,\n",
      "          'another': 1,\n",
      "          'antonios': 1,\n",
      "          'ass': 1,\n",
      "          'hairless': 1,\n",
      "          'record': 1,\n",
      "          'neverything': 1,\n",
      "          'else': 1,\n",
      "          'pointless': 1,\n",
      "          'plain': 1,\n",
      "          'stupid': 1,\n",
      "          'ntry': 1,\n",
      "          'imagining': 1,\n",
      "          'softporn': 1,\n",
      "          'nwithout': 1,\n",
      "          'nthats': 1,\n",
      "          'much': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'na': 1,\n",
      "          'low': 1,\n",
      "          'point': 1,\n",
      "          'careers': 1,\n",
      "          'stars': 1,\n",
      "          'noops': 1,\n",
      "          'almost': 1,\n",
      "          'forgot': 1,\n",
      "          'mention': 1,\n",
      "          'crappy': 1,\n",
      "          'dialogue': 1,\n",
      "          'god': 1,\n",
      "          'noh': 1,\n",
      "          'mighty': 1,\n",
      "          'nit': 1,\n",
      "          'stop': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'namerican': 1,\n",
      "          '910': 1,\n",
      "          'cruel': 1,\n",
      "          'intentions': 1,\n",
      "          'wide': 1,\n",
      "          'shut': 1,\n",
      "          '610': 1,\n",
      "          'fatal': 1,\n",
      "          'attraction': 1,\n",
      "          'playing': 1,\n",
      "          'heart': 1,\n",
      "          'suspicion': 1,\n",
      "          'lies': 1,\n",
      "          'beneath': 1,\n",
      "          'women': 1,\n",
      "          'want': 1,\n",
      "          '410': 1,\n",
      "          'whipped': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'film': 8,\n",
      "          'one': 5,\n",
      "          'lisa': 4,\n",
      "          'kudrow': 4,\n",
      "          'played': 4,\n",
      "          'travolta': 4,\n",
      "          'character': 4,\n",
      "          'nand': 4,\n",
      "          'time': 3,\n",
      "          'real': 3,\n",
      "          'nbut': 3,\n",
      "          'john': 3,\n",
      "          'ni': 3,\n",
      "          'else': 3,\n",
      "          'people': 3,\n",
      "          'characters': 3,\n",
      "          'nhe': 3,\n",
      "          'get': 3,\n",
      "          'trying': 3,\n",
      "          'say': 3,\n",
      "          'year': 2,\n",
      "          'least': 2,\n",
      "          'featuring': 2,\n",
      "          'bunch': 2,\n",
      "          'care': 2,\n",
      "          'little': 2,\n",
      "          'everybody': 2,\n",
      "          'pretty': 2,\n",
      "          'much': 2,\n",
      "          'worst': 2,\n",
      "          'another': 2,\n",
      "          'weatherman': 2,\n",
      "          'part': 2,\n",
      "          'didnt': 2,\n",
      "          'entire': 2,\n",
      "          'thought': 2,\n",
      "          'dressed': 2,\n",
      "          'outfits': 2,\n",
      "          'left': 2,\n",
      "          'also': 2,\n",
      "          'plain': 2,\n",
      "          'us': 2,\n",
      "          'casting': 2,\n",
      "          'choice': 2,\n",
      "          'role': 2,\n",
      "          'wrong': 2,\n",
      "          'good': 2,\n",
      "          'play': 2,\n",
      "          'quite': 2,\n",
      "          'audience': 2,\n",
      "          'lines': 2,\n",
      "          'never': 2,\n",
      "          'loved': 2,\n",
      "          'pullman': 2,\n",
      "          'lazy': 2,\n",
      "          'cop': 2,\n",
      "          'tries': 2,\n",
      "          'great': 1,\n",
      "          'twelve': 1,\n",
      "          'months': 1,\n",
      "          'either': 1,\n",
      "          'principals': 1,\n",
      "          'nearlier': 1,\n",
      "          'nora': 1,\n",
      "          'ephron': 1,\n",
      "          'wrote': 1,\n",
      "          'produced': 1,\n",
      "          'years': 1,\n",
      "          'likeable': 1,\n",
      "          'comedies': 1,\n",
      "          'called': 1,\n",
      "          'hanging': 1,\n",
      "          'annoying': 1,\n",
      "          'women': 1,\n",
      "          'ironically': 1,\n",
      "          'well': 1,\n",
      "          'barely': 1,\n",
      "          'anyone': 1,\n",
      "          'nick': 1,\n",
      "          'nsweet': 1,\n",
      "          'stuff': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'project': 1,\n",
      "          'nothing': 1,\n",
      "          'compared': 1,\n",
      "          'went': 1,\n",
      "          'earlier': 1,\n",
      "          'summer': 1,\n",
      "          'entitled': 1,\n",
      "          'battlefield': 1,\n",
      "          'earth': 1,\n",
      "          'seemed': 1,\n",
      "          'person': 1,\n",
      "          'planet': 1,\n",
      "          'somehow': 1,\n",
      "          'appreciated': 1,\n",
      "          'even': 1,\n",
      "          'cheese': 1,\n",
      "          'factor': 1,\n",
      "          'mean': 1,\n",
      "          'classified': 1,\n",
      "          'disasters': 1,\n",
      "          'nyipes': 1,\n",
      "          'nbeauty': 1,\n",
      "          'nso': 1,\n",
      "          'happens': 1,\n",
      "          'put': 1,\n",
      "          'two': 1,\n",
      "          'room': 1,\n",
      "          'come': 1,\n",
      "          'costarring': 1,\n",
      "          'everversatile': 1,\n",
      "          'nuhhhm': 1,\n",
      "          'guessed': 1,\n",
      "          'nmuch': 1,\n",
      "          'nplot': 1,\n",
      "          'order': 1,\n",
      "          'escape': 1,\n",
      "          'major': 1,\n",
      "          'financial': 1,\n",
      "          'difficulties': 1,\n",
      "          'local': 1,\n",
      "          'hooks': 1,\n",
      "          'ballpicking': 1,\n",
      "          'lotto': 1,\n",
      "          'girlfriend': 1,\n",
      "          'rigs': 1,\n",
      "          'state': 1,\n",
      "          'lottery': 1,\n",
      "          'find': 1,\n",
      "          'scheme': 1,\n",
      "          'demand': 1,\n",
      "          'winnings': 1,\n",
      "          'problems': 1,\n",
      "          'arise': 1,\n",
      "          'ncritique': 1,\n",
      "          'simply': 1,\n",
      "          'stated': 1,\n",
      "          'laugh': 1,\n",
      "          'picture': 1,\n",
      "          'nfor': 1,\n",
      "          'comedy': 1,\n",
      "          'offered': 1,\n",
      "          'smiles': 1,\n",
      "          'nincompoops': 1,\n",
      "          'miscast': 1,\n",
      "          'hamming': 1,\n",
      "          'described': 1,\n",
      "          'sluttier': 1,\n",
      "          'version': 1,\n",
      "          'phoebe': 1,\n",
      "          'tvs': 1,\n",
      "          'friends': 1,\n",
      "          'nthis': 1,\n",
      "          'disastrous': 1,\n",
      "          'would': 1,\n",
      "          'close': 1,\n",
      "          'nthankfully': 1,\n",
      "          'clips': 1,\n",
      "          'goofy': 1,\n",
      "          'dancing': 1,\n",
      "          'films': 1,\n",
      "          'trailer': 1,\n",
      "          'final': 1,\n",
      "          'cut': 1,\n",
      "          'unlike': 1,\n",
      "          'far': 1,\n",
      "          'beautiful': 1,\n",
      "          'managed': 1,\n",
      "          'feature': 1,\n",
      "          'many': 1,\n",
      "          'unsympathetic': 1,\n",
      "          'idiotic': 1,\n",
      "          'irritating': 1,\n",
      "          'cast': 1,\n",
      "          'nforemost': 1,\n",
      "          'travoltas': 1,\n",
      "          'declined': 1,\n",
      "          'give': 1,\n",
      "          'reason': 1,\n",
      "          'fit': 1,\n",
      "          'saw': 1,\n",
      "          'shorty': 1,\n",
      "          'day': 1,\n",
      "          'perfect': 1,\n",
      "          'na': 1,\n",
      "          'cool': 1,\n",
      "          'calculating': 1,\n",
      "          'roughneck': 1,\n",
      "          'certain': 1,\n",
      "          'hip': 1,\n",
      "          'suave': 1,\n",
      "          'je': 1,\n",
      "          'ne': 1,\n",
      "          'sais': 1,\n",
      "          'quoi': 1,\n",
      "          'nin': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'hes': 1,\n",
      "          'funny': 1,\n",
      "          'bad': 1,\n",
      "          'nwere': 1,\n",
      "          'supposed': 1,\n",
      "          'able': 1,\n",
      "          'notice': 1,\n",
      "          'case': 1,\n",
      "          'consider': 1,\n",
      "          'nadd': 1,\n",
      "          'boring': 1,\n",
      "          'yet': 1,\n",
      "          'patented': 1,\n",
      "          'dumb': 1,\n",
      "          'blonde': 1,\n",
      "          'routines': 1,\n",
      "          'sexier': 1,\n",
      "          'nmichael': 1,\n",
      "          'rapaport': 1,\n",
      "          'stretching': 1,\n",
      "          'small': 1,\n",
      "          'acting': 1,\n",
      "          'muscle': 1,\n",
      "          'guy': 1,\n",
      "          'isnt': 1,\n",
      "          'speed': 1,\n",
      "          'level': 1,\n",
      "          'everyone': 1,\n",
      "          'truckload': 1,\n",
      "          'empty': 1,\n",
      "          'comedic': 1,\n",
      "          'bullet': 1,\n",
      "          'shells': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'extremely': 1,\n",
      "          'quiet': 1,\n",
      "          'anticipating': 1,\n",
      "          'punch': 1,\n",
      "          'materialize': 1,\n",
      "          'nthe': 1,\n",
      "          'thing': 1,\n",
      "          'could': 1,\n",
      "          'story': 1,\n",
      "          'actually': 1,\n",
      "          'halfinteresting': 1,\n",
      "          'really': 1,\n",
      "          'bored': 1,\n",
      "          'liked': 1,\n",
      "          'michael': 1,\n",
      "          'moores': 1,\n",
      "          'perverted': 1,\n",
      "          'cousin': 1,\n",
      "          'bill': 1,\n",
      "          'ngive': 1,\n",
      "          'dude': 1,\n",
      "          'man': 1,\n",
      "          'everything': 1,\n",
      "          'work': 1,\n",
      "          'fakes': 1,\n",
      "          'injuries': 1,\n",
      "          'duty': 1,\n",
      "          'avoid': 1,\n",
      "          'arrest': 1,\n",
      "          'situations': 1,\n",
      "          'wont': 1,\n",
      "          'fill': 1,\n",
      "          'forms': 1,\n",
      "          'ntheres': 1,\n",
      "          'base': 1,\n",
      "          'humor': 1,\n",
      "          'nsadly': 1,\n",
      "          'filmmakers': 1,\n",
      "          'decided': 1,\n",
      "          'bring': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'theres': 1,\n",
      "          'folks': 1,\n",
      "          'non': 1,\n",
      "          'whole': 1,\n",
      "          'lame': 1,\n",
      "          'included': 1,\n",
      "          'slew': 1,\n",
      "          'unlikable': 1,\n",
      "          'fiddling': 1,\n",
      "          'around': 1,\n",
      "          'pool': 1,\n",
      "          'unfunny': 1,\n",
      "          'interest': 1,\n",
      "          'target': 1,\n",
      "          'somebody': 1,\n",
      "          'write': 1,\n",
      "          'im': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'memphis': 11,\n",
      "          'cars': 7,\n",
      "          'kip': 6,\n",
      "          'movie': 5,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'brother': 5,\n",
      "          'old': 5,\n",
      "          'car': 4,\n",
      "          'film': 4,\n",
      "          'nwill': 4,\n",
      "          'seconds': 3,\n",
      "          'time': 3,\n",
      "          'ntheres': 3,\n",
      "          'back': 3,\n",
      "          'life': 3,\n",
      "          'one': 3,\n",
      "          'talent': 3,\n",
      "          'american': 2,\n",
      "          'love': 2,\n",
      "          'bruckheimer': 2,\n",
      "          'plays': 2,\n",
      "          'upon': 2,\n",
      "          'shot': 2,\n",
      "          'many': 2,\n",
      "          'leave': 2,\n",
      "          'ngone': 2,\n",
      "          '60': 2,\n",
      "          'raines': 2,\n",
      "          'save': 2,\n",
      "          'crime': 2,\n",
      "          'amount': 2,\n",
      "          'nif': 2,\n",
      "          'nin': 2,\n",
      "          'give': 2,\n",
      "          'thrill': 2,\n",
      "          'law': 2,\n",
      "          'away': 2,\n",
      "          'jolie': 2,\n",
      "          'get': 2,\n",
      "          'together': 2,\n",
      "          'family': 2,\n",
      "          'long': 2,\n",
      "          'first': 2,\n",
      "          'scene': 2,\n",
      "          'stolen': 2,\n",
      "          'made': 2,\n",
      "          'like': 2,\n",
      "          'movies': 2,\n",
      "          'empty': 2,\n",
      "          'nthe': 2,\n",
      "          'something': 2,\n",
      "          'counterbalanced': 2,\n",
      "          'plot': 2,\n",
      "          'nits': 2,\n",
      "          'stereotypical': 1,\n",
      "          'male': 1,\n",
      "          'undeniable': 1,\n",
      "          'fetishistic': 1,\n",
      "          'sports': 1,\n",
      "          'nproducer': 1,\n",
      "          'jerry': 1,\n",
      "          'attraction': 1,\n",
      "          'loaded': 1,\n",
      "          'testosterone': 1,\n",
      "          'laced': 1,\n",
      "          'titillatingly': 1,\n",
      "          'frenetic': 1,\n",
      "          'powerful': 1,\n",
      "          'muscle': 1,\n",
      "          'sleek': 1,\n",
      "          'foreign': 1,\n",
      "          'road': 1,\n",
      "          'huggers': 1,\n",
      "          'iconic': 1,\n",
      "          'speed': 1,\n",
      "          'machines': 1,\n",
      "          'males': 1,\n",
      "          'theater': 1,\n",
      "          'orgasmic': 1,\n",
      "          'haze': 1,\n",
      "          'orgy': 1,\n",
      "          'maleness': 1,\n",
      "          'gone': 1,\n",
      "          'horribly': 1,\n",
      "          'awry': 1,\n",
      "          'ncage': 1,\n",
      "          'legendary': 1,\n",
      "          'retired': 1,\n",
      "          'thief': 1,\n",
      "          'dont': 1,\n",
      "          'cute': 1,\n",
      "          'names': 1,\n",
      "          'must': 1,\n",
      "          'call': 1,\n",
      "          'worn': 1,\n",
      "          'skills': 1,\n",
      "          'thickheaded': 1,\n",
      "          'ribisi': 1,\n",
      "          'killed': 1,\n",
      "          'nseems': 1,\n",
      "          'murderous': 1,\n",
      "          'boss': 1,\n",
      "          'eccleston': 1,\n",
      "          'fetish': 1,\n",
      "          'wood': 1,\n",
      "          'insert': 1,\n",
      "          'joke': 1,\n",
      "          'hired': 1,\n",
      "          'steal': 1,\n",
      "          'ridiculous': 1,\n",
      "          'expensive': 1,\n",
      "          'exotic': 1,\n",
      "          'autos': 1,\n",
      "          'nfifty': 1,\n",
      "          'exact': 1,\n",
      "          'npoor': 1,\n",
      "          'screws': 1,\n",
      "          'pooch': 1,\n",
      "          'bungles': 1,\n",
      "          'job': 1,\n",
      "          'badly': 1,\n",
      "          'arent': 1,\n",
      "          'delivered': 1,\n",
      "          'three': 1,\n",
      "          'days': 1,\n",
      "          'bossman': 1,\n",
      "          'casket': 1,\n",
      "          'carved': 1,\n",
      "          'nliterally': 1,\n",
      "          'someone': 1,\n",
      "          'could': 1,\n",
      "          'nhmmmm': 1,\n",
      "          'wonder': 1,\n",
      "          'nwhat': 1,\n",
      "          'order': 1,\n",
      "          'emotional': 1,\n",
      "          'heft': 1,\n",
      "          'several': 1,\n",
      "          'subplots': 1,\n",
      "          'designed': 1,\n",
      "          'tug': 1,\n",
      "          'heartstrings': 1,\n",
      "          'us': 1,\n",
      "          'yawn': 1,\n",
      "          'excuse': 1,\n",
      "          'dramatic': 1,\n",
      "          'tension': 1,\n",
      "          'nshadowing': 1,\n",
      "          'enforcement': 1,\n",
      "          'foe': 1,\n",
      "          'lindo': 1,\n",
      "          'whos': 1,\n",
      "          'looking': 1,\n",
      "          'send': 1,\n",
      "          'catch': 1,\n",
      "          'flame': 1,\n",
      "          'sway': 1,\n",
      "          'heart': 1,\n",
      "          'broken': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nshortsighted': 1,\n",
      "          'seeker': 1,\n",
      "          'idolizes': 1,\n",
      "          'yet': 1,\n",
      "          'resents': 1,\n",
      "          'moving': 1,\n",
      "          'reconnect': 1,\n",
      "          'nraines': 1,\n",
      "          'mentor': 1,\n",
      "          'duvall': 1,\n",
      "          'since': 1,\n",
      "          'left': 1,\n",
      "          'finally': 1,\n",
      "          'caught': 1,\n",
      "          'pulls': 1,\n",
      "          'ncan': 1,\n",
      "          'answer': 1,\n",
      "          'questions': 1,\n",
      "          'correctly': 1,\n",
      "          '2': 1,\n",
      "          'without': 1,\n",
      "          'seeing': 1,\n",
      "          'nill': 1,\n",
      "          'bet': 1,\n",
      "          'nfollowing': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'fill': 1,\n",
      "          'accomplishments': 1,\n",
      "          'montage': 1,\n",
      "          'photos': 1,\n",
      "          'taken': 1,\n",
      "          'full': 1,\n",
      "          'throttle': 1,\n",
      "          'splendor': 1,\n",
      "          'nhes': 1,\n",
      "          'shown': 1,\n",
      "          'living': 1,\n",
      "          'good': 1,\n",
      "          'teaching': 1,\n",
      "          'young': 1,\n",
      "          'children': 1,\n",
      "          'drive': 1,\n",
      "          'gocarts': 1,\n",
      "          'later': 1,\n",
      "          'misfit': 1,\n",
      "          'knowingly': 1,\n",
      "          'tells': 1,\n",
      "          'situation': 1,\n",
      "          'control': 1,\n",
      "          'making': 1,\n",
      "          'breakfast': 1,\n",
      "          'metaphor': 1,\n",
      "          'shakespearean': 1,\n",
      "          'proportions': 1,\n",
      "          'njust': 1,\n",
      "          'pan': 1,\n",
      "          'grease': 1,\n",
      "          'flares': 1,\n",
      "          'clueless': 1,\n",
      "          'quell': 1,\n",
      "          'big': 1,\n",
      "          'calmly': 1,\n",
      "          'efficiently': 1,\n",
      "          'throws': 1,\n",
      "          'salt': 1,\n",
      "          'nlooks': 1,\n",
      "          'everything': 1,\n",
      "          'might': 1,\n",
      "          'turn': 1,\n",
      "          'alright': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'music': 1,\n",
      "          'swells': 1,\n",
      "          'crest': 1,\n",
      "          'violins': 1,\n",
      "          'nthats': 1,\n",
      "          'strong': 1,\n",
      "          'characterization': 1,\n",
      "          'gets': 1,\n",
      "          'shame': 1,\n",
      "          'nbruckheimer': 1,\n",
      "          'real': 1,\n",
      "          'loading': 1,\n",
      "          'obscene': 1,\n",
      "          'given': 1,\n",
      "          'task': 1,\n",
      "          'hand': 1,\n",
      "          'nmonumentally': 1,\n",
      "          'underused': 1,\n",
      "          'portrays': 1,\n",
      "          'headed': 1,\n",
      "          'sexpot': 1,\n",
      "          'whose': 1,\n",
      "          'idea': 1,\n",
      "          'sex': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'maybe': 1,\n",
      "          'nduvall': 1,\n",
      "          'trots': 1,\n",
      "          'ornery': 1,\n",
      "          'sweet': 1,\n",
      "          'codger': 1,\n",
      "          'outfit': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'hes': 1,\n",
      "          'still': 1,\n",
      "          'laughing': 1,\n",
      "          'taking': 1,\n",
      "          'paycheck': 1,\n",
      "          'nlindo': 1,\n",
      "          'projects': 1,\n",
      "          'warm': 1,\n",
      "          'hearted': 1,\n",
      "          'tightly': 1,\n",
      "          'focused': 1,\n",
      "          'detective': 1,\n",
      "          'almost': 1,\n",
      "          'transcends': 1,\n",
      "          'material': 1,\n",
      "          'biggest': 1,\n",
      "          'waste': 1,\n",
      "          'resources': 1,\n",
      "          'vinnie': 1,\n",
      "          'jones': 1,\n",
      "          'mute': 1,\n",
      "          'accomplice': 1,\n",
      "          'nwithout': 1,\n",
      "          'saying': 1,\n",
      "          'word': 1,\n",
      "          'easily': 1,\n",
      "          'charismatic': 1,\n",
      "          'person': 1,\n",
      "          'nlike': 1,\n",
      "          'blast': 1,\n",
      "          'nitrous': 1,\n",
      "          'oxide': 1,\n",
      "          'attacks': 1,\n",
      "          'straightforward': 1,\n",
      "          'zeal': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'minutes': 1,\n",
      "          'onscreen': 1,\n",
      "          'nsomehow': 1,\n",
      "          'manages': 1,\n",
      "          'attract': 1,\n",
      "          'top': 1,\n",
      "          'hollywood': 1,\n",
      "          'acting': 1,\n",
      "          'high': 1,\n",
      "          'concept': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'gussies': 1,\n",
      "          'lots': 1,\n",
      "          'gold': 1,\n",
      "          'hues': 1,\n",
      "          'pleasingly': 1,\n",
      "          'stylized': 1,\n",
      "          'action': 1,\n",
      "          'sell': 1,\n",
      "          'proverbial': 1,\n",
      "          'hotcakes': 1,\n",
      "          'nevery': 1,\n",
      "          'clever': 1,\n",
      "          'happens': 1,\n",
      "          'overtly': 1,\n",
      "          'wrong': 1,\n",
      "          'jerks': 1,\n",
      "          'realizing': 1,\n",
      "          'youre': 1,\n",
      "          'watching': 1,\n",
      "          'innovative': 1,\n",
      "          'usage': 1,\n",
      "          'black': 1,\n",
      "          'lighting': 1,\n",
      "          'goes': 1,\n",
      "          'novelty': 1,\n",
      "          'part': 1,\n",
      "          'extremely': 1,\n",
      "          'feeble': 1,\n",
      "          'attempt': 1,\n",
      "          'humor': 1,\n",
      "          'asian': 1,\n",
      "          'repeatedly': 1,\n",
      "          'failing': 1,\n",
      "          'drivers': 1,\n",
      "          'test': 1,\n",
      "          'nimagine': 1,\n",
      "          'yuks': 1,\n",
      "          'segment': 1,\n",
      "          'thieves': 1,\n",
      "          'shows': 1,\n",
      "          'another': 1,\n",
      "          'cool': 1,\n",
      "          'fake': 1,\n",
      "          'fingerprint': 1,\n",
      "          'trick': 1,\n",
      "          'countered': 1,\n",
      "          'lame': 1,\n",
      "          'semisubplot': 1,\n",
      "          'bunch': 1,\n",
      "          'heroin': 1,\n",
      "          'trunk': 1,\n",
      "          'ramifications': 1,\n",
      "          'never': 1,\n",
      "          'explored': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'ridiculousness': 1,\n",
      "          'cops': 1,\n",
      "          'actually': 1,\n",
      "          'shoot': 1,\n",
      "          'fleeing': 1,\n",
      "          'nnot': 1,\n",
      "          'stupid': 1,\n",
      "          'nthis': 1,\n",
      "          'pretty': 1,\n",
      "          'tepid': 1,\n",
      "          'chases': 1,\n",
      "          'strung': 1,\n",
      "          'enough': 1,\n",
      "          'character': 1,\n",
      "          'interaction': 1,\n",
      "          'move': 1,\n",
      "          'along': 1,\n",
      "          'aptly': 1,\n",
      "          'describes': 1,\n",
      "          'itll': 1,\n",
      "          'take': 1,\n",
      "          'marginally': 1,\n",
      "          'entertaining': 1,\n",
      "          'memory': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'robicheaux': 5,\n",
      "          'alec': 4,\n",
      "          'baldwin': 4,\n",
      "          'want': 4,\n",
      "          'butterfly': 4,\n",
      "          'nthe': 4,\n",
      "          'wife': 4,\n",
      "          'n': 4,\n",
      "          'rating': 3,\n",
      "          'movies': 3,\n",
      "          'see': 3,\n",
      "          'teri': 3,\n",
      "          'hatcher': 3,\n",
      "          'nand': 3,\n",
      "          'scene': 3,\n",
      "          'plane': 3,\n",
      "          'little': 3,\n",
      "          'also': 3,\n",
      "          'guy': 3,\n",
      "          'think': 2,\n",
      "          'movie': 2,\n",
      "          'pg': 2,\n",
      "          'us': 2,\n",
      "          'prisoners': 2,\n",
      "          'roberts': 2,\n",
      "          'gangsters': 2,\n",
      "          'plots': 2,\n",
      "          'really': 2,\n",
      "          'naked': 2,\n",
      "          'youre': 2,\n",
      "          'going': 2,\n",
      "          'still': 2,\n",
      "          'show': 2,\n",
      "          'nno': 2,\n",
      "          'dave': 2,\n",
      "          'whos': 2,\n",
      "          'trying': 2,\n",
      "          'boat': 2,\n",
      "          'dont': 2,\n",
      "          'misery': 2,\n",
      "          'get': 2,\n",
      "          'hero': 2,\n",
      "          'good': 2,\n",
      "          'probably': 2,\n",
      "          'getting': 2,\n",
      "          'believable': 2,\n",
      "          'womanabusing': 2,\n",
      "          'bad': 2,\n",
      "          'knows': 2,\n",
      "          'box': 2,\n",
      "          'lois': 2,\n",
      "          'day': 2,\n",
      "          'first': 1,\n",
      "          'foremost': 1,\n",
      "          'comes': 1,\n",
      "          'grief': 1,\n",
      "          'hands': 1,\n",
      "          'given': 1,\n",
      "          'nfor': 1,\n",
      "          'havent': 1,\n",
      "          'read': 1,\n",
      "          'james': 1,\n",
      "          'lee': 1,\n",
      "          'burke': 1,\n",
      "          'novel': 1,\n",
      "          'heavens': 1,\n",
      "          'based': 1,\n",
      "          'rabidly': 1,\n",
      "          'go': 1,\n",
      "          'buy': 1,\n",
      "          'tickets': 1,\n",
      "          'featuring': 1,\n",
      "          'combined': 1,\n",
      "          'talents': 1,\n",
      "          'eric': 1,\n",
      "          'feel': 1,\n",
      "          'vaguely': 1,\n",
      "          'depressed': 1,\n",
      "          'notion': 1,\n",
      "          'swamps': 1,\n",
      "          'louisiana': 1,\n",
      "          'accents': 1,\n",
      "          'subplots': 1,\n",
      "          'well': 1,\n",
      "          'one': 1,\n",
      "          'worry': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'nhopeful': 1,\n",
      "          'nwell': 1,\n",
      "          'let': 1,\n",
      "          'share': 1,\n",
      "          'moment': 1,\n",
      "          'sheer': 1,\n",
      "          'panic': 1,\n",
      "          'cold': 1,\n",
      "          'enervation': 1,\n",
      "          'big': 1,\n",
      "          'letdown': 1,\n",
      "          'semirobed': 1,\n",
      "          'purrs': 1,\n",
      "          'nbutterfly': 1,\n",
      "          'ni': 1,\n",
      "          'asked': 1,\n",
      "          'hit': 1,\n",
      "          'snipped': 1,\n",
      "          'ndamn': 1,\n",
      "          'godless': 1,\n",
      "          'nwe': 1,\n",
      "          'goddamn': 1,\n",
      "          'nso': 1,\n",
      "          'nforget': 1,\n",
      "          'nokay': 1,\n",
      "          'nnow': 1,\n",
      "          'nheavens': 1,\n",
      "          'exalchoholic': 1,\n",
      "          'excop': 1,\n",
      "          'discover': 1,\n",
      "          'life': 1,\n",
      "          'anew': 1,\n",
      "          'running': 1,\n",
      "          'bait': 1,\n",
      "          'shop': 1,\n",
      "          'hire': 1,\n",
      "          'business': 1,\n",
      "          'loving': 1,\n",
      "          'downtoearth': 1,\n",
      "          'annie': 1,\n",
      "          'kelly': 1,\n",
      "          'lynch': 1,\n",
      "          'neverything': 1,\n",
      "          'dull': 1,\n",
      "          'hunky': 1,\n",
      "          'dory': 1,\n",
      "          'carrying': 1,\n",
      "          'illegal': 1,\n",
      "          'immigrants': 1,\n",
      "          'crashes': 1,\n",
      "          'almost': 1,\n",
      "          'ontop': 1,\n",
      "          'couple': 1,\n",
      "          'theyre': 1,\n",
      "          'nosedives': 1,\n",
      "          'water': 1,\n",
      "          'sinks': 1,\n",
      "          'wreckage': 1,\n",
      "          'rescues': 1,\n",
      "          'pixiefaced': 1,\n",
      "          'salvadoran': 1,\n",
      "          'girl': 1,\n",
      "          'immediately': 1,\n",
      "          'decide': 1,\n",
      "          'adopt': 1,\n",
      "          'nwhat': 1,\n",
      "          'realise': 1,\n",
      "          'planes': 1,\n",
      "          'pilot': 1,\n",
      "          'drug': 1,\n",
      "          'dealer': 1,\n",
      "          'sabotaged': 1,\n",
      "          'latters': 1,\n",
      "          'erstwhile': 1,\n",
      "          'colleagues': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'predictably': 1,\n",
      "          'advice': 1,\n",
      "          'wellmeaning': 1,\n",
      "          'dea': 1,\n",
      "          'agent': 1,\n",
      "          'two': 1,\n",
      "          'rough': 1,\n",
      "          'begins': 1,\n",
      "          'poking': 1,\n",
      "          'nose': 1,\n",
      "          'belong': 1,\n",
      "          'know': 1,\n",
      "          'man': 1,\n",
      "          'deserves': 1,\n",
      "          'hes': 1,\n",
      "          'question': 1,\n",
      "          'whether': 1,\n",
      "          'dragged': 1,\n",
      "          'along': 1,\n",
      "          'ride': 1,\n",
      "          'tedious': 1,\n",
      "          'meandering': 1,\n",
      "          'yet': 1,\n",
      "          'utterly': 1,\n",
      "          'suspenseless': 1,\n",
      "          'plot': 1,\n",
      "          'unlovable': 1,\n",
      "          'guide': 1,\n",
      "          'nas': 1,\n",
      "          'fat': 1,\n",
      "          'seriously': 1,\n",
      "          'svelte': 1,\n",
      "          'thinking': 1,\n",
      "          'mans': 1,\n",
      "          'hunt': 1,\n",
      "          'red': 1,\n",
      "          'october': 1,\n",
      "          'outofshape': 1,\n",
      "          'doesnt': 1,\n",
      "          'look': 1,\n",
      "          'rooftop': 1,\n",
      "          'chasing': 1,\n",
      "          'nhes': 1,\n",
      "          'unconvincing': 1,\n",
      "          'dramatic': 1,\n",
      "          'moments': 1,\n",
      "          'acting': 1,\n",
      "          'far': 1,\n",
      "          'tell': 1,\n",
      "          'steven': 1,\n",
      "          'segallike': 1,\n",
      "          'economy': 1,\n",
      "          'expression': 1,\n",
      "          'nthreequarters': 1,\n",
      "          'way': 1,\n",
      "          'waiting': 1,\n",
      "          'next': 1,\n",
      "          'bar': 1,\n",
      "          'contemplates': 1,\n",
      "          'succumbing': 1,\n",
      "          'temptation': 1,\n",
      "          'whiskey': 1,\n",
      "          'bottle': 1,\n",
      "          'drunk': 1,\n",
      "          'beating': 1,\n",
      "          'someone': 1,\n",
      "          'beaten': 1,\n",
      "          'youll': 1,\n",
      "          'beat': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'mary': 1,\n",
      "          'stuart': 1,\n",
      "          'masterson': 1,\n",
      "          'kind': 1,\n",
      "          'wonderful': 1,\n",
      "          'fried': 1,\n",
      "          'green': 1,\n",
      "          'tomatoes': 1,\n",
      "          'benny': 1,\n",
      "          'joon': 1,\n",
      "          'cast': 1,\n",
      "          'downandout': 1,\n",
      "          'stripper': 1,\n",
      "          'fingers': 1,\n",
      "          'broken': 1,\n",
      "          'quite': 1,\n",
      "          'breath': 1,\n",
      "          'fresh': 1,\n",
      "          'air': 1,\n",
      "          'right': 1,\n",
      "          'mix': 1,\n",
      "          'cynicism': 1,\n",
      "          'warmth': 1,\n",
      "          'insecurity': 1,\n",
      "          'humour': 1,\n",
      "          'endearing': 1,\n",
      "          'character': 1,\n",
      "          'neric': 1,\n",
      "          'bubba': 1,\n",
      "          'rocque': 1,\n",
      "          'always': 1,\n",
      "          'final': 1,\n",
      "          'analysis': 1,\n",
      "          'coincidentally': 1,\n",
      "          'directed': 1,\n",
      "          'phil': 1,\n",
      "          'joanou': 1,\n",
      "          'lest': 1,\n",
      "          'forget': 1,\n",
      "          'hatchers': 1,\n",
      "          'role': 1,\n",
      "          'rather': 1,\n",
      "          'wellpublicised': 1,\n",
      "          'paid': 1,\n",
      "          'vacation': 1,\n",
      "          'playing': 1,\n",
      "          'lane': 1,\n",
      "          'tvs': 1,\n",
      "          'adventures': 1,\n",
      "          'clark': 1,\n",
      "          'nshe': 1,\n",
      "          'totally': 1,\n",
      "          'ridiculous': 1,\n",
      "          'rocques': 1,\n",
      "          'manipulative': 1,\n",
      "          'seductive': 1,\n",
      "          'cajun': 1,\n",
      "          'coming': 1,\n",
      "          'across': 1,\n",
      "          'devious': 1,\n",
      "          'mildly': 1,\n",
      "          'disgruntled': 1,\n",
      "          'au': 1,\n",
      "          'pair': 1,\n",
      "          'back': 1,\n",
      "          'employer': 1,\n",
      "          'hasnt': 1,\n",
      "          'giving': 1,\n",
      "          'enough': 1,\n",
      "          'days': 1,\n",
      "          'nits': 1,\n",
      "          'safe': 1,\n",
      "          'say': 1,\n",
      "          'job': 1,\n",
      "          'beckons': 1,\n",
      "          'end': 1,\n",
      "          'none': 1,\n",
      "          'worth': 1,\n",
      "          '2': 1,\n",
      "          'hrs': 1,\n",
      "          '12': 1,\n",
      "          'minutes': 1,\n",
      "          'personal': 1,\n",
      "          'flying': 1,\n",
      "          'inkpots': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'video': 1,\n",
      "          'creaky': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'im': 3,\n",
      "          'talent': 3,\n",
      "          'like': 3,\n",
      "          'adam': 2,\n",
      "          'first': 2,\n",
      "          'laugh': 2,\n",
      "          'nand': 2,\n",
      "          'comedy': 2,\n",
      "          'williams': 2,\n",
      "          'ni': 2,\n",
      "          'film': 2,\n",
      "          'waterboy': 2,\n",
      "          'willing': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'half': 2,\n",
      "          'hour': 2,\n",
      "          'also': 2,\n",
      "          'even': 2,\n",
      "          'actually': 2,\n",
      "          'nearly': 2,\n",
      "          'team': 2,\n",
      "          'winning': 2,\n",
      "          'getting': 2,\n",
      "          'keep': 2,\n",
      "          'show': 2,\n",
      "          'amazing': 1,\n",
      "          'comedian': 1,\n",
      "          'funniest': 1,\n",
      "          'standup': 1,\n",
      "          'around': 1,\n",
      "          'completely': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'movies': 1,\n",
      "          'ntake': 1,\n",
      "          'sandler': 1,\n",
      "          'non': 1,\n",
      "          'basis': 1,\n",
      "          'two': 1,\n",
      "          'cds': 1,\n",
      "          'theyre': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'hell': 1,\n",
      "          'happened': 1,\n",
      "          'nhes': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'hit': 1,\n",
      "          'since': 1,\n",
      "          'robin': 1,\n",
      "          'nbut': 1,\n",
      "          'put': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'isnt': 1,\n",
      "          'kind': 1,\n",
      "          'enjoyed': 1,\n",
      "          'happy': 1,\n",
      "          'gilmore': 1,\n",
      "          'thought': 1,\n",
      "          'warranted': 1,\n",
      "          'marginal': 1,\n",
      "          'recommendation': 1,\n",
      "          'latest': 1,\n",
      "          'funny': 1,\n",
      "          'root': 1,\n",
      "          'canal': 1,\n",
      "          'nseriously': 1,\n",
      "          'wager': 1,\n",
      "          'laughs': 1,\n",
      "          'saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'found': 1,\n",
      "          'depressing': 1,\n",
      "          'comedic': 1,\n",
      "          'generated': 1,\n",
      "          'one': 1,\n",
      "          'smile': 1,\n",
      "          'scenes': 1,\n",
      "          'emotional': 1,\n",
      "          'abuse': 1,\n",
      "          'towards': 1,\n",
      "          'adams': 1,\n",
      "          'character': 1,\n",
      "          'bobby': 1,\n",
      "          'boucher': 1,\n",
      "          'cruel': 1,\n",
      "          'football': 1,\n",
      "          'players': 1,\n",
      "          'disturbed': 1,\n",
      "          'mother': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'world': 1,\n",
      "          'coming': 1,\n",
      "          'ngranted': 1,\n",
      "          'gets': 1,\n",
      "          'rolling': 1,\n",
      "          'mild': 1,\n",
      "          'chuckles': 1,\n",
      "          'throughout': 1,\n",
      "          'admit': 1,\n",
      "          'laughing': 1,\n",
      "          'twice': 1,\n",
      "          'enough': 1,\n",
      "          'sustain': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'nyoure': 1,\n",
      "          'familiar': 1,\n",
      "          'plot': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'least': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'everyone': 1,\n",
      "          'picks': 1,\n",
      "          'hero': 1,\n",
      "          'shows': 1,\n",
      "          'hidden': 1,\n",
      "          'leads': 1,\n",
      "          'underdog': 1,\n",
      "          'victory': 1,\n",
      "          'champions': 1,\n",
      "          'process': 1,\n",
      "          'respect': 1,\n",
      "          'teammates': 1,\n",
      "          'woman': 1,\n",
      "          'loves': 1,\n",
      "          'believe': 1,\n",
      "          'giving': 1,\n",
      "          'anything': 1,\n",
      "          'away': 1,\n",
      "          'saying': 1,\n",
      "          'sandlers': 1,\n",
      "          'wins': 1,\n",
      "          'nif': 1,\n",
      "          'would': 1,\n",
      "          'feel': 1,\n",
      "          'degree': 1,\n",
      "          'suspense': 1,\n",
      "          'watching': 1,\n",
      "          'god': 1,\n",
      "          'things': 1,\n",
      "          'bomb': 1,\n",
      "          'big': 1,\n",
      "          'banana': 1,\n",
      "          'performances': 1,\n",
      "          'henry': 1,\n",
      "          'winkler': 1,\n",
      "          'insecure': 1,\n",
      "          'coach': 1,\n",
      "          'severely': 1,\n",
      "          'underrated': 1,\n",
      "          'fairuza': 1,\n",
      "          'balk': 1,\n",
      "          'bobbys': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'mean': 1,\n",
      "          'lending': 1,\n",
      "          'talents': 1,\n",
      "          'loftier': 1,\n",
      "          'purpose': 1,\n",
      "          'extremely': 1,\n",
      "          'well': 1,\n",
      "          'given': 1,\n",
      "          'nkudos': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'try': 1,\n",
      "          'follow': 1,\n",
      "          'footsteps': 1,\n",
      "          'veteran': 1,\n",
      "          'comedians': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'made': 1,\n",
      "          'smooth': 1,\n",
      "          'successful': 1,\n",
      "          'transition': 1,\n",
      "          'stage': 1,\n",
      "          'screen': 1,\n",
      "          'nrely': 1,\n",
      "          'actual': 1,\n",
      "          'rather': 1,\n",
      "          'strange': 1,\n",
      "          'voices': 1,\n",
      "          'rude': 1,\n",
      "          'noises': 1,\n",
      "          'make': 1,\n",
      "          'people': 1,\n",
      "          'maybe': 1,\n",
      "          'dramatic': 1,\n",
      "          'might': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'recent': 1,\n",
      "          'truman': 1,\n",
      "          'nwith': 1,\n",
      "          'obvious': 1,\n",
      "          'considerable': 1,\n",
      "          'possesses': 1,\n",
      "          'cant': 1,\n",
      "          'going': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'ni': 7,\n",
      "          'nbut': 6,\n",
      "          'time': 5,\n",
      "          'day': 5,\n",
      "          'nand': 5,\n",
      "          'nthe': 5,\n",
      "          'aliens': 5,\n",
      "          'films': 4,\n",
      "          'independence': 4,\n",
      "          'one': 4,\n",
      "          'like': 4,\n",
      "          'scene': 4,\n",
      "          'jeff': 4,\n",
      "          'even': 3,\n",
      "          'rewatched': 3,\n",
      "          'felt': 3,\n",
      "          'good': 3,\n",
      "          'event': 3,\n",
      "          'kid': 3,\n",
      "          'come': 3,\n",
      "          'couple': 3,\n",
      "          'next': 3,\n",
      "          'see': 3,\n",
      "          'goldblum': 3,\n",
      "          'bill': 3,\n",
      "          'pullman': 3,\n",
      "          'end': 3,\n",
      "          'balls': 3,\n",
      "          'nit': 3,\n",
      "          'theyre': 3,\n",
      "          'computer': 3,\n",
      "          'get': 3,\n",
      "          'ones': 3,\n",
      "          'example': 2,\n",
      "          'still': 2,\n",
      "          'came': 2,\n",
      "          'would': 2,\n",
      "          'star': 2,\n",
      "          'wars': 2,\n",
      "          'seen': 2,\n",
      "          'first': 2,\n",
      "          'saw': 2,\n",
      "          'n': 2,\n",
      "          'kids': 2,\n",
      "          'becomes': 2,\n",
      "          'annoying': 2,\n",
      "          'little': 2,\n",
      "          'big': 2,\n",
      "          'nthere': 2,\n",
      "          'many': 2,\n",
      "          'plot': 2,\n",
      "          'arent': 2,\n",
      "          'youll': 2,\n",
      "          'judd': 2,\n",
      "          'hirsch': 2,\n",
      "          'spiner': 2,\n",
      "          'dog': 2,\n",
      "          'nnow': 2,\n",
      "          'alien': 2,\n",
      "          'ship': 2,\n",
      "          'smith': 2,\n",
      "          'straight': 2,\n",
      "          'mean': 2,\n",
      "          'striptease': 2,\n",
      "          'octopus': 2,\n",
      "          'men': 2,\n",
      "          'freaking': 2,\n",
      "          'interesting': 2,\n",
      "          'stupid': 2,\n",
      "          'nthey': 2,\n",
      "          'also': 2,\n",
      "          'comes': 2,\n",
      "          'attack': 2,\n",
      "          'decides': 2,\n",
      "          'white': 2,\n",
      "          'house': 2,\n",
      "          'dont': 2,\n",
      "          'care': 2,\n",
      "          'hes': 2,\n",
      "          'think': 2,\n",
      "          'pilot': 2,\n",
      "          'survive': 2,\n",
      "          'job': 2,\n",
      "          'great': 2,\n",
      "          'indy': 2,\n",
      "          'according': 1,\n",
      "          'popular': 1,\n",
      "          'opinion': 1,\n",
      "          'greatness': 1,\n",
      "          'determined': 1,\n",
      "          'ntake': 1,\n",
      "          'casablanca': 1,\n",
      "          'ngreat': 1,\n",
      "          'today': 1,\n",
      "          'nits': 1,\n",
      "          'powerful': 1,\n",
      "          'romantic': 1,\n",
      "          'tragic': 1,\n",
      "          'nanother': 1,\n",
      "          'healthy': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'gross': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          '3': 1,\n",
      "          'billion': 1,\n",
      "          'times': 1,\n",
      "          'video': 1,\n",
      "          'number': 1,\n",
      "          'hit': 1,\n",
      "          '1996': 1,\n",
      "          'kinda': 1,\n",
      "          'wasnt': 1,\n",
      "          'cool': 1,\n",
      "          'liked': 1,\n",
      "          'original': 1,\n",
      "          'view': 1,\n",
      "          'basically': 1,\n",
      "          'escape': 1,\n",
      "          'cheated': 1,\n",
      "          'nthus': 1,\n",
      "          'curse': 1,\n",
      "          'nowhere': 1,\n",
      "          'makes': 1,\n",
      "          'everybody': 1,\n",
      "          'happy': 1,\n",
      "          'except': 1,\n",
      "          'critics': 1,\n",
      "          'situation': 1,\n",
      "          'wait': 1,\n",
      "          'nwell': 1,\n",
      "          'analogy': 1,\n",
      "          'look': 1,\n",
      "          'cooler': 1,\n",
      "          'screen': 1,\n",
      "          'insulted': 1,\n",
      "          'whole': 1,\n",
      "          'gaping': 1,\n",
      "          'craters': 1,\n",
      "          'sure': 1,\n",
      "          'comedy': 1,\n",
      "          'hokey': 1,\n",
      "          'drama': 1,\n",
      "          'none': 1,\n",
      "          'hilariously': 1,\n",
      "          'nebbish': 1,\n",
      "          'bunch': 1,\n",
      "          'military': 1,\n",
      "          'uptight': 1,\n",
      "          'guys': 1,\n",
      "          'walking': 1,\n",
      "          'around': 1,\n",
      "          'saying': 1,\n",
      "          'corny': 1,\n",
      "          'lines': 1,\n",
      "          'worst': 1,\n",
      "          'brent': 1,\n",
      "          'sayinig': 1,\n",
      "          'something': 1,\n",
      "          'innocently': 1,\n",
      "          'funny': 1,\n",
      "          'barked': 1,\n",
      "          'junkyard': 1,\n",
      "          'gives': 1,\n",
      "          'unitentionally': 1,\n",
      "          'funniest': 1,\n",
      "          'speech': 1,\n",
      "          'since': 1,\n",
      "          'glen': 1,\n",
      "          'glenda': 1,\n",
      "          'problem': 1,\n",
      "          'process': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'everyone': 1,\n",
      "          'shows': 1,\n",
      "          'plays': 1,\n",
      "          'safe': 1,\n",
      "          'everywhere': 1,\n",
      "          'throws': 1,\n",
      "          'ton': 1,\n",
      "          'action': 1,\n",
      "          'borrowed': 1,\n",
      "          'superior': 1,\n",
      "          'chase': 1,\n",
      "          'isnt': 1,\n",
      "          'devils': 1,\n",
      "          'den': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'demi': 1,\n",
      "          'moores': 1,\n",
      "          'breasts': 1,\n",
      "          'ntheyre': 1,\n",
      "          'boring': 1,\n",
      "          '2001': 1,\n",
      "          'didnt': 1,\n",
      "          'nbasically': 1,\n",
      "          'bmovie': 1,\n",
      "          '50s': 1,\n",
      "          'earth': 1,\n",
      "          'wonder': 1,\n",
      "          'hostile': 1,\n",
      "          'peaceful': 1,\n",
      "          'nokay': 1,\n",
      "          'topic': 1,\n",
      "          'handled': 1,\n",
      "          'greatly': 1,\n",
      "          'somehow': 1,\n",
      "          'geek': 1,\n",
      "          'figure': 1,\n",
      "          'using': 1,\n",
      "          'satellites': 1,\n",
      "          'countdown': 1,\n",
      "          'destruction': 1,\n",
      "          'nyep': 1,\n",
      "          'nthese': 1,\n",
      "          'heavily': 1,\n",
      "          'armed': 1,\n",
      "          'use': 1,\n",
      "          'kind': 1,\n",
      "          'later': 1,\n",
      "          'president': 1,\n",
      "          'whos': 1,\n",
      "          'wimp': 1,\n",
      "          'nice': 1,\n",
      "          'belligerent': 1,\n",
      "          'hell': 1,\n",
      "          'stay': 1,\n",
      "          'covered': 1,\n",
      "          'bob': 1,\n",
      "          'dole': 1,\n",
      "          'inject': 1,\n",
      "          'sodium': 1,\n",
      "          'pentathol': 1,\n",
      "          'nlater': 1,\n",
      "          'wants': 1,\n",
      "          'fly': 1,\n",
      "          'impeachment': 1,\n",
      "          'guy': 1,\n",
      "          'nhes': 1,\n",
      "          'senile': 1,\n",
      "          'reagan': 1,\n",
      "          'pot': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'cocky': 1,\n",
      "          'person': 1,\n",
      "          'counterattack': 1,\n",
      "          'second': 1,\n",
      "          'moses': 1,\n",
      "          'leading': 1,\n",
      "          'children': 1,\n",
      "          'elusive': 1,\n",
      "          'area': 1,\n",
      "          '51': 1,\n",
      "          'sign': 1,\n",
      "          'brave': 1,\n",
      "          'nhis': 1,\n",
      "          'girlfriends': 1,\n",
      "          'stripper': 1,\n",
      "          'sharing': 1,\n",
      "          'subplot': 1,\n",
      "          'son': 1,\n",
      "          'ncome': 1,\n",
      "          'fighter': 1,\n",
      "          'boyfriendsoontobe': 1,\n",
      "          'fiance': 1,\n",
      "          'quit': 1,\n",
      "          'respectable': 1,\n",
      "          'long': 1,\n",
      "          'john': 1,\n",
      "          'silvers': 1,\n",
      "          'nshes': 1,\n",
      "          'proud': 1,\n",
      "          'lucky': 1,\n",
      "          'igniting': 1,\n",
      "          'l': 1,\n",
      "          'well': 1,\n",
      "          'narrowly': 1,\n",
      "          'survives': 1,\n",
      "          'bright': 1,\n",
      "          'spots': 1,\n",
      "          'tossed': 1,\n",
      "          'enough': 1,\n",
      "          'old': 1,\n",
      "          'homages': 1,\n",
      "          'keep': 1,\n",
      "          'laughing': 1,\n",
      "          'best': 1,\n",
      "          'nicely': 1,\n",
      "          'named': 1,\n",
      "          'david': 1,\n",
      "          'turns': 1,\n",
      "          'picture': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hal': 1,\n",
      "          'says': 1,\n",
      "          'morning': 1,\n",
      "          'dave': 1,\n",
      "          'played': 1,\n",
      "          'r': 1,\n",
      "          'e': 1,\n",
      "          'world': 1,\n",
      "          'know': 1,\n",
      "          'feel': 1,\n",
      "          'fine': 1,\n",
      "          'beginning': 1,\n",
      "          'steals': 1,\n",
      "          'actually': 1,\n",
      "          'acting': 1,\n",
      "          'stereotype': 1,\n",
      "          'loved': 1,\n",
      "          'man': 1,\n",
      "          'anyway': 1,\n",
      "          'real': 1,\n",
      "          'subtle': 1,\n",
      "          'comic': 1,\n",
      "          'moments': 1,\n",
      "          'nwill': 1,\n",
      "          'gets': 1,\n",
      "          'way': 1,\n",
      "          'oneliners': 1,\n",
      "          'play': 1,\n",
      "          'execept': 1,\n",
      "          'towards': 1,\n",
      "          'two': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'aiming': 1,\n",
      "          'crowd': 1,\n",
      "          'pleaser': 1,\n",
      "          'thats': 1,\n",
      "          'months': 1,\n",
      "          'move': 1,\n",
      "          'intaking': 1,\n",
      "          'measure': 1,\n",
      "          'least': 1,\n",
      "          'last': 1,\n",
      "          'lifetime': 1,\n",
      "          'nthis': 1,\n",
      "          'short': 1,\n",
      "          'batteries': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sphere': 5,\n",
      "          'crichton': 4,\n",
      "          'first': 4,\n",
      "          'hoffman': 4,\n",
      "          'way': 4,\n",
      "          'spheres': 3,\n",
      "          'ni': 3,\n",
      "          'movie': 3,\n",
      "          'anything': 3,\n",
      "          'wag': 3,\n",
      "          'dog': 3,\n",
      "          'time': 3,\n",
      "          'ocean': 3,\n",
      "          'make': 3,\n",
      "          'kind': 2,\n",
      "          'may': 2,\n",
      "          'end': 2,\n",
      "          'one': 2,\n",
      "          'setup': 2,\n",
      "          'mindless': 2,\n",
      "          'ending': 2,\n",
      "          'theres': 2,\n",
      "          'novel': 2,\n",
      "          'better': 2,\n",
      "          'picture': 2,\n",
      "          'nsphere': 2,\n",
      "          'director': 2,\n",
      "          'alist': 2,\n",
      "          'cast': 2,\n",
      "          'another': 2,\n",
      "          'theaters': 2,\n",
      "          'look': 2,\n",
      "          'nthe': 2,\n",
      "          'last': 2,\n",
      "          'film': 2,\n",
      "          'years': 2,\n",
      "          'starts': 2,\n",
      "          'little': 2,\n",
      "          'like': 2,\n",
      "          'contact': 2,\n",
      "          'event': 2,\n",
      "          'used': 2,\n",
      "          'good': 2,\n",
      "          'effect': 2,\n",
      "          'action': 2,\n",
      "          'early': 2,\n",
      "          'take': 2,\n",
      "          'nthis': 2,\n",
      "          'device': 2,\n",
      "          'worst': 2,\n",
      "          'left': 2,\n",
      "          'theater': 2,\n",
      "          'promise': 2,\n",
      "          'norman': 2,\n",
      "          'government': 2,\n",
      "          'space': 2,\n",
      "          'ship': 2,\n",
      "          'stone': 2,\n",
      "          'harry': 2,\n",
      "          'samuel': 2,\n",
      "          'l': 2,\n",
      "          'jackson': 2,\n",
      "          'liev': 2,\n",
      "          'schreiber': 2,\n",
      "          'technology': 2,\n",
      "          'peter': 2,\n",
      "          'coyote': 2,\n",
      "          'plot': 2,\n",
      "          'nthen': 2,\n",
      "          'thats': 2,\n",
      "          'titanic': 2,\n",
      "          'levinson': 2,\n",
      "          'characters': 2,\n",
      "          'nit': 2,\n",
      "          'isnt': 2,\n",
      "          'less': 2,\n",
      "          'trying': 1,\n",
      "          'satisfy': 1,\n",
      "          'every': 1,\n",
      "          'viewer': 1,\n",
      "          'possible': 1,\n",
      "          'pleasing': 1,\n",
      "          'naction': 1,\n",
      "          'lovers': 1,\n",
      "          'bored': 1,\n",
      "          'see': 1,\n",
      "          'interminably': 1,\n",
      "          'boring': 1,\n",
      "          'naudience': 1,\n",
      "          'members': 1,\n",
      "          'crave': 1,\n",
      "          'intellectual': 1,\n",
      "          'fare': 1,\n",
      "          'disgusted': 1,\n",
      "          'films': 1,\n",
      "          'sudden': 1,\n",
      "          'collapse': 1,\n",
      "          'storytelling': 1,\n",
      "          'insulting': 1,\n",
      "          'copout': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'maybe': 1,\n",
      "          'small': 1,\n",
      "          'cadre': 1,\n",
      "          'filmgoers': 1,\n",
      "          'appreciate': 1,\n",
      "          'dubious': 1,\n",
      "          'charms': 1,\n",
      "          'im': 1,\n",
      "          'among': 1,\n",
      "          'sincerely': 1,\n",
      "          'hope': 1,\n",
      "          'longer': 1,\n",
      "          'read': 1,\n",
      "          'either': 1,\n",
      "          'michael': 1,\n",
      "          'john': 1,\n",
      "          'grisham': 1,\n",
      "          'finished': 1,\n",
      "          'motion': 1,\n",
      "          'product': 1,\n",
      "          'go': 1,\n",
      "          'hard': 1,\n",
      "          'understand': 1,\n",
      "          'rights': 1,\n",
      "          'optioned': 1,\n",
      "          'class': 1,\n",
      "          'mess': 1,\n",
      "          'topline': 1,\n",
      "          'create': 1,\n",
      "          'nwith': 1,\n",
      "          'expectations': 1,\n",
      "          'high': 1,\n",
      "          'could': 1,\n",
      "          'considering': 1,\n",
      "          'barry': 1,\n",
      "          'levinsondustin': 1,\n",
      "          'collaboration': 1,\n",
      "          'excellent': 1,\n",
      "          'still': 1,\n",
      "          'playing': 1,\n",
      "          'nsomething': 1,\n",
      "          'bad': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'bigname': 1,\n",
      "          'bigbudget': 1,\n",
      "          'displayed': 1,\n",
      "          'level': 1,\n",
      "          'ineptitude': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'received': 1,\n",
      "          'amalgamation': 1,\n",
      "          'james': 1,\n",
      "          'camerons': 1,\n",
      "          'abyss': 1,\n",
      "          'somewhere': 1,\n",
      "          'along': 1,\n",
      "          'collapses': 1,\n",
      "          'cellar': 1,\n",
      "          'recent': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'effort': 1,\n",
      "          'horizon': 1,\n",
      "          'nscience': 1,\n",
      "          'philosophy': 1,\n",
      "          'hour': 1,\n",
      "          'give': 1,\n",
      "          'confusing': 1,\n",
      "          'sequences': 1,\n",
      "          'nattempts': 1,\n",
      "          'characterization': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'nintelligent': 1,\n",
      "          'writing': 1,\n",
      "          'evident': 1,\n",
      "          'replaced': 1,\n",
      "          'hackneyed': 1,\n",
      "          'drivel': 1,\n",
      "          'nspecial': 1,\n",
      "          'effects': 1,\n",
      "          'plotline': 1,\n",
      "          'devolves': 1,\n",
      "          'incoherent': 1,\n",
      "          'silliness': 1,\n",
      "          'nbut': 1,\n",
      "          'preparation': 1,\n",
      "          'inexcusably': 1,\n",
      "          'awful': 1,\n",
      "          'timehonored': 1,\n",
      "          'deus': 1,\n",
      "          'ex': 1,\n",
      "          'machina': 1,\n",
      "          'feeling': 1,\n",
      "          'cheated': 1,\n",
      "          'screenwriters': 1,\n",
      "          'chosen': 1,\n",
      "          'nthere': 1,\n",
      "          'nwere': 1,\n",
      "          'introduced': 1,\n",
      "          'goodman': 1,\n",
      "          'dustin': 1,\n",
      "          'psychologist': 1,\n",
      "          'wrote': 1,\n",
      "          '35': 1,\n",
      "          '000': 1,\n",
      "          'report': 1,\n",
      "          'crashed': 1,\n",
      "          'discovered': 1,\n",
      "          'nwhen': 1,\n",
      "          'found': 1,\n",
      "          'middle': 1,\n",
      "          'nowhere': 1,\n",
      "          '1000': 1,\n",
      "          'feet': 1,\n",
      "          'surface': 1,\n",
      "          'pacific': 1,\n",
      "          'called': 1,\n",
      "          'part': 1,\n",
      "          'welcoming': 1,\n",
      "          'committee': 1,\n",
      "          'non': 1,\n",
      "          'team': 1,\n",
      "          'beth': 1,\n",
      "          'halperin': 1,\n",
      "          'sharon': 1,\n",
      "          'biochemist': 1,\n",
      "          'student': 1,\n",
      "          'lover': 1,\n",
      "          'adams': 1,\n",
      "          'mathematician': 1,\n",
      "          'earned': 1,\n",
      "          'doctorate': 1,\n",
      "          'age': 1,\n",
      "          '18': 1,\n",
      "          'ted': 1,\n",
      "          'fielding': 1,\n",
      "          'astrophysicist': 1,\n",
      "          'awed': 1,\n",
      "          'opportunity': 1,\n",
      "          'explore': 1,\n",
      "          'alien': 1,\n",
      "          'harold': 1,\n",
      "          'barnes': 1,\n",
      "          'operative': 1,\n",
      "          'charge': 1,\n",
      "          'mission': 1,\n",
      "          'ntogether': 1,\n",
      "          'five': 1,\n",
      "          'descend': 1,\n",
      "          'bowels': 1,\n",
      "          'rendezvous': 1,\n",
      "          'temporary': 1,\n",
      "          'sea': 1,\n",
      "          'base': 1,\n",
      "          'floor': 1,\n",
      "          'attempt': 1,\n",
      "          'nfor': 1,\n",
      "          'fooled': 1,\n",
      "          'thinking': 1,\n",
      "          'going': 1,\n",
      "          'astute': 1,\n",
      "          'approach': 1,\n",
      "          'manmeetsalien': 1,\n",
      "          'situation': 1,\n",
      "          'overall': 1,\n",
      "          'scenario': 1,\n",
      "          'without': 1,\n",
      "          'several': 1,\n",
      "          'twists': 1,\n",
      "          'revelation': 1,\n",
      "          'enormous': 1,\n",
      "          'craft': 1,\n",
      "          'actually': 1,\n",
      "          'american': 1,\n",
      "          'apparently': 1,\n",
      "          'future': 1,\n",
      "          'offer': 1,\n",
      "          'intriguing': 1,\n",
      "          'possibilities': 1,\n",
      "          'right': 1,\n",
      "          'around': 1,\n",
      "          'onehour': 1,\n",
      "          'mark': 1,\n",
      "          'sneak': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'check': 1,\n",
      "          'whatevers': 1,\n",
      "          'virtually': 1,\n",
      "          'nonstop': 1,\n",
      "          'begins': 1,\n",
      "          'script': 1,\n",
      "          'becomes': 1,\n",
      "          'superfluous': 1,\n",
      "          'might': 1,\n",
      "          'acceptable': 1,\n",
      "          'generated': 1,\n",
      "          'legitimate': 1,\n",
      "          'tension': 1,\n",
      "          'instead': 1,\n",
      "          'relies': 1,\n",
      "          'loud': 1,\n",
      "          'overbearing': 1,\n",
      "          'music': 1,\n",
      "          'strange': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'quick': 1,\n",
      "          'cuts': 1,\n",
      "          'things': 1,\n",
      "          'exciting': 1,\n",
      "          'nadditionally': 1,\n",
      "          'none': 1,\n",
      "          'wellformed': 1,\n",
      "          'common': 1,\n",
      "          'failing': 1,\n",
      "          'penned': 1,\n",
      "          'whos': 1,\n",
      "          'interested': 1,\n",
      "          'people': 1,\n",
      "          'viewers': 1,\n",
      "          'dont': 1,\n",
      "          'develop': 1,\n",
      "          'much': 1,\n",
      "          'rooting': 1,\n",
      "          'interest': 1,\n",
      "          'makes': 1,\n",
      "          'sitting': 1,\n",
      "          'frustrating': 1,\n",
      "          'pointless': 1,\n",
      "          'experience': 1,\n",
      "          'nwhat': 1,\n",
      "          'nnot': 1,\n",
      "          'surprisingly': 1,\n",
      "          'energetic': 1,\n",
      "          'performance': 1,\n",
      "          'given': 1,\n",
      "          'person': 1,\n",
      "          'hes': 1,\n",
      "          'walking': 1,\n",
      "          'spouting': 1,\n",
      "          'occasionallywitty': 1,\n",
      "          'dialogue': 1,\n",
      "          'ndustin': 1,\n",
      "          'lively': 1,\n",
      "          'particularly': 1,\n",
      "          'ironic': 1,\n",
      "          'work': 1,\n",
      "          'decade': 1,\n",
      "          'arrived': 1,\n",
      "          'heels': 1,\n",
      "          'best': 1,\n",
      "          'actor': 1,\n",
      "          'nomination': 1,\n",
      "          'nsharon': 1,\n",
      "          'flat': 1,\n",
      "          'ntheir': 1,\n",
      "          'exhibit': 1,\n",
      "          'evidence': 1,\n",
      "          'emotion': 1,\n",
      "          'automatons': 1,\n",
      "          'would': 1,\n",
      "          'effective': 1,\n",
      "          'queen': 1,\n",
      "          'latifa': 1,\n",
      "          'despite': 1,\n",
      "          'getting': 1,\n",
      "          'fifth': 1,\n",
      "          'billing': 1,\n",
      "          'credits': 1,\n",
      "          'ahead': 1,\n",
      "          'boasts': 1,\n",
      "          'least': 1,\n",
      "          'quadruple': 1,\n",
      "          'screen': 1,\n",
      "          'handful': 1,\n",
      "          'lines': 1,\n",
      "          'almost': 1,\n",
      "          'nothing': 1,\n",
      "          'inflate': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'think': 1,\n",
      "          'recognizing': 1,\n",
      "          'uninspired': 1,\n",
      "          'likely': 1,\n",
      "          'chose': 1,\n",
      "          'sort': 1,\n",
      "          'penance': 1,\n",
      "          'lowbudget': 1,\n",
      "          'filmed': 1,\n",
      "          'lengthy': 1,\n",
      "          'preproduction': 1,\n",
      "          'phase': 1,\n",
      "          'nif': 1,\n",
      "          'case': 1,\n",
      "          'forgiveness': 1,\n",
      "          'granted': 1,\n",
      "          'nim': 1,\n",
      "          'inclined': 1,\n",
      "          'favorably': 1,\n",
      "          'upon': 1,\n",
      "          'although': 1,\n",
      "          'enjoyable': 1,\n",
      "          'titles': 1,\n",
      "          'resume': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'levinsondirected': 1,\n",
      "          'disclosure': 1,\n",
      "          'come': 1,\n",
      "          'mind': 1,\n",
      "          'neven': 1,\n",
      "          'butchered': 1,\n",
      "          'adaptation': 1,\n",
      "          'process': 1,\n",
      "          'crichtons': 1,\n",
      "          'credit': 1,\n",
      "          'producer': 1,\n",
      "          'disallows': 1,\n",
      "          'absolution': 1,\n",
      "          'nhe': 1,\n",
      "          'willing': 1,\n",
      "          'participant': 1,\n",
      "          'creative': 1,\n",
      "          'travesty': 1,\n",
      "          'nno': 1,\n",
      "          'wonder': 1,\n",
      "          'released': 1,\n",
      "          'february': 1,\n",
      "          'midst': 1,\n",
      "          'cinematic': 1,\n",
      "          'wasteland': 1,\n",
      "          'deserves': 1,\n",
      "          'get': 1,\n",
      "          'sunk': 1,\n",
      "          'unstoppable': 1,\n",
      "          'plow': 1,\n",
      "          'ninthconsecutive': 1,\n",
      "          'weekend': 1,\n",
      "          'atop': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'heap': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'love': 6,\n",
      "          'shakespeare': 5,\n",
      "          'quality': 4,\n",
      "          'little': 4,\n",
      "          'nthe': 4,\n",
      "          'may': 4,\n",
      "          'queen': 4,\n",
      "          'nhowever': 4,\n",
      "          'well': 4,\n",
      "          'even': 4,\n",
      "          '2': 3,\n",
      "          'good': 3,\n",
      "          'production': 3,\n",
      "          'plot': 3,\n",
      "          'henslowe': 3,\n",
      "          'elizabeth': 3,\n",
      "          'young': 3,\n",
      "          'could': 3,\n",
      "          'actors': 3,\n",
      "          'name': 3,\n",
      "          'nit': 2,\n",
      "          'work': 2,\n",
      "          'thin': 2,\n",
      "          'rush': 2,\n",
      "          'theatres': 2,\n",
      "          'theatre': 2,\n",
      "          'judi': 2,\n",
      "          'dench': 2,\n",
      "          'enough': 2,\n",
      "          'much': 2,\n",
      "          'long': 2,\n",
      "          'set': 2,\n",
      "          'events': 2,\n",
      "          'life': 2,\n",
      "          'show': 2,\n",
      "          'nso': 2,\n",
      "          'mr': 2,\n",
      "          'william': 2,\n",
      "          'fiennes': 2,\n",
      "          'writers': 2,\n",
      "          'block': 2,\n",
      "          'fact': 2,\n",
      "          'nhe': 2,\n",
      "          'romeo': 2,\n",
      "          'seem': 2,\n",
      "          'put': 2,\n",
      "          'paltrow': 2,\n",
      "          'nothing': 2,\n",
      "          'first': 2,\n",
      "          'credited': 2,\n",
      "          'scenes': 2,\n",
      "          'rather': 2,\n",
      "          'breathtaking': 2,\n",
      "          'acting': 2,\n",
      "          'entertaining': 2,\n",
      "          'poor': 2,\n",
      "          'often': 2,\n",
      "          'save': 2,\n",
      "          'real': 2,\n",
      "          'nand': 2,\n",
      "          'isnt': 2,\n",
      "          'quite': 1,\n",
      "          'possibly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'period': 1,\n",
      "          'piece': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'humorous': 1,\n",
      "          'romantic': 1,\n",
      "          'unique': 1,\n",
      "          'blend': 1,\n",
      "          'successfully': 1,\n",
      "          'entertain': 1,\n",
      "          'audience': 1,\n",
      "          'nearly': 1,\n",
      "          'half': 1,\n",
      "          'hours': 1,\n",
      "          'occupies': 1,\n",
      "          'nthat': 1,\n",
      "          'however': 1,\n",
      "          'say': 1,\n",
      "          'anything': 1,\n",
      "          'sort': 1,\n",
      "          'nshakespeare': 1,\n",
      "          'incredibly': 1,\n",
      "          'cheap': 1,\n",
      "          'illusion': 1,\n",
      "          'truly': 1,\n",
      "          'pans': 1,\n",
      "          'original': 1,\n",
      "          'finest': 1,\n",
      "          'sign': 1,\n",
      "          'looking': 1,\n",
      "          'back': 1,\n",
      "          'seems': 1,\n",
      "          'predictable': 1,\n",
      "          'carried': 1,\n",
      "          'portrayal': 1,\n",
      "          'people': 1,\n",
      "          'revere': 1,\n",
      "          'history': 1,\n",
      "          'books': 1,\n",
      "          'nphilip': 1,\n",
      "          'geoffrey': 1,\n",
      "          'owns': 1,\n",
      "          '1': 1,\n",
      "          'london': 1,\n",
      "          'peak': 1,\n",
      "          'royal': 1,\n",
      "          'era': 1,\n",
      "          'recently': 1,\n",
      "          'damed': 1,\n",
      "          'appropriately': 1,\n",
      "          'ii': 1,\n",
      "          'fan': 1,\n",
      "          'directly': 1,\n",
      "          'quote': 1,\n",
      "          'cash': 1,\n",
      "          'flow': 1,\n",
      "          'problems': 1,\n",
      "          'nthrough': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'entire': 1,\n",
      "          'dependent': 1,\n",
      "          'next': 1,\n",
      "          'pay': 1,\n",
      "          'debts': 1,\n",
      "          'employs': 1,\n",
      "          'playwright': 1,\n",
      "          'joseph': 1,\n",
      "          'pen': 1,\n",
      "          'comedic': 1,\n",
      "          'writer': 1,\n",
      "          'severe': 1,\n",
      "          'case': 1,\n",
      "          'blames': 1,\n",
      "          'struggling': 1,\n",
      "          'title': 1,\n",
      "          'mind': 1,\n",
      "          'ethel': 1,\n",
      "          'pirates': 1,\n",
      "          'daughter': 1,\n",
      "          'joke': 1,\n",
      "          'loses': 1,\n",
      "          'steam': 1,\n",
      "          'cant': 1,\n",
      "          'words': 1,\n",
      "          'paper': 1,\n",
      "          'nthen': 1,\n",
      "          'hollywood': 1,\n",
      "          'twisted': 1,\n",
      "          'meets': 1,\n",
      "          'viola': 1,\n",
      "          'de': 1,\n",
      "          'lesseps': 1,\n",
      "          'gwyneth': 1,\n",
      "          'falls': 1,\n",
      "          'madly': 1,\n",
      "          'thus': 1,\n",
      "          'curing': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'issues': 1,\n",
      "          'encounters': 1,\n",
      "          'pan': 1,\n",
      "          'ado': 1,\n",
      "          'realization': 1,\n",
      "          'reached': 1,\n",
      "          'watching': 1,\n",
      "          'one': 1,\n",
      "          'messages': 1,\n",
      "          'given': 1,\n",
      "          'always': 1,\n",
      "          'author': 1,\n",
      "          'nironically': 1,\n",
      "          'couldnt': 1,\n",
      "          'truer': 1,\n",
      "          'great': 1,\n",
      "          'sweep': 1,\n",
      "          'audiences': 1,\n",
      "          'away': 1,\n",
      "          'fit': 1,\n",
      "          'recitals': 1,\n",
      "          'shakespearean': 1,\n",
      "          'lines': 1,\n",
      "          'playing': 1,\n",
      "          'none': 1,\n",
      "          'moments': 1,\n",
      "          'involve': 1,\n",
      "          'character': 1,\n",
      "          'owner': 1,\n",
      "          'children': 1,\n",
      "          'named': 1,\n",
      "          'juliet': 1,\n",
      "          'chose': 1,\n",
      "          'end': 1,\n",
      "          'lives': 1,\n",
      "          'offended': 1,\n",
      "          'marc': 1,\n",
      "          'norman': 1,\n",
      "          'tom': 1,\n",
      "          'stoppard': 1,\n",
      "          'writing': 1,\n",
      "          'seen': 1,\n",
      "          'beyond': 1,\n",
      "          'characters': 1,\n",
      "          'credits': 1,\n",
      "          'yet': 1,\n",
      "          'point': 1,\n",
      "          'would': 1,\n",
      "          'survived': 1,\n",
      "          'elizabeths': 1,\n",
      "          'njoseph': 1,\n",
      "          'worst': 1,\n",
      "          'fall': 1,\n",
      "          'though': 1,\n",
      "          'tragically': 1,\n",
      "          'unbelievable': 1,\n",
      "          'comically': 1,\n",
      "          'bad': 1,\n",
      "          'ngwyneth': 1,\n",
      "          'satisfactory': 1,\n",
      "          'lead': 1,\n",
      "          'position': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'almost': 1,\n",
      "          'day': 1,\n",
      "          'ngeoffrey': 1,\n",
      "          'short': 1,\n",
      "          'incredible': 1,\n",
      "          'nthey': 1,\n",
      "          'shown': 1,\n",
      "          'proven': 1,\n",
      "          'survive': 1,\n",
      "          'weak': 1,\n",
      "          'links': 1,\n",
      "          'nyou': 1,\n",
      "          'also': 1,\n",
      "          'find': 1,\n",
      "          'performance': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'role': 1,\n",
      "          'since': 1,\n",
      "          'hunting': 1,\n",
      "          'armageddon': 1,\n",
      "          'doesnt': 1,\n",
      "          'qualify': 1,\n",
      "          'rupert': 1,\n",
      "          'everett': 1,\n",
      "          'cute': 1,\n",
      "          'small': 1,\n",
      "          'part': 1,\n",
      "          'nbut': 1,\n",
      "          'sad': 1,\n",
      "          'excuse': 1,\n",
      "          'remains': 1,\n",
      "          'plagued': 1,\n",
      "          'performances': 1,\n",
      "          'nwhen': 1,\n",
      "          'said': 1,\n",
      "          'done': 1,\n",
      "          'worth': 1,\n",
      "          'trip': 1,\n",
      "          'want': 1,\n",
      "          'entertained': 1,\n",
      "          'kindly': 1,\n",
      "          'pointed': 1,\n",
      "          'entertainment': 1,\n",
      "          'fun': 1,\n",
      "          'necessarily': 1,\n",
      "          'certainly': 1,\n",
      "          'nperhaps': 1,\n",
      "          'best': 1,\n",
      "          'compared': 1,\n",
      "          'john': 1,\n",
      "          'grisham': 1,\n",
      "          'novel': 1,\n",
      "          'dear': 1,\n",
      "          'friend': 1,\n",
      "          'mine': 1,\n",
      "          'compare': 1,\n",
      "          'things': 1,\n",
      "          'nsimply': 1,\n",
      "          'farfetched': 1,\n",
      "          'poorly': 1,\n",
      "          'crafted': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ni': 5,\n",
      "          'every': 4,\n",
      "          'girlfriend': 4,\n",
      "          'eds': 3,\n",
      "          'role': 3,\n",
      "          'slut': 3,\n",
      "          'truman': 3,\n",
      "          'show': 3,\n",
      "          'movie': 3,\n",
      "          'like': 3,\n",
      "          'film': 2,\n",
      "          'average': 2,\n",
      "          'joe': 2,\n",
      "          'life': 2,\n",
      "          'ed': 2,\n",
      "          'trying': 2,\n",
      "          'especially': 2,\n",
      "          'usual': 2,\n",
      "          'hollywood': 2,\n",
      "          'charm': 2,\n",
      "          'gets': 2,\n",
      "          'nthe': 2,\n",
      "          'cast': 2,\n",
      "          'good': 2,\n",
      "          'brother': 2,\n",
      "          'wit': 2,\n",
      "          'real': 2,\n",
      "          'man': 2,\n",
      "          'almost': 2,\n",
      "          'times': 1,\n",
      "          'youd': 1,\n",
      "          'think': 1,\n",
      "          'edtv': 1,\n",
      "          'would': 1,\n",
      "          'entertaining': 1,\n",
      "          'mean': 1,\n",
      "          'resist': 1,\n",
      "          'story': 1,\n",
      "          'becomming': 1,\n",
      "          'celebrity': 1,\n",
      "          'filmed': 1,\n",
      "          'minute': 1,\n",
      "          'day': 1,\n",
      "          'nbut': 1,\n",
      "          'perkuny': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughay': 1,\n",
      "          'sappy': 1,\n",
      "          'lifeless': 1,\n",
      "          'creation': 1,\n",
      "          'wanders': 1,\n",
      "          'around': 1,\n",
      "          'solve': 1,\n",
      "          'everyones': 1,\n",
      "          'problems': 1,\n",
      "          'settle': 1,\n",
      "          'nmcconaughay': 1,\n",
      "          'awful': 1,\n",
      "          'pull': 1,\n",
      "          '3': 1,\n",
      "          'week': 1,\n",
      "          'beard': 1,\n",
      "          'torn': 1,\n",
      "          'jeans': 1,\n",
      "          'nfrankly': 1,\n",
      "          'devestating': 1,\n",
      "          'flop': 1,\n",
      "          'newton': 1,\n",
      "          'boys': 1,\n",
      "          'nhe': 1,\n",
      "          'overacts': 1,\n",
      "          'way': 1,\n",
      "          'overexaggerant': 1,\n",
      "          'body': 1,\n",
      "          'language': 1,\n",
      "          'obsession': 1,\n",
      "          'kissing': 1,\n",
      "          'women': 1,\n",
      "          'second': 1,\n",
      "          'chance': 1,\n",
      "          'cliched': 1,\n",
      "          'scene': 1,\n",
      "          'loses': 1,\n",
      "          'someone': 1,\n",
      "          'drops': 1,\n",
      "          'knee': 1,\n",
      "          'cries': 1,\n",
      "          'rest': 1,\n",
      "          'martin': 1,\n",
      "          'landau': 1,\n",
      "          'stepfather': 1,\n",
      "          'plays': 1,\n",
      "          'cute': 1,\n",
      "          'closetodeath': 1,\n",
      "          'old': 1,\n",
      "          'guy': 1,\n",
      "          'makes': 1,\n",
      "          'witty': 1,\n",
      "          'comments': 1,\n",
      "          'njenna': 1,\n",
      "          'elfman': 1,\n",
      "          'little': 1,\n",
      "          'overemotional': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'keeps': 1,\n",
      "          'getting': 1,\n",
      "          'sucked': 1,\n",
      "          'bad': 1,\n",
      "          'films': 1,\n",
      "          'e': 1,\n",
      "          'ncant': 1,\n",
      "          'hardly': 1,\n",
      "          'wait': 1,\n",
      "          'krippendorfs': 1,\n",
      "          'tribe': 1,\n",
      "          'nwoody': 1,\n",
      "          'harrelson': 1,\n",
      "          'ray': 1,\n",
      "          'eggheaded': 1,\n",
      "          'comic': 1,\n",
      "          'well': 1,\n",
      "          'wrote': 1,\n",
      "          'book': 1,\n",
      "          'entitled': 1,\n",
      "          'pissed': 1,\n",
      "          'nelizabeth': 1,\n",
      "          'hurley': 1,\n",
      "          'perfectly': 1,\n",
      "          'easy': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'quick': 1,\n",
      "          'cameo': 1,\n",
      "          'biological': 1,\n",
      "          'father': 1,\n",
      "          'nice': 1,\n",
      "          'choice': 1,\n",
      "          'ironically': 1,\n",
      "          'coming': 1,\n",
      "          'turned': 1,\n",
      "          'christof': 1,\n",
      "          'nellen': 1,\n",
      "          'degeneres': 1,\n",
      "          'stood': 1,\n",
      "          'executive': 1,\n",
      "          'awhile': 1,\n",
      "          'decides': 1,\n",
      "          'must': 1,\n",
      "          'go': 1,\n",
      "          'much': 1,\n",
      "          'opposite': 1,\n",
      "          'head': 1,\n",
      "          'exec': 1,\n",
      "          'rob': 1,\n",
      "          'reiners': 1,\n",
      "          'opinion': 1,\n",
      "          'hate': 1,\n",
      "          'compare': 1,\n",
      "          'fact': 1,\n",
      "          'ashamed': 1,\n",
      "          'see': 1,\n",
      "          'nit': 1,\n",
      "          'felt': 1,\n",
      "          'dropped': 1,\n",
      "          'college': 1,\n",
      "          'kindergarten': 1,\n",
      "          'seeing': 1,\n",
      "          'nedtv': 1,\n",
      "          'genius': 1,\n",
      "          'typical': 1,\n",
      "          'nextracting': 1,\n",
      "          'tv': 1,\n",
      "          'part': 1,\n",
      "          'simple': 1,\n",
      "          'plotline': 1,\n",
      "          'steals': 1,\n",
      "          'brothers': 1,\n",
      "          'leaves': 1,\n",
      "          'town': 1,\n",
      "          'new': 1,\n",
      "          'feel': 1,\n",
      "          'move': 1,\n",
      "          'breaks': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'voila': 1,\n",
      "          'romance': 1,\n",
      "          'got': 1,\n",
      "          'restless': 1,\n",
      "          'walked': 1,\n",
      "          'reason': 1,\n",
      "          'doesnt': 1,\n",
      "          'drop': 1,\n",
      "          'c': 1,\n",
      "          'grade': 1,\n",
      "          'fine': 1,\n",
      "          'supporting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'performances': 1,\n",
      "          'nad2am': 1,\n",
      "          'lost': 1,\n",
      "          'nose': 1,\n",
      "          'breathing': 1,\n",
      "          'njack': 1,\n",
      "          'nicholson': 1,\n",
      "          'chinatown': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'one': 7,\n",
      "          'big': 4,\n",
      "          'death': 4,\n",
      "          'row': 4,\n",
      "          'evil': 4,\n",
      "          'fact': 4,\n",
      "          'powers': 3,\n",
      "          'guy': 3,\n",
      "          'happen': 3,\n",
      "          'cookiecutter': 3,\n",
      "          'also': 3,\n",
      "          'supposed': 3,\n",
      "          'story': 3,\n",
      "          'ni': 3,\n",
      "          'movie': 3,\n",
      "          'didnt': 3,\n",
      "          'see': 3,\n",
      "          'point': 3,\n",
      "          'based': 2,\n",
      "          'stephen': 2,\n",
      "          'frank': 2,\n",
      "          'darabont': 2,\n",
      "          'bore': 2,\n",
      "          'actors': 2,\n",
      "          'nthe': 2,\n",
      "          'special': 2,\n",
      "          'truly': 2,\n",
      "          'inmates': 2,\n",
      "          'except': 2,\n",
      "          'crazy': 2,\n",
      "          'personified': 2,\n",
      "          'guards': 2,\n",
      "          'reason': 2,\n",
      "          'three': 2,\n",
      "          'anyone': 2,\n",
      "          'tom': 2,\n",
      "          'hanks': 2,\n",
      "          'nin': 2,\n",
      "          'get': 2,\n",
      "          'man': 2,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'kings': 1,\n",
      "          'writings': 1,\n",
      "          'called': 1,\n",
      "          'shawshank': 1,\n",
      "          'redemption': 1,\n",
      "          '910': 1,\n",
      "          'writerdirector': 1,\n",
      "          'returns': 1,\n",
      "          'screen': 1,\n",
      "          'another': 1,\n",
      "          'prison': 1,\n",
      "          'famous': 1,\n",
      "          'scribblings': 1,\n",
      "          'king': 1,\n",
      "          'nunlike': 1,\n",
      "          'latter': 1,\n",
      "          'long': 1,\n",
      "          'laborious': 1,\n",
      "          'nplot': 1,\n",
      "          'sevenfoot': 1,\n",
      "          'inmate': 1,\n",
      "          'discovered': 1,\n",
      "          'secret': 1,\n",
      "          'healing': 1,\n",
      "          'ncritique': 1,\n",
      "          'slow': 1,\n",
      "          'drawnout': 1,\n",
      "          'boring': 1,\n",
      "          'uninteresting': 1,\n",
      "          'unexciting': 1,\n",
      "          'predictable': 1,\n",
      "          'topped': 1,\n",
      "          'couple': 1,\n",
      "          'onedimensional': 1,\n",
      "          'characters': 1,\n",
      "          'nits': 1,\n",
      "          'positive': 1,\n",
      "          'attribute': 1,\n",
      "          'lies': 1,\n",
      "          'credible': 1,\n",
      "          'jobs': 1,\n",
      "          'message': 1,\n",
      "          'hope': 1,\n",
      "          'belief': 1,\n",
      "          'miracles': 1,\n",
      "          'real': 1,\n",
      "          'miracle': 1,\n",
      "          'night': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'straightforward': 1,\n",
      "          'unimpressive': 1,\n",
      "          'never': 1,\n",
      "          'understand': 1,\n",
      "          'care': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'cell': 1,\n",
      "          'blocks': 1,\n",
      "          'filled': 1,\n",
      "          'decent': 1,\n",
      "          'misunderstood': 1,\n",
      "          'nand': 1,\n",
      "          'lets': 1,\n",
      "          'forget': 1,\n",
      "          'angels': 1,\n",
      "          'heaven': 1,\n",
      "          'guard': 1,\n",
      "          'six': 1,\n",
      "          'appears': 1,\n",
      "          'nam': 1,\n",
      "          'identify': 1,\n",
      "          'even': 1,\n",
      "          'importantly': 1,\n",
      "          'give': 1,\n",
      "          'rats': 1,\n",
      "          'ass': 1,\n",
      "          'nwell': 1,\n",
      "          'sure': 1,\n",
      "          'missed': 1,\n",
      "          'boat': 1,\n",
      "          'thing': 1,\n",
      "          'ended': 1,\n",
      "          'caring': 1,\n",
      "          'entire': 1,\n",
      "          'picture': 1,\n",
      "          'obscene': 1,\n",
      "          'amount': 1,\n",
      "          'fat': 1,\n",
      "          'able': 1,\n",
      "          'burrow': 1,\n",
      "          'loose': 1,\n",
      "          'chin': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'absolutely': 1,\n",
      "          'world': 1,\n",
      "          'director': 1,\n",
      "          'needed': 1,\n",
      "          'take': 1,\n",
      "          'hours': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'anyones': 1,\n",
      "          'life': 1,\n",
      "          'present': 1,\n",
      "          'empty': 1,\n",
      "          'within': 1,\n",
      "          'anything': 1,\n",
      "          'heal': 1,\n",
      "          'left': 1,\n",
      "          'wondering': 1,\n",
      "          'still': 1,\n",
      "          'executed': 1,\n",
      "          'nwow': 1,\n",
      "          'nhow': 1,\n",
      "          'interesting': 1,\n",
      "          'plots': 1,\n",
      "          'utter': 1,\n",
      "          'predictability': 1,\n",
      "          'fault': 1,\n",
      "          'guess': 1,\n",
      "          'healed': 1,\n",
      "          'gentle': 1,\n",
      "          'monster': 1,\n",
      "          'told': 1,\n",
      "          'certain': 1,\n",
      "          'lady': 1,\n",
      "          'tumor': 1,\n",
      "          'early': 1,\n",
      "          'nwhip': 1,\n",
      "          'thinking': 1,\n",
      "          'caps': 1,\n",
      "          'kids': 1,\n",
      "          'nhmmm': 1,\n",
      "          'wonder': 1,\n",
      "          'two': 1,\n",
      "          'guys': 1,\n",
      "          'nothing': 1,\n",
      "          'system': 1,\n",
      "          'hate': 1,\n",
      "          'negativity': 1,\n",
      "          'nhmmmm': 1,\n",
      "          'think': 1,\n",
      "          'hard': 1,\n",
      "          'boys': 1,\n",
      "          'girls': 1,\n",
      "          'nwhat': 1,\n",
      "          'crock': 1,\n",
      "          'guessing': 1,\n",
      "          'threehour': 1,\n",
      "          'exercise': 1,\n",
      "          'spirituality': 1,\n",
      "          'unfortunately': 1,\n",
      "          'neither': 1,\n",
      "          'spiritual': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'engaging': 1,\n",
      "          'certainly': 1,\n",
      "          'doublechin': 1,\n",
      "          'nall': 1,\n",
      "          'bad': 1,\n",
      "          'starring': 1,\n",
      "          'great': 1,\n",
      "          'solid': 1,\n",
      "          'work': 1,\n",
      "          'especially': 1,\n",
      "          'michael': 1,\n",
      "          'clarke': 1,\n",
      "          'duncan': 1,\n",
      "          'hour': 1,\n",
      "          'john': 1,\n",
      "          'coffey': 1,\n",
      "          'ngive': 1,\n",
      "          'award': 1,\n",
      "          'something': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'babysitter': 9,\n",
      "          'nthe': 9,\n",
      "          'film': 7,\n",
      "          'movie': 6,\n",
      "          'fails': 5,\n",
      "          'thug': 4,\n",
      "          'boyfriend': 4,\n",
      "          'ni': 4,\n",
      "          'characters': 4,\n",
      "          'goal': 4,\n",
      "          'parents': 3,\n",
      "          'character': 3,\n",
      "          'played': 3,\n",
      "          'sequences': 3,\n",
      "          'minutes': 3,\n",
      "          'nif': 3,\n",
      "          'one': 3,\n",
      "          'dream': 3,\n",
      "          'girlfriend': 2,\n",
      "          'father': 2,\n",
      "          'fantasies': 2,\n",
      "          'manages': 2,\n",
      "          'completely': 2,\n",
      "          'playing': 2,\n",
      "          'seems': 2,\n",
      "          'see': 2,\n",
      "          'time': 2,\n",
      "          'j': 2,\n",
      "          'fantasizes': 2,\n",
      "          'need': 2,\n",
      "          'however': 2,\n",
      "          'though': 2,\n",
      "          'try': 2,\n",
      "          'synopsis': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'convinces': 1,\n",
      "          'dimwitted': 1,\n",
      "          'highschool': 1,\n",
      "          'student': 1,\n",
      "          'spy': 1,\n",
      "          'babysitting': 1,\n",
      "          'three': 1,\n",
      "          'unruly': 1,\n",
      "          'kids': 1,\n",
      "          'alcoholic': 1,\n",
      "          'friday': 1,\n",
      "          'night': 1,\n",
      "          'nwhile': 1,\n",
      "          'going': 1,\n",
      "          'kid': 1,\n",
      "          'reaching': 1,\n",
      "          'onset': 1,\n",
      "          'puberty': 1,\n",
      "          'ncomments': 1,\n",
      "          'say': 1,\n",
      "          'bad': 1,\n",
      "          'would': 1,\n",
      "          'quite': 1,\n",
      "          'understatement': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'ferland': 1,\n",
      "          'hoping': 1,\n",
      "          'accomplish': 1,\n",
      "          'nsuspense': 1,\n",
      "          'nfamily': 1,\n",
      "          'drama': 1,\n",
      "          'nhumor': 1,\n",
      "          'nerotica': 1,\n",
      "          'nelements': 1,\n",
      "          'genres': 1,\n",
      "          'exist': 1,\n",
      "          'yet': 1,\n",
      "          'successfully': 1,\n",
      "          'achieve': 1,\n",
      "          'ninstead': 1,\n",
      "          'dull': 1,\n",
      "          'lifeless': 1,\n",
      "          'bore': 1,\n",
      "          'ultimately': 1,\n",
      "          'irritate': 1,\n",
      "          'viewers': 1,\n",
      "          'suppose': 1,\n",
      "          'could': 1,\n",
      "          'watchable': 1,\n",
      "          'werent': 1,\n",
      "          'fact': 1,\n",
      "          'universally': 1,\n",
      "          'unappealing': 1,\n",
      "          'nalicia': 1,\n",
      "          'silverstone': 1,\n",
      "          'wasted': 1,\n",
      "          'jennifer': 1,\n",
      "          'nher': 1,\n",
      "          'absolutely': 1,\n",
      "          'depth': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'object': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'competition': 1,\n",
      "          'stoop': 1,\n",
      "          'lowest': 1,\n",
      "          'level': 1,\n",
      "          'ends': 1,\n",
      "          'alcoholics': 1,\n",
      "          'become': 1,\n",
      "          'increasingly': 1,\n",
      "          'obnoxious': 1,\n",
      "          'proceeds': 1,\n",
      "          'nwalsh': 1,\n",
      "          'mother': 1,\n",
      "          'husbands': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'nnone': 1,\n",
      "          'fantasy': 1,\n",
      "          'trust': 1,\n",
      "          'things': 1,\n",
      "          'seen': 1,\n",
      "          'anyway': 1,\n",
      "          'complete': 1,\n",
      "          'cheesy': 1,\n",
      "          'makeout': 1,\n",
      "          'saxophone': 1,\n",
      "          'music': 1,\n",
      "          'meantime': 1,\n",
      "          'proves': 1,\n",
      "          'hes': 1,\n",
      "          'evil': 1,\n",
      "          'annoying': 1,\n",
      "          'habit': 1,\n",
      "          'smashing': 1,\n",
      "          'halfempty': 1,\n",
      "          'beer': 1,\n",
      "          'bottles': 1,\n",
      "          'sudden': 1,\n",
      "          'apparent': 1,\n",
      "          'reason': 1,\n",
      "          'absurd': 1,\n",
      "          'babysitters': 1,\n",
      "          'catatonically': 1,\n",
      "          'braindead': 1,\n",
      "          'manipulative': 1,\n",
      "          'iagolike': 1,\n",
      "          'manner': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'hard': 1,\n",
      "          'talk': 1,\n",
      "          'bingedrinking': 1,\n",
      "          'smoking': 1,\n",
      "          'grass': 1,\n",
      "          'running': 1,\n",
      "          'away': 1,\n",
      "          'cops': 1,\n",
      "          'peeping': 1,\n",
      "          'tom': 1,\n",
      "          'matter': 1,\n",
      "          'nincredible': 1,\n",
      "          'n': 1,\n",
      "          'course': 1,\n",
      "          'boyfriends': 1,\n",
      "          'original': 1,\n",
      "          'plan': 1,\n",
      "          'evening': 1,\n",
      "          'laugh': 1,\n",
      "          'sit': 1,\n",
      "          'empty': 1,\n",
      "          'diner': 1,\n",
      "          'read': 1,\n",
      "          'catcher': 1,\n",
      "          'rye': 1,\n",
      "          'salinger': 1,\n",
      "          'suspenseful': 1,\n",
      "          'nthere': 1,\n",
      "          'surprisingly': 1,\n",
      "          'tense': 1,\n",
      "          'moments': 1,\n",
      "          'nearly': 1,\n",
      "          'come': 1,\n",
      "          'final': 1,\n",
      "          'minute': 1,\n",
      "          'nby': 1,\n",
      "          'audience': 1,\n",
      "          'tired': 1,\n",
      "          'inane': 1,\n",
      "          'truthfully': 1,\n",
      "          'cares': 1,\n",
      "          'happens': 1,\n",
      "          'nno': 1,\n",
      "          'suspense': 1,\n",
      "          'occurs': 1,\n",
      "          'either': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'obviously': 1,\n",
      "          'sequence': 1,\n",
      "          'inception': 1,\n",
      "          'humorous': 1,\n",
      "          'also': 1,\n",
      "          'found': 1,\n",
      "          'nothing': 1,\n",
      "          'even': 1,\n",
      "          'remotely': 1,\n",
      "          'funny': 1,\n",
      "          'boozing': 1,\n",
      "          'seemed': 1,\n",
      "          'times': 1,\n",
      "          'laughs': 1,\n",
      "          'dramatic': 1,\n",
      "          'onedimensional': 1,\n",
      "          'uninteresting': 1,\n",
      "          'nfinally': 1,\n",
      "          'titillating': 1,\n",
      "          'type': 1,\n",
      "          'destined': 1,\n",
      "          'ad': 1,\n",
      "          'infinitum': 1,\n",
      "          'hbo': 1,\n",
      "          '2': 1,\n",
      "          'morning': 1,\n",
      "          'well': 1,\n",
      "          'arent': 1,\n",
      "          'erotic': 1,\n",
      "          'brief': 1,\n",
      "          'outside': 1,\n",
      "          'short': 1,\n",
      "          'scene': 1,\n",
      "          'contain': 1,\n",
      "          'nudity': 1,\n",
      "          'cant': 1,\n",
      "          'trash': 1,\n",
      "          'first': 1,\n",
      "          '10': 1,\n",
      "          'vaguely': 1,\n",
      "          'resemble': 1,\n",
      "          'interesting': 1,\n",
      "          'conclusion': 1,\n",
      "          'sports': 1,\n",
      "          'halfway': 1,\n",
      "          'decent': 1,\n",
      "          'fistfight': 1,\n",
      "          '79': 1,\n",
      "          'drag': 1,\n",
      "          'nsilverstones': 1,\n",
      "          'end': 1,\n",
      "          'turns': 1,\n",
      "          'asks': 1,\n",
      "          'thinking': 1,\n",
      "          'asked': 1,\n",
      "          'question': 1,\n",
      "          'spent': 1,\n",
      "          '99': 1,\n",
      "          'cents': 1,\n",
      "          'renting': 1,\n",
      "          'turkey': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'woo': 8,\n",
      "          'pinkett': 5,\n",
      "          'nthe': 4,\n",
      "          'tim': 4,\n",
      "          'smith': 3,\n",
      "          'one': 3,\n",
      "          'love': 3,\n",
      "          'get': 3,\n",
      "          'nin': 3,\n",
      "          'motion': 2,\n",
      "          'constant': 2,\n",
      "          'ndespite': 2,\n",
      "          'available': 2,\n",
      "          'supporting': 2,\n",
      "          'low': 2,\n",
      "          'arent': 2,\n",
      "          'good': 2,\n",
      "          'black': 2,\n",
      "          'thats': 2,\n",
      "          'nas': 2,\n",
      "          'smiths': 2,\n",
      "          'first': 2,\n",
      "          'opportunity': 2,\n",
      "          'stupid': 2,\n",
      "          'romantic': 2,\n",
      "          'latest': 2,\n",
      "          'effort': 2,\n",
      "          'worse': 2,\n",
      "          'relationship': 2,\n",
      "          'huge': 2,\n",
      "          'characters': 2,\n",
      "          'right': 2,\n",
      "          'end': 2,\n",
      "          'virgo': 2,\n",
      "          'enjoy': 2,\n",
      "          'theres': 2,\n",
      "          'working': 1,\n",
      "          'picture': 1,\n",
      "          'industry': 1,\n",
      "          'must': 1,\n",
      "          'source': 1,\n",
      "          'frustration': 1,\n",
      "          'frontline': 1,\n",
      "          'african': 1,\n",
      "          'american': 1,\n",
      "          'actress': 1,\n",
      "          'like': 1,\n",
      "          'jada': 1,\n",
      "          'freshest': 1,\n",
      "          'talents': 1,\n",
      "          'often': 1,\n",
      "          'relegated': 1,\n",
      "          'playing': 1,\n",
      "          'thankless': 1,\n",
      "          'parts': 1,\n",
      "          'dirty': 1,\n",
      "          'shame': 1,\n",
      "          'nutty': 1,\n",
      "          'professor': 1,\n",
      "          'problem': 1,\n",
      "          'course': 1,\n",
      "          'many': 1,\n",
      "          'roles': 1,\n",
      "          'women': 1,\n",
      "          'ntake': 1,\n",
      "          'away': 1,\n",
      "          'likes': 1,\n",
      "          'waiting': 1,\n",
      "          'exhale': 1,\n",
      "          'set': 1,\n",
      "          'soul': 1,\n",
      "          'food': 1,\n",
      "          'eves': 1,\n",
      "          'bayou': 1,\n",
      "          'left': 1,\n",
      "          'chance': 1,\n",
      "          'someones': 1,\n",
      "          'girlfriend': 1,\n",
      "          'local': 1,\n",
      "          'whore': 1,\n",
      "          'murder': 1,\n",
      "          'victim': 1,\n",
      "          'result': 1,\n",
      "          'atop': 1,\n",
      "          'marquee': 1,\n",
      "          'stuck': 1,\n",
      "          'formulaic': 1,\n",
      "          'comedy': 1,\n",
      "          'unpromising': 1,\n",
      "          'title': 1,\n",
      "          'nactually': 1,\n",
      "          'directorial': 1,\n",
      "          'daisy': 1,\n",
      "          'v': 1,\n",
      "          'nmayer': 1,\n",
      "          'party': 1,\n",
      "          'girl': 1,\n",
      "          'could': 1,\n",
      "          'film': 1,\n",
      "          'offers': 1,\n",
      "          'funny': 1,\n",
      "          'albeit': 1,\n",
      "          'juvenile': 1,\n",
      "          'moments': 1,\n",
      "          'onscreen': 1,\n",
      "          'tommy': 1,\n",
      "          'davidsons': 1,\n",
      "          'appealing': 1,\n",
      "          'rare': 1,\n",
      "          'occasions': 1,\n",
      "          'two': 1,\n",
      "          'forced': 1,\n",
      "          'play': 1,\n",
      "          'dumb': 1,\n",
      "          'sake': 1,\n",
      "          'endless': 1,\n",
      "          'barrage': 1,\n",
      "          'cheap': 1,\n",
      "          'gags': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'portions': 1,\n",
      "          'movie': 1,\n",
      "          'insulting': 1,\n",
      "          'intelligence': 1,\n",
      "          'anyone': 1,\n",
      "          'tripledigit': 1,\n",
      "          'q': 1,\n",
      "          'situations': 1,\n",
      "          'painfully': 1,\n",
      "          'contrived': 1,\n",
      "          'main': 1,\n",
      "          'lifted': 1,\n",
      "          'sitcoms': 1,\n",
      "          'players': 1,\n",
      "          'incredibly': 1,\n",
      "          'wondered': 1,\n",
      "          'whether': 1,\n",
      "          'participated': 1,\n",
      "          'kind': 1,\n",
      "          'free': 1,\n",
      "          'lobotomy': 1,\n",
      "          'lab': 1,\n",
      "          'experiment': 1,\n",
      "          'nwoo': 1,\n",
      "          'spontaneous': 1,\n",
      "          'energetic': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'looking': 1,\n",
      "          'wrong': 1,\n",
      "          'places': 1,\n",
      "          'nher': 1,\n",
      "          'testosteroneoverdosed': 1,\n",
      "          'drugdealer': 1,\n",
      "          'came': 1,\n",
      "          'abrupt': 1,\n",
      "          'refused': 1,\n",
      "          'wear': 1,\n",
      "          'beeper': 1,\n",
      "          'nnow': 1,\n",
      "          'transvestitemedium': 1,\n",
      "          'friend': 1,\n",
      "          'celestrial': 1,\n",
      "          'girlina': 1,\n",
      "          'predicts': 1,\n",
      "          'shes': 1,\n",
      "          'meet': 1,\n",
      "          'mr': 1,\n",
      "          'hell': 1,\n",
      "          'nlater': 1,\n",
      "          'day': 1,\n",
      "          'given': 1,\n",
      "          'go': 1,\n",
      "          'blind': 1,\n",
      "          'date': 1,\n",
      "          'shy': 1,\n",
      "          'man': 1,\n",
      "          'penchant': 1,\n",
      "          'neatness': 1,\n",
      "          'order': 1,\n",
      "          'happens': 1,\n",
      "          'nits': 1,\n",
      "          'sight': 1,\n",
      "          'however': 1,\n",
      "          'nthings': 1,\n",
      "          'rocky': 1,\n",
      "          'start': 1,\n",
      "          'makes': 1,\n",
      "          'awkward': 1,\n",
      "          'pass': 1,\n",
      "          'even': 1,\n",
      "          'pair': 1,\n",
      "          'arrives': 1,\n",
      "          'swanky': 1,\n",
      "          'restaurant': 1,\n",
      "          'quiet': 1,\n",
      "          'dinner': 1,\n",
      "          'onehundred': 1,\n",
      "          'year': 1,\n",
      "          'history': 1,\n",
      "          'pictures': 1,\n",
      "          'ton': 1,\n",
      "          'bad': 1,\n",
      "          'white': 1,\n",
      "          'movies': 1,\n",
      "          'mismatched': 1,\n",
      "          'lovers': 1,\n",
      "          'suppose': 1,\n",
      "          'fair': 1,\n",
      "          'caliber': 1,\n",
      "          'comedies': 1,\n",
      "          'know': 1,\n",
      "          'beginning': 1,\n",
      "          'going': 1,\n",
      "          'together': 1,\n",
      "          'question': 1,\n",
      "          'courtship': 1,\n",
      "          'rituals': 1,\n",
      "          'entertaining': 1,\n",
      "          'entry': 1,\n",
      "          'genre': 1,\n",
      "          'audience': 1,\n",
      "          'becomes': 1,\n",
      "          'caught': 1,\n",
      "          'story': 1,\n",
      "          'matter': 1,\n",
      "          'familiar': 1,\n",
      "          'reliance': 1,\n",
      "          'upon': 1,\n",
      "          'unfunny': 1,\n",
      "          'moronic': 1,\n",
      "          'humor': 1,\n",
      "          'sinks': 1,\n",
      "          'project': 1,\n",
      "          'nfor': 1,\n",
      "          'spotting': 1,\n",
      "          'continuity': 1,\n",
      "          'gaffes': 1,\n",
      "          'involving': 1,\n",
      "          'corvette': 1,\n",
      "          'broken': 1,\n",
      "          'window': 1,\n",
      "          'miraculously': 1,\n",
      "          'repairs': 1,\n",
      "          'added': 1,\n",
      "          'mystery': 1,\n",
      "          'car': 1,\n",
      "          'looses': 1,\n",
      "          'top': 1,\n",
      "          'nsadly': 1,\n",
      "          'films': 1,\n",
      "          'enjoyable': 1,\n",
      "          'sequences': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'entirely': 1,\n",
      "          'unintentional': 1,\n",
      "          'exuding': 1,\n",
      "          'charm': 1,\n",
      "          'every': 1,\n",
      "          'pore': 1,\n",
      "          'little': 1,\n",
      "          'davidson': 1,\n",
      "          'save': 1,\n",
      "          'david': 1,\n",
      "          'c': 1,\n",
      "          'johnsons': 1,\n",
      "          'script': 1,\n",
      "          'nsince': 1,\n",
      "          'misses': 1,\n",
      "          'mark': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'name': 1,\n",
      "          'might': 1,\n",
      "          'whoops': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jakob': 9,\n",
      "          'liar': 5,\n",
      "          'scene': 4,\n",
      "          'much': 4,\n",
      "          'williams': 4,\n",
      "          'nthe': 3,\n",
      "          'ghetto': 3,\n",
      "          'njakob': 3,\n",
      "          'character': 3,\n",
      "          'radio': 3,\n",
      "          'scenes': 3,\n",
      "          'little': 3,\n",
      "          'early': 2,\n",
      "          'heym': 2,\n",
      "          'one': 2,\n",
      "          'side': 2,\n",
      "          'german': 2,\n",
      "          'troops': 2,\n",
      "          'jews': 2,\n",
      "          'effective': 2,\n",
      "          'setup': 2,\n",
      "          'outset': 2,\n",
      "          'man': 2,\n",
      "          'russian': 2,\n",
      "          'nwhen': 2,\n",
      "          'brings': 2,\n",
      "          'news': 2,\n",
      "          'become': 2,\n",
      "          'hope': 2,\n",
      "          'burdened': 2,\n",
      "          'stories': 2,\n",
      "          'story': 2,\n",
      "          'ordinary': 2,\n",
      "          'person': 2,\n",
      "          'less': 2,\n",
      "          'may': 2,\n",
      "          'see': 2,\n",
      "          'craft': 2,\n",
      "          'lina': 2,\n",
      "          'girl': 2,\n",
      "          'problematic': 2,\n",
      "          'theyre': 2,\n",
      "          'distracting': 2,\n",
      "          'cutesy': 2,\n",
      "          'film': 2,\n",
      "          'others': 2,\n",
      "          'away': 2,\n",
      "          'central': 2,\n",
      "          'subject': 2,\n",
      "          'hints': 1,\n",
      "          'better': 1,\n",
      "          'could': 1,\n",
      "          'set': 1,\n",
      "          'jewish': 1,\n",
      "          'poland': 1,\n",
      "          'circa': 1,\n",
      "          '1944': 1,\n",
      "          'onetime': 1,\n",
      "          'cafe': 1,\n",
      "          'proprietor': 1,\n",
      "          'named': 1,\n",
      "          'walking': 1,\n",
      "          'resolutely': 1,\n",
      "          'streets': 1,\n",
      "          'fists': 1,\n",
      "          'stuffed': 1,\n",
      "          'coat': 1,\n",
      "          'pockets': 1,\n",
      "          'nto': 1,\n",
      "          'residents': 1,\n",
      "          'scavenge': 1,\n",
      "          'food': 1,\n",
      "          'street': 1,\n",
      "          'beat': 1,\n",
      "          'group': 1,\n",
      "          'however': 1,\n",
      "          'never': 1,\n",
      "          'stops': 1,\n",
      "          'moving': 1,\n",
      "          'nits': 1,\n",
      "          'efficient': 1,\n",
      "          'clearly': 1,\n",
      "          'nobodys': 1,\n",
      "          'idea': 1,\n",
      "          'hero': 1,\n",
      "          'nhe': 1,\n",
      "          'responded': 1,\n",
      "          'horror': 1,\n",
      "          'surroundings': 1,\n",
      "          'withdrawing': 1,\n",
      "          'excising': 1,\n",
      "          'moral': 1,\n",
      "          'peripheral': 1,\n",
      "          'vision': 1,\n",
      "          'critical': 1,\n",
      "          'fate': 1,\n",
      "          'turn': 1,\n",
      "          'reluctant': 1,\n",
      "          'savior': 1,\n",
      "          'nafter': 1,\n",
      "          'visit': 1,\n",
      "          'commandants': 1,\n",
      "          'office': 1,\n",
      "          'moment': 1,\n",
      "          'alone': 1,\n",
      "          'turnedon': 1,\n",
      "          'learns': 1,\n",
      "          'quite': 1,\n",
      "          'near': 1,\n",
      "          'first': 1,\n",
      "          'war': 1,\n",
      "          'years': 1,\n",
      "          'fellow': 1,\n",
      "          'convinced': 1,\n",
      "          'must': 1,\n",
      "          'punishable': 1,\n",
      "          'offense': 1,\n",
      "          'good': 1,\n",
      "          'everyday': 1,\n",
      "          'specter': 1,\n",
      "          'suicide': 1,\n",
      "          'vanishes': 1,\n",
      "          'na': 1,\n",
      "          'private': 1,\n",
      "          'limited': 1,\n",
      "          'creativity': 1,\n",
      "          'finds': 1,\n",
      "          'creating': 1,\n",
      "          'military': 1,\n",
      "          'progress': 1,\n",
      "          'keep': 1,\n",
      "          'neighbors': 1,\n",
      "          'alive': 1,\n",
      "          'nthis': 1,\n",
      "          'promising': 1,\n",
      "          'extraordinary': 1,\n",
      "          'casting': 1,\n",
      "          'question': 1,\n",
      "          'played': 1,\n",
      "          'robin': 1,\n",
      "          'ni': 1,\n",
      "          'depressing': 1,\n",
      "          'opinion': 1,\n",
      "          'growing': 1,\n",
      "          'assured': 1,\n",
      "          'actor': 1,\n",
      "          'serious': 1,\n",
      "          'roles': 1,\n",
      "          'every': 1,\n",
      "          'passing': 1,\n",
      "          'year': 1,\n",
      "          'ncompare': 1,\n",
      "          'dramatic': 1,\n",
      "          'world': 1,\n",
      "          'according': 1,\n",
      "          'garp': 1,\n",
      "          'moscow': 1,\n",
      "          'hudson': 1,\n",
      "          'dreams': 1,\n",
      "          'come': 1,\n",
      "          'patch': 1,\n",
      "          'adams': 1,\n",
      "          'mannered': 1,\n",
      "          'least': 1,\n",
      "          'sensible': 1,\n",
      "          'choosing': 1,\n",
      "          'material': 1,\n",
      "          'depends': 1,\n",
      "          'notion': 1,\n",
      "          'struggle': 1,\n",
      "          'fictions': 1,\n",
      "          'always': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'hes': 1,\n",
      "          'struggling': 1,\n",
      "          '_not_': 1,\n",
      "          'improvises': 1,\n",
      "          'address': 1,\n",
      "          'winston': 1,\n",
      "          'churchill': 1,\n",
      "          'ailing': 1,\n",
      "          '10yearold': 1,\n",
      "          'orphan': 1,\n",
      "          'hannah': 1,\n",
      "          'taylor': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'gordon': 1,\n",
      "          'seems': 1,\n",
      "          'relieved': 1,\n",
      "          'finally': 1,\n",
      "          'get': 1,\n",
      "          'wacky': 1,\n",
      "          'noh': 1,\n",
      "          'yes': 1,\n",
      "          'theres': 1,\n",
      "          'nsome': 1,\n",
      "          'viewers': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'consider': 1,\n",
      "          'heros': 1,\n",
      "          'fanciful': 1,\n",
      "          'young': 1,\n",
      "          'charge': 1,\n",
      "          'reminiscent': 1,\n",
      "          'life': 1,\n",
      "          'beautiful': 1,\n",
      "          'arent': 1,\n",
      "          'familiar': 1,\n",
      "          'ntheyre': 1,\n",
      "          'jarring': 1,\n",
      "          'introducing': 1,\n",
      "          'relationship': 1,\n",
      "          'shouldnt': 1,\n",
      "          'relationships': 1,\n",
      "          'njakobs': 1,\n",
      "          'arc': 1,\n",
      "          'willingness': 1,\n",
      "          'act': 1,\n",
      "          'benefit': 1,\n",
      "          'plenty': 1,\n",
      "          'without': 1,\n",
      "          'poor': 1,\n",
      "          'nevery': 1,\n",
      "          'feels': 1,\n",
      "          'contrived': 1,\n",
      "          'pulling': 1,\n",
      "          'coming': 1,\n",
      "          'previously': 1,\n",
      "          'hopeless': 1,\n",
      "          'people': 1,\n",
      "          'nit': 1,\n",
      "          'pleasant': 1,\n",
      "          'surprise': 1,\n",
      "          'find': 1,\n",
      "          'grittier': 1,\n",
      "          'production': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'hollywoodized': 1,\n",
      "          'holocaust': 1,\n",
      "          'combining': 1,\n",
      "          'weighty': 1,\n",
      "          'matter': 1,\n",
      "          'dark': 1,\n",
      "          'humor': 1,\n",
      "          'ways': 1,\n",
      "          'ndirector': 1,\n",
      "          'peter': 1,\n",
      "          'kassovitz': 1,\n",
      "          'working': 1,\n",
      "          'jurek': 1,\n",
      "          'beckers': 1,\n",
      "          'novel': 1,\n",
      "          'crafts': 1,\n",
      "          'nice': 1,\n",
      "          'townspeople': 1,\n",
      "          'draws': 1,\n",
      "          'solid': 1,\n",
      "          'performances': 1,\n",
      "          'armin': 1,\n",
      "          'muellerstahl': 1,\n",
      "          'oncerevered': 1,\n",
      "          'doctor': 1,\n",
      "          'bob': 1,\n",
      "          'balaban': 1,\n",
      "          'barber': 1,\n",
      "          'drifting': 1,\n",
      "          'depression': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'things': 1,\n",
      "          'going': 1,\n",
      "          'prove': 1,\n",
      "          'whether': 1,\n",
      "          'sketchy': 1,\n",
      "          'romanctic': 1,\n",
      "          'angle': 1,\n",
      "          'involving': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'earnest': 1,\n",
      "          'former': 1,\n",
      "          'prizefighter': 1,\n",
      "          'incongrous': 1,\n",
      "          'presence': 1,\n",
      "          'sweet': 1,\n",
      "          'utterly': 1,\n",
      "          'irrelevant': 1,\n",
      "          'deals': 1,\n",
      "          'delicate': 1,\n",
      "          'fumbling': 1,\n",
      "          'compelling': 1,\n",
      "          'waste': 1,\n",
      "          'nand': 1,\n",
      "          'wonderful': 1,\n",
      "          'wasted': 1,\n",
      "          'fumbled': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 7,\n",
      "          'women': 6,\n",
      "          'bad': 4,\n",
      "          'characters': 4,\n",
      "          'nwe': 4,\n",
      "          'beyer': 3,\n",
      "          'talk': 3,\n",
      "          'interviews': 3,\n",
      "          'miami': 3,\n",
      "          'real': 3,\n",
      "          'plot': 3,\n",
      "          'dialogue': 3,\n",
      "          'one': 3,\n",
      "          'nat': 3,\n",
      "          'point': 3,\n",
      "          'mother': 3,\n",
      "          'scene': 3,\n",
      "          'never': 3,\n",
      "          'worse': 3,\n",
      "          'scenes': 3,\n",
      "          'picture': 3,\n",
      "          'makes': 2,\n",
      "          'talking': 2,\n",
      "          'sex': 2,\n",
      "          'redeeming': 2,\n",
      "          'qualities': 2,\n",
      "          'friends': 2,\n",
      "          'idea': 2,\n",
      "          'main': 2,\n",
      "          'moments': 2,\n",
      "          'nthere': 2,\n",
      "          'acting': 2,\n",
      "          'corny': 2,\n",
      "          'emotional': 2,\n",
      "          'overextension': 2,\n",
      "          'developments': 2,\n",
      "          'character': 2,\n",
      "          'supposed': 2,\n",
      "          'dont': 2,\n",
      "          'men': 2,\n",
      "          'imagine': 2,\n",
      "          'pretty': 2,\n",
      "          'mosaic': 2,\n",
      "          'stereotypes': 2,\n",
      "          'first': 1,\n",
      "          'troy': 1,\n",
      "          'wrote': 1,\n",
      "          'critically': 1,\n",
      "          'panned': 1,\n",
      "          'b': 1,\n",
      "          'p': 1,\n",
      "          'nnow': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'starring': 1,\n",
      "          'subpar': 1,\n",
      "          'nthough': 1,\n",
      "          'without': 1,\n",
      "          'basic': 1,\n",
      "          'story': 1,\n",
      "          'follows': 1,\n",
      "          'three': 1,\n",
      "          'single': 1,\n",
      "          'jazz': 1,\n",
      "          'lena': 1,\n",
      "          'randi': 1,\n",
      "          'ingerman': 1,\n",
      "          'michelle': 1,\n",
      "          'paget': 1,\n",
      "          'brewster': 1,\n",
      "          'search': 1,\n",
      "          'love': 1,\n",
      "          'njazz': 1,\n",
      "          'local': 1,\n",
      "          'show': 1,\n",
      "          'would': 1,\n",
      "          'feature': 1,\n",
      "          'dating': 1,\n",
      "          'nshe': 1,\n",
      "          'make': 1,\n",
      "          'demo': 1,\n",
      "          'tape': 1,\n",
      "          'sprinkled': 1,\n",
      "          'throughout': 1,\n",
      "          'part': 1,\n",
      "          'commentary': 1,\n",
      "          'situations': 1,\n",
      "          'fact': 1,\n",
      "          'provides': 1,\n",
      "          'refreshing': 1,\n",
      "          'break': 1,\n",
      "          'melodramatic': 1,\n",
      "          'several': 1,\n",
      "          'nin': 1,\n",
      "          'lowbudget': 1,\n",
      "          'independent': 1,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'faults': 1,\n",
      "          'sometimes': 1,\n",
      "          'forgiven': 1,\n",
      "          'screenplay': 1,\n",
      "          'fresh': 1,\n",
      "          'solid': 1,\n",
      "          'nthat': 1,\n",
      "          'case': 1,\n",
      "          'script': 1,\n",
      "          'suffers': 1,\n",
      "          'random': 1,\n",
      "          'four': 1,\n",
      "          'five': 1,\n",
      "          'turns': 1,\n",
      "          'raising': 1,\n",
      "          'question': 1,\n",
      "          'come': 1,\n",
      "          'lifelong': 1,\n",
      "          'reconciliation': 1,\n",
      "          'moved': 1,\n",
      "          'since': 1,\n",
      "          'completely': 1,\n",
      "          'unledup': 1,\n",
      "          'really': 1,\n",
      "          'care': 1,\n",
      "          'get': 1,\n",
      "          'along': 1,\n",
      "          'nweve': 1,\n",
      "          'seen': 1,\n",
      "          'see': 1,\n",
      "          'nwho': 1,\n",
      "          'cares': 1,\n",
      "          'nwhats': 1,\n",
      "          'sudden': 1,\n",
      "          'engage': 1,\n",
      "          'sympathy': 1,\n",
      "          'another': 1,\n",
      "          'announces': 1,\n",
      "          'cant': 1,\n",
      "          'children': 1,\n",
      "          'napparently': 1,\n",
      "          'devastating': 1,\n",
      "          'wouldnt': 1,\n",
      "          'know': 1,\n",
      "          'talked': 1,\n",
      "          'kids': 1,\n",
      "          'nevertheless': 1,\n",
      "          'expected': 1,\n",
      "          'devastated': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'afterthought': 1,\n",
      "          'emotion': 1,\n",
      "          'manipulative': 1,\n",
      "          'shallow': 1,\n",
      "          'nthese': 1,\n",
      "          'grow': 1,\n",
      "          'culminating': 1,\n",
      "          'absurd': 1,\n",
      "          'climax': 1,\n",
      "          'ntwo': 1,\n",
      "          'played': 1,\n",
      "          'overwhelming': 1,\n",
      "          'melodrama': 1,\n",
      "          'found': 1,\n",
      "          'laughing': 1,\n",
      "          'none': 1,\n",
      "          'lovers': 1,\n",
      "          'spat': 1,\n",
      "          'two': 1,\n",
      "          'minor': 1,\n",
      "          'expressing': 1,\n",
      "          'copious': 1,\n",
      "          'grief': 1,\n",
      "          'cleaning': 1,\n",
      "          'house': 1,\n",
      "          'wails': 1,\n",
      "          'despair': 1,\n",
      "          'clouds': 1,\n",
      "          'ajax': 1,\n",
      "          'nthinking': 1,\n",
      "          'hard': 1,\n",
      "          'admit': 1,\n",
      "          'nbut': 1,\n",
      "          'nfirst': 1,\n",
      "          'original': 1,\n",
      "          'often': 1,\n",
      "          'wonder': 1,\n",
      "          'alone': 1,\n",
      "          'groups': 1,\n",
      "          'gives': 1,\n",
      "          'good': 1,\n",
      "          'nits': 1,\n",
      "          'something': 1,\n",
      "          'think': 1,\n",
      "          'subject': 1,\n",
      "          'nsecond': 1,\n",
      "          'sincere': 1,\n",
      "          'ntaken': 1,\n",
      "          'together': 1,\n",
      "          'form': 1,\n",
      "          'beachwalkers': 1,\n",
      "          'bistro': 1,\n",
      "          'diners': 1,\n",
      "          'made': 1,\n",
      "          'sound': 1,\n",
      "          'bites': 1,\n",
      "          'tile': 1,\n",
      "          'womans': 1,\n",
      "          'experience': 1,\n",
      "          'nneither': 1,\n",
      "          'truly': 1,\n",
      "          'representative': 1,\n",
      "          'sets': 1,\n",
      "          'generalizations': 1,\n",
      "          'telling': 1,\n",
      "          'way': 1,\n",
      "          'level': 1,\n",
      "          'emerge': 1,\n",
      "          'called': 1,\n",
      "          'true': 1,\n",
      "          'ni': 1,\n",
      "          'people': 1,\n",
      "          'liking': 1,\n",
      "          'likes': 1,\n",
      "          'dislikes': 1,\n",
      "          'skills': 1,\n",
      "          'thrills': 1,\n",
      "          'whole': 1,\n",
      "          'nand': 1,\n",
      "          'even': 1,\n",
      "          'harder': 1,\n",
      "          'forgive': 1,\n",
      "          'nill': 1,\n",
      "          'give': 1,\n",
      "          'strike': 1,\n",
      "          'shes': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'almost': 1,\n",
      "          'got': 1,\n",
      "          'nc17': 1,\n",
      "          'explicit': 1,\n",
      "          'sexual': 1,\n",
      "          'nudity': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'mulholland': 3,\n",
      "          'drive': 3,\n",
      "          'lynch': 3,\n",
      "          'brunette': 3,\n",
      "          'blonde': 3,\n",
      "          'blue': 2,\n",
      "          'harring': 2,\n",
      "          'apartment': 2,\n",
      "          'naomi': 2,\n",
      "          'watts': 2,\n",
      "          'two': 2,\n",
      "          'women': 2,\n",
      "          'various': 2,\n",
      "          'key': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'universal': 1,\n",
      "          'focus': 1,\n",
      "          'nwhatever': 1,\n",
      "          'david': 1,\n",
      "          'selling': 1,\n",
      "          'im': 1,\n",
      "          'buying': 1,\n",
      "          'nfrom': 1,\n",
      "          'writerdirector': 1,\n",
      "          'velvet': 1,\n",
      "          'twin': 1,\n",
      "          'peaks': 1,\n",
      "          'comes': 1,\n",
      "          'another': 1,\n",
      "          'dark': 1,\n",
      "          'mysterious': 1,\n",
      "          'thriller': 1,\n",
      "          'opens': 1,\n",
      "          'automobile': 1,\n",
      "          'accident': 1,\n",
      "          'serpentine': 1,\n",
      "          'street': 1,\n",
      "          'twists': 1,\n",
      "          'high': 1,\n",
      "          'hollywood': 1,\n",
      "          'hills': 1,\n",
      "          'ndazed': 1,\n",
      "          'beautiful': 1,\n",
      "          'laura': 1,\n",
      "          'elena': 1,\n",
      "          'emerges': 1,\n",
      "          'stumbles': 1,\n",
      "          'hill': 1,\n",
      "          'slipping': 1,\n",
      "          'unobserved': 1,\n",
      "          '30sstyle': 1,\n",
      "          'tenant': 1,\n",
      "          'leaves': 1,\n",
      "          'trip': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'dewy': 1,\n",
      "          'deep': 1,\n",
      "          'river': 1,\n",
      "          'ontario': 1,\n",
      "          'arrives': 1,\n",
      "          'la': 1,\n",
      "          'dreams': 1,\n",
      "          'stardom': 1,\n",
      "          'suitcase': 1,\n",
      "          'nher': 1,\n",
      "          'aunt': 1,\n",
      "          'owns': 1,\n",
      "          'meet': 1,\n",
      "          'amnesia': 1,\n",
      "          'tries': 1,\n",
      "          'help': 1,\n",
      "          'discover': 1,\n",
      "          'identity': 1,\n",
      "          'along': 1,\n",
      "          'latent': 1,\n",
      "          'lesbian': 1,\n",
      "          'lust': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'hotshot': 1,\n",
      "          'director': 1,\n",
      "          'justin': 1,\n",
      "          'theroux': 1,\n",
      "          'whose': 1,\n",
      "          'wife': 1,\n",
      "          'bed': 1,\n",
      "          'poolman': 1,\n",
      "          'forced': 1,\n",
      "          'cast': 1,\n",
      "          'certain': 1,\n",
      "          'actress': 1,\n",
      "          'new': 1,\n",
      "          'film': 1,\n",
      "          'theres': 1,\n",
      "          'assassin': 1,\n",
      "          'mark': 1,\n",
      "          'pellegrino': 1,\n",
      "          'roaming': 1,\n",
      "          'city': 1,\n",
      "          'tortuous': 1,\n",
      "          'paths': 1,\n",
      "          'characters': 1,\n",
      "          'others': 1,\n",
      "          'named': 1,\n",
      "          'cookie': 1,\n",
      "          'coco': 1,\n",
      "          'cowboy': 1,\n",
      "          'intersect': 1,\n",
      "          'points': 1,\n",
      "          'plot': 1,\n",
      "          'remains': 1,\n",
      "          'elusive': 1,\n",
      "          'midway': 1,\n",
      "          'story': 1,\n",
      "          'play': 1,\n",
      "          'different': 1,\n",
      "          'alternate': 1,\n",
      "          'reality': 1,\n",
      "          'leaving': 1,\n",
      "          'huge': 1,\n",
      "          'wad': 1,\n",
      "          'cash': 1,\n",
      "          'metallic': 1,\n",
      "          'paralyzed': 1,\n",
      "          'mogul': 1,\n",
      "          'lot': 1,\n",
      "          'questions': 1,\n",
      "          'go': 1,\n",
      "          'unanswered': 1,\n",
      "          'nelena': 1,\n",
      "          'particularly': 1,\n",
      "          'gifted': 1,\n",
      "          'actresses': 1,\n",
      "          'effectively': 1,\n",
      "          'making': 1,\n",
      "          'subtle': 1,\n",
      "          'switch': 1,\n",
      "          'said': 1,\n",
      "          'former': 1,\n",
      "          'g': 1,\n",
      "          'ndancer': 1,\n",
      "          'ann': 1,\n",
      "          'miller': 1,\n",
      "          'whos': 1,\n",
      "          'stiff': 1,\n",
      "          'selfconscious': 1,\n",
      "          'speaking': 1,\n",
      "          'like': 1,\n",
      "          'players': 1,\n",
      "          'staccato': 1,\n",
      "          'tones': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'frenzied': 1,\n",
      "          'frustrating': 1,\n",
      "          '4': 1,\n",
      "          'originally': 1,\n",
      "          'designed': 1,\n",
      "          'episodic': 1,\n",
      "          'tv': 1,\n",
      "          'pilot': 1,\n",
      "          'surreal': 1,\n",
      "          'triumph': 1,\n",
      "          'suspenseful': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'packaged': 1,\n",
      "          'puzzle': 1,\n",
      "          'several': 1,\n",
      "          'pieces': 1,\n",
      "          'left': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'faculty': 4,\n",
      "          'williamson': 4,\n",
      "          'scream': 3,\n",
      "          'characters': 3,\n",
      "          'thirtysix': 2,\n",
      "          'situations': 2,\n",
      "          'nthis': 2,\n",
      "          'nthe': 2,\n",
      "          'rodriguez': 2,\n",
      "          'typical': 2,\n",
      "          'outing': 2,\n",
      "          'invasion': 2,\n",
      "          'body': 2,\n",
      "          'horror': 2,\n",
      "          'one': 2,\n",
      "          'use': 2,\n",
      "          'stock': 2,\n",
      "          'designs': 2,\n",
      "          'alien': 2,\n",
      "          'take': 2,\n",
      "          'lack': 2,\n",
      "          'movies': 2,\n",
      "          'saved': 2,\n",
      "          'last': 2,\n",
      "          'summer': 2,\n",
      "          'scifi': 2,\n",
      "          'comes': 2,\n",
      "          'roles': 2,\n",
      "          'far': 2,\n",
      "          'georges': 1,\n",
      "          'polti': 1,\n",
      "          'wrote': 1,\n",
      "          'paper': 1,\n",
      "          'called': 1,\n",
      "          'dramatic': 1,\n",
      "          'asserted': 1,\n",
      "          'fact': 1,\n",
      "          'drama': 1,\n",
      "          'could': 1,\n",
      "          'defined': 1,\n",
      "          'different': 1,\n",
      "          'may': 1,\n",
      "          'modern': 1,\n",
      "          'restatement': 1,\n",
      "          'biblical': 1,\n",
      "          'prophecy': 1,\n",
      "          'ecclesiastes': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'sun': 1,\n",
      "          'latest': 1,\n",
      "          'movie': 1,\n",
      "          'dusk': 1,\n",
      "          'till': 1,\n",
      "          'dawn': 1,\n",
      "          'director': 1,\n",
      "          'robert': 1,\n",
      "          'certainly': 1,\n",
      "          'proves': 1,\n",
      "          'hollywood': 1,\n",
      "          'fashion': 1,\n",
      "          'ntheres': 1,\n",
      "          'measureable': 1,\n",
      "          'fraction': 1,\n",
      "          'original': 1,\n",
      "          'material': 1,\n",
      "          'unworthy': 1,\n",
      "          'ndrawing': 1,\n",
      "          'elements': 1,\n",
      "          'puppet': 1,\n",
      "          'masters': 1,\n",
      "          'snatchers': 1,\n",
      "          'screenwriter': 1,\n",
      "          'kevin': 1,\n",
      "          '2': 1,\n",
      "          'credit': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'tale': 1,\n",
      "          'set': 1,\n",
      "          'middle': 1,\n",
      "          'america': 1,\n",
      "          'ohio': 1,\n",
      "          'eventful': 1,\n",
      "          'fall': 1,\n",
      "          'nmaking': 1,\n",
      "          'cast': 1,\n",
      "          'unusually': 1,\n",
      "          'done': 1,\n",
      "          'independence': 1,\n",
      "          'daystyle': 1,\n",
      "          'rather': 1,\n",
      "          'back': 1,\n",
      "          'door': 1,\n",
      "          'nparasitic': 1,\n",
      "          'aliens': 1,\n",
      "          'rundown': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'soon': 1,\n",
      "          'infested': 1,\n",
      "          'student': 1,\n",
      "          'leaving': 1,\n",
      "          'ensemble': 1,\n",
      "          'principal': 1,\n",
      "          'win': 1,\n",
      "          'day': 1,\n",
      "          'gusto': 1,\n",
      "          'major': 1,\n",
      "          'stumbling': 1,\n",
      "          'block': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'genre': 1,\n",
      "          'seen': 1,\n",
      "          'quality': 1,\n",
      "          'theyve': 1,\n",
      "          'energetic': 1,\n",
      "          'approach': 1,\n",
      "          'casts': 1,\n",
      "          'shadow': 1,\n",
      "          'doubt': 1,\n",
      "          'williamsons': 1,\n",
      "          'ability': 1,\n",
      "          'enjoyed': 1,\n",
      "          'success': 1,\n",
      "          'wes': 1,\n",
      "          'cravendirected': 1,\n",
      "          'couldnt': 1,\n",
      "          'pull': 1,\n",
      "          'anything': 1,\n",
      "          'solid': 1,\n",
      "          'know': 1,\n",
      "          'nalthough': 1,\n",
      "          'bent': 1,\n",
      "          'slasher': 1,\n",
      "          'picture': 1,\n",
      "          'still': 1,\n",
      "          'results': 1,\n",
      "          'throw': 1,\n",
      "          'steel': 1,\n",
      "          'cage': 1,\n",
      "          'match': 1,\n",
      "          'see': 1,\n",
      "          'alive': 1,\n",
      "          'non': 1,\n",
      "          'level': 1,\n",
      "          'main': 1,\n",
      "          'played': 1,\n",
      "          'virtual': 1,\n",
      "          'unknowns': 1,\n",
      "          'nonly': 1,\n",
      "          'recognizeable': 1,\n",
      "          'elijah': 1,\n",
      "          'wood': 1,\n",
      "          'deep': 1,\n",
      "          'impact': 1,\n",
      "          'front': 1,\n",
      "          'screen': 1,\n",
      "          'veterans': 1,\n",
      "          'minor': 1,\n",
      "          'teachers': 1,\n",
      "          'nperhaps': 1,\n",
      "          'mind': 1,\n",
      "          'champion': 1,\n",
      "          'upandcomers': 1,\n",
      "          'fame': 1,\n",
      "          'counterparts': 1,\n",
      "          'achieved': 1,\n",
      "          'theyd': 1,\n",
      "          'need': 1,\n",
      "          'star': 1,\n",
      "          'wb': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'horrors': 1,\n",
      "          'puberty': 1,\n",
      "          'la': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'acting': 1,\n",
      "          'top': 1,\n",
      "          'notch': 1,\n",
      "          'necessity': 1,\n",
      "          'ask': 1,\n",
      "          'nthere': 1,\n",
      "          'moment': 1,\n",
      "          'two': 1,\n",
      "          'genuine': 1,\n",
      "          'unfortunately': 1,\n",
      "          'story': 1,\n",
      "          'enough': 1,\n",
      "          'direction': 1,\n",
      "          'make': 1,\n",
      "          'nin': 1,\n",
      "          'sum': 1,\n",
      "          'long': 1,\n",
      "          'shot': 1,\n",
      "          'pay': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 4,\n",
      "          'willard': 4,\n",
      "          'one': 3,\n",
      "          'movies': 3,\n",
      "          'everything': 3,\n",
      "          'make': 3,\n",
      "          'bad': 3,\n",
      "          'talking': 3,\n",
      "          'get': 3,\n",
      "          'twist': 2,\n",
      "          'ending': 2,\n",
      "          'nwhen': 2,\n",
      "          'ends': 2,\n",
      "          'confusion': 2,\n",
      "          'description': 2,\n",
      "          'fun': 2,\n",
      "          'know': 2,\n",
      "          'going': 2,\n",
      "          'minutes': 2,\n",
      "          'movie': 2,\n",
      "          'im': 2,\n",
      "          'nscrewed': 2,\n",
      "          'guilty': 2,\n",
      "          'pleasure': 2,\n",
      "          'friends': 2,\n",
      "          'much': 2,\n",
      "          'christmas': 2,\n",
      "          'crock': 2,\n",
      "          'rusty': 2,\n",
      "          'chapelle': 2,\n",
      "          'dog': 2,\n",
      "          'returns': 2,\n",
      "          'money': 2,\n",
      "          'could': 2,\n",
      "          'nthe': 2,\n",
      "          'screwed': 2,\n",
      "          'script': 2,\n",
      "          'characters': 2,\n",
      "          'cops': 2,\n",
      "          'devito': 2,\n",
      "          'popular': 1,\n",
      "          'trend': 1,\n",
      "          'last': 1,\n",
      "          'couple': 1,\n",
      "          'years': 1,\n",
      "          'nwatching': 1,\n",
      "          'seems': 1,\n",
      "          'sense': 1,\n",
      "          'suddenly': 1,\n",
      "          'blown': 1,\n",
      "          'away': 1,\n",
      "          'unexpected': 1,\n",
      "          'surprise': 1,\n",
      "          'moment': 1,\n",
      "          'recollection': 1,\n",
      "          'possibly': 1,\n",
      "          'second': 1,\n",
      "          'viewing': 1,\n",
      "          'clarification': 1,\n",
      "          'nthis': 1,\n",
      "          'ideal': 1,\n",
      "          'perfects': 1,\n",
      "          'sets': 1,\n",
      "          'ngood': 1,\n",
      "          'surprises': 1,\n",
      "          'watch': 1,\n",
      "          'nthen': 1,\n",
      "          'twists': 1,\n",
      "          'nyou': 1,\n",
      "          'either': 1,\n",
      "          'happen': 1,\n",
      "          'ten': 1,\n",
      "          'reindeer': 1,\n",
      "          'games': 1,\n",
      "          'guess': 1,\n",
      "          'outrageously': 1,\n",
      "          'stupid': 1,\n",
      "          'perfectly': 1,\n",
      "          'suits': 1,\n",
      "          'latter': 1,\n",
      "          'nwhat': 1,\n",
      "          'starts': 1,\n",
      "          'dumb': 1,\n",
      "          'mock': 1,\n",
      "          'group': 1,\n",
      "          'complex': 1,\n",
      "          'finale': 1,\n",
      "          'way': 1,\n",
      "          'nby': 1,\n",
      "          'writers': 1,\n",
      "          'man': 1,\n",
      "          'moon': 1,\n",
      "          'people': 1,\n",
      "          'vs': 1,\n",
      "          'nlarry': 1,\n",
      "          'flynt': 1,\n",
      "          'scott': 1,\n",
      "          'alexander': 1,\n",
      "          'larry': 1,\n",
      "          'karaszewski': 1,\n",
      "          'leave': 1,\n",
      "          'milos': 1,\n",
      "          'forman': 1,\n",
      "          'behind': 1,\n",
      "          'take': 1,\n",
      "          'stab': 1,\n",
      "          'directing': 1,\n",
      "          'nwhoops': 1,\n",
      "          'inane': 1,\n",
      "          'carol': 1,\n",
      "          'gone': 1,\n",
      "          'berserk': 1,\n",
      "          'genuine': 1,\n",
      "          'laughs': 1,\n",
      "          'many': 1,\n",
      "          'acting': 1,\n",
      "          'embarrassments': 1,\n",
      "          'nnorm': 1,\n",
      "          'macdonald': 1,\n",
      "          'stars': 1,\n",
      "          'filmore': 1,\n",
      "          'hard': 1,\n",
      "          'working': 1,\n",
      "          'chauffeur': 1,\n",
      "          'wants': 1,\n",
      "          'little': 1,\n",
      "          'respect': 1,\n",
      "          'rich': 1,\n",
      "          'old': 1,\n",
      "          'insidious': 1,\n",
      "          'boss': 1,\n",
      "          'miss': 1,\n",
      "          'elaine': 1,\n",
      "          'stritch': 1,\n",
      "          'overhears': 1,\n",
      "          'plans': 1,\n",
      "          'fire': 1,\n",
      "          'day': 1,\n",
      "          'convinced': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'dave': 1,\n",
      "          'kidnap': 1,\n",
      "          'crocks': 1,\n",
      "          'beloved': 1,\n",
      "          'hold': 1,\n",
      "          'ransom': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'ntoo': 1,\n",
      "          'excited': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'hapless': 1,\n",
      "          'losers': 1,\n",
      "          'plan': 1,\n",
      "          'goes': 1,\n",
      "          'awry': 1,\n",
      "          'escapes': 1,\n",
      "          'home': 1,\n",
      "          'nnow': 1,\n",
      "          'thinks': 1,\n",
      "          'kidnapped': 1,\n",
      "          'two': 1,\n",
      "          'realizing': 1,\n",
      "          'even': 1,\n",
      "          'decide': 1,\n",
      "          'stage': 1,\n",
      "          'fake': 1,\n",
      "          'kidnapping': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'first': 1,\n",
      "          'fortyfive': 1,\n",
      "          'harmless': 1,\n",
      "          'entertainment': 1,\n",
      "          'enjoyably': 1,\n",
      "          'nbut': 1,\n",
      "          'convoluted': 1,\n",
      "          'eventually': 1,\n",
      "          'builds': 1,\n",
      "          'disaster': 1,\n",
      "          'impossible': 1,\n",
      "          'bear': 1,\n",
      "          'idiotic': 1,\n",
      "          'reckless': 1,\n",
      "          'becomes': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'wanted': 1,\n",
      "          'seat': 1,\n",
      "          'yell': 1,\n",
      "          'idiot': 1,\n",
      "          'nim': 1,\n",
      "          'extremely': 1,\n",
      "          'annoying': 1,\n",
      "          'also': 1,\n",
      "          'na': 1,\n",
      "          'monkey': 1,\n",
      "          'solved': 1,\n",
      "          'case': 1,\n",
      "          'within': 1,\n",
      "          'hour': 1,\n",
      "          'guys': 1,\n",
      "          'headed': 1,\n",
      "          'murder': 1,\n",
      "          'ones': 1,\n",
      "          'daniel': 1,\n",
      "          'benzali': 1,\n",
      "          'clueless': 1,\n",
      "          'forgive': 1,\n",
      "          'nthey': 1,\n",
      "          'give': 1,\n",
      "          'real': 1,\n",
      "          'names': 1,\n",
      "          'nalso': 1,\n",
      "          'poor': 1,\n",
      "          'danny': 1,\n",
      "          'apparently': 1,\n",
      "          'turn': 1,\n",
      "          'role': 1,\n",
      "          'days': 1,\n",
      "          'nlooking': 1,\n",
      "          'almost': 1,\n",
      "          'identical': 1,\n",
      "          'penguin': 1,\n",
      "          'batman': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'appeared': 1,\n",
      "          'screen': 1,\n",
      "          'shake': 1,\n",
      "          'head': 1,\n",
      "          'disbelief': 1,\n",
      "          'nhe': 1,\n",
      "          'didnt': 1,\n",
      "          'belong': 1,\n",
      "          'nmacdonald': 1,\n",
      "          'veterans': 1,\n",
      "          'kinds': 1,\n",
      "          'made': 1,\n",
      "          'worse': 1,\n",
      "          'already': 1,\n",
      "          'gross': 1,\n",
      "          'humor': 1,\n",
      "          'certainly': 1,\n",
      "          'forte': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'fan': 1,\n",
      "          'norm': 1,\n",
      "          'macdonalds': 1,\n",
      "          'chaotic': 1,\n",
      "          'comedy': 1,\n",
      "          'dirty': 1,\n",
      "          'work': 1,\n",
      "          'might': 1,\n",
      "          'actually': 1,\n",
      "          'love': 1,\n",
      "          'nearsequel': 1,\n",
      "          'notherwise': 1,\n",
      "          'dont': 1,\n",
      "          'hardearned': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'spice': 10,\n",
      "          'girls': 8,\n",
      "          'film': 6,\n",
      "          'world': 4,\n",
      "          'one': 4,\n",
      "          'girl': 4,\n",
      "          'power': 4,\n",
      "          'like': 4,\n",
      "          'really': 4,\n",
      "          'theres': 3,\n",
      "          'things': 3,\n",
      "          'good': 2,\n",
      "          'nif': 2,\n",
      "          'fun': 2,\n",
      "          'keep': 2,\n",
      "          'nand': 2,\n",
      "          'ni': 2,\n",
      "          'nthe': 2,\n",
      "          'idea': 2,\n",
      "          'credit': 2,\n",
      "          'make': 2,\n",
      "          'two': 2,\n",
      "          'sat': 2,\n",
      "          'long': 1,\n",
      "          'promotional': 1,\n",
      "          'british': 1,\n",
      "          'band': 1,\n",
      "          'nsure': 1,\n",
      "          'hint': 1,\n",
      "          'humor': 1,\n",
      "          'every': 1,\n",
      "          'nactually': 1,\n",
      "          'couple': 1,\n",
      "          'pretty': 1,\n",
      "          'jabs': 1,\n",
      "          'nbut': 1,\n",
      "          'overall': 1,\n",
      "          'cares': 1,\n",
      "          'nnot': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'sing': 1,\n",
      "          'songs': 1,\n",
      "          'love': 1,\n",
      "          'friendship': 1,\n",
      "          'responsibility': 1,\n",
      "          'yet': 1,\n",
      "          'dress': 1,\n",
      "          'streetwalkers': 1,\n",
      "          'lower': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'neighborhood': 1,\n",
      "          'nin': 1,\n",
      "          'ride': 1,\n",
      "          'around': 1,\n",
      "          'big': 1,\n",
      "          'tour': 1,\n",
      "          'bus': 1,\n",
      "          'whining': 1,\n",
      "          'photo': 1,\n",
      "          'shoots': 1,\n",
      "          'give': 1,\n",
      "          'interviews': 1,\n",
      "          'namazingly': 1,\n",
      "          'talk': 1,\n",
      "          'keeping': 1,\n",
      "          'commitments': 1,\n",
      "          'upholding': 1,\n",
      "          'responsibilities': 1,\n",
      "          'applies': 1,\n",
      "          'want': 1,\n",
      "          'required': 1,\n",
      "          'earning': 1,\n",
      "          'money': 1,\n",
      "          'babbling': 1,\n",
      "          'talking': 1,\n",
      "          'cleavage': 1,\n",
      "          'mean': 1,\n",
      "          'takes': 1,\n",
      "          'thread': 1,\n",
      "          'away': 1,\n",
      "          'bursting': 1,\n",
      "          'skimpy': 1,\n",
      "          'outfits': 1,\n",
      "          'pg': 1,\n",
      "          'minor': 1,\n",
      "          'dialogue': 1,\n",
      "          'changes': 1,\n",
      "          'scene': 1,\n",
      "          'extentions': 1,\n",
      "          'youd': 1,\n",
      "          'raunchy': 1,\n",
      "          'adult': 1,\n",
      "          'nby': 1,\n",
      "          'way': 1,\n",
      "          'something': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'says': 1,\n",
      "          'based': 1,\n",
      "          'nwow': 1,\n",
      "          'got': 1,\n",
      "          'certainly': 1,\n",
      "          'wish': 1,\n",
      "          'new': 1,\n",
      "          'trend': 1,\n",
      "          'hollywood': 1,\n",
      "          'ngiving': 1,\n",
      "          'simply': 1,\n",
      "          'thought': 1,\n",
      "          'say': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'lets': 1,\n",
      "          'movie': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'fares': 1,\n",
      "          'well': 1,\n",
      "          'nroger': 1,\n",
      "          'moore': 1,\n",
      "          'real': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'mockingly': 1,\n",
      "          'plays': 1,\n",
      "          'clichespewing': 1,\n",
      "          'chief': 1,\n",
      "          'darn': 1,\n",
      "          'hes': 1,\n",
      "          'watch': 1,\n",
      "          'nmark': 1,\n",
      "          'mckenney': 1,\n",
      "          'also': 1,\n",
      "          'screenwriter': 1,\n",
      "          'trying': 1,\n",
      "          'pitch': 1,\n",
      "          'ideas': 1,\n",
      "          'bands': 1,\n",
      "          'manager': 1,\n",
      "          'richard': 1,\n",
      "          'e': 1,\n",
      "          'grant': 1,\n",
      "          'none': 1,\n",
      "          'question': 1,\n",
      "          'though': 1,\n",
      "          'george': 1,\n",
      "          'wendt': 1,\n",
      "          'nyoud': 1,\n",
      "          'think': 1,\n",
      "          'would': 1,\n",
      "          'envoke': 1,\n",
      "          'reactions': 1,\n",
      "          'people': 1,\n",
      "          'youll': 1,\n",
      "          'even': 1,\n",
      "          'afterwards': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'sick': 1,\n",
      "          'noddly': 1,\n",
      "          'audience': 1,\n",
      "          'saw': 1,\n",
      "          'roughly': 1,\n",
      "          '50': 1,\n",
      "          'twelve': 1,\n",
      "          'yearold': 1,\n",
      "          'silence': 1,\n",
      "          'entire': 1,\n",
      "          'nwell': 1,\n",
      "          'directly': 1,\n",
      "          'behind': 1,\n",
      "          'nthey': 1,\n",
      "          'kept': 1,\n",
      "          'muttering': 1,\n",
      "          'stupid': 1,\n",
      "          'nmaybe': 1,\n",
      "          'hope': 1,\n",
      "          'humanity': 1,\n",
      "          'npg': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'story': 10,\n",
      "          'nthe': 10,\n",
      "          'tobacco': 9,\n",
      "          'really': 7,\n",
      "          'much': 7,\n",
      "          'get': 6,\n",
      "          'wigand': 6,\n",
      "          'nit': 5,\n",
      "          'minutes': 5,\n",
      "          'family': 5,\n",
      "          'detail': 4,\n",
      "          'article': 4,\n",
      "          'insider': 4,\n",
      "          'knew': 4,\n",
      "          'companies': 4,\n",
      "          'former': 4,\n",
      "          '60': 4,\n",
      "          'team': 4,\n",
      "          'wallace': 4,\n",
      "          'magazine': 3,\n",
      "          'nthey': 3,\n",
      "          'different': 3,\n",
      "          'short': 3,\n",
      "          'one': 3,\n",
      "          'cbs': 3,\n",
      "          'nthis': 3,\n",
      "          'make': 3,\n",
      "          'interview': 3,\n",
      "          'terrorists': 3,\n",
      "          'plummer': 3,\n",
      "          'nhe': 3,\n",
      "          '4': 3,\n",
      "          'read': 2,\n",
      "          'incident': 2,\n",
      "          'like': 2,\n",
      "          'tell': 2,\n",
      "          'real': 2,\n",
      "          'involved': 2,\n",
      "          'pressure': 2,\n",
      "          'sounded': 2,\n",
      "          'told': 2,\n",
      "          'wanted': 2,\n",
      "          'know': 2,\n",
      "          'good': 2,\n",
      "          'willing': 2,\n",
      "          'medium': 2,\n",
      "          'nthat': 2,\n",
      "          'people': 2,\n",
      "          'ni': 2,\n",
      "          'script': 2,\n",
      "          'two': 2,\n",
      "          'adaptation': 2,\n",
      "          'big': 2,\n",
      "          'public': 2,\n",
      "          'political': 2,\n",
      "          'power': 2,\n",
      "          'vicepresident': 2,\n",
      "          'news': 2,\n",
      "          'michael': 2,\n",
      "          'mann': 2,\n",
      "          'nand': 2,\n",
      "          'long': 2,\n",
      "          'needed': 2,\n",
      "          'iran': 2,\n",
      "          'nwe': 2,\n",
      "          'style': 2,\n",
      "          'mike': 2,\n",
      "          'played': 2,\n",
      "          'christopher': 2,\n",
      "          'bergman': 2,\n",
      "          'pacino': 2,\n",
      "          'getting': 2,\n",
      "          'industry': 2,\n",
      "          'support': 2,\n",
      "          'nmeanwhile': 2,\n",
      "          'data': 2,\n",
      "          'interpret': 2,\n",
      "          'severance': 2,\n",
      "          'agreement': 2,\n",
      "          'secrecy': 2,\n",
      "          'another': 2,\n",
      "          'nwigand': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          'new': 1,\n",
      "          'yorker': 1,\n",
      "          'enjoy': 1,\n",
      "          'indepth': 1,\n",
      "          'articles': 1,\n",
      "          'take': 1,\n",
      "          'investigation': 1,\n",
      "          'mysterious': 1,\n",
      "          'plane': 1,\n",
      "          'crash': 1,\n",
      "          'happened': 1,\n",
      "          'becomes': 1,\n",
      "          'education': 1,\n",
      "          'agencies': 1,\n",
      "          'theories': 1,\n",
      "          'suggested': 1,\n",
      "          'kind': 1,\n",
      "          'investigators': 1,\n",
      "          'aspect': 1,\n",
      "          'think': 1,\n",
      "          'nfrequently': 1,\n",
      "          'feeling': 1,\n",
      "          'exciting': 1,\n",
      "          'noften': 1,\n",
      "          'middle': 1,\n",
      "          'say': 1,\n",
      "          'ok': 1,\n",
      "          'invested': 1,\n",
      "          'time': 1,\n",
      "          'spend': 1,\n",
      "          'subject': 1,\n",
      "          'nfilm': 1,\n",
      "          'visual': 1,\n",
      "          'slows': 1,\n",
      "          'telling': 1,\n",
      "          'stories': 1,\n",
      "          'realize': 1,\n",
      "          'frequently': 1,\n",
      "          'surprised': 1,\n",
      "          'find': 1,\n",
      "          'pages': 1,\n",
      "          'empty': 1,\n",
      "          'space': 1,\n",
      "          'media': 1,\n",
      "          'vanity': 1,\n",
      "          'fair': 1,\n",
      "          'man': 1,\n",
      "          'marie': 1,\n",
      "          'brenner': 1,\n",
      "          'slowed': 1,\n",
      "          'pace': 1,\n",
      "          'verges': 1,\n",
      "          'tedious': 1,\n",
      "          'least': 1,\n",
      "          'times': 1,\n",
      "          'nfor': 1,\n",
      "          'years': 1,\n",
      "          'seven': 1,\n",
      "          'dealt': 1,\n",
      "          'addictive': 1,\n",
      "          'drug': 1,\n",
      "          'caused': 1,\n",
      "          'host': 1,\n",
      "          'unhealthy': 1,\n",
      "          'sideeffects': 1,\n",
      "          'nbut': 1,\n",
      "          'pretended': 1,\n",
      "          'unproven': 1,\n",
      "          'believe': 1,\n",
      "          'business': 1,\n",
      "          'incredibly': 1,\n",
      "          'profitable': 1,\n",
      "          'proceeds': 1,\n",
      "          'translated': 1,\n",
      "          'squelch': 1,\n",
      "          'discredit': 1,\n",
      "          'movements': 1,\n",
      "          'tide': 1,\n",
      "          'turned': 1,\n",
      "          'convinced': 1,\n",
      "          'health': 1,\n",
      "          'effects': 1,\n",
      "          'smoking': 1,\n",
      "          'resulting': 1,\n",
      "          'stop': 1,\n",
      "          'created': 1,\n",
      "          'small': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'nwho': 1,\n",
      "          'major': 1,\n",
      "          'motives': 1,\n",
      "          'almost': 1,\n",
      "          'killed': 1,\n",
      "          'aired': 1,\n",
      "          'anyway': 1,\n",
      "          'covered': 1,\n",
      "          'surprising': 1,\n",
      "          'could': 1,\n",
      "          'enthralling': 1,\n",
      "          'sort': 1,\n",
      "          'thing': 1,\n",
      "          'stylist': 1,\n",
      "          'would': 1,\n",
      "          'likely': 1,\n",
      "          'well': 1,\n",
      "          'end': 1,\n",
      "          'failed': 1,\n",
      "          'nto': 1,\n",
      "          'director': 1,\n",
      "          'opens': 1,\n",
      "          'assignment': 1,\n",
      "          'terrorist': 1,\n",
      "          'taste': 1,\n",
      "          'personal': 1,\n",
      "          'upper': 1,\n",
      "          'hand': 1,\n",
      "          'go': 1,\n",
      "          'newsman': 1,\n",
      "          'blindfolded': 1,\n",
      "          'hands': 1,\n",
      "          'actual': 1,\n",
      "          'nthere': 1,\n",
      "          'producer': 1,\n",
      "          'lowell': 1,\n",
      "          'al': 1,\n",
      "          'ordering': 1,\n",
      "          'around': 1,\n",
      "          'away': 1,\n",
      "          'seems': 1,\n",
      "          'nothing': 1,\n",
      "          'main': 1,\n",
      "          'line': 1,\n",
      "          'later': 1,\n",
      "          'harder': 1,\n",
      "          'manipulate': 1,\n",
      "          'committed': 1,\n",
      "          'wry': 1,\n",
      "          'irony': 1,\n",
      "          'clout': 1,\n",
      "          'world': 1,\n",
      "          'nterrorists': 1,\n",
      "          'grab': 1,\n",
      "          'headlines': 1,\n",
      "          'position': 1,\n",
      "          'nincongruously': 1,\n",
      "          'intercut': 1,\n",
      "          'sequence': 1,\n",
      "          'see': 1,\n",
      "          'jeffrey': 1,\n",
      "          'russell': 1,\n",
      "          'crowe': 1,\n",
      "          'dejectedly': 1,\n",
      "          'returning': 1,\n",
      "          'work': 1,\n",
      "          'home': 1,\n",
      "          'discover': 1,\n",
      "          'fired': 1,\n",
      "          'career': 1,\n",
      "          'brought': 1,\n",
      "          'complete': 1,\n",
      "          'halt': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'profitably': 1,\n",
      "          'rewarded': 1,\n",
      "          'charge': 1,\n",
      "          'research': 1,\n",
      "          'development': 1,\n",
      "          'brown': 1,\n",
      "          'williams': 1,\n",
      "          'unemployed': 1,\n",
      "          'money': 1,\n",
      "          'nrather': 1,\n",
      "          'wife': 1,\n",
      "          'liane': 1,\n",
      "          'diane': 1,\n",
      "          'venora': 1,\n",
      "          'demands': 1,\n",
      "          'supposed': 1,\n",
      "          'income': 1,\n",
      "          'trying': 1,\n",
      "          'fires': 1,\n",
      "          'started': 1,\n",
      "          'cigarettes': 1,\n",
      "          'obtained': 1,\n",
      "          'understand': 1,\n",
      "          'offer': 1,\n",
      "          '12': 1,\n",
      "          '000': 1,\n",
      "          'nwigands': 1,\n",
      "          'swears': 1,\n",
      "          'anything': 1,\n",
      "          'knows': 1,\n",
      "          'dealings': 1,\n",
      "          'reluctantly': 1,\n",
      "          'stretches': 1,\n",
      "          'terms': 1,\n",
      "          'documents': 1,\n",
      "          'company': 1,\n",
      "          'nin': 1,\n",
      "          'spite': 1,\n",
      "          'wigands': 1,\n",
      "          'employers': 1,\n",
      "          'seem': 1,\n",
      "          'immediately': 1,\n",
      "          'talking': 1,\n",
      "          'warned': 1,\n",
      "          'boss': 1,\n",
      "          'thomas': 1,\n",
      "          'sandefur': 1,\n",
      "          'gambon': 1,\n",
      "          'brief': 1,\n",
      "          'deliciously': 1,\n",
      "          'sinister': 1,\n",
      "          'role': 1,\n",
      "          'game': 1,\n",
      "          'begins': 1,\n",
      "          'irate': 1,\n",
      "          'negative': 1,\n",
      "          'treatment': 1,\n",
      "          'still': 1,\n",
      "          'considered': 1,\n",
      "          'continued': 1,\n",
      "          'loyalty': 1,\n",
      "          'employer': 1,\n",
      "          'someone': 1,\n",
      "          'playing': 1,\n",
      "          'rough': 1,\n",
      "          'examines': 1,\n",
      "          'pressures': 1,\n",
      "          'placed': 1,\n",
      "          'caught': 1,\n",
      "          'powerful': 1,\n",
      "          'giants': 1,\n",
      "          'always': 1,\n",
      "          'safer': 1,\n",
      "          'natural': 1,\n",
      "          'sympathies': 1,\n",
      "          'assaulted': 1,\n",
      "          'psychologically': 1,\n",
      "          'financially': 1,\n",
      "          'giant': 1,\n",
      "          'never': 1,\n",
      "          'lost': 1,\n",
      "          'legal': 1,\n",
      "          'fight': 1,\n",
      "          'nal': 1,\n",
      "          'given': 1,\n",
      "          'top': 1,\n",
      "          'billing': 1,\n",
      "          'core': 1,\n",
      "          'slowly': 1,\n",
      "          'bit': 1,\n",
      "          'meticulous': 1,\n",
      "          '157': 1,\n",
      "          'extremely': 1,\n",
      "          'demanding': 1,\n",
      "          'audience': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'pieter': 1,\n",
      "          'bourke': 1,\n",
      "          'lisa': 1,\n",
      "          'gerrard': 1,\n",
      "          'graeme': 1,\n",
      "          'revell': 1,\n",
      "          'worst': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'puts': 1,\n",
      "          'ominous': 1,\n",
      "          'chords': 1,\n",
      "          'scenes': 1,\n",
      "          'using': 1,\n",
      "          'voice': 1,\n",
      "          'ways': 1,\n",
      "          'become': 1,\n",
      "          'distraction': 1,\n",
      "          'gets': 1,\n",
      "          'way': 1,\n",
      "          'storytelling': 1,\n",
      "          'nalso': 1,\n",
      "          'disturbing': 1,\n",
      "          'casting': 1,\n",
      "          'nplummer': 1,\n",
      "          'types': 1,\n",
      "          'wellknown': 1,\n",
      "          'even': 1,\n",
      "          'actor': 1,\n",
      "          'play': 1,\n",
      "          'convincingly': 1,\n",
      "          'might': 1,\n",
      "          'engaging': 1,\n",
      "          'experience': 1,\n",
      "          'directors': 1,\n",
      "          'control': 1,\n",
      "          'nmichael': 1,\n",
      "          'wrong': 1,\n",
      "          'person': 1,\n",
      "          'helm': 1,\n",
      "          'lacks': 1,\n",
      "          'intensity': 1,\n",
      "          'rate': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'eye': 9,\n",
      "          'movie': 6,\n",
      "          'judd': 5,\n",
      "          'time': 5,\n",
      "          'one': 5,\n",
      "          'nand': 4,\n",
      "          'little': 4,\n",
      "          'nthe': 4,\n",
      "          'audience': 3,\n",
      "          'think': 3,\n",
      "          'still': 3,\n",
      "          'lot': 3,\n",
      "          'last': 3,\n",
      "          'woman': 3,\n",
      "          'thats': 3,\n",
      "          'could': 3,\n",
      "          'character': 3,\n",
      "          'film': 3,\n",
      "          'deep': 3,\n",
      "          'would': 3,\n",
      "          'nthere': 3,\n",
      "          'minutes': 3,\n",
      "          'known': 2,\n",
      "          'newan': 2,\n",
      "          'mcgregor': 2,\n",
      "          'hightech': 2,\n",
      "          'riflely': 2,\n",
      "          'gadget': 2,\n",
      "          'nwe': 2,\n",
      "          'going': 2,\n",
      "          'target': 2,\n",
      "          'instead': 2,\n",
      "          'takes': 2,\n",
      "          'twenty': 2,\n",
      "          'pointless': 2,\n",
      "          'reason': 2,\n",
      "          'ewan': 2,\n",
      "          'mcgregors': 2,\n",
      "          'desert': 2,\n",
      "          'ni': 2,\n",
      "          'idea': 2,\n",
      "          'apparently': 2,\n",
      "          'expensive': 2,\n",
      "          'nwhen': 2,\n",
      "          'ashley': 2,\n",
      "          'starts': 2,\n",
      "          'something': 2,\n",
      "          'around': 2,\n",
      "          'sort': 2,\n",
      "          'explanation': 2,\n",
      "          'fails': 2,\n",
      "          'end': 2,\n",
      "          'surreal': 2,\n",
      "          'even': 2,\n",
      "          'changes': 2,\n",
      "          'wigs': 2,\n",
      "          'two': 2,\n",
      "          'make': 2,\n",
      "          'nexplanation': 2,\n",
      "          'ms': 2,\n",
      "          'everything': 2,\n",
      "          'hell': 2,\n",
      "          'point': 2,\n",
      "          'bell': 2,\n",
      "          'guy': 2,\n",
      "          'niguana': 2,\n",
      "          'focus': 2,\n",
      "          'found': 2,\n",
      "          'cut': 2,\n",
      "          'talking': 2,\n",
      "          'screen': 2,\n",
      "          'damn': 1,\n",
      "          'codename': 1,\n",
      "          'pointing': 1,\n",
      "          'fat': 1,\n",
      "          'bald': 1,\n",
      "          'businessoriented': 1,\n",
      "          'american': 1,\n",
      "          'engaging': 1,\n",
      "          'illicit': 1,\n",
      "          'sexual': 1,\n",
      "          'activities': 1,\n",
      "          'window': 1,\n",
      "          'across': 1,\n",
      "          'street': 1,\n",
      "          'get': 1,\n",
      "          'requisite': 1,\n",
      "          'electrogreen': 1,\n",
      "          'throughthesight': 1,\n",
      "          'view': 1,\n",
      "          'seeing': 1,\n",
      "          'high': 1,\n",
      "          'tech': 1,\n",
      "          'course': 1,\n",
      "          'assassinate': 1,\n",
      "          'pulls': 1,\n",
      "          'trigger': 1,\n",
      "          'rifle': 1,\n",
      "          'hazy': 1,\n",
      "          'lowquality': 1,\n",
      "          'photographs': 1,\n",
      "          'proceeds': 1,\n",
      "          'fax': 1,\n",
      "          'email': 1,\n",
      "          'everyone': 1,\n",
      "          'targets': 1,\n",
      "          'office': 1,\n",
      "          'nall': 1,\n",
      "          'right': 1,\n",
      "          'thirty': 1,\n",
      "          'seconds': 1,\n",
      "          'slightly': 1,\n",
      "          'befuddled': 1,\n",
      "          'seemingly': 1,\n",
      "          'riflecamera': 1,\n",
      "          'open': 1,\n",
      "          'minded': 1,\n",
      "          'nmaybe': 1,\n",
      "          'theres': 1,\n",
      "          'really': 1,\n",
      "          'good': 1,\n",
      "          'nive': 1,\n",
      "          'got': 1,\n",
      "          'believe': 1,\n",
      "          'see': 1,\n",
      "          'admire': 1,\n",
      "          'previous': 1,\n",
      "          'work': 1,\n",
      "          'hes': 1,\n",
      "          'obi': 1,\n",
      "          'wan': 1,\n",
      "          'ke': 1,\n",
      "          'frigginnobi': 1,\n",
      "          'gods': 1,\n",
      "          'sake': 1,\n",
      "          'director': 1,\n",
      "          'stephan': 1,\n",
      "          'elliots': 1,\n",
      "          'priscilla': 1,\n",
      "          'queen': 1,\n",
      "          'quirky': 1,\n",
      "          'delight': 1,\n",
      "          'ntheres': 1,\n",
      "          'genuine': 1,\n",
      "          'talent': 1,\n",
      "          'involved': 1,\n",
      "          'minute': 1,\n",
      "          'mark': 1,\n",
      "          'spark': 1,\n",
      "          'hope': 1,\n",
      "          'heart': 1,\n",
      "          'neye': 1,\n",
      "          'assigned': 1,\n",
      "          'investigate': 1,\n",
      "          'leader': 1,\n",
      "          'organizations': 1,\n",
      "          'son': 1,\n",
      "          'organization': 1,\n",
      "          'british': 1,\n",
      "          'intelligence': 1,\n",
      "          'nnational': 1,\n",
      "          'spy': 1,\n",
      "          'ring': 1,\n",
      "          'nprivate': 1,\n",
      "          'investigation': 1,\n",
      "          'stealing': 1,\n",
      "          'trust': 1,\n",
      "          'fund': 1,\n",
      "          'nhe': 1,\n",
      "          'received': 1,\n",
      "          'assignment': 1,\n",
      "          'k': 1,\n",
      "          'nlang': 1,\n",
      "          'elaborate': 1,\n",
      "          'teleconferencing': 1,\n",
      "          'briefcase': 1,\n",
      "          'tracks': 1,\n",
      "          'looking': 1,\n",
      "          'secluded': 1,\n",
      "          'house': 1,\n",
      "          'witnesses': 1,\n",
      "          'mysterious': 1,\n",
      "          'beautiful': 1,\n",
      "          'take': 1,\n",
      "          'knife': 1,\n",
      "          'proceed': 1,\n",
      "          'stab': 1,\n",
      "          'poor': 1,\n",
      "          'bastard': 1,\n",
      "          'nok': 1,\n",
      "          'odd': 1,\n",
      "          'interesting': 1,\n",
      "          'nthen': 1,\n",
      "          'cry': 1,\n",
      "          'tears': 1,\n",
      "          'exclaims': 1,\n",
      "          'merry': 1,\n",
      "          'christmas': 1,\n",
      "          'dad': 1,\n",
      "          'nfor': 1,\n",
      "          'first': 1,\n",
      "          'nso': 1,\n",
      "          'begins': 1,\n",
      "          'tale': 1,\n",
      "          'obsession': 1,\n",
      "          'rest': 1,\n",
      "          'involves': 1,\n",
      "          'following': 1,\n",
      "          'every': 1,\n",
      "          'corner': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'totally': 1,\n",
      "          'completely': 1,\n",
      "          'obsessed': 1,\n",
      "          'afar': 1,\n",
      "          'nthroughout': 1,\n",
      "          'entire': 1,\n",
      "          'professional': 1,\n",
      "          'life': 1,\n",
      "          'voyeur': 1,\n",
      "          'falls': 1,\n",
      "          'someone': 1,\n",
      "          'way': 1,\n",
      "          'handle': 1,\n",
      "          'watch': 1,\n",
      "          'drool': 1,\n",
      "          'telescopes': 1,\n",
      "          'cameras': 1,\n",
      "          'nfine': 1,\n",
      "          'lovely': 1,\n",
      "          'premise': 1,\n",
      "          'suppose': 1,\n",
      "          'nbut': 1,\n",
      "          'gosh': 1,\n",
      "          'darn': 1,\n",
      "          'youre': 1,\n",
      "          'go': 1,\n",
      "          'better': 1,\n",
      "          'precisely': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'pisses': 1,\n",
      "          'nits': 1,\n",
      "          'abortion': 1,\n",
      "          'collection': 1,\n",
      "          'halfformed': 1,\n",
      "          'wasted': 1,\n",
      "          'ideas': 1,\n",
      "          'amounts': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'nit': 1,\n",
      "          'pretends': 1,\n",
      "          'psychological': 1,\n",
      "          'study': 1,\n",
      "          'wrapped': 1,\n",
      "          'thriller': 1,\n",
      "          'nhere': 1,\n",
      "          'filmmakers': 1,\n",
      "          'confused': 1,\n",
      "          'vaguely': 1,\n",
      "          'unclear': 1,\n",
      "          'crammed': 1,\n",
      "          'full': 1,\n",
      "          'insultingly': 1,\n",
      "          'obvious': 1,\n",
      "          'metaphors': 1,\n",
      "          'never': 1,\n",
      "          'instant': 1,\n",
      "          'foggiest': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'kills': 1,\n",
      "          'people': 1,\n",
      "          'offers': 1,\n",
      "          'explanations': 1,\n",
      "          'neither': 1,\n",
      "          'lick': 1,\n",
      "          'sense': 1,\n",
      "          'number': 1,\n",
      "          'obnoxious': 1,\n",
      "          'presence': 1,\n",
      "          'eyes': 1,\n",
      "          'imaginary': 1,\n",
      "          'daughter': 1,\n",
      "          'taken': 1,\n",
      "          'away': 1,\n",
      "          'wife': 1,\n",
      "          'ago': 1,\n",
      "          'tells': 1,\n",
      "          'shouldnt': 1,\n",
      "          'leave': 1,\n",
      "          'beaten': 1,\n",
      "          'heads': 1,\n",
      "          'imagery': 1,\n",
      "          'dialog': 1,\n",
      "          'title': 1,\n",
      "          'beauty': 1,\n",
      "          'beholder': 1,\n",
      "          'nwhoo': 1,\n",
      "          'hoo': 1,\n",
      "          'helps': 1,\n",
      "          'thanks': 1,\n",
      "          'bunch': 1,\n",
      "          'case': 1,\n",
      "          'closed': 1,\n",
      "          'nthats': 1,\n",
      "          'gets': 1,\n",
      "          'folks': 1,\n",
      "          'attempt': 1,\n",
      "          'final': 1,\n",
      "          'tying': 1,\n",
      "          'together': 1,\n",
      "          'ends': 1,\n",
      "          'profound': 1,\n",
      "          'clever': 1,\n",
      "          'sixthgrade': 1,\n",
      "          'mad': 1,\n",
      "          'lib': 1,\n",
      "          'secondary': 1,\n",
      "          'characters': 1,\n",
      "          'move': 1,\n",
      "          'picture': 1,\n",
      "          'serve': 1,\n",
      "          'purpose': 1,\n",
      "          'except': 1,\n",
      "          'wonder': 1,\n",
      "          'nmy': 1,\n",
      "          'personal': 1,\n",
      "          'favorites': 1,\n",
      "          'include': 1,\n",
      "          'prisonmatron': 1,\n",
      "          'modeled': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'frau': 1,\n",
      "          'farbissina': 1,\n",
      "          'taught': 1,\n",
      "          'knows': 1,\n",
      "          'wearing': 1,\n",
      "          'jason': 1,\n",
      "          'priestleys': 1,\n",
      "          'awfully': 1,\n",
      "          'played': 1,\n",
      "          'dirty': 1,\n",
      "          'vagrant': 1,\n",
      "          '1': 1,\n",
      "          'tries': 1,\n",
      "          'emulate': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'la': 1,\n",
      "          'blue': 1,\n",
      "          'velvet': 1,\n",
      "          'miserably': 1,\n",
      "          'copwhoseesashleyfleeinganaccidentsceneand': 1,\n",
      "          'thenwantstopayforsex': 1,\n",
      "          'butisshot': 1,\n",
      "          'neach': 1,\n",
      "          'sad': 1,\n",
      "          'parade': 1,\n",
      "          'script': 1,\n",
      "          'pays': 1,\n",
      "          'attention': 1,\n",
      "          'laws': 1,\n",
      "          'space': 1,\n",
      "          'nany': 1,\n",
      "          'frequent': 1,\n",
      "          'location': 1,\n",
      "          'occurs': 1,\n",
      "          'camera': 1,\n",
      "          'zooms': 1,\n",
      "          'souvenir': 1,\n",
      "          'snow': 1,\n",
      "          'globe': 1,\n",
      "          'weeks': 1,\n",
      "          'years': 1,\n",
      "          'passed': 1,\n",
      "          'nbewilderingly': 1,\n",
      "          'inane': 1,\n",
      "          'stylistic': 1,\n",
      "          'decisions': 1,\n",
      "          'plague': 1,\n",
      "          'whole': 1,\n",
      "          'affair': 1,\n",
      "          'passes': 1,\n",
      "          'glass': 1,\n",
      "          'cognac': 1,\n",
      "          'another': 1,\n",
      "          'slowmotion': 1,\n",
      "          'closeup': 1,\n",
      "          'awash': 1,\n",
      "          'bass': 1,\n",
      "          'residence': 1,\n",
      "          'tower': 1,\n",
      "          'repeatedly': 1,\n",
      "          'awakened': 1,\n",
      "          'deafened': 1,\n",
      "          'giant': 1,\n",
      "          'njason': 1,\n",
      "          'priestly': 1,\n",
      "          'philosophizing': 1,\n",
      "          'sharks': 1,\n",
      "          'laughs': 1,\n",
      "          'maniacally': 1,\n",
      "          'ncut': 1,\n",
      "          'random': 1,\n",
      "          'patch': 1,\n",
      "          'comes': 1,\n",
      "          'nwow': 1,\n",
      "          'man': 1,\n",
      "          'afterward': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'came': 1,\n",
      "          'surprise': 1,\n",
      "          'plenty': 1,\n",
      "          'elements': 1,\n",
      "          'extended': 1,\n",
      "          'fleshed': 1,\n",
      "          'made': 1,\n",
      "          'decent': 1,\n",
      "          'story': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprised': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'footage': 1,\n",
      "          'lying': 1,\n",
      "          'landfill': 1,\n",
      "          'somewhere': 1,\n",
      "          'waiting': 1,\n",
      "          'wings': 1,\n",
      "          'dvd': 1,\n",
      "          'special': 1,\n",
      "          'directors': 1,\n",
      "          'nnot': 1,\n",
      "          'anything': 1,\n",
      "          'ever': 1,\n",
      "          'possess': 1,\n",
      "          'purchase': 1,\n",
      "          'thing': 1,\n",
      "          'find': 1,\n",
      "          'missing': 1,\n",
      "          'ten': 1,\n",
      "          'featured': 1,\n",
      "          'conversation': 1,\n",
      "          'supposed': 1,\n",
      "          'revealing': 1,\n",
      "          'exposition': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nsome': 1,\n",
      "          'back': 1,\n",
      "          'theater': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'didnt': 1,\n",
      "          'particularly': 1,\n",
      "          'care': 1,\n",
      "          'much': 1,\n",
      "          'happening': 1,\n",
      "          'steaming': 1,\n",
      "          'pile': 1,\n",
      "          'unholy': 1,\n",
      "          'crap': 1,\n",
      "          'chuckled': 1,\n",
      "          'whispered': 1,\n",
      "          'sentiments': 1,\n",
      "          'similar': 1,\n",
      "          'thinking': 1,\n",
      "          'nsomeone': 1,\n",
      "          'near': 1,\n",
      "          'cellphoneguy': 1,\n",
      "          'eventually': 1,\n",
      "          'yell': 1,\n",
      "          'shut': 1,\n",
      "          'funnier': 1,\n",
      "          'thought': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'mimic': 6,\n",
      "          'ni': 6,\n",
      "          'director': 5,\n",
      "          'make': 5,\n",
      "          'made': 5,\n",
      "          'movies': 5,\n",
      "          'hollywood': 4,\n",
      "          'america': 4,\n",
      "          'del': 4,\n",
      "          'toro': 4,\n",
      "          'nthe': 4,\n",
      "          'n': 3,\n",
      "          'trend': 3,\n",
      "          'foreign': 3,\n",
      "          'characters': 3,\n",
      "          'lights': 3,\n",
      "          'dont': 3,\n",
      "          'njust': 3,\n",
      "          'think': 3,\n",
      "          'good': 3,\n",
      "          'bad': 2,\n",
      "          'shows': 2,\n",
      "          'lot': 2,\n",
      "          'plot': 2,\n",
      "          'stupid': 2,\n",
      "          'meets': 2,\n",
      "          'ntheres': 2,\n",
      "          'nothing': 2,\n",
      "          'youre': 2,\n",
      "          'followed': 2,\n",
      "          'turn': 2,\n",
      "          'times': 2,\n",
      "          'see': 2,\n",
      "          'sorvino': 2,\n",
      "          'like': 2,\n",
      "          'scares': 2,\n",
      "          'audience': 2,\n",
      "          'isnt': 2,\n",
      "          'films': 2,\n",
      "          'time': 2,\n",
      "          'came': 2,\n",
      "          'directed': 2,\n",
      "          'know': 2,\n",
      "          'american': 2,\n",
      "          'big': 2,\n",
      "          'things': 2,\n",
      "          'always': 2,\n",
      "          'youll': 2,\n",
      "          'definitly': 1,\n",
      "          'scared': 1,\n",
      "          'continued': 1,\n",
      "          'frightening': 1,\n",
      "          'taking': 1,\n",
      "          'creative': 1,\n",
      "          'ingenuity': 1,\n",
      "          'style': 1,\n",
      "          'completely': 1,\n",
      "          'flushing': 1,\n",
      "          'comes': 1,\n",
      "          'ndirector': 1,\n",
      "          'guillermo': 1,\n",
      "          'recently': 1,\n",
      "          'imported': 1,\n",
      "          'mexico': 1,\n",
      "          'award': 1,\n",
      "          'winning': 1,\n",
      "          'inventive': 1,\n",
      "          'horror': 1,\n",
      "          'film': 1,\n",
      "          'cronos': 1,\n",
      "          'nthat': 1,\n",
      "          'worked': 1,\n",
      "          'took': 1,\n",
      "          'unconventional': 1,\n",
      "          'story': 1,\n",
      "          'unique': 1,\n",
      "          'well': 1,\n",
      "          'written': 1,\n",
      "          'dialogue': 1,\n",
      "          'create': 1,\n",
      "          'truly': 1,\n",
      "          'scary': 1,\n",
      "          'nin': 1,\n",
      "          'doesnt': 1,\n",
      "          'bother': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'anything': 1,\n",
      "          'original': 1,\n",
      "          'combination': 1,\n",
      "          'aliens': 1,\n",
      "          'species': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'recycled': 1,\n",
      "          'hundred': 1,\n",
      "          'new': 1,\n",
      "          'nits': 1,\n",
      "          'bunch': 1,\n",
      "          'old': 1,\n",
      "          'tricks': 1,\n",
      "          'rarely': 1,\n",
      "          'work': 1,\n",
      "          'nat': 1,\n",
      "          'end': 1,\n",
      "          'stuck': 1,\n",
      "          'wanting': 1,\n",
      "          'money': 1,\n",
      "          'back': 1,\n",
      "          'nmaybe': 1,\n",
      "          'worst': 1,\n",
      "          'thing': 1,\n",
      "          'another': 1,\n",
      "          'annoying': 1,\n",
      "          'recent': 1,\n",
      "          'forgot': 1,\n",
      "          'understand': 1,\n",
      "          'suspense': 1,\n",
      "          'lately': 1,\n",
      "          'follow': 1,\n",
      "          'seven': 1,\n",
      "          'set': 1,\n",
      "          'dark': 1,\n",
      "          'dank': 1,\n",
      "          'areas': 1,\n",
      "          'nwatching': 1,\n",
      "          'tempted': 1,\n",
      "          'several': 1,\n",
      "          'yell': 1,\n",
      "          'screen': 1,\n",
      "          'switch': 1,\n",
      "          'right': 1,\n",
      "          'nuse': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'nyoull': 1,\n",
      "          'able': 1,\n",
      "          'monster': 1,\n",
      "          'corner': 1,\n",
      "          'scene': 1,\n",
      "          'mira': 1,\n",
      "          'standing': 1,\n",
      "          'subway': 1,\n",
      "          'station': 1,\n",
      "          'flickering': 1,\n",
      "          'nit': 1,\n",
      "          'looked': 1,\n",
      "          'light': 1,\n",
      "          'operator': 1,\n",
      "          'seizure': 1,\n",
      "          'didnt': 1,\n",
      "          'even': 1,\n",
      "          'notice': 1,\n",
      "          'stood': 1,\n",
      "          'looking': 1,\n",
      "          'deep': 1,\n",
      "          'thoughts': 1,\n",
      "          'hmmm': 1,\n",
      "          'bean': 1,\n",
      "          'soup': 1,\n",
      "          'would': 1,\n",
      "          'dinner': 1,\n",
      "          'tonight': 1,\n",
      "          'incidental': 1,\n",
      "          'shock': 1,\n",
      "          'tactics': 1,\n",
      "          'boo': 1,\n",
      "          'kidding': 1,\n",
      "          'follows': 1,\n",
      "          'real': 1,\n",
      "          'scare': 1,\n",
      "          'theater': 1,\n",
      "          'never': 1,\n",
      "          'jumped': 1,\n",
      "          'suspenseful': 1,\n",
      "          'moments': 1,\n",
      "          'bored': 1,\n",
      "          'shouldnt': 1,\n",
      "          'blame': 1,\n",
      "          'nhe': 1,\n",
      "          'first': 1,\n",
      "          'successful': 1,\n",
      "          'come': 1,\n",
      "          'nhong': 1,\n",
      "          'kong': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'two': 1,\n",
      "          'best': 1,\n",
      "          'action': 1,\n",
      "          'killer': 1,\n",
      "          'hard': 1,\n",
      "          'boiled': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'nfrench': 1,\n",
      "          'directors': 1,\n",
      "          'luc': 1,\n",
      "          'besson': 1,\n",
      "          'la': 1,\n",
      "          'femme': 1,\n",
      "          'nikita': 1,\n",
      "          'george': 1,\n",
      "          'sluizer': 1,\n",
      "          'vanishing': 1,\n",
      "          'woos': 1,\n",
      "          'lead': 1,\n",
      "          'dumbed': 1,\n",
      "          'versions': 1,\n",
      "          'nrobert': 1,\n",
      "          'rodriguez': 1,\n",
      "          'terrific': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'el': 1,\n",
      "          'mariachi': 1,\n",
      "          'horrible': 1,\n",
      "          'highbudget': 1,\n",
      "          'desperado': 1,\n",
      "          'talent': 1,\n",
      "          'country': 1,\n",
      "          'cant': 1,\n",
      "          'nwoo': 1,\n",
      "          'finally': 1,\n",
      "          'broke': 1,\n",
      "          'faceoff': 1,\n",
      "          'still': 1,\n",
      "          'par': 1,\n",
      "          'earlier': 1,\n",
      "          'get': 1,\n",
      "          'feeling': 1,\n",
      "          'producer': 1,\n",
      "          'sits': 1,\n",
      "          'office': 1,\n",
      "          'chews': 1,\n",
      "          'smelly': 1,\n",
      "          'cigar': 1,\n",
      "          'says': 1,\n",
      "          'welcome': 1,\n",
      "          'bet': 1,\n",
      "          'must': 1,\n",
      "          'tired': 1,\n",
      "          'boat': 1,\n",
      "          'long': 1,\n",
      "          'ndo': 1,\n",
      "          'speak': 1,\n",
      "          'english': 1,\n",
      "          'nnow': 1,\n",
      "          'youve': 1,\n",
      "          'past': 1,\n",
      "          'little': 1,\n",
      "          'different': 1,\n",
      "          'remember': 1,\n",
      "          'wants': 1,\n",
      "          'fine': 1,\n",
      "          'nthey': 1,\n",
      "          'want': 1,\n",
      "          'least': 1,\n",
      "          'one': 1,\n",
      "          'breasted': 1,\n",
      "          'woman': 1,\n",
      "          'theyve': 1,\n",
      "          'seen': 1,\n",
      "          'thousand': 1,\n",
      "          'change': 1,\n",
      "          'americans': 1,\n",
      "          'need': 1,\n",
      "          'cheesy': 1,\n",
      "          'feelgood': 1,\n",
      "          'ending': 1,\n",
      "          'wrap': 1,\n",
      "          'nif': 1,\n",
      "          'kind': 1,\n",
      "          'shining': 1,\n",
      "          'shoes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'darren': 7,\n",
      "          'wayne': 7,\n",
      "          'j': 7,\n",
      "          'judith': 7,\n",
      "          'nthe': 6,\n",
      "          'silverman': 5,\n",
      "          'zahn': 4,\n",
      "          'black': 4,\n",
      "          'get': 4,\n",
      "          'biggs': 3,\n",
      "          'together': 3,\n",
      "          'friend': 3,\n",
      "          'saving': 3,\n",
      "          'films': 3,\n",
      "          'rest': 3,\n",
      "          'film': 3,\n",
      "          'steve': 2,\n",
      "          'jack': 2,\n",
      "          'best': 2,\n",
      "          'three': 2,\n",
      "          'musketeers': 2,\n",
      "          'manipulative': 2,\n",
      "          'amanda': 2,\n",
      "          'peet': 2,\n",
      "          'long': 2,\n",
      "          'story': 2,\n",
      "          'darrens': 2,\n",
      "          'doesnt': 2,\n",
      "          'realize': 2,\n",
      "          'boxing': 2,\n",
      "          'one': 2,\n",
      "          'sandy': 2,\n",
      "          'detmer': 2,\n",
      "          'boys': 2,\n",
      "          'idol': 2,\n",
      "          'neil': 2,\n",
      "          'diamond': 2,\n",
      "          'comedic': 2,\n",
      "          'able': 2,\n",
      "          'laughs': 2,\n",
      "          'humor': 2,\n",
      "          'two': 2,\n",
      "          'gives': 2,\n",
      "          'though': 2,\n",
      "          'gets': 2,\n",
      "          'namanda': 2,\n",
      "          'character': 2,\n",
      "          'nothing': 2,\n",
      "          'bad': 2,\n",
      "          'comedy': 2,\n",
      "          'good': 2,\n",
      "          'jason': 1,\n",
      "          'friends': 1,\n",
      "          'since': 1,\n",
      "          'fifth': 1,\n",
      "          'grade': 1,\n",
      "          'nlike': 1,\n",
      "          'theyve': 1,\n",
      "          'thick': 1,\n",
      "          'thin': 1,\n",
      "          'nbut': 1,\n",
      "          'meets': 1,\n",
      "          'attractive': 1,\n",
      "          'coldblooded': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'time': 1,\n",
      "          'friendship': 1,\n",
      "          'placed': 1,\n",
      "          'danger': 1,\n",
      "          'nits': 1,\n",
      "          'rescue': 1,\n",
      "          'n': 1,\n",
      "          'heart': 1,\n",
      "          'right': 1,\n",
      "          'place': 1,\n",
      "          'newcomers': 1,\n",
      "          'hank': 1,\n",
      "          'nelken': 1,\n",
      "          'greg': 1,\n",
      "          'depaul': 1,\n",
      "          'lightweight': 1,\n",
      "          'sustain': 1,\n",
      "          'tale': 1,\n",
      "          'battle': 1,\n",
      "          'soul': 1,\n",
      "          'nbased': 1,\n",
      "          'experience': 1,\n",
      "          'making': 1,\n",
      "          'major': 1,\n",
      "          'marital': 1,\n",
      "          'mistake': 1,\n",
      "          'centered': 1,\n",
      "          'life': 1,\n",
      "          'amigos': 1,\n",
      "          'nwhen': 1,\n",
      "          'introduces': 1,\n",
      "          'opened': 1,\n",
      "          'pandoras': 1,\n",
      "          'box': 1,\n",
      "          'disaster': 1,\n",
      "          'relationship': 1,\n",
      "          'boyfriend': 1,\n",
      "          'dominant': 1,\n",
      "          'figure': 1,\n",
      "          'died': 1,\n",
      "          'kick': 1,\n",
      "          'match': 1,\n",
      "          'nsince': 1,\n",
      "          'sought': 1,\n",
      "          'new': 1,\n",
      "          'mate': 1,\n",
      "          'someone': 1,\n",
      "          'boss': 1,\n",
      "          'around': 1,\n",
      "          'mold': 1,\n",
      "          'vision': 1,\n",
      "          'nenter': 1,\n",
      "          'nonce': 1,\n",
      "          'magnitude': 1,\n",
      "          'error': 1,\n",
      "          'judgement': 1,\n",
      "          'try': 1,\n",
      "          'everything': 1,\n",
      "          'including': 1,\n",
      "          'threats': 1,\n",
      "          'bribery': 1,\n",
      "          'free': 1,\n",
      "          'nnothing': 1,\n",
      "          'works': 1,\n",
      "          'duo': 1,\n",
      "          'come': 1,\n",
      "          'plan': 1,\n",
      "          'kidnap': 1,\n",
      "          'back': 1,\n",
      "          'girl': 1,\n",
      "          'called': 1,\n",
      "          'pretty': 1,\n",
      "          'perkus': 1,\n",
      "          'problem': 1,\n",
      "          'take': 1,\n",
      "          'vows': 1,\n",
      "          'become': 1,\n",
      "          'nun': 1,\n",
      "          'nthings': 1,\n",
      "          'spiral': 1,\n",
      "          'control': 1,\n",
      "          'repeatedly': 1,\n",
      "          'attempts': 1,\n",
      "          'escape': 1,\n",
      "          'play': 1,\n",
      "          'cupid': 1,\n",
      "          'even': 1,\n",
      "          'bring': 1,\n",
      "          'picture': 1,\n",
      "          'help': 1,\n",
      "          'resolve': 1,\n",
      "          'things': 1,\n",
      "          'nthinking': 1,\n",
      "          'real': 1,\n",
      "          'mishmash': 1,\n",
      "          'contrivance': 1,\n",
      "          'coincidence': 1,\n",
      "          'held': 1,\n",
      "          'solely': 1,\n",
      "          'efforts': 1,\n",
      "          'pair': 1,\n",
      "          'elicit': 1,\n",
      "          'goofy': 1,\n",
      "          'antics': 1,\n",
      "          'childlike': 1,\n",
      "          'behavior': 1,\n",
      "          'nthey': 1,\n",
      "          'relegated': 1,\n",
      "          'providing': 1,\n",
      "          'slapstick': 1,\n",
      "          'guy': 1,\n",
      "          'equal': 1,\n",
      "          'task': 1,\n",
      "          'nsteve': 1,\n",
      "          'steadily': 1,\n",
      "          'honing': 1,\n",
      "          'acting': 1,\n",
      "          'skills': 1,\n",
      "          'complexity': 1,\n",
      "          'brains': 1,\n",
      "          'gang': 1,\n",
      "          'njack': 1,\n",
      "          'bigguy': 1,\n",
      "          'moves': 1,\n",
      "          'chris': 1,\n",
      "          'farley': 1,\n",
      "          'giving': 1,\n",
      "          'amusing': 1,\n",
      "          'physical': 1,\n",
      "          'presence': 1,\n",
      "          'neat': 1,\n",
      "          'thing': 1,\n",
      "          'actors': 1,\n",
      "          'fresh': 1,\n",
      "          'stale': 1,\n",
      "          'material': 1,\n",
      "          'cast': 1,\n",
      "          'fare': 1,\n",
      "          'well': 1,\n",
      "          'njason': 1,\n",
      "          'straight': 1,\n",
      "          'man': 1,\n",
      "          'little': 1,\n",
      "          'watched': 1,\n",
      "          'previous': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'loser': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'attraction': 1,\n",
      "          'actually': 1,\n",
      "          'caustic': 1,\n",
      "          'nthere': 1,\n",
      "          'humanity': 1,\n",
      "          'singlemindedly': 1,\n",
      "          'strives': 1,\n",
      "          'recreate': 1,\n",
      "          'minds': 1,\n",
      "          'image': 1,\n",
      "          'nshes': 1,\n",
      "          'monster': 1,\n",
      "          'must': 1,\n",
      "          'defeat': 1,\n",
      "          'save': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'dimension': 1,\n",
      "          'brings': 1,\n",
      "          'nr': 1,\n",
      "          'lee': 1,\n",
      "          'ermey': 1,\n",
      "          'psychotic': 1,\n",
      "          'coach': 1,\n",
      "          'made': 1,\n",
      "          'decision': 1,\n",
      "          'taking': 1,\n",
      "          'role': 1,\n",
      "          'ntunemeister': 1,\n",
      "          'goodnatured': 1,\n",
      "          'cameo': 1,\n",
      "          'perf': 1,\n",
      "          'savior': 1,\n",
      "          'nproduction': 1,\n",
      "          'values': 1,\n",
      "          'par': 1,\n",
      "          'lackluster': 1,\n",
      "          'noninvolving': 1,\n",
      "          'ndirector': 1,\n",
      "          'dennis': 1,\n",
      "          'dugan': 1,\n",
      "          'track': 1,\n",
      "          'record': 1,\n",
      "          'broad': 1,\n",
      "          'like': 1,\n",
      "          'big': 1,\n",
      "          'daddy': 1,\n",
      "          'beverly': 1,\n",
      "          'hills': 1,\n",
      "          'ninja': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          '2001': 1,\n",
      "          'movie': 1,\n",
      "          'year': 1,\n",
      "          'yet': 1,\n",
      "          'provide': 1,\n",
      "          'us': 1,\n",
      "          'sink': 1,\n",
      "          'teeth': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'couple': 1,\n",
      "          'funny': 1,\n",
      "          'perfs': 1,\n",
      "          'ntoo': 1,\n",
      "          'lacks': 1,\n",
      "          'level': 1,\n",
      "          'nkick': 1,\n",
      "          'deaths': 1,\n",
      "          'conflicted': 1,\n",
      "          'nuns': 1,\n",
      "          'makings': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'c': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'robin': 3,\n",
      "          'long': 3,\n",
      "          'troubled': 2,\n",
      "          'youth': 2,\n",
      "          'life': 2,\n",
      "          'film': 2,\n",
      "          'quinn': 2,\n",
      "          'william': 2,\n",
      "          'series': 2,\n",
      "          'john': 2,\n",
      "          'hughes': 2,\n",
      "          'however': 2,\n",
      "          'intimate': 1,\n",
      "          'characterdriven': 1,\n",
      "          'drama': 1,\n",
      "          'crossroads': 1,\n",
      "          'read': 1,\n",
      "          'press': 1,\n",
      "          'notes': 1,\n",
      "          '_reach_the_rock_': 1,\n",
      "          'nim': 1,\n",
      "          'really': 1,\n",
      "          'sure': 1,\n",
      "          'statement': 1,\n",
      "          'describing': 1,\n",
      "          'words': 1,\n",
      "          'bear': 1,\n",
      "          'little': 1,\n",
      "          'resemblance': 1,\n",
      "          'slow': 1,\n",
      "          'completely': 1,\n",
      "          'uninvolving': 1,\n",
      "          'bore': 1,\n",
      "          'sawat': 1,\n",
      "          'least': 1,\n",
      "          'certainly': 1,\n",
      "          'describe': 1,\n",
      "          'goes': 1,\n",
      "          'nalessandro': 1,\n",
      "          'nivola': 1,\n",
      "          'plays': 1,\n",
      "          'fleming': 1,\n",
      "          'directionless': 1,\n",
      "          '21yearold': 1,\n",
      "          'penchant': 1,\n",
      "          'breaking': 1,\n",
      "          'storefront': 1,\n",
      "          'windows': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'npolice': 1,\n",
      "          'sergeant': 1,\n",
      "          'phil': 1,\n",
      "          'sadler': 1,\n",
      "          'takes': 1,\n",
      "          'ensues': 1,\n",
      "          'first': 1,\n",
      "          '70': 1,\n",
      "          'minutes': 1,\n",
      "          'tedious': 1,\n",
      "          'sneakouts': 1,\n",
      "          'sneakins': 1,\n",
      "          'slips': 1,\n",
      "          'jail': 1,\n",
      "          'cell': 1,\n",
      "          'breaks': 1,\n",
      "          'window': 1,\n",
      "          'returns': 1,\n",
      "          'without': 1,\n",
      "          'ever': 1,\n",
      "          'noticing': 1,\n",
      "          'nalso': 1,\n",
      "          'added': 1,\n",
      "          'pointless': 1,\n",
      "          'proceedings': 1,\n",
      "          'wouldbe': 1,\n",
      "          'humorous': 1,\n",
      "          'shenanigans': 1,\n",
      "          'involving': 1,\n",
      "          'quinns': 1,\n",
      "          'dimwitted': 1,\n",
      "          'deputy': 1,\n",
      "          'ernie': 1,\n",
      "          'attempting': 1,\n",
      "          'engage': 1,\n",
      "          'clandestine': 1,\n",
      "          'patrol': 1,\n",
      "          'car': 1,\n",
      "          'sex': 1,\n",
      "          'girlfriend': 1,\n",
      "          'donna': 1,\n",
      "          'karen': 1,\n",
      "          'sillas': 1,\n",
      "          'nwith': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'even': 1,\n",
      "          'remaining': 1,\n",
      "          'director': 1,\n",
      "          'ryan': 1,\n",
      "          'writer': 1,\n",
      "          'yes': 1,\n",
      "          '80s': 1,\n",
      "          'films': 1,\n",
      "          '_home_alone_': 1,\n",
      "          'finally': 1,\n",
      "          'approach': 1,\n",
      "          'something': 1,\n",
      "          'close': 1,\n",
      "          'point': 1,\n",
      "          'nturns': 1,\n",
      "          'still': 1,\n",
      "          'pines': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'sweetheart': 1,\n",
      "          'lise': 1,\n",
      "          'brooke': 1,\n",
      "          'langton': 1,\n",
      "          'gone': 1,\n",
      "          'hughess': 1,\n",
      "          'main': 1,\n",
      "          'concern': 1,\n",
      "          'last': 1,\n",
      "          'reveals': 1,\n",
      "          'tired': 1,\n",
      "          'live': 1,\n",
      "          'present': 1,\n",
      "          'future': 1,\n",
      "          'message': 1,\n",
      "          'nmost': 1,\n",
      "          'moviegoers': 1,\n",
      "          'likely': 1,\n",
      "          'asleep': 1,\n",
      "          'time': 1,\n",
      "          'nwide': 1,\n",
      "          'awake': 1,\n",
      "          'cast': 1,\n",
      "          'individually': 1,\n",
      "          'tackle': 1,\n",
      "          'showcase': 1,\n",
      "          'dramatic': 1,\n",
      "          'scenes': 1,\n",
      "          'energy': 1,\n",
      "          'skillthus': 1,\n",
      "          'revealing': 1,\n",
      "          '_real_': 1,\n",
      "          'purpose': 1,\n",
      "          'behind': 1,\n",
      "          'listless': 1,\n",
      "          'enterprise': 1,\n",
      "          'serve': 1,\n",
      "          'acting': 1,\n",
      "          'exercises': 1,\n",
      "          'nsuch': 1,\n",
      "          'glorified': 1,\n",
      "          'workshop': 1,\n",
      "          'may': 1,\n",
      "          'rewards': 1,\n",
      "          'actors': 1,\n",
      "          'leaves': 1,\n",
      "          'audiences': 1,\n",
      "          'booby': 1,\n",
      "          'prize': 1,\n",
      "          'n': 1,\n",
      "          'opens': 1,\n",
      "          'october': 1,\n",
      "          '16': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'vampires': 5,\n",
      "          'movie': 3,\n",
      "          'rude': 2,\n",
      "          'women': 2,\n",
      "          'make': 2,\n",
      "          'much': 2,\n",
      "          'nas': 2,\n",
      "          'suggestion': 2,\n",
      "          'vampire': 2,\n",
      "          'chauvinistic': 1,\n",
      "          'portrayed': 1,\n",
      "          'pawns': 1,\n",
      "          'abuse': 1,\n",
      "          'present': 1,\n",
      "          'pleasure': 1,\n",
      "          'men': 1,\n",
      "          'feed': 1,\n",
      "          'readied': 1,\n",
      "          'bashed': 1,\n",
      "          'beaten': 1,\n",
      "          'till': 1,\n",
      "          'ones': 1,\n",
      "          'sensibilities': 1,\n",
      "          'shocked': 1,\n",
      "          'low': 1,\n",
      "          'iq': 1,\n",
      "          'mentality': 1,\n",
      "          'regressive': 1,\n",
      "          'nto': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'buffoons': 1,\n",
      "          'go': 1,\n",
      "          'hunting': 1,\n",
      "          'rednecks': 1,\n",
      "          'deserve': 1,\n",
      "          'heads': 1,\n",
      "          'bitten': 1,\n",
      "          'bodies': 1,\n",
      "          'carved': 1,\n",
      "          'half': 1,\n",
      "          'nthe': 1,\n",
      "          'dilemma': 1,\n",
      "          'hating': 1,\n",
      "          'heroes': 1,\n",
      "          'villains': 1,\n",
      "          'makes': 1,\n",
      "          'one': 1,\n",
      "          'wish': 1,\n",
      "          'hand': 1,\n",
      "          'god': 1,\n",
      "          'would': 1,\n",
      "          'suddenly': 1,\n",
      "          'appear': 1,\n",
      "          'blast': 1,\n",
      "          'parties': 1,\n",
      "          'oblivion': 1,\n",
      "          'njames': 1,\n",
      "          'wood': 1,\n",
      "          'portrays': 1,\n",
      "          'jack': 1,\n",
      "          'crow': 1,\n",
      "          'man': 1,\n",
      "          'obsessed': 1,\n",
      "          'killing': 1,\n",
      "          'whose': 1,\n",
      "          'soul': 1,\n",
      "          'reason': 1,\n",
      "          'living': 1,\n",
      "          'based': 1,\n",
      "          'revenge': 1,\n",
      "          'killed': 1,\n",
      "          'parents': 1,\n",
      "          'good': 1,\n",
      "          'excuse': 1,\n",
      "          'obnoxious': 1,\n",
      "          'adam': 1,\n",
      "          'baldwin': 1,\n",
      "          'nothing': 1,\n",
      "          'stooge': 1,\n",
      "          'ordered': 1,\n",
      "          'beat': 1,\n",
      "          'director': 1,\n",
      "          'shouts': 1,\n",
      "          'action': 1,\n",
      "          'script': 1,\n",
      "          'reworked': 1,\n",
      "          'avoid': 1,\n",
      "          'offence': 1,\n",
      "          'female': 1,\n",
      "          'sex': 1,\n",
      "          'claims': 1,\n",
      "          'catholic': 1,\n",
      "          'church': 1,\n",
      "          'created': 1,\n",
      "          'dracula': 1,\n",
      "          'well': 1,\n",
      "          'second': 1,\n",
      "          'sacrilegious': 1,\n",
      "          'outside': 1,\n",
      "          'fact': 1,\n",
      "          'priests': 1,\n",
      "          'monks': 1,\n",
      "          'bear': 1,\n",
      "          'brunt': 1,\n",
      "          'fury': 1,\n",
      "          'enough': 1,\n",
      "          'blood': 1,\n",
      "          'spilt': 1,\n",
      "          'inquisition': 1,\n",
      "          'look': 1,\n",
      "          'tame': 1,\n",
      "          'nan': 1,\n",
      "          'awful': 1,\n",
      "          'counts': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'buffy': 1,\n",
      "          'bury': 1,\n",
      "          'group': 1,\n",
      "          'incompetent': 1,\n",
      "          'slayers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sarah': 9,\n",
      "          'tony': 7,\n",
      "          'never': 7,\n",
      "          'talk': 6,\n",
      "          'strangers': 6,\n",
      "          'sex': 5,\n",
      "          'de': 4,\n",
      "          'one': 4,\n",
      "          'cat': 3,\n",
      "          'audience': 3,\n",
      "          'film': 3,\n",
      "          'movie': 3,\n",
      "          'banderas': 3,\n",
      "          'mornay': 3,\n",
      "          'pet': 3,\n",
      "          'psychologist': 2,\n",
      "          'neighbor': 2,\n",
      "          'someone': 2,\n",
      "          'flowers': 2,\n",
      "          'obituary': 2,\n",
      "          'time': 2,\n",
      "          'conclusion': 2,\n",
      "          'obvious': 2,\n",
      "          'minutes': 2,\n",
      "          'dennis': 2,\n",
      "          'miller': 2,\n",
      "          'would': 2,\n",
      "          'upon': 2,\n",
      "          'receives': 2,\n",
      "          'na': 2,\n",
      "          'several': 2,\n",
      "          'like': 2,\n",
      "          'also': 2,\n",
      "          'carnival': 2,\n",
      "          'way': 2,\n",
      "          'quickly': 2,\n",
      "          'theyre': 2,\n",
      "          'day': 2,\n",
      "          'filmmakers': 2,\n",
      "          'poor': 2,\n",
      "          'nsuspense': 2,\n",
      "          'cliche': 2,\n",
      "          'stalked': 2,\n",
      "          'even': 2,\n",
      "          'hes': 2,\n",
      "          'synopsis': 1,\n",
      "          'blond': 1,\n",
      "          'criminal': 1,\n",
      "          'chooses': 1,\n",
      "          'copulate': 1,\n",
      "          'greasy': 1,\n",
      "          'mysterious': 1,\n",
      "          'puerto': 1,\n",
      "          'rican': 1,\n",
      "          'rather': 1,\n",
      "          'bearded': 1,\n",
      "          'cliff': 1,\n",
      "          'wisecracking': 1,\n",
      "          'upstairs': 1,\n",
      "          'nin': 1,\n",
      "          'meantime': 1,\n",
      "          'sends': 1,\n",
      "          'rotting': 1,\n",
      "          'puts': 1,\n",
      "          'name': 1,\n",
      "          'newspapers': 1,\n",
      "          'column': 1,\n",
      "          'kills': 1,\n",
      "          'ncomments': 1,\n",
      "          'colossal': 1,\n",
      "          'waste': 1,\n",
      "          'moves': 1,\n",
      "          'slower': 1,\n",
      "          'molasses': 1,\n",
      "          'winter': 1,\n",
      "          'arrive': 1,\n",
      "          '20': 1,\n",
      "          'none': 1,\n",
      "          'wouldnt': 1,\n",
      "          'think': 1,\n",
      "          'two': 1,\n",
      "          'genuine': 1,\n",
      "          'stars': 1,\n",
      "          'antonio': 1,\n",
      "          'evita': 1,\n",
      "          'rebecca': 1,\n",
      "          'hand': 1,\n",
      "          'rocks': 1,\n",
      "          'cradle': 1,\n",
      "          'acerbic': 1,\n",
      "          'comic': 1,\n",
      "          'genius': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'involved': 1,\n",
      "          'celluloid': 1,\n",
      "          'backfire': 1,\n",
      "          'turkey': 1,\n",
      "          'nnot': 1,\n",
      "          'however': 1,\n",
      "          'executive': 1,\n",
      "          'produced': 1,\n",
      "          'nwhat': 1,\n",
      "          'thinking': 1,\n",
      "          'nnever': 1,\n",
      "          'centers': 1,\n",
      "          'examining': 1,\n",
      "          'illtempered': 1,\n",
      "          'max': 1,\n",
      "          'murderer': 1,\n",
      "          'soon': 1,\n",
      "          'stand': 1,\n",
      "          'trial': 1,\n",
      "          'nshe': 1,\n",
      "          'sudden': 1,\n",
      "          'visit': 1,\n",
      "          'father': 1,\n",
      "          'elicits': 1,\n",
      "          'flashbacks': 1,\n",
      "          'tragedy': 1,\n",
      "          'early': 1,\n",
      "          'childhood': 1,\n",
      "          'ntwo': 1,\n",
      "          'men': 1,\n",
      "          'woo': 1,\n",
      "          'security': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'consultant': 1,\n",
      "          'wins': 1,\n",
      "          'passionate': 1,\n",
      "          'replete': 1,\n",
      "          'cheesy': 1,\n",
      "          'saxophone': 1,\n",
      "          'music': 1,\n",
      "          'lot': 1,\n",
      "          'psychobabble': 1,\n",
      "          'thrown': 1,\n",
      "          'around': 1,\n",
      "          'multiple': 1,\n",
      "          'personality': 1,\n",
      "          'disorder': 1,\n",
      "          'asks': 1,\n",
      "          'derive': 1,\n",
      "          'mpd': 1,\n",
      "          'instead': 1,\n",
      "          'offers': 1,\n",
      "          'male': 1,\n",
      "          'characters': 1,\n",
      "          'red': 1,\n",
      "          'herrings': 1,\n",
      "          'n86': 1,\n",
      "          'running': 1,\n",
      "          'cinematic': 1,\n",
      "          'mess': 1,\n",
      "          'thus': 1,\n",
      "          'seem': 1,\n",
      "          '86': 1,\n",
      "          'hours': 1,\n",
      "          'good': 1,\n",
      "          'chunk': 1,\n",
      "          'spent': 1,\n",
      "          'nwhy': 1,\n",
      "          'careerminded': 1,\n",
      "          'professional': 1,\n",
      "          'feel': 1,\n",
      "          'attracted': 1,\n",
      "          'walking': 1,\n",
      "          'steroid': 1,\n",
      "          'black': 1,\n",
      "          'hat': 1,\n",
      "          'called': 1,\n",
      "          'nthats': 1,\n",
      "          'films': 1,\n",
      "          'mysteries': 1,\n",
      "          'answered': 1,\n",
      "          'nregardless': 1,\n",
      "          'motive': 1,\n",
      "          'strip': 1,\n",
      "          'times': 1,\n",
      "          'passes': 1,\n",
      "          'eroticism': 1,\n",
      "          'nthey': 1,\n",
      "          'manage': 1,\n",
      "          'go': 1,\n",
      "          'copulating': 1,\n",
      "          'occasionally': 1,\n",
      "          'stupidest': 1,\n",
      "          'scenes': 1,\n",
      "          'takes': 1,\n",
      "          'thats': 1,\n",
      "          'right': 1,\n",
      "          'outside': 1,\n",
      "          'dingy': 1,\n",
      "          'apartment': 1,\n",
      "          'hurry': 1,\n",
      "          'back': 1,\n",
      "          'nalso': 1,\n",
      "          'apparently': 1,\n",
      "          'weather': 1,\n",
      "          'changes': 1,\n",
      "          'locale': 1,\n",
      "          'outdoor': 1,\n",
      "          'next': 1,\n",
      "          'playing': 1,\n",
      "          'snow': 1,\n",
      "          'nthe': 1,\n",
      "          'attempt': 1,\n",
      "          'produce': 1,\n",
      "          'suspenseful': 1,\n",
      "          'plot': 1,\n",
      "          'interspersed': 1,\n",
      "          'sarahs': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'nsomeone': 1,\n",
      "          'get': 1,\n",
      "          'though': 1,\n",
      "          'figured': 1,\n",
      "          'starts': 1,\n",
      "          'nrotting': 1,\n",
      "          'writeup': 1,\n",
      "          'beaten': 1,\n",
      "          'bad': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'number': 1,\n",
      "          'occurs': 1,\n",
      "          'whenever': 1,\n",
      "          'thrillers': 1,\n",
      "          'means': 1,\n",
      "          'die': 1,\n",
      "          'noftentimes': 1,\n",
      "          'murdered': 1,\n",
      "          'suspense': 1,\n",
      "          'reason': 1,\n",
      "          'dont': 1,\n",
      "          'cats': 1,\n",
      "          'nsarah': 1,\n",
      "          'package': 1,\n",
      "          'lo': 1,\n",
      "          'behold': 1,\n",
      "          'discovers': 1,\n",
      "          'mutilated': 1,\n",
      "          'within': 1,\n",
      "          'derivative': 1,\n",
      "          'nas': 1,\n",
      "          'stated': 1,\n",
      "          'excuse': 1,\n",
      "          'whose': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'seems': 1,\n",
      "          'exploiting': 1,\n",
      "          'mornays': 1,\n",
      "          'bodies': 1,\n",
      "          'often': 1,\n",
      "          'possible': 1,\n",
      "          'ncomedian': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'given': 1,\n",
      "          'lines': 1,\n",
      "          'suitable': 1,\n",
      "          'persona': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'much': 1,\n",
      "          'nmaybe': 1,\n",
      "          'lucky': 1,\n",
      "          'nearly': 1,\n",
      "          'tells': 1,\n",
      "          'meeting': 1,\n",
      "          'supermarket': 1,\n",
      "          'advised': 1,\n",
      "          'nallow': 1,\n",
      "          'advise': 1,\n",
      "          'watch': 1,\n",
      "          'stinker': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'tv': 8,\n",
      "          'love': 6,\n",
      "          'cooking': 6,\n",
      "          'show': 5,\n",
      "          'nthe': 4,\n",
      "          'cook': 4,\n",
      "          'toninho': 4,\n",
      "          'gets': 4,\n",
      "          'monica': 4,\n",
      "          'story': 3,\n",
      "          'even': 3,\n",
      "          'motion': 3,\n",
      "          'sickness': 3,\n",
      "          'hes': 3,\n",
      "          'san': 3,\n",
      "          'francisco': 3,\n",
      "          'spell': 3,\n",
      "          'network': 3,\n",
      "          'like': 3,\n",
      "          'made': 2,\n",
      "          'lope': 2,\n",
      "          'cruz': 2,\n",
      "          'brazilian': 2,\n",
      "          'chef': 2,\n",
      "          'cant': 2,\n",
      "          'get': 2,\n",
      "          'looks': 2,\n",
      "          'almod': 2,\n",
      "          'see': 2,\n",
      "          'nthis': 2,\n",
      "          'sex': 2,\n",
      "          'isabella': 2,\n",
      "          'parents': 2,\n",
      "          'nto': 2,\n",
      "          'cure': 2,\n",
      "          'spiritualist': 2,\n",
      "          'nshe': 2,\n",
      "          'control': 2,\n",
      "          'doesnt': 2,\n",
      "          'nin': 2,\n",
      "          'things': 2,\n",
      "          'fishing': 2,\n",
      "          'macho': 2,\n",
      "          'restaurant': 2,\n",
      "          'away': 2,\n",
      "          'though': 2,\n",
      "          'tell': 2,\n",
      "          'cast': 2,\n",
      "          'loving': 2,\n",
      "          'producer': 2,\n",
      "          'cliff': 2,\n",
      "          'good': 2,\n",
      "          'go': 2,\n",
      "          'bad': 2,\n",
      "          'wife': 2,\n",
      "          'nhe': 2,\n",
      "          'ones': 2,\n",
      "          'sees': 2,\n",
      "          'honchos': 2,\n",
      "          'change': 2,\n",
      "          'ethnic': 2,\n",
      "          'dresses': 2,\n",
      "          'type': 2,\n",
      "          'scenes': 2,\n",
      "          'nit': 2,\n",
      "          'sensuous': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'appealing': 1,\n",
      "          'average': 1,\n",
      "          'lightweight': 1,\n",
      "          'sitcom': 1,\n",
      "          'nthere': 1,\n",
      "          'special': 1,\n",
      "          'ingredient': 1,\n",
      "          'menu': 1,\n",
      "          'dished': 1,\n",
      "          'kind': 1,\n",
      "          'stuff': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'nauseous': 1,\n",
      "          'silly': 1,\n",
      "          'idea': 1,\n",
      "          'thinks': 1,\n",
      "          'funny': 1,\n",
      "          'plans': 1,\n",
      "          'exploit': 1,\n",
      "          'beauty': 1,\n",
      "          'sweetness': 1,\n",
      "          'delicious': 1,\n",
      "          'star': 1,\n",
      "          'pen': 1,\n",
      "          'plays': 1,\n",
      "          'magical': 1,\n",
      "          'touch': 1,\n",
      "          'bringing': 1,\n",
      "          'spices': 1,\n",
      "          'preparations': 1,\n",
      "          'aromas': 1,\n",
      "          'sensually': 1,\n",
      "          'waft': 1,\n",
      "          'pot': 1,\n",
      "          'alone': 1,\n",
      "          'transparently': 1,\n",
      "          'predictable': 1,\n",
      "          'npen': 1,\n",
      "          'wonderful': 1,\n",
      "          'pedro': 1,\n",
      "          'vars': 1,\n",
      "          'mother': 1,\n",
      "          'visible': 1,\n",
      "          'stale': 1,\n",
      "          'smile': 1,\n",
      "          'tease': 1,\n",
      "          'audience': 1,\n",
      "          'us': 1,\n",
      "          'constant': 1,\n",
      "          'barrage': 1,\n",
      "          'cleavage': 1,\n",
      "          'shots': 1,\n",
      "          'bends': 1,\n",
      "          'somehow': 1,\n",
      "          'ridiculous': 1,\n",
      "          'got': 1,\n",
      "          'egg': 1,\n",
      "          'face': 1,\n",
      "          'best': 1,\n",
      "          'say': 1,\n",
      "          'shes': 1,\n",
      "          'blame': 1,\n",
      "          'picture': 1,\n",
      "          'exploitation': 1,\n",
      "          'without': 1,\n",
      "          'delivering': 1,\n",
      "          'nudity': 1,\n",
      "          'opinion': 1,\n",
      "          'worst': 1,\n",
      "          'raunchy': 1,\n",
      "          'delivers': 1,\n",
      "          'says': 1,\n",
      "          'ability': 1,\n",
      "          'born': 1,\n",
      "          'bahia': 1,\n",
      "          'brazil': 1,\n",
      "          'learns': 1,\n",
      "          'early': 1,\n",
      "          'age': 1,\n",
      "          'tried': 1,\n",
      "          'every': 1,\n",
      "          'remedy': 1,\n",
      "          'went': 1,\n",
      "          'prayed': 1,\n",
      "          'goddess': 1,\n",
      "          'sea': 1,\n",
      "          'able': 1,\n",
      "          'long': 1,\n",
      "          'drive': 1,\n",
      "          'car': 1,\n",
      "          'ride': 1,\n",
      "          'elevators': 1,\n",
      "          'follow': 1,\n",
      "          'dancing': 1,\n",
      "          'woman': 1,\n",
      "          'top': 1,\n",
      "          'making': 1,\n",
      "          'words': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'falls': 1,\n",
      "          'handsome': 1,\n",
      "          'latin': 1,\n",
      "          'waiter': 1,\n",
      "          'oliveira': 1,\n",
      "          'murilo': 1,\n",
      "          'ben': 1,\n",
      "          'cio': 1,\n",
      "          'marries': 1,\n",
      "          'nthey': 1,\n",
      "          'open': 1,\n",
      "          'successful': 1,\n",
      "          'slaves': 1,\n",
      "          'kitchen': 1,\n",
      "          'credit': 1,\n",
      "          'loafer': 1,\n",
      "          'none': 1,\n",
      "          'night': 1,\n",
      "          'catches': 1,\n",
      "          'bed': 1,\n",
      "          'another': 1,\n",
      "          'girl': 1,\n",
      "          'decides': 1,\n",
      "          'leave': 1,\n",
      "          'nwe': 1,\n",
      "          'dont': 1,\n",
      "          'flight': 1,\n",
      "          'handled': 1,\n",
      "          'problem': 1,\n",
      "          'unless': 1,\n",
      "          'flew': 1,\n",
      "          'plane': 1,\n",
      "          'visits': 1,\n",
      "          'friends': 1,\n",
      "          'apartment': 1,\n",
      "          'harold': 1,\n",
      "          'perrineau': 1,\n",
      "          'jr': 1,\n",
      "          'crossdresser': 1,\n",
      "          'blending': 1,\n",
      "          'right': 1,\n",
      "          'scene': 1,\n",
      "          'irresistible': 1,\n",
      "          'calls': 1,\n",
      "          'friend': 1,\n",
      "          'irreversible': 1,\n",
      "          'freeing': 1,\n",
      "          'ever': 1,\n",
      "          'nher': 1,\n",
      "          'luck': 1,\n",
      "          'changes': 1,\n",
      "          'local': 1,\n",
      "          'mark': 1,\n",
      "          'feurerstein': 1,\n",
      "          'whiff': 1,\n",
      "          'storms': 1,\n",
      "          'class': 1,\n",
      "          'presents': 1,\n",
      "          'live': 1,\n",
      "          'nyou': 1,\n",
      "          'really': 1,\n",
      "          'write': 1,\n",
      "          'script': 1,\n",
      "          'despondent': 1,\n",
      "          'begins': 1,\n",
      "          'realize': 1,\n",
      "          'thing': 1,\n",
      "          'continue': 1,\n",
      "          'curse': 1,\n",
      "          'caused': 1,\n",
      "          'village': 1,\n",
      "          'replace': 1,\n",
      "          'close': 1,\n",
      "          'nso': 1,\n",
      "          'comes': 1,\n",
      "          'figuring': 1,\n",
      "          'charm': 1,\n",
      "          'brings': 1,\n",
      "          'along': 1,\n",
      "          'guitar': 1,\n",
      "          'playing': 1,\n",
      "          'musicians': 1,\n",
      "          'used': 1,\n",
      "          'courting': 1,\n",
      "          'serenaded': 1,\n",
      "          'window': 1,\n",
      "          'sidekick': 1,\n",
      "          'yuppie': 1,\n",
      "          'chasing': 1,\n",
      "          'longer': 1,\n",
      "          'charmed': 1,\n",
      "          'nwhen': 1,\n",
      "          'sneaks': 1,\n",
      "          'set': 1,\n",
      "          'tries': 1,\n",
      "          'woo': 1,\n",
      "          'musical': 1,\n",
      "          'group': 1,\n",
      "          'singing': 1,\n",
      "          'corny': 1,\n",
      "          'songs': 1,\n",
      "          'ratings': 1,\n",
      "          'hired': 1,\n",
      "          'regular': 1,\n",
      "          'big': 1,\n",
      "          'come': 1,\n",
      "          'onboard': 1,\n",
      "          'taking': 1,\n",
      "          'national': 1,\n",
      "          'nbut': 1,\n",
      "          'want': 1,\n",
      "          'flavor': 1,\n",
      "          'rid': 1,\n",
      "          'freak': 1,\n",
      "          'tabasco': 1,\n",
      "          'instead': 1,\n",
      "          'peppers': 1,\n",
      "          'uses': 1,\n",
      "          'lowcut': 1,\n",
      "          'vanna': 1,\n",
      "          'white': 1,\n",
      "          'sexy': 1,\n",
      "          'ncliff': 1,\n",
      "          'wouldbe': 1,\n",
      "          'boyfriend': 1,\n",
      "          'acts': 1,\n",
      "          'creepy': 1,\n",
      "          'sides': 1,\n",
      "          'bigshots': 1,\n",
      "          'loved': 1,\n",
      "          'everything': 1,\n",
      "          'nthese': 1,\n",
      "          'stereotype': 1,\n",
      "          'revolting': 1,\n",
      "          'insult': 1,\n",
      "          'intelligence': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'im': 1,\n",
      "          'spoiling': 1,\n",
      "          'ending': 1,\n",
      "          'anyone': 1,\n",
      "          'reforms': 1,\n",
      "          'ways': 1,\n",
      "          'together': 1,\n",
      "          'meal': 1,\n",
      "          'breaks': 1,\n",
      "          'nif': 1,\n",
      "          'wasnt': 1,\n",
      "          'terrible': 1,\n",
      "          'enough': 1,\n",
      "          'act': 1,\n",
      "          'attraction': 1,\n",
      "          'become': 1,\n",
      "          'lovers': 1,\n",
      "          'awkwardly': 1,\n",
      "          'done': 1,\n",
      "          'sense': 1,\n",
      "          'truth': 1,\n",
      "          'humor': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'guys': 1,\n",
      "          'featured': 1,\n",
      "          'look': 1,\n",
      "          'feel': 1,\n",
      "          'var': 1,\n",
      "          'aspired': 1,\n",
      "          'interferred': 1,\n",
      "          'nits': 1,\n",
      "          'futile': 1,\n",
      "          'commercial': 1,\n",
      "          'annoying': 1,\n",
      "          'charming': 1,\n",
      "          'dull': 1,\n",
      "          'chic': 1,\n",
      "          'searches': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'heaven': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wrestling': 14,\n",
      "          'movie': 8,\n",
      "          'wcw': 7,\n",
      "          'ni': 6,\n",
      "          'king': 6,\n",
      "          'bischoff': 6,\n",
      "          'sinclair': 5,\n",
      "          'world': 4,\n",
      "          'nthe': 4,\n",
      "          'gordie': 4,\n",
      "          'like': 4,\n",
      "          'know': 4,\n",
      "          'make': 4,\n",
      "          'fan': 3,\n",
      "          'sean': 3,\n",
      "          'nitro': 3,\n",
      "          'get': 3,\n",
      "          'jimmy': 3,\n",
      "          'wrestler': 3,\n",
      "          'titus': 3,\n",
      "          'meant': 3,\n",
      "          'eric': 3,\n",
      "          'find': 3,\n",
      "          'title': 3,\n",
      "          'back': 3,\n",
      "          'dont': 3,\n",
      "          'isnt': 3,\n",
      "          'thinks': 3,\n",
      "          'fans': 3,\n",
      "          'seriously': 3,\n",
      "          'vince': 3,\n",
      "          'could': 3,\n",
      "          'theyre': 3,\n",
      "          'better': 3,\n",
      "          'saying': 2,\n",
      "          'professional': 2,\n",
      "          'fond': 2,\n",
      "          'plot': 2,\n",
      "          'believe': 2,\n",
      "          'everything': 2,\n",
      "          'see': 2,\n",
      "          'monday': 2,\n",
      "          'show': 2,\n",
      "          'nwhen': 2,\n",
      "          'finally': 2,\n",
      "          'played': 2,\n",
      "          'would': 2,\n",
      "          'role': 2,\n",
      "          'president': 2,\n",
      "          'knows': 2,\n",
      "          'kings': 2,\n",
      "          'real': 2,\n",
      "          'english': 2,\n",
      "          'main': 2,\n",
      "          'n1': 2,\n",
      "          'characters': 2,\n",
      "          'nhe': 2,\n",
      "          'idiots': 2,\n",
      "          'wrestlers': 2,\n",
      "          'actually': 2,\n",
      "          'dumb': 2,\n",
      "          'enough': 2,\n",
      "          'taken': 2,\n",
      "          'age': 2,\n",
      "          'big': 2,\n",
      "          'n2': 2,\n",
      "          'federation': 2,\n",
      "          'bret': 2,\n",
      "          'hart': 2,\n",
      "          'movies': 2,\n",
      "          'mcmahon': 2,\n",
      "          'bad': 2,\n",
      "          'n3': 2,\n",
      "          'want': 2,\n",
      "          'n4': 2,\n",
      "          'instead': 2,\n",
      "          'end': 2,\n",
      "          'n5': 2,\n",
      "          'promotion': 2,\n",
      "          'good': 2,\n",
      "          'let': 1,\n",
      "          'start': 1,\n",
      "          'review': 1,\n",
      "          'huge': 1,\n",
      "          'fifteen': 1,\n",
      "          'years': 1,\n",
      "          'ted': 1,\n",
      "          'turners': 1,\n",
      "          'championship': 1,\n",
      "          'however': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'seeing': 1,\n",
      "          'ridiculous': 1,\n",
      "          'excuse': 1,\n",
      "          'tonight': 1,\n",
      "          'concerns': 1,\n",
      "          'two': 1,\n",
      "          'losers': 1,\n",
      "          'named': 1,\n",
      "          'boggs': 1,\n",
      "          'david': 1,\n",
      "          'arquette': 1,\n",
      "          'aptly': 1,\n",
      "          'cast': 1,\n",
      "          'neandrathal': 1,\n",
      "          'dawkins': 1,\n",
      "          'scott': 1,\n",
      "          'caan': 1,\n",
      "          'obsessed': 1,\n",
      "          'something': 1,\n",
      "          'flashy': 1,\n",
      "          'hero': 1,\n",
      "          'champion': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'personally': 1,\n",
      "          'gotten': 1,\n",
      "          'play': 1,\n",
      "          'ends': 1,\n",
      "          'getting': 1,\n",
      "          'screwed': 1,\n",
      "          'evil': 1,\n",
      "          'promoter': 1,\n",
      "          'wasted': 1,\n",
      "          'palitaliano': 1,\n",
      "          'originally': 1,\n",
      "          'reallife': 1,\n",
      "          'fired': 1,\n",
      "          'rehired': 1,\n",
      "          'six': 1,\n",
      "          'months': 1,\n",
      "          'later': 1,\n",
      "          'anyone': 1,\n",
      "          'reads': 1,\n",
      "          'agree': 1,\n",
      "          'name': 1,\n",
      "          'written': 1,\n",
      "          'embark': 1,\n",
      "          'quest': 1,\n",
      "          'help': 1,\n",
      "          'discover': 1,\n",
      "          'horror': 1,\n",
      "          'life': 1,\n",
      "          'nothing': 1,\n",
      "          'tv': 1,\n",
      "          'nking': 1,\n",
      "          'drunken': 1,\n",
      "          'atlanta': 1,\n",
      "          'native': 1,\n",
      "          'rather': 1,\n",
      "          'nafter': 1,\n",
      "          'convincing': 1,\n",
      "          'care': 1,\n",
      "          'persona': 1,\n",
      "          'sneak': 1,\n",
      "          'onto': 1,\n",
      "          'agrees': 1,\n",
      "          'book': 1,\n",
      "          'event': 1,\n",
      "          'steel': 1,\n",
      "          'cage': 1,\n",
      "          'match': 1,\n",
      "          'job': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'wcws': 1,\n",
      "          'payperview': 1,\n",
      "          'ngee': 1,\n",
      "          'whiz': 1,\n",
      "          'many': 1,\n",
      "          'things': 1,\n",
      "          'wrong': 1,\n",
      "          'begin': 1,\n",
      "          'nyes': 1,\n",
      "          'thought': 1,\n",
      "          'project': 1,\n",
      "          'us': 1,\n",
      "          'take': 1,\n",
      "          'got': 1,\n",
      "          'news': 1,\n",
      "          'nobody': 1,\n",
      "          'four': 1,\n",
      "          '2000': 1,\n",
      "          '1985': 1,\n",
      "          'hell': 1,\n",
      "          'probably': 1,\n",
      "          'cover': 1,\n",
      "          'arguments': 1,\n",
      "          'thats': 1,\n",
      "          'ego': 1,\n",
      "          'documentary': 1,\n",
      "          'made': 1,\n",
      "          '1998': 1,\n",
      "          'shadows': 1,\n",
      "          'documented': 1,\n",
      "          'owner': 1,\n",
      "          'mcmahons': 1,\n",
      "          'screwing': 1,\n",
      "          'hitman': 1,\n",
      "          'nthis': 1,\n",
      "          'storyline': 1,\n",
      "          'basically': 1,\n",
      "          'comic': 1,\n",
      "          'ripoff': 1,\n",
      "          'poor': 1,\n",
      "          'mans': 1,\n",
      "          'wayne': 1,\n",
      "          'garth': 1,\n",
      "          'thrown': 1,\n",
      "          'neric': 1,\n",
      "          'trying': 1,\n",
      "          'look': 1,\n",
      "          'character': 1,\n",
      "          'gimmick': 1,\n",
      "          'audience': 1,\n",
      "          'cheered': 1,\n",
      "          'nno': 1,\n",
      "          'enjoys': 1,\n",
      "          'day': 1,\n",
      "          'asses': 1,\n",
      "          'today': 1,\n",
      "          'comedy': 1,\n",
      "          'emotional': 1,\n",
      "          'rockystyle': 1,\n",
      "          'drama': 1,\n",
      "          'sport': 1,\n",
      "          'still': 1,\n",
      "          'behind': 1,\n",
      "          'guy': 1,\n",
      "          'struggles': 1,\n",
      "          'makes': 1,\n",
      "          'nin': 1,\n",
      "          'starts': 1,\n",
      "          'illfated': 1,\n",
      "          'romance': 1,\n",
      "          'girl': 1,\n",
      "          'sasha': 1,\n",
      "          'lovely': 1,\n",
      "          'rose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'nwhat': 1,\n",
      "          'sees': 1,\n",
      "          'freak': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'ill': 1,\n",
      "          'never': 1,\n",
      "          'understand': 1,\n",
      "          'hospitalized': 1,\n",
      "          'trainer': 1,\n",
      "          'nwouldnt': 1,\n",
      "          'easier': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'typical': 1,\n",
      "          'spygirlforthebadguy': 1,\n",
      "          'cliche': 1,\n",
      "          'hate': 1,\n",
      "          'n6': 1,\n",
      "          'nlast': 1,\n",
      "          'certainly': 1,\n",
      "          'least': 1,\n",
      "          'one': 1,\n",
      "          'single': 1,\n",
      "          'moment': 1,\n",
      "          'predict': 1,\n",
      "          'happen': 1,\n",
      "          'laugh': 1,\n",
      "          'either': 1,\n",
      "          'company': 1,\n",
      "          'reasons': 1,\n",
      "          'younger': 1,\n",
      "          'talent': 1,\n",
      "          'performers': 1,\n",
      "          'nthey': 1,\n",
      "          'give': 1,\n",
      "          'treat': 1,\n",
      "          'winning': 1,\n",
      "          'ratings': 1,\n",
      "          'everybody': 1,\n",
      "          'cares': 1,\n",
      "          'simply': 1,\n",
      "          'put': 1,\n",
      "          'hundred': 1,\n",
      "          'times': 1,\n",
      "          'right': 1,\n",
      "          'way': 1,\n",
      "          'thing': 1,\n",
      "          'outtakes': 1,\n",
      "          'nand': 1,\n",
      "          'spoiled': 1,\n",
      "          'saved': 1,\n",
      "          'wasting': 1,\n",
      "          'seven': 1,\n",
      "          'dollars': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'psychlo': 6,\n",
      "          'nits': 6,\n",
      "          'film': 5,\n",
      "          'battlefield': 4,\n",
      "          'earth': 4,\n",
      "          'might': 4,\n",
      "          'long': 3,\n",
      "          'years': 3,\n",
      "          'make': 3,\n",
      "          'travolta': 3,\n",
      "          'screen': 3,\n",
      "          'something': 3,\n",
      "          'one': 3,\n",
      "          'boring': 2,\n",
      "          'stupid': 2,\n",
      "          'na': 2,\n",
      "          'michael': 2,\n",
      "          'redman': 2,\n",
      "          '2000': 2,\n",
      "          'nin': 2,\n",
      "          'nno': 2,\n",
      "          'lines': 2,\n",
      "          'time': 2,\n",
      "          'nyou': 2,\n",
      "          'dont': 2,\n",
      "          'hope': 2,\n",
      "          'minutes': 2,\n",
      "          'l': 2,\n",
      "          'ron': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'work': 2,\n",
      "          'john': 2,\n",
      "          'alien': 2,\n",
      "          'race': 2,\n",
      "          'full': 2,\n",
      "          'difficult': 2,\n",
      "          'see': 2,\n",
      "          'nbut': 2,\n",
      "          'never': 2,\n",
      "          'days': 2,\n",
      "          'ships': 2,\n",
      "          'ever': 2,\n",
      "          'like': 2,\n",
      "          'air': 2,\n",
      "          'nand': 2,\n",
      "          'problems': 2,\n",
      "          'big': 2,\n",
      "          'plain': 1,\n",
      "          'nbattlefield': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          'midteen': 1,\n",
      "          'horrendous': 1,\n",
      "          'reoccurring': 1,\n",
      "          'nightmare': 1,\n",
      "          'nbehind': 1,\n",
      "          'wheel': 1,\n",
      "          'car': 1,\n",
      "          'driving': 1,\n",
      "          'straight': 1,\n",
      "          'road': 1,\n",
      "          'middle': 1,\n",
      "          'desert': 1,\n",
      "          'scenery': 1,\n",
      "          'except': 1,\n",
      "          'horizon': 1,\n",
      "          'line': 1,\n",
      "          'converging': 1,\n",
      "          'parallel': 1,\n",
      "          'highway': 1,\n",
      "          'matter': 1,\n",
      "          'view': 1,\n",
      "          'didnt': 1,\n",
      "          'change': 1,\n",
      "          'travelling': 1,\n",
      "          'getting': 1,\n",
      "          'anywhere': 1,\n",
      "          'neach': 1,\n",
      "          'awoke': 1,\n",
      "          'sweat': 1,\n",
      "          'terrified': 1,\n",
      "          'carl': 1,\n",
      "          'jung': 1,\n",
      "          'understand': 1,\n",
      "          'dream': 1,\n",
      "          'npowerless': 1,\n",
      "          'changes': 1,\n",
      "          'trapped': 1,\n",
      "          'situation': 1,\n",
      "          'rescue': 1,\n",
      "          'stuff': 1,\n",
      "          'nightmares': 1,\n",
      "          'whether': 1,\n",
      "          'asleep': 1,\n",
      "          'awake': 1,\n",
      "          'nthis': 1,\n",
      "          'exactly': 1,\n",
      "          'feel': 1,\n",
      "          '15': 1,\n",
      "          'begins': 1,\n",
      "          'nfor': 1,\n",
      "          'flash': 1,\n",
      "          'style': 1,\n",
      "          'hubbards': 1,\n",
      "          'epic': 1,\n",
      "          'earliest': 1,\n",
      "          'best': 1,\n",
      "          'entry': 1,\n",
      "          'dullest': 1,\n",
      "          'summer': 1,\n",
      "          'ndull': 1,\n",
      "          'year': 1,\n",
      "          '3000': 1,\n",
      "          'aliens': 1,\n",
      "          'ruled': 1,\n",
      "          'planet': 1,\n",
      "          '1': 1,\n",
      "          '000': 1,\n",
      "          'nhumans': 1,\n",
      "          'either': 1,\n",
      "          'slave': 1,\n",
      "          'labor': 1,\n",
      "          'mining': 1,\n",
      "          'operations': 1,\n",
      "          'live': 1,\n",
      "          'barbarians': 1,\n",
      "          'ntheres': 1,\n",
      "          'future': 1,\n",
      "          'bleak': 1,\n",
      "          'nthen': 1,\n",
      "          'mistake': 1,\n",
      "          'capture': 1,\n",
      "          'feisty': 1,\n",
      "          'jonnie': 1,\n",
      "          'goodboy': 1,\n",
      "          'tyler': 1,\n",
      "          'barry': 1,\n",
      "          'pepper': 1,\n",
      "          'organizes': 1,\n",
      "          'revolution': 1,\n",
      "          'chief': 1,\n",
      "          'security': 1,\n",
      "          'terl': 1,\n",
      "          'archetypal': 1,\n",
      "          'postapocalyptic': 1,\n",
      "          'plot': 1,\n",
      "          'promise': 1,\n",
      "          'nconsidering': 1,\n",
      "          'talent': 1,\n",
      "          'involved': 1,\n",
      "          'millions': 1,\n",
      "          'thrown': 1,\n",
      "          'could': 1,\n",
      "          'failed': 1,\n",
      "          'miserably': 1,\n",
      "          'story': 1,\n",
      "          'holes': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'within': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'nare': 1,\n",
      "          'really': 1,\n",
      "          'supposed': 1,\n",
      "          'believe': 1,\n",
      "          'millennium': 1,\n",
      "          'looking': 1,\n",
      "          'gold': 1,\n",
      "          'discovered': 1,\n",
      "          'fort': 1,\n",
      "          'knox': 1,\n",
      "          'fighter': 1,\n",
      "          'planes': 1,\n",
      "          'still': 1,\n",
      "          'pristine': 1,\n",
      "          'condition': 1,\n",
      "          'gassed': 1,\n",
      "          'cavemen': 1,\n",
      "          'become': 1,\n",
      "          'expert': 1,\n",
      "          'pilots': 1,\n",
      "          'seven': 1,\n",
      "          'easily': 1,\n",
      "          'advanced': 1,\n",
      "          'spy': 1,\n",
      "          'cameras': 1,\n",
      "          'somehow': 1,\n",
      "          'notice': 1,\n",
      "          'slaves': 1,\n",
      "          'missing': 1,\n",
      "          'ntravolta': 1,\n",
      "          'prances': 1,\n",
      "          'across': 1,\n",
      "          'hamming': 1,\n",
      "          'hes': 1,\n",
      "          'worth': 1,\n",
      "          'almost': 1,\n",
      "          'entertaining': 1,\n",
      "          'nalmost': 1,\n",
      "          'rest': 1,\n",
      "          'actors': 1,\n",
      "          'wooden': 1,\n",
      "          'mannequins': 1,\n",
      "          'trying': 1,\n",
      "          'laugh': 1,\n",
      "          'delivering': 1,\n",
      "          'person': 1,\n",
      "          'mananimal': 1,\n",
      "          'would': 1,\n",
      "          'utter': 1,\n",
      "          'nsome': 1,\n",
      "          '_looks_': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'good': 1,\n",
      "          'also': 1,\n",
      "          'looks': 1,\n",
      "          'familiar': 1,\n",
      "          'large': 1,\n",
      "          'hulking': 1,\n",
      "          'apelike': 1,\n",
      "          'creatures': 1,\n",
      "          'taken': 1,\n",
      "          'world': 1,\n",
      "          'cities': 1,\n",
      "          'lie': 1,\n",
      "          'ruin': 1,\n",
      "          'nsound': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'look': 1,\n",
      "          'overweight': 1,\n",
      "          'klingons': 1,\n",
      "          'gear': 1,\n",
      "          'dune': 1,\n",
      "          'final': 1,\n",
      "          'battle': 1,\n",
      "          'force': 1,\n",
      "          'fighters': 1,\n",
      "          'hightech': 1,\n",
      "          'city': 1,\n",
      "          'george': 1,\n",
      "          'lucas': 1,\n",
      "          'associated': 1,\n",
      "          'loud': 1,\n",
      "          'oppressive': 1,\n",
      "          'slow': 1,\n",
      "          'far': 1,\n",
      "          'ntoo': 1,\n",
      "          'goes': 1,\n",
      "          'list': 1,\n",
      "          'endless': 1,\n",
      "          'find': 1,\n",
      "          'anything': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'color': 1,\n",
      "          'scheme': 1,\n",
      "          'nice': 1,\n",
      "          'real': 1,\n",
      "          'question': 1,\n",
      "          'movie': 1,\n",
      "          'got': 1,\n",
      "          'made': 1,\n",
      "          'ncould': 1,\n",
      "          'fact': 1,\n",
      "          'hubbard': 1,\n",
      "          'founder': 1,\n",
      "          'scientology': 1,\n",
      "          'member': 1,\n",
      "          'church': 1,\n",
      "          'nthat': 1,\n",
      "          'explain': 1,\n",
      "          'bought': 1,\n",
      "          'rights': 1,\n",
      "          'novel': 1,\n",
      "          'ago': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'clue': 1,\n",
      "          'firsttime': 1,\n",
      "          'screenwriter': 1,\n",
      "          'corey': 1,\n",
      "          'mandells': 1,\n",
      "          'atrocious': 1,\n",
      "          'script': 1,\n",
      "          'used': 1,\n",
      "          'highprofile': 1,\n",
      "          'project': 1,\n",
      "          'entrusted': 1,\n",
      "          'roger': 1,\n",
      "          'christian': 1,\n",
      "          'directed': 1,\n",
      "          'major': 1,\n",
      "          'looked': 1,\n",
      "          'thing': 1,\n",
      "          'released': 1,\n",
      "          'realized': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'longer': 1,\n",
      "          'kevin': 1,\n",
      "          'costners': 1,\n",
      "          'postman': 1,\n",
      "          'begrudgingly': 1,\n",
      "          'admit': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'budget': 1,\n",
      "          'failure': 1,\n",
      "          'n': 1,\n",
      "          'honor': 1,\n",
      "          'sewed': 1,\n",
      "          'noften': 1,\n",
      "          'reviewers': 1,\n",
      "          'recommend': 1,\n",
      "          'skip': 1,\n",
      "          'mediocre': 1,\n",
      "          'films': 1,\n",
      "          'wait': 1,\n",
      "          'video': 1,\n",
      "          'nthats': 1,\n",
      "          'case': 1,\n",
      "          'act': 1,\n",
      "          'decision': 1,\n",
      "          'small': 1,\n",
      "          'ndont': 1,\n",
      "          'hesitate': 1,\n",
      "          'nstrike': 1,\n",
      "          'iron': 1,\n",
      "          'cold': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'allen': 5,\n",
      "          'doesnt': 4,\n",
      "          'couple': 4,\n",
      "          'amish': 4,\n",
      "          'n': 4,\n",
      "          'tim': 3,\n",
      "          'funny': 3,\n",
      "          'ding': 3,\n",
      "          'richer': 3,\n",
      "          'poorer': 3,\n",
      "          'alley': 3,\n",
      "          'film': 3,\n",
      "          'much': 3,\n",
      "          'ive': 2,\n",
      "          'nok': 2,\n",
      "          'get': 2,\n",
      "          'pull': 2,\n",
      "          'angry': 2,\n",
      "          'faces': 2,\n",
      "          'two': 2,\n",
      "          'hours': 2,\n",
      "          'nwhats': 2,\n",
      "          'still': 2,\n",
      "          'half': 2,\n",
      "          'nlooks': 2,\n",
      "          'sound': 2,\n",
      "          'nif': 2,\n",
      "          'absolutely': 2,\n",
      "          'married': 2,\n",
      "          'community': 2,\n",
      "          'accountant': 2,\n",
      "          'knight': 2,\n",
      "          'best': 2,\n",
      "          'nwhat': 2,\n",
      "          'horribly': 2,\n",
      "          'seems': 2,\n",
      "          'brad': 2,\n",
      "          'lachman': 2,\n",
      "          'sextons': 2,\n",
      "          'nthe': 2,\n",
      "          'run': 2,\n",
      "          'laughs': 2,\n",
      "          'way': 2,\n",
      "          'chemistry': 2,\n",
      "          'convincing': 2,\n",
      "          'one': 2,\n",
      "          'bad': 2,\n",
      "          'spicers': 2,\n",
      "          'films': 2,\n",
      "          'worst': 2,\n",
      "          'list': 2,\n",
      "          'number': 2,\n",
      "          'ten': 2,\n",
      "          'making': 2,\n",
      "          'hey': 1,\n",
      "          'got': 1,\n",
      "          'great': 1,\n",
      "          'idea': 1,\n",
      "          'well': 1,\n",
      "          'nsounds': 1,\n",
      "          'boring': 1,\n",
      "          'looks': 1,\n",
      "          'im': 1,\n",
      "          'pain': 1,\n",
      "          'nthat': 1,\n",
      "          'nhow': 1,\n",
      "          'ewwwww': 1,\n",
      "          'nstill': 1,\n",
      "          'answered': 1,\n",
      "          'nyoure': 1,\n",
      "          'correct': 1,\n",
      "          'nfor': 1,\n",
      "          'moronic': 1,\n",
      "          'farce': 1,\n",
      "          'rich': 1,\n",
      "          'played': 1,\n",
      "          'kirstie': 1,\n",
      "          'seek': 1,\n",
      "          'refuge': 1,\n",
      "          'bumbling': 1,\n",
      "          'wayne': 1,\n",
      "          'know': 1,\n",
      "          'newman': 1,\n",
      "          'tvs': 1,\n",
      "          'seinfeld': 1,\n",
      "          'gets': 1,\n",
      "          'trouble': 1,\n",
      "          'tax': 1,\n",
      "          'evasion': 1,\n",
      "          'ensues': 1,\n",
      "          'badly': 1,\n",
      "          'scripted': 1,\n",
      "          'directed': 1,\n",
      "          '114': 1,\n",
      "          'minutes': 1,\n",
      "          'cinema': 1,\n",
      "          'hell': 1,\n",
      "          'makes': 1,\n",
      "          'wrong': 1,\n",
      "          'nobody': 1,\n",
      "          'needs': 1,\n",
      "          'nnamely': 1,\n",
      "          'talent': 1,\n",
      "          'nbacking': 1,\n",
      "          'caroline': 1,\n",
      "          'sexton': 1,\n",
      "          'popular': 1,\n",
      "          'snobby': 1,\n",
      "          'duo': 1,\n",
      "          'seem': 1,\n",
      "          'totally': 1,\n",
      "          'love': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'reality': 1,\n",
      "          'brink': 1,\n",
      "          'divorce': 1,\n",
      "          'njust': 1,\n",
      "          'marriage': 1,\n",
      "          'hanging': 1,\n",
      "          'final': 1,\n",
      "          'thread': 1,\n",
      "          'discovers': 1,\n",
      "          'bob': 1,\n",
      "          'engaging': 1,\n",
      "          'illegitimate': 1,\n",
      "          'deals': 1,\n",
      "          'names': 1,\n",
      "          'irs': 1,\n",
      "          'catches': 1,\n",
      "          'since': 1,\n",
      "          'everything': 1,\n",
      "          'points': 1,\n",
      "          'back': 1,\n",
      "          'nothing': 1,\n",
      "          'nexcept': 1,\n",
      "          'away': 1,\n",
      "          'join': 1,\n",
      "          'nfirst': 1,\n",
      "          'time': 1,\n",
      "          'screenwriters': 1,\n",
      "          'jana': 1,\n",
      "          'howington': 1,\n",
      "          'steve': 1,\n",
      "          'lukanic': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'chuckleoutloud': 1,\n",
      "          'moments': 1,\n",
      "          'even': 1,\n",
      "          'decent': 1,\n",
      "          'cringe': 1,\n",
      "          'made': 1,\n",
      "          'youll': 1,\n",
      "          'likely': 1,\n",
      "          'miss': 1,\n",
      "          'regurgitating': 1,\n",
      "          'popcorn': 1,\n",
      "          'nalley': 1,\n",
      "          'unwatchable': 1,\n",
      "          'believable': 1,\n",
      "          'homework': 1,\n",
      "          'tenth': 1,\n",
      "          'grade': 1,\n",
      "          'inform': 1,\n",
      "          'total': 1,\n",
      "          'b': 1,\n",
      "          'nallen': 1,\n",
      "          'tycoons': 1,\n",
      "          'nthis': 1,\n",
      "          'entire': 1,\n",
      "          'illconceived': 1,\n",
      "          'notion': 1,\n",
      "          'curtailed': 1,\n",
      "          'beginning': 1,\n",
      "          'also': 1,\n",
      "          'flimsy': 1,\n",
      "          'unconvincing': 1,\n",
      "          'nits': 1,\n",
      "          'trite': 1,\n",
      "          'stereotypical': 1,\n",
      "          'script': 1,\n",
      "          'imagine': 1,\n",
      "          'actors': 1,\n",
      "          'cast': 1,\n",
      "          'noticing': 1,\n",
      "          'theyre': 1,\n",
      "          'predominantly': 1,\n",
      "          'tv': 1,\n",
      "          'figures': 1,\n",
      "          'probably': 1,\n",
      "          'ones': 1,\n",
      "          'could': 1,\n",
      "          'nbryan': 1,\n",
      "          'directing': 1,\n",
      "          'help': 1,\n",
      "          'bit': 1,\n",
      "          'either': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'listing': 1,\n",
      "          'filmography': 1,\n",
      "          'includes': 1,\n",
      "          'first': 1,\n",
      "          'power': 1,\n",
      "          'rangers': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'adaption': 1,\n",
      "          'mchales': 1,\n",
      "          'navy': 1,\n",
      "          'insult': 1,\n",
      "          'r': 1,\n",
      "          'sum': 1,\n",
      "          'nnow': 1,\n",
      "          'pretty': 1,\n",
      "          'ground': 1,\n",
      "          'let': 1,\n",
      "          'thing': 1,\n",
      "          'nit': 1,\n",
      "          'bumped': 1,\n",
      "          'seven': 1,\n",
      "          'notch': 1,\n",
      "          '1997': 1,\n",
      "          'nthats': 1,\n",
      "          'right': 1,\n",
      "          'thanks': 1,\n",
      "          'ranking': 1,\n",
      "          '3': 1,\n",
      "          'years': 1,\n",
      "          'six': 1,\n",
      "          'seemingly': 1,\n",
      "          'smile': 1,\n",
      "          'like': 1,\n",
      "          'previously': 1,\n",
      "          'inhabiting': 1,\n",
      "          'spot': 1,\n",
      "          'suffer': 1,\n",
      "          'ridicule': 1,\n",
      "          'bottom': 1,\n",
      "          'look': 1,\n",
      "          'respect': 1,\n",
      "          'end': 1,\n",
      "          'someone': 1,\n",
      "          'happy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'grammer': 6,\n",
      "          'ship': 6,\n",
      "          'navy': 5,\n",
      "          'movie': 5,\n",
      "          'even': 4,\n",
      "          'comedy': 4,\n",
      "          'periscope': 4,\n",
      "          'like': 4,\n",
      "          'guy': 4,\n",
      "          'schneider': 4,\n",
      "          'everyone': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 4,\n",
      "          'drunk': 3,\n",
      "          'ni': 3,\n",
      "          'stars': 2,\n",
      "          'frasier': 2,\n",
      "          'inept': 2,\n",
      "          'captain': 2,\n",
      "          'given': 2,\n",
      "          'part': 2,\n",
      "          'coburn': 2,\n",
      "          'time': 2,\n",
      "          'doesnt': 2,\n",
      "          'holly': 2,\n",
      "          'book': 2,\n",
      "          'comes': 2,\n",
      "          'nfirst': 2,\n",
      "          'cant': 2,\n",
      "          'hour': 2,\n",
      "          'ships': 2,\n",
      "          'theyre': 2,\n",
      "          'louie': 2,\n",
      "          'throw': 2,\n",
      "          'radar': 2,\n",
      "          'whole': 2,\n",
      "          'probably': 2,\n",
      "          'jokes': 2,\n",
      "          'nmy': 2,\n",
      "          'second': 2,\n",
      "          'really': 2,\n",
      "          'character': 2,\n",
      "          'said': 2,\n",
      "          'penis': 2,\n",
      "          'got': 2,\n",
      "          'best': 1,\n",
      "          'comic': 1,\n",
      "          'actor': 1,\n",
      "          'mercy': 1,\n",
      "          'material': 1,\n",
      "          'subpar': 1,\n",
      "          'submarine': 1,\n",
      "          'proves': 1,\n",
      "          'ndown': 1,\n",
      "          'kelsey': 1,\n",
      "          'command': 1,\n",
      "          'corrupt': 1,\n",
      "          'officers': 1,\n",
      "          'james': 1,\n",
      "          'plan': 1,\n",
      "          'get': 1,\n",
      "          'nlike': 1,\n",
      "          'lame': 1,\n",
      "          'emsemble': 1,\n",
      "          'officer': 1,\n",
      "          'assigns': 1,\n",
      "          'group': 1,\n",
      "          'misfits': 1,\n",
      "          'wants': 1,\n",
      "          'kicked': 1,\n",
      "          'fat': 1,\n",
      "          'eats': 1,\n",
      "          'beautiful': 1,\n",
      "          'woman': 1,\n",
      "          'belong': 1,\n",
      "          'lauren': 1,\n",
      "          'secondincommand': 1,\n",
      "          'everything': 1,\n",
      "          'rob': 1,\n",
      "          'crazy': 1,\n",
      "          'old': 1,\n",
      "          'freaks': 1,\n",
      "          'harry': 1,\n",
      "          'dean': 1,\n",
      "          'stanton': 1,\n",
      "          'nthen': 1,\n",
      "          'transparent': 1,\n",
      "          'plotline': 1,\n",
      "          'fix': 1,\n",
      "          'delapidated': 1,\n",
      "          'korean': 1,\n",
      "          'war': 1,\n",
      "          'courtesy': 1,\n",
      "          'sad': 1,\n",
      "          'sight': 1,\n",
      "          'gag': 1,\n",
      "          'montage': 1,\n",
      "          'includes': 1,\n",
      "          'mop': 1,\n",
      "          'knocking': 1,\n",
      "          'overboard': 1,\n",
      "          'nafter': 1,\n",
      "          'fixed': 1,\n",
      "          'come': 1,\n",
      "          'early': 1,\n",
      "          'drills': 1,\n",
      "          'seems': 1,\n",
      "          'completely': 1,\n",
      "          'electrician': 1,\n",
      "          'connect': 1,\n",
      "          'wires': 1,\n",
      "          'instead': 1,\n",
      "          'lets': 1,\n",
      "          'current': 1,\n",
      "          'run': 1,\n",
      "          'every': 1,\n",
      "          'gets': 1,\n",
      "          'phone': 1,\n",
      "          'nfinally': 1,\n",
      "          'covers': 1,\n",
      "          'final': 1,\n",
      "          'lead': 1,\n",
      "          'men': 1,\n",
      "          'overcome': 1,\n",
      "          'wargames': 1,\n",
      "          'exercise': 1,\n",
      "          'nand': 1,\n",
      "          'clever': 1,\n",
      "          'rebel': 1,\n",
      "          'scenes': 1,\n",
      "          'stretch': 1,\n",
      "          'levels': 1,\n",
      "          'believability': 1,\n",
      "          'singing': 1,\n",
      "          'bunch': 1,\n",
      "          'sailors': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'later': 1,\n",
      "          'making': 1,\n",
      "          'whale': 1,\n",
      "          'mating': 1,\n",
      "          'noises': 1,\n",
      "          'evil': 1,\n",
      "          'overacting': 1,\n",
      "          'underwater': 1,\n",
      "          'cursing': 1,\n",
      "          'people': 1,\n",
      "          'watching': 1,\n",
      "          'nits': 1,\n",
      "          'predictable': 1,\n",
      "          'without': 1,\n",
      "          'original': 1,\n",
      "          'humor': 1,\n",
      "          'redeem': 1,\n",
      "          'right': 1,\n",
      "          'mchales': 1,\n",
      "          'cutrate': 1,\n",
      "          'sitcoms': 1,\n",
      "          'past': 1,\n",
      "          'ntheres': 1,\n",
      "          'scene': 1,\n",
      "          'looks': 1,\n",
      "          'pantry': 1,\n",
      "          'disgust': 1,\n",
      "          'holds': 1,\n",
      "          'food': 1,\n",
      "          'announces': 1,\n",
      "          'expired': 1,\n",
      "          '1966': 1,\n",
      "          'yelled': 1,\n",
      "          'back': 1,\n",
      "          'screen': 1,\n",
      "          'watched': 1,\n",
      "          'family': 1,\n",
      "          'hated': 1,\n",
      "          'mom': 1,\n",
      "          'bored': 1,\n",
      "          'brought': 1,\n",
      "          'coupon': 1,\n",
      "          'midway': 1,\n",
      "          'around': 1,\n",
      "          'start': 1,\n",
      "          'started': 1,\n",
      "          'writing': 1,\n",
      "          'blame': 1,\n",
      "          'placed': 1,\n",
      "          'though': 1,\n",
      "          'nkelsey': 1,\n",
      "          'good': 1,\n",
      "          'anything': 1,\n",
      "          'work': 1,\n",
      "          'nhis': 1,\n",
      "          'gotten': 1,\n",
      "          'night': 1,\n",
      "          'welcome': 1,\n",
      "          'aboard': 1,\n",
      "          'tatooed': 1,\n",
      "          'ngrammer': 1,\n",
      "          'something': 1,\n",
      "          'worse': 1,\n",
      "          'agreed': 1,\n",
      "          'appear': 1,\n",
      "          'knew': 1,\n",
      "          'nothing': 1,\n",
      "          'nsame': 1,\n",
      "          'holley': 1,\n",
      "          'save': 1,\n",
      "          'likeable': 1,\n",
      "          'shes': 1,\n",
      "          'gorgeous': 1,\n",
      "          'nas': 1,\n",
      "          'whose': 1,\n",
      "          'downright': 1,\n",
      "          'annoying': 1,\n",
      "          'nowhere': 1,\n",
      "          'go': 1,\n",
      "          'surf': 1,\n",
      "          'ninjas': 1,\n",
      "          'although': 1,\n",
      "          'hes': 1,\n",
      "          'still': 1,\n",
      "          'depths': 1,\n",
      "          'ocean': 1,\n",
      "          'jumping': 1,\n",
      "          'snl': 1,\n",
      "          'theory': 1,\n",
      "          'movies': 1,\n",
      "          'green': 1,\n",
      "          'light': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'formula': 1,\n",
      "          'okay': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          'helm': 1,\n",
      "          'chick': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'signed': 1,\n",
      "          'turned': 1,\n",
      "          'disaster': 1,\n",
      "          'njudging': 1,\n",
      "          'video': 1,\n",
      "          'box': 1,\n",
      "          'critics': 1,\n",
      "          'agree': 1,\n",
      "          'quote': 1,\n",
      "          'copy': 1,\n",
      "          'writers': 1,\n",
      "          'could': 1,\n",
      "          'dig': 1,\n",
      "          'came': 1,\n",
      "          'prevue': 1,\n",
      "          'channels': 1,\n",
      "          'jim': 1,\n",
      "          'ferguson': 1,\n",
      "          'guess': 1,\n",
      "          'jeff': 1,\n",
      "          'craig': 1,\n",
      "          '60': 1,\n",
      "          'preview': 1,\n",
      "          'tank': 1,\n",
      "          'girl': 1,\n",
      "          'kicks': 1,\n",
      "          'butt': 1,\n",
      "          'nwithout': 1,\n",
      "          'ever': 1,\n",
      "          'seeing': 1,\n",
      "          'didnt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'summer': 11,\n",
      "          'know': 9,\n",
      "          'still': 6,\n",
      "          'last': 6,\n",
      "          'since': 3,\n",
      "          'movie': 3,\n",
      "          '_last_': 3,\n",
      "          'nthe': 3,\n",
      "          'would': 3,\n",
      "          'one': 3,\n",
      "          'film': 3,\n",
      "          'julie': 3,\n",
      "          'movies': 2,\n",
      "          'best': 2,\n",
      "          'sense': 2,\n",
      "          'ago': 2,\n",
      "          'long': 2,\n",
      "          'room': 2,\n",
      "          'little': 2,\n",
      "          'thats': 2,\n",
      "          'karla': 2,\n",
      "          'first': 2,\n",
      "          'youll': 2,\n",
      "          'story': 2,\n",
      "          'trying': 2,\n",
      "          'nin': 2,\n",
      "          'nhe': 2,\n",
      "          'fisherman': 2,\n",
      "          'mystery': 2,\n",
      "          'prequel': 2,\n",
      "          'murders': 2,\n",
      "          'scream': 2,\n",
      "          'dont': 1,\n",
      "          'come': 1,\n",
      "          'much': 1,\n",
      "          'ridiculously': 1,\n",
      "          'titled': 1,\n",
      "          'question': 1,\n",
      "          'described': 1,\n",
      "          'ridiculous': 1,\n",
      "          'title': 1,\n",
      "          'sort': 1,\n",
      "          'works': 1,\n",
      "          'warning': 1,\n",
      "          'nmore': 1,\n",
      "          'sillysounding': 1,\n",
      "          'mouthful': 1,\n",
      "          'blurt': 1,\n",
      "          'ticket': 1,\n",
      "          'vendor': 1,\n",
      "          'horror': 1,\n",
      "          'sequels': 1,\n",
      "          'moniker': 1,\n",
      "          'also': 1,\n",
      "          'contains': 1,\n",
      "          'grievous': 1,\n",
      "          'oversight': 1,\n",
      "          'anyone': 1,\n",
      "          'saw': 1,\n",
      "          'original': 1,\n",
      "          'able': 1,\n",
      "          'spot': 1,\n",
      "          'actually': 1,\n",
      "          '_before_': 1,\n",
      "          'knew': 1,\n",
      "          '_this_': 1,\n",
      "          'well': 1,\n",
      "          'really': 1,\n",
      "          'illogical': 1,\n",
      "          'say': 1,\n",
      "          '_still_': 1,\n",
      "          'filmmakers': 1,\n",
      "          'least': 1,\n",
      "          'made': 1,\n",
      "          'shorter': 1,\n",
      "          'longer': 1,\n",
      "          'two': 1,\n",
      "          'summers': 1,\n",
      "          'appropriate': 1,\n",
      "          'stupid': 1,\n",
      "          'people': 1,\n",
      "          'getting': 1,\n",
      "          'hacked': 1,\n",
      "          'bits': 1,\n",
      "          'nthat': 1,\n",
      "          'suggestion': 1,\n",
      "          'preferable': 1,\n",
      "          'characters': 1,\n",
      "          'things': 1,\n",
      "          'polar': 1,\n",
      "          'opposite': 1,\n",
      "          'smart': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'roommate': 1,\n",
      "          'plagued': 1,\n",
      "          'terrible': 1,\n",
      "          'nightmares': 1,\n",
      "          'result': 1,\n",
      "          'stalked': 1,\n",
      "          'nearly': 1,\n",
      "          'murdered': 1,\n",
      "          'sneak': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'hide': 1,\n",
      "          'closet': 1,\n",
      "          'even': 1,\n",
      "          'locate': 1,\n",
      "          'borrow': 1,\n",
      "          'cute': 1,\n",
      "          'dress': 1,\n",
      "          'nprobably': 1,\n",
      "          'precisely': 1,\n",
      "          'college': 1,\n",
      "          'student': 1,\n",
      "          'pop': 1,\n",
      "          'diva': 1,\n",
      "          'brandy': 1,\n",
      "          'friend': 1,\n",
      "          'jennifer': 1,\n",
      "          'love': 1,\n",
      "          'hewitt': 1,\n",
      "          'resulting': 1,\n",
      "          'line': 1,\n",
      "          'phony': 1,\n",
      "          'frights': 1,\n",
      "          'njulie': 1,\n",
      "          'recall': 1,\n",
      "          'sole': 1,\n",
      "          'survivors': 1,\n",
      "          'end': 1,\n",
      "          '1997s': 1,\n",
      "          'surprise': 1,\n",
      "          'hit': 1,\n",
      "          'slasher': 1,\n",
      "          'grudge': 1,\n",
      "          'bear': 1,\n",
      "          '_long_': 1,\n",
      "          'began': 1,\n",
      "          'pick': 1,\n",
      "          'buddies': 1,\n",
      "          'various': 1,\n",
      "          'others': 1,\n",
      "          'coastal': 1,\n",
      "          'carolina': 1,\n",
      "          'village': 1,\n",
      "          'installment': 1,\n",
      "          'plot': 1,\n",
      "          'picks': 1,\n",
      "          'wins': 1,\n",
      "          'trip': 1,\n",
      "          'bahamas': 1,\n",
      "          'yet': 1,\n",
      "          'racked': 1,\n",
      "          'guilt': 1,\n",
      "          'decides': 1,\n",
      "          'maybe': 1,\n",
      "          'tropical': 1,\n",
      "          'getaway': 1,\n",
      "          'help': 1,\n",
      "          'ease': 1,\n",
      "          'mind': 1,\n",
      "          'nyeah': 1,\n",
      "          'right': 1,\n",
      "          'ntheir': 1,\n",
      "          'island': 1,\n",
      "          'paradise': 1,\n",
      "          'course': 1,\n",
      "          'form': 1,\n",
      "          'stillalive': 1,\n",
      "          'killer': 1,\n",
      "          'muse': 1,\n",
      "          'watson': 1,\n",
      "          'sports': 1,\n",
      "          'gortons': 1,\n",
      "          'getup': 1,\n",
      "          'heavy': 1,\n",
      "          'hat': 1,\n",
      "          'rain': 1,\n",
      "          'slicker': 1,\n",
      "          'mask': 1,\n",
      "          'identity': 1,\n",
      "          'hes': 1,\n",
      "          'stay': 1,\n",
      "          'anonymous': 1,\n",
      "          'never': 1,\n",
      "          'solves': 1,\n",
      "          'nthough': 1,\n",
      "          'suppose': 1,\n",
      "          'hookhand': 1,\n",
      "          'look': 1,\n",
      "          'funny': 1,\n",
      "          'protruding': 1,\n",
      "          'sleeve': 1,\n",
      "          'leisure': 1,\n",
      "          'suit': 1,\n",
      "          'glaring': 1,\n",
      "          'flaw': 1,\n",
      "          'everybody': 1,\n",
      "          'knows': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'thus': 1,\n",
      "          'evaporating': 1,\n",
      "          'level': 1,\n",
      "          'paranoid': 1,\n",
      "          'tension': 1,\n",
      "          'nicely': 1,\n",
      "          'sustained': 1,\n",
      "          'attempted': 1,\n",
      "          'vivid': 1,\n",
      "          'scary': 1,\n",
      "          'trey': 1,\n",
      "          'callaways': 1,\n",
      "          'derivative': 1,\n",
      "          'screenplay': 1,\n",
      "          'makes': 1,\n",
      "          'dumb': 1,\n",
      "          'pretty': 1,\n",
      "          'potential': 1,\n",
      "          'victims': 1,\n",
      "          'nwhen': 1,\n",
      "          'lays': 1,\n",
      "          'blissfully': 1,\n",
      "          'unaware': 1,\n",
      "          'tanning': 1,\n",
      "          'bed': 1,\n",
      "          'giving': 1,\n",
      "          'perfect': 1,\n",
      "          'chance': 1,\n",
      "          'wreak': 1,\n",
      "          'vengeance': 1,\n",
      "          'twistties': 1,\n",
      "          'lid': 1,\n",
      "          'shut': 1,\n",
      "          'cranks': 1,\n",
      "          'uv': 1,\n",
      "          'rays': 1,\n",
      "          'youd': 1,\n",
      "          'think': 1,\n",
      "          'hed': 1,\n",
      "          'want': 1,\n",
      "          'gutted': 1,\n",
      "          'instead': 1,\n",
      "          'skin': 1,\n",
      "          'cancer': 1,\n",
      "          'victim': 1,\n",
      "          'later': 1,\n",
      "          'neven': 1,\n",
      "          'lovers': 1,\n",
      "          'might': 1,\n",
      "          'balk': 1,\n",
      "          'beyond': 1,\n",
      "          'sporadically': 1,\n",
      "          'amusing': 1,\n",
      "          'absurdity': 1,\n",
      "          'neato': 1,\n",
      "          'shots': 1,\n",
      "          'blood': 1,\n",
      "          'flowing': 1,\n",
      "          'toned': 1,\n",
      "          'teenage': 1,\n",
      "          'flesh': 1,\n",
      "          'innovative': 1,\n",
      "          'gallows': 1,\n",
      "          'humor': 1,\n",
      "          'scribe': 1,\n",
      "          'wunderkind': 1,\n",
      "          'kevin': 1,\n",
      "          'williamson': 1,\n",
      "          'injected': 1,\n",
      "          'unfolding': 1,\n",
      "          'sorely': 1,\n",
      "          'missed': 1,\n",
      "          'replaced': 1,\n",
      "          'grating': 1,\n",
      "          'antics': 1,\n",
      "          'white': 1,\n",
      "          'rastafarian': 1,\n",
      "          'cabana': 1,\n",
      "          'boy': 1,\n",
      "          'smokes': 1,\n",
      "          'weed': 1,\n",
      "          'tosses': 1,\n",
      "          'slang': 1,\n",
      "          'like': 1,\n",
      "          'yo': 1,\n",
      "          'cheer': 1,\n",
      "          'shriek': 1,\n",
      "          'ends': 1,\n",
      "          'pair': 1,\n",
      "          'hedgetrimmers': 1,\n",
      "          'firmly': 1,\n",
      "          'implanted': 1,\n",
      "          'chest': 1,\n",
      "          'nif': 1,\n",
      "          'however': 1,\n",
      "          'effective': 1,\n",
      "          'kind': 1,\n",
      "          'subversive': 1,\n",
      "          'flicks': 1,\n",
      "          'poked': 1,\n",
      "          'fun': 1,\n",
      "          'deadly': 1,\n",
      "          'deserves': 1,\n",
      "          'fullblown': 1,\n",
      "          'roasting': 1,\n",
      "          'science': 1,\n",
      "          'theatre': 1,\n",
      "          '3000': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 15,\n",
      "          'watchers': 13,\n",
      "          'reborn': 11,\n",
      "          'film': 9,\n",
      "          'many': 5,\n",
      "          'nthe': 5,\n",
      "          'creature': 5,\n",
      "          'einstein': 4,\n",
      "          'dog': 4,\n",
      "          'koontzs': 4,\n",
      "          'even': 4,\n",
      "          'star': 4,\n",
      "          'nthis': 4,\n",
      "          'may': 4,\n",
      "          'mark': 4,\n",
      "          'hamill': 4,\n",
      "          'bad': 4,\n",
      "          'book': 4,\n",
      "          'ni': 4,\n",
      "          'blond': 3,\n",
      "          'kill': 3,\n",
      "          'dean': 3,\n",
      "          'called': 3,\n",
      "          'much': 3,\n",
      "          'like': 3,\n",
      "          'n': 3,\n",
      "          'good': 3,\n",
      "          'time': 3,\n",
      "          'really': 3,\n",
      "          'perhaps': 3,\n",
      "          'koontz': 3,\n",
      "          'films': 3,\n",
      "          'nit': 3,\n",
      "          'around': 3,\n",
      "          'befriends': 2,\n",
      "          'golden': 2,\n",
      "          'retriever': 2,\n",
      "          'young': 2,\n",
      "          'scientist': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'shares': 2,\n",
      "          'psychic': 2,\n",
      "          'machine': 2,\n",
      "          'turkey': 2,\n",
      "          'novel': 2,\n",
      "          'horror': 2,\n",
      "          'movies': 2,\n",
      "          'series': 2,\n",
      "          'numbers': 2,\n",
      "          'titles': 2,\n",
      "          'trek': 2,\n",
      "          'want': 2,\n",
      "          'ago': 2,\n",
      "          'isnt': 2,\n",
      "          'rented': 2,\n",
      "          'actor': 2,\n",
      "          'hes': 2,\n",
      "          'trailers': 2,\n",
      "          'teens': 2,\n",
      "          'action': 2,\n",
      "          'baio': 2,\n",
      "          'nwatchers': 2,\n",
      "          'luke': 2,\n",
      "          'skywalker': 2,\n",
      "          'plot': 2,\n",
      "          'nkoontz': 2,\n",
      "          'hack': 2,\n",
      "          'writer': 2,\n",
      "          'favorite': 2,\n",
      "          'books': 2,\n",
      "          'however': 2,\n",
      "          'devices': 2,\n",
      "          'behind': 2,\n",
      "          'though': 2,\n",
      "          'dont': 2,\n",
      "          'mean': 2,\n",
      "          'one': 2,\n",
      "          'difficult': 2,\n",
      "          'know': 2,\n",
      "          'okay': 2,\n",
      "          'arms': 2,\n",
      "          'also': 2,\n",
      "          'scenes': 2,\n",
      "          'gore': 2,\n",
      "          'unconvincing': 2,\n",
      "          'would': 2,\n",
      "          'recommend': 2,\n",
      "          'synopsis': 1,\n",
      "          'humorless': 1,\n",
      "          'police': 1,\n",
      "          'officers': 1,\n",
      "          'life': 1,\n",
      "          'changes': 1,\n",
      "          'supersmart': 1,\n",
      "          'superadorable': 1,\n",
      "          'named': 1,\n",
      "          'cute': 1,\n",
      "          'link': 1,\n",
      "          'bigfootsized': 1,\n",
      "          'apecreature': 1,\n",
      "          'trained': 1,\n",
      "          'unstoppable': 1,\n",
      "          'killing': 1,\n",
      "          'rogainenightmare': 1,\n",
      "          'loose': 1,\n",
      "          'girl': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'group': 1,\n",
      "          'white': 1,\n",
      "          'chainsmoking': 1,\n",
      "          'guntoting': 1,\n",
      "          'nsa': 1,\n",
      "          'agents': 1,\n",
      "          'sunglasses': 1,\n",
      "          'business': 1,\n",
      "          'suits': 1,\n",
      "          'tries': 1,\n",
      "          'characters': 1,\n",
      "          'ncomments': 1,\n",
      "          'cheaply': 1,\n",
      "          'made': 1,\n",
      "          'directtovideo': 1,\n",
      "          'fourth': 1,\n",
      "          'sequel': 1,\n",
      "          'first': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'version': 1,\n",
      "          'bestselling': 1,\n",
      "          'ntechnically': 1,\n",
      "          'v': 1,\n",
      "          'seems': 1,\n",
      "          'cycle': 1,\n",
      "          'sequelcrazy': 1,\n",
      "          'decided': 1,\n",
      "          'drop': 1,\n",
      "          'dropped': 1,\n",
      "          'vi': 1,\n",
      "          'makers': 1,\n",
      "          'probably': 1,\n",
      "          'fool': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'video': 1,\n",
      "          'rental': 1,\n",
      "          'customers': 1,\n",
      "          'thinking': 1,\n",
      "          'might': 1,\n",
      "          'instead': 1,\n",
      "          'crappy': 1,\n",
      "          'fifth': 1,\n",
      "          'installment': 1,\n",
      "          'died': 1,\n",
      "          'long': 1,\n",
      "          'nhave': 1,\n",
      "          'ever': 1,\n",
      "          'recieved': 1,\n",
      "          'sinking': 1,\n",
      "          'feeling': 1,\n",
      "          'watched': 1,\n",
      "          'previews': 1,\n",
      "          'preceding': 1,\n",
      "          'feature': 1,\n",
      "          'presentation': 1,\n",
      "          'nwell': 1,\n",
      "          'hope': 1,\n",
      "          'viewer': 1,\n",
      "          'fan': 1,\n",
      "          'novelist': 1,\n",
      "          'dashed': 1,\n",
      "          'seen': 1,\n",
      "          'tagged': 1,\n",
      "          'beginning': 1,\n",
      "          'ntheyre': 1,\n",
      "          'awful': 1,\n",
      "          'nthese': 1,\n",
      "          'commercials': 1,\n",
      "          'cover': 1,\n",
      "          'strange': 1,\n",
      "          'stripper': 1,\n",
      "          'shadow': 1,\n",
      "          'dancer': 1,\n",
      "          'weird': 1,\n",
      "          'crap': 1,\n",
      "          'dead': 1,\n",
      "          'indian': 1,\n",
      "          'wolves': 1,\n",
      "          'detonator': 1,\n",
      "          'starring': 1,\n",
      "          'scott': 1,\n",
      "          'nscott': 1,\n",
      "          'nwhat': 1,\n",
      "          'idiot': 1,\n",
      "          'dreamed': 1,\n",
      "          'nafter': 1,\n",
      "          'surviving': 1,\n",
      "          'abysmal': 1,\n",
      "          'person': 1,\n",
      "          'finally': 1,\n",
      "          'gets': 1,\n",
      "          'watch': 1,\n",
      "          'maybe': 1,\n",
      "          'wont': 1,\n",
      "          'say': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'fluff': 1,\n",
      "          'advertised': 1,\n",
      "          'greatly': 1,\n",
      "          'misleading': 1,\n",
      "          'based': 1,\n",
      "          'cool': 1,\n",
      "          'wrote': 1,\n",
      "          'decade': 1,\n",
      "          'stars': 1,\n",
      "          'terrific': 1,\n",
      "          'wars': 1,\n",
      "          'trilogy': 1,\n",
      "          'nlou': 1,\n",
      "          'rawls': 1,\n",
      "          'mix': 1,\n",
      "          'force': 1,\n",
      "          'certainly': 1,\n",
      "          'longer': 1,\n",
      "          'looks': 1,\n",
      "          'sick': 1,\n",
      "          'basic': 1,\n",
      "          'elements': 1,\n",
      "          'latter': 1,\n",
      "          'producing': 1,\n",
      "          'way': 1,\n",
      "          'thrillers': 1,\n",
      "          'still': 1,\n",
      "          'writing': 1,\n",
      "          'style': 1,\n",
      "          'succinct': 1,\n",
      "          'suspenseful': 1,\n",
      "          'npeople': 1,\n",
      "          'read': 1,\n",
      "          'often': 1,\n",
      "          'complain': 1,\n",
      "          'repetitive': 1,\n",
      "          'nits': 1,\n",
      "          'definately': 1,\n",
      "          '1': 1,\n",
      "          '2': 1,\n",
      "          'superintelligent': 1,\n",
      "          '3': 1,\n",
      "          'psychotic': 1,\n",
      "          'killer': 1,\n",
      "          'likes': 1,\n",
      "          'ripping': 1,\n",
      "          'peoples': 1,\n",
      "          'eyeballs': 1,\n",
      "          'three': 1,\n",
      "          'explain': 1,\n",
      "          'arguably': 1,\n",
      "          'popular': 1,\n",
      "          'idea': 1,\n",
      "          'highly': 1,\n",
      "          'implausible': 1,\n",
      "          'interesting': 1,\n",
      "          'nbasically': 1,\n",
      "          'biological': 1,\n",
      "          'war': 1,\n",
      "          'created': 1,\n",
      "          'smart': 1,\n",
      "          'released': 1,\n",
      "          'battle': 1,\n",
      "          'track': 1,\n",
      "          'target': 1,\n",
      "          'relay': 1,\n",
      "          'targets': 1,\n",
      "          'position': 1,\n",
      "          'psychically': 1,\n",
      "          'large': 1,\n",
      "          'designed': 1,\n",
      "          'handtohand': 1,\n",
      "          'combat': 1,\n",
      "          'nsilly': 1,\n",
      "          'kind': 1,\n",
      "          'neat': 1,\n",
      "          'nim': 1,\n",
      "          'sorry': 1,\n",
      "          'ramble': 1,\n",
      "          'matters': 1,\n",
      "          'directly': 1,\n",
      "          'linked': 1,\n",
      "          'suppose': 1,\n",
      "          'talk': 1,\n",
      "          'cheesy': 1,\n",
      "          'nno': 1,\n",
      "          'act': 1,\n",
      "          'including': 1,\n",
      "          'seeing': 1,\n",
      "          'aged': 1,\n",
      "          'stumble': 1,\n",
      "          'trying': 1,\n",
      "          'hero': 1,\n",
      "          'cheese': 1,\n",
      "          'factor': 1,\n",
      "          'increased': 1,\n",
      "          'involved': 1,\n",
      "          'implied': 1,\n",
      "          'sex': 1,\n",
      "          'scene': 1,\n",
      "          'biologist': 1,\n",
      "          'geneticist': 1,\n",
      "          'zoologist': 1,\n",
      "          'whateverthef': 1,\n",
      "          'kshessupposedtobe': 1,\n",
      "          'nmercifully': 1,\n",
      "          'filmmakers': 1,\n",
      "          'opted': 1,\n",
      "          'nudity': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'halfconvincing': 1,\n",
      "          'plays': 1,\n",
      "          'nyou': 1,\n",
      "          'outacts': 1,\n",
      "          'human': 1,\n",
      "          'counterparts': 1,\n",
      "          'find': 1,\n",
      "          'relate': 1,\n",
      "          'laughable': 1,\n",
      "          'sequences': 1,\n",
      "          'nand': 1,\n",
      "          'nyes': 1,\n",
      "          'poor': 1,\n",
      "          'guy': 1,\n",
      "          'furry': 1,\n",
      "          'suit': 1,\n",
      "          'mask': 1,\n",
      "          'poorly': 1,\n",
      "          'imitates': 1,\n",
      "          'werewolves': 1,\n",
      "          'howling': 1,\n",
      "          'shot': 1,\n",
      "          '500': 1,\n",
      "          '000': 1,\n",
      "          'times': 1,\n",
      "          'ability': 1,\n",
      "          'people': 1,\n",
      "          'swinging': 1,\n",
      "          'pushing': 1,\n",
      "          'noh': 1,\n",
      "          'rip': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'allowing': 1,\n",
      "          'fake': 1,\n",
      "          'hands': 1,\n",
      "          'thrown': 1,\n",
      "          'ncheesy': 1,\n",
      "          'nthats': 1,\n",
      "          'another': 1,\n",
      "          'main': 1,\n",
      "          'element': 1,\n",
      "          'bloody': 1,\n",
      "          'thoroughly': 1,\n",
      "          'increase': 1,\n",
      "          'campiness': 1,\n",
      "          'rather': 1,\n",
      "          'suspense': 1,\n",
      "          'nultimately': 1,\n",
      "          'gave': 1,\n",
      "          'half': 1,\n",
      "          'scifi': 1,\n",
      "          'buffs': 1,\n",
      "          'get': 1,\n",
      "          'kicks': 1,\n",
      "          'silliness': 1,\n",
      "          'tax': 1,\n",
      "          'patience': 1,\n",
      "          '83': 1,\n",
      "          'minute': 1,\n",
      "          'feels': 1,\n",
      "          'four': 1,\n",
      "          'hours': 1,\n",
      "          'nalso': 1,\n",
      "          'hate': 1,\n",
      "          'admit': 1,\n",
      "          'survived': 1,\n",
      "          'far': 1,\n",
      "          'worse': 1,\n",
      "          'nanyone': 1,\n",
      "          'sat': 1,\n",
      "          'christopher': 1,\n",
      "          'lambert': 1,\n",
      "          'natasha': 1,\n",
      "          'henstridge': 1,\n",
      "          'debacle': 1,\n",
      "          'known': 1,\n",
      "          'adrenalin': 1,\n",
      "          'fear': 1,\n",
      "          'rush': 1,\n",
      "          'nfinally': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'think': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'bot': 1,\n",
      "          'fodder': 1,\n",
      "          'creative': 1,\n",
      "          'folks': 1,\n",
      "          'alltime': 1,\n",
      "          'shows': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theater': 1,\n",
      "          '3000': 1,\n",
      "          'thought': 1,\n",
      "          'alone': 1,\n",
      "          'helped': 1,\n",
      "          'survive': 1,\n",
      "          'smile': 1,\n",
      "          'face': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'contains': 1,\n",
      "          'dozens': 1,\n",
      "          'bloodspattered': 1,\n",
      "          'bodies': 1,\n",
      "          'violence': 1,\n",
      "          'obviously': 1,\n",
      "          'wouldnt': 1,\n",
      "          'little': 1,\n",
      "          'kids': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'make': 1,\n",
      "          'ninstead': 1,\n",
      "          'watching': 1,\n",
      "          'reading': 1,\n",
      "          'ntrust': 1,\n",
      "          'itll': 1,\n",
      "          'better': 1,\n",
      "          'spent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'odd': 5,\n",
      "          'simons': 5,\n",
      "          'enough': 5,\n",
      "          'old': 4,\n",
      "          'couple': 4,\n",
      "          'ii': 4,\n",
      "          'men': 4,\n",
      "          'n': 4,\n",
      "          'like': 4,\n",
      "          'felix': 4,\n",
      "          'neil': 4,\n",
      "          'nthe': 4,\n",
      "          'oscar': 4,\n",
      "          'none': 4,\n",
      "          'another': 3,\n",
      "          'film': 3,\n",
      "          'nwhile': 3,\n",
      "          'reunion': 3,\n",
      "          'car': 3,\n",
      "          'three': 3,\n",
      "          'name': 3,\n",
      "          'word': 3,\n",
      "          'guys': 2,\n",
      "          'bathroom': 2,\n",
      "          'nthey': 2,\n",
      "          'ive': 2,\n",
      "          'ever': 2,\n",
      "          'great': 2,\n",
      "          'movie': 2,\n",
      "          'kids': 2,\n",
      "          'big': 2,\n",
      "          'day': 2,\n",
      "          'nif': 2,\n",
      "          'lazy': 2,\n",
      "          'tv': 2,\n",
      "          'situation': 2,\n",
      "          'comedy': 2,\n",
      "          'contrived': 2,\n",
      "          'wedding': 2,\n",
      "          'san': 2,\n",
      "          'matthau': 2,\n",
      "          'films': 2,\n",
      "          'together': 2,\n",
      "          'two': 2,\n",
      "          'script': 2,\n",
      "          'gets': 2,\n",
      "          'business': 2,\n",
      "          'keep': 2,\n",
      "          'ni': 2,\n",
      "          'swearing': 2,\n",
      "          'theater': 2,\n",
      "          'full': 2,\n",
      "          'every': 2,\n",
      "          'would': 2,\n",
      "          'heard': 1,\n",
      "          'crowded': 1,\n",
      "          'following': 1,\n",
      "          'sneak': 1,\n",
      "          'preview': 1,\n",
      "          'happy': 1,\n",
      "          'group': 1,\n",
      "          'encountered': 1,\n",
      "          'exclaimed': 1,\n",
      "          'gent': 1,\n",
      "          'urinal': 1,\n",
      "          'everything': 1,\n",
      "          'true': 1,\n",
      "          'yeah': 1,\n",
      "          'laughed': 1,\n",
      "          'man': 1,\n",
      "          'standing': 1,\n",
      "          'next': 1,\n",
      "          'drive': 1,\n",
      "          'slow': 1,\n",
      "          'guy': 1,\n",
      "          'nmy': 1,\n",
      "          'give': 1,\n",
      "          'holy': 1,\n",
      "          'hell': 1,\n",
      "          'peeing': 1,\n",
      "          'part': 1,\n",
      "          'chuckled': 1,\n",
      "          'fellow': 1,\n",
      "          'fastened': 1,\n",
      "          'trousers': 1,\n",
      "          'around': 1,\n",
      "          'nipples': 1,\n",
      "          'prepared': 1,\n",
      "          'rejoin': 1,\n",
      "          'wife': 1,\n",
      "          'youre': 1,\n",
      "          '60': 1,\n",
      "          'habit': 1,\n",
      "          'driving': 1,\n",
      "          'least': 1,\n",
      "          '20': 1,\n",
      "          'miles': 1,\n",
      "          'per': 1,\n",
      "          'hour': 1,\n",
      "          'posted': 1,\n",
      "          'speed': 1,\n",
      "          'limit': 1,\n",
      "          'may': 1,\n",
      "          'nothers': 1,\n",
      "          'likely': 1,\n",
      "          'less': 1,\n",
      "          'charitable': 1,\n",
      "          'amiable': 1,\n",
      "          'shockingly': 1,\n",
      "          'screenplay': 1,\n",
      "          'feels': 1,\n",
      "          'slappedtogether': 1,\n",
      "          'show': 1,\n",
      "          'suffering': 1,\n",
      "          'wheezing': 1,\n",
      "          'setups': 1,\n",
      "          'jokes': 1,\n",
      "          'straight': 1,\n",
      "          'borschtbelt': 1,\n",
      "          'nsimon': 1,\n",
      "          'toast': 1,\n",
      "          'broadway': 1,\n",
      "          'apparently': 1,\n",
      "          'shifted': 1,\n",
      "          'sights': 1,\n",
      "          'white': 1,\n",
      "          'way': 1,\n",
      "          'neighborhood': 1,\n",
      "          'multiplex': 1,\n",
      "          'branson': 1,\n",
      "          'missouri': 1,\n",
      "          'story': 1,\n",
      "          'involving': 1,\n",
      "          'marriage': 1,\n",
      "          'provides': 1,\n",
      "          'excuse': 1,\n",
      "          'madison': 1,\n",
      "          'unger': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          '17': 1,\n",
      "          'years': 1,\n",
      "          'former': 1,\n",
      "          'roommates': 1,\n",
      "          'fly': 1,\n",
      "          'california': 1,\n",
      "          'respective': 1,\n",
      "          'homes': 1,\n",
      "          'quite': 1,\n",
      "          'literally': 1,\n",
      "          'run': 1,\n",
      "          'airport': 1,\n",
      "          'take': 1,\n",
      "          'rental': 1,\n",
      "          'ceremony': 1,\n",
      "          'molina': 1,\n",
      "          'get': 1,\n",
      "          'lost': 1,\n",
      "          'series': 1,\n",
      "          'wacky': 1,\n",
      "          'adventures': 1,\n",
      "          'road': 1,\n",
      "          'njack': 1,\n",
      "          'lemmon': 1,\n",
      "          'walter': 1,\n",
      "          'reprise': 1,\n",
      "          'roles': 1,\n",
      "          'neat': 1,\n",
      "          'freak': 1,\n",
      "          'slob': 1,\n",
      "          'undeniable': 1,\n",
      "          'chemistry': 1,\n",
      "          'pair': 1,\n",
      "          'impact': 1,\n",
      "          'lessened': 1,\n",
      "          'fact': 1,\n",
      "          'theyve': 1,\n",
      "          'headlined': 1,\n",
      "          'since': 1,\n",
      "          '1993': 1,\n",
      "          'grumpy': 1,\n",
      "          'grumpier': 1,\n",
      "          'sea': 1,\n",
      "          'nstill': 1,\n",
      "          'veteran': 1,\n",
      "          'actors': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'nmatthau': 1,\n",
      "          'whose': 1,\n",
      "          'magnificently': 1,\n",
      "          'rumpled': 1,\n",
      "          'face': 1,\n",
      "          'looks': 1,\n",
      "          'pile': 1,\n",
      "          'laundry': 1,\n",
      "          'eyes': 1,\n",
      "          'field': 1,\n",
      "          'crown': 1,\n",
      "          'prince': 1,\n",
      "          'curmudgeons': 1,\n",
      "          'nlemmon': 1,\n",
      "          'looking': 1,\n",
      "          'pastier': 1,\n",
      "          'usual': 1,\n",
      "          'fine': 1,\n",
      "          'annoying': 1,\n",
      "          'still': 1,\n",
      "          'punctuates': 1,\n",
      "          'chronic': 1,\n",
      "          'whining': 1,\n",
      "          'occasional': 1,\n",
      "          'allergic': 1,\n",
      "          'honks': 1,\n",
      "          'phnah': 1,\n",
      "          'nphnah': 1,\n",
      "          'ndespite': 1,\n",
      "          'bickering': 1,\n",
      "          'characters': 1,\n",
      "          'real': 1,\n",
      "          'affection': 1,\n",
      "          'providing': 1,\n",
      "          'welcome': 1,\n",
      "          'respite': 1,\n",
      "          'nonstop': 1,\n",
      "          'barrage': 1,\n",
      "          'insults': 1,\n",
      "          'marked': 1,\n",
      "          'previous': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'lemmons': 1,\n",
      "          'charm': 1,\n",
      "          'isnt': 1,\n",
      "          'compensate': 1,\n",
      "          'hack': 1,\n",
      "          'wouldnt': 1,\n",
      "          'pass': 1,\n",
      "          'muster': 1,\n",
      "          'even': 1,\n",
      "          'upn': 1,\n",
      "          'sitcom': 1,\n",
      "          'follows': 1,\n",
      "          'lathered': 1,\n",
      "          'stale': 1,\n",
      "          'liners': 1,\n",
      "          'supply': 1,\n",
      "          'dozen': 1,\n",
      "          'wouldbe': 1,\n",
      "          'comics': 1,\n",
      "          'openmike': 1,\n",
      "          'night': 1,\n",
      "          'local': 1,\n",
      "          'club': 1,\n",
      "          'someone': 1,\n",
      "          'drags': 1,\n",
      "          'find': 1,\n",
      "          'bored': 1,\n",
      "          'try': 1,\n",
      "          'entertaining': 1,\n",
      "          'counting': 1,\n",
      "          'product': 1,\n",
      "          'placements': 1,\n",
      "          'nburger': 1,\n",
      "          'king': 1,\n",
      "          'el': 1,\n",
      "          'pollo': 1,\n",
      "          'loco': 1,\n",
      "          'taco': 1,\n",
      "          'joint': 1,\n",
      "          'budget': 1,\n",
      "          'renta': 1,\n",
      "          'really': 1,\n",
      "          'hits': 1,\n",
      "          'jackpot': 1,\n",
      "          'nbetween': 1,\n",
      "          'references': 1,\n",
      "          'shots': 1,\n",
      "          'signs': 1,\n",
      "          'stickers': 1,\n",
      "          'bearing': 1,\n",
      "          'company': 1,\n",
      "          'couldnt': 1,\n",
      "          'count': 1,\n",
      "          'plugs': 1,\n",
      "          'however': 1,\n",
      "          'track': 1,\n",
      "          'came': 1,\n",
      "          'four': 1,\n",
      "          'goddamns': 1,\n",
      "          'shitheads': 1,\n",
      "          'fucks': 1,\n",
      "          'inclusion': 1,\n",
      "          'particular': 1,\n",
      "          'profanities': 1,\n",
      "          'seemed': 1,\n",
      "          'aimed': 1,\n",
      "          'older': 1,\n",
      "          'audience': 1,\n",
      "          'seniors': 1,\n",
      "          'appeared': 1,\n",
      "          'problem': 1,\n",
      "          'howling': 1,\n",
      "          'crazy': 1,\n",
      "          'time': 1,\n",
      "          'boys': 1,\n",
      "          'let': 1,\n",
      "          'rip': 1,\n",
      "          'naughty': 1,\n",
      "          'nits': 1,\n",
      "          'sad': 1,\n",
      "          'writer': 1,\n",
      "          'stature': 1,\n",
      "          'grown': 1,\n",
      "          'desperate': 1,\n",
      "          'resort': 1,\n",
      "          'cheap': 1,\n",
      "          'laughs': 1,\n",
      "          'surprising': 1,\n",
      "          'look': 1,\n",
      "          'else': 1,\n",
      "          'passed': 1,\n",
      "          'humor': 1,\n",
      "          'tepid': 1,\n",
      "          'exercise': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'involves': 1,\n",
      "          'felixs': 1,\n",
      "          'inability': 1,\n",
      "          'remember': 1,\n",
      "          'town': 1,\n",
      "          'held': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'actually': 1,\n",
      "          'spend': 1,\n",
      "          '30': 1,\n",
      "          'seconds': 1,\n",
      "          'freeassociating': 1,\n",
      "          'riffing': 1,\n",
      "          'variants': 1,\n",
      "          'sequence': 1,\n",
      "          'creatively': 1,\n",
      "          'bankrupt': 1,\n",
      "          'simply': 1,\n",
      "          'embarrassing': 1,\n",
      "          'oldest': 1,\n",
      "          'maxims': 1,\n",
      "          'filmgoing': 1,\n",
      "          'beware': 1,\n",
      "          'movies': 1,\n",
      "          'use': 1,\n",
      "          'authors': 1,\n",
      "          'title': 1,\n",
      "          'exception': 1,\n",
      "          'rule': 1,\n",
      "          'production': 1,\n",
      "          'minor': 1,\n",
      "          'pleasures': 1,\n",
      "          'warrant': 1,\n",
      "          'viewing': 1,\n",
      "          'sunday': 1,\n",
      "          'afternoon': 1,\n",
      "          'playing': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'theres': 1,\n",
      "          'strongly': 1,\n",
      "          'disagree': 1,\n",
      "          'written': 1,\n",
      "          'probably': 1,\n",
      "          'whip': 1,\n",
      "          'youngwhippersnapper': 1,\n",
      "          'ass': 1,\n",
      "          'boot': 1,\n",
      "          'things': 1,\n",
      "          'sure': 1,\n",
      "          'though': 1,\n",
      "          'ntheyll': 1,\n",
      "          'never': 1,\n",
      "          'catch': 1,\n",
      "          'chase': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'army': 4,\n",
      "          'stripes': 3,\n",
      "          'would': 3,\n",
      "          'murray': 3,\n",
      "          'even': 3,\n",
      "          'larroquette': 3,\n",
      "          'comedy': 2,\n",
      "          'never': 2,\n",
      "          'movie': 2,\n",
      "          'dont': 2,\n",
      "          'ever': 2,\n",
      "          'ramis': 2,\n",
      "          'like': 2,\n",
      "          'ghostbusters': 2,\n",
      "          'funny': 2,\n",
      "          'john': 2,\n",
      "          'candy': 2,\n",
      "          'nhe': 2,\n",
      "          'child': 2,\n",
      "          'sex': 2,\n",
      "          'seems': 2,\n",
      "          'uses': 2,\n",
      "          'genre': 1,\n",
      "          'turned': 1,\n",
      "          'truly': 1,\n",
      "          'good': 1,\n",
      "          'count': 1,\n",
      "          'neil': 1,\n",
      "          'simons': 1,\n",
      "          'biloxi': 1,\n",
      "          'blues': 1,\n",
      "          'nyear': 1,\n",
      "          'year': 1,\n",
      "          'predictably': 1,\n",
      "          'cliched': 1,\n",
      "          'military': 1,\n",
      "          'movies': 1,\n",
      "          'come': 1,\n",
      "          'recently': 1,\n",
      "          'sgt': 1,\n",
      "          'nbilko': 1,\n",
      "          'none': 1,\n",
      "          'manage': 1,\n",
      "          'anything': 1,\n",
      "          'rehash': 1,\n",
      "          'last': 1,\n",
      "          'ni': 1,\n",
      "          'thought': 1,\n",
      "          'different': 1,\n",
      "          'nwith': 1,\n",
      "          'ivan': 1,\n",
      "          'reitman': 1,\n",
      "          'director': 1,\n",
      "          'bill': 1,\n",
      "          'star': 1,\n",
      "          'harold': 1,\n",
      "          'costar': 1,\n",
      "          'coscreenwriter': 1,\n",
      "          'seemed': 1,\n",
      "          'ninstead': 1,\n",
      "          'bunch': 1,\n",
      "          'unfunny': 1,\n",
      "          'crap': 1,\n",
      "          'nmurray': 1,\n",
      "          'sophisticated': 1,\n",
      "          'meatballs': 1,\n",
      "          'plays': 1,\n",
      "          'loser': 1,\n",
      "          'cab': 1,\n",
      "          'driver': 1,\n",
      "          'sees': 1,\n",
      "          'chance': 1,\n",
      "          'success': 1,\n",
      "          'convinces': 1,\n",
      "          'friend': 1,\n",
      "          'enlist': 1,\n",
      "          'nso': 1,\n",
      "          'get': 1,\n",
      "          'obligatory': 1,\n",
      "          'drill': 1,\n",
      "          'sergeant': 1,\n",
      "          'hell': 1,\n",
      "          'headshaving': 1,\n",
      "          'marchingsinging': 1,\n",
      "          'sequences': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'stale': 1,\n",
      "          'nthe': 1,\n",
      "          'characters': 1,\n",
      "          'less': 1,\n",
      "          'original': 1,\n",
      "          'ranging': 1,\n",
      "          'underachieving': 1,\n",
      "          'slob': 1,\n",
      "          'incompetent': 1,\n",
      "          'captain': 1,\n",
      "          'nall': 1,\n",
      "          'big': 1,\n",
      "          'name': 1,\n",
      "          'stars': 1,\n",
      "          'fall': 1,\n",
      "          'victim': 1,\n",
      "          'lame': 1,\n",
      "          'rehashed': 1,\n",
      "          'material': 1,\n",
      "          'really': 1,\n",
      "          'likeable': 1,\n",
      "          'particular': 1,\n",
      "          'gets': 1,\n",
      "          'decent': 1,\n",
      "          'lines': 1,\n",
      "          'although': 1,\n",
      "          'barelyfunny': 1,\n",
      "          'one': 1,\n",
      "          'liners': 1,\n",
      "          'pale': 1,\n",
      "          'comparison': 1,\n",
      "          'hilarious': 1,\n",
      "          'peter': 1,\n",
      "          'venkman': 1,\n",
      "          'character': 1,\n",
      "          'played': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'better': 1,\n",
      "          'caddyshack': 1,\n",
      "          'crying': 1,\n",
      "          'loud': 1,\n",
      "          'nas': 1,\n",
      "          'lot': 1,\n",
      "          'late': 1,\n",
      "          '70s': 1,\n",
      "          'early': 1,\n",
      "          '80s': 1,\n",
      "          'comedies': 1,\n",
      "          'completely': 1,\n",
      "          'juvenile': 1,\n",
      "          'obsessed': 1,\n",
      "          'able': 1,\n",
      "          'watch': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'paper': 1,\n",
      "          'pay': 1,\n",
      "          '400': 1,\n",
      "          'mud': 1,\n",
      "          'wrestle': 1,\n",
      "          'five': 1,\n",
      "          'beautiful': 1,\n",
      "          'women': 1,\n",
      "          'watching': 1,\n",
      "          'coming': 1,\n",
      "          'mouth': 1,\n",
      "          'admonition': 1,\n",
      "          'dear': 1,\n",
      "          'god': 1,\n",
      "          'nevery': 1,\n",
      "          'seconds': 1,\n",
      "          'nstripes': 1,\n",
      "          'isnt': 1,\n",
      "          'playful': 1,\n",
      "          'kind': 1,\n",
      "          'either': 1,\n",
      "          'nmost': 1,\n",
      "          'time': 1,\n",
      "          'downright': 1,\n",
      "          'misogynistic': 1,\n",
      "          'telescope': 1,\n",
      "          'peer': 1,\n",
      "          'womens': 1,\n",
      "          'showers': 1,\n",
      "          'lifts': 1,\n",
      "          'female': 1,\n",
      "          'p': 1,\n",
      "          'nonto': 1,\n",
      "          'stove': 1,\n",
      "          'iknowwhatyoulike': 1,\n",
      "          'look': 1,\n",
      "          'face': 1,\n",
      "          'says': 1,\n",
      "          'hes': 1,\n",
      "          'going': 1,\n",
      "          'give': 1,\n",
      "          'aunt': 1,\n",
      "          'jemima': 1,\n",
      "          'treatment': 1,\n",
      "          'means': 1,\n",
      "          'shoving': 1,\n",
      "          'spatula': 1,\n",
      "          'butt': 1,\n",
      "          'repeatedly': 1,\n",
      "          'nyou': 1,\n",
      "          'want': 1,\n",
      "          'stick': 1,\n",
      "          'around': 1,\n",
      "          'scene': 1,\n",
      "          'progresses': 1,\n",
      "          'ice': 1,\n",
      "          'cream': 1,\n",
      "          'scoop': 1,\n",
      "          'genital': 1,\n",
      "          'region': 1,\n",
      "          'n': 1,\n",
      "          'im': 1,\n",
      "          'enjoying': 1,\n",
      "          'woman': 1,\n",
      "          'protests': 1,\n",
      "          'nmy': 1,\n",
      "          'sentiments': 1,\n",
      "          'exactly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'simon': 10,\n",
      "          'movie': 9,\n",
      "          'nthe': 6,\n",
      "          'jeffries': 6,\n",
      "          'mercury': 5,\n",
      "          'rising': 5,\n",
      "          'plot': 4,\n",
      "          'government': 4,\n",
      "          'autistic': 4,\n",
      "          'willis': 4,\n",
      "          'hitman': 4,\n",
      "          'really': 3,\n",
      "          'action': 3,\n",
      "          'could': 3,\n",
      "          'nthis': 3,\n",
      "          'fact': 3,\n",
      "          'simons': 3,\n",
      "          'character': 3,\n",
      "          'hughes': 3,\n",
      "          'young': 3,\n",
      "          'way': 3,\n",
      "          'one': 2,\n",
      "          'central': 2,\n",
      "          'device': 2,\n",
      "          'right': 2,\n",
      "          'aspect': 2,\n",
      "          'film': 2,\n",
      "          'supposed': 2,\n",
      "          'different': 2,\n",
      "          'exactly': 2,\n",
      "          'better': 2,\n",
      "          'evil': 2,\n",
      "          'named': 2,\n",
      "          'wants': 2,\n",
      "          'back': 2,\n",
      "          'nsimon': 2,\n",
      "          'heart': 2,\n",
      "          'child': 2,\n",
      "          'fbi': 2,\n",
      "          'agent': 2,\n",
      "          'played': 2,\n",
      "          'protect': 2,\n",
      "          'ni': 2,\n",
      "          'much': 2,\n",
      "          'goes': 2,\n",
      "          'walks': 2,\n",
      "          'hes': 2,\n",
      "          'time': 2,\n",
      "          'role': 2,\n",
      "          'never': 2,\n",
      "          'isnt': 2,\n",
      "          'like': 2,\n",
      "          'rain': 2,\n",
      "          'man': 2,\n",
      "          'characters': 2,\n",
      "          'interesting': 2,\n",
      "          'go': 2,\n",
      "          'shy': 2,\n",
      "          'doesnt': 2,\n",
      "          'even': 2,\n",
      "          'might': 2,\n",
      "          'scene': 2,\n",
      "          'shot': 2,\n",
      "          'nof': 2,\n",
      "          'parents': 2,\n",
      "          'police': 2,\n",
      "          'knows': 2,\n",
      "          'personal': 2,\n",
      "          'place': 2,\n",
      "          'lets': 2,\n",
      "          'apartment': 2,\n",
      "          'good': 2,\n",
      "          'directed': 2,\n",
      "          'streetcar': 2,\n",
      "          'building': 2,\n",
      "          'humor': 2,\n",
      "          'numerous': 1,\n",
      "          'flaws': 1,\n",
      "          'stands': 1,\n",
      "          'unnecessary': 1,\n",
      "          'nthats': 1,\n",
      "          'major': 1,\n",
      "          'make': 1,\n",
      "          'routine': 1,\n",
      "          'conspiracy': 1,\n",
      "          'flicks': 1,\n",
      "          'dropped': 1,\n",
      "          'beginning': 1,\n",
      "          'would': 1,\n",
      "          'turn': 1,\n",
      "          'nineyearold': 1,\n",
      "          'boy': 1,\n",
      "          'nhis': 1,\n",
      "          'name': 1,\n",
      "          'bureaucrat': 1,\n",
      "          'nicholas': 1,\n",
      "          'kudrow': 1,\n",
      "          'alec': 1,\n",
      "          'baldwin': 1,\n",
      "          'dead': 1,\n",
      "          'unknowingly': 1,\n",
      "          'cracked': 1,\n",
      "          'supersecret': 1,\n",
      "          'code': 1,\n",
      "          'slipped': 1,\n",
      "          'puzzle': 1,\n",
      "          'magazine': 1,\n",
      "          'programmers': 1,\n",
      "          'see': 1,\n",
      "          'someone': 1,\n",
      "          'beat': 1,\n",
      "          'intended': 1,\n",
      "          'soul': 1,\n",
      "          'feel': 1,\n",
      "          'poor': 1,\n",
      "          'handicapped': 1,\n",
      "          'thrown': 1,\n",
      "          'violent': 1,\n",
      "          'unfair': 1,\n",
      "          'world': 1,\n",
      "          'renegade': 1,\n",
      "          'bruce': 1,\n",
      "          'nothing': 1,\n",
      "          'emotional': 1,\n",
      "          'intensity': 1,\n",
      "          'necessities': 1,\n",
      "          'suppose': 1,\n",
      "          'original': 1,\n",
      "          'novel': 1,\n",
      "          'upon': 1,\n",
      "          'based': 1,\n",
      "          'relationship': 1,\n",
      "          'lost': 1,\n",
      "          'nmiko': 1,\n",
      "          'actor': 1,\n",
      "          'plays': 1,\n",
      "          'prescribed': 1,\n",
      "          'motions': 1,\n",
      "          'slowly': 1,\n",
      "          'drawls': 1,\n",
      "          'words': 1,\n",
      "          'kicks': 1,\n",
      "          'screams': 1,\n",
      "          'touched': 1,\n",
      "          'hard': 1,\n",
      "          'looking': 1,\n",
      "          'people': 1,\n",
      "          'nits': 1,\n",
      "          'difficult': 1,\n",
      "          'adult': 1,\n",
      "          'less': 1,\n",
      "          'play': 1,\n",
      "          'unfortunately': 1,\n",
      "          'convinces': 1,\n",
      "          'us': 1,\n",
      "          'playing': 1,\n",
      "          'nunlike': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffmans': 1,\n",
      "          'performance': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprios': 1,\n",
      "          'whats': 1,\n",
      "          'eating': 1,\n",
      "          'gilbert': 1,\n",
      "          'grape': 1,\n",
      "          'always': 1,\n",
      "          'painfully': 1,\n",
      "          'aware': 1,\n",
      "          'acting': 1,\n",
      "          'nhowever': 1,\n",
      "          'unlike': 1,\n",
      "          'used': 1,\n",
      "          'autism': 1,\n",
      "          'unique': 1,\n",
      "          'ways': 1,\n",
      "          'build': 1,\n",
      "          'credible': 1,\n",
      "          'touching': 1,\n",
      "          'story': 1,\n",
      "          'generic': 1,\n",
      "          'predictable': 1,\n",
      "          'simply': 1,\n",
      "          'smart': 1,\n",
      "          'kid': 1,\n",
      "          'nhell': 1,\n",
      "          'nin': 1,\n",
      "          'active': 1,\n",
      "          'rather': 1,\n",
      "          'carted': 1,\n",
      "          'around': 1,\n",
      "          'arm': 1,\n",
      "          'nwillis': 1,\n",
      "          'art': 1,\n",
      "          'disillusioned': 1,\n",
      "          'removed': 1,\n",
      "          'undercover': 1,\n",
      "          'work': 1,\n",
      "          'menial': 1,\n",
      "          'tasks': 1,\n",
      "          'listening': 1,\n",
      "          'wiretaps': 1,\n",
      "          'rookies': 1,\n",
      "          'happy': 1,\n",
      "          'anything': 1,\n",
      "          'nhe': 1,\n",
      "          'becomes': 1,\n",
      "          'involved': 1,\n",
      "          'called': 1,\n",
      "          'check': 1,\n",
      "          'murder': 1,\n",
      "          'house': 1,\n",
      "          'father': 1,\n",
      "          'apparently': 1,\n",
      "          'mother': 1,\n",
      "          'committed': 1,\n",
      "          'suicide': 1,\n",
      "          'course': 1,\n",
      "          'know': 1,\n",
      "          'happened': 1,\n",
      "          'happen': 1,\n",
      "          'saw': 1,\n",
      "          'squarejawed': 1,\n",
      "          'meanlooking': 1,\n",
      "          'crewcut': 1,\n",
      "          'knock': 1,\n",
      "          'able': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'finds': 1,\n",
      "          'hiding': 1,\n",
      "          'secret': 1,\n",
      "          'compartment': 1,\n",
      "          'closet': 1,\n",
      "          'rest': 1,\n",
      "          'chicago': 1,\n",
      "          'department': 1,\n",
      "          'overlooked': 1,\n",
      "          'njeffries': 1,\n",
      "          'accused': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'paranoid': 1,\n",
      "          'although': 1,\n",
      "          'actions': 1,\n",
      "          'suggest': 1,\n",
      "          'something': 1,\n",
      "          'makes': 1,\n",
      "          'mission': 1,\n",
      "          'everything': 1,\n",
      "          'everyone': 1,\n",
      "          'order': 1,\n",
      "          'quite': 1,\n",
      "          'task': 1,\n",
      "          'knocked': 1,\n",
      "          'crawling': 1,\n",
      "          'everywhere': 1,\n",
      "          'attempting': 1,\n",
      "          'kill': 1,\n",
      "          'hospital': 1,\n",
      "          'highway': 1,\n",
      "          'every': 1,\n",
      "          'nlate': 1,\n",
      "          'forced': 1,\n",
      "          'enlist': 1,\n",
      "          'aid': 1,\n",
      "          'pretty': 1,\n",
      "          'woman': 1,\n",
      "          'stacey': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'meets': 1,\n",
      "          'coffee': 1,\n",
      "          'shop': 1,\n",
      "          'hardtobelieve': 1,\n",
      "          'aspects': 1,\n",
      "          'worst': 1,\n",
      "          'believe': 1,\n",
      "          'decency': 1,\n",
      "          'human': 1,\n",
      "          'staceys': 1,\n",
      "          'far': 1,\n",
      "          'accommodating': 1,\n",
      "          'nnot': 1,\n",
      "          'agree': 1,\n",
      "          'watch': 1,\n",
      "          'runs': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          'two': 1,\n",
      "          'oclock': 1,\n",
      "          'morning': 1,\n",
      "          'leave': 1,\n",
      "          'means': 1,\n",
      "          'forgo': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'business': 1,\n",
      "          'trip': 1,\n",
      "          'desperately': 1,\n",
      "          'needed': 1,\n",
      "          'pay': 1,\n",
      "          'rent': 1,\n",
      "          'grinding': 1,\n",
      "          'squeals': 1,\n",
      "          'rusty': 1,\n",
      "          'machine': 1,\n",
      "          'almost': 1,\n",
      "          'overbearing': 1,\n",
      "          'point': 1,\n",
      "          'redeemed': 1,\n",
      "          'sequences': 1,\n",
      "          'rise': 1,\n",
      "          'challenge': 1,\n",
      "          'harold': 1,\n",
      "          'becker': 1,\n",
      "          'made': 1,\n",
      "          'suspense': 1,\n",
      "          'films': 1,\n",
      "          'including': 1,\n",
      "          'sea': 1,\n",
      "          'love': 1,\n",
      "          '1989': 1,\n",
      "          'malice': 1,\n",
      "          '1993': 1,\n",
      "          'talent': 1,\n",
      "          'nowhere': 1,\n",
      "          'found': 1,\n",
      "          'latest': 1,\n",
      "          'excursion': 1,\n",
      "          'nthere': 1,\n",
      "          'fight': 1,\n",
      "          'another': 1,\n",
      "          'peter': 1,\n",
      "          'stormare': 1,\n",
      "          'ineptly': 1,\n",
      "          'edited': 1,\n",
      "          'idea': 1,\n",
      "          '1': 1,\n",
      "          '2': 1,\n",
      "          'hitting': 1,\n",
      "          '3': 1,\n",
      "          'came': 1,\n",
      "          'knew': 1,\n",
      "          'grand': 1,\n",
      "          'finale': 1,\n",
      "          'takes': 1,\n",
      "          'roof': 1,\n",
      "          'tall': 1,\n",
      "          'features': 1,\n",
      "          'harrowing': 1,\n",
      "          'yawn': 1,\n",
      "          'along': 1,\n",
      "          'edge': 1,\n",
      "          'suspenseful': 1,\n",
      "          'ntaken': 1,\n",
      "          'whole': 1,\n",
      "          'tepid': 1,\n",
      "          'confused': 1,\n",
      "          'lacks': 1,\n",
      "          'style': 1,\n",
      "          'wit': 1,\n",
      "          'traces': 1,\n",
      "          'sense': 1,\n",
      "          'nusually': 1,\n",
      "          'brings': 1,\n",
      "          'brand': 1,\n",
      "          'understated': 1,\n",
      "          'roles': 1,\n",
      "          'straight': 1,\n",
      "          'serious': 1,\n",
      "          'flick': 1,\n",
      "          'heartfelt': 1,\n",
      "          'drama': 1,\n",
      "          'ends': 1,\n",
      "          'failing': 1,\n",
      "          'fronts': 1,\n",
      "          'nmaybe': 1,\n",
      "          'book': 1,\n",
      "          'handled': 1,\n",
      "          'perfect': 1,\n",
      "          'case': 1,\n",
      "          'study': 1,\n",
      "          'formula': 1,\n",
      "          'filmmaking': 1,\n",
      "          'guaranteed': 1,\n",
      "          'bore': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'star': 9,\n",
      "          'trek': 9,\n",
      "          'one': 6,\n",
      "          'insurrection': 6,\n",
      "          'series': 5,\n",
      "          'film': 5,\n",
      "          'always': 4,\n",
      "          'baku': 4,\n",
      "          'films': 3,\n",
      "          'seen': 3,\n",
      "          'go': 3,\n",
      "          'completely': 3,\n",
      "          'first': 3,\n",
      "          'contact': 3,\n",
      "          'picard': 3,\n",
      "          'love': 3,\n",
      "          'n': 3,\n",
      "          'action': 3,\n",
      "          'however': 2,\n",
      "          'element': 2,\n",
      "          'story': 2,\n",
      "          'planet': 2,\n",
      "          'known': 2,\n",
      "          'second': 2,\n",
      "          'alien': 2,\n",
      "          'data': 2,\n",
      "          'donna': 2,\n",
      "          'murphy': 2,\n",
      "          'least': 2,\n",
      "          'old': 2,\n",
      "          'ticking': 2,\n",
      "          'timer': 2,\n",
      "          'made': 2,\n",
      "          'interest': 2,\n",
      "          'time': 2,\n",
      "          'screenplay': 2,\n",
      "          'although': 2,\n",
      "          'since': 2,\n",
      "          'could': 2,\n",
      "          'never': 1,\n",
      "          'fan': 1,\n",
      "          'tell': 1,\n",
      "          'truth': 1,\n",
      "          'five': 1,\n",
      "          '1': 1,\n",
      "          '2': 1,\n",
      "          '3': 1,\n",
      "          '8': 1,\n",
      "          '9': 1,\n",
      "          'disliked': 1,\n",
      "          'ni': 1,\n",
      "          'open': 1,\n",
      "          'mind': 1,\n",
      "          'ninth': 1,\n",
      "          'exception': 1,\n",
      "          'ndropping': 1,\n",
      "          'almost': 1,\n",
      "          'hardcore': 1,\n",
      "          'scifi': 1,\n",
      "          'previous': 1,\n",
      "          'tells': 1,\n",
      "          'holds': 1,\n",
      "          '600': 1,\n",
      "          'people': 1,\n",
      "          'well': 1,\n",
      "          'fountain': 1,\n",
      "          'youth': 1,\n",
      "          'nat': 1,\n",
      "          'start': 1,\n",
      "          'picture': 1,\n",
      "          'villagers': 1,\n",
      "          'attack': 1,\n",
      "          'species': 1,\n",
      "          'sona': 1,\n",
      "          'want': 1,\n",
      "          'push': 1,\n",
      "          'race': 1,\n",
      "          'die': 1,\n",
      "          'nalso': 1,\n",
      "          'attacking': 1,\n",
      "          'brent': 1,\n",
      "          'spiner': 1,\n",
      "          'robot': 1,\n",
      "          'enterprise': 1,\n",
      "          'nafter': 1,\n",
      "          'returning': 1,\n",
      "          'jeanluc': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'gang': 1,\n",
      "          'space': 1,\n",
      "          'ship': 1,\n",
      "          'understand': 1,\n",
      "          'somehow': 1,\n",
      "          'taken': 1,\n",
      "          'another': 1,\n",
      "          'force': 1,\n",
      "          'nso': 1,\n",
      "          'several': 1,\n",
      "          'members': 1,\n",
      "          'travel': 1,\n",
      "          'meets': 1,\n",
      "          'starts': 1,\n",
      "          'fall': 1,\n",
      "          'inhabitants': 1,\n",
      "          'sultry': 1,\n",
      "          'kind': 1,\n",
      "          'woman': 1,\n",
      "          'sixhundredyearsold': 1,\n",
      "          'looks': 1,\n",
      "          'thirties': 1,\n",
      "          'unoriginal': 1,\n",
      "          'cheaplooking': 1,\n",
      "          'installment': 1,\n",
      "          'big': 1,\n",
      "          'step': 1,\n",
      "          '1996s': 1,\n",
      "          'appeared': 1,\n",
      "          'try': 1,\n",
      "          'make': 1,\n",
      "          'something': 1,\n",
      "          'bit': 1,\n",
      "          'different': 1,\n",
      "          'nin': 1,\n",
      "          'plays': 1,\n",
      "          'like': 1,\n",
      "          'lowrent': 1,\n",
      "          'episode': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'due': 1,\n",
      "          'smallscale': 1,\n",
      "          'generic': 1,\n",
      "          'storyline': 1,\n",
      "          'emphasis': 1,\n",
      "          'oneliners': 1,\n",
      "          'rather': 1,\n",
      "          'excitement': 1,\n",
      "          'nthe': 1,\n",
      "          'filled': 1,\n",
      "          'nearly': 1,\n",
      "          'nonstop': 1,\n",
      "          'comedy': 1,\n",
      "          'worse': 1,\n",
      "          'yet': 1,\n",
      "          'fell': 1,\n",
      "          'flatter': 1,\n",
      "          'cartoon': 1,\n",
      "          'character': 1,\n",
      "          'drops': 1,\n",
      "          'cliff': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'sequences': 1,\n",
      "          'interesting': 1,\n",
      "          'inventive': 1,\n",
      "          'relying': 1,\n",
      "          'reliable': 1,\n",
      "          'counts': 1,\n",
      "          'slowly': 1,\n",
      "          'nthis': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'every': 1,\n",
      "          'nowadays': 1,\n",
      "          'getting': 1,\n",
      "          'fast': 1,\n",
      "          'nare': 1,\n",
      "          'filmmakers': 1,\n",
      "          'bankrupt': 1,\n",
      "          'ingenuity': 1,\n",
      "          'ideas': 1,\n",
      "          'must': 1,\n",
      "          'away': 1,\n",
      "          'climax': 1,\n",
      "          'nanother': 1,\n",
      "          'general': 1,\n",
      "          'seems': 1,\n",
      "          'miraculously': 1,\n",
      "          'disappears': 1,\n",
      "          'next': 1,\n",
      "          'two': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'nalthough': 1,\n",
      "          'falls': 1,\n",
      "          'victim': 1,\n",
      "          'thankless': 1,\n",
      "          'role': 1,\n",
      "          'actually': 1,\n",
      "          'characters': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          '103minute': 1,\n",
      "          'running': 1,\n",
      "          'alfre': 1,\n",
      "          'woodard': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'nshe': 1,\n",
      "          'returned': 1,\n",
      "          'dont': 1,\n",
      "          'blame': 1,\n",
      "          'wanting': 1,\n",
      "          'waste': 1,\n",
      "          'movies': 1,\n",
      "          'disappointing': 1,\n",
      "          'often': 1,\n",
      "          'lifeless': 1,\n",
      "          'michael': 1,\n",
      "          'piller': 1,\n",
      "          'perhaps': 1,\n",
      "          'weakest': 1,\n",
      "          'widely': 1,\n",
      "          'considered': 1,\n",
      "          'worst': 1,\n",
      "          'v': 1,\n",
      "          'final': 1,\n",
      "          'frontier': 1,\n",
      "          'type': 1,\n",
      "          'safe': 1,\n",
      "          'sequel': 1,\n",
      "          'bewilder': 1,\n",
      "          'nonfans': 1,\n",
      "          'lowtech': 1,\n",
      "          'compared': 1,\n",
      "          'todays': 1,\n",
      "          'blockbuster': 1,\n",
      "          'honestly': 1,\n",
      "          'good': 1,\n",
      "          'either': 1,\n",
      "          'disappoint': 1,\n",
      "          'loyal': 1,\n",
      "          'trekkies': 1,\n",
      "          'easily': 1,\n",
      "          'better': 1,\n",
      "          'makers': 1,\n",
      "          'realized': 1,\n",
      "          'needed': 1,\n",
      "          'drafts': 1,\n",
      "          'non': 1,\n",
      "          'thought': 1,\n",
      "          'probably': 1,\n",
      "          'thrown': 1,\n",
      "          'script': 1,\n",
      "          'nthat': 1,\n",
      "          'way': 1,\n",
      "          'come': 1,\n",
      "          'sign': 1,\n",
      "          'intelligence': 1,\n",
      "          'freshness': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'spawn': 15,\n",
      "          'movie': 8,\n",
      "          'nand': 8,\n",
      "          'nthe': 7,\n",
      "          'film': 7,\n",
      "          'films': 5,\n",
      "          'al': 5,\n",
      "          'superhero': 4,\n",
      "          'one': 4,\n",
      "          'life': 4,\n",
      "          'man': 4,\n",
      "          'character': 4,\n",
      "          'like': 4,\n",
      "          'kids': 3,\n",
      "          'must': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'bad': 3,\n",
      "          'element': 3,\n",
      "          'poor': 3,\n",
      "          'nas': 3,\n",
      "          'normal': 3,\n",
      "          'present': 3,\n",
      "          'evil': 3,\n",
      "          'better': 3,\n",
      "          'batman': 3,\n",
      "          'nit': 3,\n",
      "          'human': 3,\n",
      "          'children': 3,\n",
      "          'think': 2,\n",
      "          'go': 2,\n",
      "          'trend': 2,\n",
      "          'individual': 2,\n",
      "          'hes': 2,\n",
      "          'hell': 2,\n",
      "          'mcfarlane': 2,\n",
      "          'time': 2,\n",
      "          'themes': 2,\n",
      "          'story': 2,\n",
      "          'take': 2,\n",
      "          'find': 2,\n",
      "          'every': 2,\n",
      "          'simmons': 2,\n",
      "          'michael': 2,\n",
      "          'jai': 2,\n",
      "          'white': 2,\n",
      "          'wife': 2,\n",
      "          'partner': 2,\n",
      "          'terry': 2,\n",
      "          'boss': 2,\n",
      "          'jason': 2,\n",
      "          'wynn': 2,\n",
      "          'martin': 2,\n",
      "          'sheen': 2,\n",
      "          'part': 2,\n",
      "          'everyone': 2,\n",
      "          'two': 2,\n",
      "          'world': 2,\n",
      "          'makes': 2,\n",
      "          'see': 2,\n",
      "          'takes': 2,\n",
      "          'nthis': 2,\n",
      "          'even': 2,\n",
      "          'us': 2,\n",
      "          'made': 2,\n",
      "          'touch': 2,\n",
      "          'art': 2,\n",
      "          'summer': 1,\n",
      "          'season': 1,\n",
      "          'approached': 1,\n",
      "          'long': 1,\n",
      "          'awaited': 1,\n",
      "          'cessation': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'shoddy': 1,\n",
      "          'subordinate': 1,\n",
      "          'disposable': 1,\n",
      "          'celluloid': 1,\n",
      "          'brought': 1,\n",
      "          'inexorable': 1,\n",
      "          'hasten': 1,\n",
      "          'major': 1,\n",
      "          'studios': 1,\n",
      "          'please': 1,\n",
      "          'everything': 1,\n",
      "          'disburse': 1,\n",
      "          'seven': 1,\n",
      "          'bucks': 1,\n",
      "          'worst': 1,\n",
      "          'year': 1,\n",
      "          'moment': 1,\n",
      "          'bear': 1,\n",
      "          'mind': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'animated': 1,\n",
      "          'series': 1,\n",
      "          'hbo': 1,\n",
      "          'youll': 1,\n",
      "          'recall': 1,\n",
      "          'embodies': 1,\n",
      "          'lost': 1,\n",
      "          'disfigured': 1,\n",
      "          'transpired': 1,\n",
      "          'ultimate': 1,\n",
      "          'punishment': 1,\n",
      "          'sent': 1,\n",
      "          'ntodd': 1,\n",
      "          'creator': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'tough': 1,\n",
      "          'sitting': 1,\n",
      "          'creativity': 1,\n",
      "          'resurrection': 1,\n",
      "          'loss': 1,\n",
      "          'identity': 1,\n",
      "          'jettisoned': 1,\n",
      "          'favor': 1,\n",
      "          'reliable': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'ambience': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'nnot': 1,\n",
      "          'rely': 1,\n",
      "          'entirely': 1,\n",
      "          'bewildered': 1,\n",
      "          'group': 1,\n",
      "          'guys': 1,\n",
      "          'process': 1,\n",
      "          'realized': 1,\n",
      "          'sordid': 1,\n",
      "          'incapable': 1,\n",
      "          'manner': 1,\n",
      "          'becomes': 1,\n",
      "          'indigestible': 1,\n",
      "          'nevery': 1,\n",
      "          'lifeless': 1,\n",
      "          'vacuous': 1,\n",
      "          'seemingly': 1,\n",
      "          'written': 1,\n",
      "          'depressed': 1,\n",
      "          'college': 1,\n",
      "          'student': 1,\n",
      "          'begins': 1,\n",
      "          'age': 1,\n",
      "          'living': 1,\n",
      "          'idyllic': 1,\n",
      "          'nal': 1,\n",
      "          'government': 1,\n",
      "          'agentassassin': 1,\n",
      "          'shares': 1,\n",
      "          'love': 1,\n",
      "          'wanda': 1,\n",
      "          'theresa': 1,\n",
      "          'russell': 1,\n",
      "          'daughter': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'wiseass': 1,\n",
      "          'b': 1,\n",
      "          'sweeney': 1,\n",
      "          'content': 1,\n",
      "          'job': 1,\n",
      "          'provides': 1,\n",
      "          'next': 1,\n",
      "          'things': 1,\n",
      "          'awry': 1,\n",
      "          'expected': 1,\n",
      "          'turns': 1,\n",
      "          'tables': 1,\n",
      "          'investigating': 1,\n",
      "          'latest': 1,\n",
      "          'mission': 1,\n",
      "          'sort': 1,\n",
      "          'biological': 1,\n",
      "          'weapons': 1,\n",
      "          'plant': 1,\n",
      "          'befriended': 1,\n",
      "          'dies': 1,\n",
      "          'gory': 1,\n",
      "          'truly': 1,\n",
      "          'sickening': 1,\n",
      "          'scene': 1,\n",
      "          'ninevitably': 1,\n",
      "          'leads': 1,\n",
      "          'conclusion': 1,\n",
      "          'passed': 1,\n",
      "          'away': 1,\n",
      "          'nhence': 1,\n",
      "          'jasons': 1,\n",
      "          'mischievous': 1,\n",
      "          'mastermind': 1,\n",
      "          'plan': 1,\n",
      "          'conquer': 1,\n",
      "          'commencing': 1,\n",
      "          'initial': 1,\n",
      "          'stages': 1,\n",
      "          'pact': 1,\n",
      "          'satan': 1,\n",
      "          'agreeing': 1,\n",
      "          'command': 1,\n",
      "          'devils': 1,\n",
      "          'army': 1,\n",
      "          'gets': 1,\n",
      "          'family': 1,\n",
      "          'nso': 1,\n",
      "          'pal': 1,\n",
      "          'uplifted': 1,\n",
      "          'transformation': 1,\n",
      "          'guy': 1,\n",
      "          'place': 1,\n",
      "          'ol': 1,\n",
      "          'forms': 1,\n",
      "          'relationship': 1,\n",
      "          'ntime': 1,\n",
      "          'passes': 1,\n",
      "          'grotesque': 1,\n",
      "          'inner': 1,\n",
      "          'city': 1,\n",
      "          'ghetto': 1,\n",
      "          'cog': 1,\n",
      "          'nicol': 1,\n",
      "          'williamson': 1,\n",
      "          'teaches': 1,\n",
      "          'utilize': 1,\n",
      "          'neat': 1,\n",
      "          'artifacts': 1,\n",
      "          'motorbike': 1,\n",
      "          'armor': 1,\n",
      "          'etc': 1,\n",
      "          'merely': 1,\n",
      "          'mans': 1,\n",
      "          'obi': 1,\n",
      "          'wan': 1,\n",
      "          'kenobi': 1,\n",
      "          'without': 1,\n",
      "          'mythological': 1,\n",
      "          'hoopla': 1,\n",
      "          'nnow': 1,\n",
      "          'stage': 1,\n",
      "          'set': 1,\n",
      "          'new': 1,\n",
      "          'enemy': 1,\n",
      "          'vs': 1,\n",
      "          'cake': 1,\n",
      "          'doubtlessly': 1,\n",
      "          'njohn': 1,\n",
      "          'leguizamos': 1,\n",
      "          'deliciously': 1,\n",
      "          'heinous': 1,\n",
      "          'performance': 1,\n",
      "          'injurious': 1,\n",
      "          'clown': 1,\n",
      "          'working': 1,\n",
      "          'relief': 1,\n",
      "          'point': 1,\n",
      "          'nall': 1,\n",
      "          'anguish': 1,\n",
      "          'pain': 1,\n",
      "          'halfbaked': 1,\n",
      "          'putrid': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'invisible': 1,\n",
      "          'leguizamo': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'derives': 1,\n",
      "          'joy': 1,\n",
      "          'basically': 1,\n",
      "          'compilation': 1,\n",
      "          'soso': 1,\n",
      "          'liners': 1,\n",
      "          'theres': 1,\n",
      "          'nwhichever': 1,\n",
      "          'way': 1,\n",
      "          'look': 1,\n",
      "          'carving': 1,\n",
      "          'boards': 1,\n",
      "          'near': 1,\n",
      "          'pitying': 1,\n",
      "          'downright': 1,\n",
      "          'appalling': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'nhis': 1,\n",
      "          'selections': 1,\n",
      "          'calls': 1,\n",
      "          'immediate': 1,\n",
      "          'firing': 1,\n",
      "          'agent': 1,\n",
      "          'megalomaniac': 1,\n",
      "          'caricature': 1,\n",
      "          'plays': 1,\n",
      "          'dream': 1,\n",
      "          'bmovie': 1,\n",
      "          'scrambled': 1,\n",
      "          'left': 1,\n",
      "          'shelf': 1,\n",
      "          'rot': 1,\n",
      "          'starred': 1,\n",
      "          'apocalypse': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'nid': 1,\n",
      "          'never': 1,\n",
      "          'thought': 1,\n",
      "          'id': 1,\n",
      "          'saying': 1,\n",
      "          'juncture': 1,\n",
      "          'charlie': 1,\n",
      "          'sheens': 1,\n",
      "          'career': 1,\n",
      "          'shape': 1,\n",
      "          'nspawn': 1,\n",
      "          'realism': 1,\n",
      "          'attempt': 1,\n",
      "          'draw': 1,\n",
      "          'parallel': 1,\n",
      "          'problems': 1,\n",
      "          'hero': 1,\n",
      "          'real': 1,\n",
      "          'identifiable': 1,\n",
      "          'nfor': 1,\n",
      "          'vapid': 1,\n",
      "          'consumes': 1,\n",
      "          'ogling': 1,\n",
      "          'jumping': 1,\n",
      "          'roofs': 1,\n",
      "          'performing': 1,\n",
      "          'kinds': 1,\n",
      "          'acrobatic': 1,\n",
      "          'exercises': 1,\n",
      "          'robin': 1,\n",
      "          'accomplished': 1,\n",
      "          'constantly': 1,\n",
      "          'reminded': 1,\n",
      "          'watching': 1,\n",
      "          'ncontinually': 1,\n",
      "          'kept': 1,\n",
      "          'depending': 1,\n",
      "          'sadly': 1,\n",
      "          'pictures': 1,\n",
      "          'nperhaps': 1,\n",
      "          'illustrates': 1,\n",
      "          'deterioration': 1,\n",
      "          'cinema': 1,\n",
      "          'computer': 1,\n",
      "          'wizardry': 1,\n",
      "          'filmmakers': 1,\n",
      "          'seem': 1,\n",
      "          'forgotten': 1,\n",
      "          'possible': 1,\n",
      "          'quality': 1,\n",
      "          'abysmal': 1,\n",
      "          'insulting': 1,\n",
      "          'perceptible': 1,\n",
      "          'director': 1,\n",
      "          'mark': 1,\n",
      "          'dippe': 1,\n",
      "          'attempted': 1,\n",
      "          'psychological': 1,\n",
      "          'chord': 1,\n",
      "          'tim': 1,\n",
      "          'burtons': 1,\n",
      "          'desperation': 1,\n",
      "          'whose': 1,\n",
      "          'evaporated': 1,\n",
      "          'spontaneous': 1,\n",
      "          'act': 1,\n",
      "          'nbut': 1,\n",
      "          'bruce': 1,\n",
      "          'wayne': 1,\n",
      "          'elements': 1,\n",
      "          'nhe': 1,\n",
      "          'pensive': 1,\n",
      "          'resourceful': 1,\n",
      "          'relationships': 1,\n",
      "          'perspective': 1,\n",
      "          'equally': 1,\n",
      "          'seems': 1,\n",
      "          'longing': 1,\n",
      "          'drastic': 1,\n",
      "          'change': 1,\n",
      "          'fatigued': 1,\n",
      "          'superheroes': 1,\n",
      "          'superman': 1,\n",
      "          'phantom': 1,\n",
      "          'possess': 1,\n",
      "          'civilians': 1,\n",
      "          'make': 1,\n",
      "          'extraordinary': 1,\n",
      "          'nnone': 1,\n",
      "          'fighting': 1,\n",
      "          'sequences': 1,\n",
      "          'weakly': 1,\n",
      "          'executed': 1,\n",
      "          'dialogue': 1,\n",
      "          'pennydreadful': 1,\n",
      "          'direction': 1,\n",
      "          'odious': 1,\n",
      "          'duplicate': 1,\n",
      "          'blade': 1,\n",
      "          'runners': 1,\n",
      "          'example': 1,\n",
      "          'vastly': 1,\n",
      "          'creative': 1,\n",
      "          'imagination': 1,\n",
      "          'writers': 1,\n",
      "          'decided': 1,\n",
      "          'include': 1,\n",
      "          'orphan': 1,\n",
      "          'boy': 1,\n",
      "          'abandoned': 1,\n",
      "          'beaten': 1,\n",
      "          'rescued': 1,\n",
      "          'emotions': 1,\n",
      "          'tend': 1,\n",
      "          'little': 1,\n",
      "          'sympathetic': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'laugh': 1,\n",
      "          'thats': 1,\n",
      "          'todd': 1,\n",
      "          'showed': 1,\n",
      "          'unexpected': 1,\n",
      "          'cameo': 1,\n",
      "          'bum': 1,\n",
      "          'wonder': 1,\n",
      "          'american': 1,\n",
      "          'grow': 1,\n",
      "          'engrossment': 1,\n",
      "          'literature': 1,\n",
      "          'nbesides': 1,\n",
      "          'blaming': 1,\n",
      "          'large': 1,\n",
      "          'portion': 1,\n",
      "          'laughable': 1,\n",
      "          'school': 1,\n",
      "          'system': 1,\n",
      "          'condemn': 1,\n",
      "          'garbage': 1,\n",
      "          'nmovies': 1,\n",
      "          'admiration': 1,\n",
      "          'captivation': 1,\n",
      "          'richness': 1,\n",
      "          'vague': 1,\n",
      "          'interest': 1,\n",
      "          'subjected': 1,\n",
      "          'continue': 1,\n",
      "          'simply': 1,\n",
      "          'unable': 1,\n",
      "          'differentiate': 1,\n",
      "          'imaginative': 1,\n",
      "          'wondrous': 1,\n",
      "          'insipid': 1,\n",
      "          'wasteful': 1,\n",
      "          'nchildren': 1,\n",
      "          'muppets': 1,\n",
      "          'unapologetically': 1,\n",
      "          'targets': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'film': 3,\n",
      "          'old': 2,\n",
      "          'danielle': 2,\n",
      "          'prince': 2,\n",
      "          'woman': 2,\n",
      "          'century': 2,\n",
      "          'movie': 2,\n",
      "          'like': 2,\n",
      "          'ntheater': 2,\n",
      "          'na': 2,\n",
      "          'man': 2,\n",
      "          'one': 2,\n",
      "          'enjoyable': 2,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'update': 1,\n",
      "          'stories': 1,\n",
      "          'nits': 1,\n",
      "          'done': 1,\n",
      "          'time': 1,\n",
      "          'oral': 1,\n",
      "          'tradition': 1,\n",
      "          'difficulty': 1,\n",
      "          'tale': 1,\n",
      "          'changed': 1,\n",
      "          'dry': 1,\n",
      "          'new': 1,\n",
      "          'cinderella': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'sitting': 1,\n",
      "          'around': 1,\n",
      "          'waiting': 1,\n",
      "          'come': 1,\n",
      "          'nshes': 1,\n",
      "          'late': 1,\n",
      "          'twentieth': 1,\n",
      "          'albeit': 1,\n",
      "          'situated': 1,\n",
      "          'sixteenth': 1,\n",
      "          'france': 1,\n",
      "          'nwhen': 1,\n",
      "          'father': 1,\n",
      "          'dies': 1,\n",
      "          'stays': 1,\n",
      "          'house': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'mistreated': 1,\n",
      "          'wicked': 1,\n",
      "          'stepmother': 1,\n",
      "          'rodmilla': 1,\n",
      "          'anjelica': 1,\n",
      "          'huston': 1,\n",
      "          'nshe': 1,\n",
      "          'works': 1,\n",
      "          'day': 1,\n",
      "          'reads': 1,\n",
      "          'sir': 1,\n",
      "          'thomas': 1,\n",
      "          'firelight': 1,\n",
      "          'night': 1,\n",
      "          'nalthough': 1,\n",
      "          'story': 1,\n",
      "          'updated': 1,\n",
      "          'know': 1,\n",
      "          'plot': 1,\n",
      "          'ndanielle': 1,\n",
      "          'meets': 1,\n",
      "          'henry': 1,\n",
      "          'dougray': 1,\n",
      "          'scott': 1,\n",
      "          'goes': 1,\n",
      "          'ball': 1,\n",
      "          'disguised': 1,\n",
      "          'later': 1,\n",
      "          'found': 1,\n",
      "          'live': 1,\n",
      "          'happily': 1,\n",
      "          'ever': 1,\n",
      "          'often': 1,\n",
      "          'watching': 1,\n",
      "          'filmed': 1,\n",
      "          'play': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'engrossing': 1,\n",
      "          'screen': 1,\n",
      "          'usually': 1,\n",
      "          'lifeless': 1,\n",
      "          'nthere': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'much': 1,\n",
      "          'going': 1,\n",
      "          'camera': 1,\n",
      "          'star': 1,\n",
      "          'films': 1,\n",
      "          'nhere': 1,\n",
      "          'coconspirator': 1,\n",
      "          'ndanielles': 1,\n",
      "          'convictions': 1,\n",
      "          'compromised': 1,\n",
      "          'socialist': 1,\n",
      "          'feminist': 1,\n",
      "          'pretends': 1,\n",
      "          'royalty': 1,\n",
      "          'get': 1,\n",
      "          'kind': 1,\n",
      "          'last': 1,\n",
      "          'act': 1,\n",
      "          'revenge': 1,\n",
      "          'characters': 1,\n",
      "          'cartoonish': 1,\n",
      "          'fairy': 1,\n",
      "          'godmother': 1,\n",
      "          'standin': 1,\n",
      "          'leonardo': 1,\n",
      "          'da': 1,\n",
      "          'vinci': 1,\n",
      "          'patrick': 1,\n",
      "          'godfrey': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'eccentric': 1,\n",
      "          'advises': 1,\n",
      "          'nhuston': 1,\n",
      "          'overthetop': 1,\n",
      "          'wickedness': 1,\n",
      "          'nin': 1,\n",
      "          'fairness': 1,\n",
      "          'companion': 1,\n",
      "          'loved': 1,\n",
      "          'nmaybe': 1,\n",
      "          'chick': 1,\n",
      "          'flicks': 1,\n",
      "          'men': 1,\n",
      "          'dont': 1,\n",
      "          'nit': 1,\n",
      "          'certainly': 1,\n",
      "          'date': 1,\n",
      "          'nnearly': 1,\n",
      "          'entire': 1,\n",
      "          'audience': 1,\n",
      "          'couples': 1,\n",
      "          'noh': 1,\n",
      "          'well': 1,\n",
      "          'maybe': 1,\n",
      "          'good': 1,\n",
      "          'something': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hudson': 9,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hawk': 9,\n",
      "          'movie': 7,\n",
      "          'willis': 7,\n",
      "          'im': 5,\n",
      "          'nits': 5,\n",
      "          'get': 4,\n",
      "          'film': 4,\n",
      "          'even': 4,\n",
      "          'bruce': 3,\n",
      "          'many': 3,\n",
      "          'things': 3,\n",
      "          'nbut': 3,\n",
      "          'sure': 3,\n",
      "          'big': 3,\n",
      "          'ni': 3,\n",
      "          'laughs': 3,\n",
      "          'suppose': 2,\n",
      "          'title': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'nthe': 2,\n",
      "          'sing': 2,\n",
      "          'never': 2,\n",
      "          'aiello': 2,\n",
      "          'fat': 2,\n",
      "          'absurd': 2,\n",
      "          'layer': 2,\n",
      "          'nif': 2,\n",
      "          'quite': 2,\n",
      "          'going': 2,\n",
      "          'entirely': 2,\n",
      "          'entire': 2,\n",
      "          'deadpan': 2,\n",
      "          'reactions': 2,\n",
      "          'interest': 2,\n",
      "          'character': 2,\n",
      "          'fans': 2,\n",
      "          '90': 2,\n",
      "          'looks': 2,\n",
      "          'future': 2,\n",
      "          'theres': 2,\n",
      "          'couple': 2,\n",
      "          'unfair': 1,\n",
      "          'criticize': 1,\n",
      "          'like': 1,\n",
      "          'panned': 1,\n",
      "          'reviewers': 1,\n",
      "          'moviegoers': 1,\n",
      "          'alike': 1,\n",
      "          'since': 1,\n",
      "          '1991': 1,\n",
      "          'release': 1,\n",
      "          'nmichael': 1,\n",
      "          'lehmanns': 1,\n",
      "          'actioncomedy': 1,\n",
      "          'quick': 1,\n",
      "          'win': 1,\n",
      "          'biggest': 1,\n",
      "          'flop': 1,\n",
      "          'time': 1,\n",
      "          'close': 1,\n",
      "          'thereof': 1,\n",
      "          'stars': 1,\n",
      "          'renowned': 1,\n",
      "          'cat': 1,\n",
      "          'burglar': 1,\n",
      "          'whos': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'years': 1,\n",
      "          'isolation': 1,\n",
      "          'let': 1,\n",
      "          'put': 1,\n",
      "          'way': 1,\n",
      "          'explains': 1,\n",
      "          'saw': 1,\n",
      "          'et': 1,\n",
      "          'ngreeting': 1,\n",
      "          'old': 1,\n",
      "          'friend': 1,\n",
      "          'partner': 1,\n",
      "          'crime': 1,\n",
      "          'played': 1,\n",
      "          'danny': 1,\n",
      "          'becomes': 1,\n",
      "          'subject': 1,\n",
      "          'amusing': 1,\n",
      "          'jokes': 1,\n",
      "          'nthese': 1,\n",
      "          'rather': 1,\n",
      "          'welcome': 1,\n",
      "          'filled': 1,\n",
      "          'completely': 1,\n",
      "          'unfunny': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'cartoonish': 1,\n",
      "          'villains': 1,\n",
      "          'unbelievable': 1,\n",
      "          'coincidences': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'director': 1,\n",
      "          'lehmann': 1,\n",
      "          'didnt': 1,\n",
      "          'know': 1,\n",
      "          'stop': 1,\n",
      "          'silliness': 1,\n",
      "          'piles': 1,\n",
      "          'utter': 1,\n",
      "          'ridiculousness': 1,\n",
      "          'propels': 1,\n",
      "          'toward': 1,\n",
      "          'finish': 1,\n",
      "          'line': 1,\n",
      "          'point': 1,\n",
      "          'make': 1,\n",
      "          'assumption': 1,\n",
      "          'couldnt': 1,\n",
      "          'goofier': 1,\n",
      "          'youll': 1,\n",
      "          'soon': 1,\n",
      "          'eating': 1,\n",
      "          'words': 1,\n",
      "          'inclined': 1,\n",
      "          'say': 1,\n",
      "          'terrible': 1,\n",
      "          'numbers': 1,\n",
      "          'suggest': 1,\n",
      "          'fastpaced': 1,\n",
      "          'entertaining': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'incredible': 1,\n",
      "          'patience': 1,\n",
      "          'warped': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'nfor': 1,\n",
      "          'first': 1,\n",
      "          'portion': 1,\n",
      "          'review': 1,\n",
      "          'try': 1,\n",
      "          'center': 1,\n",
      "          'positive': 1,\n",
      "          'aspects': 1,\n",
      "          'nwish': 1,\n",
      "          'luck': 1,\n",
      "          'nfirst': 1,\n",
      "          'foremost': 1,\n",
      "          'good': 1,\n",
      "          'sport': 1,\n",
      "          'nwhile': 1,\n",
      "          'smoking': 1,\n",
      "          'cowrote': 1,\n",
      "          'script': 1,\n",
      "          'aware': 1,\n",
      "          'project': 1,\n",
      "          'ugly': 1,\n",
      "          'joke': 1,\n",
      "          'nhe': 1,\n",
      "          'constantly': 1,\n",
      "          'gives': 1,\n",
      "          'silly': 1,\n",
      "          'outofplace': 1,\n",
      "          'means': 1,\n",
      "          'share': 1,\n",
      "          'nanother': 1,\n",
      "          'plus': 1,\n",
      "          'appearance': 1,\n",
      "          'andie': 1,\n",
      "          'macdowell': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'nun': 1,\n",
      "          'love': 1,\n",
      "          'nthey': 1,\n",
      "          'meet': 1,\n",
      "          'goes': 1,\n",
      "          'mission': 1,\n",
      "          'steal': 1,\n",
      "          'priceless': 1,\n",
      "          'book': 1,\n",
      "          'vatican': 1,\n",
      "          'relationship': 1,\n",
      "          'escalates': 1,\n",
      "          'unfortunate': 1,\n",
      "          'mcdowells': 1,\n",
      "          'onenote': 1,\n",
      "          'used': 1,\n",
      "          'excuse': 1,\n",
      "          'predictable': 1,\n",
      "          'plottwist': 1,\n",
      "          'offers': 1,\n",
      "          'absolutely': 1,\n",
      "          'encouraging': 1,\n",
      "          'chemistry': 1,\n",
      "          'rambling': 1,\n",
      "          'negative': 1,\n",
      "          'arent': 1,\n",
      "          'nenough': 1,\n",
      "          'charade': 1,\n",
      "          'part': 1,\n",
      "          'excruciating': 1,\n",
      "          'experience': 1,\n",
      "          'stupid': 1,\n",
      "          'pointless': 1,\n",
      "          'repetitive': 1,\n",
      "          'wonder': 1,\n",
      "          'thought': 1,\n",
      "          'exiting': 1,\n",
      "          'theater': 1,\n",
      "          'really': 1,\n",
      "          'doesnt': 1,\n",
      "          'potential': 1,\n",
      "          'please': 1,\n",
      "          'anyone': 1,\n",
      "          'naction': 1,\n",
      "          'take': 1,\n",
      "          'note': 1,\n",
      "          'composed': 1,\n",
      "          'comedy': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'skittery': 1,\n",
      "          'rushed': 1,\n",
      "          'poorly': 1,\n",
      "          'edited': 1,\n",
      "          'nand': 1,\n",
      "          'expecting': 1,\n",
      "          'hearty': 1,\n",
      "          'laugh': 1,\n",
      "          'two': 1,\n",
      "          'find': 1,\n",
      "          'difficult': 1,\n",
      "          'smirk': 1,\n",
      "          'headacheinducing': 1,\n",
      "          'hijinks': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'devoid': 1,\n",
      "          'bad': 1,\n",
      "          'unintentional': 1,\n",
      "          'plain': 1,\n",
      "          'forced': 1,\n",
      "          'impressive': 1,\n",
      "          'cast': 1,\n",
      "          'suitably': 1,\n",
      "          'embarrassed': 1,\n",
      "          'understandable': 1,\n",
      "          'see': 1,\n",
      "          'caliber': 1,\n",
      "          'presence': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'winner': 1,\n",
      "          'james': 1,\n",
      "          'coburn': 1,\n",
      "          'ncoburn': 1,\n",
      "          'plays': 1,\n",
      "          'former': 1,\n",
      "          'nemesis': 1,\n",
      "          'comes': 1,\n",
      "          'play': 1,\n",
      "          'unsure': 1,\n",
      "          'place': 1,\n",
      "          'nespecially': 1,\n",
      "          'resorts': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'final': 1,\n",
      "          'showdown': 1,\n",
      "          'fight': 1,\n",
      "          'would': 1,\n",
      "          'look': 1,\n",
      "          'right': 1,\n",
      "          'home': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'nthings': 1,\n",
      "          'bizarre': 1,\n",
      "          'introduced': 1,\n",
      "          'team': 1,\n",
      "          'rejects': 1,\n",
      "          'named': 1,\n",
      "          'chocolate': 1,\n",
      "          'bars': 1,\n",
      "          'including': 1,\n",
      "          'nypd': 1,\n",
      "          'blue': 1,\n",
      "          'star': 1,\n",
      "          'david': 1,\n",
      "          'caruso': 1,\n",
      "          'speechless': 1,\n",
      "          'cardflipping': 1,\n",
      "          'kitkat': 1,\n",
      "          'thats': 1,\n",
      "          'enough': 1,\n",
      "          'richard': 1,\n",
      "          'e': 1,\n",
      "          'grant': 1,\n",
      "          'sandra': 1,\n",
      "          'bernhard': 1,\n",
      "          'hamming': 1,\n",
      "          'deranged': 1,\n",
      "          'brink': 1,\n",
      "          'convoluted': 1,\n",
      "          'economic': 1,\n",
      "          'takeover': 1,\n",
      "          'ntheir': 1,\n",
      "          'crotchbiting': 1,\n",
      "          'pooch': 1,\n",
      "          'provides': 1,\n",
      "          'nwait': 1,\n",
      "          'maybe': 1,\n",
      "          'nim': 1,\n",
      "          'kind': 1,\n",
      "          'everyone': 1,\n",
      "          'mind': 1,\n",
      "          'filming': 1,\n",
      "          'cant': 1,\n",
      "          'begin': 1,\n",
      "          'start': 1,\n",
      "          'films': 1,\n",
      "          'plot': 1,\n",
      "          'lets': 1,\n",
      "          'amusement': 1,\n",
      "          'viewers': 1,\n",
      "          'could': 1,\n",
      "          'derive': 1,\n",
      "          'ridiculous': 1,\n",
      "          'premise': 1,\n",
      "          'desperate': 1,\n",
      "          'clue': 1,\n",
      "          'minute': 1,\n",
      "          'one': 1,\n",
      "          'minutes': 1,\n",
      "          'pure': 1,\n",
      "          'cinematic': 1,\n",
      "          'muck': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'disco': 6,\n",
      "          'club': 6,\n",
      "          'made': 5,\n",
      "          '_54_': 5,\n",
      "          'studio': 4,\n",
      "          '54': 4,\n",
      "          'christopher': 4,\n",
      "          'audience': 4,\n",
      "          'shane': 4,\n",
      "          'crowd': 4,\n",
      "          'one': 4,\n",
      "          'dance': 3,\n",
      "          'miramax': 3,\n",
      "          'last': 3,\n",
      "          'campbell': 3,\n",
      "          'phillippe': 3,\n",
      "          'would': 3,\n",
      "          'spent': 3,\n",
      "          'subject': 2,\n",
      "          'infamous': 2,\n",
      "          'came': 2,\n",
      "          'sex': 2,\n",
      "          'hayek': 2,\n",
      "          'myers': 2,\n",
      "          'turn': 2,\n",
      "          'reshoots': 2,\n",
      "          'screen': 2,\n",
      "          'finished': 2,\n",
      "          'though': 2,\n",
      "          'numerous': 2,\n",
      "          'away': 2,\n",
      "          'less': 2,\n",
      "          'way': 2,\n",
      "          'still': 2,\n",
      "          '_54_s': 2,\n",
      "          'anita': 2,\n",
      "          'busboy': 2,\n",
      "          'nthese': 2,\n",
      "          'wild': 2,\n",
      "          'comes': 2,\n",
      "          'character': 2,\n",
      "          'nas': 2,\n",
      "          'little': 2,\n",
      "          'much': 2,\n",
      "          'within': 2,\n",
      "          'isnt': 2,\n",
      "          'may': 2,\n",
      "          'cut': 2,\n",
      "          'failure': 2,\n",
      "          'time': 2,\n",
      "          'floor': 2,\n",
      "          'moment': 2,\n",
      "          'screaming': 1,\n",
      "          'late': 1,\n",
      "          'steve': 1,\n",
      "          'rubells': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'discotheque': 1,\n",
      "          'symbolize': 1,\n",
      "          'taboosmashing': 1,\n",
      "          'excesses': 1,\n",
      "          'eras': 1,\n",
      "          'heyday': 1,\n",
      "          'easy': 1,\n",
      "          'drugs': 1,\n",
      "          'even': 1,\n",
      "          'easier': 1,\n",
      "          'everyone': 1,\n",
      "          'set': 1,\n",
      "          'thumping': 1,\n",
      "          'beat': 1,\n",
      "          'nso': 1,\n",
      "          'started': 1,\n",
      "          'production': 1,\n",
      "          'year': 1,\n",
      "          'buzz': 1,\n",
      "          'hype': 1,\n",
      "          'resulting': 1,\n",
      "          'anticipation': 1,\n",
      "          'began': 1,\n",
      "          'edgy': 1,\n",
      "          'downanddirty': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'promising': 1,\n",
      "          'firsttimer': 1,\n",
      "          'mark': 1,\n",
      "          'starring': 1,\n",
      "          'hot': 1,\n",
      "          'young': 1,\n",
      "          'talent': 1,\n",
      "          'salma': 1,\n",
      "          'neve': 1,\n",
      "          'newcomer': 1,\n",
      "          'ryan': 1,\n",
      "          'mike': 1,\n",
      "          'dramatic': 1,\n",
      "          'debut': 1,\n",
      "          'nmy': 1,\n",
      "          'easily': 1,\n",
      "          'worm': 1,\n",
      "          'nhype': 1,\n",
      "          'turned': 1,\n",
      "          'damage': 1,\n",
      "          'control': 1,\n",
      "          'word': 1,\n",
      "          'got': 1,\n",
      "          '11thhour': 1,\n",
      "          'wrapped': 1,\n",
      "          'month': 1,\n",
      "          'ago': 1,\n",
      "          'rash': 1,\n",
      "          'studioimposed': 1,\n",
      "          'edits': 1,\n",
      "          'left': 1,\n",
      "          'virtually': 1,\n",
      "          'entire': 1,\n",
      "          'cast': 1,\n",
      "          'crew': 1,\n",
      "          'especially': 1,\n",
      "          'unhappy': 1,\n",
      "          'likely': 1,\n",
      "          'possibility': 1,\n",
      "          'critics': 1,\n",
      "          'nat': 1,\n",
      "          'minute': 1,\n",
      "          'decide': 1,\n",
      "          'hastily': 1,\n",
      "          'scheduled': 1,\n",
      "          'screening': 1,\n",
      "          'myerss': 1,\n",
      "          'name': 1,\n",
      "          'misspelled': 1,\n",
      "          'invitation': 1,\n",
      "          'mention': 1,\n",
      "          'typos': 1,\n",
      "          'press': 1,\n",
      "          'notes': 1,\n",
      "          'media': 1,\n",
      "          'noticeably': 1,\n",
      "          'impressed': 1,\n",
      "          'included': 1,\n",
      "          'nand': 1,\n",
      "          'good': 1,\n",
      "          'reasonsomehow': 1,\n",
      "          'supremely': 1,\n",
      "          'disappointing': 1,\n",
      "          'historically': 1,\n",
      "          'hip': 1,\n",
      "          'hedonism': 1,\n",
      "          'nboring': 1,\n",
      "          'nalthough': 1,\n",
      "          'distanced': 1,\n",
      "          'must': 1,\n",
      "          'shoulder': 1,\n",
      "          'blame': 1,\n",
      "          'lifelessness': 1,\n",
      "          'n_54_': 1,\n",
      "          'focuses': 1,\n",
      "          'part': 1,\n",
      "          'tightknit': 1,\n",
      "          'trio': 1,\n",
      "          'employees': 1,\n",
      "          'coat': 1,\n",
      "          'check': 1,\n",
      "          'girlaspiring': 1,\n",
      "          'diva': 1,\n",
      "          'wasted': 1,\n",
      "          'husband': 1,\n",
      "          'greg': 1,\n",
      "          'breckin': 1,\n",
      "          'meyer': 1,\n",
      "          'prominently': 1,\n",
      "          'freshfromjersey': 1,\n",
      "          'oshea': 1,\n",
      "          'enjoys': 1,\n",
      "          'quick': 1,\n",
      "          'rise': 1,\n",
      "          'head': 1,\n",
      "          'bartender': 1,\n",
      "          'characters': 1,\n",
      "          'generic': 1,\n",
      "          'descriptions': 1,\n",
      "          'nin': 1,\n",
      "          'focusing': 1,\n",
      "          'hired': 1,\n",
      "          'help': 1,\n",
      "          'really': 1,\n",
      "          'missed': 1,\n",
      "          'boat': 1,\n",
      "          'nwith': 1,\n",
      "          'exception': 1,\n",
      "          'flamboyant': 1,\n",
      "          'alwayswoozy': 1,\n",
      "          'rubell': 1,\n",
      "          'wellmodulated': 1,\n",
      "          'meaty': 1,\n",
      "          'stories': 1,\n",
      "          'told': 1,\n",
      "          'workers': 1,\n",
      "          'people': 1,\n",
      "          'went': 1,\n",
      "          'party': 1,\n",
      "          'necessarily': 1,\n",
      "          'vip': 1,\n",
      "          'guests': 1,\n",
      "          'eccentrics': 1,\n",
      "          'managed': 1,\n",
      "          'picked': 1,\n",
      "          'clubs': 1,\n",
      "          'famously': 1,\n",
      "          'hardass': 1,\n",
      "          'doormen': 1,\n",
      "          'among': 1,\n",
      "          'things': 1,\n",
      "          'night': 1,\n",
      "          'rich': 1,\n",
      "          'famous': 1,\n",
      "          'taste': 1,\n",
      "          'ellen': 1,\n",
      "          'dows': 1,\n",
      "          'feisty': 1,\n",
      "          'dottie': 1,\n",
      "          'drugcrazed': 1,\n",
      "          'granny': 1,\n",
      "          'shes': 1,\n",
      "          'peripheral': 1,\n",
      "          'best': 1,\n",
      "          'aside': 1,\n",
      "          'expected': 1,\n",
      "          'overhead': 1,\n",
      "          'shots': 1,\n",
      "          'precious': 1,\n",
      "          'actual': 1,\n",
      "          '_dancing_': 1,\n",
      "          'nwhat': 1,\n",
      "          'filmespecially': 1,\n",
      "          'pinnacle': 1,\n",
      "          'movementwithout': 1,\n",
      "          'dancing': 1,\n",
      "          'neven': 1,\n",
      "          'whit': 1,\n",
      "          'stillmans': 1,\n",
      "          '_the_last_days_of_disco_': 1,\n",
      "          'wasnt': 1,\n",
      "          'concerned': 1,\n",
      "          'witty': 1,\n",
      "          'dialogue': 1,\n",
      "          'group': 1,\n",
      "          'hiptoonlythemselves': 1,\n",
      "          'clubhopping': 1,\n",
      "          'preppies': 1,\n",
      "          'featured': 1,\n",
      "          'least': 1,\n",
      "          'extended': 1,\n",
      "          'scene': 1,\n",
      "          'ndancing': 1,\n",
      "          'thing': 1,\n",
      "          'glazed': 1,\n",
      "          '_54_so': 1,\n",
      "          'entirely': 1,\n",
      "          'christophers': 1,\n",
      "          'fault': 1,\n",
      "          'nfrom': 1,\n",
      "          'ive': 1,\n",
      "          'heard': 1,\n",
      "          'original': 1,\n",
      "          'vision': 1,\n",
      "          'something': 1,\n",
      "          'considerably': 1,\n",
      "          'dark': 1,\n",
      "          'daring': 1,\n",
      "          'starting': 1,\n",
      "          'conceived': 1,\n",
      "          'actually': 1,\n",
      "          'filmed': 1,\n",
      "          'morally': 1,\n",
      "          'ambiguous': 1,\n",
      "          'bisexual': 1,\n",
      "          'efficient': 1,\n",
      "          'springboard': 1,\n",
      "          'cover': 1,\n",
      "          'pansexual': 1,\n",
      "          'pleasure': 1,\n",
      "          'palace': 1,\n",
      "          'aspect': 1,\n",
      "          '54s': 1,\n",
      "          'legend': 1,\n",
      "          'nbut': 1,\n",
      "          'somewhere': 1,\n",
      "          'principal': 1,\n",
      "          'photography': 1,\n",
      "          'final': 1,\n",
      "          'defanged': 1,\n",
      "          'quite': 1,\n",
      "          'literally': 1,\n",
      "          'straightened': 1,\n",
      "          'consequently': 1,\n",
      "          'naside': 1,\n",
      "          'brief': 1,\n",
      "          'glimpse': 1,\n",
      "          'erotic': 1,\n",
      "          'encounters': 1,\n",
      "          'toward': 1,\n",
      "          'beginning': 1,\n",
      "          'shanes': 1,\n",
      "          'fleeting': 1,\n",
      "          'dalliance': 1,\n",
      "          'seductive': 1,\n",
      "          'socialite': 1,\n",
      "          'billie': 1,\n",
      "          'sela': 1,\n",
      "          'ward': 1,\n",
      "          'abbreviated': 1,\n",
      "          'bedhopping': 1,\n",
      "          'montage': 1,\n",
      "          'sexual': 1,\n",
      "          'dimension': 1,\n",
      "          'ignored': 1,\n",
      "          'nshane': 1,\n",
      "          'incarnation': 1,\n",
      "          'sanitized': 1,\n",
      "          'point': 1,\n",
      "          'blandness': 1,\n",
      "          'idealistic': 1,\n",
      "          'dogooder': 1,\n",
      "          'pines': 1,\n",
      "          'frequent': 1,\n",
      "          'guest': 1,\n",
      "          'julie': 1,\n",
      "          'black': 1,\n",
      "          'worldly': 1,\n",
      "          'soap': 1,\n",
      "          'star': 1,\n",
      "          'yes': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'nthis': 1,\n",
      "          'tackedon': 1,\n",
      "          'romance': 1,\n",
      "          'slightly': 1,\n",
      "          'tedious': 1,\n",
      "          'either': 1,\n",
      "          'connection': 1,\n",
      "          'nthey': 1,\n",
      "          'fail': 1,\n",
      "          'counts': 1,\n",
      "          'nultimately': 1,\n",
      "          'three': 1,\n",
      "          'letters': 1,\n",
      "          'fun': 1,\n",
      "          'ntoo': 1,\n",
      "          'boring': 1,\n",
      "          'action': 1,\n",
      "          'took': 1,\n",
      "          'place': 1,\n",
      "          'nanyhow': 1,\n",
      "          'whatever': 1,\n",
      "          'used': 1,\n",
      "          'effectively': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'gets': 1,\n",
      "          'big': 1,\n",
      "          'break': 1,\n",
      "          'perform': 1,\n",
      "          'onstage': 1,\n",
      "          'euphoric': 1,\n",
      "          'height': 1,\n",
      "          'however': 1,\n",
      "          'doesnt': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'reach': 1,\n",
      "          'level': 1,\n",
      "          'short': 1,\n",
      "          'forced': 1,\n",
      "          'sentimentality': 1,\n",
      "          'also': 1,\n",
      "          'mars': 1,\n",
      "          'films': 1,\n",
      "          'conclusion': 1,\n",
      "          'lastminute': 1,\n",
      "          'nstrangely': 1,\n",
      "          'upbeat': 1,\n",
      "          'wistful': 1,\n",
      "          'resolution': 1,\n",
      "          'wholly': 1,\n",
      "          'unconvincing': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'nthere': 1,\n",
      "          'interesting': 1,\n",
      "          'portrait': 1,\n",
      "          'theretwo': 1,\n",
      "          'factbut': 1,\n",
      "          'ntheyre': 1,\n",
      "          'cable': 1,\n",
      "          'tv': 1,\n",
      "          'couple': 1,\n",
      "          'documentaries': 1,\n",
      "          'produced': 1,\n",
      "          'e': 1,\n",
      "          'vh1': 1,\n",
      "          'two': 1,\n",
      "          'fascinating': 1,\n",
      "          'looks': 1,\n",
      "          'sordid': 1,\n",
      "          'goingson': 1,\n",
      "          'show': 1,\n",
      "          'theres': 1,\n",
      "          'great': 1,\n",
      "          'movie': 1,\n",
      "          'nthe': 1,\n",
      "          'problem': 1,\n",
      "          'critical': 1,\n",
      "          'certain': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'run': 1,\n",
      "          'hollywood': 1,\n",
      "          'course': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'kevin': 8,\n",
      "          'nthe': 7,\n",
      "          'lomax': 7,\n",
      "          'milton': 7,\n",
      "          'case': 6,\n",
      "          'movie': 6,\n",
      "          'ann': 5,\n",
      "          'courtroom': 5,\n",
      "          'lawyer': 4,\n",
      "          'offered': 4,\n",
      "          'nhe': 4,\n",
      "          'wife': 4,\n",
      "          'dream': 4,\n",
      "          'nkevin': 4,\n",
      "          'time': 4,\n",
      "          'get': 4,\n",
      "          'devil': 4,\n",
      "          'gets': 3,\n",
      "          'new': 3,\n",
      "          'keanu': 3,\n",
      "          'reeves': 3,\n",
      "          'long': 3,\n",
      "          'firm': 3,\n",
      "          'fact': 3,\n",
      "          'mary': 3,\n",
      "          'man': 3,\n",
      "          'al': 3,\n",
      "          'pacino': 3,\n",
      "          'life': 3,\n",
      "          'problems': 3,\n",
      "          'possible': 3,\n",
      "          'one': 3,\n",
      "          'really': 3,\n",
      "          'happen': 3,\n",
      "          'trying': 3,\n",
      "          'ni': 3,\n",
      "          'performance': 3,\n",
      "          'ending': 3,\n",
      "          'wisdom': 3,\n",
      "          'film': 3,\n",
      "          'could': 3,\n",
      "          'devils': 3,\n",
      "          'advocate': 3,\n",
      "          'hotshot': 2,\n",
      "          'york': 2,\n",
      "          'job': 2,\n",
      "          'jury': 2,\n",
      "          'work': 2,\n",
      "          'well': 2,\n",
      "          'big': 2,\n",
      "          'charlize': 2,\n",
      "          'theron': 2,\n",
      "          'given': 2,\n",
      "          'concerning': 2,\n",
      "          'skill': 2,\n",
      "          'boss': 2,\n",
      "          'john': 2,\n",
      "          'law': 2,\n",
      "          'much': 2,\n",
      "          'kevins': 2,\n",
      "          'home': 2,\n",
      "          'nmary': 2,\n",
      "          'matters': 2,\n",
      "          'spend': 2,\n",
      "          'connie': 2,\n",
      "          'also': 2,\n",
      "          'control': 2,\n",
      "          'judith': 2,\n",
      "          'character': 2,\n",
      "          'plan': 2,\n",
      "          'scenes': 2,\n",
      "          'would': 2,\n",
      "          'never': 2,\n",
      "          'hard': 2,\n",
      "          'actor': 2,\n",
      "          'good': 2,\n",
      "          'interesting': 2,\n",
      "          'nin': 2,\n",
      "          'thing': 2,\n",
      "          'like': 2,\n",
      "          'characters': 2,\n",
      "          'didnt': 2,\n",
      "          'toyed': 2,\n",
      "          'obviously': 1,\n",
      "          'guilty': 1,\n",
      "          'child': 1,\n",
      "          'molester': 1,\n",
      "          'acquitted': 1,\n",
      "          'shortly': 1,\n",
      "          'victory': 1,\n",
      "          'celebration': 1,\n",
      "          'opportunity': 1,\n",
      "          'show': 1,\n",
      "          'prowess': 1,\n",
      "          'city': 1,\n",
      "          'yet': 1,\n",
      "          'asked': 1,\n",
      "          'simply': 1,\n",
      "          'pick': 1,\n",
      "          'accepts': 1,\n",
      "          'selects': 1,\n",
      "          'nmaking': 1,\n",
      "          'decision': 1,\n",
      "          'easy': 1,\n",
      "          'money': 1,\n",
      "          'gorgeous': 1,\n",
      "          'apartment': 1,\n",
      "          'convinces': 1,\n",
      "          'make': 1,\n",
      "          'move': 1,\n",
      "          'first': 1,\n",
      "          'test': 1,\n",
      "          'winless': 1,\n",
      "          'sacrifices': 1,\n",
      "          'animals': 1,\n",
      "          'basement': 1,\n",
      "          'charge': 1,\n",
      "          'health': 1,\n",
      "          'code': 1,\n",
      "          'violations': 1,\n",
      "          'shows': 1,\n",
      "          'earns': 1,\n",
      "          'acquittal': 1,\n",
      "          'nhis': 1,\n",
      "          'partner': 1,\n",
      "          'quite': 1,\n",
      "          'impressed': 1,\n",
      "          'takes': 1,\n",
      "          'wing': 1,\n",
      "          'explaining': 1,\n",
      "          'many': 1,\n",
      "          'philosophies': 1,\n",
      "          'women': 1,\n",
      "          'sex': 1,\n",
      "          'angles': 1,\n",
      "          'promise': 1,\n",
      "          'blissful': 1,\n",
      "          'wealthy': 1,\n",
      "          'nkevins': 1,\n",
      "          'next': 1,\n",
      "          'chagrin': 1,\n",
      "          'colleagues': 1,\n",
      "          'defending': 1,\n",
      "          'triple': 1,\n",
      "          'murder': 1,\n",
      "          'suspect': 1,\n",
      "          'history': 1,\n",
      "          'nalthough': 1,\n",
      "          'career': 1,\n",
      "          'taking': 1,\n",
      "          'starting': 1,\n",
      "          'numerous': 1,\n",
      "          'nshe': 1,\n",
      "          'experiencing': 1,\n",
      "          'severe': 1,\n",
      "          'depression': 1,\n",
      "          'hours': 1,\n",
      "          'horrible': 1,\n",
      "          'dreams': 1,\n",
      "          'hallucinations': 1,\n",
      "          'people': 1,\n",
      "          'turning': 1,\n",
      "          'ghouls': 1,\n",
      "          'faces': 1,\n",
      "          'becoming': 1,\n",
      "          'horribly': 1,\n",
      "          'disfigured': 1,\n",
      "          'help': 1,\n",
      "          'dismissing': 1,\n",
      "          'explains': 1,\n",
      "          'needs': 1,\n",
      "          'focus': 1,\n",
      "          'attention': 1,\n",
      "          'nnot': 1,\n",
      "          'helping': 1,\n",
      "          'ideas': 1,\n",
      "          'affair': 1,\n",
      "          'sexy': 1,\n",
      "          'nielson': 1,\n",
      "          'working': 1,\n",
      "          'falls': 1,\n",
      "          'deeper': 1,\n",
      "          'madness': 1,\n",
      "          'spends': 1,\n",
      "          'away': 1,\n",
      "          'eventually': 1,\n",
      "          'looses': 1,\n",
      "          'institutionalize': 1,\n",
      "          'disturbing': 1,\n",
      "          'news': 1,\n",
      "          'mother': 1,\n",
      "          'ivey': 1,\n",
      "          'mystery': 1,\n",
      "          'identity': 1,\n",
      "          'father': 1,\n",
      "          'starts': 1,\n",
      "          'lose': 1,\n",
      "          'learns': 1,\n",
      "          'caused': 1,\n",
      "          'nthat': 1,\n",
      "          'mr': 1,\n",
      "          'truly': 1,\n",
      "          'evil': 1,\n",
      "          'may': 1,\n",
      "          'must': 1,\n",
      "          'somehow': 1,\n",
      "          'confront': 1,\n",
      "          'thwart': 1,\n",
      "          'whatever': 1,\n",
      "          'diabolical': 1,\n",
      "          'store': 1,\n",
      "          'nbut': 1,\n",
      "          'defeat': 1,\n",
      "          'nwhy': 1,\n",
      "          'movies': 1,\n",
      "          'absurd': 1,\n",
      "          'ndo': 1,\n",
      "          'filmmakers': 1,\n",
      "          'believe': 1,\n",
      "          'normal': 1,\n",
      "          'drama': 1,\n",
      "          'doesnt': 1,\n",
      "          'fit': 1,\n",
      "          'bill': 1,\n",
      "          'juice': 1,\n",
      "          'real': 1,\n",
      "          'wouldnt': 1,\n",
      "          'bad': 1,\n",
      "          'werent': 1,\n",
      "          'pull': 1,\n",
      "          'give': 1,\n",
      "          'credit': 1,\n",
      "          'throughout': 1,\n",
      "          'saw': 1,\n",
      "          'play': 1,\n",
      "          'coming': 1,\n",
      "          'short': 1,\n",
      "          'ncharlize': 1,\n",
      "          'defines': 1,\n",
      "          'term': 1,\n",
      "          'overthetop': 1,\n",
      "          'disappointment': 1,\n",
      "          'contrast': 1,\n",
      "          '2': 1,\n",
      "          'days': 1,\n",
      "          'valley': 1,\n",
      "          'kept': 1,\n",
      "          'asking': 1,\n",
      "          'heck': 1,\n",
      "          'mess': 1,\n",
      "          'nmaybe': 1,\n",
      "          'felt': 1,\n",
      "          'playing': 1,\n",
      "          'tell': 1,\n",
      "          'fun': 1,\n",
      "          'save': 1,\n",
      "          'poor': 1,\n",
      "          'performances': 1,\n",
      "          'lackluster': 1,\n",
      "          'script': 1,\n",
      "          'surround': 1,\n",
      "          'nits': 1,\n",
      "          'pretty': 1,\n",
      "          'standard': 1,\n",
      "          'stuff': 1,\n",
      "          'including': 1,\n",
      "          'appears': 1,\n",
      "          'competent': 1,\n",
      "          'person': 1,\n",
      "          'planet': 1,\n",
      "          'anything': 1,\n",
      "          'right': 1,\n",
      "          'nplease': 1,\n",
      "          'read': 1,\n",
      "          'want': 1,\n",
      "          'spoiled': 1,\n",
      "          'something': 1,\n",
      "          'chest': 1,\n",
      "          '1986': 1,\n",
      "          'remember': 1,\n",
      "          'watching': 1,\n",
      "          'called': 1,\n",
      "          'emilio': 1,\n",
      "          'estevez': 1,\n",
      "          'demi': 1,\n",
      "          'moore': 1,\n",
      "          'worst': 1,\n",
      "          'nwhat': 1,\n",
      "          'call': 1,\n",
      "          'guess': 1,\n",
      "          'scenario': 1,\n",
      "          'two': 1,\n",
      "          'lead': 1,\n",
      "          'killed': 1,\n",
      "          'end': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wake': 1,\n",
      "          'apparent': 1,\n",
      "          'say': 1,\n",
      "          'gosh': 1,\n",
      "          'im': 1,\n",
      "          'glad': 1,\n",
      "          'considered': 1,\n",
      "          'inexcusable': 1,\n",
      "          'way': 1,\n",
      "          'audience': 1,\n",
      "          'nwell': 1,\n",
      "          'happens': 1,\n",
      "          'although': 1,\n",
      "          'arguments': 1,\n",
      "          'made': 1,\n",
      "          'surrounding': 1,\n",
      "          'whether': 1,\n",
      "          'actually': 1,\n",
      "          'perhaps': 1,\n",
      "          'went': 1,\n",
      "          'back': 1,\n",
      "          'try': 1,\n",
      "          'different': 1,\n",
      "          'route': 1,\n",
      "          'since': 1,\n",
      "          'failed': 1,\n",
      "          'point': 1,\n",
      "          'last': 1,\n",
      "          '90': 1,\n",
      "          'know': 1,\n",
      "          'stretch': 1,\n",
      "          'nothing': 1,\n",
      "          'happened': 1,\n",
      "          'annoyed': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'almost': 1,\n",
      "          'forgiven': 1,\n",
      "          'story': 1,\n",
      "          'precedes': 1,\n",
      "          'least': 1,\n",
      "          'nas': 1,\n",
      "          'recall': 1,\n",
      "          'decent': 1,\n",
      "          'n': 1,\n",
      "          'ndirected': 1,\n",
      "          'taylor': 1,\n",
      "          'hackford': 1,\n",
      "          'nreeves': 1,\n",
      "          'ntheron': 1,\n",
      "          'mrs': 1,\n",
      "          'nivey': 1,\n",
      "          'eddie': 1,\n",
      "          'barzoon': 1,\n",
      "          'jeffrey': 1,\n",
      "          'jones': 1,\n",
      "          'christabella': 1,\n",
      "          'nnielson': 1,\n",
      "          'nwritten': 1,\n",
      "          'randy': 1,\n",
      "          'turgeon': 1,\n",
      "          'march': 1,\n",
      "          '18': 1,\n",
      "          '1998': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'angels': 9,\n",
      "          'nthe': 6,\n",
      "          'matrix': 5,\n",
      "          'one': 4,\n",
      "          'even': 4,\n",
      "          'charlies': 3,\n",
      "          'movie': 3,\n",
      "          'tv': 3,\n",
      "          'ncharlies': 3,\n",
      "          'film': 3,\n",
      "          'three': 3,\n",
      "          'cleavagebusting': 3,\n",
      "          'njust': 2,\n",
      "          'action': 2,\n",
      "          'dumb': 2,\n",
      "          'liu': 2,\n",
      "          'mysterious': 2,\n",
      "          'millionaire': 2,\n",
      "          'around': 2,\n",
      "          'computer': 2,\n",
      "          'great': 2,\n",
      "          'sam': 2,\n",
      "          'rockwell': 2,\n",
      "          'rival': 2,\n",
      "          'like': 2,\n",
      "          'many': 2,\n",
      "          'fight': 2,\n",
      "          'sequences': 2,\n",
      "          'strange': 2,\n",
      "          'revenge': 2,\n",
      "          'jackie': 2,\n",
      "          'believable': 2,\n",
      "          'movies': 2,\n",
      "          'night': 2,\n",
      "          'scenes': 2,\n",
      "          'time': 2,\n",
      "          'spy': 1,\n",
      "          'game': 1,\n",
      "          'nyou': 1,\n",
      "          'thank': 1,\n",
      "          'nwhen': 1,\n",
      "          'banality': 1,\n",
      "          'pandering': 1,\n",
      "          'become': 1,\n",
      "          'okay': 1,\n",
      "          'steal': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'kitschy': 1,\n",
      "          'show': 1,\n",
      "          'mid1970s': 1,\n",
      "          'thats': 1,\n",
      "          'worst': 1,\n",
      "          'examples': 1,\n",
      "          'homogeneity': 1,\n",
      "          'shameless': 1,\n",
      "          'duplicity': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'ages': 1,\n",
      "          'plain': 1,\n",
      "          'nas': 1,\n",
      "          'know': 1,\n",
      "          'hottest': 1,\n",
      "          'females': 1,\n",
      "          'planet': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'cameron': 1,\n",
      "          'diaz': 1,\n",
      "          'lucy': 1,\n",
      "          'superagents': 1,\n",
      "          'working': 1,\n",
      "          'named': 1,\n",
      "          'charlie': 1,\n",
      "          'nthey': 1,\n",
      "          'drive': 1,\n",
      "          'fast': 1,\n",
      "          'cars': 1,\n",
      "          'look': 1,\n",
      "          'ohsofabulous': 1,\n",
      "          'morning': 1,\n",
      "          'dont': 1,\n",
      "          'seem': 1,\n",
      "          'get': 1,\n",
      "          'scratch': 1,\n",
      "          'fighting': 1,\n",
      "          'armed': 1,\n",
      "          'men': 1,\n",
      "          'buildings': 1,\n",
      "          'explode': 1,\n",
      "          'ten': 1,\n",
      "          'feet': 1,\n",
      "          'front': 1,\n",
      "          'flying': 1,\n",
      "          'air': 1,\n",
      "          'slowmotion': 1,\n",
      "          'nand': 1,\n",
      "          'entourage': 1,\n",
      "          'spends': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'romping': 1,\n",
      "          'wetsuits': 1,\n",
      "          'waitress': 1,\n",
      "          'uniforms': 1,\n",
      "          'wet': 1,\n",
      "          'tshirts': 1,\n",
      "          'scarcely': 1,\n",
      "          'succeed': 1,\n",
      "          'resembling': 1,\n",
      "          'much': 1,\n",
      "          'group': 1,\n",
      "          'annoying': 1,\n",
      "          'drunk': 1,\n",
      "          'sorority': 1,\n",
      "          'girls': 1,\n",
      "          'kind': 1,\n",
      "          'hit': 1,\n",
      "          'everybody': 1,\n",
      "          'party': 1,\n",
      "          'actual': 1,\n",
      "          'plot': 1,\n",
      "          'revolves': 1,\n",
      "          'ridiculous': 1,\n",
      "          'story': 1,\n",
      "          'engineer': 1,\n",
      "          'gets': 1,\n",
      "          'kidnapped': 1,\n",
      "          'company': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'wants': 1,\n",
      "          'control': 1,\n",
      "          'new': 1,\n",
      "          'personal': 1,\n",
      "          'identification': 1,\n",
      "          'system': 1,\n",
      "          'involves': 1,\n",
      "          'latterday': 1,\n",
      "          'buzzwords': 1,\n",
      "          'gps': 1,\n",
      "          'cellular': 1,\n",
      "          'tracking': 1,\n",
      "          'mainframe': 1,\n",
      "          'amazing': 1,\n",
      "          'crispin': 1,\n",
      "          'glover': 1,\n",
      "          'lends': 1,\n",
      "          'acting': 1,\n",
      "          'chops': 1,\n",
      "          'crazed': 1,\n",
      "          'henchmen': 1,\n",
      "          'involved': 1,\n",
      "          'nasty': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'battling': 1,\n",
      "          'roundrobin': 1,\n",
      "          'ripoff': 1,\n",
      "          'harboring': 1,\n",
      "          'attraction': 1,\n",
      "          'slicedoff': 1,\n",
      "          'locks': 1,\n",
      "          'hair': 1,\n",
      "          'coup': 1,\n",
      "          'de': 1,\n",
      "          'grace': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'bosley': 1,\n",
      "          'serving': 1,\n",
      "          'manservant': 1,\n",
      "          'point': 1,\n",
      "          'pimp': 1,\n",
      "          'rest': 1,\n",
      "          'comprises': 1,\n",
      "          'arc': 1,\n",
      "          'enough': 1,\n",
      "          'costume': 1,\n",
      "          'changes': 1,\n",
      "          'fill': 1,\n",
      "          'productions': 1,\n",
      "          'les': 1,\n",
      "          'miserables': 1,\n",
      "          'carboncopy': 1,\n",
      "          'would': 1,\n",
      "          'lend': 1,\n",
      "          'credible': 1,\n",
      "          'evidence': 1,\n",
      "          'chan': 1,\n",
      "          'wachowski': 1,\n",
      "          'brothers': 1,\n",
      "          'lawsuit': 1,\n",
      "          'intellectual': 1,\n",
      "          'property': 1,\n",
      "          'theft': 1,\n",
      "          'transformation': 1,\n",
      "          'mickey': 1,\n",
      "          'rourkes': 1,\n",
      "          'longlost': 1,\n",
      "          'brother': 1,\n",
      "          'starts': 1,\n",
      "          'bang': 1,\n",
      "          'ends': 1,\n",
      "          'soggy': 1,\n",
      "          'burrito': 1,\n",
      "          'left': 1,\n",
      "          'overnight': 1,\n",
      "          'nnothing': 1,\n",
      "          'difficult': 1,\n",
      "          'plausible': 1,\n",
      "          'actions': 1,\n",
      "          'nit': 1,\n",
      "          'feels': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          '2': 1,\n",
      "          'cleopatra': 1,\n",
      "          'jones': 1,\n",
      "          'casino': 1,\n",
      "          'gold': 1,\n",
      "          'rolled': 1,\n",
      "          'ndiaz': 1,\n",
      "          'knucklehead': 1,\n",
      "          'nbarrymore': 1,\n",
      "          'dangerous': 1,\n",
      "          'mean': 1,\n",
      "          'tough': 1,\n",
      "          'katie': 1,\n",
      "          'holmes': 1,\n",
      "          'role': 1,\n",
      "          'nliu': 1,\n",
      "          'nlucy': 1,\n",
      "          'looking': 1,\n",
      "          'good': 1,\n",
      "          'skintight': 1,\n",
      "          'black': 1,\n",
      "          'leather': 1,\n",
      "          'suit': 1,\n",
      "          'list': 1,\n",
      "          'directly': 1,\n",
      "          'lifted': 1,\n",
      "          'equally': 1,\n",
      "          'astonishing': 1,\n",
      "          'writers': 1,\n",
      "          'apparently': 1,\n",
      "          'ran': 1,\n",
      "          'copier': 1,\n",
      "          'stealing': 1,\n",
      "          'armageddon': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'ii': 1,\n",
      "          'chans': 1,\n",
      "          'escape': 1,\n",
      "          'saturday': 1,\n",
      "          'fever': 1,\n",
      "          'nerds': 1,\n",
      "          'payback': 1,\n",
      "          'darkman': 1,\n",
      "          'dr': 1,\n",
      "          'mentioned': 1,\n",
      "          'tvs': 1,\n",
      "          'friends': 1,\n",
      "          'nits': 1,\n",
      "          'shame': 1,\n",
      "          'screenwriters': 1,\n",
      "          'john': 1,\n",
      "          'august': 1,\n",
      "          'helm': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'favorite': 1,\n",
      "          'go': 1,\n",
      "          'nthen': 1,\n",
      "          'expect': 1,\n",
      "          'director': 1,\n",
      "          'known': 1,\n",
      "          'solely': 1,\n",
      "          'mcg': 1,\n",
      "          'nthere': 1,\n",
      "          'camp': 1,\n",
      "          'value': 1,\n",
      "          'interesting': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'invigorating': 1,\n",
      "          'reason': 1,\n",
      "          'waste': 1,\n",
      "          'except': 1,\n",
      "          'ogle': 1,\n",
      "          'hot': 1,\n",
      "          'chicks': 1,\n",
      "          'enjoy': 1,\n",
      "          'performances': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'nnote': 1,\n",
      "          'hollywood': 1,\n",
      "          'next': 1,\n",
      "          'lets': 1,\n",
      "          'leave': 1,\n",
      "          'shows': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'boy': 7,\n",
      "          'francis': 5,\n",
      "          'film': 4,\n",
      "          'butcher': 4,\n",
      "          'little': 4,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'always': 3,\n",
      "          'director': 3,\n",
      "          'well': 3,\n",
      "          'could': 3,\n",
      "          'rather': 3,\n",
      "          'jordan': 2,\n",
      "          'work': 2,\n",
      "          'nhis': 2,\n",
      "          'latest': 2,\n",
      "          'owens': 2,\n",
      "          'learn': 2,\n",
      "          'mother': 2,\n",
      "          'nfrancis': 2,\n",
      "          'picture': 2,\n",
      "          'nothing': 2,\n",
      "          'every': 2,\n",
      "          'scene': 2,\n",
      "          'away': 2,\n",
      "          'actually': 2,\n",
      "          'young': 2,\n",
      "          'gives': 2,\n",
      "          'also': 2,\n",
      "          'character': 2,\n",
      "          'talks': 2,\n",
      "          'nhe': 2,\n",
      "          'story': 2,\n",
      "          'fan': 1,\n",
      "          'neil': 1,\n",
      "          'early': 1,\n",
      "          '1984s': 1,\n",
      "          'company': 1,\n",
      "          'wolves': 1,\n",
      "          '1992s': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          '1994s': 1,\n",
      "          'interview': 1,\n",
      "          'vampire': 1,\n",
      "          'return': 1,\n",
      "          'roots': 1,\n",
      "          'ireland': 1,\n",
      "          'unfortunately': 1,\n",
      "          'successful': 1,\n",
      "          'homecoming': 1,\n",
      "          'ntold': 1,\n",
      "          'eyes': 1,\n",
      "          '12yearold': 1,\n",
      "          'irish': 1,\n",
      "          'newcomer': 1,\n",
      "          'eomann': 1,\n",
      "          'peculiar': 1,\n",
      "          'follows': 1,\n",
      "          'decidedly': 1,\n",
      "          'unstable': 1,\n",
      "          'life': 1,\n",
      "          'father': 1,\n",
      "          'stephen': 1,\n",
      "          'rea': 1,\n",
      "          'indifferent': 1,\n",
      "          'alcoholic': 1,\n",
      "          'fiona': 1,\n",
      "          'shaw': 1,\n",
      "          'mentally': 1,\n",
      "          'ill': 1,\n",
      "          'hospitals': 1,\n",
      "          'delights': 1,\n",
      "          'terrorizing': 1,\n",
      "          'friends': 1,\n",
      "          'forbidden': 1,\n",
      "          'see': 1,\n",
      "          'anymore': 1,\n",
      "          'type': 1,\n",
      "          'lot': 1,\n",
      "          'say': 1,\n",
      "          'mostly': 1,\n",
      "          'fluctuates': 1,\n",
      "          'sarcasm': 1,\n",
      "          'frightening': 1,\n",
      "          'honesty': 1,\n",
      "          'quickly': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'may': 1,\n",
      "          'psychotic': 1,\n",
      "          'even': 1,\n",
      "          'capable': 1,\n",
      "          'brutal': 1,\n",
      "          'murder': 1,\n",
      "          'premise': 1,\n",
      "          'turned': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'disturbing': 1,\n",
      "          'motion': 1,\n",
      "          'somehow': 1,\n",
      "          'works': 1,\n",
      "          'almost': 1,\n",
      "          'distancing': 1,\n",
      "          'suspect': 1,\n",
      "          'supposed': 1,\n",
      "          'sympathize': 1,\n",
      "          'nthis': 1,\n",
      "          'definately': 1,\n",
      "          'fault': 1,\n",
      "          'however': 1,\n",
      "          'brilliantly': 1,\n",
      "          'accurate': 1,\n",
      "          'performance': 1,\n",
      "          'able': 1,\n",
      "          'seem': 1,\n",
      "          'menacing': 1,\n",
      "          'fact': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'close': 1,\n",
      "          'sloppy': 1,\n",
      "          'screenplay': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'help': 1,\n",
      "          'though': 1,\n",
      "          'nrea': 1,\n",
      "          'wasted': 1,\n",
      "          'practically': 1,\n",
      "          'scenes': 1,\n",
      "          'son': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'matter': 1,\n",
      "          'usually': 1,\n",
      "          'seems': 1,\n",
      "          'sitting': 1,\n",
      "          'watching': 1,\n",
      "          'television': 1,\n",
      "          'throughout': 1,\n",
      "          'nshaw': 1,\n",
      "          'bit': 1,\n",
      "          'since': 1,\n",
      "          'touching': 1,\n",
      "          'time': 1,\n",
      "          'despair': 1,\n",
      "          'beginning': 1,\n",
      "          'know': 1,\n",
      "          'nand': 1,\n",
      "          'singer': 1,\n",
      "          'sinead': 1,\n",
      "          'oconnor': 1,\n",
      "          'appears': 1,\n",
      "          'effectively': 1,\n",
      "          'virgin': 1,\n",
      "          'mary': 1,\n",
      "          'occasionally': 1,\n",
      "          'advice': 1,\n",
      "          'pacing': 1,\n",
      "          'nalthough': 1,\n",
      "          'dynamite': 1,\n",
      "          'moves': 1,\n",
      "          'deadeningly': 1,\n",
      "          'slow': 1,\n",
      "          'rate': 1,\n",
      "          'found': 1,\n",
      "          'mind': 1,\n",
      "          'wandering': 1,\n",
      "          'nit': 1,\n",
      "          'episodic': 1,\n",
      "          'developments': 1,\n",
      "          'fly': 1,\n",
      "          'satisfying': 1,\n",
      "          'payoffs': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'sent': 1,\n",
      "          'juvenile': 1,\n",
      "          'prison': 1,\n",
      "          'odd': 1,\n",
      "          'possibly': 1,\n",
      "          'sexual': 1,\n",
      "          'relationship': 1,\n",
      "          'begins': 1,\n",
      "          'develop': 1,\n",
      "          'priest': 1,\n",
      "          'comes': 1,\n",
      "          'nid': 1,\n",
      "          'think': 1,\n",
      "          'brief': 1,\n",
      "          'diversion': 1,\n",
      "          'total': 1,\n",
      "          'misfire': 1,\n",
      "          'already': 1,\n",
      "          'proven': 1,\n",
      "          'strong': 1,\n",
      "          'lucked': 1,\n",
      "          'nwhat': 1,\n",
      "          'courageous': 1,\n",
      "          'unsettling': 1,\n",
      "          'study': 1,\n",
      "          'emotionally': 1,\n",
      "          'disturbed': 1,\n",
      "          'manages': 1,\n",
      "          'ineffective': 1,\n",
      "          'uninvolivng': 1,\n",
      "          'bore': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'like': 4,\n",
      "          'nwith': 3,\n",
      "          'big': 3,\n",
      "          'much': 3,\n",
      "          'nthe': 3,\n",
      "          'men': 3,\n",
      "          'fog': 3,\n",
      "          'action': 3,\n",
      "          'know': 2,\n",
      "          'less': 2,\n",
      "          'films': 2,\n",
      "          '13th': 2,\n",
      "          'warrior': 2,\n",
      "          'ahmed': 2,\n",
      "          'nafter': 2,\n",
      "          'forced': 2,\n",
      "          'nso': 2,\n",
      "          'start': 2,\n",
      "          'takes': 2,\n",
      "          'place': 2,\n",
      "          'basically': 2,\n",
      "          'script': 2,\n",
      "          'see': 2,\n",
      "          'camera': 2,\n",
      "          'characters': 2,\n",
      "          'mctiernan': 2,\n",
      "          'money': 2,\n",
      "          'summer': 1,\n",
      "          'memorable': 1,\n",
      "          'total': 1,\n",
      "          '4': 1,\n",
      "          'decent': 1,\n",
      "          'surprise': 1,\n",
      "          'budget': 1,\n",
      "          'failures': 1,\n",
      "          'keep': 1,\n",
      "          'appearing': 1,\n",
      "          'said': 1,\n",
      "          'pretty': 1,\n",
      "          'predict': 1,\n",
      "          'opinion': 1,\n",
      "          'based': 1,\n",
      "          'michael': 1,\n",
      "          'crichton': 1,\n",
      "          'eaters': 1,\n",
      "          'dead': 1,\n",
      "          'ibn': 1,\n",
      "          'fahdlan': 1,\n",
      "          'banished': 1,\n",
      "          'country': 1,\n",
      "          'looking': 1,\n",
      "          'wife': 1,\n",
      "          'king': 1,\n",
      "          'tarveling': 1,\n",
      "          'many': 1,\n",
      "          'months': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'gang': 1,\n",
      "          'norsemen': 1,\n",
      "          'pick': 1,\n",
      "          '13': 1,\n",
      "          'protect': 1,\n",
      "          'town': 1,\n",
      "          'mythical': 1,\n",
      "          'monsters': 1,\n",
      "          'travel': 1,\n",
      "          'picking': 1,\n",
      "          'left': 1,\n",
      "          'without': 1,\n",
      "          '1': 1,\n",
      "          'thus': 1,\n",
      "          'choosen': 1,\n",
      "          'far': 1,\n",
      "          'sounds': 1,\n",
      "          'interesting': 1,\n",
      "          'right': 1,\n",
      "          'nnot': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'run': 1,\n",
      "          'around': 1,\n",
      "          'killing': 1,\n",
      "          'nthat': 1,\n",
      "          'alone': 1,\n",
      "          'shows': 1,\n",
      "          'needed': 1,\n",
      "          'story': 1,\n",
      "          'introduced': 1,\n",
      "          'rest': 1,\n",
      "          'developing': 1,\n",
      "          'nobviously': 1,\n",
      "          'thats': 1,\n",
      "          'case': 1,\n",
      "          'neven': 1,\n",
      "          'going': 1,\n",
      "          'expecting': 1,\n",
      "          'packed': 1,\n",
      "          'adventure': 1,\n",
      "          'disappointed': 1,\n",
      "          'nsince': 1,\n",
      "          'constantly': 1,\n",
      "          'hard': 1,\n",
      "          'scene': 1,\n",
      "          'clearly': 1,\n",
      "          'due': 1,\n",
      "          'circumstances': 1,\n",
      "          'poor': 1,\n",
      "          'work': 1,\n",
      "          'ncant': 1,\n",
      "          'sit': 1,\n",
      "          'still': 1,\n",
      "          'nid': 1,\n",
      "          'actually': 1,\n",
      "          'watch': 1,\n",
      "          'focus': 1,\n",
      "          'failed': 1,\n",
      "          'deliver': 1,\n",
      "          'well': 1,\n",
      "          'moves': 1,\n",
      "          'point': 1,\n",
      "          'care': 1,\n",
      "          'anything': 1,\n",
      "          'popcorn': 1,\n",
      "          'youre': 1,\n",
      "          'eating': 1,\n",
      "          'corny': 1,\n",
      "          'dialogue': 1,\n",
      "          'laugh': 1,\n",
      "          'odd': 1,\n",
      "          'reason': 1,\n",
      "          'goes': 1,\n",
      "          'nowhere': 1,\n",
      "          'dull': 1,\n",
      "          'sequences': 1,\n",
      "          'predictable': 1,\n",
      "          'ending': 1,\n",
      "          'worst': 1,\n",
      "          'weak': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'except': 1,\n",
      "          'maybe': 1,\n",
      "          'set': 1,\n",
      "          'designs': 1,\n",
      "          'nthats': 1,\n",
      "          'thing': 1,\n",
      "          'honestly': 1,\n",
      "          'caught': 1,\n",
      "          'interest': 1,\n",
      "          'nwhen': 1,\n",
      "          'heard': 1,\n",
      "          'john': 1,\n",
      "          'director': 1,\n",
      "          'wanted': 1,\n",
      "          'name': 1,\n",
      "          'kept': 1,\n",
      "          'project': 1,\n",
      "          'made': 1,\n",
      "          'wonder': 1,\n",
      "          'nwell': 1,\n",
      "          'ncrichtons': 1,\n",
      "          'greed': 1,\n",
      "          'edit': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'led': 1,\n",
      "          'arguement': 1,\n",
      "          'nwhats': 1,\n",
      "          'argue': 1,\n",
      "          'anyway': 1,\n",
      "          'couldnt': 1,\n",
      "          'saved': 1,\n",
      "          'matter': 1,\n",
      "          'spent': 1,\n",
      "          'casted': 1,\n",
      "          'nseeing': 1,\n",
      "          'haunting': 1,\n",
      "          'daddy': 1,\n",
      "          'making': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprised': 1,\n",
      "          'become': 1,\n",
      "          'hit': 1,\n",
      "          'nplease': 1,\n",
      "          'favor': 1,\n",
      "          'save': 1,\n",
      "          'costs': 1,\n",
      "          'else': 1,\n",
      "          'lost': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'bad': 7,\n",
      "          'supernova': 7,\n",
      "          'troy': 7,\n",
      "          'movie': 6,\n",
      "          'like': 6,\n",
      "          'nthe': 6,\n",
      "          'movies': 5,\n",
      "          'seeing': 5,\n",
      "          'thats': 5,\n",
      "          'something': 5,\n",
      "          'one': 4,\n",
      "          'films': 4,\n",
      "          'say': 4,\n",
      "          'dont': 4,\n",
      "          'see': 4,\n",
      "          'every': 4,\n",
      "          'get': 4,\n",
      "          'nmaybe': 4,\n",
      "          'yerzy': 4,\n",
      "          'computer': 4,\n",
      "          'minutes': 4,\n",
      "          'seen': 4,\n",
      "          'right': 4,\n",
      "          'credits': 4,\n",
      "          'might': 3,\n",
      "          'im': 3,\n",
      "          'nbut': 3,\n",
      "          'know': 3,\n",
      "          'going': 3,\n",
      "          'want': 3,\n",
      "          'nso': 3,\n",
      "          'think': 3,\n",
      "          'ever': 3,\n",
      "          'find': 3,\n",
      "          'medical': 3,\n",
      "          'crew': 3,\n",
      "          'spader': 3,\n",
      "          'kaela': 3,\n",
      "          'danika': 3,\n",
      "          'tunney': 3,\n",
      "          'relationship': 3,\n",
      "          'make': 3,\n",
      "          'expect': 3,\n",
      "          'nthen': 3,\n",
      "          'starts': 3,\n",
      "          'nothing': 3,\n",
      "          'plot': 3,\n",
      "          'may': 3,\n",
      "          'rest': 3,\n",
      "          'characters': 3,\n",
      "          'end': 3,\n",
      "          'point': 3,\n",
      "          'less': 3,\n",
      "          'review': 2,\n",
      "          'good': 2,\n",
      "          'nif': 2,\n",
      "          'could': 2,\n",
      "          'whatever': 2,\n",
      "          'tell': 2,\n",
      "          'youre': 2,\n",
      "          'told': 2,\n",
      "          'wasnt': 2,\n",
      "          'thought': 2,\n",
      "          'actors': 2,\n",
      "          'cut': 2,\n",
      "          'name': 2,\n",
      "          'removed': 2,\n",
      "          'didnt': 2,\n",
      "          'place': 2,\n",
      "          'space': 2,\n",
      "          'captain': 2,\n",
      "          'robert': 2,\n",
      "          'forster': 2,\n",
      "          'second': 2,\n",
      "          'officer': 2,\n",
      "          'nick': 2,\n",
      "          'james': 2,\n",
      "          'phillips': 2,\n",
      "          'benj': 2,\n",
      "          'apparently': 2,\n",
      "          'love': 2,\n",
      "          'female': 2,\n",
      "          'wont': 2,\n",
      "          'distress': 2,\n",
      "          'sent': 2,\n",
      "          'man': 2,\n",
      "          'peter': 2,\n",
      "          'facinelli': 2,\n",
      "          'brought': 2,\n",
      "          'board': 2,\n",
      "          'nhe': 2,\n",
      "          'making': 2,\n",
      "          'really': 2,\n",
      "          'stuff': 2,\n",
      "          'nhave': 2,\n",
      "          'villain': 2,\n",
      "          'script': 2,\n",
      "          'three': 2,\n",
      "          'lava': 2,\n",
      "          'lamp': 2,\n",
      "          'title': 2,\n",
      "          'anything': 2,\n",
      "          'nas': 2,\n",
      "          'isnt': 2,\n",
      "          'little': 2,\n",
      "          'sense': 2,\n",
      "          'sex': 2,\n",
      "          'unusually': 2,\n",
      "          'scene': 2,\n",
      "          '10': 2,\n",
      "          'nbassett': 2,\n",
      "          'theyre': 2,\n",
      "          'character': 2,\n",
      "          'obvious': 2,\n",
      "          'much': 2,\n",
      "          'opening': 2,\n",
      "          'middle': 2,\n",
      "          'b': 2,\n",
      "          'thing': 2,\n",
      "          'nnot': 2,\n",
      "          'cast': 2,\n",
      "          'lot': 2,\n",
      "          'looking': 2,\n",
      "          'probably': 2,\n",
      "          'arrogant': 1,\n",
      "          'critics': 1,\n",
      "          'thinks': 1,\n",
      "          'great': 1,\n",
      "          'impact': 1,\n",
      "          'success': 1,\n",
      "          'failure': 1,\n",
      "          'certain': 1,\n",
      "          'look': 1,\n",
      "          'particularly': 1,\n",
      "          'service': 1,\n",
      "          'readers': 1,\n",
      "          'warning': 1,\n",
      "          'true': 1,\n",
      "          'put': 1,\n",
      "          'banner': 1,\n",
      "          'top': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'site': 1,\n",
      "          'reads': 1,\n",
      "          'shay': 1,\n",
      "          'casey': 1,\n",
      "          'bunkyoure': 1,\n",
      "          'matter': 1,\n",
      "          'truth': 1,\n",
      "          'nasty': 1,\n",
      "          'masochistic': 1,\n",
      "          'urge': 1,\n",
      "          'nyou': 1,\n",
      "          'feeling': 1,\n",
      "          'sick': 1,\n",
      "          'damn': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'contenders': 1,\n",
      "          'ball': 1,\n",
      "          'trashing': 1,\n",
      "          'mercilessly': 1,\n",
      "          'nsometimes': 1,\n",
      "          'anyone': 1,\n",
      "          'goes': 1,\n",
      "          'pauly': 1,\n",
      "          'shore': 1,\n",
      "          'nadmit': 1,\n",
      "          'sometimes': 1,\n",
      "          'saw': 1,\n",
      "          'ntruth': 1,\n",
      "          'quite': 1,\n",
      "          'felt': 1,\n",
      "          'sorry': 1,\n",
      "          'maybe': 1,\n",
      "          'decent': 1,\n",
      "          'studio': 1,\n",
      "          'hadnt': 1,\n",
      "          'started': 1,\n",
      "          'tinkering': 1,\n",
      "          'directors': 1,\n",
      "          'walter': 1,\n",
      "          'hill': 1,\n",
      "          'final': 1,\n",
      "          'causing': 1,\n",
      "          'becoming': 1,\n",
      "          'softy': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'advance': 1,\n",
      "          'buzz': 1,\n",
      "          'would': 1,\n",
      "          'believe': 1,\n",
      "          'still': 1,\n",
      "          'takes': 1,\n",
      "          'aboard': 1,\n",
      "          'vessel': 1,\n",
      "          'nightingale': 1,\n",
      "          'includes': 1,\n",
      "          'j': 1,\n",
      "          'nmarley': 1,\n",
      "          'new': 1,\n",
      "          'vanzant': 1,\n",
      "          'head': 1,\n",
      "          'evers': 1,\n",
      "          'angela': 1,\n",
      "          'bassett': 1,\n",
      "          'technicians': 1,\n",
      "          'penalosa': 1,\n",
      "          'lou': 1,\n",
      "          'diamond': 1,\n",
      "          'lund': 1,\n",
      "          'robin': 1,\n",
      "          'technician': 1,\n",
      "          'sotomejor': 1,\n",
      "          'wilson': 1,\n",
      "          'cruz': 1,\n",
      "          'nthere': 1,\n",
      "          'attempts': 1,\n",
      "          'characterization': 1,\n",
      "          'means': 1,\n",
      "          'shady': 1,\n",
      "          'past': 1,\n",
      "          'involving': 1,\n",
      "          'drug': 1,\n",
      "          'addiction': 1,\n",
      "          'puts': 1,\n",
      "          'edge': 1,\n",
      "          'requires': 1,\n",
      "          'kissyfaces': 1,\n",
      "          'five': 1,\n",
      "          'gay': 1,\n",
      "          'ndont': 1,\n",
      "          'explanation': 1,\n",
      "          'nanyway': 1,\n",
      "          'gets': 1,\n",
      "          'call': 1,\n",
      "          'location': 1,\n",
      "          'deep': 1,\n",
      "          'failed': 1,\n",
      "          'mining': 1,\n",
      "          'operation': 1,\n",
      "          'nduring': 1,\n",
      "          'dimension': 1,\n",
      "          'jump': 1,\n",
      "          'called': 1,\n",
      "          'hold': 1,\n",
      "          'killed': 1,\n",
      "          'signal': 1,\n",
      "          'calls': 1,\n",
      "          'larson': 1,\n",
      "          'supposed': 1,\n",
      "          'son': 1,\n",
      "          'bunch': 1,\n",
      "          'predictable': 1,\n",
      "          'happening': 1,\n",
      "          'alien': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'lame': 1,\n",
      "          'ngood': 1,\n",
      "          'youve': 1,\n",
      "          'npostproduction': 1,\n",
      "          'cuts': 1,\n",
      "          'original': 1,\n",
      "          'screenplay': 1,\n",
      "          'unpredictable': 1,\n",
      "          'either': 1,\n",
      "          'nafter': 1,\n",
      "          'ones': 1,\n",
      "          'turn': 1,\n",
      "          'bigger': 1,\n",
      "          'problem': 1,\n",
      "          'stick': 1,\n",
      "          'simple': 1,\n",
      "          'afforded': 1,\n",
      "          'nnumerous': 1,\n",
      "          'rewrites': 1,\n",
      "          'credited': 1,\n",
      "          'people': 1,\n",
      "          'gross': 1,\n",
      "          'underestimate': 1,\n",
      "          'crammed': 1,\n",
      "          'lean': 1,\n",
      "          '90minute': 1,\n",
      "          'tons': 1,\n",
      "          'extraneous': 1,\n",
      "          'threads': 1,\n",
      "          'remain': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'nwas': 1,\n",
      "          'limping': 1,\n",
      "          'robot': 1,\n",
      "          'shaped': 1,\n",
      "          'fighter': 1,\n",
      "          'pilot': 1,\n",
      "          'ndid': 1,\n",
      "          'ships': 1,\n",
      "          'learn': 1,\n",
      "          'humanity': 1,\n",
      "          'nwhat': 1,\n",
      "          'glowing': 1,\n",
      "          'artifact': 1,\n",
      "          'nand': 1,\n",
      "          'signify': 1,\n",
      "          'far': 1,\n",
      "          'refers': 1,\n",
      "          'small': 1,\n",
      "          'detail': 1,\n",
      "          'developed': 1,\n",
      "          'unnecessary': 1,\n",
      "          'story': 1,\n",
      "          'elements': 1,\n",
      "          'ncharacter': 1,\n",
      "          'relationships': 1,\n",
      "          'also': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'person': 1,\n",
      "          'keeps': 1,\n",
      "          'nwe': 1,\n",
      "          'early': 1,\n",
      "          'within': 1,\n",
      "          'first': 1,\n",
      "          'spaders': 1,\n",
      "          'start': 1,\n",
      "          'hating': 1,\n",
      "          'nfifteen': 1,\n",
      "          'bottle': 1,\n",
      "          'pear': 1,\n",
      "          'brandy': 1,\n",
      "          'later': 1,\n",
      "          'engaging': 1,\n",
      "          'hankypanky': 1,\n",
      "          'nwhen': 1,\n",
      "          'creepy': 1,\n",
      "          'stranger': 1,\n",
      "          'shows': 1,\n",
      "          'ship': 1,\n",
      "          'course': 1,\n",
      "          'members': 1,\n",
      "          'fall': 1,\n",
      "          'nevery': 1,\n",
      "          'single': 1,\n",
      "          'shift': 1,\n",
      "          'interaction': 1,\n",
      "          'happens': 1,\n",
      "          'extremely': 1,\n",
      "          'suddenly': 1,\n",
      "          'many': 1,\n",
      "          'clues': 1,\n",
      "          'prominent': 1,\n",
      "          'example': 1,\n",
      "          'however': 1,\n",
      "          'fact': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'looks': 1,\n",
      "          'took': 1,\n",
      "          'originally': 1,\n",
      "          'intended': 1,\n",
      "          'spliced': 1,\n",
      "          'real': 1,\n",
      "          'mentioned': 1,\n",
      "          'twice': 1,\n",
      "          'nright': 1,\n",
      "          'shock': 1,\n",
      "          'lest': 1,\n",
      "          'decide': 1,\n",
      "          'walk': 1,\n",
      "          'upon': 1,\n",
      "          'discovery': 1,\n",
      "          'notice': 1,\n",
      "          'seems': 1,\n",
      "          'dropped': 1,\n",
      "          'littletono': 1,\n",
      "          'introduction': 1,\n",
      "          'situations': 1,\n",
      "          'feels': 1,\n",
      "          'skipped': 1,\n",
      "          'changes': 1,\n",
      "          'explain': 1,\n",
      "          'things': 1,\n",
      "          'went': 1,\n",
      "          'thoroughly': 1,\n",
      "          'enamored': 1,\n",
      "          'ready': 1,\n",
      "          'baby': 1,\n",
      "          'npoint': 1,\n",
      "          'shagging': 1,\n",
      "          'obsessed': 1,\n",
      "          'ndoesnt': 1,\n",
      "          'nsince': 1,\n",
      "          'understand': 1,\n",
      "          'motivations': 1,\n",
      "          'care': 1,\n",
      "          'abruptly': 1,\n",
      "          'murdering': 1,\n",
      "          'onebyone': 1,\n",
      "          'knocking': 1,\n",
      "          'whit': 1,\n",
      "          'nits': 1,\n",
      "          'shame': 1,\n",
      "          'contains': 1,\n",
      "          'talented': 1,\n",
      "          'nthey': 1,\n",
      "          'line': 1,\n",
      "          'monotone': 1,\n",
      "          'voice': 1,\n",
      "          'blank': 1,\n",
      "          'expressions': 1,\n",
      "          'faces': 1,\n",
      "          'nsexual': 1,\n",
      "          'tension': 1,\n",
      "          'nmore': 1,\n",
      "          'constipation': 1,\n",
      "          'embarrassed': 1,\n",
      "          'utter': 1,\n",
      "          'howlers': 1,\n",
      "          'made': 1,\n",
      "          'someone': 1,\n",
      "          'powerful': 1,\n",
      "          'god': 1,\n",
      "          'whole': 1,\n",
      "          'nice': 1,\n",
      "          'mind': 1,\n",
      "          'climax': 1,\n",
      "          'taking': 1,\n",
      "          'transport': 1,\n",
      "          'pod': 1,\n",
      "          'biggest': 1,\n",
      "          'foreheadslapper': 1,\n",
      "          'inhabits': 1,\n",
      "          'history': 1,\n",
      "          'suspected': 1,\n",
      "          'awfully': 1,\n",
      "          'onenote': 1,\n",
      "          'hes': 1,\n",
      "          'given': 1,\n",
      "          'notes': 1,\n",
      "          'work': 1,\n",
      "          'even': 1,\n",
      "          'ntunney': 1,\n",
      "          'stands': 1,\n",
      "          'around': 1,\n",
      "          'cute': 1,\n",
      "          'scared': 1,\n",
      "          'nphillips': 1,\n",
      "          'broods': 1,\n",
      "          'ncruz': 1,\n",
      "          'flirts': 1,\n",
      "          'die': 1,\n",
      "          'star': 1,\n",
      "          'blows': 1,\n",
      "          'paying': 1,\n",
      "          'attention': 1,\n",
      "          'n': 1,\n",
      "          'pretty': 1,\n",
      "          'awful': 1,\n",
      "          'cutting': 1,\n",
      "          'slack': 1,\n",
      "          'merely': 1,\n",
      "          'expected': 1,\n",
      "          'got': 1,\n",
      "          'nthats': 1,\n",
      "          'reasons': 1,\n",
      "          'youll': 1,\n",
      "          'hate': 1,\n",
      "          'neven': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'fairly': 1,\n",
      "          'unimpressive': 1,\n",
      "          'suffice': 1,\n",
      "          'save': 1,\n",
      "          'nhonestly': 1,\n",
      "          'though': 1,\n",
      "          'dozen': 1,\n",
      "          'writers': 1,\n",
      "          'director': 1,\n",
      "          'replaced': 1,\n",
      "          'pseudonym': 1,\n",
      "          'nit': 1,\n",
      "          'usually': 1,\n",
      "          'results': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'show': 5,\n",
      "          'n': 4,\n",
      "          'one': 3,\n",
      "          'like': 3,\n",
      "          'worst': 3,\n",
      "          'ni': 2,\n",
      "          'would': 2,\n",
      "          'give': 2,\n",
      "          'guts': 2,\n",
      "          'movie': 2,\n",
      "          'quaid': 2,\n",
      "          'nthe': 2,\n",
      "          'nthey': 2,\n",
      "          'great': 2,\n",
      "          'door': 2,\n",
      "          'films': 2,\n",
      "          'year': 2,\n",
      "          'timing': 1,\n",
      "          'reasons': 1,\n",
      "          'baby': 1,\n",
      "          'sitters': 1,\n",
      "          'recently': 1,\n",
      "          'went': 1,\n",
      "          'multiplex': 1,\n",
      "          'saw': 1,\n",
      "          'undercover': 1,\n",
      "          'blues': 1,\n",
      "          'half': 1,\n",
      "          'star': 1,\n",
      "          'nanyone': 1,\n",
      "          'bad': 1,\n",
      "          'later': 1,\n",
      "          'read': 1,\n",
      "          'ny': 1,\n",
      "          'times': 1,\n",
      "          'review': 1,\n",
      "          'said': 1,\n",
      "          'kathleen': 1,\n",
      "          'turner': 1,\n",
      "          'dennis': 1,\n",
      "          'gotten': 1,\n",
      "          'plump': 1,\n",
      "          'looked': 1,\n",
      "          'mumps': 1,\n",
      "          'script': 1,\n",
      "          'part': 1,\n",
      "          'characters': 1,\n",
      "          'talked': 1,\n",
      "          'funny': 1,\n",
      "          'accents': 1,\n",
      "          'attempt': 1,\n",
      "          'make': 1,\n",
      "          'laugh': 1,\n",
      "          'lots': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'two': 1,\n",
      "          'people': 1,\n",
      "          'trying': 1,\n",
      "          'go': 1,\n",
      "          'together': 1,\n",
      "          'therefore': 1,\n",
      "          'bumping': 1,\n",
      "          'shoulders': 1,\n",
      "          'nturner': 1,\n",
      "          'kept': 1,\n",
      "          'smiling': 1,\n",
      "          'idiots': 1,\n",
      "          'game': 1,\n",
      "          'good': 1,\n",
      "          'news': 1,\n",
      "          'smart': 1,\n",
      "          'enough': 1,\n",
      "          'vote': 1,\n",
      "          'feet': 1,\n",
      "          'left': 1,\n",
      "          'nbuy': 1,\n",
      "          'tickets': 1,\n",
      "          'enemies': 1,\n",
      "          'ntell': 1,\n",
      "          'smile': 1,\n",
      "          'lot': 1,\n",
      "          'top': 1,\n",
      "          'na': 1,\n",
      "          'must': 1,\n",
      "          'see': 1,\n",
      "          'film': 1,\n",
      "          'excellent': 1,\n",
      "          'nlook': 1,\n",
      "          'average': 1,\n",
      "          'nkind': 1,\n",
      "          'enjoyable': 1,\n",
      "          'poor': 1,\n",
      "          'ndont': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'n0': 1,\n",
      "          'ntotally': 1,\n",
      "          'unbearable': 1,\n",
      "          'nreview': 1,\n",
      "          'written': 1,\n",
      "          'september': 1,\n",
      "          '29': 1,\n",
      "          '1993': 1,\n",
      "          'nopinions': 1,\n",
      "          'expressed': 1,\n",
      "          'mine': 1,\n",
      "          'meant': 1,\n",
      "          'reflect': 1,\n",
      "          'employers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'know': 5,\n",
      "          'sequel': 4,\n",
      "          'nthe': 4,\n",
      "          'still': 4,\n",
      "          'original': 4,\n",
      "          'years': 3,\n",
      "          'reason': 2,\n",
      "          'many': 2,\n",
      "          'cases': 2,\n",
      "          'thats': 2,\n",
      "          '2': 2,\n",
      "          'last': 2,\n",
      "          'summer': 2,\n",
      "          'mightve': 2,\n",
      "          'njulie': 2,\n",
      "          'hewitt': 2,\n",
      "          'ray': 2,\n",
      "          'prinze': 2,\n",
      "          'back': 2,\n",
      "          'rather': 2,\n",
      "          'wide': 2,\n",
      "          'open': 2,\n",
      "          'julie': 2,\n",
      "          'karla': 2,\n",
      "          'brandy': 2,\n",
      "          'phifer': 2,\n",
      "          'radio': 2,\n",
      "          'hook': 2,\n",
      "          'material': 2,\n",
      "          'plot': 2,\n",
      "          'man': 2,\n",
      "          'nand': 2,\n",
      "          'almost': 2,\n",
      "          'show': 2,\n",
      "          'obvious': 1,\n",
      "          'producing': 1,\n",
      "          'immensely': 1,\n",
      "          'popular': 1,\n",
      "          'acquire': 1,\n",
      "          'continued': 1,\n",
      "          'profits': 1,\n",
      "          'rationale': 1,\n",
      "          'sound': 1,\n",
      "          'recent': 1,\n",
      "          'shoddy': 1,\n",
      "          'product': 1,\n",
      "          'exposed': 1,\n",
      "          'cashmilking': 1,\n",
      "          'vehicle': 1,\n",
      "          'really': 1,\n",
      "          'nlast': 1,\n",
      "          'speed': 1,\n",
      "          'scream': 1,\n",
      "          'well': 1,\n",
      "          'species': 1,\n",
      "          'ii': 1,\n",
      "          'products': 1,\n",
      "          'decisively': 1,\n",
      "          'less': 1,\n",
      "          'satisfactory': 1,\n",
      "          'nin': 1,\n",
      "          'even': 1,\n",
      "          'discredit': 1,\n",
      "          'predecessor': 1,\n",
      "          'latest': 1,\n",
      "          'neoslasher': 1,\n",
      "          'flick': 1,\n",
      "          'nwhatever': 1,\n",
      "          'uniqueness': 1,\n",
      "          'seems': 1,\n",
      "          'trite': 1,\n",
      "          'overplayed': 1,\n",
      "          'paired': 1,\n",
      "          'abominable': 1,\n",
      "          'thriller': 1,\n",
      "          'james': 1,\n",
      "          'jennifer': 1,\n",
      "          'love': 1,\n",
      "          'bronson': 1,\n",
      "          'freddie': 1,\n",
      "          'jr': 1,\n",
      "          'star': 1,\n",
      "          'reprising': 1,\n",
      "          'roles': 1,\n",
      "          'typical': 1,\n",
      "          'fashion': 1,\n",
      "          'experience': 1,\n",
      "          'predictable': 1,\n",
      "          'fallingout': 1,\n",
      "          'beginning': 1,\n",
      "          'leaving': 1,\n",
      "          'door': 1,\n",
      "          'newcomer': 1,\n",
      "          'benson': 1,\n",
      "          'matthew': 1,\n",
      "          'settle': 1,\n",
      "          'nwill': 1,\n",
      "          'hit': 1,\n",
      "          'along': 1,\n",
      "          'friends': 1,\n",
      "          'norwood': 1,\n",
      "          'tyrell': 1,\n",
      "          'mekhi': 1,\n",
      "          'foursome': 1,\n",
      "          'heads': 1,\n",
      "          'stationgiveaway': 1,\n",
      "          'vacation': 1,\n",
      "          'tropics': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'things': 1,\n",
      "          'arent': 1,\n",
      "          'peachy': 1,\n",
      "          'arrive': 1,\n",
      "          'regularity': 1,\n",
      "          'could': 1,\n",
      "          'set': 1,\n",
      "          'watch': 1,\n",
      "          'infamous': 1,\n",
      "          'fisherman': 1,\n",
      "          'muse': 1,\n",
      "          'watson': 1,\n",
      "          'nits': 1,\n",
      "          'another': 1,\n",
      "          'bloody': 1,\n",
      "          'showdown': 1,\n",
      "          'complete': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'ending': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'market': 1,\n",
      "          'saturated': 1,\n",
      "          'genx': 1,\n",
      "          'thrillers': 1,\n",
      "          'like': 1,\n",
      "          'one': 1,\n",
      "          'unlikely': 1,\n",
      "          'get': 1,\n",
      "          'recognition': 1,\n",
      "          'bad': 1,\n",
      "          'nfor': 1,\n",
      "          'diehard': 1,\n",
      "          'fans': 1,\n",
      "          'genre': 1,\n",
      "          'required': 1,\n",
      "          'viewing': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'recycled': 1,\n",
      "          'aura': 1,\n",
      "          'thrillerism': 1,\n",
      "          'surrounding': 1,\n",
      "          'isnt': 1,\n",
      "          'heightened': 1,\n",
      "          'skillful': 1,\n",
      "          'scripting': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'tense': 1,\n",
      "          'stringbased': 1,\n",
      "          'score': 1,\n",
      "          'manipulative': 1,\n",
      "          'editing': 1,\n",
      "          'ends': 1,\n",
      "          'becoming': 1,\n",
      "          'belittled': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'script': 1,\n",
      "          'gives': 1,\n",
      "          'lines': 1,\n",
      "          'dialogue': 1,\n",
      "          'goes': 1,\n",
      "          'scary': 1,\n",
      "          'figure': 1,\n",
      "          'nutcase': 1,\n",
      "          'short': 1,\n",
      "          'painful': 1,\n",
      "          'moments': 1,\n",
      "          'nmuch': 1,\n",
      "          'mystery': 1,\n",
      "          'dropped': 1,\n",
      "          'sake': 1,\n",
      "          'getting': 1,\n",
      "          'point': 1,\n",
      "          'whole': 1,\n",
      "          'exists': 1,\n",
      "          'must': 1,\n",
      "          'guess': 1,\n",
      "          'capital': 1,\n",
      "          'brazil': 1,\n",
      "          'order': 1,\n",
      "          'win': 1,\n",
      "          'trip': 1,\n",
      "          'station': 1,\n",
      "          'dead': 1,\n",
      "          'giveaway': 1,\n",
      "          'lessening': 1,\n",
      "          'suspense': 1,\n",
      "          'creating': 1,\n",
      "          'hurryupandwait': 1,\n",
      "          'timing': 1,\n",
      "          'problem': 1,\n",
      "          'whereas': 1,\n",
      "          'killers': 1,\n",
      "          'identity': 1,\n",
      "          'question': 1,\n",
      "          'first': 1,\n",
      "          'given': 1,\n",
      "          'changes': 1,\n",
      "          'dynamic': 1,\n",
      "          'drastically': 1,\n",
      "          'nthree': 1,\n",
      "          'four': 1,\n",
      "          'teens': 1,\n",
      "          'run': 1,\n",
      "          'automatically': 1,\n",
      "          'rain': 1,\n",
      "          'slicker': 1,\n",
      "          'nonchalantly': 1,\n",
      "          'refer': 1,\n",
      "          'killer': 1,\n",
      "          'ntheyre': 1,\n",
      "          'used': 1,\n",
      "          'performances': 1,\n",
      "          'give': 1,\n",
      "          'decent': 1,\n",
      "          'end': 1,\n",
      "          'left': 1,\n",
      "          'third': 1,\n",
      "          'likely': 1,\n",
      "          'brand': 1,\n",
      "          'new': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'ngod': 1,\n",
      "          'help': 1,\n",
      "          'us': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'mrs': 6,\n",
      "          'williamson': 6,\n",
      "          'tingle': 5,\n",
      "          'kevin': 3,\n",
      "          'way': 3,\n",
      "          'films': 3,\n",
      "          'students': 3,\n",
      "          'ni': 3,\n",
      "          'even': 3,\n",
      "          'teacher': 3,\n",
      "          'poor': 3,\n",
      "          'one': 3,\n",
      "          'best': 3,\n",
      "          'could': 3,\n",
      "          'get': 3,\n",
      "          'williamsons': 2,\n",
      "          'work': 2,\n",
      "          'finds': 2,\n",
      "          'old': 2,\n",
      "          'ideas': 2,\n",
      "          'teaching': 2,\n",
      "          'end': 2,\n",
      "          'including': 2,\n",
      "          'nbut': 2,\n",
      "          'laughs': 2,\n",
      "          'nand': 2,\n",
      "          'scream': 2,\n",
      "          'enjoyed': 2,\n",
      "          'reason': 2,\n",
      "          'big': 2,\n",
      "          'black': 2,\n",
      "          'comedy': 2,\n",
      "          'may': 2,\n",
      "          'script': 2,\n",
      "          'name': 2,\n",
      "          'character': 2,\n",
      "          'project': 2,\n",
      "          'history': 2,\n",
      "          'worst': 2,\n",
      "          'principal': 2,\n",
      "          'mckean': 2,\n",
      "          'goes': 2,\n",
      "          'like': 2,\n",
      "          'nin': 2,\n",
      "          'substitute': 2,\n",
      "          'holmes': 2,\n",
      "          'leigh': 2,\n",
      "          'tingles': 2,\n",
      "          'anns': 2,\n",
      "          'coughlan': 2,\n",
      "          'three': 2,\n",
      "          'morning': 2,\n",
      "          'plan': 2,\n",
      "          'everything': 2,\n",
      "          'entirely': 2,\n",
      "          'tambor': 2,\n",
      "          'little': 2,\n",
      "          'nthere': 2,\n",
      "          'lifeless': 2,\n",
      "          'im': 1,\n",
      "          'dedicated': 1,\n",
      "          'fan': 1,\n",
      "          'writer': 1,\n",
      "          'nhe': 1,\n",
      "          'always': 1,\n",
      "          'clever': 1,\n",
      "          'spice': 1,\n",
      "          'material': 1,\n",
      "          'witty': 1,\n",
      "          'dialogue': 1,\n",
      "          'fresh': 1,\n",
      "          'stem': 1,\n",
      "          'inventive': 1,\n",
      "          'brain': 1,\n",
      "          'nwith': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'reached': 1,\n",
      "          'rope': 1,\n",
      "          'nwhat': 1,\n",
      "          'used': 1,\n",
      "          'intelligent': 1,\n",
      "          'hopelessly': 1,\n",
      "          'stale': 1,\n",
      "          'components': 1,\n",
      "          'encouraging': 1,\n",
      "          'premise': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'relate': 1,\n",
      "          'thrills': 1,\n",
      "          'nboth': 1,\n",
      "          'supposedly': 1,\n",
      "          'absent': 1,\n",
      "          'draggy': 1,\n",
      "          'exercise': 1,\n",
      "          'elaborate': 1,\n",
      "          'revenge': 1,\n",
      "          'shame': 1,\n",
      "          'loved': 1,\n",
      "          'heck': 1,\n",
      "          'scifi': 1,\n",
      "          'goofiness': 1,\n",
      "          'faculty': 1,\n",
      "          'nkevin': 1,\n",
      "          'horror': 1,\n",
      "          'draw': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nteaching': 1,\n",
      "          'leave': 1,\n",
      "          'gaping': 1,\n",
      "          'void': 1,\n",
      "          'optimistic': 1,\n",
      "          'followers': 1,\n",
      "          'put': 1,\n",
      "          'reign': 1,\n",
      "          'perhaps': 1,\n",
      "          'encourage': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'perfecting': 1,\n",
      "          'worry': 1,\n",
      "          'directing': 1,\n",
      "          'duties': 1,\n",
      "          'still': 1,\n",
      "          'faith': 1,\n",
      "          'fear': 1,\n",
      "          'soon': 1,\n",
      "          'forgotten': 1,\n",
      "          'echo': 1,\n",
      "          'past': 1,\n",
      "          'title': 1,\n",
      "          'pet': 1,\n",
      "          'vicious': 1,\n",
      "          'uncaring': 1,\n",
      "          'played': 1,\n",
      "          'deliciously': 1,\n",
      "          'overthetop': 1,\n",
      "          'british': 1,\n",
      "          'actress': 1,\n",
      "          'helen': 1,\n",
      "          'mirren': 1,\n",
      "          'nmrs': 1,\n",
      "          'basically': 1,\n",
      "          'every': 1,\n",
      "          'nightmare': 1,\n",
      "          'heartless': 1,\n",
      "          'human': 1,\n",
      "          'bent': 1,\n",
      "          'distributing': 1,\n",
      "          'marks': 1,\n",
      "          'hardworking': 1,\n",
      "          'pupils': 1,\n",
      "          'michael': 1,\n",
      "          'horrified': 1,\n",
      "          'unanimously': 1,\n",
      "          'despised': 1,\n",
      "          'among': 1,\n",
      "          'fellow': 1,\n",
      "          'staff': 1,\n",
      "          'members': 1,\n",
      "          'fact': 1,\n",
      "          'everyone': 1,\n",
      "          'hallway': 1,\n",
      "          'quickly': 1,\n",
      "          'steers': 1,\n",
      "          'nmirrens': 1,\n",
      "          'performance': 1,\n",
      "          'delights': 1,\n",
      "          'distressingly': 1,\n",
      "          'hollow': 1,\n",
      "          'flat': 1,\n",
      "          'soft': 1,\n",
      "          'drink': 1,\n",
      "          'words': 1,\n",
      "          'plot': 1,\n",
      "          'problem': 1,\n",
      "          'nmaterial': 1,\n",
      "          'enjoyable': 1,\n",
      "          'rendered': 1,\n",
      "          'totally': 1,\n",
      "          'ridiculous': 1,\n",
      "          'handling': 1,\n",
      "          'part': 1,\n",
      "          'director': 1,\n",
      "          'likable': 1,\n",
      "          'katie': 1,\n",
      "          'plays': 1,\n",
      "          'ann': 1,\n",
      "          'overachiever': 1,\n",
      "          'hoping': 1,\n",
      "          'college': 1,\n",
      "          'scholarship': 1,\n",
      "          'typical': 1,\n",
      "          'says': 1,\n",
      "          'worked': 1,\n",
      "          'countless': 1,\n",
      "          'hours': 1,\n",
      "          'laughable': 1,\n",
      "          'nlater': 1,\n",
      "          'studying': 1,\n",
      "          'gymnasium': 1,\n",
      "          'classmate': 1,\n",
      "          'barry': 1,\n",
      "          'watson': 1,\n",
      "          'offers': 1,\n",
      "          'photocopied': 1,\n",
      "          'duplicate': 1,\n",
      "          'final': 1,\n",
      "          'exam': 1,\n",
      "          'nleigh': 1,\n",
      "          'friend': 1,\n",
      "          'marisa': 1,\n",
      "          'encourages': 1,\n",
      "          'use': 1,\n",
      "          'nalas': 1,\n",
      "          'hag': 1,\n",
      "          'scheming': 1,\n",
      "          'snatches': 1,\n",
      "          'test': 1,\n",
      "          'prepares': 1,\n",
      "          'talk': 1,\n",
      "          'nhow': 1,\n",
      "          'convenient': 1,\n",
      "          'head': 1,\n",
      "          'house': 1,\n",
      "          'attempting': 1,\n",
      "          'set': 1,\n",
      "          'facts': 1,\n",
      "          'straight': 1,\n",
      "          'clear': 1,\n",
      "          'nthings': 1,\n",
      "          'hand': 1,\n",
      "          'gets': 1,\n",
      "          'knocked': 1,\n",
      "          'unconscious': 1,\n",
      "          'tussle': 1,\n",
      "          'tie': 1,\n",
      "          'bed': 1,\n",
      "          'try': 1,\n",
      "          'reasoning': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'nbesides': 1,\n",
      "          'pointless': 1,\n",
      "          'subplots': 1,\n",
      "          'involving': 1,\n",
      "          'football': 1,\n",
      "          'coach': 1,\n",
      "          'jeffrey': 1,\n",
      "          'horribly': 1,\n",
      "          'wasted': 1,\n",
      "          'actual': 1,\n",
      "          'progress': 1,\n",
      "          'urgency': 1,\n",
      "          'situation': 1,\n",
      "          'tension': 1,\n",
      "          'involved': 1,\n",
      "          'humor': 1,\n",
      "          'completely': 1,\n",
      "          'inconsistent': 1,\n",
      "          'nafter': 1,\n",
      "          'many': 1,\n",
      "          'jokes': 1,\n",
      "          'theater': 1,\n",
      "          'silent': 1,\n",
      "          'heard': 1,\n",
      "          'fly': 1,\n",
      "          'sneeze': 1,\n",
      "          'nyou': 1,\n",
      "          'continue': 1,\n",
      "          'await': 1,\n",
      "          'momentum': 1,\n",
      "          'story': 1,\n",
      "          'something': 1,\n",
      "          'possibly': 1,\n",
      "          'revive': 1,\n",
      "          'slow': 1,\n",
      "          'pace': 1,\n",
      "          'na': 1,\n",
      "          'moment': 1,\n",
      "          'never': 1,\n",
      "          'arises': 1,\n",
      "          'nwilliamson': 1,\n",
      "          'also': 1,\n",
      "          'handsome': 1,\n",
      "          'job': 1,\n",
      "          'wasting': 1,\n",
      "          'key': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'talented': 1,\n",
      "          'larry': 1,\n",
      "          'sanders': 1,\n",
      "          'vet': 1,\n",
      "          'beautiful': 1,\n",
      "          'vivica': 1,\n",
      "          'fox': 1,\n",
      "          'scene': 1,\n",
      "          'caring': 1,\n",
      "          'guidance': 1,\n",
      "          'counselor': 1,\n",
      "          'disposes': 1,\n",
      "          'non': 1,\n",
      "          'plus': 1,\n",
      "          'side': 1,\n",
      "          'admirable': 1,\n",
      "          'latter': 1,\n",
      "          'giving': 1,\n",
      "          'frighteningly': 1,\n",
      "          'believable': 1,\n",
      "          'exorcism': 1,\n",
      "          'impression': 1,\n",
      "          'molly': 1,\n",
      "          'ringwald': 1,\n",
      "          'amusing': 1,\n",
      "          'cameo': 1,\n",
      "          'appearance': 1,\n",
      "          'nwhile': 1,\n",
      "          'pretty': 1,\n",
      "          'remains': 1,\n",
      "          'watchable': 1,\n",
      "          'promising': 1,\n",
      "          'pop': 1,\n",
      "          'anything': 1,\n",
      "          'remotely': 1,\n",
      "          'interesting': 1,\n",
      "          'squandered': 1,\n",
      "          'inane': 1,\n",
      "          'nmirren': 1,\n",
      "          'easily': 1,\n",
      "          'keep': 1,\n",
      "          'watching': 1,\n",
      "          'nshe': 1,\n",
      "          'convincingly': 1,\n",
      "          'evil': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'gifted': 1,\n",
      "          'delivery': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'individual': 1,\n",
      "          'scenes': 1,\n",
      "          'flounder': 1,\n",
      "          'boredom': 1,\n",
      "          'nif': 1,\n",
      "          'word': 1,\n",
      "          'movie': 1,\n",
      "          'surrounding': 1,\n",
      "          'would': 1,\n",
      "          'disappointing': 1,\n",
      "          'nbasically': 1,\n",
      "          'enemy': 1,\n",
      "          'nhis': 1,\n",
      "          'uneventful': 1,\n",
      "          'direction': 1,\n",
      "          'prevents': 1,\n",
      "          'aspects': 1,\n",
      "          'screenplay': 1,\n",
      "          'appreciated': 1,\n",
      "          'writing': 1,\n",
      "          'especially': 1,\n",
      "          'good': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'rookie': 1,\n",
      "          'screenwriter': 1,\n",
      "          'ehren': 1,\n",
      "          'kruger': 1,\n",
      "          'writes': 1,\n",
      "          'third': 1,\n",
      "          'installment': 1,\n",
      "          'franchise': 1,\n",
      "          'christmas': 1,\n",
      "          'whether': 1,\n",
      "          'real': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'film': 7,\n",
      "          'story': 5,\n",
      "          'cant': 4,\n",
      "          'past': 4,\n",
      "          'father': 4,\n",
      "          'one': 4,\n",
      "          'forget': 3,\n",
      "          'fraser': 3,\n",
      "          'away': 3,\n",
      "          'parents': 3,\n",
      "          'soon': 3,\n",
      "          'becomes': 3,\n",
      "          'simcha': 3,\n",
      "          'lost': 3,\n",
      "          'starts': 3,\n",
      "          'chajas': 3,\n",
      "          'showing': 3,\n",
      "          'point': 2,\n",
      "          'krabb': 2,\n",
      "          'jews': 2,\n",
      "          'bitter': 2,\n",
      "          'jewish': 2,\n",
      "          'roots': 2,\n",
      "          'student': 2,\n",
      "          'mother': 2,\n",
      "          'nher': 2,\n",
      "          'home': 2,\n",
      "          'filled': 2,\n",
      "          'loving': 2,\n",
      "          'family': 2,\n",
      "          'old': 2,\n",
      "          'job': 2,\n",
      "          'apartment': 2,\n",
      "          'nanny': 2,\n",
      "          'man': 2,\n",
      "          'mr': 2,\n",
      "          'strict': 2,\n",
      "          'way': 2,\n",
      "          'kalman': 2,\n",
      "          'rossellini': 2,\n",
      "          'kind': 2,\n",
      "          'stern': 2,\n",
      "          'keeps': 2,\n",
      "          'make': 2,\n",
      "          'things': 2,\n",
      "          'done': 2,\n",
      "          'script': 2,\n",
      "          'nit': 2,\n",
      "          'trying': 2,\n",
      "          'role': 2,\n",
      "          'seemed': 2,\n",
      "          'kept': 2,\n",
      "          'delivering': 2,\n",
      "          'characters': 2,\n",
      "          'going': 2,\n",
      "          'felt': 2,\n",
      "          'could': 2,\n",
      "          'mistaken': 2,\n",
      "          'performance': 2,\n",
      "          'sufferings': 2,\n",
      "          'quack': 2,\n",
      "          'movie': 2,\n",
      "          'means': 1,\n",
      "          'well': 1,\n",
      "          'pushy': 1,\n",
      "          'promoting': 1,\n",
      "          'belabored': 1,\n",
      "          'sentimental': 1,\n",
      "          'compelling': 1,\n",
      "          'drama': 1,\n",
      "          'nits': 1,\n",
      "          'jeroen': 1,\n",
      "          'melodrama': 1,\n",
      "          'community': 1,\n",
      "          'antwerp': 1,\n",
      "          '1972': 1,\n",
      "          'heroine': 1,\n",
      "          'attractive': 1,\n",
      "          'carefree': 1,\n",
      "          'nonreligious': 1,\n",
      "          '20yearold': 1,\n",
      "          'chaja': 1,\n",
      "          'wants': 1,\n",
      "          'getting': 1,\n",
      "          'involved': 1,\n",
      "          'demonstrations': 1,\n",
      "          'screwing': 1,\n",
      "          'rebel': 1,\n",
      "          'leader': 1,\n",
      "          'living': 1,\n",
      "          'gentile': 1,\n",
      "          'friends': 1,\n",
      "          'nagging': 1,\n",
      "          'gebrecht': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'eccentric': 1,\n",
      "          'schell': 1,\n",
      "          'survivors': 1,\n",
      "          'holocaust': 1,\n",
      "          'concentration': 1,\n",
      "          'camps': 1,\n",
      "          'life': 1,\n",
      "          'angst': 1,\n",
      "          'denial': 1,\n",
      "          'always': 1,\n",
      "          'busying': 1,\n",
      "          'cooking': 1,\n",
      "          'soup': 1,\n",
      "          'baking': 1,\n",
      "          'cakes': 1,\n",
      "          'complaining': 1,\n",
      "          'everything': 1,\n",
      "          'openly': 1,\n",
      "          'recently': 1,\n",
      "          'absorbed': 1,\n",
      "          'searching': 1,\n",
      "          'two': 1,\n",
      "          'suitcases': 1,\n",
      "          'mementos': 1,\n",
      "          'album': 1,\n",
      "          'silverware': 1,\n",
      "          'violin': 1,\n",
      "          'nhe': 1,\n",
      "          'buried': 1,\n",
      "          'garden': 1,\n",
      "          'war': 1,\n",
      "          'fleeing': 1,\n",
      "          'nazis': 1,\n",
      "          'locate': 1,\n",
      "          'due': 1,\n",
      "          'changes': 1,\n",
      "          'city': 1,\n",
      "          'nout': 1,\n",
      "          'frustration': 1,\n",
      "          'quitting': 1,\n",
      "          'dishwasher': 1,\n",
      "          'facing': 1,\n",
      "          'eviction': 1,\n",
      "          'reluctantly': 1,\n",
      "          'accepts': 1,\n",
      "          'hasidic': 1,\n",
      "          'couple': 1,\n",
      "          'building': 1,\n",
      "          'apfelschnitt': 1,\n",
      "          'topol': 1,\n",
      "          'tells': 1,\n",
      "          'hasidics': 1,\n",
      "          'ultraorthodox': 1,\n",
      "          'dont': 1,\n",
      "          'go': 1,\n",
      "          'cinema': 1,\n",
      "          'watch': 1,\n",
      "          'tv': 1,\n",
      "          'adhere': 1,\n",
      "          'dress': 1,\n",
      "          'codes': 1,\n",
      "          'strictly': 1,\n",
      "          'observe': 1,\n",
      "          'religious': 1,\n",
      "          'laws': 1,\n",
      "          'nchaja': 1,\n",
      "          'first': 1,\n",
      "          'put': 1,\n",
      "          'expect': 1,\n",
      "          'follow': 1,\n",
      "          'rules': 1,\n",
      "          'finds': 1,\n",
      "          'wife': 1,\n",
      "          'mrs': 1,\n",
      "          'attached': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          '5': 1,\n",
      "          'children': 1,\n",
      "          '4yearold': 1,\n",
      "          'named': 1,\n",
      "          'monty': 1,\n",
      "          'doesnt': 1,\n",
      "          'talk': 1,\n",
      "          'friendly': 1,\n",
      "          'considers': 1,\n",
      "          'whore': 1,\n",
      "          'dresses': 1,\n",
      "          'nto': 1,\n",
      "          'hammer': 1,\n",
      "          'antisemitism': 1,\n",
      "          'hasnt': 1,\n",
      "          'gone': 1,\n",
      "          'theres': 1,\n",
      "          'barrage': 1,\n",
      "          'overdone': 1,\n",
      "          'uninvolving': 1,\n",
      "          'scenes': 1,\n",
      "          'sneering': 1,\n",
      "          'concierge': 1,\n",
      "          'bradley': 1,\n",
      "          'making': 1,\n",
      "          'nasty': 1,\n",
      "          'remarks': 1,\n",
      "          'tries': 1,\n",
      "          'inconvenient': 1,\n",
      "          'preventing': 1,\n",
      "          'using': 1,\n",
      "          'elevator': 1,\n",
      "          'hamfisted': 1,\n",
      "          'adapted': 1,\n",
      "          'carl': 1,\n",
      "          'friedmans': 1,\n",
      "          'book': 1,\n",
      "          'shovel': 1,\n",
      "          'loom': 1,\n",
      "          'goes': 1,\n",
      "          'false': 1,\n",
      "          'note': 1,\n",
      "          'another': 1,\n",
      "          'gets': 1,\n",
      "          'goo': 1,\n",
      "          'sentimentality': 1,\n",
      "          'telling': 1,\n",
      "          'shes': 1,\n",
      "          'jewess': 1,\n",
      "          'find': 1,\n",
      "          'identity': 1,\n",
      "          'loves': 1,\n",
      "          'mute': 1,\n",
      "          'child': 1,\n",
      "          'stuck': 1,\n",
      "          'insulated': 1,\n",
      "          'environment': 1,\n",
      "          'makes': 1,\n",
      "          'lingering': 1,\n",
      "          'effects': 1,\n",
      "          'forgotten': 1,\n",
      "          'effort': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'many': 1,\n",
      "          'obvious': 1,\n",
      "          'messages': 1,\n",
      "          'ponderously': 1,\n",
      "          'stock': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'consists': 1,\n",
      "          'wooden': 1,\n",
      "          'give': 1,\n",
      "          'roles': 1,\n",
      "          'cartoonish': 1,\n",
      "          'flavoring': 1,\n",
      "          'given': 1,\n",
      "          'human': 1,\n",
      "          'shades': 1,\n",
      "          'janitor': 1,\n",
      "          'villain': 1,\n",
      "          'particularly': 1,\n",
      "          'annoying': 1,\n",
      "          'onedimensional': 1,\n",
      "          'falsely': 1,\n",
      "          'acted': 1,\n",
      "          'ones': 1,\n",
      "          'fought': 1,\n",
      "          'showed': 1,\n",
      "          'feelings': 1,\n",
      "          'whose': 1,\n",
      "          'effervescent': 1,\n",
      "          'face': 1,\n",
      "          'expressive': 1,\n",
      "          'times': 1,\n",
      "          'joys': 1,\n",
      "          'admirably': 1,\n",
      "          'think': 1,\n",
      "          'gave': 1,\n",
      "          'warm': 1,\n",
      "          'woman': 1,\n",
      "          'suffering': 1,\n",
      "          'silence': 1,\n",
      "          'strong': 1,\n",
      "          'accepting': 1,\n",
      "          'faith': 1,\n",
      "          'ntopols': 1,\n",
      "          'reassuring': 1,\n",
      "          'wise': 1,\n",
      "          'says': 1,\n",
      "          'right': 1,\n",
      "          'acts': 1,\n",
      "          'true': 1,\n",
      "          'voice': 1,\n",
      "          'filmmaker': 1,\n",
      "          'explaining': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'brazenly': 1,\n",
      "          'uses': 1,\n",
      "          'little': 1,\n",
      "          'get': 1,\n",
      "          'across': 1,\n",
      "          'agenda': 1,\n",
      "          'pointing': 1,\n",
      "          'patriarchal': 1,\n",
      "          'world': 1,\n",
      "          'cruel': 1,\n",
      "          'love': 1,\n",
      "          'care': 1,\n",
      "          'hes': 1,\n",
      "          'taken': 1,\n",
      "          'duck': 1,\n",
      "          'pond': 1,\n",
      "          'jabbering': 1,\n",
      "          'beginning': 1,\n",
      "          'saying': 1,\n",
      "          'ask': 1,\n",
      "          'four': 1,\n",
      "          'questions': 1,\n",
      "          'passover': 1,\n",
      "          'seder': 1,\n",
      "          'nbut': 1,\n",
      "          'boy': 1,\n",
      "          'terrified': 1,\n",
      "          'wets': 1,\n",
      "          'pants': 1,\n",
      "          'presence': 1,\n",
      "          'refuses': 1,\n",
      "          'speak': 1,\n",
      "          'dad': 1,\n",
      "          'eventually': 1,\n",
      "          'victim': 1,\n",
      "          'tragic': 1,\n",
      "          'accident': 1,\n",
      "          'thereby': 1,\n",
      "          'exploits': 1,\n",
      "          'boys': 1,\n",
      "          'tiresome': 1,\n",
      "          'sincerely': 1,\n",
      "          'ni': 1,\n",
      "          'didnt': 1,\n",
      "          'see': 1,\n",
      "          'attended': 1,\n",
      "          'lecture': 1,\n",
      "          'whole': 1,\n",
      "          '100': 1,\n",
      "          'minutes': 1,\n",
      "          'serious': 1,\n",
      "          'unappetizing': 1,\n",
      "          'hoped': 1,\n",
      "          'would': 1,\n",
      "          'somehow': 1,\n",
      "          'end': 1,\n",
      "          'habit': 1,\n",
      "          'rehashing': 1,\n",
      "          'viewpoint': 1,\n",
      "          'unnecessarilythe': 1,\n",
      "          'message': 1,\n",
      "          'sending': 1,\n",
      "          'already': 1,\n",
      "          'received': 1,\n",
      "          'nin': 1,\n",
      "          'last': 1,\n",
      "          'shot': 1,\n",
      "          'daughter': 1,\n",
      "          'hopelessly': 1,\n",
      "          'digging': 1,\n",
      "          'luggage': 1,\n",
      "          'impression': 1,\n",
      "          'learned': 1,\n",
      "          'anything': 1,\n",
      "          'nthat': 1,\n",
      "          'seems': 1,\n",
      "          'strange': 1,\n",
      "          'since': 1,\n",
      "          'thought': 1,\n",
      "          'supposed': 1,\n",
      "          'nunless': 1,\n",
      "          'films': 1,\n",
      "          'real': 1,\n",
      "          'aim': 1,\n",
      "          'us': 1,\n",
      "          'cry': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nbut': 8,\n",
      "          'de': 5,\n",
      "          'bont': 5,\n",
      "          'house': 5,\n",
      "          'nthe': 5,\n",
      "          'film': 4,\n",
      "          'end': 4,\n",
      "          'good': 4,\n",
      "          'bad': 3,\n",
      "          'ni': 3,\n",
      "          'thought': 3,\n",
      "          'liam': 3,\n",
      "          'neeson': 3,\n",
      "          'cathrine': 3,\n",
      "          'zeta': 3,\n",
      "          'jones': 3,\n",
      "          'jan': 3,\n",
      "          'nand': 3,\n",
      "          'nit': 3,\n",
      "          'haunting': 3,\n",
      "          'n': 3,\n",
      "          'special': 3,\n",
      "          'say': 3,\n",
      "          'things': 3,\n",
      "          'actually': 3,\n",
      "          'tagline': 2,\n",
      "          'born': 2,\n",
      "          'didnt': 2,\n",
      "          'great': 2,\n",
      "          'actors': 2,\n",
      "          'basically': 2,\n",
      "          'story': 2,\n",
      "          'hill': 2,\n",
      "          'doctor': 2,\n",
      "          'experiment': 2,\n",
      "          'emotional': 2,\n",
      "          'forth': 2,\n",
      "          'na': 2,\n",
      "          'sinister': 2,\n",
      "          'take': 2,\n",
      "          'screen': 2,\n",
      "          'second': 2,\n",
      "          'nis': 2,\n",
      "          'nits': 2,\n",
      "          'book': 2,\n",
      "          'scary': 2,\n",
      "          'make': 2,\n",
      "          'style': 2,\n",
      "          'material': 2,\n",
      "          'effects': 2,\n",
      "          'impressive': 2,\n",
      "          'every': 2,\n",
      "          'absolutely': 2,\n",
      "          'shows': 2,\n",
      "          'climax': 2,\n",
      "          'hichock': 2,\n",
      "          'see': 2,\n",
      "          'one': 2,\n",
      "          'might': 2,\n",
      "          'stupid': 2,\n",
      "          'shining': 2,\n",
      "          'houses': 1,\n",
      "          'nso': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'preserved': 1,\n",
      "          'little': 1,\n",
      "          'spark': 1,\n",
      "          'ope': 1,\n",
      "          'entered': 1,\n",
      "          'theatre': 1,\n",
      "          'mabe': 1,\n",
      "          'fun': 1,\n",
      "          'fact': 1,\n",
      "          'beginning': 1,\n",
      "          'rather': 1,\n",
      "          'intriguing': 1,\n",
      "          'nthese': 1,\n",
      "          'helpless': 1,\n",
      "          'muddled': 1,\n",
      "          'mess': 1,\n",
      "          'defies': 1,\n",
      "          'rationality': 1,\n",
      "          'nhere': 1,\n",
      "          'monstrously': 1,\n",
      "          'overdecorated': 1,\n",
      "          'mansion': 1,\n",
      "          'known': 1,\n",
      "          'visitors': 1,\n",
      "          'tricked': 1,\n",
      "          'unknown': 1,\n",
      "          'guinea': 1,\n",
      "          'pigs': 1,\n",
      "          'fright': 1,\n",
      "          'guise': 1,\n",
      "          'insomnia': 1,\n",
      "          'investigation': 1,\n",
      "          'namong': 1,\n",
      "          'sophisticated': 1,\n",
      "          'bisexual': 1,\n",
      "          'cynical': 1,\n",
      "          'dope': 1,\n",
      "          'owen': 1,\n",
      "          'wilson': 1,\n",
      "          'gentle': 1,\n",
      "          'lady': 1,\n",
      "          'lily': 1,\n",
      "          'taylor': 1,\n",
      "          'nactually': 1,\n",
      "          'researching': 1,\n",
      "          'primordial': 1,\n",
      "          'fear': 1,\n",
      "          'reaction': 1,\n",
      "          'intends': 1,\n",
      "          'plant': 1,\n",
      "          'disturbing': 1,\n",
      "          'ideas': 1,\n",
      "          'subjects': 1,\n",
      "          'watch': 1,\n",
      "          'happens': 1,\n",
      "          'gets': 1,\n",
      "          'unexpected': 1,\n",
      "          'help': 1,\n",
      "          'rumbles': 1,\n",
      "          'hums': 1,\n",
      "          'belches': 1,\n",
      "          'remarkable': 1,\n",
      "          'sights': 1,\n",
      "          'nportals': 1,\n",
      "          'become': 1,\n",
      "          'veiny': 1,\n",
      "          'stainedglass': 1,\n",
      "          'eyeballs': 1,\n",
      "          'fireplace': 1,\n",
      "          'guarded': 1,\n",
      "          'stone': 1,\n",
      "          'lions': 1,\n",
      "          'gapes': 1,\n",
      "          'like': 1,\n",
      "          'mouth': 1,\n",
      "          'nfilmy': 1,\n",
      "          'cherubic': 1,\n",
      "          'spirits': 1,\n",
      "          'shape': 1,\n",
      "          'sheets': 1,\n",
      "          'billowy': 1,\n",
      "          'curtains': 1,\n",
      "          'computerized': 1,\n",
      "          'spooketeria': 1,\n",
      "          'rarely': 1,\n",
      "          'feels': 1,\n",
      "          'real': 1,\n",
      "          'placing': 1,\n",
      "          'wall': 1,\n",
      "          'audience': 1,\n",
      "          'half': 1,\n",
      "          'main': 1,\n",
      "          'heroine': 1,\n",
      "          'running': 1,\n",
      "          'back': 1,\n",
      "          'lamps': 1,\n",
      "          'evil': 1,\n",
      "          'furniture': 1,\n",
      "          'exciting': 1,\n",
      "          'worst': 1,\n",
      "          'thing': 1,\n",
      "          'based': 1,\n",
      "          'shirley': 1,\n",
      "          'jackson': 1,\n",
      "          '1963': 1,\n",
      "          'adaptation': 1,\n",
      "          'intelligent': 1,\n",
      "          'played': 1,\n",
      "          'greatest': 1,\n",
      "          'fears': 1,\n",
      "          'sub': 1,\n",
      "          'conscience': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'project': 1,\n",
      "          'cost': 1,\n",
      "          'less': 1,\n",
      "          'old': 1,\n",
      "          'car': 1,\n",
      "          'managed': 1,\n",
      "          'shock': 1,\n",
      "          'terrify': 1,\n",
      "          'audiences': 1,\n",
      "          'senses': 1,\n",
      "          '70': 1,\n",
      "          'mill': 1,\n",
      "          'nbudget': 1,\n",
      "          'screenwriter': 1,\n",
      "          'david': 1,\n",
      "          'self': 1,\n",
      "          'hash': 1,\n",
      "          'perfectly': 1,\n",
      "          'lovely': 1,\n",
      "          'piece': 1,\n",
      "          'terror': 1,\n",
      "          'nde': 1,\n",
      "          'filmmaking': 1,\n",
      "          'line': 1,\n",
      "          'frightening': 1,\n",
      "          'nhe': 1,\n",
      "          'master': 1,\n",
      "          'extravagant': 1,\n",
      "          'effect': 1,\n",
      "          'big': 1,\n",
      "          'visual': 1,\n",
      "          'adrenaline': 1,\n",
      "          'rush': 1,\n",
      "          'give': 1,\n",
      "          'serious': 1,\n",
      "          'nin': 1,\n",
      "          'haunt': 1,\n",
      "          'fledgling': 1,\n",
      "          'studio': 1,\n",
      "          'dream': 1,\n",
      "          'works': 1,\n",
      "          'skg': 1,\n",
      "          'bonts': 1,\n",
      "          'career': 1,\n",
      "          'director': 1,\n",
      "          'nyet': 1,\n",
      "          'wouldnt': 1,\n",
      "          'fair': 1,\n",
      "          'everything': 1,\n",
      "          'truly': 1,\n",
      "          'wonderfully': 1,\n",
      "          'decorated': 1,\n",
      "          'beautiful': 1,\n",
      "          'mysterious': 1,\n",
      "          'magical': 1,\n",
      "          'spooky': 1,\n",
      "          'music': 1,\n",
      "          'blaring': 1,\n",
      "          'floors': 1,\n",
      "          'moving': 1,\n",
      "          'ceiling': 1,\n",
      "          'morphing': 1,\n",
      "          'pictures': 1,\n",
      "          'walls': 1,\n",
      "          'screaming': 1,\n",
      "          'moment': 1,\n",
      "          'time': 1,\n",
      "          'without': 1,\n",
      "          'life': 1,\n",
      "          'nothing': 1,\n",
      "          'effectsextravaganza': 1,\n",
      "          'visually': 1,\n",
      "          'intellectually': 1,\n",
      "          'hollow': 1,\n",
      "          'thriller': 1,\n",
      "          'simply': 1,\n",
      "          'doesnt': 1,\n",
      "          'engage': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'know': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'part': 1,\n",
      "          'nare': 1,\n",
      "          'hallucinations': 1,\n",
      "          'nprojections': 1,\n",
      "          'subconscience': 1,\n",
      "          'nparanoia': 1,\n",
      "          'happening': 1,\n",
      "          'possessed': 1,\n",
      "          'point': 1,\n",
      "          'hopes': 1,\n",
      "          'entertainment': 1,\n",
      "          'disappears': 1,\n",
      "          'window': 1,\n",
      "          'nfor': 1,\n",
      "          'ever': 1,\n",
      "          'sat': 1,\n",
      "          'anticipation': 1,\n",
      "          'decent': 1,\n",
      "          'thats': 1,\n",
      "          'got': 1,\n",
      "          'believe': 1,\n",
      "          'said': 1,\n",
      "          'better': 1,\n",
      "          'wait': 1,\n",
      "          'nthis': 1,\n",
      "          'may': 1,\n",
      "          'true': 1,\n",
      "          'work': 1,\n",
      "          'problem': 1,\n",
      "          'nthey': 1,\n",
      "          'impossible': 1,\n",
      "          'seriously': 1,\n",
      "          'nany': 1,\n",
      "          'paralells': 1,\n",
      "          'heard': 1,\n",
      "          'linking': 1,\n",
      "          'picture': 1,\n",
      "          'kubricks': 1,\n",
      "          'baseless': 1,\n",
      "          'class': 1,\n",
      "          'acting': 1,\n",
      "          'talent': 1,\n",
      "          'originality': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'boast': 1,\n",
      "          'elements': 1,\n",
      "          'alone': 1,\n",
      "          'enough': 1,\n",
      "          'ncasting': 1,\n",
      "          'small': 1,\n",
      "          'pale': 1,\n",
      "          'parts': 1,\n",
      "          'makes': 1,\n",
      "          'worse': 1,\n",
      "          'guess': 1,\n",
      "          'matter': 1,\n",
      "          'critics': 1,\n",
      "          'write': 1,\n",
      "          'anyway': 1,\n",
      "          'even': 1,\n",
      "          'would': 1,\n",
      "          'films': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mona': 6,\n",
      "          'griffin': 6,\n",
      "          'nthe': 6,\n",
      "          'porter': 4,\n",
      "          'ellie': 4,\n",
      "          'film': 4,\n",
      "          'town': 4,\n",
      "          'country': 4,\n",
      "          'beatty': 3,\n",
      "          'friends': 3,\n",
      "          'begins': 3,\n",
      "          'stoddard': 2,\n",
      "          'successful': 2,\n",
      "          'years': 2,\n",
      "          'marital': 2,\n",
      "          'cinematographer': 2,\n",
      "          'william': 2,\n",
      "          'fraker': 2,\n",
      "          'buck': 2,\n",
      "          'henry': 2,\n",
      "          'chelsom': 2,\n",
      "          'funny': 2,\n",
      "          'bones': 2,\n",
      "          'nafter': 2,\n",
      "          'scene': 2,\n",
      "          'finds': 2,\n",
      "          'divorce': 2,\n",
      "          'thinks': 2,\n",
      "          'trip': 2,\n",
      "          'two': 2,\n",
      "          'end': 2,\n",
      "          'never': 2,\n",
      "          'home': 2,\n",
      "          'second': 2,\n",
      "          'tell': 2,\n",
      "          'porters': 2,\n",
      "          'sun': 2,\n",
      "          'valley': 2,\n",
      "          'misadventures': 2,\n",
      "          'women': 2,\n",
      "          'back': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'city': 2,\n",
      "          'nwhile': 2,\n",
      "          'character': 2,\n",
      "          'mostly': 2,\n",
      "          'sex': 2,\n",
      "          'wives': 2,\n",
      "          'seldes': 2,\n",
      "          'films': 2,\n",
      "          'warren': 1,\n",
      "          'architect': 1,\n",
      "          'married': 1,\n",
      "          'fabric': 1,\n",
      "          'designer': 1,\n",
      "          'diane': 1,\n",
      "          'keaton': 1,\n",
      "          'twentyfive': 1,\n",
      "          'nthey': 1,\n",
      "          'best': 1,\n",
      "          'goldie': 1,\n",
      "          'hawn': 1,\n",
      "          'garry': 1,\n",
      "          'shandling': 1,\n",
      "          'face': 1,\n",
      "          'crises': 1,\n",
      "          'well': 1,\n",
      "          'known': 1,\n",
      "          'torturous': 1,\n",
      "          'path': 1,\n",
      "          'screen': 1,\n",
      "          'n': 1,\n",
      "          'pedigree': 1,\n",
      "          'befitting': 1,\n",
      "          'title': 1,\n",
      "          'star': 1,\n",
      "          'cast': 1,\n",
      "          'photographed': 1,\n",
      "          'oscar': 1,\n",
      "          'nominated': 1,\n",
      "          'mouthing': 1,\n",
      "          'words': 1,\n",
      "          'screenwriter': 1,\n",
      "          'graduate': 1,\n",
      "          'direction': 1,\n",
      "          'peter': 1,\n",
      "          'reports': 1,\n",
      "          'budget': 1,\n",
      "          'overruns': 1,\n",
      "          'reshoots': 1,\n",
      "          'racking': 1,\n",
      "          'twelve': 1,\n",
      "          'different': 1,\n",
      "          'release': 1,\n",
      "          'dates': 1,\n",
      "          'media': 1,\n",
      "          'prepped': 1,\n",
      "          'beattys': 1,\n",
      "          'next': 1,\n",
      "          'ishtar': 1,\n",
      "          'nso': 1,\n",
      "          'bad': 1,\n",
      "          'answer': 1,\n",
      "          'nbut': 1,\n",
      "          'good': 1,\n",
      "          'either': 1,\n",
      "          'major': 1,\n",
      "          'problem': 1,\n",
      "          'unstructured': 1,\n",
      "          'random': 1,\n",
      "          'nstoddard': 1,\n",
      "          'immediately': 1,\n",
      "          'established': 1,\n",
      "          'philanderer': 1,\n",
      "          'bedded': 1,\n",
      "          'flaky': 1,\n",
      "          'cellist': 1,\n",
      "          'nastassja': 1,\n",
      "          'kinski': 1,\n",
      "          'nnext': 1,\n",
      "          'celebrating': 1,\n",
      "          'anniversary': 1,\n",
      "          'paris': 1,\n",
      "          'nthen': 1,\n",
      "          'spies': 1,\n",
      "          'hustling': 1,\n",
      "          'redhead': 1,\n",
      "          'motel': 1,\n",
      "          'proceedings': 1,\n",
      "          'cameos': 1,\n",
      "          'couples': 1,\n",
      "          'lawyer': 1,\n",
      "          'nellie': 1,\n",
      "          'shes': 1,\n",
      "          'overeacting': 1,\n",
      "          'sends': 1,\n",
      "          'support': 1,\n",
      "          'check': 1,\n",
      "          'familys': 1,\n",
      "          'mississippi': 1,\n",
      "          'manse': 1,\n",
      "          'childhood': 1,\n",
      "          'bed': 1,\n",
      "          'together': 1,\n",
      "          'making': 1,\n",
      "          'us': 1,\n",
      "          'wonder': 1,\n",
      "          'theyd': 1,\n",
      "          'become': 1,\n",
      "          'couple': 1,\n",
      "          'begin': 1,\n",
      "          'nback': 1,\n",
      "          'coupling': 1,\n",
      "          'interrupted': 1,\n",
      "          'bursting': 1,\n",
      "          'cheating': 1,\n",
      "          'nporter': 1,\n",
      "          'goes': 1,\n",
      "          'idaho': 1,\n",
      "          'comic': 1,\n",
      "          'wacky': 1,\n",
      "          'attempts': 1,\n",
      "          'hes': 1,\n",
      "          'gay': 1,\n",
      "          'four': 1,\n",
      "          'along': 1,\n",
      "          'every': 1,\n",
      "          'woman': 1,\n",
      "          'dallied': 1,\n",
      "          'somewhat': 1,\n",
      "          'happily': 1,\n",
      "          'ever': 1,\n",
      "          'nalthough': 1,\n",
      "          'promisingly': 1,\n",
      "          'resembling': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'take': 1,\n",
      "          'wasps': 1,\n",
      "          'many': 1,\n",
      "          'strands': 1,\n",
      "          'drift': 1,\n",
      "          'nowhere': 1,\n",
      "          'household': 1,\n",
      "          'huge': 1,\n",
      "          'containing': 1,\n",
      "          'adult': 1,\n",
      "          'children': 1,\n",
      "          'josh': 1,\n",
      "          'hartnett': 1,\n",
      "          'virgin': 1,\n",
      "          'suicides': 1,\n",
      "          'tricia': 1,\n",
      "          'vessey': 1,\n",
      "          'kiss': 1,\n",
      "          'girls': 1,\n",
      "          'colorful': 1,\n",
      "          'bedmates': 1,\n",
      "          'maid': 1,\n",
      "          'whos': 1,\n",
      "          'imported': 1,\n",
      "          'shirtless': 1,\n",
      "          'boyfriend': 1,\n",
      "          'rainforest': 1,\n",
      "          'amusing': 1,\n",
      "          'early': 1,\n",
      "          'overhearing': 1,\n",
      "          'three': 1,\n",
      "          'bouts': 1,\n",
      "          'lovemaking': 1,\n",
      "          'search': 1,\n",
      "          'nocturnal': 1,\n",
      "          'snack': 1,\n",
      "          'six': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'dropped': 1,\n",
      "          'except': 1,\n",
      "          'outofnowhere': 1,\n",
      "          'appearance': 1,\n",
      "          'formerly': 1,\n",
      "          'forgotten': 1,\n",
      "          'son': 1,\n",
      "          'nporters': 1,\n",
      "          'romantic': 1,\n",
      "          'equally': 1,\n",
      "          'mishandled': 1,\n",
      "          'nonce': 1,\n",
      "          'discord': 1,\n",
      "          'seems': 1,\n",
      "          'editted': 1,\n",
      "          'machete': 1,\n",
      "          'stopping': 1,\n",
      "          'starting': 1,\n",
      "          'regaining': 1,\n",
      "          'rhythm': 1,\n",
      "          'gets': 1,\n",
      "          'tart': 1,\n",
      "          'observations': 1,\n",
      "          'passive': 1,\n",
      "          'bemused': 1,\n",
      "          'nmaybe': 1,\n",
      "          'supposed': 1,\n",
      "          'feel': 1,\n",
      "          'sympathy': 1,\n",
      "          'adulterer': 1,\n",
      "          'doesnt': 1,\n",
      "          'initiate': 1,\n",
      "          'romps': 1,\n",
      "          'nkeatons': 1,\n",
      "          'trusting': 1,\n",
      "          'nature': 1,\n",
      "          'thats': 1,\n",
      "          'result': 1,\n",
      "          'self': 1,\n",
      "          'involvement': 1,\n",
      "          'resulting': 1,\n",
      "          'unlikeable': 1,\n",
      "          'nhawn': 1,\n",
      "          'smartly': 1,\n",
      "          'recycles': 1,\n",
      "          'mature': 1,\n",
      "          'kitten': 1,\n",
      "          'towners': 1,\n",
      "          'first': 1,\n",
      "          'club': 1,\n",
      "          'shandlings': 1,\n",
      "          'relegated': 1,\n",
      "          'true': 1,\n",
      "          'banana': 1,\n",
      "          'status': 1,\n",
      "          'nkinski': 1,\n",
      "          'bland': 1,\n",
      "          'unmotivated': 1,\n",
      "          'nandie': 1,\n",
      "          'macdowell': 1,\n",
      "          'takes': 1,\n",
      "          'weirdly': 1,\n",
      "          'unappealing': 1,\n",
      "          'role': 1,\n",
      "          'screenplays': 1,\n",
      "          'bizarre': 1,\n",
      "          'subplot': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'rifle': 1,\n",
      "          'toting': 1,\n",
      "          'billionaire': 1,\n",
      "          'daddy': 1,\n",
      "          'marian': 1,\n",
      "          'alcoholic': 1,\n",
      "          'wheelchairbound': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'mother': 1,\n",
      "          'nheston': 1,\n",
      "          'fun': 1,\n",
      "          'jenna': 1,\n",
      "          'elfman': 1,\n",
      "          'bait': 1,\n",
      "          'tackle': 1,\n",
      "          'salesgirl': 1,\n",
      "          'brings': 1,\n",
      "          'halloween': 1,\n",
      "          'party': 1,\n",
      "          'noscar': 1,\n",
      "          'nominatored': 1,\n",
      "          'gives': 1,\n",
      "          'nice': 1,\n",
      "          'look': 1,\n",
      "          'director': 1,\n",
      "          'shows': 1,\n",
      "          'none': 1,\n",
      "          'quirkily': 1,\n",
      "          'blackly': 1,\n",
      "          'humorous': 1,\n",
      "          'depth': 1,\n",
      "          'brought': 1,\n",
      "          'like': 1,\n",
      "          'hear': 1,\n",
      "          'song': 1,\n",
      "          'script': 1,\n",
      "          'weakest': 1,\n",
      "          'link': 1,\n",
      "          'telling': 1,\n",
      "          'laughs': 1,\n",
      "          'come': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'physical': 1,\n",
      "          'slapstick': 1,\n",
      "          'sight': 1,\n",
      "          'bear': 1,\n",
      "          'suit': 1,\n",
      "          'isnt': 1,\n",
      "          'exactly': 1,\n",
      "          'painful': 1,\n",
      "          'sit': 1,\n",
      "          'lays': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 14,\n",
      "          'case': 8,\n",
      "          'hes': 7,\n",
      "          'one': 6,\n",
      "          'nthe': 6,\n",
      "          '8mm': 6,\n",
      "          'see': 6,\n",
      "          'welles': 6,\n",
      "          'cage': 6,\n",
      "          'whole': 6,\n",
      "          'lawyer': 6,\n",
      "          'car': 6,\n",
      "          'someone': 4,\n",
      "          'fact': 4,\n",
      "          'first': 4,\n",
      "          'thing': 4,\n",
      "          'would': 4,\n",
      "          'gun': 4,\n",
      "          'side': 4,\n",
      "          'schumacher': 3,\n",
      "          'private': 3,\n",
      "          'hired': 3,\n",
      "          'actually': 3,\n",
      "          'nso': 3,\n",
      "          'main': 3,\n",
      "          'nthen': 3,\n",
      "          'reach': 3,\n",
      "          'around': 3,\n",
      "          'music': 3,\n",
      "          'capable': 3,\n",
      "          'following': 2,\n",
      "          'review': 2,\n",
      "          'n': 2,\n",
      "          'joel': 2,\n",
      "          'ni': 2,\n",
      "          'heard': 2,\n",
      "          'noh': 2,\n",
      "          'wish': 2,\n",
      "          'nin': 2,\n",
      "          'everything': 2,\n",
      "          'minutes': 2,\n",
      "          'detective': 2,\n",
      "          'mind': 2,\n",
      "          'important': 2,\n",
      "          'returns': 2,\n",
      "          'home': 2,\n",
      "          'even': 2,\n",
      "          'time': 2,\n",
      "          'rake': 2,\n",
      "          'yard': 2,\n",
      "          'woman': 2,\n",
      "          'comes': 2,\n",
      "          'snuff': 2,\n",
      "          'young': 2,\n",
      "          'type': 2,\n",
      "          'character': 2,\n",
      "          'bad': 2,\n",
      "          'instinct': 2,\n",
      "          'anything': 2,\n",
      "          'part': 2,\n",
      "          'going': 2,\n",
      "          'get': 2,\n",
      "          'give': 2,\n",
      "          'characters': 2,\n",
      "          'trying': 2,\n",
      "          'goes': 2,\n",
      "          'really': 2,\n",
      "          'performance': 2,\n",
      "          'mr': 2,\n",
      "          'contains': 1,\n",
      "          'spoilers': 1,\n",
      "          'please': 1,\n",
      "          'stop': 1,\n",
      "          'vomits': 1,\n",
      "          'canister': 1,\n",
      "          'tries': 1,\n",
      "          'pass': 1,\n",
      "          'movie': 1,\n",
      "          'chuck': 1,\n",
      "          'dowling': 1,\n",
      "          'jacksonville': 1,\n",
      "          'journal': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wrote': 1,\n",
      "          'sentence': 1,\n",
      "          '1997s': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'napparently': 1,\n",
      "          'words': 1,\n",
      "          'stopped': 1,\n",
      "          'nbecause': 1,\n",
      "          'done': 1,\n",
      "          'plot': 1,\n",
      "          'similar': 1,\n",
      "          '1977': 1,\n",
      "          'paul': 1,\n",
      "          'schrader': 1,\n",
      "          'hardcore': 1,\n",
      "          'surprisingly': 1,\n",
      "          'decent': 1,\n",
      "          'engrossing': 1,\n",
      "          'tale': 1,\n",
      "          'opening': 1,\n",
      "          'tom': 1,\n",
      "          'nicolas': 1,\n",
      "          'working': 1,\n",
      "          'prestigious': 1,\n",
      "          'member': 1,\n",
      "          'u': 1,\n",
      "          'government': 1,\n",
      "          'nkeep': 1,\n",
      "          'trusted': 1,\n",
      "          'solves': 1,\n",
      "          'nhe': 1,\n",
      "          'wife': 1,\n",
      "          'new': 1,\n",
      "          'daughter': 1,\n",
      "          'finds': 1,\n",
      "          'keep': 1,\n",
      "          'well': 1,\n",
      "          'nhes': 1,\n",
      "          'rich': 1,\n",
      "          'elderly': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          'nafter': 1,\n",
      "          'husbands': 1,\n",
      "          'death': 1,\n",
      "          'across': 1,\n",
      "          'safe': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'sort': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'pornography': 1,\n",
      "          'industry': 1,\n",
      "          'brutally': 1,\n",
      "          'murdered': 1,\n",
      "          'camera': 1,\n",
      "          'wants': 1,\n",
      "          'locate': 1,\n",
      "          'girl': 1,\n",
      "          'hopefully': 1,\n",
      "          'disprove': 1,\n",
      "          'sets': 1,\n",
      "          'journey': 1,\n",
      "          'sordid': 1,\n",
      "          'underworld': 1,\n",
      "          'sleaze': 1,\n",
      "          'discover': 1,\n",
      "          'truth': 1,\n",
      "          'problem': 1,\n",
      "          'completely': 1,\n",
      "          'pointless': 1,\n",
      "          'nwelles': 1,\n",
      "          'selected': 1,\n",
      "          'old': 1,\n",
      "          'womans': 1,\n",
      "          'anthony': 1,\n",
      "          'heald': 1,\n",
      "          'actor': 1,\n",
      "          'always': 1,\n",
      "          'plays': 1,\n",
      "          'guy': 1,\n",
      "          'nwhen': 1,\n",
      "          'behind': 1,\n",
      "          'choice': 1,\n",
      "          'casting': 1,\n",
      "          'begins': 1,\n",
      "          'investigation': 1,\n",
      "          'times': 1,\n",
      "          'shadowy': 1,\n",
      "          'figure': 1,\n",
      "          'person': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'sent': 1,\n",
      "          'knows': 1,\n",
      "          'investigating': 1,\n",
      "          'yet': 1,\n",
      "          'confirmed': 1,\n",
      "          'revealed': 1,\n",
      "          'tells': 1,\n",
      "          'chosen': 1,\n",
      "          'inexperienced': 1,\n",
      "          'ridiculous': 1,\n",
      "          'since': 1,\n",
      "          'kill': 1,\n",
      "          'anyway': 1,\n",
      "          'tell': 1,\n",
      "          'moments': 1,\n",
      "          'nbut': 1,\n",
      "          'earlier': 1,\n",
      "          'told': 1,\n",
      "          'highly': 1,\n",
      "          'recommended': 1,\n",
      "          'nhuh': 1,\n",
      "          'nalso': 1,\n",
      "          'reveals': 1,\n",
      "          'goal': 1,\n",
      "          'back': 1,\n",
      "          'place': 1,\n",
      "          'gave': 1,\n",
      "          'away': 1,\n",
      "          'thinking': 1,\n",
      "          'return': 1,\n",
      "          'nits': 1,\n",
      "          'totally': 1,\n",
      "          'absurd': 1,\n",
      "          'nand': 1,\n",
      "          'screenwriter': 1,\n",
      "          'seven': 1,\n",
      "          'nlate': 1,\n",
      "          'theres': 1,\n",
      "          'confrontation': 1,\n",
      "          'struggle': 1,\n",
      "          'guns': 1,\n",
      "          'ends': 1,\n",
      "          'underneath': 1,\n",
      "          'ncage': 1,\n",
      "          'handcuffed': 1,\n",
      "          'bed': 1,\n",
      "          'rapidly': 1,\n",
      "          'table': 1,\n",
      "          'njames': 1,\n",
      "          'gandolfinis': 1,\n",
      "          'supposed': 1,\n",
      "          'scene': 1,\n",
      "          'suspense': 1,\n",
      "          'nyou': 1,\n",
      "          'slightly': 1,\n",
      "          'instead': 1,\n",
      "          'easily': 1,\n",
      "          'keeps': 1,\n",
      "          'stretching': 1,\n",
      "          'ngo': 1,\n",
      "          'nthis': 1,\n",
      "          'gets': 1,\n",
      "          'gandolfini': 1,\n",
      "          'decides': 1,\n",
      "          'best': 1,\n",
      "          'go': 1,\n",
      "          'nboy': 1,\n",
      "          'getting': 1,\n",
      "          'nerves': 1,\n",
      "          'think': 1,\n",
      "          'final': 1,\n",
      "          'straw': 1,\n",
      "          'devastated': 1,\n",
      "          'seen': 1,\n",
      "          'longer': 1,\n",
      "          'able': 1,\n",
      "          'lawn': 1,\n",
      "          'nwe': 1,\n",
      "          'shot': 1,\n",
      "          'pathetically': 1,\n",
      "          'poking': 1,\n",
      "          'leaves': 1,\n",
      "          'nother': 1,\n",
      "          'things': 1,\n",
      "          'bugged': 1,\n",
      "          'call': 1,\n",
      "          'nwhenever': 1,\n",
      "          'score': 1,\n",
      "          'starts': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'techno': 1,\n",
      "          'awful': 1,\n",
      "          'indian': 1,\n",
      "          'middle': 1,\n",
      "          'eastern': 1,\n",
      "          'accompany': 1,\n",
      "          'nawful': 1,\n",
      "          'decision': 1,\n",
      "          'nanother': 1,\n",
      "          'cages': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'wide': 1,\n",
      "          'range': 1,\n",
      "          'performances': 1,\n",
      "          'either': 1,\n",
      "          'good': 1,\n",
      "          'nfor': 1,\n",
      "          'delivers': 1,\n",
      "          'wooden': 1,\n",
      "          'shines': 1,\n",
      "          'interacting': 1,\n",
      "          'joaquin': 1,\n",
      "          'phoenix': 1,\n",
      "          'gives': 1,\n",
      "          'great': 1,\n",
      "          'porn': 1,\n",
      "          'shop': 1,\n",
      "          'clerk': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'helps': 1,\n",
      "          'nyoure': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'nnow': 1,\n",
      "          'nim': 1,\n",
      "          'starting': 1,\n",
      "          'doubt': 1,\n",
      "          'youre': 1,\n",
      "          'else': 1,\n",
      "          'besides': 1,\n",
      "          'urinating': 1,\n",
      "          'onto': 1,\n",
      "          'institution': 1,\n",
      "          'american': 1,\n",
      "          'cinema': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'bad': 4,\n",
      "          'day': 3,\n",
      "          'nit': 3,\n",
      "          'movie': 3,\n",
      "          'one': 3,\n",
      "          'cast': 3,\n",
      "          'thief': 3,\n",
      "          'back': 3,\n",
      "          'films': 2,\n",
      "          'worst': 2,\n",
      "          'made': 2,\n",
      "          'woke': 2,\n",
      "          'early': 2,\n",
      "          'died': 2,\n",
      "          'certainly': 2,\n",
      "          'nthe': 2,\n",
      "          'would': 2,\n",
      "          'goes': 2,\n",
      "          'nhe': 2,\n",
      "          'loan': 2,\n",
      "          'kills': 2,\n",
      "          'na': 2,\n",
      "          'money': 2,\n",
      "          'music': 2,\n",
      "          'fun': 2,\n",
      "          'low': 2,\n",
      "          'get': 2,\n",
      "          'time': 2,\n",
      "          'waste': 2,\n",
      "          'recent': 1,\n",
      "          'years': 1,\n",
      "          'mr': 1,\n",
      "          'nmagoo': 1,\n",
      "          'far': 1,\n",
      "          'ever': 1,\n",
      "          'spectacularly': 1,\n",
      "          'blue': 1,\n",
      "          'face': 1,\n",
      "          'horrible': 1,\n",
      "          'baby': 1,\n",
      "          'genuises': 1,\n",
      "          'may': 1,\n",
      "          'however': 1,\n",
      "          'ranks': 1,\n",
      "          'acting': 1,\n",
      "          'thats': 1,\n",
      "          'want': 1,\n",
      "          'call': 1,\n",
      "          'well': 1,\n",
      "          'mediocre': 1,\n",
      "          'nloaded': 1,\n",
      "          'sensational': 1,\n",
      "          'think': 1,\n",
      "          'least': 1,\n",
      "          'save': 1,\n",
      "          'bit': 1,\n",
      "          'boy': 1,\n",
      "          'wrong': 1,\n",
      "          'nafter': 1,\n",
      "          'escaping': 1,\n",
      "          'mental': 1,\n",
      "          'institution': 1,\n",
      "          'played': 1,\n",
      "          'billy': 1,\n",
      "          'zane': 1,\n",
      "          'real': 1,\n",
      "          'world': 1,\n",
      "          'finds': 1,\n",
      "          'pretty': 1,\n",
      "          'harsh': 1,\n",
      "          'gritty': 1,\n",
      "          'turns': 1,\n",
      "          'burglary': 1,\n",
      "          'survive': 1,\n",
      "          'robs': 1,\n",
      "          'officer': 1,\n",
      "          'runs': 1,\n",
      "          'thousands': 1,\n",
      "          'countrywide': 1,\n",
      "          'man': 1,\n",
      "          'hunt': 1,\n",
      "          'catch': 1,\n",
      "          'bring': 1,\n",
      "          'ends': 1,\n",
      "          'cemetery': 1,\n",
      "          'puts': 1,\n",
      "          'coffin': 1,\n",
      "          'keep': 1,\n",
      "          'later': 1,\n",
      "          'comes': 1,\n",
      "          'realizes': 1,\n",
      "          'someone': 1,\n",
      "          'took': 1,\n",
      "          'put': 1,\n",
      "          'somewhere': 1,\n",
      "          'nnow': 1,\n",
      "          'determined': 1,\n",
      "          'kill': 1,\n",
      "          'visitors': 1,\n",
      "          'funeral': 1,\n",
      "          'earlier': 1,\n",
      "          'gets': 1,\n",
      "          'ultimately': 1,\n",
      "          'leading': 1,\n",
      "          'finale': 1,\n",
      "          'less': 1,\n",
      "          'satisfying': 1,\n",
      "          'based': 1,\n",
      "          'longlost': 1,\n",
      "          'script': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'question': 1,\n",
      "          'dialogue': 1,\n",
      "          'movement': 1,\n",
      "          'exactly': 1,\n",
      "          'point': 1,\n",
      "          'moves': 1,\n",
      "          'along': 1,\n",
      "          'rather': 1,\n",
      "          'slow': 1,\n",
      "          'pace': 1,\n",
      "          'advantage': 1,\n",
      "          'soundtrack': 1,\n",
      "          'catchy': 1,\n",
      "          'vibrant': 1,\n",
      "          'except': 1,\n",
      "          'first': 1,\n",
      "          'song': 1,\n",
      "          'offensive': 1,\n",
      "          'opens': 1,\n",
      "          'innovative': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'sequence': 1,\n",
      "          'quickly': 1,\n",
      "          'downhill': 1,\n",
      "          'nsome': 1,\n",
      "          'points': 1,\n",
      "          'steals': 1,\n",
      "          'womans': 1,\n",
      "          'purse': 1,\n",
      "          'faints': 1,\n",
      "          'sandra': 1,\n",
      "          'bernhard': 1,\n",
      "          'dancer': 1,\n",
      "          'tippi': 1,\n",
      "          'hendren': 1,\n",
      "          'deaf': 1,\n",
      "          'woman': 1,\n",
      "          'psycho': 1,\n",
      "          'ncome': 1,\n",
      "          'people': 1,\n",
      "          'new': 1,\n",
      "          'ideas': 1,\n",
      "          'already': 1,\n",
      "          'nwhats': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'plot': 1,\n",
      "          'nwell': 1,\n",
      "          'certain': 1,\n",
      "          'extent': 1,\n",
      "          'cares': 1,\n",
      "          'middle': 1,\n",
      "          'arrives': 1,\n",
      "          'bored': 1,\n",
      "          'mind': 1,\n",
      "          'ready': 1,\n",
      "          'something': 1,\n",
      "          'exciting': 1,\n",
      "          'happen': 1,\n",
      "          'ni': 1,\n",
      "          'perfectly': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'filmmakers': 1,\n",
      "          'sometimes': 1,\n",
      "          'desperate': 1,\n",
      "          'make': 1,\n",
      "          'neven': 1,\n",
      "          'huge': 1,\n",
      "          'talent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'ronin': 8,\n",
      "          'nthe': 6,\n",
      "          'characters': 5,\n",
      "          'would': 4,\n",
      "          'films': 4,\n",
      "          'two': 4,\n",
      "          'seems': 4,\n",
      "          'good': 4,\n",
      "          'case': 4,\n",
      "          'may': 3,\n",
      "          'man': 3,\n",
      "          'plot': 3,\n",
      "          'one': 3,\n",
      "          'nsam': 3,\n",
      "          'professional': 3,\n",
      "          'metal': 3,\n",
      "          'know': 3,\n",
      "          '4': 3,\n",
      "          '47': 3,\n",
      "          'american': 2,\n",
      "          'thriller': 2,\n",
      "          'nsome': 2,\n",
      "          'people': 2,\n",
      "          'pick': 2,\n",
      "          'others': 2,\n",
      "          'tense': 2,\n",
      "          'came': 2,\n",
      "          'frankenheimer': 2,\n",
      "          'little': 2,\n",
      "          'nthey': 2,\n",
      "          'way': 2,\n",
      "          'chases': 2,\n",
      "          'like': 2,\n",
      "          'another': 2,\n",
      "          'get': 2,\n",
      "          'samurai': 2,\n",
      "          'nthis': 2,\n",
      "          'nhe': 2,\n",
      "          'really': 2,\n",
      "          'killer': 2,\n",
      "          'business': 2,\n",
      "          'irish': 2,\n",
      "          'action': 2,\n",
      "          'team': 2,\n",
      "          'also': 2,\n",
      "          'breaking': 2,\n",
      "          'nalso': 2,\n",
      "          'group': 2,\n",
      "          'never': 2,\n",
      "          'involved': 2,\n",
      "          'actors': 2,\n",
      "          'deep': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          'hard': 1,\n",
      "          'choose': 1,\n",
      "          'best': 1,\n",
      "          'political': 1,\n",
      "          'probably': 1,\n",
      "          'manchurian': 1,\n",
      "          'candidate': 1,\n",
      "          'included': 1,\n",
      "          'seven': 1,\n",
      "          'days': 1,\n",
      "          'nboth': 1,\n",
      "          'exercises': 1,\n",
      "          'chills': 1,\n",
      "          'within': 1,\n",
      "          'years': 1,\n",
      "          'directed': 1,\n",
      "          'john': 1,\n",
      "          'nbut': 1,\n",
      "          '1962': 1,\n",
      "          '1964': 1,\n",
      "          'respectively': 1,\n",
      "          'nfor': 1,\n",
      "          'rest': 1,\n",
      "          'career': 1,\n",
      "          'turned': 1,\n",
      "          'decent': 1,\n",
      "          'shown': 1,\n",
      "          'promise': 1,\n",
      "          'thrillers': 1,\n",
      "          'showed': 1,\n",
      "          'neach': 1,\n",
      "          'memorable': 1,\n",
      "          'almost': 1,\n",
      "          'nothing': 1,\n",
      "          'gunplay': 1,\n",
      "          'thrills': 1,\n",
      "          'nronin': 1,\n",
      "          'made': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'behind': 1,\n",
      "          'shooting': 1,\n",
      "          'explosions': 1,\n",
      "          'car': 1,\n",
      "          'rudiments': 1,\n",
      "          'ofa': 1,\n",
      "          'see': 1,\n",
      "          'tiny': 1,\n",
      "          'pieces': 1,\n",
      "          'nwe': 1,\n",
      "          'clue': 1,\n",
      "          'going': 1,\n",
      "          'j': 1,\n",
      "          'zeiks': 1,\n",
      "          'screenplay': 1,\n",
      "          'bit': 1,\n",
      "          'obscure': 1,\n",
      "          'begins': 1,\n",
      "          'explaining': 1,\n",
      "          'masterless': 1,\n",
      "          'nwhen': 1,\n",
      "          'failed': 1,\n",
      "          'job': 1,\n",
      "          'protecting': 1,\n",
      "          'master': 1,\n",
      "          'death': 1,\n",
      "          'becomes': 1,\n",
      "          'much': 1,\n",
      "          'gunfighter': 1,\n",
      "          'west': 1,\n",
      "          'nif': 1,\n",
      "          'miss': 1,\n",
      "          'opening': 1,\n",
      "          'worry': 1,\n",
      "          'explain': 1,\n",
      "          'played': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'niro': 1,\n",
      "          'modern': 1,\n",
      "          'equivalent': 1,\n",
      "          'free': 1,\n",
      "          'agent': 1,\n",
      "          'instincts': 1,\n",
      "          'stay': 1,\n",
      "          'alive': 1,\n",
      "          'world': 1,\n",
      "          'clearly': 1,\n",
      "          'dangerous': 1,\n",
      "          'time': 1,\n",
      "          'drifting': 1,\n",
      "          'around': 1,\n",
      "          'somewhere': 1,\n",
      "          'france': 1,\n",
      "          'recruited': 1,\n",
      "          'montmartre': 1,\n",
      "          'bar': 1,\n",
      "          'dierdre': 1,\n",
      "          'natascha': 1,\n",
      "          'mcelhone': 1,\n",
      "          'truman': 1,\n",
      "          'show': 1,\n",
      "          'woman': 1,\n",
      "          'part': 1,\n",
      "          'steal': 1,\n",
      "          'mysterious': 1,\n",
      "          'ndierdre': 1,\n",
      "          'tightlipped': 1,\n",
      "          'joins': 1,\n",
      "          'four': 1,\n",
      "          'vincent': 1,\n",
      "          'jean': 1,\n",
      "          'reno': 1,\n",
      "          'professionalleon': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'spence': 1,\n",
      "          'sean': 1,\n",
      "          'bean': 1,\n",
      "          'tvs': 1,\n",
      "          'richard': 1,\n",
      "          'sharpe': 1,\n",
      "          'patriot': 1,\n",
      "          'games': 1,\n",
      "          'goldeneye': 1,\n",
      "          'gregor': 1,\n",
      "          'stellan': 1,\n",
      "          'skarsgard': 1,\n",
      "          'waves': 1,\n",
      "          'hunting': 1,\n",
      "          'along': 1,\n",
      "          'larry': 1,\n",
      "          'skipp': 1,\n",
      "          'suddeth': 1,\n",
      "          'particularly': 1,\n",
      "          'sam': 1,\n",
      "          'cold': 1,\n",
      "          'field': 1,\n",
      "          'expertise': 1,\n",
      "          'ntheir': 1,\n",
      "          'human': 1,\n",
      "          'side': 1,\n",
      "          'tensions': 1,\n",
      "          'among': 1,\n",
      "          'members': 1,\n",
      "          'story': 1,\n",
      "          'easy': 1,\n",
      "          'follow': 1,\n",
      "          'nit': 1,\n",
      "          'clear': 1,\n",
      "          'doublecrossing': 1,\n",
      "          'working': 1,\n",
      "          'nsomehow': 1,\n",
      "          'russians': 1,\n",
      "          'russian': 1,\n",
      "          'mafia': 1,\n",
      "          'radicals': 1,\n",
      "          'trying': 1,\n",
      "          'hands': 1,\n",
      "          'certain': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'saw': 1,\n",
      "          'script': 1,\n",
      "          'mostly': 1,\n",
      "          'onedimensional': 1,\n",
      "          'killers': 1,\n",
      "          'work': 1,\n",
      "          'seeing': 1,\n",
      "          'thought': 1,\n",
      "          'patterns': 1,\n",
      "          'adds': 1,\n",
      "          'interest': 1,\n",
      "          'feeling': 1,\n",
      "          'teaming': 1,\n",
      "          'neither': 1,\n",
      "          'killed': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'got': 1,\n",
      "          'anybody': 1,\n",
      "          'nmaybe': 1,\n",
      "          'secret': 1,\n",
      "          'took': 1,\n",
      "          'parts': 1,\n",
      "          'since': 1,\n",
      "          'demanding': 1,\n",
      "          'create': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'features': 1,\n",
      "          'jonathan': 1,\n",
      "          'pryce': 1,\n",
      "          'michael': 1,\n",
      "          'lonsdale': 1,\n",
      "          'latter': 1,\n",
      "          'moonraker': 1,\n",
      "          'superior': 1,\n",
      "          'day': 1,\n",
      "          'jackal': 1,\n",
      "          'nas': 1,\n",
      "          'revival': 1,\n",
      "          'sort': 1,\n",
      "          'popular': 1,\n",
      "          '1960s': 1,\n",
      "          'hoping': 1,\n",
      "          'something': 1,\n",
      "          'grab': 1,\n",
      "          'onto': 1,\n",
      "          'enjoy': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'make': 1,\n",
      "          'us': 1,\n",
      "          'care': 1,\n",
      "          'eventually': 1,\n",
      "          'ends': 1,\n",
      "          'want': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '10': 1,\n",
      "          'nnonspoiler': 1,\n",
      "          'incidentally': 1,\n",
      "          'tale': 1,\n",
      "          'filmed': 1,\n",
      "          'multiple': 1,\n",
      "          'times': 1,\n",
      "          'usually': 1,\n",
      "          'title': 1,\n",
      "          'chushingura': 1,\n",
      "          'frequently': 1,\n",
      "          'sees': 1,\n",
      "          'japanese': 1,\n",
      "          'art': 1,\n",
      "          'image': 1,\n",
      "          'door': 1,\n",
      "          'huge': 1,\n",
      "          'mallet': 1,\n",
      "          'first': 1,\n",
      "          'blow': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 8,\n",
      "          'think': 5,\n",
      "          'darnell': 4,\n",
      "          'get': 4,\n",
      "          'brandi': 4,\n",
      "          'doesnt': 3,\n",
      "          'one': 3,\n",
      "          'enough': 3,\n",
      "          'darnells': 3,\n",
      "          'sense': 3,\n",
      "          'would': 3,\n",
      "          'says': 3,\n",
      "          'nbut': 3,\n",
      "          'woman': 3,\n",
      "          'lawrences': 2,\n",
      "          'irresponsible': 2,\n",
      "          'case': 2,\n",
      "          'actions': 2,\n",
      "          'especially': 2,\n",
      "          'nhe': 2,\n",
      "          'guys': 2,\n",
      "          'women': 2,\n",
      "          'long': 2,\n",
      "          'nnow': 2,\n",
      "          'im': 2,\n",
      "          'beautiful': 2,\n",
      "          'nand': 2,\n",
      "          'period': 2,\n",
      "          'film': 2,\n",
      "          'real': 2,\n",
      "          'king': 2,\n",
      "          'guy': 2,\n",
      "          'hes': 2,\n",
      "          'dumb': 2,\n",
      "          'two': 2,\n",
      "          'though': 2,\n",
      "          'fall': 2,\n",
      "          'intelligent': 2,\n",
      "          'writers': 2,\n",
      "          'lot': 2,\n",
      "          'reese': 2,\n",
      "          'parts': 2,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'martin': 1,\n",
      "          'pet': 1,\n",
      "          'project': 1,\n",
      "          'thin': 1,\n",
      "          'line': 1,\n",
      "          'love': 1,\n",
      "          'hate': 1,\n",
      "          'fatal': 1,\n",
      "          'attraction': 1,\n",
      "          'variation': 1,\n",
      "          'protagonist': 1,\n",
      "          'man': 1,\n",
      "          'character': 1,\n",
      "          'jerk': 1,\n",
      "          'seem': 1,\n",
      "          'anything': 1,\n",
      "          'except': 1,\n",
      "          'justify': 1,\n",
      "          'womans': 1,\n",
      "          'nthat': 1,\n",
      "          'wright': 1,\n",
      "          'macho': 1,\n",
      "          'lined': 1,\n",
      "          'mile': 1,\n",
      "          'dont': 1,\n",
      "          'condone': 1,\n",
      "          'male': 1,\n",
      "          'nmy': 1,\n",
      "          'philosophy': 1,\n",
      "          'heterosexual': 1,\n",
      "          'males': 1,\n",
      "          'lucky': 1,\n",
      "          'hands': 1,\n",
      "          'kind': 1,\n",
      "          'girl': 1,\n",
      "          'treat': 1,\n",
      "          'princess': 1,\n",
      "          'respect': 1,\n",
      "          'ndarnell': 1,\n",
      "          'sleeps': 1,\n",
      "          'girls': 1,\n",
      "          'dumps': 1,\n",
      "          'discovered': 1,\n",
      "          'newest': 1,\n",
      "          'target': 1,\n",
      "          'wealthy': 1,\n",
      "          'web': 1,\n",
      "          'played': 1,\n",
      "          'nicely': 1,\n",
      "          'whitfield': 1,\n",
      "          'runs': 1,\n",
      "          'successful': 1,\n",
      "          'estate': 1,\n",
      "          'business': 1,\n",
      "          'kill': 1,\n",
      "          'dumping': 1,\n",
      "          'childdhood': 1,\n",
      "          'friend': 1,\n",
      "          'mia': 1,\n",
      "          'found': 1,\n",
      "          'thinking': 1,\n",
      "          'supposed': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'nafter': 1,\n",
      "          'largely': 1,\n",
      "          'fault': 1,\n",
      "          'nif': 1,\n",
      "          'lining': 1,\n",
      "          'youd': 1,\n",
      "          'hed': 1,\n",
      "          'common': 1,\n",
      "          'backfire': 1,\n",
      "          'day': 1,\n",
      "          'mother': 1,\n",
      "          'also': 1,\n",
      "          'pretty': 1,\n",
      "          'nyou': 1,\n",
      "          'tells': 1,\n",
      "          'killed': 1,\n",
      "          'husband': 1,\n",
      "          'allegedly': 1,\n",
      "          'abusing': 1,\n",
      "          'n': 1,\n",
      "          'id': 1,\n",
      "          'put': 1,\n",
      "          'pants': 1,\n",
      "          'seconds': 1,\n",
      "          'psycho': 1,\n",
      "          'bitch': 1,\n",
      "          'hard': 1,\n",
      "          'agree': 1,\n",
      "          'finale': 1,\n",
      "          'treating': 1,\n",
      "          'garbage': 1,\n",
      "          'none': 1,\n",
      "          'final': 1,\n",
      "          'flaw': 1,\n",
      "          'letting': 1,\n",
      "          'begin': 1,\n",
      "          'nbrandi': 1,\n",
      "          'classy': 1,\n",
      "          'mba': 1,\n",
      "          'harvard': 1,\n",
      "          'initally': 1,\n",
      "          'resists': 1,\n",
      "          'immature': 1,\n",
      "          'play': 1,\n",
      "          'calls': 1,\n",
      "          'life': 1,\n",
      "          'sudden': 1,\n",
      "          'yes': 1,\n",
      "          'listen': 1,\n",
      "          'four': 1,\n",
      "          'letter': 1,\n",
      "          'word': 1,\n",
      "          'vocabulary': 1,\n",
      "          'watch': 1,\n",
      "          'wonder': 1,\n",
      "          'much': 1,\n",
      "          'less': 1,\n",
      "          'unhealthy': 1,\n",
      "          'obsession': 1,\n",
      "          'nlawrence': 1,\n",
      "          'good': 1,\n",
      "          'wants': 1,\n",
      "          'order': 1,\n",
      "          'prove': 1,\n",
      "          'needs': 1,\n",
      "          'let': 1,\n",
      "          'people': 1,\n",
      "          'write': 1,\n",
      "          'direct': 1,\n",
      "          'movies': 1,\n",
      "          'nlook': 1,\n",
      "          'movie': 1,\n",
      "          'nfour': 1,\n",
      "          'result': 1,\n",
      "          'hours': 1,\n",
      "          'couldve': 1,\n",
      "          'easily': 1,\n",
      "          'worked': 1,\n",
      "          'ninety': 1,\n",
      "          'minutes': 1,\n",
      "          'subplots': 1,\n",
      "          'characters': 1,\n",
      "          'appear': 1,\n",
      "          'disappear': 1,\n",
      "          'quickly': 1,\n",
      "          'came': 1,\n",
      "          'makes': 1,\n",
      "          'didnt': 1,\n",
      "          'along': 1,\n",
      "          'isnt': 1,\n",
      "          'necessary': 1,\n",
      "          'nthere': 1,\n",
      "          'bright': 1,\n",
      "          'spots': 1,\n",
      "          'nwhitfield': 1,\n",
      "          'regina': 1,\n",
      "          'della': 1,\n",
      "          'bobby': 1,\n",
      "          'brown': 1,\n",
      "          'lazily': 1,\n",
      "          'written': 1,\n",
      "          'help': 1,\n",
      "          'funny': 1,\n",
      "          'example': 1,\n",
      "          'scene': 1,\n",
      "          'attempts': 1,\n",
      "          'fight': 1,\n",
      "          'whitfeld': 1,\n",
      "          'harrassing': 1,\n",
      "          'son': 1,\n",
      "          'damaging': 1,\n",
      "          'property': 1,\n",
      "          'theyre': 1,\n",
      "          'sustain': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'claire': 7,\n",
      "          'nthe': 6,\n",
      "          'noel': 5,\n",
      "          'nclaire': 4,\n",
      "          'lesbianism': 3,\n",
      "          'interesting': 3,\n",
      "          'f': 3,\n",
      "          'talk': 3,\n",
      "          'boring': 2,\n",
      "          'serious': 2,\n",
      "          'e': 2,\n",
      "          'like': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'one': 2,\n",
      "          'two': 2,\n",
      "          'writers': 2,\n",
      "          'thats': 2,\n",
      "          'lesbian': 2,\n",
      "          'looks': 2,\n",
      "          'yet': 2,\n",
      "          'get': 2,\n",
      "          'scene': 2,\n",
      "          'even': 2,\n",
      "          'way': 2,\n",
      "          'better': 2,\n",
      "          'capsule': 1,\n",
      "          'examined': 1,\n",
      "          'hushed': 1,\n",
      "          'reverential': 1,\n",
      "          'tones': 1,\n",
      "          'reserved': 1,\n",
      "          'terminal': 1,\n",
      "          'illness': 1,\n",
      "          'npotentially': 1,\n",
      "          'idea': 1,\n",
      "          'made': 1,\n",
      "          'stagy': 1,\n",
      "          'moon': 1,\n",
      "          'impossibly': 1,\n",
      "          'sober': 1,\n",
      "          'waiting': 1,\n",
      "          'someone': 1,\n",
      "          'sneeze': 1,\n",
      "          'break': 1,\n",
      "          'ice': 1,\n",
      "          'nits': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'wife': 1,\n",
      "          'calls': 1,\n",
      "          'nmovie': 1,\n",
      "          'nmeans': 1,\n",
      "          'ing': 1,\n",
      "          'earnest': 1,\n",
      "          'nmovies': 1,\n",
      "          'need': 1,\n",
      "          'wit': 1,\n",
      "          'brashness': 1,\n",
      "          'absorbing': 1,\n",
      "          'strained': 1,\n",
      "          'speech': 1,\n",
      "          'another': 1,\n",
      "          'written': 1,\n",
      "          'delivered': 1,\n",
      "          'energy': 1,\n",
      "          'spontenaity': 1,\n",
      "          'dmv': 1,\n",
      "          'clerk': 1,\n",
      "          'takes': 1,\n",
      "          'women': 1,\n",
      "          'throws': 1,\n",
      "          'together': 1,\n",
      "          'cabin': 1,\n",
      "          'womenonly': 1,\n",
      "          'retreat': 1,\n",
      "          'wrights': 1,\n",
      "          'light': 1,\n",
      "          'comedy': 1,\n",
      "          'scholarly': 1,\n",
      "          'authority': 1,\n",
      "          'porn': 1,\n",
      "          'sexual': 1,\n",
      "          'behavior': 1,\n",
      "          'nobviously': 1,\n",
      "          'going': 1,\n",
      "          'plenty': 1,\n",
      "          'entire': 1,\n",
      "          'hundred': 1,\n",
      "          'twelve': 1,\n",
      "          'insufferable': 1,\n",
      "          'minutes': 1,\n",
      "          'sets': 1,\n",
      "          'microscopic': 1,\n",
      "          'plot': 1,\n",
      "          'beatadeadhorseintoglue': 1,\n",
      "          'obviousness': 1,\n",
      "          'evening': 1,\n",
      "          'talks': 1,\n",
      "          'camp': 1,\n",
      "          'chaired': 1,\n",
      "          'motherly': 1,\n",
      "          'type': 1,\n",
      "          'named': 1,\n",
      "          'maggie': 1,\n",
      "          'selfprofessed': 1,\n",
      "          'owns': 1,\n",
      "          'also': 1,\n",
      "          'shes': 1,\n",
      "          'hit': 1,\n",
      "          'sockful': 1,\n",
      "          'wet': 1,\n",
      "          'sand': 1,\n",
      "          'quickly': 1,\n",
      "          'degenerates': 1,\n",
      "          'lots': 1,\n",
      "          'scenes': 1,\n",
      "          'glances': 1,\n",
      "          'significance': 1,\n",
      "          'water': 1,\n",
      "          'reflectively': 1,\n",
      "          'n': 1,\n",
      "          'ugh': 1,\n",
      "          'amazing': 1,\n",
      "          'thing': 1,\n",
      "          'people': 1,\n",
      "          'intelligent': 1,\n",
      "          'much': 1,\n",
      "          'little': 1,\n",
      "          'thick': 1,\n",
      "          'heads': 1,\n",
      "          'nall': 1,\n",
      "          'course': 1,\n",
      "          'leads': 1,\n",
      "          'complete': 1,\n",
      "          'inevitability': 1,\n",
      "          'come': 1,\n",
      "          'hour': 1,\n",
      "          'earlier': 1,\n",
      "          'ends': 1,\n",
      "          'without': 1,\n",
      "          'benefit': 1,\n",
      "          'reflection': 1,\n",
      "          'whats': 1,\n",
      "          'happened': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'hint': 1,\n",
      "          'changed': 1,\n",
      "          'anyone': 1,\n",
      "          'felt': 1,\n",
      "          'things': 1,\n",
      "          'didnt': 1,\n",
      "          'happen': 1,\n",
      "          'problem': 1,\n",
      "          'nis': 1,\n",
      "          'leaden': 1,\n",
      "          'handled': 1,\n",
      "          'nwhy': 1,\n",
      "          'word': 1,\n",
      "          'would': 1,\n",
      "          'adult': 1,\n",
      "          'least': 1,\n",
      "          'thoughtful': 1,\n",
      "          'examination': 1,\n",
      "          'sex': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'winds': 1,\n",
      "          'producing': 1,\n",
      "          'unwatchably': 1,\n",
      "          'deals': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'watching': 1,\n",
      "          'overheated': 1,\n",
      "          'docudrama': 1,\n",
      "          'aids': 1,\n",
      "          'nmany': 1,\n",
      "          'movies': 1,\n",
      "          'used': 1,\n",
      "          'subject': 1,\n",
      "          'ways': 1,\n",
      "          'thousand': 1,\n",
      "          'times': 1,\n",
      "          'engaging': 1,\n",
      "          'creative': 1,\n",
      "          'intellectually': 1,\n",
      "          'artistically': 1,\n",
      "          'nlook': 1,\n",
      "          'john': 1,\n",
      "          'sayles': 1,\n",
      "          'lianna': 1,\n",
      "          'littleseen': 1,\n",
      "          'desert': 1,\n",
      "          'bloom': 1,\n",
      "          'life': 1,\n",
      "          'vibrancy': 1,\n",
      "          'nwhat': 1,\n",
      "          'needed': 1,\n",
      "          'good': 1,\n",
      "          'swift': 1,\n",
      "          'kick': 1,\n",
      "          'pants': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'urban': 13,\n",
      "          'legend': 11,\n",
      "          'film': 9,\n",
      "          'slasher': 8,\n",
      "          'mad': 7,\n",
      "          'exploitation': 7,\n",
      "          'killer': 6,\n",
      "          'movie': 6,\n",
      "          'would': 6,\n",
      "          'people': 5,\n",
      "          'one': 4,\n",
      "          'made': 4,\n",
      "          'cant': 4,\n",
      "          'ni': 4,\n",
      "          'scary': 4,\n",
      "          'like': 4,\n",
      "          'kind': 4,\n",
      "          'nfor': 3,\n",
      "          'crazed': 3,\n",
      "          'flick': 3,\n",
      "          'audience': 3,\n",
      "          'nthe': 3,\n",
      "          'anyone': 3,\n",
      "          'three': 3,\n",
      "          'films': 3,\n",
      "          'good': 3,\n",
      "          'without': 3,\n",
      "          'lack': 3,\n",
      "          'legends': 3,\n",
      "          'irritating': 3,\n",
      "          'said': 2,\n",
      "          'paraphrasing': 2,\n",
      "          'sex': 2,\n",
      "          'could': 2,\n",
      "          'entire': 2,\n",
      "          'genre': 2,\n",
      "          'horror': 2,\n",
      "          'always': 2,\n",
      "          'nudity': 2,\n",
      "          'free': 2,\n",
      "          'though': 2,\n",
      "          'gore': 2,\n",
      "          'gross': 2,\n",
      "          'em': 2,\n",
      "          'actually': 2,\n",
      "          'find': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'anything': 2,\n",
      "          'audiences': 2,\n",
      "          'kinds': 2,\n",
      "          'flicks': 2,\n",
      "          'produced': 2,\n",
      "          'idiotic': 2,\n",
      "          'time': 2,\n",
      "          'wild': 2,\n",
      "          'nbut': 2,\n",
      "          'craft': 2,\n",
      "          'boom': 2,\n",
      "          'awful': 2,\n",
      "          'possibility': 2,\n",
      "          'college': 2,\n",
      "          'campus': 2,\n",
      "          'young': 2,\n",
      "          'nall': 2,\n",
      "          'better': 2,\n",
      "          'running': 2,\n",
      "          'little': 2,\n",
      "          'whole': 2,\n",
      "          'nits': 2,\n",
      "          'villain': 2,\n",
      "          'really': 2,\n",
      "          'characters': 2,\n",
      "          'loud': 2,\n",
      "          'filmmakers': 2,\n",
      "          'thing': 2,\n",
      "          'disguise': 2,\n",
      "          'enough': 2,\n",
      "          'know': 2,\n",
      "          'summer': 2,\n",
      "          '2': 2,\n",
      "          'entertaining': 2,\n",
      "          'annoying': 2,\n",
      "          'stand': 2,\n",
      "          'getting': 2,\n",
      "          'slaughtered': 2,\n",
      "          'great': 1,\n",
      "          'actor': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'im': 1,\n",
      "          'isnt': 1,\n",
      "          'messy': 1,\n",
      "          'youre': 1,\n",
      "          'right': 1,\n",
      "          'na': 1,\n",
      "          'truly': 1,\n",
      "          'profound': 1,\n",
      "          'statement': 1,\n",
      "          'replace': 1,\n",
      "          'uninformed': 1,\n",
      "          'souls': 1,\n",
      "          'subgenre': 1,\n",
      "          'melding': 1,\n",
      "          'elements': 1,\n",
      "          'put': 1,\n",
      "          'service': 1,\n",
      "          'plot': 1,\n",
      "          'follows': 1,\n",
      "          'identical': 1,\n",
      "          'outline': 1,\n",
      "          'usually': 1,\n",
      "          'masked': 1,\n",
      "          'stalks': 1,\n",
      "          'kills': 1,\n",
      "          'attractive': 1,\n",
      "          'teens': 1,\n",
      "          'la': 1,\n",
      "          'halloween': 1,\n",
      "          'nurban': 1,\n",
      "          'sanitary': 1,\n",
      "          'bloodless': 1,\n",
      "          'irony': 1,\n",
      "          'laden': 1,\n",
      "          'dialogue': 1,\n",
      "          'beautiful': 1,\n",
      "          'overly': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'closely': 1,\n",
      "          'resembles': 1,\n",
      "          'overlong': 1,\n",
      "          'wb': 1,\n",
      "          'television': 1,\n",
      "          'special': 1,\n",
      "          'makers': 1,\n",
      "          'two': 1,\n",
      "          'weapons': 1,\n",
      "          'disposal': 1,\n",
      "          'stale': 1,\n",
      "          'frightfree': 1,\n",
      "          'stephen': 1,\n",
      "          'king': 1,\n",
      "          'scare': 1,\n",
      "          'make': 1,\n",
      "          'laugh': 1,\n",
      "          'nalas': 1,\n",
      "          'succeeds': 1,\n",
      "          'latter': 1,\n",
      "          'intention': 1,\n",
      "          'fact': 1,\n",
      "          'became': 1,\n",
      "          'minor': 1,\n",
      "          'success': 1,\n",
      "          '40': 1,\n",
      "          'million': 1,\n",
      "          'domestic': 1,\n",
      "          'frightening': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'tastes': 1,\n",
      "          'whittled': 1,\n",
      "          'degree': 1,\n",
      "          'even': 1,\n",
      "          'claiming': 1,\n",
      "          'given': 1,\n",
      "          'benefit': 1,\n",
      "          'doubt': 1,\n",
      "          'promotion': 1,\n",
      "          'sure': 1,\n",
      "          'promised': 1,\n",
      "          'thrills': 1,\n",
      "          'digit': 1,\n",
      "          'iq': 1,\n",
      "          'argue': 1,\n",
      "          'provides': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'continue': 1,\n",
      "          'longer': 1,\n",
      "          'expectations': 1,\n",
      "          'superhyped': 1,\n",
      "          'blockbuster': 1,\n",
      "          'another': 1,\n",
      "          'desensitized': 1,\n",
      "          'point': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'promise': 1,\n",
      "          'added': 1,\n",
      "          'pressure': 1,\n",
      "          'delivering': 1,\n",
      "          'nif': 1,\n",
      "          'disagrees': 1,\n",
      "          'love': 1,\n",
      "          'explain': 1,\n",
      "          'successes': 1,\n",
      "          'shit': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'west': 1,\n",
      "          'godzilla': 1,\n",
      "          'forget': 1,\n",
      "          'goes': 1,\n",
      "          'saying': 1,\n",
      "          'offshoot': 1,\n",
      "          'ounce': 1,\n",
      "          'especially': 1,\n",
      "          'considering': 1,\n",
      "          'sheer': 1,\n",
      "          'volume': 1,\n",
      "          'nallow': 1,\n",
      "          'present': 1,\n",
      "          'real': 1,\n",
      "          'fault': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'nthese': 1,\n",
      "          'arent': 1,\n",
      "          'harnessed': 1,\n",
      "          'lofty': 1,\n",
      "          'aspirations': 1,\n",
      "          'break': 1,\n",
      "          'give': 1,\n",
      "          'bloody': 1,\n",
      "          'nsadly': 1,\n",
      "          'literally': 1,\n",
      "          'hundreds': 1,\n",
      "          'estimate': 1,\n",
      "          'maybe': 1,\n",
      "          'worth': 1,\n",
      "          'nand': 1,\n",
      "          'certainly': 1,\n",
      "          'included': 1,\n",
      "          'amongst': 1,\n",
      "          'ndespite': 1,\n",
      "          'considerable': 1,\n",
      "          'production': 1,\n",
      "          'value': 1,\n",
      "          'absence': 1,\n",
      "          'mics': 1,\n",
      "          'slipping': 1,\n",
      "          'frame': 1,\n",
      "          'budget': 1,\n",
      "          'entry': 1,\n",
      "          'sweepstakes': 1,\n",
      "          'nas': 1,\n",
      "          'far': 1,\n",
      "          'natured': 1,\n",
      "          'setting': 1,\n",
      "          'alone': 1,\n",
      "          'offers': 1,\n",
      "          'myriad': 1,\n",
      "          'promising': 1,\n",
      "          'possibilities': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'appropriate': 1,\n",
      "          'playground': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'community': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'midst': 1,\n",
      "          'strange': 1,\n",
      "          'hormonal': 1,\n",
      "          'surges': 1,\n",
      "          'percolating': 1,\n",
      "          'beneath': 1,\n",
      "          'surface': 1,\n",
      "          'growing': 1,\n",
      "          'together': 1,\n",
      "          'going': 1,\n",
      "          'inexplicable': 1,\n",
      "          'emotional': 1,\n",
      "          'highs': 1,\n",
      "          'lows': 1,\n",
      "          'naturally': 1,\n",
      "          'weirdness': 1,\n",
      "          'expected': 1,\n",
      "          'elusive': 1,\n",
      "          'ncoupled': 1,\n",
      "          'copious': 1,\n",
      "          'amounts': 1,\n",
      "          'scantily': 1,\n",
      "          'clad': 1,\n",
      "          'coeds': 1,\n",
      "          'around': 1,\n",
      "          'introduction': 1,\n",
      "          'proceedings': 1,\n",
      "          'relatively': 1,\n",
      "          'easy': 1,\n",
      "          'task': 1,\n",
      "          'alas': 1,\n",
      "          'clich': 1,\n",
      "          'full': 1,\n",
      "          'way': 1,\n",
      "          'clean': 1,\n",
      "          'family': 1,\n",
      "          'much': 1,\n",
      "          'stupidity': 1,\n",
      "          'nthis': 1,\n",
      "          'drags': 1,\n",
      "          'dead': 1,\n",
      "          'victims': 1,\n",
      "          'scene': 1,\n",
      "          'crime': 1,\n",
      "          'reason': 1,\n",
      "          'dunno': 1,\n",
      "          'exercise': 1,\n",
      "          'calmly': 1,\n",
      "          'purses': 1,\n",
      "          'runninglikethewindprey': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'manages': 1,\n",
      "          'catch': 1,\n",
      "          'prey': 1,\n",
      "          'editing': 1,\n",
      "          'techniques': 1,\n",
      "          'run': 1,\n",
      "          'clash': 1,\n",
      "          'reverberates': 1,\n",
      "          'soundtrack': 1,\n",
      "          'wish': 1,\n",
      "          'retire': 1,\n",
      "          'loudnoisejumpscare': 1,\n",
      "          'nyes': 1,\n",
      "          'jumps': 1,\n",
      "          'momentarily': 1,\n",
      "          'frightened': 1,\n",
      "          'wouldnt': 1,\n",
      "          'sonic': 1,\n",
      "          'suddenly': 1,\n",
      "          'infiltrated': 1,\n",
      "          'quiet': 1,\n",
      "          'room': 1,\n",
      "          'lost': 1,\n",
      "          'hope': 1,\n",
      "          'genuine': 1,\n",
      "          'scares': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'caught': 1,\n",
      "          'glimpse': 1,\n",
      "          'napparently': 1,\n",
      "          'creative': 1,\n",
      "          'ways': 1,\n",
      "          'slashers': 1,\n",
      "          'nin': 1,\n",
      "          'scream': 1,\n",
      "          'ghost': 1,\n",
      "          'mask': 1,\n",
      "          'last': 1,\n",
      "          'fisher': 1,\n",
      "          'mans': 1,\n",
      "          'rain': 1,\n",
      "          'slicker': 1,\n",
      "          'middle': 1,\n",
      "          'less': 1,\n",
      "          'sinks': 1,\n",
      "          'level': 1,\n",
      "          'mel': 1,\n",
      "          'brooks': 1,\n",
      "          'parody': 1,\n",
      "          'wears': 1,\n",
      "          'oversized': 1,\n",
      "          'parka': 1,\n",
      "          'fury': 1,\n",
      "          'hood': 1,\n",
      "          'ooh': 1,\n",
      "          'intended': 1,\n",
      "          'conceal': 1,\n",
      "          'hisher': 1,\n",
      "          'identity': 1,\n",
      "          'humbly': 1,\n",
      "          'suggest': 1,\n",
      "          'donald': 1,\n",
      "          'duck': 1,\n",
      "          'costume': 1,\n",
      "          'nthough': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'winning': 1,\n",
      "          'premise': 1,\n",
      "          'somewhat': 1,\n",
      "          'slices': 1,\n",
      "          'dices': 1,\n",
      "          'comely': 1,\n",
      "          'students': 1,\n",
      "          'tune': 1,\n",
      "          'famous': 1,\n",
      "          'babysitter': 1,\n",
      "          'gets': 1,\n",
      "          'threatening': 1,\n",
      "          'phone': 1,\n",
      "          'calls': 1,\n",
      "          'theyre': 1,\n",
      "          'coming': 1,\n",
      "          'inside': 1,\n",
      "          'house': 1,\n",
      "          'wont': 1,\n",
      "          'spoil': 1,\n",
      "          'surprise': 1,\n",
      "          'used': 1,\n",
      "          'offer': 1,\n",
      "          'fine': 1,\n",
      "          '00': 1,\n",
      "          'cable': 1,\n",
      "          'viewing': 1,\n",
      "          'happen': 1,\n",
      "          'intoxicated': 1,\n",
      "          'nsad': 1,\n",
      "          'say': 1,\n",
      "          'doesnt': 1,\n",
      "          'include': 1,\n",
      "          'favorite': 1,\n",
      "          'fairly': 1,\n",
      "          'graphic': 1,\n",
      "          'antidote': 1,\n",
      "          'concerning': 1,\n",
      "          'richard': 1,\n",
      "          'gere': 1,\n",
      "          'unhappy': 1,\n",
      "          'gerbil': 1,\n",
      "          'nnow': 1,\n",
      "          'nbefore': 1,\n",
      "          'leave': 1,\n",
      "          'bring': 1,\n",
      "          'attention': 1,\n",
      "          'third': 1,\n",
      "          'first': 1,\n",
      "          'second': 1,\n",
      "          'group': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'spent': 1,\n",
      "          'evening': 1,\n",
      "          'nonly': 1,\n",
      "          'jared': 1,\n",
      "          'leto': 1,\n",
      "          'looking': 1,\n",
      "          'carbon': 1,\n",
      "          'copy': 1,\n",
      "          'rob': 1,\n",
      "          'lowe': 1,\n",
      "          'back': 1,\n",
      "          'day': 1,\n",
      "          'alicia': 1,\n",
      "          'witt': 1,\n",
      "          'resilient': 1,\n",
      "          'heroine': 1,\n",
      "          'avoid': 1,\n",
      "          'vexatiousness': 1,\n",
      "          'bunch': 1,\n",
      "          'tie': 1,\n",
      "          'noxima': 1,\n",
      "          'girl': 1,\n",
      "          'rebecca': 1,\n",
      "          'gayheart': 1,\n",
      "          'sitcom': 1,\n",
      "          'star': 1,\n",
      "          'michael': 1,\n",
      "          'rosenbaum': 1,\n",
      "          'supremely': 1,\n",
      "          'lout': 1,\n",
      "          'cheered': 1,\n",
      "          'painful': 1,\n",
      "          'death': 1,\n",
      "          'cruel': 1,\n",
      "          'person': 1,\n",
      "          'nironically': 1,\n",
      "          'aggravating': 1,\n",
      "          'sacks': 1,\n",
      "          'human': 1,\n",
      "          'waste': 1,\n",
      "          'provide': 1,\n",
      "          'entertainment': 1,\n",
      "          'viewed': 1,\n",
      "          'vicarious': 1,\n",
      "          'fantasy': 1,\n",
      "          'mildly': 1,\n",
      "          'nafter': 1,\n",
      "          'features': 1,\n",
      "          'faux': 1,\n",
      "          'hipsters': 1,\n",
      "          'least': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'way': 3,\n",
      "          'convict': 3,\n",
      "          'liotta': 3,\n",
      "          'flight': 3,\n",
      "          'like': 3,\n",
      "          'movie': 3,\n",
      "          'im': 2,\n",
      "          'seen': 2,\n",
      "          'nyou': 2,\n",
      "          'plane': 2,\n",
      "          'nhe': 2,\n",
      "          'transported': 2,\n",
      "          'la': 2,\n",
      "          'would': 2,\n",
      "          'christmas': 2,\n",
      "          'eve': 2,\n",
      "          'one': 2,\n",
      "          'ever': 2,\n",
      "          'every': 2,\n",
      "          'premise': 1,\n",
      "          'turbulence': 1,\n",
      "          'sure': 1,\n",
      "          'familiar': 1,\n",
      "          'us': 1,\n",
      "          'nweve': 1,\n",
      "          'passenger': 1,\n",
      "          '57': 1,\n",
      "          'executive': 1,\n",
      "          'decision': 1,\n",
      "          'countless': 1,\n",
      "          'flicks': 1,\n",
      "          'good': 1,\n",
      "          'know': 1,\n",
      "          'terrorists': 1,\n",
      "          'take': 1,\n",
      "          'ask': 1,\n",
      "          'police': 1,\n",
      "          'ground': 1,\n",
      "          'nturbulence': 1,\n",
      "          'starts': 1,\n",
      "          'ray': 1,\n",
      "          'accused': 1,\n",
      "          'crime': 1,\n",
      "          'think': 1,\n",
      "          'could': 1,\n",
      "          'done': 1,\n",
      "          'hes': 1,\n",
      "          'open': 1,\n",
      "          'kind': 1,\n",
      "          'taken': 1,\n",
      "          'subsequently': 1,\n",
      "          'commerical': 1,\n",
      "          'nthis': 1,\n",
      "          'already': 1,\n",
      "          'problem': 1,\n",
      "          'nthere': 1,\n",
      "          'convicts': 1,\n",
      "          'commercial': 1,\n",
      "          'normal': 1,\n",
      "          'passangers': 1,\n",
      "          'nanyway': 1,\n",
      "          'everyone': 1,\n",
      "          'waiting': 1,\n",
      "          'get': 1,\n",
      "          'spend': 1,\n",
      "          'nwell': 1,\n",
      "          'manages': 1,\n",
      "          'stop': 1,\n",
      "          'proverbial': 1,\n",
      "          'tracks': 1,\n",
      "          'still': 1,\n",
      "          'calm': 1,\n",
      "          'takes': 1,\n",
      "          'also': 1,\n",
      "          'eyes': 1,\n",
      "          'lauren': 1,\n",
      "          'holly': 1,\n",
      "          'attendent': 1,\n",
      "          'seems': 1,\n",
      "          'grow': 1,\n",
      "          'closer': 1,\n",
      "          'n': 1,\n",
      "          'plot': 1,\n",
      "          'stops': 1,\n",
      "          'ni': 1,\n",
      "          'didnt': 1,\n",
      "          'seemed': 1,\n",
      "          'rip': 1,\n",
      "          'airplane': 1,\n",
      "          'ive': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'mr': 1,\n",
      "          'looked': 1,\n",
      "          'exactly': 1,\n",
      "          'jack': 1,\n",
      "          'nicholson': 1,\n",
      "          'shining': 1,\n",
      "          'serious': 1,\n",
      "          'nit': 1,\n",
      "          'stole': 1,\n",
      "          'nthe': 1,\n",
      "          'reason': 1,\n",
      "          'give': 1,\n",
      "          '0': 1,\n",
      "          'stars': 1,\n",
      "          'okay': 1,\n",
      "          'stunts': 1,\n",
      "          'ndont': 1,\n",
      "          'even': 1,\n",
      "          'bother': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'blues': 8,\n",
      "          'elwood': 8,\n",
      "          'brothers': 7,\n",
      "          'film': 5,\n",
      "          'years': 4,\n",
      "          'music': 4,\n",
      "          'movie': 3,\n",
      "          'musical': 3,\n",
      "          'band': 3,\n",
      "          'ago': 3,\n",
      "          'passed': 3,\n",
      "          'much': 3,\n",
      "          'whole': 3,\n",
      "          '2000': 2,\n",
      "          'original': 2,\n",
      "          'john': 2,\n",
      "          'nearly': 2,\n",
      "          'aykroyd': 2,\n",
      "          'along': 2,\n",
      "          'brother': 2,\n",
      "          'family': 2,\n",
      "          'seems': 2,\n",
      "          'cab': 2,\n",
      "          'also': 2,\n",
      "          'around': 2,\n",
      "          'buster': 2,\n",
      "          'group': 2,\n",
      "          'acting': 2,\n",
      "          'funny': 2,\n",
      "          'given': 2,\n",
      "          'many': 2,\n",
      "          'heavily': 2,\n",
      "          'story': 2,\n",
      "          'two': 2,\n",
      "          'people': 2,\n",
      "          'may': 2,\n",
      "          'unfunny': 2,\n",
      "          'musicians': 2,\n",
      "          'actors': 2,\n",
      "          'sort': 2,\n",
      "          'really': 2,\n",
      "          'kind': 2,\n",
      "          'laced': 1,\n",
      "          'good': 1,\n",
      "          'blend': 1,\n",
      "          'action': 1,\n",
      "          'comedy': 1,\n",
      "          'heavy': 1,\n",
      "          'dose': 1,\n",
      "          'celebrity': 1,\n",
      "          'guest': 1,\n",
      "          'appearances': 1,\n",
      "          'sounds': 1,\n",
      "          'pretty': 1,\n",
      "          'gourmet': 1,\n",
      "          'even': 1,\n",
      "          'best': 1,\n",
      "          'ingredients': 1,\n",
      "          'thrown': 1,\n",
      "          'together': 1,\n",
      "          'wrong': 1,\n",
      "          'way': 1,\n",
      "          'creating': 1,\n",
      "          'dismal': 1,\n",
      "          'unsatisfactory': 1,\n",
      "          'product': 1,\n",
      "          'neighteen': 1,\n",
      "          'hit': 1,\n",
      "          'theaters': 1,\n",
      "          'unleashed': 1,\n",
      "          'minus': 1,\n",
      "          'half': 1,\n",
      "          'duo': 1,\n",
      "          'late': 1,\n",
      "          'belushi': 1,\n",
      "          'charm': 1,\n",
      "          'ndan': 1,\n",
      "          'reprises': 1,\n",
      "          'role': 1,\n",
      "          'well': 1,\n",
      "          'cowriting': 1,\n",
      "          'credit': 1,\n",
      "          'sharp': 1,\n",
      "          'dressed': 1,\n",
      "          'con': 1,\n",
      "          'man': 1,\n",
      "          'wreaked': 1,\n",
      "          'havoc': 1,\n",
      "          'selfproclaimed': 1,\n",
      "          'mission': 1,\n",
      "          'god': 1,\n",
      "          'jake': 1,\n",
      "          'eighteen': 1,\n",
      "          'nas': 1,\n",
      "          'begin': 1,\n",
      "          'released': 1,\n",
      "          'state': 1,\n",
      "          'penitentiary': 1,\n",
      "          'news': 1,\n",
      "          'death': 1,\n",
      "          'prison': 1,\n",
      "          'ncompletely': 1,\n",
      "          'decides': 1,\n",
      "          'trace': 1,\n",
      "          'roots': 1,\n",
      "          'back': 1,\n",
      "          'orphanage': 1,\n",
      "          'spent': 1,\n",
      "          'childhood': 1,\n",
      "          'discover': 1,\n",
      "          'everyone': 1,\n",
      "          'ever': 1,\n",
      "          'known': 1,\n",
      "          'away': 1,\n",
      "          'nbut': 1,\n",
      "          'isnt': 1,\n",
      "          'completely': 1,\n",
      "          'without': 1,\n",
      "          'nit': 1,\n",
      "          'halfbrother': 1,\n",
      "          'sorts': 1,\n",
      "          'real': 1,\n",
      "          'mind': 1,\n",
      "          'illegitimate': 1,\n",
      "          'child': 1,\n",
      "          'bluesman': 1,\n",
      "          'pseudofather': 1,\n",
      "          'curtis': 1,\n",
      "          'calloway': 1,\n",
      "          'first': 1,\n",
      "          'ndespite': 1,\n",
      "          'inklings': 1,\n",
      "          'mother': 1,\n",
      "          'superior': 1,\n",
      "          'mary': 1,\n",
      "          'stigmata': 1,\n",
      "          'kathleen': 1,\n",
      "          'freeman': 1,\n",
      "          'otherwise': 1,\n",
      "          'seeks': 1,\n",
      "          'remaining': 1,\n",
      "          'effort': 1,\n",
      "          'start': 1,\n",
      "          'new': 1,\n",
      "          'nworking': 1,\n",
      "          'police': 1,\n",
      "          'commander': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'cabel': 1,\n",
      "          'chamberlain': 1,\n",
      "          'joe': 1,\n",
      "          'morton': 1,\n",
      "          'immediate': 1,\n",
      "          'disliking': 1,\n",
      "          'nonchalantly': 1,\n",
      "          'fills': 1,\n",
      "          'mothers': 1,\n",
      "          'affair': 1,\n",
      "          'goes': 1,\n",
      "          'steal': 1,\n",
      "          'wallet': 1,\n",
      "          'nfollowing': 1,\n",
      "          'lonely': 1,\n",
      "          'orphan': 1,\n",
      "          'j': 1,\n",
      "          'nevan': 1,\n",
      "          'bonifant': 1,\n",
      "          'quickly': 1,\n",
      "          'learns': 1,\n",
      "          'become': 1,\n",
      "          'minielwood': 1,\n",
      "          'nwhen': 1,\n",
      "          'bartender': 1,\n",
      "          'mighty': 1,\n",
      "          'mack': 1,\n",
      "          'mcteer': 1,\n",
      "          'goodman': 1,\n",
      "          'joins': 1,\n",
      "          'complete': 1,\n",
      "          'travels': 1,\n",
      "          'country': 1,\n",
      "          'crashing': 1,\n",
      "          'cars': 1,\n",
      "          'blowing': 1,\n",
      "          'things': 1,\n",
      "          'obstructing': 1,\n",
      "          'peace': 1,\n",
      "          'solid': 1,\n",
      "          'rock': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'cabs': 1,\n",
      "          'personal': 1,\n",
      "          'vendetta': 1,\n",
      "          'leads': 1,\n",
      "          'impassioned': 1,\n",
      "          'manhunt': 1,\n",
      "          'nexttonextofkin': 1,\n",
      "          'nfrom': 1,\n",
      "          'point': 1,\n",
      "          'turns': 1,\n",
      "          'series': 1,\n",
      "          'videos': 1,\n",
      "          'bits': 1,\n",
      "          'nthose': 1,\n",
      "          'hoping': 1,\n",
      "          'interesting': 1,\n",
      "          'andor': 1,\n",
      "          'yarn': 1,\n",
      "          'interludes': 1,\n",
      "          'interested': 1,\n",
      "          'nonly': 1,\n",
      "          'extremely': 1,\n",
      "          'avid': 1,\n",
      "          'fans': 1,\n",
      "          'attempt': 1,\n",
      "          'getting': 1,\n",
      "          'thru': 1,\n",
      "          'hours': 1,\n",
      "          'nfor': 1,\n",
      "          'worth': 1,\n",
      "          'luckily': 1,\n",
      "          'shoddy': 1,\n",
      "          'attempts': 1,\n",
      "          'intrude': 1,\n",
      "          'upon': 1,\n",
      "          'festivities': 1,\n",
      "          'bogged': 1,\n",
      "          'jokes': 1,\n",
      "          'turned': 1,\n",
      "          'stiff': 1,\n",
      "          'pointless': 1,\n",
      "          '10year': 1,\n",
      "          'old': 1,\n",
      "          'attempting': 1,\n",
      "          'add': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'cuteness': 1,\n",
      "          'thing': 1,\n",
      "          'nappearances': 1,\n",
      "          'legends': 1,\n",
      "          'aretha': 1,\n",
      "          'franklin': 1,\n",
      "          'james': 1,\n",
      "          'brown': 1,\n",
      "          'eric': 1,\n",
      "          'clapton': 1,\n",
      "          'slew': 1,\n",
      "          'others': 1,\n",
      "          'high': 1,\n",
      "          'points': 1,\n",
      "          'confirm': 1,\n",
      "          'nblues': 1,\n",
      "          'deserving': 1,\n",
      "          'one': 1,\n",
      "          'star': 1,\n",
      "          'simply': 1,\n",
      "          'love': 1,\n",
      "          'might': 1,\n",
      "          'like': 1,\n",
      "          'nmany': 1,\n",
      "          'scenes': 1,\n",
      "          'nauseatingly': 1,\n",
      "          'dont': 1,\n",
      "          'passion': 1,\n",
      "          'deep': 1,\n",
      "          'bluesrock': 1,\n",
      "          'youll': 1,\n",
      "          'bored': 1,\n",
      "          'skull': 1,\n",
      "          'nmuch': 1,\n",
      "          'nothing': 1,\n",
      "          'aykroyds': 1,\n",
      "          'selfserving': 1,\n",
      "          'vanity': 1,\n",
      "          'project': 1,\n",
      "          'matter': 1,\n",
      "          'fun': 1,\n",
      "          'none': 1,\n",
      "          'excitement': 1,\n",
      "          'audience': 1,\n",
      "          'nand': 1,\n",
      "          'seeing': 1,\n",
      "          'three': 1,\n",
      "          'guys': 1,\n",
      "          'threepiece': 1,\n",
      "          'suits': 1,\n",
      "          'goofily': 1,\n",
      "          'dancing': 1,\n",
      "          'poker': 1,\n",
      "          'faces': 1,\n",
      "          'long': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'seconds': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'austin': 5,\n",
      "          'powers': 5,\n",
      "          'one': 4,\n",
      "          'scene': 4,\n",
      "          'dr': 4,\n",
      "          'original': 3,\n",
      "          'would': 3,\n",
      "          'fact': 3,\n",
      "          'played': 3,\n",
      "          'myers': 3,\n",
      "          'film': 3,\n",
      "          'evil': 3,\n",
      "          'make': 3,\n",
      "          'spy': 2,\n",
      "          'shagged': 2,\n",
      "          'half': 2,\n",
      "          'silly': 2,\n",
      "          'nif': 2,\n",
      "          'audience': 2,\n",
      "          'filmmakers': 2,\n",
      "          'mike': 2,\n",
      "          'hear': 2,\n",
      "          'alone': 2,\n",
      "          'enough': 2,\n",
      "          'time': 2,\n",
      "          'back': 2,\n",
      "          'movie': 2,\n",
      "          'theres': 2,\n",
      "          'minime': 2,\n",
      "          'zany': 1,\n",
      "          'totally': 1,\n",
      "          'enjoyable': 1,\n",
      "          'predecessor': 1,\n",
      "          'easily': 1,\n",
      "          'summers': 1,\n",
      "          'biggest': 1,\n",
      "          'pleasures': 1,\n",
      "          'nin': 1,\n",
      "          'exact': 1,\n",
      "          'opposite': 1,\n",
      "          'instead': 1,\n",
      "          'refreshing': 1,\n",
      "          'clever': 1,\n",
      "          'parody': 1,\n",
      "          'another': 1,\n",
      "          'bombard': 1,\n",
      "          'us': 1,\n",
      "          'usedup': 1,\n",
      "          'tired': 1,\n",
      "          'jokes': 1,\n",
      "          'taken': 1,\n",
      "          'directly': 1,\n",
      "          'first': 1,\n",
      "          'ntake': 1,\n",
      "          'fraction': 1,\n",
      "          'giddy': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'displayed': 1,\n",
      "          'previously': 1,\n",
      "          'confronts': 1,\n",
      "          'henchmen': 1,\n",
      "          'side': 1,\n",
      "          'cliff': 1,\n",
      "          'nafter': 1,\n",
      "          'pushed': 1,\n",
      "          'ravine': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'course': 1,\n",
      "          'assumed': 1,\n",
      "          'dead': 1,\n",
      "          'nbut': 1,\n",
      "          'suddenly': 1,\n",
      "          'pleading': 1,\n",
      "          'voice': 1,\n",
      "          'coming': 1,\n",
      "          'hes': 1,\n",
      "          'injured': 1,\n",
      "          'na': 1,\n",
      "          'similar': 1,\n",
      "          'well': 1,\n",
      "          'international': 1,\n",
      "          'man': 1,\n",
      "          'mystery': 1,\n",
      "          'insulted': 1,\n",
      "          'ndid': 1,\n",
      "          'really': 1,\n",
      "          'believe': 1,\n",
      "          'laugh': 1,\n",
      "          'ripoff': 1,\n",
      "          'napparently': 1,\n",
      "          'overestimated': 1,\n",
      "          'intelligence': 1,\n",
      "          'average': 1,\n",
      "          'moviegoer': 1,\n",
      "          'considering': 1,\n",
      "          'pulled': 1,\n",
      "          '200': 1,\n",
      "          'million': 1,\n",
      "          'domestic': 1,\n",
      "          'theatrical': 1,\n",
      "          'grosses': 1,\n",
      "          'ndo': 1,\n",
      "          'sound': 1,\n",
      "          'franchise': 1,\n",
      "          'heading': 1,\n",
      "          'way': 1,\n",
      "          'nhaving': 1,\n",
      "          'said': 1,\n",
      "          'though': 1,\n",
      "          'still': 1,\n",
      "          'deny': 1,\n",
      "          'merits': 1,\n",
      "          'nthe': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'delightfully': 1,\n",
      "          'sustain': 1,\n",
      "          'interest': 1,\n",
      "          'somewhat': 1,\n",
      "          'second': 1,\n",
      "          'three': 1,\n",
      "          'roles': 1,\n",
      "          'constructed': 1,\n",
      "          'machine': 1,\n",
      "          'goes': 1,\n",
      "          'year': 1,\n",
      "          '1969': 1,\n",
      "          'attempt': 1,\n",
      "          'snatch': 1,\n",
      "          'mojo': 1,\n",
      "          'dont': 1,\n",
      "          'love': 1,\n",
      "          'word': 1,\n",
      "          'nwhilst': 1,\n",
      "          'cryogenically': 1,\n",
      "          'frozen': 1,\n",
      "          'nwhen': 1,\n",
      "          'gets': 1,\n",
      "          'wind': 1,\n",
      "          'great': 1,\n",
      "          'intro': 1,\n",
      "          'explaining': 1,\n",
      "          'absence': 1,\n",
      "          'elizabeth': 1,\n",
      "          'hurleys': 1,\n",
      "          'vanessa': 1,\n",
      "          'kensington': 1,\n",
      "          'travels': 1,\n",
      "          'reclaim': 1,\n",
      "          'sexual': 1,\n",
      "          'drive': 1,\n",
      "          'accompanied': 1,\n",
      "          'hottotrot': 1,\n",
      "          'felicity': 1,\n",
      "          'shagwell': 1,\n",
      "          'heather': 1,\n",
      "          'graham': 1,\n",
      "          'nthis': 1,\n",
      "          'sounds': 1,\n",
      "          'stupid': 1,\n",
      "          'know': 1,\n",
      "          'starts': 1,\n",
      "          'kind': 1,\n",
      "          'weird': 1,\n",
      "          'offthewall': 1,\n",
      "          'sense': 1,\n",
      "          'worked': 1,\n",
      "          'nthen': 1,\n",
      "          'verne': 1,\n",
      "          'troyer': 1,\n",
      "          'npetite': 1,\n",
      "          'clone': 1,\n",
      "          'exactly': 1,\n",
      "          '18': 1,\n",
      "          'size': 1,\n",
      "          'ntroyers': 1,\n",
      "          'persona': 1,\n",
      "          'gains': 1,\n",
      "          'extra': 1,\n",
      "          'halfstar': 1,\n",
      "          'contributing': 1,\n",
      "          'particularly': 1,\n",
      "          'hilarious': 1,\n",
      "          'attempts': 1,\n",
      "          'nibble': 1,\n",
      "          'minimr': 1,\n",
      "          'nbigglesworth': 1,\n",
      "          'njust': 1,\n",
      "          'try': 1,\n",
      "          'ignore': 1,\n",
      "          '28': 1,\n",
      "          'evils': 1,\n",
      "          'height': 1,\n",
      "          'rise': 1,\n",
      "          '21': 1,\n",
      "          'feet': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'nhowever': 1,\n",
      "          'four': 1,\n",
      "          'hearty': 1,\n",
      "          'laughs': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'hour': 1,\n",
      "          'notable': 1,\n",
      "          'infamous': 1,\n",
      "          'tent': 1,\n",
      "          'isnt': 1,\n",
      "          'warrant': 1,\n",
      "          'even': 1,\n",
      "          'minor': 1,\n",
      "          'recommendation': 1,\n",
      "          '3': 1,\n",
      "          'kill': 1,\n",
      "          'secret': 1,\n",
      "          'agent': 1,\n",
      "          'put': 1,\n",
      "          'emphasis': 1,\n",
      "          'nunconventional': 1,\n",
      "          'yes': 1,\n",
      "          'denying': 1,\n",
      "          'itd': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'erotic': 4,\n",
      "          'film': 4,\n",
      "          'mirkine': 3,\n",
      "          'time': 3,\n",
      "          'laurence': 3,\n",
      "          'would': 3,\n",
      "          'scenes': 3,\n",
      "          'series': 2,\n",
      "          'set': 2,\n",
      "          'david': 2,\n",
      "          'nelson': 2,\n",
      "          'sanity': 2,\n",
      "          'treill': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'brosnan': 2,\n",
      "          'make': 2,\n",
      "          'thriller': 2,\n",
      "          'slow': 2,\n",
      "          'worth': 2,\n",
      "          'thrillers': 1,\n",
      "          'flooded': 1,\n",
      "          'videoshelves': 1,\n",
      "          'early': 1,\n",
      "          '1990s': 1,\n",
      "          'came': 1,\n",
      "          'frenchcanadian': 1,\n",
      "          'coproduction': 1,\n",
      "          'max': 1,\n",
      "          'fischer': 1,\n",
      "          'nthe': 1,\n",
      "          'movie': 1,\n",
      "          'paris': 1,\n",
      "          'hero': 1,\n",
      "          'struggling': 1,\n",
      "          'american': 1,\n",
      "          'author': 1,\n",
      "          'judd': 1,\n",
      "          'specialised': 1,\n",
      "          'playing': 1,\n",
      "          'losers': 1,\n",
      "          'people': 1,\n",
      "          'edge': 1,\n",
      "          'suffers': 1,\n",
      "          'terrible': 1,\n",
      "          'writers': 1,\n",
      "          'bloc': 1,\n",
      "          'nhe': 1,\n",
      "          'manages': 1,\n",
      "          'overcome': 1,\n",
      "          'crisis': 1,\n",
      "          'beginning': 1,\n",
      "          'romantic': 1,\n",
      "          'relationship': 1,\n",
      "          'beautiful': 1,\n",
      "          'model': 1,\n",
      "          'anabelle': 1,\n",
      "          'hangs': 1,\n",
      "          'jet': 1,\n",
      "          'circles': 1,\n",
      "          'gradually': 1,\n",
      "          'makes': 1,\n",
      "          'pathologically': 1,\n",
      "          'jealous': 1,\n",
      "          'nher': 1,\n",
      "          'connection': 1,\n",
      "          'powerful': 1,\n",
      "          'caravan': 1,\n",
      "          'pierce': 1,\n",
      "          'step': 1,\n",
      "          'line': 1,\n",
      "          'reason': 1,\n",
      "          'put': 1,\n",
      "          'motion': 1,\n",
      "          'whole': 1,\n",
      "          'violent': 1,\n",
      "          'tragic': 1,\n",
      "          'events': 1,\n",
      "          'nalthough': 1,\n",
      "          'pseudoerotic': 1,\n",
      "          'elements': 1,\n",
      "          'plot': 1,\n",
      "          'indeed': 1,\n",
      "          'drama': 1,\n",
      "          'probably': 1,\n",
      "          'appropriate': 1,\n",
      "          'genre': 1,\n",
      "          'label': 1,\n",
      "          'npacing': 1,\n",
      "          'simply': 1,\n",
      "          'thrill': 1,\n",
      "          'viewers': 1,\n",
      "          'patient': 1,\n",
      "          'enough': 1,\n",
      "          'sit': 1,\n",
      "          'entirety': 1,\n",
      "          'wait': 1,\n",
      "          'long': 1,\n",
      "          'interesting': 1,\n",
      "          'significant': 1,\n",
      "          'developments': 1,\n",
      "          'nlow': 1,\n",
      "          'budget': 1,\n",
      "          'also': 1,\n",
      "          'becomes': 1,\n",
      "          'painfully': 1,\n",
      "          'visible': 1,\n",
      "          'physical': 1,\n",
      "          'attributes': 1,\n",
      "          'thing': 1,\n",
      "          'watching': 1,\n",
      "          'little': 1,\n",
      "          'supposedly': 1,\n",
      "          'wanted': 1,\n",
      "          'watch': 1,\n",
      "          'reasons': 1,\n",
      "          'feel': 1,\n",
      "          'disappointed': 1,\n",
      "          'ninstead': 1,\n",
      "          'settle': 1,\n",
      "          'pointless': 1,\n",
      "          'involving': 1,\n",
      "          'treills': 1,\n",
      "          'attempts': 1,\n",
      "          'serious': 1,\n",
      "          'acting': 1,\n",
      "          'nall': 1,\n",
      "          'definitely': 1,\n",
      "          'spending': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'someones': 1,\n",
      "          'precious': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'review': 7,\n",
      "          'n': 4,\n",
      "          'want': 3,\n",
      "          'film': 3,\n",
      "          'write': 2,\n",
      "          'action': 2,\n",
      "          'bait': 2,\n",
      "          'audience': 2,\n",
      "          'something': 2,\n",
      "          'waste': 2,\n",
      "          'time': 2,\n",
      "          'reviews': 2,\n",
      "          'movies': 2,\n",
      "          'ni': 2,\n",
      "          'think': 2,\n",
      "          'quotes': 2,\n",
      "          'take': 2,\n",
      "          'nits': 2,\n",
      "          'bad': 2,\n",
      "          'watch': 2,\n",
      "          'right': 2,\n",
      "          'plays': 2,\n",
      "          'films': 2,\n",
      "          'characters': 2,\n",
      "          'case': 2,\n",
      "          'playing': 2,\n",
      "          'sit': 1,\n",
      "          'computer': 1,\n",
      "          'recent': 1,\n",
      "          'comedy': 1,\n",
      "          'starring': 1,\n",
      "          'jamie': 1,\n",
      "          'foxx': 1,\n",
      "          'david': 1,\n",
      "          'morse': 1,\n",
      "          'nthis': 1,\n",
      "          'dont': 1,\n",
      "          'even': 1,\n",
      "          'id': 1,\n",
      "          'laying': 1,\n",
      "          'criticisms': 1,\n",
      "          'would': 1,\n",
      "          'sogenericandpredictableitsbeyondridiculous': 1,\n",
      "          'piece': 1,\n",
      "          'hollywood': 1,\n",
      "          'fluff': 1,\n",
      "          'nif': 1,\n",
      "          'theyre': 1,\n",
      "          'going': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'little': 1,\n",
      "          'credit': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'half': 1,\n",
      "          'brain': 1,\n",
      "          'mental': 1,\n",
      "          'energy': 1,\n",
      "          'criticising': 1,\n",
      "          'nlast': 1,\n",
      "          'summer': 1,\n",
      "          'took': 1,\n",
      "          'approach': 1,\n",
      "          'mummy': 1,\n",
      "          'quoted': 1,\n",
      "          'phrases': 1,\n",
      "          'subpar': 1,\n",
      "          'shall': 1,\n",
      "          'thing': 1,\n",
      "          'less': 1,\n",
      "          'applicable': 1,\n",
      "          'hope': 1,\n",
      "          'goes': 1,\n",
      "          'show': 1,\n",
      "          'find': 1,\n",
      "          'need': 1,\n",
      "          'know': 1,\n",
      "          'without': 1,\n",
      "          'wild': 1,\n",
      "          'guess': 1,\n",
      "          'genuinely': 1,\n",
      "          'unfunny': 1,\n",
      "          'members': 1,\n",
      "          'laughed': 1,\n",
      "          'entire': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'unoriginal': 1,\n",
      "          'unthrilling': 1,\n",
      "          'point': 1,\n",
      "          'fun': 1,\n",
      "          'badness': 1,\n",
      "          'absolute': 1,\n",
      "          'loathe': 1,\n",
      "          'pained': 1,\n",
      "          'watching': 1,\n",
      "          'cliche': 1,\n",
      "          'uhh': 1,\n",
      "          'nlost': 1,\n",
      "          'train': 1,\n",
      "          'thought': 1,\n",
      "          'nanyways': 1,\n",
      "          'heres': 1,\n",
      "          'enjoy': 1,\n",
      "          'getting': 1,\n",
      "          'audiences': 1,\n",
      "          'attention': 1,\n",
      "          'beginning': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'todays': 1,\n",
      "          'work': 1,\n",
      "          'nwe': 1,\n",
      "          'exciting': 1,\n",
      "          'slow': 1,\n",
      "          'buildup': 1,\n",
      "          'story': 1,\n",
      "          'god': 1,\n",
      "          'forbid': 1,\n",
      "          'mainstreams': 1,\n",
      "          'hands': 1,\n",
      "          'armageddon': 1,\n",
      "          'clear': 1,\n",
      "          'doesnt': 1,\n",
      "          'reality': 1,\n",
      "          'thus': 1,\n",
      "          'attempt': 1,\n",
      "          'establish': 1,\n",
      "          'plausability': 1,\n",
      "          'minimal': 1,\n",
      "          'amount': 1,\n",
      "          'necessary': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'halfassed': 1,\n",
      "          'effort': 1,\n",
      "          'nsupporting': 1,\n",
      "          'shady': 1,\n",
      "          'supplots': 1,\n",
      "          'introduced': 1,\n",
      "          'made': 1,\n",
      "          'large': 1,\n",
      "          'cast': 1,\n",
      "          'handful': 1,\n",
      "          'real': 1,\n",
      "          'significance': 1,\n",
      "          'ntheres': 1,\n",
      "          'fine': 1,\n",
      "          'line': 1,\n",
      "          'separating': 1,\n",
      "          'homage': 1,\n",
      "          'plagiarism': 1,\n",
      "          'godzilla': 1,\n",
      "          '1998': 1,\n",
      "          'unfortunately': 1,\n",
      "          'modern': 1,\n",
      "          'thrillers': 1,\n",
      "          'showed': 1,\n",
      "          'potential': 1,\n",
      "          'authenticity': 1,\n",
      "          'intelligence': 1,\n",
      "          'cliches': 1,\n",
      "          'sequences': 1,\n",
      "          'jackal': 1,\n",
      "          'nchadz': 1,\n",
      "          'movie': 1,\n",
      "          'page': 1,\n",
      "          'back': 1,\n",
      "          'heavy': 1,\n",
      "          'renovation': 1,\n",
      "          'nreviews': 1,\n",
      "          'nearly': 1,\n",
      "          'mainstream': 1,\n",
      "          'today': 1,\n",
      "          'nget': 1,\n",
      "          'everything': 1,\n",
      "          'local': 1,\n",
      "          'cineplex': 1,\n",
      "          'better': 1,\n",
      "          'make': 1,\n",
      "          'informed': 1,\n",
      "          'decision': 1,\n",
      "          'see': 1,\n",
      "          'ndont': 1,\n",
      "          'forget': 1,\n",
      "          'vote': 1,\n",
      "          'poll': 1,\n",
      "          'sign': 1,\n",
      "          'guestbook': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 7,\n",
      "          'simply': 6,\n",
      "          'irresistible': 6,\n",
      "          'much': 4,\n",
      "          'gellar': 3,\n",
      "          'amanda': 3,\n",
      "          'tom': 3,\n",
      "          'water': 3,\n",
      "          'go': 3,\n",
      "          'finds': 2,\n",
      "          'plays': 2,\n",
      "          'though': 2,\n",
      "          'would': 2,\n",
      "          'movie': 2,\n",
      "          'n': 2,\n",
      "          'telekinetic': 2,\n",
      "          'crab': 2,\n",
      "          'one': 2,\n",
      "          'best': 2,\n",
      "          'fred': 2,\n",
      "          'ginger': 2,\n",
      "          'part': 2,\n",
      "          'going': 2,\n",
      "          'nin': 2,\n",
      "          'fact': 2,\n",
      "          'ever': 2,\n",
      "          'anywhere': 2,\n",
      "          'tvs': 1,\n",
      "          'buffy': 1,\n",
      "          'side': 1,\n",
      "          'supernatural': 1,\n",
      "          'spectrum': 1,\n",
      "          'nsarah': 1,\n",
      "          'michelle': 1,\n",
      "          'neverceasing': 1,\n",
      "          'crusader': 1,\n",
      "          'neverending': 1,\n",
      "          'evil': 1,\n",
      "          'every': 1,\n",
      "          'tuesday': 1,\n",
      "          'night': 1,\n",
      "          'wb': 1,\n",
      "          'network': 1,\n",
      "          'downonherluck': 1,\n",
      "          'chef': 1,\n",
      "          'suspected': 1,\n",
      "          'dabbling': 1,\n",
      "          'witchcraft': 1,\n",
      "          'flailing': 1,\n",
      "          'restaurant': 1,\n",
      "          'receives': 1,\n",
      "          'help': 1,\n",
      "          'form': 1,\n",
      "          'magically': 1,\n",
      "          'scrumptious': 1,\n",
      "          'meals': 1,\n",
      "          'ntaste': 1,\n",
      "          'test': 1,\n",
      "          'results': 1,\n",
      "          'vampire': 1,\n",
      "          'slaying': 1,\n",
      "          'place': 1,\n",
      "          'really': 1,\n",
      "          'livened': 1,\n",
      "          'excruciating': 1,\n",
      "          'actually': 1,\n",
      "          'quite': 1,\n",
      "          'easy': 1,\n",
      "          'deny': 1,\n",
      "          'disaster': 1,\n",
      "          'culinary': 1,\n",
      "          'proportions': 1,\n",
      "          'pretty': 1,\n",
      "          'opening': 1,\n",
      "          'ngellars': 1,\n",
      "          'falling': 1,\n",
      "          'harried': 1,\n",
      "          'henri': 1,\n",
      "          'bendel': 1,\n",
      "          'exec': 1,\n",
      "          'sean': 1,\n",
      "          'patrick': 1,\n",
      "          'flannery': 1,\n",
      "          'powder': 1,\n",
      "          'around': 1,\n",
      "          'time': 1,\n",
      "          'discovers': 1,\n",
      "          'uncanny': 1,\n",
      "          'ability': 1,\n",
      "          'mystically': 1,\n",
      "          'manifest': 1,\n",
      "          'emotions': 1,\n",
      "          'cooking': 1,\n",
      "          'secret': 1,\n",
      "          'ingredient': 1,\n",
      "          'arouses': 1,\n",
      "          'interest': 1,\n",
      "          'publics': 1,\n",
      "          'tiny': 1,\n",
      "          'tribeca': 1,\n",
      "          'eatery': 1,\n",
      "          'nall': 1,\n",
      "          'love': 1,\n",
      "          'sorcery': 1,\n",
      "          'lot': 1,\n",
      "          'also': 1,\n",
      "          'figures': 1,\n",
      "          'story': 1,\n",
      "          'tale': 1,\n",
      "          'times': 1,\n",
      "          'american': 1,\n",
      "          'spin': 1,\n",
      "          '1993s': 1,\n",
      "          'mexican': 1,\n",
      "          'classic': 1,\n",
      "          'chocolate': 1,\n",
      "          'nseveral': 1,\n",
      "          'differences': 1,\n",
      "          'didnt': 1,\n",
      "          'two': 1,\n",
      "          'good': 1,\n",
      "          'film': 1,\n",
      "          'hand': 1,\n",
      "          'challenging': 1,\n",
      "          'easybake': 1,\n",
      "          'oven': 1,\n",
      "          'namateurishly': 1,\n",
      "          'staged': 1,\n",
      "          'scenes': 1,\n",
      "          'cancel': 1,\n",
      "          'badness': 1,\n",
      "          'embarrassing': 1,\n",
      "          'seduction': 1,\n",
      "          'literal': 1,\n",
      "          'vanilla': 1,\n",
      "          'fog': 1,\n",
      "          'impromptu': 1,\n",
      "          'dance': 1,\n",
      "          'sequence': 1,\n",
      "          'never': 1,\n",
      "          'took': 1,\n",
      "          'anything': 1,\n",
      "          'garish': 1,\n",
      "          'nthe': 1,\n",
      "          'intrusive': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'distracts': 1,\n",
      "          'flat': 1,\n",
      "          'dialogue': 1,\n",
      "          'regular': 1,\n",
      "          'intervals': 1,\n",
      "          'youre': 1,\n",
      "          'miss': 1,\n",
      "          'take': 1,\n",
      "          'away': 1,\n",
      "          'instances': 1,\n",
      "          'salty': 1,\n",
      "          'language': 1,\n",
      "          'madefordisney': 1,\n",
      "          'channel': 1,\n",
      "          'written': 1,\n",
      "          'nbut': 1,\n",
      "          'majority': 1,\n",
      "          'resistibility': 1,\n",
      "          'factor': 1,\n",
      "          'less': 1,\n",
      "          'aforementioned': 1,\n",
      "          'overkill': 1,\n",
      "          'bland': 1,\n",
      "          'leads': 1,\n",
      "          'thin': 1,\n",
      "          'ambiguously': 1,\n",
      "          'defined': 1,\n",
      "          'theres': 1,\n",
      "          'fun': 1,\n",
      "          'rooting': 1,\n",
      "          'inevitable': 1,\n",
      "          'happily': 1,\n",
      "          'nnor': 1,\n",
      "          'otherworldly': 1,\n",
      "          'powers': 1,\n",
      "          'serve': 1,\n",
      "          'bring': 1,\n",
      "          'together': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'left': 1,\n",
      "          'hohum': 1,\n",
      "          'relationship': 1,\n",
      "          'based': 1,\n",
      "          'enchanted': 1,\n",
      "          'eclairs': 1,\n",
      "          'last': 1,\n",
      "          'long': 1,\n",
      "          'people': 1,\n",
      "          'nperhaps': 1,\n",
      "          'sensing': 1,\n",
      "          'filmmakers': 1,\n",
      "          'piled': 1,\n",
      "          'weird': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'acting': 1,\n",
      "          'vets': 1,\n",
      "          'betty': 1,\n",
      "          'buckley': 1,\n",
      "          'dylan': 1,\n",
      "          'baker': 1,\n",
      "          'patricia': 1,\n",
      "          'clarkson': 1,\n",
      "          'dont': 1,\n",
      "          'either': 1,\n",
      "          'nothing': 1,\n",
      "          'goes': 1,\n",
      "          'save': 1,\n",
      "          'doesnt': 1,\n",
      "          'somewhere': 1,\n",
      "          'wish': 1,\n",
      "          'shed': 1,\n",
      "          '_somewhere_': 1,\n",
      "          'better': 1,\n",
      "          'nalready': 1,\n",
      "          'proving': 1,\n",
      "          'major': 1,\n",
      "          'talent': 1,\n",
      "          'relatively': 1,\n",
      "          'big': 1,\n",
      "          'smallscreen': 1,\n",
      "          'roles': 1,\n",
      "          'shes': 1,\n",
      "          'sole': 1,\n",
      "          'reason': 1,\n",
      "          'overcooked': 1,\n",
      "          'souffle': 1,\n",
      "          'isnt': 1,\n",
      "          'completely': 1,\n",
      "          'fit': 1,\n",
      "          'garbage': 1,\n",
      "          'disposal': 1,\n",
      "          'looking': 1,\n",
      "          'smashing': 1,\n",
      "          'todd': 1,\n",
      "          'oldhamdesigned': 1,\n",
      "          'duds': 1,\n",
      "          'investing': 1,\n",
      "          'perfunctory': 1,\n",
      "          'gets': 1,\n",
      "          'return': 1,\n",
      "          'nits': 1,\n",
      "          'certainly': 1,\n",
      "          'dish': 1,\n",
      "          'served': 1,\n",
      "          'current': 1,\n",
      "          'condition': 1,\n",
      "          'guess': 1,\n",
      "          'without': 1,\n",
      "          'strictly': 1,\n",
      "          'unwatchable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'warrior': 4,\n",
      "          'nthe': 4,\n",
      "          '13th': 3,\n",
      "          'banderas': 3,\n",
      "          'men': 3,\n",
      "          'numerous': 3,\n",
      "          'acting': 2,\n",
      "          'best': 2,\n",
      "          'would': 2,\n",
      "          'credits': 2,\n",
      "          'moment': 2,\n",
      "          'goes': 2,\n",
      "          'ending': 2,\n",
      "          'warriors': 2,\n",
      "          'join': 2,\n",
      "          '13': 2,\n",
      "          'man': 2,\n",
      "          'line': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'makes': 2,\n",
      "          'like': 2,\n",
      "          'one': 2,\n",
      "          'help': 2,\n",
      "          'reeks': 1,\n",
      "          'badly': 1,\n",
      "          'melodrama': 1,\n",
      "          'poor': 1,\n",
      "          'carries': 1,\n",
      "          'worst': 1,\n",
      "          'scent': 1,\n",
      "          'canines': 1,\n",
      "          'least': 1,\n",
      "          'appetizing': 1,\n",
      "          'residue': 1,\n",
      "          'part': 1,\n",
      "          'close': 1,\n",
      "          'contest': 1,\n",
      "          'closing': 1,\n",
      "          'brief': 1,\n",
      "          'middle': 1,\n",
      "          'screen': 1,\n",
      "          'entirely': 1,\n",
      "          'white': 1,\n",
      "          'hope': 1,\n",
      "          'slipped': 1,\n",
      "          'caught': 1,\n",
      "          'ablaze': 1,\n",
      "          'projector': 1,\n",
      "          'nmy': 1,\n",
      "          'vote': 1,\n",
      "          'start': 1,\n",
      "          'trying': 1,\n",
      "          'put': 1,\n",
      "          'awful': 1,\n",
      "          'experience': 1,\n",
      "          'behind': 1,\n",
      "          'nibn': 1,\n",
      "          'fahdlan': 1,\n",
      "          'antonio': 1,\n",
      "          'important': 1,\n",
      "          'official': 1,\n",
      "          'banished': 1,\n",
      "          'home': 1,\n",
      "          'sleeping': 1,\n",
      "          'another': 1,\n",
      "          'mans': 1,\n",
      "          'wife': 1,\n",
      "          'nhe': 1,\n",
      "          'encounters': 1,\n",
      "          'group': 1,\n",
      "          'norse': 1,\n",
      "          'convince': 1,\n",
      "          'mysterious': 1,\n",
      "          'journey': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'taken': 1,\n",
      "          'nfahdlan': 1,\n",
      "          'chosen': 1,\n",
      "          'last': 1,\n",
      "          'desperately': 1,\n",
      "          'overacted': 1,\n",
      "          'overdone': 1,\n",
      "          'persons': 1,\n",
      "          'screening': 1,\n",
      "          'attended': 1,\n",
      "          'broke': 1,\n",
      "          'laughter': 1,\n",
      "          'movie': 1,\n",
      "          'proves': 1,\n",
      "          'new': 1,\n",
      "          'low': 1,\n",
      "          'point': 1,\n",
      "          'whos': 1,\n",
      "          'seems': 1,\n",
      "          'closer': 1,\n",
      "          'role': 1,\n",
      "          'lover': 1,\n",
      "          'caretaker': 1,\n",
      "          'dying': 1,\n",
      "          'gay': 1,\n",
      "          '1993s': 1,\n",
      "          'philadelphia': 1,\n",
      "          'nin': 1,\n",
      "          'films': 1,\n",
      "          'supposed': 1,\n",
      "          'pay': 1,\n",
      "          'scene': 1,\n",
      "          'exclaims': 1,\n",
      "          'wrong': 1,\n",
      "          'na': 1,\n",
      "          'intended': 1,\n",
      "          'memorable': 1,\n",
      "          'quote': 1,\n",
      "          'production': 1,\n",
      "          'delivers': 1,\n",
      "          'fashion': 1,\n",
      "          'chevy': 1,\n",
      "          'chases': 1,\n",
      "          'career': 1,\n",
      "          'look': 1,\n",
      "          'oscar': 1,\n",
      "          'material': 1,\n",
      "          'based': 1,\n",
      "          'michael': 1,\n",
      "          'crichtons': 1,\n",
      "          'selling': 1,\n",
      "          'novel': 1,\n",
      "          'eaters': 1,\n",
      "          'dead': 1,\n",
      "          'shot': 1,\n",
      "          'name': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'rewrites': 1,\n",
      "          'dialogue': 1,\n",
      "          'seem': 1,\n",
      "          'completely': 1,\n",
      "          'phony': 1,\n",
      "          'plot': 1,\n",
      "          'incredibly': 1,\n",
      "          'difficult': 1,\n",
      "          'follow': 1,\n",
      "          'nat': 1,\n",
      "          'time': 1,\n",
      "          'think': 1,\n",
      "          'questions': 1,\n",
      "          'nquestions': 1,\n",
      "          'characters': 1,\n",
      "          'always': 1,\n",
      "          'perfect': 1,\n",
      "          'lighting': 1,\n",
      "          'even': 1,\n",
      "          'pitch': 1,\n",
      "          'dark': 1,\n",
      "          'n': 1,\n",
      "          'ever': 1,\n",
      "          'blood': 1,\n",
      "          'cover': 1,\n",
      "          'sides': 1,\n",
      "          'face': 1,\n",
      "          'rather': 1,\n",
      "          'side': 1,\n",
      "          'nand': 1,\n",
      "          'finally': 1,\n",
      "          'manager': 1,\n",
      "          'give': 1,\n",
      "          'refund': 1,\n",
      "          'n90': 1,\n",
      "          'minutes': 1,\n",
      "          '103': 1,\n",
      "          'minute': 1,\n",
      "          'invites': 1,\n",
      "          'come': 1,\n",
      "          'woman': 1,\n",
      "          'nothing': 1,\n",
      "          'could': 1,\n",
      "          'appropriate': 1,\n",
      "          'hands': 1,\n",
      "          'form': 1,\n",
      "          'chorus': 1,\n",
      "          'break': 1,\n",
      "          'rendition': 1,\n",
      "          'springtime': 1,\n",
      "          'hitler': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'though': 2,\n",
      "          'epic': 2,\n",
      "          'michael': 2,\n",
      "          'douglas': 2,\n",
      "          'lion': 2,\n",
      "          'movie': 2,\n",
      "          'even': 2,\n",
      "          'ive': 1,\n",
      "          'heard': 1,\n",
      "          'called': 1,\n",
      "          'jaws': 1,\n",
      "          'claws': 1,\n",
      "          'thats': 1,\n",
      "          'fair': 1,\n",
      "          'summation': 1,\n",
      "          'plot': 1,\n",
      "          'tag': 1,\n",
      "          'line': 1,\n",
      "          'little': 1,\n",
      "          'quantify': 1,\n",
      "          'quality': 1,\n",
      "          'ndirector': 1,\n",
      "          'stephen': 1,\n",
      "          'hopkins': 1,\n",
      "          'blown': 1,\n",
      "          'away': 1,\n",
      "          'predator': 1,\n",
      "          '2': 1,\n",
      "          'screenwriter': 1,\n",
      "          'william': 1,\n",
      "          'goldman': 1,\n",
      "          'maverick': 1,\n",
      "          'misery': 1,\n",
      "          'would': 1,\n",
      "          'believe': 1,\n",
      "          'historical': 1,\n",
      "          'drama': 1,\n",
      "          'man': 1,\n",
      "          'nature': 1,\n",
      "          'based': 1,\n",
      "          'really': 1,\n",
      "          'happened': 1,\n",
      "          'africa': 1,\n",
      "          'railroad': 1,\n",
      "          'workers': 1,\n",
      "          'trying': 1,\n",
      "          'build': 1,\n",
      "          'bridge': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'ntheyve': 1,\n",
      "          'stacked': 1,\n",
      "          'deck': 1,\n",
      "          'two': 1,\n",
      "          'big': 1,\n",
      "          'stars': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'bigger': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'beautiful': 1,\n",
      "          'photography': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'winner': 1,\n",
      "          'vilmos': 1,\n",
      "          'zsigmond': 1,\n",
      "          'score': 1,\n",
      "          'overblown': 1,\n",
      "          'makes': 1,\n",
      "          'king': 1,\n",
      "          'soundtrack': 1,\n",
      "          'sound': 1,\n",
      "          'like': 1,\n",
      "          'chamber': 1,\n",
      "          'music': 1,\n",
      "          'nthe': 1,\n",
      "          'doesnt': 1,\n",
      "          'make': 1,\n",
      "          'lick': 1,\n",
      "          'sense': 1,\n",
      "          'either': 1,\n",
      "          'basic': 1,\n",
      "          'boofest': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'bits': 1,\n",
      "          'laughably': 1,\n",
      "          'ludicrous': 1,\n",
      "          'may': 1,\n",
      "          'think': 1,\n",
      "          'youve': 1,\n",
      "          'stumbled': 1,\n",
      "          'sequel': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theater': 1,\n",
      "          '3000': 1,\n",
      "          'nhow': 1,\n",
      "          'three': 1,\n",
      "          'guys': 1,\n",
      "          'rifles': 1,\n",
      "          'trap': 1,\n",
      "          'cant': 1,\n",
      "          'hit': 1,\n",
      "          'damned': 1,\n",
      "          'thing': 1,\n",
      "          'hamonwry': 1,\n",
      "          'acting': 1,\n",
      "          'chews': 1,\n",
      "          'scenery': 1,\n",
      "          'animals': 1,\n",
      "          'ever': 1,\n",
      "          'favorite': 1,\n",
      "          'lions': 1,\n",
      "          'agile': 1,\n",
      "          'climb': 1,\n",
      "          'onto': 1,\n",
      "          'rooftops': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nbut': 4,\n",
      "          'giant': 4,\n",
      "          'billy': 3,\n",
      "          'crystal': 3,\n",
      "          'sammy': 3,\n",
      "          'max': 3,\n",
      "          'actor': 3,\n",
      "          'pathetic': 3,\n",
      "          'yet': 2,\n",
      "          'concept': 2,\n",
      "          'comedy': 2,\n",
      "          'nhe': 2,\n",
      "          'tries': 2,\n",
      "          'life': 2,\n",
      "          'gets': 2,\n",
      "          'bogged': 2,\n",
      "          'nsammy': 2,\n",
      "          'nhes': 2,\n",
      "          'muresan': 2,\n",
      "          'lilianna': 2,\n",
      "          'america': 2,\n",
      "          'back': 2,\n",
      "          'nand': 2,\n",
      "          'job': 2,\n",
      "          'nthe': 2,\n",
      "          'isnt': 2,\n",
      "          'films': 2,\n",
      "          'best': 2,\n",
      "          'much': 2,\n",
      "          'steven': 2,\n",
      "          'seagal': 2,\n",
      "          'accent': 2,\n",
      "          'doesnt': 2,\n",
      "          'reappears': 1,\n",
      "          'another': 1,\n",
      "          'high': 1,\n",
      "          'infuse': 1,\n",
      "          'sentimentality': 1,\n",
      "          'lack': 1,\n",
      "          'sophistication': 1,\n",
      "          'struggling': 1,\n",
      "          'agent': 1,\n",
      "          'end': 1,\n",
      "          'ropes': 1,\n",
      "          'separated': 1,\n",
      "          'wife': 1,\n",
      "          'serena': 1,\n",
      "          'kathleen': 1,\n",
      "          'quinlan': 1,\n",
      "          'last': 1,\n",
      "          'serious': 1,\n",
      "          'client': 1,\n",
      "          'lowbudget': 1,\n",
      "          'film': 1,\n",
      "          'shooting': 1,\n",
      "          'romania': 1,\n",
      "          'turn': 1,\n",
      "          'bad': 1,\n",
      "          'luck': 1,\n",
      "          'wrecks': 1,\n",
      "          'car': 1,\n",
      "          'nto': 1,\n",
      "          'mysteriously': 1,\n",
      "          'saved': 1,\n",
      "          'gheorghe': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'leads': 1,\n",
      "          'solitary': 1,\n",
      "          'helping': 1,\n",
      "          'monks': 1,\n",
      "          'local': 1,\n",
      "          'monastery': 1,\n",
      "          'nhis': 1,\n",
      "          'longing': 1,\n",
      "          'long': 1,\n",
      "          'lost': 1,\n",
      "          'love': 1,\n",
      "          'joanna': 1,\n",
      "          'pacula': 1,\n",
      "          'since': 1,\n",
      "          'moved': 1,\n",
      "          'seeing': 1,\n",
      "          'golden': 1,\n",
      "          'ticket': 1,\n",
      "          'convinces': 1,\n",
      "          'become': 1,\n",
      "          'represented': 1,\n",
      "          'course': 1,\n",
      "          'come': 1,\n",
      "          'sam': 1,\n",
      "          'bounce': 1,\n",
      "          'dangling': 1,\n",
      "          'meeting': 1,\n",
      "          'carrot': 1,\n",
      "          'maxs': 1,\n",
      "          'nose': 1,\n",
      "          'slowly': 1,\n",
      "          'sammys': 1,\n",
      "          'deceptions': 1,\n",
      "          'begin': 1,\n",
      "          'haunt': 1,\n",
      "          'develop': 1,\n",
      "          'conscience': 1,\n",
      "          'innocent': 1,\n",
      "          'becomes': 1,\n",
      "          'disillusioned': 1,\n",
      "          'humor': 1,\n",
      "          'worlds': 1,\n",
      "          'greatest': 1,\n",
      "          'nmostly': 1,\n",
      "          'falls': 1,\n",
      "          'category': 1,\n",
      "          'boy': 1,\n",
      "          'hes': 1,\n",
      "          'nso': 1,\n",
      "          'big': 1,\n",
      "          'go': 1,\n",
      "          'far': 1,\n",
      "          'matter': 1,\n",
      "          'hard': 1,\n",
      "          'talent': 1,\n",
      "          'nstill': 1,\n",
      "          'slightly': 1,\n",
      "          'amusing': 1,\n",
      "          'parts': 1,\n",
      "          'longed': 1,\n",
      "          'movie': 1,\n",
      "          'sappy': 1,\n",
      "          'moments': 1,\n",
      "          'moment': 1,\n",
      "          'thats': 1,\n",
      "          'saying': 1,\n",
      "          'bit': 1,\n",
      "          'part': 1,\n",
      "          'playing': 1,\n",
      "          'nbetween': 1,\n",
      "          'executive': 1,\n",
      "          'decision': 1,\n",
      "          'seagals': 1,\n",
      "          'roles': 1,\n",
      "          'cameos': 1,\n",
      "          'nmaybe': 1,\n",
      "          'consider': 1,\n",
      "          'change': 1,\n",
      "          'work': 1,\n",
      "          'character': 1,\n",
      "          'ngheorghe': 1,\n",
      "          'natural': 1,\n",
      "          'thick': 1,\n",
      "          'cottonmouthed': 1,\n",
      "          'certainly': 1,\n",
      "          'help': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'thing': 1,\n",
      "          'adds': 1,\n",
      "          'role': 1,\n",
      "          'immense': 1,\n",
      "          'stature': 1,\n",
      "          'noriginally': 1,\n",
      "          'designed': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'andre': 1,\n",
      "          'nandre': 1,\n",
      "          'also': 1,\n",
      "          'hefty': 1,\n",
      "          'displayed': 1,\n",
      "          'knack': 1,\n",
      "          'princess': 1,\n",
      "          'bride': 1,\n",
      "          'something': 1,\n",
      "          'nmuresan': 1,\n",
      "          'studied': 1,\n",
      "          'pointers': 1,\n",
      "          'nwhy': 1,\n",
      "          'continually': 1,\n",
      "          'get': 1,\n",
      "          'caught': 1,\n",
      "          'comedies': 1,\n",
      "          'proven': 1,\n",
      "          'funnier': 1,\n",
      "          'formulaic': 1,\n",
      "          'allow': 1,\n",
      "          'like': 1,\n",
      "          'glutton': 1,\n",
      "          'punishment': 1,\n",
      "          'keeps': 1,\n",
      "          'coming': 1,\n",
      "          'nthat': 1,\n",
      "          'mean': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'planet': 3,\n",
      "          'nthe': 3,\n",
      "          'nin': 2,\n",
      "          'red': 2,\n",
      "          'film': 2,\n",
      "          'ship': 2,\n",
      "          'time': 2,\n",
      "          'could': 2,\n",
      "          'waiting': 2,\n",
      "          'movies': 1,\n",
      "          'two': 1,\n",
      "          'big': 1,\n",
      "          'es': 1,\n",
      "          'well': 1,\n",
      "          'educate': 1,\n",
      "          'entertain': 1,\n",
      "          'best': 1,\n",
      "          'possible': 1,\n",
      "          'worlds': 1,\n",
      "          'accomplish': 1,\n",
      "          'non': 1,\n",
      "          'fail': 1,\n",
      "          'entirely': 1,\n",
      "          'near': 1,\n",
      "          'future': 1,\n",
      "          'manned': 1,\n",
      "          'mission': 1,\n",
      "          'sent': 1,\n",
      "          'mars': 1,\n",
      "          'observe': 1,\n",
      "          'primitive': 1,\n",
      "          'plant': 1,\n",
      "          'growth': 1,\n",
      "          'nthis': 1,\n",
      "          'remarkable': 1,\n",
      "          'job': 1,\n",
      "          'demonstrating': 1,\n",
      "          'exactly': 1,\n",
      "          'exciting': 1,\n",
      "          'watching': 1,\n",
      "          'algae': 1,\n",
      "          'grow': 1,\n",
      "          'would': 1,\n",
      "          'nafter': 1,\n",
      "          'mumbojumbo': 1,\n",
      "          'ecological': 1,\n",
      "          'disaster': 1,\n",
      "          'earth': 1,\n",
      "          'interminable': 1,\n",
      "          'wait': 1,\n",
      "          'reach': 1,\n",
      "          'fourth': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'almost': 1,\n",
      "          'fast': 1,\n",
      "          'movie': 1,\n",
      "          'ground': 1,\n",
      "          'crew': 1,\n",
      "          'people': 1,\n",
      "          'couldnt': 1,\n",
      "          'care': 1,\n",
      "          'less': 1,\n",
      "          'trapped': 1,\n",
      "          'surface': 1,\n",
      "          'without': 1,\n",
      "          'food': 1,\n",
      "          'water': 1,\n",
      "          'air': 1,\n",
      "          'stalked': 1,\n",
      "          'deadly': 1,\n",
      "          'rogue': 1,\n",
      "          'cyberdog': 1,\n",
      "          'one': 1,\n",
      "          'potentially': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'carrieanne': 1,\n",
      "          'moss': 1,\n",
      "          'spends': 1,\n",
      "          'alone': 1,\n",
      "          'orbiting': 1,\n",
      "          'talking': 1,\n",
      "          'computer': 1,\n",
      "          'nattempting': 1,\n",
      "          'graft': 1,\n",
      "          '2001': 1,\n",
      "          'esque': 1,\n",
      "          'space': 1,\n",
      "          'mysticism': 1,\n",
      "          'terminator': 1,\n",
      "          'robot': 1,\n",
      "          'horror': 1,\n",
      "          'first': 1,\n",
      "          'director': 1,\n",
      "          'antony': 1,\n",
      "          'hoffman': 1,\n",
      "          'cant': 1,\n",
      "          'seem': 1,\n",
      "          'figure': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'nneither': 1,\n",
      "          'ndidnt': 1,\n",
      "          'anyone': 1,\n",
      "          'step': 1,\n",
      "          'back': 1,\n",
      "          'shooting': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'coherent': 1,\n",
      "          'story': 1,\n",
      "          'ncouldnt': 1,\n",
      "          'used': 1,\n",
      "          'money': 1,\n",
      "          'saved': 1,\n",
      "          'pay': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'actors': 1,\n",
      "          'hire': 1,\n",
      "          'scriptwriter': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'missteps': 1,\n",
      "          'nevery': 1,\n",
      "          'opportunity': 1,\n",
      "          'create': 1,\n",
      "          'dynamic': 1,\n",
      "          'tension': 1,\n",
      "          'thwarted': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'lackluster': 1,\n",
      "          'direction': 1,\n",
      "          'nwhy': 1,\n",
      "          'introduce': 1,\n",
      "          'theme': 1,\n",
      "          'faith': 1,\n",
      "          'vs': 1,\n",
      "          'science': 1,\n",
      "          'crewman': 1,\n",
      "          'comment': 1,\n",
      "          'disappears': 1,\n",
      "          'early': 1,\n",
      "          'die': 1,\n",
      "          '_offscreen_': 1,\n",
      "          'audience': 1,\n",
      "          'begins': 1,\n",
      "          'something': 1,\n",
      "          'happen': 1,\n",
      "          'ntwo': 1,\n",
      "          'hours': 1,\n",
      "          'later': 1,\n",
      "          'theyre': 1,\n",
      "          'still': 1,\n",
      "          'ndespite': 1,\n",
      "          'greatest': 1,\n",
      "          'hopes': 1,\n",
      "          'life': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'nthey': 7,\n",
      "          'na': 5,\n",
      "          'woody': 5,\n",
      "          'wesley': 5,\n",
      "          'train': 4,\n",
      "          'seen': 4,\n",
      "          'interesting': 4,\n",
      "          'nthe': 4,\n",
      "          'n': 4,\n",
      "          'even': 3,\n",
      "          'nits': 3,\n",
      "          'time': 3,\n",
      "          'kid': 3,\n",
      "          'money': 3,\n",
      "          'token': 3,\n",
      "          'nive': 3,\n",
      "          'fuck': 3,\n",
      "          'stupid': 2,\n",
      "          'doesnt': 2,\n",
      "          'enjoyable': 2,\n",
      "          'would': 2,\n",
      "          'one': 2,\n",
      "          'movies': 2,\n",
      "          'simply': 2,\n",
      "          'better': 2,\n",
      "          'waste': 2,\n",
      "          'police': 2,\n",
      "          'job': 2,\n",
      "          'id': 2,\n",
      "          'running': 2,\n",
      "          'nthen': 2,\n",
      "          'enough': 2,\n",
      "          'work': 2,\n",
      "          'case': 2,\n",
      "          'two': 2,\n",
      "          'subplot': 2,\n",
      "          'minute': 2,\n",
      "          'get': 2,\n",
      "          'exist': 2,\n",
      "          'like': 2,\n",
      "          'mess': 2,\n",
      "          'genuine': 2,\n",
      "          'tried': 2,\n",
      "          'pitch': 2,\n",
      "          'capsule': 1,\n",
      "          'insult': 1,\n",
      "          'incompetent': 1,\n",
      "          'benefit': 1,\n",
      "          'trashily': 1,\n",
      "          'nweslely': 1,\n",
      "          'well': 1,\n",
      "          'leave': 1,\n",
      "          'resumes': 1,\n",
      "          'nmoney': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'idiotic': 1,\n",
      "          'contemptuous': 1,\n",
      "          'audience': 1,\n",
      "          'nit': 1,\n",
      "          'tries': 1,\n",
      "          'make': 1,\n",
      "          'us': 1,\n",
      "          'swallow': 1,\n",
      "          'things': 1,\n",
      "          'stopped': 1,\n",
      "          'cold': 1,\n",
      "          'plain': 1,\n",
      "          'omit': 1,\n",
      "          'entirely': 1,\n",
      "          'snipes': 1,\n",
      "          'harrelson': 1,\n",
      "          'actors': 1,\n",
      "          'rights': 1,\n",
      "          'nauseating': 1,\n",
      "          'fun': 1,\n",
      "          'trash': 1,\n",
      "          'nwoody': 1,\n",
      "          'star': 1,\n",
      "          'maybe': 1,\n",
      "          'thats': 1,\n",
      "          'right': 1,\n",
      "          'word': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'transit': 1,\n",
      "          'authority': 1,\n",
      "          'could': 1,\n",
      "          'actually': 1,\n",
      "          'core': 1,\n",
      "          'really': 1,\n",
      "          'plays': 1,\n",
      "          'drunk': 1,\n",
      "          'possum': 1,\n",
      "          'attract': 1,\n",
      "          'chainsnatchers': 1,\n",
      "          'lookout': 1,\n",
      "          'ni': 1,\n",
      "          'whole': 1,\n",
      "          'headful': 1,\n",
      "          'legal': 1,\n",
      "          'ethical': 1,\n",
      "          'questions': 1,\n",
      "          'surrounding': 1,\n",
      "          'raised': 1,\n",
      "          'documentary': 1,\n",
      "          'subject': 1,\n",
      "          'intelligent': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'nsee': 1,\n",
      "          'follow': 1,\n",
      "          'chase': 1,\n",
      "          'tunnel': 1,\n",
      "          'station': 1,\n",
      "          'heavily': 1,\n",
      "          'armored': 1,\n",
      "          'car': 1,\n",
      "          'picks': 1,\n",
      "          'cash': 1,\n",
      "          'books': 1,\n",
      "          'parked': 1,\n",
      "          'guards': 1,\n",
      "          'see': 1,\n",
      "          'lift': 1,\n",
      "          'machine': 1,\n",
      "          'guns': 1,\n",
      "          'shout': 1,\n",
      "          'halt': 1,\n",
      "          'nand': 1,\n",
      "          'open': 1,\n",
      "          'fire': 1,\n",
      "          'stop': 1,\n",
      "          'nblam': 1,\n",
      "          'kids': 1,\n",
      "          'dead': 1,\n",
      "          'show': 1,\n",
      "          'course': 1,\n",
      "          'ta': 1,\n",
      "          'cops': 1,\n",
      "          'hate': 1,\n",
      "          'pushing': 1,\n",
      "          'match': 1,\n",
      "          'starts': 1,\n",
      "          'someone': 1,\n",
      "          'gets': 1,\n",
      "          'decked': 1,\n",
      "          'covered': 1,\n",
      "          'face': 1,\n",
      "          'nid': 1,\n",
      "          'never': 1,\n",
      "          'hard': 1,\n",
      "          'little': 1,\n",
      "          'destroy': 1,\n",
      "          'systematically': 1,\n",
      "          'chance': 1,\n",
      "          'credible': 1,\n",
      "          'nfed': 1,\n",
      "          'bs': 1,\n",
      "          'goddamned': 1,\n",
      "          'fault': 1,\n",
      "          'hatch': 1,\n",
      "          'plot': 1,\n",
      "          'rob': 1,\n",
      "          'nhence': 1,\n",
      "          'title': 1,\n",
      "          'didnt': 1,\n",
      "          'figure': 1,\n",
      "          'yet': 1,\n",
      "          'theres': 1,\n",
      "          'maniac': 1,\n",
      "          'torches': 1,\n",
      "          'book': 1,\n",
      "          'clerks': 1,\n",
      "          'love': 1,\n",
      "          'story': 1,\n",
      "          'holdup': 1,\n",
      "          'holdups': 1,\n",
      "          'sorry': 1,\n",
      "          'easy': 1,\n",
      "          'lose': 1,\n",
      "          'track': 1,\n",
      "          'braindead': 1,\n",
      "          'mob': 1,\n",
      "          'boss': 1,\n",
      "          'wants': 1,\n",
      "          'nthere': 1,\n",
      "          'wasnt': 1,\n",
      "          'gave': 1,\n",
      "          'horses': 1,\n",
      "          'ass': 1,\n",
      "          'nneither': 1,\n",
      "          'play': 1,\n",
      "          'characters': 1,\n",
      "          'single': 1,\n",
      "          'nwe': 1,\n",
      "          'care': 1,\n",
      "          'noisy': 1,\n",
      "          'loud': 1,\n",
      "          'foolish': 1,\n",
      "          'jerks': 1,\n",
      "          'whould': 1,\n",
      "          'flunked': 1,\n",
      "          'academy': 1,\n",
      "          'deserve': 1,\n",
      "          'shot': 1,\n",
      "          'run': 1,\n",
      "          'may': 1,\n",
      "          'rehash': 1,\n",
      "          'kind': 1,\n",
      "          'dynamics': 1,\n",
      "          'written': 1,\n",
      "          'white': 1,\n",
      "          'men': 1,\n",
      "          'cant': 1,\n",
      "          'jump': 1,\n",
      "          'idiots': 1,\n",
      "          'expected': 1,\n",
      "          'root': 1,\n",
      "          'nbullcrap': 1,\n",
      "          'completely': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'tone': 1,\n",
      "          'texture': 1,\n",
      "          'nwhat': 1,\n",
      "          'exactly': 1,\n",
      "          'cop': 1,\n",
      "          'npolice': 1,\n",
      "          'procedure': 1,\n",
      "          'given': 1,\n",
      "          'moments': 1,\n",
      "          'thought': 1,\n",
      "          'anywhere': 1,\n",
      "          'thriller': 1,\n",
      "          'booth': 1,\n",
      "          'killer': 1,\n",
      "          'inept': 1,\n",
      "          'throwaway': 1,\n",
      "          'ditched': 1,\n",
      "          'rewrite': 1,\n",
      "          'comedy': 1,\n",
      "          'jokes': 1,\n",
      "          'wasted': 1,\n",
      "          'drama': 1,\n",
      "          'nall': 1,\n",
      "          'dramatic': 1,\n",
      "          'tension': 1,\n",
      "          'principals': 1,\n",
      "          'freezedried': 1,\n",
      "          'offtherack': 1,\n",
      "          'ntheres': 1,\n",
      "          'moment': 1,\n",
      "          'felt': 1,\n",
      "          'listening': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'talk': 1,\n",
      "          'screenwriterese': 1,\n",
      "          'bizarre': 1,\n",
      "          'analect': 1,\n",
      "          'every': 1,\n",
      "          'sentence': 1,\n",
      "          'ends': 1,\n",
      "          'punchline': 1,\n",
      "          'primary': 1,\n",
      "          'mode': 1,\n",
      "          'expression': 1,\n",
      "          'unique': 1,\n",
      "          'conjunctions': 1,\n",
      "          'fourletter': 1,\n",
      "          'words': 1,\n",
      "          'actual': 1,\n",
      "          'dialogue': 1,\n",
      "          'excerpt': 1,\n",
      "          'heard': 1,\n",
      "          'nlook': 1,\n",
      "          'ill': 1,\n",
      "          'honest': 1,\n",
      "          'writing': 1,\n",
      "          'screenplays': 1,\n",
      "          'suspect': 1,\n",
      "          'laughed': 1,\n",
      "          'office': 1,\n",
      "          'nanyone': 1,\n",
      "          'interested': 1,\n",
      "          'hearing': 1,\n",
      "          'ideas': 1,\n",
      "          'good': 1,\n",
      "          'write': 1,\n",
      "          'hear': 1,\n",
      "          'god': 1,\n",
      "          'knows': 1,\n",
      "          'know': 1,\n",
      "          'weasted': 1,\n",
      "          'piece': 1,\n",
      "          'tripe': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 4,\n",
      "          'get': 4,\n",
      "          'dumas': 3,\n",
      "          'musketeers': 3,\n",
      "          'dartagnan': 3,\n",
      "          'roth': 3,\n",
      "          'nthe': 3,\n",
      "          'works': 2,\n",
      "          'reason': 2,\n",
      "          'story': 2,\n",
      "          'musketeer': 2,\n",
      "          'film': 2,\n",
      "          'nits': 2,\n",
      "          'awful': 2,\n",
      "          'classic': 2,\n",
      "          'action': 2,\n",
      "          'sequences': 2,\n",
      "          'time': 2,\n",
      "          'cant': 2,\n",
      "          'febre': 2,\n",
      "          'richelieu': 2,\n",
      "          'fight': 2,\n",
      "          'deneuve': 2,\n",
      "          'suvari': 2,\n",
      "          'nothing': 2,\n",
      "          'least': 2,\n",
      "          'sense': 2,\n",
      "          'felt': 2,\n",
      "          'though': 2,\n",
      "          'every': 2,\n",
      "          'alexander': 1,\n",
      "          'three': 1,\n",
      "          'oftenadapted': 1,\n",
      "          'literary': 1,\n",
      "          'good': 1,\n",
      "          'swashbuckler': 1,\n",
      "          'legend': 1,\n",
      "          'rather': 1,\n",
      "          'nperhaps': 1,\n",
      "          'new': 1,\n",
      "          'reimagines': 1,\n",
      "          'novel': 1,\n",
      "          'spirit': 1,\n",
      "          'style': 1,\n",
      "          'matrix': 1,\n",
      "          'adaptation': 1,\n",
      "          'many': 1,\n",
      "          'spiritless': 1,\n",
      "          'silly': 1,\n",
      "          'unforgivably': 1,\n",
      "          'boring': 1,\n",
      "          'transforming': 1,\n",
      "          'timeless': 1,\n",
      "          'mishmash': 1,\n",
      "          'oldastime': 1,\n",
      "          'clich': 1,\n",
      "          'incoherent': 1,\n",
      "          'repetitive': 1,\n",
      "          'nthis': 1,\n",
      "          'played': 1,\n",
      "          'calvin': 1,\n",
      "          'klein': 1,\n",
      "          'model': 1,\n",
      "          'justin': 1,\n",
      "          'chambers': 1,\n",
      "          'even': 1,\n",
      "          'pronounce': 1,\n",
      "          'characters': 1,\n",
      "          'name': 1,\n",
      "          'nas': 1,\n",
      "          'boy': 1,\n",
      "          'watched': 1,\n",
      "          'father': 1,\n",
      "          'killed': 1,\n",
      "          'tim': 1,\n",
      "          'lackey': 1,\n",
      "          'powerhungry': 1,\n",
      "          'cardinal': 1,\n",
      "          'nhe': 1,\n",
      "          'vowed': 1,\n",
      "          'vengeance': 1,\n",
      "          'nafter': 1,\n",
      "          'undergoing': 1,\n",
      "          'intense': 1,\n",
      "          'training': 1,\n",
      "          'expert': 1,\n",
      "          'swordsman': 1,\n",
      "          'goes': 1,\n",
      "          'looking': 1,\n",
      "          'enemy': 1,\n",
      "          'non': 1,\n",
      "          'quest': 1,\n",
      "          'embroils': 1,\n",
      "          'struggle': 1,\n",
      "          'control': 1,\n",
      "          'highest': 1,\n",
      "          'levels': 1,\n",
      "          'french': 1,\n",
      "          'government': 1,\n",
      "          'royal': 1,\n",
      "          'lost': 1,\n",
      "          'gusto': 1,\n",
      "          'jobs': 1,\n",
      "          'taken': 1,\n",
      "          'cardinals': 1,\n",
      "          'guards': 1,\n",
      "          'nonly': 1,\n",
      "          'loyal': 1,\n",
      "          'swashbuckers': 1,\n",
      "          'remain': 1,\n",
      "          'among': 1,\n",
      "          'athos': 1,\n",
      "          'portos': 1,\n",
      "          'figureheads': 1,\n",
      "          'movie': 1,\n",
      "          'ntogether': 1,\n",
      "          'extricate': 1,\n",
      "          'queen': 1,\n",
      "          'catherine': 1,\n",
      "          'traps': 1,\n",
      "          'trying': 1,\n",
      "          'plant': 1,\n",
      "          'noh': 1,\n",
      "          'afterthought': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'poor': 1,\n",
      "          'maid': 1,\n",
      "          'local': 1,\n",
      "          'inn': 1,\n",
      "          'mena': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'id': 1,\n",
      "          'mention': 1,\n",
      "          'nnow': 1,\n",
      "          'look': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'whose': 1,\n",
      "          'idea': 1,\n",
      "          'whoever': 1,\n",
      "          'responsible': 1,\n",
      "          'deserves': 1,\n",
      "          'severe': 1,\n",
      "          'tonguelashing': 1,\n",
      "          'ni': 1,\n",
      "          'modernizing': 1,\n",
      "          'literature': 1,\n",
      "          'inspire': 1,\n",
      "          'viewers': 1,\n",
      "          'actually': 1,\n",
      "          'read': 1,\n",
      "          'book': 1,\n",
      "          'films': 1,\n",
      "          'dull': 1,\n",
      "          'positive': 1,\n",
      "          'side': 1,\n",
      "          'effects': 1,\n",
      "          'ndirector': 1,\n",
      "          'peter': 1,\n",
      "          'hyams': 1,\n",
      "          'known': 1,\n",
      "          'masterpieces': 1,\n",
      "          'modern': 1,\n",
      "          'cinema': 1,\n",
      "          'timecop': 1,\n",
      "          'end': 1,\n",
      "          'days': 1,\n",
      "          'jettisoned': 1,\n",
      "          'everything': 1,\n",
      "          'great': 1,\n",
      "          'masterwork': 1,\n",
      "          'excitement': 1,\n",
      "          'cause': 1,\n",
      "          'camaraderie': 1,\n",
      "          'ninstead': 1,\n",
      "          'impressively': 1,\n",
      "          'choreographed': 1,\n",
      "          'somehow': 1,\n",
      "          'vacuous': 1,\n",
      "          'uninvolving': 1,\n",
      "          'emerge': 1,\n",
      "          'emptiness': 1,\n",
      "          'lead': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'holler': 1,\n",
      "          'could': 1,\n",
      "          'sworn': 1,\n",
      "          'rolling': 1,\n",
      "          'grave': 1,\n",
      "          'nmaybe': 1,\n",
      "          'utter': 1,\n",
      "          'lack': 1,\n",
      "          'suspense': 1,\n",
      "          'hyamss': 1,\n",
      "          'tone': 1,\n",
      "          'unreasonably': 1,\n",
      "          'dark': 1,\n",
      "          'brooding': 1,\n",
      "          'consider': 1,\n",
      "          'readers': 1,\n",
      "          'digest': 1,\n",
      "          'condensed': 1,\n",
      "          'version': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'anything': 1,\n",
      "          'may': 1,\n",
      "          'construed': 1,\n",
      "          'fun': 1,\n",
      "          'purposely': 1,\n",
      "          'expunged': 1,\n",
      "          'production': 1,\n",
      "          'joylessness': 1,\n",
      "          'proceedings': 1,\n",
      "          'oppressively': 1,\n",
      "          'shady': 1,\n",
      "          'lighting': 1,\n",
      "          'mechanical': 1,\n",
      "          'scenes': 1,\n",
      "          'frame': 1,\n",
      "          'nchambers': 1,\n",
      "          'act': 1,\n",
      "          'arent': 1,\n",
      "          'given': 1,\n",
      "          'chance': 1,\n",
      "          'nand': 1,\n",
      "          'push': 1,\n",
      "          'comes': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'shove': 1,\n",
      "          'use': 1,\n",
      "          'stunt': 1,\n",
      "          'doubles': 1,\n",
      "          'distractingly': 1,\n",
      "          'obvious': 1,\n",
      "          'gets': 1,\n",
      "          'play': 1,\n",
      "          'villain': 1,\n",
      "          'without': 1,\n",
      "          'wear': 1,\n",
      "          'ape': 1,\n",
      "          'suit': 1,\n",
      "          'nsome': 1,\n",
      "          'movies': 1,\n",
      "          'seem': 1,\n",
      "          'sloppy': 1,\n",
      "          'careless': 1,\n",
      "          'clearly': 1,\n",
      "          'made': 1,\n",
      "          'quick': 1,\n",
      "          'buck': 1,\n",
      "          'nwith': 1,\n",
      "          'meticulously': 1,\n",
      "          'crafted': 1,\n",
      "          'intricate': 1,\n",
      "          'stylish': 1,\n",
      "          'precise': 1,\n",
      "          'hitting': 1,\n",
      "          'wrong': 1,\n",
      "          'note': 1,\n",
      "          'single': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 3,\n",
      "          'godzilla': 2,\n",
      "          'would': 2,\n",
      "          'remake': 1,\n",
      "          '1954': 1,\n",
      "          'japanese': 1,\n",
      "          'monster': 1,\n",
      "          'transformed': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'copy': 1,\n",
      "          'swims': 1,\n",
      "          'south': 1,\n",
      "          'pacific': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'real': 1,\n",
      "          'reason': 1,\n",
      "          'trashes': 1,\n",
      "          'town': 1,\n",
      "          'nalthough': 1,\n",
      "          'destruction': 1,\n",
      "          'entertaining': 1,\n",
      "          'gets': 1,\n",
      "          'old': 1,\n",
      "          'fast': 1,\n",
      "          'nthe': 1,\n",
      "          'often': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'severalhundred': 1,\n",
      "          'foot': 1,\n",
      "          'tall': 1,\n",
      "          'beast': 1,\n",
      "          'hides': 1,\n",
      "          'subway': 1,\n",
      "          'tunnels': 1,\n",
      "          'sports': 1,\n",
      "          'secondrate': 1,\n",
      "          'effects': 1,\n",
      "          'baby': 1,\n",
      "          'godzillas': 1,\n",
      "          'seem': 1,\n",
      "          'one': 1,\n",
      "          'computer': 1,\n",
      "          'effect': 1,\n",
      "          'multiplied': 1,\n",
      "          'screen': 1,\n",
      "          'lame': 1,\n",
      "          'jokes': 1,\n",
      "          'mayor': 1,\n",
      "          'ebert': 1,\n",
      "          'assistant': 1,\n",
      "          'gene': 1,\n",
      "          'never': 1,\n",
      "          'funny': 1,\n",
      "          'horrendous': 1,\n",
      "          'acting': 1,\n",
      "          'even': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'dull': 1,\n",
      "          'unbelievable': 1,\n",
      "          'love': 1,\n",
      "          'story': 1,\n",
      "          'anyone': 1,\n",
      "          'want': 1,\n",
      "          'get': 1,\n",
      "          'back': 1,\n",
      "          'together': 1,\n",
      "          'maria': 1,\n",
      "          'pitillos': 1,\n",
      "          'character': 1,\n",
      "          'nthere': 1,\n",
      "          'elements': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'going': 1,\n",
      "          'waste': 1,\n",
      "          'good': 1,\n",
      "          'words': 1,\n",
      "          'nonly': 1,\n",
      "          'diehard': 1,\n",
      "          'creature': 1,\n",
      "          'feature': 1,\n",
      "          'fans': 1,\n",
      "          'might': 1,\n",
      "          'fun': 1,\n",
      "          'could': 1,\n",
      "          'check': 1,\n",
      "          'brain': 1,\n",
      "          'door': 1,\n",
      "          'ni': 1,\n",
      "          'couldnt': 1,\n",
      "          'n': 1,\n",
      "          'michael': 1,\n",
      "          'redman': 1,\n",
      "          'written': 1,\n",
      "          'column': 1,\n",
      "          '23': 1,\n",
      "          'years': 1,\n",
      "          'seldom': 1,\n",
      "          'disorienting': 1,\n",
      "          'cinematic': 1,\n",
      "          'experience': 1,\n",
      "          'seeing': 1,\n",
      "          'fear': 1,\n",
      "          'loathing': 1,\n",
      "          'evening': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'valmont': 9,\n",
      "          'intentions': 8,\n",
      "          'liaisons': 6,\n",
      "          'film': 6,\n",
      "          'movie': 6,\n",
      "          'sebastian': 6,\n",
      "          'cruel': 5,\n",
      "          'like': 5,\n",
      "          'character': 5,\n",
      "          'ni': 4,\n",
      "          'way': 4,\n",
      "          'characters': 4,\n",
      "          'hate': 4,\n",
      "          'kathryn': 4,\n",
      "          'nbut': 4,\n",
      "          'scene': 4,\n",
      "          'dangerous': 3,\n",
      "          'kids': 3,\n",
      "          'nit': 3,\n",
      "          'kumble': 3,\n",
      "          'credit': 3,\n",
      "          'nand': 3,\n",
      "          'fact': 3,\n",
      "          'kind': 3,\n",
      "          'ncruel': 3,\n",
      "          'every': 3,\n",
      "          'also': 3,\n",
      "          'nsebastian': 3,\n",
      "          'cant': 3,\n",
      "          'sex': 3,\n",
      "          'dont': 3,\n",
      "          'really': 3,\n",
      "          'nthe': 3,\n",
      "          'wants': 3,\n",
      "          'supposed': 3,\n",
      "          'moral': 3,\n",
      "          'love': 3,\n",
      "          'point': 3,\n",
      "          'would': 2,\n",
      "          'everything': 2,\n",
      "          'frears': 2,\n",
      "          'roger': 2,\n",
      "          'material': 2,\n",
      "          'impressed': 2,\n",
      "          'nin': 2,\n",
      "          'nits': 2,\n",
      "          'kiddieporn': 2,\n",
      "          'fullyclothed': 2,\n",
      "          'pretentious': 2,\n",
      "          'beautiful': 2,\n",
      "          'earth': 2,\n",
      "          'mess': 2,\n",
      "          'fails': 2,\n",
      "          'phillippe': 2,\n",
      "          'could': 2,\n",
      "          'name': 2,\n",
      "          'say': 2,\n",
      "          'woman': 2,\n",
      "          'merteuil': 2,\n",
      "          'nkathryn': 2,\n",
      "          'annette': 2,\n",
      "          'hargrove': 2,\n",
      "          'nso': 2,\n",
      "          'believable': 2,\n",
      "          'masterful': 2,\n",
      "          'acting': 2,\n",
      "          'bad': 2,\n",
      "          'many': 2,\n",
      "          'hateful': 2,\n",
      "          'shes': 2,\n",
      "          'last': 2,\n",
      "          'scenes': 2,\n",
      "          'give': 2,\n",
      "          'change': 2,\n",
      "          'course': 2,\n",
      "          'theres': 2,\n",
      "          'one': 2,\n",
      "          'doesnt': 2,\n",
      "          'work': 2,\n",
      "          'nkumble': 2,\n",
      "          'interesting': 2,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'preview': 1,\n",
      "          'turned': 1,\n",
      "          'friend': 1,\n",
      "          'said': 1,\n",
      "          'clear': 1,\n",
      "          'obvious': 1,\n",
      "          'chunk': 1,\n",
      "          'plagiarized': 1,\n",
      "          'nonsense': 1,\n",
      "          'owing': 1,\n",
      "          'stephen': 1,\n",
      "          '1988': 1,\n",
      "          'masterpiece': 1,\n",
      "          'nimagine': 1,\n",
      "          'surprise': 1,\n",
      "          'see': 1,\n",
      "          'writerdirector': 1,\n",
      "          'given': 1,\n",
      "          'source': 1,\n",
      "          'choderlos': 1,\n",
      "          'de': 1,\n",
      "          'laclos': 1,\n",
      "          'recognized': 1,\n",
      "          'novel': 1,\n",
      "          'les': 1,\n",
      "          'dangereuses': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'much': 1,\n",
      "          'recognition': 1,\n",
      "          'actual': 1,\n",
      "          'appalling': 1,\n",
      "          'excuse': 1,\n",
      "          'hackwork': 1,\n",
      "          'complete': 1,\n",
      "          'earthy': 1,\n",
      "          'sextalk': 1,\n",
      "          'handjobs': 1,\n",
      "          'suppose': 1,\n",
      "          'inevitable': 1,\n",
      "          'teen': 1,\n",
      "          'highschool': 1,\n",
      "          'angst': 1,\n",
      "          'movies': 1,\n",
      "          'coming': 1,\n",
      "          'certainly': 1,\n",
      "          'room': 1,\n",
      "          'laughable': 1,\n",
      "          'bunch': 1,\n",
      "          'teenagers': 1,\n",
      "          'think': 1,\n",
      "          'theyre': 1,\n",
      "          'smarter': 1,\n",
      "          'people': 1,\n",
      "          'combined': 1,\n",
      "          'possible': 1,\n",
      "          'primarily': 1,\n",
      "          'expected': 1,\n",
      "          'hated': 1,\n",
      "          'ryan': 1,\n",
      "          'perhaps': 1,\n",
      "          'opinion': 1,\n",
      "          'objective': 1,\n",
      "          'nphillippe': 1,\n",
      "          'plays': 1,\n",
      "          'check': 1,\n",
      "          'nwow': 1,\n",
      "          'nisnt': 1,\n",
      "          'memorable': 1,\n",
      "          'rolls': 1,\n",
      "          'tongue': 1,\n",
      "          'spirit': 1,\n",
      "          'phrases': 1,\n",
      "          'sanguine': 1,\n",
      "          'vapors': 1,\n",
      "          'velvet': 1,\n",
      "          'sandwich': 1,\n",
      "          'coolest': 1,\n",
      "          'guy': 1,\n",
      "          'ever': 1,\n",
      "          'walked': 1,\n",
      "          'object': 1,\n",
      "          'reach': 1,\n",
      "          'nhe': 1,\n",
      "          'money': 1,\n",
      "          'fingertips': 1,\n",
      "          'luckily': 1,\n",
      "          'parents': 1,\n",
      "          'never': 1,\n",
      "          'enter': 1,\n",
      "          'life': 1,\n",
      "          'world': 1,\n",
      "          'adults': 1,\n",
      "          'exist': 1,\n",
      "          'ones': 1,\n",
      "          'irritating': 1,\n",
      "          'lives': 1,\n",
      "          'stepsister': 1,\n",
      "          'sarah': 1,\n",
      "          'michelle': 1,\n",
      "          'gellar': 1,\n",
      "          'bitchqueen': 1,\n",
      "          'universe': 1,\n",
      "          'man': 1,\n",
      "          'nsince': 1,\n",
      "          'two': 1,\n",
      "          'rich': 1,\n",
      "          'bored': 1,\n",
      "          'thing': 1,\n",
      "          'challenge': 1,\n",
      "          'meaningless': 1,\n",
      "          'sexual': 1,\n",
      "          'devirginize': 1,\n",
      "          'cecile': 1,\n",
      "          'caldwell': 1,\n",
      "          'selma': 1,\n",
      "          'blair': 1,\n",
      "          'naive': 1,\n",
      "          'dorkchick': 1,\n",
      "          'somehow': 1,\n",
      "          'wronged': 1,\n",
      "          'easy': 1,\n",
      "          'nail': 1,\n",
      "          'reese': 1,\n",
      "          'witherspoon': 1,\n",
      "          'paradigm': 1,\n",
      "          'chastity': 1,\n",
      "          'beauty': 1,\n",
      "          'make': 1,\n",
      "          'deal': 1,\n",
      "          'explicit': 1,\n",
      "          'state': 1,\n",
      "          'dear': 1,\n",
      "          'god': 1,\n",
      "          'n': 1,\n",
      "          'actually': 1,\n",
      "          'begins': 1,\n",
      "          'fall': 1,\n",
      "          'poor': 1,\n",
      "          'ndangerous': 1,\n",
      "          'great': 1,\n",
      "          'reasons': 1,\n",
      "          'lacks': 1,\n",
      "          'simply': 1,\n",
      "          'witch': 1,\n",
      "          'girl': 1,\n",
      "          'loathsome': 1,\n",
      "          'probably': 1,\n",
      "          'enjoy': 1,\n",
      "          'pouring': 1,\n",
      "          'hot': 1,\n",
      "          'lead': 1,\n",
      "          'nshe': 1,\n",
      "          'mean': 1,\n",
      "          'glenn': 1,\n",
      "          'close': 1,\n",
      "          'gave': 1,\n",
      "          'depth': 1,\n",
      "          'ngellar': 1,\n",
      "          'aesthetically': 1,\n",
      "          'pleasing': 1,\n",
      "          'onedimensional': 1,\n",
      "          'utterly': 1,\n",
      "          'repulsive': 1,\n",
      "          'nwitherspoon': 1,\n",
      "          'truly': 1,\n",
      "          'face': 1,\n",
      "          'isnt': 1,\n",
      "          'staple': 1,\n",
      "          'sure': 1,\n",
      "          'wont': 1,\n",
      "          'issue': 1,\n",
      "          'things': 1,\n",
      "          'little': 1,\n",
      "          'reprehensible': 1,\n",
      "          'forget': 1,\n",
      "          'mr': 1,\n",
      "          'continues': 1,\n",
      "          'exceed': 1,\n",
      "          'expectations': 1,\n",
      "          'impenetrable': 1,\n",
      "          'invulnerable': 1,\n",
      "          'blandness': 1,\n",
      "          'manage': 1,\n",
      "          'facial': 1,\n",
      "          'expression': 1,\n",
      "          'three': 1,\n",
      "          'times': 1,\n",
      "          'shouts': 1,\n",
      "          'thereby': 1,\n",
      "          'defeating': 1,\n",
      "          'hypothesis': 1,\n",
      "          'vocally': 1,\n",
      "          'monotone': 1,\n",
      "          'ntrue': 1,\n",
      "          'help': 1,\n",
      "          'drained': 1,\n",
      "          'aspects': 1,\n",
      "          'leaving': 1,\n",
      "          'us': 1,\n",
      "          'sexcrazed': 1,\n",
      "          'lunatic': 1,\n",
      "          'sympathetic': 1,\n",
      "          'falls': 1,\n",
      "          'flower': 1,\n",
      "          'shuns': 1,\n",
      "          'wicked': 1,\n",
      "          'bitch': 1,\n",
      "          'nfirst': 1,\n",
      "          'nobody': 1,\n",
      "          'talks': 1,\n",
      "          'neven': 1,\n",
      "          'intellectuals': 1,\n",
      "          'know': 1,\n",
      "          'bother': 1,\n",
      "          'pointless': 1,\n",
      "          'yammering': 1,\n",
      "          'nfor': 1,\n",
      "          'looks': 1,\n",
      "          'might': 1,\n",
      "          'play': 1,\n",
      "          'laughs': 1,\n",
      "          'ends': 1,\n",
      "          'taking': 1,\n",
      "          'seriously': 1,\n",
      "          'join': 1,\n",
      "          'manages': 1,\n",
      "          'come': 1,\n",
      "          'softporn': 1,\n",
      "          'nearlier': 1,\n",
      "          'mentioned': 1,\n",
      "          'handjob': 1,\n",
      "          'occurs': 1,\n",
      "          'intended': 1,\n",
      "          'whats': 1,\n",
      "          'extended': 1,\n",
      "          'ntitillation': 1,\n",
      "          'even': 1,\n",
      "          'pretense': 1,\n",
      "          'meaningful': 1,\n",
      "          'note': 1,\n",
      "          'parallels': 1,\n",
      "          'clearly': 1,\n",
      "          'familiar': 1,\n",
      "          'earlier': 1,\n",
      "          'similar': 1,\n",
      "          'tone': 1,\n",
      "          'moments': 1,\n",
      "          'imitates': 1,\n",
      "          'almost': 1,\n",
      "          'completely': 1,\n",
      "          'spoiler': 1,\n",
      "          'warning': 1,\n",
      "          'antagonist': 1,\n",
      "          'humiliated': 1,\n",
      "          'front': 1,\n",
      "          'peers': 1,\n",
      "          'act': 1,\n",
      "          'nnobody': 1,\n",
      "          'acts': 1,\n",
      "          'translation': 1,\n",
      "          'forgot': 1,\n",
      "          'development': 1,\n",
      "          'sympathy': 1,\n",
      "          'pretty': 1,\n",
      "          'crucial': 1,\n",
      "          'elements': 1,\n",
      "          'result': 1,\n",
      "          'picture': 1,\n",
      "          'confounding': 1,\n",
      "          'badness': 1,\n",
      "          'thinks': 1,\n",
      "          'deep': 1,\n",
      "          'profound': 1,\n",
      "          'nill': 1,\n",
      "          'realizing': 1,\n",
      "          'influences': 1,\n",
      "          'awful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'film': 6,\n",
      "          'good': 6,\n",
      "          'mimic': 5,\n",
      "          'instead': 4,\n",
      "          'movie': 4,\n",
      "          'children': 3,\n",
      "          'case': 3,\n",
      "          'audience': 3,\n",
      "          'cockroaches': 3,\n",
      "          'bug': 3,\n",
      "          'however': 3,\n",
      "          'action': 3,\n",
      "          'characters': 3,\n",
      "          'old': 2,\n",
      "          'never': 2,\n",
      "          'work': 2,\n",
      "          'animals': 2,\n",
      "          'nin': 2,\n",
      "          'genetically': 2,\n",
      "          'enhanced': 2,\n",
      "          'sorvino': 2,\n",
      "          'judas': 2,\n",
      "          'breed': 2,\n",
      "          'kill': 2,\n",
      "          'terror': 2,\n",
      "          'ever': 2,\n",
      "          'predator': 2,\n",
      "          'us': 2,\n",
      "          'bugs': 2,\n",
      "          'trying': 2,\n",
      "          'could': 2,\n",
      "          'nif': 2,\n",
      "          'director': 2,\n",
      "          'nthere': 2,\n",
      "          'script': 2,\n",
      "          'directed': 2,\n",
      "          'k': 2,\n",
      "          'really': 2,\n",
      "          'may': 2,\n",
      "          'look': 2,\n",
      "          'na': 2,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'rule': 1,\n",
      "          'latest': 1,\n",
      "          'horror': 1,\n",
      "          'flick': 1,\n",
      "          'killer': 1,\n",
      "          'features': 1,\n",
      "          'succeeds': 1,\n",
      "          'nothing': 1,\n",
      "          'except': 1,\n",
      "          'mildly': 1,\n",
      "          'engaging': 1,\n",
      "          'begins': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'see': 1,\n",
      "          'dying': 1,\n",
      "          'mysterious': 1,\n",
      "          'disease': 1,\n",
      "          'carried': 1,\n",
      "          'ndr': 1,\n",
      "          'susan': 1,\n",
      "          'tyler': 1,\n",
      "          'creates': 1,\n",
      "          'designed': 1,\n",
      "          'job': 1,\n",
      "          'die': 1,\n",
      "          'gone': 1,\n",
      "          'nthree': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'appears': 1,\n",
      "          'screen': 1,\n",
      "          'discover': 1,\n",
      "          'back': 1,\n",
      "          'bigger': 1,\n",
      "          'ready': 1,\n",
      "          'spin': 1,\n",
      "          'nhumans': 1,\n",
      "          'nthat': 1,\n",
      "          'teach': 1,\n",
      "          'squishing': 1,\n",
      "          'nwhat': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'ride': 1,\n",
      "          'everywhere': 1,\n",
      "          'tons': 1,\n",
      "          'gory': 1,\n",
      "          'deaths': 1,\n",
      "          'massive': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'turns': 1,\n",
      "          'rather': 1,\n",
      "          'subdued': 1,\n",
      "          'almost': 1,\n",
      "          'boring': 1,\n",
      "          'plods': 1,\n",
      "          'along': 1,\n",
      "          'slow': 1,\n",
      "          'pace': 1,\n",
      "          'nperhaps': 1,\n",
      "          'thought': 1,\n",
      "          'provoking': 1,\n",
      "          'avoid': 1,\n",
      "          'type': 1,\n",
      "          'easily': 1,\n",
      "          'become': 1,\n",
      "          'writers': 1,\n",
      "          'made': 1,\n",
      "          'wrong': 1,\n",
      "          'move': 1,\n",
      "          'perfectly': 1,\n",
      "          'suited': 1,\n",
      "          'fest': 1,\n",
      "          'bought': 1,\n",
      "          'cronos': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'directs': 1,\n",
      "          'calm': 1,\n",
      "          'frankly': 1,\n",
      "          'dull': 1,\n",
      "          'exciting': 1,\n",
      "          'sequences': 1,\n",
      "          'lot': 1,\n",
      "          'people': 1,\n",
      "          'talking': 1,\n",
      "          'dialogue': 1,\n",
      "          'intelligent': 1,\n",
      "          'would': 1,\n",
      "          'right': 1,\n",
      "          'sadly': 1,\n",
      "          'babbling': 1,\n",
      "          'nonsense': 1,\n",
      "          'fact': 1,\n",
      "          'embarrsingly': 1,\n",
      "          'weak': 1,\n",
      "          'characterizations': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'company': 1,\n",
      "          '2d': 1,\n",
      "          'come': 1,\n",
      "          'bothering': 1,\n",
      "          'develop': 1,\n",
      "          'annoying': 1,\n",
      "          'way': 1,\n",
      "          'infuriating': 1,\n",
      "          'watch': 1,\n",
      "          'camera': 1,\n",
      "          'cuts': 1,\n",
      "          'place': 1,\n",
      "          'disoreitating': 1,\n",
      "          'involving': 1,\n",
      "          'merely': 1,\n",
      "          'alienates': 1,\n",
      "          'peformances': 1,\n",
      "          'slightly': 1,\n",
      "          'average': 1,\n",
      "          'nsorvino': 1,\n",
      "          'although': 1,\n",
      "          'shes': 1,\n",
      "          'conveying': 1,\n",
      "          'anything': 1,\n",
      "          'emotion': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'sterotypes': 1,\n",
      "          'big': 1,\n",
      "          'black': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'foul': 1,\n",
      "          'mouth': 1,\n",
      "          'geeky': 1,\n",
      "          'scientist': 1,\n",
      "          'spectacles': 1,\n",
      "          'stereotypical': 1,\n",
      "          'mexican': 1,\n",
      "          'timer': 1,\n",
      "          'ntheir': 1,\n",
      "          'reasonable': 1,\n",
      "          'fun': 1,\n",
      "          'nmimic': 1,\n",
      "          'fail': 1,\n",
      "          'story': 1,\n",
      "          'pacing': 1,\n",
      "          'nlike': 1,\n",
      "          'dark': 1,\n",
      "          'city': 1,\n",
      "          'definite': 1,\n",
      "          'style': 1,\n",
      "          'content': 1,\n",
      "          'nit': 1,\n",
      "          'bit': 1,\n",
      "          'gloomy': 1,\n",
      "          'sets': 1,\n",
      "          'nice': 1,\n",
      "          'parts': 1,\n",
      "          'well': 1,\n",
      "          'nbut': 1,\n",
      "          'looks': 1,\n",
      "          'arent': 1,\n",
      "          'enough': 1,\n",
      "          'save': 1,\n",
      "          'depths': 1,\n",
      "          'mediocre': 1,\n",
      "          'somewhere': 1,\n",
      "          'shouldnt': 1,\n",
      "          'belong': 1,\n",
      "          'opportunity': 1,\n",
      "          'wasted': 1,\n",
      "          'shame': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'review': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          '1998': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'time': 5,\n",
      "          'ship': 4,\n",
      "          'funny': 4,\n",
      "          'tries': 3,\n",
      "          'speed': 3,\n",
      "          'bullock': 3,\n",
      "          'wrong': 3,\n",
      "          'going': 3,\n",
      "          'ships': 3,\n",
      "          'could': 3,\n",
      "          'nthe': 3,\n",
      "          'sound': 3,\n",
      "          'ni': 3,\n",
      "          'really': 3,\n",
      "          'know': 3,\n",
      "          'action': 3,\n",
      "          'desaster': 3,\n",
      "          'part': 3,\n",
      "          'passengers': 3,\n",
      "          'cant': 3,\n",
      "          'effects': 3,\n",
      "          'nbut': 2,\n",
      "          'two': 2,\n",
      "          'movies': 2,\n",
      "          'sandra': 2,\n",
      "          'place': 2,\n",
      "          'cruise': 2,\n",
      "          'alex': 2,\n",
      "          'patric': 2,\n",
      "          'course': 2,\n",
      "          'geiger': 2,\n",
      "          'willem': 2,\n",
      "          'dafoe': 2,\n",
      "          'pick': 2,\n",
      "          'nnow': 2,\n",
      "          'whole': 2,\n",
      "          '2': 2,\n",
      "          'goes': 2,\n",
      "          'nthen': 2,\n",
      "          'around': 2,\n",
      "          'looked': 2,\n",
      "          'bomb': 2,\n",
      "          'fire': 2,\n",
      "          'still': 2,\n",
      "          'crew': 2,\n",
      "          'saved': 2,\n",
      "          'nhe': 2,\n",
      "          'good': 2,\n",
      "          'like': 2,\n",
      "          'meant': 2,\n",
      "          'oil': 2,\n",
      "          'tanker': 2,\n",
      "          'see': 2,\n",
      "          'scene': 2,\n",
      "          'nin': 2,\n",
      "          'theater': 2,\n",
      "          'present': 1,\n",
      "          'sequel': 1,\n",
      "          'jan': 1,\n",
      "          'de': 1,\n",
      "          'bonts': 1,\n",
      "          'debut': 1,\n",
      "          'director': 1,\n",
      "          '1994': 1,\n",
      "          'surprise': 1,\n",
      "          'hit': 1,\n",
      "          'thing': 1,\n",
      "          'common': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'nannie': 1,\n",
      "          'nshes': 1,\n",
      "          'new': 1,\n",
      "          'boyfriend': 1,\n",
      "          'jason': 1,\n",
      "          'kidnapped': 1,\n",
      "          'john': 1,\n",
      "          'bone': 1,\n",
      "          'shipping': 1,\n",
      "          'line': 1,\n",
      "          'nthey': 1,\n",
      "          'sacked': 1,\n",
      "          'got': 1,\n",
      "          'sick': 1,\n",
      "          'wants': 1,\n",
      "          'diamonds': 1,\n",
      "          'stored': 1,\n",
      "          'safe': 1,\n",
      "          'compensation': 1,\n",
      "          'nthat': 1,\n",
      "          'actually': 1,\n",
      "          'storyline': 1,\n",
      "          'nspeed': 1,\n",
      "          'without': 1,\n",
      "          'dialogues': 1,\n",
      "          'images': 1,\n",
      "          'remarkable': 1,\n",
      "          'dont': 1,\n",
      "          'called': 1,\n",
      "          'nexcept': 1,\n",
      "          'scenes': 1,\n",
      "          'vaguely': 1,\n",
      "          'reminiscent': 1,\n",
      "          'along': 1,\n",
      "          'lines': 1,\n",
      "          '70ies': 1,\n",
      "          'nfirst': 1,\n",
      "          'introduced': 1,\n",
      "          'number': 1,\n",
      "          'people': 1,\n",
      "          'important': 1,\n",
      "          'later': 1,\n",
      "          'strikes': 1,\n",
      "          'nsandra': 1,\n",
      "          'said': 1,\n",
      "          'glad': 1,\n",
      "          'take': 1,\n",
      "          'couldnt': 1,\n",
      "          'find': 1,\n",
      "          'nmost': 1,\n",
      "          'decoration': 1,\n",
      "          'happens': 1,\n",
      "          'shot': 1,\n",
      "          'defusing': 1,\n",
      "          'freeing': 1,\n",
      "          'trapped': 1,\n",
      "          'behind': 1,\n",
      "          'door': 1,\n",
      "          'handle': 1,\n",
      "          'chain': 1,\n",
      "          'saw': 1,\n",
      "          'nwe': 1,\n",
      "          'also': 1,\n",
      "          'doors': 1,\n",
      "          'cut': 1,\n",
      "          'apart': 1,\n",
      "          'seconds': 1,\n",
      "          'defusal': 1,\n",
      "          'furniture': 1,\n",
      "          'damaged': 1,\n",
      "          'heroes': 1,\n",
      "          'needed': 1,\n",
      "          'njason': 1,\n",
      "          'alias': 1,\n",
      "          'spends': 1,\n",
      "          'flirting': 1,\n",
      "          'annie': 1,\n",
      "          'helping': 1,\n",
      "          'frolicking': 1,\n",
      "          'water': 1,\n",
      "          'nhis': 1,\n",
      "          'initial': 1,\n",
      "          'seasickness': 1,\n",
      "          'suddenly': 1,\n",
      "          'gone': 1,\n",
      "          'evil': 1,\n",
      "          'pretty': 1,\n",
      "          'job': 1,\n",
      "          'blame': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'declining': 1,\n",
      "          'theres': 1,\n",
      "          'villain': 1,\n",
      "          'desperately': 1,\n",
      "          'look': 1,\n",
      "          'frightening': 1,\n",
      "          'frankensteins': 1,\n",
      "          'monster': 1,\n",
      "          'doesnt': 1,\n",
      "          'succeed': 1,\n",
      "          'though': 1,\n",
      "          'nan': 1,\n",
      "          'untidy': 1,\n",
      "          'appearance': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'convince': 1,\n",
      "          'viewer': 1,\n",
      "          'psychopath': 1,\n",
      "          'potential': 1,\n",
      "          'nbefore': 1,\n",
      "          'make': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'dangerous': 1,\n",
      "          'man': 1,\n",
      "          'practise': 1,\n",
      "          'front': 1,\n",
      "          'mirror': 1,\n",
      "          'recommend': 1,\n",
      "          'probably': 1,\n",
      "          'situations': 1,\n",
      "          'arent': 1,\n",
      "          'nespecially': 1,\n",
      "          'showdown': 1,\n",
      "          'first': 1,\n",
      "          'runs': 1,\n",
      "          'dissembles': 1,\n",
      "          'village': 1,\n",
      "          'treat': 1,\n",
      "          'nthere': 1,\n",
      "          'get': 1,\n",
      "          'superfluous': 1,\n",
      "          'keeping': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'tradition': 1,\n",
      "          'dog': 1,\n",
      "          'miraculously': 1,\n",
      "          'certain': 1,\n",
      "          'death': 1,\n",
      "          'na': 1,\n",
      "          'takes': 1,\n",
      "          'right': 1,\n",
      "          'collision': 1,\n",
      "          'nsome': 1,\n",
      "          'members': 1,\n",
      "          'watch': 1,\n",
      "          'colliding': 1,\n",
      "          'old': 1,\n",
      "          'nhad': 1,\n",
      "          'window': 1,\n",
      "          'wouldnt': 1,\n",
      "          'missed': 1,\n",
      "          'huge': 1,\n",
      "          'racing': 1,\n",
      "          'toward': 1,\n",
      "          'nthose': 1,\n",
      "          'want': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'large': 1,\n",
      "          'screen': 1,\n",
      "          'system': 1,\n",
      "          'enjoy': 1,\n",
      "          'visual': 1,\n",
      "          'phantastic': 1,\n",
      "          'surround': 1,\n",
      "          'adequately': 1,\n",
      "          'equipped': 1,\n",
      "          'explosion': 1,\n",
      "          'feel': 1,\n",
      "          'seats': 1,\n",
      "          'vibrate': 1,\n",
      "          'ilm': 1,\n",
      "          'special': 1,\n",
      "          'save': 1,\n",
      "          'nfor': 1,\n",
      "          'money': 1,\n",
      "          'done': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'amazing': 4,\n",
      "          'one': 4,\n",
      "          'mr': 3,\n",
      "          'furious': 3,\n",
      "          'capt': 3,\n",
      "          'superhero': 2,\n",
      "          'city': 2,\n",
      "          'stiller': 2,\n",
      "          'blue': 2,\n",
      "          'raja': 2,\n",
      "          'hank': 2,\n",
      "          'azaria': 2,\n",
      "          'shoveler': 2,\n",
      "          'captain': 2,\n",
      "          'hes': 2,\n",
      "          'amazings': 2,\n",
      "          'league': 2,\n",
      "          'character': 2,\n",
      "          'spleen': 2,\n",
      "          'n': 2,\n",
      "          'mary': 2,\n",
      "          'hartman': 2,\n",
      "          'cast': 2,\n",
      "          'script': 2,\n",
      "          'tough': 1,\n",
      "          'aspiring': 1,\n",
      "          'champion': 1,\n",
      "          'njust': 1,\n",
      "          'ask': 1,\n",
      "          'ben': 1,\n",
      "          'william': 1,\n",
      "          'h': 1,\n",
      "          'macy': 1,\n",
      "          'ntheyre': 1,\n",
      "          'trying': 1,\n",
      "          'break': 1,\n",
      "          'biz': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'citys': 1,\n",
      "          'hero': 1,\n",
      "          'numero': 1,\n",
      "          'uno': 1,\n",
      "          'hogs': 1,\n",
      "          'action': 1,\n",
      "          'good': 1,\n",
      "          'problems': 1,\n",
      "          'nbecause': 1,\n",
      "          'eliminated': 1,\n",
      "          'crime': 1,\n",
      "          'endorsement': 1,\n",
      "          'deals': 1,\n",
      "          'falling': 1,\n",
      "          'public': 1,\n",
      "          'craves': 1,\n",
      "          'major': 1,\n",
      "          'slugfest': 1,\n",
      "          'engineers': 1,\n",
      "          'parole': 1,\n",
      "          'onetime': 1,\n",
      "          'arch': 1,\n",
      "          'enemy': 1,\n",
      "          'casanova': 1,\n",
      "          'frankenstein': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'nfrankenstein': 1,\n",
      "          'succeeds': 1,\n",
      "          'beyond': 1,\n",
      "          'expectations': 1,\n",
      "          'captures': 1,\n",
      "          'setting': 1,\n",
      "          'scheme': 1,\n",
      "          'destroy': 1,\n",
      "          'nso': 1,\n",
      "          'left': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'wouldbe': 1,\n",
      "          'superheroes': 1,\n",
      "          'abilities': 1,\n",
      "          'little': 1,\n",
      "          'justice': 1,\n",
      "          'hurls': 1,\n",
      "          'forks': 1,\n",
      "          'foes': 1,\n",
      "          'hits': 1,\n",
      "          'shovel': 1,\n",
      "          'yells': 1,\n",
      "          'people': 1,\n",
      "          'essentially': 1,\n",
      "          'played': 1,\n",
      "          'guest': 1,\n",
      "          'appearance': 1,\n",
      "          'friends': 1,\n",
      "          'nafter': 1,\n",
      "          'painful': 1,\n",
      "          'first': 1,\n",
      "          'strike': 1,\n",
      "          'guys': 1,\n",
      "          'hold': 1,\n",
      "          'auditions': 1,\n",
      "          'teammates': 1,\n",
      "          'add': 1,\n",
      "          'bowler': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'carries': 1,\n",
      "          'dead': 1,\n",
      "          'fathers': 1,\n",
      "          'skull': 1,\n",
      "          'bowling': 1,\n",
      "          'ball': 1,\n",
      "          'invisible': 1,\n",
      "          'boy': 1,\n",
      "          'kel': 1,\n",
      "          'mitchell': 1,\n",
      "          'use': 1,\n",
      "          'powers': 1,\n",
      "          'looking': 1,\n",
      "          'paul': 1,\n",
      "          'reubens': 1,\n",
      "          'blows': 1,\n",
      "          'devastating': 1,\n",
      "          'winds': 1,\n",
      "          'rear': 1,\n",
      "          'sphinx': 1,\n",
      "          'wes': 1,\n",
      "          'studi': 1,\n",
      "          'mysterious': 1,\n",
      "          'figure': 1,\n",
      "          'teach': 1,\n",
      "          'fight': 1,\n",
      "          'mystery': 1,\n",
      "          'men': 1,\n",
      "          'boasts': 1,\n",
      "          'talented': 1,\n",
      "          'eclectic': 1,\n",
      "          'casts': 1,\n",
      "          'ever': 1,\n",
      "          'assembled': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'already': 1,\n",
      "          'mentioned': 1,\n",
      "          'credits': 1,\n",
      "          'include': 1,\n",
      "          'lena': 1,\n",
      "          'olin': 1,\n",
      "          'frankensteins': 1,\n",
      "          'evil': 1,\n",
      "          'shrink': 1,\n",
      "          'comedian': 1,\n",
      "          'eddie': 1,\n",
      "          'izzard': 1,\n",
      "          'fugees': 1,\n",
      "          'prakazrel': 1,\n",
      "          'michel': 1,\n",
      "          'discothemed': 1,\n",
      "          'thugs': 1,\n",
      "          'singer': 1,\n",
      "          'tom': 1,\n",
      "          'waits': 1,\n",
      "          'inventor': 1,\n",
      "          'weapons': 1,\n",
      "          'artie': 1,\n",
      "          'lange': 1,\n",
      "          'mad': 1,\n",
      "          'tv': 1,\n",
      "          'another': 1,\n",
      "          'thug': 1,\n",
      "          'claire': 1,\n",
      "          'forlani': 1,\n",
      "          'meet': 1,\n",
      "          'joe': 1,\n",
      "          'black': 1,\n",
      "          'waitress': 1,\n",
      "          'pursuing': 1,\n",
      "          'louise': 1,\n",
      "          'lasser': 1,\n",
      "          'rajas': 1,\n",
      "          'mother': 1,\n",
      "          'actormagician': 1,\n",
      "          'ricky': 1,\n",
      "          'jay': 1,\n",
      "          'manager': 1,\n",
      "          'includes': 1,\n",
      "          'four': 1,\n",
      "          'oscarnominated': 1,\n",
      "          'actors': 1,\n",
      "          'nwhen': 1,\n",
      "          'saw': 1,\n",
      "          'list': 1,\n",
      "          'players': 1,\n",
      "          'early': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'figured': 1,\n",
      "          'result': 1,\n",
      "          'would': 1,\n",
      "          'cantmiss': 1,\n",
      "          'comedy': 1,\n",
      "          'nyet': 1,\n",
      "          'must': 1,\n",
      "          'report': 1,\n",
      "          'disappointment': 1,\n",
      "          'probably': 1,\n",
      "          'worst': 1,\n",
      "          '1999': 1,\n",
      "          'nnearly': 1,\n",
      "          'every': 1,\n",
      "          'joke': 1,\n",
      "          'misfires': 1,\n",
      "          'stabs': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'obvious': 1,\n",
      "          'funny': 1,\n",
      "          'example': 1,\n",
      "          'recognize': 1,\n",
      "          'secret': 1,\n",
      "          'identity': 1,\n",
      "          'wearing': 1,\n",
      "          'glasses': 1,\n",
      "          'fart': 1,\n",
      "          'jokes': 1,\n",
      "          'surrounding': 1,\n",
      "          'surprisingly': 1,\n",
      "          'gags': 1,\n",
      "          'work': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'especially': 1,\n",
      "          'whose': 1,\n",
      "          'adopts': 1,\n",
      "          'effete': 1,\n",
      "          'british': 1,\n",
      "          'accent': 1,\n",
      "          'costume': 1,\n",
      "          'lame': 1,\n",
      "          'run': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          '8mm': 7,\n",
      "          'movie': 5,\n",
      "          'snuff': 5,\n",
      "          'seven': 4,\n",
      "          'cage': 4,\n",
      "          'thriller': 4,\n",
      "          'nthe': 3,\n",
      "          'appears': 3,\n",
      "          'phoenix': 3,\n",
      "          'shock': 3,\n",
      "          'performance': 3,\n",
      "          'character': 3,\n",
      "          'director': 3,\n",
      "          'written': 2,\n",
      "          'idea': 2,\n",
      "          'standard': 2,\n",
      "          'mrs': 2,\n",
      "          'christian': 2,\n",
      "          'girl': 2,\n",
      "          'featured': 2,\n",
      "          'know': 2,\n",
      "          'porn': 2,\n",
      "          'video': 2,\n",
      "          'industry': 2,\n",
      "          'within': 2,\n",
      "          'disturbing': 2,\n",
      "          'although': 2,\n",
      "          'away': 2,\n",
      "          'n8mm': 2,\n",
      "          'much': 2,\n",
      "          'apart': 2,\n",
      "          'help': 2,\n",
      "          'entertainment': 2,\n",
      "          'fun': 2,\n",
      "          'films': 2,\n",
      "          'talent': 2,\n",
      "          'hes': 2,\n",
      "          'boring': 2,\n",
      "          'nand': 2,\n",
      "          'gloom': 2,\n",
      "          'completely': 2,\n",
      "          'wasted': 2,\n",
      "          'far': 2,\n",
      "          'though': 2,\n",
      "          'one': 2,\n",
      "          'characters': 2,\n",
      "          'year': 2,\n",
      "          'nalso': 2,\n",
      "          'scenes': 2,\n",
      "          'controversial': 2,\n",
      "          'looks': 2,\n",
      "          'worth': 2,\n",
      "          'scribe': 1,\n",
      "          'andrew': 1,\n",
      "          'kevin': 1,\n",
      "          'walker': 1,\n",
      "          'interesting': 1,\n",
      "          'ruined': 1,\n",
      "          'hollywood': 1,\n",
      "          'formula': 1,\n",
      "          'become': 1,\n",
      "          'bog': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'nnicolas': 1,\n",
      "          'plays': 1,\n",
      "          'family': 1,\n",
      "          'man': 1,\n",
      "          'detective': 1,\n",
      "          'tom': 1,\n",
      "          'welles': 1,\n",
      "          'asked': 1,\n",
      "          'upper': 1,\n",
      "          'class': 1,\n",
      "          'toff': 1,\n",
      "          'myra': 1,\n",
      "          'carter': 1,\n",
      "          'investigate': 1,\n",
      "          'found': 1,\n",
      "          'recently': 1,\n",
      "          'deceased': 1,\n",
      "          'husbands': 1,\n",
      "          'safe': 1,\n",
      "          'happens': 1,\n",
      "          'mythical': 1,\n",
      "          'get': 1,\n",
      "          'brutally': 1,\n",
      "          'slashed': 1,\n",
      "          'nall': 1,\n",
      "          'wants': 1,\n",
      "          'killed': 1,\n",
      "          'nwelles': 1,\n",
      "          'agrees': 1,\n",
      "          'soon': 1,\n",
      "          'gets': 1,\n",
      "          'pulled': 1,\n",
      "          'seedy': 1,\n",
      "          'underworld': 1,\n",
      "          'movies': 1,\n",
      "          'clerk': 1,\n",
      "          'max': 1,\n",
      "          'california': 1,\n",
      "          'guide': 1,\n",
      "          'nalthough': 1,\n",
      "          'hasnt': 1,\n",
      "          'really': 1,\n",
      "          'examined': 1,\n",
      "          'mainstream': 1,\n",
      "          'cinema': 1,\n",
      "          'still': 1,\n",
      "          'makes': 1,\n",
      "          'rather': 1,\n",
      "          'plodding': 1,\n",
      "          'seems': 1,\n",
      "          'bit': 1,\n",
      "          'sicker': 1,\n",
      "          'certainly': 1,\n",
      "          'jerky': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'grainy': 1,\n",
      "          'image': 1,\n",
      "          'takes': 1,\n",
      "          'problem': 1,\n",
      "          'wanting': 1,\n",
      "          'moments': 1,\n",
      "          'action': 1,\n",
      "          'nothing': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'another': 1,\n",
      "          'cast': 1,\n",
      "          'towards': 1,\n",
      "          'hideous': 1,\n",
      "          'increasingly': 1,\n",
      "          'lazy': 1,\n",
      "          'nicolas': 1,\n",
      "          'nwhile': 1,\n",
      "          'breezy': 1,\n",
      "          'earlier': 1,\n",
      "          'raising': 1,\n",
      "          'arizona': 1,\n",
      "          '1987': 1,\n",
      "          'ever': 1,\n",
      "          'since': 1,\n",
      "          'leaving': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          '1995': 1,\n",
      "          'lost': 1,\n",
      "          'acting': 1,\n",
      "          'autopilot': 1,\n",
      "          'terrible': 1,\n",
      "          'snake': 1,\n",
      "          'eyes': 1,\n",
      "          '1998': 1,\n",
      "          'nhere': 1,\n",
      "          'uninteresting': 1,\n",
      "          'dull': 1,\n",
      "          'monotonous': 1,\n",
      "          'voice': 1,\n",
      "          'overlong': 1,\n",
      "          'virtues': 1,\n",
      "          'keep': 1,\n",
      "          'suspense': 1,\n",
      "          'nonly': 1,\n",
      "          'onscreen': 1,\n",
      "          'excellent': 1,\n",
      "          'start': 1,\n",
      "          'moving': 1,\n",
      "          'true': 1,\n",
      "          'nhis': 1,\n",
      "          'great': 1,\n",
      "          'break': 1,\n",
      "          'purely': 1,\n",
      "          'enjoyable': 1,\n",
      "          'watch': 1,\n",
      "          'ncatherine': 1,\n",
      "          'keener': 1,\n",
      "          'cages': 1,\n",
      "          'wife': 1,\n",
      "          'delivers': 1,\n",
      "          'better': 1,\n",
      "          'deserves': 1,\n",
      "          'nher': 1,\n",
      "          'hugely': 1,\n",
      "          'underwritten': 1,\n",
      "          'fargos': 1,\n",
      "          'peter': 1,\n",
      "          'stormare': 1,\n",
      "          'wildly': 1,\n",
      "          'top': 1,\n",
      "          'nas': 1,\n",
      "          'person': 1,\n",
      "          'behind': 1,\n",
      "          'filled': 1,\n",
      "          'doom': 1,\n",
      "          'noone': 1,\n",
      "          'use': 1,\n",
      "          'light': 1,\n",
      "          'switch': 1,\n",
      "          'nunlike': 1,\n",
      "          'isnt': 1,\n",
      "          'clever': 1,\n",
      "          'twist': 1,\n",
      "          'pathetic': 1,\n",
      "          'startlingly': 1,\n",
      "          'obvious': 1,\n",
      "          'arrives': 1,\n",
      "          'nlacking': 1,\n",
      "          'strong': 1,\n",
      "          'ultimately': 1,\n",
      "          'becomes': 1,\n",
      "          'uninvolving': 1,\n",
      "          'plot': 1,\n",
      "          'wise': 1,\n",
      "          'relies': 1,\n",
      "          'graphic': 1,\n",
      "          'provide': 1,\n",
      "          'nbut': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'wrong': 1,\n",
      "          'guy': 1,\n",
      "          'job': 1,\n",
      "          'puts': 1,\n",
      "          'style': 1,\n",
      "          'content': 1,\n",
      "          'direction': 1,\n",
      "          'look': 1,\n",
      "          'good': 1,\n",
      "          'nschumacher': 1,\n",
      "          'also': 1,\n",
      "          'audience': 1,\n",
      "          'meant': 1,\n",
      "          'looking': 1,\n",
      "          'dark': 1,\n",
      "          'belly': 1,\n",
      "          'doesnt': 1,\n",
      "          'exactly': 1,\n",
      "          'leave': 1,\n",
      "          'haunting': 1,\n",
      "          'impression': 1,\n",
      "          'viewers': 1,\n",
      "          'mind': 1,\n",
      "          'misses': 1,\n",
      "          'point': 1,\n",
      "          'last': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'hackneyed': 1,\n",
      "          'cliched': 1,\n",
      "          'amazing': 1,\n",
      "          'think': 1,\n",
      "          'youre': 1,\n",
      "          'watching': 1,\n",
      "          'success': 1,\n",
      "          'snuffed': 1,\n",
      "          'opportunity': 1,\n",
      "          'nwith': 1,\n",
      "          'lead': 1,\n",
      "          'manage': 1,\n",
      "          'obsessed': 1,\n",
      "          'could': 1,\n",
      "          'shocking': 1,\n",
      "          'dumb': 1,\n",
      "          'nultimately': 1,\n",
      "          'probably': 1,\n",
      "          'renting': 1,\n",
      "          'home': 1,\n",
      "          'unless': 1,\n",
      "          'desperate': 1,\n",
      "          'see': 1,\n",
      "          'like': 1,\n",
      "          'trust': 1,\n",
      "          'rest': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'like': 6,\n",
      "          'hes': 6,\n",
      "          'one': 5,\n",
      "          'affleck': 5,\n",
      "          'nand': 4,\n",
      "          'nhow': 4,\n",
      "          'two': 4,\n",
      "          'make': 4,\n",
      "          'reindeer': 4,\n",
      "          'games': 4,\n",
      "          'isnt': 3,\n",
      "          'right': 3,\n",
      "          'show': 3,\n",
      "          'good': 3,\n",
      "          'theres': 3,\n",
      "          'attention': 3,\n",
      "          'santa': 3,\n",
      "          'suits': 3,\n",
      "          'days': 3,\n",
      "          'know': 3,\n",
      "          'ben': 3,\n",
      "          'gary': 3,\n",
      "          'sinise': 3,\n",
      "          'casino': 3,\n",
      "          'man': 3,\n",
      "          'nhes': 3,\n",
      "          'nhe': 3,\n",
      "          'making': 3,\n",
      "          'time': 3,\n",
      "          'bad': 3,\n",
      "          'clue': 2,\n",
      "          'something': 2,\n",
      "          'gon': 2,\n",
      "          'na': 2,\n",
      "          'quite': 2,\n",
      "          'youre': 2,\n",
      "          'see': 2,\n",
      "          'release': 2,\n",
      "          'say': 2,\n",
      "          'charlize': 2,\n",
      "          'theron': 2,\n",
      "          'movies': 2,\n",
      "          'new': 2,\n",
      "          'us': 2,\n",
      "          'find': 2,\n",
      "          'immediately': 2,\n",
      "          'dead': 2,\n",
      "          'nthen': 2,\n",
      "          'scene': 2,\n",
      "          'line': 2,\n",
      "          'poorly': 2,\n",
      "          'prison': 2,\n",
      "          'afflecks': 2,\n",
      "          'best': 2,\n",
      "          'buddy': 2,\n",
      "          'take': 2,\n",
      "          'think': 2,\n",
      "          'nhave': 2,\n",
      "          'never': 2,\n",
      "          'get': 2,\n",
      "          'force': 2,\n",
      "          'idea': 2,\n",
      "          'place': 2,\n",
      "          'non': 2,\n",
      "          'paper': 2,\n",
      "          'seems': 2,\n",
      "          'piece': 2,\n",
      "          'thinks': 2,\n",
      "          'sort': 2,\n",
      "          'car': 2,\n",
      "          'nbut': 2,\n",
      "          'nstep': 2,\n",
      "          'easily': 2,\n",
      "          'forgotten': 2,\n",
      "          'possible': 2,\n",
      "          'role': 2,\n",
      "          'gets': 2,\n",
      "          'past': 2,\n",
      "          'name': 2,\n",
      "          'nget': 2,\n",
      "          'even': 2,\n",
      "          'instead': 2,\n",
      "          'weeks': 2,\n",
      "          'worse': 2,\n",
      "          'plan': 2,\n",
      "          'seem': 2,\n",
      "          'preposterous': 2,\n",
      "          'first': 1,\n",
      "          'heavily': 1,\n",
      "          'christmasthemed': 1,\n",
      "          'date': 1,\n",
      "          'oh': 1,\n",
      "          'end': 1,\n",
      "          'february': 1,\n",
      "          'nyour': 1,\n",
      "          'second': 1,\n",
      "          'dubious': 1,\n",
      "          'stars': 1,\n",
      "          'makes': 1,\n",
      "          'appearance': 1,\n",
      "          'daily': 1,\n",
      "          'asked': 1,\n",
      "          'replies': 1,\n",
      "          'equivalent': 1,\n",
      "          'verbal': 1,\n",
      "          'sigh': 1,\n",
      "          'nassuring': 1,\n",
      "          'yeah': 1,\n",
      "          'sure': 1,\n",
      "          'scenes': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'action': 1,\n",
      "          'nstuff': 1,\n",
      "          'ntoo': 1,\n",
      "          'grab': 1,\n",
      "          'open': 1,\n",
      "          'five': 1,\n",
      "          'guys': 1,\n",
      "          'claus': 1,\n",
      "          'caption': 1,\n",
      "          'reading': 1,\n",
      "          'six': 1,\n",
      "          'earlier': 1,\n",
      "          'nya': 1,\n",
      "          'honestly': 1,\n",
      "          'interested': 1,\n",
      "          'killed': 1,\n",
      "          'poor': 1,\n",
      "          'santas': 1,\n",
      "          'lose': 1,\n",
      "          'follow': 1,\n",
      "          'opening': 1,\n",
      "          'terminally': 1,\n",
      "          'dull': 1,\n",
      "          'niceguyswhodontdeservetobeinprison': 1,\n",
      "          'nwrite': 1,\n",
      "          'prisoners': 1,\n",
      "          'want': 1,\n",
      "          'go': 1,\n",
      "          'home': 1,\n",
      "          'eat': 1,\n",
      "          'christmas': 1,\n",
      "          'dinner': 1,\n",
      "          'watch': 1,\n",
      "          'ball': 1,\n",
      "          'dad': 1,\n",
      "          'actually': 1,\n",
      "          'film': 1,\n",
      "          'forget': 1,\n",
      "          'leave': 1,\n",
      "          'cutting': 1,\n",
      "          'room': 1,\n",
      "          'floor': 1,\n",
      "          'nfor': 1,\n",
      "          'measure': 1,\n",
      "          'throw': 1,\n",
      "          'motivated': 1,\n",
      "          'riot': 1,\n",
      "          'stabbed': 1,\n",
      "          'naw': 1,\n",
      "          'nalready': 1,\n",
      "          'cliches': 1,\n",
      "          'piled': 1,\n",
      "          'thick': 1,\n",
      "          'rains': 1,\n",
      "          'pours': 1,\n",
      "          'dash': 1,\n",
      "          'violently': 1,\n",
      "          'rocks': 1,\n",
      "          'im': 1,\n",
      "          'contemplating': 1,\n",
      "          'strategy': 1,\n",
      "          'calling': 1,\n",
      "          'shotgun': 1,\n",
      "          'hour': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'deny': 1,\n",
      "          'characters': 1,\n",
      "          'ability': 1,\n",
      "          'reason': 1,\n",
      "          'ill': 1,\n",
      "          'understand': 1,\n",
      "          'pretend': 1,\n",
      "          'girlfriend': 1,\n",
      "          'played': 1,\n",
      "          'participate': 1,\n",
      "          'planned': 1,\n",
      "          'heist': 1,\n",
      "          'nthe': 1,\n",
      "          'villains': 1,\n",
      "          'big': 1,\n",
      "          'nkidnap': 1,\n",
      "          'used': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'tell': 1,\n",
      "          'doors': 1,\n",
      "          'dress': 1,\n",
      "          'create': 1,\n",
      "          'diversions': 1,\n",
      "          'rob': 1,\n",
      "          'stuff': 1,\n",
      "          'potential': 1,\n",
      "          'caper': 1,\n",
      "          'comedy': 1,\n",
      "          'veteran': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'frankenheimer': 1,\n",
      "          'wrongly': 1,\n",
      "          'picks': 1,\n",
      "          'looking': 1,\n",
      "          'makings': 1,\n",
      "          'clever': 1,\n",
      "          'actioncrime': 1,\n",
      "          'thriller': 1,\n",
      "          'nits': 1,\n",
      "          'capable': 1,\n",
      "          'nfar': 1,\n",
      "          'responsible': 1,\n",
      "          'classic': 1,\n",
      "          'political': 1,\n",
      "          'thrillers': 1,\n",
      "          'manchurian': 1,\n",
      "          'candidate': 1,\n",
      "          'seven': 1,\n",
      "          'may': 1,\n",
      "          'wowed': 1,\n",
      "          'memorable': 1,\n",
      "          'chases': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'ronin': 1,\n",
      "          'certainly': 1,\n",
      "          'guilty': 1,\n",
      "          'churning': 1,\n",
      "          'certifiable': 1,\n",
      "          'losers': 1,\n",
      "          'nput': 1,\n",
      "          'shelf': 1,\n",
      "          'shame': 1,\n",
      "          '1996': 1,\n",
      "          'version': 1,\n",
      "          'island': 1,\n",
      "          'dr': 1,\n",
      "          'moreau': 1,\n",
      "          'cast': 1,\n",
      "          'worlds': 1,\n",
      "          'generic': 1,\n",
      "          'hero': 1,\n",
      "          'oneliners': 1,\n",
      "          'doesnt': 1,\n",
      "          'shoot': 1,\n",
      "          'implode': 1,\n",
      "          'anything': 1,\n",
      "          'interesting': 1,\n",
      "          'ways': 1,\n",
      "          'regrets': 1,\n",
      "          'thief': 1,\n",
      "          'wants': 1,\n",
      "          'cup': 1,\n",
      "          'hot': 1,\n",
      "          'chocolate': 1,\n",
      "          'pecan': 1,\n",
      "          'pie': 1,\n",
      "          'nhis': 1,\n",
      "          'rudy': 1,\n",
      "          'short': 1,\n",
      "          'rudolph': 1,\n",
      "          'likelihood': 1,\n",
      "          'nsee': 1,\n",
      "          'called': 1,\n",
      "          'nshut': 1,\n",
      "          'nin': 1,\n",
      "          'supporting': 1,\n",
      "          'actor': 1,\n",
      "          'nothing': 1,\n",
      "          'viability': 1,\n",
      "          'leading': 1,\n",
      "          'sinises': 1,\n",
      "          'villain': 1,\n",
      "          'dresses': 1,\n",
      "          'looks': 1,\n",
      "          'standard': 1,\n",
      "          'crook': 1,\n",
      "          'filmmaker': 1,\n",
      "          'could': 1,\n",
      "          'dirty': 1,\n",
      "          'pottymouthed': 1,\n",
      "          'got': 1,\n",
      "          'long': 1,\n",
      "          'scruffy': 1,\n",
      "          'hair': 1,\n",
      "          'goatee': 1,\n",
      "          'fully': 1,\n",
      "          'expected': 1,\n",
      "          'walk': 1,\n",
      "          'carrying': 1,\n",
      "          'sacks': 1,\n",
      "          'giant': 1,\n",
      "          'dollar': 1,\n",
      "          'signs': 1,\n",
      "          'also': 1,\n",
      "          'extremely': 1,\n",
      "          'inept': 1,\n",
      "          'garish': 1,\n",
      "          'cowboy': 1,\n",
      "          'costumes': 1,\n",
      "          'acceptable': 1,\n",
      "          'disguises': 1,\n",
      "          'trusts': 1,\n",
      "          'character': 1,\n",
      "          'pull': 1,\n",
      "          'tricks': 1,\n",
      "          'lies': 1,\n",
      "          'nearly': 1,\n",
      "          'kills': 1,\n",
      "          'tapping': 1,\n",
      "          'comic': 1,\n",
      "          'possibilities': 1,\n",
      "          'playing': 1,\n",
      "          'tough': 1,\n",
      "          'smart': 1,\n",
      "          'smooth': 1,\n",
      "          'criminal': 1,\n",
      "          'mastermind': 1,\n",
      "          'rather': 1,\n",
      "          'complete': 1,\n",
      "          'moron': 1,\n",
      "          'obviously': 1,\n",
      "          'written': 1,\n",
      "          'script': 1,\n",
      "          'side': 1,\n",
      "          'note': 1,\n",
      "          'wins': 1,\n",
      "          'title': 1,\n",
      "          'naward': 1,\n",
      "          'awkwardly': 1,\n",
      "          'cram': 1,\n",
      "          'lines': 1,\n",
      "          'early': 1,\n",
      "          'proceedings': 1,\n",
      "          'nlast': 1,\n",
      "          'winner': 1,\n",
      "          'natasha': 1,\n",
      "          'henstridge': 1,\n",
      "          'whole': 1,\n",
      "          'nine': 1,\n",
      "          'yards': 1,\n",
      "          'things': 1,\n",
      "          'include': 1,\n",
      "          'three': 1,\n",
      "          'plot': 1,\n",
      "          'twists': 1,\n",
      "          'apparently': 1,\n",
      "          'stupidity': 1,\n",
      "          'suddenly': 1,\n",
      "          'intelligent': 1,\n",
      "          'ridiculous': 1,\n",
      "          'unlikely': 1,\n",
      "          'nthis': 1,\n",
      "          'whats': 1,\n",
      "          'except': 1,\n",
      "          'moments': 1,\n",
      "          'near': 1,\n",
      "          'notsostunning': 1,\n",
      "          'conclusion': 1,\n",
      "          'replaced': 1,\n",
      "          'ludicrously': 1,\n",
      "          'really': 1,\n",
      "          'gives': 1,\n",
      "          'satisfaction': 1,\n",
      "          'laughably': 1,\n",
      "          'nif': 1,\n",
      "          'theyd': 1,\n",
      "          'done': 1,\n",
      "          'much': 1,\n",
      "          'least': 1,\n",
      "          'would': 1,\n",
      "          'entertained': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'boggs': 6,\n",
      "          'carry': 4,\n",
      "          'kenneth': 4,\n",
      "          'spanner': 4,\n",
      "          'sid': 4,\n",
      "          'hattie': 4,\n",
      "          'jacques': 4,\n",
      "          'factory': 3,\n",
      "          'toilet': 3,\n",
      "          'cope': 3,\n",
      "          'plummer': 3,\n",
      "          'budgie': 3,\n",
      "          'ocallaghan': 3,\n",
      "          'performances': 3,\n",
      "          'part': 3,\n",
      "          'film': 3,\n",
      "          'movie': 3,\n",
      "          'williams': 2,\n",
      "          'two': 2,\n",
      "          'charles': 2,\n",
      "          'hawtrey': 2,\n",
      "          'vic': 2,\n",
      "          'bernard': 2,\n",
      "          'bresslaw': 2,\n",
      "          'james': 2,\n",
      "          'wife': 2,\n",
      "          'beattie': 2,\n",
      "          'moore': 2,\n",
      "          'sims': 2,\n",
      "          'winners': 2,\n",
      "          'horse': 2,\n",
      "          'nhis': 2,\n",
      "          'piper': 2,\n",
      "          'going': 2,\n",
      "          'son': 2,\n",
      "          'nin': 2,\n",
      "          'agatha': 2,\n",
      "          'renee': 2,\n",
      "          'houston': 2,\n",
      "          'usual': 2,\n",
      "          'appealing': 2,\n",
      "          'nhowever': 2,\n",
      "          'go': 2,\n",
      "          'character': 2,\n",
      "          'na': 2,\n",
      "          'marvellous': 2,\n",
      "          'performance': 2,\n",
      "          'nthe': 2,\n",
      "          'suffers': 2,\n",
      "          'annoying': 2,\n",
      "          'nthis': 2,\n",
      "          'humour': 2,\n",
      "          'becomes': 2,\n",
      "          'jokes': 2,\n",
      "          'convenience': 1,\n",
      "          'goingson': 1,\n",
      "          'manufacturer': 1,\n",
      "          'wc': 1,\n",
      "          'nonce': 1,\n",
      "          'order': 1,\n",
      "          'manufacture': 1,\n",
      "          '1000': 1,\n",
      "          'bidets': 1,\n",
      "          'months': 1,\n",
      "          'coote': 1,\n",
      "          'designed': 1,\n",
      "          'suitable': 1,\n",
      "          'model': 1,\n",
      "          'employees': 1,\n",
      "          'set': 1,\n",
      "          'work': 1,\n",
      "          'interrupted': 1,\n",
      "          'union': 1,\n",
      "          'representative': 1,\n",
      "          'friend': 1,\n",
      "          'bernie': 1,\n",
      "          'hulke': 1,\n",
      "          'call': 1,\n",
      "          'strikes': 1,\n",
      "          'slightest': 1,\n",
      "          'pretext': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'chief': 1,\n",
      "          'foreman': 1,\n",
      "          'growing': 1,\n",
      "          'tired': 1,\n",
      "          'nhe': 1,\n",
      "          'would': 1,\n",
      "          'much': 1,\n",
      "          'rather': 1,\n",
      "          'live': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'fellow': 1,\n",
      "          'worker': 1,\n",
      "          'chloe': 1,\n",
      "          'joan': 1,\n",
      "          'discovers': 1,\n",
      "          'predict': 1,\n",
      "          'races': 1,\n",
      "          'moon': 1,\n",
      "          'flush': 1,\n",
      "          'money': 1,\n",
      "          'daughter': 1,\n",
      "          'myrtle': 1,\n",
      "          'jacki': 1,\n",
      "          'wcs': 1,\n",
      "          'lewis': 1,\n",
      "          'richard': 1,\n",
      "          'causes': 1,\n",
      "          'conflict': 1,\n",
      "          'staff': 1,\n",
      "          'day': 1,\n",
      "          'seaside': 1,\n",
      "          'vies': 1,\n",
      "          'attentions': 1,\n",
      "          'end': 1,\n",
      "          'strike': 1,\n",
      "          'cease': 1,\n",
      "          'close': 1,\n",
      "          'support': 1,\n",
      "          'group': 1,\n",
      "          'women': 1,\n",
      "          'led': 1,\n",
      "          'cootes': 1,\n",
      "          'wifetobe': 1,\n",
      "          'spanners': 1,\n",
      "          'mother': 1,\n",
      "          'try': 1,\n",
      "          'resolve': 1,\n",
      "          'situation': 1,\n",
      "          'nalso': 1,\n",
      "          'realises': 1,\n",
      "          'caused': 1,\n",
      "          'nothing': 1,\n",
      "          'trouble': 1,\n",
      "          'since': 1,\n",
      "          'started': 1,\n",
      "          'predicting': 1,\n",
      "          'race': 1,\n",
      "          'nthere': 1,\n",
      "          'good': 1,\n",
      "          'standard': 1,\n",
      "          'roles': 1,\n",
      "          'ncharles': 1,\n",
      "          'third': 1,\n",
      "          'billing': 1,\n",
      "          'appears': 1,\n",
      "          'scenes': 1,\n",
      "          'mildly': 1,\n",
      "          'amusing': 1,\n",
      "          'nrichard': 1,\n",
      "          'stuckup': 1,\n",
      "          'patsy': 1,\n",
      "          'rowlands': 1,\n",
      "          'funny': 1,\n",
      "          'miss': 1,\n",
      "          'withering': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'assistant': 1,\n",
      "          'terrific': 1,\n",
      "          'small': 1,\n",
      "          'sole': 1,\n",
      "          'acting': 1,\n",
      "          'honours': 1,\n",
      "          'nalthough': 1,\n",
      "          'directly': 1,\n",
      "          'involved': 1,\n",
      "          'main': 1,\n",
      "          'storyline': 1,\n",
      "          'manages': 1,\n",
      "          'input': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'pathos': 1,\n",
      "          'feeling': 1,\n",
      "          'actress': 1,\n",
      "          'especially': 1,\n",
      "          'debut': 1,\n",
      "          'overdoes': 1,\n",
      "          'role': 1,\n",
      "          'making': 1,\n",
      "          'unfunny': 1,\n",
      "          'njoan': 1,\n",
      "          'returns': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'instead': 1,\n",
      "          'barbara': 1,\n",
      "          'windsor': 1,\n",
      "          'nsims': 1,\n",
      "          'downtrodden': 1,\n",
      "          'taken': 1,\n",
      "          'nadditionally': 1,\n",
      "          'bill': 1,\n",
      "          'maynard': 1,\n",
      "          'fred': 1,\n",
      "          'poor': 1,\n",
      "          'tries': 1,\n",
      "          'best': 1,\n",
      "          'entertain': 1,\n",
      "          'viewer': 1,\n",
      "          'locations': 1,\n",
      "          'wealth': 1,\n",
      "          'characters': 1,\n",
      "          'tiresome': 1,\n",
      "          'quickly': 1,\n",
      "          'leave': 1,\n",
      "          'lot': 1,\n",
      "          'desired': 1,\n",
      "          'know': 1,\n",
      "          'nit': 1,\n",
      "          'made': 1,\n",
      "          '1971': 1,\n",
      "          'talbot': 1,\n",
      "          'rothwell': 1,\n",
      "          'scriptwriter': 1,\n",
      "          'seems': 1,\n",
      "          'minds': 1,\n",
      "          'whether': 1,\n",
      "          'bluer': 1,\n",
      "          'maintain': 1,\n",
      "          'innocent': 1,\n",
      "          'success': 1,\n",
      "          'predecessors': 1,\n",
      "          'nthat': 1,\n",
      "          'minor': 1,\n",
      "          'whose': 1,\n",
      "          'major': 1,\n",
      "          'asset': 1,\n",
      "          'new': 1,\n",
      "          'minorregulars': 1,\n",
      "          'able': 1,\n",
      "          'enliven': 1,\n",
      "          'humourless': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nbut': 8,\n",
      "          'de': 5,\n",
      "          'house': 5,\n",
      "          'nthe': 5,\n",
      "          'film': 4,\n",
      "          'bont': 4,\n",
      "          'end': 4,\n",
      "          'good': 4,\n",
      "          'bad': 3,\n",
      "          'ni': 3,\n",
      "          'thought': 3,\n",
      "          'liam': 3,\n",
      "          'neeson': 3,\n",
      "          'cathrine': 3,\n",
      "          'zeta': 3,\n",
      "          'jones': 3,\n",
      "          'jan': 3,\n",
      "          'nand': 3,\n",
      "          'nit': 3,\n",
      "          'haunting': 3,\n",
      "          'n': 3,\n",
      "          'special': 3,\n",
      "          'say': 3,\n",
      "          'things': 3,\n",
      "          'actually': 3,\n",
      "          'tagline': 2,\n",
      "          'born': 2,\n",
      "          'didnt': 2,\n",
      "          'great': 2,\n",
      "          'actors': 2,\n",
      "          'basically': 2,\n",
      "          'story': 2,\n",
      "          'hill': 2,\n",
      "          'doctor': 2,\n",
      "          'experiment': 2,\n",
      "          'emotional': 2,\n",
      "          'forth': 2,\n",
      "          'na': 2,\n",
      "          'sinister': 2,\n",
      "          'take': 2,\n",
      "          'screen': 2,\n",
      "          'second': 2,\n",
      "          'nis': 2,\n",
      "          'nits': 2,\n",
      "          'book': 2,\n",
      "          'scary': 2,\n",
      "          'make': 2,\n",
      "          'style': 2,\n",
      "          'material': 2,\n",
      "          'effects': 2,\n",
      "          'impressive': 2,\n",
      "          'every': 2,\n",
      "          'absolutely': 2,\n",
      "          'shows': 2,\n",
      "          'climax': 2,\n",
      "          'hichock': 2,\n",
      "          'see': 2,\n",
      "          'one': 2,\n",
      "          'might': 2,\n",
      "          'stupid': 2,\n",
      "          'shining': 2,\n",
      "          'houses': 1,\n",
      "          'nso': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'preserved': 1,\n",
      "          'little': 1,\n",
      "          'spark': 1,\n",
      "          'ope': 1,\n",
      "          'entered': 1,\n",
      "          'theatre': 1,\n",
      "          'mabe': 1,\n",
      "          'fun': 1,\n",
      "          'fact': 1,\n",
      "          'beginning': 1,\n",
      "          'rather': 1,\n",
      "          'intriguing': 1,\n",
      "          'nthese': 1,\n",
      "          'helpless': 1,\n",
      "          'muddled': 1,\n",
      "          'mess': 1,\n",
      "          'defies': 1,\n",
      "          'rationality': 1,\n",
      "          'nhere': 1,\n",
      "          'monstrously': 1,\n",
      "          'overdecorated': 1,\n",
      "          'mansion': 1,\n",
      "          'known': 1,\n",
      "          'visitors': 1,\n",
      "          'tricked': 1,\n",
      "          'unknown': 1,\n",
      "          'guinea': 1,\n",
      "          'pigs': 1,\n",
      "          'fright': 1,\n",
      "          'guise': 1,\n",
      "          'insomnia': 1,\n",
      "          'investigation': 1,\n",
      "          'namong': 1,\n",
      "          'sophisticated': 1,\n",
      "          'bisexual': 1,\n",
      "          'cynical': 1,\n",
      "          'dope': 1,\n",
      "          'owen': 1,\n",
      "          'wilson': 1,\n",
      "          'gentle': 1,\n",
      "          'lady': 1,\n",
      "          'lily': 1,\n",
      "          'taylor': 1,\n",
      "          'nactually': 1,\n",
      "          'researching': 1,\n",
      "          'primordial': 1,\n",
      "          'fear': 1,\n",
      "          'reaction': 1,\n",
      "          'intends': 1,\n",
      "          'plant': 1,\n",
      "          'disturbing': 1,\n",
      "          'ideas': 1,\n",
      "          'subjects': 1,\n",
      "          'watch': 1,\n",
      "          'nwhat': 1,\n",
      "          'happens': 1,\n",
      "          'gets': 1,\n",
      "          'unexpected': 1,\n",
      "          'help': 1,\n",
      "          'rumbles': 1,\n",
      "          'hums': 1,\n",
      "          'belches': 1,\n",
      "          'remarkable': 1,\n",
      "          'sights': 1,\n",
      "          'nportals': 1,\n",
      "          'become': 1,\n",
      "          'veiny': 1,\n",
      "          'stainedglass': 1,\n",
      "          'eyeballs': 1,\n",
      "          'fireplace': 1,\n",
      "          'guarded': 1,\n",
      "          'stone': 1,\n",
      "          'lions': 1,\n",
      "          'gapes': 1,\n",
      "          'like': 1,\n",
      "          'mouth': 1,\n",
      "          'nfilmy': 1,\n",
      "          'cherubic': 1,\n",
      "          'spirits': 1,\n",
      "          'shape': 1,\n",
      "          'sheets': 1,\n",
      "          'billowy': 1,\n",
      "          'curtains': 1,\n",
      "          'computerized': 1,\n",
      "          'spooketeria': 1,\n",
      "          'rarely': 1,\n",
      "          'feels': 1,\n",
      "          'real': 1,\n",
      "          'placing': 1,\n",
      "          'wall': 1,\n",
      "          'audience': 1,\n",
      "          'half': 1,\n",
      "          'main': 1,\n",
      "          'heroine': 1,\n",
      "          'running': 1,\n",
      "          'back': 1,\n",
      "          'lamps': 1,\n",
      "          'evil': 1,\n",
      "          'furniture': 1,\n",
      "          'exciting': 1,\n",
      "          'worst': 1,\n",
      "          'thing': 1,\n",
      "          'based': 1,\n",
      "          'shirley': 1,\n",
      "          'jackson': 1,\n",
      "          '1963': 1,\n",
      "          'adaptation': 1,\n",
      "          'intelligent': 1,\n",
      "          'played': 1,\n",
      "          'greatest': 1,\n",
      "          'fears': 1,\n",
      "          'sub': 1,\n",
      "          'conscience': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'project': 1,\n",
      "          'cost': 1,\n",
      "          'less': 1,\n",
      "          'old': 1,\n",
      "          'car': 1,\n",
      "          'managed': 1,\n",
      "          'shock': 1,\n",
      "          'terrify': 1,\n",
      "          'audiences': 1,\n",
      "          'senses': 1,\n",
      "          '70': 1,\n",
      "          'mill': 1,\n",
      "          'nbudget': 1,\n",
      "          'screenwriter': 1,\n",
      "          'david': 1,\n",
      "          'self': 1,\n",
      "          'hash': 1,\n",
      "          'perfectly': 1,\n",
      "          'lovely': 1,\n",
      "          'piece': 1,\n",
      "          'terror': 1,\n",
      "          'nde': 1,\n",
      "          'nbont': 1,\n",
      "          'filmmaking': 1,\n",
      "          'line': 1,\n",
      "          'frightening': 1,\n",
      "          'nhe': 1,\n",
      "          'master': 1,\n",
      "          'extravagant': 1,\n",
      "          'effect': 1,\n",
      "          'big': 1,\n",
      "          'visual': 1,\n",
      "          'adrenaline': 1,\n",
      "          'rush': 1,\n",
      "          'give': 1,\n",
      "          'serious': 1,\n",
      "          'nin': 1,\n",
      "          'haunt': 1,\n",
      "          'fledgling': 1,\n",
      "          'studio': 1,\n",
      "          'dream': 1,\n",
      "          'works': 1,\n",
      "          'skg': 1,\n",
      "          'bonts': 1,\n",
      "          'career': 1,\n",
      "          'director': 1,\n",
      "          'nyet': 1,\n",
      "          'wouldnt': 1,\n",
      "          'fair': 1,\n",
      "          'everything': 1,\n",
      "          'truly': 1,\n",
      "          'wonderfully': 1,\n",
      "          'decorated': 1,\n",
      "          'beautiful': 1,\n",
      "          'mysterious': 1,\n",
      "          'magical': 1,\n",
      "          'spooky': 1,\n",
      "          'music': 1,\n",
      "          'blaring': 1,\n",
      "          'floors': 1,\n",
      "          'moving': 1,\n",
      "          'ceiling': 1,\n",
      "          'morphing': 1,\n",
      "          'pictures': 1,\n",
      "          'walls': 1,\n",
      "          'screaming': 1,\n",
      "          'moment': 1,\n",
      "          'time': 1,\n",
      "          'without': 1,\n",
      "          'life': 1,\n",
      "          'nothing': 1,\n",
      "          'effectsextravaganza': 1,\n",
      "          'visually': 1,\n",
      "          'intellectually': 1,\n",
      "          'hollow': 1,\n",
      "          'thriller': 1,\n",
      "          'simply': 1,\n",
      "          'doesnt': 1,\n",
      "          'engage': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'know': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'part': 1,\n",
      "          'nare': 1,\n",
      "          'hallucinations': 1,\n",
      "          'nprojections': 1,\n",
      "          'subconscience': 1,\n",
      "          'nparanoia': 1,\n",
      "          'happening': 1,\n",
      "          'possessed': 1,\n",
      "          'point': 1,\n",
      "          'hopes': 1,\n",
      "          'entertainment': 1,\n",
      "          'disappears': 1,\n",
      "          'window': 1,\n",
      "          'nfor': 1,\n",
      "          'ever': 1,\n",
      "          'sat': 1,\n",
      "          'anticipation': 1,\n",
      "          'decent': 1,\n",
      "          'thats': 1,\n",
      "          'got': 1,\n",
      "          'believe': 1,\n",
      "          'said': 1,\n",
      "          'nbetter': 1,\n",
      "          'wait': 1,\n",
      "          'nthis': 1,\n",
      "          'may': 1,\n",
      "          'true': 1,\n",
      "          'work': 1,\n",
      "          'problem': 1,\n",
      "          'nthey': 1,\n",
      "          'impossible': 1,\n",
      "          'seriously': 1,\n",
      "          'nany': 1,\n",
      "          'paralells': 1,\n",
      "          'heard': 1,\n",
      "          'linking': 1,\n",
      "          'picture': 1,\n",
      "          'kubricks': 1,\n",
      "          'baseless': 1,\n",
      "          'class': 1,\n",
      "          'acting': 1,\n",
      "          'talent': 1,\n",
      "          'originality': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'boast': 1,\n",
      "          'elements': 1,\n",
      "          'alone': 1,\n",
      "          'enough': 1,\n",
      "          'ncasting': 1,\n",
      "          'small': 1,\n",
      "          'pale': 1,\n",
      "          'parts': 1,\n",
      "          'makes': 1,\n",
      "          'worse': 1,\n",
      "          'guess': 1,\n",
      "          'matter': 1,\n",
      "          'critics': 1,\n",
      "          'write': 1,\n",
      "          'anyway': 1,\n",
      "          'even': 1,\n",
      "          'would': 1,\n",
      "          'films': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mother': 9,\n",
      "          'daughter': 8,\n",
      "          'beverly': 7,\n",
      "          'hills': 7,\n",
      "          'one': 5,\n",
      "          'life': 4,\n",
      "          'mom': 4,\n",
      "          'film': 3,\n",
      "          'script': 3,\n",
      "          'even': 3,\n",
      "          'go': 3,\n",
      "          'nthe': 3,\n",
      "          'school': 3,\n",
      "          'many': 3,\n",
      "          'high': 3,\n",
      "          'learns': 3,\n",
      "          'anywhere': 2,\n",
      "          'thing': 2,\n",
      "          'tell': 2,\n",
      "          'order': 2,\n",
      "          'couldnt': 2,\n",
      "          'went': 2,\n",
      "          'fortunate': 2,\n",
      "          'weak': 2,\n",
      "          'made': 2,\n",
      "          'ann': 2,\n",
      "          'leave': 2,\n",
      "          'small': 2,\n",
      "          'doesnt': 2,\n",
      "          'like': 2,\n",
      "          'beach': 2,\n",
      "          'car': 2,\n",
      "          'best': 2,\n",
      "          'ending': 2,\n",
      "          'good': 2,\n",
      "          'job': 2,\n",
      "          'survive': 2,\n",
      "          'wisconsin': 2,\n",
      "          'nduring': 2,\n",
      "          'traffic': 2,\n",
      "          'cop': 2,\n",
      "          'wise': 2,\n",
      "          'living': 2,\n",
      "          'way': 2,\n",
      "          'stay': 2,\n",
      "          'nbut': 2,\n",
      "          'wants': 2,\n",
      "          'trying': 2,\n",
      "          'right': 2,\n",
      "          'nthis': 2,\n",
      "          'showing': 2,\n",
      "          'title': 1,\n",
      "          'taken': 1,\n",
      "          'writings': 1,\n",
      "          'ralph': 1,\n",
      "          'waldo': 1,\n",
      "          'emerson': 1,\n",
      "          'describing': 1,\n",
      "          'traveler': 1,\n",
      "          'nthere': 1,\n",
      "          'isnt': 1,\n",
      "          'motherdaughter': 1,\n",
      "          'relationship': 1,\n",
      "          'melodrama': 1,\n",
      "          'felt': 1,\n",
      "          'honest': 1,\n",
      "          'nit': 1,\n",
      "          'relies': 1,\n",
      "          'contrived': 1,\n",
      "          'minor': 1,\n",
      "          'character': 1,\n",
      "          'obvious': 1,\n",
      "          'straighten': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'lives': 1,\n",
      "          'reason': 1,\n",
      "          'figure': 1,\n",
      "          'nif': 1,\n",
      "          'looks': 1,\n",
      "          'familiar': 1,\n",
      "          'slums': 1,\n",
      "          '98': 1,\n",
      "          'ground': 1,\n",
      "          'comical': 1,\n",
      "          'perceptive': 1,\n",
      "          'due': 1,\n",
      "          'alan': 1,\n",
      "          'arkin': 1,\n",
      "          'natasha': 1,\n",
      "          'lyonne': 1,\n",
      "          'performances': 1,\n",
      "          'much': 1,\n",
      "          'sharper': 1,\n",
      "          'work': 1,\n",
      "          'nalvin': 1,\n",
      "          'sargents': 1,\n",
      "          'annoyingly': 1,\n",
      "          'claustral': 1,\n",
      "          'nwayne': 1,\n",
      "          'wangs': 1,\n",
      "          'joy': 1,\n",
      "          'luck': 1,\n",
      "          'club': 1,\n",
      "          'inept': 1,\n",
      "          'direction': 1,\n",
      "          'weaker': 1,\n",
      "          'inability': 1,\n",
      "          'story': 1,\n",
      "          'unfolding': 1,\n",
      "          'without': 1,\n",
      "          'voiceover': 1,\n",
      "          'relating': 1,\n",
      "          'action': 1,\n",
      "          'convey': 1,\n",
      "          'npushy': 1,\n",
      "          'adele': 1,\n",
      "          'august': 1,\n",
      "          'susan': 1,\n",
      "          'sarandon': 1,\n",
      "          'forces': 1,\n",
      "          '14yearold': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'midwestern': 1,\n",
      "          'burg': 1,\n",
      "          'crosscountry': 1,\n",
      "          'resents': 1,\n",
      "          'twice': 1,\n",
      "          'divorced': 1,\n",
      "          'unstable': 1,\n",
      "          'exotic': 1,\n",
      "          'schoolteacher': 1,\n",
      "          'bullying': 1,\n",
      "          'actress': 1,\n",
      "          'means': 1,\n",
      "          'escaping': 1,\n",
      "          'humdrum': 1,\n",
      "          'daqughter': 1,\n",
      "          'used': 1,\n",
      "          'gold': 1,\n",
      "          'mercedes': 1,\n",
      "          'buys': 1,\n",
      "          'drive': 1,\n",
      "          'lala': 1,\n",
      "          'land': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'boys': 1,\n",
      "          'records': 1,\n",
      "          'enjoys': 1,\n",
      "          'hearing': 1,\n",
      "          'radio': 1,\n",
      "          'nso': 1,\n",
      "          'becomes': 1,\n",
      "          'question': 1,\n",
      "          'knows': 1,\n",
      "          'ladies': 1,\n",
      "          'fight': 1,\n",
      "          'predictable': 1,\n",
      "          'sweet': 1,\n",
      "          'comes': 1,\n",
      "          'yawner': 1,\n",
      "          'nadeles': 1,\n",
      "          'dream': 1,\n",
      "          'greener': 1,\n",
      "          'pastures': 1,\n",
      "          'soon': 1,\n",
      "          'look': 1,\n",
      "          'lands': 1,\n",
      "          'slum': 1,\n",
      "          'precious': 1,\n",
      "          'scratched': 1,\n",
      "          'unruly': 1,\n",
      "          'kids': 1,\n",
      "          'settles': 1,\n",
      "          'hates': 1,\n",
      "          'financially': 1,\n",
      "          'ndaughter': 1,\n",
      "          'pines': 1,\n",
      "          'town': 1,\n",
      "          'friends': 1,\n",
      "          'arguments': 1,\n",
      "          'freespirited': 1,\n",
      "          'ice': 1,\n",
      "          'cream': 1,\n",
      "          'ticketed': 1,\n",
      "          'runs': 1,\n",
      "          'away': 1,\n",
      "          'chased': 1,\n",
      "          'friendly': 1,\n",
      "          'michael': 1,\n",
      "          'milhoan': 1,\n",
      "          'offers': 1,\n",
      "          'counsel': 1,\n",
      "          'nwith': 1,\n",
      "          'cops': 1,\n",
      "          'zen': 1,\n",
      "          'wisdom': 1,\n",
      "          'passed': 1,\n",
      "          'onto': 1,\n",
      "          'different': 1,\n",
      "          'addresses': 1,\n",
      "          'reaches': 1,\n",
      "          '17': 1,\n",
      "          'plans': 1,\n",
      "          'get': 1,\n",
      "          'using': 1,\n",
      "          'grades': 1,\n",
      "          'brown': 1,\n",
      "          'university': 1,\n",
      "          'instead': 1,\n",
      "          'ucla': 1,\n",
      "          'grows': 1,\n",
      "          'feeling': 1,\n",
      "          'awkward': 1,\n",
      "          'immediately': 1,\n",
      "          'girlfriends': 1,\n",
      "          'rich': 1,\n",
      "          'boy': 1,\n",
      "          'admirer': 1,\n",
      "          'neliot': 1,\n",
      "          'corbin': 1,\n",
      "          'allred': 1,\n",
      "          'reader': 1,\n",
      "          'transition': 1,\n",
      "          'feel': 1,\n",
      "          'reality': 1,\n",
      "          'everything': 1,\n",
      "          'seemed': 1,\n",
      "          'staged': 1,\n",
      "          'unemotional': 1,\n",
      "          'nwhen': 1,\n",
      "          'cousin': 1,\n",
      "          'benny': 1,\n",
      "          'shawn': 1,\n",
      "          'hatosy': 1,\n",
      "          'happens': 1,\n",
      "          'friend': 1,\n",
      "          'dies': 1,\n",
      "          'accident': 1,\n",
      "          'back': 1,\n",
      "          'returns': 1,\n",
      "          'funeral': 1,\n",
      "          'reunion': 1,\n",
      "          'scenes': 1,\n",
      "          'wasnt': 1,\n",
      "          'clearly': 1,\n",
      "          'shown': 1,\n",
      "          'matter': 1,\n",
      "          'never': 1,\n",
      "          'clear': 1,\n",
      "          'badly': 1,\n",
      "          'big': 1,\n",
      "          'battle': 1,\n",
      "          'wills': 1,\n",
      "          'dreams': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'filmmaker': 1,\n",
      "          'say': 1,\n",
      "          'bad': 1,\n",
      "          'dreamer': 1,\n",
      "          'observant': 1,\n",
      "          'able': 1,\n",
      "          'recognize': 1,\n",
      "          'mothers': 1,\n",
      "          'faults': 1,\n",
      "          'growing': 1,\n",
      "          'pains': 1,\n",
      "          'need': 1,\n",
      "          'parenting': 1,\n",
      "          'nmother': 1,\n",
      "          'series': 1,\n",
      "          'setbacks': 1,\n",
      "          'dumped': 1,\n",
      "          'dreamboat': 1,\n",
      "          'dentist': 1,\n",
      "          'bochner': 1,\n",
      "          'met': 1,\n",
      "          'witnessing': 1,\n",
      "          'mimic': 1,\n",
      "          'whiny': 1,\n",
      "          'optimistic': 1,\n",
      "          'sayings': 1,\n",
      "          'acting': 1,\n",
      "          'part': 1,\n",
      "          'grownup': 1,\n",
      "          'independent': 1,\n",
      "          'stop': 1,\n",
      "          'nshe': 1,\n",
      "          'told': 1,\n",
      "          'ticket': 1,\n",
      "          'time': 1,\n",
      "          'remind': 1,\n",
      "          'course': 1,\n",
      "          'results': 1,\n",
      "          'corny': 1,\n",
      "          'moms': 1,\n",
      "          'heart': 1,\n",
      "          'always': 1,\n",
      "          'place': 1,\n",
      "          'wrong': 1,\n",
      "          'films': 1,\n",
      "          'want': 1,\n",
      "          'theater': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tomb': 6,\n",
      "          'raider': 6,\n",
      "          'game': 5,\n",
      "          'croft': 5,\n",
      "          'video': 4,\n",
      "          'jolie': 4,\n",
      "          'things': 3,\n",
      "          'lara': 3,\n",
      "          'isnt': 3,\n",
      "          'say': 3,\n",
      "          'time': 3,\n",
      "          'well': 2,\n",
      "          'big': 2,\n",
      "          'none': 2,\n",
      "          'fun': 2,\n",
      "          'exciting': 2,\n",
      "          'bitter': 2,\n",
      "          'brought': 2,\n",
      "          'nthe': 2,\n",
      "          'makes': 2,\n",
      "          'look': 2,\n",
      "          'suspect': 2,\n",
      "          'character': 2,\n",
      "          'development': 2,\n",
      "          'movie': 2,\n",
      "          'hard': 2,\n",
      "          'nshouldnt': 2,\n",
      "          'father': 2,\n",
      "          'nfun': 1,\n",
      "          'nexciting': 1,\n",
      "          'nchallenging': 1,\n",
      "          'ngiven': 1,\n",
      "          'unprecedented': 1,\n",
      "          'popularity': 1,\n",
      "          'especially': 1,\n",
      "          'among': 1,\n",
      "          'teenage': 1,\n",
      "          'boys': 1,\n",
      "          'sports': 1,\n",
      "          'uberbuff': 1,\n",
      "          'pistol': 1,\n",
      "          'packin': 1,\n",
      "          'babe': 1,\n",
      "          'raids': 1,\n",
      "          'ntombs': 1,\n",
      "          'believe': 1,\n",
      "          'three': 1,\n",
      "          'n': 1,\n",
      "          'screen': 1,\n",
      "          'variant': 1,\n",
      "          'said': 1,\n",
      "          'features': 1,\n",
      "          'pumpedup': 1,\n",
      "          'angelina': 1,\n",
      "          'oscar': 1,\n",
      "          'winner': 1,\n",
      "          'girl': 1,\n",
      "          'interrupted': 1,\n",
      "          'less': 1,\n",
      "          'title': 1,\n",
      "          'role': 1,\n",
      "          'however': 1,\n",
      "          'nit': 1,\n",
      "          'challenge': 1,\n",
      "          'seeing': 1,\n",
      "          'long': 1,\n",
      "          'stay': 1,\n",
      "          'seat': 1,\n",
      "          'suffered': 1,\n",
      "          'end': 1,\n",
      "          'wife': 1,\n",
      "          'opted': 1,\n",
      "          'barnes': 1,\n",
      "          'noble': 1,\n",
      "          '45minute': 1,\n",
      "          'mark': 1,\n",
      "          'ndirected': 1,\n",
      "          'simon': 1,\n",
      "          'west': 1,\n",
      "          'subtlety': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'emptyheaded': 1,\n",
      "          'budget': 1,\n",
      "          'bore': 1,\n",
      "          'story': 1,\n",
      "          'borrows': 1,\n",
      "          'unintelligently': 1,\n",
      "          'mother': 1,\n",
      "          'turkeys': 1,\n",
      "          'hudson': 1,\n",
      "          'hawk': 1,\n",
      "          'hokum': 1,\n",
      "          'planetary': 1,\n",
      "          'alignments': 1,\n",
      "          'sacred': 1,\n",
      "          'stones': 1,\n",
      "          'together': 1,\n",
      "          'nwho': 1,\n",
      "          'heck': 1,\n",
      "          'cares': 1,\n",
      "          'super': 1,\n",
      "          'mario': 1,\n",
      "          'bros': 1,\n",
      "          'bob': 1,\n",
      "          'hoskins': 1,\n",
      "          'illadvised': 1,\n",
      "          'career': 1,\n",
      "          'move': 1,\n",
      "          'like': 1,\n",
      "          'rocco': 1,\n",
      "          'brothers': 1,\n",
      "          'classic': 1,\n",
      "          'italian': 1,\n",
      "          'neorealism': 1,\n",
      "          'nill': 1,\n",
      "          'go': 1,\n",
      "          'limb': 1,\n",
      "          'theres': 1,\n",
      "          'actually': 1,\n",
      "          'proper': 1,\n",
      "          'nthis': 1,\n",
      "          'defendersvideo': 1,\n",
      "          'nuts': 1,\n",
      "          'jump': 1,\n",
      "          'kicking': 1,\n",
      "          'serious': 1,\n",
      "          'butt': 1,\n",
      "          'bum': 1,\n",
      "          'since': 1,\n",
      "          'ms': 1,\n",
      "          'hails': 1,\n",
      "          'englands': 1,\n",
      "          'green': 1,\n",
      "          'pleasant': 1,\n",
      "          'nwith': 1,\n",
      "          'lips': 1,\n",
      "          'breasts': 1,\n",
      "          'biceps': 1,\n",
      "          'inflated': 1,\n",
      "          'max': 1,\n",
      "          'posturing': 1,\n",
      "          'simply': 1,\n",
      "          'standing': 1,\n",
      "          'still': 1,\n",
      "          'without': 1,\n",
      "          'trying': 1,\n",
      "          'tough': 1,\n",
      "          'nok': 1,\n",
      "          'lets': 1,\n",
      "          'forget': 1,\n",
      "          'challenging': 1,\n",
      "          'least': 1,\n",
      "          'buttkicking': 1,\n",
      "          'heroine': 1,\n",
      "          'also': 1,\n",
      "          'encompass': 1,\n",
      "          'sophistication': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'wit': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'ntheres': 1,\n",
      "          'humor': 1,\n",
      "          'found': 1,\n",
      "          'anywhere': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'tries': 1,\n",
      "          'neven': 1,\n",
      "          'mummy': 1,\n",
      "          'returns': 1,\n",
      "          'didnt': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'villain': 1,\n",
      "          'noticeably': 1,\n",
      "          'lacking': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'ridiculously': 1,\n",
      "          'overblown': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'complicated': 1,\n",
      "          'script': 1,\n",
      "          'nonexistent': 1,\n",
      "          'nto': 1,\n",
      "          'liven': 1,\n",
      "          'perhaps': 1,\n",
      "          'jolies': 1,\n",
      "          'live': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'puts': 1,\n",
      "          'minutes': 1,\n",
      "          'laras': 1,\n",
      "          'dead': 1,\n",
      "          'lord': 1,\n",
      "          'talk': 1,\n",
      "          'stretch': 1,\n",
      "          'thing': 1,\n",
      "          'hadnt': 1,\n",
      "          'expected': 1,\n",
      "          'film': 1,\n",
      "          'affects': 1,\n",
      "          'slightly': 1,\n",
      "          'better': 1,\n",
      "          'english': 1,\n",
      "          'accent': 1,\n",
      "          'pa': 1,\n",
      "          'although': 1,\n",
      "          'thinlooking': 1,\n",
      "          'moustache': 1,\n",
      "          'hes': 1,\n",
      "          'forced': 1,\n",
      "          'wear': 1,\n",
      "          'gets': 1,\n",
      "          'way': 1,\n",
      "          'nunsuccessful': 1,\n",
      "          'entirely': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'want': 1,\n",
      "          'check': 1,\n",
      "          'figure': 1,\n",
      "          'exactly': 1,\n",
      "          'fuss': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'anastasia': 5,\n",
      "          'may': 3,\n",
      "          'animation': 3,\n",
      "          'disney': 2,\n",
      "          'studios': 2,\n",
      "          'bluth': 2,\n",
      "          'visuals': 2,\n",
      "          'fox': 2,\n",
      "          'occasionally': 2,\n",
      "          'kids': 2,\n",
      "          'plot': 2,\n",
      "          'walt': 1,\n",
      "          'finally': 1,\n",
      "          'met': 1,\n",
      "          'match': 1,\n",
      "          'lush': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'foxs': 1,\n",
      "          'nbut': 1,\n",
      "          'judging': 1,\n",
      "          'latest': 1,\n",
      "          'efforts': 1,\n",
      "          'thing': 1,\n",
      "          'brag': 1,\n",
      "          'ndisneys': 1,\n",
      "          'recent': 1,\n",
      "          'classics': 1,\n",
      "          'stretched': 1,\n",
      "          'credibility': 1,\n",
      "          'films': 1,\n",
      "          'pocahontas': 1,\n",
      "          'hunchback': 1,\n",
      "          'notre': 1,\n",
      "          'dame': 1,\n",
      "          'lesser': 1,\n",
      "          'extent': 1,\n",
      "          'hercules': 1,\n",
      "          'nwith': 1,\n",
      "          'gone': 1,\n",
      "          'far': 1,\n",
      "          'throw': 1,\n",
      "          'facts': 1,\n",
      "          'completely': 1,\n",
      "          'window': 1,\n",
      "          'nsome': 1,\n",
      "          'say': 1,\n",
      "          'nits': 1,\n",
      "          'movie': 1,\n",
      "          'nwell': 1,\n",
      "          'nif': 1,\n",
      "          'young': 1,\n",
      "          'beware': 1,\n",
      "          'noticeably': 1,\n",
      "          'frightened': 1,\n",
      "          'corpserotting': 1,\n",
      "          'rasputin': 1,\n",
      "          'zombie': 1,\n",
      "          'whose': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'continually': 1,\n",
      "          'fall': 1,\n",
      "          'disconcertingly': 1,\n",
      "          'real': 1,\n",
      "          'way': 1,\n",
      "          'nconsider': 1,\n",
      "          'warned': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'quite': 1,\n",
      "          'stunning': 1,\n",
      "          'times': 1,\n",
      "          'ndon': 1,\n",
      "          'used': 1,\n",
      "          'computer': 1,\n",
      "          'extensively': 1,\n",
      "          'throughout': 1,\n",
      "          'rivalling': 1,\n",
      "          'photographic': 1,\n",
      "          'quality': 1,\n",
      "          'nand': 1,\n",
      "          'yet': 1,\n",
      "          'scenes': 1,\n",
      "          'handdrawn': 1,\n",
      "          'material': 1,\n",
      "          'seems': 1,\n",
      "          'saturdaymorning': 1,\n",
      "          'tv': 1,\n",
      "          'crowd': 1,\n",
      "          'leads': 1,\n",
      "          'wonder': 1,\n",
      "          'nwas': 1,\n",
      "          'rushed': 1,\n",
      "          'market': 1,\n",
      "          'combat': 1,\n",
      "          'nthe': 1,\n",
      "          'anyone': 1,\n",
      "          'read': 1,\n",
      "          'history': 1,\n",
      "          'knows': 1,\n",
      "          'concerns': 1,\n",
      "          'attempt': 1,\n",
      "          'return': 1,\n",
      "          'royal': 1,\n",
      "          'family': 1,\n",
      "          'lost': 1,\n",
      "          'overthrow': 1,\n",
      "          'romanovs': 1,\n",
      "          '1916': 1,\n",
      "          'nnot': 1,\n",
      "          'much': 1,\n",
      "          'concerned': 1,\n",
      "          'really': 1,\n",
      "          'happened': 1,\n",
      "          'nas': 1,\n",
      "          'go': 1,\n",
      "          'rent': 1,\n",
      "          'disneys': 1,\n",
      "          'candleshoe': 1,\n",
      "          'nyoull': 1,\n",
      "          'see': 1,\n",
      "          '60': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'deep': 9,\n",
      "          'rising': 9,\n",
      "          'nthe': 8,\n",
      "          'like': 5,\n",
      "          'nin': 5,\n",
      "          'film': 5,\n",
      "          'something': 3,\n",
      "          'big': 3,\n",
      "          'special': 3,\n",
      "          'since': 3,\n",
      "          'much': 3,\n",
      "          'titanic': 3,\n",
      "          'bad': 3,\n",
      "          'ship': 3,\n",
      "          'williams': 3,\n",
      "          'supposed': 3,\n",
      "          'days': 3,\n",
      "          'screen': 3,\n",
      "          'effects': 2,\n",
      "          'one': 2,\n",
      "          'luxury': 2,\n",
      "          'liner': 2,\n",
      "          'obvious': 2,\n",
      "          'thats': 2,\n",
      "          'fact': 2,\n",
      "          'level': 2,\n",
      "          'human': 2,\n",
      "          'learn': 2,\n",
      "          'monster': 2,\n",
      "          'feels': 2,\n",
      "          'tremors': 2,\n",
      "          'half': 2,\n",
      "          'really': 2,\n",
      "          'anything': 2,\n",
      "          'board': 2,\n",
      "          'cast': 2,\n",
      "          'theres': 2,\n",
      "          'treat': 2,\n",
      "          'whos': 2,\n",
      "          'kevin': 2,\n",
      "          'j': 2,\n",
      "          'oconnor': 2,\n",
      "          'wes': 2,\n",
      "          'studi': 2,\n",
      "          'sink': 2,\n",
      "          'problem': 2,\n",
      "          'time': 2,\n",
      "          'janssen': 2,\n",
      "          'primarily': 2,\n",
      "          'best': 2,\n",
      "          'known': 2,\n",
      "          'last': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'picture': 2,\n",
      "          'audiences': 2,\n",
      "          'heres': 1,\n",
      "          'chew': 1,\n",
      "          'whats': 1,\n",
      "          'favorite': 1,\n",
      "          'food': 1,\n",
      "          'cheesylooking': 1,\n",
      "          'monsters': 1,\n",
      "          'lurking': 1,\n",
      "          'bowels': 1,\n",
      "          'answer': 1,\n",
      "          'question': 1,\n",
      "          'cardboard': 1,\n",
      "          'depth': 1,\n",
      "          'fully': 1,\n",
      "          'developed': 1,\n",
      "          'character': 1,\n",
      "          'painfully': 1,\n",
      "          'generic': 1,\n",
      "          'creature': 1,\n",
      "          'feature': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'ndeep': 1,\n",
      "          'demonstrates': 1,\n",
      "          'originality': 1,\n",
      "          'vitality': 1,\n",
      "          'scripted': 1,\n",
      "          'computer': 1,\n",
      "          'considering': 1,\n",
      "          'rigid': 1,\n",
      "          'adherence': 1,\n",
      "          'expected': 1,\n",
      "          'formulas': 1,\n",
      "          'perhaps': 1,\n",
      "          'astonishing': 1,\n",
      "          'thing': 1,\n",
      "          'exceptionally': 1,\n",
      "          'high': 1,\n",
      "          'gore': 1,\n",
      "          'nnot': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'many': 1,\n",
      "          'chunks': 1,\n",
      "          'flesh': 1,\n",
      "          'nonhuman': 1,\n",
      "          'scattered': 1,\n",
      "          'directions': 1,\n",
      "          'nwe': 1,\n",
      "          'bloody': 1,\n",
      "          'trivia': 1,\n",
      "          'well': 1,\n",
      "          'sea': 1,\n",
      "          'spraypaints': 1,\n",
      "          'red': 1,\n",
      "          'drinks': 1,\n",
      "          'spits': 1,\n",
      "          'liquefied': 1,\n",
      "          'remains': 1,\n",
      "          'halfdigested': 1,\n",
      "          'leftovers': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'risings': 1,\n",
      "          'gallery': 1,\n",
      "          'grotesque': 1,\n",
      "          'images': 1,\n",
      "          'represents': 1,\n",
      "          'fun': 1,\n",
      "          'stuff': 1,\n",
      "          'love': 1,\n",
      "          'macabre': 1,\n",
      "          'doesnt': 1,\n",
      "          'non': 1,\n",
      "          'surface': 1,\n",
      "          'analyzed': 1,\n",
      "          'grafted': 1,\n",
      "          'onto': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'citing': 1,\n",
      "          'equally': 1,\n",
      "          'valid': 1,\n",
      "          'alienstitanic': 1,\n",
      "          'connection': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'directed': 1,\n",
      "          'going': 1,\n",
      "          'disaster': 1,\n",
      "          'angle': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'mayhem': 1,\n",
      "          'somehow': 1,\n",
      "          'misses': 1,\n",
      "          'marks': 1,\n",
      "          'wide': 1,\n",
      "          'margin': 1,\n",
      "          'humorous': 1,\n",
      "          'tense': 1,\n",
      "          'exciting': 1,\n",
      "          'downright': 1,\n",
      "          'boring': 1,\n",
      "          'despite': 1,\n",
      "          'length': 1,\n",
      "          'camerons': 1,\n",
      "          'current': 1,\n",
      "          'boxoffice': 1,\n",
      "          'champ': 1,\n",
      "          'longer': 1,\n",
      "          'movie': 1,\n",
      "          'nis': 1,\n",
      "          'necessary': 1,\n",
      "          'say': 1,\n",
      "          'plot': 1,\n",
      "          'nprobably': 1,\n",
      "          'easy': 1,\n",
      "          'guess': 1,\n",
      "          'ill': 1,\n",
      "          'go': 1,\n",
      "          'ahead': 1,\n",
      "          'oblige': 1,\n",
      "          'anyone': 1,\n",
      "          'wants': 1,\n",
      "          'synopsis': 1,\n",
      "          'opens': 1,\n",
      "          'introducing': 1,\n",
      "          'us': 1,\n",
      "          'gang': 1,\n",
      "          'guys': 1,\n",
      "          'mercenary': 1,\n",
      "          'addition': 1,\n",
      "          'usual': 1,\n",
      "          'psychopaths': 1,\n",
      "          'lunatics': 1,\n",
      "          'finnegan': 1,\n",
      "          'boats': 1,\n",
      "          'pilot': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'knockoff': 1,\n",
      "          'joey': 1,\n",
      "          'inept': 1,\n",
      "          'sidekick': 1,\n",
      "          'lovable': 1,\n",
      "          'funny': 1,\n",
      "          'irritating': 1,\n",
      "          'hanover': 1,\n",
      "          'mastermind': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'lightly': 1,\n",
      "          'operation': 1,\n",
      "          'ntheir': 1,\n",
      "          'goal': 1,\n",
      "          'attack': 1,\n",
      "          'cruise': 1,\n",
      "          'clean': 1,\n",
      "          'safe': 1,\n",
      "          'using': 1,\n",
      "          'illegallyacquired': 1,\n",
      "          'torpedoes': 1,\n",
      "          'reach': 1,\n",
      "          'argonautica': 1,\n",
      "          'titaniclike': 1,\n",
      "          'turned': 1,\n",
      "          'marie': 1,\n",
      "          'celeste': 1,\n",
      "          'naside': 1,\n",
      "          'beautiful': 1,\n",
      "          'jewel': 1,\n",
      "          'thief': 1,\n",
      "          'famke': 1,\n",
      "          'couple': 1,\n",
      "          'crew': 1,\n",
      "          'members': 1,\n",
      "          'reason': 1,\n",
      "          'soon': 1,\n",
      "          'becomes': 1,\n",
      "          'taken': 1,\n",
      "          'effect': 1,\n",
      "          'resemble': 1,\n",
      "          'octopus': 1,\n",
      "          'teeth': 1,\n",
      "          'eight': 1,\n",
      "          'tentacles': 1,\n",
      "          'led': 1,\n",
      "          'comprised': 1,\n",
      "          'hasbeens': 1,\n",
      "          'probablyneverwillbes': 1,\n",
      "          'two': 1,\n",
      "          'exceptions': 1,\n",
      "          'villain': 1,\n",
      "          'mohicans': 1,\n",
      "          'djimon': 1,\n",
      "          'hounsou': 1,\n",
      "          'amistads': 1,\n",
      "          'cinque': 1,\n",
      "          'nwilliams': 1,\n",
      "          'cant': 1,\n",
      "          'miss': 1,\n",
      "          'prospect': 1,\n",
      "          'hollywood': 1,\n",
      "          'fallen': 1,\n",
      "          'far': 1,\n",
      "          'favor': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'inability': 1,\n",
      "          'create': 1,\n",
      "          'charismatic': 1,\n",
      "          'interesting': 1,\n",
      "          'figure': 1,\n",
      "          'may': 1,\n",
      "          'whatever': 1,\n",
      "          'left': 1,\n",
      "          'sputtering': 1,\n",
      "          'career': 1,\n",
      "          'nfamke': 1,\n",
      "          'forever': 1,\n",
      "          'xenia': 1,\n",
      "          'onatopp': 1,\n",
      "          'goldeneye': 1,\n",
      "          'perfect': 1,\n",
      "          'bland': 1,\n",
      "          'match': 1,\n",
      "          'ngiven': 1,\n",
      "          'limited': 1,\n",
      "          'acting': 1,\n",
      "          'abilities': 1,\n",
      "          'likely': 1,\n",
      "          'chosen': 1,\n",
      "          'part': 1,\n",
      "          'basis': 1,\n",
      "          'physical': 1,\n",
      "          'attributes': 1,\n",
      "          'bra': 1,\n",
      "          'defeats': 1,\n",
      "          'purpose': 1,\n",
      "          'wet': 1,\n",
      "          'teeshirt': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'entirely': 1,\n",
      "          'exhibits': 1,\n",
      "          'appeal': 1,\n",
      "          'fingernails': 1,\n",
      "          'scratching': 1,\n",
      "          'blackboard': 1,\n",
      "          'nthese': 1,\n",
      "          'becoming': 1,\n",
      "          'difficult': 1,\n",
      "          'impress': 1,\n",
      "          'computergenerated': 1,\n",
      "          'nthis': 1,\n",
      "          'lesson': 1,\n",
      "          'writerdirector': 1,\n",
      "          'stephen': 1,\n",
      "          'sommers': 1,\n",
      "          'previously': 1,\n",
      "          'helmed': 1,\n",
      "          'liveaction': 1,\n",
      "          'jungle': 1,\n",
      "          'book': 1,\n",
      "          'needs': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'viewers': 1,\n",
      "          'astounded': 1,\n",
      "          'mere': 1,\n",
      "          'spectacle': 1,\n",
      "          'seeing': 1,\n",
      "          'imposing': 1,\n",
      "          'past': 1,\n",
      "          'nnow': 1,\n",
      "          'moviegoers': 1,\n",
      "          'looking': 1,\n",
      "          'sophistication': 1,\n",
      "          'visuals': 1,\n",
      "          'wellincorporated': 1,\n",
      "          'impossible': 1,\n",
      "          'tell': 1,\n",
      "          'end': 1,\n",
      "          'reality': 1,\n",
      "          'begins': 1,\n",
      "          'everything': 1,\n",
      "          'artificial': 1,\n",
      "          'unconvincing': 1,\n",
      "          'fundamental': 1,\n",
      "          'faced': 1,\n",
      "          'isnt': 1,\n",
      "          'idiotic': 1,\n",
      "          'monotony': 1,\n",
      "          'individual': 1,\n",
      "          'poor': 1,\n",
      "          'quality': 1,\n",
      "          'entire': 1,\n",
      "          'bankrupt': 1,\n",
      "          'genre': 1,\n",
      "          'although': 1,\n",
      "          'fair': 1,\n",
      "          'particularly': 1,\n",
      "          'entry': 1,\n",
      "          'neven': 1,\n",
      "          'sunk': 1,\n",
      "          'sight': 1,\n",
      "          'knowledgeable': 1,\n",
      "          'viewer': 1,\n",
      "          'knows': 1,\n",
      "          'wont': 1,\n",
      "          'kind': 1,\n",
      "          'nlike': 1,\n",
      "          'slimy': 1,\n",
      "          'slithering': 1,\n",
      "          'things': 1,\n",
      "          'inhabit': 1,\n",
      "          'air': 1,\n",
      "          'vents': 1,\n",
      "          'pipes': 1,\n",
      "          'movies': 1,\n",
      "          'waiting': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'ambush': 1,\n",
      "          'nand': 1,\n",
      "          'consideration': 1,\n",
      "          'unlike': 1,\n",
      "          'truly': 1,\n",
      "          'horrifying': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 7,\n",
      "          'invisible': 6,\n",
      "          'man': 6,\n",
      "          'us': 6,\n",
      "          'nhe': 5,\n",
      "          'beacon': 4,\n",
      "          'verhoven': 4,\n",
      "          'like': 4,\n",
      "          'movie': 4,\n",
      "          'place': 4,\n",
      "          'nand': 4,\n",
      "          'novel': 3,\n",
      "          'actors': 3,\n",
      "          'shue': 3,\n",
      "          'effects': 3,\n",
      "          'see': 3,\n",
      "          'first': 3,\n",
      "          'nbut': 3,\n",
      "          'made': 3,\n",
      "          'something': 3,\n",
      "          'hollow': 3,\n",
      "          'nit': 3,\n",
      "          'nin': 3,\n",
      "          'make': 3,\n",
      "          'kevin': 2,\n",
      "          'paul': 2,\n",
      "          'amazing': 2,\n",
      "          'special': 2,\n",
      "          'enough': 2,\n",
      "          'time': 2,\n",
      "          'secret': 2,\n",
      "          'caine': 2,\n",
      "          'invisibility': 2,\n",
      "          'ncaine': 2,\n",
      "          'bad': 2,\n",
      "          'thing': 2,\n",
      "          'couple': 2,\n",
      "          'nthough': 2,\n",
      "          'actually': 2,\n",
      "          'verhovens': 2,\n",
      "          'imagination': 2,\n",
      "          'doesnt': 2,\n",
      "          'reason': 2,\n",
      "          'nbeing': 2,\n",
      "          'gives': 2,\n",
      "          'without': 2,\n",
      "          'society': 2,\n",
      "          'truly': 2,\n",
      "          'depth': 2,\n",
      "          'book': 2,\n",
      "          'since': 2,\n",
      "          'talent': 2,\n",
      "          'seen': 2,\n",
      "          'one': 2,\n",
      "          'way': 2,\n",
      "          'nthere': 2,\n",
      "          'nwe': 2,\n",
      "          'slowly': 2,\n",
      "          'blood': 2,\n",
      "          'great': 2,\n",
      "          'much': 2,\n",
      "          'never': 2,\n",
      "          'anything': 2,\n",
      "          'films': 2,\n",
      "          'nits': 2,\n",
      "          'etc': 2,\n",
      "          'adaptation': 1,\n",
      "          'h': 1,\n",
      "          'g': 1,\n",
      "          'wells': 1,\n",
      "          'acclaimed': 1,\n",
      "          'elizabeth': 1,\n",
      "          'director': 1,\n",
      "          'nthat': 1,\n",
      "          'plus': 1,\n",
      "          'quick': 1,\n",
      "          'demonstration': 1,\n",
      "          'trailer': 1,\n",
      "          'lure': 1,\n",
      "          'theatre': 1,\n",
      "          'problem': 1,\n",
      "          'keep': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'anyone': 1,\n",
      "          'would': 1,\n",
      "          'second': 1,\n",
      "          'nworking': 1,\n",
      "          'top': 1,\n",
      "          'military': 1,\n",
      "          'project': 1,\n",
      "          'sebastian': 1,\n",
      "          'eccentric': 1,\n",
      "          'genius': 1,\n",
      "          'calls': 1,\n",
      "          'god': 1,\n",
      "          'discovered': 1,\n",
      "          'two': 1,\n",
      "          'faces': 1,\n",
      "          'completed': 1,\n",
      "          'nnow': 1,\n",
      "          'next': 1,\n",
      "          'logical': 1,\n",
      "          'step': 1,\n",
      "          'human': 1,\n",
      "          'volunteers': 1,\n",
      "          'risky': 1,\n",
      "          'experiment': 1,\n",
      "          'goes': 1,\n",
      "          'wrong': 1,\n",
      "          'nwhile': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'linda': 1,\n",
      "          'elisabeth': 1,\n",
      "          'desperately': 1,\n",
      "          'tries': 1,\n",
      "          'find': 1,\n",
      "          'return': 1,\n",
      "          'normal': 1,\n",
      "          'learns': 1,\n",
      "          'prison': 1,\n",
      "          'superpower': 1,\n",
      "          'thats': 1,\n",
      "          'unexpected': 1,\n",
      "          'sideeffect': 1,\n",
      "          'drug': 1,\n",
      "          'sends': 1,\n",
      "          'careening': 1,\n",
      "          'paranoid': 1,\n",
      "          'megalomania': 1,\n",
      "          'naturally': 1,\n",
      "          'given': 1,\n",
      "          'modest': 1,\n",
      "          'superpowers': 1,\n",
      "          'survive': 1,\n",
      "          'immolation': 1,\n",
      "          'flame': 1,\n",
      "          'thrower': 1,\n",
      "          'explosion': 1,\n",
      "          'quart': 1,\n",
      "          'nitroglycerine': 1,\n",
      "          'nsoon': 1,\n",
      "          'every': 1,\n",
      "          'sense': 1,\n",
      "          'decency': 1,\n",
      "          'forgotten': 1,\n",
      "          'little': 1,\n",
      "          'intelligence': 1,\n",
      "          'left': 1,\n",
      "          'disappears': 1,\n",
      "          'looses': 1,\n",
      "          'control': 1,\n",
      "          'turns': 1,\n",
      "          'alienripoff': 1,\n",
      "          'walking': 1,\n",
      "          'half': 1,\n",
      "          'finished': 1,\n",
      "          'terminator': 1,\n",
      "          'spooking': 1,\n",
      "          'scaring': 1,\n",
      "          'killing': 1,\n",
      "          'everybody': 1,\n",
      "          'based': 1,\n",
      "          'called': 1,\n",
      "          'title': 1,\n",
      "          'ironically': 1,\n",
      "          'changed': 1,\n",
      "          'sums': 1,\n",
      "          'nicely': 1,\n",
      "          'nthis': 1,\n",
      "          'silly': 1,\n",
      "          'production': 1,\n",
      "          'nlaughable': 1,\n",
      "          'napparently': 1,\n",
      "          'stretch': 1,\n",
      "          'far': 1,\n",
      "          'nfor': 1,\n",
      "          'worthwhile': 1,\n",
      "          'become': 1,\n",
      "          'case': 1,\n",
      "          'girls': 1,\n",
      "          'locker': 1,\n",
      "          'room': 1,\n",
      "          'undetected': 1,\n",
      "          'primitive': 1,\n",
      "          'schoolboy': 1,\n",
      "          'mentality': 1,\n",
      "          'eventually': 1,\n",
      "          'kills': 1,\n",
      "          'opportunity': 1,\n",
      "          'want': 1,\n",
      "          'influenced': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'illusion': 1,\n",
      "          'life': 1,\n",
      "          'consequences': 1,\n",
      "          'nature': 1,\n",
      "          'nall': 1,\n",
      "          'true': 1,\n",
      "          'horror': 1,\n",
      "          'gone': 1,\n",
      "          'remain': 1,\n",
      "          'seat': 1,\n",
      "          'use': 1,\n",
      "          'power': 1,\n",
      "          'voyeuristically': 1,\n",
      "          'modernization': 1,\n",
      "          'words': 1,\n",
      "          'dehumanization': 1,\n",
      "          'stop': 1,\n",
      "          'becomes': 1,\n",
      "          'rapist': 1,\n",
      "          'course': 1,\n",
      "          'murderer': 1,\n",
      "          'nyoull': 1,\n",
      "          'start': 1,\n",
      "          'wondering': 1,\n",
      "          'found': 1,\n",
      "          'nshues': 1,\n",
      "          'barely': 1,\n",
      "          'josh': 1,\n",
      "          'brolin': 1,\n",
      "          'underused': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'suffer': 1,\n",
      "          'mostly': 1,\n",
      "          'lack': 1,\n",
      "          'nkevin': 1,\n",
      "          'performs': 1,\n",
      "          'gracefully': 1,\n",
      "          'nhis': 1,\n",
      "          'face': 1,\n",
      "          'part': 1,\n",
      "          'exists': 1,\n",
      "          'disembodied': 1,\n",
      "          'voice': 1,\n",
      "          'times': 1,\n",
      "          'presence': 1,\n",
      "          'saves': 1,\n",
      "          'completely': 1,\n",
      "          'embarrassing': 1,\n",
      "          'end': 1,\n",
      "          'probably': 1,\n",
      "          'best': 1,\n",
      "          'technical': 1,\n",
      "          'achievement': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'absolutely': 1,\n",
      "          'observe': 1,\n",
      "          'layers': 1,\n",
      "          'skin': 1,\n",
      "          'muscle': 1,\n",
      "          'tissue': 1,\n",
      "          'bone': 1,\n",
      "          'peeled': 1,\n",
      "          'away': 1,\n",
      "          'body': 1,\n",
      "          'rendered': 1,\n",
      "          'beating': 1,\n",
      "          'heart': 1,\n",
      "          'inflating': 1,\n",
      "          'lungs': 1,\n",
      "          'veins': 1,\n",
      "          'pulsing': 1,\n",
      "          'newlypumped': 1,\n",
      "          'inventive': 1,\n",
      "          'shots': 1,\n",
      "          'smoke': 1,\n",
      "          'fire': 1,\n",
      "          'air': 1,\n",
      "          'water': 1,\n",
      "          'scenes': 1,\n",
      "          'worth': 1,\n",
      "          'attending': 1,\n",
      "          'nwhat': 1,\n",
      "          'disturbing': 1,\n",
      "          'talented': 1,\n",
      "          'grand': 1,\n",
      "          'budget': 1,\n",
      "          'could': 1,\n",
      "          'npretty': 1,\n",
      "          'jan': 1,\n",
      "          'de': 1,\n",
      "          'bont': 1,\n",
      "          'twister': 1,\n",
      "          'haunting': 1,\n",
      "          'extraordinary': 1,\n",
      "          'responsible': 1,\n",
      "          'several': 1,\n",
      "          'good': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'incredibly': 1,\n",
      "          'showgirls': 1,\n",
      "          'total': 1,\n",
      "          'recall': 1,\n",
      "          'fits': 1,\n",
      "          'perfectly': 1,\n",
      "          'collection': 1,\n",
      "          'better': 1,\n",
      "          'worse': 1,\n",
      "          'average': 1,\n",
      "          'proves': 1,\n",
      "          'incapable': 1,\n",
      "          'handling': 1,\n",
      "          'complex': 1,\n",
      "          'issues': 1,\n",
      "          'instead': 1,\n",
      "          'chills': 1,\n",
      "          'inserts': 1,\n",
      "          'trademarks': 1,\n",
      "          'stupid': 1,\n",
      "          'dialogue': 1,\n",
      "          'lots': 1,\n",
      "          'dull': 1,\n",
      "          'action': 1,\n",
      "          'naked': 1,\n",
      "          'bodies': 1,\n",
      "          'even': 1,\n",
      "          'throws': 1,\n",
      "          'worst': 1,\n",
      "          'clich': 1,\n",
      "          'advancing': 1,\n",
      "          'fireball': 1,\n",
      "          'villain': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'dead': 1,\n",
      "          'tops': 1,\n",
      "          'whole': 1,\n",
      "          'ridiculous': 1,\n",
      "          'endings': 1,\n",
      "          'year': 1,\n",
      "          'youll': 1,\n",
      "          'screaming': 1,\n",
      "          'nooooo': 1,\n",
      "          'attempt': 1,\n",
      "          'run': 1,\n",
      "          'towards': 1,\n",
      "          'exit': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'ask': 1,\n",
      "          'answer': 1,\n",
      "          'simple': 1,\n",
      "          'hollywood': 1,\n",
      "          'producing': 1,\n",
      "          'machine': 1,\n",
      "          'business': 1,\n",
      "          'moviemaking': 1,\n",
      "          'money': 1,\n",
      "          'telling': 1,\n",
      "          'stories': 1,\n",
      "          'marketing': 1,\n",
      "          'transporting': 1,\n",
      "          'different': 1,\n",
      "          'dazzle': 1,\n",
      "          'magic': 1,\n",
      "          'cleverness': 1,\n",
      "          'nto': 1,\n",
      "          'care': 1,\n",
      "          'think': 1,\n",
      "          'feel': 1,\n",
      "          'nverhoven': 1,\n",
      "          'obviously': 1,\n",
      "          'missed': 1,\n",
      "          'point': 1,\n",
      "          'proof': 1,\n",
      "          'flesh': 1,\n",
      "          'bones': 1,\n",
      "          'soul': 1,\n",
      "          'na': 1,\n",
      "          'void': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'murphy': 16,\n",
      "          'harlem': 8,\n",
      "          'nights': 7,\n",
      "          'movie': 7,\n",
      "          'n': 7,\n",
      "          'nthey': 5,\n",
      "          'get': 5,\n",
      "          'character': 5,\n",
      "          'murphys': 4,\n",
      "          'gon': 4,\n",
      "          'na': 4,\n",
      "          'eddie': 3,\n",
      "          'time': 3,\n",
      "          'think': 3,\n",
      "          'good': 3,\n",
      "          'film': 3,\n",
      "          'nand': 3,\n",
      "          'minutes': 3,\n",
      "          'nfor': 3,\n",
      "          'role': 3,\n",
      "          'hall': 3,\n",
      "          'movies': 2,\n",
      "          'blame': 2,\n",
      "          'fails': 2,\n",
      "          'nbut': 2,\n",
      "          'nheres': 2,\n",
      "          'drama': 2,\n",
      "          'best': 2,\n",
      "          'ive': 2,\n",
      "          'nthe': 2,\n",
      "          'even': 2,\n",
      "          'nmurphys': 2,\n",
      "          'script': 2,\n",
      "          'makes': 2,\n",
      "          'first': 2,\n",
      "          'gets': 2,\n",
      "          'cast': 2,\n",
      "          'della': 2,\n",
      "          'reese': 2,\n",
      "          '3': 2,\n",
      "          'women': 2,\n",
      "          'nmurphy': 2,\n",
      "          'life': 2,\n",
      "          'another': 2,\n",
      "          'spiffy': 2,\n",
      "          'plot': 2,\n",
      "          'sting': 2,\n",
      "          'fun': 2,\n",
      "          'little': 2,\n",
      "          'nin': 2,\n",
      "          'much': 2,\n",
      "          'ten': 2,\n",
      "          'lot': 1,\n",
      "          'riding': 1,\n",
      "          'nas': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'executive': 1,\n",
      "          'producer': 1,\n",
      "          'star': 1,\n",
      "          'shoulder': 1,\n",
      "          'hell': 1,\n",
      "          'receive': 1,\n",
      "          'credit': 1,\n",
      "          'succeeds': 1,\n",
      "          'nshould': 1,\n",
      "          'sacrifice': 1,\n",
      "          'hardearned': 1,\n",
      "          'cash': 1,\n",
      "          'support': 1,\n",
      "          'risky': 1,\n",
      "          'gamble': 1,\n",
      "          'nwell': 1,\n",
      "          'depends': 1,\n",
      "          'trust': 1,\n",
      "          'thinks': 1,\n",
      "          'audience': 1,\n",
      "          'expecting': 1,\n",
      "          'sexy': 1,\n",
      "          'funny': 1,\n",
      "          'ni': 1,\n",
      "          'done': 1,\n",
      "          'paramount': 1,\n",
      "          'radio': 1,\n",
      "          'network': 1,\n",
      "          'charmless': 1,\n",
      "          'unoriginal': 1,\n",
      "          'disappointing': 1,\n",
      "          'almost': 1,\n",
      "          'without': 1,\n",
      "          'question': 1,\n",
      "          'worst': 1,\n",
      "          'actors': 1,\n",
      "          'career': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'defense': 1,\n",
      "          'guess': 1,\n",
      "          'whos': 1,\n",
      "          'problem': 1,\n",
      "          'direction': 1,\n",
      "          'fairly': 1,\n",
      "          'looking': 1,\n",
      "          'nno': 1,\n",
      "          'project': 1,\n",
      "          'probably': 1,\n",
      "          'doomed': 1,\n",
      "          'cameras': 1,\n",
      "          'rolled': 1,\n",
      "          'awful': 1,\n",
      "          'culprit': 1,\n",
      "          'nlets': 1,\n",
      "          'count': 1,\n",
      "          'mistakes': 1,\n",
      "          'attempt': 1,\n",
      "          'screenwriting': 1,\n",
      "          '1': 1,\n",
      "          'shatters': 1,\n",
      "          'record': 1,\n",
      "          'profanity': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nyes': 1,\n",
      "          'outdoes': 1,\n",
      "          'work': 1,\n",
      "          'raw': 1,\n",
      "          'npractically': 1,\n",
      "          'every': 1,\n",
      "          'line': 1,\n",
      "          'dialogue': 1,\n",
      "          'contains': 1,\n",
      "          'least': 1,\n",
      "          'one': 1,\n",
      "          'four': 1,\n",
      "          'letter': 1,\n",
      "          'word': 1,\n",
      "          '15': 1,\n",
      "          'irritating': 1,\n",
      "          '2': 1,\n",
      "          'wastes': 1,\n",
      "          'talents': 1,\n",
      "          'fine': 1,\n",
      "          'nrichard': 1,\n",
      "          'pryor': 1,\n",
      "          'redd': 1,\n",
      "          'foxx': 1,\n",
      "          'michael': 1,\n",
      "          'lerner': 1,\n",
      "          'face': 1,\n",
      "          'impossible': 1,\n",
      "          'task': 1,\n",
      "          'carving': 1,\n",
      "          'credible': 1,\n",
      "          'characters': 1,\n",
      "          'riddled': 1,\n",
      "          'stereotypes': 1,\n",
      "          'neach': 1,\n",
      "          'shines': 1,\n",
      "          'occasionally': 1,\n",
      "          'basically': 1,\n",
      "          'performers': 1,\n",
      "          'stuck': 1,\n",
      "          'bad': 1,\n",
      "          'vehicle': 1,\n",
      "          'demeans': 1,\n",
      "          'depicting': 1,\n",
      "          'solely': 1,\n",
      "          'sexual': 1,\n",
      "          'objects': 1,\n",
      "          'pawns': 1,\n",
      "          'power': 1,\n",
      "          'struggles': 1,\n",
      "          'men': 1,\n",
      "          'admitted': 1,\n",
      "          'interviews': 1,\n",
      "          'weary': 1,\n",
      "          'private': 1,\n",
      "          'really': 1,\n",
      "          'neither': 1,\n",
      "          'puts': 1,\n",
      "          'bitter': 1,\n",
      "          'feelings': 1,\n",
      "          '000': 1,\n",
      "          'screens': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'matter': 1,\n",
      "          'altogether': 1,\n",
      "          'nyoure': 1,\n",
      "          'forced': 1,\n",
      "          'swallow': 1,\n",
      "          'pretty': 1,\n",
      "          'gruesome': 1,\n",
      "          'stuff': 1,\n",
      "          'instance': 1,\n",
      "          'punches': 1,\n",
      "          'stomach': 1,\n",
      "          'shoots': 1,\n",
      "          'jasmine': 1,\n",
      "          'guy': 1,\n",
      "          'head': 1,\n",
      "          'nthis': 1,\n",
      "          'meanspirited': 1,\n",
      "          'folks': 1,\n",
      "          'nlovely': 1,\n",
      "          'newcomer': 1,\n",
      "          'lela': 1,\n",
      "          'rochon': 1,\n",
      "          'easy': 1,\n",
      "          'common': 1,\n",
      "          'whore': 1,\n",
      "          'doesnt': 1,\n",
      "          'scenes': 1,\n",
      "          'nthank': 1,\n",
      "          'god': 1,\n",
      "          'might': 1,\n",
      "          'run': 1,\n",
      "          'bulldozer': 1,\n",
      "          '4': 1,\n",
      "          'written': 1,\n",
      "          'perhaps': 1,\n",
      "          'blandest': 1,\n",
      "          'date': 1,\n",
      "          'loveable': 1,\n",
      "          'charisma': 1,\n",
      "          'emerges': 1,\n",
      "          'twice': 1,\n",
      "          'would': 1,\n",
      "          'rather': 1,\n",
      "          'give': 1,\n",
      "          'wardrobe': 1,\n",
      "          'personality': 1,\n",
      "          'nsometimes': 1,\n",
      "          'seems': 1,\n",
      "          'made': 1,\n",
      "          'could': 1,\n",
      "          'wear': 1,\n",
      "          'fancy': 1,\n",
      "          'suits': 1,\n",
      "          'look': 1,\n",
      "          'debonair': 1,\n",
      "          '5': 1,\n",
      "          'shameless': 1,\n",
      "          'ripoff': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'make': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'something': 1,\n",
      "          'original': 1,\n",
      "          'tale': 1,\n",
      "          'warring': 1,\n",
      "          'nightclub': 1,\n",
      "          'owners': 1,\n",
      "          'circa': 1,\n",
      "          '1938': 1,\n",
      "          'add': 1,\n",
      "          'anything': 1,\n",
      "          'new': 1,\n",
      "          'formula': 1,\n",
      "          '6': 1,\n",
      "          'laughs': 1,\n",
      "          'stuttering': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'comedy': 1,\n",
      "          'digging': 1,\n",
      "          'deep': 1,\n",
      "          'resorts': 1,\n",
      "          'ridiculing': 1,\n",
      "          'handicapped': 1,\n",
      "          '7': 1,\n",
      "          'idea': 1,\n",
      "          'scene': 1,\n",
      "          'apologizes': 1,\n",
      "          'shooting': 1,\n",
      "          'reeses': 1,\n",
      "          'toe': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'shows': 1,\n",
      "          'promise': 1,\n",
      "          'imagination': 1,\n",
      "          'screenwriter': 1,\n",
      "          'fairness': 1,\n",
      "          'however': 1,\n",
      "          'rays': 1,\n",
      "          'sunshine': 1,\n",
      "          'manage': 1,\n",
      "          'break': 1,\n",
      "          'gloomy': 1,\n",
      "          'cloud': 1,\n",
      "          'surrounding': 1,\n",
      "          'ndanny': 1,\n",
      "          'aiello': 1,\n",
      "          'watch': 1,\n",
      "          'dirty': 1,\n",
      "          'cop': 1,\n",
      "          'take': 1,\n",
      "          'naiello': 1,\n",
      "          'stands': 1,\n",
      "          'large': 1,\n",
      "          'ensemble': 1,\n",
      "          'obviously': 1,\n",
      "          'relishes': 1,\n",
      "          'opportunity': 1,\n",
      "          'play': 1,\n",
      "          'nasty': 1,\n",
      "          'racist': 1,\n",
      "          'detective': 1,\n",
      "          'mob': 1,\n",
      "          'ties': 1,\n",
      "          'naiellos': 1,\n",
      "          'zesty': 1,\n",
      "          'performance': 1,\n",
      "          'gives': 1,\n",
      "          'needed': 1,\n",
      "          'spice': 1,\n",
      "          'nanother': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'arsenio': 1,\n",
      "          'hilarious': 1,\n",
      "          'showstopping': 1,\n",
      "          'cameo': 1,\n",
      "          'crybaby': 1,\n",
      "          'gangster': 1,\n",
      "          'virtually': 1,\n",
      "          'steals': 1,\n",
      "          'spotlight': 1,\n",
      "          'fact': 1,\n",
      "          'halls': 1,\n",
      "          'screen': 1,\n",
      "          'funniest': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'completely': 1,\n",
      "          'irrelevant': 1,\n",
      "          'given': 1,\n",
      "          'bigger': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'already': 1,\n",
      "          'mentioned': 1,\n",
      "          'didnt': 1,\n",
      "          'care': 1,\n",
      "          'admit': 1,\n",
      "          'love': 1,\n",
      "          'neckties': 1,\n",
      "          'simply': 1,\n",
      "          'spectacularalmost': 1,\n",
      "          'worth': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bob': 8,\n",
      "          'duchovny': 5,\n",
      "          'romantic': 4,\n",
      "          'nthe': 4,\n",
      "          'david': 3,\n",
      "          'grace': 3,\n",
      "          'driver': 3,\n",
      "          'comes': 3,\n",
      "          'cast': 3,\n",
      "          'movie': 3,\n",
      "          'marty': 3,\n",
      "          'belushi': 3,\n",
      "          'nat': 2,\n",
      "          'something': 2,\n",
      "          'xfiles': 2,\n",
      "          'loses': 2,\n",
      "          'wife': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'heart': 2,\n",
      "          'transplant': 2,\n",
      "          'gets': 2,\n",
      "          'seem': 2,\n",
      "          'hours': 2,\n",
      "          'return': 2,\n",
      "          'boy': 2,\n",
      "          'girl': 2,\n",
      "          'generate': 2,\n",
      "          'fastforward': 2,\n",
      "          'scenes': 2,\n",
      "          'playing': 2,\n",
      "          'supporting': 2,\n",
      "          'oconnor': 2,\n",
      "          'graces': 2,\n",
      "          'nwhen': 2,\n",
      "          'martys': 2,\n",
      "          'poker': 2,\n",
      "          'best': 2,\n",
      "          'friend': 2,\n",
      "          'megan': 2,\n",
      "          'james': 2,\n",
      "          'joe': 2,\n",
      "          'see': 2,\n",
      "          'one': 1,\n",
      "          'demanded': 1,\n",
      "          'comedy': 1,\n",
      "          'last': 1,\n",
      "          'magnetism': 1,\n",
      "          'comedic': 1,\n",
      "          'brilliance': 1,\n",
      "          'mined': 1,\n",
      "          'resources': 1,\n",
      "          'choice': 1,\n",
      "          'may': 1,\n",
      "          'plot': 1,\n",
      "          'could': 1,\n",
      "          'fodder': 1,\n",
      "          'valentines': 1,\n",
      "          'day': 1,\n",
      "          'episode': 1,\n",
      "          'nbob': 1,\n",
      "          'rueland': 1,\n",
      "          'elizabeth': 1,\n",
      "          'joely': 1,\n",
      "          'richardson': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'time': 1,\n",
      "          'briggs': 1,\n",
      "          'minnie': 1,\n",
      "          'hospital': 1,\n",
      "          'waiting': 1,\n",
      "          'ngrace': 1,\n",
      "          'elizabeths': 1,\n",
      "          'leads': 1,\n",
      "          'nits': 1,\n",
      "          'equivalent': 1,\n",
      "          'horror': 1,\n",
      "          'films': 1,\n",
      "          'someone': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'driven': 1,\n",
      "          'slaughter': 1,\n",
      "          'people': 1,\n",
      "          'nfour': 1,\n",
      "          'writers': 1,\n",
      "          'credited': 1,\n",
      "          'contributing': 1,\n",
      "          'story': 1,\n",
      "          'nthat': 1,\n",
      "          'doesnt': 1,\n",
      "          'possible': 1,\n",
      "          'ndespite': 1,\n",
      "          'solid': 1,\n",
      "          'two': 1,\n",
      "          'long': 1,\n",
      "          'adds': 1,\n",
      "          'little': 1,\n",
      "          'meets': 1,\n",
      "          'formula': 1,\n",
      "          'result': 1,\n",
      "          'terribly': 1,\n",
      "          'tedious': 1,\n",
      "          'slowmoving': 1,\n",
      "          'nduchovny': 1,\n",
      "          'unable': 1,\n",
      "          'sparks': 1,\n",
      "          'kept': 1,\n",
      "          'wishing': 1,\n",
      "          'button': 1,\n",
      "          'move': 1,\n",
      "          'along': 1,\n",
      "          'nsince': 1,\n",
      "          'managed': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'roles': 1,\n",
      "          'blame': 1,\n",
      "          'nhes': 1,\n",
      "          'element': 1,\n",
      "          'without': 1,\n",
      "          'manufactured': 1,\n",
      "          'static': 1,\n",
      "          'sexual': 1,\n",
      "          'tension': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'ive': 1,\n",
      "          'always': 1,\n",
      "          'thought': 1,\n",
      "          'relationship': 1,\n",
      "          'mulder': 1,\n",
      "          'scully': 1,\n",
      "          'siblinglike': 1,\n",
      "          'hotandbothered': 1,\n",
      "          'ntheres': 1,\n",
      "          'makes': 1,\n",
      "          'uneasy': 1,\n",
      "          'nregardless': 1,\n",
      "          'role': 1,\n",
      "          'hes': 1,\n",
      "          'weirdo': 1,\n",
      "          'redeeming': 1,\n",
      "          'quality': 1,\n",
      "          'hilarious': 1,\n",
      "          'circle': 1,\n",
      "          'friends': 1,\n",
      "          'relatives': 1,\n",
      "          'around': 1,\n",
      "          'constantly': 1,\n",
      "          'matchmaker': 1,\n",
      "          'laughs': 1,\n",
      "          'ncarroll': 1,\n",
      "          'grandfather': 1,\n",
      "          'oreilly': 1,\n",
      "          'restaurant': 1,\n",
      "          'immediately': 1,\n",
      "          'begins': 1,\n",
      "          'quizzing': 1,\n",
      "          'marital': 1,\n",
      "          'status': 1,\n",
      "          'discovers': 1,\n",
      "          'widower': 1,\n",
      "          'invites': 1,\n",
      "          'join': 1,\n",
      "          'game': 1,\n",
      "          'introduces': 1,\n",
      "          'declaration': 1,\n",
      "          'nhis': 1,\n",
      "          'dead': 1,\n",
      "          'buddies': 1,\n",
      "          'desperate': 1,\n",
      "          'find': 1,\n",
      "          'mate': 1,\n",
      "          'greet': 1,\n",
      "          'enthusiastically': 1,\n",
      "          'hear': 1,\n",
      "          'news': 1,\n",
      "          'nalso': 1,\n",
      "          'funny': 1,\n",
      "          'bonnie': 1,\n",
      "          'hunt': 1,\n",
      "          'megans': 1,\n",
      "          'husband': 1,\n",
      "          'nmarried': 1,\n",
      "          'children': 1,\n",
      "          'provide': 1,\n",
      "          'useful': 1,\n",
      "          'counterpoint': 1,\n",
      "          'showing': 1,\n",
      "          'mundane': 1,\n",
      "          'results': 1,\n",
      "          'romance': 1,\n",
      "          'nalthough': 1,\n",
      "          'rare': 1,\n",
      "          'premieres': 1,\n",
      "          'theater': 1,\n",
      "          'delivers': 1,\n",
      "          'lines': 1,\n",
      "          'great': 1,\n",
      "          'comic': 1,\n",
      "          'skill': 1,\n",
      "          'nrounding': 1,\n",
      "          'impressive': 1,\n",
      "          'alan': 1,\n",
      "          'grier': 1,\n",
      "          'bobs': 1,\n",
      "          'robert': 1,\n",
      "          'loggia': 1,\n",
      "          'brotherinlaw': 1,\n",
      "          'angelo': 1,\n",
      "          'nin': 1,\n",
      "          'lead': 1,\n",
      "          'actors': 1,\n",
      "          'lived': 1,\n",
      "          'standards': 1,\n",
      "          'set': 1,\n",
      "          'rest': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'compelled': 1,\n",
      "          'watch': 1,\n",
      "          'video': 1,\n",
      "          'carroll': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'urban': 7,\n",
      "          'legend': 7,\n",
      "          'scream': 5,\n",
      "          'great': 4,\n",
      "          'one': 4,\n",
      "          'silvio': 3,\n",
      "          'slasher': 3,\n",
      "          'makes': 3,\n",
      "          'movie': 3,\n",
      "          'another': 3,\n",
      "          'im': 2,\n",
      "          'horta': 2,\n",
      "          'wrote': 2,\n",
      "          'success': 2,\n",
      "          'nthe': 2,\n",
      "          'dialogue': 2,\n",
      "          'little': 2,\n",
      "          'supposed': 2,\n",
      "          'said': 2,\n",
      "          'know': 2,\n",
      "          'movies': 2,\n",
      "          'dont': 2,\n",
      "          'cutouts': 2,\n",
      "          'none': 2,\n",
      "          'reason': 2,\n",
      "          'rebecca': 2,\n",
      "          'gayheart': 2,\n",
      "          'film': 2,\n",
      "          'hes': 2,\n",
      "          'sure': 1,\n",
      "          'guessing': 1,\n",
      "          'seems': 1,\n",
      "          'may': 1,\n",
      "          'time': 1,\n",
      "          'write': 1,\n",
      "          'second': 1,\n",
      "          'draft': 1,\n",
      "          'nseriously': 1,\n",
      "          'ideaa': 1,\n",
      "          'psycho': 1,\n",
      "          'bumping': 1,\n",
      "          'people': 1,\n",
      "          'style': 1,\n",
      "          'legendsis': 1,\n",
      "          'wish': 1,\n",
      "          'could': 1,\n",
      "          'pulled': 1,\n",
      "          'first': 1,\n",
      "          'sign': 1,\n",
      "          'trouble': 1,\n",
      "          'comes': 1,\n",
      "          'painfully': 1,\n",
      "          'insipid': 1,\n",
      "          'nan': 1,\n",
      "          'example': 1,\n",
      "          'car': 1,\n",
      "          'crash': 1,\n",
      "          'mustve': 1,\n",
      "          'awful': 1,\n",
      "          'neveryone': 1,\n",
      "          'involved': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'writer': 1,\n",
      "          'intended': 1,\n",
      "          'something': 1,\n",
      "          'airy': 1,\n",
      "          'figured': 1,\n",
      "          'ni': 1,\n",
      "          'isnt': 1,\n",
      "          'lot': 1,\n",
      "          'characterization': 1,\n",
      "          'mind': 1,\n",
      "          'cardboard': 1,\n",
      "          'please': 1,\n",
      "          'let': 1,\n",
      "          'damn': 1,\n",
      "          'bland': 1,\n",
      "          'like': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'diva': 1,\n",
      "          'become': 1,\n",
      "          'treasured': 1,\n",
      "          'feature': 1,\n",
      "          'charismatic': 1,\n",
      "          'actors': 1,\n",
      "          'playing': 1,\n",
      "          'interesting': 1,\n",
      "          'characters': 1,\n",
      "          'naside': 1,\n",
      "          'jared': 1,\n",
      "          'leto': 1,\n",
      "          'joshua': 1,\n",
      "          'jackson': 1,\n",
      "          'arent': 1,\n",
      "          'screen': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'grade': 1,\n",
      "          'nalicia': 1,\n",
      "          'witt': 1,\n",
      "          'shows': 1,\n",
      "          'acerbity': 1,\n",
      "          'wit': 1,\n",
      "          'displayed': 1,\n",
      "          'cybill': 1,\n",
      "          'actually': 1,\n",
      "          'looks': 1,\n",
      "          'unattractive': 1,\n",
      "          'mention': 1,\n",
      "          'dumb': 1,\n",
      "          'post': 1,\n",
      "          '34': 1,\n",
      "          'robert': 1,\n",
      "          'englund': 1,\n",
      "          'cruises': 1,\n",
      "          'auto': 1,\n",
      "          'pilot': 1,\n",
      "          'ngood': 1,\n",
      "          'thing': 1,\n",
      "          'brad': 1,\n",
      "          'dourif': 1,\n",
      "          'wait': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          '_and_': 1,\n",
      "          'redoing': 1,\n",
      "          'goodnatured': 1,\n",
      "          'stuttering': 1,\n",
      "          'character': 1,\n",
      "          'flew': 1,\n",
      "          'cuckoos': 1,\n",
      "          'nest': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'aspect': 1,\n",
      "          'unoriginality': 1,\n",
      "          'blatantly': 1,\n",
      "          'ripped': 1,\n",
      "          'think': 1,\n",
      "          'cravens': 1,\n",
      "          'williamsons': 1,\n",
      "          'nurban': 1,\n",
      "          'tries': 1,\n",
      "          'deconstruct': 1,\n",
      "          'modernday': 1,\n",
      "          'folklore': 1,\n",
      "          'much': 1,\n",
      "          'way': 1,\n",
      "          'deconstructed': 1,\n",
      "          'films': 1,\n",
      "          'doesnt': 1,\n",
      "          'quite': 1,\n",
      "          'succeed': 1,\n",
      "          'nits': 1,\n",
      "          'best': 1,\n",
      "          'stab': 1,\n",
      "          'selfreflexivity': 1,\n",
      "          'poking': 1,\n",
      "          'fun': 1,\n",
      "          'girl': 1,\n",
      "          'noxzeema': 1,\n",
      "          'ad': 1,\n",
      "          'ie': 1,\n",
      "          'also': 1,\n",
      "          'killertauntinghisvictimonthephone': 1,\n",
      "          'routine': 1,\n",
      "          'quick': 1,\n",
      "          'exchange': 1,\n",
      "          'nfemale': 1,\n",
      "          'protagonist': 1,\n",
      "          'nvillain': 1,\n",
      "          'nwhy': 1,\n",
      "          'ncongratulations': 1,\n",
      "          'answered': 1,\n",
      "          'andor': 1,\n",
      "          'nlike': 1,\n",
      "          'couldve': 1,\n",
      "          'nif': 1,\n",
      "          'worked': 1,\n",
      "          'allowed': 1,\n",
      "          'work': 1,\n",
      "          'longer': 1,\n",
      "          'script': 1,\n",
      "          'nstill': 1,\n",
      "          'least': 1,\n",
      "          'pretty': 1,\n",
      "          'cool': 1,\n",
      "          'death': 1,\n",
      "          'scenes': 1,\n",
      "          'somewhat': 1,\n",
      "          'realized': 1,\n",
      "          'whodunit': 1,\n",
      "          'angle': 1,\n",
      "          'waaaayyyyyy': 1,\n",
      "          'better': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'high': 7,\n",
      "          'never': 5,\n",
      "          'kissed': 5,\n",
      "          'school': 5,\n",
      "          'one': 4,\n",
      "          'editor': 4,\n",
      "          'josie': 4,\n",
      "          'get': 4,\n",
      "          'would': 4,\n",
      "          'movies': 3,\n",
      "          'copy': 3,\n",
      "          'character': 3,\n",
      "          'adult': 3,\n",
      "          'script': 3,\n",
      "          'barrymore': 2,\n",
      "          'nshe': 2,\n",
      "          'ever': 2,\n",
      "          'nnow': 2,\n",
      "          'could': 2,\n",
      "          'fable': 2,\n",
      "          'office': 2,\n",
      "          'nthe': 2,\n",
      "          'expose': 2,\n",
      "          'todays': 2,\n",
      "          'njosie': 2,\n",
      "          'many': 2,\n",
      "          'problems': 2,\n",
      "          'nand': 2,\n",
      "          'popular': 2,\n",
      "          'girls': 2,\n",
      "          'consistency': 2,\n",
      "          'tries': 2,\n",
      "          'firm': 2,\n",
      "          'nit': 2,\n",
      "          'main': 2,\n",
      "          'aldys': 2,\n",
      "          'drew': 1,\n",
      "          'beginning': 1,\n",
      "          'corner': 1,\n",
      "          'market': 1,\n",
      "          'playing': 1,\n",
      "          'girl': 1,\n",
      "          'outside': 1,\n",
      "          'whos': 1,\n",
      "          'awkward': 1,\n",
      "          'klutz': 1,\n",
      "          'spunky': 1,\n",
      "          'doityourselfer': 1,\n",
      "          'doesnt': 1,\n",
      "          'fit': 1,\n",
      "          'others': 1,\n",
      "          'perfected': 1,\n",
      "          'characters': 1,\n",
      "          'wedding': 1,\n",
      "          'singer': 1,\n",
      "          'notably': 1,\n",
      "          'shes': 1,\n",
      "          'back': 1,\n",
      "          'starring': 1,\n",
      "          'called': 1,\n",
      "          'modernday': 1,\n",
      "          'cinderella': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'plays': 1,\n",
      "          'newspaper': 1,\n",
      "          'well': 1,\n",
      "          'secretary': 1,\n",
      "          'ntrust': 1,\n",
      "          'seen': 1,\n",
      "          'inside': 1,\n",
      "          'private': 1,\n",
      "          'since': 1,\n",
      "          'gutenberg': 1,\n",
      "          'dont': 1,\n",
      "          'mean': 1,\n",
      "          'steve': 1,\n",
      "          'invented': 1,\n",
      "          'printing': 1,\n",
      "          'press': 1,\n",
      "          'premise': 1,\n",
      "          'simple': 1,\n",
      "          'nbarrymores': 1,\n",
      "          'geller': 1,\n",
      "          '25': 1,\n",
      "          'youngest': 1,\n",
      "          'hired': 1,\n",
      "          'chicago': 1,\n",
      "          'suntimes': 1,\n",
      "          'assigned': 1,\n",
      "          'go': 1,\n",
      "          'undercover': 1,\n",
      "          'return': 1,\n",
      "          'teens': 1,\n",
      "          'feeling': 1,\n",
      "          'says': 1,\n",
      "          'named': 1,\n",
      "          '70s': 1,\n",
      "          'cartoon': 1,\n",
      "          'geek': 1,\n",
      "          'jumps': 1,\n",
      "          'opportunity': 1,\n",
      "          'second': 1,\n",
      "          'chance': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'thinks': 1,\n",
      "          'right': 1,\n",
      "          'accepted': 1,\n",
      "          'incrowd': 1,\n",
      "          'kind': 1,\n",
      "          'good': 1,\n",
      "          'job': 1,\n",
      "          'successful': 1,\n",
      "          'career': 1,\n",
      "          'actually': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'reliving': 1,\n",
      "          'hell': 1,\n",
      "          'adolescence': 1,\n",
      "          'nthese': 1,\n",
      "          'among': 1,\n",
      "          'plague': 1,\n",
      "          'nscreenwriters': 1,\n",
      "          'abby': 1,\n",
      "          'kohn': 1,\n",
      "          'marc': 1,\n",
      "          'silverstein': 1,\n",
      "          'handle': 1,\n",
      "          'ntheir': 1,\n",
      "          'capriciously': 1,\n",
      "          'switching': 1,\n",
      "          'confident': 1,\n",
      "          'ditzy': 1,\n",
      "          'blubbering': 1,\n",
      "          'womanchild': 1,\n",
      "          'least': 1,\n",
      "          'provocation': 1,\n",
      "          'fact': 1,\n",
      "          'put': 1,\n",
      "          'much': 1,\n",
      "          'stock': 1,\n",
      "          'trying': 1,\n",
      "          'become': 1,\n",
      "          'tight': 1,\n",
      "          'vapid': 1,\n",
      "          'airheads': 1,\n",
      "          'supposedly': 1,\n",
      "          'south': 1,\n",
      "          'glen': 1,\n",
      "          'schools': 1,\n",
      "          'leads': 1,\n",
      "          'question': 1,\n",
      "          'maturity': 1,\n",
      "          'mental': 1,\n",
      "          'stability': 1,\n",
      "          'nok': 1,\n",
      "          'sociological': 1,\n",
      "          'scene': 1,\n",
      "          'nhowever': 1,\n",
      "          'certain': 1,\n",
      "          'rules': 1,\n",
      "          'apply': 1,\n",
      "          'film': 1,\n",
      "          'namong': 1,\n",
      "          'illconceived': 1,\n",
      "          'conceit': 1,\n",
      "          'seriously': 1,\n",
      "          'strive': 1,\n",
      "          'climb': 1,\n",
      "          'food': 1,\n",
      "          'chain': 1,\n",
      "          'process': 1,\n",
      "          'lose': 1,\n",
      "          'focus': 1,\n",
      "          'assignment': 1,\n",
      "          'nany': 1,\n",
      "          'competent': 1,\n",
      "          'tossed': 1,\n",
      "          'ass': 1,\n",
      "          'door': 1,\n",
      "          'quicker': 1,\n",
      "          'say': 1,\n",
      "          'rewrite': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'appealing': 1,\n",
      "          'given': 1,\n",
      "          'little': 1,\n",
      "          'work': 1,\n",
      "          'valiantly': 1,\n",
      "          'grip': 1,\n",
      "          'continually': 1,\n",
      "          'undermines': 1,\n",
      "          'nbarrymore': 1,\n",
      "          'comes': 1,\n",
      "          'best': 1,\n",
      "          'physical': 1,\n",
      "          'comedy': 1,\n",
      "          'aspects': 1,\n",
      "          'walk': 1,\n",
      "          'talk': 1,\n",
      "          'act': 1,\n",
      "          'like': 1,\n",
      "          'cool': 1,\n",
      "          'hip': 1,\n",
      "          'schooler': 1,\n",
      "          'notherwise': 1,\n",
      "          'left': 1,\n",
      "          'foundering': 1,\n",
      "          'cliched': 1,\n",
      "          'sea': 1,\n",
      "          'teenage': 1,\n",
      "          'stereotypes': 1,\n",
      "          'situations': 1,\n",
      "          'n': 1,\n",
      "          'entertaining': 1,\n",
      "          'funny': 1,\n",
      "          'fits': 1,\n",
      "          'starts': 1,\n",
      "          'lacks': 1,\n",
      "          'grasp': 1,\n",
      "          'wants': 1,\n",
      "          'accomplish': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'provided': 1,\n",
      "          'leelee': 1,\n",
      "          'sobieski': 1,\n",
      "          'outsider': 1,\n",
      "          'befriends': 1,\n",
      "          'new': 1,\n",
      "          'student': 1,\n",
      "          'sees': 1,\n",
      "          'lot': 1,\n",
      "          'former': 1,\n",
      "          'self': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'abandons': 1,\n",
      "          'hang': 1,\n",
      "          'nreal': 1,\n",
      "          'mature': 1,\n",
      "          'deficiency': 1,\n",
      "          'nits': 1,\n",
      "          'illogical': 1,\n",
      "          'unrealistic': 1,\n",
      "          'uneven': 1,\n",
      "          'undemanding': 1,\n",
      "          'warm': 1,\n",
      "          'humorous': 1,\n",
      "          'spots': 1,\n",
      "          'enough': 1,\n",
      "          'overcome': 1,\n",
      "          'obstacles': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 12,\n",
      "          'silent': 7,\n",
      "          'bob': 7,\n",
      "          'hollywood': 5,\n",
      "          'smith': 5,\n",
      "          'jay': 5,\n",
      "          'back': 4,\n",
      "          'monkey': 4,\n",
      "          'ben': 3,\n",
      "          'affleck': 3,\n",
      "          'strike': 3,\n",
      "          'two': 3,\n",
      "          'come': 2,\n",
      "          'going': 2,\n",
      "          'jason': 2,\n",
      "          'kevin': 2,\n",
      "          'ferrell': 2,\n",
      "          'njay': 2,\n",
      "          'nkevin': 2,\n",
      "          'grossout': 2,\n",
      "          'jokes': 2,\n",
      "          'smiths': 2,\n",
      "          'based': 2,\n",
      "          'made': 2,\n",
      "          'nthis': 2,\n",
      "          'internet': 2,\n",
      "          'take': 2,\n",
      "          'group': 2,\n",
      "          'really': 2,\n",
      "          'film': 2,\n",
      "          'comedy': 2,\n",
      "          'make': 2,\n",
      "          'gags': 2,\n",
      "          'another': 2,\n",
      "          'lines': 2,\n",
      "          'clitoris': 2,\n",
      "          'nwere': 1,\n",
      "          'nstarring': 1,\n",
      "          'mewes': 1,\n",
      "          'shannon': 1,\n",
      "          'elizabeth': 1,\n",
      "          'seann': 1,\n",
      "          'william': 1,\n",
      "          'scott': 1,\n",
      "          'chris': 1,\n",
      "          'rock': 1,\n",
      "          'lee': 1,\n",
      "          'ndirected': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'dumb': 1,\n",
      "          'disguised': 1,\n",
      "          'smarmy': 1,\n",
      "          'interior': 1,\n",
      "          'coming': 1,\n",
      "          'wonderful': 1,\n",
      "          'challenging': 1,\n",
      "          'dogma': 1,\n",
      "          'fills': 1,\n",
      "          'subroad': 1,\n",
      "          'trip': 1,\n",
      "          'expects': 1,\n",
      "          'us': 1,\n",
      "          'buy': 1,\n",
      "          'hes': 1,\n",
      "          'ohsoironic': 1,\n",
      "          'nbut': 1,\n",
      "          'selfaware': 1,\n",
      "          'becomes': 1,\n",
      "          'nothing': 1,\n",
      "          'hardly': 1,\n",
      "          'expected': 1,\n",
      "          'pay': 1,\n",
      "          'admission': 1,\n",
      "          'new': 1,\n",
      "          'jersey': 1,\n",
      "          'stoners': 1,\n",
      "          'hang': 1,\n",
      "          'doorstep': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'selling': 1,\n",
      "          'pot': 1,\n",
      "          'appeared': 1,\n",
      "          'almost': 1,\n",
      "          'movies': 1,\n",
      "          'im': 1,\n",
      "          'mistaken': 1,\n",
      "          'starred': 1,\n",
      "          'one': 1,\n",
      "          'nthey': 1,\n",
      "          'find': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'presents': 1,\n",
      "          'problems': 1,\n",
      "          'havent': 1,\n",
      "          'received': 1,\n",
      "          'penny': 1,\n",
      "          'royalties': 1,\n",
      "          'b': 1,\n",
      "          'nerds': 1,\n",
      "          'whats': 1,\n",
      "          'nare': 1,\n",
      "          'talking': 1,\n",
      "          'trash': 1,\n",
      "          'nwhat': 1,\n",
      "          'except': 1,\n",
      "          'go': 1,\n",
      "          'stop': 1,\n",
      "          'non': 1,\n",
      "          'way': 1,\n",
      "          'theyre': 1,\n",
      "          'hitchhiking': 1,\n",
      "          'knew': 1,\n",
      "          'needed': 1,\n",
      "          'tickets': 1,\n",
      "          'bus': 1,\n",
      "          'n': 1,\n",
      "          'run': 1,\n",
      "          'hotties': 1,\n",
      "          'pretend': 1,\n",
      "          'animalrights': 1,\n",
      "          'jewel': 1,\n",
      "          'thiefs': 1,\n",
      "          'parade': 1,\n",
      "          'around': 1,\n",
      "          'charlies': 1,\n",
      "          'angelsstyle': 1,\n",
      "          'outfits': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'set': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'thieves': 1,\n",
      "          'massive': 1,\n",
      "          'manhunt': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'nwill': 1,\n",
      "          'proves': 1,\n",
      "          'incapable': 1,\n",
      "          'anything': 1,\n",
      "          'sketch': 1,\n",
      "          'shows': 1,\n",
      "          'wildlife': 1,\n",
      "          'marshal': 1,\n",
      "          'inspector': 1,\n",
      "          'thinks': 1,\n",
      "          'stolen': 1,\n",
      "          'nthe': 1,\n",
      "          'probably': 1,\n",
      "          'please': 1,\n",
      "          'diehard': 1,\n",
      "          'undiscerning': 1,\n",
      "          'fans': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'critical': 1,\n",
      "          'mindbogglingly': 1,\n",
      "          'stupid': 1,\n",
      "          'effort': 1,\n",
      "          'following': 1,\n",
      "          'sophisticated': 1,\n",
      "          'cinema': 1,\n",
      "          'churned': 1,\n",
      "          'years': 1,\n",
      "          'past': 1,\n",
      "          'nany': 1,\n",
      "          'appeal': 1,\n",
      "          'think': 1,\n",
      "          'understood': 1,\n",
      "          'point': 1,\n",
      "          'absurdity': 1,\n",
      "          'nthere': 1,\n",
      "          'needs': 1,\n",
      "          'something': 1,\n",
      "          'holding': 1,\n",
      "          'together': 1,\n",
      "          'smugness': 1,\n",
      "          'nonce': 1,\n",
      "          'get': 1,\n",
      "          'abruptly': 1,\n",
      "          'switches': 1,\n",
      "          'gears': 1,\n",
      "          'ridiculously': 1,\n",
      "          'broad': 1,\n",
      "          'satire': 1,\n",
      "          'ncountless': 1,\n",
      "          'hot': 1,\n",
      "          'stars': 1,\n",
      "          'personalities': 1,\n",
      "          'appearance': 1,\n",
      "          'veterans': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'wes': 1,\n",
      "          'craven': 1,\n",
      "          'resorts': 1,\n",
      "          'lowbrow': 1,\n",
      "          'scream': 1,\n",
      "          'sequel': 1,\n",
      "          'killer': 1,\n",
      "          'nget': 1,\n",
      "          'ntheyre': 1,\n",
      "          'desperate': 1,\n",
      "          'ran': 1,\n",
      "          'ideas': 1,\n",
      "          'used': 1,\n",
      "          'na': 1,\n",
      "          'nas': 1,\n",
      "          'often': 1,\n",
      "          'happens': 1,\n",
      "          'writers': 1,\n",
      "          'working': 1,\n",
      "          'actually': 1,\n",
      "          'capable': 1,\n",
      "          'good': 1,\n",
      "          'throwaways': 1,\n",
      "          'big': 1,\n",
      "          'painstaking': 1,\n",
      "          'mostly': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'none': 1,\n",
      "          'funniest': 1,\n",
      "          'flies': 1,\n",
      "          'asked': 1,\n",
      "          'comment': 1,\n",
      "          'dont': 1,\n",
      "          'ask': 1,\n",
      "          'responds': 1,\n",
      "          'female': 1,\n",
      "          'talented': 1,\n",
      "          'writer': 1,\n",
      "          'though': 1,\n",
      "          'agree': 1,\n",
      "          'films': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'hed': 1,\n",
      "          'let': 1,\n",
      "          'real': 1,\n",
      "          'director': 1,\n",
      "          'helm': 1,\n",
      "          'holds': 1,\n",
      "          'true': 1,\n",
      "          'promise': 1,\n",
      "          'facetious': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'also': 1,\n",
      "          'shapeless': 1,\n",
      "          'pointless': 1,\n",
      "          'largely': 1,\n",
      "          'unfunny': 1,\n",
      "          'nsmiths': 1,\n",
      "          'verbal': 1,\n",
      "          'trampoline': 1,\n",
      "          'called': 1,\n",
      "          'distinctive': 1,\n",
      "          'dialogue': 1,\n",
      "          'takes': 1,\n",
      "          'seat': 1,\n",
      "          'dubious': 1,\n",
      "          'instincts': 1,\n",
      "          'populist': 1,\n",
      "          'filmmaker': 1,\n",
      "          'supposed': 1,\n",
      "          'didnt': 1,\n",
      "          'offend': 1,\n",
      "          'anyone': 1,\n",
      "          'offensive': 1,\n",
      "          'terrible': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'james': 4,\n",
      "          'bond': 4,\n",
      "          'one': 4,\n",
      "          'series': 3,\n",
      "          'sequence': 3,\n",
      "          'nthe': 3,\n",
      "          'character': 3,\n",
      "          'car': 3,\n",
      "          'film': 3,\n",
      "          'let': 2,\n",
      "          'easily': 2,\n",
      "          'even': 2,\n",
      "          'almost': 2,\n",
      "          'made': 2,\n",
      "          'assassin': 2,\n",
      "          'plot': 2,\n",
      "          'might': 2,\n",
      "          'order': 2,\n",
      "          'nthere': 2,\n",
      "          'also': 2,\n",
      "          'much': 2,\n",
      "          'possibly': 2,\n",
      "          'action': 2,\n",
      "          'whole': 2,\n",
      "          'could': 2,\n",
      "          'begin': 1,\n",
      "          'saying': 1,\n",
      "          'worst': 1,\n",
      "          'entire': 1,\n",
      "          'official': 1,\n",
      "          'unofficial': 1,\n",
      "          'nit': 1,\n",
      "          'full': 1,\n",
      "          'selfparody': 1,\n",
      "          'silly': 1,\n",
      "          'characters': 1,\n",
      "          'would': 1,\n",
      "          'believe': 1,\n",
      "          'watching': 1,\n",
      "          'spoof': 1,\n",
      "          'nan': 1,\n",
      "          'omen': 1,\n",
      "          'come': 1,\n",
      "          'provided': 1,\n",
      "          'precredits': 1,\n",
      "          'dull': 1,\n",
      "          'affair': 1,\n",
      "          'featuring': 1,\n",
      "          'confrontation': 1,\n",
      "          'man': 1,\n",
      "          'difficult': 1,\n",
      "          'give': 1,\n",
      "          'better': 1,\n",
      "          'description': 1,\n",
      "          'since': 1,\n",
      "          'mention': 1,\n",
      "          'elsewhere': 1,\n",
      "          'title': 1,\n",
      "          'na': 1,\n",
      "          'song': 1,\n",
      "          'woefully': 1,\n",
      "          'terrible': 1,\n",
      "          'lyrics': 1,\n",
      "          'follows': 1,\n",
      "          'rest': 1,\n",
      "          'worse': 1,\n",
      "          'pleasant': 1,\n",
      "          'change': 1,\n",
      "          'usual': 1,\n",
      "          'ruletheworld': 1,\n",
      "          'often': 1,\n",
      "          'found': 1,\n",
      "          'movies': 1,\n",
      "          '70s': 1,\n",
      "          'get': 1,\n",
      "          'confused': 1,\n",
      "          'mismash': 1,\n",
      "          'fabled': 1,\n",
      "          'francisco': 1,\n",
      "          'scaramanga': 1,\n",
      "          'christopher': 1,\n",
      "          'lee': 1,\n",
      "          'putting': 1,\n",
      "          'performance': 1,\n",
      "          'rare': 1,\n",
      "          'saving': 1,\n",
      "          'graces': 1,\n",
      "          'someone': 1,\n",
      "          'apparently': 1,\n",
      "          'payed': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'remove': 1,\n",
      "          'roger': 1,\n",
      "          'moores': 1,\n",
      "          '007': 1,\n",
      "          'flimsy': 1,\n",
      "          'connection': 1,\n",
      "          'energy': 1,\n",
      "          'crisis': 1,\n",
      "          'missing': 1,\n",
      "          'solar': 1,\n",
      "          'cell': 1,\n",
      "          '95': 1,\n",
      "          'efficiency': 1,\n",
      "          'nits': 1,\n",
      "          'mess': 1,\n",
      "          'sounds': 1,\n",
      "          'nbond': 1,\n",
      "          'helped': 1,\n",
      "          'task': 1,\n",
      "          'mary': 1,\n",
      "          'goodnight': 1,\n",
      "          'ekland': 1,\n",
      "          'whose': 1,\n",
      "          'couldnt': 1,\n",
      "          'closer': 1,\n",
      "          'stereotypical': 1,\n",
      "          'bimbo': 1,\n",
      "          'nduring': 1,\n",
      "          'course': 1,\n",
      "          'gets': 1,\n",
      "          'locked': 1,\n",
      "          'closet': 1,\n",
      "          'trunk': 1,\n",
      "          'blunders': 1,\n",
      "          'around': 1,\n",
      "          'control': 1,\n",
      "          'room': 1,\n",
      "          'accidentally': 1,\n",
      "          'setting': 1,\n",
      "          'laser': 1,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'enhancing': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'whatsoever': 1,\n",
      "          'nmaud': 1,\n",
      "          'adams': 1,\n",
      "          'later': 1,\n",
      "          'star': 1,\n",
      "          'octopussy': 1,\n",
      "          'stronger': 1,\n",
      "          'useful': 1,\n",
      "          'hardly': 1,\n",
      "          'features': 1,\n",
      "          'nscaramangas': 1,\n",
      "          'lackey': 1,\n",
      "          'dwarf': 1,\n",
      "          'called': 1,\n",
      "          'niknak': 1,\n",
      "          'rather': 1,\n",
      "          'fittingly': 1,\n",
      "          'silliest': 1,\n",
      "          'henchman': 1,\n",
      "          'serving': 1,\n",
      "          'annoyance': 1,\n",
      "          'weak': 1,\n",
      "          'dialogue': 1,\n",
      "          'equal': 1,\n",
      "          'measures': 1,\n",
      "          'nworse': 1,\n",
      "          'still': 1,\n",
      "          'total': 1,\n",
      "          'lack': 1,\n",
      "          'throughout': 1,\n",
      "          'fight': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'counting': 1,\n",
      "          'ludicrous': 1,\n",
      "          'scene': 1,\n",
      "          'two': 1,\n",
      "          'teenage': 1,\n",
      "          'girls': 1,\n",
      "          'beat': 1,\n",
      "          'several': 1,\n",
      "          'dozen': 1,\n",
      "          'trained': 1,\n",
      "          'martial': 1,\n",
      "          'artists': 1,\n",
      "          'another': 1,\n",
      "          'misguided': 1,\n",
      "          'attempt': 1,\n",
      "          'humour': 1,\n",
      "          'solitary': 1,\n",
      "          'chase': 1,\n",
      "          'highlight': 1,\n",
      "          'interrupted': 1,\n",
      "          'frequent': 1,\n",
      "          'basis': 1,\n",
      "          'redneck': 1,\n",
      "          'sheriff': 1,\n",
      "          'j': 1,\n",
      "          'w': 1,\n",
      "          'npepper': 1,\n",
      "          'played': 1,\n",
      "          'clifton': 1,\n",
      "          'live': 1,\n",
      "          'die': 1,\n",
      "          'fame': 1,\n",
      "          'yelling': 1,\n",
      "          'stupid': 1,\n",
      "          'comments': 1,\n",
      "          'passenger': 1,\n",
      "          'window': 1,\n",
      "          'nhe': 1,\n",
      "          'irritating': 1,\n",
      "          'neven': 1,\n",
      "          'presence': 1,\n",
      "          'bearable': 1,\n",
      "          'impressive': 1,\n",
      "          'stunts': 1,\n",
      "          'cinematic': 1,\n",
      "          'history': 1,\n",
      "          '360': 1,\n",
      "          'degree': 1,\n",
      "          'twisting': 1,\n",
      "          'loop': 1,\n",
      "          'jump': 1,\n",
      "          'broken': 1,\n",
      "          'bridge': 1,\n",
      "          'except': 1,\n",
      "          'somebody': 1,\n",
      "          'got': 1,\n",
      "          'idea': 1,\n",
      "          'dub': 1,\n",
      "          'mocking': 1,\n",
      "          'whistle': 1,\n",
      "          'tone': 1,\n",
      "          'final': 1,\n",
      "          'print': 1,\n",
      "          'non': 1,\n",
      "          'top': 1,\n",
      "          'debacle': 1,\n",
      "          'end': 1,\n",
      "          'anticlimatic': 1,\n",
      "          'scaramangas': 1,\n",
      "          'funhouse': 1,\n",
      "          'good': 1,\n",
      "          'thing': 1,\n",
      "          'came': 1,\n",
      "          'producers': 1,\n",
      "          'make': 1,\n",
      "          'next': 1,\n",
      "          'infinitely': 1,\n",
      "          'superior': 1,\n",
      "          'spy': 1,\n",
      "          'loved': 1,\n",
      "          'great': 1,\n",
      "          'franchise': 1,\n",
      "          'survive': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'civil': 7,\n",
      "          'action': 7,\n",
      "          'one': 7,\n",
      "          'since': 4,\n",
      "          'drama': 4,\n",
      "          'lawyer': 4,\n",
      "          'even': 4,\n",
      "          'well': 4,\n",
      "          'children': 3,\n",
      "          'story': 3,\n",
      "          'personal': 3,\n",
      "          'jan': 3,\n",
      "          'case': 3,\n",
      "          'families': 3,\n",
      "          'get': 3,\n",
      "          'accident': 3,\n",
      "          'parents': 3,\n",
      "          'teenage': 3,\n",
      "          'character': 3,\n",
      "          'director': 2,\n",
      "          'steven': 2,\n",
      "          'zaillian': 2,\n",
      "          '1993s': 2,\n",
      "          'doesnt': 2,\n",
      "          'make': 2,\n",
      "          'john': 2,\n",
      "          'travolta': 2,\n",
      "          'robert': 2,\n",
      "          'duvall': 2,\n",
      "          'william': 2,\n",
      "          'h': 2,\n",
      "          'macy': 2,\n",
      "          'got': 2,\n",
      "          'involved': 2,\n",
      "          'completely': 2,\n",
      "          'died': 2,\n",
      "          'leukemia': 2,\n",
      "          'certainly': 2,\n",
      "          'somehow': 2,\n",
      "          'courtroom': 2,\n",
      "          'schlictmann': 2,\n",
      "          'decides': 2,\n",
      "          'corporate': 2,\n",
      "          'beatrice': 2,\n",
      "          'foods': 2,\n",
      "          'place': 2,\n",
      "          'two': 2,\n",
      "          'care': 2,\n",
      "          'going': 2,\n",
      "          'attempts': 2,\n",
      "          'far': 2,\n",
      "          'sweet': 2,\n",
      "          'hereafter': 2,\n",
      "          'ian': 2,\n",
      "          'holm': 2,\n",
      "          'school': 2,\n",
      "          'bus': 2,\n",
      "          'nin': 2,\n",
      "          'girl': 2,\n",
      "          'young': 2,\n",
      "          'running': 2,\n",
      "          'time': 2,\n",
      "          'virtually': 2,\n",
      "          'scene': 2,\n",
      "          'actually': 2,\n",
      "          'way': 2,\n",
      "          'every': 2,\n",
      "          'role': 2,\n",
      "          'previously': 1,\n",
      "          'wrote': 1,\n",
      "          'powerful': 1,\n",
      "          'screenplay': 1,\n",
      "          'spielberg': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'directed': 1,\n",
      "          'intelligent': 1,\n",
      "          'searching': 1,\n",
      "          'bobby': 1,\n",
      "          'fischer': 1,\n",
      "          'new': 1,\n",
      "          'likely': 1,\n",
      "          'looked': 1,\n",
      "          'upon': 1,\n",
      "          'unfortunate': 1,\n",
      "          'misstep': 1,\n",
      "          'otherwise': 1,\n",
      "          'prosperous': 1,\n",
      "          'career': 1,\n",
      "          'nwhat': 1,\n",
      "          'sense': 1,\n",
      "          'highprofile': 1,\n",
      "          'superb': 1,\n",
      "          'actors': 1,\n",
      "          'kathleen': 1,\n",
      "          'quinlan': 1,\n",
      "          'project': 1,\n",
      "          'dull': 1,\n",
      "          'ineffective': 1,\n",
      "          'nthe': 1,\n",
      "          'involves': 1,\n",
      "          'small': 1,\n",
      "          'community': 1,\n",
      "          'mysteriously': 1,\n",
      "          'contains': 1,\n",
      "          'type': 1,\n",
      "          'emotionallycharged': 1,\n",
      "          'signs': 1,\n",
      "          'feeling': 1,\n",
      "          'removed': 1,\n",
      "          'proceedings': 1,\n",
      "          'leaving': 1,\n",
      "          'us': 1,\n",
      "          'nothing': 1,\n",
      "          'poorlydone': 1,\n",
      "          'nbased': 1,\n",
      "          'book': 1,\n",
      "          'jonathan': 1,\n",
      "          'hart': 1,\n",
      "          'consequently': 1,\n",
      "          'based': 1,\n",
      "          'true': 1,\n",
      "          'account': 1,\n",
      "          'set': 1,\n",
      "          '1982': 1,\n",
      "          'town': 1,\n",
      "          'woburn': 1,\n",
      "          'mass': 1,\n",
      "          'injury': 1,\n",
      "          'take': 1,\n",
      "          'eight': 1,\n",
      "          'simply': 1,\n",
      "          'want': 1,\n",
      "          'apology': 1,\n",
      "          'childrens': 1,\n",
      "          'death': 1,\n",
      "          'due': 1,\n",
      "          'unknown': 1,\n",
      "          'causes': 1,\n",
      "          'njan': 1,\n",
      "          'originally': 1,\n",
      "          'drop': 1,\n",
      "          'stumbles': 1,\n",
      "          'across': 1,\n",
      "          'giants': 1,\n",
      "          'grace': 1,\n",
      "          'plants': 1,\n",
      "          'located': 1,\n",
      "          'near': 1,\n",
      "          'homes': 1,\n",
      "          'sees': 1,\n",
      "          'pieces': 1,\n",
      "          'suddenly': 1,\n",
      "          'fall': 1,\n",
      "          'companies': 1,\n",
      "          'leaking': 1,\n",
      "          'harmful': 1,\n",
      "          'chemicals': 1,\n",
      "          'nearby': 1,\n",
      "          'lake': 1,\n",
      "          'thus': 1,\n",
      "          'goes': 1,\n",
      "          'citys': 1,\n",
      "          'drinking': 1,\n",
      "          'water': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'hearing': 1,\n",
      "          'heartbreak': 1,\n",
      "          'stories': 1,\n",
      "          'begins': 1,\n",
      "          'becomes': 1,\n",
      "          'determined': 1,\n",
      "          'bottom': 1,\n",
      "          'mystery': 1,\n",
      "          'though': 1,\n",
      "          'warned': 1,\n",
      "          'staff': 1,\n",
      "          'accountant': 1,\n",
      "          'money': 1,\n",
      "          'coming': 1,\n",
      "          'nalso': 1,\n",
      "          'figuring': 1,\n",
      "          'jerome': 1,\n",
      "          'facher': 1,\n",
      "          'counsel': 1,\n",
      "          'finds': 1,\n",
      "          'heated': 1,\n",
      "          'waters': 1,\n",
      "          'accept': 1,\n",
      "          '20million': 1,\n",
      "          'offer': 1,\n",
      "          'settle': 1,\n",
      "          'ncoming': 1,\n",
      "          'talented': 1,\n",
      "          'writer': 1,\n",
      "          'cast': 1,\n",
      "          'mention': 1,\n",
      "          'interesting': 1,\n",
      "          'composers': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'astoundingly': 1,\n",
      "          'emptyheaded': 1,\n",
      "          'includes': 1,\n",
      "          'intriguing': 1,\n",
      "          'transforms': 1,\n",
      "          'admittedly': 1,\n",
      "          'tiresome': 1,\n",
      "          'occasionally': 1,\n",
      "          'boring': 1,\n",
      "          'experience': 1,\n",
      "          'nperhaps': 1,\n",
      "          'major': 1,\n",
      "          'problems': 1,\n",
      "          'relatively': 1,\n",
      "          'uncommercial': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'misplaced': 1,\n",
      "          'refreshing': 1,\n",
      "          'unconventional': 1,\n",
      "          'attitude': 1,\n",
      "          'absence': 1,\n",
      "          'magnetism': 1,\n",
      "          'meaning': 1,\n",
      "          'nwatching': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'notice': 1,\n",
      "          'similarities': 1,\n",
      "          '1997s': 1,\n",
      "          'superior': 1,\n",
      "          'dealt': 1,\n",
      "          'played': 1,\n",
      "          'brilliantly': 1,\n",
      "          'investigating': 1,\n",
      "          'killed': 1,\n",
      "          'number': 1,\n",
      "          'find': 1,\n",
      "          'someone': 1,\n",
      "          'may': 1,\n",
      "          'responsible': 1,\n",
      "          'interviews': 1,\n",
      "          'grieving': 1,\n",
      "          'sole': 1,\n",
      "          'surviving': 1,\n",
      "          'passenger': 1,\n",
      "          'starts': 1,\n",
      "          'remind': 1,\n",
      "          'daughter': 1,\n",
      "          'drugaddict': 1,\n",
      "          'run': 1,\n",
      "          'away': 1,\n",
      "          'home': 1,\n",
      "          'nnot': 1,\n",
      "          'plotting': 1,\n",
      "          'similar': 1,\n",
      "          'also': 1,\n",
      "          'exact': 1,\n",
      "          '115': 1,\n",
      "          'minutes': 1,\n",
      "          'nconsidering': 1,\n",
      "          'amazing': 1,\n",
      "          'fulfilling': 1,\n",
      "          'truthful': 1,\n",
      "          'concentrating': 1,\n",
      "          'delving': 1,\n",
      "          'deeply': 1,\n",
      "          'holms': 1,\n",
      "          'demons': 1,\n",
      "          'however': 1,\n",
      "          'idea': 1,\n",
      "          'went': 1,\n",
      "          'hours': 1,\n",
      "          'nothingness': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'nthrough': 1,\n",
      "          'whole': 1,\n",
      "          'duration': 1,\n",
      "          'learn': 1,\n",
      "          'thing__not': 1,\n",
      "          'thing__about': 1,\n",
      "          'travoltas': 1,\n",
      "          'appear': 1,\n",
      "          'sort': 1,\n",
      "          'life': 1,\n",
      "          'purpose': 1,\n",
      "          'outside': 1,\n",
      "          'job': 1,\n",
      "          'nevery': 1,\n",
      "          'tediously': 1,\n",
      "          'related': 1,\n",
      "          'directly': 1,\n",
      "          'premise': 1,\n",
      "          'therefore': 1,\n",
      "          'root': 1,\n",
      "          'nyouve': 1,\n",
      "          'work': 1,\n",
      "          'pretty': 1,\n",
      "          'hard': 1,\n",
      "          'audience': 1,\n",
      "          'become': 1,\n",
      "          'plight': 1,\n",
      "          'dead': 1,\n",
      "          'exactly': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'would': 1,\n",
      "          'fairly': 1,\n",
      "          'hardpressed': 1,\n",
      "          'state': 1,\n",
      "          'aspect': 1,\n",
      "          'liked': 1,\n",
      "          'naside': 1,\n",
      "          'flashback': 1,\n",
      "          'mans': 1,\n",
      "          'son': 1,\n",
      "          'doctor': 1,\n",
      "          'remained': 1,\n",
      "          'unmoved': 1,\n",
      "          'passive': 1,\n",
      "          'scenes': 1,\n",
      "          'found': 1,\n",
      "          'mind': 1,\n",
      "          'wandering': 1,\n",
      "          'ni': 1,\n",
      "          'could': 1,\n",
      "          'say': 1,\n",
      "          'performances': 1,\n",
      "          'good': 1,\n",
      "          'whos': 1,\n",
      "          'fooling': 1,\n",
      "          'nsince': 1,\n",
      "          'onedimensionally': 1,\n",
      "          'written': 1,\n",
      "          'ones': 1,\n",
      "          'acting': 1,\n",
      "          'abilities': 1,\n",
      "          'challenged': 1,\n",
      "          'ntravolta': 1,\n",
      "          'plays': 1,\n",
      "          'enough': 1,\n",
      "          'thats': 1,\n",
      "          'nduvall': 1,\n",
      "          'sleepwalks': 1,\n",
      "          'apparently': 1,\n",
      "          'appearing': 1,\n",
      "          'give': 1,\n",
      "          'oneliners': 1,\n",
      "          'chance': 1,\n",
      "          'gets': 1,\n",
      "          'nand': 1,\n",
      "          'world': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'pictures': 1,\n",
      "          'final': 1,\n",
      "          'judge': 1,\n",
      "          'nshe': 1,\n",
      "          'appears': 1,\n",
      "          'unbilled': 1,\n",
      "          'cameo': 1,\n",
      "          'agree': 1,\n",
      "          'first': 1,\n",
      "          'nfinally': 1,\n",
      "          'conclusion': 1,\n",
      "          'arrived': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'began': 1,\n",
      "          'left': 1,\n",
      "          'another': 1,\n",
      "          'question': 1,\n",
      "          'point': 1,\n",
      "          'nabruptly': 1,\n",
      "          'ending': 1,\n",
      "          'without': 1,\n",
      "          'susceptible': 1,\n",
      "          'momentum': 1,\n",
      "          'none': 1,\n",
      "          'came': 1,\n",
      "          'begin': 1,\n",
      "          'seemed': 1,\n",
      "          'least': 1,\n",
      "          'example': 1,\n",
      "          'justice': 1,\n",
      "          'serious': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'deals': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'spawn': 21,\n",
      "          'film': 9,\n",
      "          'much': 8,\n",
      "          'comic': 7,\n",
      "          'book': 6,\n",
      "          'batman': 6,\n",
      "          'special': 6,\n",
      "          'effects': 6,\n",
      "          'audience': 6,\n",
      "          'simmons': 4,\n",
      "          'violator': 4,\n",
      "          'nthe': 4,\n",
      "          'movie': 4,\n",
      "          'like': 4,\n",
      "          'however': 4,\n",
      "          'one': 4,\n",
      "          'time': 4,\n",
      "          'al': 3,\n",
      "          'hell': 3,\n",
      "          'earth': 3,\n",
      "          'general': 3,\n",
      "          'spawns': 3,\n",
      "          'mcfarlane': 3,\n",
      "          'made': 3,\n",
      "          'success': 3,\n",
      "          'ni': 3,\n",
      "          'films': 3,\n",
      "          'character': 3,\n",
      "          'dialogue': 3,\n",
      "          'na': 3,\n",
      "          'violent': 3,\n",
      "          'help': 3,\n",
      "          'nspawn': 3,\n",
      "          'seems': 3,\n",
      "          'role': 3,\n",
      "          'hard': 3,\n",
      "          'assasin': 2,\n",
      "          'goes': 2,\n",
      "          'pact': 2,\n",
      "          'knives': 2,\n",
      "          'chains': 2,\n",
      "          'morphing': 2,\n",
      "          'left': 2,\n",
      "          'comics': 2,\n",
      "          'new': 2,\n",
      "          'nmcfarlanes': 2,\n",
      "          'became': 2,\n",
      "          'series': 2,\n",
      "          'hero': 2,\n",
      "          'visually': 2,\n",
      "          'early': 2,\n",
      "          'brilliantly': 2,\n",
      "          'capture': 2,\n",
      "          'show': 2,\n",
      "          'attempts': 2,\n",
      "          'violence': 2,\n",
      "          'disappointing': 2,\n",
      "          'dont': 2,\n",
      "          'presence': 2,\n",
      "          'trend': 2,\n",
      "          'movies': 2,\n",
      "          'plot': 2,\n",
      "          'another': 2,\n",
      "          'characters': 2,\n",
      "          'without': 2,\n",
      "          'technically': 2,\n",
      "          'script': 2,\n",
      "          'cast': 2,\n",
      "          'comes': 2,\n",
      "          'across': 2,\n",
      "          'suffers': 2,\n",
      "          'wanda': 2,\n",
      "          'return': 2,\n",
      "          'sometimes': 2,\n",
      "          'spends': 2,\n",
      "          'villain': 2,\n",
      "          'leguizamo': 2,\n",
      "          'nicholson': 2,\n",
      "          'receives': 2,\n",
      "          'jai': 2,\n",
      "          'white': 2,\n",
      "          'violators': 2,\n",
      "          'offensive': 2,\n",
      "          'seen': 2,\n",
      "          'little': 2,\n",
      "          'sheen': 2,\n",
      "          'obnoxious': 2,\n",
      "          'nmany': 2,\n",
      "          'good': 2,\n",
      "          'synopsis': 1,\n",
      "          'topnotch': 1,\n",
      "          'guilty': 1,\n",
      "          'conscience': 1,\n",
      "          'dies': 1,\n",
      "          'fiery': 1,\n",
      "          'explosion': 1,\n",
      "          'nmaking': 1,\n",
      "          'malebolgia': 1,\n",
      "          'chief': 1,\n",
      "          'demon': 1,\n",
      "          'returns': 1,\n",
      "          '5': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'reborn': 1,\n",
      "          'hells': 1,\n",
      "          'army': 1,\n",
      "          'donning': 1,\n",
      "          'necroplasmic': 1,\n",
      "          'costume': 1,\n",
      "          'replete': 1,\n",
      "          'cape': 1,\n",
      "          'nsullen': 1,\n",
      "          'wise': 1,\n",
      "          'cogliostro': 1,\n",
      "          'flatulating': 1,\n",
      "          'wisecracking': 1,\n",
      "          'vy': 1,\n",
      "          'attention': 1,\n",
      "          'ncomments': 1,\n",
      "          'todd': 1,\n",
      "          'marvel': 1,\n",
      "          'name': 1,\n",
      "          'firstrate': 1,\n",
      "          'penciller': 1,\n",
      "          'spiderman': 1,\n",
      "          'titles': 1,\n",
      "          'join': 1,\n",
      "          'newlyformed': 1,\n",
      "          'creatorowned': 1,\n",
      "          'image': 1,\n",
      "          'legend': 1,\n",
      "          'born': 1,\n",
      "          'immediately': 1,\n",
      "          'commercial': 1,\n",
      "          'critical': 1,\n",
      "          'defining': 1,\n",
      "          '1990s': 1,\n",
      "          'nmcfarlane': 1,\n",
      "          'created': 1,\n",
      "          'original': 1,\n",
      "          'intricate': 1,\n",
      "          'allowing': 1,\n",
      "          'utilize': 1,\n",
      "          'knack': 1,\n",
      "          'artistic': 1,\n",
      "          'detail': 1,\n",
      "          'max': 1,\n",
      "          'issues': 1,\n",
      "          'mcfarlanes': 1,\n",
      "          'genius': 1,\n",
      "          'illustration': 1,\n",
      "          'writing': 1,\n",
      "          'nwith': 1,\n",
      "          'popularity': 1,\n",
      "          'current': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'franchise': 1,\n",
      "          'version': 1,\n",
      "          'sort': 1,\n",
      "          'seemed': 1,\n",
      "          'inevitable': 1,\n",
      "          'nin': 1,\n",
      "          'summer': 1,\n",
      "          '1997': 1,\n",
      "          'hence': 1,\n",
      "          'line': 1,\n",
      "          'cinema': 1,\n",
      "          'released': 1,\n",
      "          'liveaction': 1,\n",
      "          'based': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'nthis': 1,\n",
      "          'topheavy': 1,\n",
      "          'exercise': 1,\n",
      "          'unfortunately': 1,\n",
      "          'topples': 1,\n",
      "          'quickly': 1,\n",
      "          'leaves': 1,\n",
      "          'fans': 1,\n",
      "          'numbed': 1,\n",
      "          'misses': 1,\n",
      "          'mark': 1,\n",
      "          'nwhat': 1,\n",
      "          'happened': 1,\n",
      "          'nwhy': 1,\n",
      "          'bad': 1,\n",
      "          'ntodd': 1,\n",
      "          'executive': 1,\n",
      "          'produced': 1,\n",
      "          'misfire': 1,\n",
      "          'even': 1,\n",
      "          'appears': 1,\n",
      "          'cameo': 1,\n",
      "          'think': 1,\n",
      "          'necessarily': 1,\n",
      "          'hurt': 1,\n",
      "          'helped': 1,\n",
      "          'place': 1,\n",
      "          'blame': 1,\n",
      "          'part': 1,\n",
      "          'recent': 1,\n",
      "          'hollywood': 1,\n",
      "          'fueled': 1,\n",
      "          'public': 1,\n",
      "          'demand': 1,\n",
      "          'apparently': 1,\n",
      "          'blowout': 1,\n",
      "          'utilizing': 1,\n",
      "          'latest': 1,\n",
      "          'computer': 1,\n",
      "          'technology': 1,\n",
      "          'nthese': 1,\n",
      "          'focus': 1,\n",
      "          'upon': 1,\n",
      "          'expense': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'etc': 1,\n",
      "          'reflecting': 1,\n",
      "          'shows': 1,\n",
      "          'gratuitous': 1,\n",
      "          'scene': 1,\n",
      "          'populated': 1,\n",
      "          'filled': 1,\n",
      "          'unnecessary': 1,\n",
      "          'pyrotechnics': 1,\n",
      "          'nhardly': 1,\n",
      "          'minute': 1,\n",
      "          'fires': 1,\n",
      "          'explosions': 1,\n",
      "          'appearing': 1,\n",
      "          'nowhere': 1,\n",
      "          'glowing': 1,\n",
      "          'eyes': 1,\n",
      "          'constantly': 1,\n",
      "          'transforming': 1,\n",
      "          'demons': 1,\n",
      "          'lot': 1,\n",
      "          'interesting': 1,\n",
      "          'solid': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'arent': 1,\n",
      "          'engaging': 1,\n",
      "          'ultimately': 1,\n",
      "          'overwrought': 1,\n",
      "          'wallpaper': 1,\n",
      "          'surface': 1,\n",
      "          'may': 1,\n",
      "          'eye': 1,\n",
      "          'nothing': 1,\n",
      "          'exists': 1,\n",
      "          'underneath': 1,\n",
      "          'nspawns': 1,\n",
      "          'translation': 1,\n",
      "          'storyline': 1,\n",
      "          'level': 1,\n",
      "          'tortured': 1,\n",
      "          'mercenary': 1,\n",
      "          'trade': 1,\n",
      "          'nonetheless': 1,\n",
      "          'warm': 1,\n",
      "          'man': 1,\n",
      "          'love': 1,\n",
      "          'beautiful': 1,\n",
      "          'nhaving': 1,\n",
      "          'died': 1,\n",
      "          'journeyed': 1,\n",
      "          'nsimmons': 1,\n",
      "          'discovers': 1,\n",
      "          'memories': 1,\n",
      "          'fragmented': 1,\n",
      "          'body': 1,\n",
      "          'creepy': 1,\n",
      "          'mess': 1,\n",
      "          'wife': 1,\n",
      "          'married': 1,\n",
      "          'ndespite': 1,\n",
      "          'nature': 1,\n",
      "          'readers': 1,\n",
      "          'couldnt': 1,\n",
      "          'feel': 1,\n",
      "          'sympathetic': 1,\n",
      "          'toward': 1,\n",
      "          'plight': 1,\n",
      "          'underworld': 1,\n",
      "          'spend': 1,\n",
      "          'nearly': 1,\n",
      "          'nwhen': 1,\n",
      "          'developed': 1,\n",
      "          'seem': 1,\n",
      "          'absurd': 1,\n",
      "          'rather': 1,\n",
      "          'touching': 1,\n",
      "          'cartoonish': 1,\n",
      "          'implausible': 1,\n",
      "          'subplot': 1,\n",
      "          'possesses': 1,\n",
      "          'antidote': 1,\n",
      "          'supervirus': 1,\n",
      "          'called': 1,\n",
      "          'heat16': 1,\n",
      "          'wishes': 1,\n",
      "          'unleash': 1,\n",
      "          'enslave': 1,\n",
      "          'world': 1,\n",
      "          'matters': 1,\n",
      "          'apparent': 1,\n",
      "          'attempt': 1,\n",
      "          'duplicate': 1,\n",
      "          'also': 1,\n",
      "          'unwisely': 1,\n",
      "          'favored': 1,\n",
      "          'joker': 1,\n",
      "          'njohn': 1,\n",
      "          'jack': 1,\n",
      "          'top': 1,\n",
      "          'billing': 1,\n",
      "          'michael': 1,\n",
      "          'second': 1,\n",
      "          'ordinarily': 1,\n",
      "          'find': 1,\n",
      "          'intensely': 1,\n",
      "          'annoying': 1,\n",
      "          'make': 1,\n",
      "          'perfect': 1,\n",
      "          'candidate': 1,\n",
      "          'antics': 1,\n",
      "          'grate': 1,\n",
      "          'nerves': 1,\n",
      "          'napparently': 1,\n",
      "          'meant': 1,\n",
      "          'relief': 1,\n",
      "          'especially': 1,\n",
      "          'contrasted': 1,\n",
      "          'sullen': 1,\n",
      "          'lines': 1,\n",
      "          'oftentimes': 1,\n",
      "          'grotesque': 1,\n",
      "          'unfunny': 1,\n",
      "          'leaving': 1,\n",
      "          'wishing': 1,\n",
      "          'would': 1,\n",
      "          'leave': 1,\n",
      "          'nleguizamo': 1,\n",
      "          'satisfactory': 1,\n",
      "          'job': 1,\n",
      "          'far': 1,\n",
      "          'often': 1,\n",
      "          'nmichael': 1,\n",
      "          'relative': 1,\n",
      "          'newcomer': 1,\n",
      "          'theatrical': 1,\n",
      "          'releases': 1,\n",
      "          'appealing': 1,\n",
      "          'actor': 1,\n",
      "          'handles': 1,\n",
      "          'adequately': 1,\n",
      "          'see': 1,\n",
      "          'various': 1,\n",
      "          'masks': 1,\n",
      "          'nmore': 1,\n",
      "          'needed': 1,\n",
      "          'spent': 1,\n",
      "          'whites': 1,\n",
      "          'pull': 1,\n",
      "          'heartstrings': 1,\n",
      "          'note': 1,\n",
      "          'martin': 1,\n",
      "          'overthetop': 1,\n",
      "          'evil': 1,\n",
      "          'wynn': 1,\n",
      "          'neasily': 1,\n",
      "          'hammiest': 1,\n",
      "          'performance': 1,\n",
      "          'imagine': 1,\n",
      "          'mucked': 1,\n",
      "          'played': 1,\n",
      "          'vietnam': 1,\n",
      "          'great': 1,\n",
      "          'apocalypse': 1,\n",
      "          'nsheens': 1,\n",
      "          'excessive': 1,\n",
      "          'demeanor': 1,\n",
      "          'accept': 1,\n",
      "          'mastermind': 1,\n",
      "          'surprise': 1,\n",
      "          'considering': 1,\n",
      "          'extensive': 1,\n",
      "          'career': 1,\n",
      "          'elements': 1,\n",
      "          'conspire': 1,\n",
      "          'abundant': 1,\n",
      "          'drag': 1,\n",
      "          'nmtvstyle': 1,\n",
      "          'jerky': 1,\n",
      "          'inyourface': 1,\n",
      "          'editing': 1,\n",
      "          'nflames': 1,\n",
      "          'example': 1,\n",
      "          'roll': 1,\n",
      "          'screen': 1,\n",
      "          'announce': 1,\n",
      "          'shift': 1,\n",
      "          'setting': 1,\n",
      "          'ncogliostro': 1,\n",
      "          'unlikely': 1,\n",
      "          'wannabe': 1,\n",
      "          'guide': 1,\n",
      "          'serves': 1,\n",
      "          'poor': 1,\n",
      "          'narrator': 1,\n",
      "          'nhe': 1,\n",
      "          'goofily': 1,\n",
      "          'tells': 1,\n",
      "          'point': 1,\n",
      "          'humanity': 1,\n",
      "          'remains': 1,\n",
      "          'really': 1,\n",
      "          'cares': 1,\n",
      "          'sequence': 1,\n",
      "          'leads': 1,\n",
      "          'music': 1,\n",
      "          'finally': 1,\n",
      "          'assaults': 1,\n",
      "          'manic': 1,\n",
      "          'nloud': 1,\n",
      "          'rock': 1,\n",
      "          'fused': 1,\n",
      "          'drum': 1,\n",
      "          'loops': 1,\n",
      "          'dominate': 1,\n",
      "          'scenes': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'marilyn': 1,\n",
      "          'mansons': 1,\n",
      "          'long': 1,\n",
      "          'road': 1,\n",
      "          'effectively': 1,\n",
      "          'compliments': 1,\n",
      "          'filter': 1,\n",
      "          'crystal': 1,\n",
      "          'methods': 1,\n",
      "          'cant': 1,\n",
      "          'trip': 1,\n",
      "          'proves': 1,\n",
      "          'surprisingly': 1,\n",
      "          'fitting': 1,\n",
      "          'theme': 1,\n",
      "          'song': 1,\n",
      "          'nfor': 1,\n",
      "          'instead': 1,\n",
      "          'pomp': 1,\n",
      "          'circumstance': 1,\n",
      "          'development': 1,\n",
      "          'nit': 1,\n",
      "          'two': 1,\n",
      "          'stars': 1,\n",
      "          'welldone': 1,\n",
      "          'though': 1,\n",
      "          'equal': 1,\n",
      "          'superior': 1,\n",
      "          'better': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nrated': 1,\n",
      "          'pg13': 1,\n",
      "          'many': 1,\n",
      "          'rrated': 1,\n",
      "          'probably': 1,\n",
      "          'wouldnt': 1,\n",
      "          'appropriate': 1,\n",
      "          'young': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jjaks': 8,\n",
      "          'minnesota': 7,\n",
      "          'feeling': 5,\n",
      "          'freddie': 5,\n",
      "          'reeves': 4,\n",
      "          'sam': 4,\n",
      "          'film': 3,\n",
      "          'romantic': 3,\n",
      "          'another': 3,\n",
      "          'nfeeling': 3,\n",
      "          'baigelman': 3,\n",
      "          'story': 3,\n",
      "          'sams': 3,\n",
      "          'wedding': 3,\n",
      "          'scene': 3,\n",
      "          'would': 3,\n",
      "          'cant': 2,\n",
      "          'time': 2,\n",
      "          'keanu': 2,\n",
      "          'rather': 2,\n",
      "          'trouble': 2,\n",
      "          'red': 2,\n",
      "          'donofrio': 2,\n",
      "          'far': 2,\n",
      "          'freddies': 2,\n",
      "          'bathroom': 2,\n",
      "          'mutual': 2,\n",
      "          'isnt': 2,\n",
      "          'ready': 2,\n",
      "          'let': 2,\n",
      "          'go': 2,\n",
      "          'without': 2,\n",
      "          'fight': 2,\n",
      "          'begins': 2,\n",
      "          'nthere': 2,\n",
      "          'sibling': 2,\n",
      "          'rivalry': 2,\n",
      "          'nit': 2,\n",
      "          'life': 2,\n",
      "          'trying': 2,\n",
      "          'family': 2,\n",
      "          'nthe': 2,\n",
      "          'moments': 2,\n",
      "          'funny': 2,\n",
      "          'expect': 2,\n",
      "          'ni': 2,\n",
      "          'didnt': 2,\n",
      "          'got': 2,\n",
      "          'line': 2,\n",
      "          'films': 2,\n",
      "          'gags': 2,\n",
      "          'brutality': 2,\n",
      "          'becomes': 2,\n",
      "          'come': 2,\n",
      "          'turns': 2,\n",
      "          'performance': 2,\n",
      "          'fault': 2,\n",
      "          'recall': 1,\n",
      "          'previous': 1,\n",
      "          'experience': 1,\n",
      "          'fairly': 1,\n",
      "          'good': 1,\n",
      "          'turned': 1,\n",
      "          'sour': 1,\n",
      "          'quickly': 1,\n",
      "          'nfor': 1,\n",
      "          'forty': 1,\n",
      "          'minutes': 1,\n",
      "          'lured': 1,\n",
      "          'loopy': 1,\n",
      "          'occasionally': 1,\n",
      "          'overwrought': 1,\n",
      "          'comedy': 1,\n",
      "          'even': 1,\n",
      "          'giving': 1,\n",
      "          'benefit': 1,\n",
      "          'doubt': 1,\n",
      "          'nthen': 1,\n",
      "          'suddenly': 1,\n",
      "          'clubbed': 1,\n",
      "          'head': 1,\n",
      "          'nasty': 1,\n",
      "          'bit': 1,\n",
      "          'violence': 1,\n",
      "          'shortly': 1,\n",
      "          'thereafter': 1,\n",
      "          'whacked': 1,\n",
      "          'gut': 1,\n",
      "          'made': 1,\n",
      "          'feel': 1,\n",
      "          'violated': 1,\n",
      "          'though': 1,\n",
      "          'trusted': 1,\n",
      "          'writerdirector': 1,\n",
      "          'steven': 1,\n",
      "          'bring': 1,\n",
      "          'cool': 1,\n",
      "          'glass': 1,\n",
      "          'water': 1,\n",
      "          'instead': 1,\n",
      "          'threw': 1,\n",
      "          'acid': 1,\n",
      "          'face': 1,\n",
      "          'tells': 1,\n",
      "          'topless': 1,\n",
      "          'dancer': 1,\n",
      "          'named': 1,\n",
      "          'cameron': 1,\n",
      "          'diaz': 1,\n",
      "          'finds': 1,\n",
      "          'deep': 1,\n",
      "          'boss': 1,\n",
      "          'delroy': 1,\n",
      "          'lindo': 1,\n",
      "          'suspects': 1,\n",
      "          'stealing': 1,\n",
      "          'nreds': 1,\n",
      "          'punishment': 1,\n",
      "          'force': 1,\n",
      "          'marry': 1,\n",
      "          'bookkeeper': 1,\n",
      "          'clayton': 1,\n",
      "          'vincent': 1,\n",
      "          'man': 1,\n",
      "          'dreams': 1,\n",
      "          'nenter': 1,\n",
      "          'estranged': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'arrives': 1,\n",
      "          'catch': 1,\n",
      "          'eye': 1,\n",
      "          'sex': 1,\n",
      "          'nunited': 1,\n",
      "          'attraction': 1,\n",
      "          'loathing': 1,\n",
      "          'take': 1,\n",
      "          'together': 1,\n",
      "          'nfreddie': 1,\n",
      "          'meanwhile': 1,\n",
      "          'money': 1,\n",
      "          'thus': 1,\n",
      "          'series': 1,\n",
      "          'violent': 1,\n",
      "          'confrontations': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'beginning': 1,\n",
      "          'opens': 1,\n",
      "          'effective': 1,\n",
      "          'montage': 1,\n",
      "          'showing': 1,\n",
      "          'intense': 1,\n",
      "          'boys': 1,\n",
      "          'mother': 1,\n",
      "          'tuesday': 1,\n",
      "          'weld': 1,\n",
      "          'sending': 1,\n",
      "          'away': 1,\n",
      "          'live': 1,\n",
      "          'father': 1,\n",
      "          'great': 1,\n",
      "          'job': 1,\n",
      "          'setting': 1,\n",
      "          'unstable': 1,\n",
      "          'landed': 1,\n",
      "          'petty': 1,\n",
      "          'crimes': 1,\n",
      "          'always': 1,\n",
      "          'please': 1,\n",
      "          'wounded': 1,\n",
      "          'look': 1,\n",
      "          'right': 1,\n",
      "          'sequence': 1,\n",
      "          'includes': 1,\n",
      "          'number': 1,\n",
      "          'nice': 1,\n",
      "          'notably': 1,\n",
      "          'aforementioned': 1,\n",
      "          'simple': 1,\n",
      "          'question': 1,\n",
      "          'given': 1,\n",
      "          'spin': 1,\n",
      "          'nmost': 1,\n",
      "          'important': 1,\n",
      "          'establish': 1,\n",
      "          'connection': 1,\n",
      "          'humor': 1,\n",
      "          'economy': 1,\n",
      "          'spontaneously': 1,\n",
      "          'begin': 1,\n",
      "          'singing': 1,\n",
      "          'along': 1,\n",
      "          'replacements': 1,\n",
      "          'dare': 1,\n",
      "          'car': 1,\n",
      "          'radio': 1,\n",
      "          'nyou': 1,\n",
      "          'every': 1,\n",
      "          'reason': 1,\n",
      "          'relationships': 1,\n",
      "          'familial': 1,\n",
      "          'focal': 1,\n",
      "          'point': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'dead': 1,\n",
      "          'wrong': 1,\n",
      "          'suppose': 1,\n",
      "          'expected': 1,\n",
      "          'daisies': 1,\n",
      "          'valentines': 1,\n",
      "          'early': 1,\n",
      "          'threatens': 1,\n",
      "          'tries': 1,\n",
      "          'avoid': 1,\n",
      "          'certainly': 1,\n",
      "          'nwhat': 1,\n",
      "          'yet': 1,\n",
      "          'long': 1,\n",
      "          'recent': 1,\n",
      "          'ride': 1,\n",
      "          'tarantino': 1,\n",
      "          'wave': 1,\n",
      "          'mixing': 1,\n",
      "          'creating': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'entanglements': 1,\n",
      "          'conflict': 1,\n",
      "          'corpse': 1,\n",
      "          'everything': 1,\n",
      "          'degenerates': 1,\n",
      "          'completely': 1,\n",
      "          'virtually': 1,\n",
      "          'nothing': 1,\n",
      "          'recognizable': 1,\n",
      "          'little': 1,\n",
      "          'excuse': 1,\n",
      "          'one': 1,\n",
      "          'round': 1,\n",
      "          'beatings': 1,\n",
      "          'consistency': 1,\n",
      "          'characterizations': 1,\n",
      "          'nvincent': 1,\n",
      "          'manic': 1,\n",
      "          'whose': 1,\n",
      "          'jealousy': 1,\n",
      "          'competitiveness': 1,\n",
      "          'apparent': 1,\n",
      "          'sense': 1,\n",
      "          'inferiority': 1,\n",
      "          'seem': 1,\n",
      "          'keeping': 1,\n",
      "          'know': 1,\n",
      "          'framed': 1,\n",
      "          'hero': 1,\n",
      "          'reminiscent': 1,\n",
      "          'chain': 1,\n",
      "          'reaction': 1,\n",
      "          'spend': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'screaming': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'managed': 1,\n",
      "          'employ': 1,\n",
      "          'radical': 1,\n",
      "          'shift': 1,\n",
      "          'tone': 1,\n",
      "          'successfully': 1,\n",
      "          'jonathan': 1,\n",
      "          'demmes': 1,\n",
      "          'something': 1,\n",
      "          'wild': 1,\n",
      "          'neil': 1,\n",
      "          'jordans': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          'mind': 1,\n",
      "          'try': 1,\n",
      "          'draw': 1,\n",
      "          'audience': 1,\n",
      "          'promise': 1,\n",
      "          'relatively': 1,\n",
      "          'innocuous': 1,\n",
      "          'entertainment': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'dismiss': 1,\n",
      "          'baigelmans': 1,\n",
      "          'successes': 1,\n",
      "          'hand': 1,\n",
      "          'gets': 1,\n",
      "          'fun': 1,\n",
      "          'dan': 1,\n",
      "          'aykroyd': 1,\n",
      "          'crooked': 1,\n",
      "          'cop': 1,\n",
      "          'wellcrafted': 1,\n",
      "          'comic': 1,\n",
      "          'fine': 1,\n",
      "          'chosen': 1,\n",
      "          'promote': 1,\n",
      "          'lighthearted': 1,\n",
      "          'caper': 1,\n",
      "          '_is_': 1,\n",
      "          'violates': 1,\n",
      "          'characters': 1,\n",
      "          'sake': 1,\n",
      "          'shock': 1,\n",
      "          'value': 1,\n",
      "          'make': 1,\n",
      "          'two': 1,\n",
      "          'halves': 1,\n",
      "          'whole': 1,\n",
      "          'left': 1,\n",
      "          'used': 1,\n",
      "          'theres': 1,\n",
      "          'much': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'storm': 7,\n",
      "          'perfect': 5,\n",
      "          'nthe': 5,\n",
      "          'film': 4,\n",
      "          'never': 4,\n",
      "          'hes': 4,\n",
      "          'story': 3,\n",
      "          'ni': 3,\n",
      "          'characters': 3,\n",
      "          'movie': 3,\n",
      "          'guy': 3,\n",
      "          'know': 3,\n",
      "          'latest': 2,\n",
      "          'nit': 2,\n",
      "          'good': 2,\n",
      "          'try': 2,\n",
      "          'much': 2,\n",
      "          'tell': 2,\n",
      "          'crew': 2,\n",
      "          'boat': 2,\n",
      "          'andrea': 2,\n",
      "          'gail': 2,\n",
      "          'petersen': 2,\n",
      "          'nso': 2,\n",
      "          'want': 2,\n",
      "          'see': 2,\n",
      "          'survival': 2,\n",
      "          'get': 2,\n",
      "          'john': 2,\n",
      "          'hawkes': 2,\n",
      "          'remaining': 2,\n",
      "          'character': 2,\n",
      "          'given': 2,\n",
      "          'supposed': 2,\n",
      "          'one': 2,\n",
      "          'would': 2,\n",
      "          'real': 2,\n",
      "          'wolfgang': 1,\n",
      "          'petersens': 1,\n",
      "          'like': 1,\n",
      "          'pineapple': 1,\n",
      "          'tastes': 1,\n",
      "          'arduous': 1,\n",
      "          'peeling': 1,\n",
      "          'digging': 1,\n",
      "          'eat': 1,\n",
      "          'fruit': 1,\n",
      "          'spikes': 1,\n",
      "          'going': 1,\n",
      "          'hurt': 1,\n",
      "          'quite': 1,\n",
      "          'bit': 1,\n",
      "          'nok': 1,\n",
      "          'maybe': 1,\n",
      "          'confusing': 1,\n",
      "          'analogy': 1,\n",
      "          'heres': 1,\n",
      "          'main': 1,\n",
      "          'complaint': 1,\n",
      "          'man': 1,\n",
      "          'battles': 1,\n",
      "          'nature': 1,\n",
      "          'flick': 1,\n",
      "          'isnt': 1,\n",
      "          'really': 1,\n",
      "          'nbasically': 1,\n",
      "          'massachusetts': 1,\n",
      "          'fishing': 1,\n",
      "          'goes': 1,\n",
      "          'sea': 1,\n",
      "          'small': 1,\n",
      "          'called': 1,\n",
      "          'gets': 1,\n",
      "          'stuck': 1,\n",
      "          'middle': 1,\n",
      "          'century': 1,\n",
      "          'nhow': 1,\n",
      "          'time': 1,\n",
      "          'take': 1,\n",
      "          'nnot': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'spends': 1,\n",
      "          'majority': 1,\n",
      "          'developing': 1,\n",
      "          'pointless': 1,\n",
      "          'side': 1,\n",
      "          'stories': 1,\n",
      "          'eventually': 1,\n",
      "          'become': 1,\n",
      "          'superfluous': 1,\n",
      "          'naudiences': 1,\n",
      "          'fight': 1,\n",
      "          'lot': 1,\n",
      "          'cliched': 1,\n",
      "          'maudlin': 1,\n",
      "          'drivel': 1,\n",
      "          'last': 1,\n",
      "          'quarter': 1,\n",
      "          'utterly': 1,\n",
      "          'every': 1,\n",
      "          'aspect': 1,\n",
      "          'lasting': 1,\n",
      "          'first': 1,\n",
      "          'threequarters': 1,\n",
      "          'yet': 1,\n",
      "          'read': 1,\n",
      "          'sebastian': 1,\n",
      "          'jungers': 1,\n",
      "          'heard': 1,\n",
      "          'unforgettable': 1,\n",
      "          'tale': 1,\n",
      "          'nbased': 1,\n",
      "          'true': 1,\n",
      "          'book': 1,\n",
      "          'must': 1,\n",
      "          'found': 1,\n",
      "          'way': 1,\n",
      "          'introduce': 1,\n",
      "          'version': 1,\n",
      "          'approach': 1,\n",
      "          'weak': 1,\n",
      "          'nusing': 1,\n",
      "          'wonderfully': 1,\n",
      "          'patriotic': 1,\n",
      "          'score': 1,\n",
      "          'james': 1,\n",
      "          'horner': 1,\n",
      "          'almost': 1,\n",
      "          'hides': 1,\n",
      "          'inyourface': 1,\n",
      "          'banality': 1,\n",
      "          'nright': 1,\n",
      "          'away': 1,\n",
      "          'central': 1,\n",
      "          'introduced': 1,\n",
      "          'gritty': 1,\n",
      "          'determined': 1,\n",
      "          'captain': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'ingenue': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'torn': 1,\n",
      "          'job': 1,\n",
      "          'girlfriend': 1,\n",
      "          'diane': 1,\n",
      "          'lane': 1,\n",
      "          'loving': 1,\n",
      "          'father': 1,\n",
      "          'c': 1,\n",
      "          'reilly': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'whos': 1,\n",
      "          'always': 1,\n",
      "          'trying': 1,\n",
      "          'laid': 1,\n",
      "          'new': 1,\n",
      "          'william': 1,\n",
      "          'fichtner': 1,\n",
      "          'immediately': 1,\n",
      "          'antagonizes': 1,\n",
      "          'crewmate': 1,\n",
      "          'quiet': 1,\n",
      "          'french': 1,\n",
      "          'allen': 1,\n",
      "          'payne': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'strike': 1,\n",
      "          'opening': 1,\n",
      "          'segment': 1,\n",
      "          'portions': 1,\n",
      "          'directly': 1,\n",
      "          'suffer': 1,\n",
      "          'allstar': 1,\n",
      "          'casts': 1,\n",
      "          'fault': 1,\n",
      "          'designed': 1,\n",
      "          'portrayal': 1,\n",
      "          'nallen': 1,\n",
      "          'paynes': 1,\n",
      "          'speaks': 1,\n",
      "          'entire': 1,\n",
      "          'mute': 1,\n",
      "          'lines': 1,\n",
      "          'nare': 1,\n",
      "          'root': 1,\n",
      "          'whose': 1,\n",
      "          'face': 1,\n",
      "          'voice': 1,\n",
      "          'chance': 1,\n",
      "          'interact': 1,\n",
      "          'nfichtners': 1,\n",
      "          'terribly': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'dont': 1,\n",
      "          'four': 1,\n",
      "          'fishermen': 1,\n",
      "          'cardboard': 1,\n",
      "          'stereotypes': 1,\n",
      "          'says': 1,\n",
      "          'female': 1,\n",
      "          'stranger': 1,\n",
      "          'scene': 1,\n",
      "          'look': 1,\n",
      "          'nme': 1,\n",
      "          'nooooh': 1,\n",
      "          'creative': 1,\n",
      "          'nas': 1,\n",
      "          'script': 1,\n",
      "          'advances': 1,\n",
      "          'floats': 1,\n",
      "          'farther': 1,\n",
      "          'waters': 1,\n",
      "          'continues': 1,\n",
      "          'feel': 1,\n",
      "          'human': 1,\n",
      "          'nonly': 1,\n",
      "          'takes': 1,\n",
      "          'center': 1,\n",
      "          'stage': 1,\n",
      "          'jump': 1,\n",
      "          'sleepwalk': 1,\n",
      "          'computergenerated': 1,\n",
      "          'images': 1,\n",
      "          'gigantic': 1,\n",
      "          'waves': 1,\n",
      "          'crashing': 1,\n",
      "          'helpless': 1,\n",
      "          'thunderously': 1,\n",
      "          'imagine': 1,\n",
      "          'imax': 1,\n",
      "          'city': 1,\n",
      "          'kid': 1,\n",
      "          'surely': 1,\n",
      "          'go': 1,\n",
      "          'water': 1,\n",
      "          'nthis': 1,\n",
      "          'loud': 1,\n",
      "          'jolting': 1,\n",
      "          'entertainment': 1,\n",
      "          'adjectives': 1,\n",
      "          'completely': 1,\n",
      "          'negate': 1,\n",
      "          'rest': 1,\n",
      "          'unfortunately': 1,\n",
      "          'disappointment': 1,\n",
      "          'maelstrom': 1,\n",
      "          'lived': 1,\n",
      "          'potential': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'failed': 1,\n",
      "          'guess': 1,\n",
      "          'ill': 1,\n",
      "          'stick': 1,\n",
      "          'spectacle': 1,\n",
      "          'cbs': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'fatal': 6,\n",
      "          'charm': 6,\n",
      "          'film': 6,\n",
      "          'valerie': 5,\n",
      "          'school': 5,\n",
      "          'bad': 4,\n",
      "          'alan': 4,\n",
      "          'smithee': 4,\n",
      "          'erotic': 4,\n",
      "          'high': 3,\n",
      "          'doesnt': 3,\n",
      "          'plays': 3,\n",
      "          'see': 3,\n",
      "          'killer': 3,\n",
      "          'directed': 3,\n",
      "          'nif': 3,\n",
      "          'seriously': 3,\n",
      "          'watching': 3,\n",
      "          'something': 3,\n",
      "          'thriller': 3,\n",
      "          'valeries': 3,\n",
      "          'nthe': 3,\n",
      "          'atkins': 3,\n",
      "          'adam': 3,\n",
      "          'suspect': 3,\n",
      "          'look': 2,\n",
      "          'poetry': 2,\n",
      "          'much': 2,\n",
      "          'sunglasses': 2,\n",
      "          'wears': 2,\n",
      "          'halfbuttoned': 2,\n",
      "          'jacket': 2,\n",
      "          'consider': 2,\n",
      "          'number': 2,\n",
      "          'turkey': 2,\n",
      "          'understand': 2,\n",
      "          'poor': 2,\n",
      "          'nits': 2,\n",
      "          'though': 2,\n",
      "          'isnt': 2,\n",
      "          'still': 2,\n",
      "          'scenes': 2,\n",
      "          'mother': 2,\n",
      "          'theyre': 2,\n",
      "          'second': 2,\n",
      "          'dangerous': 2,\n",
      "          'large': 2,\n",
      "          'would': 2,\n",
      "          'given': 2,\n",
      "          'people': 2,\n",
      "          'one': 2,\n",
      "          'time': 2,\n",
      "          'nfatal': 2,\n",
      "          'obvious': 2,\n",
      "          'place': 2,\n",
      "          'na': 2,\n",
      "          'ni': 2,\n",
      "          'someone': 2,\n",
      "          'english': 2,\n",
      "          'literature': 2,\n",
      "          'class': 2,\n",
      "          'course': 2,\n",
      "          'students': 2,\n",
      "          'synopsis': 1,\n",
      "          'junior': 1,\n",
      "          'day': 1,\n",
      "          '22': 1,\n",
      "          'writes': 1,\n",
      "          'complains': 1,\n",
      "          'hates': 1,\n",
      "          'fantasizes': 1,\n",
      "          'young': 1,\n",
      "          'guy': 1,\n",
      "          'trial': 1,\n",
      "          'raping': 1,\n",
      "          'murdering': 1,\n",
      "          'six': 1,\n",
      "          'women': 1,\n",
      "          'chooses': 1,\n",
      "          'pen': 1,\n",
      "          'pal': 1,\n",
      "          'hooky': 1,\n",
      "          'court': 1,\n",
      "          'nafter': 1,\n",
      "          'jailbreak': 1,\n",
      "          'puts': 1,\n",
      "          'big': 1,\n",
      "          'uses': 1,\n",
      "          'go': 1,\n",
      "          'ncomments': 1,\n",
      "          'appropriately': 1,\n",
      "          'titled': 1,\n",
      "          'bore': 1,\n",
      "          'crap': 1,\n",
      "          'find': 1,\n",
      "          'youre': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'n': 1,\n",
      "          'pseudonym': 1,\n",
      "          'directors': 1,\n",
      "          'used': 1,\n",
      "          'produce': 1,\n",
      "          'really': 1,\n",
      "          'nfrankly': 1,\n",
      "          'id': 1,\n",
      "          'embarrassed': 1,\n",
      "          'think': 1,\n",
      "          'director': 1,\n",
      "          'might': 1,\n",
      "          'picked': 1,\n",
      "          'moniker': 1,\n",
      "          'nwhere': 1,\n",
      "          'begin': 1,\n",
      "          'painfully': 1,\n",
      "          'nlets': 1,\n",
      "          'start': 1,\n",
      "          'acting': 1,\n",
      "          'pretty': 1,\n",
      "          'namanda': 1,\n",
      "          'peterson': 1,\n",
      "          'shows': 1,\n",
      "          'least': 1,\n",
      "          'talent': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'dont': 1,\n",
      "          'even': 1,\n",
      "          'performance': 1,\n",
      "          'exactly': 1,\n",
      "          'stellar': 1,\n",
      "          'material': 1,\n",
      "          'nshes': 1,\n",
      "          'also': 1,\n",
      "          'miscast': 1,\n",
      "          'seems': 1,\n",
      "          'way': 1,\n",
      "          'old': 1,\n",
      "          'year': 1,\n",
      "          'complete': 1,\n",
      "          'nher': 1,\n",
      "          'played': 1,\n",
      "          'mary': 1,\n",
      "          'frann': 1,\n",
      "          'joke': 1,\n",
      "          'two': 1,\n",
      "          'couple': 1,\n",
      "          'coworkers': 1,\n",
      "          'going': 1,\n",
      "          'lunch': 1,\n",
      "          'together': 1,\n",
      "          'rather': 1,\n",
      "          'daughter': 1,\n",
      "          'nchristopher': 1,\n",
      "          'handsome': 1,\n",
      "          'enough': 1,\n",
      "          'actor': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'clown': 1,\n",
      "          'half': 1,\n",
      "          'ntrying': 1,\n",
      "          'appear': 1,\n",
      "          'malicious': 1,\n",
      "          'disney': 1,\n",
      "          'decided': 1,\n",
      "          'zany': 1,\n",
      "          'comedy': 1,\n",
      "          'caper': 1,\n",
      "          'unabomber': 1,\n",
      "          'probably': 1,\n",
      "          'perfect': 1,\n",
      "          'candidate': 1,\n",
      "          'lead': 1,\n",
      "          'cut': 1,\n",
      "          'nearly': 1,\n",
      "          'movie': 1,\n",
      "          'occurs': 1,\n",
      "          'courtroom': 1,\n",
      "          'noutside': 1,\n",
      "          'laughably': 1,\n",
      "          'performances': 1,\n",
      "          'actors': 1,\n",
      "          'portraying': 1,\n",
      "          'lawyers': 1,\n",
      "          'sitting': 1,\n",
      "          'benches': 1,\n",
      "          'provide': 1,\n",
      "          'silliest': 1,\n",
      "          'effort': 1,\n",
      "          'drama': 1,\n",
      "          'nthey': 1,\n",
      "          'constantly': 1,\n",
      "          'shift': 1,\n",
      "          'turn': 1,\n",
      "          'arc': 1,\n",
      "          'heads': 1,\n",
      "          'mock': 1,\n",
      "          'interest': 1,\n",
      "          'got': 1,\n",
      "          'worst': 1,\n",
      "          'perfomances': 1,\n",
      "          'group': 1,\n",
      "          'ever': 1,\n",
      "          'charms': 1,\n",
      "          'storyline': 1,\n",
      "          'inspires': 1,\n",
      "          'yawns': 1,\n",
      "          'thrills': 1,\n",
      "          'script': 1,\n",
      "          'belabors': 1,\n",
      "          'red': 1,\n",
      "          'herring': 1,\n",
      "          'early': 1,\n",
      "          'may': 1,\n",
      "          'committed': 1,\n",
      "          'murders': 1,\n",
      "          'charged': 1,\n",
      "          'nthis': 1,\n",
      "          'however': 1,\n",
      "          'turns': 1,\n",
      "          'strangled': 1,\n",
      "          'drowned': 1,\n",
      "          'halfway': 1,\n",
      "          'plot': 1,\n",
      "          'fault': 1,\n",
      "          'neven': 1,\n",
      "          'idiots': 1,\n",
      "          'didnt': 1,\n",
      "          'movies': 1,\n",
      "          'title': 1,\n",
      "          'blond': 1,\n",
      "          'newsreporter': 1,\n",
      "          'commented': 1,\n",
      "          'innocent': 1,\n",
      "          'charming': 1,\n",
      "          'defendant': 1,\n",
      "          'seemed': 1,\n",
      "          'becomes': 1,\n",
      "          'quite': 1,\n",
      "          'washes': 1,\n",
      "          'nso': 1,\n",
      "          'audience': 1,\n",
      "          'must': 1,\n",
      "          'wait': 1,\n",
      "          'havent': 1,\n",
      "          'already': 1,\n",
      "          'stopped': 1,\n",
      "          'necessary': 1,\n",
      "          'details': 1,\n",
      "          'fall': 1,\n",
      "          'goes': 1,\n",
      "          'heroine': 1,\n",
      "          'drawnout': 1,\n",
      "          'finale': 1,\n",
      "          'video': 1,\n",
      "          'box': 1,\n",
      "          'dud': 1,\n",
      "          'describes': 1,\n",
      "          'neither': 1,\n",
      "          'particularly': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'mood': 1,\n",
      "          'hed': 1,\n",
      "          'happy': 1,\n",
      "          'fluff': 1,\n",
      "          'moments': 1,\n",
      "          'occur': 1,\n",
      "          'take': 1,\n",
      "          'van': 1,\n",
      "          'little': 1,\n",
      "          'lighting': 1,\n",
      "          'filmed': 1,\n",
      "          'focus': 1,\n",
      "          'supposed': 1,\n",
      "          'fantasies': 1,\n",
      "          'creative': 1,\n",
      "          'non': 1,\n",
      "          'personal': 1,\n",
      "          'note': 1,\n",
      "          'disturbed': 1,\n",
      "          'ludicrous': 1,\n",
      "          'shown': 1,\n",
      "          'suffer': 1,\n",
      "          'wonder': 1,\n",
      "          'hated': 1,\n",
      "          'nas': 1,\n",
      "          'instructor': 1,\n",
      "          'hard': 1,\n",
      "          'accepting': 1,\n",
      "          'fact': 1,\n",
      "          'emphasizing': 1,\n",
      "          'great': 1,\n",
      "          'teacher': 1,\n",
      "          'stoop': 1,\n",
      "          'reading': 1,\n",
      "          'boyfriends': 1,\n",
      "          'loud': 1,\n",
      "          'embarassing': 1,\n",
      "          'author': 1,\n",
      "          'front': 1,\n",
      "          'questions': 1,\n",
      "          'poems': 1,\n",
      "          'inspiration': 1,\n",
      "          'guess': 1,\n",
      "          'public': 1,\n",
      "          'system': 1,\n",
      "          'setting': 1,\n",
      "          'dubious': 1,\n",
      "          'standards': 1,\n",
      "          'wont': 1,\n",
      "          'anyone': 1,\n",
      "          'unless': 1,\n",
      "          'theres': 1,\n",
      "          'thats': 1,\n",
      "          'charmed': 1,\n",
      "          'boring': 1,\n",
      "          'lifeless': 1,\n",
      "          'insipid': 1,\n",
      "          'suspenseless': 1,\n",
      "          'thrillers': 1,\n",
      "          'happen': 1,\n",
      "          'upon': 1,\n",
      "          'keep': 1,\n",
      "          'moving': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'nthe': 6,\n",
      "          'highly': 5,\n",
      "          'form': 5,\n",
      "          'story': 5,\n",
      "          'life': 4,\n",
      "          'russian': 3,\n",
      "          'vessel': 3,\n",
      "          'simply': 3,\n",
      "          'predictable': 3,\n",
      "          'advanced': 3,\n",
      "          'crew': 3,\n",
      "          'tug': 3,\n",
      "          'characters': 3,\n",
      "          'one': 3,\n",
      "          'typhoon': 3,\n",
      "          'original': 2,\n",
      "          'scifi': 2,\n",
      "          'thriller': 2,\n",
      "          'takes': 2,\n",
      "          'control': 2,\n",
      "          'creating': 2,\n",
      "          'full': 2,\n",
      "          'makes': 2,\n",
      "          'irrational': 2,\n",
      "          'choice': 2,\n",
      "          'looks': 2,\n",
      "          'add': 2,\n",
      "          'seems': 2,\n",
      "          'barely': 2,\n",
      "          'seem': 2,\n",
      "          'always': 2,\n",
      "          'nthis': 2,\n",
      "          'away': 2,\n",
      "          'extremely': 2,\n",
      "          'flaws': 2,\n",
      "          'actual': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'waves': 2,\n",
      "          'robotics': 2,\n",
      "          'move': 2,\n",
      "          'able': 2,\n",
      "          'create': 2,\n",
      "          'nas': 2,\n",
      "          'actors': 2,\n",
      "          'would': 2,\n",
      "          'going': 2,\n",
      "          'intelligent': 1,\n",
      "          'completely': 1,\n",
      "          'electronic': 1,\n",
      "          'nature': 1,\n",
      "          'beams': 1,\n",
      "          'onto': 1,\n",
      "          'science': 1,\n",
      "          'nwell': 1,\n",
      "          'point': 1,\n",
      "          'strays': 1,\n",
      "          'becoming': 1,\n",
      "          'decent': 1,\n",
      "          'becomes': 1,\n",
      "          'nanyhow': 1,\n",
      "          'computers': 1,\n",
      "          'starts': 1,\n",
      "          'robots': 1,\n",
      "          'help': 1,\n",
      "          'gruesome': 1,\n",
      "          'task': 1,\n",
      "          'exterminating': 1,\n",
      "          'virus': 1,\n",
      "          'known': 1,\n",
      "          'man': 1,\n",
      "          'exterminated': 1,\n",
      "          'hapless': 1,\n",
      "          'discovers': 1,\n",
      "          'derelict': 1,\n",
      "          'ship': 1,\n",
      "          'tries': 1,\n",
      "          'salvage': 1,\n",
      "          'nno': 1,\n",
      "          'needs': 1,\n",
      "          'said': 1,\n",
      "          'happens': 1,\n",
      "          'conflict': 1,\n",
      "          'lies': 1,\n",
      "          'shallow': 1,\n",
      "          'dont': 1,\n",
      "          'much': 1,\n",
      "          'subsist': 1,\n",
      "          'captain': 1,\n",
      "          'played': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'leaving': 1,\n",
      "          'audience': 1,\n",
      "          'wondering': 1,\n",
      "          'survived': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'reach': 1,\n",
      "          'age': 1,\n",
      "          '60s': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nto': 1,\n",
      "          'shown': 1,\n",
      "          'motley': 1,\n",
      "          'times': 1,\n",
      "          'skilled': 1,\n",
      "          'specific': 1,\n",
      "          'fields': 1,\n",
      "          'others': 1,\n",
      "          'capable': 1,\n",
      "          'basic': 1,\n",
      "          'tasks': 1,\n",
      "          'nsome': 1,\n",
      "          'supposed': 1,\n",
      "          'capabilities': 1,\n",
      "          'leads': 1,\n",
      "          'wonder': 1,\n",
      "          'transporting': 1,\n",
      "          'cargo': 1,\n",
      "          'middle': 1,\n",
      "          'pacific': 1,\n",
      "          'less': 1,\n",
      "          'nnone': 1,\n",
      "          'work': 1,\n",
      "          'together': 1,\n",
      "          'bickering': 1,\n",
      "          'vying': 1,\n",
      "          'sense': 1,\n",
      "          'ever': 1,\n",
      "          'holes': 1,\n",
      "          'nall': 1,\n",
      "          'helped': 1,\n",
      "          'along': 1,\n",
      "          'generated': 1,\n",
      "          'part': 1,\n",
      "          'make': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'boat': 1,\n",
      "          'small': 1,\n",
      "          'model': 1,\n",
      "          'sitting': 1,\n",
      "          'tub': 1,\n",
      "          'someone': 1,\n",
      "          'nit': 1,\n",
      "          'genuinely': 1,\n",
      "          'fake': 1,\n",
      "          'granted': 1,\n",
      "          'trying': 1,\n",
      "          'recreate': 1,\n",
      "          'hurricane': 1,\n",
      "          'easy': 1,\n",
      "          'stretch': 1,\n",
      "          'imagination': 1,\n",
      "          'storm': 1,\n",
      "          'approach': 1,\n",
      "          'style': 1,\n",
      "          'similar': 1,\n",
      "          'huge': 1,\n",
      "          'wave': 1,\n",
      "          'deep': 1,\n",
      "          'impact': 1,\n",
      "          'ends': 1,\n",
      "          'looking': 1,\n",
      "          'corny': 1,\n",
      "          'amateurish': 1,\n",
      "          'nalso': 1,\n",
      "          'topic': 1,\n",
      "          'creates': 1,\n",
      "          'slowly': 1,\n",
      "          'nif': 1,\n",
      "          'faster': 1,\n",
      "          'nregardless': 1,\n",
      "          'many': 1,\n",
      "          'cases': 1,\n",
      "          'take': 1,\n",
      "          'film': 1,\n",
      "          'rather': 1,\n",
      "          'casting': 1,\n",
      "          'finally': 1,\n",
      "          'nothing': 1,\n",
      "          'complain': 1,\n",
      "          'superb': 1,\n",
      "          'doubtful': 1,\n",
      "          'chimpanzees': 1,\n",
      "          'difficulty': 1,\n",
      "          'acting': 1,\n",
      "          'roles': 1,\n",
      "          'nhaving': 1,\n",
      "          'cast': 1,\n",
      "          'present': 1,\n",
      "          'probably': 1,\n",
      "          'saved': 1,\n",
      "          'absolute': 1,\n",
      "          'catastrophe': 1,\n",
      "          'nwatching': 1,\n",
      "          'act': 1,\n",
      "          'made': 1,\n",
      "          'bearable': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'action': 1,\n",
      "          'packed': 1,\n",
      "          'seemed': 1,\n",
      "          'something': 1,\n",
      "          'happening': 1,\n",
      "          'nso': 1,\n",
      "          'expecting': 1,\n",
      "          'see': 1,\n",
      "          'anything': 1,\n",
      "          'grand': 1,\n",
      "          'kill': 1,\n",
      "          'time': 1,\n",
      "          'watch': 1,\n",
      "          'mediocre': 1,\n",
      "          'wont': 1,\n",
      "          'disappointed': 1,\n",
      "          'latest': 1,\n",
      "          'genre': 1,\n",
      "          'originally': 1,\n",
      "          'created': 1,\n",
      "          'aliens': 1,\n",
      "          'little': 1,\n",
      "          'try': 1,\n",
      "          'cash': 1,\n",
      "          'aspect': 1,\n",
      "          'best': 1,\n",
      "          'left': 1,\n",
      "          'video': 1,\n",
      "          'even': 1,\n",
      "          'might': 1,\n",
      "          'advised': 1,\n",
      "          'wait': 1,\n",
      "          'major': 1,\n",
      "          'networks': 1,\n",
      "          'air': 1,\n",
      "          'tv': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 12,\n",
      "          'nthe': 8,\n",
      "          'plot': 8,\n",
      "          'game': 6,\n",
      "          'nit': 5,\n",
      "          'action': 5,\n",
      "          'film': 4,\n",
      "          'nthis': 4,\n",
      "          'like': 4,\n",
      "          'nbut': 3,\n",
      "          'better': 3,\n",
      "          'good': 3,\n",
      "          'watch': 3,\n",
      "          'could': 3,\n",
      "          'raul': 3,\n",
      "          'julia': 3,\n",
      "          'characters': 3,\n",
      "          'based': 2,\n",
      "          'series': 2,\n",
      "          'ok': 2,\n",
      "          'involves': 2,\n",
      "          'mario': 2,\n",
      "          'bros': 2,\n",
      "          'find': 2,\n",
      "          'nso': 2,\n",
      "          'get': 2,\n",
      "          'transported': 2,\n",
      "          'dennis': 2,\n",
      "          'hopper': 2,\n",
      "          'seems': 2,\n",
      "          'sort': 2,\n",
      "          'want': 2,\n",
      "          'starring': 2,\n",
      "          'n': 2,\n",
      "          'fighter': 2,\n",
      "          'jean': 2,\n",
      "          'claude': 2,\n",
      "          'vandamme': 2,\n",
      "          'scenes': 2,\n",
      "          'sets': 2,\n",
      "          'time': 2,\n",
      "          'short': 2,\n",
      "          'flicks': 2,\n",
      "          'wildly': 1,\n",
      "          'popular': 1,\n",
      "          'videogame': 1,\n",
      "          'name': 1,\n",
      "          'nbefore': 1,\n",
      "          'spinoff': 1,\n",
      "          'cartoons': 1,\n",
      "          'idea': 1,\n",
      "          'insane': 1,\n",
      "          'animated': 1,\n",
      "          'done': 1,\n",
      "          'ninstead': 1,\n",
      "          'people': 1,\n",
      "          'best': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'nyet': 1,\n",
      "          'still': 1,\n",
      "          'fails': 1,\n",
      "          'completely': 1,\n",
      "          'different': 1,\n",
      "          'games': 1,\n",
      "          'im': 1,\n",
      "          'complaining': 1,\n",
      "          'story': 1,\n",
      "          'plumbing': 1,\n",
      "          'business': 1,\n",
      "          'brooklyn': 1,\n",
      "          'compete': 1,\n",
      "          'rival': 1,\n",
      "          'company': 1,\n",
      "          'neventually': 1,\n",
      "          'construction': 1,\n",
      "          'site': 1,\n",
      "          'nemesis': 1,\n",
      "          'happens': 1,\n",
      "          'enviromentally': 1,\n",
      "          'unsafe': 1,\n",
      "          'due': 1,\n",
      "          'luigis': 1,\n",
      "          'john': 1,\n",
      "          'leguizamo': 1,\n",
      "          'girlfriend': 1,\n",
      "          'princess': 1,\n",
      "          'daisy': 1,\n",
      "          'go': 1,\n",
      "          'investigate': 1,\n",
      "          'nthey': 1,\n",
      "          'blade': 1,\n",
      "          'runneresque': 1,\n",
      "          'world': 1,\n",
      "          'lead': 1,\n",
      "          'king': 1,\n",
      "          'koopa': 1,\n",
      "          'nsomehow': 1,\n",
      "          'dealing': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'mutated': 1,\n",
      "          'alternate': 1,\n",
      "          'futuristic': 1,\n",
      "          'megacity': 1,\n",
      "          'jumbles': 1,\n",
      "          'fine': 1,\n",
      "          'deserves': 1,\n",
      "          'acting': 1,\n",
      "          'visual': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'especially': 1,\n",
      "          'robotic': 1,\n",
      "          'yoshi': 1,\n",
      "          'nhowever': 1,\n",
      "          'drags': 1,\n",
      "          'fun': 1,\n",
      "          'nand': 1,\n",
      "          'leaves': 1,\n",
      "          'open': 1,\n",
      "          'sequel': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'begins': 1,\n",
      "          'promising': 1,\n",
      "          'ends': 1,\n",
      "          'leaving': 1,\n",
      "          'weird': 1,\n",
      "          'taste': 1,\n",
      "          'mouth': 1,\n",
      "          'odd': 1,\n",
      "          'excellent': 1,\n",
      "          'super': 1,\n",
      "          'nyou': 1,\n",
      "          'worse': 1,\n",
      "          'definitely': 1,\n",
      "          'nstreet': 1,\n",
      "          '1995': 1,\n",
      "          'never': 1,\n",
      "          'ending': 1,\n",
      "          'sequels': 1,\n",
      "          'called': 1,\n",
      "          'street': 1,\n",
      "          '2': 1,\n",
      "          'reasonable': 1,\n",
      "          'nyes': 1,\n",
      "          'watchable': 1,\n",
      "          'nraul': 1,\n",
      "          'job': 1,\n",
      "          'considering': 1,\n",
      "          'final': 1,\n",
      "          'nwhile': 1,\n",
      "          'nonstop': 1,\n",
      "          'fighting': 1,\n",
      "          'sequences': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'flashy': 1,\n",
      "          'costumes': 1,\n",
      "          'trying': 1,\n",
      "          'show': 1,\n",
      "          'ndoes': 1,\n",
      "          'work': 1,\n",
      "          'nsort': 1,\n",
      "          'evil': 1,\n",
      "          'shadowloo': 1,\n",
      "          'organization': 1,\n",
      "          'run': 1,\n",
      "          'bison': 1,\n",
      "          'nguile': 1,\n",
      "          'takes': 1,\n",
      "          'troops': 1,\n",
      "          'attack': 1,\n",
      "          'bisons': 1,\n",
      "          'main': 1,\n",
      "          'base': 1,\n",
      "          'attempt': 1,\n",
      "          'liberate': 1,\n",
      "          'innocent': 1,\n",
      "          'villages': 1,\n",
      "          'taken': 1,\n",
      "          'nin': 1,\n",
      "          'amount': 1,\n",
      "          'introduces': 1,\n",
      "          'several': 1,\n",
      "          'well': 1,\n",
      "          'catches': 1,\n",
      "          'attention': 1,\n",
      "          'ultimately': 1,\n",
      "          'showcase': 1,\n",
      "          'fans': 1,\n",
      "          'point': 1,\n",
      "          'things': 1,\n",
      "          'theres': 1,\n",
      "          'chun': 1,\n",
      "          'li': 1,\n",
      "          'look': 1,\n",
      "          'fireball': 1,\n",
      "          'ryu': 1,\n",
      "          'vega': 1,\n",
      "          'hits': 1,\n",
      "          'bases': 1,\n",
      "          'presenting': 1,\n",
      "          'goes': 1,\n",
      "          'needed': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'exciting': 1,\n",
      "          'nif': 1,\n",
      "          'lighthearted': 1,\n",
      "          'liked': 1,\n",
      "          'one': 1,\n",
      "          'even': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'see': 1,\n",
      "          'julias': 1,\n",
      "          'last': 1,\n",
      "          'performance': 1,\n",
      "          'cant': 1,\n",
      "          'enough': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'nother': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 14,\n",
      "          'studio': 9,\n",
      "          '54': 7,\n",
      "          'people': 5,\n",
      "          'much': 5,\n",
      "          'one': 4,\n",
      "          'character': 4,\n",
      "          'films': 4,\n",
      "          'like': 4,\n",
      "          'never': 4,\n",
      "          'become': 3,\n",
      "          'club': 3,\n",
      "          'thats': 3,\n",
      "          'last': 3,\n",
      "          'us': 3,\n",
      "          'interesting': 3,\n",
      "          'characters': 3,\n",
      "          'nthe': 3,\n",
      "          'story': 3,\n",
      "          'hes': 3,\n",
      "          'scene': 3,\n",
      "          'myers': 3,\n",
      "          'want': 3,\n",
      "          'many': 2,\n",
      "          'life': 2,\n",
      "          'boring': 2,\n",
      "          'mention': 2,\n",
      "          'fascinating': 2,\n",
      "          'populated': 2,\n",
      "          'really': 2,\n",
      "          'make': 2,\n",
      "          'good': 2,\n",
      "          'protagonist': 2,\n",
      "          'n': 2,\n",
      "          'creation': 2,\n",
      "          'subject': 2,\n",
      "          'engrossing': 2,\n",
      "          'summer': 2,\n",
      "          'enough': 2,\n",
      "          'part': 2,\n",
      "          '70s': 2,\n",
      "          'boogie': 2,\n",
      "          'nights': 2,\n",
      "          'days': 2,\n",
      "          'disco': 2,\n",
      "          'time': 2,\n",
      "          'period': 2,\n",
      "          'party': 2,\n",
      "          '80s': 2,\n",
      "          'wakeup': 2,\n",
      "          'real': 2,\n",
      "          'mike': 2,\n",
      "          'clueless': 2,\n",
      "          'others': 2,\n",
      "          'plus': 2,\n",
      "          'could': 2,\n",
      "          'perhaps': 2,\n",
      "          'halfassed': 2,\n",
      "          'named': 2,\n",
      "          'shane': 2,\n",
      "          'phillippe': 2,\n",
      "          'chief': 2,\n",
      "          'bit': 2,\n",
      "          'interest': 2,\n",
      "          'begins': 2,\n",
      "          'get': 2,\n",
      "          'point': 2,\n",
      "          'sole': 2,\n",
      "          'rubell': 2,\n",
      "          'makes': 2,\n",
      "          'saw': 2,\n",
      "          'proves': 2,\n",
      "          'director': 2,\n",
      "          'though': 2,\n",
      "          'direction': 2,\n",
      "          'attracted': 1,\n",
      "          'weird': 1,\n",
      "          'bizarre': 1,\n",
      "          'gates': 1,\n",
      "          'wonder': 1,\n",
      "          'death': 1,\n",
      "          'centers': 1,\n",
      "          'cliched': 1,\n",
      "          'individual': 1,\n",
      "          'ensemble': 1,\n",
      "          'wouldnt': 1,\n",
      "          'unless': 1,\n",
      "          'worked': 1,\n",
      "          'according': 1,\n",
      "          'nare': 1,\n",
      "          'supposed': 1,\n",
      "          'believe': 1,\n",
      "          'strange': 1,\n",
      "          'folk': 1,\n",
      "          'nightly': 1,\n",
      "          'bland': 1,\n",
      "          'ripoff': 1,\n",
      "          'tony': 1,\n",
      "          'manero': 1,\n",
      "          'would': 1,\n",
      "          'belongs': 1,\n",
      "          'elite': 1,\n",
      "          'group': 1,\n",
      "          'known': 1,\n",
      "          'big': 1,\n",
      "          'disappointments': 1,\n",
      "          'attain': 1,\n",
      "          'hype': 1,\n",
      "          'andor': 1,\n",
      "          'potential': 1,\n",
      "          'come': 1,\n",
      "          'worse': 1,\n",
      "          'finally': 1,\n",
      "          'finished': 1,\n",
      "          'ni': 1,\n",
      "          'heavily': 1,\n",
      "          'awaiting': 1,\n",
      "          'least': 1,\n",
      "          'ive': 1,\n",
      "          'fascinated': 1,\n",
      "          'infamous': 1,\n",
      "          'documentary': 1,\n",
      "          'running': 1,\n",
      "          'vh1': 1,\n",
      "          'weirdly': 1,\n",
      "          'intriguing': 1,\n",
      "          'edgy': 1,\n",
      "          'nperhaps': 1,\n",
      "          'importantly': 1,\n",
      "          'blossoming': 1,\n",
      "          'subgenre': 1,\n",
      "          'nostalgia': 1,\n",
      "          'picking': 1,\n",
      "          'mighty': 1,\n",
      "          'steam': 1,\n",
      "          'coming': 1,\n",
      "          'within': 1,\n",
      "          'year': 1,\n",
      "          'damn': 1,\n",
      "          'movies': 1,\n",
      "          'captured': 1,\n",
      "          'feel': 1,\n",
      "          'certain': 1,\n",
      "          'late': 1,\n",
      "          'early': 1,\n",
      "          'brought': 1,\n",
      "          'scotty': 1,\n",
      "          'tragically': 1,\n",
      "          'gay': 1,\n",
      "          'boom': 1,\n",
      "          'operator': 1,\n",
      "          'charlotte': 1,\n",
      "          'ironically': 1,\n",
      "          'bitchy': 1,\n",
      "          'coprotagonist': 1,\n",
      "          'several': 1,\n",
      "          'deals': 1,\n",
      "          'timeline': 1,\n",
      "          'began': 1,\n",
      "          'run': 1,\n",
      "          'ended': 1,\n",
      "          'dealt': 1,\n",
      "          'narrated': 1,\n",
      "          'opening': 1,\n",
      "          'finale': 1,\n",
      "          'interested': 1,\n",
      "          'nthis': 1,\n",
      "          'definite': 1,\n",
      "          'nheres': 1,\n",
      "          '2': 1,\n",
      "          'hour': 1,\n",
      "          'tragic': 1,\n",
      "          'went': 1,\n",
      "          'things': 1,\n",
      "          'diseases': 1,\n",
      "          'economy': 1,\n",
      "          'problems': 1,\n",
      "          'worst': 1,\n",
      "          'reagan': 1,\n",
      "          'hit': 1,\n",
      "          'forced': 1,\n",
      "          'everyone': 1,\n",
      "          'rude': 1,\n",
      "          'awakening': 1,\n",
      "          'tragedy': 1,\n",
      "          'lets': 1,\n",
      "          'look': 1,\n",
      "          'affected': 1,\n",
      "          'nbut': 1,\n",
      "          'doesnt': 1,\n",
      "          'let': 1,\n",
      "          'happen': 1,\n",
      "          'nit': 1,\n",
      "          'gives': 1,\n",
      "          'oshea': 1,\n",
      "          'ryan': 1,\n",
      "          'know': 1,\n",
      "          'whos': 1,\n",
      "          'trait': 1,\n",
      "          'fact': 1,\n",
      "          'new': 1,\n",
      "          'jersey': 1,\n",
      "          'also': 1,\n",
      "          'happens': 1,\n",
      "          'flaw': 1,\n",
      "          'guess': 1,\n",
      "          'nhes': 1,\n",
      "          'dimwitted': 1,\n",
      "          'soon': 1,\n",
      "          'finds': 1,\n",
      "          'rave': 1,\n",
      "          'amongst': 1,\n",
      "          'regulars': 1,\n",
      "          'nbit': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'fever': 1,\n",
      "          'cept': 1,\n",
      "          'travolta': 1,\n",
      "          'put': 1,\n",
      "          'npoor': 1,\n",
      "          'poor': 1,\n",
      "          'struggles': 1,\n",
      "          'ticket': 1,\n",
      "          'glimpse': 1,\n",
      "          'decadence': 1,\n",
      "          'going': 1,\n",
      "          'inside': 1,\n",
      "          'nshane': 1,\n",
      "          'hang': 1,\n",
      "          'denizens': 1,\n",
      "          'anita': 1,\n",
      "          'salma': 1,\n",
      "          'hayek': 1,\n",
      "          'wannabe': 1,\n",
      "          'donna': 1,\n",
      "          'sommers': 1,\n",
      "          'young': 1,\n",
      "          'hubby': 1,\n",
      "          'greg': 1,\n",
      "          'randanzo': 1,\n",
      "          'breckin': 1,\n",
      "          'meyer': 1,\n",
      "          'helps': 1,\n",
      "          'bartender': 1,\n",
      "          'rise': 1,\n",
      "          'fame': 1,\n",
      "          'nalthough': 1,\n",
      "          'somewhere': 1,\n",
      "          'sleeps': 1,\n",
      "          'foxy': 1,\n",
      "          'billie': 1,\n",
      "          'auster': 1,\n",
      "          'sela': 1,\n",
      "          'ward': 1,\n",
      "          'exec': 1,\n",
      "          'sorts': 1,\n",
      "          'falls': 1,\n",
      "          'lust': 1,\n",
      "          'soap': 1,\n",
      "          'star': 1,\n",
      "          'julie': 1,\n",
      "          'black': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'thus': 1,\n",
      "          'romance': 1,\n",
      "          'subplot': 1,\n",
      "          'necessarily': 1,\n",
      "          'important': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'becomes': 1,\n",
      "          'major': 1,\n",
      "          'strongpoint': 1,\n",
      "          'alltoo': 1,\n",
      "          'necesary': 1,\n",
      "          'personage': 1,\n",
      "          'steve': 1,\n",
      "          'played': 1,\n",
      "          'heard': 1,\n",
      "          'nrubell': 1,\n",
      "          'famous': 1,\n",
      "          'head': 1,\n",
      "          'acted': 1,\n",
      "          'stopped': 1,\n",
      "          'partying': 1,\n",
      "          'ever': 1,\n",
      "          'easy': 1,\n",
      "          'metaphor': 1,\n",
      "          'times': 1,\n",
      "          'thanks': 1,\n",
      "          'surprisingly': 1,\n",
      "          'strong': 1,\n",
      "          'performance': 1,\n",
      "          'nnotice': 1,\n",
      "          'scenes': 1,\n",
      "          'shocking': 1,\n",
      "          'tries': 1,\n",
      "          'felatio': 1,\n",
      "          'male': 1,\n",
      "          'employees': 1,\n",
      "          'turn': 1,\n",
      "          'promotion': 1,\n",
      "          'brings': 1,\n",
      "          'humanity': 1,\n",
      "          'couple': 1,\n",
      "          'whove': 1,\n",
      "          'seen': 1,\n",
      "          'tv': 1,\n",
      "          'aspect': 1,\n",
      "          'actually': 1,\n",
      "          'nails': 1,\n",
      "          'nfirst': 1,\n",
      "          'feature': 1,\n",
      "          'mark': 1,\n",
      "          'christopher': 1,\n",
      "          'better': 1,\n",
      "          'writer': 1,\n",
      "          'terribly': 1,\n",
      "          'nhis': 1,\n",
      "          'trite': 1,\n",
      "          'shallow': 1,\n",
      "          'shockingly': 1,\n",
      "          'flat': 1,\n",
      "          'especially': 1,\n",
      "          'nits': 1,\n",
      "          'great': 1,\n",
      "          'tell': 1,\n",
      "          'instead': 1,\n",
      "          'opted': 1,\n",
      "          'easier': 1,\n",
      "          'route': 1,\n",
      "          'studios': 1,\n",
      "          'recreation': 1,\n",
      "          'amazingly': 1,\n",
      "          'accurate': 1,\n",
      "          'impressive': 1,\n",
      "          'captivating': 1,\n",
      "          'nsome': 1,\n",
      "          'say': 1,\n",
      "          'job': 1,\n",
      "          'visit': 1,\n",
      "          'locale': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'despite': 1,\n",
      "          'tone': 1,\n",
      "          'still': 1,\n",
      "          'go': 1,\n",
      "          'rome': 1,\n",
      "          'nightclubs': 1,\n",
      "          'fellinis': 1,\n",
      "          'la': 1,\n",
      "          'dolce': 1,\n",
      "          'vita': 1,\n",
      "          'watched': 1,\n",
      "          'didnt': 1,\n",
      "          'particularly': 1,\n",
      "          'stay': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'headless': 6,\n",
      "          'horseman': 6,\n",
      "          'hollow': 4,\n",
      "          'film': 4,\n",
      "          'depp': 4,\n",
      "          'nthe': 4,\n",
      "          'could': 4,\n",
      "          'even': 4,\n",
      "          'script': 3,\n",
      "          'much': 3,\n",
      "          'story': 3,\n",
      "          'sleepy': 3,\n",
      "          'nhe': 3,\n",
      "          'like': 3,\n",
      "          'quite': 3,\n",
      "          'burton': 2,\n",
      "          'films': 2,\n",
      "          'mess': 2,\n",
      "          'ichabod': 2,\n",
      "          'crane': 2,\n",
      "          'actually': 2,\n",
      "          'version': 2,\n",
      "          'least': 2,\n",
      "          'burtons': 2,\n",
      "          'far': 2,\n",
      "          'new': 2,\n",
      "          'victims': 2,\n",
      "          'christina': 2,\n",
      "          'ricci': 2,\n",
      "          'stop': 2,\n",
      "          'character': 2,\n",
      "          'holes': 2,\n",
      "          'one': 2,\n",
      "          'nby': 2,\n",
      "          'end': 2,\n",
      "          'thought': 2,\n",
      "          'atmosphere': 2,\n",
      "          'time': 2,\n",
      "          'made': 2,\n",
      "          'real': 2,\n",
      "          'getting': 2,\n",
      "          'actress': 2,\n",
      "          'back': 2,\n",
      "          'past': 1,\n",
      "          'tim': 1,\n",
      "          'taken': 1,\n",
      "          'cinema': 1,\n",
      "          'storm': 1,\n",
      "          'action': 1,\n",
      "          'packed': 1,\n",
      "          'batman': 1,\n",
      "          'hilarious': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'lately': 1,\n",
      "          'dont': 1,\n",
      "          'cut': 1,\n",
      "          'nsleepy': 1,\n",
      "          'unique': 1,\n",
      "          'features': 1,\n",
      "          'terrible': 1,\n",
      "          'nfor': 1,\n",
      "          'remember': 1,\n",
      "          'disneys': 1,\n",
      "          'fantastic': 1,\n",
      "          'adventures': 1,\n",
      "          'superior': 1,\n",
      "          'ndisneys': 1,\n",
      "          'interesting': 1,\n",
      "          'drags': 1,\n",
      "          'long': 1,\n",
      "          'without': 1,\n",
      "          'suspense': 1,\n",
      "          'frights': 1,\n",
      "          'nwhile': 1,\n",
      "          'stories': 1,\n",
      "          'similar': 1,\n",
      "          'adds': 1,\n",
      "          'likable': 1,\n",
      "          'throws': 1,\n",
      "          'weak': 1,\n",
      "          'dialogue': 1,\n",
      "          'top': 1,\n",
      "          'nichabod': 1,\n",
      "          'johnny': 1,\n",
      "          'apparently': 1,\n",
      "          'constable': 1,\n",
      "          'sent': 1,\n",
      "          'york': 1,\n",
      "          'investigate': 1,\n",
      "          'suspicious': 1,\n",
      "          'murders': 1,\n",
      "          'traces': 1,\n",
      "          'evidence': 1,\n",
      "          'found': 1,\n",
      "          'murderer': 1,\n",
      "          'reveals': 1,\n",
      "          'hence': 1,\n",
      "          'nnow': 1,\n",
      "          'help': 1,\n",
      "          'orphaned': 1,\n",
      "          'boy': 1,\n",
      "          'must': 1,\n",
      "          'killing': 1,\n",
      "          'spree': 1,\n",
      "          'destroy': 1,\n",
      "          'whole': 1,\n",
      "          'town': 1,\n",
      "          'nsure': 1,\n",
      "          'intriguing': 1,\n",
      "          'many': 1,\n",
      "          'save': 1,\n",
      "          'disaster': 1,\n",
      "          'nin': 1,\n",
      "          'original': 1,\n",
      "          'meant': 1,\n",
      "          'unstoppable': 1,\n",
      "          'nno': 1,\n",
      "          'audiences': 1,\n",
      "          'deep': 1,\n",
      "          'nburton': 1,\n",
      "          'however': 1,\n",
      "          'concentrates': 1,\n",
      "          'make': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'heroes': 1,\n",
      "          'takes': 1,\n",
      "          'risk': 1,\n",
      "          'ever': 1,\n",
      "          'fails': 1,\n",
      "          'nanother': 1,\n",
      "          'pathetic': 1,\n",
      "          'element': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'earlier': 1,\n",
      "          'stuffed': 1,\n",
      "          'look': 1,\n",
      "          'sloppy': 1,\n",
      "          'kind': 1,\n",
      "          'completely': 1,\n",
      "          'butchered': 1,\n",
      "          'pieces': 1,\n",
      "          'nthankfully': 1,\n",
      "          'factors': 1,\n",
      "          'particularly': 1,\n",
      "          'liked': 1,\n",
      "          'acting': 1,\n",
      "          'notable': 1,\n",
      "          'took': 1,\n",
      "          'nerdy': 1,\n",
      "          'cartoon': 1,\n",
      "          'simply': 1,\n",
      "          'acted': 1,\n",
      "          'better': 1,\n",
      "          'manner': 1,\n",
      "          'nif': 1,\n",
      "          'wasnt': 1,\n",
      "          'quirky': 1,\n",
      "          'oneliners': 1,\n",
      "          'doubt': 1,\n",
      "          'remained': 1,\n",
      "          'awake': 1,\n",
      "          'frankly': 1,\n",
      "          'njust': 1,\n",
      "          'good': 1,\n",
      "          'winds': 1,\n",
      "          'nit': 1,\n",
      "          'goes': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'show': 1,\n",
      "          'actor': 1,\n",
      "          'pass': 1,\n",
      "          'big': 1,\n",
      "          'blockbuster': 1,\n",
      "          'nits': 1,\n",
      "          'tempting': 1,\n",
      "          'let': 1,\n",
      "          'go': 1,\n",
      "          'mush': 1,\n",
      "          'involving': 1,\n",
      "          'ni': 1,\n",
      "          'gazed': 1,\n",
      "          'sets': 1,\n",
      "          'eerie': 1,\n",
      "          'fog': 1,\n",
      "          'rather': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'going': 1,\n",
      "          'nat': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'trash': 1,\n",
      "          'scenes': 1,\n",
      "          'value': 1,\n",
      "          'tree': 1,\n",
      "          'full': 1,\n",
      "          'heads': 1,\n",
      "          'fight': 1,\n",
      "          'casper': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'nother': 1,\n",
      "          'wish': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          'gaping': 1,\n",
      "          'sit': 1,\n",
      "          'stare': 1,\n",
      "          'scenery': 1,\n",
      "          'think': 1,\n",
      "          'laugh': 1,\n",
      "          'bad': 1,\n",
      "          'developed': 1,\n",
      "          'nthis': 1,\n",
      "          'biggest': 1,\n",
      "          'disappointment': 1,\n",
      "          'year': 1,\n",
      "          'especially': 1,\n",
      "          'talented': 1,\n",
      "          'director': 1,\n",
      "          'handles': 1,\n",
      "          'project': 1,\n",
      "          'ndont': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'head': 1,\n",
      "          'feel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'plot': 6,\n",
      "          'bad': 6,\n",
      "          'movie': 6,\n",
      "          'one': 5,\n",
      "          'nand': 5,\n",
      "          'guys': 4,\n",
      "          'actually': 4,\n",
      "          'character': 4,\n",
      "          'give': 4,\n",
      "          'psychiatrist': 3,\n",
      "          'good': 3,\n",
      "          'even': 3,\n",
      "          'film': 3,\n",
      "          'nwe': 3,\n",
      "          'get': 3,\n",
      "          'douglas': 3,\n",
      "          'would': 3,\n",
      "          'end': 3,\n",
      "          'part': 3,\n",
      "          'little': 3,\n",
      "          'home': 2,\n",
      "          'daughter': 2,\n",
      "          'premise': 2,\n",
      "          'holes': 2,\n",
      "          'dont': 2,\n",
      "          'like': 2,\n",
      "          'well': 2,\n",
      "          'primal': 2,\n",
      "          'fear': 2,\n",
      "          'time': 2,\n",
      "          'thing': 2,\n",
      "          'first': 2,\n",
      "          'halfway': 2,\n",
      "          'left': 2,\n",
      "          'questions': 2,\n",
      "          'woman': 2,\n",
      "          'crap': 2,\n",
      "          'guy': 2,\n",
      "          'suddenly': 2,\n",
      "          'action': 2,\n",
      "          'point': 2,\n",
      "          'still': 2,\n",
      "          '10': 2,\n",
      "          'years': 2,\n",
      "          'days': 2,\n",
      "          'another': 2,\n",
      "          'thats': 2,\n",
      "          'many': 2,\n",
      "          'murphys': 2,\n",
      "          'turned': 2,\n",
      "          'interesting': 2,\n",
      "          'anyone': 2,\n",
      "          'wasnt': 2,\n",
      "          'espositos': 2,\n",
      "          'flick': 2,\n",
      "          'reason': 2,\n",
      "          'nincidentally': 2,\n",
      "          'dumb': 2,\n",
      "          'audience': 2,\n",
      "          'sense': 2,\n",
      "          'came': 2,\n",
      "          'spider': 2,\n",
      "          '710': 2,\n",
      "          'rich': 1,\n",
      "          'great': 1,\n",
      "          'life': 1,\n",
      "          'gets': 1,\n",
      "          'cute': 1,\n",
      "          'kidnapped': 1,\n",
      "          'want': 1,\n",
      "          'extract': 1,\n",
      "          'information': 1,\n",
      "          'mind': 1,\n",
      "          'nutty': 1,\n",
      "          'patients': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'patient': 1,\n",
      "          'cooperative': 1,\n",
      "          'doctor': 1,\n",
      "          'hours': 1,\n",
      "          'comply': 1,\n",
      "          'demands': 1,\n",
      "          'kill': 1,\n",
      "          'npretty': 1,\n",
      "          'ncritique': 1,\n",
      "          'youre': 1,\n",
      "          'fan': 1,\n",
      "          'movies': 1,\n",
      "          'packed': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'yes': 1,\n",
      "          'heed': 1,\n",
      "          'words': 1,\n",
      "          'skip': 1,\n",
      "          'hollow': 1,\n",
      "          'thriller': 1,\n",
      "          'saying': 1,\n",
      "          'either': 1,\n",
      "          'since': 1,\n",
      "          'potential': 1,\n",
      "          'started': 1,\n",
      "          'pretty': 1,\n",
      "          'nsure': 1,\n",
      "          'story': 1,\n",
      "          'basically': 1,\n",
      "          'amalgamation': 1,\n",
      "          'ransom': 1,\n",
      "          'nick': 1,\n",
      "          'pureed': 1,\n",
      "          'whole': 1,\n",
      "          'working': 1,\n",
      "          'clock': 1,\n",
      "          'engaged': 1,\n",
      "          'nbut': 1,\n",
      "          'mark': 1,\n",
      "          'bottom': 1,\n",
      "          'drops': 1,\n",
      "          'lot': 1,\n",
      "          'plausible': 1,\n",
      "          'answers': 1,\n",
      "          'overly': 1,\n",
      "          'smart': 1,\n",
      "          'kid': 1,\n",
      "          'manages': 1,\n",
      "          'pull': 1,\n",
      "          'weak': 1,\n",
      "          'leg': 1,\n",
      "          'cast': 1,\n",
      "          'beating': 1,\n",
      "          'tough': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'uppedity': 1,\n",
      "          'turning': 1,\n",
      "          'hero': 1,\n",
      "          'moves': 1,\n",
      "          'attitude': 1,\n",
      "          'boot': 1,\n",
      "          'films': 1,\n",
      "          'main': 1,\n",
      "          'nwhy': 1,\n",
      "          'shrink': 1,\n",
      "          'n': 1,\n",
      "          'waited': 1,\n",
      "          'whats': 1,\n",
      "          'set': 1,\n",
      "          'heist': 1,\n",
      "          'instead': 1,\n",
      "          'nill': 1,\n",
      "          'tell': 1,\n",
      "          'wouldnt': 1,\n",
      "          'otherwise': 1,\n",
      "          'nugh': 1,\n",
      "          'whatever': 1,\n",
      "          'case': 1,\n",
      "          'removed': 1,\n",
      "          'mental': 1,\n",
      "          'come': 1,\n",
      "          'went': 1,\n",
      "          'nicely': 1,\n",
      "          'ni': 1,\n",
      "          'thought': 1,\n",
      "          'didnt': 1,\n",
      "          'trust': 1,\n",
      "          'buddy': 1,\n",
      "          'asked': 1,\n",
      "          'joke': 1,\n",
      "          'bogus': 1,\n",
      "          'chase': 1,\n",
      "          'sequences': 1,\n",
      "          'later': 1,\n",
      "          'longwinded': 1,\n",
      "          'ending': 1,\n",
      "          'answer': 1,\n",
      "          'mightve': 1,\n",
      "          'brought': 1,\n",
      "          'contradictions': 1,\n",
      "          'nbadly': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'features': 1,\n",
      "          'decent': 1,\n",
      "          'acting': 1,\n",
      "          'nice': 1,\n",
      "          'cinematography': 1,\n",
      "          'initially': 1,\n",
      "          'loses': 1,\n",
      "          'haze': 1,\n",
      "          'miscues': 1,\n",
      "          'ultimately': 1,\n",
      "          'leave': 1,\n",
      "          'care': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'brittany': 1,\n",
      "          'excellent': 1,\n",
      "          'portrayal': 1,\n",
      "          'traumatized': 1,\n",
      "          'teen': 1,\n",
      "          'jennifer': 1,\n",
      "          'embarrassing': 1,\n",
      "          'performance': 1,\n",
      "          'police': 1,\n",
      "          'yeah': 1,\n",
      "          'right': 1,\n",
      "          'nwatching': 1,\n",
      "          'delivering': 1,\n",
      "          'lines': 1,\n",
      "          'funniest': 1,\n",
      "          'supposed': 1,\n",
      "          'michael': 1,\n",
      "          'cool': 1,\n",
      "          'regular': 1,\n",
      "          'remain': 1,\n",
      "          'seated': 1,\n",
      "          'picture': 1,\n",
      "          'please': 1,\n",
      "          'place': 1,\n",
      "          'nshe': 1,\n",
      "          'completely': 1,\n",
      "          'superfluous': 1,\n",
      "          'top': 1,\n",
      "          'director': 1,\n",
      "          'seems': 1,\n",
      "          'realized': 1,\n",
      "          'must': 1,\n",
      "          'bought': 1,\n",
      "          'garbage': 1,\n",
      "          'hed': 1,\n",
      "          'shoveling': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'prior': 1,\n",
      "          'decides': 1,\n",
      "          'add': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'flashing': 1,\n",
      "          'back': 1,\n",
      "          'earlier': 1,\n",
      "          'characters': 1,\n",
      "          'death': 1,\n",
      "          'dies': 1,\n",
      "          'know': 1,\n",
      "          'two': 1,\n",
      "          'interrelated': 1,\n",
      "          'somehow': 1,\n",
      "          'nooooh': 1,\n",
      "          'thanks': 1,\n",
      "          'mr': 1,\n",
      "          'fleder': 1,\n",
      "          'nappreciate': 1,\n",
      "          'spoonfeeding': 1,\n",
      "          'dude': 1,\n",
      "          'yum': 1,\n",
      "          'nyum': 1,\n",
      "          'nhow': 1,\n",
      "          'explaining': 1,\n",
      "          'every': 1,\n",
      "          'made': 1,\n",
      "          'nwhatever': 1,\n",
      "          'neither': 1,\n",
      "          'way': 1,\n",
      "          'rats': 1,\n",
      "          'ass': 1,\n",
      "          'dog': 1,\n",
      "          'unfortunate': 1,\n",
      "          'points': 1,\n",
      "          'going': 1,\n",
      "          'nsee': 1,\n",
      "          'thrillers': 1,\n",
      "          'appreciated': 1,\n",
      "          'along': 1,\n",
      "          'likely': 1,\n",
      "          'enjoy': 1,\n",
      "          'nthey': 1,\n",
      "          'start': 1,\n",
      "          'premises': 1,\n",
      "          'toss': 1,\n",
      "          'logic': 1,\n",
      "          'window': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'nalong': 1,\n",
      "          '410': 1,\n",
      "          'girl': 1,\n",
      "          'interrupted': 1,\n",
      "          '510': 1,\n",
      "          'kiss': 1,\n",
      "          'girls': 1,\n",
      "          'seven': 1,\n",
      "          '1010': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'seth': 7,\n",
      "          'commandments': 5,\n",
      "          'taplitz': 4,\n",
      "          'faith': 3,\n",
      "          'seths': 3,\n",
      "          'wish': 2,\n",
      "          'would': 2,\n",
      "          'take': 2,\n",
      "          'daniel': 2,\n",
      "          'man': 2,\n",
      "          'bad': 2,\n",
      "          'break': 2,\n",
      "          'every': 2,\n",
      "          'thou': 2,\n",
      "          'shalt': 2,\n",
      "          'rachel': 2,\n",
      "          'courteney': 2,\n",
      "          'cox': 2,\n",
      "          'harry': 2,\n",
      "          'film': 2,\n",
      "          'performance': 2,\n",
      "          'nthe': 2,\n",
      "          'whose': 2,\n",
      "          'clear': 2,\n",
      "          'makes': 2,\n",
      "          'films': 1,\n",
      "          'issues': 1,\n",
      "          'morality': 1,\n",
      "          'modern': 1,\n",
      "          'world': 1,\n",
      "          'nand': 1,\n",
      "          'filmmakers': 1,\n",
      "          'use': 1,\n",
      "          'blueprint': 1,\n",
      "          '_not_': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'created': 1,\n",
      "          'bizarre': 1,\n",
      "          'conglomeration': 1,\n",
      "          'satire': 1,\n",
      "          'soulsearching': 1,\n",
      "          'tale': 1,\n",
      "          'warner': 1,\n",
      "          'aidan': 1,\n",
      "          'quinn': 1,\n",
      "          'runs': 1,\n",
      "          'streak': 1,\n",
      "          'luck': 1,\n",
      "          'usually': 1,\n",
      "          'inspires': 1,\n",
      "          'countrywestern': 1,\n",
      "          'lyrics': 1,\n",
      "          'pregnant': 1,\n",
      "          'wife': 1,\n",
      "          'drowns': 1,\n",
      "          'home': 1,\n",
      "          'destroyed': 1,\n",
      "          'tornado': 1,\n",
      "          'loses': 1,\n",
      "          'job': 1,\n",
      "          'dog': 1,\n",
      "          'crippled': 1,\n",
      "          'bolt': 1,\n",
      "          'lightning': 1,\n",
      "          'nconvinced': 1,\n",
      "          'god': 1,\n",
      "          'broken': 1,\n",
      "          'half': 1,\n",
      "          'covenant': 1,\n",
      "          'decides': 1,\n",
      "          'sets': 1,\n",
      "          'turn': 1,\n",
      "          'ten': 1,\n",
      "          'vice': 1,\n",
      "          'versa': 1,\n",
      "          'nhis': 1,\n",
      "          'wifes': 1,\n",
      "          'sister': 1,\n",
      "          'friends': 1,\n",
      "          'wants': 1,\n",
      "          'help': 1,\n",
      "          'rachels': 1,\n",
      "          'selfish': 1,\n",
      "          'husband': 1,\n",
      "          'anthony': 1,\n",
      "          'lapaglia': 1,\n",
      "          'tends': 1,\n",
      "          'thinks': 1,\n",
      "          'lunatic': 1,\n",
      "          'nthus': 1,\n",
      "          'begins': 1,\n",
      "          'picks': 1,\n",
      "          'wrong': 1,\n",
      "          'tone': 1,\n",
      "          'occasion': 1,\n",
      "          'ntaplitz': 1,\n",
      "          'isnt': 1,\n",
      "          'interested': 1,\n",
      "          'treating': 1,\n",
      "          'tragedies': 1,\n",
      "          'genuinely': 1,\n",
      "          'tragic': 1,\n",
      "          'making': 1,\n",
      "          'impossible': 1,\n",
      "          'sympathize': 1,\n",
      "          'ncomposer': 1,\n",
      "          'joseph': 1,\n",
      "          'vitarelli': 1,\n",
      "          'provides': 1,\n",
      "          'score': 1,\n",
      "          'full': 1,\n",
      "          'whimsical': 1,\n",
      "          'woodwinds': 1,\n",
      "          'turning': 1,\n",
      "          'sacrilegious': 1,\n",
      "          'mission': 1,\n",
      "          'amusing': 1,\n",
      "          'lark': 1,\n",
      "          'quinns': 1,\n",
      "          'wildeyed': 1,\n",
      "          'fervor': 1,\n",
      "          'without': 1,\n",
      "          'genuine': 1,\n",
      "          'pain': 1,\n",
      "          'actual': 1,\n",
      "          'breaking': 1,\n",
      "          'almost': 1,\n",
      "          'treated': 1,\n",
      "          'afterthought': 1,\n",
      "          'one': 1,\n",
      "          'five': 1,\n",
      "          'dispatched': 1,\n",
      "          'fiveminute': 1,\n",
      "          'montage': 1,\n",
      "          'result': 1,\n",
      "          'character': 1,\n",
      "          'actions': 1,\n",
      "          'feel': 1,\n",
      "          'less': 1,\n",
      "          'like': 1,\n",
      "          'authentic': 1,\n",
      "          'responses': 1,\n",
      "          'anguished': 1,\n",
      "          'machinations': 1,\n",
      "          'highconcept': 1,\n",
      "          'movie': 1,\n",
      "          'plot': 1,\n",
      "          'nits': 1,\n",
      "          'even': 1,\n",
      "          'entirely': 1,\n",
      "          'ncorporate': 1,\n",
      "          'attorney': 1,\n",
      "          'given': 1,\n",
      "          'case': 1,\n",
      "          'supposed': 1,\n",
      "          'soften': 1,\n",
      "          'hard': 1,\n",
      "          'heart': 1,\n",
      "          'see': 1,\n",
      "          'indication': 1,\n",
      "          'gets': 1,\n",
      "          'comeuppance': 1,\n",
      "          'part': 1,\n",
      "          'false': 1,\n",
      "          'witness': 1,\n",
      "          'nonly': 1,\n",
      "          'strikes': 1,\n",
      "          'note': 1,\n",
      "          'reality': 1,\n",
      "          'solid': 1,\n",
      "          'sane': 1,\n",
      "          'center': 1,\n",
      "          'around': 1,\n",
      "          'equally': 1,\n",
      "          'troubled': 1,\n",
      "          'men': 1,\n",
      "          'revolve': 1,\n",
      "          'neven': 1,\n",
      "          'cant': 1,\n",
      "          'force': 1,\n",
      "          'decide': 1,\n",
      "          'story': 1,\n",
      "          'learned': 1,\n",
      "          'dealing': 1,\n",
      "          'struggles': 1,\n",
      "          'lives': 1,\n",
      "          'relationship': 1,\n",
      "          'infinite': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'singularly': 1,\n",
      "          'biblical': 1,\n",
      "          'reappearance': 1,\n",
      "          'late': 1,\n",
      "          'become': 1,\n",
      "          'aiming': 1,\n",
      "          'fantastical': 1,\n",
      "          'fable': 1,\n",
      "          'connection': 1,\n",
      "          'real': 1,\n",
      "          'human': 1,\n",
      "          'experience': 1,\n",
      "          'ncommandments': 1,\n",
      "          'comedy': 1,\n",
      "          'could': 1,\n",
      "          'decent': 1,\n",
      "          'drama': 1,\n",
      "          'guts': 1,\n",
      "          'loss': 1,\n",
      "          'thereof': 1,\n",
      "          'seriously': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jawbreaker': 6,\n",
      "          'nthe': 6,\n",
      "          'film': 6,\n",
      "          'fern': 5,\n",
      "          'school': 3,\n",
      "          'seems': 3,\n",
      "          'teen': 3,\n",
      "          'one': 3,\n",
      "          'nit': 3,\n",
      "          'time': 3,\n",
      "          'julie': 3,\n",
      "          'murder': 3,\n",
      "          'characters': 3,\n",
      "          'high': 2,\n",
      "          'comedy': 2,\n",
      "          'shes': 2,\n",
      "          'us': 2,\n",
      "          'know': 2,\n",
      "          'popular': 2,\n",
      "          'clique': 2,\n",
      "          'accidentally': 2,\n",
      "          'three': 2,\n",
      "          'girls': 2,\n",
      "          'decide': 2,\n",
      "          'little': 2,\n",
      "          'leader': 2,\n",
      "          'courtney': 2,\n",
      "          'rose': 2,\n",
      "          'mcgowan': 2,\n",
      "          'cover': 2,\n",
      "          'member': 2,\n",
      "          'another': 2,\n",
      "          'mayo': 2,\n",
      "          'quickly': 2,\n",
      "          'makeover': 2,\n",
      "          'crowd': 2,\n",
      "          'njawbreaker': 2,\n",
      "          'might': 2,\n",
      "          'plot': 2,\n",
      "          'films': 2,\n",
      "          'point': 2,\n",
      "          'nas': 2,\n",
      "          'nits': 2,\n",
      "          'character': 2,\n",
      "          'movie': 2,\n",
      "          'doesnt': 2,\n",
      "          'become': 2,\n",
      "          'detestable': 2,\n",
      "          'hot': 1,\n",
      "          'genre': 1,\n",
      "          'moment': 1,\n",
      "          'nwith': 1,\n",
      "          'varsity': 1,\n",
      "          'blues': 1,\n",
      "          'behind': 1,\n",
      "          'several': 1,\n",
      "          'set': 1,\n",
      "          'release': 1,\n",
      "          'later': 1,\n",
      "          'year': 1,\n",
      "          'experiencing': 1,\n",
      "          'renaissance': 1,\n",
      "          'nhowever': 1,\n",
      "          'wouldnt': 1,\n",
      "          'quality': 1,\n",
      "          'latest': 1,\n",
      "          'entry': 1,\n",
      "          'nthis': 1,\n",
      "          'shockingly': 1,\n",
      "          'bitter': 1,\n",
      "          'candy': 1,\n",
      "          'definitely': 1,\n",
      "          'sour': 1,\n",
      "          'center': 1,\n",
      "          'feared': 1,\n",
      "          'reagan': 1,\n",
      "          'unexpected': 1,\n",
      "          'dilemma': 1,\n",
      "          'nthey': 1,\n",
      "          'killed': 1,\n",
      "          'dream': 1,\n",
      "          'liz': 1,\n",
      "          'purr': 1,\n",
      "          'charlotte': 1,\n",
      "          'roldan': 1,\n",
      "          'choked': 1,\n",
      "          'giant': 1,\n",
      "          'kidnapping': 1,\n",
      "          'prank': 1,\n",
      "          '17th': 1,\n",
      "          'birthday': 1,\n",
      "          'nnow': 1,\n",
      "          'surviving': 1,\n",
      "          'must': 1,\n",
      "          'takes': 1,\n",
      "          'groups': 1,\n",
      "          'ditzy': 1,\n",
      "          'marcie': 1,\n",
      "          'benz': 1,\n",
      "          'game': 1,\n",
      "          'go': 1,\n",
      "          'along': 1,\n",
      "          'cliques': 1,\n",
      "          'final': 1,\n",
      "          'rebecca': 1,\n",
      "          'gayheart': 1,\n",
      "          'guilty': 1,\n",
      "          'conscience': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'things': 1,\n",
      "          'worse': 1,\n",
      "          'student': 1,\n",
      "          'hopelessly': 1,\n",
      "          'geeky': 1,\n",
      "          'judy': 1,\n",
      "          'evans': 1,\n",
      "          'greer': 1,\n",
      "          'discovers': 1,\n",
      "          'truth': 1,\n",
      "          'surely': 1,\n",
      "          'blown': 1,\n",
      "          'nnot': 1,\n",
      "          'fast': 1,\n",
      "          'nthinking': 1,\n",
      "          'offers': 1,\n",
      "          'onceinalifetime': 1,\n",
      "          'chance': 1,\n",
      "          'nafter': 1,\n",
      "          'quick': 1,\n",
      "          'transformed': 1,\n",
      "          'vylette': 1,\n",
      "          'beautiful': 1,\n",
      "          'new': 1,\n",
      "          'girl': 1,\n",
      "          'fullfledged': 1,\n",
      "          'ndoes': 1,\n",
      "          'mean': 1,\n",
      "          'popularity': 1,\n",
      "          'key': 1,\n",
      "          'getting': 1,\n",
      "          'away': 1,\n",
      "          'finely': 1,\n",
      "          'honed': 1,\n",
      "          'plan': 1,\n",
      "          'crack': 1,\n",
      "          'obviously': 1,\n",
      "          'attempting': 1,\n",
      "          'heathers': 1,\n",
      "          'generation': 1,\n",
      "          'failing': 1,\n",
      "          'miserably': 1,\n",
      "          'add': 1,\n",
      "          'manages': 1,\n",
      "          'capture': 1,\n",
      "          'mix': 1,\n",
      "          'social': 1,\n",
      "          'observations': 1,\n",
      "          'misses': 1,\n",
      "          'crucial': 1,\n",
      "          'elements': 1,\n",
      "          'sharp': 1,\n",
      "          'dialogue': 1,\n",
      "          'witty': 1,\n",
      "          'muchneeded': 1,\n",
      "          'humor': 1,\n",
      "          'possible': 1,\n",
      "          'succeeded': 1,\n",
      "          'darkly': 1,\n",
      "          'humorous': 1,\n",
      "          'wasnt': 1,\n",
      "          'shackled': 1,\n",
      "          'deadweight': 1,\n",
      "          'innovative': 1,\n",
      "          'twist': 1,\n",
      "          'nat': 1,\n",
      "          'poised': 1,\n",
      "          'spin': 1,\n",
      "          'wildly': 1,\n",
      "          'uncharted': 1,\n",
      "          'depths': 1,\n",
      "          'nbut': 1,\n",
      "          'sudden': 1,\n",
      "          'innovation': 1,\n",
      "          'stops': 1,\n",
      "          'becomes': 1,\n",
      "          'mired': 1,\n",
      "          'murderandcoverup': 1,\n",
      "          'plotting': 1,\n",
      "          'saps': 1,\n",
      "          'life': 1,\n",
      "          'energy': 1,\n",
      "          'right': 1,\n",
      "          'nin': 1,\n",
      "          'fares': 1,\n",
      "          'best': 1,\n",
      "          'manipulative': 1,\n",
      "          'truly': 1,\n",
      "          'dominates': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'difficult': 1,\n",
      "          'feat': 1,\n",
      "          'however': 1,\n",
      "          'crying': 1,\n",
      "          'better': 1,\n",
      "          'least': 1,\n",
      "          'decently': 1,\n",
      "          'drawn': 1,\n",
      "          'interact': 1,\n",
      "          'quite': 1,\n",
      "          'handle': 1,\n",
      "          'semilikable': 1,\n",
      "          'neither': 1,\n",
      "          'could': 1,\n",
      "          'effectively': 1,\n",
      "          'end': 1,\n",
      "          'simply': 1,\n",
      "          'revealing': 1,\n",
      "          'knows': 1,\n",
      "          'lengths': 1,\n",
      "          'goes': 1,\n",
      "          'prolong': 1,\n",
      "          'unintentional': 1,\n",
      "          'effect': 1,\n",
      "          'distancing': 1,\n",
      "          'motives': 1,\n",
      "          'murky': 1,\n",
      "          'unclear': 1,\n",
      "          'finally': 1,\n",
      "          'falls': 1,\n",
      "          'really': 1,\n",
      "          'matter': 1,\n",
      "          'wins': 1,\n",
      "          'loses': 1,\n",
      "          'since': 1,\n",
      "          'sides': 1,\n",
      "          'equally': 1,\n",
      "          'n': 1,\n",
      "          'good': 1,\n",
      "          'word': 1,\n",
      "          'describe': 1,\n",
      "          'certain': 1,\n",
      "          'like': 1,\n",
      "          'weapon': 1,\n",
      "          'described': 1,\n",
      "          'title': 1,\n",
      "          'triggering': 1,\n",
      "          'gag': 1,\n",
      "          'reflex': 1,\n",
      "          'audience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 12,\n",
      "          'gorilla': 5,\n",
      "          'jungle': 3,\n",
      "          'kong': 3,\n",
      "          'film': 3,\n",
      "          'girl': 3,\n",
      "          'ape': 3,\n",
      "          '11story': 2,\n",
      "          'hong': 2,\n",
      "          'escapes': 2,\n",
      "          'like': 2,\n",
      "          '4': 2,\n",
      "          'sort': 2,\n",
      "          'stock': 2,\n",
      "          'capsule': 1,\n",
      "          'wild': 1,\n",
      "          'woman': 1,\n",
      "          'discovered': 1,\n",
      "          'tibet': 1,\n",
      "          'taken': 1,\n",
      "          'causes': 1,\n",
      "          'havoc': 1,\n",
      "          'nthis': 1,\n",
      "          'laughable': 1,\n",
      "          '1977': 1,\n",
      "          'rip': 1,\n",
      "          'king': 1,\n",
      "          '1976': 1,\n",
      "          'ripoff': 1,\n",
      "          'nproduction': 1,\n",
      "          'values': 1,\n",
      "          'low': 1,\n",
      "          'audiences': 1,\n",
      "          'seem': 1,\n",
      "          'mostly': 1,\n",
      "          'derisive': 1,\n",
      "          'laughter': 1,\n",
      "          'high': 1,\n",
      "          '2': 1,\n",
      "          'directed': 1,\n",
      "          'ho': 1,\n",
      "          'menghua': 1,\n",
      "          'provided': 1,\n",
      "          'laughing': 1,\n",
      "          'finish': 1,\n",
      "          'festival': 1,\n",
      "          'earthquake': 1,\n",
      "          'uncovers': 1,\n",
      "          'tall': 1,\n",
      "          'himalayas': 1,\n",
      "          'na': 1,\n",
      "          'hunter': 1,\n",
      "          'chosen': 1,\n",
      "          'broke': 1,\n",
      "          'loose': 1,\n",
      "          'ends': 1,\n",
      "          'gets': 1,\n",
      "          'sent': 1,\n",
      "          'find': 1,\n",
      "          'finds': 1,\n",
      "          'female': 1,\n",
      "          'tarzan': 1,\n",
      "          'controls': 1,\n",
      "          'evelyne': 1,\n",
      "          'kraft': 1,\n",
      "          'leather': 1,\n",
      "          'bikini': 1,\n",
      "          'pasted': 1,\n",
      "          'always': 1,\n",
      "          'looks': 1,\n",
      "          'verge': 1,\n",
      "          'bouncing': 1,\n",
      "          'actor': 1,\n",
      "          'idea': 1,\n",
      "          'gorillas': 1,\n",
      "          'move': 1,\n",
      "          'suit': 1,\n",
      "          'terrible': 1,\n",
      "          'nnice': 1,\n",
      "          'miniature': 1,\n",
      "          'effects': 1,\n",
      "          'however': 1,\n",
      "          'almost': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'inside': 1,\n",
      "          'playing': 1,\n",
      "          'animals': 1,\n",
      "          'chichi': 1,\n",
      "          'leopard': 1,\n",
      "          'several': 1,\n",
      "          'places': 1,\n",
      "          'narrative': 1,\n",
      "          'nearly': 1,\n",
      "          'incoherent': 1,\n",
      "          'missing': 1,\n",
      "          'scenes': 1,\n",
      "          'viewer': 1,\n",
      "          'guess': 1,\n",
      "          'happened': 1,\n",
      "          'interim': 1,\n",
      "          'actual': 1,\n",
      "          'location': 1,\n",
      "          'shooting': 1,\n",
      "          'mysore': 1,\n",
      "          'nape': 1,\n",
      "          'shown': 1,\n",
      "          'badly': 1,\n",
      "          'matted': 1,\n",
      "          'behind': 1,\n",
      "          'temple': 1,\n",
      "          'combining': 1,\n",
      "          'images': 1,\n",
      "          'usually': 1,\n",
      "          'pretty': 1,\n",
      "          'bad': 1,\n",
      "          'nincompetent': 1,\n",
      "          'matching': 1,\n",
      "          'stocks': 1,\n",
      "          'footage': 1,\n",
      "          'frequently': 1,\n",
      "          'used': 1,\n",
      "          'brought': 1,\n",
      "          'greedy': 1,\n",
      "          'entrepreneur': 1,\n",
      "          'really': 1,\n",
      "          'abuses': 1,\n",
      "          'tears': 1,\n",
      "          'things': 1,\n",
      "          'real': 1,\n",
      "          'good': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bachelor': 8,\n",
      "          'nthe': 7,\n",
      "          'film': 6,\n",
      "          'one': 4,\n",
      "          'nodonnell': 4,\n",
      "          'anne': 4,\n",
      "          'approach': 4,\n",
      "          'charm': 3,\n",
      "          'behind': 3,\n",
      "          'odonnell': 3,\n",
      "          'time': 3,\n",
      "          'could': 3,\n",
      "          'jimmie': 3,\n",
      "          'nand': 3,\n",
      "          'movies': 2,\n",
      "          'quite': 2,\n",
      "          'romantic': 2,\n",
      "          'find': 2,\n",
      "          'chris': 2,\n",
      "          'vehicle': 2,\n",
      "          'mess': 2,\n",
      "          'together': 2,\n",
      "          'moments': 2,\n",
      "          'certainly': 2,\n",
      "          'actor': 2,\n",
      "          'two': 2,\n",
      "          'far': 2,\n",
      "          'screenplay': 2,\n",
      "          'becomes': 2,\n",
      "          'save': 2,\n",
      "          'zellweger': 2,\n",
      "          'plot': 2,\n",
      "          'along': 2,\n",
      "          'movie': 2,\n",
      "          'grandfather': 2,\n",
      "          'must': 2,\n",
      "          'birthday': 2,\n",
      "          'bride': 2,\n",
      "          'within': 2,\n",
      "          'jimmies': 2,\n",
      "          'interesting': 2,\n",
      "          'colorful': 2,\n",
      "          'cast': 2,\n",
      "          'cute': 2,\n",
      "          'enjoyable': 2,\n",
      "          'running': 2,\n",
      "          'angry': 2,\n",
      "          'best': 1,\n",
      "          'terrible': 1,\n",
      "          'ever': 1,\n",
      "          'see': 1,\n",
      "          'nwading': 1,\n",
      "          'gooey': 1,\n",
      "          'detestable': 1,\n",
      "          'sludge': 1,\n",
      "          'chore': 1,\n",
      "          'even': 1,\n",
      "          'dedicated': 1,\n",
      "          'nthose': 1,\n",
      "          'hoping': 1,\n",
      "          'genuine': 1,\n",
      "          'feeling': 1,\n",
      "          'wander': 1,\n",
      "          'elsewhere': 1,\n",
      "          'painfully': 1,\n",
      "          'clumsy': 1,\n",
      "          'strung': 1,\n",
      "          'brief': 1,\n",
      "          'surprising': 1,\n",
      "          'poignancy': 1,\n",
      "          'nawaiting': 1,\n",
      "          'enduring': 1,\n",
      "          'rest': 1,\n",
      "          'worth': 1,\n",
      "          'money': 1,\n",
      "          'nalthough': 1,\n",
      "          'evolved': 1,\n",
      "          'stereotypical': 1,\n",
      "          'prettyboy': 1,\n",
      "          'cocoon': 1,\n",
      "          'effortless': 1,\n",
      "          'nmost': 1,\n",
      "          'recognize': 1,\n",
      "          'highflying': 1,\n",
      "          'robin': 1,\n",
      "          'latest': 1,\n",
      "          'batman': 1,\n",
      "          'films': 1,\n",
      "          'abilities': 1,\n",
      "          'evident': 1,\n",
      "          'boyish': 1,\n",
      "          'smile': 1,\n",
      "          'ncan': 1,\n",
      "          'carry': 1,\n",
      "          'weight': 1,\n",
      "          'shoulders': 1,\n",
      "          'nperhaps': 1,\n",
      "          'found': 1,\n",
      "          'proper': 1,\n",
      "          'nbut': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'requirements': 1,\n",
      "          'cant': 1,\n",
      "          'register': 1,\n",
      "          'pathetic': 1,\n",
      "          'guiding': 1,\n",
      "          'light': 1,\n",
      "          'success': 1,\n",
      "          'na': 1,\n",
      "          'instances': 1,\n",
      "          'adorable': 1,\n",
      "          'humor': 1,\n",
      "          'aside': 1,\n",
      "          'apparent': 1,\n",
      "          'festering': 1,\n",
      "          'plays': 1,\n",
      "          'hopeless': 1,\n",
      "          'late': 1,\n",
      "          'twenties': 1,\n",
      "          'whos': 1,\n",
      "          'progressing': 1,\n",
      "          'serious': 1,\n",
      "          'relationship': 1,\n",
      "          'renee': 1,\n",
      "          'njimmie': 1,\n",
      "          'takes': 1,\n",
      "          'dinner': 1,\n",
      "          'restaurant': 1,\n",
      "          'specifically': 1,\n",
      "          'used': 1,\n",
      "          'proposals': 1,\n",
      "          'attempts': 1,\n",
      "          'ask': 1,\n",
      "          'hand': 1,\n",
      "          'marriage': 1,\n",
      "          'problem': 1,\n",
      "          'proposal': 1,\n",
      "          'sucks': 1,\n",
      "          'nbig': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'things': 1,\n",
      "          'arent': 1,\n",
      "          'going': 1,\n",
      "          'pleasantly': 1,\n",
      "          'gets': 1,\n",
      "          'infamous': 1,\n",
      "          'deerintheheadlights': 1,\n",
      "          'look': 1,\n",
      "          'questions': 1,\n",
      "          'stupidity': 1,\n",
      "          'thickens': 1,\n",
      "          'njimmies': 1,\n",
      "          'peter': 1,\n",
      "          'ustinov': 1,\n",
      "          'dies': 1,\n",
      "          'suddenly': 1,\n",
      "          'leaving': 1,\n",
      "          'video': 1,\n",
      "          'grandson': 1,\n",
      "          'also': 1,\n",
      "          'happens': 1,\n",
      "          'living': 1,\n",
      "          'relative': 1,\n",
      "          'neverybody': 1,\n",
      "          'speechless': 1,\n",
      "          'grandpa': 1,\n",
      "          'declares': 1,\n",
      "          'passing': 1,\n",
      "          'inheritance': 1,\n",
      "          'amount': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'theres': 1,\n",
      "          'catch': 1,\n",
      "          'get': 1,\n",
      "          'married': 1,\n",
      "          '30th': 1,\n",
      "          'stay': 1,\n",
      "          'joined': 1,\n",
      "          'entire': 1,\n",
      "          'decade': 1,\n",
      "          'produce': 1,\n",
      "          'healthy': 1,\n",
      "          'children': 1,\n",
      "          'first': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'bad': 1,\n",
      "          'news': 1,\n",
      "          'following': 1,\n",
      "          'day': 1,\n",
      "          'nwith': 1,\n",
      "          'town': 1,\n",
      "          'willing': 1,\n",
      "          'share': 1,\n",
      "          'riches': 1,\n",
      "          'limited': 1,\n",
      "          'frame': 1,\n",
      "          'nthere': 1,\n",
      "          'worthwhile': 1,\n",
      "          'aspects': 1,\n",
      "          'nfor': 1,\n",
      "          'dripping': 1,\n",
      "          'clich': 1,\n",
      "          'nanother': 1,\n",
      "          'supporting': 1,\n",
      "          'tries': 1,\n",
      "          'relentlessly': 1,\n",
      "          'rescue': 1,\n",
      "          'drowning': 1,\n",
      "          'mediocrity': 1,\n",
      "          'nustinov': 1,\n",
      "          'cranky': 1,\n",
      "          'figure': 1,\n",
      "          'james': 1,\n",
      "          'cromwell': 1,\n",
      "          'sincere': 1,\n",
      "          'effective': 1,\n",
      "          'wise': 1,\n",
      "          'priest': 1,\n",
      "          'dragged': 1,\n",
      "          'marital': 1,\n",
      "          'adventures': 1,\n",
      "          'cons': 1,\n",
      "          'may': 1,\n",
      "          'trying': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'method': 1,\n",
      "          'director': 1,\n",
      "          'gary': 1,\n",
      "          'sinyor': 1,\n",
      "          'gives': 1,\n",
      "          'synthetic': 1,\n",
      "          'feel': 1,\n",
      "          'characters': 1,\n",
      "          'drawn': 1,\n",
      "          'obvious': 1,\n",
      "          'broad': 1,\n",
      "          'strokes': 1,\n",
      "          'bogged': 1,\n",
      "          'everything': 1,\n",
      "          'humanly': 1,\n",
      "          'imaginable': 1,\n",
      "          'nyes': 1,\n",
      "          'frustrating': 1,\n",
      "          'lamely': 1,\n",
      "          'written': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'poorly': 1,\n",
      "          'conceived': 1,\n",
      "          'considerable': 1,\n",
      "          'leads': 1,\n",
      "          'thoughtlessly': 1,\n",
      "          'wasted': 1,\n",
      "          'whatever': 1,\n",
      "          'promise': 1,\n",
      "          'initially': 1,\n",
      "          'contained': 1,\n",
      "          'npotential': 1,\n",
      "          'goes': 1,\n",
      "          'window': 1,\n",
      "          'early': 1,\n",
      "          'suit': 1,\n",
      "          'sinyors': 1,\n",
      "          'minute': 1,\n",
      "          'hapless': 1,\n",
      "          'drivel': 1,\n",
      "          'seems': 1,\n",
      "          'accustomed': 1,\n",
      "          'directors': 1,\n",
      "          'wishes': 1,\n",
      "          'lost': 1,\n",
      "          'without': 1,\n",
      "          'homing': 1,\n",
      "          'beacon': 1,\n",
      "          'nyouve': 1,\n",
      "          'seen': 1,\n",
      "          'tv': 1,\n",
      "          'spots': 1,\n",
      "          'havent': 1,\n",
      "          'madly': 1,\n",
      "          'rushing': 1,\n",
      "          'deserted': 1,\n",
      "          'street': 1,\n",
      "          'caption': 1,\n",
      "          'reads': 1,\n",
      "          'man': 1,\n",
      "          'nin': 1,\n",
      "          'actuality': 1,\n",
      "          'hes': 1,\n",
      "          'fleeing': 1,\n",
      "          'thousands': 1,\n",
      "          'brides': 1,\n",
      "          'want': 1,\n",
      "          'marry': 1,\n",
      "          'inherit': 1,\n",
      "          'fortune': 1,\n",
      "          'sequences': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'believe': 1,\n",
      "          'approaching': 1,\n",
      "          'horde': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'fans': 1,\n",
      "          'endured': 1,\n",
      "          'hunting': 1,\n",
      "          'revenge': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'talk': 5,\n",
      "          'lives': 5,\n",
      "          'film': 5,\n",
      "          'topless': 4,\n",
      "          'women': 4,\n",
      "          'brilliant': 4,\n",
      "          'hour': 4,\n",
      "          'people': 4,\n",
      "          'events': 4,\n",
      "          'know': 3,\n",
      "          'end': 3,\n",
      "          'nit': 3,\n",
      "          'nthe': 3,\n",
      "          'around': 3,\n",
      "          'like': 3,\n",
      "          'characters': 2,\n",
      "          'liz': 2,\n",
      "          'boyfriend': 2,\n",
      "          'first': 2,\n",
      "          'go': 2,\n",
      "          'seem': 2,\n",
      "          'place': 2,\n",
      "          'nthis': 2,\n",
      "          'lot': 2,\n",
      "          'half': 2,\n",
      "          'sense': 2,\n",
      "          'actors': 2,\n",
      "          'good': 2,\n",
      "          'movie': 2,\n",
      "          'real': 2,\n",
      "          'turn': 2,\n",
      "          'world': 2,\n",
      "          'falls': 1,\n",
      "          'category': 1,\n",
      "          'mentioned': 1,\n",
      "          'devils': 1,\n",
      "          'advocate': 1,\n",
      "          'movies': 1,\n",
      "          'beginning': 1,\n",
      "          'dont': 1,\n",
      "          'begins': 1,\n",
      "          'introducing': 1,\n",
      "          'us': 1,\n",
      "          'selection': 1,\n",
      "          'nthere': 1,\n",
      "          'oversleeps': 1,\n",
      "          'running': 1,\n",
      "          'late': 1,\n",
      "          'appointment': 1,\n",
      "          'prue': 1,\n",
      "          'getting': 1,\n",
      "          'married': 1,\n",
      "          'geoff': 1,\n",
      "          'lizs': 1,\n",
      "          'neil': 1,\n",
      "          'previous': 1,\n",
      "          'ant': 1,\n",
      "          'written': 1,\n",
      "          'screenplay': 1,\n",
      "          'nfor': 1,\n",
      "          'get': 1,\n",
      "          'everyday': 1,\n",
      "          'activities': 1,\n",
      "          'phone': 1,\n",
      "          'dinner': 1,\n",
      "          'hang': 1,\n",
      "          'clothes': 1,\n",
      "          'line': 1,\n",
      "          'interactions': 1,\n",
      "          'truthful': 1,\n",
      "          'guileless': 1,\n",
      "          'almost': 1,\n",
      "          'filmmakers': 1,\n",
      "          'hid': 1,\n",
      "          'cameras': 1,\n",
      "          'filmed': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'border': 1,\n",
      "          'ridiculous': 1,\n",
      "          'screening': 1,\n",
      "          'still': 1,\n",
      "          'keeping': 1,\n",
      "          'doesnt': 1,\n",
      "          'sound': 1,\n",
      "          'premise': 1,\n",
      "          'follow': 1,\n",
      "          'vaguely': 1,\n",
      "          'related': 1,\n",
      "          'execution': 1,\n",
      "          'idea': 1,\n",
      "          'makes': 1,\n",
      "          'engrossing': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'level': 1,\n",
      "          'honesty': 1,\n",
      "          'isnt': 1,\n",
      "          'maintained': 1,\n",
      "          'nwith': 1,\n",
      "          'impending': 1,\n",
      "          'doom': 1,\n",
      "          'invades': 1,\n",
      "          'descends': 1,\n",
      "          'melodrama': 1,\n",
      "          'nsuch': 1,\n",
      "          'disappointment': 1,\n",
      "          'start': 1,\n",
      "          'quite': 1,\n",
      "          'ms': 1,\n",
      "          'danielle': 1,\n",
      "          'cormack': 1,\n",
      "          'particularly': 1,\n",
      "          'impressive': 1,\n",
      "          'energy': 1,\n",
      "          'character': 1,\n",
      "          'palpable': 1,\n",
      "          'major': 1,\n",
      "          'reason': 1,\n",
      "          'watchable': 1,\n",
      "          'na': 1,\n",
      "          'performances': 1,\n",
      "          'bit': 1,\n",
      "          'rough': 1,\n",
      "          'edges': 1,\n",
      "          'suits': 1,\n",
      "          'totally': 1,\n",
      "          'documentary': 1,\n",
      "          'feel': 1,\n",
      "          'seems': 1,\n",
      "          'watching': 1,\n",
      "          'rather': 1,\n",
      "          'playing': 1,\n",
      "          'roles': 1,\n",
      "          'nthat': 1,\n",
      "          'melodramatic': 1,\n",
      "          'comes': 1,\n",
      "          'shock': 1,\n",
      "          'nup': 1,\n",
      "          'till': 1,\n",
      "          'point': 1,\n",
      "          'transported': 1,\n",
      "          'mildly': 1,\n",
      "          'insane': 1,\n",
      "          'taking': 1,\n",
      "          'nwhile': 1,\n",
      "          'final': 1,\n",
      "          'beyond': 1,\n",
      "          'realms': 1,\n",
      "          'possibility': 1,\n",
      "          'unlikely': 1,\n",
      "          'way': 1,\n",
      "          'jarring': 1,\n",
      "          'someone': 1,\n",
      "          'caught': 1,\n",
      "          'nnot': 1,\n",
      "          'also': 1,\n",
      "          'tone': 1,\n",
      "          'wrong': 1,\n",
      "          'clashing': 1,\n",
      "          'strongly': 1,\n",
      "          'fun': 1,\n",
      "          'preceded': 1,\n",
      "          'say': 1,\n",
      "          'nas': 1,\n",
      "          'stated': 1,\n",
      "          'superb': 1,\n",
      "          'even': 1,\n",
      "          'average': 1,\n",
      "          'takes': 1,\n",
      "          'means': 1,\n",
      "          'otherwise': 1,\n",
      "          'loses': 1,\n",
      "          'gloss': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'name': 2,\n",
      "          'title': 2,\n",
      "          'mars': 2,\n",
      "          'would': 2,\n",
      "          'home': 2,\n",
      "          'nthe': 2,\n",
      "          'matriarchal': 2,\n",
      "          'society': 2,\n",
      "          'beware': 1,\n",
      "          'movies': 1,\n",
      "          'directors': 1,\n",
      "          'ntake': 1,\n",
      "          'john': 1,\n",
      "          'carpenters': 1,\n",
      "          'ghosts': 1,\n",
      "          'please': 1,\n",
      "          'nif': 1,\n",
      "          'carpenter': 1,\n",
      "          'brand': 1,\n",
      "          'wasnt': 1,\n",
      "          'superglued': 1,\n",
      "          'embarrassment': 1,\n",
      "          'surely': 1,\n",
      "          'bypassed': 1,\n",
      "          'theaters': 1,\n",
      "          'entirely': 1,\n",
      "          'gone': 1,\n",
      "          'straight': 1,\n",
      "          'proper': 1,\n",
      "          'usa': 1,\n",
      "          'network': 1,\n",
      "          'nand': 1,\n",
      "          'spared': 1,\n",
      "          'headache': 1,\n",
      "          'latest': 1,\n",
      "          'director': 1,\n",
      "          'starman': 1,\n",
      "          'halloween': 1,\n",
      "          'escape': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'lousy': 1,\n",
      "          'western': 1,\n",
      "          'gussied': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'futuristic': 1,\n",
      "          'horror': 1,\n",
      "          'flick': 1,\n",
      "          'production': 1,\n",
      "          'set': 1,\n",
      "          '2176': 1,\n",
      "          'humanity': 1,\n",
      "          'looks': 1,\n",
      "          'relief': 1,\n",
      "          'overpopulation': 1,\n",
      "          'strangling': 1,\n",
      "          'world': 1,\n",
      "          'nsix': 1,\n",
      "          'hundred': 1,\n",
      "          'forty': 1,\n",
      "          'thousand': 1,\n",
      "          'people': 1,\n",
      "          'live': 1,\n",
      "          'work': 1,\n",
      "          'outposts': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'terraforming': 1,\n",
      "          'make': 1,\n",
      "          'hospitable': 1,\n",
      "          'future': 1,\n",
      "          'generations': 1,\n",
      "          'na': 1,\n",
      "          'nterraforming': 1,\n",
      "          'nsounds': 1,\n",
      "          'pretty': 1,\n",
      "          'intriguing': 1,\n",
      "          'eh': 1,\n",
      "          'nwell': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'hopes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'max': 6,\n",
      "          'films': 3,\n",
      "          'dont': 3,\n",
      "          'see': 3,\n",
      "          'like': 3,\n",
      "          'isnt': 3,\n",
      "          'better': 3,\n",
      "          'day': 3,\n",
      "          'year': 2,\n",
      "          'digimon': 2,\n",
      "          'move': 2,\n",
      "          'little': 2,\n",
      "          'doesnt': 2,\n",
      "          'much': 2,\n",
      "          'get': 2,\n",
      "          'keeble': 2,\n",
      "          'film': 2,\n",
      "          'youd': 2,\n",
      "          'dubya': 2,\n",
      "          'week': 2,\n",
      "          'first': 2,\n",
      "          'man': 2,\n",
      "          'snow': 2,\n",
      "          'school': 2,\n",
      "          'nhe': 2,\n",
      "          'family': 2,\n",
      "          'maxs': 2,\n",
      "          'pretty': 2,\n",
      "          'august': 1,\n",
      "          'september': 1,\n",
      "          'wasteland': 1,\n",
      "          'comes': 1,\n",
      "          'childrens': 1,\n",
      "          'october': 1,\n",
      "          'dumping': 1,\n",
      "          'ground': 1,\n",
      "          'munchkin': 1,\n",
      "          'movies': 1,\n",
      "          'studios': 1,\n",
      "          'want': 1,\n",
      "          'slaughtered': 1,\n",
      "          'familyoriented': 1,\n",
      "          'thanksgiving': 1,\n",
      "          'nlast': 1,\n",
      "          'benevolent': 1,\n",
      "          'studio': 1,\n",
      "          'gods': 1,\n",
      "          'gave': 1,\n",
      "          'us': 1,\n",
      "          'bestow': 1,\n",
      "          'keebles': 1,\n",
      "          'big': 1,\n",
      "          'delighted': 1,\n",
      "          'moviegoers': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'nparents': 1,\n",
      "          'thrilled': 1,\n",
      "          'theyll': 1,\n",
      "          'finally': 1,\n",
      "          'something': 1,\n",
      "          'drag': 1,\n",
      "          'austin': 1,\n",
      "          'kayla': 1,\n",
      "          'smell': 1,\n",
      "          'nearly': 1,\n",
      "          'ass': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'actually': 1,\n",
      "          'ment': 1,\n",
      "          'away': 1,\n",
      "          'fetish': 1,\n",
      "          'entertaining': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'waiting': 1,\n",
      "          'blow': 1,\n",
      "          'disposable': 1,\n",
      "          'income': 1,\n",
      "          'real': 1,\n",
      "          'kiddie': 1,\n",
      "          'pics': 1,\n",
      "          'monsters': 1,\n",
      "          'inc': 1,\n",
      "          'harry': 1,\n",
      "          'potter': 1,\n",
      "          'come': 1,\n",
      "          'next': 1,\n",
      "          'month': 1,\n",
      "          'nbut': 1,\n",
      "          'iii': 1,\n",
      "          'tells': 1,\n",
      "          'go': 1,\n",
      "          'spend': 1,\n",
      "          'money': 1,\n",
      "          'stimulate': 1,\n",
      "          'economy': 1,\n",
      "          'gassing': 1,\n",
      "          'minivan': 1,\n",
      "          'twice': 1,\n",
      "          'going': 1,\n",
      "          'cut': 1,\n",
      "          'nwe': 1,\n",
      "          'young': 1,\n",
      "          'alex': 1,\n",
      "          'linz': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          '3': 1,\n",
      "          'pintsized': 1,\n",
      "          'superhero': 1,\n",
      "          'delivering': 1,\n",
      "          'newspapers': 1,\n",
      "          'pinpoint': 1,\n",
      "          'accuracy': 1,\n",
      "          'david': 1,\n",
      "          'beckham': 1,\n",
      "          'cross': 1,\n",
      "          'foiling': 1,\n",
      "          'diabolical': 1,\n",
      "          'plans': 1,\n",
      "          'evil': 1,\n",
      "          'ice': 1,\n",
      "          'cream': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'jay': 1,\n",
      "          'silent': 1,\n",
      "          'bob': 1,\n",
      "          'strike': 1,\n",
      "          'back': 1,\n",
      "          'landing': 1,\n",
      "          'neighborhood': 1,\n",
      "          'honey': 1,\n",
      "          'brooke': 1,\n",
      "          'anne': 1,\n",
      "          'smith': 1,\n",
      "          'way': 1,\n",
      "          'hottest': 1,\n",
      "          'chick': 1,\n",
      "          'disney': 1,\n",
      "          'since': 1,\n",
      "          'emmanuelle': 1,\n",
      "          'chriqui': 1,\n",
      "          'played': 1,\n",
      "          'claire': 1,\n",
      "          'boner': 1,\n",
      "          'nthe': 1,\n",
      "          'scenario': 1,\n",
      "          'course': 1,\n",
      "          'dream': 1,\n",
      "          'nmax': 1,\n",
      "          'really': 1,\n",
      "          'doofus': 1,\n",
      "          'wakes': 1,\n",
      "          'junior': 1,\n",
      "          'high': 1,\n",
      "          'pessimistic': 1,\n",
      "          'attitude': 1,\n",
      "          'luck': 1,\n",
      "          'ladies': 1,\n",
      "          'two': 1,\n",
      "          'friends': 1,\n",
      "          'kindly': 1,\n",
      "          'described': 1,\n",
      "          'social': 1,\n",
      "          'outcasts': 1,\n",
      "          'perpetually': 1,\n",
      "          'robed': 1,\n",
      "          'robe': 1,\n",
      "          'josh': 1,\n",
      "          'peck': 1,\n",
      "          'clarinetplaying': 1,\n",
      "          'cutie': 1,\n",
      "          'named': 1,\n",
      "          'megan': 1,\n",
      "          'summer': 1,\n",
      "          'catchs': 1,\n",
      "          'zena': 1,\n",
      "          'grey': 1,\n",
      "          'harbors': 1,\n",
      "          'secret': 1,\n",
      "          'feelings': 1,\n",
      "          'nthings': 1,\n",
      "          'arrives': 1,\n",
      "          'contend': 1,\n",
      "          'among': 1,\n",
      "          'things': 1,\n",
      "          'redhot': 1,\n",
      "          'science': 1,\n",
      "          'teacher': 1,\n",
      "          'amber': 1,\n",
      "          'valletta': 1,\n",
      "          'pair': 1,\n",
      "          'polaropposite': 1,\n",
      "          'bullies': 1,\n",
      "          'noel': 1,\n",
      "          'fisher': 1,\n",
      "          'orlando': 1,\n",
      "          'brown': 1,\n",
      "          'illiterate': 1,\n",
      "          'principal': 1,\n",
      "          'larry': 1,\n",
      "          'miller': 1,\n",
      "          'princess': 1,\n",
      "          'diaries': 1,\n",
      "          'whos': 1,\n",
      "          'secretly': 1,\n",
      "          'diverting': 1,\n",
      "          'schools': 1,\n",
      "          'last': 1,\n",
      "          'dime': 1,\n",
      "          'football': 1,\n",
      "          'program': 1,\n",
      "          'nwhen': 1,\n",
      "          'father': 1,\n",
      "          'grownup': 1,\n",
      "          'nerd': 1,\n",
      "          'robert': 1,\n",
      "          'carradine': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'announces': 1,\n",
      "          'moving': 1,\n",
      "          'new': 1,\n",
      "          'town': 1,\n",
      "          'end': 1,\n",
      "          'decides': 1,\n",
      "          'perfect': 1,\n",
      "          'time': 1,\n",
      "          'exact': 1,\n",
      "          'revenge': 1,\n",
      "          'everyone': 1,\n",
      "          'pisses': 1,\n",
      "          'nwhoa': 1,\n",
      "          'worry': 1,\n",
      "          'parents': 1,\n",
      "          'kleboldharris': 1,\n",
      "          'style': 1,\n",
      "          'nits': 1,\n",
      "          'tame': 1,\n",
      "          'stuff': 1,\n",
      "          'ends': 1,\n",
      "          'hot': 1,\n",
      "          'water': 1,\n",
      "          'dad': 1,\n",
      "          'nixes': 1,\n",
      "          'leaving': 1,\n",
      "          'son': 1,\n",
      "          'dangling': 1,\n",
      "          'wind': 1,\n",
      "          'many': 1,\n",
      "          'tampon': 1,\n",
      "          'strings': 1,\n",
      "          'ndirector': 1,\n",
      "          'tim': 1,\n",
      "          'hill': 1,\n",
      "          'muppets': 1,\n",
      "          'space': 1,\n",
      "          'adds': 1,\n",
      "          'nice': 1,\n",
      "          'touches': 1,\n",
      "          'voiceover': 1,\n",
      "          'character': 1,\n",
      "          'introductions': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'flashback': 1,\n",
      "          'scene': 1,\n",
      "          'thats': 1,\n",
      "          'funny': 1,\n",
      "          'else': 1,\n",
      "          'happening': 1,\n",
      "          'stylewise': 1,\n",
      "          'unless': 1,\n",
      "          'nyou': 1,\n",
      "          'count': 1,\n",
      "          'farting': 1,\n",
      "          'puking': 1,\n",
      "          'couple': 1,\n",
      "          'bizarre': 1,\n",
      "          'cameos': 1,\n",
      "          'tony': 1,\n",
      "          'hawk': 1,\n",
      "          'lil': 1,\n",
      "          'romeo': 1,\n",
      "          'n1': 1,\n",
      "          '30': 1,\n",
      "          'pg': 1,\n",
      "          'bullying': 1,\n",
      "          'crude': 1,\n",
      "          'humor': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 11,\n",
      "          'horizon': 5,\n",
      "          'event': 4,\n",
      "          'nthe': 4,\n",
      "          'nit': 4,\n",
      "          'nand': 3,\n",
      "          'future': 3,\n",
      "          'go': 3,\n",
      "          'ship': 3,\n",
      "          'film': 3,\n",
      "          'ripoff': 3,\n",
      "          '40': 3,\n",
      "          'minutes': 3,\n",
      "          'kind': 3,\n",
      "          'many': 3,\n",
      "          'little': 3,\n",
      "          'one': 3,\n",
      "          'story': 3,\n",
      "          'black': 2,\n",
      "          'hole': 2,\n",
      "          'also': 2,\n",
      "          'vanished': 2,\n",
      "          'crew': 2,\n",
      "          'nif': 2,\n",
      "          'know': 2,\n",
      "          'infinite': 2,\n",
      "          'terror': 2,\n",
      "          'certainly': 2,\n",
      "          'seems': 2,\n",
      "          'sick': 2,\n",
      "          'alien': 2,\n",
      "          'degenerates': 2,\n",
      "          'first': 2,\n",
      "          'interesting': 2,\n",
      "          'nthats': 2,\n",
      "          'tries': 2,\n",
      "          'make': 2,\n",
      "          'viewers': 2,\n",
      "          'feel': 2,\n",
      "          'gore': 2,\n",
      "          'seen': 2,\n",
      "          'respect': 2,\n",
      "          'audience': 2,\n",
      "          'nthere': 2,\n",
      "          'floating': 2,\n",
      "          'extremely': 2,\n",
      "          'save': 2,\n",
      "          'idea': 2,\n",
      "          'life': 2,\n",
      "          'space': 2,\n",
      "          'nbut': 2,\n",
      "          'talent': 2,\n",
      "          'premise': 2,\n",
      "          'something': 2,\n",
      "          'nhe': 2,\n",
      "          'scene': 2,\n",
      "          'fully': 2,\n",
      "          'look': 2,\n",
      "          'forward': 2,\n",
      "          'boundary': 1,\n",
      "          'name': 1,\n",
      "          'spaceship': 1,\n",
      "          'tried': 1,\n",
      "          'faster': 1,\n",
      "          'speed': 1,\n",
      "          'light': 1,\n",
      "          'traversing': 1,\n",
      "          'portable': 1,\n",
      "          'nnaturally': 1,\n",
      "          'setup': 1,\n",
      "          'nwhen': 1,\n",
      "          'suddenly': 1,\n",
      "          'appears': 1,\n",
      "          'point': 1,\n",
      "          'outside': 1,\n",
      "          'neptune': 1,\n",
      "          'called': 1,\n",
      "          'lewis': 1,\n",
      "          'clark': 1,\n",
      "          'investigate': 1,\n",
      "          'dr': 1,\n",
      "          'william': 1,\n",
      "          'weir': 1,\n",
      "          'creator': 1,\n",
      "          'gets': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'ride': 1,\n",
      "          'youve': 1,\n",
      "          'glanced': 1,\n",
      "          'poster': 1,\n",
      "          'supposedly': 1,\n",
      "          'follows': 1,\n",
      "          'nwell': 1,\n",
      "          'dont': 1,\n",
      "          'part': 1,\n",
      "          'qualify': 1,\n",
      "          'nevent': 1,\n",
      "          'meanspirited': 1,\n",
      "          'gory': 1,\n",
      "          'excuse': 1,\n",
      "          'starts': 1,\n",
      "          'pointlessly': 1,\n",
      "          'bloody': 1,\n",
      "          'slasher': 1,\n",
      "          'flick': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'lot': 1,\n",
      "          'said': 1,\n",
      "          'rest': 1,\n",
      "          'forever': 1,\n",
      "          'scary': 1,\n",
      "          'monster': 1,\n",
      "          'psychological': 1,\n",
      "          'thriller': 1,\n",
      "          'simply': 1,\n",
      "          'stomach': 1,\n",
      "          'site': 1,\n",
      "          'extreme': 1,\n",
      "          'nyouve': 1,\n",
      "          'hellraiser': 1,\n",
      "          'series': 1,\n",
      "          'plenty': 1,\n",
      "          'scenes': 1,\n",
      "          'containing': 1,\n",
      "          'sensibility': 1,\n",
      "          'nthis': 1,\n",
      "          'hoped': 1,\n",
      "          'died': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'quite': 1,\n",
      "          'possible': 1,\n",
      "          'frighten': 1,\n",
      "          'shock': 1,\n",
      "          'without': 1,\n",
      "          'resorting': 1,\n",
      "          'nothing': 1,\n",
      "          'takes': 1,\n",
      "          'low': 1,\n",
      "          'road': 1,\n",
      "          'pay': 1,\n",
      "          'price': 1,\n",
      "          'good': 1,\n",
      "          'respectable': 1,\n",
      "          'performances': 1,\n",
      "          'fishburne': 1,\n",
      "          'neill': 1,\n",
      "          'noticably': 1,\n",
      "          'npaul': 1,\n",
      "          'andersons': 1,\n",
      "          'direction': 1,\n",
      "          'impressive': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          'nice': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'mostly': 1,\n",
      "          'dealing': 1,\n",
      "          'numerous': 1,\n",
      "          'common': 1,\n",
      "          'objects': 1,\n",
      "          'around': 1,\n",
      "          'zerogravity': 1,\n",
      "          'sets': 1,\n",
      "          'beautiful': 1,\n",
      "          'gaze': 1,\n",
      "          'upon': 1,\n",
      "          'richard': 1,\n",
      "          'jones': 1,\n",
      "          'character': 1,\n",
      "          'cooper': 1,\n",
      "          'hilarious': 1,\n",
      "          'likable': 1,\n",
      "          'characters': 1,\n",
      "          'ive': 1,\n",
      "          'recent': 1,\n",
      "          'movies': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'none': 1,\n",
      "          'dgrade': 1,\n",
      "          'level': 1,\n",
      "          'sort': 1,\n",
      "          'within': 1,\n",
      "          'walls': 1,\n",
      "          'knows': 1,\n",
      "          'fears': 1,\n",
      "          'inner': 1,\n",
      "          'skeletons': 1,\n",
      "          'human': 1,\n",
      "          'passengers': 1,\n",
      "          'promising': 1,\n",
      "          'na': 1,\n",
      "          'haunted': 1,\n",
      "          'house': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'final': 1,\n",
      "          'execution': 1,\n",
      "          'disappointing': 1,\n",
      "          'say': 1,\n",
      "          'philip': 1,\n",
      "          'eisner': 1,\n",
      "          'making': 1,\n",
      "          'feature': 1,\n",
      "          'filmwriting': 1,\n",
      "          'debut': 1,\n",
      "          'doesnt': 1,\n",
      "          'nfor': 1,\n",
      "          'manages': 1,\n",
      "          'tired': 1,\n",
      "          'adding': 1,\n",
      "          'aspects': 1,\n",
      "          'unique': 1,\n",
      "          'flavor': 1,\n",
      "          'thats': 1,\n",
      "          'writers': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'sicken': 1,\n",
      "          'honestly': 1,\n",
      "          'tense': 1,\n",
      "          'question': 1,\n",
      "          'deals': 1,\n",
      "          'airlock': 1,\n",
      "          'others': 1,\n",
      "          'try': 1,\n",
      "          'definitely': 1,\n",
      "          'gift': 1,\n",
      "          'display': 1,\n",
      "          'ni': 1,\n",
      "          'seeing': 1,\n",
      "          'hope': 1,\n",
      "          'work': 1,\n",
      "          'explores': 1,\n",
      "          'possibilities': 1,\n",
      "          'got': 1,\n",
      "          'enjoyment': 1,\n",
      "          'agree': 1,\n",
      "          'laurence': 1,\n",
      "          'fishburnes': 1,\n",
      "          'sentiment': 1,\n",
      "          'god': 1,\n",
      "          'help': 1,\n",
      "          'us': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'film': 5,\n",
      "          'chainsaw': 4,\n",
      "          'bad': 4,\n",
      "          'mcconaughey': 4,\n",
      "          'never': 3,\n",
      "          'zellweger': 3,\n",
      "          'would': 3,\n",
      "          'rule': 2,\n",
      "          'na': 2,\n",
      "          'sequel': 2,\n",
      "          'good': 2,\n",
      "          'original': 2,\n",
      "          'nthere': 2,\n",
      "          'massacre': 2,\n",
      "          'also': 2,\n",
      "          'isnt': 2,\n",
      "          'even': 2,\n",
      "          'time': 2,\n",
      "          'made': 2,\n",
      "          'stars': 2,\n",
      "          'acting': 2,\n",
      "          'ever': 2,\n",
      "          'napparently': 2,\n",
      "          'two': 2,\n",
      "          'dont': 2,\n",
      "          'sort': 2,\n",
      "          'horror': 2,\n",
      "          'plays': 2,\n",
      "          'remote': 2,\n",
      "          'control': 2,\n",
      "          'say': 2,\n",
      "          'make': 2,\n",
      "          'worse': 2,\n",
      "          'wrong': 2,\n",
      "          'nthis': 2,\n",
      "          'comes': 1,\n",
      "          'movies': 1,\n",
      "          'exceptions': 1,\n",
      "          'texas': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'one': 1,\n",
      "          'nnow': 1,\n",
      "          'take': 1,\n",
      "          'consideration': 1,\n",
      "          'really': 1,\n",
      "          'first': 1,\n",
      "          'recipe': 1,\n",
      "          'painful': 1,\n",
      "          'viewing': 1,\n",
      "          'experience': 1,\n",
      "          'ndont': 1,\n",
      "          'fooled': 1,\n",
      "          'presence': 1,\n",
      "          'coming': 1,\n",
      "          'talents': 1,\n",
      "          'matthew': 1,\n",
      "          'kill': 1,\n",
      "          'renee': 1,\n",
      "          'jerry': 1,\n",
      "          'maguire': 1,\n",
      "          'nthey': 1,\n",
      "          'njudging': 1,\n",
      "          'performances': 1,\n",
      "          'took': 1,\n",
      "          'lessons': 1,\n",
      "          'nits': 1,\n",
      "          'wonder': 1,\n",
      "          'worked': 1,\n",
      "          'hollywood': 1,\n",
      "          'appearing': 1,\n",
      "          'turkey': 1,\n",
      "          'producers': 1,\n",
      "          'realized': 1,\n",
      "          'sat': 1,\n",
      "          'unreleased': 1,\n",
      "          'years': 1,\n",
      "          'someone': 1,\n",
      "          'decided': 1,\n",
      "          'might': 1,\n",
      "          'able': 1,\n",
      "          'capitalize': 1,\n",
      "          'success': 1,\n",
      "          'young': 1,\n",
      "          'none': 1,\n",
      "          'happy': 1,\n",
      "          'thing': 1,\n",
      "          'seeing': 1,\n",
      "          'light': 1,\n",
      "          'day': 1,\n",
      "          'nand': 1,\n",
      "          'blame': 1,\n",
      "          'better': 1,\n",
      "          'porno': 1,\n",
      "          'flick': 1,\n",
      "          'starring': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'typically': 1,\n",
      "          'stupid': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'character': 1,\n",
      "          'nwhile': 1,\n",
      "          'guy': 1,\n",
      "          'wears': 1,\n",
      "          'mechanical': 1,\n",
      "          'brace': 1,\n",
      "          'leg': 1,\n",
      "          'controls': 1,\n",
      "          'television': 1,\n",
      "          'n': 1,\n",
      "          'hey': 1,\n",
      "          'didnt': 1,\n",
      "          'warn': 1,\n",
      "          'nto': 1,\n",
      "          'matters': 1,\n",
      "          'leatherface': 1,\n",
      "          'wielding': 1,\n",
      "          'maniac': 1,\n",
      "          'scariest': 1,\n",
      "          'psychopathic': 1,\n",
      "          'killers': 1,\n",
      "          'best': 1,\n",
      "          'times': 1,\n",
      "          'become': 1,\n",
      "          'full': 1,\n",
      "          'blown': 1,\n",
      "          'crossdresser': 1,\n",
      "          'spends': 1,\n",
      "          'entire': 1,\n",
      "          'drag': 1,\n",
      "          'plot': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'nlets': 1,\n",
      "          'suffice': 1,\n",
      "          'group': 1,\n",
      "          'teenagers': 1,\n",
      "          'typical': 1,\n",
      "          'place': 1,\n",
      "          'left': 1,\n",
      "          'mercy': 1,\n",
      "          'man': 1,\n",
      "          'lipstick': 1,\n",
      "          'wearing': 1,\n",
      "          'revving': 1,\n",
      "          'halfwitted': 1,\n",
      "          'sidekick': 1,\n",
      "          'nman': 1,\n",
      "          'cant': 1,\n",
      "          'get': 1,\n",
      "          'absolutely': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'neven': 1,\n",
      "          'obligatory': 1,\n",
      "          'topless': 1,\n",
      "          'babe': 1,\n",
      "          'shot': 1,\n",
      "          'wasnt': 1,\n",
      "          'enough': 1,\n",
      "          'hold': 1,\n",
      "          'interest': 1,\n",
      "          '2': 1,\n",
      "          'seconds': 1,\n",
      "          'nthe': 1,\n",
      "          'writing': 1,\n",
      "          'direction': 1,\n",
      "          'things': 1,\n",
      "          'look': 1,\n",
      "          'comparison': 1,\n",
      "          'people': 1,\n",
      "          'prison': 1,\n",
      "          'watch': 1,\n",
      "          'guarantee': 1,\n",
      "          'criminals': 1,\n",
      "          'thought': 1,\n",
      "          'subjected': 1,\n",
      "          'break': 1,\n",
      "          'law': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'nhe': 4,\n",
      "          'one': 4,\n",
      "          'milton': 4,\n",
      "          'begins': 4,\n",
      "          'movie': 4,\n",
      "          'two': 4,\n",
      "          'lomax': 3,\n",
      "          'also': 3,\n",
      "          'nhis': 3,\n",
      "          'story': 3,\n",
      "          'film': 3,\n",
      "          'never': 3,\n",
      "          'nyoull': 3,\n",
      "          'reeves': 2,\n",
      "          'ultimately': 2,\n",
      "          'character': 2,\n",
      "          'knowing': 2,\n",
      "          'good': 2,\n",
      "          'trial': 2,\n",
      "          'lawyer': 2,\n",
      "          'nin': 2,\n",
      "          'scene': 2,\n",
      "          'guilty': 2,\n",
      "          'desire': 2,\n",
      "          'soon': 2,\n",
      "          'john': 2,\n",
      "          'pacino': 2,\n",
      "          'given': 2,\n",
      "          'life': 2,\n",
      "          'soul': 2,\n",
      "          'firm': 2,\n",
      "          'mary': 2,\n",
      "          'ann': 2,\n",
      "          'nbut': 2,\n",
      "          'begin': 2,\n",
      "          'like': 2,\n",
      "          'makes': 2,\n",
      "          'power': 2,\n",
      "          'devil': 2,\n",
      "          'things': 2,\n",
      "          'much': 2,\n",
      "          'horrifying': 2,\n",
      "          'tries': 2,\n",
      "          'give': 2,\n",
      "          'first': 2,\n",
      "          'get': 2,\n",
      "          'final': 2,\n",
      "          'slowly': 2,\n",
      "          'nthis': 2,\n",
      "          'fully': 2,\n",
      "          'focus': 2,\n",
      "          'seemed': 2,\n",
      "          'hotshot': 1,\n",
      "          'defense': 1,\n",
      "          'attorney': 1,\n",
      "          'kevin': 1,\n",
      "          'keanu': 1,\n",
      "          'special': 1,\n",
      "          'talent': 1,\n",
      "          'picking': 1,\n",
      "          'juries': 1,\n",
      "          'acquit': 1,\n",
      "          'clients': 1,\n",
      "          'excellent': 1,\n",
      "          'judge': 1,\n",
      "          'strings': 1,\n",
      "          'pull': 1,\n",
      "          'sway': 1,\n",
      "          'jury': 1,\n",
      "          'breaking': 1,\n",
      "          'potentially': 1,\n",
      "          'damaging': 1,\n",
      "          'witnesss': 1,\n",
      "          'testimony': 1,\n",
      "          'nand': 1,\n",
      "          'top': 1,\n",
      "          'hes': 1,\n",
      "          'damn': 1,\n",
      "          'opening': 1,\n",
      "          'obvious': 1,\n",
      "          'defendant': 1,\n",
      "          'represents': 1,\n",
      "          'doesnt': 1,\n",
      "          'hamper': 1,\n",
      "          'lomaxs': 1,\n",
      "          'creatively': 1,\n",
      "          'squeeze': 1,\n",
      "          'client': 1,\n",
      "          'doors': 1,\n",
      "          'reasonable': 1,\n",
      "          'doubt': 1,\n",
      "          'thereby': 1,\n",
      "          'getting': 1,\n",
      "          'acquittal': 1,\n",
      "          'unblemished': 1,\n",
      "          'record': 1,\n",
      "          'victories': 1,\n",
      "          'captures': 1,\n",
      "          'attention': 1,\n",
      "          'prestigious': 1,\n",
      "          'firms': 1,\n",
      "          'country': 1,\n",
      "          'headed': 1,\n",
      "          'al': 1,\n",
      "          'brought': 1,\n",
      "          'headquarters': 1,\n",
      "          'nyc': 1,\n",
      "          'immediately': 1,\n",
      "          'impresses': 1,\n",
      "          'subsequently': 1,\n",
      "          'offered': 1,\n",
      "          'fulltime': 1,\n",
      "          'position': 1,\n",
      "          'head': 1,\n",
      "          'newlycreated': 1,\n",
      "          'criminal': 1,\n",
      "          'law': 1,\n",
      "          'division': 1,\n",
      "          'nlomax': 1,\n",
      "          'case': 1,\n",
      "          'must': 1,\n",
      "          'defend': 1,\n",
      "          'real': 1,\n",
      "          'estate': 1,\n",
      "          'tycoon': 1,\n",
      "          'charged': 1,\n",
      "          'triple': 1,\n",
      "          'homicide': 1,\n",
      "          'draw': 1,\n",
      "          'fame': 1,\n",
      "          'prove': 1,\n",
      "          'really': 1,\n",
      "          'isolate': 1,\n",
      "          'hell': 1,\n",
      "          'works': 1,\n",
      "          'late': 1,\n",
      "          'defends': 1,\n",
      "          'pledges': 1,\n",
      "          'neglect': 1,\n",
      "          'smart': 1,\n",
      "          'fretful': 1,\n",
      "          'wife': 1,\n",
      "          'charlize': 1,\n",
      "          'theron': 1,\n",
      "          'starts': 1,\n",
      "          'promising': 1,\n",
      "          'grishamlike': 1,\n",
      "          'consciencestricken': 1,\n",
      "          'lawyers': 1,\n",
      "          'takes': 1,\n",
      "          'abrupt': 1,\n",
      "          'detour': 1,\n",
      "          'supernatural': 1,\n",
      "          'forces': 1,\n",
      "          'tinker': 1,\n",
      "          'nit': 1,\n",
      "          'typical': 1,\n",
      "          'parable': 1,\n",
      "          'smalltown': 1,\n",
      "          'boy': 1,\n",
      "          'big': 1,\n",
      "          'balance': 1,\n",
      "          'sense': 1,\n",
      "          'self': 1,\n",
      "          'allure': 1,\n",
      "          'money': 1,\n",
      "          'greed': 1,\n",
      "          'far': 1,\n",
      "          'corrupt': 1,\n",
      "          'partner': 1,\n",
      "          'nquite': 1,\n",
      "          'literally': 1,\n",
      "          'disguise': 1,\n",
      "          'progresses': 1,\n",
      "          'reveals': 1,\n",
      "          'uncanny': 1,\n",
      "          'talents': 1,\n",
      "          'could': 1,\n",
      "          'sold': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'nfreaky': 1,\n",
      "          'frightening': 1,\n",
      "          'happen': 1,\n",
      "          'elasped': 1,\n",
      "          'miltons': 1,\n",
      "          'intent': 1,\n",
      "          'finally': 1,\n",
      "          'revealed': 1,\n",
      "          'us': 1,\n",
      "          'separate': 1,\n",
      "          'distinct': 1,\n",
      "          'acts': 1,\n",
      "          'involves': 1,\n",
      "          'comeuppance': 1,\n",
      "          'bigcity': 1,\n",
      "          'second': 1,\n",
      "          'focuses': 1,\n",
      "          'ulterior': 1,\n",
      "          'motive': 1,\n",
      "          'employing': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'mix': 1,\n",
      "          'well': 1,\n",
      "          'cohesive': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'stories': 1,\n",
      "          'rely': 1,\n",
      "          'shaky': 1,\n",
      "          'revelation': 1,\n",
      "          'tie': 1,\n",
      "          'together': 1,\n",
      "          'impressive': 1,\n",
      "          'production': 1,\n",
      "          'piece': 1,\n",
      "          'underlying': 1,\n",
      "          'atmosphere': 1,\n",
      "          'ngranted': 1,\n",
      "          'handsomelooking': 1,\n",
      "          'enjoy': 1,\n",
      "          'wall': 1,\n",
      "          'mural': 1,\n",
      "          'seemingly': 1,\n",
      "          'comes': 1,\n",
      "          'heated': 1,\n",
      "          'speech': 1,\n",
      "          'images': 1,\n",
      "          'temptation': 1,\n",
      "          'expressed': 1,\n",
      "          'fleshy': 1,\n",
      "          'flashy': 1,\n",
      "          'parties': 1,\n",
      "          'feel': 1,\n",
      "          'loneliness': 1,\n",
      "          'insanity': 1,\n",
      "          'sets': 1,\n",
      "          'husband': 1,\n",
      "          'drifting': 1,\n",
      "          'away': 1,\n",
      "          'better': 1,\n",
      "          'storylines': 1,\n",
      "          'unfortunately': 1,\n",
      "          'subplot': 1,\n",
      "          'nas': 1,\n",
      "          'involving': 1,\n",
      "          'expect': 1,\n",
      "          'nothing': 1,\n",
      "          'worst': 1,\n",
      "          'scenes': 1,\n",
      "          'anchors': 1,\n",
      "          'drifts': 1,\n",
      "          'background': 1,\n",
      "          'path': 1,\n",
      "          'selfvanity': 1,\n",
      "          'selfconsciousness': 1,\n",
      "          'explored': 1,\n",
      "          'actions': 1,\n",
      "          'seem': 1,\n",
      "          'arbitrary': 1,\n",
      "          'reasons': 1,\n",
      "          'known': 1,\n",
      "          'npacinos': 1,\n",
      "          'comical': 1,\n",
      "          'portrayal': 1,\n",
      "          'spirited': 1,\n",
      "          'vanity': 1,\n",
      "          'shift': 1,\n",
      "          'nthere': 1,\n",
      "          'another': 1,\n",
      "          'plot': 1,\n",
      "          'introduced': 1,\n",
      "          'gets': 1,\n",
      "          'revisited': 1,\n",
      "          'inconsistent': 1,\n",
      "          'throughout': 1,\n",
      "          'payoff': 1,\n",
      "          'quick': 1,\n",
      "          'cheap': 1,\n",
      "          'thrilling': 1,\n",
      "          'dramatic': 1,\n",
      "          'time': 1,\n",
      "          'nhowever': 1,\n",
      "          'devils': 1,\n",
      "          'advocate': 1,\n",
      "          'strives': 1,\n",
      "          'noticed': 1,\n",
      "          'little': 1,\n",
      "          'impression': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'think': 5,\n",
      "          'sure': 4,\n",
      "          'eastwick': 4,\n",
      "          'women': 4,\n",
      "          'nicholson': 4,\n",
      "          'movie': 4,\n",
      "          'na': 4,\n",
      "          'witches': 3,\n",
      "          'ni': 3,\n",
      "          'like': 3,\n",
      "          'nif': 3,\n",
      "          'film': 3,\n",
      "          'one': 3,\n",
      "          'folk': 3,\n",
      "          'little': 3,\n",
      "          'direction': 3,\n",
      "          'scene': 3,\n",
      "          'im': 2,\n",
      "          'going': 2,\n",
      "          'made': 2,\n",
      "          'old': 2,\n",
      "          'get': 2,\n",
      "          'bits': 2,\n",
      "          'seem': 2,\n",
      "          'something': 2,\n",
      "          'role': 2,\n",
      "          'devil': 2,\n",
      "          'goes': 2,\n",
      "          'audience': 2,\n",
      "          'even': 2,\n",
      "          'confused': 2,\n",
      "          'nthey': 2,\n",
      "          'comedy': 2,\n",
      "          'bit': 2,\n",
      "          'tale': 2,\n",
      "          'overtones': 2,\n",
      "          'either': 2,\n",
      "          'funny': 2,\n",
      "          'could': 2,\n",
      "          'nin': 2,\n",
      "          'character': 2,\n",
      "          'never': 2,\n",
      "          'another': 2,\n",
      "          'nand': 2,\n",
      "          'effects': 2,\n",
      "          'guys': 2,\n",
      "          '00': 2,\n",
      "          'people': 2,\n",
      "          'nlet': 2,\n",
      "          'use': 2,\n",
      "          'time': 2,\n",
      "          'seems': 2,\n",
      "          'maybe': 2,\n",
      "          'writing': 1,\n",
      "          'review': 1,\n",
      "          'hell': 1,\n",
      "          'pardon': 1,\n",
      "          'expression': 1,\n",
      "          'nhowever': 1,\n",
      "          'express': 1,\n",
      "          'important': 1,\n",
      "          'observation': 1,\n",
      "          'e': 1,\n",
      "          'didnt': 1,\n",
      "          'summarize': 1,\n",
      "          'id': 1,\n",
      "          'conclude': 1,\n",
      "          'updating': 1,\n",
      "          'new': 1,\n",
      "          'england': 1,\n",
      "          'tales': 1,\n",
      "          'someone': 1,\n",
      "          'selling': 1,\n",
      "          'souls': 1,\n",
      "          'scratch': 1,\n",
      "          'try': 1,\n",
      "          'deal': 1,\n",
      "          'nthats': 1,\n",
      "          'kernel': 1,\n",
      "          'anyway': 1,\n",
      "          'ntossed': 1,\n",
      "          'pieces': 1,\n",
      "          'occasionally': 1,\n",
      "          'saying': 1,\n",
      "          'men': 1,\n",
      "          'feminism': 1,\n",
      "          'modern': 1,\n",
      "          'reformers': 1,\n",
      "          'friendship': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'effort': 1,\n",
      "          'ever': 1,\n",
      "          'follow': 1,\n",
      "          'elucidate': 1,\n",
      "          'concepts': 1,\n",
      "          'theyre': 1,\n",
      "          'simply': 1,\n",
      "          'thrown': 1,\n",
      "          'left': 1,\n",
      "          'rot': 1,\n",
      "          'apace': 1,\n",
      "          'nactually': 1,\n",
      "          'came': 1,\n",
      "          'expecting': 1,\n",
      "          'kind': 1,\n",
      "          'supernatural': 1,\n",
      "          'level': 1,\n",
      "          'ghostbusters': 1,\n",
      "          'getting': 1,\n",
      "          'philosophical': 1,\n",
      "          'laughed': 1,\n",
      "          'tried': 1,\n",
      "          'laugh': 1,\n",
      "          'moments': 1,\n",
      "          'barely': 1,\n",
      "          'much': 1,\n",
      "          'horrible': 1,\n",
      "          'bend': 1,\n",
      "          'away': 1,\n",
      "          'rather': 1,\n",
      "          'frightening': 1,\n",
      "          'nthree': 1,\n",
      "          'cher': 1,\n",
      "          'susan': 1,\n",
      "          'sarandon': 1,\n",
      "          'michelle': 1,\n",
      "          'pfieffer': 1,\n",
      "          'live': 1,\n",
      "          'small': 1,\n",
      "          'midwestern': 1,\n",
      "          'town': 1,\n",
      "          'none': 1,\n",
      "          'night': 1,\n",
      "          'drinking': 1,\n",
      "          'late': 1,\n",
      "          'evening': 1,\n",
      "          'begin': 1,\n",
      "          'wishing': 1,\n",
      "          'ideal': 1,\n",
      "          'man': 1,\n",
      "          'drop': 1,\n",
      "          'lives': 1,\n",
      "          'seeming': 1,\n",
      "          'answer': 1,\n",
      "          'idle': 1,\n",
      "          'daydreams': 1,\n",
      "          'wealthy': 1,\n",
      "          'eccentric': 1,\n",
      "          'moves': 1,\n",
      "          'mansion': 1,\n",
      "          'hill': 1,\n",
      "          'seduces': 1,\n",
      "          'attempting': 1,\n",
      "          'everything': 1,\n",
      "          'want': 1,\n",
      "          'nhe': 1,\n",
      "          'soon': 1,\n",
      "          'shows': 1,\n",
      "          'evidence': 1,\n",
      "          'mysticalperhaps': 1,\n",
      "          'demonicpower': 1,\n",
      "          'devotion': 1,\n",
      "          'womens': 1,\n",
      "          'merest': 1,\n",
      "          'fantasies': 1,\n",
      "          'wishes': 1,\n",
      "          'dangerous': 1,\n",
      "          'neven': 1,\n",
      "          'worse': 1,\n",
      "          'ignored': 1,\n",
      "          'moods': 1,\n",
      "          'become': 1,\n",
      "          'ugly': 1,\n",
      "          'mistreats': 1,\n",
      "          'spurning': 1,\n",
      "          'nanyway': 1,\n",
      "          'problems': 1,\n",
      "          'three': 1,\n",
      "          'female': 1,\n",
      "          'characters': 1,\n",
      "          'fairly': 1,\n",
      "          'uninteresting': 1,\n",
      "          'several': 1,\n",
      "          'cardboard': 1,\n",
      "          'stereotypes': 1,\n",
      "          'especially': 1,\n",
      "          'sarandons': 1,\n",
      "          'nwe': 1,\n",
      "          'inside': 1,\n",
      "          'feel': 1,\n",
      "          'sympathetic': 1,\n",
      "          'dialogue': 1,\n",
      "          'personalities': 1,\n",
      "          'pretty': 1,\n",
      "          'bland': 1,\n",
      "          'nas': 1,\n",
      "          'well': 1,\n",
      "          'needs': 1,\n",
      "          'go': 1,\n",
      "          'darryl': 1,\n",
      "          'van': 1,\n",
      "          'horne': 1,\n",
      "          'interesting': 1,\n",
      "          'due': 1,\n",
      "          'grace': 1,\n",
      "          'screenwriter': 1,\n",
      "          'importantly': 1,\n",
      "          'nicholsons': 1,\n",
      "          'acting': 1,\n",
      "          'still': 1,\n",
      "          'cant': 1,\n",
      "          'yanked': 1,\n",
      "          'without': 1,\n",
      "          'making': 1,\n",
      "          'vague': 1,\n",
      "          'theres': 1,\n",
      "          'special': 1,\n",
      "          'nnot': 1,\n",
      "          'themselvesthey': 1,\n",
      "          'werent': 1,\n",
      "          'goodbut': 1,\n",
      "          'overuse': 1,\n",
      "          'almost': 1,\n",
      "          'positive': 1,\n",
      "          'saw': 1,\n",
      "          'credits': 1,\n",
      "          'produced': 1,\n",
      "          'alexander': 1,\n",
      "          'salkind': 1,\n",
      "          'turned': 1,\n",
      "          'slop': 1,\n",
      "          'named': 1,\n",
      "          'superman': 1,\n",
      "          'ii': 1,\n",
      "          'iii': 1,\n",
      "          'supergirl': 1,\n",
      "          'big': 1,\n",
      "          'name': 1,\n",
      "          'actors': 1,\n",
      "          'dopy': 1,\n",
      "          'stunts': 1,\n",
      "          'stephen': 1,\n",
      "          'spielberg': 1,\n",
      "          '18th': 1,\n",
      "          'vomit': 1,\n",
      "          'nicholsonblowndownthestreet': 1,\n",
      "          'stunt': 1,\n",
      "          'nnope': 1,\n",
      "          'bunch': 1,\n",
      "          'directed': 1,\n",
      "          'george': 1,\n",
      "          'miller': 1,\n",
      "          'shown': 1,\n",
      "          'great': 1,\n",
      "          'skill': 1,\n",
      "          'stuntsspecial': 1,\n",
      "          'road': 1,\n",
      "          'warrior': 1,\n",
      "          'nightmare': 1,\n",
      "          '20': 1,\n",
      "          'feet': 1,\n",
      "          'episode': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'apparently': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'turn': 1,\n",
      "          'wind': 1,\n",
      "          'machine': 1,\n",
      "          'let': 1,\n",
      "          'act': 1,\n",
      "          'nfgawds': 1,\n",
      "          'sake': 1,\n",
      "          'jack': 1,\n",
      "          'loose': 1,\n",
      "          'grin': 1,\n",
      "          'demonically': 1,\n",
      "          'nskip': 1,\n",
      "          'splitting': 1,\n",
      "          'earth': 1,\n",
      "          'fake': 1,\n",
      "          'lightning': 1,\n",
      "          'nwatching': 1,\n",
      "          'tossed': 1,\n",
      "          'car': 1,\n",
      "          'voodoo': 1,\n",
      "          'doll': 1,\n",
      "          'waste': 1,\n",
      "          'youre': 1,\n",
      "          'slapstick': 1,\n",
      "          'pee': 1,\n",
      "          'wee': 1,\n",
      "          'herman': 1,\n",
      "          'nnicholson': 1,\n",
      "          'find': 1,\n",
      "          'bearings': 1,\n",
      "          'extremely': 1,\n",
      "          'good': 1,\n",
      "          'church': 1,\n",
      "          'instance': 1,\n",
      "          'stiff': 1,\n",
      "          'hes': 1,\n",
      "          'next': 1,\n",
      "          'wonder': 1,\n",
      "          'nthis': 1,\n",
      "          'script': 1,\n",
      "          'map': 1,\n",
      "          'giving': 1,\n",
      "          'feeling': 1,\n",
      "          'itd': 1,\n",
      "          'love': 1,\n",
      "          'allegory': 1,\n",
      "          'give': 1,\n",
      "          'itll': 1,\n",
      "          'nso': 1,\n",
      "          'horror': 1,\n",
      "          'statement': 1,\n",
      "          'nan': 1,\n",
      "          'examination': 1,\n",
      "          'religious': 1,\n",
      "          'right': 1,\n",
      "          'comparitive': 1,\n",
      "          'morality': 1,\n",
      "          'tend': 1,\n",
      "          'image': 1,\n",
      "          'dominate': 1,\n",
      "          'watching': 1,\n",
      "          'nsomeone': 1,\n",
      "          'regurgitate': 1,\n",
      "          'halfdigested': 1,\n",
      "          'food': 1,\n",
      "          'cherry': 1,\n",
      "          'pits': 1,\n",
      "          'rooms': 1,\n",
      "          'screen': 1,\n",
      "          'ultimately': 1,\n",
      "          'words': 1,\n",
      "          'mess': 1,\n",
      "          'n': 1,\n",
      "          '2': 1,\n",
      "          'enough': 1,\n",
      "          'watch': 1,\n",
      "          '25': 1,\n",
      "          'charm': 1,\n",
      "          'able': 1,\n",
      "          'make': 1,\n",
      "          'logjams': 1,\n",
      "          'others': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'virus': 12,\n",
      "          'ship': 8,\n",
      "          'film': 7,\n",
      "          'one': 6,\n",
      "          'race': 5,\n",
      "          'computer': 5,\n",
      "          'big': 5,\n",
      "          'heroes': 4,\n",
      "          'get': 4,\n",
      "          'bad': 4,\n",
      "          'nits': 4,\n",
      "          'creature': 4,\n",
      "          'alien': 3,\n",
      "          'human': 3,\n",
      "          'nafter': 3,\n",
      "          'taken': 3,\n",
      "          'nthe': 3,\n",
      "          'power': 3,\n",
      "          'nvirus': 3,\n",
      "          'films': 3,\n",
      "          'simply': 3,\n",
      "          'lot': 3,\n",
      "          'interesting': 2,\n",
      "          'thing': 2,\n",
      "          'clunky': 2,\n",
      "          'try': 2,\n",
      "          'kill': 2,\n",
      "          'space': 2,\n",
      "          'station': 2,\n",
      "          'thinks': 2,\n",
      "          'even': 2,\n",
      "          'entire': 2,\n",
      "          'let': 2,\n",
      "          'us': 2,\n",
      "          'years': 2,\n",
      "          'nbut': 2,\n",
      "          'much': 2,\n",
      "          'theres': 2,\n",
      "          'captain': 2,\n",
      "          'everton': 2,\n",
      "          'donald': 2,\n",
      "          'sutherland': 2,\n",
      "          'board': 2,\n",
      "          'going': 2,\n",
      "          'however': 2,\n",
      "          'realize': 2,\n",
      "          'every': 2,\n",
      "          'terminator': 2,\n",
      "          'basically': 2,\n",
      "          'movie': 2,\n",
      "          'deep': 2,\n",
      "          'rising': 2,\n",
      "          'good': 2,\n",
      "          'genre': 2,\n",
      "          'scenes': 2,\n",
      "          'really': 2,\n",
      "          'make': 2,\n",
      "          'non': 2,\n",
      "          'people': 2,\n",
      "          'like': 2,\n",
      "          'around': 2,\n",
      "          'acting': 2,\n",
      "          'title': 1,\n",
      "          'refer': 1,\n",
      "          'robotic': 1,\n",
      "          'animals': 1,\n",
      "          'nalas': 1,\n",
      "          'refers': 1,\n",
      "          'nas': 1,\n",
      "          'turns': 1,\n",
      "          'sends': 1,\n",
      "          'earth': 1,\n",
      "          'via': 1,\n",
      "          'mir': 1,\n",
      "          'perhaps': 1,\n",
      "          'cancer': 1,\n",
      "          'needs': 1,\n",
      "          'eradicated': 1,\n",
      "          'spreads': 1,\n",
      "          'planet': 1,\n",
      "          'live': 1,\n",
      "          'another': 1,\n",
      "          'billion': 1,\n",
      "          'might': 1,\n",
      "          'advance': 1,\n",
      "          'beyond': 1,\n",
      "          'solar': 1,\n",
      "          'system': 1,\n",
      "          'next': 1,\n",
      "          'doesnt': 1,\n",
      "          'worry': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'foster': 1,\n",
      "          'jamie': 1,\n",
      "          'lee': 1,\n",
      "          'curtis': 1,\n",
      "          'stopping': 1,\n",
      "          'nshes': 1,\n",
      "          'chief': 1,\n",
      "          'navigator': 1,\n",
      "          'sea': 1,\n",
      "          'vessel': 1,\n",
      "          'travelling': 1,\n",
      "          'steve': 1,\n",
      "          'baker': 1,\n",
      "          'william': 1,\n",
      "          'baldwin': 1,\n",
      "          'woods': 1,\n",
      "          'marshall': 1,\n",
      "          'bell': 1,\n",
      "          'squeaky': 1,\n",
      "          'julio': 1,\n",
      "          'oscar': 1,\n",
      "          'mechoso': 1,\n",
      "          'richie': 1,\n",
      "          'sherman': 1,\n",
      "          'augustus': 1,\n",
      "          'ntheyre': 1,\n",
      "          'sailing': 1,\n",
      "          'typhoon': 1,\n",
      "          'lovely': 1,\n",
      "          'evening': 1,\n",
      "          'stumble': 1,\n",
      "          'across': 1,\n",
      "          'enormous': 1,\n",
      "          'abandoned': 1,\n",
      "          'russian': 1,\n",
      "          'satellite': 1,\n",
      "          'international': 1,\n",
      "          'waters': 1,\n",
      "          'nlucky': 1,\n",
      "          'already': 1,\n",
      "          'saw': 1,\n",
      "          'eliminated': 1,\n",
      "          'everyone': 1,\n",
      "          'evil': 1,\n",
      "          'hes': 1,\n",
      "          'take': 1,\n",
      "          'reward': 1,\n",
      "          'convinces': 1,\n",
      "          'crew': 1,\n",
      "          'money': 1,\n",
      "          'salvage': 1,\n",
      "          'nsoon': 1,\n",
      "          'apparent': 1,\n",
      "          'something': 1,\n",
      "          'must': 1,\n",
      "          'happened': 1,\n",
      "          'nfinally': 1,\n",
      "          'meet': 1,\n",
      "          'nadia': 1,\n",
      "          'joanna': 1,\n",
      "          'pacula': 1,\n",
      "          'explains': 1,\n",
      "          'situation': 1,\n",
      "          'creating': 1,\n",
      "          'biomechanical': 1,\n",
      "          'lifeforms': 1,\n",
      "          'eliminate': 1,\n",
      "          'truly': 1,\n",
      "          'dumb': 1,\n",
      "          'action': 1,\n",
      "          'thriller': 1,\n",
      "          'negligible': 1,\n",
      "          'intelligence': 1,\n",
      "          'innovation': 1,\n",
      "          'nwhen': 1,\n",
      "          'considering': 1,\n",
      "          'lacks': 1,\n",
      "          'single': 1,\n",
      "          'original': 1,\n",
      "          'scene': 1,\n",
      "          'direct': 1,\n",
      "          'ripoff': 1,\n",
      "          'nearly': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'aliens': 1,\n",
      "          'abyss': 1,\n",
      "          'plagiarized': 1,\n",
      "          'importantly': 1,\n",
      "          'last': 1,\n",
      "          'ni': 1,\n",
      "          'liked': 1,\n",
      "          'funny': 1,\n",
      "          'knows': 1,\n",
      "          'silly': 1,\n",
      "          'derivative': 1,\n",
      "          'takes': 1,\n",
      "          'seriously': 1,\n",
      "          'nand': 1,\n",
      "          'serious': 1,\n",
      "          'manner': 1,\n",
      "          'possible': 1,\n",
      "          'steals': 1,\n",
      "          'showing': 1,\n",
      "          'countless': 1,\n",
      "          'familiar': 1,\n",
      "          'sporting': 1,\n",
      "          'cookiecutter': 1,\n",
      "          'plot': 1,\n",
      "          'scifihorror': 1,\n",
      "          'could': 1,\n",
      "          'fit': 1,\n",
      "          'little': 1,\n",
      "          'trimming': 1,\n",
      "          'amazing': 1,\n",
      "          'poorly': 1,\n",
      "          'whole': 1,\n",
      "          'thought': 1,\n",
      "          'nokay': 1,\n",
      "          'straight': 1,\n",
      "          'never': 1,\n",
      "          'explained': 1,\n",
      "          'sentient': 1,\n",
      "          'electricity': 1,\n",
      "          'nthey': 1,\n",
      "          'need': 1,\n",
      "          'physical': 1,\n",
      "          'use': 1,\n",
      "          'onto': 1,\n",
      "          'surrounded': 1,\n",
      "          'water': 1,\n",
      "          'cares': 1,\n",
      "          'bunch': 1,\n",
      "          'immobile': 1,\n",
      "          'robots': 1,\n",
      "          'somehow': 1,\n",
      "          'three': 1,\n",
      "          'hundred': 1,\n",
      "          'start': 1,\n",
      "          'using': 1,\n",
      "          'dead': 1,\n",
      "          'create': 1,\n",
      "          'halfhuman': 1,\n",
      "          'halfmachine': 1,\n",
      "          'creatures': 1,\n",
      "          'look': 1,\n",
      "          'worse': 1,\n",
      "          'walking': 1,\n",
      "          'leader': 1,\n",
      "          'course': 1,\n",
      "          'nevery': 1,\n",
      "          'end': 1,\n",
      "          'tear': 1,\n",
      "          'walls': 1,\n",
      "          'move': 1,\n",
      "          'indeed': 1,\n",
      "          'cliched': 1,\n",
      "          'central': 1,\n",
      "          'flaw': 1,\n",
      "          'lies': 1,\n",
      "          'fact': 1,\n",
      "          'isnt': 1,\n",
      "          'threatening': 1,\n",
      "          'established': 1,\n",
      "          'turn': 1,\n",
      "          'stop': 1,\n",
      "          'sealed': 1,\n",
      "          'room': 1,\n",
      "          'time': 1,\n",
      "          'level': 1,\n",
      "          'almost': 1,\n",
      "          'passable': 1,\n",
      "          'fun': 1,\n",
      "          'gory': 1,\n",
      "          'camp': 1,\n",
      "          'appeal': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'bruno': 1,\n",
      "          'worked': 1,\n",
      "          'camerons': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'nice': 1,\n",
      "          'array': 1,\n",
      "          'actors': 1,\n",
      "          'though': 1,\n",
      "          'none': 1,\n",
      "          'except': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'nit': 1,\n",
      "          'rips': 1,\n",
      "          'movies': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'nin': 1,\n",
      "          'order': 1,\n",
      "          'recommend': 1,\n",
      "          'rent': 1,\n",
      "          'admire': 1,\n",
      "          'qualities': 1,\n",
      "          'actually': 1,\n",
      "          'threatens': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'werewolf': 12,\n",
      "          'american': 7,\n",
      "          'paris': 5,\n",
      "          'nthe': 4,\n",
      "          'delpy': 4,\n",
      "          'andy': 3,\n",
      "          'nshe': 3,\n",
      "          'movie': 3,\n",
      "          'isnt': 3,\n",
      "          'nand': 3,\n",
      "          'thats': 3,\n",
      "          'horror': 2,\n",
      "          'london': 2,\n",
      "          'nwhere': 2,\n",
      "          'comedy': 2,\n",
      "          'sequel': 2,\n",
      "          'kind': 2,\n",
      "          'first': 2,\n",
      "          'one': 2,\n",
      "          'something': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'even': 2,\n",
      "          'film': 2,\n",
      "          'everett': 2,\n",
      "          'scott': 2,\n",
      "          'vince': 2,\n",
      "          'vieluf': 2,\n",
      "          'phil': 2,\n",
      "          'buckman': 2,\n",
      "          'bungee': 2,\n",
      "          'serafine': 2,\n",
      "          'julie': 2,\n",
      "          'make': 2,\n",
      "          'good': 2,\n",
      "          'us': 2,\n",
      "          'thing': 2,\n",
      "          'since': 2,\n",
      "          'ndelpys': 2,\n",
      "          'could': 2,\n",
      "          'better': 2,\n",
      "          'cast': 2,\n",
      "          'level': 2,\n",
      "          'material': 2,\n",
      "          'nit': 2,\n",
      "          'either': 2,\n",
      "          'killing': 2,\n",
      "          'movies': 2,\n",
      "          'give': 2,\n",
      "          'would': 2,\n",
      "          'bad': 2,\n",
      "          'waller': 2,\n",
      "          'failed': 1,\n",
      "          'attempt': 1,\n",
      "          'recapture': 1,\n",
      "          'humor': 1,\n",
      "          'john': 1,\n",
      "          'landis': 1,\n",
      "          '1981': 1,\n",
      "          'feature': 1,\n",
      "          'original': 1,\n",
      "          'revolting': 1,\n",
      "          'silliness': 1,\n",
      "          'found': 1,\n",
      "          'tv': 1,\n",
      "          'sitcoms': 1,\n",
      "          'installment': 1,\n",
      "          'chills': 1,\n",
      "          'sequences': 1,\n",
      "          'inappropriately': 1,\n",
      "          'unintentionally': 1,\n",
      "          'funny': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'become': 1,\n",
      "          'minor': 1,\n",
      "          'classic': 1,\n",
      "          'genre': 1,\n",
      "          'woeful': 1,\n",
      "          'seems': 1,\n",
      "          'destined': 1,\n",
      "          'late': 1,\n",
      "          'nights': 1,\n",
      "          'cinemax': 1,\n",
      "          'necessary': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nudity': 1,\n",
      "          'opens': 1,\n",
      "          'trio': 1,\n",
      "          'daredevil': 1,\n",
      "          'americans': 1,\n",
      "          'tom': 1,\n",
      "          'brad': 1,\n",
      "          'chris': 1,\n",
      "          'sneaking': 1,\n",
      "          'top': 1,\n",
      "          'eiffel': 1,\n",
      "          'tower': 1,\n",
      "          'drink': 1,\n",
      "          'wine': 1,\n",
      "          'little': 1,\n",
      "          'jumping': 1,\n",
      "          'nsoon': 1,\n",
      "          'company': 1,\n",
      "          'person': 1,\n",
      "          'decided': 1,\n",
      "          'end': 1,\n",
      "          'jumps': 1,\n",
      "          'cord': 1,\n",
      "          'attached': 1,\n",
      "          'goes': 1,\n",
      "          'manages': 1,\n",
      "          'save': 1,\n",
      "          'price': 1,\n",
      "          'major': 1,\n",
      "          'headache': 1,\n",
      "          'nserafine': 1,\n",
      "          'disappears': 1,\n",
      "          'smitten': 1,\n",
      "          'seeks': 1,\n",
      "          'nhowever': 1,\n",
      "          'learns': 1,\n",
      "          'wouldbe': 1,\n",
      "          'girlfriends': 1,\n",
      "          'dark': 1,\n",
      "          'secret': 1,\n",
      "          'wishes': 1,\n",
      "          'hadnt': 1,\n",
      "          'nshes': 1,\n",
      "          'cursed': 1,\n",
      "          'change': 1,\n",
      "          'hideous': 1,\n",
      "          'beast': 1,\n",
      "          'moon': 1,\n",
      "          'full': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'suffered': 1,\n",
      "          'nasty': 1,\n",
      "          'bite': 1,\n",
      "          'nactress': 1,\n",
      "          'far': 1,\n",
      "          'imbues': 1,\n",
      "          'spirit': 1,\n",
      "          'spunk': 1,\n",
      "          'humanity': 1,\n",
      "          'gives': 1,\n",
      "          'emotional': 1,\n",
      "          'stake': 1,\n",
      "          'characters': 1,\n",
      "          'fate': 1,\n",
      "          'nthis': 1,\n",
      "          'necessarily': 1,\n",
      "          'prevents': 1,\n",
      "          'relaxing': 1,\n",
      "          'enjoying': 1,\n",
      "          'completely': 1,\n",
      "          'mindless': 1,\n",
      "          'campy': 1,\n",
      "          'entertainment': 1,\n",
      "          'experience': 1,\n",
      "          'injection': 1,\n",
      "          'class': 1,\n",
      "          'otherwise': 1,\n",
      "          'classless': 1,\n",
      "          'production': 1,\n",
      "          'raises': 1,\n",
      "          'specter': 1,\n",
      "          'script': 1,\n",
      "          'surrounding': 1,\n",
      "          'previous': 1,\n",
      "          'credits': 1,\n",
      "          'include': 1,\n",
      "          'memorable': 1,\n",
      "          'ventures': 1,\n",
      "          'krzysztof': 1,\n",
      "          'kieslowskis': 1,\n",
      "          'white': 1,\n",
      "          'richard': 1,\n",
      "          'linklaters': 1,\n",
      "          'sunrise': 1,\n",
      "          'radiant': 1,\n",
      "          'charismatic': 1,\n",
      "          'effective': 1,\n",
      "          'ngiven': 1,\n",
      "          'nature': 1,\n",
      "          'work': 1,\n",
      "          'gets': 1,\n",
      "          'close': 1,\n",
      "          'possible': 1,\n",
      "          'adjectives': 1,\n",
      "          'argued': 1,\n",
      "          'reason': 1,\n",
      "          'see': 1,\n",
      "          'devoted': 1,\n",
      "          'fans': 1,\n",
      "          'consider': 1,\n",
      "          'giving': 1,\n",
      "          'miss': 1,\n",
      "          'primary': 1,\n",
      "          'objective': 1,\n",
      "          'catching': 1,\n",
      "          'glimpse': 1,\n",
      "          'buff': 1,\n",
      "          'check': 1,\n",
      "          'zoe': 1,\n",
      "          'passion': 1,\n",
      "          'beatrice': 1,\n",
      "          'intelligible': 1,\n",
      "          'plots': 1,\n",
      "          'addition': 1,\n",
      "          'breasts': 1,\n",
      "          'rest': 1,\n",
      "          'acts': 1,\n",
      "          'considerably': 1,\n",
      "          'say': 1,\n",
      "          'performances': 1,\n",
      "          'appropriate': 1,\n",
      "          'screenplay': 1,\n",
      "          'ntom': 1,\n",
      "          'plays': 1,\n",
      "          'lead': 1,\n",
      "          'like': 1,\n",
      "          'hes': 1,\n",
      "          'madefortv': 1,\n",
      "          'call': 1,\n",
      "          'bland': 1,\n",
      "          'nactors': 1,\n",
      "          'andys': 1,\n",
      "          'friends': 1,\n",
      "          'impressive': 1,\n",
      "          'njulie': 1,\n",
      "          'bowen': 1,\n",
      "          'happy': 1,\n",
      "          'gilmore': 1,\n",
      "          'suitably': 1,\n",
      "          'fetching': 1,\n",
      "          'meat': 1,\n",
      "          'respected': 1,\n",
      "          'french': 1,\n",
      "          'actor': 1,\n",
      "          'thierry': 1,\n",
      "          'lhermitte': 1,\n",
      "          'brief': 1,\n",
      "          'turn': 1,\n",
      "          'another': 1,\n",
      "          'monster': 1,\n",
      "          'meal': 1,\n",
      "          'non': 1,\n",
      "          'technical': 1,\n",
      "          'side': 1,\n",
      "          'news': 1,\n",
      "          'computergenerated': 1,\n",
      "          'werewolves': 1,\n",
      "          'look': 1,\n",
      "          'painfully': 1,\n",
      "          'unreal': 1,\n",
      "          'creatures': 1,\n",
      "          'probably': 1,\n",
      "          'believable': 1,\n",
      "          'men': 1,\n",
      "          'wolf': 1,\n",
      "          'suits': 1,\n",
      "          'nrepeated': 1,\n",
      "          'use': 1,\n",
      "          'made': 1,\n",
      "          'cam': 1,\n",
      "          'infrared': 1,\n",
      "          'wolfs': 1,\n",
      "          'pointofview': 1,\n",
      "          'approach': 1,\n",
      "          'interesting': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'employed': 1,\n",
      "          'becomes': 1,\n",
      "          'tedious': 1,\n",
      "          'soundtrack': 1,\n",
      "          'includes': 1,\n",
      "          'alternative': 1,\n",
      "          'grunge': 1,\n",
      "          'rock': 1,\n",
      "          'tunes': 1,\n",
      "          'clash': 1,\n",
      "          'violently': 1,\n",
      "          'onscreen': 1,\n",
      "          'action': 1,\n",
      "          'theyre': 1,\n",
      "          'matched': 1,\n",
      "          'ndirector': 1,\n",
      "          'anthony': 1,\n",
      "          'displayed': 1,\n",
      "          'confident': 1,\n",
      "          'edgy': 1,\n",
      "          'style': 1,\n",
      "          'mute': 1,\n",
      "          'witness': 1,\n",
      "          'stumbles': 1,\n",
      "          'never': 1,\n",
      "          'able': 1,\n",
      "          'elements': 1,\n",
      "          'gel': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'get': 1,\n",
      "          'worst': 1,\n",
      "          'howling': 1,\n",
      "          'ii': 1,\n",
      "          'sister': 1,\n",
      "          'n': 1,\n",
      "          'credit': 1,\n",
      "          'dog': 1,\n",
      "          'though': 1,\n",
      "          'rarely': 1,\n",
      "          'seen': 1,\n",
      "          'days': 1,\n",
      "          'marginally': 1,\n",
      "          'entertaining': 1,\n",
      "          'sort': 1,\n",
      "          'way': 1,\n",
      "          'dubious': 1,\n",
      "          'distinction': 1,\n",
      "          'nultimately': 1,\n",
      "          'unfortunate': 1,\n",
      "          'effort': 1,\n",
      "          'unbearable': 1,\n",
      "          'sit': 1,\n",
      "          'howl': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sin': 7,\n",
      "          'original': 6,\n",
      "          'film': 4,\n",
      "          'girl': 4,\n",
      "          'actually': 3,\n",
      "          'boy': 3,\n",
      "          'either': 2,\n",
      "          'act': 2,\n",
      "          'nbut': 2,\n",
      "          'bother': 2,\n",
      "          'nthe': 2,\n",
      "          'even': 2,\n",
      "          'angelina': 2,\n",
      "          'jolie': 2,\n",
      "          '1900': 2,\n",
      "          'one': 2,\n",
      "          'since': 2,\n",
      "          'find': 2,\n",
      "          'sex': 2,\n",
      "          'see': 2,\n",
      "          'money': 2,\n",
      "          'thriller': 2,\n",
      "          'go': 2,\n",
      "          'worst': 2,\n",
      "          'b': 2,\n",
      "          'depending': 1,\n",
      "          'ask': 1,\n",
      "          'eating': 1,\n",
      "          'apple': 1,\n",
      "          'disobedience': 1,\n",
      "          'god': 1,\n",
      "          'betrayal': 1,\n",
      "          'case': 1,\n",
      "          'didnt': 1,\n",
      "          'know': 1,\n",
      "          'dont': 1,\n",
      "          'remembering': 1,\n",
      "          'words': 1,\n",
      "          'never': 1,\n",
      "          'come': 1,\n",
      "          'movie': 1,\n",
      "          'name': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'concept': 1,\n",
      "          'closest': 1,\n",
      "          'gets': 1,\n",
      "          'catholicism': 1,\n",
      "          'narrative': 1,\n",
      "          'story': 1,\n",
      "          'told': 1,\n",
      "          'priest': 1,\n",
      "          'death': 1,\n",
      "          'row': 1,\n",
      "          'cuba': 1,\n",
      "          'circa': 1,\n",
      "          'nregardless': 1,\n",
      "          'senseless': 1,\n",
      "          'title': 1,\n",
      "          'plot': 1,\n",
      "          'albeit': 1,\n",
      "          'mangled': 1,\n",
      "          'acts': 1,\n",
      "          'screenwriting': 1,\n",
      "          'art': 1,\n",
      "          'war': 1,\n",
      "          'based': 1,\n",
      "          'book': 1,\n",
      "          'waltz': 1,\n",
      "          'across': 1,\n",
      "          'darkness': 1,\n",
      "          'nboy': 1,\n",
      "          'antionio': 1,\n",
      "          'banderas': 1,\n",
      "          'places': 1,\n",
      "          'personal': 1,\n",
      "          'ad': 1,\n",
      "          'sometime': 1,\n",
      "          'around': 1,\n",
      "          'searching': 1,\n",
      "          'wife': 1,\n",
      "          'nsince': 1,\n",
      "          'century': 1,\n",
      "          'ago': 1,\n",
      "          'narrowly': 1,\n",
      "          'dodge': 1,\n",
      "          'remake': 1,\n",
      "          'green': 1,\n",
      "          'card': 1,\n",
      "          'faked': 1,\n",
      "          'photo': 1,\n",
      "          'beautiful': 1,\n",
      "          'nskipping': 1,\n",
      "          'moderately': 1,\n",
      "          'useless': 1,\n",
      "          'scenes': 1,\n",
      "          'getting': 1,\n",
      "          'question': 1,\n",
      "          'way': 1,\n",
      "          'yes': 1,\n",
      "          'get': 1,\n",
      "          'jolies': 1,\n",
      "          'breasts': 1,\n",
      "          'turns': 1,\n",
      "          'con': 1,\n",
      "          'artist': 1,\n",
      "          'swindles': 1,\n",
      "          'heads': 1,\n",
      "          'hills': 1,\n",
      "          'noriginal': 1,\n",
      "          'briefly': 1,\n",
      "          'tries': 1,\n",
      "          'nwe': 1,\n",
      "          'whorechasing': 1,\n",
      "          'saying': 1,\n",
      "          'wants': 1,\n",
      "          'kill': 1,\n",
      "          'soon': 1,\n",
      "          'finds': 1,\n",
      "          'instead': 1,\n",
      "          'following': 1,\n",
      "          'might': 1,\n",
      "          'promising': 1,\n",
      "          'least': 1,\n",
      "          'completely': 1,\n",
      "          'fucking': 1,\n",
      "          'boring': 1,\n",
      "          'degenerates': 1,\n",
      "          'dissection': 1,\n",
      "          'virginwhore': 1,\n",
      "          'complex': 1,\n",
      "          'milk': 1,\n",
      "          'ngirl': 1,\n",
      "          'toys': 1,\n",
      "          'idea': 1,\n",
      "          'reforming': 1,\n",
      "          'congirl': 1,\n",
      "          'past': 1,\n",
      "          'avoiding': 1,\n",
      "          'man': 1,\n",
      "          'lover': 1,\n",
      "          'keeps': 1,\n",
      "          'making': 1,\n",
      "          'start': 1,\n",
      "          'scams': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'nadd': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'stylistic': 1,\n",
      "          'choices': 1,\n",
      "          'cinematic': 1,\n",
      "          'history': 1,\n",
      "          'literally': 1,\n",
      "          'half': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'uses': 1,\n",
      "          'strobe': 1,\n",
      "          'effect': 1,\n",
      "          'acting': 1,\n",
      "          'roughly': 1,\n",
      "          'caliber': 1,\n",
      "          'gun': 1,\n",
      "          'torturous': 1,\n",
      "          'films': 1,\n",
      "          'summer': 1,\n",
      "          'definitely': 1,\n",
      "          'front': 1,\n",
      "          'running': 1,\n",
      "          'make': 1,\n",
      "          'bottom': 1,\n",
      "          'ten': 1,\n",
      "          'year': 1,\n",
      "          'ndont': 1,\n",
      "          'honest': 1,\n",
      "          'admit': 1,\n",
      "          'pure': 1,\n",
      "          'appeal': 1,\n",
      "          'njust': 1,\n",
      "          'keep': 1,\n",
      "          'mind': 1,\n",
      "          'although': 1,\n",
      "          'may': 1,\n",
      "          'block': 1,\n",
      "          'much': 1,\n",
      "          'worse': 1,\n",
      "          'nthis': 1,\n",
      "          'sacrilege': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'evil': 6,\n",
      "          'one': 5,\n",
      "          'good': 5,\n",
      "          'bad': 5,\n",
      "          'battle': 5,\n",
      "          'film': 5,\n",
      "          'say': 4,\n",
      "          'get': 4,\n",
      "          'nazis': 4,\n",
      "          'even': 4,\n",
      "          'technology': 3,\n",
      "          'attempt': 3,\n",
      "          'nwe': 3,\n",
      "          'lot': 3,\n",
      "          'made': 3,\n",
      "          'like': 3,\n",
      "          'nhowever': 3,\n",
      "          'hitler': 3,\n",
      "          'see': 3,\n",
      "          'know': 3,\n",
      "          'much': 3,\n",
      "          'dont': 3,\n",
      "          'children': 3,\n",
      "          'wizards': 2,\n",
      "          'animated': 2,\n",
      "          'narration': 2,\n",
      "          'epic': 2,\n",
      "          'earth': 2,\n",
      "          'elves': 2,\n",
      "          'day': 2,\n",
      "          'fairy': 2,\n",
      "          'gives': 2,\n",
      "          'twins': 2,\n",
      "          'magic': 2,\n",
      "          'given': 2,\n",
      "          'must': 2,\n",
      "          'occur': 2,\n",
      "          'forces': 2,\n",
      "          'still': 2,\n",
      "          'would': 2,\n",
      "          'fantasy': 2,\n",
      "          'world': 2,\n",
      "          'soon': 2,\n",
      "          'cartoon': 2,\n",
      "          'nnot': 2,\n",
      "          'blackwolf': 2,\n",
      "          'since': 2,\n",
      "          'armies': 2,\n",
      "          'ogres': 2,\n",
      "          'nokay': 2,\n",
      "          'real': 2,\n",
      "          'nthis': 2,\n",
      "          'well': 2,\n",
      "          'characters': 2,\n",
      "          'doesnt': 2,\n",
      "          'credit': 2,\n",
      "          'says': 2,\n",
      "          'final': 2,\n",
      "          'therefore': 2,\n",
      "          'obvious': 2,\n",
      "          'happen': 2,\n",
      "          'unexpected': 2,\n",
      "          'disappointing': 2,\n",
      "          'scene': 2,\n",
      "          'angle': 2,\n",
      "          'overly': 2,\n",
      "          'could': 2,\n",
      "          'bakshi': 2,\n",
      "          'nso': 2,\n",
      "          'already': 2,\n",
      "          'point': 2,\n",
      "          'us': 2,\n",
      "          'footage': 2,\n",
      "          'feature': 1,\n",
      "          'begins': 1,\n",
      "          'proportions': 1,\n",
      "          'nover': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'drawings': 1,\n",
      "          'told': 1,\n",
      "          'destroyed': 1,\n",
      "          'apocalyptic': 1,\n",
      "          'nuclear': 1,\n",
      "          'exchange': 1,\n",
      "          'sending': 1,\n",
      "          'remnants': 1,\n",
      "          'humanity': 1,\n",
      "          'generations': 1,\n",
      "          'radiationinduced': 1,\n",
      "          'mutation': 1,\n",
      "          'original': 1,\n",
      "          'inhabitants': 1,\n",
      "          'fairies': 1,\n",
      "          'return': 1,\n",
      "          'populate': 1,\n",
      "          'globe': 1,\n",
      "          'along': 1,\n",
      "          'mutant': 1,\n",
      "          'counterparts': 1,\n",
      "          'none': 1,\n",
      "          'trite': 1,\n",
      "          'thats': 1,\n",
      "          'exactly': 1,\n",
      "          'happened': 1,\n",
      "          'advance': 1,\n",
      "          'notice': 1,\n",
      "          'queen': 1,\n",
      "          'birth': 1,\n",
      "          'grow': 1,\n",
      "          'powerful': 1,\n",
      "          'embracing': 1,\n",
      "          'utilizing': 1,\n",
      "          'expand': 1,\n",
      "          'empire': 1,\n",
      "          'notion': 1,\n",
      "          'ultimate': 1,\n",
      "          'nas': 1,\n",
      "          'unoriginal': 1,\n",
      "          'premise': 1,\n",
      "          'somewhat': 1,\n",
      "          'interested': 1,\n",
      "          'story': 1,\n",
      "          'play': 1,\n",
      "          'ntheres': 1,\n",
      "          'ni': 1,\n",
      "          'learned': 1,\n",
      "          'however': 1,\n",
      "          'expectation': 1,\n",
      "          'decent': 1,\n",
      "          'nonce': 1,\n",
      "          'transition': 1,\n",
      "          'art': 1,\n",
      "          'color': 1,\n",
      "          'animation': 1,\n",
      "          'entirely': 1,\n",
      "          'different': 1,\n",
      "          'feel': 1,\n",
      "          'takes': 1,\n",
      "          'precedence': 1,\n",
      "          'nrather': 1,\n",
      "          'saga': 1,\n",
      "          'promised': 1,\n",
      "          'goofylooking': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'look': 1,\n",
      "          'mind': 1,\n",
      "          'zany': 1,\n",
      "          'sounds': 1,\n",
      "          'honk': 1,\n",
      "          'boing': 1,\n",
      "          'nfor': 1,\n",
      "          'years': 1,\n",
      "          'lost': 1,\n",
      "          'battles': 1,\n",
      "          'magical': 1,\n",
      "          'mutants': 1,\n",
      "          'dispirited': 1,\n",
      "          'distracted': 1,\n",
      "          'joined': 1,\n",
      "          'secret': 1,\n",
      "          'weapon': 1,\n",
      "          'nyup': 1,\n",
      "          'adolf': 1,\n",
      "          'luftwaffe': 1,\n",
      "          'wehrmacht': 1,\n",
      "          'things': 1,\n",
      "          'archival': 1,\n",
      "          'minions': 1,\n",
      "          'dug': 1,\n",
      "          'nprojected': 1,\n",
      "          'sky': 1,\n",
      "          'inspires': 1,\n",
      "          'army': 1,\n",
      "          'shocking': 1,\n",
      "          'enemy': 1,\n",
      "          'submission': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'hack': 1,\n",
      "          'nbefore': 1,\n",
      "          'dead': 1,\n",
      "          'everywhere': 1,\n",
      "          'viewer': 1,\n",
      "          'care': 1,\n",
      "          'ntheyre': 1,\n",
      "          'either': 1,\n",
      "          'silly': 1,\n",
      "          'sappy': 1,\n",
      "          'dialog': 1,\n",
      "          'gets': 1,\n",
      "          'nan': 1,\n",
      "          'example': 1,\n",
      "          'avatar': 1,\n",
      "          'nonchalantly': 1,\n",
      "          'looks': 1,\n",
      "          'brother': 1,\n",
      "          'begin': 1,\n",
      "          'formidable': 1,\n",
      "          'hes': 1,\n",
      "          'also': 1,\n",
      "          'guy': 1,\n",
      "          'biggest': 1,\n",
      "          'bummer': 1,\n",
      "          'trip': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'nmy': 1,\n",
      "          'favorite': 1,\n",
      "          'line': 1,\n",
      "          'sideline': 1,\n",
      "          'asked': 1,\n",
      "          'child': 1,\n",
      "          'cant': 1,\n",
      "          'fight': 1,\n",
      "          'back': 1,\n",
      "          'nazicharged': 1,\n",
      "          'nher': 1,\n",
      "          'response': 1,\n",
      "          'weapons': 1,\n",
      "          'love': 1,\n",
      "          'nsuffice': 1,\n",
      "          'strictly': 1,\n",
      "          'twodimensional': 1,\n",
      "          'expect': 1,\n",
      "          'anything': 1,\n",
      "          'nwhich': 1,\n",
      "          'occurrence': 1,\n",
      "          'way': 1,\n",
      "          'brothers': 1,\n",
      "          'played': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'nplease': 1,\n",
      "          'note': 1,\n",
      "          'action': 1,\n",
      "          'nthat': 1,\n",
      "          'couldnt': 1,\n",
      "          'settle': 1,\n",
      "          'particular': 1,\n",
      "          'mood': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'move': 1,\n",
      "          'dark': 1,\n",
      "          'light': 1,\n",
      "          'cuts': 1,\n",
      "          'nscenes': 1,\n",
      "          'seemingly': 1,\n",
      "          'meant': 1,\n",
      "          'contain': 1,\n",
      "          'deep': 1,\n",
      "          'meaning': 1,\n",
      "          'ruined': 1,\n",
      "          'acts': 1,\n",
      "          'levity': 1,\n",
      "          'dramatics': 1,\n",
      "          'seem': 1,\n",
      "          'random': 1,\n",
      "          'staged': 1,\n",
      "          'acted': 1,\n",
      "          'detracting': 1,\n",
      "          'kind': 1,\n",
      "          'value': 1,\n",
      "          'enjoyment': 1,\n",
      "          'otherwise': 1,\n",
      "          'gleaned': 1,\n",
      "          'nralph': 1,\n",
      "          'director': 1,\n",
      "          'makes': 1,\n",
      "          'message': 1,\n",
      "          'across': 1,\n",
      "          'nwell': 1,\n",
      "          'maybe': 1,\n",
      "          'might': 1,\n",
      "          'movie': 1,\n",
      "          'nits': 1,\n",
      "          'nin': 1,\n",
      "          'scenes': 1,\n",
      "          'fights': 1,\n",
      "          'theres': 1,\n",
      "          'violence': 1,\n",
      "          'gore': 1,\n",
      "          'seeing': 1,\n",
      "          'theyre': 1,\n",
      "          'watching': 1,\n",
      "          'adults': 1,\n",
      "          'nif': 1,\n",
      "          'probably': 1,\n",
      "          'need': 1,\n",
      "          'bashed': 1,\n",
      "          'head': 1,\n",
      "          'nwhy': 1,\n",
      "          'guys': 1,\n",
      "          'symbolic': 1,\n",
      "          'instead': 1,\n",
      "          'using': 1,\n",
      "          'old': 1,\n",
      "          'propaganda': 1,\n",
      "          'seriously': 1,\n",
      "          'disjointed': 1,\n",
      "          'show': 1,\n",
      "          'something': 1,\n",
      "          'nwizards': 1,\n",
      "          'nazi': 1,\n",
      "          'tanks': 1,\n",
      "          'airplanes': 1,\n",
      "          'giving': 1,\n",
      "          'speeches': 1,\n",
      "          'reason': 1,\n",
      "          'considered': 1,\n",
      "          'atrocities': 1,\n",
      "          'committed': 1,\n",
      "          'nthere': 1,\n",
      "          'absolutely': 1,\n",
      "          'connection': 1,\n",
      "          'third': 1,\n",
      "          'reich': 1,\n",
      "          'cursory': 1,\n",
      "          'explanation': 1,\n",
      "          'stuff': 1,\n",
      "          'inspiring': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'needed': 1,\n",
      "          'thought': 1,\n",
      "          'thoroughly': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'deserves': 1,\n",
      "          'better': 1,\n",
      "          'treatment': 1,\n",
      "          'nid': 1,\n",
      "          'assume': 1,\n",
      "          'trying': 1,\n",
      "          'nationalist': 1,\n",
      "          'movement': 1,\n",
      "          'drove': 1,\n",
      "          'anywhere': 1,\n",
      "          'time': 1,\n",
      "          'vigilant': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'want': 1,\n",
      "          'give': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'haunted': 7,\n",
      "          'hill': 5,\n",
      "          'price': 5,\n",
      "          'horror': 5,\n",
      "          'house': 4,\n",
      "          'better': 4,\n",
      "          'movie': 4,\n",
      "          'former': 3,\n",
      "          'nthe': 3,\n",
      "          'bad': 3,\n",
      "          'entertaining': 3,\n",
      "          'haunting': 3,\n",
      "          'cast': 3,\n",
      "          '1958': 2,\n",
      "          'starring': 2,\n",
      "          'vincent': 2,\n",
      "          'william': 2,\n",
      "          'geoffrey': 2,\n",
      "          'rush': 2,\n",
      "          'chris': 2,\n",
      "          'kattan': 2,\n",
      "          '000': 2,\n",
      "          'sanitarium': 2,\n",
      "          'night': 2,\n",
      "          'establishment': 2,\n",
      "          'sports': 2,\n",
      "          'sometimes': 2,\n",
      "          'nit': 2,\n",
      "          'another': 2,\n",
      "          'recent': 2,\n",
      "          'owes': 2,\n",
      "          'classic': 2,\n",
      "          'nhouse': 2,\n",
      "          'ni': 2,\n",
      "          'camp': 2,\n",
      "          'spiral': 2,\n",
      "          'plays': 2,\n",
      "          'half': 2,\n",
      "          'two': 2,\n",
      "          'say': 2,\n",
      "          'inspired': 1,\n",
      "          'ndirected': 1,\n",
      "          'malone': 1,\n",
      "          'nstarring': 1,\n",
      "          'famke': 1,\n",
      "          'janssen': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'contains': 1,\n",
      "          'violence': 1,\n",
      "          'profanity': 1,\n",
      "          'brief': 1,\n",
      "          'nudity': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'eccentric': 1,\n",
      "          'millionaire': 1,\n",
      "          'offers': 1,\n",
      "          '1': 1,\n",
      "          'guests': 1,\n",
      "          'appear': 1,\n",
      "          'gathering': 1,\n",
      "          'catch': 1,\n",
      "          'survive': 1,\n",
      "          'staff': 1,\n",
      "          'patients': 1,\n",
      "          'ncomments': 1,\n",
      "          'based': 1,\n",
      "          'upon': 1,\n",
      "          'original': 1,\n",
      "          'title': 1,\n",
      "          'directed': 1,\n",
      "          'castle': 1,\n",
      "          'nin': 1,\n",
      "          'obvious': 1,\n",
      "          'homage': 1,\n",
      "          'millionaires': 1,\n",
      "          'name': 1,\n",
      "          'thin': 1,\n",
      "          'mustache': 1,\n",
      "          'like': 1,\n",
      "          'used': 1,\n",
      "          'nthis': 1,\n",
      "          'pretty': 1,\n",
      "          'yet': 1,\n",
      "          'films': 1,\n",
      "          'surprisingly': 1,\n",
      "          'remake': 1,\n",
      "          'basis': 1,\n",
      "          'novel': 1,\n",
      "          'shirley': 1,\n",
      "          'jackson': 1,\n",
      "          'literary': 1,\n",
      "          'pretensions': 1,\n",
      "          'fell': 1,\n",
      "          'flat': 1,\n",
      "          'face': 1,\n",
      "          'lineage': 1,\n",
      "          'bmovie': 1,\n",
      "          '40': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'makes': 1,\n",
      "          'illusion': 1,\n",
      "          'crappy': 1,\n",
      "          'nthus': 1,\n",
      "          'somehow': 1,\n",
      "          'proves': 1,\n",
      "          'slightly': 1,\n",
      "          'successful': 1,\n",
      "          'cant': 1,\n",
      "          'think': 1,\n",
      "          'eclectic': 1,\n",
      "          'lifts': 1,\n",
      "          'hohum': 1,\n",
      "          'thriller': 1,\n",
      "          'borderline': 1,\n",
      "          'exercise': 1,\n",
      "          'nprice': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'played': 1,\n",
      "          'academyaward': 1,\n",
      "          'winning': 1,\n",
      "          'actor': 1,\n",
      "          'shine': 1,\n",
      "          'nrush': 1,\n",
      "          'seems': 1,\n",
      "          'making': 1,\n",
      "          'downward': 1,\n",
      "          'industry': 1,\n",
      "          'reminiscent': 1,\n",
      "          'ben': 1,\n",
      "          'ghandi': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'kingsleys': 1,\n",
      "          'ridiculous': 1,\n",
      "          'appearance': 1,\n",
      "          'scifi': 1,\n",
      "          'species': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'see': 1,\n",
      "          'quality': 1,\n",
      "          'actors': 1,\n",
      "          'movies': 1,\n",
      "          'nmore': 1,\n",
      "          'surprises': 1,\n",
      "          'nrising': 1,\n",
      "          'star': 1,\n",
      "          'taye': 1,\n",
      "          'diggs': 1,\n",
      "          'stereotypical': 1,\n",
      "          'african': 1,\n",
      "          'american': 1,\n",
      "          'figure': 1,\n",
      "          'rather': 1,\n",
      "          'lamely': 1,\n",
      "          'singer': 1,\n",
      "          'lisa': 1,\n",
      "          'loeb': 1,\n",
      "          'nappears': 1,\n",
      "          'tv': 1,\n",
      "          'news': 1,\n",
      "          'reporter': 1,\n",
      "          'highlight': 1,\n",
      "          'however': 1,\n",
      "          'saturday': 1,\n",
      "          'live': 1,\n",
      "          'member': 1,\n",
      "          'nkattans': 1,\n",
      "          'comic': 1,\n",
      "          'sense': 1,\n",
      "          'provides': 1,\n",
      "          'several': 1,\n",
      "          'good': 1,\n",
      "          'humorous': 1,\n",
      "          'moments': 1,\n",
      "          'hysterical': 1,\n",
      "          'proprietor': 1,\n",
      "          'nwhile': 1,\n",
      "          'first': 1,\n",
      "          'leaves': 1,\n",
      "          'audience': 1,\n",
      "          'guessing': 1,\n",
      "          'whats': 1,\n",
      "          'exactly': 1,\n",
      "          'going': 1,\n",
      "          'second': 1,\n",
      "          'dissolves': 1,\n",
      "          'standard': 1,\n",
      "          'ghost': 1,\n",
      "          'story': 1,\n",
      "          'stuff': 1,\n",
      "          'loses': 1,\n",
      "          'suspense': 1,\n",
      "          'na': 1,\n",
      "          'disappointingly': 1,\n",
      "          'cheesy': 1,\n",
      "          'ending': 1,\n",
      "          'really': 1,\n",
      "          'mars': 1,\n",
      "          'suspect': 1,\n",
      "          'left': 1,\n",
      "          'secondrun': 1,\n",
      "          'theaters': 1,\n",
      "          'nits': 1,\n",
      "          'worth': 1,\n",
      "          'catching': 1,\n",
      "          'cable': 1,\n",
      "          'next': 1,\n",
      "          'year': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'nif': 1,\n",
      "          'choice': 1,\n",
      "          'pick': 1,\n",
      "          'evils': 1,\n",
      "          'could': 1,\n",
      "          'nthough': 1,\n",
      "          'appropriately': 1,\n",
      "          'perhaps': 1,\n",
      "          'itd': 1,\n",
      "          'turkeys': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 6,\n",
      "          'sex': 5,\n",
      "          'morgue': 4,\n",
      "          'attendant': 3,\n",
      "          'nthis': 2,\n",
      "          'film': 2,\n",
      "          'death': 2,\n",
      "          'dead': 2,\n",
      "          'necrophilia': 2,\n",
      "          'orgies': 2,\n",
      "          'print': 2,\n",
      "          '4': 2,\n",
      "          'gets': 2,\n",
      "          'teen': 2,\n",
      "          'life': 2,\n",
      "          'nhe': 2,\n",
      "          'part': 2,\n",
      "          'joins': 2,\n",
      "          'saved': 2,\n",
      "          'man': 2,\n",
      "          'involved': 2,\n",
      "          'white': 2,\n",
      "          'often': 2,\n",
      "          'dont': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'capsule': 1,\n",
      "          'liebes': 1,\n",
      "          'meets': 1,\n",
      "          'tod': 1,\n",
      "          'na': 1,\n",
      "          'accidentally': 1,\n",
      "          'revives': 1,\n",
      "          'woman': 1,\n",
      "          'brings': 1,\n",
      "          'world': 1,\n",
      "          'heavy': 1,\n",
      "          'says': 1,\n",
      "          'something': 1,\n",
      "          'obscure': 1,\n",
      "          'relationship': 1,\n",
      "          'imparts': 1,\n",
      "          'insights': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'matter': 1,\n",
      "          'worse': 1,\n",
      "          'poorly': 1,\n",
      "          'subtitled': 1,\n",
      "          'english': 1,\n",
      "          'french': 1,\n",
      "          'n0': 1,\n",
      "          'attractive': 1,\n",
      "          '18yearold': 1,\n",
      "          'dies': 1,\n",
      "          'disco': 1,\n",
      "          'floor': 1,\n",
      "          'sent': 1,\n",
      "          'none': 1,\n",
      "          'attendants': 1,\n",
      "          'ben': 1,\n",
      "          'jeanmarc': 1,\n",
      "          'barr': 1,\n",
      "          'attracted': 1,\n",
      "          'attempts': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'crawling': 1,\n",
      "          'away': 1,\n",
      "          'shock': 1,\n",
      "          'nin': 1,\n",
      "          'middle': 1,\n",
      "          'come': 1,\n",
      "          'back': 1,\n",
      "          'adding': 1,\n",
      "          'new': 1,\n",
      "          'form': 1,\n",
      "          'collection': 1,\n",
      "          'kinks': 1,\n",
      "          'already': 1,\n",
      "          'group': 1,\n",
      "          'together': 1,\n",
      "          'sm': 1,\n",
      "          'nthe': 1,\n",
      "          'revived': 1,\n",
      "          'teresa': 1,\n",
      "          'elodie': 1,\n",
      "          'bouchez': 1,\n",
      "          'moral': 1,\n",
      "          'dilemma': 1,\n",
      "          'teresas': 1,\n",
      "          'father': 1,\n",
      "          'nben': 1,\n",
      "          'abused': 1,\n",
      "          'daughters': 1,\n",
      "          'body': 1,\n",
      "          'opaque': 1,\n",
      "          'allegory': 1,\n",
      "          'suicide': 1,\n",
      "          'sexual': 1,\n",
      "          'hijinx': 1,\n",
      "          'nalso': 1,\n",
      "          'final': 1,\n",
      "          'stages': 1,\n",
      "          'dying': 1,\n",
      "          'aids': 1,\n",
      "          'close': 1,\n",
      "          'friend': 1,\n",
      "          'get': 1,\n",
      "          'subtitles': 1,\n",
      "          'background': 1,\n",
      "          'making': 1,\n",
      "          'hard': 1,\n",
      "          'read': 1,\n",
      "          'think': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'meaning': 1,\n",
      "          'lost': 1,\n",
      "          'title': 1,\n",
      "          'means': 1,\n",
      "          'let': 1,\n",
      "          'die': 1,\n",
      "          'sunday': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'little': 6,\n",
      "          'one': 6,\n",
      "          'nand': 4,\n",
      "          'career': 3,\n",
      "          'director': 3,\n",
      "          'years': 3,\n",
      "          'jimmy': 3,\n",
      "          'basinger': 3,\n",
      "          'girl': 3,\n",
      "          'talent': 3,\n",
      "          'bad': 3,\n",
      "          'good': 3,\n",
      "          'pretty': 3,\n",
      "          'really': 3,\n",
      "          'films': 3,\n",
      "          'dont': 3,\n",
      "          'know': 2,\n",
      "          'nhe': 2,\n",
      "          'starts': 2,\n",
      "          'take': 2,\n",
      "          'next': 2,\n",
      "          'year': 2,\n",
      "          'another': 2,\n",
      "          'film': 2,\n",
      "          'five': 2,\n",
      "          'smits': 2,\n",
      "          'na': 2,\n",
      "          'satanic': 2,\n",
      "          'wants': 2,\n",
      "          'well': 2,\n",
      "          'agent': 2,\n",
      "          'plenty': 2,\n",
      "          'youve': 2,\n",
      "          'got': 2,\n",
      "          'plot': 2,\n",
      "          'ass': 2,\n",
      "          'barely': 2,\n",
      "          'effects': 2,\n",
      "          'go': 2,\n",
      "          'around': 2,\n",
      "          'nthe': 2,\n",
      "          'character': 2,\n",
      "          'bonehead': 2,\n",
      "          'moves': 2,\n",
      "          'entire': 2,\n",
      "          'time': 2,\n",
      "          'figure': 2,\n",
      "          'even': 2,\n",
      "          'move': 2,\n",
      "          'police': 2,\n",
      "          'would': 2,\n",
      "          'zero': 2,\n",
      "          'thrills': 2,\n",
      "          'drama': 2,\n",
      "          'worst': 2,\n",
      "          'officers': 2,\n",
      "          'thrillers': 2,\n",
      "          'issues': 1,\n",
      "          'everyone': 1,\n",
      "          'audience': 1,\n",
      "          'comes': 1,\n",
      "          'laughing': 1,\n",
      "          'nits': 1,\n",
      "          'comedy': 1,\n",
      "          'strange': 1,\n",
      "          'path': 1,\n",
      "          'chuck': 1,\n",
      "          'russell': 1,\n",
      "          'decent': 1,\n",
      "          'nightmare': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          'series': 1,\n",
      "          'debut': 1,\n",
      "          'installment': 1,\n",
      "          'number': 1,\n",
      "          'three': 1,\n",
      "          'follows': 1,\n",
      "          'blob': 1,\n",
      "          'waits': 1,\n",
      "          'six': 1,\n",
      "          'piece': 1,\n",
      "          'called': 1,\n",
      "          'mask': 1,\n",
      "          'starring': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'star': 1,\n",
      "          'vehicle': 1,\n",
      "          'eraser': 1,\n",
      "          'two': 1,\n",
      "          'nso': 1,\n",
      "          'thought': 1,\n",
      "          'let': 1,\n",
      "          'wait': 1,\n",
      "          'get': 1,\n",
      "          'weak': 1,\n",
      "          'script': 1,\n",
      "          'jammed': 1,\n",
      "          'cliches': 1,\n",
      "          'hope': 1,\n",
      "          'kim': 1,\n",
      "          'could': 1,\n",
      "          'pull': 1,\n",
      "          'ashes': 1,\n",
      "          'nstrange': 1,\n",
      "          'dude': 1,\n",
      "          'crappy': 1,\n",
      "          'flick': 1,\n",
      "          'nplot': 1,\n",
      "          'sixyear': 1,\n",
      "          'old': 1,\n",
      "          'believed': 1,\n",
      "          'kind': 1,\n",
      "          'mysterious': 1,\n",
      "          'prophet': 1,\n",
      "          'sent': 1,\n",
      "          'god': 1,\n",
      "          'cult': 1,\n",
      "          'switch': 1,\n",
      "          'side': 1,\n",
      "          'girls': 1,\n",
      "          'aunt': 1,\n",
      "          'nsave': 1,\n",
      "          'damn': 1,\n",
      "          'devil': 1,\n",
      "          'worshippers': 1,\n",
      "          'nenter': 1,\n",
      "          'occult': 1,\n",
      "          'expert': 1,\n",
      "          'bobo': 1,\n",
      "          'cops': 1,\n",
      "          'lots': 1,\n",
      "          'nuns': 1,\n",
      "          'praying': 1,\n",
      "          'gist': 1,\n",
      "          'things': 1,\n",
      "          'ncritique': 1,\n",
      "          'holes': 1,\n",
      "          'size': 1,\n",
      "          'squeezes': 1,\n",
      "          'sense': 1,\n",
      "          'clich': 1,\n",
      "          'ridden': 1,\n",
      "          'wasted': 1,\n",
      "          'cheezy': 1,\n",
      "          'dialogue': 1,\n",
      "          'unintentional': 1,\n",
      "          'laughs': 1,\n",
      "          'boot': 1,\n",
      "          'nwhats': 1,\n",
      "          'nwell': 1,\n",
      "          'rufus': 1,\n",
      "          'sewell': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'head': 1,\n",
      "          'creepy': 1,\n",
      "          'runaway': 1,\n",
      "          'childrens': 1,\n",
      "          'sheltersatanist': 1,\n",
      "          'supreme': 1,\n",
      "          'seriously': 1,\n",
      "          'wicked': 1,\n",
      "          'eyes': 1,\n",
      "          'enough': 1,\n",
      "          'ham': 1,\n",
      "          'performance': 1,\n",
      "          'cheese': 1,\n",
      "          'lying': 1,\n",
      "          'also': 1,\n",
      "          'unfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'much': 1,\n",
      "          'believe': 1,\n",
      "          'actually': 1,\n",
      "          'enjoying': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'promise': 1,\n",
      "          'protagonist': 1,\n",
      "          'drown': 1,\n",
      "          'basis': 1,\n",
      "          'believability': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'takes': 1,\n",
      "          'anyone': 1,\n",
      "          'niece': 1,\n",
      "          'gifted': 1,\n",
      "          'longer': 1,\n",
      "          'every': 1,\n",
      "          'makes': 1,\n",
      "          'dumb': 1,\n",
      "          'nadd': 1,\n",
      "          'force': 1,\n",
      "          'incompetents': 1,\n",
      "          'save': 1,\n",
      "          'whose': 1,\n",
      "          'advised': 1,\n",
      "          'playing': 1,\n",
      "          'exact': 1,\n",
      "          'cop': 1,\n",
      "          'nypd': 1,\n",
      "          'blue': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'change': 1,\n",
      "          'clothes': 1,\n",
      "          'scares': 1,\n",
      "          'less': 1,\n",
      "          'actual': 1,\n",
      "          'respected': 1,\n",
      "          'actors': 1,\n",
      "          'like': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'ian': 1,\n",
      "          'holm': 1,\n",
      "          'bit': 1,\n",
      "          'parts': 1,\n",
      "          'ndid': 1,\n",
      "          'owe': 1,\n",
      "          'favor': 1,\n",
      "          'something': 1,\n",
      "          'ntogether': 1,\n",
      "          'minutes': 1,\n",
      "          'screen': 1,\n",
      "          'suppose': 1,\n",
      "          'riccis': 1,\n",
      "          'hospital': 1,\n",
      "          'room': 1,\n",
      "          'scene': 1,\n",
      "          'might': 1,\n",
      "          'worth': 1,\n",
      "          'look': 1,\n",
      "          'horndogs': 1,\n",
      "          'part': 1,\n",
      "          'hilariously': 1,\n",
      "          'unbelievable': 1,\n",
      "          'ending': 1,\n",
      "          'features': 1,\n",
      "          'coming': 1,\n",
      "          'brilliant': 1,\n",
      "          'idea': 1,\n",
      "          'sneaking': 1,\n",
      "          'mans': 1,\n",
      "          'house': 1,\n",
      "          'guilty': 1,\n",
      "          'crime': 1,\n",
      "          'nuuuhmm': 1,\n",
      "          'hows': 1,\n",
      "          'nabout': 1,\n",
      "          'knocking': 1,\n",
      "          'door': 1,\n",
      "          'arresting': 1,\n",
      "          'sorry': 1,\n",
      "          'nanyway': 1,\n",
      "          'usually': 1,\n",
      "          'inscribe': 1,\n",
      "          'spoilers': 1,\n",
      "          'reviews': 1,\n",
      "          'stupidity': 1,\n",
      "          'characters': 1,\n",
      "          'difficult': 1,\n",
      "          'describe': 1,\n",
      "          'without': 1,\n",
      "          'validating': 1,\n",
      "          'solid': 1,\n",
      "          'idiotic': 1,\n",
      "          'proof': 1,\n",
      "          'lose': 1,\n",
      "          'acting': 1,\n",
      "          'hiatus': 1,\n",
      "          'profession': 1,\n",
      "          '1997': 1,\n",
      "          'oscar': 1,\n",
      "          'win': 1,\n",
      "          'ndifficult': 1,\n",
      "          'say': 1,\n",
      "          'lines': 1,\n",
      "          'delivered': 1,\n",
      "          'poorly': 1,\n",
      "          'neither': 1,\n",
      "          'way': 1,\n",
      "          'originality': 1,\n",
      "          'obvious': 1,\n",
      "          'computer': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'certainly': 1,\n",
      "          'bestow': 1,\n",
      "          'honor': 1,\n",
      "          'movies': 1,\n",
      "          'summer': 1,\n",
      "          'upon': 1,\n",
      "          'nbut': 1,\n",
      "          'mind': 1,\n",
      "          'rehashed': 1,\n",
      "          'gobbledygook': 1,\n",
      "          'various': 1,\n",
      "          'kid': 1,\n",
      "          'based': 1,\n",
      "          'enjoy': 1,\n",
      "          'watching': 1,\n",
      "          'bring': 1,\n",
      "          'anything': 1,\n",
      "          'new': 1,\n",
      "          'table': 1,\n",
      "          'ndrink': 1,\n",
      "          'beers': 1,\n",
      "          'smoke': 1,\n",
      "          'beans': 1,\n",
      "          'rent': 1,\n",
      "          'video': 1,\n",
      "          'may': 1,\n",
      "          'funnier': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'daddy': 5,\n",
      "          'really': 4,\n",
      "          'good': 4,\n",
      "          'koufax': 4,\n",
      "          'julian': 4,\n",
      "          'funny': 4,\n",
      "          'film': 4,\n",
      "          'sandler': 3,\n",
      "          'special': 3,\n",
      "          'money': 3,\n",
      "          'girlfriend': 3,\n",
      "          'child': 3,\n",
      "          'nbig': 3,\n",
      "          'nthe': 3,\n",
      "          'make': 2,\n",
      "          'goes': 2,\n",
      "          'release': 2,\n",
      "          'doesnt': 2,\n",
      "          'lot': 2,\n",
      "          'big': 2,\n",
      "          'nits': 2,\n",
      "          'also': 2,\n",
      "          'nothing': 2,\n",
      "          'plays': 2,\n",
      "          'sonny': 2,\n",
      "          'new': 2,\n",
      "          'twins': 2,\n",
      "          'attempt': 2,\n",
      "          'wants': 2,\n",
      "          'keep': 2,\n",
      "          'isnt': 2,\n",
      "          'lauren': 2,\n",
      "          'adams': 2,\n",
      "          'humour': 2,\n",
      "          'end': 2,\n",
      "          'much': 2,\n",
      "          'better': 2,\n",
      "          'trash': 2,\n",
      "          'well': 2,\n",
      "          'even': 2,\n",
      "          'adam': 1,\n",
      "          'vehicles': 1,\n",
      "          'never': 1,\n",
      "          'anything': 1,\n",
      "          'continue': 1,\n",
      "          'load': 1,\n",
      "          'nwhich': 1,\n",
      "          'show': 1,\n",
      "          'sad': 1,\n",
      "          'state': 1,\n",
      "          'cinema': 1,\n",
      "          'today': 1,\n",
      "          'nwhile': 1,\n",
      "          'comedies': 1,\n",
      "          'like': 1,\n",
      "          'rushmore': 1,\n",
      "          'choose': 1,\n",
      "          'recent': 1,\n",
      "          'example': 1,\n",
      "          'gets': 1,\n",
      "          'limited': 1,\n",
      "          'got': 1,\n",
      "          'huge': 1,\n",
      "          'made': 1,\n",
      "          'cash': 1,\n",
      "          'deserve': 1,\n",
      "          'making': 1,\n",
      "          'nbut': 1,\n",
      "          'digress': 1,\n",
      "          'nsandler': 1,\n",
      "          'unemployed': 1,\n",
      "          'yorker': 1,\n",
      "          'seemingly': 1,\n",
      "          'low': 1,\n",
      "          'mental': 1,\n",
      "          'age': 1,\n",
      "          'nhis': 1,\n",
      "          'makes': 1,\n",
      "          'ultimatum': 1,\n",
      "          'either': 1,\n",
      "          'wise': 1,\n",
      "          'get': 1,\n",
      "          'responsible': 1,\n",
      "          'shes': 1,\n",
      "          'leaving': 1,\n",
      "          'nby': 1,\n",
      "          'strange': 1,\n",
      "          'set': 1,\n",
      "          'events': 1,\n",
      "          'ends': 1,\n",
      "          'played': 1,\n",
      "          'cole': 1,\n",
      "          'dylan': 1,\n",
      "          'sprouse': 1,\n",
      "          'five': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'kid': 1,\n",
      "          'nafter': 1,\n",
      "          'failed': 1,\n",
      "          'impress': 1,\n",
      "          'decides': 1,\n",
      "          'nhowever': 1,\n",
      "          'social': 1,\n",
      "          'worker': 1,\n",
      "          'mr': 1,\n",
      "          'brooks': 1,\n",
      "          'mostel': 1,\n",
      "          'finds': 1,\n",
      "          'real': 1,\n",
      "          'father': 1,\n",
      "          'take': 1,\n",
      "          'back': 1,\n",
      "          'nkoufax': 1,\n",
      "          'along': 1,\n",
      "          'layla': 1,\n",
      "          'fight': 1,\n",
      "          'nmany': 1,\n",
      "          'jokes': 1,\n",
      "          'revolve': 1,\n",
      "          'around': 1,\n",
      "          'toilet': 1,\n",
      "          'supposedly': 1,\n",
      "          'meant': 1,\n",
      "          'find': 1,\n",
      "          'peeing': 1,\n",
      "          'wall': 1,\n",
      "          'ntheres': 1,\n",
      "          'occasional': 1,\n",
      "          'one': 1,\n",
      "          'liner': 1,\n",
      "          'usually': 1,\n",
      "          'strangely': 1,\n",
      "          'delivered': 1,\n",
      "          'wrong': 1,\n",
      "          'lose': 1,\n",
      "          'silly': 1,\n",
      "          'gags': 1,\n",
      "          'suddenly': 1,\n",
      "          'turns': 1,\n",
      "          'sentimental': 1,\n",
      "          'bad': 1,\n",
      "          'hideous': 1,\n",
      "          'court': 1,\n",
      "          'scene': 1,\n",
      "          'useless': 1,\n",
      "          'unbelievable': 1,\n",
      "          'helped': 1,\n",
      "          'soppy': 1,\n",
      "          'overacting': 1,\n",
      "          'poor': 1,\n",
      "          'win': 1,\n",
      "          'audience': 1,\n",
      "          'nadam': 1,\n",
      "          'basically': 1,\n",
      "          'role': 1,\n",
      "          'last': 1,\n",
      "          'films': 1,\n",
      "          'except': 1,\n",
      "          'wedding': 1,\n",
      "          'singer': 1,\n",
      "          'njoey': 1,\n",
      "          'deserves': 1,\n",
      "          'far': 1,\n",
      "          'nsteve': 1,\n",
      "          'buscemi': 1,\n",
      "          'pops': 1,\n",
      "          'cameo': 1,\n",
      "          'scenes': 1,\n",
      "          'pretty': 1,\n",
      "          'nrob': 1,\n",
      "          'schneider': 1,\n",
      "          'crazy': 1,\n",
      "          'delivery': 1,\n",
      "          'man': 1,\n",
      "          'two': 1,\n",
      "          'play': 1,\n",
      "          'k': 1,\n",
      "          'start': 1,\n",
      "          'rather': 1,\n",
      "          'becoming': 1,\n",
      "          'annoying': 1,\n",
      "          'brattish': 1,\n",
      "          'halfway': 1,\n",
      "          'finally': 1,\n",
      "          'turn': 1,\n",
      "          'american': 1,\n",
      "          'wholesome': 1,\n",
      "          'goodness': 1,\n",
      "          'tear': 1,\n",
      "          'juice': 1,\n",
      "          'turned': 1,\n",
      "          'high': 1,\n",
      "          'worth': 1,\n",
      "          'chuckles': 1,\n",
      "          'nalthough': 1,\n",
      "          'actually': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'nice': 1,\n",
      "          'direction': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'montages': 1,\n",
      "          'professionalism': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'fact': 1,\n",
      "          'script': 1,\n",
      "          'characters': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'fans': 1,\n",
      "          'thats': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'making': 2,\n",
      "          'film': 2,\n",
      "          'deserves': 1,\n",
      "          'recognition': 1,\n",
      "          'relatively': 1,\n",
      "          'youthful': 1,\n",
      "          'critic': 1,\n",
      "          'feel': 1,\n",
      "          'extremely': 1,\n",
      "          'old': 1,\n",
      "          'crotchety20': 1,\n",
      "          'ncapsule': 1,\n",
      "          'review': 1,\n",
      "          'feelgood': 1,\n",
      "          'family': 1,\n",
      "          'entertainment': 1,\n",
      "          'morphed': 1,\n",
      "          '90s': 1,\n",
      "          'hourandahalf': 1,\n",
      "          'commercial': 1,\n",
      "          'disguised': 1,\n",
      "          'unnecessary': 1,\n",
      "          'remake': 1,\n",
      "          'defining': 1,\n",
      "          'image': 1,\n",
      "          'grown': 1,\n",
      "          'man': 1,\n",
      "          'launching': 1,\n",
      "          'volume': 1,\n",
      "          'green': 1,\n",
      "          'protoplasmic': 1,\n",
      "          'goo': 1,\n",
      "          'ass': 1,\n",
      "          'n': 1,\n",
      "          'rocketman': 1,\n",
      "          'george': 1,\n",
      "          'jungle': 1,\n",
      "          'disney': 1,\n",
      "          'recently': 1,\n",
      "          'eclipsed': 1,\n",
      "          'longtime': 1,\n",
      "          'champion': 1,\n",
      "          'troma': 1,\n",
      "          'studio': 1,\n",
      "          'likely': 1,\n",
      "          'include': 1,\n",
      "          'fart': 1,\n",
      "          'joke': 1,\n",
      "          'nas': 1,\n",
      "          'absentminded': 1,\n",
      "          'professor': 1,\n",
      "          'invents': 1,\n",
      "          'titular': 1,\n",
      "          'computergenerated': 1,\n",
      "          'goop': 1,\n",
      "          'listless': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'manages': 1,\n",
      "          'difficult': 1,\n",
      "          'task': 1,\n",
      "          'original': 1,\n",
      "          'lead': 1,\n",
      "          'fred': 1,\n",
      "          'macmurray': 1,\n",
      "          'seem': 1,\n",
      "          'sprightly': 1,\n",
      "          'nthe': 1,\n",
      "          'thing': 1,\n",
      "          'made': 1,\n",
      "          'borderline': 1,\n",
      "          'tolerable': 1,\n",
      "          'newlyfounded': 1,\n",
      "          'firm': 1,\n",
      "          'belief': 1,\n",
      "          'writerproducer': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          'going': 1,\n",
      "          'spend': 1,\n",
      "          'eternal': 1,\n",
      "          'afterlife': 1,\n",
      "          'conked': 1,\n",
      "          'noggin': 1,\n",
      "          'different': 1,\n",
      "          'blunt': 1,\n",
      "          'instruments': 1,\n",
      "          'hes': 1,\n",
      "          'used': 1,\n",
      "          'comedic': 1,\n",
      "          'effect': 1,\n",
      "          'films': 1,\n",
      "          'like': 1,\n",
      "          'odious': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'series': 1,\n",
      "          'ntake': 1,\n",
      "          'kids': 1,\n",
      "          'see': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'instead': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'film': 4,\n",
      "          'best': 4,\n",
      "          'movie': 3,\n",
      "          'jim': 3,\n",
      "          'phelps': 3,\n",
      "          'computer': 3,\n",
      "          'first': 2,\n",
      "          'going': 2,\n",
      "          'music': 2,\n",
      "          'mission': 2,\n",
      "          'impossible': 2,\n",
      "          'tv': 2,\n",
      "          'show': 2,\n",
      "          'whatsoever': 2,\n",
      "          'james': 2,\n",
      "          'bond': 2,\n",
      "          'depalmas': 2,\n",
      "          'blow': 2,\n",
      "          'victim': 2,\n",
      "          'made': 2,\n",
      "          'cruise': 2,\n",
      "          'basically': 2,\n",
      "          'contrived': 2,\n",
      "          'sequences': 2,\n",
      "          'involves': 2,\n",
      "          'room': 2,\n",
      "          'much': 2,\n",
      "          'looks': 2,\n",
      "          'kills': 1,\n",
      "          'emilio': 1,\n",
      "          'estevez': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'something': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'familiar': 1,\n",
      "          'theme': 1,\n",
      "          'worthwhile': 1,\n",
      "          'things': 1,\n",
      "          'directed': 1,\n",
      "          'brian': 1,\n",
      "          'depalma': 1,\n",
      "          'problem': 1,\n",
      "          'absolutely': 1,\n",
      "          'connection': 1,\n",
      "          'aside': 1,\n",
      "          'force': 1,\n",
      "          'whose': 1,\n",
      "          'deft': 1,\n",
      "          'teamwork': 1,\n",
      "          'orchestrated': 1,\n",
      "          'allowed': 1,\n",
      "          'counfound': 1,\n",
      "          'evil': 1,\n",
      "          'dictators': 1,\n",
      "          'mythic': 1,\n",
      "          'banana': 1,\n",
      "          'republics': 1,\n",
      "          'inflicting': 1,\n",
      "          'sordid': 1,\n",
      "          'schemes': 1,\n",
      "          'upon': 1,\n",
      "          'world': 1,\n",
      "          'nteamwork': 1,\n",
      "          'key': 1,\n",
      "          'nthis': 1,\n",
      "          'set': 1,\n",
      "          'cross': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'character': 1,\n",
      "          'real': 1,\n",
      "          'imagined': 1,\n",
      "          'conspiracies': 1,\n",
      "          'directions': 1,\n",
      "          'nit': 1,\n",
      "          'travoltas': 1,\n",
      "          'vulnerability': 1,\n",
      "          'exciting': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'nin': 1,\n",
      "          'tom': 1,\n",
      "          'omniscient': 1,\n",
      "          'believe': 1,\n",
      "          'theres': 1,\n",
      "          'fun': 1,\n",
      "          'story': 1,\n",
      "          'gets': 1,\n",
      "          'full': 1,\n",
      "          'holes': 1,\n",
      "          'nthere': 1,\n",
      "          'two': 1,\n",
      "          'memorable': 1,\n",
      "          'one': 1,\n",
      "          'breaking': 1,\n",
      "          'kubrickesque': 1,\n",
      "          'task': 1,\n",
      "          'could': 1,\n",
      "          'easier': 1,\n",
      "          'characters': 1,\n",
      "          'whit': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'suffice': 1,\n",
      "          'say': 1,\n",
      "          'alarm': 1,\n",
      "          'system': 1,\n",
      "          'disengaged': 1,\n",
      "          'operator': 1,\n",
      "          'second': 1,\n",
      "          'highspeed': 1,\n",
      "          'train': 1,\n",
      "          'helicopter': 1,\n",
      "          'chunnel': 1,\n",
      "          'seen': 1,\n",
      "          'disbelieved': 1,\n",
      "          'actors': 1,\n",
      "          'miscast': 1,\n",
      "          'especially': 1,\n",
      "          'emannuelle': 1,\n",
      "          'beart': 1,\n",
      "          'wife': 1,\n",
      "          'act': 1,\n",
      "          'ving': 1,\n",
      "          'rhames': 1,\n",
      "          'hacker': 1,\n",
      "          'lost': 1,\n",
      "          'embarrased': 1,\n",
      "          'ntom': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'like': 1,\n",
      "          'bobby': 1,\n",
      "          'brain': 1,\n",
      "          'heenan': 1,\n",
      "          'nbrian': 1,\n",
      "          'career': 1,\n",
      "          'bafflingly': 1,\n",
      "          'erratic': 1,\n",
      "          'nat': 1,\n",
      "          'beats': 1,\n",
      "          'hitchcock': 1,\n",
      "          'game': 1,\n",
      "          'carrie': 1,\n",
      "          'body': 1,\n",
      "          'double': 1,\n",
      "          'screenplay': 1,\n",
      "          'partly': 1,\n",
      "          'written': 1,\n",
      "          'robert': 1,\n",
      "          'towne': 1,\n",
      "          'wrote': 1,\n",
      "          'scenario': 1,\n",
      "          'seventies': 1,\n",
      "          'chinatown': 1,\n",
      "          'script': 1,\n",
      "          'perfunctory': 1,\n",
      "          'terrrible': 1,\n",
      "          'worst': 1,\n",
      "          'cinematography': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'redblue': 1,\n",
      "          'emphasis': 1,\n",
      "          'nice': 1,\n",
      "          'look': 1,\n",
      "          'suspense': 1,\n",
      "          'telegraphed': 1,\n",
      "          'even': 1,\n",
      "          'features': 1,\n",
      "          'old': 1,\n",
      "          'killer': 1,\n",
      "          'talks': 1,\n",
      "          'shooting': 1,\n",
      "          'thus': 1,\n",
      "          'giving': 1,\n",
      "          'time': 1,\n",
      "          'think': 1,\n",
      "          'escape': 1,\n",
      "          'trick': 1,\n",
      "          'nplease': 1,\n",
      "          'dont': 1,\n",
      "          'spend': 1,\n",
      "          'money': 1,\n",
      "          'itll': 1,\n",
      "          'encourage': 1,\n",
      "          'hollywood': 1,\n",
      "          'make': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'game': 6,\n",
      "          'video': 5,\n",
      "          'mortal': 5,\n",
      "          'kombat': 5,\n",
      "          'players': 4,\n",
      "          'nbut': 3,\n",
      "          'first': 3,\n",
      "          'nand': 3,\n",
      "          'tries': 3,\n",
      "          'nthis': 3,\n",
      "          'little': 3,\n",
      "          'based': 2,\n",
      "          'fighter': 2,\n",
      "          'much': 2,\n",
      "          'story': 2,\n",
      "          'lots': 2,\n",
      "          'fight': 2,\n",
      "          'scenes': 2,\n",
      "          'nit': 2,\n",
      "          'got': 2,\n",
      "          'forces': 2,\n",
      "          'outworld': 2,\n",
      "          'try': 2,\n",
      "          'earths': 2,\n",
      "          'nthe': 2,\n",
      "          'competition': 2,\n",
      "          'fought': 2,\n",
      "          'human': 2,\n",
      "          'outworlds': 2,\n",
      "          'warriors': 2,\n",
      "          'impressive': 2,\n",
      "          'fighters': 2,\n",
      "          'lord': 2,\n",
      "          'rayden': 2,\n",
      "          'liu': 2,\n",
      "          'kang': 2,\n",
      "          'princess': 2,\n",
      "          'kitana': 2,\n",
      "          'easy': 2,\n",
      "          'unfortunately': 2,\n",
      "          'depth': 2,\n",
      "          'becomes': 2,\n",
      "          'awkward': 2,\n",
      "          'nothing': 2,\n",
      "          'nthey': 2,\n",
      "          'actually': 2,\n",
      "          'apparent': 2,\n",
      "          'example': 2,\n",
      "          'element': 2,\n",
      "          'hear': 2,\n",
      "          'slowly': 2,\n",
      "          'simulate': 2,\n",
      "          'infinite': 2,\n",
      "          'wisdom': 2,\n",
      "          'inclusion': 2,\n",
      "          'fans': 2,\n",
      "          'movies': 1,\n",
      "          'games': 1,\n",
      "          'street': 1,\n",
      "          'mario': 1,\n",
      "          'bros': 1,\n",
      "          'never': 1,\n",
      "          'generated': 1,\n",
      "          'interest': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'came': 1,\n",
      "          '1995': 1,\n",
      "          'surprisingly': 1,\n",
      "          'well': 1,\n",
      "          'nwith': 1,\n",
      "          'simple': 1,\n",
      "          'pulsating': 1,\n",
      "          'soundtrack': 1,\n",
      "          'awesomely': 1,\n",
      "          'choreographed': 1,\n",
      "          'moved': 1,\n",
      "          'quickly': 1,\n",
      "          'displayed': 1,\n",
      "          'energy': 1,\n",
      "          'vote': 1,\n",
      "          'expected': 1,\n",
      "          'least': 1,\n",
      "          'havent': 1,\n",
      "          'opportunity': 1,\n",
      "          'would': 1,\n",
      "          'definitely': 1,\n",
      "          'recommend': 1,\n",
      "          'see': 1,\n",
      "          'nin': 1,\n",
      "          'world': 1,\n",
      "          'popular': 1,\n",
      "          'arcade': 1,\n",
      "          'dark': 1,\n",
      "          'infiltrate': 1,\n",
      "          'realm': 1,\n",
      "          'ulimate': 1,\n",
      "          'goal': 1,\n",
      "          'total': 1,\n",
      "          'conquest': 1,\n",
      "          'destruction': 1,\n",
      "          'humanity': 1,\n",
      "          'refers': 1,\n",
      "          'mortals': 1,\n",
      "          'minions': 1,\n",
      "          'guarantee': 1,\n",
      "          'safety': 1,\n",
      "          'another': 1,\n",
      "          'generation': 1,\n",
      "          'nmk2': 1,\n",
      "          'picks': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'almost': 1,\n",
      "          'immediately': 1,\n",
      "          'humans': 1,\n",
      "          'return': 1,\n",
      "          'victoriously': 1,\n",
      "          'ndespite': 1,\n",
      "          'victory': 1,\n",
      "          'however': 1,\n",
      "          'gateway': 1,\n",
      "          'somehow': 1,\n",
      "          'opened': 1,\n",
      "          'continues': 1,\n",
      "          'quest': 1,\n",
      "          'conquer': 1,\n",
      "          'earth': 1,\n",
      "          'noutworlds': 1,\n",
      "          'include': 1,\n",
      "          'collection': 1,\n",
      "          'including': 1,\n",
      "          'shao': 1,\n",
      "          'kahn': 1,\n",
      "          'mintoro': 1,\n",
      "          'centaur': 1,\n",
      "          'sheeva': 1,\n",
      "          'fourarmed': 1,\n",
      "          'ogre': 1,\n",
      "          'sindel': 1,\n",
      "          'nearths': 1,\n",
      "          'leadership': 1,\n",
      "          'benevolent': 1,\n",
      "          'god': 1,\n",
      "          'includes': 1,\n",
      "          'sonya': 1,\n",
      "          'blade': 1,\n",
      "          'jax': 1,\n",
      "          'must': 1,\n",
      "          'nits': 1,\n",
      "          'enough': 1,\n",
      "          'premise': 1,\n",
      "          'writers': 1,\n",
      "          'onscreen': 1,\n",
      "          'version': 1,\n",
      "          'go': 1,\n",
      "          'beyond': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'boundaries': 1,\n",
      "          'adding': 1,\n",
      "          'conceptualization': 1,\n",
      "          'selfworth': 1,\n",
      "          'worst': 1,\n",
      "          'love': 1,\n",
      "          'likable': 1,\n",
      "          'showcasing': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'fighting': 1,\n",
      "          'skills': 1,\n",
      "          'look': 1,\n",
      "          'extremely': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'required': 1,\n",
      "          'act': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'develop': 1,\n",
      "          'romantic': 1,\n",
      "          'bond': 1,\n",
      "          'original': 1,\n",
      "          'mk': 1,\n",
      "          'smart': 1,\n",
      "          'letting': 1,\n",
      "          'best': 1,\n",
      "          'spoke': 1,\n",
      "          'lot': 1,\n",
      "          'nthus': 1,\n",
      "          'digest': 1,\n",
      "          'nhowever': 1,\n",
      "          'mk2': 1,\n",
      "          'give': 1,\n",
      "          'certain': 1,\n",
      "          'amount': 1,\n",
      "          'lacking': 1,\n",
      "          'attempt': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'uneasy': 1,\n",
      "          'feeling': 1,\n",
      "          'readily': 1,\n",
      "          'whenever': 1,\n",
      "          'speak': 1,\n",
      "          'nnot': 1,\n",
      "          'talk': 1,\n",
      "          'riddles': 1,\n",
      "          'offer': 1,\n",
      "          'enigmatic': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'nuseless': 1,\n",
      "          'advice': 1,\n",
      "          'speaks': 1,\n",
      "          'ntry': 1,\n",
      "          'reading': 1,\n",
      "          'half': 1,\n",
      "          'fast': 1,\n",
      "          'youll': 1,\n",
      "          'mean': 1,\n",
      "          'complete': 1,\n",
      "          'fatality': 1,\n",
      "          'nfight': 1,\n",
      "          'wellchoreographed': 1,\n",
      "          'highlighted': 1,\n",
      "          'terrific': 1,\n",
      "          'acrobatics': 1,\n",
      "          'agility': 1,\n",
      "          'rewarded': 1,\n",
      "          'practically': 1,\n",
      "          'every': 1,\n",
      "          'character': 1,\n",
      "          'although': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'amounts': 1,\n",
      "          'cameo': 1,\n",
      "          'neven': 1,\n",
      "          'youre': 1,\n",
      "          'familiar': 1,\n",
      "          'costume': 1,\n",
      "          'unique': 1,\n",
      "          'weaponry': 1,\n",
      "          'easily': 1,\n",
      "          'differentiate': 1,\n",
      "          'moviegoers': 1,\n",
      "          'especially': 1,\n",
      "          'expect': 1,\n",
      "          'noddly': 1,\n",
      "          'pollutes': 1,\n",
      "          'purity': 1,\n",
      "          'essence': 1,\n",
      "          'poor': 1,\n",
      "          'acting': 1,\n",
      "          'results': 1,\n",
      "          'muddled': 1,\n",
      "          'offers': 1,\n",
      "          'viewing': 1,\n",
      "          'audience': 1,\n",
      "          'chance': 1,\n",
      "          'survival': 1,\n",
      "          'n': 1,\n",
      "          'talking': 1,\n",
      "          'nrent': 1,\n",
      "          'one': 1,\n",
      "          'sequel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'west': 14,\n",
      "          'wild': 8,\n",
      "          'gordon': 6,\n",
      "          'n': 5,\n",
      "          'jim': 4,\n",
      "          'loveless': 4,\n",
      "          'rita': 4,\n",
      "          'first': 4,\n",
      "          'kline': 3,\n",
      "          'smith': 3,\n",
      "          'time': 3,\n",
      "          'whose': 3,\n",
      "          'funny': 2,\n",
      "          'men': 2,\n",
      "          'black': 2,\n",
      "          'director': 2,\n",
      "          'sonnenfeld': 2,\n",
      "          'answer': 2,\n",
      "          'back': 2,\n",
      "          'part': 2,\n",
      "          'tarantula': 2,\n",
      "          'waiting': 2,\n",
      "          'anyone': 2,\n",
      "          'comic': 2,\n",
      "          'moment': 2,\n",
      "          'cool': 2,\n",
      "          'one': 2,\n",
      "          'big': 2,\n",
      "          'nwild': 2,\n",
      "          'levine': 2,\n",
      "          'sequence': 2,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'kevin': 1,\n",
      "          'drag': 1,\n",
      "          'wait': 1,\n",
      "          'til': 1,\n",
      "          'see': 1,\n",
      "          'dragits': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'nby': 1,\n",
      "          'disguised': 1,\n",
      "          'belly': 1,\n",
      "          'dancer': 1,\n",
      "          'bail': 1,\n",
      "          'captured': 1,\n",
      "          'comrade': 1,\n",
      "          'artemus': 1,\n",
      "          'clutches': 1,\n",
      "          'evil': 1,\n",
      "          'dr': 1,\n",
      "          'branagh': 1,\n",
      "          'unequivocally': 1,\n",
      "          'bored': 1,\n",
      "          'new': 1,\n",
      "          'summer': 1,\n",
      "          'blockbuster': 1,\n",
      "          'barry': 1,\n",
      "          'nis': 1,\n",
      "          'old': 1,\n",
      "          'really': 1,\n",
      "          'breeding': 1,\n",
      "          'ground': 1,\n",
      "          'high': 1,\n",
      "          'comedy': 1,\n",
      "          'anyway': 1,\n",
      "          'recall': 1,\n",
      "          'rustlers': 1,\n",
      "          'rhapsody': 1,\n",
      "          'future': 1,\n",
      "          'iii': 1,\n",
      "          'yes': 1,\n",
      "          'youre': 1,\n",
      "          'thinking': 1,\n",
      "          'blazing': 1,\n",
      "          'saddles': 1,\n",
      "          'movie': 1,\n",
      "          'parody': 1,\n",
      "          'western': 1,\n",
      "          'genre': 1,\n",
      "          'nineteenth': 1,\n",
      "          'century': 1,\n",
      "          'romp': 1,\n",
      "          'n1869': 1,\n",
      "          'quickdraw': 1,\n",
      "          'lawman': 1,\n",
      "          'teams': 1,\n",
      "          'brainiac': 1,\n",
      "          'federal': 1,\n",
      "          'agent': 1,\n",
      "          'orders': 1,\n",
      "          'president': 1,\n",
      "          'grant': 1,\n",
      "          'impression': 1,\n",
      "          'know': 1,\n",
      "          'deadon': 1,\n",
      "          'apprehend': 1,\n",
      "          'legless': 1,\n",
      "          'mad': 1,\n",
      "          'inventor': 1,\n",
      "          'plotting': 1,\n",
      "          'divvy': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'sell': 1,\n",
      "          'britain': 1,\n",
      "          'spain': 1,\n",
      "          'nhow': 1,\n",
      "          'accomplish': 1,\n",
      "          'nwell': 1,\n",
      "          'hulking': 1,\n",
      "          'around': 1,\n",
      "          'desert': 1,\n",
      "          'enormous': 1,\n",
      "          'mechanical': 1,\n",
      "          'course': 1,\n",
      "          'nbosomy': 1,\n",
      "          'dance': 1,\n",
      "          'hall': 1,\n",
      "          'girl': 1,\n",
      "          'escobar': 1,\n",
      "          'hayek': 1,\n",
      "          'scientist': 1,\n",
      "          'father': 1,\n",
      "          'kidnapped': 1,\n",
      "          'joins': 1,\n",
      "          'gadgetfilled': 1,\n",
      "          'train': 1,\n",
      "          'discovers': 1,\n",
      "          'cage': 1,\n",
      "          'rescued': 1,\n",
      "          'nracial': 1,\n",
      "          'politics': 1,\n",
      "          'obviously': 1,\n",
      "          'prevented': 1,\n",
      "          'filmmakers': 1,\n",
      "          'pairing': 1,\n",
      "          'dull': 1,\n",
      "          'romantically': 1,\n",
      "          'despite': 1,\n",
      "          'movies': 1,\n",
      "          'hip': 1,\n",
      "          'attitude': 1,\n",
      "          'toward': 1,\n",
      "          'thing': 1,\n",
      "          'automatically': 1,\n",
      "          'shoots': 1,\n",
      "          'calls': 1,\n",
      "          'nigger': 1,\n",
      "          'person': 1,\n",
      "          'finish': 1,\n",
      "          'speaking': 1,\n",
      "          'word': 1,\n",
      "          'nsuper': 1,\n",
      "          'nat': 1,\n",
      "          'rate': 1,\n",
      "          'kept': 1,\n",
      "          'say': 1,\n",
      "          'something': 1,\n",
      "          'humourous': 1,\n",
      "          'shes': 1,\n",
      "          'walking': 1,\n",
      "          'dressup': 1,\n",
      "          'toy': 1,\n",
      "          'single': 1,\n",
      "          'also': 1,\n",
      "          'best': 1,\n",
      "          'shot': 1,\n",
      "          'film': 1,\n",
      "          'bashfully': 1,\n",
      "          'reveals': 1,\n",
      "          'bare': 1,\n",
      "          'bumcheeks': 1,\n",
      "          'peekaboo': 1,\n",
      "          'flap': 1,\n",
      "          'pyjamas': 1,\n",
      "          'njim': 1,\n",
      "          'role': 1,\n",
      "          'finally': 1,\n",
      "          'stymied': 1,\n",
      "          'timing': 1,\n",
      "          'always': 1,\n",
      "          'hit': 1,\n",
      "          'miss': 1,\n",
      "          'episodes': 1,\n",
      "          'fresh': 1,\n",
      "          'prince': 1,\n",
      "          'belair': 1,\n",
      "          'demonstrate': 1,\n",
      "          'nsmiths': 1,\n",
      "          'better': 1,\n",
      "          'reactor': 1,\n",
      "          'actor': 1,\n",
      "          'thoroughly': 1,\n",
      "          'engaging': 1,\n",
      "          'blackhe': 1,\n",
      "          'didnt': 1,\n",
      "          'start': 1,\n",
      "          'hero': 1,\n",
      "          'nin': 1,\n",
      "          'hes': 1,\n",
      "          'required': 1,\n",
      "          'exude': 1,\n",
      "          'eastwood': 1,\n",
      "          'amuse': 1,\n",
      "          'frame': 1,\n",
      "          'difficult': 1,\n",
      "          'feat': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'living': 1,\n",
      "          'performer': 1,\n",
      "          'could': 1,\n",
      "          'pull': 1,\n",
      "          'nsmith': 1,\n",
      "          'ill': 1,\n",
      "          'equipped': 1,\n",
      "          'example': 1,\n",
      "          'handle': 1,\n",
      "          'performs': 1,\n",
      "          'standup': 1,\n",
      "          'rednecks': 1,\n",
      "          'hanging': 1,\n",
      "          'nwhat': 1,\n",
      "          'attracted': 1,\n",
      "          'material': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'adapted': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'screen': 1,\n",
      "          'addams': 1,\n",
      "          'family': 1,\n",
      "          'stinker': 1,\n",
      "          'career': 1,\n",
      "          'poorlypaced': 1,\n",
      "          'bombast': 1,\n",
      "          'full': 1,\n",
      "          'doa': 1,\n",
      "          'gags': 1,\n",
      "          'ted': 1,\n",
      "          'shows': 1,\n",
      "          'general': 1,\n",
      "          'uses': 1,\n",
      "          'gramophone': 1,\n",
      "          'horn': 1,\n",
      "          'hearing': 1,\n",
      "          'aid': 1,\n",
      "          'played': 1,\n",
      "          'buffalo': 1,\n",
      "          'bill': 1,\n",
      "          'silence': 1,\n",
      "          'lambshes': 1,\n",
      "          'intense': 1,\n",
      "          'get': 1,\n",
      "          'intentional': 1,\n",
      "          'laugh': 1,\n",
      "          'lousy': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'bluescreening': 1,\n",
      "          'amateurishforegrounds': 1,\n",
      "          'never': 1,\n",
      "          'proportionate': 1,\n",
      "          'backgrounds': 1,\n",
      "          'frequent': 1,\n",
      "          'illogic': 1,\n",
      "          'wit': 1,\n",
      "          'ridiculous': 1,\n",
      "          'villain': 1,\n",
      "          'badly': 1,\n",
      "          'wants': 1,\n",
      "          'way': 1,\n",
      "          'drops': 1,\n",
      "          'nhim': 1,\n",
      "          'onto': 1,\n",
      "          'steel': 1,\n",
      "          'platform': 1,\n",
      "          'battle': 1,\n",
      "          'generic': 1,\n",
      "          'ugly': 1,\n",
      "          'henchmen': 1,\n",
      "          'instead': 1,\n",
      "          'shooting': 1,\n",
      "          'point': 1,\n",
      "          'blank': 1,\n",
      "          'rage': 1,\n",
      "          'many': 1,\n",
      "          'guns': 1,\n",
      "          'board': 1,\n",
      "          'wests': 1,\n",
      "          'bright': 1,\n",
      "          'spots': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'bai': 1,\n",
      "          'lings': 1,\n",
      "          'alltoobrief': 1,\n",
      "          'appearance': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'brilliant': 1,\n",
      "          'masters': 1,\n",
      "          'voice': 1,\n",
      "          'joke': 1,\n",
      "          'films': 1,\n",
      "          'half': 1,\n",
      "          'clever': 1,\n",
      "          'enjoyable': 1,\n",
      "          'least': 1,\n",
      "          'second': 1,\n",
      "          'nwhen': 1,\n",
      "          'towards': 1,\n",
      "          'seemed': 1,\n",
      "          'like': 1,\n",
      "          'end': 1,\n",
      "          'proposes': 1,\n",
      "          'idea': 1,\n",
      "          'building': 1,\n",
      "          'airplane': 1,\n",
      "          'rejects': 1,\n",
      "          'collective': 1,\n",
      "          'groan': 1,\n",
      "          'among': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'meant': 1,\n",
      "          'going': 1,\n",
      "          'sit': 1,\n",
      "          'another': 1,\n",
      "          'loud': 1,\n",
      "          'action': 1,\n",
      "          'builds': 1,\n",
      "          'glider': 1,\n",
      "          'invention': 1,\n",
      "          'would': 1,\n",
      "          'inevitably': 1,\n",
      "          'lead': 1,\n",
      "          'proverbial': 1,\n",
      "          'whizbang': 1,\n",
      "          'finale': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'briefcase': 6,\n",
      "          'nthe': 4,\n",
      "          'car': 3,\n",
      "          'get': 3,\n",
      "          'add': 3,\n",
      "          'chase': 2,\n",
      "          'good': 2,\n",
      "          'action': 2,\n",
      "          'thriller': 2,\n",
      "          'film': 2,\n",
      "          'several': 2,\n",
      "          'groups': 2,\n",
      "          'hires': 2,\n",
      "          'nthey': 2,\n",
      "          'run': 2,\n",
      "          'movie': 2,\n",
      "          'plot': 2,\n",
      "          'twists': 2,\n",
      "          'time': 2,\n",
      "          'cares': 2,\n",
      "          'long': 2,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'fox': 1,\n",
      "          'tvs': 1,\n",
      "          'special': 1,\n",
      "          'programs': 1,\n",
      "          'youll': 1,\n",
      "          'idea': 1,\n",
      "          'content': 1,\n",
      "          'ronin': 1,\n",
      "          'new': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'frankenheimer': 1,\n",
      "          'involves': 1,\n",
      "          'mysterious': 1,\n",
      "          'terrorist': 1,\n",
      "          'want': 1,\n",
      "          'hands': 1,\n",
      "          'nan': 1,\n",
      "          'irish': 1,\n",
      "          'women': 1,\n",
      "          'dierdre': 1,\n",
      "          'played': 1,\n",
      "          'truman': 1,\n",
      "          'shows': 1,\n",
      "          'natascha': 1,\n",
      "          'mcelhone': 1,\n",
      "          'group': 1,\n",
      "          'mercenaries': 1,\n",
      "          'assist': 1,\n",
      "          'getting': 1,\n",
      "          'namong': 1,\n",
      "          'people': 1,\n",
      "          'sam': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'niro': 1,\n",
      "          'vincent': 1,\n",
      "          'jean': 1,\n",
      "          'reno': 1,\n",
      "          'gregor': 1,\n",
      "          'stellan': 1,\n",
      "          'skarsg': 1,\n",
      "          'rd': 1,\n",
      "          'hunting': 1,\n",
      "          'ndierdres': 1,\n",
      "          'assignment': 1,\n",
      "          'seize': 1,\n",
      "          'current': 1,\n",
      "          'owners': 1,\n",
      "          'transporting': 1,\n",
      "          'accomplish': 1,\n",
      "          'task': 1,\n",
      "          'traitor': 1,\n",
      "          'bunch': 1,\n",
      "          'soon': 1,\n",
      "          'stays': 1,\n",
      "          'leads': 1,\n",
      "          'viewer': 1,\n",
      "          'badly': 1,\n",
      "          'executed': 1,\n",
      "          'writer': 1,\n",
      "          'seemed': 1,\n",
      "          'attempting': 1,\n",
      "          'make': 1,\n",
      "          'smart': 1,\n",
      "          'failed': 1,\n",
      "          'understand': 1,\n",
      "          'surprises': 1,\n",
      "          'doesnt': 1,\n",
      "          'credibility': 1,\n",
      "          'senseless': 1,\n",
      "          'script': 1,\n",
      "          'reaction': 1,\n",
      "          'come': 1,\n",
      "          'one': 1,\n",
      "          'going': 1,\n",
      "          'apparent': 1,\n",
      "          'climax': 1,\n",
      "          'nbut': 1,\n",
      "          'excitement': 1,\n",
      "          'mentioned': 1,\n",
      "          'earlier': 1,\n",
      "          'endless': 1,\n",
      "          'scenes': 1,\n",
      "          'unrealistic': 1,\n",
      "          'fail': 1,\n",
      "          'anything': 1,\n",
      "          'story': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'love': 1,\n",
      "          'chases': 1,\n",
      "          'overdone': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'find': 1,\n",
      "          'whats': 1,\n",
      "          'doubt': 1,\n",
      "          'anyone': 1,\n",
      "          'finish': 1,\n",
      "          'sitting': 1,\n",
      "          'two': 1,\n",
      "          'hour': 1,\n",
      "          'attempted': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wild': 10,\n",
      "          'west': 6,\n",
      "          'story': 6,\n",
      "          'movie': 5,\n",
      "          'nif': 5,\n",
      "          'hes': 5,\n",
      "          'better': 4,\n",
      "          'smith': 4,\n",
      "          'men': 3,\n",
      "          'black': 3,\n",
      "          'one': 3,\n",
      "          'racist': 3,\n",
      "          'sex': 3,\n",
      "          'jokes': 3,\n",
      "          'even': 3,\n",
      "          'time': 3,\n",
      "          'good': 3,\n",
      "          'bother': 3,\n",
      "          'nwild': 2,\n",
      "          'name': 2,\n",
      "          'bros': 2,\n",
      "          'get': 2,\n",
      "          'big': 2,\n",
      "          'barry': 2,\n",
      "          'sonnenfeld': 2,\n",
      "          'bigscreen': 2,\n",
      "          'robert': 2,\n",
      "          'conrad': 2,\n",
      "          'nbut': 2,\n",
      "          'somehow': 2,\n",
      "          'along': 2,\n",
      "          'way': 2,\n",
      "          'nthey': 2,\n",
      "          'wouldve': 2,\n",
      "          'made': 2,\n",
      "          'script': 2,\n",
      "          'times': 2,\n",
      "          'nas': 2,\n",
      "          'mess': 2,\n",
      "          'complete': 2,\n",
      "          'tv': 2,\n",
      "          'show': 2,\n",
      "          'gordon': 2,\n",
      "          'kline': 2,\n",
      "          'villain': 2,\n",
      "          'involving': 2,\n",
      "          'although': 2,\n",
      "          'acting': 2,\n",
      "          'doesnt': 2,\n",
      "          'help': 2,\n",
      "          'either': 2,\n",
      "          'seems': 2,\n",
      "          'point': 2,\n",
      "          'mostly': 2,\n",
      "          'isnt': 2,\n",
      "          'creativity': 2,\n",
      "          'directing': 2,\n",
      "          'nlast': 2,\n",
      "          'least': 2,\n",
      "          'huge': 2,\n",
      "          'logic': 2,\n",
      "          'train': 2,\n",
      "          'back': 2,\n",
      "          'still': 2,\n",
      "          'kissing': 2,\n",
      "          'looking': 2,\n",
      "          'nthe': 2,\n",
      "          'ntheres': 2,\n",
      "          'ni': 2,\n",
      "          'dont': 2,\n",
      "          'performances': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quick': 1,\n",
      "          'review': 1,\n",
      "          'na': 1,\n",
      "          'mightve': 1,\n",
      "          'waste': 1,\n",
      "          'nwarner': 1,\n",
      "          'attempt': 1,\n",
      "          'style': 1,\n",
      "          'managed': 1,\n",
      "          'lasso': 1,\n",
      "          'names': 1,\n",
      "          'actor': 1,\n",
      "          'director': 1,\n",
      "          'duo': 1,\n",
      "          'behind': 1,\n",
      "          'mibs': 1,\n",
      "          'success': 1,\n",
      "          'order': 1,\n",
      "          'fourth': 1,\n",
      "          'july': 1,\n",
      "          'blockbuster': 1,\n",
      "          'contemporary': 1,\n",
      "          'update': 1,\n",
      "          'classic': 1,\n",
      "          'westernscifi': 1,\n",
      "          'series': 1,\n",
      "          'starring': 1,\n",
      "          'ran': 1,\n",
      "          'problem': 1,\n",
      "          'busy': 1,\n",
      "          'trying': 1,\n",
      "          'fill': 1,\n",
      "          'specific': 1,\n",
      "          'roles': 1,\n",
      "          'forgot': 1,\n",
      "          'general': 1,\n",
      "          'difference': 1,\n",
      "          'writer': 1,\n",
      "          'wests': 1,\n",
      "          'compiled': 1,\n",
      "          'six': 1,\n",
      "          'different': 1,\n",
      "          'people': 1,\n",
      "          'rather': 1,\n",
      "          'put': 1,\n",
      "          'brilliant': 1,\n",
      "          'touches': 1,\n",
      "          'ed': 1,\n",
      "          'solomon': 1,\n",
      "          'warner': 1,\n",
      "          'gotten': 1,\n",
      "          'possibly': 1,\n",
      "          'five': 1,\n",
      "          'nheck': 1,\n",
      "          'ten': 1,\n",
      "          'however': 1,\n",
      "          'screenplay': 1,\n",
      "          'filled': 1,\n",
      "          'dead': 1,\n",
      "          'laughs': 1,\n",
      "          'enough': 1,\n",
      "          'make': 1,\n",
      "          'cringe': 1,\n",
      "          'performing': 1,\n",
      "          'lack': 1,\n",
      "          'chemistry': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'nheres': 1,\n",
      "          'us': 1,\n",
      "          'army': 1,\n",
      "          'member': 1,\n",
      "          'james': 1,\n",
      "          'teams': 1,\n",
      "          'creative': 1,\n",
      "          'genius': 1,\n",
      "          'artemus': 1,\n",
      "          'kevin': 1,\n",
      "          'take': 1,\n",
      "          'ruthless': 1,\n",
      "          'arliss': 1,\n",
      "          'loveless': 1,\n",
      "          'kenneth': 1,\n",
      "          'branagh': 1,\n",
      "          'whose': 1,\n",
      "          'lower': 1,\n",
      "          'half': 1,\n",
      "          'blown': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'leaving': 1,\n",
      "          'roll': 1,\n",
      "          'around': 1,\n",
      "          'steamcontrolled': 1,\n",
      "          'wheelchair': 1,\n",
      "          'catch': 1,\n",
      "          'onto': 1,\n",
      "          'plot': 1,\n",
      "          'superweapon': 1,\n",
      "          'basically': 1,\n",
      "          'considered': 1,\n",
      "          '80foot': 1,\n",
      "          'tarantula': 1,\n",
      "          'looks': 1,\n",
      "          'bigger': 1,\n",
      "          'hellbent': 1,\n",
      "          'destroying': 1,\n",
      "          'anything': 1,\n",
      "          'path': 1,\n",
      "          'said': 1,\n",
      "          'unfolds': 1,\n",
      "          'nkevin': 1,\n",
      "          'miserable': 1,\n",
      "          'failing': 1,\n",
      "          'display': 1,\n",
      "          'smidgeon': 1,\n",
      "          'care': 1,\n",
      "          '1985': 1,\n",
      "          'western': 1,\n",
      "          'silverado': 1,\n",
      "          'nsmith': 1,\n",
      "          'nearly': 1,\n",
      "          'charming': 1,\n",
      "          'mib': 1,\n",
      "          'nbranagh': 1,\n",
      "          'goes': 1,\n",
      "          'excessively': 1,\n",
      "          'top': 1,\n",
      "          'perhaps': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'look': 1,\n",
      "          'strange': 1,\n",
      "          'beard': 1,\n",
      "          'nand': 1,\n",
      "          'salma': 1,\n",
      "          'hayek': 1,\n",
      "          'ride': 1,\n",
      "          'search': 1,\n",
      "          'missing': 1,\n",
      "          'father': 1,\n",
      "          'exists': 1,\n",
      "          'sexual': 1,\n",
      "          'attention': 1,\n",
      "          'nher': 1,\n",
      "          'barely': 1,\n",
      "          'passable': 1,\n",
      "          'breath': 1,\n",
      "          'fresh': 1,\n",
      "          'ass': 1,\n",
      "          'ndirector': 1,\n",
      "          'great': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'shows': 1,\n",
      "          'points': 1,\n",
      "          'overall': 1,\n",
      "          'urgency': 1,\n",
      "          'lost': 1,\n",
      "          'nits': 1,\n",
      "          'feels': 1,\n",
      "          'nono': 1,\n",
      "          'youre': 1,\n",
      "          'helming': 1,\n",
      "          'whats': 1,\n",
      "          'supposed': 1,\n",
      "          'hit': 1,\n",
      "          'gaps': 1,\n",
      "          'plain': 1,\n",
      "          'unacceptable': 1,\n",
      "          'nat': 1,\n",
      "          'defies': 1,\n",
      "          'gravity': 1,\n",
      "          'first': 1,\n",
      "          'boarding': 1,\n",
      "          'klines': 1,\n",
      "          'nhe': 1,\n",
      "          'jumps': 1,\n",
      "          'gets': 1,\n",
      "          'launched': 1,\n",
      "          'straight': 1,\n",
      "          'air': 1,\n",
      "          'manages': 1,\n",
      "          'land': 1,\n",
      "          'three': 1,\n",
      "          'cars': 1,\n",
      "          'ahead': 1,\n",
      "          'motion': 1,\n",
      "          'nalso': 1,\n",
      "          'strangely': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'comfortable': 1,\n",
      "          'talking': 1,\n",
      "          'racism': 1,\n",
      "          'front': 1,\n",
      "          'lynch': 1,\n",
      "          'mob': 1,\n",
      "          'particularly': 1,\n",
      "          'considering': 1,\n",
      "          'fact': 1,\n",
      "          'family': 1,\n",
      "          'killed': 1,\n",
      "          'likes': 1,\n",
      "          'folks': 1,\n",
      "          'making': 1,\n",
      "          'faces': 1,\n",
      "          'knows': 1,\n",
      "          'woman': 1,\n",
      "          'peephole': 1,\n",
      "          'enemy': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'come': 1,\n",
      "          'form': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'mechanical': 1,\n",
      "          'spider': 1,\n",
      "          'technical': 1,\n",
      "          'marvel': 1,\n",
      "          'authentic': 1,\n",
      "          'considerable': 1,\n",
      "          'also': 1,\n",
      "          'sequence': 1,\n",
      "          'metal': 1,\n",
      "          'magnet': 1,\n",
      "          'neckbraces': 1,\n",
      "          'spinning': 1,\n",
      "          'saw': 1,\n",
      "          'blades': 1,\n",
      "          'question': 1,\n",
      "          'comes': 1,\n",
      "          'play': 1,\n",
      "          'regarding': 1,\n",
      "          'polarity': 1,\n",
      "          'would': 1,\n",
      "          'say': 1,\n",
      "          'sit': 1,\n",
      "          'really': 1,\n",
      "          'possible': 1,\n",
      "          'end': 1,\n",
      "          'vicious': 1,\n",
      "          'circle': 1,\n",
      "          'ngo': 1,\n",
      "          'rent': 1,\n",
      "          'instead': 1,\n",
      "          'pretend': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'wearing': 1,\n",
      "          'cowboy': 1,\n",
      "          'hats': 1,\n",
      "          'nyoull': 1,\n",
      "          'go': 1,\n",
      "          'keep': 1,\n",
      "          'eye': 1,\n",
      "          'role': 1,\n",
      "          'president': 1,\n",
      "          'grant': 1,\n",
      "          'bet': 1,\n",
      "          'wishes': 1,\n",
      "          'somewhere': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'nthe': 7,\n",
      "          'todd': 6,\n",
      "          'soldiers': 4,\n",
      "          'find': 4,\n",
      "          'much': 4,\n",
      "          'dont': 4,\n",
      "          'new': 4,\n",
      "          'years': 4,\n",
      "          'old': 3,\n",
      "          'michael': 3,\n",
      "          'redman': 3,\n",
      "          'lovers': 3,\n",
      "          'around': 3,\n",
      "          'anything': 3,\n",
      "          'battle': 3,\n",
      "          'world': 3,\n",
      "          'space': 3,\n",
      "          'isnt': 3,\n",
      "          'would': 3,\n",
      "          'blade': 3,\n",
      "          'runner': 3,\n",
      "          'never': 2,\n",
      "          'warrior': 2,\n",
      "          'two': 2,\n",
      "          'difficult': 2,\n",
      "          'need': 2,\n",
      "          'everything': 2,\n",
      "          'hat': 2,\n",
      "          'last': 2,\n",
      "          'energy': 2,\n",
      "          'nthey': 2,\n",
      "          'care': 2,\n",
      "          'know': 2,\n",
      "          'live': 2,\n",
      "          'ntodd': 2,\n",
      "          'living': 2,\n",
      "          'nhe': 2,\n",
      "          'question': 2,\n",
      "          'na': 2,\n",
      "          'hes': 2,\n",
      "          'best': 2,\n",
      "          'caine': 2,\n",
      "          'jason': 2,\n",
      "          'trash': 2,\n",
      "          'garbage': 2,\n",
      "          'still': 2,\n",
      "          'finds': 2,\n",
      "          'back': 2,\n",
      "          'get': 2,\n",
      "          'good': 2,\n",
      "          'look': 2,\n",
      "          'human': 2,\n",
      "          'role': 2,\n",
      "          'played': 2,\n",
      "          'mostly': 2,\n",
      "          'slow': 2,\n",
      "          'motion': 2,\n",
      "          'even': 2,\n",
      "          'films': 2,\n",
      "          'science': 2,\n",
      "          'made': 2,\n",
      "          'takes': 2,\n",
      "          'place': 2,\n",
      "          'time': 2,\n",
      "          'nthere': 2,\n",
      "          'first': 2,\n",
      "          'sees': 2,\n",
      "          'doesnt': 2,\n",
      "          'work': 2,\n",
      "          'comes': 2,\n",
      "          'real': 2,\n",
      "          'shane': 2,\n",
      "          'movie': 2,\n",
      "          'occasionally': 2,\n",
      "          'like': 2,\n",
      "          'die': 1,\n",
      "          'turn': 1,\n",
      "          'cliches': 1,\n",
      "          'nsoldier': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1998': 1,\n",
      "          'lover': 1,\n",
      "          'personality': 1,\n",
      "          'aspects': 1,\n",
      "          'exist': 1,\n",
      "          'body': 1,\n",
      "          'njungian': 1,\n",
      "          'archetypes': 1,\n",
      "          'opposites': 1,\n",
      "          'create': 1,\n",
      "          'whole': 1,\n",
      "          'integrate': 1,\n",
      "          'noften': 1,\n",
      "          'well': 1,\n",
      "          'encounter': 1,\n",
      "          'think': 1,\n",
      "          'wonderful': 1,\n",
      "          'help': 1,\n",
      "          'jungs': 1,\n",
      "          'magician': 1,\n",
      "          'sit': 1,\n",
      "          'imagining': 1,\n",
      "          'grand': 1,\n",
      "          'schemes': 1,\n",
      "          'nwithout': 1,\n",
      "          'drive': 1,\n",
      "          'manifest': 1,\n",
      "          'plans': 1,\n",
      "          'less': 1,\n",
      "          'wisdom': 1,\n",
      "          'recognize': 1,\n",
      "          'darkness': 1,\n",
      "          'dreams': 1,\n",
      "          'nwarriors': 1,\n",
      "          'hand': 1,\n",
      "          'ready': 1,\n",
      "          'go': 1,\n",
      "          'war': 1,\n",
      "          'drop': 1,\n",
      "          'combat': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'enough': 1,\n",
      "          'whats': 1,\n",
      "          'worth': 1,\n",
      "          'fighting': 1,\n",
      "          'gladiators': 1,\n",
      "          'nthis': 1,\n",
      "          'dichotomy': 1,\n",
      "          'describes': 1,\n",
      "          'individuals': 1,\n",
      "          'also': 1,\n",
      "          'illustrate': 1,\n",
      "          'societies': 1,\n",
      "          'namerica': 1,\n",
      "          'late': 1,\n",
      "          'sixties': 1,\n",
      "          'conflict': 1,\n",
      "          'style': 1,\n",
      "          'cold': 1,\n",
      "          'warriors': 1,\n",
      "          'hippie': 1,\n",
      "          '3465': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'breathing': 1,\n",
      "          'archetype': 1,\n",
      "          'nchosen': 1,\n",
      "          'birth': 1,\n",
      "          'soldier': 1,\n",
      "          'raised': 1,\n",
      "          'government': 1,\n",
      "          'killing': 1,\n",
      "          'machine': 1,\n",
      "          'nhis': 1,\n",
      "          'childhood': 1,\n",
      "          'cruelty': 1,\n",
      "          'competition': 1,\n",
      "          'indoctrinated': 1,\n",
      "          'big': 1,\n",
      "          'rules': 1,\n",
      "          'nnever': 1,\n",
      "          'authority': 1,\n",
      "          'nwinning': 1,\n",
      "          'nstrength': 1,\n",
      "          'beats': 1,\n",
      "          'knowledge': 1,\n",
      "          'veteran': 1,\n",
      "          'numerous': 1,\n",
      "          'intergalactic': 1,\n",
      "          'wars': 1,\n",
      "          '40': 1,\n",
      "          'obsolete': 1,\n",
      "          'generation': 1,\n",
      "          'genetically': 1,\n",
      "          'engineered': 1,\n",
      "          'faster': 1,\n",
      "          'stronger': 1,\n",
      "          'nleft': 1,\n",
      "          'dead': 1,\n",
      "          'test': 1,\n",
      "          'killers': 1,\n",
      "          '607': 1,\n",
      "          'scott': 1,\n",
      "          'lee': 1,\n",
      "          'unceremoniously': 1,\n",
      "          'dumped': 1,\n",
      "          'arcadia': 1,\n",
      "          '234': 1,\n",
      "          'nobviously': 1,\n",
      "          'hero': 1,\n",
      "          'alive': 1,\n",
      "          'group': 1,\n",
      "          'shipwrecked': 1,\n",
      "          'settlers': 1,\n",
      "          'abandoned': 1,\n",
      "          'planet': 1,\n",
      "          'nurse': 1,\n",
      "          'health': 1,\n",
      "          'nwhen': 1,\n",
      "          'peaceloving': 1,\n",
      "          'colonists': 1,\n",
      "          'afraid': 1,\n",
      "          'exiled': 1,\n",
      "          'amid': 1,\n",
      "          'junk': 1,\n",
      "          'environmentally': 1,\n",
      "          'hostile': 1,\n",
      "          'guys': 1,\n",
      "          'nthese': 1,\n",
      "          'military': 1,\n",
      "          'coincidentally': 1,\n",
      "          'chooses': 1,\n",
      "          'conduct': 1,\n",
      "          'exercises': 1,\n",
      "          'improved': 1,\n",
      "          'weapons': 1,\n",
      "          'protector': 1,\n",
      "          'nwhat': 1,\n",
      "          'could': 1,\n",
      "          'fascinating': 1,\n",
      "          'roles': 1,\n",
      "          'culture': 1,\n",
      "          'fears': 1,\n",
      "          'ultraright': 1,\n",
      "          'wing': 1,\n",
      "          'future': 1,\n",
      "          'ruined': 1,\n",
      "          'turning': 1,\n",
      "          'cartoon': 1,\n",
      "          'effects': 1,\n",
      "          'secondrate': 1,\n",
      "          'explosions': 1,\n",
      "          'jerky': 1,\n",
      "          'plot': 1,\n",
      "          'nwe': 1,\n",
      "          'glimpse': 1,\n",
      "          'society': 1,\n",
      "          'created': 1,\n",
      "          'nhardly': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'fares': 1,\n",
      "          'badly': 1,\n",
      "          'nwith': 1,\n",
      "          'remarkable': 1,\n",
      "          'advances': 1,\n",
      "          'weve': 1,\n",
      "          '37': 1,\n",
      "          '2036': 1,\n",
      "          'stupid': 1,\n",
      "          'nafter': 1,\n",
      "          'conquering': 1,\n",
      "          'stars': 1,\n",
      "          'reason': 1,\n",
      "          'use': 1,\n",
      "          'vast': 1,\n",
      "          'amounts': 1,\n",
      "          'load': 1,\n",
      "          'huge': 1,\n",
      "          'ships': 1,\n",
      "          'rubbish': 1,\n",
      "          'tote': 1,\n",
      "          'landfill': 1,\n",
      "          'light': 1,\n",
      "          'away': 1,\n",
      "          'neven': 1,\n",
      "          'stranger': 1,\n",
      "          'barges': 1,\n",
      "          'appear': 1,\n",
      "          'double': 1,\n",
      "          'machines': 1,\n",
      "          'nvirtually': 1,\n",
      "          'vintage': 1,\n",
      "          '1960': 1,\n",
      "          'nothing': 1,\n",
      "          'story': 1,\n",
      "          'predictable': 1,\n",
      "          'thing': 1,\n",
      "          'coming': 1,\n",
      "          'life': 1,\n",
      "          'sandra': 1,\n",
      "          'connie': 1,\n",
      "          'nielsen': 1,\n",
      "          'woman': 1,\n",
      "          'little': 1,\n",
      "          'beautiful': 1,\n",
      "          'harsh': 1,\n",
      "          'conditions': 1,\n",
      "          'taking': 1,\n",
      "          'nit': 1,\n",
      "          'take': 1,\n",
      "          'genius': 1,\n",
      "          'foresee': 1,\n",
      "          'husband': 1,\n",
      "          'going': 1,\n",
      "          'longer': 1,\n",
      "          'nis': 1,\n",
      "          'shock': 1,\n",
      "          'climax': 1,\n",
      "          'unarmed': 1,\n",
      "          'nwho': 1,\n",
      "          'guess': 1,\n",
      "          'wins': 1,\n",
      "          'nsome': 1,\n",
      "          'scenes': 1,\n",
      "          'comedy': 1,\n",
      "          'ntodds': 1,\n",
      "          'awakening': 1,\n",
      "          'emotion': 1,\n",
      "          'glimpses': 1,\n",
      "          'connies': 1,\n",
      "          'nipple': 1,\n",
      "          'poking': 1,\n",
      "          'thin': 1,\n",
      "          'blouse': 1,\n",
      "          'nlater': 1,\n",
      "          'sits': 1,\n",
      "          'lonely': 1,\n",
      "          'campfire': 1,\n",
      "          'tear': 1,\n",
      "          'rolls': 1,\n",
      "          'dramatically': 1,\n",
      "          'lighted': 1,\n",
      "          'cheek': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'clich': 1,\n",
      "          'meant': 1,\n",
      "          'humorous': 1,\n",
      "          'ndastardly': 1,\n",
      "          'col': 1,\n",
      "          'mekum': 1,\n",
      "          'isaacs': 1,\n",
      "          'pencilthin': 1,\n",
      "          'mustache': 1,\n",
      "          'snidley': 1,\n",
      "          'whiplash': 1,\n",
      "          'nresponsible': 1,\n",
      "          'quirky': 1,\n",
      "          'visually': 1,\n",
      "          'enticing': 1,\n",
      "          'problematic': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'director': 1,\n",
      "          'paul': 1,\n",
      "          'anderson': 1,\n",
      "          'outer': 1,\n",
      "          'nmaybe': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'rambo': 1,\n",
      "          'mode': 1,\n",
      "          'action': 1,\n",
      "          'outcome': 1,\n",
      "          'nsomehow': 1,\n",
      "          'superior': 1,\n",
      "          'prove': 1,\n",
      "          'match': 1,\n",
      "          'acting': 1,\n",
      "          'write': 1,\n",
      "          'home': 1,\n",
      "          'nnielsen': 1,\n",
      "          'almost': 1,\n",
      "          'across': 1,\n",
      "          'person': 1,\n",
      "          'soon': 1,\n",
      "          'relegated': 1,\n",
      "          'background': 1,\n",
      "          'victim': 1,\n",
      "          'nrussell': 1,\n",
      "          'buffedup': 1,\n",
      "          'credible': 1,\n",
      "          'job': 1,\n",
      "          'challenge': 1,\n",
      "          'nuttering': 1,\n",
      "          '100': 1,\n",
      "          'words': 1,\n",
      "          'hit': 1,\n",
      "          'things': 1,\n",
      "          'stare': 1,\n",
      "          'grimly': 1,\n",
      "          'ngary': 1,\n",
      "          'busey': 1,\n",
      "          'todds': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'lowkey': 1,\n",
      "          'neverything': 1,\n",
      "          'blows': 1,\n",
      "          'looks': 1,\n",
      "          'cool': 1,\n",
      "          'nsometimes': 1,\n",
      "          'sets': 1,\n",
      "          'impressive': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'sometimes': 1,\n",
      "          'make': 1,\n",
      "          'nmost': 1,\n",
      "          'disappointing': 1,\n",
      "          'screenplay': 1,\n",
      "          'david': 1,\n",
      "          'webb': 1,\n",
      "          'peoples': 1,\n",
      "          'wrote': 1,\n",
      "          'possibly': 1,\n",
      "          'fiction': 1,\n",
      "          'ever': 1,\n",
      "          'nsharpeyed': 1,\n",
      "          'viewers': 1,\n",
      "          'notice': 1,\n",
      "          'obscure': 1,\n",
      "          'references': 1,\n",
      "          'npeoples': 1,\n",
      "          'says': 1,\n",
      "          'sequel': 1,\n",
      "          'sidequel': 1,\n",
      "          'universe': 1,\n",
      "          'nalthough': 1,\n",
      "          'may': 1,\n",
      "          'intent': 1,\n",
      "          'original': 1,\n",
      "          'script': 1,\n",
      "          'result': 1,\n",
      "          'bad': 1,\n",
      "          'television': 1,\n",
      "          'series': 1,\n",
      "          'replicants': 1,\n",
      "          'watch': 1,\n",
      "          'pass': 1,\n",
      "          'nperhaps': 1,\n",
      "          'artificial': 1,\n",
      "          'humans': 1,\n",
      "          'entertaining': 1,\n",
      "          'n': 1,\n",
      "          'written': 1,\n",
      "          'column': 1,\n",
      "          '23': 1,\n",
      "          'wants': 1,\n",
      "          'wish': 1,\n",
      "          'everyone': 1,\n",
      "          'appropriate': 1,\n",
      "          'halloween': 1,\n",
      "          'whatever': 1,\n",
      "          'nyoud': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 5,\n",
      "          'movie': 5,\n",
      "          'nthe': 5,\n",
      "          'bmovie': 4,\n",
      "          'one': 4,\n",
      "          'slugs': 4,\n",
      "          'story': 4,\n",
      "          'really': 3,\n",
      "          'nit': 3,\n",
      "          'horror': 3,\n",
      "          'movies': 3,\n",
      "          'nthat': 2,\n",
      "          'isnt': 2,\n",
      "          'good': 2,\n",
      "          'two': 2,\n",
      "          'university': 2,\n",
      "          'students': 2,\n",
      "          'requisite': 2,\n",
      "          'jill': 2,\n",
      "          'whitlow': 2,\n",
      "          'make': 2,\n",
      "          'much': 2,\n",
      "          'nyou': 2,\n",
      "          'homicide': 1,\n",
      "          'prophetic': 1,\n",
      "          'question': 1,\n",
      "          'asked': 1,\n",
      "          'leads': 1,\n",
      "          'early': 1,\n",
      "          'scenes': 1,\n",
      "          'nlet': 1,\n",
      "          'clear': 1,\n",
      "          'things': 1,\n",
      "          'cupcake': 1,\n",
      "          'nso': 1,\n",
      "          'almost': 1,\n",
      "          'nalmost': 1,\n",
      "          'quite': 1,\n",
      "          'starts': 1,\n",
      "          '1950s': 1,\n",
      "          'space': 1,\n",
      "          'aliens': 1,\n",
      "          'sending': 1,\n",
      "          'botched': 1,\n",
      "          'experiment': 1,\n",
      "          'earth': 1,\n",
      "          'bunch': 1,\n",
      "          'sluglike': 1,\n",
      "          'creatures': 1,\n",
      "          'kill': 1,\n",
      "          'people': 1,\n",
      "          'take': 1,\n",
      "          'bodies': 1,\n",
      "          'first': 1,\n",
      "          'victim': 1,\n",
      "          'fifties': 1,\n",
      "          'cryogenically': 1,\n",
      "          'frozen': 1,\n",
      "          'danger': 1,\n",
      "          'anybody': 1,\n",
      "          'loser': 1,\n",
      "          'unfreeze': 1,\n",
      "          '1986': 1,\n",
      "          'nhe': 1,\n",
      "          'inside': 1,\n",
      "          'promptly': 1,\n",
      "          'begin': 1,\n",
      "          'wreaking': 1,\n",
      "          'havoc': 1,\n",
      "          'turning': 1,\n",
      "          'coeds': 1,\n",
      "          'slug': 1,\n",
      "          'zombies': 1,\n",
      "          'na': 1,\n",
      "          'slightly': 1,\n",
      "          'crazed': 1,\n",
      "          'cop': 1,\n",
      "          'tom': 1,\n",
      "          'atkins': 1,\n",
      "          'girl': 1,\n",
      "          'face': 1,\n",
      "          'angel': 1,\n",
      "          'join': 1,\n",
      "          'geeky': 1,\n",
      "          'jason': 1,\n",
      "          'lively': 1,\n",
      "          'steve': 1,\n",
      "          'marshall': 1,\n",
      "          'battle': 1,\n",
      "          'less': 1,\n",
      "          'falls': 1,\n",
      "          'four': 1,\n",
      "          'world': 1,\n",
      "          'safe': 1,\n",
      "          'evil': 1,\n",
      "          'acting': 1,\n",
      "          'capital': 1,\n",
      "          'b': 1,\n",
      "          'worse': 1,\n",
      "          'nand': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'somewhere': 1,\n",
      "          'old': 1,\n",
      "          'rerun': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'see': 1,\n",
      "          'home': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'titshot': 1,\n",
      "          'courtesy': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'liked': 1,\n",
      "          'nactually': 1,\n",
      "          'high': 1,\n",
      "          'point': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'saying': 1,\n",
      "          'moves': 1,\n",
      "          'around': 1,\n",
      "          'hap': 1,\n",
      "          'hazard': 1,\n",
      "          'fashion': 1,\n",
      "          'nwhich': 1,\n",
      "          'gives': 1,\n",
      "          'leg': 1,\n",
      "          'films': 1,\n",
      "          'nunlike': 1,\n",
      "          'genre': 1,\n",
      "          'actually': 1,\n",
      "          'nnot': 1,\n",
      "          'great': 1,\n",
      "          'nthis': 1,\n",
      "          'long': 1,\n",
      "          'line': 1,\n",
      "          '1980s': 1,\n",
      "          'thrown': 1,\n",
      "          'together': 1,\n",
      "          'capitalize': 1,\n",
      "          'success': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'halloween': 1,\n",
      "          'nightmare': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          'could': 1,\n",
      "          'randomly': 1,\n",
      "          'select': 1,\n",
      "          'section': 1,\n",
      "          'local': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'probably': 1,\n",
      "          'luck': 1,\n",
      "          'something': 1,\n",
      "          'better': 1,\n",
      "          'nbut': 1,\n",
      "          'night': 1,\n",
      "          'creeps': 1,\n",
      "          'might': 1,\n",
      "          'nice': 1,\n",
      "          'addition': 1,\n",
      "          'marathon': 1,\n",
      "          'njust': 1,\n",
      "          'dont': 1,\n",
      "          'upset': 1,\n",
      "          'cant': 1,\n",
      "          'find': 1,\n",
      "          'wont': 1,\n",
      "          'missing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jawbreaker': 7,\n",
      "          'scene': 3,\n",
      "          'even': 3,\n",
      "          'n': 3,\n",
      "          'one': 3,\n",
      "          'film': 3,\n",
      "          'anything': 3,\n",
      "          'role': 3,\n",
      "          'funny': 2,\n",
      "          'nnot': 2,\n",
      "          'content': 2,\n",
      "          'rest': 2,\n",
      "          'eyes': 2,\n",
      "          'yet': 2,\n",
      "          'another': 2,\n",
      "          'acting': 2,\n",
      "          'obviously': 2,\n",
      "          'stein': 2,\n",
      "          'quite': 2,\n",
      "          'worst': 2,\n",
      "          'ive': 2,\n",
      "          'garbage': 2,\n",
      "          'theres': 1,\n",
      "          'early': 1,\n",
      "          'character': 1,\n",
      "          'utters': 1,\n",
      "          'unintentionally': 1,\n",
      "          'prophetic': 1,\n",
      "          'line': 1,\n",
      "          'nhow': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'pathetic': 1,\n",
      "          'tale': 1,\n",
      "          'three': 1,\n",
      "          'highschoolers': 1,\n",
      "          'accidentally': 1,\n",
      "          'kill': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'birthday': 1,\n",
      "          'kidnapping': 1,\n",
      "          'prank': 1,\n",
      "          'gone': 1,\n",
      "          'horribly': 1,\n",
      "          'awry': 1,\n",
      "          'never': 1,\n",
      "          'remotely': 1,\n",
      "          'fun': 1,\n",
      "          'original': 1,\n",
      "          'tooobvious': 1,\n",
      "          'heathers': 1,\n",
      "          'heisting': 1,\n",
      "          'filmmakers': 1,\n",
      "          'proceed': 1,\n",
      "          'lift': 1,\n",
      "          'freely': 1,\n",
      "          'staggering': 1,\n",
      "          'variety': 1,\n",
      "          'sources': 1,\n",
      "          'including': 1,\n",
      "          'carrie': 1,\n",
      "          'bride': 1,\n",
      "          'frankenstein': 1,\n",
      "          'blue': 1,\n",
      "          'velvet': 1,\n",
      "          'shaws': 1,\n",
      "          'pygmalion': 1,\n",
      "          'recently': 1,\n",
      "          'remade': 1,\n",
      "          'shes': 1,\n",
      "          'pastiche': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ni': 1,\n",
      "          'find': 1,\n",
      "          'extremely': 1,\n",
      "          'telling': 1,\n",
      "          'engaging': 1,\n",
      "          'part': 1,\n",
      "          'credit': 1,\n",
      "          'sequence': 1,\n",
      "          'factory': 1,\n",
      "          'montage': 1,\n",
      "          'inexplicably': 1,\n",
      "          'backed': 1,\n",
      "          'veruca': 1,\n",
      "          'salts': 1,\n",
      "          'volcano': 1,\n",
      "          'girls': 1,\n",
      "          'serving': 1,\n",
      "          'blueprint': 1,\n",
      "          'song': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'footage': 1,\n",
      "          'watching': 1,\n",
      "          'njust': 1,\n",
      "          'close': 1,\n",
      "          'pretend': 1,\n",
      "          'youre': 1,\n",
      "          'listening': 1,\n",
      "          'altrock': 1,\n",
      "          'station': 1,\n",
      "          'wont': 1,\n",
      "          'missing': 1,\n",
      "          'nthe': 1,\n",
      "          'blame': 1,\n",
      "          'mess': 1,\n",
      "          'big': 1,\n",
      "          'spread': 1,\n",
      "          'around': 1,\n",
      "          'among': 1,\n",
      "          'principals': 1,\n",
      "          'nrebecca': 1,\n",
      "          'gayheart': 1,\n",
      "          'following': 1,\n",
      "          'roles': 1,\n",
      "          'scream': 1,\n",
      "          '2': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'known': 1,\n",
      "          'better': 1,\n",
      "          'take': 1,\n",
      "          'teen': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'movie': 1,\n",
      "          'npam': 1,\n",
      "          'grier': 1,\n",
      "          'totally': 1,\n",
      "          'wasted': 1,\n",
      "          'credibility': 1,\n",
      "          'might': 1,\n",
      "          'gotten': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantinos': 1,\n",
      "          'jackie': 1,\n",
      "          'brown': 1,\n",
      "          'nand': 1,\n",
      "          'rose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'quit': 1,\n",
      "          'nshe': 1,\n",
      "          'charisma': 1,\n",
      "          'presence': 1,\n",
      "          'skills': 1,\n",
      "          'rolling': 1,\n",
      "          'looking': 1,\n",
      "          'disaffected': 1,\n",
      "          'nmcgowan': 1,\n",
      "          'manages': 1,\n",
      "          'upstaged': 1,\n",
      "          'reallife': 1,\n",
      "          'boyfriend': 1,\n",
      "          'rocker': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'whose': 1,\n",
      "          'fifteen': 1,\n",
      "          'second': 1,\n",
      "          'far': 1,\n",
      "          'interesting': 1,\n",
      "          'real': 1,\n",
      "          'actors': 1,\n",
      "          'nmanson': 1,\n",
      "          'sans': 1,\n",
      "          'trademark': 1,\n",
      "          'makeup': 1,\n",
      "          'contact': 1,\n",
      "          'lenses': 1,\n",
      "          'fake': 1,\n",
      "          'moustache': 1,\n",
      "          'looks': 1,\n",
      "          'eerily': 1,\n",
      "          'like': 1,\n",
      "          'nicholas': 1,\n",
      "          'cage': 1,\n",
      "          'woulda': 1,\n",
      "          'thunk': 1,\n",
      "          'nthat': 1,\n",
      "          'crack': 1,\n",
      "          'direction': 1,\n",
      "          'committee': 1,\n",
      "          'wasnt': 1,\n",
      "          'merely': 1,\n",
      "          'pithy': 1,\n",
      "          'soundbite': 1,\n",
      "          'nstylistically': 1,\n",
      "          'thematically': 1,\n",
      "          'narratively': 1,\n",
      "          'map': 1,\n",
      "          'varying': 1,\n",
      "          'wildly': 1,\n",
      "          'tone': 1,\n",
      "          'nthough': 1,\n",
      "          'credited': 1,\n",
      "          'solely': 1,\n",
      "          'writerdirector': 1,\n",
      "          'darren': 1,\n",
      "          'gets': 1,\n",
      "          'feeling': 1,\n",
      "          'two': 1,\n",
      "          'scenes': 1,\n",
      "          'actually': 1,\n",
      "          'guided': 1,\n",
      "          'hands': 1,\n",
      "          'nif': 1,\n",
      "          'indeed': 1,\n",
      "          'responsible': 1,\n",
      "          'whole': 1,\n",
      "          'atrocity': 1,\n",
      "          'someone': 1,\n",
      "          'needs': 1,\n",
      "          'get': 1,\n",
      "          'man': 1,\n",
      "          'drugs': 1,\n",
      "          'pronto': 1,\n",
      "          'nprozac': 1,\n",
      "          'lithium': 1,\n",
      "          'kava': 1,\n",
      "          'ritalin': 1,\n",
      "          'something': 1,\n",
      "          'nhes': 1,\n",
      "          'desperate': 1,\n",
      "          'need': 1,\n",
      "          'chemical': 1,\n",
      "          'help': 1,\n",
      "          'monumental': 1,\n",
      "          'waste': 1,\n",
      "          'effort': 1,\n",
      "          'resources': 1,\n",
      "          'likely': 1,\n",
      "          'single': 1,\n",
      "          'films': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'nto': 1,\n",
      "          'call': 1,\n",
      "          'would': 1,\n",
      "          'insult': 1,\n",
      "          'nbad': 1,\n",
      "          'flicks': 1,\n",
      "          'year': 1,\n",
      "          'safe': 1,\n",
      "          'already': 1,\n",
      "          'got': 1,\n",
      "          'pick': 1,\n",
      "          '99': 1,\n",
      "          'runs': 1,\n",
      "          'approximately': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'though': 1,\n",
      "          'feels': 1,\n",
      "          'longer': 1,\n",
      "          'titanic': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'language': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          'graphic': 1,\n",
      "          'violence': 1,\n",
      "          'recommended': 1,\n",
      "          'kids': 1,\n",
      "          'teens': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 4,\n",
      "          'mia': 4,\n",
      "          'baby': 3,\n",
      "          'seems': 3,\n",
      "          'neighbors': 3,\n",
      "          'movie': 3,\n",
      "          'film': 2,\n",
      "          'time': 2,\n",
      "          'boring': 2,\n",
      "          'laughable': 2,\n",
      "          'n': 2,\n",
      "          'bad': 2,\n",
      "          'past': 2,\n",
      "          'nrosemarys': 2,\n",
      "          'john': 2,\n",
      "          'evil': 2,\n",
      "          'nit': 2,\n",
      "          'room': 2,\n",
      "          'finds': 2,\n",
      "          'nthe': 2,\n",
      "          'whos': 2,\n",
      "          'long': 2,\n",
      "          'way': 2,\n",
      "          'say': 1,\n",
      "          'dated': 1,\n",
      "          'nyou': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'rosemarys': 1,\n",
      "          'exorcist': 1,\n",
      "          'thrilling': 1,\n",
      "          'horror': 1,\n",
      "          'decades': 1,\n",
      "          'passed': 1,\n",
      "          'since': 1,\n",
      "          'original': 1,\n",
      "          'release': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theater': 1,\n",
      "          '3000': 1,\n",
      "          'skewered': 1,\n",
      "          'films': 1,\n",
      "          'let': 1,\n",
      "          'tell': 1,\n",
      "          'could': 1,\n",
      "          'number': 1,\n",
      "          'good': 1,\n",
      "          'ones': 1,\n",
      "          'stars': 1,\n",
      "          'farrow': 1,\n",
      "          'actually': 1,\n",
      "          'goodlooking': 1,\n",
      "          'innocent': 1,\n",
      "          'housewife': 1,\n",
      "          'notsoinnocent': 1,\n",
      "          'husband': 1,\n",
      "          'cassavettes': 1,\n",
      "          'actor': 1,\n",
      "          'takes': 1,\n",
      "          'easy': 1,\n",
      "          'albeit': 1,\n",
      "          'road': 1,\n",
      "          'success': 1,\n",
      "          'harmless': 1,\n",
      "          'beginning': 1,\n",
      "          'nmia': 1,\n",
      "          'move': 1,\n",
      "          'apartment': 1,\n",
      "          'several': 1,\n",
      "          'murders': 1,\n",
      "          'committed': 1,\n",
      "          'theres': 1,\n",
      "          'also': 1,\n",
      "          'skull': 1,\n",
      "          'living': 1,\n",
      "          'decoration': 1,\n",
      "          'ntheir': 1,\n",
      "          'elderly': 1,\n",
      "          'pop': 1,\n",
      "          'housewarming': 1,\n",
      "          'nalls': 1,\n",
      "          'well': 1,\n",
      "          'first': 1,\n",
      "          'hour': 1,\n",
      "          'slowmoving': 1,\n",
      "          'eats': 1,\n",
      "          'chocolate': 1,\n",
      "          'mousse': 1,\n",
      "          'passes': 1,\n",
      "          'nwhen': 1,\n",
      "          'comes': 1,\n",
      "          'darkened': 1,\n",
      "          'bunch': 1,\n",
      "          'people': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'yelling': 1,\n",
      "          'dancing': 1,\n",
      "          'savages': 1,\n",
      "          'big': 1,\n",
      "          'man': 1,\n",
      "          'raping': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'future': 1,\n",
      "          'life': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'dream': 1,\n",
      "          'pregnant': 1,\n",
      "          'almost': 1,\n",
      "          'forgets': 1,\n",
      "          'nand': 1,\n",
      "          'everyones': 1,\n",
      "          'helping': 1,\n",
      "          'pregnancy': 1,\n",
      "          'wonderful': 1,\n",
      "          'vitamin': 1,\n",
      "          'potions': 1,\n",
      "          'drink': 1,\n",
      "          'goodluck': 1,\n",
      "          'charm': 1,\n",
      "          'wear': 1,\n",
      "          'around': 1,\n",
      "          'neck': 1,\n",
      "          'name': 1,\n",
      "          'obstetrician': 1,\n",
      "          'business': 1,\n",
      "          '66': 1,\n",
      "          '6': 1,\n",
      "          'nyears': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'begins': 1,\n",
      "          'chronic': 1,\n",
      "          'stomach': 1,\n",
      "          'pains': 1,\n",
      "          'losing': 1,\n",
      "          'lot': 1,\n",
      "          'weight': 1,\n",
      "          'nbefore': 1,\n",
      "          'looks': 1,\n",
      "          'lead': 1,\n",
      "          'singer': 1,\n",
      "          'cranberries': 1,\n",
      "          'nthats': 1,\n",
      "          'know': 1,\n",
      "          'healths': 1,\n",
      "          'failing': 1,\n",
      "          'person': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'suspicious': 1,\n",
      "          'old': 1,\n",
      "          'friend': 1,\n",
      "          'maurice': 1,\n",
      "          'evans': 1,\n",
      "          'calls': 1,\n",
      "          'give': 1,\n",
      "          'news': 1,\n",
      "          'immediately': 1,\n",
      "          'falls': 1,\n",
      "          'coma': 1,\n",
      "          'nby': 1,\n",
      "          'twohour': 1,\n",
      "          'mark': 1,\n",
      "          'felt': 1,\n",
      "          'leads': 1,\n",
      "          'payoff': 1,\n",
      "          'thats': 1,\n",
      "          'rest': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'someone': 1,\n",
      "          'put': 1,\n",
      "          'spell': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sam': 5,\n",
      "          'summer': 5,\n",
      "          'film': 5,\n",
      "          'little': 4,\n",
      "          'movie': 4,\n",
      "          'doesnt': 4,\n",
      "          'mira': 3,\n",
      "          'sorvino': 3,\n",
      "          'brody': 3,\n",
      "          'gets': 3,\n",
      "          'nthe': 3,\n",
      "          'new': 3,\n",
      "          'city': 3,\n",
      "          'first': 3,\n",
      "          'son': 3,\n",
      "          'people': 3,\n",
      "          'group': 3,\n",
      "          'dionna': 3,\n",
      "          'well': 3,\n",
      "          'night': 3,\n",
      "          'killer': 2,\n",
      "          'john': 2,\n",
      "          'leguizamo': 2,\n",
      "          'adrian': 2,\n",
      "          'nsummer': 2,\n",
      "          'spike': 2,\n",
      "          'nlee': 2,\n",
      "          'great': 2,\n",
      "          'nbut': 2,\n",
      "          'director': 2,\n",
      "          'something': 2,\n",
      "          'say': 2,\n",
      "          'york': 2,\n",
      "          'focus': 2,\n",
      "          'vinny': 2,\n",
      "          'young': 2,\n",
      "          'ritchie': 2,\n",
      "          'punk': 2,\n",
      "          'gang': 2,\n",
      "          'time': 2,\n",
      "          'characters': 2,\n",
      "          'killings': 2,\n",
      "          'nvinny': 2,\n",
      "          'make': 2,\n",
      "          'much': 2,\n",
      "          'makes': 2,\n",
      "          'list': 2,\n",
      "          'think': 2,\n",
      "          'way': 2,\n",
      "          'clear': 2,\n",
      "          'hour': 2,\n",
      "          'character': 2,\n",
      "          'good': 2,\n",
      "          'guy': 2,\n",
      "          'performance': 2,\n",
      "          '44': 1,\n",
      "          'caliber': 1,\n",
      "          'struck': 1,\n",
      "          'nstarring': 1,\n",
      "          'jennifer': 1,\n",
      "          'esposito': 1,\n",
      "          'michael': 1,\n",
      "          'rispoli': 1,\n",
      "          'bebe': 1,\n",
      "          'neuwirth': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'remembered': 1,\n",
      "          'waste': 1,\n",
      "          'lees': 1,\n",
      "          'abilities': 1,\n",
      "          'filmmaker': 1,\n",
      "          'often': 1,\n",
      "          'exhibiting': 1,\n",
      "          'kinetic': 1,\n",
      "          'visual': 1,\n",
      "          'flair': 1,\n",
      "          'par': 1,\n",
      "          'brian': 1,\n",
      "          'depalma': 1,\n",
      "          'martin': 1,\n",
      "          'scorsese': 1,\n",
      "          'storytelling': 1,\n",
      "          'ability': 1,\n",
      "          'comparable': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'bind': 1,\n",
      "          'nhis': 1,\n",
      "          'latest': 1,\n",
      "          'effort': 1,\n",
      "          'case': 1,\n",
      "          'pretending': 1,\n",
      "          'reality': 1,\n",
      "          'substance': 1,\n",
      "          'absorb': 1,\n",
      "          'work': 1,\n",
      "          '1977': 1,\n",
      "          'unusual': 1,\n",
      "          'nit': 1,\n",
      "          'hottest': 1,\n",
      "          'record': 1,\n",
      "          'nto': 1,\n",
      "          'boot': 1,\n",
      "          'yorks': 1,\n",
      "          'serial': 1,\n",
      "          'loose': 1,\n",
      "          'calling': 1,\n",
      "          'david': 1,\n",
      "          'berkowitz': 1,\n",
      "          'killed': 1,\n",
      "          '9': 1,\n",
      "          'area': 1,\n",
      "          'frightened': 1,\n",
      "          'whole': 1,\n",
      "          'population': 1,\n",
      "          'nso': 1,\n",
      "          'understandable': 1,\n",
      "          'nyc': 1,\n",
      "          'hit': 1,\n",
      "          'citywide': 1,\n",
      "          'blackout': 1,\n",
      "          'went': 1,\n",
      "          'berserk': 1,\n",
      "          'causing': 1,\n",
      "          'billions': 1,\n",
      "          'dollars': 1,\n",
      "          'damage': 1,\n",
      "          'movies': 1,\n",
      "          'twentysomethings': 1,\n",
      "          'fateful': 1,\n",
      "          'clubhopping': 1,\n",
      "          'adultrous': 1,\n",
      "          'hairdresser': 1,\n",
      "          'benevolent': 1,\n",
      "          'wife': 1,\n",
      "          'looking': 1,\n",
      "          'becomes': 1,\n",
      "          'outcast': 1,\n",
      "          'suspect': 1,\n",
      "          'small': 1,\n",
      "          'mobsters': 1,\n",
      "          'minor': 1,\n",
      "          'nwe': 1,\n",
      "          'follow': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'lives': 1,\n",
      "          'thrown': 1,\n",
      "          'whack': 1,\n",
      "          'even': 1,\n",
      "          'recent': 1,\n",
      "          'marital': 1,\n",
      "          'problems': 1,\n",
      "          'cheats': 1,\n",
      "          'tries': 1,\n",
      "          'please': 1,\n",
      "          'stay': 1,\n",
      "          'faithful': 1,\n",
      "          'nritchie': 1,\n",
      "          'shunned': 1,\n",
      "          'friends': 1,\n",
      "          'started': 1,\n",
      "          'become': 1,\n",
      "          'eccentric': 1,\n",
      "          'degenerated': 1,\n",
      "          'point': 1,\n",
      "          'dancing': 1,\n",
      "          'gay': 1,\n",
      "          'clubs': 1,\n",
      "          'making': 1,\n",
      "          'porno': 1,\n",
      "          'films': 1,\n",
      "          'girlfriend': 1,\n",
      "          'ntensions': 1,\n",
      "          'build': 1,\n",
      "          'conflicts': 1,\n",
      "          'arise': 1,\n",
      "          'anniversary': 1,\n",
      "          'sams': 1,\n",
      "          'murder': 1,\n",
      "          'looms': 1,\n",
      "          'promises': 1,\n",
      "          'strike': 1,\n",
      "          'na': 1,\n",
      "          'local': 1,\n",
      "          'hands': 1,\n",
      "          'detailing': 1,\n",
      "          'members': 1,\n",
      "          'might': 1,\n",
      "          'suspects': 1,\n",
      "          'nat': 1,\n",
      "          'top': 1,\n",
      "          'unwilling': 1,\n",
      "          'part': 1,\n",
      "          'said': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'set': 1,\n",
      "          'trap': 1,\n",
      "          'friend': 1,\n",
      "          'nas': 1,\n",
      "          'watch': 1,\n",
      "          'proceedings': 1,\n",
      "          'painfully': 1,\n",
      "          'graphic': 1,\n",
      "          'dreaded': 1,\n",
      "          'nquestion': 1,\n",
      "          'springs': 1,\n",
      "          'mind': 1,\n",
      "          'nfrom': 1,\n",
      "          'made': 1,\n",
      "          'id': 1,\n",
      "          'guessed': 1,\n",
      "          'lee': 1,\n",
      "          'trying': 1,\n",
      "          'tell': 1,\n",
      "          'us': 1,\n",
      "          'searched': 1,\n",
      "          'deeper': 1,\n",
      "          'became': 1,\n",
      "          'find': 1,\n",
      "          'touches': 1,\n",
      "          'media': 1,\n",
      "          '70s': 1,\n",
      "          'scene': 1,\n",
      "          'details': 1,\n",
      "          'actual': 1,\n",
      "          'personal': 1,\n",
      "          'dilemmas': 1,\n",
      "          'bring': 1,\n",
      "          'topics': 1,\n",
      "          'together': 1,\n",
      "          'form': 1,\n",
      "          'coherent': 1,\n",
      "          'theme': 1,\n",
      "          'discernible': 1,\n",
      "          'statement': 1,\n",
      "          'nall': 1,\n",
      "          'lost': 1,\n",
      "          'turns': 1,\n",
      "          'hollow': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'get': 1,\n",
      "          'help': 1,\n",
      "          'nfrankly': 1,\n",
      "          'bore': 1,\n",
      "          'redundant': 1,\n",
      "          'repetitive': 1,\n",
      "          'two': 1,\n",
      "          'twenty': 1,\n",
      "          'minute': 1,\n",
      "          'entertain': 1,\n",
      "          'beyond': 1,\n",
      "          'half': 1,\n",
      "          'nthere': 1,\n",
      "          'suspense': 1,\n",
      "          'refuses': 1,\n",
      "          'fully': 1,\n",
      "          'murders': 1,\n",
      "          'involving': 1,\n",
      "          'drama': 1,\n",
      "          'muddled': 1,\n",
      "          'vague': 1,\n",
      "          'nleguizamos': 1,\n",
      "          'turn': 1,\n",
      "          'vinnie': 1,\n",
      "          'annoying': 1,\n",
      "          'whiny': 1,\n",
      "          'script': 1,\n",
      "          'supposed': 1,\n",
      "          'believe': 1,\n",
      "          'flawed': 1,\n",
      "          'still': 1,\n",
      "          'nyoud': 1,\n",
      "          'never': 1,\n",
      "          'guess': 1,\n",
      "          'nadrian': 1,\n",
      "          'especially': 1,\n",
      "          'fare': 1,\n",
      "          'better': 1,\n",
      "          'nsorvino': 1,\n",
      "          'gives': 1,\n",
      "          'riveting': 1,\n",
      "          'touching': 1,\n",
      "          'banal': 1,\n",
      "          'im': 1,\n",
      "          'tempted': 1,\n",
      "          'liked': 1,\n",
      "          'nearly': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'around': 1,\n",
      "          'inane': 1,\n",
      "          'affecting': 1,\n",
      "          'emotions': 1,\n",
      "          'truetoheart': 1,\n",
      "          'nbrody': 1,\n",
      "          'paints': 1,\n",
      "          'effective': 1,\n",
      "          'portrait': 1,\n",
      "          'desperate': 1,\n",
      "          'attention': 1,\n",
      "          'bargained': 1,\n",
      "          'superficial': 1,\n",
      "          'elements': 1,\n",
      "          'looks': 1,\n",
      "          'notable': 1,\n",
      "          'performances': 1,\n",
      "          'suppose': 1,\n",
      "          'pretty': 1,\n",
      "          'directed': 1,\n",
      "          'purely': 1,\n",
      "          'technical': 1,\n",
      "          'also': 1,\n",
      "          'empty': 1,\n",
      "          'pretentious': 1,\n",
      "          'boring': 1,\n",
      "          'nlike': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'thin': 1,\n",
      "          'red': 1,\n",
      "          'line': 1,\n",
      "          'know': 1,\n",
      "          'wants': 1,\n",
      "          'goes': 1,\n",
      "          'ahead': 1,\n",
      "          'says': 1,\n",
      "          'anyway': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'house': 4,\n",
      "          'player': 3,\n",
      "          'friends': 3,\n",
      "          'one': 3,\n",
      "          'naked': 3,\n",
      "          'breasts': 3,\n",
      "          'screen': 2,\n",
      "          'bellamy': 2,\n",
      "          'women': 2,\n",
      "          'character': 2,\n",
      "          'day': 2,\n",
      "          'decide': 2,\n",
      "          'want': 2,\n",
      "          'car': 2,\n",
      "          'sex': 2,\n",
      "          'comedy': 2,\n",
      "          'gottfrieds': 2,\n",
      "          'along': 2,\n",
      "          'wow': 1,\n",
      "          'without': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nim': 1,\n",
      "          'amazed': 1,\n",
      "          'someone': 1,\n",
      "          'thought': 1,\n",
      "          'story': 1,\n",
      "          'must': 1,\n",
      "          'told': 1,\n",
      "          'nmany': 1,\n",
      "          'blacks': 1,\n",
      "          'hollywood': 1,\n",
      "          'complain': 1,\n",
      "          'nominated': 1,\n",
      "          'awards': 1,\n",
      "          'based': 1,\n",
      "          'race': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'first': 1,\n",
      "          'need': 1,\n",
      "          'concentrate': 1,\n",
      "          'energy': 1,\n",
      "          'stop': 1,\n",
      "          'making': 1,\n",
      "          'movies': 1,\n",
      "          'makes': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'nothing': 1,\n",
      "          'sexcrazed': 1,\n",
      "          'buffoons': 1,\n",
      "          'neven': 1,\n",
      "          'im': 1,\n",
      "          'offended': 1,\n",
      "          'nbill': 1,\n",
      "          'means': 1,\n",
      "          'sleeps': 1,\n",
      "          'lot': 1,\n",
      "          'lies': 1,\n",
      "          'nwhat': 1,\n",
      "          'pleasant': 1,\n",
      "          'main': 1,\n",
      "          'none': 1,\n",
      "          'find': 1,\n",
      "          'nwhy': 1,\n",
      "          'idea': 1,\n",
      "          'nhow': 1,\n",
      "          'many': 1,\n",
      "          'years': 1,\n",
      "          'sudden': 1,\n",
      "          'would': 1,\n",
      "          'learn': 1,\n",
      "          'nanyway': 1,\n",
      "          'agrees': 1,\n",
      "          'teach': 1,\n",
      "          'wonderful': 1,\n",
      "          'lesson': 1,\n",
      "          'consists': 1,\n",
      "          'letting': 1,\n",
      "          'ride': 1,\n",
      "          'rides': 1,\n",
      "          'nthis': 1,\n",
      "          'bulk': 1,\n",
      "          'folks': 1,\n",
      "          'guys': 1,\n",
      "          'riding': 1,\n",
      "          'keeps': 1,\n",
      "          'getting': 1,\n",
      "          'others': 1,\n",
      "          'sit': 1,\n",
      "          'nsince': 1,\n",
      "          'russell': 1,\n",
      "          'simmons': 1,\n",
      "          'producer': 1,\n",
      "          'since': 1,\n",
      "          'official': 1,\n",
      "          'title': 1,\n",
      "          'def': 1,\n",
      "          'jams': 1,\n",
      "          'ready': 1,\n",
      "          'jumping': 1,\n",
      "          'stomping': 1,\n",
      "          'feet': 1,\n",
      "          'beating': 1,\n",
      "          'person': 1,\n",
      "          'next': 1,\n",
      "          'namazingly': 1,\n",
      "          'aside': 1,\n",
      "          'gilbert': 1,\n",
      "          '90': 1,\n",
      "          'seconds': 1,\n",
      "          'time': 1,\n",
      "          'express': 1,\n",
      "          'manner': 1,\n",
      "          'ninstead': 1,\n",
      "          'jokes': 1,\n",
      "          'theres': 1,\n",
      "          'endless': 1,\n",
      "          'stream': 1,\n",
      "          'profanity': 1,\n",
      "          'arent': 1,\n",
      "          'bad': 1,\n",
      "          'alone': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'movie': 1,\n",
      "          'nbe': 1,\n",
      "          'sure': 1,\n",
      "          'bring': 1,\n",
      "          'ebonics': 1,\n",
      "          'english': 1,\n",
      "          'dictionary': 1,\n",
      "          'well': 1,\n",
      "          'ngilbert': 1,\n",
      "          'serves': 1,\n",
      "          'brief': 1,\n",
      "          'appearance': 1,\n",
      "          'asking': 1,\n",
      "          'explanations': 1,\n",
      "          'said': 1,\n",
      "          'nthey': 1,\n",
      "          'brought': 1,\n",
      "          'entire': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'really': 4,\n",
      "          'matthau': 3,\n",
      "          'lemmon': 3,\n",
      "          'like': 3,\n",
      "          'nthe': 2,\n",
      "          'couple': 2,\n",
      "          'ii': 2,\n",
      "          'old': 2,\n",
      "          'aint': 2,\n",
      "          'years': 2,\n",
      "          'feels': 2,\n",
      "          'generic': 2,\n",
      "          'movie': 2,\n",
      "          'made': 2,\n",
      "          'one': 2,\n",
      "          'didnt': 2,\n",
      "          'nand': 2,\n",
      "          'bob': 1,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quickie': 1,\n",
      "          'review': 1,\n",
      "          'odd': 1,\n",
      "          'ngrumpy': 1,\n",
      "          'men': 1,\n",
      "          'nhell': 1,\n",
      "          'fellow': 1,\n",
      "          'americans': 1,\n",
      "          'nwalter': 1,\n",
      "          'jack': 1,\n",
      "          'team': 1,\n",
      "          'even': 1,\n",
      "          'worn': 1,\n",
      "          'vehicle': 1,\n",
      "          'films': 1,\n",
      "          'past': 1,\n",
      "          'nodd': 1,\n",
      "          'terribly': 1,\n",
      "          'first': 1,\n",
      "          'thirty': 1,\n",
      "          'ago': 1,\n",
      "          'wonderful': 1,\n",
      "          'tale': 1,\n",
      "          'nthats': 1,\n",
      "          'repackaging': 1,\n",
      "          'campbells': 1,\n",
      "          'soup': 1,\n",
      "          'food': 1,\n",
      "          'nhow': 1,\n",
      "          'writer': 1,\n",
      "          'neil': 1,\n",
      "          'simon': 1,\n",
      "          'couldve': 1,\n",
      "          'horrible': 1,\n",
      "          'mistake': 1,\n",
      "          'screen': 1,\n",
      "          'writing': 1,\n",
      "          'beyond': 1,\n",
      "          'nthroughout': 1,\n",
      "          'laugh': 1,\n",
      "          'nhonestly': 1,\n",
      "          'ni': 1,\n",
      "          'mean': 1,\n",
      "          'dumb': 1,\n",
      "          'situations': 1,\n",
      "          'yeah': 1,\n",
      "          'cropduster': 1,\n",
      "          'let': 1,\n",
      "          'geezers': 1,\n",
      "          'without': 1,\n",
      "          'notice': 1,\n",
      "          'seem': 1,\n",
      "          'funny': 1,\n",
      "          'car': 1,\n",
      "          'rolling': 1,\n",
      "          'cliff': 1,\n",
      "          'way': 1,\n",
      "          'wouldve': 1,\n",
      "          'seen': 1,\n",
      "          'humor': 1,\n",
      "          'still': 1,\n",
      "          'ending': 1,\n",
      "          'gets': 1,\n",
      "          'supermushy': 1,\n",
      "          'nin': 1,\n",
      "          'final': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'meets': 1,\n",
      "          'girl': 1,\n",
      "          'thinks': 1,\n",
      "          'loses': 1,\n",
      "          'talks': 1,\n",
      "          'son': 1,\n",
      "          'wasted': 1,\n",
      "          'jonathan': 1,\n",
      "          'silverman': 1,\n",
      "          'amrriage': 1,\n",
      "          'lemmons': 1,\n",
      "          'daughter': 1,\n",
      "          'course': 1,\n",
      "          'another': 1,\n",
      "          'roomie': 1,\n",
      "          'situation': 1,\n",
      "          'hands': 1,\n",
      "          'nooh': 1,\n",
      "          'gave': 1,\n",
      "          'lot': 1,\n",
      "          'away': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'nconsider': 1,\n",
      "          'hospitable': 1,\n",
      "          'gester': 1,\n",
      "          'wont': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'renting': 1,\n",
      "          'muck': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'betty': 12,\n",
      "          'film': 11,\n",
      "          'soap': 7,\n",
      "          'one': 6,\n",
      "          'like': 6,\n",
      "          'nthe': 6,\n",
      "          'little': 6,\n",
      "          'movie': 5,\n",
      "          'labutes': 5,\n",
      "          'hit': 5,\n",
      "          'men': 5,\n",
      "          'rock': 5,\n",
      "          'good': 4,\n",
      "          'something': 4,\n",
      "          'labute': 4,\n",
      "          'two': 4,\n",
      "          'character': 4,\n",
      "          'best': 3,\n",
      "          'could': 3,\n",
      "          'nnurse': 3,\n",
      "          'season': 3,\n",
      "          'least': 3,\n",
      "          'first': 3,\n",
      "          'nits': 3,\n",
      "          'even': 3,\n",
      "          'nbetty': 3,\n",
      "          'favorite': 3,\n",
      "          'doesnt': 3,\n",
      "          'opera': 3,\n",
      "          'zellweger': 3,\n",
      "          'chris': 3,\n",
      "          'kinnear': 3,\n",
      "          'play': 3,\n",
      "          'work': 3,\n",
      "          'comic': 3,\n",
      "          'made': 3,\n",
      "          'movies': 3,\n",
      "          'think': 3,\n",
      "          'though': 3,\n",
      "          'reality': 3,\n",
      "          'tv': 3,\n",
      "          'summer': 2,\n",
      "          'offered': 2,\n",
      "          'big': 2,\n",
      "          'end': 2,\n",
      "          'critics': 2,\n",
      "          'every': 2,\n",
      "          'time': 2,\n",
      "          'films': 2,\n",
      "          'attempt': 2,\n",
      "          'resembling': 2,\n",
      "          'mainstream': 2,\n",
      "          'picture': 2,\n",
      "          'thats': 2,\n",
      "          'people': 2,\n",
      "          'ni': 2,\n",
      "          'screenplay': 2,\n",
      "          'seems': 2,\n",
      "          'material': 2,\n",
      "          'tries': 2,\n",
      "          'flick': 2,\n",
      "          'makes': 2,\n",
      "          'half': 2,\n",
      "          'make': 2,\n",
      "          'seem': 2,\n",
      "          'renee': 2,\n",
      "          'killing': 2,\n",
      "          'husband': 2,\n",
      "          'since': 2,\n",
      "          'morgan': 2,\n",
      "          'freeman': 2,\n",
      "          'happens': 2,\n",
      "          'death': 2,\n",
      "          'shes': 2,\n",
      "          'greg': 2,\n",
      "          'bit': 2,\n",
      "          'much': 2,\n",
      "          'horrid': 2,\n",
      "          'things': 2,\n",
      "          'man': 2,\n",
      "          'maybe': 2,\n",
      "          'girlfriend': 2,\n",
      "          'boys': 2,\n",
      "          'job': 2,\n",
      "          'baby': 2,\n",
      "          'top': 2,\n",
      "          'point': 2,\n",
      "          'use': 2,\n",
      "          'nurse': 2,\n",
      "          'hes': 2,\n",
      "          'would': 2,\n",
      "          'matter': 2,\n",
      "          'part': 2,\n",
      "          'performance': 2,\n",
      "          'take': 2,\n",
      "          'bettys': 2,\n",
      "          'rather': 2,\n",
      "          'interesting': 2,\n",
      "          'score': 2,\n",
      "          'progress': 2,\n",
      "          'takes': 2,\n",
      "          'get': 2,\n",
      "          'victims': 2,\n",
      "          'current': 2,\n",
      "          'television': 2,\n",
      "          'success': 2,\n",
      "          'survivor': 2,\n",
      "          'way': 2,\n",
      "          '00': 1,\n",
      "          'wasnt': 1,\n",
      "          'devout': 1,\n",
      "          'cinephiles': 1,\n",
      "          'nit': 1,\n",
      "          'blair': 1,\n",
      "          'witches': 1,\n",
      "          'sixth': 1,\n",
      "          'senses': 1,\n",
      "          'budget': 1,\n",
      "          'hollywood': 1,\n",
      "          'efficient': 1,\n",
      "          'xmen': 1,\n",
      "          'adaptation': 1,\n",
      "          'flawed': 1,\n",
      "          'entertaining': 1,\n",
      "          'shaft': 1,\n",
      "          'update': 1,\n",
      "          'signals': 1,\n",
      "          'unofficial': 1,\n",
      "          'dreadful': 1,\n",
      "          'commencement': 1,\n",
      "          'potentially': 1,\n",
      "          'brighter': 1,\n",
      "          'fall': 1,\n",
      "          'batterycharging': 1,\n",
      "          'sit': 1,\n",
      "          'piece': 1,\n",
      "          'shit': 1,\n",
      "          'moseys': 1,\n",
      "          'multiplexes': 1,\n",
      "          'year': 1,\n",
      "          'oscar': 1,\n",
      "          'contenders': 1,\n",
      "          'read': 1,\n",
      "          'quality': 1,\n",
      "          'compete': 1,\n",
      "          'audiences': 1,\n",
      "          'nalas': 1,\n",
      "          'dubious': 1,\n",
      "          'distinction': 1,\n",
      "          'overpraised': 1,\n",
      "          'junk': 1,\n",
      "          'heap': 1,\n",
      "          'new': 1,\n",
      "          'also': 1,\n",
      "          'indie': 1,\n",
      "          'director': 1,\n",
      "          'neil': 1,\n",
      "          'im': 1,\n",
      "          'sad': 1,\n",
      "          'report': 1,\n",
      "          'resounding': 1,\n",
      "          'failure': 1,\n",
      "          'web': 1,\n",
      "          'site': 1,\n",
      "          'mess': 1,\n",
      "          'hopelessly': 1,\n",
      "          'saccharine': 1,\n",
      "          'accused': 1,\n",
      "          'previous': 1,\n",
      "          'unrelentingly': 1,\n",
      "          'masochistic': 1,\n",
      "          'went': 1,\n",
      "          'expecting': 1,\n",
      "          'decent': 1,\n",
      "          'gleefully': 1,\n",
      "          'praised': 1,\n",
      "          'winning': 1,\n",
      "          'award': 1,\n",
      "          'cannes': 1,\n",
      "          'exited': 1,\n",
      "          'shaking': 1,\n",
      "          'noggin': 1,\n",
      "          'bewilderment': 1,\n",
      "          'nare': 1,\n",
      "          'desperate': 1,\n",
      "          'unique': 1,\n",
      "          'theyre': 1,\n",
      "          'blind': 1,\n",
      "          'derivative': 1,\n",
      "          'particular': 1,\n",
      "          'brand': 1,\n",
      "          'uniqueness': 1,\n",
      "          'dolls': 1,\n",
      "          'nfor': 1,\n",
      "          'working': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'unsure': 1,\n",
      "          'handle': 1,\n",
      "          'hip': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'another': 1,\n",
      "          'featuring': 1,\n",
      "          'pair': 1,\n",
      "          'strangely': 1,\n",
      "          'bright': 1,\n",
      "          'articulate': 1,\n",
      "          'enchanting': 1,\n",
      "          'wizard': 1,\n",
      "          'oz': 1,\n",
      "          'several': 1,\n",
      "          'allusions': 1,\n",
      "          'heartwarming': 1,\n",
      "          'stick': 1,\n",
      "          'loveable': 1,\n",
      "          'misfit': 1,\n",
      "          'left': 1,\n",
      "          'cold': 1,\n",
      "          'calculated': 1,\n",
      "          'desperation': 1,\n",
      "          'hearted': 1,\n",
      "          'crowd': 1,\n",
      "          'pleaser': 1,\n",
      "          'heart': 1,\n",
      "          'concerns': 1,\n",
      "          'addict': 1,\n",
      "          'brilliantly': 1,\n",
      "          'played': 1,\n",
      "          'witnesses': 1,\n",
      "          'del': 1,\n",
      "          'aaron': 1,\n",
      "          'eckhart': 1,\n",
      "          'playing': 1,\n",
      "          'casually': 1,\n",
      "          'loutish': 1,\n",
      "          'richard': 1,\n",
      "          'benjamin': 1,\n",
      "          'diary': 1,\n",
      "          'mad': 1,\n",
      "          'housewife': 1,\n",
      "          'nshe': 1,\n",
      "          'beloved': 1,\n",
      "          'background': 1,\n",
      "          'somehow': 1,\n",
      "          'merges': 1,\n",
      "          'realities': 1,\n",
      "          'nshes': 1,\n",
      "          'blocked': 1,\n",
      "          'husbands': 1,\n",
      "          'thinks': 1,\n",
      "          'reason': 1,\n",
      "          'love': 1,\n",
      "          'sets': 1,\n",
      "          'road': 1,\n",
      "          'la': 1,\n",
      "          'drugs': 1,\n",
      "          'unknowingly': 1,\n",
      "          'stashed': 1,\n",
      "          'car': 1,\n",
      "          'trunk': 1,\n",
      "          'searching': 1,\n",
      "          'boyfriend': 1,\n",
      "          'dr': 1,\n",
      "          'david': 1,\n",
      "          'ravell': 1,\n",
      "          'bickering': 1,\n",
      "          'follow': 1,\n",
      "          'close': 1,\n",
      "          'pursuit': 1,\n",
      "          'birthed': 1,\n",
      "          'extraordinary': 1,\n",
      "          'company': 1,\n",
      "          'slipped': 1,\n",
      "          'sophomore': 1,\n",
      "          'effort': 1,\n",
      "          'friends': 1,\n",
      "          'neighbors': 1,\n",
      "          'fell': 1,\n",
      "          'straight': 1,\n",
      "          'ass': 1,\n",
      "          'bash': 1,\n",
      "          'penned': 1,\n",
      "          'recently': 1,\n",
      "          'aired': 1,\n",
      "          'showtime': 1,\n",
      "          'demonstrated': 1,\n",
      "          'forward': 1,\n",
      "          'movement': 1,\n",
      "          'artist': 1,\n",
      "          'persistence': 1,\n",
      "          'wallowing': 1,\n",
      "          'average': 1,\n",
      "          'usually': 1,\n",
      "          'realizing': 1,\n",
      "          'nin': 1,\n",
      "          'paul': 1,\n",
      "          'rudd': 1,\n",
      "          'obnoxious': 1,\n",
      "          'jock': 1,\n",
      "          'delivers': 1,\n",
      "          'monologue': 1,\n",
      "          'detailing': 1,\n",
      "          'followed': 1,\n",
      "          'gay': 1,\n",
      "          'bathroom': 1,\n",
      "          'beat': 1,\n",
      "          'clueless': 1,\n",
      "          'essentially': 1,\n",
      "          'regards': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sadistic': 1,\n",
      "          'behaviors': 1,\n",
      "          'along': 1,\n",
      "          'old': 1,\n",
      "          'maxim': 1,\n",
      "          'nanother': 1,\n",
      "          'schlubby': 1,\n",
      "          'businessman': 1,\n",
      "          'reacts': 1,\n",
      "          'loss': 1,\n",
      "          'actually': 1,\n",
      "          'nwhat': 1,\n",
      "          'powerful': 1,\n",
      "          'casual': 1,\n",
      "          'nonchalant': 1,\n",
      "          'cruelty': 1,\n",
      "          'selfishness': 1,\n",
      "          'often': 1,\n",
      "          'elements': 1,\n",
      "          'us': 1,\n",
      "          'amplified': 1,\n",
      "          'disgusting': 1,\n",
      "          'degree': 1,\n",
      "          'become': 1,\n",
      "          'borderline': 1,\n",
      "          'nobviously': 1,\n",
      "          'dose': 1,\n",
      "          'different': 1,\n",
      "          'kind': 1,\n",
      "          'pigeon': 1,\n",
      "          'holes': 1,\n",
      "          'isnt': 1,\n",
      "          'nhe': 1,\n",
      "          'clearly': 1,\n",
      "          'passion': 1,\n",
      "          'instead': 1,\n",
      "          'replacing': 1,\n",
      "          'mojo': 1,\n",
      "          'strained': 1,\n",
      "          'quirks': 1,\n",
      "          'huge': 1,\n",
      "          'fan': 1,\n",
      "          'joke': 1,\n",
      "          'gimmick': 1,\n",
      "          'zelllweger': 1,\n",
      "          'hadnt': 1,\n",
      "          'managed': 1,\n",
      "          'transcend': 1,\n",
      "          'tailor': 1,\n",
      "          'appeal': 1,\n",
      "          'widest': 1,\n",
      "          'possible': 1,\n",
      "          'audience': 1,\n",
      "          'nnearly': 1,\n",
      "          'scene': 1,\n",
      "          'fatally': 1,\n",
      "          'slows': 1,\n",
      "          'enact': 1,\n",
      "          'softboiled': 1,\n",
      "          'tarantinoesque': 1,\n",
      "          'dialogue': 1,\n",
      "          'nthey': 1,\n",
      "          'evince': 1,\n",
      "          'chemistry': 1,\n",
      "          'constantly': 1,\n",
      "          'rant': 1,\n",
      "          'mode': 1,\n",
      "          'acting': 1,\n",
      "          'angry': 1,\n",
      "          'thing': 1,\n",
      "          'occupation': 1,\n",
      "          'represented': 1,\n",
      "          'far': 1,\n",
      "          'frequently': 1,\n",
      "          'nowadays': 1,\n",
      "          'great': 1,\n",
      "          'yet': 1,\n",
      "          'hasnt': 1,\n",
      "          'able': 1,\n",
      "          'bring': 1,\n",
      "          'feral': 1,\n",
      "          'intelligence': 1,\n",
      "          'whenever': 1,\n",
      "          'acts': 1,\n",
      "          'damn': 1,\n",
      "          'show': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'considering': 1,\n",
      "          'irene': 1,\n",
      "          'gives': 1,\n",
      "          'revelatory': 1,\n",
      "          'building': 1,\n",
      "          'faced': 1,\n",
      "          'apple': 1,\n",
      "          'pie': 1,\n",
      "          'looks': 1,\n",
      "          'nthat': 1,\n",
      "          'wideopen': 1,\n",
      "          'face': 1,\n",
      "          'helium': 1,\n",
      "          'voiced': 1,\n",
      "          'earnestness': 1,\n",
      "          'suggests': 1,\n",
      "          'girl': 1,\n",
      "          'fully': 1,\n",
      "          'grown': 1,\n",
      "          'thirtyyearold': 1,\n",
      "          'body': 1,\n",
      "          'ever': 1,\n",
      "          'done': 1,\n",
      "          'nfreeman': 1,\n",
      "          'effective': 1,\n",
      "          'always': 1,\n",
      "          'nonetheless': 1,\n",
      "          'suffers': 1,\n",
      "          'odds': 1,\n",
      "          'wants': 1,\n",
      "          'actor': 1,\n",
      "          'plays': 1,\n",
      "          'role': 1,\n",
      "          'usual': 1,\n",
      "          'calm': 1,\n",
      "          'collected': 1,\n",
      "          'manner': 1,\n",
      "          'insinuate': 1,\n",
      "          'symbolic': 1,\n",
      "          'kinship': 1,\n",
      "          'suggesting': 1,\n",
      "          'controlled': 1,\n",
      "          'fantasies': 1,\n",
      "          'nthats': 1,\n",
      "          'anything': 1,\n",
      "          'crash': 1,\n",
      "          'land': 1,\n",
      "          'subtheme': 1,\n",
      "          'labored': 1,\n",
      "          'speech': 1,\n",
      "          'midst': 1,\n",
      "          'badly': 1,\n",
      "          'staged': 1,\n",
      "          'gun': 1,\n",
      "          'battle': 1,\n",
      "          'moments': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'involving': 1,\n",
      "          'especially': 1,\n",
      "          'confrontation': 1,\n",
      "          'almost': 1,\n",
      "          'soothing': 1,\n",
      "          'lyrical': 1,\n",
      "          'know': 1,\n",
      "          'trouble': 1,\n",
      "          'sticks': 1,\n",
      "          'nothing': 1,\n",
      "          'jells': 1,\n",
      "          'parts': 1,\n",
      "          'bad': 1,\n",
      "          'disparate': 1,\n",
      "          'opposing': 1,\n",
      "          'might': 1,\n",
      "          'worked': 1,\n",
      "          'settled': 1,\n",
      "          'type': 1,\n",
      "          'female': 1,\n",
      "          'forrest': 1,\n",
      "          'gump': 1,\n",
      "          'oddball': 1,\n",
      "          'art': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'diet': 1,\n",
      "          'coke': 1,\n",
      "          'nbettys': 1,\n",
      "          'mistake': 1,\n",
      "          'relying': 1,\n",
      "          'concurrence': 1,\n",
      "          'without': 1,\n",
      "          'wouldnt': 1,\n",
      "          'driven': 1,\n",
      "          'coincidence': 1,\n",
      "          'charter': 1,\n",
      "          'becomes': 1,\n",
      "          'order': 1,\n",
      "          'closer': 1,\n",
      "          'imaginary': 1,\n",
      "          'lover': 1,\n",
      "          'hospital': 1,\n",
      "          'exact': 1,\n",
      "          'moment': 1,\n",
      "          'drive': 1,\n",
      "          'shooting': 1,\n",
      "          'place': 1,\n",
      "          'miraculously': 1,\n",
      "          'knows': 1,\n",
      "          'care': 1,\n",
      "          'wound': 1,\n",
      "          'happened': 1,\n",
      "          'see': 1,\n",
      "          'leads': 1,\n",
      "          'room': 1,\n",
      "          'eventually': 1,\n",
      "          'gets': 1,\n",
      "          'party': 1,\n",
      "          'meets': 1,\n",
      "          'tidy': 1,\n",
      "          'dontcha': 1,\n",
      "          'theme': 1,\n",
      "          'aware': 1,\n",
      "          'state': 1,\n",
      "          'leaning': 1,\n",
      "          'towards': 1,\n",
      "          'enormous': 1,\n",
      "          'moderate': 1,\n",
      "          'brother': 1,\n",
      "          'nthis': 1,\n",
      "          'women': 1,\n",
      "          'deluded': 1,\n",
      "          'ironically': 1,\n",
      "          'reallife': 1,\n",
      "          'sean': 1,\n",
      "          'kennif': 1,\n",
      "          'taken': 1,\n",
      "          'doctor': 1,\n",
      "          'guiding': 1,\n",
      "          'light': 1,\n",
      "          'ninstead': 1,\n",
      "          'exploring': 1,\n",
      "          'timely': 1,\n",
      "          'relating': 1,\n",
      "          'craze': 1,\n",
      "          'largely': 1,\n",
      "          'appear': 1,\n",
      "          'satire': 1,\n",
      "          'albeit': 1,\n",
      "          'feel': 1,\n",
      "          'appropriate': 1,\n",
      "          '80s': 1,\n",
      "          '00s': 1,\n",
      "          'simply': 1,\n",
      "          'uses': 1,\n",
      "          'delusions': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'b': 1,\n",
      "          'unearthed': 1,\n",
      "          'except': 1,\n",
      "          'rest': 1,\n",
      "          'lot': 1,\n",
      "          'contemplation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'woo': 4,\n",
      "          'get': 3,\n",
      "          'davidson': 3,\n",
      "          'one': 3,\n",
      "          'good': 2,\n",
      "          'like': 2,\n",
      "          'bananas': 2,\n",
      "          'hours': 2,\n",
      "          'best': 2,\n",
      "          'films': 2,\n",
      "          'film': 2,\n",
      "          'things': 2,\n",
      "          'thugs': 2,\n",
      "          'doors': 2,\n",
      "          'ripoff': 1,\n",
      "          'movies': 1,\n",
      "          'woody': 1,\n",
      "          'allens': 1,\n",
      "          'martin': 1,\n",
      "          'scorseses': 1,\n",
      "          'nyoud': 1,\n",
      "          'think': 1,\n",
      "          'youd': 1,\n",
      "          'ninstead': 1,\n",
      "          'nfalling': 1,\n",
      "          'somewhere': 1,\n",
      "          'def': 1,\n",
      "          'jams': 1,\n",
      "          'player': 1,\n",
      "          'awful': 1,\n",
      "          'booty': 1,\n",
      "          'call': 1,\n",
      "          'ok': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'embarassing': 1,\n",
      "          'genre': 1,\n",
      "          'showing': 1,\n",
      "          'africanamericans': 1,\n",
      "          'nothing': 1,\n",
      "          'sexual': 1,\n",
      "          'buffoons': 1,\n",
      "          'nthe': 1,\n",
      "          'whole': 1,\n",
      "          'plays': 1,\n",
      "          'black': 1,\n",
      "          'version': 1,\n",
      "          'wild': 1,\n",
      "          'woman': 1,\n",
      "          'jada': 1,\n",
      "          'pinkett': 1,\n",
      "          'smith': 1,\n",
      "          'goes': 1,\n",
      "          'blind': 1,\n",
      "          'date': 1,\n",
      "          'straightlaced': 1,\n",
      "          'tim': 1,\n",
      "          'tommy': 1,\n",
      "          'nmayhem': 1,\n",
      "          'follows': 1,\n",
      "          'nfor': 1,\n",
      "          'unknown': 1,\n",
      "          'reason': 1,\n",
      "          'read': 1,\n",
      "          'contrived': 1,\n",
      "          'screenplay': 1,\n",
      "          'puts': 1,\n",
      "          'woos': 1,\n",
      "          'antics': 1,\n",
      "          'entire': 1,\n",
      "          'night': 1,\n",
      "          'include': 1,\n",
      "          'destroying': 1,\n",
      "          'bathroom': 1,\n",
      "          'mirror': 1,\n",
      "          'stealing': 1,\n",
      "          'house': 1,\n",
      "          'violently': 1,\n",
      "          'questioning': 1,\n",
      "          'accusing': 1,\n",
      "          'belittling': 1,\n",
      "          'actually': 1,\n",
      "          'previous': 1,\n",
      "          'girlfriends': 1,\n",
      "          'causing': 1,\n",
      "          'riot': 1,\n",
      "          'elegant': 1,\n",
      "          'restaurant': 1,\n",
      "          'various': 1,\n",
      "          'infuriating': 1,\n",
      "          'normal': 1,\n",
      "          'person': 1,\n",
      "          'wouldnt': 1,\n",
      "          'tolerate': 1,\n",
      "          'nbut': 1,\n",
      "          'sake': 1,\n",
      "          'bad': 1,\n",
      "          'movie': 1,\n",
      "          'nsure': 1,\n",
      "          'nthere': 1,\n",
      "          'chuckles': 1,\n",
      "          'scene': 1,\n",
      "          'swiped': 1,\n",
      "          'directly': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'running': 1,\n",
      "          'gets': 1,\n",
      "          'subway': 1,\n",
      "          'car': 1,\n",
      "          'closing': 1,\n",
      "          'starts': 1,\n",
      "          'taunt': 1,\n",
      "          'open': 1,\n",
      "          'back': 1,\n",
      "          'na': 1,\n",
      "          'joke': 1,\n",
      "          'stolen': 1,\n",
      "          'nanother': 1,\n",
      "          'chuckle': 1,\n",
      "          'provided': 1,\n",
      "          'billy': 1,\n",
      "          'dee': 1,\n",
      "          'williams': 1,\n",
      "          'cameo': 1,\n",
      "          'nmovies': 1,\n",
      "          'seemingly': 1,\n",
      "          'released': 1,\n",
      "          'every': 1,\n",
      "          'three': 1,\n",
      "          'months': 1,\n",
      "          'ever': 1,\n",
      "          'hit': 1,\n",
      "          'nwoo': 1,\n",
      "          'wont': 1,\n",
      "          'either': 1,\n",
      "          'nso': 1,\n",
      "          'made': 1,\n",
      "          'nand': 1,\n",
      "          'importantly': 1,\n",
      "          'isnt': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'besides': 1,\n",
      "          'thinks': 1,\n",
      "          'offensive': 1,\n",
      "          'neveryone': 1,\n",
      "          'involved': 1,\n",
      "          'really': 1,\n",
      "          'reconsider': 1,\n",
      "          'careers': 1,\n",
      "          'point': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'things': 10,\n",
      "          'nthe': 10,\n",
      "          'wild': 6,\n",
      "          'picture': 4,\n",
      "          'film': 4,\n",
      "          'one': 4,\n",
      "          'bacon': 4,\n",
      "          'nwild': 3,\n",
      "          'much': 3,\n",
      "          'thriller': 3,\n",
      "          'movie': 3,\n",
      "          'sex': 3,\n",
      "          'films': 3,\n",
      "          'less': 3,\n",
      "          'richards': 3,\n",
      "          'campbell': 3,\n",
      "          'kevin': 3,\n",
      "          'even': 3,\n",
      "          'hes': 3,\n",
      "          'way': 2,\n",
      "          'early': 2,\n",
      "          'frontal': 2,\n",
      "          'motion': 2,\n",
      "          'nthis': 2,\n",
      "          'movies': 2,\n",
      "          'wants': 2,\n",
      "          'viewers': 2,\n",
      "          'real': 2,\n",
      "          'story': 2,\n",
      "          'twists': 2,\n",
      "          'flash': 2,\n",
      "          'audience': 2,\n",
      "          'end': 2,\n",
      "          'stab': 2,\n",
      "          'right': 2,\n",
      "          'three': 2,\n",
      "          'good': 2,\n",
      "          'time': 2,\n",
      "          'cant': 2,\n",
      "          'russell': 2,\n",
      "          'denise': 2,\n",
      "          'neve': 2,\n",
      "          'keeps': 2,\n",
      "          'nbut': 2,\n",
      "          'character': 2,\n",
      "          'sam': 2,\n",
      "          'dillon': 2,\n",
      "          'none': 2,\n",
      "          'comes': 2,\n",
      "          'goes': 2,\n",
      "          'bill': 2,\n",
      "          'murray': 2,\n",
      "          'look': 2,\n",
      "          'nothing': 2,\n",
      "          'gets': 2,\n",
      "          'ending': 2,\n",
      "          'steam': 1,\n",
      "          'otherwise': 1,\n",
      "          'dreary': 1,\n",
      "          'spring': 1,\n",
      "          'day': 1,\n",
      "          'provided': 1,\n",
      "          'course': 1,\n",
      "          'youre': 1,\n",
      "          'victim': 1,\n",
      "          'lobotomy': 1,\n",
      "          'nthere': 1,\n",
      "          'fact': 1,\n",
      "          'doubt': 1,\n",
      "          'aimed': 1,\n",
      "          'moviegoers': 1,\n",
      "          'late': 1,\n",
      "          'teens': 1,\n",
      "          'twenties': 1,\n",
      "          'lucrative': 1,\n",
      "          'target': 1,\n",
      "          'group': 1,\n",
      "          'noir': 1,\n",
      "          'mtv': 1,\n",
      "          'generation': 1,\n",
      "          'fastpaced': 1,\n",
      "          'slick': 1,\n",
      "          'flashy': 1,\n",
      "          'gleefully': 1,\n",
      "          'mindless': 1,\n",
      "          'hollow': 1,\n",
      "          'core': 1,\n",
      "          'easily': 1,\n",
      "          'five': 1,\n",
      "          'dumbest': 1,\n",
      "          'arrive': 1,\n",
      "          'theaters': 1,\n",
      "          'first': 1,\n",
      "          'eleven': 1,\n",
      "          'weeks': 1,\n",
      "          '1998': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'convincing': 1,\n",
      "          'drama': 1,\n",
      "          'nearly': 1,\n",
      "          'bare': 1,\n",
      "          'flesh': 1,\n",
      "          'pinnacle': 1,\n",
      "          'narrative': 1,\n",
      "          'quality': 1,\n",
      "          'baywatch': 1,\n",
      "          'dupe': 1,\n",
      "          'thinking': 1,\n",
      "          'nwhat': 1,\n",
      "          'however': 1,\n",
      "          'series': 1,\n",
      "          'increasingly': 1,\n",
      "          'improbable': 1,\n",
      "          'shockingly': 1,\n",
      "          'predictable': 1,\n",
      "          'plot': 1,\n",
      "          'neverything': 1,\n",
      "          'serpentine': 1,\n",
      "          'moments': 1,\n",
      "          'filler': 1,\n",
      "          'breast': 1,\n",
      "          'spatter': 1,\n",
      "          'blood': 1,\n",
      "          'idiotic': 1,\n",
      "          'dialogue': 1,\n",
      "          'side': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'surprise': 1,\n",
      "          'easy': 1,\n",
      "          'guess': 1,\n",
      "          'take': 1,\n",
      "          'unlikely': 1,\n",
      "          'thing': 1,\n",
      "          'happen': 1,\n",
      "          'probably': 1,\n",
      "          'nusing': 1,\n",
      "          'approach': 1,\n",
      "          'times': 1,\n",
      "          'wrong': 1,\n",
      "          'nthats': 1,\n",
      "          'average': 1,\n",
      "          'production': 1,\n",
      "          'keep': 1,\n",
      "          'dark': 1,\n",
      "          'whats': 1,\n",
      "          'around': 1,\n",
      "          'next': 1,\n",
      "          'corner': 1,\n",
      "          'ad': 1,\n",
      "          'campaign': 1,\n",
      "          'uses': 1,\n",
      "          'two': 1,\n",
      "          'sell': 1,\n",
      "          'hot': 1,\n",
      "          'young': 1,\n",
      "          'cast': 1,\n",
      "          'old': 1,\n",
      "          'standby': 1,\n",
      "          'nboth': 1,\n",
      "          'abundance': 1,\n",
      "          'screen': 1,\n",
      "          'although': 1,\n",
      "          'ill': 1,\n",
      "          'admit': 1,\n",
      "          'erotic': 1,\n",
      "          'content': 1,\n",
      "          'somewhat': 1,\n",
      "          'impressive': 1,\n",
      "          'expected': 1,\n",
      "          'nnothing': 1,\n",
      "          'exceptionally': 1,\n",
      "          'risqu': 1,\n",
      "          'softcore': 1,\n",
      "          'sequences': 1,\n",
      "          'generic': 1,\n",
      "          'dont': 1,\n",
      "          'generate': 1,\n",
      "          'heat': 1,\n",
      "          'lesbian': 1,\n",
      "          'kisses': 1,\n",
      "          'hold': 1,\n",
      "          'candle': 1,\n",
      "          'bound': 1,\n",
      "          'ntheresa': 1,\n",
      "          'token': 1,\n",
      "          'topless': 1,\n",
      "          'appearances': 1,\n",
      "          'possessing': 1,\n",
      "          'ironclad': 1,\n",
      "          'nudity': 1,\n",
      "          'clause': 1,\n",
      "          'contract': 1,\n",
      "          'clothes': 1,\n",
      "          'greatest': 1,\n",
      "          'curiosity': 1,\n",
      "          'full': 1,\n",
      "          'shot': 1,\n",
      "          'climbing': 1,\n",
      "          'shower': 1,\n",
      "          'nmaybe': 1,\n",
      "          'girls': 1,\n",
      "          'skip': 1,\n",
      "          'seeing': 1,\n",
      "          'fullyclothed': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'thirteenth': 1,\n",
      "          'titanic': 1,\n",
      "          'catch': 1,\n",
      "          'glimpse': 1,\n",
      "          'kyra': 1,\n",
      "          'sedgwick': 1,\n",
      "          'mrs': 1,\n",
      "          'nkevin': 1,\n",
      "          'familiar': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'mcnaughton': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'effort': 1,\n",
      "          'finelytuned': 1,\n",
      "          'psychological': 1,\n",
      "          'normal': 1,\n",
      "          'life': 1,\n",
      "          'nthat': 1,\n",
      "          'featured': 1,\n",
      "          'copious': 1,\n",
      "          'pair': 1,\n",
      "          'characters': 1,\n",
      "          'powerful': 1,\n",
      "          'script': 1,\n",
      "          'nits': 1,\n",
      "          'difficult': 1,\n",
      "          'believe': 1,\n",
      "          'something': 1,\n",
      "          'shallow': 1,\n",
      "          'could': 1,\n",
      "          'come': 1,\n",
      "          'maker': 1,\n",
      "          'suppose': 1,\n",
      "          'need': 1,\n",
      "          'put': 1,\n",
      "          'food': 1,\n",
      "          'table': 1,\n",
      "          'nmcnaughton': 1,\n",
      "          'appears': 1,\n",
      "          'completely': 1,\n",
      "          'lost': 1,\n",
      "          'obviously': 1,\n",
      "          'mainstream': 1,\n",
      "          'success': 1,\n",
      "          'previous': 1,\n",
      "          'widerelease': 1,\n",
      "          'mad': 1,\n",
      "          'dog': 1,\n",
      "          'glory': 1,\n",
      "          'boxoffice': 1,\n",
      "          'disappointment': 1,\n",
      "          'nquick': 1,\n",
      "          'cuts': 1,\n",
      "          'pretty': 1,\n",
      "          'sunrises': 1,\n",
      "          'begin': 1,\n",
      "          'cover': 1,\n",
      "          'flaws': 1,\n",
      "          'main': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'lightly': 1,\n",
      "          'since': 1,\n",
      "          'shows': 1,\n",
      "          'occasional': 1,\n",
      "          'personality': 1,\n",
      "          'lombardo': 1,\n",
      "          'matt': 1,\n",
      "          'guidance': 1,\n",
      "          'counselor': 1,\n",
      "          'floridas': 1,\n",
      "          'blue': 1,\n",
      "          'bay': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'na': 1,\n",
      "          'student': 1,\n",
      "          'deliciously': 1,\n",
      "          'curvaceous': 1,\n",
      "          'kelly': 1,\n",
      "          'van': 1,\n",
      "          'ryan': 1,\n",
      "          'crush': 1,\n",
      "          'afternoon': 1,\n",
      "          'house': 1,\n",
      "          'wash': 1,\n",
      "          'car': 1,\n",
      "          'leaves': 1,\n",
      "          'clothing': 1,\n",
      "          'torn': 1,\n",
      "          'nafter': 1,\n",
      "          'confessing': 1,\n",
      "          'mother': 1,\n",
      "          'theresa': 1,\n",
      "          'raped': 1,\n",
      "          'police': 1,\n",
      "          'station': 1,\n",
      "          'tells': 1,\n",
      "          'detectives': 1,\n",
      "          'ray': 1,\n",
      "          'duquette': 1,\n",
      "          'gloria': 1,\n",
      "          'perez': 1,\n",
      "          'daphne': 1,\n",
      "          'rubinvega': 1,\n",
      "          'nthey': 1,\n",
      "          'skeptical': 1,\n",
      "          'claims': 1,\n",
      "          'another': 1,\n",
      "          'girl': 1,\n",
      "          'suzie': 1,\n",
      "          'toller': 1,\n",
      "          'forward': 1,\n",
      "          'similar': 1,\n",
      "          'tale': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'convinced': 1,\n",
      "          'set': 1,\n",
      "          'shyster': 1,\n",
      "          'lawyer': 1,\n",
      "          'help': 1,\n",
      "          'acting': 1,\n",
      "          'isnt': 1,\n",
      "          'principals': 1,\n",
      "          'work': 1,\n",
      "          'definitely': 1,\n",
      "          'based': 1,\n",
      "          'nnot': 1,\n",
      "          'ludicrous': 1,\n",
      "          'screenplay': 1,\n",
      "          'ignore': 1,\n",
      "          'possibility': 1,\n",
      "          'someone': 1,\n",
      "          'may': 1,\n",
      "          'tripledigit': 1,\n",
      "          'q': 1,\n",
      "          'doesnt': 1,\n",
      "          'bother': 1,\n",
      "          'give': 1,\n",
      "          'onscreen': 1,\n",
      "          'individuals': 1,\n",
      "          'hint': 1,\n",
      "          'depth': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'populating': 1,\n",
      "          'nice': 1,\n",
      "          'nmatt': 1,\n",
      "          'given': 1,\n",
      "          'plenty': 1,\n",
      "          'opportunities': 1,\n",
      "          'flex': 1,\n",
      "          'biceps': 1,\n",
      "          'nneve': 1,\n",
      "          'model': 1,\n",
      "          'slutty': 1,\n",
      "          'ndenise': 1,\n",
      "          'strikes': 1,\n",
      "          'fetching': 1,\n",
      "          'pose': 1,\n",
      "          'seethrough': 1,\n",
      "          'onepiece': 1,\n",
      "          'bathing': 1,\n",
      "          'suit': 1,\n",
      "          'nand': 1,\n",
      "          'rise': 1,\n",
      "          'whos': 1,\n",
      "          'remotely': 1,\n",
      "          'interesting': 1,\n",
      "          'seems': 1,\n",
      "          'think': 1,\n",
      "          'comedy': 1,\n",
      "          'maybe': 1,\n",
      "          'got': 1,\n",
      "          'idea': 1,\n",
      "          'ncolumbia': 1,\n",
      "          'pictures': 1,\n",
      "          'specifically': 1,\n",
      "          'requested': 1,\n",
      "          'critics': 1,\n",
      "          'reveal': 1,\n",
      "          'prompts': 1,\n",
      "          'question': 1,\n",
      "          'want': 1,\n",
      "          'kept': 1,\n",
      "          'secret': 1,\n",
      "          'occurs': 1,\n",
      "          'credits': 1,\n",
      "          'stay': 1,\n",
      "          'seated': 1,\n",
      "          'jawdroppingly': 1,\n",
      "          'absurd': 1,\n",
      "          'feat': 1,\n",
      "          'joe': 1,\n",
      "          'eszterhas': 1,\n",
      "          'writer': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'showgirls': 1,\n",
      "          'would': 1,\n",
      "          'impressed': 1,\n",
      "          'nthanks': 1,\n",
      "          'jeffrey': 1,\n",
      "          'kimballs': 1,\n",
      "          'polished': 1,\n",
      "          'kinetic': 1,\n",
      "          'cinematography': 1,\n",
      "          'always': 1,\n",
      "          'looks': 1,\n",
      "          'great': 1,\n",
      "          'george': 1,\n",
      "          'clintons': 1,\n",
      "          'score': 1,\n",
      "          'pulsing': 1,\n",
      "          'throbbing': 1,\n",
      "          'matter': 1,\n",
      "          'shiny': 1,\n",
      "          'superficial': 1,\n",
      "          'sheen': 1,\n",
      "          'still': 1,\n",
      "          'trash': 1,\n",
      "          'like': 1,\n",
      "          'garbage': 1,\n",
      "          'stinks': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'metro': 18,\n",
      "          'film': 10,\n",
      "          'action': 8,\n",
      "          'roper': 8,\n",
      "          'nit': 6,\n",
      "          'murphy': 6,\n",
      "          'villain': 6,\n",
      "          'like': 5,\n",
      "          'good': 5,\n",
      "          'n': 5,\n",
      "          'nthe': 5,\n",
      "          'films': 4,\n",
      "          'one': 4,\n",
      "          'little': 4,\n",
      "          'nand': 4,\n",
      "          'hostage': 4,\n",
      "          'would': 4,\n",
      "          'actor': 4,\n",
      "          'role': 4,\n",
      "          'works': 4,\n",
      "          'nice': 3,\n",
      "          'neddie': 3,\n",
      "          'lot': 3,\n",
      "          'cop': 3,\n",
      "          'takes': 3,\n",
      "          'seriously': 3,\n",
      "          'eddie': 3,\n",
      "          'plays': 3,\n",
      "          'scene': 3,\n",
      "          'michael': 3,\n",
      "          'ncars': 3,\n",
      "          'scenes': 3,\n",
      "          'partner': 3,\n",
      "          'ones': 3,\n",
      "          'overplay': 3,\n",
      "          'thoughts': 2,\n",
      "          'nbut': 2,\n",
      "          'best': 2,\n",
      "          'suspense': 2,\n",
      "          'comedy': 2,\n",
      "          'better': 2,\n",
      "          'beverly': 2,\n",
      "          'hills': 2,\n",
      "          'roles': 2,\n",
      "          'movies': 2,\n",
      "          'nin': 2,\n",
      "          'negotiator': 2,\n",
      "          'negotiation': 2,\n",
      "          'way': 2,\n",
      "          'nhis': 2,\n",
      "          'hardly': 2,\n",
      "          'quite': 2,\n",
      "          'nmurphy': 2,\n",
      "          'san': 2,\n",
      "          'francisco': 2,\n",
      "          'korda': 2,\n",
      "          'great': 2,\n",
      "          'reminded': 2,\n",
      "          'go': 2,\n",
      "          'nthere': 2,\n",
      "          'also': 2,\n",
      "          'new': 2,\n",
      "          'maturing': 2,\n",
      "          'genius': 2,\n",
      "          'see': 2,\n",
      "          'dimwit': 2,\n",
      "          'really': 2,\n",
      "          'ni': 2,\n",
      "          'wincott': 2,\n",
      "          'take': 2,\n",
      "          'movie': 2,\n",
      "          'still': 2,\n",
      "          'keeps': 1,\n",
      "          'involved': 1,\n",
      "          'nsome': 1,\n",
      "          'sequences': 1,\n",
      "          'conventional': 1,\n",
      "          'attention': 1,\n",
      "          'detracted': 1,\n",
      "          'diverted': 1,\n",
      "          'ghost': 1,\n",
      "          'darkness': 1,\n",
      "          'opened': 1,\n",
      "          'months': 1,\n",
      "          'ago': 1,\n",
      "          'bland': 1,\n",
      "          'uninvolving': 1,\n",
      "          'invited': 1,\n",
      "          'divert': 1,\n",
      "          'nearly': 1,\n",
      "          'put': 1,\n",
      "          'asleep': 1,\n",
      "          'hip': 1,\n",
      "          'sharp': 1,\n",
      "          'nifty': 1,\n",
      "          'pieces': 1,\n",
      "          'bad': 1,\n",
      "          'shape': 1,\n",
      "          'invites': 1,\n",
      "          'mention': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'nutty': 1,\n",
      "          'professor': 1,\n",
      "          'blessed': 1,\n",
      "          'revival': 1,\n",
      "          'back': 1,\n",
      "          'position': 1,\n",
      "          'used': 1,\n",
      "          'happens': 1,\n",
      "          'series': 1,\n",
      "          'nthat': 1,\n",
      "          'prevent': 1,\n",
      "          'fun': 1,\n",
      "          'responsible': 1,\n",
      "          'controlled': 1,\n",
      "          'people': 1,\n",
      "          'featured': 1,\n",
      "          'reckless': 1,\n",
      "          'wild': 1,\n",
      "          'always': 1,\n",
      "          'crossing': 1,\n",
      "          'line': 1,\n",
      "          'inch': 1,\n",
      "          'job': 1,\n",
      "          'hobby': 1,\n",
      "          'preferred': 1,\n",
      "          'trouble': 1,\n",
      "          'character': 1,\n",
      "          'mischievous': 1,\n",
      "          'trademark': 1,\n",
      "          'grin': 1,\n",
      "          'anywhere': 1,\n",
      "          'found': 1,\n",
      "          'perhaps': 1,\n",
      "          'scott': 1,\n",
      "          'previously': 1,\n",
      "          'mentioned': 1,\n",
      "          'first': 1,\n",
      "          'tense': 1,\n",
      "          'situation': 1,\n",
      "          'introduced': 1,\n",
      "          'kind': 1,\n",
      "          'work': 1,\n",
      "          'tries': 1,\n",
      "          'calm': 1,\n",
      "          'confused': 1,\n",
      "          'unkempt': 1,\n",
      "          'young': 1,\n",
      "          'criminal': 1,\n",
      "          'taken': 1,\n",
      "          'captive': 1,\n",
      "          'entire': 1,\n",
      "          'capacity': 1,\n",
      "          'bank': 1,\n",
      "          'holding': 1,\n",
      "          'handles': 1,\n",
      "          'without': 1,\n",
      "          'usual': 1,\n",
      "          'happygolucky': 1,\n",
      "          'misfit': 1,\n",
      "          'humor': 1,\n",
      "          'develops': 1,\n",
      "          'established': 1,\n",
      "          'beguiling': 1,\n",
      "          'jewel': 1,\n",
      "          'thief': 1,\n",
      "          'murderer': 1,\n",
      "          'likes': 1,\n",
      "          'let': 1,\n",
      "          'cops': 1,\n",
      "          'know': 1,\n",
      "          'fatalities': 1,\n",
      "          'giving': 1,\n",
      "          'ear': 1,\n",
      "          'victim': 1,\n",
      "          'different': 1,\n",
      "          'twists': 1,\n",
      "          'slight': 1,\n",
      "          'turns': 1,\n",
      "          'virtuoso': 1,\n",
      "          'chase': 1,\n",
      "          'involving': 1,\n",
      "          'cable': 1,\n",
      "          'car': 1,\n",
      "          'flip': 1,\n",
      "          'crash': 1,\n",
      "          'turn': 1,\n",
      "          'done': 1,\n",
      "          'speed': 1,\n",
      "          'speeding': 1,\n",
      "          'bus': 1,\n",
      "          'fifty': 1,\n",
      "          'mile': 1,\n",
      "          'per': 1,\n",
      "          'hour': 1,\n",
      "          'significant': 1,\n",
      "          'reasons': 1,\n",
      "          'rather': 1,\n",
      "          'choose': 1,\n",
      "          'nscenes': 1,\n",
      "          'horse': 1,\n",
      "          'track': 1,\n",
      "          'gambler': 1,\n",
      "          'knows': 1,\n",
      "          'tricks': 1,\n",
      "          'teaches': 1,\n",
      "          'methods': 1,\n",
      "          'betting': 1,\n",
      "          'winning': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'writers': 1,\n",
      "          'tried': 1,\n",
      "          'disguise': 1,\n",
      "          'insignificant': 1,\n",
      "          'draw': 1,\n",
      "          'parallels': 1,\n",
      "          'gambling': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nthose': 1,\n",
      "          'make': 1,\n",
      "          'mainly': 1,\n",
      "          'personality': 1,\n",
      "          'enjoyed': 1,\n",
      "          'seeing': 1,\n",
      "          'rapaport': 1,\n",
      "          'lipreading': 1,\n",
      "          'bookskimming': 1,\n",
      "          'master': 1,\n",
      "          'observation': 1,\n",
      "          'presence': 1,\n",
      "          'pleased': 1,\n",
      "          'much': 1,\n",
      "          'cast': 1,\n",
      "          'proclaimed': 1,\n",
      "          'nrapaport': 1,\n",
      "          'usually': 1,\n",
      "          'dopey': 1,\n",
      "          'recognized': 1,\n",
      "          'joy': 1,\n",
      "          'able': 1,\n",
      "          'feel': 1,\n",
      "          'respect': 1,\n",
      "          'two': 1,\n",
      "          'main': 1,\n",
      "          'types': 1,\n",
      "          'villains': 1,\n",
      "          'part': 1,\n",
      "          'story': 1,\n",
      "          'devices': 1,\n",
      "          'device': 1,\n",
      "          'darn': 1,\n",
      "          'nonetheless': 1,\n",
      "          'nhe': 1,\n",
      "          'played': 1,\n",
      "          'whose': 1,\n",
      "          'voice': 1,\n",
      "          'pushed': 1,\n",
      "          'abraded': 1,\n",
      "          'rasp': 1,\n",
      "          'smokes': 1,\n",
      "          'cigarette': 1,\n",
      "          'every': 1,\n",
      "          'nwincott': 1,\n",
      "          'makes': 1,\n",
      "          'mean': 1,\n",
      "          'could': 1,\n",
      "          'classic': 1,\n",
      "          'type': 1,\n",
      "          'push': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'flight': 1,\n",
      "          'stairs': 1,\n",
      "          'kicks': 1,\n",
      "          'richard': 1,\n",
      "          'widmark': 1,\n",
      "          'kiss': 1,\n",
      "          'death': 1,\n",
      "          'addition': 1,\n",
      "          'physical': 1,\n",
      "          'appearance': 1,\n",
      "          'mannerisms': 1,\n",
      "          'actually': 1,\n",
      "          'arrogant': 1,\n",
      "          'friend': 1,\n",
      "          'use': 1,\n",
      "          'longer': 1,\n",
      "          'list': 1,\n",
      "          'liked': 1,\n",
      "          'think': 1,\n",
      "          'worked': 1,\n",
      "          'past': 1,\n",
      "          'precursor': 1,\n",
      "          'later': 1,\n",
      "          'place': 1,\n",
      "          'possibly': 1,\n",
      "          'growing': 1,\n",
      "          'person': 1,\n",
      "          'family': 1,\n",
      "          'nononsense': 1,\n",
      "          'buddy': 1,\n",
      "          'dry': 1,\n",
      "          'tendency': 1,\n",
      "          'occasionally': 1,\n",
      "          'allout': 1,\n",
      "          'cares': 1,\n",
      "          'remains': 1,\n",
      "          'serious': 1,\n",
      "          'overdo': 1,\n",
      "          'noh': 1,\n",
      "          'plenty': 1,\n",
      "          'explosions': 1,\n",
      "          'well': 1,\n",
      "          'nhow': 1,\n",
      "          'filmmakers': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'nif': 1,\n",
      "          'major': 1,\n",
      "          'objection': 1,\n",
      "          'length': 1,\n",
      "          'area': 1,\n",
      "          'seem': 1,\n",
      "          'wear': 1,\n",
      "          'welcomes': 1,\n",
      "          'lasted': 1,\n",
      "          'long': 1,\n",
      "          'entertaining': 1,\n",
      "          'gave': 1,\n",
      "          'something': 1,\n",
      "          'waited': 1,\n",
      "          'end': 1,\n",
      "          'npaul': 1,\n",
      "          'haynes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'nits': 4,\n",
      "          'something': 3,\n",
      "          'stupid': 3,\n",
      "          'plot': 3,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'many': 2,\n",
      "          'ways': 2,\n",
      "          'one': 2,\n",
      "          'supposed': 2,\n",
      "          'thriller': 2,\n",
      "          'dead': 2,\n",
      "          'work': 2,\n",
      "          'threads': 2,\n",
      "          'problem': 2,\n",
      "          'clue': 2,\n",
      "          'care': 2,\n",
      "          'character': 2,\n",
      "          'anyone': 2,\n",
      "          'know': 2,\n",
      "          'way': 2,\n",
      "          'kind': 2,\n",
      "          'capsule': 1,\n",
      "          'dumb': 1,\n",
      "          'dud': 1,\n",
      "          'entry': 1,\n",
      "          'body': 1,\n",
      "          'heat': 1,\n",
      "          'sweepstakes': 1,\n",
      "          'landmark': 1,\n",
      "          'spawned': 1,\n",
      "          'jillion': 1,\n",
      "          'clones': 1,\n",
      "          'nbasic': 1,\n",
      "          'instincts': 1,\n",
      "          'worst': 1,\n",
      "          'crime': 1,\n",
      "          'bad': 1,\n",
      "          'incompetent': 1,\n",
      "          'well': 1,\n",
      "          'think': 1,\n",
      "          'audience': 1,\n",
      "          'feet': 1,\n",
      "          'ultimately': 1,\n",
      "          'arbitrary': 1,\n",
      "          'put': 1,\n",
      "          'jerk': 1,\n",
      "          'us': 1,\n",
      "          'around': 1,\n",
      "          'also': 1,\n",
      "          'sexy': 1,\n",
      "          'instead': 1,\n",
      "          'got': 1,\n",
      "          'unpleasant': 1,\n",
      "          'rawness': 1,\n",
      "          'teenager': 1,\n",
      "          'showing': 1,\n",
      "          'younger': 1,\n",
      "          'kids': 1,\n",
      "          'collections': 1,\n",
      "          'dirty': 1,\n",
      "          'pictures': 1,\n",
      "          'ripoff': 1,\n",
      "          'story': 1,\n",
      "          'opens': 1,\n",
      "          'rock': 1,\n",
      "          'star': 1,\n",
      "          'murdered': 1,\n",
      "          'throes': 1,\n",
      "          'orgasm': 1,\n",
      "          'biggest': 1,\n",
      "          'suspect': 1,\n",
      "          'authoress': 1,\n",
      "          'catherine': 1,\n",
      "          'tramell': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'wrote': 1,\n",
      "          'novel': 1,\n",
      "          'murder': 1,\n",
      "          'eerily': 1,\n",
      "          'presaged': 1,\n",
      "          'maybe': 1,\n",
      "          'copycat': 1,\n",
      "          'nthese': 1,\n",
      "          'get': 1,\n",
      "          'fed': 1,\n",
      "          'detective': 1,\n",
      "          'whos': 1,\n",
      "          'case': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'problems': 1,\n",
      "          'nlike': 1,\n",
      "          'wonder': 1,\n",
      "          'elevator': 1,\n",
      "          'goes': 1,\n",
      "          'top': 1,\n",
      "          'floor': 1,\n",
      "          'nwe': 1,\n",
      "          'measure': 1,\n",
      "          'stopwatch': 1,\n",
      "          'time': 1,\n",
      "          'setting': 1,\n",
      "          'eyes': 1,\n",
      "          'moment': 1,\n",
      "          'mattress': 1,\n",
      "          'dance': 1,\n",
      "          'njoe': 1,\n",
      "          'eszterhas': 1,\n",
      "          'written': 1,\n",
      "          'screenplay': 1,\n",
      "          'uses': 1,\n",
      "          'device': 1,\n",
      "          'used': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'jagged': 1,\n",
      "          'edge': 1,\n",
      "          'killers': 1,\n",
      "          'identity': 1,\n",
      "          'kept': 1,\n",
      "          'secret': 1,\n",
      "          'movies': 1,\n",
      "          'final': 1,\n",
      "          'shot': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'point': 1,\n",
      "          'weve': 1,\n",
      "          'given': 1,\n",
      "          'nothing': 1,\n",
      "          'nevery': 1,\n",
      "          'every': 1,\n",
      "          'ambiguous': 1,\n",
      "          'whole': 1,\n",
      "          'aspect': 1,\n",
      "          'shill': 1,\n",
      "          'nred': 1,\n",
      "          'herrings': 1,\n",
      "          'violence': 1,\n",
      "          'kinky': 1,\n",
      "          'sexuality': 1,\n",
      "          'litter': 1,\n",
      "          'potholes': 1,\n",
      "          'manhattan': 1,\n",
      "          'streets': 1,\n",
      "          'nthey': 1,\n",
      "          'add': 1,\n",
      "          'zip': 1,\n",
      "          'theyre': 1,\n",
      "          'happening': 1,\n",
      "          'people': 1,\n",
      "          'ndouglass': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'bitter': 1,\n",
      "          'thats': 1,\n",
      "          'stones': 1,\n",
      "          'ironon': 1,\n",
      "          'smile': 1,\n",
      "          'never': 1,\n",
      "          'changes': 1,\n",
      "          'rest': 1,\n",
      "          'forgettable': 1,\n",
      "          'nwhen': 1,\n",
      "          'dont': 1,\n",
      "          'even': 1,\n",
      "          'luxury': 1,\n",
      "          'giving': 1,\n",
      "          'damn': 1,\n",
      "          'cares': 1,\n",
      "          'happens': 1,\n",
      "          'nespecially': 1,\n",
      "          'ending': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'inexplicable': 1,\n",
      "          'n': 1,\n",
      "          'friend': 1,\n",
      "          'mine': 1,\n",
      "          'came': 1,\n",
      "          'rule': 1,\n",
      "          'thumb': 1,\n",
      "          'characters': 1,\n",
      "          'behaves': 1,\n",
      "          'would': 1,\n",
      "          'leave': 1,\n",
      "          'none': 1,\n",
      "          'nastier': 1,\n",
      "          'things': 1,\n",
      "          'treats': 1,\n",
      "          'lesbianism': 1,\n",
      "          'integral': 1,\n",
      "          'part': 1,\n",
      "          'someones': 1,\n",
      "          'life': 1,\n",
      "          'kink': 1,\n",
      "          'thrill': 1,\n",
      "          'men': 1,\n",
      "          'ni': 1,\n",
      "          'despair': 1,\n",
      "          'whenever': 1,\n",
      "          'encounter': 1,\n",
      "          'stupidity': 1,\n",
      "          'mainstream': 1,\n",
      "          'entertainment': 1,\n",
      "          'still': 1,\n",
      "          'culturally': 1,\n",
      "          'neanderthal': 1,\n",
      "          'include': 1,\n",
      "          'bigbudget': 1,\n",
      "          'hollywood': 1,\n",
      "          'film': 1,\n",
      "          'hefnerism': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gal': 8,\n",
      "          'old': 7,\n",
      "          'plot': 7,\n",
      "          'nthe': 6,\n",
      "          '4': 5,\n",
      "          'beast': 5,\n",
      "          'film': 5,\n",
      "          'crime': 5,\n",
      "          'london': 4,\n",
      "          'kingsley': 4,\n",
      "          'sexy': 4,\n",
      "          'would': 4,\n",
      "          'respectability': 4,\n",
      "          'gangster': 3,\n",
      "          'one': 3,\n",
      "          'ben': 3,\n",
      "          '0': 3,\n",
      "          'comes': 3,\n",
      "          'nin': 3,\n",
      "          'done': 3,\n",
      "          'pool': 3,\n",
      "          'familiar': 3,\n",
      "          'cockney': 2,\n",
      "          'retired': 2,\n",
      "          'spain': 2,\n",
      "          'nhis': 2,\n",
      "          'job': 2,\n",
      "          'vicious': 2,\n",
      "          'give': 2,\n",
      "          'performance': 2,\n",
      "          'westerns': 2,\n",
      "          'guessed': 2,\n",
      "          'played': 2,\n",
      "          'seen': 2,\n",
      "          'time': 2,\n",
      "          'know': 2,\n",
      "          'even': 2,\n",
      "          'roles': 2,\n",
      "          'make': 2,\n",
      "          'villa': 2,\n",
      "          'nbut': 2,\n",
      "          'first': 2,\n",
      "          'punch': 2,\n",
      "          'gang': 2,\n",
      "          'bank': 2,\n",
      "          'wants': 2,\n",
      "          'sends': 2,\n",
      "          'rabid': 2,\n",
      "          'makes': 2,\n",
      "          'yes': 2,\n",
      "          'including': 2,\n",
      "          'see': 2,\n",
      "          'could': 2,\n",
      "          'vault': 2,\n",
      "          'water': 2,\n",
      "          'story': 2,\n",
      "          'overly': 2,\n",
      "          'ni': 2,\n",
      "          'type': 2,\n",
      "          'nit': 2,\n",
      "          'western': 2,\n",
      "          'british': 2,\n",
      "          'new': 2,\n",
      "          'least': 2,\n",
      "          'style': 2,\n",
      "          'nwe': 2,\n",
      "          'side': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          '50sish': 1,\n",
      "          'associates': 1,\n",
      "          'want': 1,\n",
      "          'last': 1,\n",
      "          'send': 1,\n",
      "          'offer': 1,\n",
      "          'cant': 1,\n",
      "          'refuse': 1,\n",
      "          'na': 1,\n",
      "          'standout': 1,\n",
      "          'save': 1,\n",
      "          'essentially': 1,\n",
      "          'set': 1,\n",
      "          'cliches': 1,\n",
      "          'recycled': 1,\n",
      "          'n': 1,\n",
      "          'nroger': 1,\n",
      "          'ebert': 1,\n",
      "          'asks': 1,\n",
      "          'review': 1,\n",
      "          'savage': 1,\n",
      "          'maddog': 1,\n",
      "          'frothing': 1,\n",
      "          'recent': 1,\n",
      "          'movies': 1,\n",
      "          'nben': 1,\n",
      "          'nmy': 1,\n",
      "          'response': 1,\n",
      "          'anyone': 1,\n",
      "          'alan': 1,\n",
      "          'arkin': 1,\n",
      "          'wait': 1,\n",
      "          'dark': 1,\n",
      "          'henry': 1,\n",
      "          'fonda': 1,\n",
      "          'upon': 1,\n",
      "          'west': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'nthey': 1,\n",
      "          'way': 1,\n",
      "          'create': 1,\n",
      "          'really': 1,\n",
      "          'creepy': 1,\n",
      "          'sociopath': 1,\n",
      "          'cast': 1,\n",
      "          'someone': 1,\n",
      "          'generally': 1,\n",
      "          'plays': 1,\n",
      "          'mild': 1,\n",
      "          'sympathetic': 1,\n",
      "          'ineffectual': 1,\n",
      "          'character': 1,\n",
      "          'characteristics': 1,\n",
      "          'actor': 1,\n",
      "          'seem': 1,\n",
      "          'gentle': 1,\n",
      "          'work': 1,\n",
      "          'favor': 1,\n",
      "          'role': 1,\n",
      "          'calls': 1,\n",
      "          'fierce': 1,\n",
      "          'nthat': 1,\n",
      "          'principle': 1,\n",
      "          'works': 1,\n",
      "          'ngary': 1,\n",
      "          'dove': 1,\n",
      "          'ray': 1,\n",
      "          'winstone': 1,\n",
      "          'career': 1,\n",
      "          'living': 1,\n",
      "          'luxurious': 1,\n",
      "          'nlife': 1,\n",
      "          'become': 1,\n",
      "          'routine': 1,\n",
      "          'sunning': 1,\n",
      "          'relaxing': 1,\n",
      "          'paradise': 1,\n",
      "          'shattered': 1,\n",
      "          'onetwopunch': 1,\n",
      "          'boulder': 1,\n",
      "          'rolling': 1,\n",
      "          'hill': 1,\n",
      "          'next': 1,\n",
      "          'second': 1,\n",
      "          'gals': 1,\n",
      "          'past': 1,\n",
      "          'nback': 1,\n",
      "          'boss': 1,\n",
      "          'teddy': 1,\n",
      "          'bass': 1,\n",
      "          'ian': 1,\n",
      "          'mcshane': 1,\n",
      "          'tvs': 1,\n",
      "          'lovejoy': 1,\n",
      "          'planning': 1,\n",
      "          'break': 1,\n",
      "          'safety': 1,\n",
      "          'deposit': 1,\n",
      "          'room': 1,\n",
      "          'nhe': 1,\n",
      "          'henchman': 1,\n",
      "          'logan': 1,\n",
      "          'fetch': 1,\n",
      "          'ndon': 1,\n",
      "          'accept': 1,\n",
      "          'decision': 1,\n",
      "          'certainly': 1,\n",
      "          'nhowever': 1,\n",
      "          'says': 1,\n",
      "          'whatever': 1,\n",
      "          'takes': 1,\n",
      "          'turn': 1,\n",
      "          'threatening': 1,\n",
      "          'guys': 1,\n",
      "          'exporn': 1,\n",
      "          'star': 1,\n",
      "          'wife': 1,\n",
      "          'deedee': 1,\n",
      "          'amanda': 1,\n",
      "          'redman': 1,\n",
      "          'meantime': 1,\n",
      "          'knows': 1,\n",
      "          'get': 1,\n",
      "          'everybodys': 1,\n",
      "          'skin': 1,\n",
      "          'nkingsley': 1,\n",
      "          'compact': 1,\n",
      "          'package': 1,\n",
      "          'fury': 1,\n",
      "          'nastiness': 1,\n",
      "          'nthere': 1,\n",
      "          'serious': 1,\n",
      "          'problems': 1,\n",
      "          'louis': 1,\n",
      "          'melliss': 1,\n",
      "          'david': 1,\n",
      "          'scintos': 1,\n",
      "          'script': 1,\n",
      "          'caught': 1,\n",
      "          'filming': 1,\n",
      "          'nwhen': 1,\n",
      "          'actual': 1,\n",
      "          'idea': 1,\n",
      "          'important': 1,\n",
      "          'success': 1,\n",
      "          'nbeyond': 1,\n",
      "          'ability': 1,\n",
      "          'use': 1,\n",
      "          'skindiving': 1,\n",
      "          'gear': 1,\n",
      "          'special': 1,\n",
      "          'talents': 1,\n",
      "          'required': 1,\n",
      "          'nany': 1,\n",
      "          'local': 1,\n",
      "          'hood': 1,\n",
      "          'needed': 1,\n",
      "          'nadditionally': 1,\n",
      "          'involves': 1,\n",
      "          'digging': 1,\n",
      "          'swimming': 1,\n",
      "          'flooding': 1,\n",
      "          'nno': 1,\n",
      "          'let': 1,\n",
      "          'avoided': 1,\n",
      "          'complication': 1,\n",
      "          'altogether': 1,\n",
      "          'far': 1,\n",
      "          'much': 1,\n",
      "          'accounted': 1,\n",
      "          'spite': 1,\n",
      "          'provocative': 1,\n",
      "          'title': 1,\n",
      "          'cliched': 1,\n",
      "          'elements': 1,\n",
      "          'like': 1,\n",
      "          'law': 1,\n",
      "          'jake': 1,\n",
      "          'wade': 1,\n",
      "          'usually': 1,\n",
      "          'reformed': 1,\n",
      "          'outlaw': 1,\n",
      "          'robert': 1,\n",
      "          'taylor': 1,\n",
      "          'hung': 1,\n",
      "          'guns': 1,\n",
      "          'trying': 1,\n",
      "          'life': 1,\n",
      "          'peaceful': 1,\n",
      "          'however': 1,\n",
      "          'buddy': 1,\n",
      "          'richard': 1,\n",
      "          'widmark': 1,\n",
      "          'go': 1,\n",
      "          'git': 1,\n",
      "          'im': 1,\n",
      "          'great': 1,\n",
      "          'twists': 1,\n",
      "          'gray': 1,\n",
      "          'beards': 1,\n",
      "          'nperhaps': 1,\n",
      "          'little': 1,\n",
      "          'made': 1,\n",
      "          'stylish': 1,\n",
      "          'dressed': 1,\n",
      "          'look': 1,\n",
      "          'nif': 1,\n",
      "          'creative': 1,\n",
      "          'nthis': 1,\n",
      "          'director': 1,\n",
      "          'jonathan': 1,\n",
      "          'glazers': 1,\n",
      "          'reputedly': 1,\n",
      "          'notable': 1,\n",
      "          'tv': 1,\n",
      "          'ads': 1,\n",
      "          'guinness': 1,\n",
      "          'stout': 1,\n",
      "          'unexpected': 1,\n",
      "          'touches': 1,\n",
      "          'odd': 1,\n",
      "          'dream': 1,\n",
      "          'sequences': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'ivan': 1,\n",
      "          'bird': 1,\n",
      "          'uses': 1,\n",
      "          'lot': 1,\n",
      "          'half': 1,\n",
      "          'lit': 1,\n",
      "          'scenes': 1,\n",
      "          'persons': 1,\n",
      "          'faces': 1,\n",
      "          'fades': 1,\n",
      "          'darkness': 1,\n",
      "          'sort': 1,\n",
      "          'metaphor': 1,\n",
      "          'halfworld': 1,\n",
      "          'characters': 1,\n",
      "          'inhabit': 1,\n",
      "          'nhalf': 1,\n",
      "          'everything': 1,\n",
      "          'happening': 1,\n",
      "          'also': 1,\n",
      "          'kept': 1,\n",
      "          'hidden': 1,\n",
      "          'yanks': 1,\n",
      "          'hard': 1,\n",
      "          'dialog': 1,\n",
      "          'nat': 1,\n",
      "          'theater': 1,\n",
      "          'difficult': 1,\n",
      "          'words': 1,\n",
      "          'quiet': 1,\n",
      "          'speaking': 1,\n",
      "          'heavy': 1,\n",
      "          'accents': 1,\n",
      "          'language': 1,\n",
      "          'nsexy': 1,\n",
      "          'minor': 1,\n",
      "          'lent': 1,\n",
      "          'us': 1,\n",
      "          'still': 1,\n",
      "          'somewhat': 1,\n",
      "          'novel': 1,\n",
      "          'genre': 1,\n",
      "          'may': 1,\n",
      "          'films': 1,\n",
      "          'nfurther': 1,\n",
      "          'kingsleys': 1,\n",
      "          'highpowered': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'football': 7,\n",
      "          'evil': 6,\n",
      "          'high': 4,\n",
      "          'school': 4,\n",
      "          'though': 4,\n",
      "          'little': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'quarterback': 3,\n",
      "          'coach': 3,\n",
      "          'blues': 3,\n",
      "          'life': 3,\n",
      "          'ni': 3,\n",
      "          'moxxon': 2,\n",
      "          'even': 2,\n",
      "          'read': 2,\n",
      "          'slaughterhouse': 2,\n",
      "          'five': 2,\n",
      "          'kilmer': 2,\n",
      "          'moxxons': 2,\n",
      "          'team': 2,\n",
      "          'kid': 2,\n",
      "          'brother': 2,\n",
      "          'forms': 2,\n",
      "          'cult': 2,\n",
      "          'cream': 2,\n",
      "          'star': 2,\n",
      "          'films': 2,\n",
      "          'teen': 2,\n",
      "          'n': 2,\n",
      "          'intended': 2,\n",
      "          'nvarsity': 2,\n",
      "          'really': 2,\n",
      "          'scenes': 2,\n",
      "          'audience': 2,\n",
      "          'around': 2,\n",
      "          'nothing': 2,\n",
      "          'want': 2,\n",
      "          'stock': 2,\n",
      "          'guy': 2,\n",
      "          'movies': 2,\n",
      "          'nmaybe': 2,\n",
      "          'im': 2,\n",
      "          'theater': 2,\n",
      "          'synopsis': 1,\n",
      "          'backup': 1,\n",
      "          'becomes': 1,\n",
      "          'starting': 1,\n",
      "          'midway': 1,\n",
      "          'senior': 1,\n",
      "          'year': 1,\n",
      "          'hed': 1,\n",
      "          'rather': 1,\n",
      "          'playbook': 1,\n",
      "          'nevil': 1,\n",
      "          'throws': 1,\n",
      "          'away': 1,\n",
      "          'book': 1,\n",
      "          'physician': 1,\n",
      "          'injects': 1,\n",
      "          'painkillers': 1,\n",
      "          'players': 1,\n",
      "          'nin': 1,\n",
      "          'meantime': 1,\n",
      "          'bubblegumblond': 1,\n",
      "          'cheerleader': 1,\n",
      "          'smears': 1,\n",
      "          'whip': 1,\n",
      "          'seduce': 1,\n",
      "          'new': 1,\n",
      "          'ncomments': 1,\n",
      "          'since': 1,\n",
      "          'usually': 1,\n",
      "          'review': 1,\n",
      "          'horror': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'feel': 1,\n",
      "          'league': 1,\n",
      "          'discussing': 1,\n",
      "          'pun': 1,\n",
      "          'nthank': 1,\n",
      "          'produced': 1,\n",
      "          'mtv': 1,\n",
      "          'shows': 1,\n",
      "          'nseveral': 1,\n",
      "          'extended': 1,\n",
      "          'allow': 1,\n",
      "          'continual': 1,\n",
      "          'soundtrack': 1,\n",
      "          'mediocre': 1,\n",
      "          'pop': 1,\n",
      "          'songs': 1,\n",
      "          'meant': 1,\n",
      "          'appeal': 1,\n",
      "          'adolescent': 1,\n",
      "          'male': 1,\n",
      "          'crap': 1,\n",
      "          'teenagers': 1,\n",
      "          'reasons': 1,\n",
      "          'melodramatic': 1,\n",
      "          'angst': 1,\n",
      "          'adults': 1,\n",
      "          'problems': 1,\n",
      "          'course': 1,\n",
      "          'onedimensional': 1,\n",
      "          'characters': 1,\n",
      "          'fanatically': 1,\n",
      "          'obssessed': 1,\n",
      "          'local': 1,\n",
      "          'performs': 1,\n",
      "          'nyes': 1,\n",
      "          'represents': 1,\n",
      "          'mtvland': 1,\n",
      "          'nthis': 1,\n",
      "          'land': 1,\n",
      "          'health': 1,\n",
      "          'teacher': 1,\n",
      "          'also': 1,\n",
      "          'parttime': 1,\n",
      "          'stripper': 1,\n",
      "          'ice': 1,\n",
      "          'store': 1,\n",
      "          'attendant': 1,\n",
      "          'girlfriend': 1,\n",
      "          'wears': 1,\n",
      "          'egyptian': 1,\n",
      "          'ankh': 1,\n",
      "          'neck': 1,\n",
      "          'cute': 1,\n",
      "          'uncaring': 1,\n",
      "          'obssessive': 1,\n",
      "          'madman': 1,\n",
      "          'friends': 1,\n",
      "          'lives': 1,\n",
      "          'consist': 1,\n",
      "          'getting': 1,\n",
      "          'laid': 1,\n",
      "          'driving': 1,\n",
      "          'cop': 1,\n",
      "          'cars': 1,\n",
      "          'naked': 1,\n",
      "          'nall': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'however': 1,\n",
      "          'attend': 1,\n",
      "          'brown': 1,\n",
      "          'university': 1,\n",
      "          'fall': 1,\n",
      "          'nwell': 1,\n",
      "          'least': 1,\n",
      "          'realistic': 1,\n",
      "          'mtvs': 1,\n",
      "          'real': 1,\n",
      "          'world': 1,\n",
      "          'stars': 1,\n",
      "          'james': 1,\n",
      "          'van': 1,\n",
      "          'der': 1,\n",
      "          'beek': 1,\n",
      "          'weeks': 1,\n",
      "          'tv': 1,\n",
      "          'making': 1,\n",
      "          'leap': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'nhe': 1,\n",
      "          'plays': 1,\n",
      "          'hick': 1,\n",
      "          'adequately': 1,\n",
      "          'emotional': 1,\n",
      "          'dialogue': 1,\n",
      "          'make': 1,\n",
      "          'people': 1,\n",
      "          'chuckle': 1,\n",
      "          'dawnt': 1,\n",
      "          'mah': 1,\n",
      "          'nwho': 1,\n",
      "          'would': 1,\n",
      "          'njon': 1,\n",
      "          'voight': 1,\n",
      "          'countless': 1,\n",
      "          'surprise': 1,\n",
      "          'nbut': 1,\n",
      "          'product': 1,\n",
      "          'society': 1,\n",
      "          'nafter': 1,\n",
      "          'everybody': 1,\n",
      "          'young': 1,\n",
      "          'old': 1,\n",
      "          'whatsoever': 1,\n",
      "          'obssess': 1,\n",
      "          'pressures': 1,\n",
      "          '90': 1,\n",
      "          'screaming': 1,\n",
      "          'fans': 1,\n",
      "          'field': 1,\n",
      "          'drove': 1,\n",
      "          'screenplay': 1,\n",
      "          'never': 1,\n",
      "          'answers': 1,\n",
      "          'burning': 1,\n",
      "          'question': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'iliffs': 1,\n",
      "          'story': 1,\n",
      "          'show': 1,\n",
      "          'glimmers': 1,\n",
      "          'touching': 1,\n",
      "          'humorous': 1,\n",
      "          'gets': 1,\n",
      "          'hopes': 1,\n",
      "          'might': 1,\n",
      "          'something': 1,\n",
      "          'redeeming': 1,\n",
      "          'get': 1,\n",
      "          'trashed': 1,\n",
      "          'another': 1,\n",
      "          'lengthy': 1,\n",
      "          'party': 1,\n",
      "          'sequence': 1,\n",
      "          'overwrought': 1,\n",
      "          'game': 1,\n",
      "          'pacing': 1,\n",
      "          'slow': 1,\n",
      "          'plot': 1,\n",
      "          'turns': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'obvious': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'suppose': 1,\n",
      "          'hard': 1,\n",
      "          'varsity': 1,\n",
      "          'miffed': 1,\n",
      "          'pay': 1,\n",
      "          '3': 1,\n",
      "          'bucks': 1,\n",
      "          'see': 1,\n",
      "          'dollar': 1,\n",
      "          'night': 1,\n",
      "          'cinema': 1,\n",
      "          'nsomething': 1,\n",
      "          'request': 1,\n",
      "          'studio': 1,\n",
      "          'made': 1,\n",
      "          'charge': 1,\n",
      "          'money': 1,\n",
      "          'found': 1,\n",
      "          'film': 1,\n",
      "          'oftentimes': 1,\n",
      "          'ludicrous': 1,\n",
      "          'boring': 1,\n",
      "          'nthree': 1,\n",
      "          'guys': 1,\n",
      "          'front': 1,\n",
      "          'us': 1,\n",
      "          'smuggled': 1,\n",
      "          'beer': 1,\n",
      "          'wished': 1,\n",
      "          'thought': 1,\n",
      "          'nalcohol': 1,\n",
      "          'lots': 1,\n",
      "          'may': 1,\n",
      "          'helped': 1,\n",
      "          'viewing': 1,\n",
      "          'experience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jesse': 5,\n",
      "          'american': 3,\n",
      "          'outlaws': 3,\n",
      "          'james': 3,\n",
      "          'first': 2,\n",
      "          'gang': 2,\n",
      "          'nthe': 2,\n",
      "          'scott': 2,\n",
      "          'hometown': 2,\n",
      "          'movie': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'nthomas': 1,\n",
      "          'edisons': 1,\n",
      "          'great': 1,\n",
      "          'train': 1,\n",
      "          'robbery': 1,\n",
      "          '1903': 1,\n",
      "          'western': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'black': 1,\n",
      "          'flag': 1,\n",
      "          '1923': 1,\n",
      "          'introduced': 1,\n",
      "          'outlaw': 1,\n",
      "          'folk': 1,\n",
      "          'hero': 1,\n",
      "          'nnow': 1,\n",
      "          '20': 1,\n",
      "          'similarlythemed': 1,\n",
      "          'pictures': 1,\n",
      "          'later': 1,\n",
      "          'notorious': 1,\n",
      "          'ride': 1,\n",
      "          'banal': 1,\n",
      "          'mtv': 1,\n",
      "          'spin': 1,\n",
      "          'legend': 1,\n",
      "          'story': 1,\n",
      "          'begins': 1,\n",
      "          'charasmatic': 1,\n",
      "          'colin': 1,\n",
      "          'farrell': 1,\n",
      "          'brother': 1,\n",
      "          'frank': 1,\n",
      "          'gabriel': 1,\n",
      "          'macht': 1,\n",
      "          'cole': 1,\n",
      "          'younger': 1,\n",
      "          'caan': 1,\n",
      "          'mccormack': 1,\n",
      "          'trusty': 1,\n",
      "          'comanche': 1,\n",
      "          'tom': 1,\n",
      "          'nathaniel': 1,\n",
      "          'arcand': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'fighting': 1,\n",
      "          'rebs': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'return': 1,\n",
      "          'liberty': 1,\n",
      "          'missouri': 1,\n",
      "          'discover': 1,\n",
      "          'union': 1,\n",
      "          'troops': 1,\n",
      "          'occupying': 1,\n",
      "          'nand': 1,\n",
      "          'avaricious': 1,\n",
      "          'east': 1,\n",
      "          'coast': 1,\n",
      "          'railroad': 1,\n",
      "          'baron': 1,\n",
      "          'thaddeus': 1,\n",
      "          'rains': 1,\n",
      "          'harris': 1,\n",
      "          'yulin': 1,\n",
      "          'forcing': 1,\n",
      "          'farmers': 1,\n",
      "          'sell': 1,\n",
      "          'land': 1,\n",
      "          'less': 1,\n",
      "          'true': 1,\n",
      "          'value': 1,\n",
      "          'aided': 1,\n",
      "          'allan': 1,\n",
      "          'pinkerton': 1,\n",
      "          'timothy': 1,\n",
      "          'dalton': 1,\n",
      "          'infamous': 1,\n",
      "          'detectives': 1,\n",
      "          'back': 1,\n",
      "          'thugs': 1,\n",
      "          'provided': 1,\n",
      "          'security': 1,\n",
      "          'nbut': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'becomes': 1,\n",
      "          'one': 1,\n",
      "          'victims': 1,\n",
      "          'rest': 1,\n",
      "          'guys': 1,\n",
      "          'gregory': 1,\n",
      "          'smith': 1,\n",
      "          'ty': 1,\n",
      "          'oneal': 1,\n",
      "          'joe': 1,\n",
      "          'stevens': 1,\n",
      "          'form': 1,\n",
      "          'jamesyounger': 1,\n",
      "          'wreak': 1,\n",
      "          'revenge': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'attacking': 1,\n",
      "          'railroads': 1,\n",
      "          'supply': 1,\n",
      "          'lines': 1,\n",
      "          'sabotaging': 1,\n",
      "          'track': 1,\n",
      "          'robbing': 1,\n",
      "          'banks': 1,\n",
      "          'payroll': 1,\n",
      "          'kept': 1,\n",
      "          'nplus': 1,\n",
      "          'theres': 1,\n",
      "          'romance': 1,\n",
      "          'spunky': 1,\n",
      "          'gal': 1,\n",
      "          'lee': 1,\n",
      "          'mimms': 1,\n",
      "          'ali': 1,\n",
      "          'larter': 1,\n",
      "          'nworking': 1,\n",
      "          'politicallycorrect': 1,\n",
      "          'clich': 1,\n",
      "          'drenched': 1,\n",
      "          'sanitized': 1,\n",
      "          'revisionist': 1,\n",
      "          'screenplay': 1,\n",
      "          'roderick': 1,\n",
      "          'taylor': 1,\n",
      "          'john': 1,\n",
      "          'rodgers': 1,\n",
      "          'director': 1,\n",
      "          'les': 1,\n",
      "          'mayfield': 1,\n",
      "          'keeps': 1,\n",
      "          'action': 1,\n",
      "          'fastpaced': 1,\n",
      "          'goes': 1,\n",
      "          'lightweight': 1,\n",
      "          'laughs': 1,\n",
      "          'choppy': 1,\n",
      "          'editing': 1,\n",
      "          'hurts': 1,\n",
      "          'russell': 1,\n",
      "          'boyds': 1,\n",
      "          'cinematography': 1,\n",
      "          'luke': 1,\n",
      "          'reichles': 1,\n",
      "          'designer': 1,\n",
      "          'duds': 1,\n",
      "          'trevor': 1,\n",
      "          'rabins': 1,\n",
      "          'music': 1,\n",
      "          'lend': 1,\n",
      "          'authenticity': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'galloping': 1,\n",
      "          'formulaic': 1,\n",
      "          '3': 1,\n",
      "          'nits': 1,\n",
      "          'wild': 1,\n",
      "          'west': 1,\n",
      "          'revisited': 1,\n",
      "          'date': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 9,\n",
      "          'film': 9,\n",
      "          'knock': 9,\n",
      "          'ni': 7,\n",
      "          'action': 6,\n",
      "          'running': 4,\n",
      "          'nit': 4,\n",
      "          'rochon': 4,\n",
      "          'damme': 4,\n",
      "          'boring': 4,\n",
      "          'nbut': 4,\n",
      "          'scenes': 4,\n",
      "          'say': 3,\n",
      "          'cant': 3,\n",
      "          'awfulness': 3,\n",
      "          'see': 3,\n",
      "          'films': 3,\n",
      "          'makes': 3,\n",
      "          'nin': 3,\n",
      "          'fact': 3,\n",
      "          'time': 3,\n",
      "          'completely': 3,\n",
      "          'incoherent': 3,\n",
      "          'also': 3,\n",
      "          'course': 3,\n",
      "          'van': 3,\n",
      "          'schneider': 3,\n",
      "          'dont': 3,\n",
      "          'like': 3,\n",
      "          'first': 3,\n",
      "          'products': 3,\n",
      "          'know': 3,\n",
      "          'martial': 3,\n",
      "          'arts': 3,\n",
      "          'good': 3,\n",
      "          'nknock': 3,\n",
      "          'hes': 3,\n",
      "          'funny': 3,\n",
      "          'though': 2,\n",
      "          'one': 2,\n",
      "          'charm': 2,\n",
      "          'kind': 2,\n",
      "          'acting': 2,\n",
      "          'story': 2,\n",
      "          'im': 2,\n",
      "          'badness': 2,\n",
      "          'truly': 2,\n",
      "          'terrible': 2,\n",
      "          'paul': 2,\n",
      "          'sorvino': 2,\n",
      "          'however': 2,\n",
      "          'rob': 2,\n",
      "          'tsui': 2,\n",
      "          'seems': 2,\n",
      "          'mess': 2,\n",
      "          'writing': 2,\n",
      "          'far': 2,\n",
      "          'way': 2,\n",
      "          'nfor': 2,\n",
      "          'sake': 2,\n",
      "          'comparison': 2,\n",
      "          'plays': 2,\n",
      "          'look': 2,\n",
      "          'theres': 2,\n",
      "          'problem': 2,\n",
      "          'although': 2,\n",
      "          'idea': 2,\n",
      "          'really': 2,\n",
      "          'end': 2,\n",
      "          'guy': 2,\n",
      "          'character': 2,\n",
      "          'many': 2,\n",
      "          'absolutely': 2,\n",
      "          'hard': 2,\n",
      "          'nthe': 2,\n",
      "          'particular': 2,\n",
      "          'fruit': 2,\n",
      "          'factory': 2,\n",
      "          'nits': 2,\n",
      "          'doesnt': 2,\n",
      "          'theyre': 2,\n",
      "          'fun': 2,\n",
      "          'dear': 1,\n",
      "          'god': 1,\n",
      "          'fantastically': 1,\n",
      "          'nregardless': 1,\n",
      "          'grasp': 1,\n",
      "          'words': 1,\n",
      "          'nyou': 1,\n",
      "          'experience': 1,\n",
      "          'nheres': 1,\n",
      "          'kicker': 1,\n",
      "          'suggest': 1,\n",
      "          'nyes': 1,\n",
      "          'easily': 1,\n",
      "          'incompetent': 1,\n",
      "          'year': 1,\n",
      "          'certain': 1,\n",
      "          'misguided': 1,\n",
      "          'unique': 1,\n",
      "          'disaster': 1,\n",
      "          'endure': 1,\n",
      "          'enjoyed': 1,\n",
      "          'brief': 1,\n",
      "          'despite': 1,\n",
      "          'dreadful': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'excusing': 1,\n",
      "          'reaches': 1,\n",
      "          'unacceptable': 1,\n",
      "          'level': 1,\n",
      "          'wonder': 1,\n",
      "          'hacked': 1,\n",
      "          'worse': 1,\n",
      "          'avengers': 1,\n",
      "          'features': 1,\n",
      "          'performances': 1,\n",
      "          'lela': 1,\n",
      "          'michael': 1,\n",
      "          'wong': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'entertaining': 1,\n",
      "          'presence': 1,\n",
      "          'excessively': 1,\n",
      "          'inventive': 1,\n",
      "          'pretentious': 1,\n",
      "          'direction': 1,\n",
      "          'hark': 1,\n",
      "          'nas': 1,\n",
      "          'watched': 1,\n",
      "          'occasionally': 1,\n",
      "          'wondered': 1,\n",
      "          'aware': 1,\n",
      "          'nnow': 1,\n",
      "          'retrospect': 1,\n",
      "          'clear': 1,\n",
      "          'wasnt': 1,\n",
      "          'still': 1,\n",
      "          'fascinating': 1,\n",
      "          'plot': 1,\n",
      "          'descriptions': 1,\n",
      "          'part': 1,\n",
      "          'review': 1,\n",
      "          'case': 1,\n",
      "          'hook': 1,\n",
      "          'could': 1,\n",
      "          'write': 1,\n",
      "          'accurate': 1,\n",
      "          'synopsis': 1,\n",
      "          'trouble': 1,\n",
      "          'understanding': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'viewing': 1,\n",
      "          'paid': 1,\n",
      "          'closer': 1,\n",
      "          'attention': 1,\n",
      "          'thing': 1,\n",
      "          'able': 1,\n",
      "          'dude': 1,\n",
      "          'named': 1,\n",
      "          'ray': 1,\n",
      "          'accused': 1,\n",
      "          'cia': 1,\n",
      "          'think': 1,\n",
      "          'selling': 1,\n",
      "          'namebrand': 1,\n",
      "          'materials': 1,\n",
      "          'generic': 1,\n",
      "          'cheap': 1,\n",
      "          'lots': 1,\n",
      "          'nray': 1,\n",
      "          'beat': 1,\n",
      "          'guys': 1,\n",
      "          'nrob': 1,\n",
      "          'sidekick': 1,\n",
      "          'nlela': 1,\n",
      "          'woman': 1,\n",
      "          'accuses': 1,\n",
      "          'stuff': 1,\n",
      "          'every': 1,\n",
      "          'goes': 1,\n",
      "          'shifts': 1,\n",
      "          'provides': 1,\n",
      "          'insight': 1,\n",
      "          'order': 1,\n",
      "          'sense': 1,\n",
      "          'strange': 1,\n",
      "          'written': 1,\n",
      "          'stephen': 1,\n",
      "          'e': 1,\n",
      "          'de': 1,\n",
      "          'souza': 1,\n",
      "          'wrote': 1,\n",
      "          'die': 1,\n",
      "          '48': 1,\n",
      "          'hours': 1,\n",
      "          'ncan': 1,\n",
      "          'man': 1,\n",
      "          'unless': 1,\n",
      "          'huge': 1,\n",
      "          'chunks': 1,\n",
      "          'removed': 1,\n",
      "          'interesting': 1,\n",
      "          'premise': 1,\n",
      "          'go': 1,\n",
      "          'semblance': 1,\n",
      "          'instance': 1,\n",
      "          'introduced': 1,\n",
      "          'seconds': 1,\n",
      "          'later': 1,\n",
      "          'chariot': 1,\n",
      "          'race': 1,\n",
      "          'streets': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'nwhy': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'nwhat': 1,\n",
      "          'implications': 1,\n",
      "          'nmost': 1,\n",
      "          'abandon': 1,\n",
      "          'depth': 1,\n",
      "          'favor': 1,\n",
      "          'normally': 1,\n",
      "          'would': 1,\n",
      "          'preferred': 1,\n",
      "          'talky': 1,\n",
      "          'sequences': 1,\n",
      "          'cut': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'delivers': 1,\n",
      "          'lines': 1,\n",
      "          'stiff': 1,\n",
      "          'talentless': 1,\n",
      "          'insincerity': 1,\n",
      "          'nsorvino': 1,\n",
      "          'addition': 1,\n",
      "          'deserves': 1,\n",
      "          'better': 1,\n",
      "          'nvan': 1,\n",
      "          'charming': 1,\n",
      "          'watch': 1,\n",
      "          'rarely': 1,\n",
      "          'understood': 1,\n",
      "          'saying': 1,\n",
      "          'exception': 1,\n",
      "          'actually': 1,\n",
      "          'quite': 1,\n",
      "          'lot': 1,\n",
      "          'ntsui': 1,\n",
      "          'utilizes': 1,\n",
      "          'tricks': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'tame': 1,\n",
      "          'ntheyre': 1,\n",
      "          'pointless': 1,\n",
      "          'gimmicks': 1,\n",
      "          'shots': 1,\n",
      "          'innerworkings': 1,\n",
      "          'shoe': 1,\n",
      "          'never': 1,\n",
      "          'piece': 1,\n",
      "          'inside': 1,\n",
      "          'wellchoreographed': 1,\n",
      "          'nlots': 1,\n",
      "          'pitched': 1,\n",
      "          'well': 1,\n",
      "          'comedy': 1,\n",
      "          'heroes': 1,\n",
      "          'encounter': 1,\n",
      "          'beyond': 1,\n",
      "          'ludicrous': 1,\n",
      "          'hope': 1,\n",
      "          'alternative': 1,\n",
      "          'frightening': 1,\n",
      "          'thought': 1,\n",
      "          'feel': 1,\n",
      "          'exercise': 1,\n",
      "          'camp': 1,\n",
      "          'mania': 1,\n",
      "          'nif': 1,\n",
      "          'id': 1,\n",
      "          'give': 1,\n",
      "          'zero': 1,\n",
      "          'stars': 1,\n",
      "          'loud': 1,\n",
      "          'excessive': 1,\n",
      "          'even': 1,\n",
      "          'isnt': 1,\n",
      "          'meaning': 1,\n",
      "          'na': 1,\n",
      "          'succeeds': 1,\n",
      "          'entertainment': 1,\n",
      "          'deserve': 1,\n",
      "          'fully': 1,\n",
      "          'lambasted': 1,\n",
      "          'recognize': 1,\n",
      "          'irrefutable': 1,\n",
      "          'deny': 1,\n",
      "          'zany': 1,\n",
      "          'useless': 1,\n",
      "          'noh': 1,\n",
      "          'looking': 1,\n",
      "          'desperately': 1,\n",
      "          'real': 1,\n",
      "          'amongst': 1,\n",
      "          'crowd': 1,\n",
      "          'laughably': 1,\n",
      "          'inane': 1,\n",
      "          'concepts': 1,\n",
      "          'admire': 1,\n",
      "          'excuse': 1,\n",
      "          'indeed': 1,\n",
      "          'awful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 15,\n",
      "          'nthe': 7,\n",
      "          'bang': 7,\n",
      "          'characters': 5,\n",
      "          'people': 5,\n",
      "          'nbang': 5,\n",
      "          'ship': 5,\n",
      "          'liner': 4,\n",
      "          'sequence': 4,\n",
      "          'though': 4,\n",
      "          'one': 4,\n",
      "          'oil': 4,\n",
      "          'tanker': 4,\n",
      "          'nthis': 4,\n",
      "          'cruise': 3,\n",
      "          'struck': 3,\n",
      "          'like': 3,\n",
      "          'original': 3,\n",
      "          'many': 3,\n",
      "          'speed': 3,\n",
      "          'make': 3,\n",
      "          'minutes': 3,\n",
      "          'get': 3,\n",
      "          'nin': 3,\n",
      "          'jason': 3,\n",
      "          'think': 3,\n",
      "          'oh': 3,\n",
      "          'doesnt': 3,\n",
      "          'sequences': 3,\n",
      "          'dog': 3,\n",
      "          'sequel': 2,\n",
      "          'nit': 2,\n",
      "          'twice': 2,\n",
      "          'shallow': 2,\n",
      "          'theres': 2,\n",
      "          'turned': 2,\n",
      "          'first': 2,\n",
      "          'thing': 2,\n",
      "          'work': 2,\n",
      "          'opening': 2,\n",
      "          'terrible': 2,\n",
      "          'head': 2,\n",
      "          'end': 2,\n",
      "          'neven': 2,\n",
      "          'annie': 2,\n",
      "          'chainsaw': 2,\n",
      "          'escape': 2,\n",
      "          'till': 2,\n",
      "          'cant': 2,\n",
      "          'point': 2,\n",
      "          'character': 2,\n",
      "          'little': 2,\n",
      "          'patric': 2,\n",
      "          'back': 2,\n",
      "          'might': 2,\n",
      "          'tree': 2,\n",
      "          'stump': 2,\n",
      "          'frown': 2,\n",
      "          'bad': 2,\n",
      "          'go': 2,\n",
      "          'wrong': 2,\n",
      "          'around': 2,\n",
      "          'even': 2,\n",
      "          'real': 2,\n",
      "          'looks': 2,\n",
      "          'terrific': 2,\n",
      "          'ive': 2,\n",
      "          'ever': 2,\n",
      "          'feeling': 2,\n",
      "          'part': 2,\n",
      "          'going': 2,\n",
      "          'hit': 2,\n",
      "          'n20': 2,\n",
      "          'see': 2,\n",
      "          'crashes': 2,\n",
      "          'town': 2,\n",
      "          '15': 2,\n",
      "          'welcome': 1,\n",
      "          'ohso': 1,\n",
      "          'typical': 1,\n",
      "          'tries': 1,\n",
      "          'big': 1,\n",
      "          'predecessor': 1,\n",
      "          'yet': 1,\n",
      "          'ends': 1,\n",
      "          'nshallow': 1,\n",
      "          'hmm': 1,\n",
      "          'idea': 1,\n",
      "          'nmaybe': 1,\n",
      "          'illfated': 1,\n",
      "          'reef': 1,\n",
      "          'early': 1,\n",
      "          'things': 1,\n",
      "          'may': 1,\n",
      "          'better': 1,\n",
      "          'nsurprised': 1,\n",
      "          'camera': 1,\n",
      "          'anyway': 1,\n",
      "          'nlooked': 1,\n",
      "          'cameramen': 1,\n",
      "          'drunk': 1,\n",
      "          'kept': 1,\n",
      "          'tripping': 1,\n",
      "          'feet': 1,\n",
      "          'ndifferent': 1,\n",
      "          'nwell': 1,\n",
      "          'actually': 1,\n",
      "          'heres': 1,\n",
      "          'rundown': 1,\n",
      "          'nannie': 1,\n",
      "          'highlight': 1,\n",
      "          'must': 1,\n",
      "          'seriously': 1,\n",
      "          'banged': 1,\n",
      "          'train': 1,\n",
      "          'crash': 1,\n",
      "          'nwhy': 1,\n",
      "          'nbecause': 1,\n",
      "          'somethings': 1,\n",
      "          'got': 1,\n",
      "          'account': 1,\n",
      "          'losing': 1,\n",
      "          'iq': 1,\n",
      "          'points': 1,\n",
      "          'wasnt': 1,\n",
      "          'exactly': 1,\n",
      "          'rocket': 1,\n",
      "          'scientist': 1,\n",
      "          'actions': 1,\n",
      "          'want': 1,\n",
      "          'beat': 1,\n",
      "          'wall': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'successfully': 1,\n",
      "          'using': 1,\n",
      "          'cut': 1,\n",
      "          'hole': 1,\n",
      "          'door': 1,\n",
      "          'group': 1,\n",
      "          'noxious': 1,\n",
      "          'gases': 1,\n",
      "          'stands': 1,\n",
      "          'middle': 1,\n",
      "          'five': 1,\n",
      "          'someone': 1,\n",
      "          'reminds': 1,\n",
      "          'ut': 1,\n",
      "          'gets': 1,\n",
      "          'faces': 1,\n",
      "          'fact': 1,\n",
      "          'sandras': 1,\n",
      "          'scantly': 1,\n",
      "          'dressed': 1,\n",
      "          'extras': 1,\n",
      "          'hercules': 1,\n",
      "          'constantly': 1,\n",
      "          'rescued': 1,\n",
      "          'njason': 1,\n",
      "          'nall': 1,\n",
      "          'say': 1,\n",
      "          'bring': 1,\n",
      "          'keanu': 1,\n",
      "          'nkeanu': 1,\n",
      "          'reeves': 1,\n",
      "          'emotional': 1,\n",
      "          'range': 1,\n",
      "          'nthats': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'changed': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'smile': 1,\n",
      "          'cameras': 1,\n",
      "          'nnow': 1,\n",
      "          'said': 1,\n",
      "          'nwooden': 1,\n",
      "          'describe': 1,\n",
      "          'guys': 1,\n",
      "          'performance': 1,\n",
      "          'itll': 1,\n",
      "          'guy': 1,\n",
      "          'ahh': 1,\n",
      "          'william': 1,\n",
      "          'ndafoe': 1,\n",
      "          'bright': 1,\n",
      "          'move': 1,\n",
      "          'nhow': 1,\n",
      "          'star': 1,\n",
      "          'acknowledged': 1,\n",
      "          'classic': 1,\n",
      "          'body': 1,\n",
      "          'evidence': 1,\n",
      "          'n': 1,\n",
      "          'yes': 1,\n",
      "          'sarcasm': 1,\n",
      "          'nhis': 1,\n",
      "          'wide': 1,\n",
      "          'eyed': 1,\n",
      "          'maniac': 1,\n",
      "          'start': 1,\n",
      "          'ngoes': 1,\n",
      "          'steadily': 1,\n",
      "          'downhill': 1,\n",
      "          'progresses': 1,\n",
      "          'degenerates': 1,\n",
      "          'chasing': 1,\n",
      "          'hostage': 1,\n",
      "          'already': 1,\n",
      "          'money': 1,\n",
      "          'nthough': 1,\n",
      "          'id': 1,\n",
      "          'give': 1,\n",
      "          'double': 1,\n",
      "          'thumbs': 1,\n",
      "          'nice': 1,\n",
      "          'nconsidering': 1,\n",
      "          'cost': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'youd': 1,\n",
      "          'hope': 1,\n",
      "          'thered': 1,\n",
      "          'least': 1,\n",
      "          'couple': 1,\n",
      "          'eyepopper': 1,\n",
      "          'given': 1,\n",
      "          'away': 1,\n",
      "          'trailer': 1,\n",
      "          'sideswipes': 1,\n",
      "          'surprised': 1,\n",
      "          'hear': 1,\n",
      "          'completely': 1,\n",
      "          'ncomputer': 1,\n",
      "          'generated': 1,\n",
      "          'nwow': 1,\n",
      "          'ndont': 1,\n",
      "          'seen': 1,\n",
      "          'cg': 1,\n",
      "          'model': 1,\n",
      "          'look': 1,\n",
      "          'trying': 1,\n",
      "          'disable': 1,\n",
      "          'propellers': 1,\n",
      "          'also': 1,\n",
      "          'time': 1,\n",
      "          'entire': 1,\n",
      "          'lackofspeed': 1,\n",
      "          'problem': 1,\n",
      "          'affects': 1,\n",
      "          'nsuch': 1,\n",
      "          'later': 1,\n",
      "          'min': 1,\n",
      "          'nget': 1,\n",
      "          'failed': 1,\n",
      "          'simply': 1,\n",
      "          'didnt': 1,\n",
      "          'live': 1,\n",
      "          'name': 1,\n",
      "          'nwas': 1,\n",
      "          'lead': 1,\n",
      "          'split': 1,\n",
      "          'second': 1,\n",
      "          'decisions': 1,\n",
      "          'survive': 1,\n",
      "          'felt': 1,\n",
      "          'well': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'run': 1,\n",
      "          'island': 1,\n",
      "          'hours': 1,\n",
      "          'stroll': 1,\n",
      "          'engineering': 1,\n",
      "          'turn': 1,\n",
      "          'engines': 1,\n",
      "          'im': 1,\n",
      "          'npassing': 1,\n",
      "          'cafeteria': 1,\n",
      "          'way': 1,\n",
      "          'anybody': 1,\n",
      "          'anything': 1,\n",
      "          'ending': 1,\n",
      "          'really': 1,\n",
      "          'features': 1,\n",
      "          'since': 1,\n",
      "          'found': 1,\n",
      "          'expensive': 1,\n",
      "          'realistic': 1,\n",
      "          'surprise': 1,\n",
      "          'nsurprise': 1,\n",
      "          'takes': 1,\n",
      "          'waaaaay': 1,\n",
      "          'long': 1,\n",
      "          'seemed': 1,\n",
      "          'finally': 1,\n",
      "          'stopped': 1,\n",
      "          'none': 1,\n",
      "          'extremely': 1,\n",
      "          'poor': 1,\n",
      "          'scriptiing': 1,\n",
      "          'harbour': 1,\n",
      "          '25': 1,\n",
      "          'killed': 1,\n",
      "          'ntheres': 1,\n",
      "          'left': 1,\n",
      "          'nso': 1,\n",
      "          'stops': 1,\n",
      "          'safe': 1,\n",
      "          'sound': 1,\n",
      "          'cheering': 1,\n",
      "          'audience': 1,\n",
      "          'sitting': 1,\n",
      "          'thinking': 1,\n",
      "          'wait': 1,\n",
      "          'sec': 1,\n",
      "          'happy': 1,\n",
      "          'moment': 1,\n",
      "          'nthen': 1,\n",
      "          'nalmost': 1,\n",
      "          'fell': 1,\n",
      "          'seat': 1,\n",
      "          'saw': 1,\n",
      "          'bit': 1,\n",
      "          'dodging': 1,\n",
      "          'falling': 1,\n",
      "          'debris': 1,\n",
      "          'nputting': 1,\n",
      "          'peril': 1,\n",
      "          'become': 1,\n",
      "          'ultimate': 1,\n",
      "          'hollywood': 1,\n",
      "          'cliche': 1,\n",
      "          'every': 1,\n",
      "          'nmovie': 1,\n",
      "          'seems': 1,\n",
      "          'dogindanger': 1,\n",
      "          'volcano': 1,\n",
      "          'dantes': 1,\n",
      "          'peak': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'daylight': 1,\n",
      "          'twister': 1,\n",
      "          'nlost': 1,\n",
      "          'world': 1,\n",
      "          'etc': 1,\n",
      "          'netc': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'ndirector': 1,\n",
      "          'jan': 1,\n",
      "          'de': 1,\n",
      "          'bont': 1,\n",
      "          'try': 1,\n",
      "          'watching': 1,\n",
      "          'orignal': 1,\n",
      "          'backtoback': 1,\n",
      "          'realises': 1,\n",
      "          'went': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'killer': 8,\n",
      "          'tracks': 5,\n",
      "          'couple': 5,\n",
      "          'film': 5,\n",
      "          'cabin': 4,\n",
      "          'films': 4,\n",
      "          'test': 3,\n",
      "          'one': 3,\n",
      "          'larson': 3,\n",
      "          'lebrock': 3,\n",
      "          'seem': 3,\n",
      "          'company': 2,\n",
      "          'wants': 2,\n",
      "          'thinks': 2,\n",
      "          'great': 2,\n",
      "          'idea': 2,\n",
      "          'spend': 2,\n",
      "          'week': 2,\n",
      "          'isolated': 2,\n",
      "          'watching': 2,\n",
      "          'nstrike': 2,\n",
      "          'fact': 2,\n",
      "          'good': 2,\n",
      "          'sign': 2,\n",
      "          'two': 2,\n",
      "          'ever': 2,\n",
      "          'get': 2,\n",
      "          'knows': 2,\n",
      "          'first': 2,\n",
      "          'brolin': 2,\n",
      "          'later': 2,\n",
      "          'character': 2,\n",
      "          'reason': 2,\n",
      "          'time': 2,\n",
      "          'characters': 2,\n",
      "          'become': 2,\n",
      "          'dont': 2,\n",
      "          'like': 2,\n",
      "          'business': 2,\n",
      "          'nthe': 2,\n",
      "          'misery': 2,\n",
      "          'around': 2,\n",
      "          'old': 2,\n",
      "          'chuckle': 2,\n",
      "          'synopsis': 1,\n",
      "          'president': 1,\n",
      "          'selfappointed': 1,\n",
      "          'successor': 1,\n",
      "          'whos': 1,\n",
      "          'psychotic': 1,\n",
      "          'wives': 1,\n",
      "          'hundred': 1,\n",
      "          'miles': 1,\n",
      "          'civilization': 1,\n",
      "          'dependable': 1,\n",
      "          'transportation': 1,\n",
      "          'means': 1,\n",
      "          'communication': 1,\n",
      "          'heavy': 1,\n",
      "          'snowfall': 1,\n",
      "          'ncomments': 1,\n",
      "          'strikes': 1,\n",
      "          'even': 1,\n",
      "          'began': 1,\n",
      "          'someone': 1,\n",
      "          'scrawled': 1,\n",
      "          'word': 1,\n",
      "          'garbage': 1,\n",
      "          'videotapes': 1,\n",
      "          'sticker': 1,\n",
      "          'black': 1,\n",
      "          'marker': 1,\n",
      "          'typically': 1,\n",
      "          'rent': 1,\n",
      "          'came': 1,\n",
      "          'previews': 1,\n",
      "          'played': 1,\n",
      "          'ndid': 1,\n",
      "          'sinking': 1,\n",
      "          'premonition': 1,\n",
      "          'movies': 1,\n",
      "          'quality': 1,\n",
      "          'lack': 1,\n",
      "          'thereof': 1,\n",
      "          'trailers': 1,\n",
      "          'come': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nwell': 1,\n",
      "          'cheesy': 1,\n",
      "          'advertised': 1,\n",
      "          'heard': 1,\n",
      "          'starring': 1,\n",
      "          'people': 1,\n",
      "          'looked': 1,\n",
      "          'bad': 1,\n",
      "          'definately': 1,\n",
      "          'ntracks': 1,\n",
      "          'completed': 1,\n",
      "          'strikeout': 1,\n",
      "          'nabout': 1,\n",
      "          'positive': 1,\n",
      "          'thing': 1,\n",
      "          'going': 1,\n",
      "          'sports': 1,\n",
      "          'nice': 1,\n",
      "          'scenery': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'halfhour': 1,\n",
      "          'promises': 1,\n",
      "          'least': 1,\n",
      "          'watchable': 1,\n",
      "          'thriller': 1,\n",
      "          'nwolf': 1,\n",
      "          'bears': 1,\n",
      "          'passing': 1,\n",
      "          'resemblance': 1,\n",
      "          'hugh': 1,\n",
      "          'grant': 1,\n",
      "          'adequately': 1,\n",
      "          'plays': 1,\n",
      "          'underling': 1,\n",
      "          'obviously': 1,\n",
      "          'set': 1,\n",
      "          'title': 1,\n",
      "          'njames': 1,\n",
      "          'kelly': 1,\n",
      "          'equally': 1,\n",
      "          'adequate': 1,\n",
      "          'loving': 1,\n",
      "          'threaten': 1,\n",
      "          'nbrolins': 1,\n",
      "          'inexplicable': 1,\n",
      "          'practically': 1,\n",
      "          'hes': 1,\n",
      "          'decided': 1,\n",
      "          'giving': 1,\n",
      "          'full': 1,\n",
      "          'control': 1,\n",
      "          'nby': 1,\n",
      "          'arrive': 1,\n",
      "          'begins': 1,\n",
      "          'tedious': 1,\n",
      "          'napparently': 1,\n",
      "          'brolins': 1,\n",
      "          'successors': 1,\n",
      "          'involves': 1,\n",
      "          'chopping': 1,\n",
      "          'wood': 1,\n",
      "          'fireplace': 1,\n",
      "          'skiing': 1,\n",
      "          'attributes': 1,\n",
      "          'necessary': 1,\n",
      "          'run': 1,\n",
      "          'city': 1,\n",
      "          'nbut': 1,\n",
      "          'know': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'though': 1,\n",
      "          'invested': 1,\n",
      "          'better': 1,\n",
      "          'furniture': 1,\n",
      "          'beds': 1,\n",
      "          'closets': 1,\n",
      "          'habit': 1,\n",
      "          'breaking': 1,\n",
      "          'slightest': 1,\n",
      "          'touch': 1,\n",
      "          'nlarsons': 1,\n",
      "          'accidently': 1,\n",
      "          'kills': 1,\n",
      "          'wife': 1,\n",
      "          'rather': 1,\n",
      "          'kill': 1,\n",
      "          'nthis': 1,\n",
      "          'leaves': 1,\n",
      "          'movie': 1,\n",
      "          'hour': 1,\n",
      "          'go': 1,\n",
      "          'three': 1,\n",
      "          'really': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'sustain': 1,\n",
      "          'writer': 1,\n",
      "          'must': 1,\n",
      "          'taken': 1,\n",
      "          'cue': 1,\n",
      "          'stephen': 1,\n",
      "          'king': 1,\n",
      "          'scenes': 1,\n",
      "          'lifted': 1,\n",
      "          'geralds': 1,\n",
      "          'game': 1,\n",
      "          'nlarson': 1,\n",
      "          'fight': 1,\n",
      "          'torture': 1,\n",
      "          'tables': 1,\n",
      "          'turned': 1,\n",
      "          'times': 1,\n",
      "          'tramps': 1,\n",
      "          'snow': 1,\n",
      "          'looking': 1,\n",
      "          'help': 1,\n",
      "          'nsome': 1,\n",
      "          'guys': 1,\n",
      "          'add': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'without': 1,\n",
      "          'killing': 1,\n",
      "          'everyone': 1,\n",
      "          'alive': 1,\n",
      "          'end': 1,\n",
      "          'guy': 1,\n",
      "          'however': 1,\n",
      "          'miraculously': 1,\n",
      "          'survives': 1,\n",
      "          'death': 1,\n",
      "          'appears': 1,\n",
      "          'killed': 1,\n",
      "          'scene': 1,\n",
      "          'ludicrous': 1,\n",
      "          'worthy': 1,\n",
      "          'noutside': 1,\n",
      "          'unfortunately': 1,\n",
      "          'bore': 1,\n",
      "          'obvious': 1,\n",
      "          'plot': 1,\n",
      "          'drawn': 1,\n",
      "          'ad': 1,\n",
      "          'infinitum': 1,\n",
      "          'actors': 1,\n",
      "          'increasing': 1,\n",
      "          'obnoxious': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'thinking': 1,\n",
      "          'renting': 1,\n",
      "          'turkey': 1,\n",
      "          'nmake': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'suspense': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mars': 19,\n",
      "          'mission': 14,\n",
      "          'one': 12,\n",
      "          'film': 10,\n",
      "          'like': 9,\n",
      "          'films': 8,\n",
      "          'nthe': 8,\n",
      "          '2001': 7,\n",
      "          'people': 5,\n",
      "          'team': 5,\n",
      "          'life': 5,\n",
      "          'space': 4,\n",
      "          'aliens': 4,\n",
      "          'might': 4,\n",
      "          'time': 4,\n",
      "          'manages': 4,\n",
      "          'monolith': 4,\n",
      "          'things': 4,\n",
      "          'way': 4,\n",
      "          'going': 3,\n",
      "          'nwhy': 3,\n",
      "          'dont': 3,\n",
      "          'script': 3,\n",
      "          'assume': 3,\n",
      "          'start': 3,\n",
      "          'plot': 3,\n",
      "          'rescue': 3,\n",
      "          'wife': 3,\n",
      "          'attempt': 3,\n",
      "          'must': 3,\n",
      "          'earth': 3,\n",
      "          'isnt': 3,\n",
      "          'sequence': 3,\n",
      "          'looking': 3,\n",
      "          'scene': 3,\n",
      "          'also': 3,\n",
      "          'go': 3,\n",
      "          'characters': 3,\n",
      "          'tell': 3,\n",
      "          'know': 3,\n",
      "          'show': 3,\n",
      "          'nthere': 2,\n",
      "          'probably': 2,\n",
      "          'enjoy': 2,\n",
      "          'seen': 2,\n",
      "          'kind': 2,\n",
      "          'already': 2,\n",
      "          'armageddon': 2,\n",
      "          'encounters': 2,\n",
      "          'nbecause': 2,\n",
      "          'nall': 2,\n",
      "          'cribbed': 2,\n",
      "          'better': 2,\n",
      "          'thing': 2,\n",
      "          'course': 2,\n",
      "          'main': 2,\n",
      "          'audience': 2,\n",
      "          'havent': 2,\n",
      "          'used': 2,\n",
      "          'running': 2,\n",
      "          'n': 2,\n",
      "          'nothing': 2,\n",
      "          'long': 2,\n",
      "          'rotating': 2,\n",
      "          'station': 2,\n",
      "          'strangely': 2,\n",
      "          'na': 2,\n",
      "          'tim': 2,\n",
      "          'robbins': 2,\n",
      "          'jim': 2,\n",
      "          'sinise': 2,\n",
      "          'nafter': 2,\n",
      "          'aboard': 2,\n",
      "          'vessel': 2,\n",
      "          'return': 2,\n",
      "          'home': 2,\n",
      "          'makes': 2,\n",
      "          'de': 2,\n",
      "          'palma': 2,\n",
      "          'tension': 2,\n",
      "          'scenes': 2,\n",
      "          'ship': 2,\n",
      "          'hole': 2,\n",
      "          'away': 2,\n",
      "          'rest': 2,\n",
      "          'character': 2,\n",
      "          'little': 2,\n",
      "          'obvious': 2,\n",
      "          'opening': 2,\n",
      "          'shot': 2,\n",
      "          'right': 2,\n",
      "          'us': 2,\n",
      "          'something': 2,\n",
      "          'whats': 2,\n",
      "          'dialogue': 2,\n",
      "          'astronaut': 2,\n",
      "          'sure': 2,\n",
      "          'thats': 2,\n",
      "          'nastronaut': 2,\n",
      "          'learned': 2,\n",
      "          'get': 2,\n",
      "          'viewers': 2,\n",
      "          'nand': 2,\n",
      "          'facilitated': 2,\n",
      "          'evolution': 2,\n",
      "          'different': 2,\n",
      "          'fact': 2,\n",
      "          'substance': 2,\n",
      "          'requirement': 1,\n",
      "          'potential': 1,\n",
      "          'viewer': 1,\n",
      "          'certain': 1,\n",
      "          'iq': 1,\n",
      "          'order': 1,\n",
      "          'see': 1,\n",
      "          'quite': 1,\n",
      "          'nbut': 1,\n",
      "          'likely': 1,\n",
      "          'following': 1,\n",
      "          'movies': 1,\n",
      "          'odyssey': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'abyss': 1,\n",
      "          'close': 1,\n",
      "          'third': 1,\n",
      "          'e': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'alien': 1,\n",
      "          'original': 1,\n",
      "          'idea': 1,\n",
      "          'cases': 1,\n",
      "          'nif': 1,\n",
      "          'sort': 1,\n",
      "          'mind': 1,\n",
      "          'nof': 1,\n",
      "          'reasons': 1,\n",
      "          'written': 1,\n",
      "          'seem': 1,\n",
      "          'filled': 1,\n",
      "          'brains': 1,\n",
      "          'intend': 1,\n",
      "          'stupid': 1,\n",
      "          'boring': 1,\n",
      "          'greatly': 1,\n",
      "          'concerns': 1,\n",
      "          'sent': 1,\n",
      "          'first': 1,\n",
      "          'manned': 1,\n",
      "          'trip': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'nluke': 1,\n",
      "          'graham': 1,\n",
      "          'cheadle': 1,\n",
      "          'leads': 1,\n",
      "          'jointly': 1,\n",
      "          'formed': 1,\n",
      "          'americans': 1,\n",
      "          'russians': 1,\n",
      "          'mysterious': 1,\n",
      "          'emits': 1,\n",
      "          'strange': 1,\n",
      "          'pulse': 1,\n",
      "          'pulseemitting': 1,\n",
      "          'moon': 1,\n",
      "          'try': 1,\n",
      "          'study': 1,\n",
      "          'giant': 1,\n",
      "          'sand': 1,\n",
      "          'tornado': 1,\n",
      "          'comes': 1,\n",
      "          'top': 1,\n",
      "          'swallows': 1,\n",
      "          'except': 1,\n",
      "          'luke': 1,\n",
      "          'survives': 1,\n",
      "          'enough': 1,\n",
      "          'send': 1,\n",
      "          'garbled': 1,\n",
      "          'message': 1,\n",
      "          'back': 1,\n",
      "          'looks': 1,\n",
      "          'planned': 1,\n",
      "          'husband': 1,\n",
      "          'woody': 1,\n",
      "          'blake': 1,\n",
      "          'terri': 1,\n",
      "          'fisher': 1,\n",
      "          'connie': 1,\n",
      "          'nielsen': 1,\n",
      "          'obligatory': 1,\n",
      "          'pilot': 1,\n",
      "          'troubled': 1,\n",
      "          'past': 1,\n",
      "          'mcconnell': 1,\n",
      "          'gary': 1,\n",
      "          'extra': 1,\n",
      "          'crew': 1,\n",
      "          'member': 1,\n",
      "          'phil': 1,\n",
      "          'ohlmyer': 1,\n",
      "          'jerry': 1,\n",
      "          'oconnell': 1,\n",
      "          'along': 1,\n",
      "          'ride': 1,\n",
      "          'zerogravity': 1,\n",
      "          'dancing': 1,\n",
      "          'run': 1,\n",
      "          'problems': 1,\n",
      "          'engines': 1,\n",
      "          'blown': 1,\n",
      "          'forcing': 1,\n",
      "          'desperate': 1,\n",
      "          'landing': 1,\n",
      "          'supply': 1,\n",
      "          'nnow': 1,\n",
      "          'stranded': 1,\n",
      "          'minimal': 1,\n",
      "          'supplies': 1,\n",
      "          'decide': 1,\n",
      "          'whether': 1,\n",
      "          'risk': 1,\n",
      "          'entering': 1,\n",
      "          'contain': 1,\n",
      "          'information': 1,\n",
      "          'originated': 1,\n",
      "          'critic': 1,\n",
      "          'wonder': 1,\n",
      "          'talking': 1,\n",
      "          'wrong': 1,\n",
      "          'lets': 1,\n",
      "          'work': 1,\n",
      "          'director': 1,\n",
      "          'brian': 1,\n",
      "          'create': 1,\n",
      "          'eerie': 1,\n",
      "          'middle': 1,\n",
      "          'nthats': 1,\n",
      "          'neverything': 1,\n",
      "          'else': 1,\n",
      "          'fails': 1,\n",
      "          'failure': 1,\n",
      "          'palmas': 1,\n",
      "          'fault': 1,\n",
      "          'hes': 1,\n",
      "          'working': 1,\n",
      "          'atrocious': 1,\n",
      "          'nonly': 1,\n",
      "          'awful': 1,\n",
      "          'lot': 1,\n",
      "          'jupiter': 1,\n",
      "          'teams': 1,\n",
      "          'air': 1,\n",
      "          'begins': 1,\n",
      "          'frantically': 1,\n",
      "          'search': 1,\n",
      "          'patch': 1,\n",
      "          'come': 1,\n",
      "          'save': 1,\n",
      "          'comrade': 1,\n",
      "          'floating': 1,\n",
      "          'provides': 1,\n",
      "          'realize': 1,\n",
      "          'entire': 1,\n",
      "          'dangermore': 1,\n",
      "          'dangerattempted': 1,\n",
      "          'absolutely': 1,\n",
      "          'contrived': 1,\n",
      "          'generate': 1,\n",
      "          'thrilling': 1,\n",
      "          'ntake': 1,\n",
      "          'affected': 1,\n",
      "          'suffers': 1,\n",
      "          'holes': 1,\n",
      "          'ships': 1,\n",
      "          'computer': 1,\n",
      "          'sounds': 1,\n",
      "          'hal': 1,\n",
      "          'uh': 1,\n",
      "          'able': 1,\n",
      "          'detect': 1,\n",
      "          'chamber': 1,\n",
      "          'engine': 1,\n",
      "          'outside': 1,\n",
      "          'solution': 1,\n",
      "          'easily': 1,\n",
      "          'presented': 1,\n",
      "          'inside': 1,\n",
      "          'nshouldnt': 1,\n",
      "          'astronauts': 1,\n",
      "          'trained': 1,\n",
      "          'deal': 1,\n",
      "          'hull': 1,\n",
      "          'breach': 1,\n",
      "          'idiots': 1,\n",
      "          'properly': 1,\n",
      "          'develop': 1,\n",
      "          'conflict': 1,\n",
      "          'clumsily': 1,\n",
      "          'delivered': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'exposition': 1,\n",
      "          'rips': 1,\n",
      "          'orson': 1,\n",
      "          'welles': 1,\n",
      "          'robert': 1,\n",
      "          'altman': 1,\n",
      "          'utilizing': 1,\n",
      "          'tracking': 1,\n",
      "          'repeatedly': 1,\n",
      "          'bad': 1,\n",
      "          'cant': 1,\n",
      "          'determined': 1,\n",
      "          'psychologically': 1,\n",
      "          'inadequate': 1,\n",
      "          'died': 1,\n",
      "          'together': 1,\n",
      "          'anyone': 1,\n",
      "          'really': 1,\n",
      "          'talk': 1,\n",
      "          'ncant': 1,\n",
      "          'find': 1,\n",
      "          'less': 1,\n",
      "          'grating': 1,\n",
      "          'matter': 1,\n",
      "          'maybe': 1,\n",
      "          'flashback': 1,\n",
      "          'whole': 1,\n",
      "          'filmmakers': 1,\n",
      "          'content': 1,\n",
      "          'merely': 1,\n",
      "          'exactly': 1,\n",
      "          'every': 1,\n",
      "          'nsample': 1,\n",
      "          'look': 1,\n",
      "          'theres': 1,\n",
      "          'b': 1,\n",
      "          'yeah': 1,\n",
      "          'c': 1,\n",
      "          'hey': 1,\n",
      "          'guys': 1,\n",
      "          'nthat': 1,\n",
      "          'exchange': 1,\n",
      "          'actually': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprised': 1,\n",
      "          'nfor': 1,\n",
      "          'cribbing': 1,\n",
      "          'kubrick': 1,\n",
      "          'spielberg': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'even': 1,\n",
      "          'ron': 1,\n",
      "          'howard': 1,\n",
      "          'makers': 1,\n",
      "          'directors': 1,\n",
      "          'well': 1,\n",
      "          'nde': 1,\n",
      "          'seems': 1,\n",
      "          'forgotten': 1,\n",
      "          'nthis': 1,\n",
      "          'mentallychallenged': 1,\n",
      "          'filmmaking': 1,\n",
      "          'wont': 1,\n",
      "          'explain': 1,\n",
      "          'everything': 1,\n",
      "          'five': 1,\n",
      "          'times': 1,\n",
      "          'nfourthgraders': 1,\n",
      "          'may': 1,\n",
      "          'appreciate': 1,\n",
      "          'intelligence': 1,\n",
      "          'insulted': 1,\n",
      "          'principal': 1,\n",
      "          'actors': 1,\n",
      "          'sleepwalk': 1,\n",
      "          'never': 1,\n",
      "          'managing': 1,\n",
      "          'apparent': 1,\n",
      "          'im': 1,\n",
      "          'paycheck': 1,\n",
      "          'attitude': 1,\n",
      "          'ncheadle': 1,\n",
      "          'stumbles': 1,\n",
      "          'awkward': 1,\n",
      "          'lines': 1,\n",
      "          'narmin': 1,\n",
      "          'muellerstahl': 1,\n",
      "          'thoroughly': 1,\n",
      "          'embarrass': 1,\n",
      "          'unbilled': 1,\n",
      "          'cameo': 1,\n",
      "          'nrobbins': 1,\n",
      "          'puts': 1,\n",
      "          'game': 1,\n",
      "          'face': 1,\n",
      "          'phones': 1,\n",
      "          'standard': 1,\n",
      "          'decent': 1,\n",
      "          'guy': 1,\n",
      "          'performance': 1,\n",
      "          'hams': 1,\n",
      "          'wistful': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'watching': 1,\n",
      "          'tapes': 1,\n",
      "          'dead': 1,\n",
      "          'played': 1,\n",
      "          'kim': 1,\n",
      "          'delaney': 1,\n",
      "          'still': 1,\n",
      "          'deliver': 1,\n",
      "          'ridiculous': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'monologue': 1,\n",
      "          'meaning': 1,\n",
      "          'especially': 1,\n",
      "          'stolenfromnolessthanthreemovies': 1,\n",
      "          'lollipop': 1,\n",
      "          'whoever': 1,\n",
      "          'names': 1,\n",
      "          'conclusion': 1,\n",
      "          'combines': 1,\n",
      "          'endless': 1,\n",
      "          'explanation': 1,\n",
      "          'subpar': 1,\n",
      "          'cgi': 1,\n",
      "          'effects': 1,\n",
      "          'gagging': 1,\n",
      "          'sentimentality': 1,\n",
      "          'alienate': 1,\n",
      "          'enjoying': 1,\n",
      "          'entirely': 1,\n",
      "          'unknown': 1,\n",
      "          'world': 1,\n",
      "          'nit': 1,\n",
      "          'could': 1,\n",
      "          'said': 1,\n",
      "          'fans': 1,\n",
      "          'brainless': 1,\n",
      "          'action': 1,\n",
      "          'comment': 1,\n",
      "          'ignores': 1,\n",
      "          'incredibly': 1,\n",
      "          'slowgoing': 1,\n",
      "          'nleisurely': 1,\n",
      "          'pacing': 1,\n",
      "          'helped': 1,\n",
      "          'stolen': 1,\n",
      "          'dealt': 1,\n",
      "          'ideas': 1,\n",
      "          'much': 1,\n",
      "          'thoughtful': 1,\n",
      "          'fashion': 1,\n",
      "          'generally': 1,\n",
      "          'contained': 1,\n",
      "          'engaging': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'intended': 1,\n",
      "          'choke': 1,\n",
      "          'decides': 1,\n",
      "          'end': 1,\n",
      "          'totally': 1,\n",
      "          'onecharacterdecidesnottoreturn': 1,\n",
      "          'ending': 1,\n",
      "          'suspect': 1,\n",
      "          'either': 1,\n",
      "          'laughing': 1,\n",
      "          'groaning': 1,\n",
      "          'nme': 1,\n",
      "          'alternated': 1,\n",
      "          'two': 1,\n",
      "          'good': 1,\n",
      "          'finally': 1,\n",
      "          'ends': 1,\n",
      "          'movie': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'nthe': 8,\n",
      "          'movie': 5,\n",
      "          'goodman': 4,\n",
      "          'work': 4,\n",
      "          'adams': 4,\n",
      "          'sphere': 4,\n",
      "          'na': 4,\n",
      "          'one': 4,\n",
      "          'doesnt': 4,\n",
      "          'science': 3,\n",
      "          'fiction': 3,\n",
      "          'actors': 3,\n",
      "          'nwhen': 3,\n",
      "          'team': 3,\n",
      "          'ship': 3,\n",
      "          'n': 3,\n",
      "          'alien': 3,\n",
      "          'jerry': 3,\n",
      "          'nthis': 3,\n",
      "          'squid': 3,\n",
      "          'scenes': 3,\n",
      "          'much': 3,\n",
      "          'neven': 3,\n",
      "          'never': 3,\n",
      "          'nothing': 3,\n",
      "          'could': 3,\n",
      "          'michael': 2,\n",
      "          'redman': 2,\n",
      "          'experiences': 2,\n",
      "          'occur': 2,\n",
      "          'thinking': 2,\n",
      "          'called': 2,\n",
      "          'ocean': 2,\n",
      "          'plane': 2,\n",
      "          '000': 2,\n",
      "          'surface': 2,\n",
      "          'first': 2,\n",
      "          'contact': 2,\n",
      "          'scientists': 2,\n",
      "          'group': 2,\n",
      "          'report': 2,\n",
      "          'turns': 2,\n",
      "          'named': 2,\n",
      "          'storm': 2,\n",
      "          'name': 2,\n",
      "          'screen': 2,\n",
      "          'situation': 2,\n",
      "          'jellyfish': 2,\n",
      "          'sea': 2,\n",
      "          'snakes': 2,\n",
      "          'even': 2,\n",
      "          'far': 2,\n",
      "          'levinson': 2,\n",
      "          'audience': 2,\n",
      "          'nits': 2,\n",
      "          'still': 2,\n",
      "          'nafter': 2,\n",
      "          'ntheres': 2,\n",
      "          'must': 2,\n",
      "          'ending': 2,\n",
      "          'explained': 2,\n",
      "          'already': 2,\n",
      "          'difficult': 2,\n",
      "          'underwater': 1,\n",
      "          'stays': 1,\n",
      "          'submerged': 1,\n",
      "          'nsphere': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1998': 1,\n",
      "          'none': 1,\n",
      "          'unpleasant': 1,\n",
      "          'theater': 1,\n",
      "          'cast': 1,\n",
      "          'fine': 1,\n",
      "          'end': 1,\n",
      "          'wastes': 1,\n",
      "          'talents': 1,\n",
      "          'nyou': 1,\n",
      "          'keep': 1,\n",
      "          'might': 1,\n",
      "          'accomplished': 1,\n",
      "          'time': 1,\n",
      "          'squandered': 1,\n",
      "          'npsychologist': 1,\n",
      "          'norman': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'middle': 1,\n",
      "          'pacific': 1,\n",
      "          'survivors': 1,\n",
      "          'crash': 1,\n",
      "          'arrives': 1,\n",
      "          'site': 1,\n",
      "          'discovers': 1,\n",
      "          'rather': 1,\n",
      "          'enormous': 1,\n",
      "          'spacecraft': 1,\n",
      "          'sitting': 1,\n",
      "          '1': 1,\n",
      "          'feet': 1,\n",
      "          'almost': 1,\n",
      "          '300': 1,\n",
      "          'years': 1,\n",
      "          'nhaving': 1,\n",
      "          'written': 1,\n",
      "          'paper': 1,\n",
      "          'bush': 1,\n",
      "          'administration': 1,\n",
      "          'handle': 1,\n",
      "          'chosen': 1,\n",
      "          'head': 1,\n",
      "          'investigating': 1,\n",
      "          'nhis': 1,\n",
      "          'outlined': 1,\n",
      "          'consists': 1,\n",
      "          'beth': 1,\n",
      "          'halperin': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'biochemist': 1,\n",
      "          'harry': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'mathematician': 1,\n",
      "          'ted': 1,\n",
      "          'fielding': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'astrophysicist': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'writing': 1,\n",
      "          'blowoff': 1,\n",
      "          'project': 1,\n",
      "          'money': 1,\n",
      "          'thencolleagues': 1,\n",
      "          'explains': 1,\n",
      "          'reads': 1,\n",
      "          'government': 1,\n",
      "          'documents': 1,\n",
      "          'nlead': 1,\n",
      "          'harold': 1,\n",
      "          'barnes': 1,\n",
      "          'peter': 1,\n",
      "          'coyote': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          'federal': 1,\n",
      "          'operative': 1,\n",
      "          'descends': 1,\n",
      "          'mobile': 1,\n",
      "          'undersea': 1,\n",
      "          'headquarters': 1,\n",
      "          'set': 1,\n",
      "          'next': 1,\n",
      "          'vessel': 1,\n",
      "          'nonce': 1,\n",
      "          'stroll': 1,\n",
      "          'knock': 1,\n",
      "          'door': 1,\n",
      "          'explore': 1,\n",
      "          'stilloperational': 1,\n",
      "          'ufo': 1,\n",
      "          'ndiscovering': 1,\n",
      "          'surprising': 1,\n",
      "          'origin': 1,\n",
      "          'crew': 1,\n",
      "          'finds': 1,\n",
      "          'astonishing': 1,\n",
      "          'gigantic': 1,\n",
      "          'golden': 1,\n",
      "          'liquid': 1,\n",
      "          'metal': 1,\n",
      "          'enters': 1,\n",
      "          'weirdness': 1,\n",
      "          'unfolds': 1,\n",
      "          'rolls': 1,\n",
      "          'forced': 1,\n",
      "          'remain': 1,\n",
      "          'unseen': 1,\n",
      "          'presence': 1,\n",
      "          'begins': 1,\n",
      "          'communicate': 1,\n",
      "          'computer': 1,\n",
      "          'ni': 1,\n",
      "          'happy': 1,\n",
      "          'flashes': 1,\n",
      "          'across': 1,\n",
      "          'unsettling': 1,\n",
      "          'psychologist': 1,\n",
      "          'happens': 1,\n",
      "          'gets': 1,\n",
      "          'mad': 1,\n",
      "          'asks': 1,\n",
      "          'nbarnes': 1,\n",
      "          'pragmatic': 1,\n",
      "          'needs': 1,\n",
      "          'last': 1,\n",
      "          'cant': 1,\n",
      "          'put': 1,\n",
      "          'made': 1,\n",
      "          'nthen': 1,\n",
      "          'bad': 1,\n",
      "          'ndeadly': 1,\n",
      "          'beasts': 1,\n",
      "          'appear': 1,\n",
      "          'nowhere': 1,\n",
      "          'gang': 1,\n",
      "          'kills': 1,\n",
      "          'navy': 1,\n",
      "          'personnel': 1,\n",
      "          'nlethal': 1,\n",
      "          'attack': 1,\n",
      "          'giant': 1,\n",
      "          'batters': 1,\n",
      "          'habitat': 1,\n",
      "          'reading': 1,\n",
      "          '20': 1,\n",
      "          'leagues': 1,\n",
      "          'suspicious': 1,\n",
      "          'turn': 1,\n",
      "          'makings': 1,\n",
      "          'firstrate': 1,\n",
      "          'mans': 1,\n",
      "          'nhowever': 1,\n",
      "          'finest': 1,\n",
      "          'ingredients': 1,\n",
      "          'dont': 1,\n",
      "          'go': 1,\n",
      "          'hands': 1,\n",
      "          'chief': 1,\n",
      "          'seem': 1,\n",
      "          'care': 1,\n",
      "          'product': 1,\n",
      "          'ndirector': 1,\n",
      "          'barry': 1,\n",
      "          'churned': 1,\n",
      "          'mishmosh': 1,\n",
      "          'engage': 1,\n",
      "          'beyond': 1,\n",
      "          'skillful': 1,\n",
      "          'suspense': 1,\n",
      "          'zooms': 1,\n",
      "          'players': 1,\n",
      "          'introduced': 1,\n",
      "          'without': 1,\n",
      "          'characterization': 1,\n",
      "          'justification': 1,\n",
      "          'like': 1,\n",
      "          'speedreading': 1,\n",
      "          'novel': 1,\n",
      "          'realizing': 1,\n",
      "          'missed': 1,\n",
      "          'nuances': 1,\n",
      "          'nit': 1,\n",
      "          'get': 1,\n",
      "          'better': 1,\n",
      "          'action': 1,\n",
      "          'begin': 1,\n",
      "          'nwhile': 1,\n",
      "          'adequate': 1,\n",
      "          'job': 1,\n",
      "          'limited': 1,\n",
      "          'roles': 1,\n",
      "          'people': 1,\n",
      "          'flat': 1,\n",
      "          'noddly': 1,\n",
      "          'hardly': 1,\n",
      "          'reactions': 1,\n",
      "          'deaths': 1,\n",
      "          'around': 1,\n",
      "          'interior': 1,\n",
      "          'bothers': 1,\n",
      "          'ask': 1,\n",
      "          'happened': 1,\n",
      "          'ntheir': 1,\n",
      "          'history': 1,\n",
      "          'together': 1,\n",
      "          'intriguing': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'barely': 1,\n",
      "          'exploited': 1,\n",
      "          'halperins': 1,\n",
      "          'illconceived': 1,\n",
      "          'affair': 1,\n",
      "          'student': 1,\n",
      "          'mentioned': 1,\n",
      "          'passing': 1,\n",
      "          'nher': 1,\n",
      "          'psychotic': 1,\n",
      "          'tendencies': 1,\n",
      "          'talked': 1,\n",
      "          'convincing': 1,\n",
      "          'truism': 1,\n",
      "          'items': 1,\n",
      "          'shown': 1,\n",
      "          'early': 1,\n",
      "          'used': 1,\n",
      "          'obvious': 1,\n",
      "          'emergency': 1,\n",
      "          'minisub': 1,\n",
      "          'know': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'affectations': 1,\n",
      "          'distracting': 1,\n",
      "          'nchapter': 1,\n",
      "          'headings': 1,\n",
      "          'divide': 1,\n",
      "          'function': 1,\n",
      "          'shaky': 1,\n",
      "          'camera': 1,\n",
      "          'muddies': 1,\n",
      "          'perplexing': 1,\n",
      "          'chaos': 1,\n",
      "          'nmuch': 1,\n",
      "          'goes': 1,\n",
      "          'confusing': 1,\n",
      "          'follow': 1,\n",
      "          'nalthough': 1,\n",
      "          'disorientation': 1,\n",
      "          'eventually': 1,\n",
      "          'understandable': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'isnt': 1,\n",
      "          'internally': 1,\n",
      "          'consistent': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'nare': 1,\n",
      "          'manifestations': 1,\n",
      "          'real': 1,\n",
      "          'kill': 1,\n",
      "          'queen': 1,\n",
      "          'latifa': 1,\n",
      "          'throwaway': 1,\n",
      "          'role': 1,\n",
      "          'nearly': 1,\n",
      "          'destroys': 1,\n",
      "          'outpost': 1,\n",
      "          'bites': 1,\n",
      "          'fatal': 1,\n",
      "          'effect': 1,\n",
      "          'scene': 1,\n",
      "          'sub': 1,\n",
      "          'suggests': 1,\n",
      "          'illusion': 1,\n",
      "          'earlier': 1,\n",
      "          'episodes': 1,\n",
      "          'indicate': 1,\n",
      "          'nnot': 1,\n",
      "          'everything': 1,\n",
      "          'death': 1,\n",
      "          'major': 1,\n",
      "          'questions': 1,\n",
      "          'answers': 1,\n",
      "          'nwhere': 1,\n",
      "          'came': 1,\n",
      "          'clarified': 1,\n",
      "          'ended': 1,\n",
      "          'floor': 1,\n",
      "          '1709': 1,\n",
      "          'merely': 1,\n",
      "          'alluded': 1,\n",
      "          'enigmatic': 1,\n",
      "          'mysterious': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'climax': 1,\n",
      "          'followed': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'epilogue': 1,\n",
      "          'little': 1,\n",
      "          'weaken': 1,\n",
      "          'labored': 1,\n",
      "          'tale': 1,\n",
      "          'prerelease': 1,\n",
      "          'testing': 1,\n",
      "          'back': 1,\n",
      "          'reshoot': 1,\n",
      "          'imagine': 1,\n",
      "          'original': 1,\n",
      "          'worse': 1,\n",
      "          'nfollowing': 1,\n",
      "          'recent': 1,\n",
      "          'tradition': 1,\n",
      "          'lengthy': 1,\n",
      "          'films': 1,\n",
      "          'weighs': 1,\n",
      "          'two': 1,\n",
      "          'long': 1,\n",
      "          'hours': 1,\n",
      "          'weak': 1,\n",
      "          'cut': 1,\n",
      "          'wouldnt': 1,\n",
      "          'left': 1,\n",
      "          'supposedly': 1,\n",
      "          'held': 1,\n",
      "          'effects': 1,\n",
      "          'theres': 1,\n",
      "          'special': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'monstrous': 1,\n",
      "          'menacing': 1,\n",
      "          'nstealing': 1,\n",
      "          'abyss': 1,\n",
      "          'disastrous': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'learned': 1,\n",
      "          'nremarkably': 1,\n",
      "          'hoffmans': 1,\n",
      "          'currently': 1,\n",
      "          'showing': 1,\n",
      "          'wag': 1,\n",
      "          'dog': 1,\n",
      "          'smart': 1,\n",
      "          'entertaining': 1,\n",
      "          'piece': 1,\n",
      "          'titled': 1,\n",
      "          'sans': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'word': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'van': 7,\n",
      "          'damme': 7,\n",
      "          'action': 6,\n",
      "          '_knock_off_': 5,\n",
      "          'visual': 4,\n",
      "          'camera': 4,\n",
      "          'hong': 3,\n",
      "          'tsui': 3,\n",
      "          '_double_team_': 3,\n",
      "          'make': 3,\n",
      "          'ntsui': 3,\n",
      "          'jeans': 3,\n",
      "          'cia': 3,\n",
      "          'laughs': 3,\n",
      "          'though': 3,\n",
      "          'kong': 2,\n",
      "          'continues': 2,\n",
      "          'razzle': 2,\n",
      "          'dazzle': 2,\n",
      "          'best': 2,\n",
      "          'performances': 2,\n",
      "          'fairly': 2,\n",
      "          'isnt': 2,\n",
      "          'much': 2,\n",
      "          'little': 2,\n",
      "          'nvan': 2,\n",
      "          'marcus': 2,\n",
      "          'company': 2,\n",
      "          'scheme': 2,\n",
      "          'bombs': 2,\n",
      "          'hk': 2,\n",
      "          'electronic': 2,\n",
      "          'nits': 2,\n",
      "          'screen': 2,\n",
      "          'showing': 2,\n",
      "          'world': 2,\n",
      "          'dammes': 2,\n",
      "          'acting': 2,\n",
      "          'usual': 2,\n",
      "          'desouza': 2,\n",
      "          'actually': 2,\n",
      "          'entire': 2,\n",
      "          'movie': 2,\n",
      "          'coming': 2,\n",
      "          'one': 2,\n",
      "          'scene': 2,\n",
      "          'tsuis': 2,\n",
      "          'nfor': 2,\n",
      "          'trick': 2,\n",
      "          'going': 2,\n",
      "          'hand': 2,\n",
      "          'would': 2,\n",
      "          'something': 2,\n",
      "          'sequences': 2,\n",
      "          'fight': 2,\n",
      "          'anything': 2,\n",
      "          'nif': 2,\n",
      "          'renowned': 1,\n",
      "          'director': 1,\n",
      "          'hark': 1,\n",
      "          'first': 1,\n",
      "          'teamed': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'stars': 1,\n",
      "          '1997': 1,\n",
      "          'pairing': 1,\n",
      "          'dennis': 1,\n",
      "          'rodman': 1,\n",
      "          'managed': 1,\n",
      "          'initially': 1,\n",
      "          'appeared': 1,\n",
      "          'disaster': 1,\n",
      "          'slick': 1,\n",
      "          'stylish': 1,\n",
      "          'somewhat': 1,\n",
      "          'diverting': 1,\n",
      "          'timekiller': 1,\n",
      "          'energetically': 1,\n",
      "          'pile': 1,\n",
      "          'latest': 1,\n",
      "          'collaboration': 1,\n",
      "          'muscles': 1,\n",
      "          'brussels': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'style': 1,\n",
      "          'neither': 1,\n",
      "          'save': 1,\n",
      "          'script': 1,\n",
      "          'ridiculous': 1,\n",
      "          'worst': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'hide': 1,\n",
      "          'host': 1,\n",
      "          'truly': 1,\n",
      "          'lousy': 1,\n",
      "          'nwriter': 1,\n",
      "          'steven': 1,\n",
      "          'e': 1,\n",
      "          'desouzas': 1,\n",
      "          'straightforward': 1,\n",
      "          'plotline': 1,\n",
      "          'outre': 1,\n",
      "          '_double_team_s': 1,\n",
      "          'strange': 1,\n",
      "          'yarn': 1,\n",
      "          'involving': 1,\n",
      "          'secret': 1,\n",
      "          'think': 1,\n",
      "          'tankprison': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'plays': 1,\n",
      "          'ray': 1,\n",
      "          'kongbased': 1,\n",
      "          'sales': 1,\n",
      "          'rep': 1,\n",
      "          'stumbles': 1,\n",
      "          'upon': 1,\n",
      "          'russian': 1,\n",
      "          'terrorist': 1,\n",
      "          'implant': 1,\n",
      "          'powerful': 1,\n",
      "          'microchipsized': 1,\n",
      "          'product': 1,\n",
      "          'exports': 1,\n",
      "          'u': 1,\n",
      "          'dolls': 1,\n",
      "          'equipment': 1,\n",
      "          'yes': 1,\n",
      "          'part': 1,\n",
      "          'type': 1,\n",
      "          'ransom': 1,\n",
      "          'remember': 1,\n",
      "          'isand': 1,\n",
      "          'kid': 1,\n",
      "          'notgraphics': 1,\n",
      "          'computer': 1,\n",
      "          'map': 1,\n",
      "          'detonating': 1,\n",
      "          'hatwearing': 1,\n",
      "          'figure': 1,\n",
      "          'side': 1,\n",
      "          'bursting': 1,\n",
      "          'laughter': 1,\n",
      "          'n': 1,\n",
      "          'crowd': 1,\n",
      "          'attended': 1,\n",
      "          'spontaneously': 1,\n",
      "          'throughout': 1,\n",
      "          'nwhile': 1,\n",
      "          'films': 1,\n",
      "          'share': 1,\n",
      "          'unintentional': 1,\n",
      "          'mostly': 1,\n",
      "          'due': 1,\n",
      "          'stiff': 1,\n",
      "          'skills': 1,\n",
      "          'physically': 1,\n",
      "          'agile': 1,\n",
      "          'delivers': 1,\n",
      "          'many': 1,\n",
      "          'embarrassing': 1,\n",
      "          'directorial': 1,\n",
      "          'effort': 1,\n",
      "          '1996s': 1,\n",
      "          '_the_quest_': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'earned': 1,\n",
      "          'particularly': 1,\n",
      "          'painful': 1,\n",
      "          'lines': 1,\n",
      "          'smoked': 1,\n",
      "          'badass': 1,\n",
      "          'like': 1,\n",
      "          'roman': 1,\n",
      "          'candle': 1,\n",
      "          'nand': 1,\n",
      "          'entrepreneurship': 1,\n",
      "          'babycakes': 1,\n",
      "          'nstanding': 1,\n",
      "          'among': 1,\n",
      "          'favorites': 1,\n",
      "          'nbut': 1,\n",
      "          'indeed': 1,\n",
      "          'pathetic': 1,\n",
      "          'provide': 1,\n",
      "          'bulk': 1,\n",
      "          '_knock_off_s': 1,\n",
      "          'true': 1,\n",
      "          'laughable': 1,\n",
      "          'form': 1,\n",
      "          'perhaps': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'nearly': 1,\n",
      "          'scenes': 1,\n",
      "          '_require_': 1,\n",
      "          'funny': 1,\n",
      "          'costar': 1,\n",
      "          'rob': 1,\n",
      "          'schneider': 1,\n",
      "          'improbably': 1,\n",
      "          'cast': 1,\n",
      "          'deep': 1,\n",
      "          'cover': 1,\n",
      "          'agent': 1,\n",
      "          'posing': 1,\n",
      "          'marcuss': 1,\n",
      "          'business': 1,\n",
      "          'partner': 1,\n",
      "          'sight': 1,\n",
      "          'sound': 1,\n",
      "          'stillheavilyaccented': 1,\n",
      "          'haplessly': 1,\n",
      "          'trying': 1,\n",
      "          'drop': 1,\n",
      "          'punchlines': 1,\n",
      "          'hilarious': 1,\n",
      "          'wrong': 1,\n",
      "          'way': 1,\n",
      "          'neven': 1,\n",
      "          'typically': 1,\n",
      "          'good': 1,\n",
      "          'actors': 1,\n",
      "          'immune': 1,\n",
      "          'bad': 1,\n",
      "          'bug': 1,\n",
      "          'npaul': 1,\n",
      "          'sorvino': 1,\n",
      "          'unconvincing': 1,\n",
      "          'terribly': 1,\n",
      "          'overwrought': 1,\n",
      "          'schneiders': 1,\n",
      "          'superior': 1,\n",
      "          'lela': 1,\n",
      "          'rochon': 1,\n",
      "          'playing': 1,\n",
      "          'investigator': 1,\n",
      "          'spends': 1,\n",
      "          'perpetual': 1,\n",
      "          'snarl': 1,\n",
      "          'mode': 1,\n",
      "          'nin': 1,\n",
      "          'rochons': 1,\n",
      "          'defense': 1,\n",
      "          'role': 1,\n",
      "          'requires': 1,\n",
      "          'display': 1,\n",
      "          'toned': 1,\n",
      "          'legs': 1,\n",
      "          'exquisite': 1,\n",
      "          'bone': 1,\n",
      "          'structure': 1,\n",
      "          'perky': 1,\n",
      "          'bosoms': 1,\n",
      "          'latter': 1,\n",
      "          'handy': 1,\n",
      "          'key': 1,\n",
      "          'must': 1,\n",
      "          'fish': 1,\n",
      "          'microbombs': 1,\n",
      "          'stuck': 1,\n",
      "          'ample': 1,\n",
      "          'cleavage': 1,\n",
      "          'picks': 1,\n",
      "          'left': 1,\n",
      "          'visually': 1,\n",
      "          'juicing': 1,\n",
      "          'proceedings': 1,\n",
      "          'inventive': 1,\n",
      "          'work': 1,\n",
      "          'nhere': 1,\n",
      "          'borders': 1,\n",
      "          'kill': 1,\n",
      "          'desperate': 1,\n",
      "          'attempts': 1,\n",
      "          'shield': 1,\n",
      "          'inanity': 1,\n",
      "          'enterprise': 1,\n",
      "          'nifty': 1,\n",
      "          'pulls': 1,\n",
      "          'recurring': 1,\n",
      "          'theme': 1,\n",
      "          'literally': 1,\n",
      "          'circuitry': 1,\n",
      "          'devices': 1,\n",
      "          'others': 1,\n",
      "          'completely': 1,\n",
      "          'superfluous': 1,\n",
      "          'nthis': 1,\n",
      "          'especially': 1,\n",
      "          'disconcerting': 1,\n",
      "          'question': 1,\n",
      "          'could': 1,\n",
      "          'clever': 1,\n",
      "          'used': 1,\n",
      "          'right': 1,\n",
      "          'context': 1,\n",
      "          'instance': 1,\n",
      "          'early': 1,\n",
      "          'putting': 1,\n",
      "          'box': 1,\n",
      "          'nas': 1,\n",
      "          'puts': 1,\n",
      "          'shown': 1,\n",
      "          'overhead': 1,\n",
      "          'angle': 1,\n",
      "          'rectangle': 1,\n",
      "          'corner': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'interesting': 1,\n",
      "          'nice': 1,\n",
      "          'use': 1,\n",
      "          'amounted': 1,\n",
      "          'nthe': 1,\n",
      "          'test': 1,\n",
      "          'boils': 1,\n",
      "          'surprisingly': 1,\n",
      "          'leave': 1,\n",
      "          'desired': 1,\n",
      "          'employing': 1,\n",
      "          'freeze': 1,\n",
      "          'frames': 1,\n",
      "          'blurred': 1,\n",
      "          'motion': 1,\n",
      "          'unconventional': 1,\n",
      "          'angles': 1,\n",
      "          'nothing': 1,\n",
      "          'fundamentally': 1,\n",
      "          'special': 1,\n",
      "          'generic': 1,\n",
      "          'chase': 1,\n",
      "          'written': 1,\n",
      "          'nthere': 1,\n",
      "          'preposterously': 1,\n",
      "          'amusing': 1,\n",
      "          'climactic': 1,\n",
      "          'tigerland': 1,\n",
      "          'mine': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'remotely': 1,\n",
      "          'close': 1,\n",
      "          'legendary': 1,\n",
      "          'works': 1,\n",
      "          'thats': 1,\n",
      "          'given': 1,\n",
      "          'hope': 1,\n",
      "          'approaching': 1,\n",
      "          'countryman': 1,\n",
      "          'john': 1,\n",
      "          'woos': 1,\n",
      "          'stateside': 1,\n",
      "          'success': 1,\n",
      "          'break': 1,\n",
      "          'free': 1,\n",
      "          'nbefore': 1,\n",
      "          'late': 1,\n",
      "          'involvement': 1,\n",
      "          'bgrade': 1,\n",
      "          'movies': 1,\n",
      "          'respect': 1,\n",
      "          'fans': 1,\n",
      "          'continue': 1,\n",
      "          'diminish': 1,\n",
      "          'nthat': 1,\n",
      "          'hasnt': 1,\n",
      "          'already': 1,\n",
      "          'disappeared': 1,\n",
      "          'entirely': 1,\n",
      "          'fiasco': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'films': 7,\n",
      "          'n': 5,\n",
      "          'zucker': 4,\n",
      "          'brothers': 4,\n",
      "          'hard': 3,\n",
      "          'manages': 3,\n",
      "          'right': 3,\n",
      "          'nwhat': 3,\n",
      "          'film': 3,\n",
      "          'nthe': 3,\n",
      "          'time': 3,\n",
      "          'none': 3,\n",
      "          'nspy': 2,\n",
      "          'steal': 2,\n",
      "          'almost': 2,\n",
      "          'stuff': 2,\n",
      "          'little': 2,\n",
      "          'dick': 2,\n",
      "          'nielsen': 2,\n",
      "          'world': 2,\n",
      "          'goal': 2,\n",
      "          'spoof': 2,\n",
      "          'james': 2,\n",
      "          'type': 2,\n",
      "          'spoofing': 2,\n",
      "          'funny': 2,\n",
      "          'least': 2,\n",
      "          'used': 2,\n",
      "          'context': 2,\n",
      "          'much': 2,\n",
      "          'spy': 2,\n",
      "          'upon': 1,\n",
      "          'first': 1,\n",
      "          'viewing': 1,\n",
      "          'movie': 1,\n",
      "          'phrases': 1,\n",
      "          'done': 1,\n",
      "          'come': 1,\n",
      "          'quickly': 1,\n",
      "          'mind': 1,\n",
      "          'every': 1,\n",
      "          'joke': 1,\n",
      "          'popular': 1,\n",
      "          'airplane': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'series': 1,\n",
      "          'nstealing': 1,\n",
      "          'profitable': 1,\n",
      "          'industry': 1,\n",
      "          'plot': 1,\n",
      "          'involves': 1,\n",
      "          'steele': 1,\n",
      "          'aka': 1,\n",
      "          'nagent': 1,\n",
      "          'wd40': 1,\n",
      "          'leslie': 1,\n",
      "          'trying': 1,\n",
      "          'save': 1,\n",
      "          'deranged': 1,\n",
      "          'madman': 1,\n",
      "          'played': 1,\n",
      "          'andy': 1,\n",
      "          'griffith': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'mainly': 1,\n",
      "          'bond': 1,\n",
      "          'also': 1,\n",
      "          'hit': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'sister': 1,\n",
      "          'act': 1,\n",
      "          'trick': 1,\n",
      "          'actually': 1,\n",
      "          'satirical': 1,\n",
      "          'achieves': 1,\n",
      "          'neither': 1,\n",
      "          'borrows': 1,\n",
      "          'wrong': 1,\n",
      "          'elements': 1,\n",
      "          'superior': 1,\n",
      "          'danger': 1,\n",
      "          'nwell': 1,\n",
      "          'big': 1,\n",
      "          'roundish': 1,\n",
      "          'ball': 1,\n",
      "          'floating': 1,\n",
      "          'space': 1,\n",
      "          'around': 1,\n",
      "          'sun': 1,\n",
      "          'im': 1,\n",
      "          'paraphrasing': 1,\n",
      "          'exchange': 1,\n",
      "          'four': 1,\n",
      "          'times': 1,\n",
      "          'opening': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'getting': 1,\n",
      "          'progressively': 1,\n",
      "          'less': 1,\n",
      "          'stolen': 1,\n",
      "          'background': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'effective': 1,\n",
      "          'writing': 1,\n",
      "          'dialogue': 1,\n",
      "          'ndirector': 1,\n",
      "          'rick': 1,\n",
      "          'friedberg': 1,\n",
      "          'focuses': 1,\n",
      "          'mug': 1,\n",
      "          'shots': 1,\n",
      "          'actors': 1,\n",
      "          'especially': 1,\n",
      "          'quite': 1,\n",
      "          'well': 1,\n",
      "          'delivery': 1,\n",
      "          'lines': 1,\n",
      "          'cutting': 1,\n",
      "          'punchline': 1,\n",
      "          'short': 1,\n",
      "          'whole': 1,\n",
      "          'seems': 1,\n",
      "          'race': 1,\n",
      "          'evident': 1,\n",
      "          'final': 1,\n",
      "          'sequence': 1,\n",
      "          'comedic': 1,\n",
      "          'denouement': 1,\n",
      "          'climax': 1,\n",
      "          'nas': 1,\n",
      "          'usual': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'tend': 1,\n",
      "          'replace': 1,\n",
      "          'amusing': 1,\n",
      "          'captain': 1,\n",
      "          'enterprise': 1,\n",
      "          'nt': 1,\n",
      "          'kirk': 1,\n",
      "          'noverall': 1,\n",
      "          'thought': 1,\n",
      "          'weak': 1,\n",
      "          'effort': 1,\n",
      "          'nwhile': 1,\n",
      "          'chosen': 1,\n",
      "          'methods': 1,\n",
      "          'nnext': 1,\n",
      "          'bit': 1,\n",
      "          'harder': 1,\n",
      "          'excellent': 1,\n",
      "          'kind': 1,\n",
      "          'nmust': 1,\n",
      "          'see': 1,\n",
      "          'entertaining': 1,\n",
      "          'nworth': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'fair': 1,\n",
      "          'nnothing': 1,\n",
      "          'special': 1,\n",
      "          'thinking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'movie': 7,\n",
      "          'plot': 5,\n",
      "          'boring': 4,\n",
      "          'jones': 4,\n",
      "          'alien': 4,\n",
      "          'old': 3,\n",
      "          'minutes': 3,\n",
      "          'original': 3,\n",
      "          'bug': 3,\n",
      "          'see': 3,\n",
      "          'even': 3,\n",
      "          'first': 2,\n",
      "          'great': 2,\n",
      "          'na': 2,\n",
      "          'real': 2,\n",
      "          '90': 2,\n",
      "          'films': 2,\n",
      "          'black': 2,\n",
      "          'saw': 2,\n",
      "          'gas': 2,\n",
      "          'lee': 2,\n",
      "          'smith': 2,\n",
      "          'nthe': 2,\n",
      "          'ridiculous': 2,\n",
      "          'earth': 2,\n",
      "          'galaxy': 2,\n",
      "          'ni': 2,\n",
      "          'one': 2,\n",
      "          'also': 2,\n",
      "          'nand': 2,\n",
      "          'lover': 2,\n",
      "          'dont': 2,\n",
      "          'nit': 2,\n",
      "          'aliens': 2,\n",
      "          'joness': 2,\n",
      "          'conscience': 2,\n",
      "          'wanting': 2,\n",
      "          'impressions': 1,\n",
      "          'critically': 1,\n",
      "          'closetoawful': 1,\n",
      "          'moneywise': 1,\n",
      "          'continue': 1,\n",
      "          'sometimesfunny': 1,\n",
      "          'sags': 1,\n",
      "          'lags': 1,\n",
      "          'oftentimes': 1,\n",
      "          'gets': 1,\n",
      "          'nan': 1,\n",
      "          'orginal': 1,\n",
      "          'grows': 1,\n",
      "          'fast': 1,\n",
      "          'none': 1,\n",
      "          'minute': 1,\n",
      "          'ive': 1,\n",
      "          'gotten': 1,\n",
      "          'bored': 1,\n",
      "          'nmen': 1,\n",
      "          'defied': 1,\n",
      "          'odds': 1,\n",
      "          'nwhen': 1,\n",
      "          'flick': 1,\n",
      "          '89': 1,\n",
      "          'long': 1,\n",
      "          'thought': 1,\n",
      "          'maybe': 1,\n",
      "          'poor': 1,\n",
      "          'attempt': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'type': 1,\n",
      "          'ran': 1,\n",
      "          'nhowever': 1,\n",
      "          'realize': 1,\n",
      "          'men': 1,\n",
      "          'run': 1,\n",
      "          'manages': 1,\n",
      "          'show': 1,\n",
      "          'idea': 1,\n",
      "          'summer': 1,\n",
      "          'audiences': 1,\n",
      "          'embraced': 1,\n",
      "          'becomes': 1,\n",
      "          '25': 1,\n",
      "          'ntommy': 1,\n",
      "          'play': 1,\n",
      "          'two': 1,\n",
      "          'government': 1,\n",
      "          'agents': 1,\n",
      "          'responsible': 1,\n",
      "          'keeping': 1,\n",
      "          'order': 1,\n",
      "          'society': 1,\n",
      "          'begins': 1,\n",
      "          'played': 1,\n",
      "          'weirdly': 1,\n",
      "          'vincent': 1,\n",
      "          'donofrio': 1,\n",
      "          'full': 1,\n",
      "          'metal': 1,\n",
      "          'jacket': 1,\n",
      "          'lands': 1,\n",
      "          'retrieve': 1,\n",
      "          'thats': 1,\n",
      "          'somewhere': 1,\n",
      "          'orions': 1,\n",
      "          'belt': 1,\n",
      "          'nanyway': 1,\n",
      "          'basic': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'stop': 1,\n",
      "          'getting': 1,\n",
      "          'higher': 1,\n",
      "          'power': 1,\n",
      "          'blow': 1,\n",
      "          'premise': 1,\n",
      "          'ridulous': 1,\n",
      "          'didnt': 1,\n",
      "          'like': 1,\n",
      "          'love': 1,\n",
      "          'plots': 1,\n",
      "          'nthis': 1,\n",
      "          'nbut': 1,\n",
      "          'director': 1,\n",
      "          'barry': 1,\n",
      "          'sonnenfeld': 1,\n",
      "          'something': 1,\n",
      "          'ruined': 1,\n",
      "          'made': 1,\n",
      "          'drag': 1,\n",
      "          'put': 1,\n",
      "          'unncessary': 1,\n",
      "          'elements': 1,\n",
      "          'found': 1,\n",
      "          'romance': 1,\n",
      "          'nwhenever': 1,\n",
      "          'donofrios': 1,\n",
      "          'stomp': 1,\n",
      "          'eat': 1,\n",
      "          'people': 1,\n",
      "          'got': 1,\n",
      "          'terribly': 1,\n",
      "          'nwhile': 1,\n",
      "          'smiths': 1,\n",
      "          'wisecracks': 1,\n",
      "          'fill': 1,\n",
      "          'gaps': 1,\n",
      "          'wasnt': 1,\n",
      "          'enough': 1,\n",
      "          'believe': 1,\n",
      "          'screenwriters': 1,\n",
      "          'elected': 1,\n",
      "          'subplot': 1,\n",
      "          'tommy': 1,\n",
      "          'missed': 1,\n",
      "          'former': 1,\n",
      "          'agent': 1,\n",
      "          'cant': 1,\n",
      "          'contact': 1,\n",
      "          'humans': 1,\n",
      "          'really': 1,\n",
      "          'satellite': 1,\n",
      "          'computer': 1,\n",
      "          'watching': 1,\n",
      "          'plant': 1,\n",
      "          'garden': 1,\n",
      "          'sentimental': 1,\n",
      "          'moment': 1,\n",
      "          'nnice': 1,\n",
      "          'try': 1,\n",
      "          'think': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'makes': 1,\n",
      "          'worry': 1,\n",
      "          'came': 1,\n",
      "          'action': 1,\n",
      "          'lots': 1,\n",
      "          'nmaybe': 1,\n",
      "          'unfair': 1,\n",
      "          'partly': 1,\n",
      "          'judged': 1,\n",
      "          'expectations': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'though': 1,\n",
      "          'parts': 1,\n",
      "          'indeed': 1,\n",
      "          'funny': 1,\n",
      "          'grew': 1,\n",
      "          'quick': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'five': 4,\n",
      "          'minutes': 4,\n",
      "          'nthe': 4,\n",
      "          'n': 4,\n",
      "          'time': 3,\n",
      "          'answer': 3,\n",
      "          'last': 3,\n",
      "          'characters': 3,\n",
      "          'isnt': 3,\n",
      "          'movies': 2,\n",
      "          'spend': 2,\n",
      "          'questions': 2,\n",
      "          'herzfelds': 2,\n",
      "          'days': 2,\n",
      "          'seemingly': 2,\n",
      "          'unrelated': 2,\n",
      "          'keep': 2,\n",
      "          'audience': 2,\n",
      "          'guessing': 2,\n",
      "          'becky': 2,\n",
      "          'next': 2,\n",
      "          'house': 2,\n",
      "          'vice': 2,\n",
      "          'wes': 2,\n",
      "          'rather': 2,\n",
      "          'teddy': 2,\n",
      "          'find': 2,\n",
      "          'good': 2,\n",
      "          'home': 2,\n",
      "          'dog': 2,\n",
      "          'though': 2,\n",
      "          'pose': 1,\n",
      "          'question': 1,\n",
      "          'first': 1,\n",
      "          'rest': 1,\n",
      "          'trying': 1,\n",
      "          'nthen': 1,\n",
      "          'whole': 1,\n",
      "          'posing': 1,\n",
      "          'try': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'john': 1,\n",
      "          'two': 1,\n",
      "          'valley': 1,\n",
      "          'falls': 1,\n",
      "          'latter': 1,\n",
      "          'category': 1,\n",
      "          'nweaving': 1,\n",
      "          'together': 1,\n",
      "          'grabbag': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'altmanesque': 1,\n",
      "          'series': 1,\n",
      "          'parallel': 1,\n",
      "          'stories': 1,\n",
      "          'nhitmen': 1,\n",
      "          'lee': 1,\n",
      "          'james': 1,\n",
      "          'spader': 1,\n",
      "          'partner': 1,\n",
      "          'dosmo': 1,\n",
      "          'danny': 1,\n",
      "          'aiello': 1,\n",
      "          'pop': 1,\n",
      "          'guy': 1,\n",
      "          'bed': 1,\n",
      "          'leaving': 1,\n",
      "          'drugged': 1,\n",
      "          'wife': 1,\n",
      "          'fox': 1,\n",
      "          'teri': 1,\n",
      "          'hatcher': 1,\n",
      "          'lying': 1,\n",
      "          'showing': 1,\n",
      "          'behind': 1,\n",
      "          'got': 1,\n",
      "          'nicely': 1,\n",
      "          'pricked': 1,\n",
      "          'nan': 1,\n",
      "          'understandeably': 1,\n",
      "          'shocked': 1,\n",
      "          'runs': 1,\n",
      "          'morning': 1,\n",
      "          'hailing': 1,\n",
      "          'couple': 1,\n",
      "          'cops': 1,\n",
      "          'jeff': 1,\n",
      "          'daniels': 1,\n",
      "          'eric': 1,\n",
      "          'stoltz': 1,\n",
      "          'na': 1,\n",
      "          'murder': 1,\n",
      "          'territory': 1,\n",
      "          'flirting': 1,\n",
      "          'asian': 1,\n",
      "          'prostitues': 1,\n",
      "          'would': 1,\n",
      "          'play': 1,\n",
      "          'inquisitive': 1,\n",
      "          'detective': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'washedup': 1,\n",
      "          'director': 1,\n",
      "          'paul': 1,\n",
      "          'mazursky': 1,\n",
      "          'end': 1,\n",
      "          'life': 1,\n",
      "          'nbut': 1,\n",
      "          'must': 1,\n",
      "          'nenter': 1,\n",
      "          'nurse': 1,\n",
      "          'audrey': 1,\n",
      "          'marsha': 1,\n",
      "          'mason': 1,\n",
      "          'takes': 1,\n",
      "          'ride': 1,\n",
      "          'nstuffy': 1,\n",
      "          'art': 1,\n",
      "          'dealer': 1,\n",
      "          'allan': 1,\n",
      "          'hopper': 1,\n",
      "          'greg': 1,\n",
      "          'cruttwell': 1,\n",
      "          'kidney': 1,\n",
      "          'stones': 1,\n",
      "          'nwhile': 1,\n",
      "          'struggling': 1,\n",
      "          'fancy': 1,\n",
      "          'switches': 1,\n",
      "          'moaning': 1,\n",
      "          'selfpity': 1,\n",
      "          'dropping': 1,\n",
      "          'condescending': 1,\n",
      "          'hints': 1,\n",
      "          'loyal': 1,\n",
      "          'secretarys': 1,\n",
      "          'glenne': 1,\n",
      "          'headly': 1,\n",
      "          'plain': 1,\n",
      "          'appearance': 1,\n",
      "          'ndont': 1,\n",
      "          'surprised': 1,\n",
      "          'asking': 1,\n",
      "          'hell': 1,\n",
      "          'going': 1,\n",
      "          'nyou': 1,\n",
      "          'might': 1,\n",
      "          'like': 1,\n",
      "          'feeling': 1,\n",
      "          'cluelessness': 1,\n",
      "          'nherzfeld': 1,\n",
      "          'course': 1,\n",
      "          'pieces': 1,\n",
      "          'neatly': 1,\n",
      "          'jigsaw': 1,\n",
      "          'puzzle': 1,\n",
      "          'assembled': 1,\n",
      "          'stunning': 1,\n",
      "          'means': 1,\n",
      "          'lack': 1,\n",
      "          'stature': 1,\n",
      "          'moral': 1,\n",
      "          'complexity': 1,\n",
      "          'altmans': 1,\n",
      "          'reallife': 1,\n",
      "          'heroes': 1,\n",
      "          'short': 1,\n",
      "          'cuts': 1,\n",
      "          'even': 1,\n",
      "          'interesting': 1,\n",
      "          'funny': 1,\n",
      "          'nfunny': 1,\n",
      "          'arent': 1,\n",
      "          'comparing': 1,\n",
      "          'likes': 1,\n",
      "          'tarantinos': 1,\n",
      "          'pulp': 1,\n",
      "          'chcaracters': 1,\n",
      "          'tieup': 1,\n",
      "          'tidy': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'squeaky': 1,\n",
      "          'clean': 1,\n",
      "          'resolution': 1,\n",
      "          'directors': 1,\n",
      "          'name': 1,\n",
      "          'nguy': 1,\n",
      "          'also': 1,\n",
      "          'seduction': 1,\n",
      "          'red': 1,\n",
      "          'rock': 1,\n",
      "          'west': 1,\n",
      "          'ntwo': 1,\n",
      "          'bad': 1,\n",
      "          'movie': 1,\n",
      "          'much': 1,\n",
      "          'else': 1,\n",
      "          'screenplay': 1,\n",
      "          'novelty': 1,\n",
      "          'linkage': 1,\n",
      "          'nitll': 1,\n",
      "          'alright': 1,\n",
      "          'wont': 1,\n",
      "          'remember': 1,\n",
      "          'answers': 1,\n",
      "          'credits': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'like': 8,\n",
      "          'nthe': 7,\n",
      "          'end': 5,\n",
      "          'days': 5,\n",
      "          'good': 5,\n",
      "          'great': 5,\n",
      "          'performance': 5,\n",
      "          'nwe': 4,\n",
      "          'go': 4,\n",
      "          'stigmata': 4,\n",
      "          'action': 4,\n",
      "          'budget': 4,\n",
      "          'new': 4,\n",
      "          'work': 4,\n",
      "          'could': 4,\n",
      "          'tunney': 3,\n",
      "          'rod': 3,\n",
      "          'stieger': 3,\n",
      "          'minutes': 3,\n",
      "          'know': 3,\n",
      "          'hit': 3,\n",
      "          'terrific': 3,\n",
      "          'parts': 3,\n",
      "          'plot': 3,\n",
      "          'times': 3,\n",
      "          'role': 3,\n",
      "          'gives': 3,\n",
      "          '100m': 3,\n",
      "          'back': 3,\n",
      "          'fact': 3,\n",
      "          'film': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'seems': 3,\n",
      "          'style': 3,\n",
      "          'get': 3,\n",
      "          'may': 2,\n",
      "          'arnold': 2,\n",
      "          'robin': 2,\n",
      "          'gabriel': 2,\n",
      "          'time': 2,\n",
      "          'long': 2,\n",
      "          'comes': 2,\n",
      "          'bad': 2,\n",
      "          'getting': 2,\n",
      "          'original': 2,\n",
      "          'idea': 2,\n",
      "          'devils': 2,\n",
      "          'advocate': 2,\n",
      "          'little': 2,\n",
      "          'exorcist': 2,\n",
      "          'disappointing': 2,\n",
      "          'films': 2,\n",
      "          'trailers': 2,\n",
      "          'also': 2,\n",
      "          'typical': 2,\n",
      "          'satan': 2,\n",
      "          'byrnes': 2,\n",
      "          'stop': 2,\n",
      "          'nhe': 2,\n",
      "          'turns': 2,\n",
      "          '2000': 2,\n",
      "          'help': 2,\n",
      "          'ending': 2,\n",
      "          'pretty': 2,\n",
      "          'much': 2,\n",
      "          'dollar': 2,\n",
      "          'money': 2,\n",
      "          'held': 2,\n",
      "          'thing': 2,\n",
      "          'nothing': 2,\n",
      "          'nin': 2,\n",
      "          'plays': 2,\n",
      "          'character': 2,\n",
      "          'always': 2,\n",
      "          'really': 2,\n",
      "          'visual': 2,\n",
      "          'scenes': 2,\n",
      "          'dont': 2,\n",
      "          'things': 2,\n",
      "          'performances': 2,\n",
      "          'well': 2,\n",
      "          'less': 2,\n",
      "          'old': 2,\n",
      "          'ideas': 2,\n",
      "          'ones': 2,\n",
      "          'make': 2,\n",
      "          'need': 2,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'people': 2,\n",
      "          'warning': 1,\n",
      "          'contain': 1,\n",
      "          'slight': 1,\n",
      "          'mild': 1,\n",
      "          'spoilers': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'intense': 1,\n",
      "          'violencegore': 1,\n",
      "          'strong': 1,\n",
      "          'sexuality': 1,\n",
      "          'language': 1,\n",
      "          'nstarring': 1,\n",
      "          'schwarzeneggar': 1,\n",
      "          'byrne': 1,\n",
      "          'nrunning': 1,\n",
      "          '132': 1,\n",
      "          'theater': 1,\n",
      "          'boom': 1,\n",
      "          'lights': 1,\n",
      "          'hearts': 1,\n",
      "          'race': 1,\n",
      "          'ten': 1,\n",
      "          'preview': 1,\n",
      "          'finally': 1,\n",
      "          'weve': 1,\n",
      "          'waiting': 1,\n",
      "          'see': 1,\n",
      "          'sit': 1,\n",
      "          'watch': 1,\n",
      "          'disbelief': 1,\n",
      "          'nwhy': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nagain': 1,\n",
      "          'past': 1,\n",
      "          'summers': 1,\n",
      "          'worse': 1,\n",
      "          'nits': 1,\n",
      "          'kind': 1,\n",
      "          'throws': 1,\n",
      "          'rosemarys': 1,\n",
      "          'baby': 1,\n",
      "          'along': 1,\n",
      "          'nwhala': 1,\n",
      "          'extremely': 1,\n",
      "          'previews': 1,\n",
      "          'made': 1,\n",
      "          'look': 1,\n",
      "          'nsadly': 1,\n",
      "          'truly': 1,\n",
      "          'recent': 1,\n",
      "          'confusing': 1,\n",
      "          'ludicrous': 1,\n",
      "          'destined': 1,\n",
      "          'first': 1,\n",
      "          'weekend': 1,\n",
      "          'flop': 1,\n",
      "          'next': 1,\n",
      "          'njericho': 1,\n",
      "          'cane': 1,\n",
      "          'schwarzneggar': 1,\n",
      "          'macho': 1,\n",
      "          'cop': 1,\n",
      "          'finds': 1,\n",
      "          'chosen': 1,\n",
      "          'track': 1,\n",
      "          'living': 1,\n",
      "          'body': 1,\n",
      "          'impregnating': 1,\n",
      "          'christine': 1,\n",
      "          'york': 1,\n",
      "          'birth': 1,\n",
      "          'existence': 1,\n",
      "          'cease': 1,\n",
      "          'exist': 1,\n",
      "          'year': 1,\n",
      "          'strangely': 1,\n",
      "          'hes': 1,\n",
      "          'trying': 1,\n",
      "          'fight': 1,\n",
      "          '5': 1,\n",
      "          'seeks': 1,\n",
      "          'catholic': 1,\n",
      "          'church': 1,\n",
      "          'tries': 1,\n",
      "          'save': 1,\n",
      "          'girl': 1,\n",
      "          'leading': 1,\n",
      "          'thats': 1,\n",
      "          'satisfying': 1,\n",
      "          'nthats': 1,\n",
      "          'nit': 1,\n",
      "          'razzle': 1,\n",
      "          'dazzle': 1,\n",
      "          'seem': 1,\n",
      "          'show': 1,\n",
      "          'wonder': 1,\n",
      "          'went': 1,\n",
      "          'nas': 1,\n",
      "          'arnie': 1,\n",
      "          'ngood': 1,\n",
      "          'ok': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'since': 1,\n",
      "          'older': 1,\n",
      "          'lot': 1,\n",
      "          'stunts': 1,\n",
      "          'disappointed': 1,\n",
      "          'looks': 1,\n",
      "          'scary': 1,\n",
      "          'ends': 1,\n",
      "          'boring': 1,\n",
      "          'preposterous': 1,\n",
      "          'drama': 1,\n",
      "          'leads': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'leaves': 1,\n",
      "          'us': 1,\n",
      "          'questions': 1,\n",
      "          'ngabriel': 1,\n",
      "          'ironically': 1,\n",
      "          'played': 1,\n",
      "          'priest': 1,\n",
      "          'ntwo': 1,\n",
      "          'years': 1,\n",
      "          'al': 1,\n",
      "          'pacino': 1,\n",
      "          'gave': 1,\n",
      "          'fun': 1,\n",
      "          'nrobin': 1,\n",
      "          'satans': 1,\n",
      "          'main': 1,\n",
      "          'person': 1,\n",
      "          'wants': 1,\n",
      "          'impregnate': 1,\n",
      "          'carry': 1,\n",
      "          'child': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'another': 1,\n",
      "          'isnt': 1,\n",
      "          'direction': 1,\n",
      "          'peter': 1,\n",
      "          'hyams': 1,\n",
      "          'bit': 1,\n",
      "          'overblown': 1,\n",
      "          'though': 1,\n",
      "          'nearly': 1,\n",
      "          'nhere': 1,\n",
      "          'given': 1,\n",
      "          'camera': 1,\n",
      "          'terrifically': 1,\n",
      "          'directed': 1,\n",
      "          'sadly': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'andrew': 1,\n",
      "          'marlowe': 1,\n",
      "          'witty': 1,\n",
      "          'lines': 1,\n",
      "          'substance': 1,\n",
      "          'finale': 1,\n",
      "          'climax': 1,\n",
      "          'ready': 1,\n",
      "          'home': 1,\n",
      "          'nonly': 1,\n",
      "          'writing': 1,\n",
      "          'storyline': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'sad': 1,\n",
      "          'many': 1,\n",
      "          'going': 1,\n",
      "          'organized': 1,\n",
      "          'brainy': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'nat': 1,\n",
      "          'armageddon': 1,\n",
      "          'started': 1,\n",
      "          'tiresome': 1,\n",
      "          'nhollywood': 1,\n",
      "          'running': 1,\n",
      "          'ive': 1,\n",
      "          'said': 1,\n",
      "          'needs': 1,\n",
      "          'neven': 1,\n",
      "          'pleasing': 1,\n",
      "          'least': 1,\n",
      "          '30m': 1,\n",
      "          'easily': 1,\n",
      "          '70m': 1,\n",
      "          'nmaybe': 1,\n",
      "          'sound': 1,\n",
      "          'crazy': 1,\n",
      "          'looking': 1,\n",
      "          'forward': 1,\n",
      "          'hope': 1,\n",
      "          'recycling': 1,\n",
      "          'boxoffice': 1,\n",
      "          'project': 1,\n",
      "          'scare': 1,\n",
      "          'death': 1,\n",
      "          'thinking': 1,\n",
      "          'exactly': 1,\n",
      "          'scaring': 1,\n",
      "          'noverblown': 1,\n",
      "          'effects': 1,\n",
      "          'stupid': 1,\n",
      "          'thin': 1,\n",
      "          'plotline': 1,\n",
      "          'umm': 1,\n",
      "          'nyup': 1,\n",
      "          'describe': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carter': 6,\n",
      "          'know': 5,\n",
      "          'tough': 5,\n",
      "          'nhe': 5,\n",
      "          'film': 4,\n",
      "          'jack': 3,\n",
      "          'sylvester': 3,\n",
      "          'nand': 3,\n",
      "          'get': 3,\n",
      "          'vegas': 3,\n",
      "          'kind': 3,\n",
      "          'nas': 3,\n",
      "          'nthe': 3,\n",
      "          'dont': 2,\n",
      "          'says': 2,\n",
      "          'stallone': 2,\n",
      "          'guy': 2,\n",
      "          'guys': 2,\n",
      "          'duties': 2,\n",
      "          'people': 2,\n",
      "          'break': 2,\n",
      "          'look': 2,\n",
      "          'like': 2,\n",
      "          'nstallone': 2,\n",
      "          'find': 2,\n",
      "          'story': 2,\n",
      "          'truth': 2,\n",
      "          'one': 2,\n",
      "          'thriller': 2,\n",
      "          'name': 1,\n",
      "          'want': 1,\n",
      "          'brooding': 1,\n",
      "          'antihero': 1,\n",
      "          'ntake': 1,\n",
      "          'advice': 1,\n",
      "          'nto': 1,\n",
      "          'rewarding': 1,\n",
      "          'thrown': 1,\n",
      "          'terrace': 1,\n",
      "          'watch': 1,\n",
      "          'almost': 1,\n",
      "          'painful': 1,\n",
      "          'n': 1,\n",
      "          'gloomy': 1,\n",
      "          'looking': 1,\n",
      "          'unimaginative': 1,\n",
      "          'offers': 1,\n",
      "          'joy': 1,\n",
      "          'njack': 1,\n",
      "          'come': 1,\n",
      "          'works': 1,\n",
      "          'selfdescribed': 1,\n",
      "          'financial': 1,\n",
      "          'adjuster': 1,\n",
      "          'nexplaining': 1,\n",
      "          'make': 1,\n",
      "          'promises': 1,\n",
      "          'ni': 1,\n",
      "          'help': 1,\n",
      "          'remember': 1,\n",
      "          'chiseled': 1,\n",
      "          'body': 1,\n",
      "          'full': 1,\n",
      "          'tattoos': 1,\n",
      "          'weathered': 1,\n",
      "          'indicative': 1,\n",
      "          'man': 1,\n",
      "          'seen': 1,\n",
      "          'share': 1,\n",
      "          'hard': 1,\n",
      "          'times': 1,\n",
      "          'speaks': 1,\n",
      "          'hushed': 1,\n",
      "          'menacing': 1,\n",
      "          'tone': 1,\n",
      "          'voice': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'acting': 1,\n",
      "          'previous': 1,\n",
      "          'roles': 1,\n",
      "          'character': 1,\n",
      "          'shallow': 1,\n",
      "          'onedimensional': 1,\n",
      "          'thug': 1,\n",
      "          'whose': 1,\n",
      "          'modus': 1,\n",
      "          'operandi': 1,\n",
      "          'talk': 1,\n",
      "          'hassle': 1,\n",
      "          'hapless': 1,\n",
      "          'needs': 1,\n",
      "          'dispense': 1,\n",
      "          'justice': 1,\n",
      "          'nwith': 1,\n",
      "          'charisma': 1,\n",
      "          'pit': 1,\n",
      "          'bull': 1,\n",
      "          'knows': 1,\n",
      "          'nyet': 1,\n",
      "          'even': 1,\n",
      "          'put': 1,\n",
      "          'family': 1,\n",
      "          'first': 1,\n",
      "          'begins': 1,\n",
      "          'learn': 1,\n",
      "          'jacks': 1,\n",
      "          'little': 1,\n",
      "          'brother': 1,\n",
      "          'died': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'police': 1,\n",
      "          'attribute': 1,\n",
      "          'heavy': 1,\n",
      "          'drinking': 1,\n",
      "          'nhowever': 1,\n",
      "          'suspicious': 1,\n",
      "          'believing': 1,\n",
      "          'taken': 1,\n",
      "          'takes': 1,\n",
      "          'tries': 1,\n",
      "          'see': 1,\n",
      "          'pokes': 1,\n",
      "          'around': 1,\n",
      "          'runs': 1,\n",
      "          'several': 1,\n",
      "          'lowlife': 1,\n",
      "          'characters': 1,\n",
      "          'nthey': 1,\n",
      "          'include': 1,\n",
      "          'shady': 1,\n",
      "          'business': 1,\n",
      "          'partner': 1,\n",
      "          'prostitute': 1,\n",
      "          'dweebish': 1,\n",
      "          'millionaire': 1,\n",
      "          'molded': 1,\n",
      "          'bill': 1,\n",
      "          'gates': 1,\n",
      "          'oily': 1,\n",
      "          'owner': 1,\n",
      "          'porn': 1,\n",
      "          'website': 1,\n",
      "          'nany': 1,\n",
      "          'may': 1,\n",
      "          'something': 1,\n",
      "          'brothers': 1,\n",
      "          'death': 1,\n",
      "          'nall': 1,\n",
      "          'means': 1,\n",
      "          'carrying': 1,\n",
      "          'deed': 1,\n",
      "          'nbut': 1,\n",
      "          'expect': 1,\n",
      "          'exercise': 1,\n",
      "          'sleuthing': 1,\n",
      "          'wellplaced': 1,\n",
      "          'clues': 1,\n",
      "          'lead': 1,\n",
      "          'nhes': 1,\n",
      "          'brawn': 1,\n",
      "          'brains': 1,\n",
      "          'epiphanies': 1,\n",
      "          'investigation': 1,\n",
      "          'ninstead': 1,\n",
      "          'uses': 1,\n",
      "          'intimidation': 1,\n",
      "          'muscle': 1,\n",
      "          'way': 1,\n",
      "          'forward': 1,\n",
      "          'cycling': 1,\n",
      "          'circle': 1,\n",
      "          'suspects': 1,\n",
      "          'nflustered': 1,\n",
      "          'lack': 1,\n",
      "          'progress': 1,\n",
      "          'cycles': 1,\n",
      "          'nthis': 1,\n",
      "          'gets': 1,\n",
      "          'tiring': 1,\n",
      "          'fairly': 1,\n",
      "          'quickly': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'launches': 1,\n",
      "          'final': 1,\n",
      "          'act': 1,\n",
      "          'numb': 1,\n",
      "          'pedestrian': 1,\n",
      "          'pace': 1,\n",
      "          'noddly': 1,\n",
      "          'toughguy': 1,\n",
      "          'starves': 1,\n",
      "          'us': 1,\n",
      "          'action': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'nifty': 1,\n",
      "          'chase': 1,\n",
      "          'sequence': 1,\n",
      "          'related': 1,\n",
      "          'tangential': 1,\n",
      "          'needless': 1,\n",
      "          'plot': 1,\n",
      "          'carters': 1,\n",
      "          'ties': 1,\n",
      "          'send': 1,\n",
      "          'thugs': 1,\n",
      "          'retrieve': 1,\n",
      "          'also': 1,\n",
      "          'fails': 1,\n",
      "          'generate': 1,\n",
      "          'emotion': 1,\n",
      "          'personality': 1,\n",
      "          'slab': 1,\n",
      "          'stone': 1,\n",
      "          'feel': 1,\n",
      "          'perpetually': 1,\n",
      "          'downcast': 1,\n",
      "          'weather': 1,\n",
      "          'constantly': 1,\n",
      "          'overcast': 1,\n",
      "          'rainy': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'shots': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'night': 1,\n",
      "          'dimly': 1,\n",
      "          'lit': 1,\n",
      "          'rooms': 1,\n",
      "          'dark': 1,\n",
      "          'alleys': 1,\n",
      "          'nits': 1,\n",
      "          'impossible': 1,\n",
      "          'stirred': 1,\n",
      "          'atmosphere': 1,\n",
      "          'result': 1,\n",
      "          'amounts': 1,\n",
      "          'nothing': 1,\n",
      "          'flat': 1,\n",
      "          'bereft': 1,\n",
      "          'clever': 1,\n",
      "          'moments': 1,\n",
      "          'devoid': 1,\n",
      "          'excitement': 1,\n",
      "          'nyoure': 1,\n",
      "          'better': 1,\n",
      "          'leaving': 1,\n",
      "          'alone': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bean': 8,\n",
      "          'mr': 6,\n",
      "          'series': 5,\n",
      "          'film': 5,\n",
      "          'away': 4,\n",
      "          'nthe': 4,\n",
      "          'score': 4,\n",
      "          'would': 3,\n",
      "          'atkinson': 3,\n",
      "          'really': 3,\n",
      "          'even': 3,\n",
      "          'american': 2,\n",
      "          'wrong': 2,\n",
      "          'ever': 2,\n",
      "          'heard': 2,\n",
      "          'dont': 2,\n",
      "          'nthen': 2,\n",
      "          'america': 2,\n",
      "          'makes': 2,\n",
      "          'point': 2,\n",
      "          'problems': 2,\n",
      "          'completely': 2,\n",
      "          'one': 2,\n",
      "          'note': 2,\n",
      "          'n': 2,\n",
      "          'guys': 2,\n",
      "          'much': 2,\n",
      "          'character': 2,\n",
      "          'episode': 2,\n",
      "          'though': 2,\n",
      "          'laughs': 2,\n",
      "          'time': 2,\n",
      "          'episodes': 2,\n",
      "          'go': 2,\n",
      "          'back': 2,\n",
      "          'think': 1,\n",
      "          'films': 1,\n",
      "          'dismal': 1,\n",
      "          'failure': 1,\n",
      "          'due': 1,\n",
      "          'filmmakers': 1,\n",
      "          'getting': 1,\n",
      "          'hold': 1,\n",
      "          'brilliant': 1,\n",
      "          'british': 1,\n",
      "          'comedy': 1,\n",
      "          'americanizing': 1,\n",
      "          'nyoud': 1,\n",
      "          'since': 1,\n",
      "          'full': 1,\n",
      "          'blame': 1,\n",
      "          'placed': 1,\n",
      "          'folks': 1,\n",
      "          'wrote': 1,\n",
      "          'created': 1,\n",
      "          'rowan': 1,\n",
      "          'robin': 1,\n",
      "          'driscoll': 1,\n",
      "          'richard': 1,\n",
      "          'curtis': 1,\n",
      "          'nshould': 1,\n",
      "          'happen': 1,\n",
      "          'meet': 1,\n",
      "          'chaps': 1,\n",
      "          'favor': 1,\n",
      "          'ngrab': 1,\n",
      "          'hair': 1,\n",
      "          'yell': 1,\n",
      "          'loudly': 1,\n",
      "          'ear': 1,\n",
      "          'thinking': 1,\n",
      "          'nhave': 1,\n",
      "          'phrase': 1,\n",
      "          'aint': 1,\n",
      "          'broke': 1,\n",
      "          'fix': 1,\n",
      "          'walk': 1,\n",
      "          'concerns': 1,\n",
      "          'visit': 1,\n",
      "          'escorting': 1,\n",
      "          'painting': 1,\n",
      "          'whistlers': 1,\n",
      "          'mother': 1,\n",
      "          'buyer': 1,\n",
      "          'played': 1,\n",
      "          'burt': 1,\n",
      "          'reynolds': 1,\n",
      "          'type': 1,\n",
      "          'bit': 1,\n",
      "          'part': 1,\n",
      "          'success': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'hopefully': 1,\n",
      "          'nnow': 1,\n",
      "          'sent': 1,\n",
      "          'trip': 1,\n",
      "          'sense': 1,\n",
      "          'cant': 1,\n",
      "          'describe': 1,\n",
      "          'explains': 1,\n",
      "          'comes': 1,\n",
      "          'causes': 1,\n",
      "          'wacky': 1,\n",
      "          'trouble': 1,\n",
      "          'nproblems': 1,\n",
      "          'begin': 1,\n",
      "          'nfirst': 1,\n",
      "          'music': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'replaced': 1,\n",
      "          'either': 1,\n",
      "          'times': 1,\n",
      "          'beetlejuice': 1,\n",
      "          'rob': 1,\n",
      "          'roy': 1,\n",
      "          'song': 1,\n",
      "          'choices': 1,\n",
      "          'totally': 1,\n",
      "          'uninspired': 1,\n",
      "          'good': 1,\n",
      "          'vibrations': 1,\n",
      "          'love': 1,\n",
      "          'l': 1,\n",
      "          'nwow': 1,\n",
      "          'put': 1,\n",
      "          'thought': 1,\n",
      "          'nalso': 1,\n",
      "          'way': 1,\n",
      "          'noise': 1,\n",
      "          'doesnt': 1,\n",
      "          'speak': 1,\n",
      "          'laughter': 1,\n",
      "          'audience': 1,\n",
      "          'maybe': 1,\n",
      "          'occasional': 1,\n",
      "          'murmur': 1,\n",
      "          'neach': 1,\n",
      "          'like': 1,\n",
      "          'chaplin': 1,\n",
      "          'silent': 1,\n",
      "          'movie': 1,\n",
      "          'nin': 1,\n",
      "          'constantly': 1,\n",
      "          'moaning': 1,\n",
      "          'grunting': 1,\n",
      "          'whining': 1,\n",
      "          'etc': 1,\n",
      "          'annoying': 1,\n",
      "          'plain': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'funny': 1,\n",
      "          'nwith': 1,\n",
      "          'dozens': 1,\n",
      "          'great': 1,\n",
      "          'crammed': 1,\n",
      "          'less': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'nmultiply': 1,\n",
      "          'running': 1,\n",
      "          'three': 1,\n",
      "          'however': 1,\n",
      "          'steadily': 1,\n",
      "          'decrease': 1,\n",
      "          'nthey': 1,\n",
      "          'gaul': 1,\n",
      "          'repeat': 1,\n",
      "          'jokes': 1,\n",
      "          'nsad': 1,\n",
      "          'creatively': 1,\n",
      "          'lazy': 1,\n",
      "          'nas': 1,\n",
      "          'ran': 1,\n",
      "          '13': 1,\n",
      "          'nwhy': 1,\n",
      "          'earth': 1,\n",
      "          'gang': 1,\n",
      "          'decide': 1,\n",
      "          'rework': 1,\n",
      "          'everything': 1,\n",
      "          'n13': 1,\n",
      "          'halfhour': 1,\n",
      "          'certainly': 1,\n",
      "          'hadnt': 1,\n",
      "          'exhausted': 1,\n",
      "          'possible': 1,\n",
      "          'situations': 1,\n",
      "          'nall': 1,\n",
      "          'say': 1,\n",
      "          'positively': 1,\n",
      "          'almost': 1,\n",
      "          'appropriate': 1,\n",
      "          'ages': 1,\n",
      "          'wasnt': 1,\n",
      "          'couple': 1,\n",
      "          'scenes': 1,\n",
      "          'appears': 1,\n",
      "          'sex': 1,\n",
      "          'things': 1,\n",
      "          'nand': 1,\n",
      "          'isnt': 1,\n",
      "          'positive': 1,\n",
      "          'statement': 1,\n",
      "          'nplease': 1,\n",
      "          'england': 1,\n",
      "          'television': 1,\n",
      "          'youll': 1,\n",
      "          'make': 1,\n",
      "          'laugh': 1,\n",
      "          'npg13': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jakob': 8,\n",
      "          'ghetto': 6,\n",
      "          'njakob': 5,\n",
      "          'liar': 5,\n",
      "          'hope': 5,\n",
      "          'williams': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'false': 4,\n",
      "          'one': 3,\n",
      "          'doesnt': 3,\n",
      "          'war': 3,\n",
      "          'radio': 3,\n",
      "          'never': 3,\n",
      "          'robin': 2,\n",
      "          'style': 2,\n",
      "          'worst': 2,\n",
      "          'films': 2,\n",
      "          'best': 2,\n",
      "          'despite': 2,\n",
      "          'latest': 2,\n",
      "          'know': 2,\n",
      "          'little': 2,\n",
      "          'film': 2,\n",
      "          'message': 2,\n",
      "          'gets': 2,\n",
      "          'tells': 2,\n",
      "          'assumption': 2,\n",
      "          'home': 2,\n",
      "          'danger': 2,\n",
      "          'great': 2,\n",
      "          'nin': 2,\n",
      "          'irrelevant': 2,\n",
      "          'girl': 2,\n",
      "          'goes': 2,\n",
      "          'nhe': 2,\n",
      "          'expectations': 2,\n",
      "          'nits': 2,\n",
      "          'fails': 2,\n",
      "          'life': 2,\n",
      "          'character': 2,\n",
      "          'good': 2,\n",
      "          'hunting': 2,\n",
      "          'serious': 2,\n",
      "          'actor': 2,\n",
      "          'comedy': 2,\n",
      "          'na': 2,\n",
      "          'rarest': 1,\n",
      "          'gifts': 1,\n",
      "          'ability': 1,\n",
      "          'rise': 1,\n",
      "          'inept': 1,\n",
      "          'material': 1,\n",
      "          'suffuse': 1,\n",
      "          'irreverent': 1,\n",
      "          'noverwhelmingly': 1,\n",
      "          'pleasantly': 1,\n",
      "          'diverting': 1,\n",
      "          'enjoyable': 1,\n",
      "          'notable': 1,\n",
      "          'exception': 1,\n",
      "          'flubber': 1,\n",
      "          'nso': 1,\n",
      "          'person': 1,\n",
      "          'refused': 1,\n",
      "          'abandon': 1,\n",
      "          'patch': 1,\n",
      "          'adams': 1,\n",
      "          'tell': 1,\n",
      "          'even': 1,\n",
      "          'save': 1,\n",
      "          'project': 1,\n",
      "          'trouble': 1,\n",
      "          'confused': 1,\n",
      "          'muddled': 1,\n",
      "          'generically': 1,\n",
      "          'uplifting': 1,\n",
      "          'fundamental': 1,\n",
      "          'contradiction': 1,\n",
      "          'delivers': 1,\n",
      "          'depressing': 1,\n",
      "          'opposed': 1,\n",
      "          'inspiring': 1,\n",
      "          'realize': 1,\n",
      "          'nwilliams': 1,\n",
      "          'plays': 1,\n",
      "          'haim': 1,\n",
      "          'jew': 1,\n",
      "          'imprisoned': 1,\n",
      "          'polish': 1,\n",
      "          'world': 1,\n",
      "          'ii': 1,\n",
      "          'none': 1,\n",
      "          'night': 1,\n",
      "          'wanders': 1,\n",
      "          'outside': 1,\n",
      "          'curfew': 1,\n",
      "          'promptly': 1,\n",
      "          'sent': 1,\n",
      "          'office': 1,\n",
      "          'highranking': 1,\n",
      "          'german': 1,\n",
      "          'officer': 1,\n",
      "          'punishment': 1,\n",
      "          'easy': 1,\n",
      "          'hear': 1,\n",
      "          'approximately': 1,\n",
      "          '30': 1,\n",
      "          'seconds': 1,\n",
      "          'broadcast': 1,\n",
      "          'announcement': 1,\n",
      "          'english': 1,\n",
      "          'punctuated': 1,\n",
      "          'triumphant': 1,\n",
      "          'heil': 1,\n",
      "          'hitler': 1,\n",
      "          'russian': 1,\n",
      "          'troops': 1,\n",
      "          'miles': 1,\n",
      "          'away': 1,\n",
      "          'jakobs': 1,\n",
      "          'nliberation': 1,\n",
      "          'thinks': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'news': 1,\n",
      "          'closest': 1,\n",
      "          'friend': 1,\n",
      "          'volatile': 1,\n",
      "          'prize': 1,\n",
      "          'fighter': 1,\n",
      "          'named': 1,\n",
      "          'misha': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'sworn': 1,\n",
      "          'secrecy': 1,\n",
      "          'passes': 1,\n",
      "          'along': 1,\n",
      "          'nsoon': 1,\n",
      "          'common': 1,\n",
      "          'hidden': 1,\n",
      "          'crime': 1,\n",
      "          'punishable': 1,\n",
      "          'death': 1,\n",
      "          'nthis': 1,\n",
      "          'absurdly': 1,\n",
      "          'people': 1,\n",
      "          'convinced': 1,\n",
      "          'become': 1,\n",
      "          'abreast': 1,\n",
      "          'developments': 1,\n",
      "          'decide': 1,\n",
      "          'fate': 1,\n",
      "          'course': 1,\n",
      "          'germans': 1,\n",
      "          'allegedly': 1,\n",
      "          'informants': 1,\n",
      "          'throughout': 1,\n",
      "          'rumors': 1,\n",
      "          'get': 1,\n",
      "          'put': 1,\n",
      "          'curiously': 1,\n",
      "          'subplot': 1,\n",
      "          'finds': 1,\n",
      "          '11year': 1,\n",
      "          'old': 1,\n",
      "          'separated': 1,\n",
      "          'parents': 1,\n",
      "          'decides': 1,\n",
      "          'hide': 1,\n",
      "          'small': 1,\n",
      "          'napparently': 1,\n",
      "          'afraid': 1,\n",
      "          'discovered': 1,\n",
      "          'length': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'idea': 1,\n",
      "          'frightens': 1,\n",
      "          'made': 1,\n",
      "          'clear': 1,\n",
      "          'build': 1,\n",
      "          'uninvolving': 1,\n",
      "          'generic': 1,\n",
      "          'relationship': 1,\n",
      "          'anywhere': 1,\n",
      "          'end': 1,\n",
      "          'beginning': 1,\n",
      "          'moral': 1,\n",
      "          'story': 1,\n",
      "          'medicine': 1,\n",
      "          'nbut': 1,\n",
      "          'forgets': 1,\n",
      "          'brings': 1,\n",
      "          'nsuch': 1,\n",
      "          'inevitably': 1,\n",
      "          'leads': 1,\n",
      "          'realization': 1,\n",
      "          'arent': 1,\n",
      "          'met': 1,\n",
      "          'results': 1,\n",
      "          'far': 1,\n",
      "          'worse': 1,\n",
      "          'nthats': 1,\n",
      "          'biggest': 1,\n",
      "          'detriment': 1,\n",
      "          'based': 1,\n",
      "          'thus': 1,\n",
      "          'comes': 1,\n",
      "          'painfully': 1,\n",
      "          'moving': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'anything': 1,\n",
      "          'moved': 1,\n",
      "          'tug': 1,\n",
      "          'heartstrings': 1,\n",
      "          'destroys': 1,\n",
      "          'purpose': 1,\n",
      "          'existing': 1,\n",
      "          'nrobin': 1,\n",
      "          'inject': 1,\n",
      "          'matter': 1,\n",
      "          'fact': 1,\n",
      "          'seems': 1,\n",
      "          'crippled': 1,\n",
      "          'fake': 1,\n",
      "          'accent': 1,\n",
      "          'stragely': 1,\n",
      "          'unenthusiastic': 1,\n",
      "          'spreads': 1,\n",
      "          'performance': 1,\n",
      "          'lifeless': 1,\n",
      "          'hopeless': 1,\n",
      "          'nnot': 1,\n",
      "          'since': 1,\n",
      "          'abandoned': 1,\n",
      "          'signature': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'extent': 1,\n",
      "          'isnt': 1,\n",
      "          'love': 1,\n",
      "          'became': 1,\n",
      "          'oscar': 1,\n",
      "          'nhere': 1,\n",
      "          'wannabe': 1,\n",
      "          'impostor': 1,\n",
      "          'compared': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'beautiful': 1,\n",
      "          'marketed': 1,\n",
      "          'holocaust': 1,\n",
      "          'nit': 1,\n",
      "          'tries': 1,\n",
      "          'sometimes': 1,\n",
      "          'rarely': 1,\n",
      "          'works': 1,\n",
      "          'nis': 1,\n",
      "          'melodrama': 1,\n",
      "          'study': 1,\n",
      "          'nno': 1,\n",
      "          'kind': 1,\n",
      "          'cant': 1,\n",
      "          'placed': 1,\n",
      "          'category': 1,\n",
      "          'covers': 1,\n",
      "          'many': 1,\n",
      "          'different': 1,\n",
      "          'genres': 1,\n",
      "          'every': 1,\n",
      "          'attempts': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'christmas': 3,\n",
      "          'one': 3,\n",
      "          'stewardess': 2,\n",
      "          'fly': 2,\n",
      "          'plane': 2,\n",
      "          'liotta': 2,\n",
      "          'would': 2,\n",
      "          'nthe': 2,\n",
      "          'say': 1,\n",
      "          'tell': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'crisis': 1,\n",
      "          'onboard': 1,\n",
      "          'commercial': 1,\n",
      "          'airliner': 1,\n",
      "          'causes': 1,\n",
      "          'land': 1,\n",
      "          'nairport': 1,\n",
      "          '97': 1,\n",
      "          'anyone': 1,\n",
      "          'nray': 1,\n",
      "          'psychotic': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'transported': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'california': 1,\n",
      "          'eve': 1,\n",
      "          'namazingly': 1,\n",
      "          'seemingly': 1,\n",
      "          'busy': 1,\n",
      "          'day': 1,\n",
      "          'travel': 1,\n",
      "          'flown': 1,\n",
      "          'routes': 1,\n",
      "          'six': 1,\n",
      "          'passengers': 1,\n",
      "          'flight': 1,\n",
      "          'nanyway': 1,\n",
      "          'take': 1,\n",
      "          'escapes': 1,\n",
      "          'kills': 1,\n",
      "          'police': 1,\n",
      "          'pilots': 1,\n",
      "          'lauren': 1,\n",
      "          'holly': 1,\n",
      "          'locks': 1,\n",
      "          'cockpit': 1,\n",
      "          'story': 1,\n",
      "          'beyond': 1,\n",
      "          'routine': 1,\n",
      "          'script': 1,\n",
      "          'embarrassing': 1,\n",
      "          'point': 1,\n",
      "          'jumbo': 1,\n",
      "          'jet': 1,\n",
      "          'flying': 1,\n",
      "          'completely': 1,\n",
      "          'upside': 1,\n",
      "          'characters': 1,\n",
      "          'worthless': 1,\n",
      "          'performances': 1,\n",
      "          'annoying': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'cowriter': 1,\n",
      "          'steven': 1,\n",
      "          'e': 1,\n",
      "          'de': 1,\n",
      "          'souza': 1,\n",
      "          'actually': 1,\n",
      "          'wrote': 1,\n",
      "          'first': 1,\n",
      "          'two': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'movies': 1,\n",
      "          'n': 1,\n",
      "          'turbulence': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'time': 1,\n",
      "          'yet': 1,\n",
      "          'film': 1,\n",
      "          'released': 1,\n",
      "          'days': 1,\n",
      "          'holidays': 1,\n",
      "          'nbrilliant': 1,\n",
      "          'marketing': 1,\n",
      "          'cares': 1,\n",
      "          'anything': 1,\n",
      "          'december': 1,\n",
      "          '26th': 1,\n",
      "          'studio': 1,\n",
      "          'knew': 1,\n",
      "          'bomb': 1,\n",
      "          'purposely': 1,\n",
      "          'dumped': 1,\n",
      "          'fewest': 1,\n",
      "          'number': 1,\n",
      "          'people': 1,\n",
      "          'see': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'nthe': 8,\n",
      "          'jokes': 7,\n",
      "          'mystery': 6,\n",
      "          'men': 6,\n",
      "          'one': 6,\n",
      "          'actors': 5,\n",
      "          'n': 5,\n",
      "          'day': 5,\n",
      "          'movie': 4,\n",
      "          'wannabe': 4,\n",
      "          'city': 4,\n",
      "          'amazing': 4,\n",
      "          'every': 4,\n",
      "          'cast': 3,\n",
      "          'characters': 3,\n",
      "          'made': 3,\n",
      "          'unique': 3,\n",
      "          'number': 3,\n",
      "          'script': 3,\n",
      "          'funny': 3,\n",
      "          'work': 3,\n",
      "          'save': 3,\n",
      "          'bad': 3,\n",
      "          'captain': 3,\n",
      "          'time': 3,\n",
      "          'like': 3,\n",
      "          'ben': 3,\n",
      "          'terrible': 3,\n",
      "          'na': 2,\n",
      "          'great': 2,\n",
      "          'nan': 2,\n",
      "          'premise': 2,\n",
      "          'nhowever': 2,\n",
      "          'laugh': 2,\n",
      "          'seriously': 2,\n",
      "          'small': 2,\n",
      "          'mediocre': 2,\n",
      "          'entertaining': 2,\n",
      "          'films': 2,\n",
      "          'clever': 2,\n",
      "          'trying': 2,\n",
      "          'viewers': 2,\n",
      "          'little': 2,\n",
      "          'superheroes': 2,\n",
      "          'needed': 2,\n",
      "          'already': 2,\n",
      "          'successful': 2,\n",
      "          'captured': 2,\n",
      "          'success': 2,\n",
      "          'get': 2,\n",
      "          'complete': 2,\n",
      "          'scene': 2,\n",
      "          'old': 2,\n",
      "          'editing': 2,\n",
      "          'stiller': 2,\n",
      "          'heroes': 2,\n",
      "          'silly': 2,\n",
      "          'action': 2,\n",
      "          'seemed': 2,\n",
      "          'together': 2,\n",
      "          'way': 2,\n",
      "          'acting': 2,\n",
      "          'heard': 2,\n",
      "          'end': 2,\n",
      "          'going': 2,\n",
      "          'classic': 1,\n",
      "          'respected': 1,\n",
      "          'supporting': 1,\n",
      "          'interesting': 1,\n",
      "          'loser': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'proved': 1,\n",
      "          'disappointments': 1,\n",
      "          '1999': 1,\n",
      "          'bland': 1,\n",
      "          'hackneyed': 1,\n",
      "          'talents': 1,\n",
      "          'previously': 1,\n",
      "          'audiences': 1,\n",
      "          'rituals': 1,\n",
      "          'cliches': 1,\n",
      "          'shallow': 1,\n",
      "          'difficult': 1,\n",
      "          'sit': 1,\n",
      "          'hurting': 1,\n",
      "          'attempt': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'tried': 1,\n",
      "          'deliver': 1,\n",
      "          'series': 1,\n",
      "          'throughout': 1,\n",
      "          'without': 1,\n",
      "          'big': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'joke': 1,\n",
      "          'failed': 1,\n",
      "          'miserably': 1,\n",
      "          'reasons': 1,\n",
      "          'nthey': 1,\n",
      "          'used': 1,\n",
      "          'times': 1,\n",
      "          'previous': 1,\n",
      "          'best': 1,\n",
      "          'ones': 1,\n",
      "          'begin': 1,\n",
      "          'ruined': 1,\n",
      "          'trailer': 1,\n",
      "          'expectation': 1,\n",
      "          'laughing': 1,\n",
      "          'gags': 1,\n",
      "          'comedians': 1,\n",
      "          'none': 1,\n",
      "          'greatly': 1,\n",
      "          'damaged': 1,\n",
      "          'might': 1,\n",
      "          'worked': 1,\n",
      "          'ensemble': 1,\n",
      "          'newcomers': 1,\n",
      "          'break': 1,\n",
      "          'business': 1,\n",
      "          'nbut': 1,\n",
      "          'veterans': 1,\n",
      "          'kind': 1,\n",
      "          'junk': 1,\n",
      "          'really': 1,\n",
      "          'questioned': 1,\n",
      "          'whether': 1,\n",
      "          'originally': 1,\n",
      "          'thought': 1,\n",
      "          'nthankfully': 1,\n",
      "          'appear': 1,\n",
      "          'five': 1,\n",
      "          'movies': 1,\n",
      "          'new': 1,\n",
      "          'year': 1,\n",
      "          'arrives': 1,\n",
      "          'help': 1,\n",
      "          'forget': 1,\n",
      "          'follows': 1,\n",
      "          'band': 1,\n",
      "          'living': 1,\n",
      "          'gotham': 1,\n",
      "          'ridiculed': 1,\n",
      "          'fellow': 1,\n",
      "          'citizens': 1,\n",
      "          'villains': 1,\n",
      "          'clumsiness': 1,\n",
      "          'failure': 1,\n",
      "          'capture': 1,\n",
      "          'guy': 1,\n",
      "          'fact': 1,\n",
      "          'pathetic': 1,\n",
      "          'losers': 1,\n",
      "          'superhero': 1,\n",
      "          'recently': 1,\n",
      "          'evildoer': 1,\n",
      "          'ncaptain': 1,\n",
      "          'played': 1,\n",
      "          'terribly': 1,\n",
      "          'uninspired': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'past': 1,\n",
      "          'worried': 1,\n",
      "          'lose': 1,\n",
      "          'popularity': 1,\n",
      "          'nafter': 1,\n",
      "          'freeing': 1,\n",
      "          'notorious': 1,\n",
      "          'guys': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'overacting': 1,\n",
      "          'bit': 1,\n",
      "          'much': 1,\n",
      "          'keep': 1,\n",
      "          'busy': 1,\n",
      "          'things': 1,\n",
      "          'hand': 1,\n",
      "          'nit': 1,\n",
      "          'nby': 1,\n",
      "          'section': 1,\n",
      "          'plot': 1,\n",
      "          'finished': 1,\n",
      "          'interest': 1,\n",
      "          'happens': 1,\n",
      "          'havent': 1,\n",
      "          'figured': 1,\n",
      "          'low': 1,\n",
      "          'nthere': 1,\n",
      "          'scenes': 1,\n",
      "          'catch': 1,\n",
      "          'attention': 1,\n",
      "          'first': 1,\n",
      "          'shows': 1,\n",
      "          'wannabes': 1,\n",
      "          'feels': 1,\n",
      "          'edited': 1,\n",
      "          'nright': 1,\n",
      "          'beginning': 1,\n",
      "          'become': 1,\n",
      "          'slightly': 1,\n",
      "          'seeing': 1,\n",
      "          'humiliated': 1,\n",
      "          'folks': 1,\n",
      "          'home': 1,\n",
      "          'masked': 1,\n",
      "          'goons': 1,\n",
      "          'comes': 1,\n",
      "          'saves': 1,\n",
      "          'ruins': 1,\n",
      "          'ninstead': 1,\n",
      "          'done': 1,\n",
      "          'areas': 1,\n",
      "          'unnecessary': 1,\n",
      "          'romance': 1,\n",
      "          'mr': 1,\n",
      "          'furious': 1,\n",
      "          'monica': 1,\n",
      "          'waitress': 1,\n",
      "          'claire': 1,\n",
      "          'forlani': 1,\n",
      "          'vast': 1,\n",
      "          'majority': 1,\n",
      "          'talking': 1,\n",
      "          'coffee': 1,\n",
      "          'table': 1,\n",
      "          'simple': 1,\n",
      "          'rule': 1,\n",
      "          'order': 1,\n",
      "          'make': 1,\n",
      "          'nanother': 1,\n",
      "          'major': 1,\n",
      "          'problem': 1,\n",
      "          'actor': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'consequently': 1,\n",
      "          'gave': 1,\n",
      "          'performances': 1,\n",
      "          'depended': 1,\n",
      "          'fluently': 1,\n",
      "          'bunch': 1,\n",
      "          'friends': 1,\n",
      "          'working': 1,\n",
      "          'amiable': 1,\n",
      "          'reunion': 1,\n",
      "          'even': 1,\n",
      "          'want': 1,\n",
      "          'least': 1,\n",
      "          'seem': 1,\n",
      "          'nto': 1,\n",
      "          'pull': 1,\n",
      "          'randomly': 1,\n",
      "          'hat': 1,\n",
      "          'paul': 1,\n",
      "          'reubens': 1,\n",
      "          'disappeared': 1,\n",
      "          'everyones': 1,\n",
      "          'joy': 1,\n",
      "          'returns': 1,\n",
      "          'leaving': 1,\n",
      "          'impressed': 1,\n",
      "          'nas': 1,\n",
      "          'uses': 1,\n",
      "          'flatulence': 1,\n",
      "          'weapon': 1,\n",
      "          'must': 1,\n",
      "          'therefore': 1,\n",
      "          'fart': 1,\n",
      "          'nfart': 1,\n",
      "          'inevitably': 1,\n",
      "          'future': 1,\n",
      "          'thanks': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'drags': 1,\n",
      "          'towards': 1,\n",
      "          'point': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'world': 1,\n",
      "          'nanyone': 1,\n",
      "          'brain': 1,\n",
      "          'knows': 1,\n",
      "          'talent': 1,\n",
      "          'contribute': 1,\n",
      "          'helpful': 1,\n",
      "          'nso': 1,\n",
      "          'continue': 1,\n",
      "          'watch': 1,\n",
      "          'nthis': 1,\n",
      "          'far': 1,\n",
      "          'worthy': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'indeed': 1,\n",
      "          'character': 1,\n",
      "          'succeeds': 1,\n",
      "          'another': 1,\n",
      "          'congratulates': 1,\n",
      "          'says': 1,\n",
      "          'knew': 1,\n",
      "          'could': 1,\n",
      "          'fails': 1,\n",
      "          'category': 1,\n",
      "          'attempts': 1,\n",
      "          'pass': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'potential': 1,\n",
      "          'wonderful': 1,\n",
      "          'unforgettable': 1,\n",
      "          'nterrible': 1,\n",
      "          'waste': 1,\n",
      "          'changes': 1,\n",
      "          'opinions': 1,\n",
      "          'im': 1,\n",
      "          'unpredictable': 1,\n",
      "          'overexcited': 1,\n",
      "          'shouts': 1,\n",
      "          'nno': 1,\n",
      "          'youre': 1,\n",
      "          'opposite': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'scream': 11,\n",
      "          'nthe': 10,\n",
      "          '3': 10,\n",
      "          'series': 7,\n",
      "          'even': 7,\n",
      "          'n': 6,\n",
      "          'killer': 6,\n",
      "          'stab': 5,\n",
      "          'movie': 4,\n",
      "          'sidney': 4,\n",
      "          'set': 4,\n",
      "          'one': 4,\n",
      "          'film': 3,\n",
      "          'probably': 3,\n",
      "          'real': 3,\n",
      "          'characters': 3,\n",
      "          'sunrise': 3,\n",
      "          'site': 3,\n",
      "          'com': 3,\n",
      "          'ntheres': 3,\n",
      "          'review': 2,\n",
      "          'previous': 2,\n",
      "          'third': 2,\n",
      "          'studio': 2,\n",
      "          'part': 2,\n",
      "          'latest': 2,\n",
      "          'installment': 2,\n",
      "          'movies': 2,\n",
      "          'murders': 2,\n",
      "          'starts': 2,\n",
      "          'gale': 2,\n",
      "          'weathers': 2,\n",
      "          'arquette': 2,\n",
      "          'familiar': 2,\n",
      "          'trilogy': 2,\n",
      "          'backstory': 2,\n",
      "          'murder': 2,\n",
      "          'sidneys': 2,\n",
      "          'mother': 2,\n",
      "          'maureen': 2,\n",
      "          'nat': 2,\n",
      "          'hollywood': 2,\n",
      "          'horror': 2,\n",
      "          'films': 2,\n",
      "          'information': 2,\n",
      "          'dont': 2,\n",
      "          'patrick': 2,\n",
      "          'three': 2,\n",
      "          'kevin': 2,\n",
      "          'first': 2,\n",
      "          'eventually': 2,\n",
      "          'becomes': 2,\n",
      "          'point': 2,\n",
      "          'cover': 2,\n",
      "          'new': 2,\n",
      "          'also': 2,\n",
      "          'jason': 2,\n",
      "          'official': 2,\n",
      "          'wink': 2,\n",
      "          'spy': 1,\n",
      "          'shagged': 1,\n",
      "          'postulated': 1,\n",
      "          'unbreakable': 1,\n",
      "          'law': 1,\n",
      "          'physics': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'sequel': 1,\n",
      "          'good': 1,\n",
      "          'better': 1,\n",
      "          'followed': 1,\n",
      "          'bore': 1,\n",
      "          'cause': 1,\n",
      "          'complacency': 1,\n",
      "          'sighs': 1,\n",
      "          'relief': 1,\n",
      "          '2': 1,\n",
      "          'lives': 1,\n",
      "          'expectations': 1,\n",
      "          'figures': 1,\n",
      "          'sure': 1,\n",
      "          'thing': 1,\n",
      "          'provides': 1,\n",
      "          'proof': 1,\n",
      "          'rule': 1,\n",
      "          'nin': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'production': 1,\n",
      "          'begun': 1,\n",
      "          'return': 1,\n",
      "          'woodsboro': 1,\n",
      "          'recent': 1,\n",
      "          'inspired': 1,\n",
      "          'surrounding': 1,\n",
      "          'prescott': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'nhowever': 1,\n",
      "          'life': 1,\n",
      "          'soon': 1,\n",
      "          'imitating': 1,\n",
      "          'art': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'turn': 1,\n",
      "          'stabbed': 1,\n",
      "          'nsmelling': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'book': 1,\n",
      "          'deal': 1,\n",
      "          'courteney': 1,\n",
      "          'cox': 1,\n",
      "          'comes': 1,\n",
      "          'investigate': 1,\n",
      "          'finds': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'dewey': 1,\n",
      "          'riley': 1,\n",
      "          'david': 1,\n",
      "          'acting': 1,\n",
      "          'technical': 1,\n",
      "          'consultant': 1,\n",
      "          'getting': 1,\n",
      "          'chummy': 1,\n",
      "          'jennifer': 1,\n",
      "          'parker': 1,\n",
      "          'posey': 1,\n",
      "          'actress': 1,\n",
      "          'playing': 1,\n",
      "          'elsewhere': 1,\n",
      "          'heroine': 1,\n",
      "          'living': 1,\n",
      "          'hiding': 1,\n",
      "          'assumed': 1,\n",
      "          'name': 1,\n",
      "          'nuntil': 1,\n",
      "          'gets': 1,\n",
      "          'phone': 1,\n",
      "          'call': 1,\n",
      "          'evil': 1,\n",
      "          'voice': 1,\n",
      "          'late': 1,\n",
      "          'randy': 1,\n",
      "          'meeks': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'makes': 1,\n",
      "          'surprise': 1,\n",
      "          'guest': 1,\n",
      "          'appearance': 1,\n",
      "          'via': 1,\n",
      "          'video': 1,\n",
      "          'explain': 1,\n",
      "          'rules': 1,\n",
      "          'nhe': 1,\n",
      "          'notes': 1,\n",
      "          'chapter': 1,\n",
      "          'overabundance': 1,\n",
      "          'exposition': 1,\n",
      "          'huge': 1,\n",
      "          'contend': 1,\n",
      "          'nindeed': 1,\n",
      "          'tries': 1,\n",
      "          'link': 1,\n",
      "          'back': 1,\n",
      "          'started': 1,\n",
      "          'beginning': 1,\n",
      "          'original': 1,\n",
      "          'scene': 1,\n",
      "          'leaves': 1,\n",
      "          'photo': 1,\n",
      "          'teenager': 1,\n",
      "          'includes': 1,\n",
      "          'note': 1,\n",
      "          'claiming': 1,\n",
      "          'nto': 1,\n",
      "          'find': 1,\n",
      "          'intrepid': 1,\n",
      "          'investigators': 1,\n",
      "          'uncover': 1,\n",
      "          'happened': 1,\n",
      "          'maureens': 1,\n",
      "          'missing': 1,\n",
      "          'years': 1,\n",
      "          'starlet': 1,\n",
      "          'appearing': 1,\n",
      "          'lowbudget': 1,\n",
      "          'little': 1,\n",
      "          'already': 1,\n",
      "          'guess': 1,\n",
      "          'killers': 1,\n",
      "          'relationship': 1,\n",
      "          'nunlike': 1,\n",
      "          'predecessors': 1,\n",
      "          'doesnt': 1,\n",
      "          'guts': 1,\n",
      "          'suggest': 1,\n",
      "          'central': 1,\n",
      "          'might': 1,\n",
      "          'suspect': 1,\n",
      "          'undeveloped': 1,\n",
      "          'end': 1,\n",
      "          'care': 1,\n",
      "          'jaded': 1,\n",
      "          'detective': 1,\n",
      "          'dempsey': 1,\n",
      "          'kinky': 1,\n",
      "          'producer': 1,\n",
      "          'lance': 1,\n",
      "          'henriksen': 1,\n",
      "          'driven': 1,\n",
      "          'young': 1,\n",
      "          'director': 1,\n",
      "          'scott': 1,\n",
      "          'foley': 1,\n",
      "          'ingenue': 1,\n",
      "          'emily': 1,\n",
      "          'mortimer': 1,\n",
      "          'character': 1,\n",
      "          'turns': 1,\n",
      "          'seems': 1,\n",
      "          'selected': 1,\n",
      "          'random': 1,\n",
      "          'nwes': 1,\n",
      "          'craven': 1,\n",
      "          'supposedly': 1,\n",
      "          'filmed': 1,\n",
      "          'different': 1,\n",
      "          'endings': 1,\n",
      "          'keep': 1,\n",
      "          'secret': 1,\n",
      "          'quite': 1,\n",
      "          'possible': 1,\n",
      "          'final': 1,\n",
      "          'cut': 1,\n",
      "          'randomly': 1,\n",
      "          'chosen': 1,\n",
      "          'trademark': 1,\n",
      "          'references': 1,\n",
      "          'become': 1,\n",
      "          'trite': 1,\n",
      "          'obvious': 1,\n",
      "          'npossibly': 1,\n",
      "          'absence': 1,\n",
      "          'screenwriter': 1,\n",
      "          'williamson': 1,\n",
      "          'penned': 1,\n",
      "          'two': 1,\n",
      "          'maybe': 1,\n",
      "          'hip': 1,\n",
      "          'ironic': 1,\n",
      "          'stance': 1,\n",
      "          'consumes': 1,\n",
      "          'parodies': 1,\n",
      "          'cliches': 1,\n",
      "          'cliche': 1,\n",
      "          'ni': 1,\n",
      "          'groaned': 1,\n",
      "          'attack': 1,\n",
      "          'repeated': 1,\n",
      "          'momentformoment': 1,\n",
      "          'home': 1,\n",
      "          'referencing': 1,\n",
      "          'means': 1,\n",
      "          'poverty': 1,\n",
      "          'ideas': 1,\n",
      "          'continues': 1,\n",
      "          'tradition': 1,\n",
      "          'eclectic': 1,\n",
      "          'cameos': 1,\n",
      "          'faces': 1,\n",
      "          'small': 1,\n",
      "          'roles': 1,\n",
      "          'nlook': 1,\n",
      "          'jenny': 1,\n",
      "          'mccarthy': 1,\n",
      "          'carrie': 1,\n",
      "          'fisher': 1,\n",
      "          'warburton': 1,\n",
      "          'puddy': 1,\n",
      "          'seinfeld': 1,\n",
      "          'roger': 1,\n",
      "          'corman': 1,\n",
      "          'mewes': 1,\n",
      "          'smith': 1,\n",
      "          'jay': 1,\n",
      "          'silent': 1,\n",
      "          'bob': 1,\n",
      "          'walk': 1,\n",
      "          'nall': 1,\n",
      "          'bit': 1,\n",
      "          'players': 1,\n",
      "          'put': 1,\n",
      "          'forth': 1,\n",
      "          'effort': 1,\n",
      "          'returning': 1,\n",
      "          'stars': 1,\n",
      "          'saving': 1,\n",
      "          'energy': 1,\n",
      "          'long': 1,\n",
      "          'post': 1,\n",
      "          'job': 1,\n",
      "          'search': 1,\n",
      "          'nanother': 1,\n",
      "          'prediction': 1,\n",
      "          'made': 1,\n",
      "          'come': 1,\n",
      "          'pass': 1,\n",
      "          'copying': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'project': 1,\n",
      "          'web': 1,\n",
      "          'strategy': 1,\n",
      "          'websites': 1,\n",
      "          'pretend': 1,\n",
      "          'events': 1,\n",
      "          'provide': 1,\n",
      "          'additional': 1,\n",
      "          'covered': 1,\n",
      "          'studios': 1,\n",
      "          'scream3': 1,\n",
      "          'trailers': 1,\n",
      "          'releases': 1,\n",
      "          'well': 1,\n",
      "          'news': 1,\n",
      "          'gail': 1,\n",
      "          'galeweathers': 1,\n",
      "          'sucks': 1,\n",
      "          'scandals': 1,\n",
      "          'wants': 1,\n",
      "          'sunrisesucks': 1,\n",
      "          'ncraven': 1,\n",
      "          'company': 1,\n",
      "          'promise': 1,\n",
      "          'last': 1,\n",
      "          'nwhile': 1,\n",
      "          'hope': 1,\n",
      "          'thats': 1,\n",
      "          'true': 1,\n",
      "          'hold': 1,\n",
      "          'much': 1,\n",
      "          'hopehorror': 1,\n",
      "          'harder': 1,\n",
      "          'kill': 1,\n",
      "          'monsters': 1,\n",
      "          'halloween': 1,\n",
      "          'h2k': 1,\n",
      "          'works': 1,\n",
      "          'though': 1,\n",
      "          'michael': 1,\n",
      "          'myers': 1,\n",
      "          'beheaded': 1,\n",
      "          'h20': 1,\n",
      "          'freddy': 1,\n",
      "          'vs': 1,\n",
      "          'talked': 1,\n",
      "          'awhile': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'killed': 1,\n",
      "          'bound': 1,\n",
      "          '4': 1,\n",
      "          'someday': 1,\n",
      "          'moviestar': 1,\n",
      "          'wannabes': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'called': 1,\n",
      "          'yawn': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'batman': 6,\n",
      "          'film': 5,\n",
      "          'movie': 4,\n",
      "          'good': 4,\n",
      "          'cast': 4,\n",
      "          'one': 3,\n",
      "          'ni': 3,\n",
      "          'schumaccer': 3,\n",
      "          'nthe': 3,\n",
      "          'impressive': 3,\n",
      "          'better': 3,\n",
      "          'play': 3,\n",
      "          'want': 2,\n",
      "          'get': 2,\n",
      "          'nthis': 2,\n",
      "          'little': 2,\n",
      "          'would': 2,\n",
      "          'screw': 2,\n",
      "          'jim': 2,\n",
      "          'carrey': 2,\n",
      "          'cant': 2,\n",
      "          'direction': 2,\n",
      "          'camera': 2,\n",
      "          'angles': 2,\n",
      "          'terrible': 2,\n",
      "          'clooney': 2,\n",
      "          'casted': 2,\n",
      "          'major': 2,\n",
      "          'schwarzenegger': 2,\n",
      "          'freeze': 2,\n",
      "          'trouble': 2,\n",
      "          'figure': 2,\n",
      "          'limited': 2,\n",
      "          'stuff': 2,\n",
      "          'notice': 2,\n",
      "          'much': 2,\n",
      "          'wouldve': 2,\n",
      "          'real': 2,\n",
      "          'star': 2,\n",
      "          'role': 2,\n",
      "          'theyd': 2,\n",
      "          'involved': 1,\n",
      "          'show': 1,\n",
      "          'business': 1,\n",
      "          'day': 1,\n",
      "          'nand': 1,\n",
      "          'refuse': 1,\n",
      "          'sequels': 1,\n",
      "          'may': 1,\n",
      "          'make': 1,\n",
      "          'believe': 1,\n",
      "          'worse': 1,\n",
      "          'proves': 1,\n",
      "          'worried': 1,\n",
      "          'last': 1,\n",
      "          'thought': 1,\n",
      "          'joel': 1,\n",
      "          'taking': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'also': 1,\n",
      "          'assumed': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'bruce': 1,\n",
      "          'wayne': 1,\n",
      "          'nthey': 1,\n",
      "          'didnt': 1,\n",
      "          'nkilmer': 1,\n",
      "          'job': 1,\n",
      "          'left': 1,\n",
      "          'carry': 1,\n",
      "          'even': 1,\n",
      "          'riddler': 1,\n",
      "          'stand': 1,\n",
      "          'messed': 1,\n",
      "          'glitzy': 1,\n",
      "          'gotham': 1,\n",
      "          'awkward': 1,\n",
      "          'different': 1,\n",
      "          'still': 1,\n",
      "          'mess': 1,\n",
      "          'hes': 1,\n",
      "          'directors': 1,\n",
      "          'whos': 1,\n",
      "          'actors': 1,\n",
      "          'writer': 1,\n",
      "          'akiva': 1,\n",
      "          'goldsmith': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'give': 1,\n",
      "          'anything': 1,\n",
      "          'surprisingly': 1,\n",
      "          'waynebatman': 1,\n",
      "          'odonnell': 1,\n",
      "          'crafty': 1,\n",
      "          'robin': 1,\n",
      "          'usual': 1,\n",
      "          'couldve': 1,\n",
      "          'somebody': 1,\n",
      "          'batgirl': 1,\n",
      "          'friend': 1,\n",
      "          'likes': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'silverstone': 1,\n",
      "          'bad': 1,\n",
      "          'thurman': 1,\n",
      "          'poison': 1,\n",
      "          'ivy': 1,\n",
      "          'problem': 1,\n",
      "          'nhis': 1,\n",
      "          'accent': 1,\n",
      "          'heavy': 1,\n",
      "          'understand': 1,\n",
      "          'says': 1,\n",
      "          'action': 1,\n",
      "          'stars': 1,\n",
      "          'like': 1,\n",
      "          'act': 1,\n",
      "          'know': 1,\n",
      "          'flex': 1,\n",
      "          'muscles': 1,\n",
      "          'say': 1,\n",
      "          'amount': 1,\n",
      "          'kill': 1,\n",
      "          'bunch': 1,\n",
      "          'guys': 1,\n",
      "          'nobodyll': 1,\n",
      "          'nthats': 1,\n",
      "          'nschwarzenegger': 1,\n",
      "          'deserve': 1,\n",
      "          'billing': 1,\n",
      "          'money': 1,\n",
      "          'got': 1,\n",
      "          'hollywood': 1,\n",
      "          'thinks': 1,\n",
      "          'npatrick': 1,\n",
      "          'stewart': 1,\n",
      "          'person': 1,\n",
      "          'id': 1,\n",
      "          'heard': 1,\n",
      "          'considered': 1,\n",
      "          'sean': 1,\n",
      "          'connery': 1,\n",
      "          'arnold': 1,\n",
      "          'im': 1,\n",
      "          'actor': 1,\n",
      "          'life': 1,\n",
      "          'realize': 1,\n",
      "          'must': 1,\n",
      "          'nice': 1,\n",
      "          'talent': 1,\n",
      "          'nakiva': 1,\n",
      "          'goldsmiths': 1,\n",
      "          'screenplay': 1,\n",
      "          'avoids': 1,\n",
      "          'happens': 1,\n",
      "          'normal': 1,\n",
      "          'nin': 1,\n",
      "          'regular': 1,\n",
      "          'concentrate': 1,\n",
      "          'relationship': 1,\n",
      "          'girlfriend': 1,\n",
      "          'elle': 1,\n",
      "          'macphersons': 1,\n",
      "          'julie': 1,\n",
      "          'madison': 1,\n",
      "          'never': 1,\n",
      "          'sense': 1,\n",
      "          'nthere': 1,\n",
      "          'talk': 1,\n",
      "          'fifth': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nmy': 1,\n",
      "          'interest': 1,\n",
      "          'see': 1,\n",
      "          'low': 1,\n",
      "          'hope': 1,\n",
      "          'nif': 1,\n",
      "          'dont': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'rent': 1,\n",
      "          'movies': 1,\n",
      "          'blockbuster': 1,\n",
      "          'nany': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'would': 6,\n",
      "          'joan': 5,\n",
      "          'nthe': 5,\n",
      "          'joans': 4,\n",
      "          'revelation': 4,\n",
      "          'holy': 4,\n",
      "          'spirit': 4,\n",
      "          'spiritual': 3,\n",
      "          'man': 3,\n",
      "          'god': 3,\n",
      "          'message': 3,\n",
      "          'messenger': 2,\n",
      "          'little': 2,\n",
      "          'woman': 2,\n",
      "          'strong': 2,\n",
      "          'leadership': 2,\n",
      "          'visions': 2,\n",
      "          'see': 2,\n",
      "          'dauphin': 2,\n",
      "          'deliver': 2,\n",
      "          'army': 2,\n",
      "          'command': 2,\n",
      "          'crown': 2,\n",
      "          'throne': 2,\n",
      "          'fifth': 2,\n",
      "          'element': 2,\n",
      "          'cast': 2,\n",
      "          'battle': 2,\n",
      "          'end': 2,\n",
      "          'jovovich': 2,\n",
      "          'role': 2,\n",
      "          'looks': 2,\n",
      "          'character': 2,\n",
      "          'like': 2,\n",
      "          'malkovich': 2,\n",
      "          'john': 2,\n",
      "          'death': 2,\n",
      "          'one': 2,\n",
      "          'campaign': 2,\n",
      "          'nas': 2,\n",
      "          'men': 2,\n",
      "          '1': 2,\n",
      "          'word': 2,\n",
      "          'spirits': 2,\n",
      "          'scriptures': 2,\n",
      "          'movie': 1,\n",
      "          'deep': 1,\n",
      "          'religious': 1,\n",
      "          'undertones': 1,\n",
      "          'surprising': 1,\n",
      "          'find': 1,\n",
      "          'story': 1,\n",
      "          'arc': 1,\n",
      "          'ungodly': 1,\n",
      "          'mess': 1,\n",
      "          'nin': 1,\n",
      "          'early': 1,\n",
      "          'mid': 1,\n",
      "          '1400s': 1,\n",
      "          'way': 1,\n",
      "          'light': 1,\n",
      "          'found': 1,\n",
      "          'shining': 1,\n",
      "          'heart': 1,\n",
      "          'church': 1,\n",
      "          'dismally': 1,\n",
      "          'dark': 1,\n",
      "          'oppressive': 1,\n",
      "          'place': 1,\n",
      "          'nfrance': 1,\n",
      "          'involved': 1,\n",
      "          'hundred': 1,\n",
      "          'years': 1,\n",
      "          'war': 1,\n",
      "          'england': 1,\n",
      "          'nthere': 1,\n",
      "          'political': 1,\n",
      "          'country': 1,\n",
      "          'nmorale': 1,\n",
      "          'low': 1,\n",
      "          'hope': 1,\n",
      "          'future': 1,\n",
      "          'nit': 1,\n",
      "          'within': 1,\n",
      "          'setting': 1,\n",
      "          'young': 1,\n",
      "          'french': 1,\n",
      "          'girl': 1,\n",
      "          'began': 1,\n",
      "          'hearing': 1,\n",
      "          'voices': 1,\n",
      "          'seeing': 1,\n",
      "          'nconvinced': 1,\n",
      "          'messages': 1,\n",
      "          'brazenly': 1,\n",
      "          'demanded': 1,\n",
      "          'order': 1,\n",
      "          'directly': 1,\n",
      "          'give': 1,\n",
      "          'nhe': 1,\n",
      "          'nand': 1,\n",
      "          'nthen': 1,\n",
      "          'seated': 1,\n",
      "          'abandons': 1,\n",
      "          'english': 1,\n",
      "          'captors': 1,\n",
      "          'ndirector': 1,\n",
      "          'luc': 1,\n",
      "          'besson': 1,\n",
      "          'may': 1,\n",
      "          'cowrote': 1,\n",
      "          'script': 1,\n",
      "          'never': 1,\n",
      "          'appeared': 1,\n",
      "          'proper': 1,\n",
      "          'handle': 1,\n",
      "          'material': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'confusing': 1,\n",
      "          'blur': 1,\n",
      "          'violent': 1,\n",
      "          'scenes': 1,\n",
      "          'inappropriate': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'lack': 1,\n",
      "          'vibrant': 1,\n",
      "          'life': 1,\n",
      "          'force': 1,\n",
      "          'center': 1,\n",
      "          'film': 1,\n",
      "          'adds': 1,\n",
      "          'largely': 1,\n",
      "          'disappointing': 1,\n",
      "          'product': 1,\n",
      "          'oftentimes': 1,\n",
      "          'unintentionally': 1,\n",
      "          'laughable': 1,\n",
      "          'nhis': 1,\n",
      "          'biggest': 1,\n",
      "          'miscue': 1,\n",
      "          'wife': 1,\n",
      "          'milla': 1,\n",
      "          'title': 1,\n",
      "          'nms': 1,\n",
      "          'spectacular': 1,\n",
      "          'clad': 1,\n",
      "          'armor': 1,\n",
      "          'astride': 1,\n",
      "          'similarly': 1,\n",
      "          'protected': 1,\n",
      "          'horse': 1,\n",
      "          'nif': 1,\n",
      "          'enough': 1,\n",
      "          'fully': 1,\n",
      "          'convey': 1,\n",
      "          'brilliant': 1,\n",
      "          'nsince': 1,\n",
      "          'isnt': 1,\n",
      "          'tried': 1,\n",
      "          'failed': 1,\n",
      "          'act': 1,\n",
      "          'part': 1,\n",
      "          'nher': 1,\n",
      "          'unbalanced': 1,\n",
      "          'inspiring': 1,\n",
      "          'troops': 1,\n",
      "          'merely': 1,\n",
      "          'screaming': 1,\n",
      "          'stridently': 1,\n",
      "          'waving': 1,\n",
      "          'banner': 1,\n",
      "          'sword': 1,\n",
      "          'head': 1,\n",
      "          'possessed': 1,\n",
      "          'njohn': 1,\n",
      "          'fares': 1,\n",
      "          'bit': 1,\n",
      "          'better': 1,\n",
      "          'charles': 1,\n",
      "          'vii': 1,\n",
      "          'nan': 1,\n",
      "          'easily': 1,\n",
      "          'manipulated': 1,\n",
      "          'weakness': 1,\n",
      "          'foreshadows': 1,\n",
      "          'betrayal': 1,\n",
      "          'lead': 1,\n",
      "          'nfaye': 1,\n",
      "          'dunaway': 1,\n",
      "          'thomas': 1,\n",
      "          'affair': 1,\n",
      "          'gives': 1,\n",
      "          'performance': 1,\n",
      "          'minimal': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'dauphins': 1,\n",
      "          'motherinlaw': 1,\n",
      "          'chief': 1,\n",
      "          'advisor': 1,\n",
      "          'comprised': 1,\n",
      "          'comical': 1,\n",
      "          'figures': 1,\n",
      "          'stooges': 1,\n",
      "          'soldiers': 1,\n",
      "          'exception': 1,\n",
      "          'tcheky': 1,\n",
      "          'karyo': 1,\n",
      "          'la': 1,\n",
      "          'femme': 1,\n",
      "          'nikita': 1,\n",
      "          'dunois': 1,\n",
      "          'leading': 1,\n",
      "          'attack': 1,\n",
      "          'prior': 1,\n",
      "          'arrival': 1,\n",
      "          'ntrying': 1,\n",
      "          'plan': 1,\n",
      "          'systematic': 1,\n",
      "          'sees': 1,\n",
      "          'authority': 1,\n",
      "          'negated': 1,\n",
      "          'insistence': 1,\n",
      "          'following': 1,\n",
      "          'ndustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'sphere': 1,\n",
      "          'small': 1,\n",
      "          'inhuman': 1,\n",
      "          'conscience': 1,\n",
      "          'begins': 1,\n",
      "          'speaking': 1,\n",
      "          'awaiting': 1,\n",
      "          'trial': 1,\n",
      "          'ndressed': 1,\n",
      "          'cloaked': 1,\n",
      "          'monk': 1,\n",
      "          'leads': 1,\n",
      "          'doubt': 1,\n",
      "          'revelations': 1,\n",
      "          'well': 1,\n",
      "          'nscriptures': 1,\n",
      "          'speak': 1,\n",
      "          'ngod': 1,\n",
      "          'via': 1,\n",
      "          'gift': 1,\n",
      "          'able': 1,\n",
      "          'communicate': 1,\n",
      "          'nthree': 1,\n",
      "          'nine': 1,\n",
      "          'manifestations': 1,\n",
      "          'listed': 1,\n",
      "          'corinthians': 1,\n",
      "          '12': 1,\n",
      "          'deal': 1,\n",
      "          'receiving': 1,\n",
      "          'nthey': 1,\n",
      "          'knowledge': 1,\n",
      "          'wisdom': 1,\n",
      "          'discerning': 1,\n",
      "          'neven': 1,\n",
      "          'result': 1,\n",
      "          'giving': 1,\n",
      "          'nwho': 1,\n",
      "          'spake': 1,\n",
      "          'moved': 1,\n",
      "          'e': 1,\n",
      "          'nby': 1,\n",
      "          'nbut': 1,\n",
      "          'also': 1,\n",
      "          'caution': 1,\n",
      "          'us': 1,\n",
      "          'n': 1,\n",
      "          'beloved': 1,\n",
      "          'believe': 1,\n",
      "          'every': 1,\n",
      "          'try': 1,\n",
      "          'whether': 1,\n",
      "          'many': 1,\n",
      "          'false': 1,\n",
      "          'prophets': 1,\n",
      "          'gone': 1,\n",
      "          'world': 1,\n",
      "          'n1': 1,\n",
      "          '4': 1,\n",
      "          'kjv': 1,\n",
      "          'njoans': 1,\n",
      "          'burned': 1,\n",
      "          'stake': 1,\n",
      "          'age': 1,\n",
      "          '19': 1,\n",
      "          'frenzy': 1,\n",
      "          'mob': 1,\n",
      "          'rule': 1,\n",
      "          'blood': 1,\n",
      "          'lust': 1,\n",
      "          'inspiration': 1,\n",
      "          'wrought': 1,\n",
      "          'pain': 1,\n",
      "          'suffering': 1,\n",
      "          'followed': 1,\n",
      "          'point': 1,\n",
      "          'devilish': 1,\n",
      "          'influence': 1,\n",
      "          'rather': 1,\n",
      "          'godly': 1,\n",
      "          'nwhile': 1,\n",
      "          'conviction': 1,\n",
      "          'intense': 1,\n",
      "          'believing': 1,\n",
      "          'remains': 1,\n",
      "          'admirable': 1,\n",
      "          'quality': 1,\n",
      "          'others': 1,\n",
      "          'since': 1,\n",
      "          'misled': 1,\n",
      "          'master': 1,\n",
      "          'deception': 1,\n",
      "          'quite': 1,\n",
      "          'effective': 1,\n",
      "          'nshe': 1,\n",
      "          'confused': 1,\n",
      "          'whose': 1,\n",
      "          'carrying': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dinosaurs': 4,\n",
      "          'jurrasic': 3,\n",
      "          'park': 3,\n",
      "          'nit': 2,\n",
      "          'office': 2,\n",
      "          'good': 2,\n",
      "          'two': 2,\n",
      "          'dinos': 2,\n",
      "          'attraction': 2,\n",
      "          'n': 2,\n",
      "          'island': 2,\n",
      "          'move': 2,\n",
      "          'idea': 2,\n",
      "          'document': 2,\n",
      "          'one': 2,\n",
      "          'na': 2,\n",
      "          'nits': 2,\n",
      "          'scenes': 2,\n",
      "          'way': 2,\n",
      "          'nothing': 2,\n",
      "          'possibly': 1,\n",
      "          'years': 1,\n",
      "          'anticipated': 1,\n",
      "          'film': 1,\n",
      "          'finally': 1,\n",
      "          'arrives': 1,\n",
      "          'uk': 1,\n",
      "          'smashed': 1,\n",
      "          'u': 1,\n",
      "          'box': 1,\n",
      "          'records': 1,\n",
      "          'opening': 1,\n",
      "          'weekend': 1,\n",
      "          'doubt': 1,\n",
      "          'nbut': 1,\n",
      "          'nin': 1,\n",
      "          'word': 1,\n",
      "          'nill': 1,\n",
      "          'elaborate': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'follows': 1,\n",
      "          'napparently': 1,\n",
      "          'islands': 1,\n",
      "          'none': 1,\n",
      "          'lived': 1,\n",
      "          'untouched': 1,\n",
      "          'mankind': 1,\n",
      "          'tourist': 1,\n",
      "          'failed': 1,\n",
      "          'even': 1,\n",
      "          'opened': 1,\n",
      "          'see': 1,\n",
      "          'nimgen': 1,\n",
      "          'company': 1,\n",
      "          'funded': 1,\n",
      "          'want': 1,\n",
      "          'reccover': 1,\n",
      "          'losses': 1,\n",
      "          'taking': 1,\n",
      "          'new': 1,\n",
      "          'san': 1,\n",
      "          'diago': 1,\n",
      "          'nrealizing': 1,\n",
      "          'bad': 1,\n",
      "          'proffessor': 1,\n",
      "          'john': 1,\n",
      "          'hammond': 1,\n",
      "          'richard': 1,\n",
      "          'attenborough': 1,\n",
      "          'decides': 1,\n",
      "          'send': 1,\n",
      "          'team': 1,\n",
      "          'rally': 1,\n",
      "          'public': 1,\n",
      "          'support': 1,\n",
      "          'preserve': 1,\n",
      "          'nenter': 1,\n",
      "          'familiar': 1,\n",
      "          'mumbling': 1,\n",
      "          'man': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'agrees': 1,\n",
      "          'go': 1,\n",
      "          'told': 1,\n",
      "          'girlfriend': 1,\n",
      "          'already': 1,\n",
      "          'nso': 1,\n",
      "          'basically': 1,\n",
      "          'ntwo': 1,\n",
      "          'teams': 1,\n",
      "          'sent': 1,\n",
      "          'catch': 1,\n",
      "          'mainland': 1,\n",
      "          'trying': 1,\n",
      "          'forced': 1,\n",
      "          'work': 1,\n",
      "          'together': 1,\n",
      "          'fighting': 1,\n",
      "          'survival': 1,\n",
      "          'firm': 1,\n",
      "          'intentions': 1,\n",
      "          'eating': 1,\n",
      "          'fairly': 1,\n",
      "          'however': 1,\n",
      "          'let': 1,\n",
      "          'slight': 1,\n",
      "          'problem': 1,\n",
      "          'crap': 1,\n",
      "          'nover': 1,\n",
      "          'hours': 1,\n",
      "          'chase': 1,\n",
      "          'gets': 1,\n",
      "          'boring': 1,\n",
      "          'quiclky': 1,\n",
      "          'nadd': 1,\n",
      "          'terrible': 1,\n",
      "          'script': 1,\n",
      "          'feeble': 1,\n",
      "          'attempts': 1,\n",
      "          'occasional': 1,\n",
      "          'characterisation': 1,\n",
      "          'end': 1,\n",
      "          'disinterested': 1,\n",
      "          'becomes': 1,\n",
      "          'background': 1,\n",
      "          'noise': 1,\n",
      "          'mind': 1,\n",
      "          'starts': 1,\n",
      "          'concentrating': 1,\n",
      "          'things': 1,\n",
      "          'like': 1,\n",
      "          'whats': 1,\n",
      "          'tea': 1,\n",
      "          'cut': 1,\n",
      "          'lawn': 1,\n",
      "          'later': 1,\n",
      "          'yes': 1,\n",
      "          'shame': 1,\n",
      "          'really': 1,\n",
      "          'spielberg': 1,\n",
      "          'lowered': 1,\n",
      "          'making': 1,\n",
      "          'essentially': 1,\n",
      "          'blatant': 1,\n",
      "          'cash': 1,\n",
      "          'adds': 1,\n",
      "          'practically': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'nwith': 1,\n",
      "          'creative': 1,\n",
      "          'genuinely': 1,\n",
      "          'tense': 1,\n",
      "          'fabulous': 1,\n",
      "          'c': 1,\n",
      "          'g': 1,\n",
      "          'ndinosaurs': 1,\n",
      "          'rexs': 1,\n",
      "          'seen': 1,\n",
      "          'believed': 1,\n",
      "          'else': 1,\n",
      "          'recommend': 1,\n",
      "          'lost': 1,\n",
      "          'world': 1,\n",
      "          'dissapointing': 1,\n",
      "          'sequel': 1,\n",
      "          'indeed': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'holy': 5,\n",
      "          'man': 5,\n",
      "          'murphy': 5,\n",
      "          'good': 4,\n",
      "          'g': 4,\n",
      "          'tries': 4,\n",
      "          'performance': 3,\n",
      "          'goldblum': 3,\n",
      "          'ricky': 3,\n",
      "          'media': 3,\n",
      "          'nthe': 3,\n",
      "          'onscreen': 3,\n",
      "          'eddie': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'long': 2,\n",
      "          'annoying': 2,\n",
      "          'robert': 2,\n",
      "          'career': 2,\n",
      "          'wait': 2,\n",
      "          'video': 2,\n",
      "          'fastforward': 2,\n",
      "          'dull': 2,\n",
      "          'enjoying': 2,\n",
      "          'moment': 2,\n",
      "          'spiritual': 2,\n",
      "          'hayman': 2,\n",
      "          'kelly': 2,\n",
      "          'preston': 2,\n",
      "          'shopping': 2,\n",
      "          'network': 2,\n",
      "          'loggia': 2,\n",
      "          'n': 2,\n",
      "          'attempts': 2,\n",
      "          'things': 2,\n",
      "          'already': 2,\n",
      "          'film': 2,\n",
      "          'thats': 2,\n",
      "          'right': 2,\n",
      "          'love': 2,\n",
      "          'hes': 2,\n",
      "          'way': 2,\n",
      "          'boasts': 1,\n",
      "          'sweet': 1,\n",
      "          'gentle': 1,\n",
      "          'comic': 1,\n",
      "          'unusually': 1,\n",
      "          'subdued': 1,\n",
      "          'moderately': 1,\n",
      "          'funny': 1,\n",
      "          'skits': 1,\n",
      "          'get': 1,\n",
      "          'stuff': 1,\n",
      "          'sit': 1,\n",
      "          'painfully': 1,\n",
      "          'setup': 1,\n",
      "          'loads': 1,\n",
      "          'tedious': 1,\n",
      "          'filler': 1,\n",
      "          'interminable': 1,\n",
      "          'shots': 1,\n",
      "          'jeff': 1,\n",
      "          'stammering': 1,\n",
      "          'twitching': 1,\n",
      "          'superfluous': 1,\n",
      "          'romantic': 1,\n",
      "          'subplot': 1,\n",
      "          'quite': 1,\n",
      "          'possibly': 1,\n",
      "          'loggias': 1,\n",
      "          'nif': 1,\n",
      "          'ever': 1,\n",
      "          'movie': 1,\n",
      "          'screamed': 1,\n",
      "          'parts': 1,\n",
      "          'neddie': 1,\n",
      "          'plays': 1,\n",
      "          'robed': 1,\n",
      "          'nomadic': 1,\n",
      "          'pilgrim': 1,\n",
      "          'wandering': 1,\n",
      "          'land': 1,\n",
      "          'spreading': 1,\n",
      "          'message': 1,\n",
      "          'na': 1,\n",
      "          'chance': 1,\n",
      "          'meeting': 1,\n",
      "          'stressedout': 1,\n",
      "          'executive': 1,\n",
      "          'homeshopping': 1,\n",
      "          'channel': 1,\n",
      "          'kate': 1,\n",
      "          'newell': 1,\n",
      "          'nononsense': 1,\n",
      "          'analyst': 1,\n",
      "          'results': 1,\n",
      "          'physical': 1,\n",
      "          'injury': 1,\n",
      "          'quicker': 1,\n",
      "          'say': 1,\n",
      "          'odd': 1,\n",
      "          'couple': 1,\n",
      "          'ends': 1,\n",
      "          'rooming': 1,\n",
      "          'extremely': 1,\n",
      "          'leery': 1,\n",
      "          'nafter': 1,\n",
      "          'script': 1,\n",
      "          'gymnastics': 1,\n",
      "          'appears': 1,\n",
      "          'live': 1,\n",
      "          'air': 1,\n",
      "          'buy': 1,\n",
      "          'wreaking': 1,\n",
      "          'havoc': 1,\n",
      "          'cheesy': 1,\n",
      "          'product': 1,\n",
      "          'demonstrations': 1,\n",
      "          'enraging': 1,\n",
      "          'owner': 1,\n",
      "          'mr': 1,\n",
      "          'mcbainbridge': 1,\n",
      "          'becoming': 1,\n",
      "          'national': 1,\n",
      "          'sensation': 1,\n",
      "          'several': 1,\n",
      "          'nit': 1,\n",
      "          'satirize': 1,\n",
      "          'home': 1,\n",
      "          'networks': 1,\n",
      "          'difficult': 1,\n",
      "          'effectively': 1,\n",
      "          'make': 1,\n",
      "          'fun': 1,\n",
      "          'something': 1,\n",
      "          'selfparody': 1,\n",
      "          'teach': 1,\n",
      "          'us': 1,\n",
      "          'collecting': 1,\n",
      "          'material': 1,\n",
      "          'possessions': 1,\n",
      "          'merely': 1,\n",
      "          'futile': 1,\n",
      "          'attempt': 1,\n",
      "          'fill': 1,\n",
      "          'holes': 1,\n",
      "          'hearts': 1,\n",
      "          'common': 1,\n",
      "          'knowledge': 1,\n",
      "          'also': 1,\n",
      "          'present': 1,\n",
      "          'story': 1,\n",
      "          'redemption': 1,\n",
      "          'decide': 1,\n",
      "          'whether': 1,\n",
      "          'exploit': 1,\n",
      "          'gs': 1,\n",
      "          'achieve': 1,\n",
      "          'financial': 1,\n",
      "          'security': 1,\n",
      "          'thing': 1,\n",
      "          'expense': 1,\n",
      "          'nanyone': 1,\n",
      "          'want': 1,\n",
      "          'place': 1,\n",
      "          'wager': 1,\n",
      "          'final': 1,\n",
      "          'decision': 1,\n",
      "          'one': 1,\n",
      "          'genuine': 1,\n",
      "          'asset': 1,\n",
      "          'gives': 1,\n",
      "          'charming': 1,\n",
      "          'sharing': 1,\n",
      "          'relevant': 1,\n",
      "          'advice': 1,\n",
      "          'around': 1,\n",
      "          'beaming': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'smile': 1,\n",
      "          'moments': 1,\n",
      "          'nmurphy': 1,\n",
      "          'delightful': 1,\n",
      "          'takes': 1,\n",
      "          'whenever': 1,\n",
      "          'enough': 1,\n",
      "          'njeff': 1,\n",
      "          'gets': 1,\n",
      "          'lions': 1,\n",
      "          'share': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'tired': 1,\n",
      "          'storyline': 1,\n",
      "          'weighs': 1,\n",
      "          'proceedings': 1,\n",
      "          'nas': 1,\n",
      "          'potential': 1,\n",
      "          'interest': 1,\n",
      "          'brighten': 1,\n",
      "          'transforms': 1,\n",
      "          'allbusiness': 1,\n",
      "          'shark': 1,\n",
      "          'empathic': 1,\n",
      "          'softy': 1,\n",
      "          'far': 1,\n",
      "          'quickly': 1,\n",
      "          'abrupt': 1,\n",
      "          'change': 1,\n",
      "          'reeks': 1,\n",
      "          'contrivance': 1,\n",
      "          'principal': 1,\n",
      "          'actor': 1,\n",
      "          'wastes': 1,\n",
      "          'talents': 1,\n",
      "          'onenote': 1,\n",
      "          'turn': 1,\n",
      "          'ruthless': 1,\n",
      "          'screaming': 1,\n",
      "          'monster': 1,\n",
      "          'nstructurally': 1,\n",
      "          'unsound': 1,\n",
      "          'appealing': 1,\n",
      "          'isnt': 1,\n",
      "          'ninstead': 1,\n",
      "          'dropping': 1,\n",
      "          'money': 1,\n",
      "          'theater': 1,\n",
      "          'trifle': 1,\n",
      "          'hits': 1,\n",
      "          'past': 1,\n",
      "          'everything': 1,\n",
      "          'except': 1,\n",
      "          'scenes': 1,\n",
      "          'ng': 1,\n",
      "          'suggests': 1,\n",
      "          'focus': 1,\n",
      "          'best': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'love': 6,\n",
      "          'letter': 6,\n",
      "          'movie': 6,\n",
      "          'little': 5,\n",
      "          'also': 5,\n",
      "          'bookstore': 4,\n",
      "          'people': 3,\n",
      "          'guilty': 3,\n",
      "          'nthe': 3,\n",
      "          'characters': 3,\n",
      "          'must': 3,\n",
      "          'bad': 2,\n",
      "          'time': 2,\n",
      "          'way': 2,\n",
      "          'sit': 2,\n",
      "          'dont': 2,\n",
      "          'nreally': 2,\n",
      "          'plot': 2,\n",
      "          'shows': 2,\n",
      "          'town': 2,\n",
      "          'everyone': 2,\n",
      "          'owner': 2,\n",
      "          'helen': 2,\n",
      "          'capshaw': 2,\n",
      "          'seen': 2,\n",
      "          'tom': 2,\n",
      "          'feels': 2,\n",
      "          'nto': 2,\n",
      "          'degeneres': 2,\n",
      "          'nothing': 2,\n",
      "          'isnt': 2,\n",
      "          'interesting': 2,\n",
      "          'various': 2,\n",
      "          'nthis': 2,\n",
      "          'good': 2,\n",
      "          'either': 2,\n",
      "          'nthere': 2,\n",
      "          'nbut': 2,\n",
      "          'far': 2,\n",
      "          'failure': 2,\n",
      "          'actually': 1,\n",
      "          'dreamworks': 1,\n",
      "          'decided': 1,\n",
      "          'release': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'episode': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'less': 1,\n",
      "          'dreadful': 1,\n",
      "          'comedy': 1,\n",
      "          'nand': 1,\n",
      "          'really': 1,\n",
      "          'feel': 1,\n",
      "          'wishing': 1,\n",
      "          'death': 1,\n",
      "          'boxoffice': 1,\n",
      "          'nnot': 1,\n",
      "          'done': 1,\n",
      "          'mysterious': 1,\n",
      "          'unaddressed': 1,\n",
      "          'small': 1,\n",
      "          'causing': 1,\n",
      "          'confusion': 1,\n",
      "          'reads': 1,\n",
      "          'center': 1,\n",
      "          'ensuing': 1,\n",
      "          'disaster': 1,\n",
      "          'kate': 1,\n",
      "          'main': 1,\n",
      "          'nin': 1,\n",
      "          'past': 1,\n",
      "          'year': 1,\n",
      "          'half': 1,\n",
      "          'weve': 1,\n",
      "          'life': 1,\n",
      "          'beautiful': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'mail': 1,\n",
      "          'upcoming': 1,\n",
      "          'notting': 1,\n",
      "          'hill': 1,\n",
      "          'finds': 1,\n",
      "          'couch': 1,\n",
      "          'cushions': 1,\n",
      "          'nshe': 1,\n",
      "          'immediately': 1,\n",
      "          'starts': 1,\n",
      "          'testing': 1,\n",
      "          'see': 1,\n",
      "          'might': 1,\n",
      "          'comes': 1,\n",
      "          'incorrect': 1,\n",
      "          'conclusion': 1,\n",
      "          'author': 1,\n",
      "          'note': 1,\n",
      "          'young': 1,\n",
      "          'employee': 1,\n",
      "          'played': 1,\n",
      "          'everett': 1,\n",
      "          'scott': 1,\n",
      "          'nhe': 1,\n",
      "          'reading': 1,\n",
      "          'assumes': 1,\n",
      "          'wrote': 1,\n",
      "          'nafter': 1,\n",
      "          'fall': 1,\n",
      "          'well': 1,\n",
      "          'duh': 1,\n",
      "          'nkate': 1,\n",
      "          'getting': 1,\n",
      "          'relationship': 1,\n",
      "          'someone': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'younger': 1,\n",
      "          'involved': 1,\n",
      "          'fireman': 1,\n",
      "          'selleck': 1,\n",
      "          'add': 1,\n",
      "          'turmoil': 1,\n",
      "          'mother': 1,\n",
      "          'blythe': 1,\n",
      "          'danner': 1,\n",
      "          'apparently': 1,\n",
      "          'daughter': 1,\n",
      "          '9': 1,\n",
      "          'trusted': 1,\n",
      "          'manager': 1,\n",
      "          'deadpan': 1,\n",
      "          'ellen': 1,\n",
      "          'quits': 1,\n",
      "          'nsupporting': 1,\n",
      "          'arent': 1,\n",
      "          'called': 1,\n",
      "          'supporting': 1,\n",
      "          'ntheir': 1,\n",
      "          'purpose': 1,\n",
      "          'move': 1,\n",
      "          'along': 1,\n",
      "          'theyre': 1,\n",
      "          'supposed': 1,\n",
      "          'give': 1,\n",
      "          'storyline': 1,\n",
      "          'backbone': 1,\n",
      "          'exhibit': 1,\n",
      "          'least': 1,\n",
      "          'marginal': 1,\n",
      "          'depth': 1,\n",
      "          'nrarely': 1,\n",
      "          'work': 1,\n",
      "          'puts': 1,\n",
      "          'protagonist': 1,\n",
      "          'middle': 1,\n",
      "          'surrounds': 1,\n",
      "          'hackneyed': 1,\n",
      "          'dull': 1,\n",
      "          'cardboard': 1,\n",
      "          'secondary': 1,\n",
      "          'especially': 1,\n",
      "          'core': 1,\n",
      "          'protagonists': 1,\n",
      "          'interactions': 1,\n",
      "          'letters': 1,\n",
      "          'damning': 1,\n",
      "          'error': 1,\n",
      "          'ncapshaws': 1,\n",
      "          'character': 1,\n",
      "          'present': 1,\n",
      "          'recent': 1,\n",
      "          'romantic': 1,\n",
      "          'comedies': 1,\n",
      "          'surround': 1,\n",
      "          'underwritten': 1,\n",
      "          'purely': 1,\n",
      "          'onedimensional': 1,\n",
      "          'nbecause': 1,\n",
      "          'awkward': 1,\n",
      "          'insincere': 1,\n",
      "          'neven': 1,\n",
      "          'worse': 1,\n",
      "          'bore': 1,\n",
      "          'ni': 1,\n",
      "          'liked': 1,\n",
      "          'else': 1,\n",
      "          'painfully': 1,\n",
      "          'fake': 1,\n",
      "          'undermining': 1,\n",
      "          'drama': 1,\n",
      "          'sexual': 1,\n",
      "          'tension': 1,\n",
      "          'potential': 1,\n",
      "          'exist': 1,\n",
      "          'particularly': 1,\n",
      "          'hilarious': 1,\n",
      "          'besides': 1,\n",
      "          'wisecracks': 1,\n",
      "          'theres': 1,\n",
      "          'even': 1,\n",
      "          'amusing': 1,\n",
      "          'completely': 1,\n",
      "          'thoughtless': 1,\n",
      "          'film': 1,\n",
      "          'director': 1,\n",
      "          'peter': 1,\n",
      "          'hosun': 1,\n",
      "          'chan': 1,\n",
      "          'job': 1,\n",
      "          'portraying': 1,\n",
      "          'helens': 1,\n",
      "          'yearnings': 1,\n",
      "          'subtle': 1,\n",
      "          'complexities': 1,\n",
      "          'profound': 1,\n",
      "          'common': 1,\n",
      "          'theme': 1,\n",
      "          'running': 1,\n",
      "          'proceedings': 1,\n",
      "          'thus': 1,\n",
      "          'seems': 1,\n",
      "          'thoughtfully': 1,\n",
      "          'pointless': 1,\n",
      "          'harmless': 1,\n",
      "          'abomination': 1,\n",
      "          'torturous': 1,\n",
      "          'nawful': 1,\n",
      "          'inane': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'word': 4,\n",
      "          'nathan': 4,\n",
      "          'say': 3,\n",
      "          'conrad': 3,\n",
      "          'gang': 3,\n",
      "          'koster': 3,\n",
      "          'promise': 2,\n",
      "          'murphy': 2,\n",
      "          'dont': 2,\n",
      "          'girl': 2,\n",
      "          'interrupted': 2,\n",
      "          'new': 2,\n",
      "          'father': 2,\n",
      "          'famke': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'janssen': 2,\n",
      "          'sean': 2,\n",
      "          'best': 2,\n",
      "          'get': 2,\n",
      "          'inside': 2,\n",
      "          'like': 2,\n",
      "          'film': 2,\n",
      "          'use': 2,\n",
      "          'big': 2,\n",
      "          'surrounded': 1,\n",
      "          'hype': 1,\n",
      "          'high': 1,\n",
      "          'hopes': 1,\n",
      "          'overthetop': 1,\n",
      "          'performance': 1,\n",
      "          'cluelesss': 1,\n",
      "          'brittany': 1,\n",
      "          'looked': 1,\n",
      "          'full': 1,\n",
      "          'nhell': 1,\n",
      "          'hear': 1,\n",
      "          'ill': 1,\n",
      "          'never': 1,\n",
      "          'tell': 1,\n",
      "          'whisper': 1,\n",
      "          'tv': 1,\n",
      "          'commercial': 1,\n",
      "          'goose': 1,\n",
      "          'bumps': 1,\n",
      "          'run': 1,\n",
      "          'spine': 1,\n",
      "          'nalas': 1,\n",
      "          'filled': 1,\n",
      "          'little': 1,\n",
      "          'disappointment': 1,\n",
      "          'kooky': 1,\n",
      "          'mix': 1,\n",
      "          'ransom': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'company': 1,\n",
      "          'collecting': 1,\n",
      "          'paycheck': 1,\n",
      "          'plod': 1,\n",
      "          'vapid': 1,\n",
      "          'dull': 1,\n",
      "          'kidnapping': 1,\n",
      "          'thriller': 1,\n",
      "          'ndouglas': 1,\n",
      "          'stars': 1,\n",
      "          'renowned': 1,\n",
      "          'york': 1,\n",
      "          'psychologist': 1,\n",
      "          'devoted': 1,\n",
      "          'jessie': 1,\n",
      "          'skye': 1,\n",
      "          'mccole': 1,\n",
      "          'bartusiak': 1,\n",
      "          'loving': 1,\n",
      "          'husband': 1,\n",
      "          'aggie': 1,\n",
      "          'nafter': 1,\n",
      "          'jewel': 1,\n",
      "          'thieves': 1,\n",
      "          'headed': 1,\n",
      "          'beans': 1,\n",
      "          'kidnaps': 1,\n",
      "          'daughter': 1,\n",
      "          'forced': 1,\n",
      "          'extract': 1,\n",
      "          'patient': 1,\n",
      "          'catatonic': 1,\n",
      "          'violent': 1,\n",
      "          'elisabeth': 1,\n",
      "          'burrows': 1,\n",
      "          'location': 1,\n",
      "          'hidden': 1,\n",
      "          'bank': 1,\n",
      "          'job': 1,\n",
      "          'booty': 1,\n",
      "          'hid': 1,\n",
      "          'decade': 1,\n",
      "          'ago': 1,\n",
      "          'nbut': 1,\n",
      "          'hardnosed': 1,\n",
      "          'detective': 1,\n",
      "          'sandra': 1,\n",
      "          'cassidy': 1,\n",
      "          'jennifer': 1,\n",
      "          'esposito': 1,\n",
      "          'j': 1,\n",
      "          'lo': 1,\n",
      "          'impression': 1,\n",
      "          'tracking': 1,\n",
      "          'hoodlums': 1,\n",
      "          'stakes': 1,\n",
      "          'raised': 1,\n",
      "          'races': 1,\n",
      "          'clock': 1,\n",
      "          'crack': 1,\n",
      "          'mystery': 1,\n",
      "          'elisabeths': 1,\n",
      "          'head': 1,\n",
      "          'order': 1,\n",
      "          'goods': 1,\n",
      "          'nthe': 1,\n",
      "          'catch': 1,\n",
      "          'five': 1,\n",
      "          'oclock': 1,\n",
      "          'solve': 1,\n",
      "          'puzzle': 1,\n",
      "          'nwhoa': 1,\n",
      "          'suspense': 1,\n",
      "          'almost': 1,\n",
      "          'much': 1,\n",
      "          'ndont': 1,\n",
      "          'loses': 1,\n",
      "          'audience': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'nmurphy': 1,\n",
      "          'looks': 1,\n",
      "          'acts': 1,\n",
      "          'linda': 1,\n",
      "          'blair': 1,\n",
      "          'exorcist': 1,\n",
      "          'first': 1,\n",
      "          'part': 1,\n",
      "          'movie': 1,\n",
      "          'turns': 1,\n",
      "          'around': 1,\n",
      "          'reprises': 1,\n",
      "          'role': 1,\n",
      "          'nand': 1,\n",
      "          'real': 1,\n",
      "          'crazy': 1,\n",
      "          'found': 1,\n",
      "          'director': 1,\n",
      "          'gary': 1,\n",
      "          'fleders': 1,\n",
      "          'things': 1,\n",
      "          'denver': 1,\n",
      "          'youre': 1,\n",
      "          'dead': 1,\n",
      "          'staggering': 1,\n",
      "          'flashback': 1,\n",
      "          'sequences': 1,\n",
      "          'noliver': 1,\n",
      "          'platt': 1,\n",
      "          'even': 1,\n",
      "          'bean': 1,\n",
      "          'decent': 1,\n",
      "          'actors': 1,\n",
      "          'stuff': 1,\n",
      "          'given': 1,\n",
      "          'bedridden': 1,\n",
      "          'wife': 1,\n",
      "          'fighting': 1,\n",
      "          'token': 1,\n",
      "          'black': 1,\n",
      "          'guy': 1,\n",
      "          'crutch': 1,\n",
      "          'insulting': 1,\n",
      "          'demeaning': 1,\n",
      "          'nadditionally': 1,\n",
      "          'surveillance': 1,\n",
      "          'cameras': 1,\n",
      "          'laptops': 1,\n",
      "          'track': 1,\n",
      "          'nathans': 1,\n",
      "          'every': 1,\n",
      "          'move': 1,\n",
      "          'downright': 1,\n",
      "          'unbelievable': 1,\n",
      "          'nhow': 1,\n",
      "          'excons': 1,\n",
      "          'fresh': 1,\n",
      "          'house': 1,\n",
      "          'afford': 1,\n",
      "          'equipment': 1,\n",
      "          'ndespite': 1,\n",
      "          'flaws': 1,\n",
      "          'surprisingly': 1,\n",
      "          'mainstream': 1,\n",
      "          'youll': 1,\n",
      "          'find': 1,\n",
      "          'month': 1,\n",
      "          'audiences': 1,\n",
      "          'lap': 1,\n",
      "          'namericans': 1,\n",
      "          'love': 1,\n",
      "          'lukewarm': 1,\n",
      "          'halfbaked': 1,\n",
      "          'thrillers': 1,\n",
      "          'starring': 1,\n",
      "          'names': 1,\n",
      "          'accompanied': 1,\n",
      "          'cheap': 1,\n",
      "          'thrills': 1,\n",
      "          'nsomeone': 1,\n",
      "          'lithium': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'mr': 5,\n",
      "          'nthe': 5,\n",
      "          'magoo': 5,\n",
      "          'said': 4,\n",
      "          'version': 3,\n",
      "          'nmagoo': 3,\n",
      "          'cartoon': 3,\n",
      "          'one': 3,\n",
      "          'nmr': 3,\n",
      "          'good': 3,\n",
      "          'picture': 3,\n",
      "          'age': 3,\n",
      "          'funny': 2,\n",
      "          'think': 2,\n",
      "          'nielsen': 2,\n",
      "          'runs': 2,\n",
      "          'even': 2,\n",
      "          'movies': 2,\n",
      "          'looks': 2,\n",
      "          'bad': 2,\n",
      "          'home': 2,\n",
      "          'alone': 2,\n",
      "          '3': 2,\n",
      "          'nhe': 2,\n",
      "          'nmy': 2,\n",
      "          '8': 2,\n",
      "          'thought': 2,\n",
      "          'really': 2,\n",
      "          'nhis': 2,\n",
      "          'friend': 2,\n",
      "          'silly': 2,\n",
      "          'concepts': 1,\n",
      "          'seem': 1,\n",
      "          'patently': 1,\n",
      "          'hopeless': 1,\n",
      "          'beginning': 1,\n",
      "          'liveaction': 1,\n",
      "          'prime': 1,\n",
      "          'example': 1,\n",
      "          'figure': 1,\n",
      "          'bumbling': 1,\n",
      "          'blind': 1,\n",
      "          'man': 1,\n",
      "          'quite': 1,\n",
      "          'small': 1,\n",
      "          'doses': 1,\n",
      "          'within': 1,\n",
      "          'confines': 1,\n",
      "          'animated': 1,\n",
      "          'images': 1,\n",
      "          'nif': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'star': 1,\n",
      "          'leslie': 1,\n",
      "          'dubious': 1,\n",
      "          'choice': 1,\n",
      "          'play': 1,\n",
      "          'role': 1,\n",
      "          'short': 1,\n",
      "          'guy': 1,\n",
      "          'walls': 1,\n",
      "          'right': 1,\n",
      "          'astonishing': 1,\n",
      "          'selection': 1,\n",
      "          'nfor': 1,\n",
      "          'director': 1,\n",
      "          'tapped': 1,\n",
      "          'hong': 1,\n",
      "          'kongs': 1,\n",
      "          'stanley': 1,\n",
      "          'tong': 1,\n",
      "          'whose': 1,\n",
      "          'resume': 1,\n",
      "          'consists': 1,\n",
      "          'mainly': 1,\n",
      "          'handful': 1,\n",
      "          'featuring': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'expert': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'story': 1,\n",
      "          'large': 1,\n",
      "          'stolen': 1,\n",
      "          'ruby': 1,\n",
      "          'woolworth': 1,\n",
      "          'reject': 1,\n",
      "          'gets': 1,\n",
      "          'course': 1,\n",
      "          'realize': 1,\n",
      "          'nmayhem': 1,\n",
      "          'ensues': 1,\n",
      "          'guys': 1,\n",
      "          'chase': 1,\n",
      "          'frequently': 1,\n",
      "          'oblivious': 1,\n",
      "          'fact': 1,\n",
      "          'anyone': 1,\n",
      "          'chased': 1,\n",
      "          'nlike': 1,\n",
      "          'without': 1,\n",
      "          'class': 1,\n",
      "          'described': 1,\n",
      "          'painfully': 1,\n",
      "          'nfifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'eternity': 1,\n",
      "          'humor': 1,\n",
      "          'pathetically': 1,\n",
      "          'lame': 1,\n",
      "          'pacing': 1,\n",
      "          'way': 1,\n",
      "          'nwhen': 1,\n",
      "          'stuck': 1,\n",
      "          'theater': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'watching': 1,\n",
      "          'claims': 1,\n",
      "          'motion': 1,\n",
      "          'solace': 1,\n",
      "          'provides': 1,\n",
      "          'three': 1,\n",
      "          'moments': 1,\n",
      "          'begins': 1,\n",
      "          'ends': 1,\n",
      "          'classic': 1,\n",
      "          'character': 1,\n",
      "          'exudes': 1,\n",
      "          'usual': 1,\n",
      "          'charm': 1,\n",
      "          'saving': 1,\n",
      "          'grave': 1,\n",
      "          'angus': 1,\n",
      "          'sweet': 1,\n",
      "          'little': 1,\n",
      "          'bulldog': 1,\n",
      "          'nangus': 1,\n",
      "          'demonstrates': 1,\n",
      "          'genuine': 1,\n",
      "          'emotions': 1,\n",
      "          'wider': 1,\n",
      "          'acting': 1,\n",
      "          'range': 1,\n",
      "          'humans': 1,\n",
      "          'nfinally': 1,\n",
      "          'ending': 1,\n",
      "          'credits': 1,\n",
      "          'contain': 1,\n",
      "          'outtakes': 1,\n",
      "          'genuineness': 1,\n",
      "          'spontaneity': 1,\n",
      "          'badly': 1,\n",
      "          'lacked': 1,\n",
      "          'nrather': 1,\n",
      "          'attempt': 1,\n",
      "          'adapt': 1,\n",
      "          'noncartoon': 1,\n",
      "          'makes': 1,\n",
      "          'strategic': 1,\n",
      "          'mistake': 1,\n",
      "          'trying': 1,\n",
      "          'literally': 1,\n",
      "          'human': 1,\n",
      "          'trouble': 1,\n",
      "          'sustaining': 1,\n",
      "          'squinting': 1,\n",
      "          'eyes': 1,\n",
      "          'affected': 1,\n",
      "          'voice': 1,\n",
      "          'comes': 1,\n",
      "          'awkwardly': 1,\n",
      "          'unfunny': 1,\n",
      "          'wife': 1,\n",
      "          'managed': 1,\n",
      "          'get': 1,\n",
      "          'sleep': 1,\n",
      "          'lucky': 1,\n",
      "          'nhopefully': 1,\n",
      "          'force': 1,\n",
      "          'producers': 1,\n",
      "          'harder': 1,\n",
      "          'subjects': 1,\n",
      "          'promise': 1,\n",
      "          '1': 1,\n",
      "          '37': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'comic': 1,\n",
      "          'violence': 1,\n",
      "          'would': 1,\n",
      "          'acceptable': 1,\n",
      "          'ages': 1,\n",
      "          'son': 1,\n",
      "          'jeffrey': 1,\n",
      "          'recommends': 1,\n",
      "          'choose': 1,\n",
      "          'want': 1,\n",
      "          'action': 1,\n",
      "          'liked': 1,\n",
      "          'much': 1,\n",
      "          'maxim': 1,\n",
      "          '9': 1,\n",
      "          'parts': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'nickolas': 1,\n",
      "          'hed': 1,\n",
      "          'give': 1,\n",
      "          '12': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'jeff': 4,\n",
      "          'warren': 4,\n",
      "          'film': 4,\n",
      "          'also': 4,\n",
      "          'amy': 3,\n",
      "          'plot': 3,\n",
      "          'k': 3,\n",
      "          'enough': 3,\n",
      "          'story': 3,\n",
      "          'picture': 3,\n",
      "          'nkurt': 2,\n",
      "          'russell': 2,\n",
      "          'na': 2,\n",
      "          'walsh': 2,\n",
      "          'nalthough': 2,\n",
      "          'find': 2,\n",
      "          'wise': 2,\n",
      "          'far': 2,\n",
      "          'character': 2,\n",
      "          'although': 2,\n",
      "          'pull': 2,\n",
      "          'one': 2,\n",
      "          'expression': 2,\n",
      "          'angry': 2,\n",
      "          'nthroughout': 2,\n",
      "          'whole': 2,\n",
      "          'looks': 2,\n",
      "          'dorky': 2,\n",
      "          'really': 2,\n",
      "          'cast': 2,\n",
      "          'directs': 2,\n",
      "          'characters': 2,\n",
      "          'breakdown': 1,\n",
      "          'moderately': 1,\n",
      "          'entertaining': 1,\n",
      "          'underwhelming': 1,\n",
      "          'thriller': 1,\n",
      "          'kathleen': 1,\n",
      "          'quinlan': 1,\n",
      "          'play': 1,\n",
      "          'couple': 1,\n",
      "          'taylor': 1,\n",
      "          'taking': 1,\n",
      "          'scenic': 1,\n",
      "          'route': 1,\n",
      "          'california': 1,\n",
      "          'redneck': 1,\n",
      "          'country': 1,\n",
      "          'nhowever': 1,\n",
      "          'middle': 1,\n",
      "          'nowhere': 1,\n",
      "          'jeep': 1,\n",
      "          'decides': 1,\n",
      "          'break': 1,\n",
      "          'leaving': 1,\n",
      "          'stranded': 1,\n",
      "          'friendly': 1,\n",
      "          'truck': 1,\n",
      "          'driver': 1,\n",
      "          'offers': 1,\n",
      "          'give': 1,\n",
      "          'lift': 1,\n",
      "          'town': 1,\n",
      "          'rejects': 1,\n",
      "          'offer': 1,\n",
      "          'wants': 1,\n",
      "          'stay': 1,\n",
      "          'car': 1,\n",
      "          'agrees': 1,\n",
      "          'hops': 1,\n",
      "          'warrens': 1,\n",
      "          'lorry': 1,\n",
      "          'promptly': 1,\n",
      "          'disappears': 1,\n",
      "          'njeff': 1,\n",
      "          'wonders': 1,\n",
      "          'hell': 1,\n",
      "          'later': 1,\n",
      "          'catches': 1,\n",
      "          'says': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'life': 1,\n",
      "          'thickens': 1,\n",
      "          'goes': 1,\n",
      "          'chase': 1,\n",
      "          'wife': 1,\n",
      "          'comparisons': 1,\n",
      "          'made': 1,\n",
      "          'deliverance': 1,\n",
      "          '1972': 1,\n",
      "          'vanishing': 1,\n",
      "          '1993': 1,\n",
      "          'latter': 1,\n",
      "          'two': 1,\n",
      "          'superior': 1,\n",
      "          'script': 1,\n",
      "          'seemingly': 1,\n",
      "          'pissed': 1,\n",
      "          'nquinlan': 1,\n",
      "          'looking': 1,\n",
      "          'nj': 1,\n",
      "          'sadly': 1,\n",
      "          'recently': 1,\n",
      "          'passed': 1,\n",
      "          'away': 1,\n",
      "          'fine': 1,\n",
      "          'soon': 1,\n",
      "          'kidnapper': 1,\n",
      "          'actual': 1,\n",
      "          'pretty': 1,\n",
      "          'weak': 1,\n",
      "          'menacing': 1,\n",
      "          'supporting': 1,\n",
      "          'best': 1,\n",
      "          'aswell': 1,\n",
      "          'rex': 1,\n",
      "          'linn': 1,\n",
      "          'doubting': 1,\n",
      "          'sheriff': 1,\n",
      "          'kidnappers': 1,\n",
      "          'written': 1,\n",
      "          'firsttimer': 1,\n",
      "          'jonathan': 1,\n",
      "          'mostow': 1,\n",
      "          'surprisingly': 1,\n",
      "          'familiar': 1,\n",
      "          'sometimes': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'stupid': 1,\n",
      "          'nsome': 1,\n",
      "          'things': 1,\n",
      "          'movie': 1,\n",
      "          'beyond': 1,\n",
      "          'bounds': 1,\n",
      "          'idiocy': 1,\n",
      "          'nthere': 1,\n",
      "          'flaws': 1,\n",
      "          'complete': 1,\n",
      "          'opposite': 1,\n",
      "          'logical': 1,\n",
      "          'presumably': 1,\n",
      "          'keep': 1,\n",
      "          'exciting': 1,\n",
      "          'fact': 1,\n",
      "          'isnt': 1,\n",
      "          'strong': 1,\n",
      "          'sustain': 1,\n",
      "          'audiences': 1,\n",
      "          'attention': 1,\n",
      "          'moves': 1,\n",
      "          'along': 1,\n",
      "          'slowly': 1,\n",
      "          'nit': 1,\n",
      "          'almost': 1,\n",
      "          'threatens': 1,\n",
      "          'drop': 1,\n",
      "          'dead': 1,\n",
      "          'pick': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'late': 1,\n",
      "          'nmostow': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'well': 1,\n",
      "          'however': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'satisfying': 1,\n",
      "          'conclusion': 1,\n",
      "          'either': 1,\n",
      "          'ending': 1,\n",
      "          'tries': 1,\n",
      "          'bleak': 1,\n",
      "          'comes': 1,\n",
      "          'annoying': 1,\n",
      "          'nbreakdown': 1,\n",
      "          'could': 1,\n",
      "          'enjoyable': 1,\n",
      "          'stronger': 1,\n",
      "          'director': 1,\n",
      "          'ninstead': 1,\n",
      "          'turns': 1,\n",
      "          'merely': 1,\n",
      "          'average': 1,\n",
      "          'missed': 1,\n",
      "          'opportunity': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'review': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'godzilla': 4,\n",
      "          'special': 4,\n",
      "          'effects': 4,\n",
      "          'right': 4,\n",
      "          'film': 3,\n",
      "          'degree': 3,\n",
      "          'nand': 3,\n",
      "          'ni': 3,\n",
      "          'ugh': 2,\n",
      "          'original': 2,\n",
      "          'movies': 2,\n",
      "          'cult': 2,\n",
      "          'classic': 2,\n",
      "          'certain': 2,\n",
      "          'lizard': 2,\n",
      "          'maintained': 2,\n",
      "          'whatever': 2,\n",
      "          'us': 2,\n",
      "          'one': 2,\n",
      "          'giant': 2,\n",
      "          'scene': 2,\n",
      "          'comes': 2,\n",
      "          'drag': 2,\n",
      "          'size': 2,\n",
      "          'matter': 2,\n",
      "          'sums': 1,\n",
      "          'njust': 1,\n",
      "          'somewhat': 1,\n",
      "          'reviewing': 1,\n",
      "          'previous': 1,\n",
      "          'films': 1,\n",
      "          'intelligence': 1,\n",
      "          'reason': 1,\n",
      "          'found': 1,\n",
      "          'enviable': 1,\n",
      "          'following': 1,\n",
      "          'spite': 1,\n",
      "          'bad': 1,\n",
      "          'horrible': 1,\n",
      "          'dubbing': 1,\n",
      "          'man': 1,\n",
      "          'suit': 1,\n",
      "          'put': 1,\n",
      "          'ndignity': 1,\n",
      "          'nnot': 1,\n",
      "          'quite': 1,\n",
      "          'word': 1,\n",
      "          'im': 1,\n",
      "          'looking': 1,\n",
      "          'nyou': 1,\n",
      "          'understand': 1,\n",
      "          '50': 1,\n",
      "          'years': 1,\n",
      "          'nleave': 1,\n",
      "          'america': 1,\n",
      "          'screw': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'nfrom': 1,\n",
      "          'geniuses': 1,\n",
      "          'brought': 1,\n",
      "          'independece': 1,\n",
      "          'day': 1,\n",
      "          'arguably': 1,\n",
      "          'worst': 1,\n",
      "          'scifi': 1,\n",
      "          'time': 1,\n",
      "          'ruin': 1,\n",
      "          'reputation': 1,\n",
      "          'nwhile': 1,\n",
      "          'bring': 1,\n",
      "          'eyepopping': 1,\n",
      "          'amaze': 1,\n",
      "          'lost': 1,\n",
      "          'center': 1,\n",
      "          'storyline': 1,\n",
      "          'nsumming': 1,\n",
      "          'simple': 1,\n",
      "          'nheck': 1,\n",
      "          'sentence': 1,\n",
      "          'attacks': 1,\n",
      "          'city': 1,\n",
      "          'bunch': 1,\n",
      "          'nobodies': 1,\n",
      "          'stop': 1,\n",
      "          'nsimple': 1,\n",
      "          'nmatthew': 1,\n",
      "          'broderick': 1,\n",
      "          'stumbles': 1,\n",
      "          'lines': 1,\n",
      "          'hard': 1,\n",
      "          'picture': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'role': 1,\n",
      "          'besides': 1,\n",
      "          'dogwalking': 1,\n",
      "          'character': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'mad': 1,\n",
      "          'dialogue': 1,\n",
      "          'seems': 1,\n",
      "          'improvized': 1,\n",
      "          'almost': 1,\n",
      "          'rehearsel': 1,\n",
      "          'done': 1,\n",
      "          'see': 1,\n",
      "          'set': 1,\n",
      "          'n': 1,\n",
      "          'nwe': 1,\n",
      "          'spent': 1,\n",
      "          'money': 1,\n",
      "          'making': 1,\n",
      "          'big': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'ta': 1,\n",
      "          'get': 1,\n",
      "          'summer': 1,\n",
      "          'going': 1,\n",
      "          'bomb': 1,\n",
      "          'faces': 1,\n",
      "          'nso': 1,\n",
      "          'actors': 1,\n",
      "          'say': 1,\n",
      "          'ever': 1,\n",
      "          'top': 1,\n",
      "          'head': 1,\n",
      "          'nmake': 1,\n",
      "          'something': 1,\n",
      "          'mkay': 1,\n",
      "          'ngood': 1,\n",
      "          'nroll': 1,\n",
      "          'enough': 1,\n",
      "          'keep': 1,\n",
      "          'interested': 1,\n",
      "          'viewing': 1,\n",
      "          'cinemtography': 1,\n",
      "          'welldone': 1,\n",
      "          'black': 1,\n",
      "          'umbrellas': 1,\n",
      "          'mind': 1,\n",
      "          'nstill': 1,\n",
      "          'hour': 1,\n",
      "          'become': 1,\n",
      "          'antsy': 1,\n",
      "          'wondering': 1,\n",
      "          'long': 1,\n",
      "          'laugh': 1,\n",
      "          'slogan': 1,\n",
      "          'think': 1,\n",
      "          'cut': 1,\n",
      "          'short': 1,\n",
      "          'nit': 1,\n",
      "          'read': 1,\n",
      "          'nacting': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'double': 5,\n",
      "          'team': 5,\n",
      "          'stavros': 5,\n",
      "          'rodman': 4,\n",
      "          'much': 4,\n",
      "          'damme': 3,\n",
      "          'never': 3,\n",
      "          'movie': 3,\n",
      "          'nand': 3,\n",
      "          'quinn': 3,\n",
      "          'yaz': 3,\n",
      "          'whats': 3,\n",
      "          'going': 3,\n",
      "          'result': 2,\n",
      "          'van': 2,\n",
      "          'needs': 2,\n",
      "          'another': 2,\n",
      "          'bad': 2,\n",
      "          'one': 2,\n",
      "          'hes': 2,\n",
      "          'pretty': 2,\n",
      "          'role': 2,\n",
      "          'work': 2,\n",
      "          'kill': 2,\n",
      "          'nquinn': 2,\n",
      "          'tries': 2,\n",
      "          'nbut': 2,\n",
      "          'us': 2,\n",
      "          'need': 2,\n",
      "          'ripe': 1,\n",
      "          'explosions': 1,\n",
      "          'mass': 1,\n",
      "          'death': 1,\n",
      "          'really': 1,\n",
      "          'weird': 1,\n",
      "          'hairdos': 1,\n",
      "          'tsui': 1,\n",
      "          'harks': 1,\n",
      "          'must': 1,\n",
      "          'tipsy': 1,\n",
      "          'hollywood': 1,\n",
      "          'power': 1,\n",
      "          'lunch': 1,\n",
      "          'decided': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'notch': 1,\n",
      "          'moviebedpost': 1,\n",
      "          'nba': 1,\n",
      "          'superstar': 1,\n",
      "          'dennis': 1,\n",
      "          'acting': 1,\n",
      "          'career': 1,\n",
      "          'nactually': 1,\n",
      "          'neithers': 1,\n",
      "          'performance': 1,\n",
      "          'nive': 1,\n",
      "          'always': 1,\n",
      "          'critic': 1,\n",
      "          'defend': 1,\n",
      "          'possesses': 1,\n",
      "          'high': 1,\n",
      "          'charisma': 1,\n",
      "          'level': 1,\n",
      "          'genre': 1,\n",
      "          'stars': 1,\n",
      "          'namely': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'aim': 1,\n",
      "          'made': 1,\n",
      "          'exuberantly': 1,\n",
      "          'witty': 1,\n",
      "          'since': 1,\n",
      "          '1994s': 1,\n",
      "          'timecop': 1,\n",
      "          'nwell': 1,\n",
      "          'nhes': 1,\n",
      "          'extremely': 1,\n",
      "          'colorful': 1,\n",
      "          'therefore': 1,\n",
      "          'fits': 1,\n",
      "          'even': 1,\n",
      "          'excia': 1,\n",
      "          'weapons': 1,\n",
      "          'expert': 1,\n",
      "          'nits': 1,\n",
      "          'story': 1,\n",
      "          'major': 1,\n",
      "          'nvan': 1,\n",
      "          'plays': 1,\n",
      "          'counterterrorist': 1,\n",
      "          'operative': 1,\n",
      "          'jack': 1,\n",
      "          'teams': 1,\n",
      "          'arms': 1,\n",
      "          'dealer': 1,\n",
      "          'rub': 1,\n",
      "          'deadly': 1,\n",
      "          'gangster': 1,\n",
      "          'mickey': 1,\n",
      "          'rourke': 1,\n",
      "          'beefy': 1,\n",
      "          'weirdlooking': 1,\n",
      "          'antwerp': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'job': 1,\n",
      "          'botched': 1,\n",
      "          'son': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'gunfire': 1,\n",
      "          'taken': 1,\n",
      "          'island': 1,\n",
      "          'known': 1,\n",
      "          'colony': 1,\n",
      "          'think': 1,\n",
      "          'tank': 1,\n",
      "          'soldiers': 1,\n",
      "          'valuable': 1,\n",
      "          'dangerous': 1,\n",
      "          'set': 1,\n",
      "          'free': 1,\n",
      "          'escapes': 1,\n",
      "          'make': 1,\n",
      "          'back': 1,\n",
      "          'home': 1,\n",
      "          'pregnant': 1,\n",
      "          'wife': 1,\n",
      "          'natacha': 1,\n",
      "          'lindinger': 1,\n",
      "          'revenge': 1,\n",
      "          'kidnaps': 1,\n",
      "          'nso': 1,\n",
      "          'kickboxing': 1,\n",
      "          'mercenary': 1,\n",
      "          'looks': 1,\n",
      "          'two': 1,\n",
      "          'travel': 1,\n",
      "          'rome': 1,\n",
      "          'rescue': 1,\n",
      "          'woman': 1,\n",
      "          'save': 1,\n",
      "          'world': 1,\n",
      "          'whatever': 1,\n",
      "          'else': 1,\n",
      "          'screenplay': 1,\n",
      "          'requires': 1,\n",
      "          'nwith': 1,\n",
      "          'crazy': 1,\n",
      "          'often': 1,\n",
      "          'eyepopping': 1,\n",
      "          'camera': 1,\n",
      "          'peter': 1,\n",
      "          'pau': 1,\n",
      "          'rodmans': 1,\n",
      "          'lite': 1,\n",
      "          'brite': 1,\n",
      "          'locks': 1,\n",
      "          'mildly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'happen': 1,\n",
      "          'frame': 1,\n",
      "          'leaves': 1,\n",
      "          'exhausted': 1,\n",
      "          'rather': 1,\n",
      "          'exhilarated': 1,\n",
      "          'nthe': 1,\n",
      "          'numerous': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'loud': 1,\n",
      "          'headacheinducing': 1,\n",
      "          'frenetic': 1,\n",
      "          'pacing': 1,\n",
      "          'slows': 1,\n",
      "          'enough': 1,\n",
      "          'care': 1,\n",
      "          'wacky': 1,\n",
      "          'ntheres': 1,\n",
      "          'whole': 1,\n",
      "          'segment': 1,\n",
      "          'devoted': 1,\n",
      "          'netsurfing': 1,\n",
      "          'monks': 1,\n",
      "          'yet': 1,\n",
      "          'figure': 1,\n",
      "          'climax': 1,\n",
      "          'finds': 1,\n",
      "          'headtohead': 1,\n",
      "          'tiger': 1,\n",
      "          'roman': 1,\n",
      "          'coliseum': 1,\n",
      "          'circles': 1,\n",
      "          'motorcycle': 1,\n",
      "          'trying': 1,\n",
      "          'avoid': 1,\n",
      "          'running': 1,\n",
      "          'land': 1,\n",
      "          'mines': 1,\n",
      "          'hold': 1,\n",
      "          'quinns': 1,\n",
      "          'baby': 1,\n",
      "          'boy': 1,\n",
      "          'whos': 1,\n",
      "          'bomb': 1,\n",
      "          'equipped': 1,\n",
      "          'basket': 1,\n",
      "          'watches': 1,\n",
      "          'shirtless': 1,\n",
      "          'bleachers': 1,\n",
      "          'ndid': 1,\n",
      "          'mention': 1,\n",
      "          'strange': 1,\n",
      "          'nwhen': 1,\n",
      "          'comes': 1,\n",
      "          'rarely': 1,\n",
      "          'entertaining': 1,\n",
      "          'formula': 1,\n",
      "          'killathon': 1,\n",
      "          'albeit': 1,\n",
      "          'feels': 1,\n",
      "          'indulge': 1,\n",
      "          'gratuitous': 1,\n",
      "          'profanity': 1,\n",
      "          'nrodman': 1,\n",
      "          'juices': 1,\n",
      "          'things': 1,\n",
      "          'blatantly': 1,\n",
      "          'vibrant': 1,\n",
      "          'screen': 1,\n",
      "          'persona': 1,\n",
      "          'though': 1,\n",
      "          'leading': 1,\n",
      "          'stunt': 1,\n",
      "          'kicks': 1,\n",
      "          'opponent': 1,\n",
      "          'legs': 1,\n",
      "          'didnt': 1,\n",
      "          'tell': 1,\n",
      "          'could': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'virtual': 7,\n",
      "          'reality': 5,\n",
      "          'nthe': 4,\n",
      "          'seduction': 4,\n",
      "          'films': 4,\n",
      "          'movie': 4,\n",
      "          'one': 4,\n",
      "          'paris': 3,\n",
      "          'current': 3,\n",
      "          'strange': 3,\n",
      "          'days': 3,\n",
      "          'could': 3,\n",
      "          'plays': 3,\n",
      "          'man': 2,\n",
      "          'lover': 2,\n",
      "          'home': 2,\n",
      "          'unit': 2,\n",
      "          'subject': 2,\n",
      "          'due': 2,\n",
      "          'far': 2,\n",
      "          'film': 2,\n",
      "          'movies': 2,\n",
      "          'lovers': 2,\n",
      "          'technology': 2,\n",
      "          'rather': 2,\n",
      "          'though': 2,\n",
      "          'nthis': 2,\n",
      "          'much': 2,\n",
      "          'fact': 2,\n",
      "          'ultimately': 2,\n",
      "          'nvirtual': 2,\n",
      "          'sitcom': 2,\n",
      "          'character': 2,\n",
      "          'interesting': 2,\n",
      "          'isnt': 2,\n",
      "          'either': 2,\n",
      "          'laundry': 2,\n",
      "          'watch': 2,\n",
      "          'synopsis': 1,\n",
      "          'whose': 1,\n",
      "          'murdered': 1,\n",
      "          'agrees': 1,\n",
      "          'test': 1,\n",
      "          'experimental': 1,\n",
      "          'system': 1,\n",
      "          'escapes': 1,\n",
      "          'real': 1,\n",
      "          'world': 1,\n",
      "          'girlfriend': 1,\n",
      "          'laura': 1,\n",
      "          'becomes': 1,\n",
      "          'addicted': 1,\n",
      "          'design': 1,\n",
      "          'flaw': 1,\n",
      "          'recreates': 1,\n",
      "          'dead': 1,\n",
      "          'ncomments': 1,\n",
      "          'executive': 1,\n",
      "          'produced': 1,\n",
      "          'roger': 1,\n",
      "          'corman': 1,\n",
      "          'lance': 1,\n",
      "          'h': 1,\n",
      "          'robbins': 1,\n",
      "          'serves': 1,\n",
      "          'cheaplymade': 1,\n",
      "          'precursor': 1,\n",
      "          'superior': 1,\n",
      "          'nboth': 1,\n",
      "          'deal': 1,\n",
      "          'desperate': 1,\n",
      "          'men': 1,\n",
      "          'trouble': 1,\n",
      "          'relating': 1,\n",
      "          'ab': 1,\n",
      "          'using': 1,\n",
      "          'former': 1,\n",
      "          'utilized': 1,\n",
      "          'recorded': 1,\n",
      "          'dreams': 1,\n",
      "          'ninterestingly': 1,\n",
      "          'also': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'couple': 1,\n",
      "          'years': 1,\n",
      "          'turn': 1,\n",
      "          'new': 1,\n",
      "          'millenium': 1,\n",
      "          'uses': 1,\n",
      "          'setting': 1,\n",
      "          'effectively': 1,\n",
      "          'exemplifies': 1,\n",
      "          'problem': 1,\n",
      "          'nits': 1,\n",
      "          'bad': 1,\n",
      "          'lowbudget': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'concerning': 1,\n",
      "          'psychological': 1,\n",
      "          'dangers': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nunfortunately': 1,\n",
      "          'done': 1,\n",
      "          'since': 1,\n",
      "          'better': 1,\n",
      "          'leaves': 1,\n",
      "          'scifi': 1,\n",
      "          'fan': 1,\n",
      "          'bored': 1,\n",
      "          'many': 1,\n",
      "          'faults': 1,\n",
      "          'video': 1,\n",
      "          'inexplicably': 1,\n",
      "          'trailer': 1,\n",
      "          'begins': 1,\n",
      "          'script': 1,\n",
      "          'explores': 1,\n",
      "          'possibilities': 1,\n",
      "          'interestingly': 1,\n",
      "          'first': 1,\n",
      "          'treatment': 1,\n",
      "          'matter': 1,\n",
      "          'gets': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'wooden': 1,\n",
      "          'progresses': 1,\n",
      "          'nmany': 1,\n",
      "          'important': 1,\n",
      "          'scenes': 1,\n",
      "          'seem': 1,\n",
      "          'dark': 1,\n",
      "          'lighting': 1,\n",
      "          'improved': 1,\n",
      "          'significantly': 1,\n",
      "          'cast': 1,\n",
      "          'collection': 1,\n",
      "          'veteran': 1,\n",
      "          'bmovie': 1,\n",
      "          'actors': 1,\n",
      "          'regulars': 1,\n",
      "          'mediocre': 1,\n",
      "          'job': 1,\n",
      "          'roles': 1,\n",
      "          'njeff': 1,\n",
      "          'fahey': 1,\n",
      "          'original': 1,\n",
      "          'lawnmower': 1,\n",
      "          'convincingly': 1,\n",
      "          'unenergetically': 1,\n",
      "          'lead': 1,\n",
      "          'ncarrie': 1,\n",
      "          'genzel': 1,\n",
      "          'vr': 1,\n",
      "          'ami': 1,\n",
      "          'dolenz': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'attractive': 1,\n",
      "          'caring': 1,\n",
      "          'personality': 1,\n",
      "          'doesnt': 1,\n",
      "          'lend': 1,\n",
      "          'credence': 1,\n",
      "          'premise': 1,\n",
      "          'nmeschach': 1,\n",
      "          'taylor': 1,\n",
      "          'popular': 1,\n",
      "          'designing': 1,\n",
      "          'women': 1,\n",
      "          'adequately': 1,\n",
      "          'scientist': 1,\n",
      "          'working': 1,\n",
      "          'project': 1,\n",
      "          'performance': 1,\n",
      "          'something': 1,\n",
      "          'write': 1,\n",
      "          'harmless': 1,\n",
      "          'light': 1,\n",
      "          'manual': 1,\n",
      "          'labor': 1,\n",
      "          'mind': 1,\n",
      "          'background': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'fold': 1,\n",
      "          'glancing': 1,\n",
      "          'every': 1,\n",
      "          'boring': 1,\n",
      "          'sit': 1,\n",
      "          'surprisingly': 1,\n",
      "          'violent': 1,\n",
      "          'expects': 1,\n",
      "          'bmovies': 1,\n",
      "          'genre': 1,\n",
      "          'still': 1,\n",
      "          'adult': 1,\n",
      "          'rrated': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          'suicide': 1,\n",
      "          'attempt': 1,\n",
      "          'turkey': 1,\n",
      "          'awful': 1,\n",
      "          'particularly': 1,\n",
      "          'unique': 1,\n",
      "          'ndont': 1,\n",
      "          'seduced': 1,\n",
      "          'watching': 1,\n",
      "          'unless': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'several': 1,\n",
      "          'loads': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'every': 6,\n",
      "          'film': 5,\n",
      "          'time': 5,\n",
      "          'fact': 4,\n",
      "          'minutes': 4,\n",
      "          'nbut': 4,\n",
      "          'sam': 4,\n",
      "          'even': 3,\n",
      "          'one': 3,\n",
      "          'campbell': 3,\n",
      "          'richards': 3,\n",
      "          'two': 3,\n",
      "          'thru': 3,\n",
      "          'things': 3,\n",
      "          'twist': 3,\n",
      "          'much': 3,\n",
      "          'high': 3,\n",
      "          'student': 3,\n",
      "          'nthe': 3,\n",
      "          'wash': 3,\n",
      "          'comes': 3,\n",
      "          'good': 3,\n",
      "          'nin': 3,\n",
      "          'couldve': 3,\n",
      "          'yeah': 2,\n",
      "          'starship': 2,\n",
      "          'troopers': 2,\n",
      "          'denise': 2,\n",
      "          'plenty': 2,\n",
      "          'plot': 2,\n",
      "          'leave': 2,\n",
      "          'least': 2,\n",
      "          'school': 2,\n",
      "          'counselor': 2,\n",
      "          'lombardo': 2,\n",
      "          'seems': 2,\n",
      "          'particularly': 2,\n",
      "          'kelly': 2,\n",
      "          'effort': 2,\n",
      "          'car': 2,\n",
      "          'guidance': 2,\n",
      "          'youll': 2,\n",
      "          'youre': 2,\n",
      "          'trial': 2,\n",
      "          'story': 2,\n",
      "          'bill': 2,\n",
      "          'murray': 2,\n",
      "          'nyes': 2,\n",
      "          'could': 2,\n",
      "          'twisted': 2,\n",
      "          'realized': 2,\n",
      "          'acting': 2,\n",
      "          'fox': 2,\n",
      "          'primetime': 2,\n",
      "          'soap': 2,\n",
      "          'thing': 2,\n",
      "          'nand': 2,\n",
      "          'last': 2,\n",
      "          'years': 2,\n",
      "          'actually': 2,\n",
      "          'better': 2,\n",
      "          'right': 2,\n",
      "          'wild': 2,\n",
      "          'ni': 2,\n",
      "          'advertisements': 1,\n",
      "          'didnt': 1,\n",
      "          'try': 1,\n",
      "          'conceal': 1,\n",
      "          'hook': 1,\n",
      "          'sex': 1,\n",
      "          'nneve': 1,\n",
      "          'getting': 1,\n",
      "          'nok': 1,\n",
      "          'nyeah': 1,\n",
      "          'decent': 1,\n",
      "          'erotica': 1,\n",
      "          'thats': 1,\n",
      "          'main': 1,\n",
      "          'interest': 1,\n",
      "          'theres': 1,\n",
      "          'cheeziness': 1,\n",
      "          'sit': 1,\n",
      "          'exchange': 1,\n",
      "          'nwild': 1,\n",
      "          'lot': 1,\n",
      "          'think': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'however': 1,\n",
      "          'nnearly': 1,\n",
      "          'single': 1,\n",
      "          'scene': 1,\n",
      "          'huge': 1,\n",
      "          'guaranteed': 1,\n",
      "          'guessing': 1,\n",
      "          'curious': 1,\n",
      "          'see': 1,\n",
      "          'next': 1,\n",
      "          'turn': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'fastpaced': 1,\n",
      "          'razorsharp': 1,\n",
      "          'turning': 1,\n",
      "          'events': 1,\n",
      "          'doesnt': 1,\n",
      "          'enjoy': 1,\n",
      "          'surprises': 1,\n",
      "          'nwe': 1,\n",
      "          'start': 1,\n",
      "          'highclass': 1,\n",
      "          'california': 1,\n",
      "          'resembles': 1,\n",
      "          'supermodel': 1,\n",
      "          'making': 1,\n",
      "          'nguidance': 1,\n",
      "          'matt': 1,\n",
      "          'dillon': 1,\n",
      "          'catch': 1,\n",
      "          'eye': 1,\n",
      "          'van': 1,\n",
      "          'ryan': 1,\n",
      "          'daughter': 1,\n",
      "          'locally': 1,\n",
      "          'prestigious': 1,\n",
      "          'family': 1,\n",
      "          'whose': 1,\n",
      "          'social': 1,\n",
      "          'status': 1,\n",
      "          'bank': 1,\n",
      "          'accounts': 1,\n",
      "          'nright': 1,\n",
      "          'bat': 1,\n",
      "          'using': 1,\n",
      "          'asset': 1,\n",
      "          'seduce': 1,\n",
      "          'mr': 1,\n",
      "          'fundraiser': 1,\n",
      "          'opportune': 1,\n",
      "          'counselors': 1,\n",
      "          'jeep': 1,\n",
      "          'white': 1,\n",
      "          'clothes': 1,\n",
      "          'take': 1,\n",
      "          'precautions': 1,\n",
      "          'insure': 1,\n",
      "          'soaked': 1,\n",
      "          'head': 1,\n",
      "          'toe': 1,\n",
      "          'done': 1,\n",
      "          'non': 1,\n",
      "          'weekend': 1,\n",
      "          'kellys': 1,\n",
      "          'attempts': 1,\n",
      "          'seduction': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'concocts': 1,\n",
      "          'tale': 1,\n",
      "          'raped': 1,\n",
      "          'day': 1,\n",
      "          'nnaturally': 1,\n",
      "          'thrown': 1,\n",
      "          'state': 1,\n",
      "          'panicked': 1,\n",
      "          'shock': 1,\n",
      "          'accusations': 1,\n",
      "          'otherwise': 1,\n",
      "          'unsubstantial': 1,\n",
      "          'fabrications': 1,\n",
      "          'soon': 1,\n",
      "          'lead': 1,\n",
      "          'criminal': 1,\n",
      "          'lowclass': 1,\n",
      "          'marijuana': 1,\n",
      "          'smoking': 1,\n",
      "          'name': 1,\n",
      "          'suzie': 1,\n",
      "          'toller': 1,\n",
      "          'forth': 1,\n",
      "          'near': 1,\n",
      "          'identical': 1,\n",
      "          'also': 1,\n",
      "          'involving': 1,\n",
      "          'trusted': 1,\n",
      "          'npitting': 1,\n",
      "          'communities': 1,\n",
      "          'respected': 1,\n",
      "          'names': 1,\n",
      "          'authoritarians': 1,\n",
      "          'must': 1,\n",
      "          'prove': 1,\n",
      "          'innocence': 1,\n",
      "          'aid': 1,\n",
      "          'makeshift': 1,\n",
      "          'defense': 1,\n",
      "          'attorney': 1,\n",
      "          'ken': 1,\n",
      "          'bowden': 1,\n",
      "          'played': 1,\n",
      "          'nsound': 1,\n",
      "          'like': 1,\n",
      "          'complete': 1,\n",
      "          'alone': 1,\n",
      "          'beginning': 1,\n",
      "          'fifteen': 1,\n",
      "          'twenty': 1,\n",
      "          'nit': 1,\n",
      "          'merely': 1,\n",
      "          'used': 1,\n",
      "          'launch': 1,\n",
      "          'recent': 1,\n",
      "          'nby': 1,\n",
      "          'finishes': 1,\n",
      "          'gone': 1,\n",
      "          'imaginable': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'going': 1,\n",
      "          'given': 1,\n",
      "          'enough': 1,\n",
      "          'predicament': 1,\n",
      "          'effectively': 1,\n",
      "          'shocked': 1,\n",
      "          'new': 1,\n",
      "          'nthis': 1,\n",
      "          'way': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'mcnaughton': 1,\n",
      "          'fails': 1,\n",
      "          'make': 1,\n",
      "          'fun': 1,\n",
      "          '113': 1,\n",
      "          'fly': 1,\n",
      "          'although': 1,\n",
      "          'never': 1,\n",
      "          'feels': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'pretzel': 1,\n",
      "          'storytelling': 1,\n",
      "          'richly': 1,\n",
      "          'slower': 1,\n",
      "          'pace': 1,\n",
      "          'taken': 1,\n",
      "          'incredibly': 1,\n",
      "          'reminiscent': 1,\n",
      "          'operas': 1,\n",
      "          'happens': 1,\n",
      "          'hail': 1,\n",
      "          'party': 1,\n",
      "          'five': 1,\n",
      "          'everyone': 1,\n",
      "          'suffers': 1,\n",
      "          'heavily': 1,\n",
      "          'melodramatic': 1,\n",
      "          'overtones': 1,\n",
      "          'ndillon': 1,\n",
      "          'charming': 1,\n",
      "          'understated': 1,\n",
      "          'role': 1,\n",
      "          'gives': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'murrays': 1,\n",
      "          'surprising': 1,\n",
      "          'appearance': 1,\n",
      "          'adds': 1,\n",
      "          'comedic': 1,\n",
      "          'flare': 1,\n",
      "          'whole': 1,\n",
      "          'promoted': 1,\n",
      "          'subtle': 1,\n",
      "          'comedy': 1,\n",
      "          'exact': 1,\n",
      "          'would': 1,\n",
      "          'give': 1,\n",
      "          'grade': 1,\n",
      "          'nthats': 1,\n",
      "          'cheezy': 1,\n",
      "          'aside': 1,\n",
      "          'rest': 1,\n",
      "          'offer': 1,\n",
      "          'nothing': 1,\n",
      "          'eyefulls': 1,\n",
      "          'hands': 1,\n",
      "          'wickedly': 1,\n",
      "          'delightful': 1,\n",
      "          'scrumptiously': 1,\n",
      "          'thriller': 1,\n",
      "          'instead': 1,\n",
      "          'get': 1,\n",
      "          'juvenile': 1,\n",
      "          'overuses': 1,\n",
      "          'profanity': 1,\n",
      "          'laughable': 1,\n",
      "          'displays': 1,\n",
      "          'whats': 1,\n",
      "          'people': 1,\n",
      "          'passing': 1,\n",
      "          'students': 1,\n",
      "          'realize': 1,\n",
      "          'hollywood': 1,\n",
      "          'often': 1,\n",
      "          'casts': 1,\n",
      "          'older': 1,\n",
      "          'actors': 1,\n",
      "          'play': 1,\n",
      "          'teenage': 1,\n",
      "          'roles': 1,\n",
      "          'wasnt': 1,\n",
      "          'supposed': 1,\n",
      "          'college': 1,\n",
      "          'snicker': 1,\n",
      "          'wont': 1,\n",
      "          'lie': 1,\n",
      "          'definitely': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'nas': 1,\n",
      "          'corny': 1,\n",
      "          'got': 1,\n",
      "          'interesting': 1,\n",
      "          'aspects': 1,\n",
      "          'deserve': 1,\n",
      "          'b': 1,\n",
      "          'want': 1,\n",
      "          'admire': 1,\n",
      "          'go': 1,\n",
      "          'bit': 1,\n",
      "          'campy': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'seeing': 1,\n",
      "          'breasts': 1,\n",
      "          'important': 1,\n",
      "          'goal': 1,\n",
      "          'home': 1,\n",
      "          'nperhaps': 1,\n",
      "          'wildest': 1,\n",
      "          'somebody': 1,\n",
      "          'looked': 1,\n",
      "          'thought': 1,\n",
      "          'deserved': 1,\n",
      "          'theaters': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chinese': 7,\n",
      "          'gere': 6,\n",
      "          'red': 5,\n",
      "          'corner': 5,\n",
      "          'films': 5,\n",
      "          'way': 4,\n",
      "          'richard': 4,\n",
      "          'film': 4,\n",
      "          'jack': 4,\n",
      "          'many': 3,\n",
      "          'nthis': 3,\n",
      "          'actor': 3,\n",
      "          'character': 3,\n",
      "          'nif': 3,\n",
      "          'look': 3,\n",
      "          'moore': 3,\n",
      "          'nit': 3,\n",
      "          'shen': 3,\n",
      "          'injustice': 2,\n",
      "          'laws': 2,\n",
      "          'nbut': 2,\n",
      "          'truth': 2,\n",
      "          'running': 2,\n",
      "          'rooftops': 2,\n",
      "          'search': 2,\n",
      "          'american': 2,\n",
      "          'talented': 2,\n",
      "          'one': 2,\n",
      "          'main': 2,\n",
      "          'performance': 2,\n",
      "          'work': 2,\n",
      "          'nalthough': 2,\n",
      "          'far': 2,\n",
      "          'primal': 2,\n",
      "          'fear': 2,\n",
      "          'pretty': 2,\n",
      "          'lawyer': 2,\n",
      "          'guilty': 2,\n",
      "          'steps': 2,\n",
      "          'room': 2,\n",
      "          'foreign': 2,\n",
      "          'embassy': 2,\n",
      "          'yuelin': 2,\n",
      "          'charge': 2,\n",
      "          'plot': 2,\n",
      "          'scenes': 2,\n",
      "          'see': 2,\n",
      "          'place': 2,\n",
      "          'would': 2,\n",
      "          'recently': 1,\n",
      "          'told': 1,\n",
      "          'china': 1,\n",
      "          'strong': 1,\n",
      "          'protests': 1,\n",
      "          'release': 1,\n",
      "          'apparently': 1,\n",
      "          'shows': 1,\n",
      "          'ask': 1,\n",
      "          'real': 1,\n",
      "          'matter': 1,\n",
      "          'critics': 1,\n",
      "          'association': 1,\n",
      "          'determined': 1,\n",
      "          'punish': 1,\n",
      "          'population': 1,\n",
      "          'viewing': 1,\n",
      "          'across': 1,\n",
      "          'fellow': 1,\n",
      "          'point': 1,\n",
      "          'anyone': 1,\n",
      "          'allows': 1,\n",
      "          'bask': 1,\n",
      "          'lessthansubtle': 1,\n",
      "          'presence': 1,\n",
      "          'insult': 1,\n",
      "          'consider': 1,\n",
      "          'rather': 1,\n",
      "          'choice': 1,\n",
      "          'responsibility': 1,\n",
      "          'role': 1,\n",
      "          'solely': 1,\n",
      "          'person': 1,\n",
      "          'must': 1,\n",
      "          'give': 1,\n",
      "          'faultless': 1,\n",
      "          'order': 1,\n",
      "          'really': 1,\n",
      "          'geres': 1,\n",
      "          'poorly': 1,\n",
      "          'acted': 1,\n",
      "          'perfect': 1,\n",
      "          'forward': 1,\n",
      "          'seeing': 1,\n",
      "          'star': 1,\n",
      "          'actors': 1,\n",
      "          'reduce': 1,\n",
      "          'need': 1,\n",
      "          'carry': 1,\n",
      "          'truly': 1,\n",
      "          'belongs': 1,\n",
      "          'reluctant': 1,\n",
      "          'believe': 1,\n",
      "          'sensational': 1,\n",
      "          'edward': 1,\n",
      "          'norton': 1,\n",
      "          'jackal': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'woman': 1,\n",
      "          'delightful': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'nin': 1,\n",
      "          'plays': 1,\n",
      "          'classy': 1,\n",
      "          'personality': 1,\n",
      "          'traits': 1,\n",
      "          'martin': 1,\n",
      "          'vail': 1,\n",
      "          'bold': 1,\n",
      "          'front': 1,\n",
      "          'thinks': 1,\n",
      "          'three': 1,\n",
      "          'ahead': 1,\n",
      "          'everybody': 1,\n",
      "          'else': 1,\n",
      "          'actually': 1,\n",
      "          'two': 1,\n",
      "          'behind': 1,\n",
      "          'invulnerability': 1,\n",
      "          'mental': 1,\n",
      "          'physical': 1,\n",
      "          'kind': 1,\n",
      "          'portrayed': 1,\n",
      "          'left': 1,\n",
      "          'barracking': 1,\n",
      "          'haul': 1,\n",
      "          'sorry': 1,\n",
      "          'ass': 1,\n",
      "          'jail': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'long': 1,\n",
      "          'beginning': 1,\n",
      "          'moores': 1,\n",
      "          'charm': 1,\n",
      "          'lady': 1,\n",
      "          'time': 1,\n",
      "          'bed': 1,\n",
      "          'together': 1,\n",
      "          'hotel': 1,\n",
      "          'drunk': 1,\n",
      "          'cheerful': 1,\n",
      "          'nyet': 1,\n",
      "          'instead': 1,\n",
      "          'hangover': 1,\n",
      "          'poor': 1,\n",
      "          'finds': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'chick': 1,\n",
      "          'dead': 1,\n",
      "          'couch': 1,\n",
      "          'nhe': 1,\n",
      "          'arrested': 1,\n",
      "          'hauled': 1,\n",
      "          'prison': 1,\n",
      "          'nhis': 1,\n",
      "          'cell': 1,\n",
      "          'food': 1,\n",
      "          'rights': 1,\n",
      "          'terrible': 1,\n",
      "          'nnow': 1,\n",
      "          'trapped': 1,\n",
      "          'land': 1,\n",
      "          'without': 1,\n",
      "          'adequate': 1,\n",
      "          'aid': 1,\n",
      "          'bai': 1,\n",
      "          'ling': 1,\n",
      "          'defends': 1,\n",
      "          'case': 1,\n",
      "          'initially': 1,\n",
      "          'pleading': 1,\n",
      "          'murder': 1,\n",
      "          'njack': 1,\n",
      "          'argue': 1,\n",
      "          'countries': 1,\n",
      "          'different': 1,\n",
      "          'stating': 1,\n",
      "          'shoot': 1,\n",
      "          'back': 1,\n",
      "          'cost': 1,\n",
      "          'bullet': 1,\n",
      "          'family': 1,\n",
      "          'nas': 1,\n",
      "          'thickens': 1,\n",
      "          'get': 1,\n",
      "          'progressively': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ranging': 1,\n",
      "          'us': 1,\n",
      "          'scooby': 1,\n",
      "          'doo': 1,\n",
      "          'ending': 1,\n",
      "          'least': 1,\n",
      "          'expected': 1,\n",
      "          'butyouknewalong': 1,\n",
      "          'criminal': 1,\n",
      "          'discovered': 1,\n",
      "          'nred': 1,\n",
      "          'sneer': 1,\n",
      "          'laugh': 1,\n",
      "          'vomit': 1,\n",
      "          'youre': 1,\n",
      "          'minutes': 1,\n",
      "          'nwhat': 1,\n",
      "          'politically': 1,\n",
      "          'taunt': 1,\n",
      "          'thriller': 1,\n",
      "          'little': 1,\n",
      "          'pointless': 1,\n",
      "          'expedition': 1,\n",
      "          'stressed': 1,\n",
      "          'act': 1,\n",
      "          'say': 1,\n",
      "          'moments': 1,\n",
      "          'tense': 1,\n",
      "          'court': 1,\n",
      "          'shrewdly': 1,\n",
      "          'created': 1,\n",
      "          'telling': 1,\n",
      "          'tale': 1,\n",
      "          'government': 1,\n",
      "          'corruption': 1,\n",
      "          'amount': 1,\n",
      "          'spoils': 1,\n",
      "          'effect': 1,\n",
      "          'first': 1,\n",
      "          'perhaps': 1,\n",
      "          'frustrating': 1,\n",
      "          'watch': 1,\n",
      "          'overall': 1,\n",
      "          'concept': 1,\n",
      "          'fairly': 1,\n",
      "          'broadly': 1,\n",
      "          'basic': 1,\n",
      "          'idea': 1,\n",
      "          'quite': 1,\n",
      "          'tangible': 1,\n",
      "          'upon': 1,\n",
      "          'execution': 1,\n",
      "          'diminutive': 1,\n",
      "          'twists': 1,\n",
      "          'developments': 1,\n",
      "          'fail': 1,\n",
      "          'impress': 1,\n",
      "          'innovate': 1,\n",
      "          'evidence': 1,\n",
      "          'goes': 1,\n",
      "          'missing': 1,\n",
      "          'high': 1,\n",
      "          'powered': 1,\n",
      "          'officials': 1,\n",
      "          'shielding': 1,\n",
      "          'intolerable': 1,\n",
      "          'love': 1,\n",
      "          'angles': 1,\n",
      "          'done': 1,\n",
      "          'times': 1,\n",
      "          'wasnt': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'corners': 1,\n",
      "          'dialogue': 1,\n",
      "          'purely': 1,\n",
      "          'laughable': 1,\n",
      "          'occasions': 1,\n",
      "          'nshen': 1,\n",
      "          'attempts': 1,\n",
      "          'gain': 1,\n",
      "          'sympathy': 1,\n",
      "          'reciting': 1,\n",
      "          'renaissance': 1,\n",
      "          'destitute': 1,\n",
      "          'relationship': 1,\n",
      "          'deceased': 1,\n",
      "          'father': 1,\n",
      "          'whilst': 1,\n",
      "          'eager': 1,\n",
      "          'talk': 1,\n",
      "          'musical': 1,\n",
      "          'instruments': 1,\n",
      "          'could': 1,\n",
      "          'working': 1,\n",
      "          'plan': 1,\n",
      "          'free': 1,\n",
      "          'ntaking': 1,\n",
      "          'seriously': 1,\n",
      "          'half': 1,\n",
      "          'intends': 1,\n",
      "          'benefited': 1,\n",
      "          'help': 1,\n",
      "          'valuable': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'fault': 1,\n",
      "          'bizarre': 1,\n",
      "          'often': 1,\n",
      "          'unfolding': 1,\n",
      "          'story': 1,\n",
      "          'isnt': 1,\n",
      "          'meritorious': 1,\n",
      "          'anyway': 1,\n",
      "          'nwhilst': 1,\n",
      "          'still': 1,\n",
      "          'proves': 1,\n",
      "          'takes': 1,\n",
      "          'known': 1,\n",
      "          'decent': 1,\n",
      "          'think': 1,\n",
      "          'twice': 1,\n",
      "          'going': 1,\n",
      "          'attempt': 1,\n",
      "          'manage': 1,\n",
      "          'serious': 1,\n",
      "          'yet': 1,\n",
      "          'hollow': 1,\n",
      "          'drama': 1,\n",
      "          'nmartin': 1,\n",
      "          'vailwhere': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'james': 6,\n",
      "          'jesse': 5,\n",
      "          'nthe': 5,\n",
      "          'farrell': 4,\n",
      "          'like': 3,\n",
      "          'wild': 3,\n",
      "          'american': 3,\n",
      "          'gang': 3,\n",
      "          'ago': 2,\n",
      "          'westerns': 2,\n",
      "          'best': 2,\n",
      "          'century': 2,\n",
      "          'gone': 2,\n",
      "          'west': 2,\n",
      "          'nand': 2,\n",
      "          'unbearable': 2,\n",
      "          'outlaws': 2,\n",
      "          'courtesy': 2,\n",
      "          'irish': 2,\n",
      "          'hunka': 2,\n",
      "          'colin': 2,\n",
      "          'tigerland': 2,\n",
      "          'left': 2,\n",
      "          'us': 2,\n",
      "          'war': 2,\n",
      "          'missouri': 2,\n",
      "          'railroad': 2,\n",
      "          'thaddeus': 2,\n",
      "          'rains': 2,\n",
      "          'timothy': 2,\n",
      "          'dalton': 2,\n",
      "          'boys': 2,\n",
      "          'railroads': 2,\n",
      "          'banks': 2,\n",
      "          'whos': 2,\n",
      "          'accent': 2,\n",
      "          'film': 2,\n",
      "          'tales': 2,\n",
      "          'long': 1,\n",
      "          'men': 1,\n",
      "          'names': 1,\n",
      "          'peckinpah': 1,\n",
      "          'ford': 1,\n",
      "          'leone': 1,\n",
      "          'eastwood': 1,\n",
      "          'made': 1,\n",
      "          'nreal': 1,\n",
      "          'nthese': 1,\n",
      "          'films': 1,\n",
      "          'twentieth': 1,\n",
      "          'nthose': 1,\n",
      "          'days': 1,\n",
      "          'nnow': 1,\n",
      "          'crap': 1,\n",
      "          'pass': 1,\n",
      "          'western': 1,\n",
      "          'record': 1,\n",
      "          'improved': 1,\n",
      "          'tale': 1,\n",
      "          'noutlaws': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'retelling': 1,\n",
      "          'legend': 1,\n",
      "          'bmovie': 1,\n",
      "          'king': 1,\n",
      "          'g': 1,\n",
      "          'robinson': 1,\n",
      "          'producer': 1,\n",
      "          'classics': 1,\n",
      "          'wrongfully': 1,\n",
      "          'accused': 1,\n",
      "          'chill': 1,\n",
      "          'factor': 1,\n",
      "          'ndelayed': 1,\n",
      "          'since': 1,\n",
      "          'spring': 1,\n",
      "          'version': 1,\n",
      "          'stars': 1,\n",
      "          'burning': 1,\n",
      "          'love': 1,\n",
      "          'part': 1,\n",
      "          'schumachers': 1,\n",
      "          'badass': 1,\n",
      "          'nalas': 1,\n",
      "          'sense': 1,\n",
      "          'character': 1,\n",
      "          'ranch': 1,\n",
      "          'leaving': 1,\n",
      "          'cute': 1,\n",
      "          'chicks': 1,\n",
      "          'ali': 1,\n",
      "          'larter': 1,\n",
      "          'minus': 1,\n",
      "          'whipped': 1,\n",
      "          'cream': 1,\n",
      "          'watch': 1,\n",
      "          'spin': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'fresh': 1,\n",
      "          'serving': 1,\n",
      "          'southern': 1,\n",
      "          'militiamen': 1,\n",
      "          'civil': 1,\n",
      "          'brother': 1,\n",
      "          'frank': 1,\n",
      "          'gabriel': 1,\n",
      "          'macht': 1,\n",
      "          'pal': 1,\n",
      "          'cole': 1,\n",
      "          'younger': 1,\n",
      "          'scott': 1,\n",
      "          'caan': 1,\n",
      "          'lay': 1,\n",
      "          'arms': 1,\n",
      "          'head': 1,\n",
      "          'home': 1,\n",
      "          'tend': 1,\n",
      "          'family': 1,\n",
      "          'farms': 1,\n",
      "          'ended': 1,\n",
      "          'nbut': 1,\n",
      "          'trouble': 1,\n",
      "          'brewing': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'liberty': 1,\n",
      "          'evil': 1,\n",
      "          'baron': 1,\n",
      "          'harris': 1,\n",
      "          'yulin': 1,\n",
      "          'cronies': 1,\n",
      "          'rollin': 1,\n",
      "          'parker': 1,\n",
      "          'terry': 1,\n",
      "          'oquinn': 1,\n",
      "          'allan': 1,\n",
      "          'pinkerton': 1,\n",
      "          'demand': 1,\n",
      "          'turn': 1,\n",
      "          'lands': 1,\n",
      "          'jameses': 1,\n",
      "          'youngers': 1,\n",
      "          'join': 1,\n",
      "          'forces': 1,\n",
      "          'fight': 1,\n",
      "          'robbing': 1,\n",
      "          'thus': 1,\n",
      "          'cutting': 1,\n",
      "          'financial': 1,\n",
      "          'surplus': 1,\n",
      "          'playing': 1,\n",
      "          'robin': 1,\n",
      "          'hood': 1,\n",
      "          'local': 1,\n",
      "          'people': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'squabble': 1,\n",
      "          'cutest': 1,\n",
      "          'popular': 1,\n",
      "          'cowboy': 1,\n",
      "          'ought': 1,\n",
      "          'go': 1,\n",
      "          'mtvs': 1,\n",
      "          'total': 1,\n",
      "          'request': 1,\n",
      "          'live': 1,\n",
      "          'nthey': 1,\n",
      "          'rob': 1,\n",
      "          'numerous': 1,\n",
      "          'identical': 1,\n",
      "          'interiors': 1,\n",
      "          'always': 1,\n",
      "          'kindest': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hearts': 1,\n",
      "          'strutting': 1,\n",
      "          'grungy': 1,\n",
      "          'dusters': 1,\n",
      "          'moby': 1,\n",
      "          'songs': 1,\n",
      "          'play': 1,\n",
      "          'background': 1,\n",
      "          'witty': 1,\n",
      "          'banter': 1,\n",
      "          'share': 1,\n",
      "          'could': 1,\n",
      "          'plastered': 1,\n",
      "          'within': 1,\n",
      "          'hallmark': 1,\n",
      "          'card': 1,\n",
      "          'biggest': 1,\n",
      "          'disappointment': 1,\n",
      "          'lies': 1,\n",
      "          'acting': 1,\n",
      "          'nafter': 1,\n",
      "          'great': 1,\n",
      "          'job': 1,\n",
      "          'walks': 1,\n",
      "          'role': 1,\n",
      "          'easier': 1,\n",
      "          'nicolas': 1,\n",
      "          'cage': 1,\n",
      "          '60': 1,\n",
      "          'seconds': 1,\n",
      "          'rivals': 1,\n",
      "          'richard': 1,\n",
      "          'geres': 1,\n",
      "          'jackal': 1,\n",
      "          'ncombined': 1,\n",
      "          'feeling': 1,\n",
      "          'bonanza': 1,\n",
      "          'teen': 1,\n",
      "          'years': 1,\n",
      "          'homogenized': 1,\n",
      "          'production': 1,\n",
      "          'toned': 1,\n",
      "          'get': 1,\n",
      "          'everpopular': 1,\n",
      "          'pg13': 1,\n",
      "          'rating': 1,\n",
      "          'gives': 1,\n",
      "          'invincible': 1,\n",
      "          'quickly': 1,\n",
      "          'grows': 1,\n",
      "          'tiresome': 1,\n",
      "          'boring': 1,\n",
      "          'villains': 1,\n",
      "          'spend': 1,\n",
      "          'entire': 1,\n",
      "          'proclaiming': 1,\n",
      "          'everyone': 1,\n",
      "          'hanged': 1,\n",
      "          'sucking': 1,\n",
      "          'energy': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'real': 1,\n",
      "          'story': 1,\n",
      "          'bears': 1,\n",
      "          'resemblance': 1,\n",
      "          'plot': 1,\n",
      "          'ninstead': 1,\n",
      "          'movie': 1,\n",
      "          'full': 1,\n",
      "          'old': 1,\n",
      "          'outrageous': 1,\n",
      "          'went': 1,\n",
      "          'style': 1,\n",
      "          '5cent': 1,\n",
      "          'magazines': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'wire': 7,\n",
      "          'pamela': 7,\n",
      "          'scenes': 4,\n",
      "          'even': 4,\n",
      "          'woman': 4,\n",
      "          'like': 4,\n",
      "          'year': 4,\n",
      "          'words': 4,\n",
      "          'nits': 4,\n",
      "          'sure': 3,\n",
      "          'babe': 3,\n",
      "          'anderson': 3,\n",
      "          'dont': 3,\n",
      "          'pay': 3,\n",
      "          'nude': 3,\n",
      "          'barb': 3,\n",
      "          'going': 3,\n",
      "          'ni': 3,\n",
      "          'tease': 3,\n",
      "          'nbarb': 3,\n",
      "          'one': 3,\n",
      "          'nshe': 3,\n",
      "          'never': 3,\n",
      "          'think': 3,\n",
      "          'action': 3,\n",
      "          'experience': 2,\n",
      "          'would': 2,\n",
      "          'n': 2,\n",
      "          'screen': 2,\n",
      "          'see': 2,\n",
      "          'cleavage': 2,\n",
      "          'nand': 2,\n",
      "          'money': 2,\n",
      "          'seeing': 2,\n",
      "          'pam': 2,\n",
      "          'topless': 2,\n",
      "          'wouldnt': 2,\n",
      "          'right': 2,\n",
      "          'fact': 2,\n",
      "          'cant': 2,\n",
      "          'us': 2,\n",
      "          'times': 2,\n",
      "          'tell': 2,\n",
      "          'na': 2,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'probably': 2,\n",
      "          'character': 2,\n",
      "          'life': 2,\n",
      "          'beauty': 2,\n",
      "          'nthe': 2,\n",
      "          'worst': 2,\n",
      "          'free': 2,\n",
      "          'strip': 2,\n",
      "          'congressional': 2,\n",
      "          'could': 2,\n",
      "          'somehow': 2,\n",
      "          'cora': 2,\n",
      "          'didnt': 2,\n",
      "          'name': 2,\n",
      "          'bad': 2,\n",
      "          'noseworthy': 2,\n",
      "          'know': 2,\n",
      "          'step': 2,\n",
      "          'worthy': 2,\n",
      "          'death': 2,\n",
      "          'got': 2,\n",
      "          'elements': 2,\n",
      "          'movies': 2,\n",
      "          'two': 2,\n",
      "          'things': 2,\n",
      "          'actually': 1,\n",
      "          'im': 1,\n",
      "          'fairly': 1,\n",
      "          'flesh': 1,\n",
      "          'torn': 1,\n",
      "          'mutilated': 1,\n",
      "          'barbed': 1,\n",
      "          'positive': 1,\n",
      "          'watching': 1,\n",
      "          'baywatch': 1,\n",
      "          'lee': 1,\n",
      "          'proves': 1,\n",
      "          'keep': 1,\n",
      "          'doubleds': 1,\n",
      "          'small': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'viewers': 1,\n",
      "          'lay': 1,\n",
      "          'hopes': 1,\n",
      "          'hate': 1,\n",
      "          'burst': 1,\n",
      "          'bubble': 1,\n",
      "          'fullfledged': 1,\n",
      "          'nyou': 1,\n",
      "          'reading': 1,\n",
      "          'review': 1,\n",
      "          'known': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'time': 1,\n",
      "          'reverse': 1,\n",
      "          'mistake': 1,\n",
      "          'warn': 1,\n",
      "          'horny': 1,\n",
      "          'teenage': 1,\n",
      "          'boys': 1,\n",
      "          'nthey': 1,\n",
      "          'almost': 1,\n",
      "          'quick': 1,\n",
      "          'whether': 1,\n",
      "          'youre': 1,\n",
      "          'andersons': 1,\n",
      "          'nipple': 1,\n",
      "          'hallucination': 1,\n",
      "          'sort': 1,\n",
      "          'thing': 1,\n",
      "          'adapted': 1,\n",
      "          'interesting': 1,\n",
      "          'looks': 1,\n",
      "          'real': 1,\n",
      "          'wearing': 1,\n",
      "          'lowcut': 1,\n",
      "          'leather': 1,\n",
      "          'office': 1,\n",
      "          'work': 1,\n",
      "          'businesswoman': 1,\n",
      "          'bondage': 1,\n",
      "          'wear': 1,\n",
      "          'unreal': 1,\n",
      "          'body': 1,\n",
      "          'proportions': 1,\n",
      "          'nyes': 1,\n",
      "          'mona': 1,\n",
      "          'lisa': 1,\n",
      "          'manmade': 1,\n",
      "          'senses': 1,\n",
      "          'definite': 1,\n",
      "          'though': 1,\n",
      "          'looking': 1,\n",
      "          'unpleasant': 1,\n",
      "          'nyoud': 1,\n",
      "          'began': 1,\n",
      "          'career': 1,\n",
      "          'playboy': 1,\n",
      "          'playmate': 1,\n",
      "          'reservations': 1,\n",
      "          'appearing': 1,\n",
      "          'obvious': 1,\n",
      "          'wasnt': 1,\n",
      "          'pulling': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'people': 1,\n",
      "          'attention': 1,\n",
      "          'acting': 1,\n",
      "          'skills': 1,\n",
      "          'mean': 1,\n",
      "          'shows': 1,\n",
      "          'jewelers': 1,\n",
      "          'convention': 1,\n",
      "          'set': 1,\n",
      "          '2017': 1,\n",
      "          'says': 1,\n",
      "          'say': 1,\n",
      "          'namerica': 1,\n",
      "          'second': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'nightclub': 1,\n",
      "          'owner': 1,\n",
      "          'city': 1,\n",
      "          'nation': 1,\n",
      "          'silicone': 1,\n",
      "          'valley': 1,\n",
      "          'also': 1,\n",
      "          'hires': 1,\n",
      "          'bounty': 1,\n",
      "          'hunter': 1,\n",
      "          'price': 1,\n",
      "          'posing': 1,\n",
      "          'first': 1,\n",
      "          'stripper': 1,\n",
      "          'later': 1,\n",
      "          'prostitute': 1,\n",
      "          'nbut': 1,\n",
      "          'call': 1,\n",
      "          'hates': 1,\n",
      "          'reminds': 1,\n",
      "          'way': 1,\n",
      "          'many': 1,\n",
      "          'nimagine': 1,\n",
      "          'trapeze': 1,\n",
      "          'bar': 1,\n",
      "          'hose': 1,\n",
      "          'sprayed': 1,\n",
      "          'referred': 1,\n",
      "          'sexist': 1,\n",
      "          'demeaning': 1,\n",
      "          'term': 1,\n",
      "          'liberated': 1,\n",
      "          'shouldnt': 1,\n",
      "          'hear': 1,\n",
      "          'especially': 1,\n",
      "          'since': 1,\n",
      "          'talking': 1,\n",
      "          'pig': 1,\n",
      "          'success': 1,\n",
      "          'plot': 1,\n",
      "          'haha': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'pair': 1,\n",
      "          'contact': 1,\n",
      "          'lenses': 1,\n",
      "          'allow': 1,\n",
      "          'wearer': 1,\n",
      "          'pass': 1,\n",
      "          'directorates': 1,\n",
      "          'retina': 1,\n",
      "          'scanners': 1,\n",
      "          'nin': 1,\n",
      "          'characters': 1,\n",
      "          'theyre': 1,\n",
      "          'meets': 1,\n",
      "          'eye': 1,\n",
      "          'nreminds': 1,\n",
      "          'transformers': 1,\n",
      "          'cartoon': 1,\n",
      "          'wished': 1,\n",
      "          'transformed': 1,\n",
      "          'something': 1,\n",
      "          'decent': 1,\n",
      "          'happened': 1,\n",
      "          'nno': 1,\n",
      "          'continued': 1,\n",
      "          'path': 1,\n",
      "          'lame': 1,\n",
      "          'starring': 1,\n",
      "          'vandamme': 1,\n",
      "          'bigbusted': 1,\n",
      "          'kickboxer': 1,\n",
      "          'resistance': 1,\n",
      "          'accomplices': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'axel': 1,\n",
      "          'tamuera': 1,\n",
      "          'morrison': 1,\n",
      "          'victoria': 1,\n",
      "          'rowell': 1,\n",
      "          'nthank': 1,\n",
      "          'god': 1,\n",
      "          'reef': 1,\n",
      "          'none': 1,\n",
      "          'enough': 1,\n",
      "          'npamela': 1,\n",
      "          'originally': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'sides': 1,\n",
      "          'giving': 1,\n",
      "          'speech': 1,\n",
      "          'shes': 1,\n",
      "          'loyal': 1,\n",
      "          'changes': 1,\n",
      "          'mind': 1,\n",
      "          'bastards': 1,\n",
      "          'kill': 1,\n",
      "          'blind': 1,\n",
      "          'brother': 1,\n",
      "          'jack': 1,\n",
      "          'bon': 1,\n",
      "          'jovi': 1,\n",
      "          'always': 1,\n",
      "          'video': 1,\n",
      "          'fame': 1,\n",
      "          'still': 1,\n",
      "          'definitely': 1,\n",
      "          'nose': 1,\n",
      "          'isnt': 1,\n",
      "          'sponge': 1,\n",
      "          'npam': 1,\n",
      "          'gets': 1,\n",
      "          'ready': 1,\n",
      "          'avenge': 1,\n",
      "          'grabbing': 1,\n",
      "          'armful': 1,\n",
      "          'semiautomatic': 1,\n",
      "          'weapons': 1,\n",
      "          'strapping': 1,\n",
      "          'ammunitions': 1,\n",
      "          'belt': 1,\n",
      "          'chest': 1,\n",
      "          'rambo': 1,\n",
      "          'bimbo': 1,\n",
      "          'nmark': 1,\n",
      "          'cinemax': 1,\n",
      "          'network': 1,\n",
      "          'directtovideo': 1,\n",
      "          'releases': 1,\n",
      "          'featured': 1,\n",
      "          'hbos': 1,\n",
      "          'bastard': 1,\n",
      "          'cousin': 1,\n",
      "          'cable': 1,\n",
      "          'channel': 1,\n",
      "          'id': 1,\n",
      "          'watch': 1,\n",
      "          'come': 1,\n",
      "          'nontitillating': 1,\n",
      "          'voyeurism': 1,\n",
      "          'laughable': 1,\n",
      "          'flashbacks': 1,\n",
      "          'dialogue': 1,\n",
      "          'cliches': 1,\n",
      "          'wazzoo': 1,\n",
      "          'ntheres': 1,\n",
      "          'narrator': 1,\n",
      "          'beginning': 1,\n",
      "          'setting': 1,\n",
      "          'premise': 1,\n",
      "          'scroll': 1,\n",
      "          'nsomeone': 1,\n",
      "          'needs': 1,\n",
      "          'wookie': 1,\n",
      "          'aint': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'flick': 1,\n",
      "          'past': 1,\n",
      "          'fifteen': 1,\n",
      "          'years': 1,\n",
      "          'youll': 1,\n",
      "          'recognize': 1,\n",
      "          'plenty': 1,\n",
      "          'lifted': 1,\n",
      "          'obligatory': 1,\n",
      "          'trucks': 1,\n",
      "          'flipping': 1,\n",
      "          'car': 1,\n",
      "          'crashes': 1,\n",
      "          'explosions': 1,\n",
      "          'broken': 1,\n",
      "          'glass': 1,\n",
      "          'slowmotion': 1,\n",
      "          'shots': 1,\n",
      "          'bodies': 1,\n",
      "          'falling': 1,\n",
      "          'hundreds': 1,\n",
      "          'feet': 1,\n",
      "          'nthis': 1,\n",
      "          'automaticpilot': 1,\n",
      "          'anyone': 1,\n",
      "          'write': 1,\n",
      "          'direct': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'deedles': 6,\n",
      "          'nthe': 6,\n",
      "          'deedle': 5,\n",
      "          'park': 5,\n",
      "          'part': 4,\n",
      "          'meet': 4,\n",
      "          'ranger': 4,\n",
      "          'two': 3,\n",
      "          'surf': 3,\n",
      "          'wyoming': 3,\n",
      "          'one': 3,\n",
      "          'ninstead': 3,\n",
      "          'nearly': 2,\n",
      "          'interesting': 2,\n",
      "          'nphil': 2,\n",
      "          'sons': 2,\n",
      "          'famous': 2,\n",
      "          'several': 2,\n",
      "          'brothers': 2,\n",
      "          'unfortunately': 2,\n",
      "          'problem': 2,\n",
      "          'film': 2,\n",
      "          'isnt': 2,\n",
      "          'bad': 2,\n",
      "          'way': 2,\n",
      "          'finding': 2,\n",
      "          'buddy': 1,\n",
      "          'comedy': 1,\n",
      "          'fishoutofwater': 1,\n",
      "          'story': 1,\n",
      "          'nature': 1,\n",
      "          'tale': 1,\n",
      "          'archetypes': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'invitation': 1,\n",
      "          'ought': 1,\n",
      "          'disregard': 1,\n",
      "          'stew': 1,\n",
      "          'paul': 1,\n",
      "          'walker': 1,\n",
      "          'steve': 1,\n",
      "          'van': 1,\n",
      "          'wormer': 1,\n",
      "          'twin': 1,\n",
      "          'millionaire': 1,\n",
      "          'elton': 1,\n",
      "          'eric': 1,\n",
      "          'braeden': 1,\n",
      "          'founder': 1,\n",
      "          'enterprises': 1,\n",
      "          'nelton': 1,\n",
      "          'wants': 1,\n",
      "          'perfect': 1,\n",
      "          'heirs': 1,\n",
      "          'fortune': 1,\n",
      "          'instead': 1,\n",
      "          'careless': 1,\n",
      "          'hawaiian': 1,\n",
      "          'bums': 1,\n",
      "          'nto': 1,\n",
      "          'set': 1,\n",
      "          'straight': 1,\n",
      "          'enrolls': 1,\n",
      "          'strict': 1,\n",
      "          'boot': 1,\n",
      "          'camp': 1,\n",
      "          'pair': 1,\n",
      "          'inevitably': 1,\n",
      "          'go': 1,\n",
      "          'nafter': 1,\n",
      "          'misadventures': 1,\n",
      "          'duo': 1,\n",
      "          'stunned': 1,\n",
      "          'discover': 1,\n",
      "          'theres': 1,\n",
      "          'stumble': 1,\n",
      "          'upon': 1,\n",
      "          'routine': 1,\n",
      "          'mistaken': 1,\n",
      "          'identity': 1,\n",
      "          'plot': 1,\n",
      "          'nthey': 1,\n",
      "          'arrive': 1,\n",
      "          'yellowstone': 1,\n",
      "          'national': 1,\n",
      "          'believed': 1,\n",
      "          'new': 1,\n",
      "          'recruits': 1,\n",
      "          'nrather': 1,\n",
      "          'slinking': 1,\n",
      "          'back': 1,\n",
      "          'home': 1,\n",
      "          'disappointing': 1,\n",
      "          'dad': 1,\n",
      "          'play': 1,\n",
      "          'along': 1,\n",
      "          'actually': 1,\n",
      "          'motives': 1,\n",
      "          'beautiful': 1,\n",
      "          'jesse': 1,\n",
      "          'nj': 1,\n",
      "          'langer': 1,\n",
      "          'happens': 1,\n",
      "          'beloved': 1,\n",
      "          'stepdaughter': 1,\n",
      "          'overprotective': 1,\n",
      "          'captain': 1,\n",
      "          'douglas': 1,\n",
      "          'pine': 1,\n",
      "          'john': 1,\n",
      "          'ashton': 1,\n",
      "          'nyellowstone': 1,\n",
      "          'nits': 1,\n",
      "          'week': 1,\n",
      "          'geyser': 1,\n",
      "          'old': 1,\n",
      "          'faithful': 1,\n",
      "          'celebrates': 1,\n",
      "          'billionth': 1,\n",
      "          'birthday': 1,\n",
      "          'overrun': 1,\n",
      "          'prairie': 1,\n",
      "          'dogs': 1,\n",
      "          'nnot': 1,\n",
      "          'thousands': 1,\n",
      "          'assigned': 1,\n",
      "          'eliminate': 1,\n",
      "          'p': 1,\n",
      "          'dog': 1,\n",
      "          'menace': 1,\n",
      "          'knowing': 1,\n",
      "          'fiendish': 1,\n",
      "          'plan': 1,\n",
      "          'disgraced': 1,\n",
      "          'former': 1,\n",
      "          'head': 1,\n",
      "          'frank': 1,\n",
      "          'slater': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'arent': 1,\n",
      "          'supposed': 1,\n",
      "          'outandout': 1,\n",
      "          'stupid': 1,\n",
      "          'like': 1,\n",
      "          'team': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'bill': 1,\n",
      "          'ted': 1,\n",
      "          'brains': 1,\n",
      "          'operate': 1,\n",
      "          'different': 1,\n",
      "          'simpler': 1,\n",
      "          'realm': 1,\n",
      "          'na': 1,\n",
      "          'accurate': 1,\n",
      "          'comparison': 1,\n",
      "          'would': 1,\n",
      "          'carrot': 1,\n",
      "          'top': 1,\n",
      "          'chairman': 1,\n",
      "          'board': 1,\n",
      "          'resembles': 1,\n",
      "          'hideous': 1,\n",
      "          'ways': 1,\n",
      "          'central': 1,\n",
      "          'simply': 1,\n",
      "          'funny': 1,\n",
      "          'ntheres': 1,\n",
      "          'moment': 1,\n",
      "          'phil': 1,\n",
      "          'utters': 1,\n",
      "          'line': 1,\n",
      "          'insert': 1,\n",
      "          'laugh': 1,\n",
      "          'sums': 1,\n",
      "          'entire': 1,\n",
      "          'experience': 1,\n",
      "          'result': 1,\n",
      "          'runshriekingfromthetheater': 1,\n",
      "          'type': 1,\n",
      "          'merely': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'boring': 1,\n",
      "          'sort': 1,\n",
      "          'cast': 1,\n",
      "          'seems': 1,\n",
      "          'decent': 1,\n",
      "          'theyre': 1,\n",
      "          'never': 1,\n",
      "          'asked': 1,\n",
      "          'anything': 1,\n",
      "          'remotely': 1,\n",
      "          'inundates': 1,\n",
      "          'audience': 1,\n",
      "          'countless': 1,\n",
      "          'shots': 1,\n",
      "          'people': 1,\n",
      "          'andor': 1,\n",
      "          'cars': 1,\n",
      "          'rolling': 1,\n",
      "          'downhill': 1,\n",
      "          'forest': 1,\n",
      "          'constant': 1,\n",
      "          'annoying': 1,\n",
      "          'references': 1,\n",
      "          'disney': 1,\n",
      "          'films': 1,\n",
      "          'nyoull': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'luck': 1,\n",
      "          'good': 1,\n",
      "          'spot': 1,\n",
      "          'entertainment': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sandler': 4,\n",
      "          'film': 4,\n",
      "          'young': 2,\n",
      "          'one': 2,\n",
      "          'adam': 1,\n",
      "          'isnt': 1,\n",
      "          'known': 1,\n",
      "          'appearing': 1,\n",
      "          'deep': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'films': 1,\n",
      "          'hes': 1,\n",
      "          'still': 1,\n",
      "          'really': 1,\n",
      "          'funny': 1,\n",
      "          'guy': 1,\n",
      "          'nmost': 1,\n",
      "          'movies': 1,\n",
      "          'successful': 1,\n",
      "          'making': 1,\n",
      "          'behind': 1,\n",
      "          'let': 1,\n",
      "          'best': 1,\n",
      "          'without': 1,\n",
      "          'stupid': 1,\n",
      "          'plot': 1,\n",
      "          'drown': 1,\n",
      "          'nbig': 1,\n",
      "          'daddy': 1,\n",
      "          'first': 1,\n",
      "          'story': 1,\n",
      "          'seems': 1,\n",
      "          'important': 1,\n",
      "          'sandlers': 1,\n",
      "          'comic': 1,\n",
      "          'performance': 1,\n",
      "          'miserable': 1,\n",
      "          'failure': 1,\n",
      "          'nsandler': 1,\n",
      "          'plays': 1,\n",
      "          'thirtysomething': 1,\n",
      "          'loser': 1,\n",
      "          'gets': 1,\n",
      "          'attached': 1,\n",
      "          'orphaned': 1,\n",
      "          'boy': 1,\n",
      "          'played': 1,\n",
      "          'cole': 1,\n",
      "          'dylan': 1,\n",
      "          'sprouse': 1,\n",
      "          'nas': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'synopsis': 1,\n",
      "          'director': 1,\n",
      "          'dennis': 1,\n",
      "          'dugan': 1,\n",
      "          'resorts': 1,\n",
      "          'usual': 1,\n",
      "          'bag': 1,\n",
      "          'manipulative': 1,\n",
      "          'sentimental': 1,\n",
      "          'sequences': 1,\n",
      "          'including': 1,\n",
      "          'repulsive': 1,\n",
      "          'courtroom': 1,\n",
      "          'battle': 1,\n",
      "          'lot': 1,\n",
      "          'teary': 1,\n",
      "          'scenes': 1,\n",
      "          'characters': 1,\n",
      "          'say': 1,\n",
      "          'goodbye': 1,\n",
      "          'another': 1,\n",
      "          'addition': 1,\n",
      "          'theres': 1,\n",
      "          'ridiculous': 1,\n",
      "          'amount': 1,\n",
      "          'disgusting': 1,\n",
      "          'toilet': 1,\n",
      "          'humor': 1,\n",
      "          'urine': 1,\n",
      "          'vomit': 1,\n",
      "          'get': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'ntheres': 1,\n",
      "          'hilarious': 1,\n",
      "          'running': 1,\n",
      "          'joke': 1,\n",
      "          'featuring': 1,\n",
      "          'female': 1,\n",
      "          'doctor': 1,\n",
      "          'previously': 1,\n",
      "          'worked': 1,\n",
      "          'hooters': 1,\n",
      "          'features': 1,\n",
      "          'passable': 1,\n",
      "          'performances': 1,\n",
      "          'joey': 1,\n",
      "          'lauren': 1,\n",
      "          'adams': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'two': 1,\n",
      "          'boys': 1,\n",
      "          'whole': 1,\n",
      "          'trite': 1,\n",
      "          'disappointingly': 1,\n",
      "          'unfunny': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tomb': 6,\n",
      "          'raider': 6,\n",
      "          'action': 4,\n",
      "          'lara': 4,\n",
      "          'end': 3,\n",
      "          'scene': 3,\n",
      "          'croft': 3,\n",
      "          'nthe': 3,\n",
      "          'film': 3,\n",
      "          'jolies': 3,\n",
      "          'ever': 3,\n",
      "          'movie': 2,\n",
      "          'like': 2,\n",
      "          'poorlystaged': 2,\n",
      "          'sequence': 2,\n",
      "          'boring': 2,\n",
      "          'exposition': 2,\n",
      "          'etc': 2,\n",
      "          'angelina': 2,\n",
      "          'lips': 2,\n",
      "          'include': 2,\n",
      "          'breasts': 2,\n",
      "          'even': 2,\n",
      "          'one': 2,\n",
      "          'get': 2,\n",
      "          'guy': 2,\n",
      "          'shot': 2,\n",
      "          'n': 2,\n",
      "          'sets': 2,\n",
      "          'come': 2,\n",
      "          'monkey': 2,\n",
      "          'warriors': 2,\n",
      "          'life': 2,\n",
      "          'planets': 2,\n",
      "          'align': 2,\n",
      "          'wall': 1,\n",
      "          'collapses': 1,\n",
      "          'near': 1,\n",
      "          'nubile': 1,\n",
      "          'warrior': 1,\n",
      "          'nwith': 1,\n",
      "          'face': 1,\n",
      "          'floor': 1,\n",
      "          'gazes': 1,\n",
      "          'rubble': 1,\n",
      "          'grins': 1,\n",
      "          'abruptly': 1,\n",
      "          'says': 1,\n",
      "          'oh': 1,\n",
      "          'car': 1,\n",
      "          'keys': 1,\n",
      "          'ni': 1,\n",
      "          'mention': 1,\n",
      "          'moment': 1,\n",
      "          'whole': 1,\n",
      "          'damned': 1,\n",
      "          'production': 1,\n",
      "          'made': 1,\n",
      "          'smile': 1,\n",
      "          'nbased': 1,\n",
      "          'incredibly': 1,\n",
      "          'popular': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'lousy': 1,\n",
      "          'structure': 1,\n",
      "          'goes': 1,\n",
      "          'nbasically': 1,\n",
      "          'exists': 1,\n",
      "          'showcase': 1,\n",
      "          'puffy': 1,\n",
      "          'enhanced': 1,\n",
      "          'tits': 1,\n",
      "          'ncloseups': 1,\n",
      "          'framed': 1,\n",
      "          'ohsocarefully': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'bazooms': 1,\n",
      "          'nrunning': 1,\n",
      "          'scenes': 1,\n",
      "          'highlight': 1,\n",
      "          'bouncing': 1,\n",
      "          'vintage': 1,\n",
      "          'baywatch': 1,\n",
      "          'fashion': 1,\n",
      "          'ntheres': 1,\n",
      "          'shower': 1,\n",
      "          'offers': 1,\n",
      "          'brief': 1,\n",
      "          'side': 1,\n",
      "          'view': 1,\n",
      "          'nbut': 1,\n",
      "          'filmmakers': 1,\n",
      "          'inept': 1,\n",
      "          'cant': 1,\n",
      "          'flash': 1,\n",
      "          'audience': 1,\n",
      "          'correctly': 1,\n",
      "          'extended': 1,\n",
      "          'display': 1,\n",
      "          'nudity': 1,\n",
      "          'ready': 1,\n",
      "          'nfor': 1,\n",
      "          'particular': 1,\n",
      "          'reason': 1,\n",
      "          'muscular': 1,\n",
      "          'supporting': 1,\n",
      "          'character': 1,\n",
      "          'strolls': 1,\n",
      "          'around': 1,\n",
      "          'naked': 1,\n",
      "          '30': 1,\n",
      "          'seconds': 1,\n",
      "          'composed': 1,\n",
      "          'barely': 1,\n",
      "          'cover': 1,\n",
      "          'package': 1,\n",
      "          'la': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'nnow': 1,\n",
      "          'enjoy': 1,\n",
      "          'good': 1,\n",
      "          'looking': 1,\n",
      "          'male': 1,\n",
      "          'body': 1,\n",
      "          'much': 1,\n",
      "          'next': 1,\n",
      "          'gay': 1,\n",
      "          'hell': 1,\n",
      "          'beefcake': 1,\n",
      "          'ta': 1,\n",
      "          'flick': 1,\n",
      "          'aimed': 1,\n",
      "          'heterosexual': 1,\n",
      "          'males': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'else': 1,\n",
      "          'expect': 1,\n",
      "          'virtually': 1,\n",
      "          'nothing': 1,\n",
      "          'right': 1,\n",
      "          'elaborate': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'renders': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'needless': 1,\n",
      "          'jump': 1,\n",
      "          'cut': 1,\n",
      "          'editing': 1,\n",
      "          'promising': 1,\n",
      "          'dual': 1,\n",
      "          'bungee': 1,\n",
      "          'cord': 1,\n",
      "          'battle': 1,\n",
      "          'ruined': 1,\n",
      "          'excessive': 1,\n",
      "          'cuts': 1,\n",
      "          'nit': 1,\n",
      "          'promises': 1,\n",
      "          'series': 1,\n",
      "          'exotic': 1,\n",
      "          'locales': 1,\n",
      "          'delivers': 1,\n",
      "          'cavernous': 1,\n",
      "          'grimy': 1,\n",
      "          'matte': 1,\n",
      "          'paintings': 1,\n",
      "          'smoggy': 1,\n",
      "          'skies': 1,\n",
      "          'nthrow': 1,\n",
      "          'bargain': 1,\n",
      "          'basement': 1,\n",
      "          'computer': 1,\n",
      "          'graphics': 1,\n",
      "          'ugliest': 1,\n",
      "          'pike': 1,\n",
      "          'many': 1,\n",
      "          'moons': 1,\n",
      "          'nintended': 1,\n",
      "          'rousing': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'style': 1,\n",
      "          'adventure': 1,\n",
      "          'lacks': 1,\n",
      "          'sense': 1,\n",
      "          'tension': 1,\n",
      "          'low': 1,\n",
      "          'point': 1,\n",
      "          'comes': 1,\n",
      "          'threatened': 1,\n",
      "          'statues': 1,\n",
      "          'giant': 1,\n",
      "          'multiarmed': 1,\n",
      "          'shiva': 1,\n",
      "          'figure': 1,\n",
      "          'courtesy': 1,\n",
      "          'cgi': 1,\n",
      "          'neasily': 1,\n",
      "          'lamest': 1,\n",
      "          'menaces': 1,\n",
      "          'seen': 1,\n",
      "          'creatures': 1,\n",
      "          'move': 1,\n",
      "          'snails': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'single': 1,\n",
      "          'gun': 1,\n",
      "          'nif': 1,\n",
      "          'chased': 1,\n",
      "          'monsters': 1,\n",
      "          'pray': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'sort': 1,\n",
      "          'nonce': 1,\n",
      "          'every': 1,\n",
      "          '5': 1,\n",
      "          '000': 1,\n",
      "          'years': 1,\n",
      "          'na': 1,\n",
      "          'group': 1,\n",
      "          'bad': 1,\n",
      "          'men': 1,\n",
      "          'find': 1,\n",
      "          'two': 1,\n",
      "          'halves': 1,\n",
      "          'object': 1,\n",
      "          'reassembled': 1,\n",
      "          'give': 1,\n",
      "          'control': 1,\n",
      "          'time': 1,\n",
      "          'nlaras': 1,\n",
      "          'goal': 1,\n",
      "          'stop': 1,\n",
      "          'rescue': 1,\n",
      "          'longmissing': 1,\n",
      "          'poppa': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'real': 1,\n",
      "          'dad': 1,\n",
      "          'nnone': 1,\n",
      "          'matters': 1,\n",
      "          'though': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'stunning': 1,\n",
      "          'gaps': 1,\n",
      "          'internal': 1,\n",
      "          'logic': 1,\n",
      "          'assure': 1,\n",
      "          'plot': 1,\n",
      "          'lame': 1,\n",
      "          'aspect': 1,\n",
      "          'except': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'movie': 5,\n",
      "          'american': 4,\n",
      "          'perfekt': 4,\n",
      "          'forster': 3,\n",
      "          'ni': 3,\n",
      "          'never': 3,\n",
      "          'nthe': 3,\n",
      "          'going': 3,\n",
      "          'nand': 3,\n",
      "          'immediately': 2,\n",
      "          'nthis': 2,\n",
      "          'n': 2,\n",
      "          'nit': 2,\n",
      "          'figure': 2,\n",
      "          'point': 2,\n",
      "          'plot': 2,\n",
      "          'get': 2,\n",
      "          'doesnt': 2,\n",
      "          'plummer': 2,\n",
      "          'road': 2,\n",
      "          'characters': 2,\n",
      "          'give': 2,\n",
      "          'trying': 2,\n",
      "          'nnothing': 2,\n",
      "          'think': 2,\n",
      "          'would': 2,\n",
      "          'explanation': 2,\n",
      "          'robert': 1,\n",
      "          'found': 1,\n",
      "          'famous': 1,\n",
      "          'appearing': 1,\n",
      "          'jackie': 1,\n",
      "          'brown': 1,\n",
      "          'signed': 1,\n",
      "          'little': 1,\n",
      "          'called': 1,\n",
      "          'almost': 1,\n",
      "          'two': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'waited': 1,\n",
      "          'patiently': 1,\n",
      "          'released': 1,\n",
      "          'nfinally': 1,\n",
      "          'forgot': 1,\n",
      "          'day': 1,\n",
      "          'though': 1,\n",
      "          'perusing': 1,\n",
      "          'selection': 1,\n",
      "          'local': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'stumbled': 1,\n",
      "          'upon': 1,\n",
      "          'guessed': 1,\n",
      "          'rented': 1,\n",
      "          'certain': 1,\n",
      "          'amount': 1,\n",
      "          'glee': 1,\n",
      "          'rushed': 1,\n",
      "          'home': 1,\n",
      "          'view': 1,\n",
      "          'nhaving': 1,\n",
      "          'seen': 1,\n",
      "          'understand': 1,\n",
      "          'saw': 1,\n",
      "          'theatrical': 1,\n",
      "          'release': 1,\n",
      "          'jumbled': 1,\n",
      "          'mess': 1,\n",
      "          'storyline': 1,\n",
      "          'nonexistent': 1,\n",
      "          'took': 1,\n",
      "          'half': 1,\n",
      "          'thing': 1,\n",
      "          'really': 1,\n",
      "          'knew': 1,\n",
      "          'sure': 1,\n",
      "          'introduce': 1,\n",
      "          'sort': 1,\n",
      "          'wants': 1,\n",
      "          'quirkyness': 1,\n",
      "          'socalled': 1,\n",
      "          'charm': 1,\n",
      "          'alone': 1,\n",
      "          'work': 1,\n",
      "          'nrobert': 1,\n",
      "          'plays': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'picks': 1,\n",
      "          'amanda': 1,\n",
      "          'head': 1,\n",
      "          'together': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'discernable': 1,\n",
      "          'destination': 1,\n",
      "          'run': 1,\n",
      "          'sorts': 1,\n",
      "          'kooky': 1,\n",
      "          'wacky': 1,\n",
      "          'suppose': 1,\n",
      "          'freewheeling': 1,\n",
      "          'style': 1,\n",
      "          'supposed': 1,\n",
      "          'element': 1,\n",
      "          'danger': 1,\n",
      "          'excitment': 1,\n",
      "          'make': 1,\n",
      "          'sleepy': 1,\n",
      "          'nim': 1,\n",
      "          'new': 1,\n",
      "          'things': 1,\n",
      "          'within': 1,\n",
      "          'realm': 1,\n",
      "          'expense': 1,\n",
      "          'coherence': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'actions': 1,\n",
      "          'go': 1,\n",
      "          'unexplained': 1,\n",
      "          'even': 1,\n",
      "          'theyre': 1,\n",
      "          'truly': 1,\n",
      "          'bizarre': 1,\n",
      "          'nill': 1,\n",
      "          'example': 1,\n",
      "          'without': 1,\n",
      "          'giving': 1,\n",
      "          'much': 1,\n",
      "          'away': 1,\n",
      "          'ndavid': 1,\n",
      "          'thewlis': 1,\n",
      "          'part': 1,\n",
      "          'drifting': 1,\n",
      "          'conman': 1,\n",
      "          'nat': 1,\n",
      "          'one': 1,\n",
      "          'midway': 1,\n",
      "          'runs': 1,\n",
      "          'car': 1,\n",
      "          'nas': 1,\n",
      "          'passes': 1,\n",
      "          'see': 1,\n",
      "          'face': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'ndo': 1,\n",
      "          'happened': 1,\n",
      "          'nyou': 1,\n",
      "          'wouldnt': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'gained': 1,\n",
      "          'watching': 1,\n",
      "          'except': 1,\n",
      "          'maybe': 1,\n",
      "          'migraine': 1,\n",
      "          'rent': 1,\n",
      "          'dont': 1,\n",
      "          'bother': 1,\n",
      "          'whats': 1,\n",
      "          'hopes': 1,\n",
      "          'everything': 1,\n",
      "          'resolved': 1,\n",
      "          'end': 1,\n",
      "          'happen': 1,\n",
      "          'given': 1,\n",
      "          'misspelling': 1,\n",
      "          'perfect': 1,\n",
      "          'either': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 6,\n",
      "          'movies': 4,\n",
      "          'tomb': 4,\n",
      "          'raider': 4,\n",
      "          'dead': 4,\n",
      "          'much': 4,\n",
      "          'action': 4,\n",
      "          'games': 3,\n",
      "          'plot': 3,\n",
      "          'triangle': 3,\n",
      "          'jolie': 3,\n",
      "          'father': 3,\n",
      "          'would': 2,\n",
      "          'make': 2,\n",
      "          'video': 2,\n",
      "          'hasnt': 2,\n",
      "          'film': 2,\n",
      "          'hope': 2,\n",
      "          'mummy': 2,\n",
      "          'nhowever': 2,\n",
      "          'project': 2,\n",
      "          'yet': 2,\n",
      "          'nthe': 2,\n",
      "          'ntheres': 2,\n",
      "          'halves': 2,\n",
      "          'ancient': 2,\n",
      "          'world': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'tombs': 2,\n",
      "          'lara': 2,\n",
      "          'jon': 2,\n",
      "          'voight': 2,\n",
      "          'dad': 2,\n",
      "          'flick': 2,\n",
      "          'acting': 2,\n",
      "          'seems': 2,\n",
      "          'british': 2,\n",
      "          'jolies': 2,\n",
      "          'ni': 2,\n",
      "          'first': 2,\n",
      "          'tv': 2,\n",
      "          'prisoner': 2,\n",
      "          'youd': 1,\n",
      "          'think': 1,\n",
      "          'awhile': 1,\n",
      "          'hollywood': 1,\n",
      "          'stop': 1,\n",
      "          'trying': 1,\n",
      "          'nit': 1,\n",
      "          'worked': 1,\n",
      "          'far': 1,\n",
      "          'street': 1,\n",
      "          'fighter': 1,\n",
      "          'super': 1,\n",
      "          'mario': 1,\n",
      "          'brothers': 1,\n",
      "          'wing': 1,\n",
      "          'commander': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          'nnot': 1,\n",
      "          'watchable': 1,\n",
      "          'bunch': 1,\n",
      "          'nstill': 1,\n",
      "          'held': 1,\n",
      "          'nafter': 1,\n",
      "          'premise': 1,\n",
      "          'heavily': 1,\n",
      "          'influenced': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'trilogy': 1,\n",
      "          'cinematic': 1,\n",
      "          'elements': 1,\n",
      "          'imbedded': 1,\n",
      "          'concept': 1,\n",
      "          'despite': 1,\n",
      "          'potential': 1,\n",
      "          'proves': 1,\n",
      "          'another': 1,\n",
      "          'bomb': 1,\n",
      "          'convoluted': 1,\n",
      "          'accumulation': 1,\n",
      "          'nonsense': 1,\n",
      "          'probably': 1,\n",
      "          'borrowed': 1,\n",
      "          'dozen': 1,\n",
      "          'bad': 1,\n",
      "          'onceever5000years': 1,\n",
      "          'alignment': 1,\n",
      "          'planets': 1,\n",
      "          'coming': 1,\n",
      "          'illuminati': 1,\n",
      "          'find': 1,\n",
      "          'controls': 1,\n",
      "          'time': 1,\n",
      "          'order': 1,\n",
      "          'take': 1,\n",
      "          'folks': 1,\n",
      "          'divided': 1,\n",
      "          'buried': 1,\n",
      "          'opposite': 1,\n",
      "          'sides': 1,\n",
      "          'nour': 1,\n",
      "          'heroine': 1,\n",
      "          'lady': 1,\n",
      "          'croft': 1,\n",
      "          'angelina': 1,\n",
      "          'finds': 1,\n",
      "          'key': 1,\n",
      "          'opens': 1,\n",
      "          'relics': 1,\n",
      "          'dug': 1,\n",
      "          'nshe': 1,\n",
      "          'figures': 1,\n",
      "          'gets': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'one': 1,\n",
      "          'expecting': 1,\n",
      "          'movie': 1,\n",
      "          'anyway': 1,\n",
      "          'nin': 1,\n",
      "          'excuse': 1,\n",
      "          'sequences': 1,\n",
      "          'shows': 1,\n",
      "          'little': 1,\n",
      "          'style': 1,\n",
      "          'originality': 1,\n",
      "          'lots': 1,\n",
      "          'shooting': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'fightin': 1,\n",
      "          'none': 1,\n",
      "          'progresses': 1,\n",
      "          'beyond': 1,\n",
      "          'level': 1,\n",
      "          'cheap': 1,\n",
      "          'directtocable': 1,\n",
      "          'goofy': 1,\n",
      "          'archeologist': 1,\n",
      "          'summer': 1,\n",
      "          'returns': 1,\n",
      "          'better': 1,\n",
      "          'flaws': 1,\n",
      "          'creative': 1,\n",
      "          'largescale': 1,\n",
      "          'nsince': 1,\n",
      "          'winning': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'girl': 1,\n",
      "          'interrupted': 1,\n",
      "          'taken': 1,\n",
      "          'projects': 1,\n",
      "          'display': 1,\n",
      "          'talents': 1,\n",
      "          'interested': 1,\n",
      "          'displaying': 1,\n",
      "          'breasts': 1,\n",
      "          'attention': 1,\n",
      "          'drawn': 1,\n",
      "          'shame': 1,\n",
      "          'theres': 1,\n",
      "          'oscar': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'wonderbra': 1,\n",
      "          'nwhile': 1,\n",
      "          'dont': 1,\n",
      "          'see': 1,\n",
      "          'ability': 1,\n",
      "          'exception': 1,\n",
      "          'wonderful': 1,\n",
      "          'uppercrust': 1,\n",
      "          'accent': 1,\n",
      "          'get': 1,\n",
      "          'hint': 1,\n",
      "          'less': 1,\n",
      "          'savory': 1,\n",
      "          'side': 1,\n",
      "          'nconsidering': 1,\n",
      "          'rumors': 1,\n",
      "          'incest': 1,\n",
      "          'hang': 1,\n",
      "          'supposed': 1,\n",
      "          'obsession': 1,\n",
      "          'death': 1,\n",
      "          'obsessed': 1,\n",
      "          'resurrecting': 1,\n",
      "          'uninterested': 1,\n",
      "          'living': 1,\n",
      "          'males': 1,\n",
      "          'around': 1,\n",
      "          'poor': 1,\n",
      "          'choice': 1,\n",
      "          'nhaving': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'play': 1,\n",
      "          'makes': 1,\n",
      "          'even': 1,\n",
      "          'creepier': 1,\n",
      "          'havent': 1,\n",
      "          'decided': 1,\n",
      "          'director': 1,\n",
      "          'simon': 1,\n",
      "          'west': 1,\n",
      "          'nhis': 1,\n",
      "          'feature': 1,\n",
      "          'starstudded': 1,\n",
      "          'disaster': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'opinion': 1,\n",
      "          'improved': 1,\n",
      "          'generals': 1,\n",
      "          'daughter': 1,\n",
      "          'thick': 1,\n",
      "          'sultry': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nnow': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'improves': 1,\n",
      "          'next': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'version': 1,\n",
      "          'cult': 1,\n",
      "          'series': 1,\n",
      "          'nhollywood': 1,\n",
      "          'already': 1,\n",
      "          'screwed': 1,\n",
      "          'avengers': 1,\n",
      "          'represents': 1,\n",
      "          'chance': 1,\n",
      "          'redemption': 1,\n",
      "          'way': 1,\n",
      "          'speaking': 1,\n",
      "          'red': 1,\n",
      "          'dwarf': 1,\n",
      "          'fans': 1,\n",
      "          'look': 1,\n",
      "          'chris': 1,\n",
      "          'rimmer': 1,\n",
      "          'barrie': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'vampires': 5,\n",
      "          'carpenter': 4,\n",
      "          'john': 3,\n",
      "          'nthe': 3,\n",
      "          'evil': 3,\n",
      "          'last': 2,\n",
      "          'vampirefilms': 2,\n",
      "          'crow': 2,\n",
      "          'james': 2,\n",
      "          'woods': 2,\n",
      "          'earth': 2,\n",
      "          'lost': 2,\n",
      "          'time': 2,\n",
      "          'black': 2,\n",
      "          'cross': 2,\n",
      "          'nafter': 2,\n",
      "          'films': 2,\n",
      "          'cinematography': 2,\n",
      "          'would': 2,\n",
      "          'greatest': 2,\n",
      "          'achievement': 2,\n",
      "          'long': 2,\n",
      "          'interesting': 2,\n",
      "          'catholic': 2,\n",
      "          'cool': 2,\n",
      "          'good': 2,\n",
      "          'cast': 2,\n",
      "          'like': 2,\n",
      "          'offers': 1,\n",
      "          'plenty': 1,\n",
      "          'blood': 1,\n",
      "          'gore': 1,\n",
      "          'beyond': 1,\n",
      "          'nothing': 1,\n",
      "          'njack': 1,\n",
      "          'professional': 1,\n",
      "          'vampire': 1,\n",
      "          'slayer': 1,\n",
      "          'secretly': 1,\n",
      "          'working': 1,\n",
      "          'vatican': 1,\n",
      "          'nhis': 1,\n",
      "          'mens': 1,\n",
      "          'mission': 1,\n",
      "          'clean': 1,\n",
      "          'nthey': 1,\n",
      "          'count': 1,\n",
      "          'many': 1,\n",
      "          'slaughtered': 1,\n",
      "          'one': 1,\n",
      "          'always': 1,\n",
      "          'escaped': 1,\n",
      "          'nvalek': 1,\n",
      "          'thomas': 1,\n",
      "          'ian': 1,\n",
      "          'griffith': 1,\n",
      "          'dark': 1,\n",
      "          'messias': 1,\n",
      "          'ruler': 1,\n",
      "          'undead': 1,\n",
      "          'older': 1,\n",
      "          'nfor': 1,\n",
      "          'eternity': 1,\n",
      "          'searched': 1,\n",
      "          'salvation': 1,\n",
      "          'nwith': 1,\n",
      "          'possesion': 1,\n",
      "          'able': 1,\n",
      "          'walk': 1,\n",
      "          'sunlight': 1,\n",
      "          'either': 1,\n",
      "          'humans': 1,\n",
      "          'dominate': 1,\n",
      "          'ni': 1,\n",
      "          'never': 1,\n",
      "          'liked': 1,\n",
      "          'style': 1,\n",
      "          'seeing': 1,\n",
      "          'opinions': 1,\n",
      "          'changed': 1,\n",
      "          'njohn': 1,\n",
      "          'remains': 1,\n",
      "          'nhowever': 1,\n",
      "          'selfirony': 1,\n",
      "          'humour': 1,\n",
      "          'fascinating': 1,\n",
      "          'say': 1,\n",
      "          'nneither': 1,\n",
      "          'synopses': 1,\n",
      "          'carpenters': 1,\n",
      "          'direction': 1,\n",
      "          'original': 1,\n",
      "          'nbut': 1,\n",
      "          'things': 1,\n",
      "          'directors': 1,\n",
      "          'negative': 1,\n",
      "          'view': 1,\n",
      "          'church': 1,\n",
      "          'instance': 1,\n",
      "          'nat': 1,\n",
      "          'end': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'cardinal': 1,\n",
      "          'alba': 1,\n",
      "          'maximilian': 1,\n",
      "          'schell': 1,\n",
      "          'simply': 1,\n",
      "          'used': 1,\n",
      "          'team': 1,\n",
      "          'find': 1,\n",
      "          'valek': 1,\n",
      "          'gain': 1,\n",
      "          'eternal': 1,\n",
      "          'life': 1,\n",
      "          'notherwise': 1,\n",
      "          'priests': 1,\n",
      "          'shown': 1,\n",
      "          'drinking': 1,\n",
      "          'smoking': 1,\n",
      "          'breaking': 1,\n",
      "          'rool': 1,\n",
      "          'celibacy': 1,\n",
      "          'ncarpenter': 1,\n",
      "          'created': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nset': 1,\n",
      "          'new': 1,\n",
      "          'mexican': 1,\n",
      "          'dessert': 1,\n",
      "          'switches': 1,\n",
      "          'bright': 1,\n",
      "          'golden': 1,\n",
      "          'sunrises': 1,\n",
      "          'bloody': 1,\n",
      "          'sundowns': 1,\n",
      "          'symbolically': 1,\n",
      "          'illustrating': 1,\n",
      "          'light': 1,\n",
      "          'darkness': 1,\n",
      "          'nmore': 1,\n",
      "          'anything': 1,\n",
      "          'simple': 1,\n",
      "          'illustration': 1,\n",
      "          'shows': 1,\n",
      "          'battle': 1,\n",
      "          'gary': 1,\n",
      "          'b': 1,\n",
      "          'kibbe': 1,\n",
      "          'probably': 1,\n",
      "          'nmusic': 1,\n",
      "          'composed': 1,\n",
      "          'times': 1,\n",
      "          'effective': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'makeup': 1,\n",
      "          'likewise': 1,\n",
      "          'worth': 1,\n",
      "          'notice': 1,\n",
      "          'nwhen': 1,\n",
      "          'comes': 1,\n",
      "          'intellectual': 1,\n",
      "          'casting': 1,\n",
      "          'problem': 1,\n",
      "          'everyone': 1,\n",
      "          'scream': 1,\n",
      "          'swing': 1,\n",
      "          'axe': 1,\n",
      "          'suprisingly': 1,\n",
      "          'convincing': 1,\n",
      "          'nhe': 1,\n",
      "          'macho': 1,\n",
      "          'dedicated': 1,\n",
      "          'hunter': 1,\n",
      "          'family': 1,\n",
      "          'breed': 1,\n",
      "          'nwoods': 1,\n",
      "          'constantly': 1,\n",
      "          'overacting': 1,\n",
      "          'really': 1,\n",
      "          'saves': 1,\n",
      "          'falling': 1,\n",
      "          'trap': 1,\n",
      "          'serious': 1,\n",
      "          'self': 1,\n",
      "          'importance': 1,\n",
      "          'ndaniel': 1,\n",
      "          'baldwin': 1,\n",
      "          'also': 1,\n",
      "          'entertaining': 1,\n",
      "          'crows': 1,\n",
      "          'loyal': 1,\n",
      "          'partner': 1,\n",
      "          'members': 1,\n",
      "          'struggling': 1,\n",
      "          'nbecause': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'stays': 1,\n",
      "          'afloat': 1,\n",
      "          'nstill': 1,\n",
      "          'mediocre': 1,\n",
      "          'experience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 13,\n",
      "          'nit': 6,\n",
      "          'something': 6,\n",
      "          'like': 6,\n",
      "          'could': 5,\n",
      "          'dull': 5,\n",
      "          'whos': 5,\n",
      "          'interesting': 4,\n",
      "          'bunch': 4,\n",
      "          'teenagers': 4,\n",
      "          'steve': 4,\n",
      "          'gavin': 4,\n",
      "          'hes': 4,\n",
      "          'lot': 4,\n",
      "          'theyre': 3,\n",
      "          'next': 3,\n",
      "          'actually': 3,\n",
      "          'work': 3,\n",
      "          'may': 3,\n",
      "          'ni': 3,\n",
      "          'needs': 3,\n",
      "          'scary': 3,\n",
      "          'get': 3,\n",
      "          'nthe': 3,\n",
      "          'characters': 3,\n",
      "          'kid': 3,\n",
      "          'dont': 3,\n",
      "          'best': 3,\n",
      "          'good': 3,\n",
      "          'much': 3,\n",
      "          'behavior': 2,\n",
      "          'scream': 2,\n",
      "          'films': 2,\n",
      "          'nbut': 2,\n",
      "          'flicks': 2,\n",
      "          'well': 2,\n",
      "          'less': 2,\n",
      "          'starring': 2,\n",
      "          'programmed': 2,\n",
      "          'perfect': 2,\n",
      "          'katie': 2,\n",
      "          'holmes': 2,\n",
      "          'dawsons': 2,\n",
      "          'creek': 2,\n",
      "          'angst': 2,\n",
      "          'sounds': 2,\n",
      "          'would': 2,\n",
      "          'witty': 2,\n",
      "          'things': 2,\n",
      "          'movies': 2,\n",
      "          'known': 2,\n",
      "          'brilliant': 2,\n",
      "          'another': 2,\n",
      "          'need': 2,\n",
      "          'teen': 2,\n",
      "          'find': 2,\n",
      "          'nits': 2,\n",
      "          'sloppy': 2,\n",
      "          'school': 2,\n",
      "          'life': 2,\n",
      "          'us': 2,\n",
      "          'become': 2,\n",
      "          'enough': 2,\n",
      "          'introduces': 2,\n",
      "          'two': 2,\n",
      "          'clique': 2,\n",
      "          'without': 2,\n",
      "          'character': 2,\n",
      "          'scene': 2,\n",
      "          'ones': 2,\n",
      "          'theres': 2,\n",
      "          'even': 2,\n",
      "          'happens': 2,\n",
      "          'played': 2,\n",
      "          'probably': 2,\n",
      "          'works': 2,\n",
      "          'creepy': 2,\n",
      "          'nif': 2,\n",
      "          'villain': 2,\n",
      "          'come': 2,\n",
      "          'minutes': 2,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'genius': 1,\n",
      "          'came': 1,\n",
      "          'idea': 1,\n",
      "          'comparing': 1,\n",
      "          'disturbing': 1,\n",
      "          'nmaybe': 1,\n",
      "          'horror': 1,\n",
      "          'kinda': 1,\n",
      "          'hot': 1,\n",
      "          'young': 1,\n",
      "          'stars': 1,\n",
      "          'annoying': 1,\n",
      "          'alternative': 1,\n",
      "          'soundtrack': 1,\n",
      "          'aimed': 1,\n",
      "          'teenage': 1,\n",
      "          'crowd': 1,\n",
      "          'guess': 1,\n",
      "          'includes': 1,\n",
      "          'line': 1,\n",
      "          'know': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'soon': 1,\n",
      "          'owes': 1,\n",
      "          'halloween': 1,\n",
      "          'kafka': 1,\n",
      "          'orwell': 1,\n",
      "          'book': 1,\n",
      "          'makes': 1,\n",
      "          'feature': 1,\n",
      "          'nand': 1,\n",
      "          'nthis': 1,\n",
      "          'basically': 1,\n",
      "          'rehash': 1,\n",
      "          'stepford': 1,\n",
      "          'wives': 1,\n",
      "          'great': 1,\n",
      "          '70s': 1,\n",
      "          'never': 1,\n",
      "          'saw': 1,\n",
      "          'katherine': 1,\n",
      "          'ross': 1,\n",
      "          'dealing': 1,\n",
      "          'ive': 1,\n",
      "          'told': 1,\n",
      "          'women': 1,\n",
      "          'housewives': 1,\n",
      "          'n': 1,\n",
      "          'deals': 1,\n",
      "          'deep': 1,\n",
      "          'nsuckups': 1,\n",
      "          'npreppies': 1,\n",
      "          'least': 1,\n",
      "          'scott': 1,\n",
      "          'rosenberg': 1,\n",
      "          'penmen': 1,\n",
      "          'written': 1,\n",
      "          'stuff': 1,\n",
      "          'beautiful': 1,\n",
      "          'girls': 1,\n",
      "          'denver': 1,\n",
      "          'youre': 1,\n",
      "          'dead': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'pulled': 1,\n",
      "          'right': 1,\n",
      "          'amount': 1,\n",
      "          'frights': 1,\n",
      "          'satiric': 1,\n",
      "          'wit': 1,\n",
      "          'nalas': 1,\n",
      "          'plumets': 1,\n",
      "          'little': 1,\n",
      "          'group': 1,\n",
      "          'potential': 1,\n",
      "          'blow': 1,\n",
      "          'remember': 1,\n",
      "          'called': 1,\n",
      "          'white': 1,\n",
      "          'mans': 1,\n",
      "          'burden': 1,\n",
      "          'dealt': 1,\n",
      "          'reversal': 1,\n",
      "          'blacks': 1,\n",
      "          'whites': 1,\n",
      "          'society': 1,\n",
      "          'nothing': 1,\n",
      "          'potentially': 1,\n",
      "          'premise': 1,\n",
      "          'nheres': 1,\n",
      "          'one': 1,\n",
      "          'satire': 1,\n",
      "          'go': 1,\n",
      "          'order': 1,\n",
      "          'stage': 1,\n",
      "          'fact': 1,\n",
      "          'realize': 1,\n",
      "          'gets': 1,\n",
      "          'message': 1,\n",
      "          'across': 1,\n",
      "          'effortlessly': 1,\n",
      "          'nnow': 1,\n",
      "          'nwhich': 1,\n",
      "          'doesnt': 1,\n",
      "          'contrived': 1,\n",
      "          'paints': 1,\n",
      "          'bleak': 1,\n",
      "          'portrait': 1,\n",
      "          'high': 1,\n",
      "          'nlets': 1,\n",
      "          'lie': 1,\n",
      "          'brings': 1,\n",
      "          'monsters': 1,\n",
      "          'disgustingly': 1,\n",
      "          'icky': 1,\n",
      "          'kissups': 1,\n",
      "          'food': 1,\n",
      "          'drives': 1,\n",
      "          'hang': 1,\n",
      "          '50s': 1,\n",
      "          'diner': 1,\n",
      "          'drinking': 1,\n",
      "          'milk': 1,\n",
      "          'shakes': 1,\n",
      "          'ngives': 1,\n",
      "          'cheap': 1,\n",
      "          'twist': 1,\n",
      "          'horny': 1,\n",
      "          'homicidal': 1,\n",
      "          'nisnt': 1,\n",
      "          'cant': 1,\n",
      "          'real': 1,\n",
      "          'terror': 1,\n",
      "          'town': 1,\n",
      "          'die': 1,\n",
      "          'three': 1,\n",
      "          'different': 1,\n",
      "          'beginning': 1,\n",
      "          'considered': 1,\n",
      "          'outsiders': 1,\n",
      "          'yet': 1,\n",
      "          'part': 1,\n",
      "          'new': 1,\n",
      "          'james': 1,\n",
      "          'marsden': 1,\n",
      "          'trouble': 1,\n",
      "          'home': 1,\n",
      "          'hasnt': 1,\n",
      "          'gotten': 1,\n",
      "          'brothers': 1,\n",
      "          'ethan': 1,\n",
      "          'embry': 1,\n",
      "          'quick': 1,\n",
      "          'flashes': 1,\n",
      "          'recognize': 1,\n",
      "          'suicide': 1,\n",
      "          'renegade': 1,\n",
      "          'girl': 1,\n",
      "          'rachel': 1,\n",
      "          'chief': 1,\n",
      "          'personality': 1,\n",
      "          'trait': 1,\n",
      "          'prominent': 1,\n",
      "          'nose': 1,\n",
      "          'ring': 1,\n",
      "          'far': 1,\n",
      "          'nick': 1,\n",
      "          'stahl': 1,\n",
      "          'man': 1,\n",
      "          'face': 1,\n",
      "          'given': 1,\n",
      "          'dimension': 1,\n",
      "          'nin': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'nailing': 1,\n",
      "          'fetishes': 1,\n",
      "          'hangups': 1,\n",
      "          'movie': 1,\n",
      "          'satirical': 1,\n",
      "          'rest': 1,\n",
      "          'isnt': 1,\n",
      "          'ngavin': 1,\n",
      "          'suspects': 1,\n",
      "          'awry': 1,\n",
      "          'preppie': 1,\n",
      "          'kids': 1,\n",
      "          'blue': 1,\n",
      "          'ribbons': 1,\n",
      "          'tradition': 1,\n",
      "          'conspirators': 1,\n",
      "          'shows': 1,\n",
      "          'hard': 1,\n",
      "          'pure': 1,\n",
      "          'evidence': 1,\n",
      "          'treated': 1,\n",
      "          'typical': 1,\n",
      "          'raving': 1,\n",
      "          'conspiracy': 1,\n",
      "          'buff': 1,\n",
      "          'nhere': 1,\n",
      "          'case': 1,\n",
      "          'idiot': 1,\n",
      "          'plot': 1,\n",
      "          'done': 1,\n",
      "          'saved': 1,\n",
      "          'dreary': 1,\n",
      "          'gives': 1,\n",
      "          'humor': 1,\n",
      "          'halfinteresting': 1,\n",
      "          'janitor': 1,\n",
      "          'william': 1,\n",
      "          'sadler': 1,\n",
      "          'retarded': 1,\n",
      "          'guy': 1,\n",
      "          'seems': 1,\n",
      "          'nreally': 1,\n",
      "          'care': 1,\n",
      "          'anyway': 1,\n",
      "          'shouldnt': 1,\n",
      "          'mention': 1,\n",
      "          'directed': 1,\n",
      "          'david': 1,\n",
      "          'nutter': 1,\n",
      "          'xfiles': 1,\n",
      "          'tarnish': 1,\n",
      "          'reputation': 1,\n",
      "          'nlike': 1,\n",
      "          'show': 1,\n",
      "          'setting': 1,\n",
      "          'weird': 1,\n",
      "          'conspiracies': 1,\n",
      "          'creating': 1,\n",
      "          'general': 1,\n",
      "          'feel': 1,\n",
      "          'nmost': 1,\n",
      "          'shot': 1,\n",
      "          'night': 1,\n",
      "          'dark': 1,\n",
      "          'eerie': 1,\n",
      "          'shadows': 1,\n",
      "          'maximum': 1,\n",
      "          'effect': 1,\n",
      "          'coming': 1,\n",
      "          'payoff': 1,\n",
      "          'nhe': 1,\n",
      "          'keeps': 1,\n",
      "          'inside': 1,\n",
      "          'journey': 1,\n",
      "          'mental': 1,\n",
      "          'institution': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'wonder': 1,\n",
      "          'hell': 1,\n",
      "          'think': 1,\n",
      "          'proof': 1,\n",
      "          'rotten': 1,\n",
      "          'state': 1,\n",
      "          'angstdom': 1,\n",
      "          'nwhat': 1,\n",
      "          'longer': 1,\n",
      "          'colorful': 1,\n",
      "          'creepier': 1,\n",
      "          'guidance': 1,\n",
      "          'counselor': 1,\n",
      "          'bruce': 1,\n",
      "          'greenwood': 1,\n",
      "          'atom': 1,\n",
      "          'egoyan': 1,\n",
      "          'regular': 1,\n",
      "          'obviously': 1,\n",
      "          'trying': 1,\n",
      "          'pay': 1,\n",
      "          'rent': 1,\n",
      "          'still': 1,\n",
      "          'thinks': 1,\n",
      "          'away': 1,\n",
      "          'revealed': 1,\n",
      "          'tougher': 1,\n",
      "          'smarter': 1,\n",
      "          'villainous': 1,\n",
      "          'dense': 1,\n",
      "          'couldnt': 1,\n",
      "          'figure': 1,\n",
      "          'going': 1,\n",
      "          'way': 1,\n",
      "          'late': 1,\n",
      "          'information': 1,\n",
      "          'couple': 1,\n",
      "          'runs': 1,\n",
      "          '80': 1,\n",
      "          'nat': 1,\n",
      "          'short': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'lame': 1,\n",
      "          'boring': 1,\n",
      "          'pretty': 1,\n",
      "          'obvious': 1,\n",
      "          'leaving': 1,\n",
      "          'leaves': 1,\n",
      "          'horribly': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'taste': 1,\n",
      "          'mouth': 1,\n",
      "          'especially': 1,\n",
      "          'mine': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'death': 14,\n",
      "          'pitt': 12,\n",
      "          'joe': 8,\n",
      "          'black': 8,\n",
      "          'movie': 7,\n",
      "          'meet': 6,\n",
      "          'one': 6,\n",
      "          'forlani': 6,\n",
      "          'scene': 5,\n",
      "          'angel': 5,\n",
      "          'n': 5,\n",
      "          'three': 4,\n",
      "          'nthe': 4,\n",
      "          'would': 4,\n",
      "          'people': 4,\n",
      "          'act': 4,\n",
      "          'see': 4,\n",
      "          'go': 4,\n",
      "          'nhe': 4,\n",
      "          'hopkins': 3,\n",
      "          'around': 3,\n",
      "          'daughter': 3,\n",
      "          'nhopkins': 3,\n",
      "          'nand': 3,\n",
      "          'ni': 3,\n",
      "          'hours': 3,\n",
      "          'nits': 3,\n",
      "          'claire': 3,\n",
      "          'know': 3,\n",
      "          'brad': 3,\n",
      "          'take': 3,\n",
      "          'long': 3,\n",
      "          'looks': 3,\n",
      "          'shoulder': 3,\n",
      "          'get': 3,\n",
      "          'doesnt': 3,\n",
      "          'character': 3,\n",
      "          'much': 3,\n",
      "          'time': 3,\n",
      "          'im': 3,\n",
      "          'review': 2,\n",
      "          'liked': 2,\n",
      "          'nsir': 2,\n",
      "          'anthony': 2,\n",
      "          'media': 2,\n",
      "          'family': 2,\n",
      "          'played': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'planning': 2,\n",
      "          'birthday': 2,\n",
      "          'party': 2,\n",
      "          'cakes': 2,\n",
      "          'man': 2,\n",
      "          'position': 2,\n",
      "          'two': 2,\n",
      "          'things': 2,\n",
      "          'slow': 2,\n",
      "          'course': 2,\n",
      "          'characters': 2,\n",
      "          'someone': 2,\n",
      "          'thought': 2,\n",
      "          'audience': 2,\n",
      "          'plays': 2,\n",
      "          'glamorous': 2,\n",
      "          'nit': 2,\n",
      "          'bad': 2,\n",
      "          'retreating': 2,\n",
      "          'happened': 2,\n",
      "          'humor': 2,\n",
      "          'encourage': 2,\n",
      "          'given': 2,\n",
      "          'name': 2,\n",
      "          'others': 2,\n",
      "          'world': 2,\n",
      "          'hollywood': 2,\n",
      "          'might': 2,\n",
      "          'life': 2,\n",
      "          'jungle': 2,\n",
      "          'never': 2,\n",
      "          'hes': 2,\n",
      "          'especially': 2,\n",
      "          'pretty': 2,\n",
      "          'pitts': 2,\n",
      "          'performance': 2,\n",
      "          'nwhere': 2,\n",
      "          'cage': 2,\n",
      "          'situation': 2,\n",
      "          'better': 2,\n",
      "          'multimillionaire': 2,\n",
      "          'sure': 2,\n",
      "          'wonder': 2,\n",
      "          'interest': 1,\n",
      "          'generous': 1,\n",
      "          'want': 1,\n",
      "          'start': 1,\n",
      "          'playing': 1,\n",
      "          'superrich': 1,\n",
      "          'mogul': 1,\n",
      "          'gathered': 1,\n",
      "          'dinner': 1,\n",
      "          'nhis': 1,\n",
      "          'oldest': 1,\n",
      "          'marcia': 1,\n",
      "          'gay': 1,\n",
      "          'harden': 1,\n",
      "          'millers': 1,\n",
      "          'crossing': 1,\n",
      "          'obsessively': 1,\n",
      "          'sinfully': 1,\n",
      "          'extravagant': 1,\n",
      "          'presents': 1,\n",
      "          'superbly': 1,\n",
      "          'decorated': 1,\n",
      "          'little': 1,\n",
      "          'supposed': 1,\n",
      "          'scale': 1,\n",
      "          'models': 1,\n",
      "          'big': 1,\n",
      "          'cake': 1,\n",
      "          'asks': 1,\n",
      "          'pick': 1,\n",
      "          'likes': 1,\n",
      "          'frustrated': 1,\n",
      "          'weight': 1,\n",
      "          'whole': 1,\n",
      "          'elaborate': 1,\n",
      "          'affair': 1,\n",
      "          'punts': 1,\n",
      "          'nwhichever': 1,\n",
      "          'like': 1,\n",
      "          'dear': 1,\n",
      "          'says': 1,\n",
      "          'exactly': 1,\n",
      "          'woman': 1,\n",
      "          'cries': 1,\n",
      "          'reasons': 1,\n",
      "          'nfirst': 1,\n",
      "          'looked': 1,\n",
      "          'really': 1,\n",
      "          'cool': 1,\n",
      "          'nsecond': 1,\n",
      "          'perhaps': 1,\n",
      "          'acted': 1,\n",
      "          'expect': 1,\n",
      "          'nmeet': 1,\n",
      "          'chockfull': 1,\n",
      "          'odd': 1,\n",
      "          'performances': 1,\n",
      "          'discernible': 1,\n",
      "          'reason': 1,\n",
      "          'motion': 1,\n",
      "          'boot': 1,\n",
      "          'easy': 1,\n",
      "          'watch': 1,\n",
      "          'abundant': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'palatial': 1,\n",
      "          'homes': 1,\n",
      "          'beauteous': 1,\n",
      "          'even': 1,\n",
      "          'easier': 1,\n",
      "          'sleep': 1,\n",
      "          'right': 1,\n",
      "          'row': 1,\n",
      "          'managed': 1,\n",
      "          'quite': 1,\n",
      "          'nicely': 1,\n",
      "          'difficult': 1,\n",
      "          'part': 1,\n",
      "          'understanding': 1,\n",
      "          'motivations': 1,\n",
      "          'appropriate': 1,\n",
      "          'length': 1,\n",
      "          'overwrought': 1,\n",
      "          'mess': 1,\n",
      "          'problems': 1,\n",
      "          'comedy': 1,\n",
      "          'ncase': 1,\n",
      "          'point': 1,\n",
      "          'everyone': 1,\n",
      "          'nhowever': 1,\n",
      "          'first': 1,\n",
      "          'young': 1,\n",
      "          'lawyer': 1,\n",
      "          'coffee': 1,\n",
      "          'shop': 1,\n",
      "          'hitting': 1,\n",
      "          'clear': 1,\n",
      "          'whether': 1,\n",
      "          'need': 1,\n",
      "          'law': 1,\n",
      "          'degree': 1,\n",
      "          'become': 1,\n",
      "          'makes': 1,\n",
      "          'certain': 1,\n",
      "          'kind': 1,\n",
      "          'sense': 1,\n",
      "          'shouldnt': 1,\n",
      "          'observant': 1,\n",
      "          'moviegoer': 1,\n",
      "          'realize': 1,\n",
      "          'happen': 1,\n",
      "          'mr': 1,\n",
      "          'indeed': 1,\n",
      "          'hideously': 1,\n",
      "          'prolonged': 1,\n",
      "          'sequence': 1,\n",
      "          'walks': 1,\n",
      "          'road': 1,\n",
      "          'without': 1,\n",
      "          'looking': 1,\n",
      "          'suddenly': 1,\n",
      "          'gets': 1,\n",
      "          'squished': 1,\n",
      "          'nwell': 1,\n",
      "          'howled': 1,\n",
      "          'laughter': 1,\n",
      "          'continued': 1,\n",
      "          'laugh': 1,\n",
      "          'every': 1,\n",
      "          'comment': 1,\n",
      "          'remotely': 1,\n",
      "          'humorous': 1,\n",
      "          'nso': 1,\n",
      "          'think': 1,\n",
      "          'sudden': 1,\n",
      "          'violent': 1,\n",
      "          'sarcastic': 1,\n",
      "          'drawingroom': 1,\n",
      "          'funny': 1,\n",
      "          'immediately': 1,\n",
      "          'nanyway': 1,\n",
      "          'deceased': 1,\n",
      "          'lawyers': 1,\n",
      "          'body': 1,\n",
      "          'worse': 1,\n",
      "          'wear': 1,\n",
      "          'massive': 1,\n",
      "          'injuries': 1,\n",
      "          'possessed': 1,\n",
      "          'takes': 1,\n",
      "          'role': 1,\n",
      "          'idea': 1,\n",
      "          'pen': 1,\n",
      "          'disturb': 1,\n",
      "          'wants': 1,\n",
      "          'holiday': 1,\n",
      "          'experience': 1,\n",
      "          'nif': 1,\n",
      "          'werent': 1,\n",
      "          'interesting': 1,\n",
      "          'metaphysical': 1,\n",
      "          'discussion': 1,\n",
      "          'since': 1,\n",
      "          'fishoutofwater': 1,\n",
      "          'george': 1,\n",
      "          'crocodile': 1,\n",
      "          'dundee': 1,\n",
      "          'poor': 1,\n",
      "          'schmuck': 1,\n",
      "          'whos': 1,\n",
      "          'wandered': 1,\n",
      "          'outback': 1,\n",
      "          'whatever': 1,\n",
      "          'society': 1,\n",
      "          'also': 1,\n",
      "          'help': 1,\n",
      "          'written': 1,\n",
      "          'inconsistently': 1,\n",
      "          'claims': 1,\n",
      "          'vacation': 1,\n",
      "          'anything': 1,\n",
      "          'except': 1,\n",
      "          'hang': 1,\n",
      "          'seriously': 1,\n",
      "          'attractive': 1,\n",
      "          'try': 1,\n",
      "          'travel': 1,\n",
      "          'agent': 1,\n",
      "          'book': 1,\n",
      "          'speaks': 1,\n",
      "          'halting': 1,\n",
      "          'english': 1,\n",
      "          'perfectly': 1,\n",
      "          'fluent': 1,\n",
      "          'jamaican': 1,\n",
      "          'patois': 1,\n",
      "          'knows': 1,\n",
      "          'everything': 1,\n",
      "          'nothing': 1,\n",
      "          'menacing': 1,\n",
      "          'charming': 1,\n",
      "          'intriguing': 1,\n",
      "          'told': 1,\n",
      "          'mind': 1,\n",
      "          'acting': 1,\n",
      "          'picture': 1,\n",
      "          'son': 1,\n",
      "          'stand': 1,\n",
      "          'look': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'impression': 1,\n",
      "          'throughout': 1,\n",
      "          'nive': 1,\n",
      "          'used': 1,\n",
      "          'phrase': 1,\n",
      "          'deliberately': 1,\n",
      "          'contrast': 1,\n",
      "          'years': 1,\n",
      "          'best': 1,\n",
      "          'nicolas': 1,\n",
      "          'cages': 1,\n",
      "          'city': 1,\n",
      "          'angels': 1,\n",
      "          'cold': 1,\n",
      "          'unfeeling': 1,\n",
      "          'warm': 1,\n",
      "          'empathetic': 1,\n",
      "          'allows': 1,\n",
      "          'genuinely': 1,\n",
      "          'curious': 1,\n",
      "          'nature': 1,\n",
      "          'aloof': 1,\n",
      "          'arrogant': 1,\n",
      "          'ncage': 1,\n",
      "          'struck': 1,\n",
      "          'instant': 1,\n",
      "          'chemical': 1,\n",
      "          'sparks': 1,\n",
      "          'costar': 1,\n",
      "          'meg': 1,\n",
      "          'ryan': 1,\n",
      "          'chemistry': 1,\n",
      "          'understandable': 1,\n",
      "          'accept': 1,\n",
      "          'notion': 1,\n",
      "          'forlanis': 1,\n",
      "          'shallow': 1,\n",
      "          'cant': 1,\n",
      "          'beyond': 1,\n",
      "          'good': 1,\n",
      "          'movies': 1,\n",
      "          'top': 1,\n",
      "          'actor': 1,\n",
      "          'save': 1,\n",
      "          'isnt': 1,\n",
      "          'material': 1,\n",
      "          'work': 1,\n",
      "          'unfortunately': 1,\n",
      "          'goodhearted': 1,\n",
      "          'moguls': 1,\n",
      "          'exist': 1,\n",
      "          'wonders': 1,\n",
      "          'made': 1,\n",
      "          'hopkinss': 1,\n",
      "          'realistically': 1,\n",
      "          'evil': 1,\n",
      "          'marked': 1,\n",
      "          'due': 1,\n",
      "          'ticker': 1,\n",
      "          'steps': 1,\n",
      "          'grants': 1,\n",
      "          'extra': 1,\n",
      "          'exchange': 1,\n",
      "          'guide': 1,\n",
      "          'nof': 1,\n",
      "          'taps': 1,\n",
      "          'nbut': 1,\n",
      "          'similar': 1,\n",
      "          'goes': 1,\n",
      "          'office': 1,\n",
      "          'major': 1,\n",
      "          'subplot': 1,\n",
      "          'revolves': 1,\n",
      "          'control': 1,\n",
      "          'corporation': 1,\n",
      "          'nfans': 1,\n",
      "          'corporate': 1,\n",
      "          'intrigue': 1,\n",
      "          'fascinated': 1,\n",
      "          'stayed': 1,\n",
      "          'awake': 1,\n",
      "          'way': 1,\n",
      "          'asking': 1,\n",
      "          'nmovies': 1,\n",
      "          'live': 1,\n",
      "          'fullest': 1,\n",
      "          'going': 1,\n",
      "          'ngo': 1,\n",
      "          'spend': 1,\n",
      "          'volunteer': 1,\n",
      "          'local': 1,\n",
      "          'charity': 1,\n",
      "          'heck': 1,\n",
      "          'nap': 1,\n",
      "          'ndont': 1,\n",
      "          'move': 1,\n",
      "          'closer': 1,\n",
      "          'curtis': 1,\n",
      "          'edmonds': 1,\n",
      "          'children': 1,\n",
      "          'ever': 1,\n",
      "          'meddled': 1,\n",
      "          'republican': 1,\n",
      "          'lived': 1,\n",
      "          'tell': 1,\n",
      "          'sideshow': 1,\n",
      "          'bob': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'na': 11,\n",
      "          'scott': 7,\n",
      "          'murphy': 6,\n",
      "          'korda': 5,\n",
      "          'even': 5,\n",
      "          'point': 5,\n",
      "          'nthe': 4,\n",
      "          'metro': 4,\n",
      "          'michael': 4,\n",
      "          'kevin': 4,\n",
      "          'cop': 3,\n",
      "          'personal': 3,\n",
      "          'life': 3,\n",
      "          'friend': 3,\n",
      "          'new': 3,\n",
      "          'partner': 3,\n",
      "          'chase': 3,\n",
      "          'san': 3,\n",
      "          'nyawn': 3,\n",
      "          'plot': 3,\n",
      "          'film': 3,\n",
      "          'veronica': 3,\n",
      "          'taking': 3,\n",
      "          'much': 3,\n",
      "          'car': 3,\n",
      "          'villain': 2,\n",
      "          'scene': 2,\n",
      "          'nan': 2,\n",
      "          'explosion': 2,\n",
      "          'action': 2,\n",
      "          'films': 2,\n",
      "          'ni': 2,\n",
      "          'little': 2,\n",
      "          'like': 2,\n",
      "          'nwith': 2,\n",
      "          'eddie': 2,\n",
      "          'something': 2,\n",
      "          'kind': 2,\n",
      "          'makes': 2,\n",
      "          'tedious': 2,\n",
      "          'nmurphy': 2,\n",
      "          'roper': 2,\n",
      "          'francisco': 2,\n",
      "          'police': 2,\n",
      "          'department': 2,\n",
      "          'job': 2,\n",
      "          'ejogo': 2,\n",
      "          'gambling': 2,\n",
      "          'problem': 2,\n",
      "          'well': 2,\n",
      "          'wincott': 2,\n",
      "          'case': 2,\n",
      "          'nothing': 2,\n",
      "          'may': 2,\n",
      "          'first': 2,\n",
      "          'big': 2,\n",
      "          'minutes': 2,\n",
      "          'behind': 2,\n",
      "          'time': 2,\n",
      "          'better': 2,\n",
      "          'take': 2,\n",
      "          'ground': 2,\n",
      "          'actual': 2,\n",
      "          'character': 2,\n",
      "          'able': 2,\n",
      "          'turned': 2,\n",
      "          'still': 2,\n",
      "          'carter': 2,\n",
      "          'sent': 2,\n",
      "          'rest': 2,\n",
      "          'b': 2,\n",
      "          'c': 2,\n",
      "          'getting': 2,\n",
      "          'troubled': 1,\n",
      "          'ruthless': 1,\n",
      "          '_dead_': 1,\n",
      "          'quest': 1,\n",
      "          'vengeance': 1,\n",
      "          'romantic': 1,\n",
      "          'interest': 1,\n",
      "          '_in': 1,\n",
      "          'francisco_': 1,\n",
      "          'woman': 1,\n",
      "          'peril': 1,\n",
      "          'confrontation': 1,\n",
      "          'end': 1,\n",
      "          'preceding': 1,\n",
      "          'approximately': 1,\n",
      "          'twelve': 1,\n",
      "          'thousand': 1,\n",
      "          'six': 1,\n",
      "          'one': 1,\n",
      "          'happens': 1,\n",
      "          'called': 1,\n",
      "          'learned': 1,\n",
      "          'expect': 1,\n",
      "          'consequently': 1,\n",
      "          'bored': 1,\n",
      "          'often': 1,\n",
      "          'genuinely': 1,\n",
      "          'disappointed': 1,\n",
      "          'board': 1,\n",
      "          'however': 1,\n",
      "          'hope': 1,\n",
      "          'extra': 1,\n",
      "          'spark': 1,\n",
      "          'nwhen': 1,\n",
      "          'watching': 1,\n",
      "          'experience': 1,\n",
      "          'know': 1,\n",
      "          'terribly': 1,\n",
      "          'wrong': 1,\n",
      "          'stars': 1,\n",
      "          'hostage': 1,\n",
      "          'negotiator': 1,\n",
      "          'exceedingly': 1,\n",
      "          'good': 1,\n",
      "          'considerably': 1,\n",
      "          'less': 1,\n",
      "          'successful': 1,\n",
      "          'facing': 1,\n",
      "          'unhappy': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'named': 1,\n",
      "          'carmen': 1,\n",
      "          'mountain': 1,\n",
      "          'debt': 1,\n",
      "          'nthen': 1,\n",
      "          'professional': 1,\n",
      "          'gets': 1,\n",
      "          'jolt': 1,\n",
      "          'colleague': 1,\n",
      "          'art': 1,\n",
      "          'evans': 1,\n",
      "          'murdered': 1,\n",
      "          'investigating': 1,\n",
      "          'suspected': 1,\n",
      "          'jewel': 1,\n",
      "          'thief': 1,\n",
      "          'nfinding': 1,\n",
      "          'becomes': 1,\n",
      "          'joins': 1,\n",
      "          'mccall': 1,\n",
      "          'rappaport': 1,\n",
      "          'foil': 1,\n",
      "          'attempted': 1,\n",
      "          'heist': 1,\n",
      "          'nbut': 1,\n",
      "          'jail': 1,\n",
      "          'continue': 1,\n",
      "          'face': 1,\n",
      "          'lifethreatening': 1,\n",
      "          'danger': 1,\n",
      "          'nmetro': 1,\n",
      "          'title': 1,\n",
      "          'wondering': 1,\n",
      "          'means': 1,\n",
      "          'absolutely': 1,\n",
      "          'badly': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'casual': 1,\n",
      "          'viewer': 1,\n",
      "          'notice': 1,\n",
      "          'miserable': 1,\n",
      "          'pacing': 1,\n",
      "          'stray': 1,\n",
      "          'threads': 1,\n",
      "          'nin': 1,\n",
      "          'place': 1,\n",
      "          'kordas': 1,\n",
      "          'rage': 1,\n",
      "          'discovered': 1,\n",
      "          'make': 1,\n",
      "          'score': 1,\n",
      "          'rendered': 1,\n",
      "          'completely': 1,\n",
      "          'pointless': 1,\n",
      "          'proceeds': 1,\n",
      "          'hit': 1,\n",
      "          'target': 1,\n",
      "          'anyway': 1,\n",
      "          'incidentally': 1,\n",
      "          'screw': 1,\n",
      "          'reference': 1,\n",
      "          'payoffs': 1,\n",
      "          'followed': 1,\n",
      "          'conspicuous': 1,\n",
      "          'decision': 1,\n",
      "          'keep': 1,\n",
      "          'couple': 1,\n",
      "          'pointed': 1,\n",
      "          'glances': 1,\n",
      "          'dropped': 1,\n",
      "          'abruptly': 1,\n",
      "          'resolution': 1,\n",
      "          'fortyfive': 1,\n",
      "          'relationship': 1,\n",
      "          'perfunctory': 1,\n",
      "          'disappearing': 1,\n",
      "          'entirely': 1,\n",
      "          'bullet': 1,\n",
      "          'yearn': 1,\n",
      "          'bickering': 1,\n",
      "          'buddies': 1,\n",
      "          'nworst': 1,\n",
      "          'structure': 1,\n",
      "          'places': 1,\n",
      "          'main': 1,\n",
      "          'always': 1,\n",
      "          'menacing': 1,\n",
      "          'bars': 1,\n",
      "          'far': 1,\n",
      "          'long': 1,\n",
      "          'leaving': 1,\n",
      "          'lot': 1,\n",
      "          'kill': 1,\n",
      "          'reconciliation': 1,\n",
      "          'nyou': 1,\n",
      "          'cant': 1,\n",
      "          'blame': 1,\n",
      "          'unable': 1,\n",
      "          'muster': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'scenes': 1,\n",
      "          'bland': 1,\n",
      "          'leading': 1,\n",
      "          'lady': 1,\n",
      "          'known': 1,\n",
      "          'role': 1,\n",
      "          'nscott': 1,\n",
      "          'exists': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'middle': 1,\n",
      "          'streetwise': 1,\n",
      "          'fasttalker': 1,\n",
      "          'built': 1,\n",
      "          'career': 1,\n",
      "          'threedimensional': 1,\n",
      "          'never': 1,\n",
      "          'reconcile': 1,\n",
      "          'two': 1,\n",
      "          'script': 1,\n",
      "          'seems': 1,\n",
      "          'doctored': 1,\n",
      "          'bit': 1,\n",
      "          'color': 1,\n",
      "          'supposed': 1,\n",
      "          'inability': 1,\n",
      "          'form': 1,\n",
      "          'relationships': 1,\n",
      "          'cause': 1,\n",
      "          'gags': 1,\n",
      "          'rather': 1,\n",
      "          'conflict': 1,\n",
      "          'yet': 1,\n",
      "          'comedy': 1,\n",
      "          'work': 1,\n",
      "          'nfor': 1,\n",
      "          'walks': 1,\n",
      "          'around': 1,\n",
      "          'intense': 1,\n",
      "          'frown': 1,\n",
      "          '90': 1,\n",
      "          'hear': 1,\n",
      "          'trademark': 1,\n",
      "          'laugh': 1,\n",
      "          'stranded': 1,\n",
      "          'solid': 1,\n",
      "          'punch': 1,\n",
      "          'lines': 1,\n",
      "          'nearly': 1,\n",
      "          'ones': 1,\n",
      "          'bounce': 1,\n",
      "          'fall': 1,\n",
      "          'limply': 1,\n",
      "          'suppose': 1,\n",
      "          'give': 1,\n",
      "          'director': 1,\n",
      "          'thomas': 1,\n",
      "          'credit': 1,\n",
      "          'obligatory': 1,\n",
      "          'want': 1,\n",
      "          'bet': 1,\n",
      "          'likelihood': 1,\n",
      "          'seeing': 1,\n",
      "          'soar': 1,\n",
      "          'hill': 1,\n",
      "          'interesting': 1,\n",
      "          'things': 1,\n",
      "          'nas': 1,\n",
      "          'vehicles': 1,\n",
      "          'flying': 1,\n",
      "          'passengers': 1,\n",
      "          'sprawling': 1,\n",
      "          'runaway': 1,\n",
      "          'cable': 1,\n",
      "          'possible': 1,\n",
      "          'least': 1,\n",
      "          'moment': 1,\n",
      "          'pleasure': 1,\n",
      "          'goofy': 1,\n",
      "          'spin': 1,\n",
      "          'familiar': 1,\n",
      "          'situation': 1,\n",
      "          'ncarter': 1,\n",
      "          'old': 1,\n",
      "          'suspense': 1,\n",
      "          'standby': 1,\n",
      "          'medicine': 1,\n",
      "          'cabinet': 1,\n",
      "          'mirror': 1,\n",
      "          'close': 1,\n",
      "          'reveal': 1,\n",
      "          'killer': 1,\n",
      "          'standing': 1,\n",
      "          'someone': 1,\n",
      "          'using': 1,\n",
      "          'defuse': 1,\n",
      "          'tension': 1,\n",
      "          '_twice_': 1,\n",
      "          'fact': 1,\n",
      "          'demonstrate': 1,\n",
      "          'recognition': 1,\n",
      "          'cliches': 1,\n",
      "          'willingness': 1,\n",
      "          'subvert': 1,\n",
      "          'involvement': 1,\n",
      "          'disaster': 1,\n",
      "          'puzzling': 1,\n",
      "          'plods': 1,\n",
      "          'relentlessly': 1,\n",
      "          'obviously': 1,\n",
      "          'might': 1,\n",
      "          'find': 1,\n",
      "          'shouting': 1,\n",
      "          'theyre': 1,\n",
      "          'audience': 1,\n",
      "          'signals': 1,\n",
      "          'else': 1,\n",
      "          'consequence': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'children': 6,\n",
      "          'corn': 6,\n",
      "          'horrible': 6,\n",
      "          'horror': 5,\n",
      "          'nthe': 5,\n",
      "          '666': 4,\n",
      "          'issacs': 3,\n",
      "          'return': 3,\n",
      "          'worst': 3,\n",
      "          'hannah': 3,\n",
      "          'looking': 3,\n",
      "          'john': 3,\n",
      "          'nothing': 3,\n",
      "          'movie': 2,\n",
      "          'thats': 2,\n",
      "          'worn': 2,\n",
      "          'series': 2,\n",
      "          'none': 2,\n",
      "          'mother': 2,\n",
      "          'daughter': 2,\n",
      "          'franklin': 2,\n",
      "          'nand': 2,\n",
      "          'characters': 2,\n",
      "          'seems': 2,\n",
      "          'tim': 2,\n",
      "          'sulka': 2,\n",
      "          'one': 2,\n",
      "          'truly': 1,\n",
      "          'called': 1,\n",
      "          'scares': 1,\n",
      "          'suspense': 1,\n",
      "          'even': 1,\n",
      "          'eerie': 1,\n",
      "          'elements': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'wants': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'sixth': 1,\n",
      "          'installment': 1,\n",
      "          'far': 1,\n",
      "          'date': 1,\n",
      "          'nunlike': 1,\n",
      "          'five': 1,\n",
      "          'chapters': 1,\n",
      "          'confusing': 1,\n",
      "          'brainless': 1,\n",
      "          'thriller': 1,\n",
      "          'takes': 1,\n",
      "          'psychological': 1,\n",
      "          'route': 1,\n",
      "          'rather': 1,\n",
      "          'slasher': 1,\n",
      "          'either': 1,\n",
      "          'way': 1,\n",
      "          'movies': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'scary': 1,\n",
      "          'follows': 1,\n",
      "          'natalie': 1,\n",
      "          'ramsey': 1,\n",
      "          'teen': 1,\n",
      "          'gatlin': 1,\n",
      "          'nebraska': 1,\n",
      "          'eve': 1,\n",
      "          '21st': 1,\n",
      "          'birthday': 1,\n",
      "          'nwhat': 1,\n",
      "          'starts': 1,\n",
      "          'desperate': 1,\n",
      "          'search': 1,\n",
      "          'long': 1,\n",
      "          'lost': 1,\n",
      "          'turns': 1,\n",
      "          'story': 1,\n",
      "          'first': 1,\n",
      "          'roam': 1,\n",
      "          'cornfields': 1,\n",
      "          'adults': 1,\n",
      "          'murder': 1,\n",
      "          'nthats': 1,\n",
      "          'understandable': 1,\n",
      "          'learn': 1,\n",
      "          'much': 1,\n",
      "          'issac': 1,\n",
      "          'led': 1,\n",
      "          'previous': 1,\n",
      "          'chapter': 1,\n",
      "          'older': 1,\n",
      "          'strange': 1,\n",
      "          'man': 1,\n",
      "          'fulfill': 1,\n",
      "          'prophecy': 1,\n",
      "          'supposed': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'nreally': 1,\n",
      "          'nfrom': 1,\n",
      "          'start': 1,\n",
      "          'unclear': 1,\n",
      "          'going': 1,\n",
      "          'developing': 1,\n",
      "          'throwing': 1,\n",
      "          'concrete': 1,\n",
      "          'plot': 1,\n",
      "          'details': 1,\n",
      "          'across': 1,\n",
      "          'table': 1,\n",
      "          'constantly': 1,\n",
      "          'introducing': 1,\n",
      "          'new': 1,\n",
      "          'without': 1,\n",
      "          'personalities': 1,\n",
      "          'slightest': 1,\n",
      "          'hint': 1,\n",
      "          'individuality': 1,\n",
      "          'sub': 1,\n",
      "          'plots': 1,\n",
      "          'main': 1,\n",
      "          'focus': 1,\n",
      "          'runs': 1,\n",
      "          'short': 1,\n",
      "          '78': 1,\n",
      "          'minutes': 1,\n",
      "          'vicinity': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'bleak': 1,\n",
      "          'slow': 1,\n",
      "          'pacing': 1,\n",
      "          'makes': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'boring': 1,\n",
      "          'nplot': 1,\n",
      "          'holes': 1,\n",
      "          'everywhere': 1,\n",
      "          'franklins': 1,\n",
      "          'unbelievably': 1,\n",
      "          'script': 1,\n",
      "          'accomplished': 1,\n",
      "          'clear': 1,\n",
      "          'reaches': 1,\n",
      "          'conclusion': 1,\n",
      "          'neveryone': 1,\n",
      "          'everything': 1,\n",
      "          'involved': 1,\n",
      "          'namely': 1,\n",
      "          'writers': 1,\n",
      "          'along': 1,\n",
      "          'director': 1,\n",
      "          'kari': 1,\n",
      "          'skogland': 1,\n",
      "          'crawl': 1,\n",
      "          'rock': 1,\n",
      "          'hope': 1,\n",
      "          'sees': 1,\n",
      "          'work': 1,\n",
      "          'trash': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'nanother': 1,\n",
      "          'attempt': 1,\n",
      "          'revive': 1,\n",
      "          'genre': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'whats': 1,\n",
      "          'title': 1,\n",
      "          'devil': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nlets': 1,\n",
      "          'pray': 1,\n",
      "          'finale': 1,\n",
      "          'current': 1,\n",
      "          'films': 1,\n",
      "          'years': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'arnold': 7,\n",
      "          'devil': 6,\n",
      "          'like': 6,\n",
      "          'action': 5,\n",
      "          'nits': 4,\n",
      "          'world': 4,\n",
      "          'movie': 4,\n",
      "          'see': 4,\n",
      "          'nthe': 4,\n",
      "          'robin': 3,\n",
      "          'ending': 3,\n",
      "          'films': 2,\n",
      "          'oneliners': 2,\n",
      "          'seeing': 2,\n",
      "          'especially': 2,\n",
      "          'another': 2,\n",
      "          'blockbuster': 2,\n",
      "          'cant': 2,\n",
      "          'even': 2,\n",
      "          'tunney': 2,\n",
      "          'one': 2,\n",
      "          'man': 2,\n",
      "          'help': 2,\n",
      "          'nothing': 2,\n",
      "          'let': 2,\n",
      "          'right': 2,\n",
      "          'better': 2,\n",
      "          'enough': 2,\n",
      "          'doesnt': 2,\n",
      "          'seem': 2,\n",
      "          'nit': 2,\n",
      "          'wasnt': 2,\n",
      "          'gave': 2,\n",
      "          'changed': 2,\n",
      "          'much': 2,\n",
      "          'end': 2,\n",
      "          'nthere': 2,\n",
      "          'made': 2,\n",
      "          'ni': 2,\n",
      "          'least': 2,\n",
      "          'budget': 2,\n",
      "          'nwhen': 2,\n",
      "          'youre': 2,\n",
      "          'solid': 2,\n",
      "          'schwarzenegger': 1,\n",
      "          'icon': 1,\n",
      "          'enthusiasts': 1,\n",
      "          'since': 1,\n",
      "          'late': 1,\n",
      "          '80s': 1,\n",
      "          'lately': 1,\n",
      "          'sloppy': 1,\n",
      "          'getting': 1,\n",
      "          'worse': 1,\n",
      "          'hard': 1,\n",
      "          'mr': 1,\n",
      "          'freeze': 1,\n",
      "          'batman': 1,\n",
      "          'says': 1,\n",
      "          'tons': 1,\n",
      "          'ice': 1,\n",
      "          'jokes': 1,\n",
      "          'hey': 1,\n",
      "          'got': 1,\n",
      "          '15': 1,\n",
      "          'million': 1,\n",
      "          'whats': 1,\n",
      "          'matter': 1,\n",
      "          'nonce': 1,\n",
      "          'signed': 1,\n",
      "          'expensive': 1,\n",
      "          'compare': 1,\n",
      "          'likes': 1,\n",
      "          'terminator': 1,\n",
      "          'series': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          'eraser': 1,\n",
      "          'nin': 1,\n",
      "          'called': 1,\n",
      "          'dark': 1,\n",
      "          'thriller': 1,\n",
      "          'gabriel': 1,\n",
      "          'byrne': 1,\n",
      "          'come': 1,\n",
      "          'upon': 1,\n",
      "          'earth': 1,\n",
      "          'impregnate': 1,\n",
      "          'woman': 1,\n",
      "          'happens': 1,\n",
      "          'every': 1,\n",
      "          '1000': 1,\n",
      "          'years': 1,\n",
      "          'basically': 1,\n",
      "          'destroy': 1,\n",
      "          'apparently': 1,\n",
      "          'god': 1,\n",
      "          'chosen': 1,\n",
      "          'jericho': 1,\n",
      "          'cane': 1,\n",
      "          'nwith': 1,\n",
      "          'trusty': 1,\n",
      "          'sidekick': 1,\n",
      "          'kevin': 1,\n",
      "          'pollack': 1,\n",
      "          'stop': 1,\n",
      "          'take': 1,\n",
      "          'nparts': 1,\n",
      "          'actually': 1,\n",
      "          'absurd': 1,\n",
      "          'would': 1,\n",
      "          'fit': 1,\n",
      "          'dogma': 1,\n",
      "          'nyes': 1,\n",
      "          'weak': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          'makes': 1,\n",
      "          'look': 1,\n",
      "          '4': 1,\n",
      "          'star': 1,\n",
      "          'nanyway': 1,\n",
      "          'definitely': 1,\n",
      "          'type': 1,\n",
      "          'nsure': 1,\n",
      "          'us': 1,\n",
      "          'chuckles': 1,\n",
      "          'well': 1,\n",
      "          'known': 1,\n",
      "          'seemed': 1,\n",
      "          'confused': 1,\n",
      "          'character': 1,\n",
      "          'going': 1,\n",
      "          'understandable': 1,\n",
      "          'according': 1,\n",
      "          'sources': 1,\n",
      "          'naside': 1,\n",
      "          'form': 1,\n",
      "          'still': 1,\n",
      "          'walked': 1,\n",
      "          'past': 1,\n",
      "          'nim': 1,\n",
      "          'sorry': 1,\n",
      "          'say': 1,\n",
      "          'maybe': 1,\n",
      "          'days': 1,\n",
      "          'nspeaking': 1,\n",
      "          'hardly': 1,\n",
      "          'explosions': 1,\n",
      "          'fights': 1,\n",
      "          'places': 1,\n",
      "          'explode': 1,\n",
      "          'kicking': 1,\n",
      "          'butt': 1,\n",
      "          'make': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'spiritual': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'ruined': 1,\n",
      "          'hoping': 1,\n",
      "          'cool': 1,\n",
      "          'else': 1,\n",
      "          'occurred': 1,\n",
      "          'also': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'took': 1,\n",
      "          'long': 1,\n",
      "          'cost': 1,\n",
      "          'really': 1,\n",
      "          'super': 1,\n",
      "          'affects': 1,\n",
      "          'unless': 1,\n",
      "          'consider': 1,\n",
      "          'invisible': 1,\n",
      "          '5': 1,\n",
      "          'minutes': 1,\n",
      "          'tops': 1,\n",
      "          'worth': 1,\n",
      "          'overpriced': 1,\n",
      "          'gone': 1,\n",
      "          'script': 1,\n",
      "          'audiences': 1,\n",
      "          'could': 1,\n",
      "          'somewhat': 1,\n",
      "          'entertained': 1,\n",
      "          'instead': 1,\n",
      "          'facing': 1,\n",
      "          'boredom': 1,\n",
      "          'pitiful': 1,\n",
      "          'scripts': 1,\n",
      "          'get': 1,\n",
      "          'bought': 1,\n",
      "          'ndo': 1,\n",
      "          'read': 1,\n",
      "          'things': 1,\n",
      "          'anymore': 1,\n",
      "          'sure': 1,\n",
      "          'nthankfully': 1,\n",
      "          'gabriels': 1,\n",
      "          'performance': 1,\n",
      "          'light': 1,\n",
      "          'poor': 1,\n",
      "          'walks': 1,\n",
      "          'street': 1,\n",
      "          'searching': 1,\n",
      "          'feel': 1,\n",
      "          'looked': 1,\n",
      "          'guy': 1,\n",
      "          'creepy': 1,\n",
      "          'looking': 1,\n",
      "          'anyway': 1,\n",
      "          'glad': 1,\n",
      "          'ndont': 1,\n",
      "          'bother': 1,\n",
      "          'expecting': 1,\n",
      "          'flick': 1,\n",
      "          'neither': 1,\n",
      "          'suckered': 1,\n",
      "          'due': 1,\n",
      "          'strategic': 1,\n",
      "          'marketing': 1,\n",
      "          'campaign': 1,\n",
      "          'nsave': 1,\n",
      "          'money': 1,\n",
      "          'entertaining': 1,\n",
      "          'experience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'film': 8,\n",
      "          'waterboy': 6,\n",
      "          'really': 5,\n",
      "          'great': 5,\n",
      "          'material': 5,\n",
      "          'humor': 4,\n",
      "          'ni': 4,\n",
      "          'nthe': 4,\n",
      "          'sandler': 4,\n",
      "          'funny': 4,\n",
      "          'neven': 4,\n",
      "          'still': 3,\n",
      "          'cant': 3,\n",
      "          'brow': 3,\n",
      "          'one': 3,\n",
      "          'goofy': 3,\n",
      "          'voice': 3,\n",
      "          'playing': 3,\n",
      "          'sandlers': 3,\n",
      "          'get': 3,\n",
      "          'nits': 3,\n",
      "          'potential': 3,\n",
      "          'football': 3,\n",
      "          'deal': 3,\n",
      "          'would': 3,\n",
      "          'figure': 2,\n",
      "          'go': 2,\n",
      "          'dumb': 2,\n",
      "          'love': 2,\n",
      "          'thought': 2,\n",
      "          'films': 2,\n",
      "          'adolescent': 2,\n",
      "          'problem': 2,\n",
      "          'think': 2,\n",
      "          'times': 2,\n",
      "          'throughout': 2,\n",
      "          'entire': 2,\n",
      "          'movies': 2,\n",
      "          'fact': 2,\n",
      "          'could': 2,\n",
      "          'nif': 2,\n",
      "          'career': 2,\n",
      "          'nsandler': 2,\n",
      "          'plays': 2,\n",
      "          'somewhat': 2,\n",
      "          'mentally': 2,\n",
      "          'team': 2,\n",
      "          'coach': 2,\n",
      "          'winkler': 2,\n",
      "          'make': 2,\n",
      "          'cast': 2,\n",
      "          'bad': 2,\n",
      "          'bates': 2,\n",
      "          'people': 1,\n",
      "          'went': 1,\n",
      "          'droves': 1,\n",
      "          'see': 1,\n",
      "          'nnow': 1,\n",
      "          'assuming': 1,\n",
      "          'im': 1,\n",
      "          'sort': 1,\n",
      "          'high': 1,\n",
      "          'snob': 1,\n",
      "          'appreciate': 1,\n",
      "          'little': 1,\n",
      "          'let': 1,\n",
      "          'say': 1,\n",
      "          'cheap': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'funniest': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'certainly': 1,\n",
      "          'best': 1,\n",
      "          '1998': 1,\n",
      "          'nlow': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'low': 1,\n",
      "          'component': 1,\n",
      "          'wanted': 1,\n",
      "          'like': 1,\n",
      "          'laughed': 1,\n",
      "          'maybe': 1,\n",
      "          '2': 1,\n",
      "          '3': 1,\n",
      "          'nactually': 1,\n",
      "          'smiled': 1,\n",
      "          'couple': 1,\n",
      "          'top': 1,\n",
      "          'nnot': 1,\n",
      "          'record': 1,\n",
      "          '90minute': 1,\n",
      "          'adam': 1,\n",
      "          'nthose': 1,\n",
      "          'responsible': 1,\n",
      "          'mess': 1,\n",
      "          'seem': 1,\n",
      "          'sheer': 1,\n",
      "          'walks': 1,\n",
      "          'around': 1,\n",
      "          'using': 1,\n",
      "          'substitute': 1,\n",
      "          'actual': 1,\n",
      "          'nnothing': 1,\n",
      "          'truth': 1,\n",
      "          'matter': 1,\n",
      "          'idiot': 1,\n",
      "          'started': 1,\n",
      "          'nerves': 1,\n",
      "          'points': 1,\n",
      "          'shame': 1,\n",
      "          'personally': 1,\n",
      "          'believe': 1,\n",
      "          'probably': 1,\n",
      "          'talented': 1,\n",
      "          'comedian': 1,\n",
      "          'far': 1,\n",
      "          'hasnt': 1,\n",
      "          'able': 1,\n",
      "          'find': 1,\n",
      "          'right': 1,\n",
      "          'showcase': 1,\n",
      "          'talents': 1,\n",
      "          'talent': 1,\n",
      "          'making': 1,\n",
      "          'voices': 1,\n",
      "          'morons': 1,\n",
      "          'guess': 1,\n",
      "          'road': 1,\n",
      "          'vast': 1,\n",
      "          'majority': 1,\n",
      "          'former': 1,\n",
      "          'stars': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'nmost': 1,\n",
      "          'happily': 1,\n",
      "          'longer': 1,\n",
      "          'entertainment': 1,\n",
      "          'industry': 1,\n",
      "          '31yearold': 1,\n",
      "          'challenged': 1,\n",
      "          'college': 1,\n",
      "          'teams': 1,\n",
      "          'disturbed': 1,\n",
      "          'henry': 1,\n",
      "          'realizes': 1,\n",
      "          'pentup': 1,\n",
      "          'rage': 1,\n",
      "          'harnessed': 1,\n",
      "          'properly': 1,\n",
      "          'force': 1,\n",
      "          'reckoned': 1,\n",
      "          'field': 1,\n",
      "          'nyou': 1,\n",
      "          'rest': 1,\n",
      "          'joins': 1,\n",
      "          'lowly': 1,\n",
      "          'becomes': 1,\n",
      "          'star': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'idea': 1,\n",
      "          'decent': 1,\n",
      "          'main': 1,\n",
      "          'result': 1,\n",
      "          'nall': 1,\n",
      "          'good': 1,\n",
      "          'hamstrung': 1,\n",
      "          'lousy': 1,\n",
      "          'annoying': 1,\n",
      "          'enough': 1,\n",
      "          'charisma': 1,\n",
      "          'natural': 1,\n",
      "          'comedic': 1,\n",
      "          'ability': 1,\n",
      "          'overcome': 1,\n",
      "          'unfunny': 1,\n",
      "          'character': 1,\n",
      "          'found': 1,\n",
      "          'rooting': 1,\n",
      "          'nbut': 1,\n",
      "          'supporting': 1,\n",
      "          'feel': 1,\n",
      "          'badly': 1,\n",
      "          'bit': 1,\n",
      "          'better': 1,\n",
      "          'nfairuza': 1,\n",
      "          'balk': 1,\n",
      "          'leatherwearing': 1,\n",
      "          'bikerchick': 1,\n",
      "          'interest': 1,\n",
      "          'job': 1,\n",
      "          'sleazy': 1,\n",
      "          'sexy': 1,\n",
      "          'time': 1,\n",
      "          'nwinkler': 1,\n",
      "          'uses': 1,\n",
      "          'coaching': 1,\n",
      "          'dummies': 1,\n",
      "          'style': 1,\n",
      "          'book': 1,\n",
      "          'help': 1,\n",
      "          'games': 1,\n",
      "          'real': 1,\n",
      "          'standout': 1,\n",
      "          'though': 1,\n",
      "          'kathy': 1,\n",
      "          'worst': 1,\n",
      "          'treat': 1,\n",
      "          'watch': 1,\n",
      "          'role': 1,\n",
      "          'overprotective': 1,\n",
      "          'overbearing': 1,\n",
      "          'mama': 1,\n",
      "          'performances': 1,\n",
      "          'absolutely': 1,\n",
      "          'way': 1,\n",
      "          'recommend': 1,\n",
      "          'nalthough': 1,\n",
      "          'distinct': 1,\n",
      "          'impression': 1,\n",
      "          'without': 1,\n",
      "          'ranked': 1,\n",
      "          'negative': 1,\n",
      "          'numbers': 1,\n",
      "          'nwhich': 1,\n",
      "          'sad': 1,\n",
      "          'put': 1,\n",
      "          'finger': 1,\n",
      "          'particular': 1,\n",
      "          'element': 1,\n",
      "          'single': 1,\n",
      "          'cause': 1,\n",
      "          'disaster': 1,\n",
      "          'became': 1,\n",
      "          'obvious': 1,\n",
      "          'involved': 1,\n",
      "          'specifically': 1,\n",
      "          'actors': 1,\n",
      "          'tried': 1,\n",
      "          'hard': 1,\n",
      "          'going': 1,\n",
      "          '99': 1,\n",
      "          'percent': 1,\n",
      "          'jokes': 1,\n",
      "          'fell': 1,\n",
      "          'flat': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wrestling': 10,\n",
      "          'bischoff': 6,\n",
      "          'gordie': 5,\n",
      "          'sinclair': 5,\n",
      "          'wcw': 5,\n",
      "          'film': 5,\n",
      "          'vince': 5,\n",
      "          'sean': 4,\n",
      "          'king': 4,\n",
      "          'eric': 4,\n",
      "          'fans': 4,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'two': 3,\n",
      "          'world': 3,\n",
      "          'nthey': 3,\n",
      "          'movie': 3,\n",
      "          'would': 3,\n",
      "          'fan': 3,\n",
      "          'one': 2,\n",
      "          'best': 2,\n",
      "          'caan': 2,\n",
      "          'title': 2,\n",
      "          'titus': 2,\n",
      "          'role': 2,\n",
      "          'president': 2,\n",
      "          'darryl': 2,\n",
      "          'back': 2,\n",
      "          'payperview': 2,\n",
      "          'promotion': 2,\n",
      "          'ratings': 2,\n",
      "          'federation': 2,\n",
      "          'nhe': 2,\n",
      "          'seen': 2,\n",
      "          'knows': 2,\n",
      "          'show': 2,\n",
      "          'thinks': 2,\n",
      "          'dumb': 2,\n",
      "          'believe': 2,\n",
      "          'take': 2,\n",
      "          'consideration': 2,\n",
      "          'nitro': 2,\n",
      "          'ni': 2,\n",
      "          'enough': 2,\n",
      "          'years': 2,\n",
      "          'comedy': 2,\n",
      "          'probably': 2,\n",
      "          'bret': 2,\n",
      "          'hart': 2,\n",
      "          'better': 2,\n",
      "          'boggs': 1,\n",
      "          'arquette': 1,\n",
      "          'aptly': 1,\n",
      "          'cast': 1,\n",
      "          'moron': 1,\n",
      "          'friend': 1,\n",
      "          'dawkins': 1,\n",
      "          'scott': 1,\n",
      "          'son': 1,\n",
      "          'james': 1,\n",
      "          'reduced': 1,\n",
      "          'garbage': 1,\n",
      "          'losers': 1,\n",
      "          'wyoming': 1,\n",
      "          'jobs': 1,\n",
      "          'girlfriends': 1,\n",
      "          'look': 1,\n",
      "          'championship': 1,\n",
      "          'champion': 1,\n",
      "          'jimmy': 1,\n",
      "          'terribly': 1,\n",
      "          'casted': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'everything': 1,\n",
      "          'finally': 1,\n",
      "          'get': 1,\n",
      "          'see': 1,\n",
      "          'live': 1,\n",
      "          'screwed': 1,\n",
      "          'evil': 1,\n",
      "          'ruthless': 1,\n",
      "          'promoter': 1,\n",
      "          'wasted': 1,\n",
      "          'palitaliano': 1,\n",
      "          'originally': 1,\n",
      "          'meant': 1,\n",
      "          'reallife': 1,\n",
      "          'whose': 1,\n",
      "          'name': 1,\n",
      "          'written': 1,\n",
      "          'ngordie': 1,\n",
      "          'track': 1,\n",
      "          'atlanta': 1,\n",
      "          'discover': 1,\n",
      "          'really': 1,\n",
      "          'english': 1,\n",
      "          'writers': 1,\n",
      "          'created': 1,\n",
      "          'drunken': 1,\n",
      "          'ignorant': 1,\n",
      "          'southerner': 1,\n",
      "          'irritated': 1,\n",
      "          'lunkheads': 1,\n",
      "          'bob': 1,\n",
      "          'newhart': 1,\n",
      "          'larry': 1,\n",
      "          'sneak': 1,\n",
      "          'onto': 1,\n",
      "          'tv': 1,\n",
      "          'agrees': 1,\n",
      "          'book': 1,\n",
      "          'steel': 1,\n",
      "          'cage': 1,\n",
      "          'match': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'wcws': 1,\n",
      "          'next': 1,\n",
      "          'rival': 1,\n",
      "          'diamond': 1,\n",
      "          'dallas': 1,\n",
      "          'page': 1,\n",
      "          'nif': 1,\n",
      "          'wins': 1,\n",
      "          'gets': 1,\n",
      "          'career': 1,\n",
      "          'plus': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'nwcw': 1,\n",
      "          'knowing': 1,\n",
      "          'desperate': 1,\n",
      "          'bad': 1,\n",
      "          'writing': 1,\n",
      "          'skyrocketing': 1,\n",
      "          'thanks': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'came': 1,\n",
      "          'idea': 1,\n",
      "          'hoping': 1,\n",
      "          'save': 1,\n",
      "          'fired': 1,\n",
      "          'rehired': 1,\n",
      "          'months': 1,\n",
      "          'ago': 1,\n",
      "          'time': 1,\n",
      "          'hed': 1,\n",
      "          'left': 1,\n",
      "          'already': 1,\n",
      "          'contracted': 1,\n",
      "          'could': 1,\n",
      "          'play': 1,\n",
      "          'anybody': 1,\n",
      "          'programming': 1,\n",
      "          'actor': 1,\n",
      "          'characters': 1,\n",
      "          'exactly': 1,\n",
      "          'young': 1,\n",
      "          'pathetic': 1,\n",
      "          'idiots': 1,\n",
      "          'anything': 1,\n",
      "          'put': 1,\n",
      "          'front': 1,\n",
      "          'real': 1,\n",
      "          'nthat': 1,\n",
      "          'doesnt': 1,\n",
      "          'books': 1,\n",
      "          'news': 1,\n",
      "          'day': 1,\n",
      "          'age': 1,\n",
      "          'professional': 1,\n",
      "          'isnt': 1,\n",
      "          'unless': 1,\n",
      "          'four': 1,\n",
      "          'old': 1,\n",
      "          'nthis': 1,\n",
      "          '2000': 1,\n",
      "          'know': 1,\n",
      "          '1985': 1,\n",
      "          'nbischoff': 1,\n",
      "          'try': 1,\n",
      "          'cover': 1,\n",
      "          'criticism': 1,\n",
      "          'saying': 1,\n",
      "          'doubt': 1,\n",
      "          'mind': 1,\n",
      "          'dramatic': 1,\n",
      "          'rockystyle': 1,\n",
      "          'nprofessional': 1,\n",
      "          'ridiculed': 1,\n",
      "          'first': 1,\n",
      "          'ten': 1,\n",
      "          'portrayed': 1,\n",
      "          'light': 1,\n",
      "          'nanybody': 1,\n",
      "          'documentary': 1,\n",
      "          'shadows': 1,\n",
      "          'documenting': 1,\n",
      "          'wwf': 1,\n",
      "          'owner': 1,\n",
      "          'mcmahons': 1,\n",
      "          'doublecrossing': 1,\n",
      "          'realize': 1,\n",
      "          'via': 1,\n",
      "          'reviews': 1,\n",
      "          'previews': 1,\n",
      "          'ready': 1,\n",
      "          'rumble': 1,\n",
      "          'basically': 1,\n",
      "          'ripoff': 1,\n",
      "          'films': 1,\n",
      "          'storyline': 1,\n",
      "          'poor': 1,\n",
      "          'mans': 1,\n",
      "          'wayne': 1,\n",
      "          'garth': 1,\n",
      "          'thrown': 1,\n",
      "          'comedic': 1,\n",
      "          'affect': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'supposed': 1,\n",
      "          'poke': 1,\n",
      "          'fun': 1,\n",
      "          'selfrespecting': 1,\n",
      "          'inspired': 1,\n",
      "          'nall': 1,\n",
      "          'aspects': 1,\n",
      "          'needless': 1,\n",
      "          'say': 1,\n",
      "          'seriously': 1,\n",
      "          'offended': 1,\n",
      "          'nanother': 1,\n",
      "          'thing': 1,\n",
      "          'found': 1,\n",
      "          'disturbing': 1,\n",
      "          'romance': 1,\n",
      "          'girl': 1,\n",
      "          'sasha': 1,\n",
      "          'lovely': 1,\n",
      "          'rose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'nwouldnt': 1,\n",
      "          'easier': 1,\n",
      "          'bring': 1,\n",
      "          'something': 1,\n",
      "          'new': 1,\n",
      "          'relationship': 1,\n",
      "          'rather': 1,\n",
      "          'revealing': 1,\n",
      "          'working': 1,\n",
      "          'sinclairs': 1,\n",
      "          'insistance': 1,\n",
      "          'hate': 1,\n",
      "          'cliche': 1,\n",
      "          'made': 1,\n",
      "          'everyone': 1,\n",
      "          'cares': 1,\n",
      "          'winning': 1,\n",
      "          'wrestlers': 1,\n",
      "          'dont': 1,\n",
      "          'treat': 1,\n",
      "          'morons': 1,\n",
      "          'nso': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'nthe': 7,\n",
      "          'twin': 6,\n",
      "          'peaks': 6,\n",
      "          'lynch': 3,\n",
      "          'tv': 3,\n",
      "          'series': 3,\n",
      "          'laura': 3,\n",
      "          'walk': 2,\n",
      "          'david': 2,\n",
      "          'theater': 2,\n",
      "          'like': 2,\n",
      "          'seen': 2,\n",
      "          'plot': 2,\n",
      "          'mention': 2,\n",
      "          'murder': 2,\n",
      "          'cooper': 2,\n",
      "          'cant': 2,\n",
      "          'palmer': 2,\n",
      "          'james': 2,\n",
      "          'nowhere': 2,\n",
      "          'arrived': 1,\n",
      "          'paris': 1,\n",
      "          'june': 1,\n",
      "          '1992': 1,\n",
      "          'surprised': 1,\n",
      "          'find': 1,\n",
      "          'france': 1,\n",
      "          'plastered': 1,\n",
      "          'posters': 1,\n",
      "          'fire': 1,\n",
      "          'since': 1,\n",
      "          'wasnt': 1,\n",
      "          'scheduled': 1,\n",
      "          'open': 1,\n",
      "          'u': 1,\n",
      "          'late': 1,\n",
      "          'august': 1,\n",
      "          'nhappily': 1,\n",
      "          'filmthe': 1,\n",
      "          'prequel': 1,\n",
      "          'lynchs': 1,\n",
      "          'cult': 1,\n",
      "          'television': 1,\n",
      "          'serieswas': 1,\n",
      "          'playing': 1,\n",
      "          'fancy': 1,\n",
      "          'thx': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'far': 1,\n",
      "          'impressive': 1,\n",
      "          'absolutely': 1,\n",
      "          'stinks': 1,\n",
      "          'much': 1,\n",
      "          'french': 1,\n",
      "          'lavatory': 1,\n",
      "          'nworse': 1,\n",
      "          'actually': 1,\n",
      "          'nfire': 1,\n",
      "          'directed': 1,\n",
      "          'completely': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'anyone': 1,\n",
      "          'read': 1,\n",
      "          'palmers': 1,\n",
      "          'secret': 1,\n",
      "          'diary': 1,\n",
      "          'nfor': 1,\n",
      "          'junkies': 1,\n",
      "          'marginally': 1,\n",
      "          'improved': 1,\n",
      "          'jumbled': 1,\n",
      "          'illogical': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'sluggish': 1,\n",
      "          'first': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'almost': 1,\n",
      "          'nothing': 1,\n",
      "          'main': 1,\n",
      "          'story': 1,\n",
      "          'line': 1,\n",
      "          'feature': 1,\n",
      "          'chris': 1,\n",
      "          'isaak': 1,\n",
      "          'kiefer': 1,\n",
      "          'sutherland': 1,\n",
      "          'fbi': 1,\n",
      "          'agents': 1,\n",
      "          'investigating': 1,\n",
      "          'portland': 1,\n",
      "          'oregon': 1,\n",
      "          'stops': 1,\n",
      "          'philadelphia': 1,\n",
      "          'nonsensical': 1,\n",
      "          'cameo': 1,\n",
      "          'bowie': 1,\n",
      "          'brief': 1,\n",
      "          'appearance': 1,\n",
      "          'kyle': 1,\n",
      "          'maclachlan': 1,\n",
      "          'dale': 1,\n",
      "          'nlynch': 1,\n",
      "          'drops': 1,\n",
      "          'strand': 1,\n",
      "          'altogether': 1,\n",
      "          'abruptly': 1,\n",
      "          'shifts': 1,\n",
      "          'setting': 1,\n",
      "          'washingtonone': 1,\n",
      "          'year': 1,\n",
      "          'later': 1,\n",
      "          'nah': 1,\n",
      "          'familiar': 1,\n",
      "          'territory': 1,\n",
      "          'think': 1,\n",
      "          'angelo': 1,\n",
      "          'badalamentis': 1,\n",
      "          'distinctive': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'chimes': 1,\n",
      "          'nwrong': 1,\n",
      "          'proves': 1,\n",
      "          'really': 1,\n",
      "          'go': 1,\n",
      "          'home': 1,\n",
      "          'least': 1,\n",
      "          'nonly': 1,\n",
      "          'quarter': 1,\n",
      "          'characters': 1,\n",
      "          'appear': 1,\n",
      "          'leland': 1,\n",
      "          'bobby': 1,\n",
      "          'briggs': 1,\n",
      "          'shelly': 1,\n",
      "          'leo': 1,\n",
      "          'log': 1,\n",
      "          'lady': 1,\n",
      "          'othersmostly': 1,\n",
      "          'meaningless': 1,\n",
      "          'cameos': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'consequently': 1,\n",
      "          'fails': 1,\n",
      "          'recreate': 1,\n",
      "          'spirit': 1,\n",
      "          'flavor': 1,\n",
      "          'tvs': 1,\n",
      "          'enigmatic': 1,\n",
      "          'town': 1,\n",
      "          'ncast': 1,\n",
      "          'members': 1,\n",
      "          'michael': 1,\n",
      "          'ontkean': 1,\n",
      "          'sherilyn': 1,\n",
      "          'fenn': 1,\n",
      "          'piper': 1,\n",
      "          'laurie': 1,\n",
      "          'richard': 1,\n",
      "          'beymer': 1,\n",
      "          'sorely': 1,\n",
      "          'missed': 1,\n",
      "          'lara': 1,\n",
      "          'flynn': 1,\n",
      "          'boyle': 1,\n",
      "          'replaced': 1,\n",
      "          'lackluster': 1,\n",
      "          'moira': 1,\n",
      "          'kelly': 1,\n",
      "          'crucial': 1,\n",
      "          'role': 1,\n",
      "          'donna': 1,\n",
      "          'concentrates': 1,\n",
      "          'solely': 1,\n",
      "          'sheryl': 1,\n",
      "          'lee': 1,\n",
      "          'suffers': 1,\n",
      "          'drug': 1,\n",
      "          'abuse': 1,\n",
      "          'prostitution': 1,\n",
      "          'incest': 1,\n",
      "          'miserable': 1,\n",
      "          'last': 1,\n",
      "          'seven': 1,\n",
      "          'days': 1,\n",
      "          'earth': 1,\n",
      "          'night': 1,\n",
      "          'lauras': 1,\n",
      "          'death': 1,\n",
      "          'truly': 1,\n",
      "          'terrifying': 1,\n",
      "          'films': 1,\n",
      "          'remotely': 1,\n",
      "          'effective': 1,\n",
      "          'sequence': 1,\n",
      "          'nwe': 1,\n",
      "          'finally': 1,\n",
      "          'get': 1,\n",
      "          'see': 1,\n",
      "          'exactly': 1,\n",
      "          'happened': 1,\n",
      "          'jumped': 1,\n",
      "          'motorcycle': 1,\n",
      "          'ran': 1,\n",
      "          'woods': 1,\n",
      "          'lonely': 1,\n",
      "          'traffic': 1,\n",
      "          'light': 1,\n",
      "          'middle': 1,\n",
      "          'nher': 1,\n",
      "          'unfolds': 1,\n",
      "          'agent': 1,\n",
      "          'reconstructed': 1,\n",
      "          'gratifying': 1,\n",
      "          'faithful': 1,\n",
      "          'viewers': 1,\n",
      "          'nbut': 1,\n",
      "          'awfully': 1,\n",
      "          'small': 1,\n",
      "          'reward': 1,\n",
      "          'sitting': 1,\n",
      "          'painfully': 1,\n",
      "          'awful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'problems': 5,\n",
      "          '4': 5,\n",
      "          'mans': 5,\n",
      "          'story': 4,\n",
      "          'film': 4,\n",
      "          'roro': 4,\n",
      "          'family': 4,\n",
      "          'two': 3,\n",
      "          'like': 3,\n",
      "          'sexual': 3,\n",
      "          'lot': 3,\n",
      "          '0': 3,\n",
      "          'nit': 3,\n",
      "          'park': 3,\n",
      "          'fares': 3,\n",
      "          'nroro': 3,\n",
      "          'problem': 3,\n",
      "          'situation': 2,\n",
      "          'comedy': 2,\n",
      "          'sweden': 2,\n",
      "          'tells': 2,\n",
      "          'friends': 2,\n",
      "          'enhancers': 2,\n",
      "          'jalla': 2,\n",
      "          'custodians': 2,\n",
      "          'love': 2,\n",
      "          'lebanese': 2,\n",
      "          'background': 2,\n",
      "          'yasmin': 2,\n",
      "          'want': 2,\n",
      "          'get': 2,\n",
      "          'nmans': 2,\n",
      "          'go': 2,\n",
      "          'way': 2,\n",
      "          'plot': 2,\n",
      "          'none': 2,\n",
      "          'things': 2,\n",
      "          'better': 2,\n",
      "          'director': 2,\n",
      "          'see': 2,\n",
      "          'roros': 2,\n",
      "          'life': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'superlight': 1,\n",
      "          'close': 1,\n",
      "          'romantic': 1,\n",
      "          'script': 1,\n",
      "          'involves': 1,\n",
      "          'formerly': 1,\n",
      "          'taboo': 1,\n",
      "          'subjects': 1,\n",
      "          'erotic': 1,\n",
      "          'toys': 1,\n",
      "          'otherwise': 1,\n",
      "          'writing': 1,\n",
      "          'different': 1,\n",
      "          'shown': 1,\n",
      "          'free': 1,\n",
      "          'television': 1,\n",
      "          'characters': 1,\n",
      "          'paperthin': 1,\n",
      "          'interesting': 1,\n",
      "          'ideas': 1,\n",
      "          'purely': 1,\n",
      "          'nonexistent': 1,\n",
      "          'nthis': 1,\n",
      "          'decrementlifeby90minutes': 1,\n",
      "          'card': 1,\n",
      "          'n': 1,\n",
      "          'njalla': 1,\n",
      "          'nis': 1,\n",
      "          'basically': 1,\n",
      "          'exuberant': 1,\n",
      "          'tv': 1,\n",
      "          'written': 1,\n",
      "          'instead': 1,\n",
      "          'wide': 1,\n",
      "          'screen': 1,\n",
      "          'finding': 1,\n",
      "          'path': 1,\n",
      "          'true': 1,\n",
      "          'set': 1,\n",
      "          'torkel': 1,\n",
      "          'petersson': 1,\n",
      "          'public': 1,\n",
      "          'tightly': 1,\n",
      "          'knit': 1,\n",
      "          'control': 1,\n",
      "          'closely': 1,\n",
      "          'swede': 1,\n",
      "          'much': 1,\n",
      "          'liberal': 1,\n",
      "          'nthey': 1,\n",
      "          'spend': 1,\n",
      "          'day': 1,\n",
      "          'bushes': 1,\n",
      "          'cleaning': 1,\n",
      "          'dogs': 1,\n",
      "          'girlfriends': 1,\n",
      "          'nicknamed': 1,\n",
      "          'seems': 1,\n",
      "          'wants': 1,\n",
      "          'arrange': 1,\n",
      "          'marriage': 1,\n",
      "          'nice': 1,\n",
      "          'woman': 1,\n",
      "          'laleh': 1,\n",
      "          'pourkarim': 1,\n",
      "          'already': 1,\n",
      "          'lisa': 1,\n",
      "          'tuva': 1,\n",
      "          'novotny': 1,\n",
      "          'nyasmin': 1,\n",
      "          'likes': 1,\n",
      "          'married': 1,\n",
      "          'either': 1,\n",
      "          'hand': 1,\n",
      "          'impotence': 1,\n",
      "          'worry': 1,\n",
      "          'discuss': 1,\n",
      "          'thinks': 1,\n",
      "          'answer': 1,\n",
      "          'purchase': 1,\n",
      "          'one': 1,\n",
      "          'catch': 1,\n",
      "          'shy': 1,\n",
      "          'buy': 1,\n",
      "          'decide': 1,\n",
      "          'give': 1,\n",
      "          'time': 1,\n",
      "          'telling': 1,\n",
      "          'families': 1,\n",
      "          'marry': 1,\n",
      "          'plan': 1,\n",
      "          'break': 1,\n",
      "          'wedding': 1,\n",
      "          'nnot': 1,\n",
      "          'surprisingly': 1,\n",
      "          'neither': 1,\n",
      "          'finds': 1,\n",
      "          'idea': 1,\n",
      "          'works': 1,\n",
      "          'quite': 1,\n",
      "          'expected': 1,\n",
      "          'turns': 1,\n",
      "          'several': 1,\n",
      "          'places': 1,\n",
      "          'contrived': 1,\n",
      "          'knows': 1,\n",
      "          'fairly': 1,\n",
      "          'quickly': 1,\n",
      "          'going': 1,\n",
      "          'work': 1,\n",
      "          'happily': 1,\n",
      "          'everybody': 1,\n",
      "          'certain': 1,\n",
      "          'contrivances': 1,\n",
      "          'happen': 1,\n",
      "          'nlebaneseborn': 1,\n",
      "          'josef': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'perhaps': 1,\n",
      "          'writer': 1,\n",
      "          'nwhen': 1,\n",
      "          'start': 1,\n",
      "          'slow': 1,\n",
      "          'adds': 1,\n",
      "          'throws': 1,\n",
      "          'another': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'halfway': 1,\n",
      "          'innocently': 1,\n",
      "          'antagonizes': 1,\n",
      "          'local': 1,\n",
      "          'toughs': 1,\n",
      "          'long': 1,\n",
      "          'chase': 1,\n",
      "          'added': 1,\n",
      "          'ncharacterization': 1,\n",
      "          'little': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'seem': 1,\n",
      "          'whole': 1,\n",
      "          'personality': 1,\n",
      "          'beyond': 1,\n",
      "          'fear': 1,\n",
      "          'losing': 1,\n",
      "          'biological': 1,\n",
      "          'function': 1,\n",
      "          'nwe': 1,\n",
      "          'concerns': 1,\n",
      "          'nthat': 1,\n",
      "          'may': 1,\n",
      "          'nwhile': 1,\n",
      "          'entertaining': 1,\n",
      "          'feel': 1,\n",
      "          'got': 1,\n",
      "          'anything': 1,\n",
      "          'worthwhile': 1,\n",
      "          'pass': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'movies': 1,\n",
      "          'entertainment': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'violet': 5,\n",
      "          'nand': 4,\n",
      "          'bar': 4,\n",
      "          'goodman': 3,\n",
      "          'since': 3,\n",
      "          'remember': 2,\n",
      "          'coyote': 2,\n",
      "          'ugly': 2,\n",
      "          'better': 2,\n",
      "          'perado': 2,\n",
      "          'bello': 2,\n",
      "          'thing': 2,\n",
      "          'get': 2,\n",
      "          'start': 2,\n",
      "          'rest': 2,\n",
      "          'along': 2,\n",
      "          'one': 2,\n",
      "          'tries': 2,\n",
      "          'na': 2,\n",
      "          'gives': 2,\n",
      "          'another': 2,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'brian': 1,\n",
      "          'brown': 1,\n",
      "          'rival': 1,\n",
      "          'bartenders': 1,\n",
      "          'juggling': 1,\n",
      "          'bottles': 1,\n",
      "          'booze': 1,\n",
      "          'cocktail': 1,\n",
      "          'nremember': 1,\n",
      "          'stupid': 1,\n",
      "          'looked': 1,\n",
      "          'scantilyclad': 1,\n",
      "          'dancers': 1,\n",
      "          'flashdance': 1,\n",
      "          'getting': 1,\n",
      "          'doused': 1,\n",
      "          'buckets': 1,\n",
      "          'water': 1,\n",
      "          'nwell': 1,\n",
      "          'films': 1,\n",
      "          'five': 1,\n",
      "          'six': 1,\n",
      "          'count': 1,\n",
      "          'john': 1,\n",
      "          'piper': 1,\n",
      "          'maria': 1,\n",
      "          'tyra': 1,\n",
      "          'banks': 1,\n",
      "          'melanie': 1,\n",
      "          'lynskey': 1,\n",
      "          'izabella': 1,\n",
      "          'miko': 1,\n",
      "          'absolut': 1,\n",
      "          'spinning': 1,\n",
      "          'jiggling': 1,\n",
      "          'pouring': 1,\n",
      "          'pitchers': 1,\n",
      "          'perrier': 1,\n",
      "          'seminaked': 1,\n",
      "          'torsos': 1,\n",
      "          'nno': 1,\n",
      "          'doesnt': 1,\n",
      "          'flip': 1,\n",
      "          'jim': 1,\n",
      "          'beams': 1,\n",
      "          'wear': 1,\n",
      "          'anything': 1,\n",
      "          'particularly': 1,\n",
      "          'risqu': 1,\n",
      "          'film': 1,\n",
      "          'gyrating': 1,\n",
      "          'central': 1,\n",
      "          'characters': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'played': 1,\n",
      "          'australian': 1,\n",
      "          'actor': 1,\n",
      "          'named': 1,\n",
      "          'adam': 1,\n",
      "          'garcia': 1,\n",
      "          'proves': 1,\n",
      "          'shimmying': 1,\n",
      "          'nwhat': 1,\n",
      "          'seems': 1,\n",
      "          'started': 1,\n",
      "          'life': 1,\n",
      "          'victorias': 1,\n",
      "          'secret': 1,\n",
      "          'photo': 1,\n",
      "          'shoot': 1,\n",
      "          'quickly': 1,\n",
      "          'deteriorates': 1,\n",
      "          'heck': 1,\n",
      "          'embarrassing': 1,\n",
      "          'movie': 1,\n",
      "          'nviolet': 1,\n",
      "          'south': 1,\n",
      "          'amboy': 1,\n",
      "          'hopeful': 1,\n",
      "          'make': 1,\n",
      "          'big': 1,\n",
      "          'songwriter': 1,\n",
      "          'welder': 1,\n",
      "          'new': 1,\n",
      "          'jack': 1,\n",
      "          'city': 1,\n",
      "          'nas': 1,\n",
      "          'come': 1,\n",
      "          'shes': 1,\n",
      "          'fobbed': 1,\n",
      "          'music': 1,\n",
      "          'producers': 1,\n",
      "          'receptionists': 1,\n",
      "          'scornful': 1,\n",
      "          'apartment': 1,\n",
      "          'robbed': 1,\n",
      "          'hours': 1,\n",
      "          'touching': 1,\n",
      "          'chinatown': 1,\n",
      "          'like': 1,\n",
      "          'mother': 1,\n",
      "          'gets': 1,\n",
      "          'stage': 1,\n",
      "          'fright': 1,\n",
      "          'whenever': 1,\n",
      "          'open': 1,\n",
      "          'mike': 1,\n",
      "          'night': 1,\n",
      "          'nwhen': 1,\n",
      "          'sees': 1,\n",
      "          'trio': 1,\n",
      "          'babealicious': 1,\n",
      "          'barkeeps': 1,\n",
      "          'thumbing': 1,\n",
      "          'stack': 1,\n",
      "          '20s': 1,\n",
      "          'allnight': 1,\n",
      "          'diner': 1,\n",
      "          'simply': 1,\n",
      "          'check': 1,\n",
      "          'call': 1,\n",
      "          'nlil': 1,\n",
      "          'nononsense': 1,\n",
      "          'owner': 1,\n",
      "          'agrees': 1,\n",
      "          'give': 1,\n",
      "          'audition': 1,\n",
      "          'blows': 1,\n",
      "          'nstill': 1,\n",
      "          'lil': 1,\n",
      "          'chance': 1,\n",
      "          'riot': 1,\n",
      "          'breaks': 1,\n",
      "          'riots': 1,\n",
      "          'order': 1,\n",
      "          'day': 1,\n",
      "          'uglys': 1,\n",
      "          'staff': 1,\n",
      "          'relentless': 1,\n",
      "          'flaunting': 1,\n",
      "          'sexual': 1,\n",
      "          'wares': 1,\n",
      "          'flambeeing': 1,\n",
      "          'soaking': 1,\n",
      "          'patrons': 1,\n",
      "          'diet': 1,\n",
      "          'spritethis': 1,\n",
      "          'certifiable': 1,\n",
      "          'behavior': 1,\n",
      "          'case': 1,\n",
      "          'didnt': 1,\n",
      "          'mention': 1,\n",
      "          'successfully': 1,\n",
      "          'subdues': 1,\n",
      "          'crowd': 1,\n",
      "          'singing': 1,\n",
      "          'blondies': 1,\n",
      "          'way': 1,\n",
      "          'jukebox': 1,\n",
      "          'nshes': 1,\n",
      "          'hired': 1,\n",
      "          'cured': 1,\n",
      "          'little': 1,\n",
      "          'episode': 1,\n",
      "          'confidence': 1,\n",
      "          'sing': 1,\n",
      "          'amateur': 1,\n",
      "          'talent': 1,\n",
      "          'contest': 1,\n",
      "          'dad': 1,\n",
      "          'junk': 1,\n",
      "          'foodeating': 1,\n",
      "          'laundryimpaired': 1,\n",
      "          'toll': 1,\n",
      "          'collector': 1,\n",
      "          'comes': 1,\n",
      "          'see': 1,\n",
      "          'proud': 1,\n",
      "          'punch': 1,\n",
      "          'nthe': 1,\n",
      "          'end': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'office': 4,\n",
      "          'plot': 4,\n",
      "          'movie': 4,\n",
      "          'judge': 3,\n",
      "          'space': 3,\n",
      "          'work': 3,\n",
      "          'comedy': 2,\n",
      "          'one': 2,\n",
      "          'mistakes': 2,\n",
      "          'amateur': 2,\n",
      "          'make': 2,\n",
      "          'workplace': 2,\n",
      "          'series': 2,\n",
      "          'rather': 2,\n",
      "          'plan': 2,\n",
      "          'downfall': 2,\n",
      "          'boss': 2,\n",
      "          'set': 2,\n",
      "          'feature': 2,\n",
      "          'evidence': 2,\n",
      "          'peter': 2,\n",
      "          'initech': 2,\n",
      "          'confucius': 1,\n",
      "          'said': 1,\n",
      "          'governing': 1,\n",
      "          'nation': 1,\n",
      "          'like': 1,\n",
      "          'cooking': 1,\n",
      "          'small': 1,\n",
      "          'fish': 1,\n",
      "          'dont': 1,\n",
      "          'overdo': 1,\n",
      "          'nhis': 1,\n",
      "          'maxim': 1,\n",
      "          'might': 1,\n",
      "          'easily': 1,\n",
      "          'applied': 1,\n",
      "          'writing': 1,\n",
      "          'script': 1,\n",
      "          'quantity': 1,\n",
      "          'quality': 1,\n",
      "          'worst': 1,\n",
      "          'scribe': 1,\n",
      "          'ngranted': 1,\n",
      "          'mike': 1,\n",
      "          'writerdirector': 1,\n",
      "          'satire': 1,\n",
      "          'isnt': 1,\n",
      "          'exactly': 1,\n",
      "          'infamous': 1,\n",
      "          'mtv': 1,\n",
      "          'beavis': 1,\n",
      "          'butthead': 1,\n",
      "          'pure': 1,\n",
      "          'gold': 1,\n",
      "          'network': 1,\n",
      "          'nbut': 1,\n",
      "          'unfailingly': 1,\n",
      "          'manages': 1,\n",
      "          'inexcusable': 1,\n",
      "          'spreading': 1,\n",
      "          'iffy': 1,\n",
      "          'much': 1,\n",
      "          'ground': 1,\n",
      "          'iffiness': 1,\n",
      "          'judges': 1,\n",
      "          'group': 1,\n",
      "          'coworkers': 1,\n",
      "          'despicable': 1,\n",
      "          'appeal': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'based': 1,\n",
      "          'popularity': 1,\n",
      "          'scott': 1,\n",
      "          'adams': 1,\n",
      "          'cartoon': 1,\n",
      "          'dilbert': 1,\n",
      "          'soon': 1,\n",
      "          'television': 1,\n",
      "          'satirical': 1,\n",
      "          'view': 1,\n",
      "          'american': 1,\n",
      "          'hot': 1,\n",
      "          'item': 1,\n",
      "          'hollywood': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'concept': 1,\n",
      "          'lends': 1,\n",
      "          'skitlength': 1,\n",
      "          'sequences': 1,\n",
      "          'would': 1,\n",
      "          'home': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'fulllength': 1,\n",
      "          'convincing': 1,\n",
      "          'trailers': 1,\n",
      "          'almost': 1,\n",
      "          'movies': 1,\n",
      "          'top': 1,\n",
      "          'content': 1,\n",
      "          'leaves': 1,\n",
      "          'actual': 1,\n",
      "          'picture': 1,\n",
      "          'appearing': 1,\n",
      "          'deflated': 1,\n",
      "          'nother': 1,\n",
      "          'spaces': 1,\n",
      "          'failure': 1,\n",
      "          'lack': 1,\n",
      "          'good': 1,\n",
      "          'jokes': 1,\n",
      "          'marginally': 1,\n",
      "          'funny': 1,\n",
      "          'best': 1,\n",
      "          'enough': 1,\n",
      "          'get': 1,\n",
      "          'packed': 1,\n",
      "          'house': 1,\n",
      "          'theatergoers': 1,\n",
      "          'laugh': 1,\n",
      "          'loud': 1,\n",
      "          'material': 1,\n",
      "          'onkey': 1,\n",
      "          'older': 1,\n",
      "          'demographic': 1,\n",
      "          'used': 1,\n",
      "          'targeting': 1,\n",
      "          'could': 1,\n",
      "          'partially': 1,\n",
      "          'explain': 1,\n",
      "          'nhowever': 1,\n",
      "          'loaded': 1,\n",
      "          'many': 1,\n",
      "          'misfires': 1,\n",
      "          'including': 1,\n",
      "          'token': 1,\n",
      "          'allow': 1,\n",
      "          'excuse': 1,\n",
      "          'centers': 1,\n",
      "          'around': 1,\n",
      "          'three': 1,\n",
      "          'four': 1,\n",
      "          'cubicled': 1,\n",
      "          'engineers': 1,\n",
      "          'headed': 1,\n",
      "          'gibbons': 1,\n",
      "          'ron': 1,\n",
      "          'livingston': 1,\n",
      "          'company': 1,\n",
      "          'named': 1,\n",
      "          'nafter': 1,\n",
      "          'elaborately': 1,\n",
      "          'establishes': 1,\n",
      "          'miserable': 1,\n",
      "          'working': 1,\n",
      "          'conditions': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'two': 1,\n",
      "          'consultants': 1,\n",
      "          'john': 1,\n",
      "          'c': 1,\n",
      "          'mcginley': 1,\n",
      "          'paul': 1,\n",
      "          'willson': 1,\n",
      "          'charge': 1,\n",
      "          'downsizing': 1,\n",
      "          'companys': 1,\n",
      "          'payroll': 1,\n",
      "          'nwhen': 1,\n",
      "          'gang': 1,\n",
      "          'learns': 1,\n",
      "          'well': 1,\n",
      "          'reason': 1,\n",
      "          'behind': 1,\n",
      "          'smooth': 1,\n",
      "          'talking': 1,\n",
      "          'bill': 1,\n",
      "          'lumbergh': 1,\n",
      "          'gary': 1,\n",
      "          'cole': 1,\n",
      "          'stock': 1,\n",
      "          'go': 1,\n",
      "          'creating': 1,\n",
      "          'see': 1,\n",
      "          'circumstances': 1,\n",
      "          'follow': 1,\n",
      "          'obviously': 1,\n",
      "          'intended': 1,\n",
      "          'hilarious': 1,\n",
      "          'come': 1,\n",
      "          'anything': 1,\n",
      "          'na': 1,\n",
      "          'sympathetic': 1,\n",
      "          'cast': 1,\n",
      "          'muddled': 1,\n",
      "          'jennifer': 1,\n",
      "          'anistonasloveinterest': 1,\n",
      "          'subplot': 1,\n",
      "          'keep': 1,\n",
      "          'together': 1,\n",
      "          'definitely': 1,\n",
      "          'missable': 1,\n",
      "          'lieu': 1,\n",
      "          'something': 1,\n",
      "          'intelligent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'irene': 11,\n",
      "          'farrellys': 10,\n",
      "          'nthe': 9,\n",
      "          'brothers': 7,\n",
      "          'film': 7,\n",
      "          'like': 6,\n",
      "          'entirely': 6,\n",
      "          'mary': 6,\n",
      "          'funny': 5,\n",
      "          'carrey': 5,\n",
      "          'doesnt': 5,\n",
      "          'farrelly': 4,\n",
      "          'personality': 4,\n",
      "          'charlie': 4,\n",
      "          'charlies': 4,\n",
      "          'plot': 4,\n",
      "          'work': 4,\n",
      "          'n': 4,\n",
      "          'pull': 4,\n",
      "          'nothing': 4,\n",
      "          'seemed': 3,\n",
      "          'better': 3,\n",
      "          'movie': 3,\n",
      "          'nits': 3,\n",
      "          'thing': 3,\n",
      "          'even': 3,\n",
      "          'new': 3,\n",
      "          'would': 3,\n",
      "          'course': 3,\n",
      "          'people': 3,\n",
      "          'comedy': 3,\n",
      "          'one': 3,\n",
      "          'isnt': 3,\n",
      "          'ever': 3,\n",
      "          'nthis': 3,\n",
      "          'actions': 3,\n",
      "          'humor': 3,\n",
      "          'outrageous': 3,\n",
      "          'way': 3,\n",
      "          'made': 3,\n",
      "          'nbut': 3,\n",
      "          'still': 3,\n",
      "          'dont': 3,\n",
      "          'perfect': 2,\n",
      "          'offensive': 2,\n",
      "          'matter': 2,\n",
      "          'make': 2,\n",
      "          'guy': 2,\n",
      "          'split': 2,\n",
      "          'exactly': 2,\n",
      "          'sort': 2,\n",
      "          'something': 2,\n",
      "          'mental': 2,\n",
      "          'illness': 2,\n",
      "          'throwing': 2,\n",
      "          'wind': 2,\n",
      "          'get': 2,\n",
      "          'njim': 2,\n",
      "          'neven': 2,\n",
      "          'ill': 2,\n",
      "          'condition': 2,\n",
      "          'take': 2,\n",
      "          'another': 2,\n",
      "          'wrong': 2,\n",
      "          'never': 2,\n",
      "          'taking': 2,\n",
      "          'hes': 2,\n",
      "          'stop': 2,\n",
      "          'runs': 2,\n",
      "          'problem': 2,\n",
      "          'kind': 2,\n",
      "          'earlier': 2,\n",
      "          'merely': 2,\n",
      "          'gags': 2,\n",
      "          'believe': 2,\n",
      "          'unexpected': 2,\n",
      "          'surprising': 2,\n",
      "          'seems': 2,\n",
      "          'really': 2,\n",
      "          'manner': 2,\n",
      "          'jokes': 2,\n",
      "          'havent': 2,\n",
      "          'adolescent': 2,\n",
      "          'think': 2,\n",
      "          'none': 2,\n",
      "          'anything': 2,\n",
      "          'involving': 2,\n",
      "          'three': 2,\n",
      "          'black': 2,\n",
      "          'language': 2,\n",
      "          'hasnt': 2,\n",
      "          'supporting': 2,\n",
      "          'character': 2,\n",
      "          'script': 2,\n",
      "          'roleshifting': 2,\n",
      "          'whether': 2,\n",
      "          'stuck': 2,\n",
      "          'audiences': 2,\n",
      "          'good': 2,\n",
      "          'filmmakers': 2,\n",
      "          'concept': 1,\n",
      "          'nwhat': 1,\n",
      "          'famous': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'comedies': 1,\n",
      "          'subject': 1,\n",
      "          'relish': 1,\n",
      "          'poking': 1,\n",
      "          'fun': 1,\n",
      "          'serious': 1,\n",
      "          'case': 1,\n",
      "          'care': 1,\n",
      "          'laugh': 1,\n",
      "          'carreys': 1,\n",
      "          'signed': 1,\n",
      "          'national': 1,\n",
      "          'alliance': 1,\n",
      "          'mentally': 1,\n",
      "          'helped': 1,\n",
      "          'levying': 1,\n",
      "          'complaints': 1,\n",
      "          'opening': 1,\n",
      "          'claiming': 1,\n",
      "          'misrepresenting': 1,\n",
      "          'labeling': 1,\n",
      "          'incorrectly': 1,\n",
      "          'schizophrenia': 1,\n",
      "          'forth': 1,\n",
      "          'nsuch': 1,\n",
      "          'protest': 1,\n",
      "          'add': 1,\n",
      "          'fuel': 1,\n",
      "          'fire': 1,\n",
      "          'proving': 1,\n",
      "          'couldnt': 1,\n",
      "          'joke': 1,\n",
      "          'helping': 1,\n",
      "          'enlightened': 1,\n",
      "          'viewers': 1,\n",
      "          'yet': 1,\n",
      "          'dose': 1,\n",
      "          'brilliantly': 1,\n",
      "          'subversive': 1,\n",
      "          'nyes': 1,\n",
      "          'went': 1,\n",
      "          'lack': 1,\n",
      "          'trying': 1,\n",
      "          'utilize': 1,\n",
      "          'highconcept': 1,\n",
      "          'premise': 1,\n",
      "          'plays': 1,\n",
      "          'baileygaites': 1,\n",
      "          'man': 1,\n",
      "          'dumped': 1,\n",
      "          'wife': 1,\n",
      "          'midget': 1,\n",
      "          'limo': 1,\n",
      "          'driver': 1,\n",
      "          'decides': 1,\n",
      "          'bury': 1,\n",
      "          'aggressive': 1,\n",
      "          'feelings': 1,\n",
      "          'deep': 1,\n",
      "          'inside': 1,\n",
      "          'release': 1,\n",
      "          'means': 1,\n",
      "          'neighbors': 1,\n",
      "          'exploit': 1,\n",
      "          'tooforgiving': 1,\n",
      "          'nature': 1,\n",
      "          'making': 1,\n",
      "          'job': 1,\n",
      "          'rhode': 1,\n",
      "          'island': 1,\n",
      "          'state': 1,\n",
      "          'trooper': 1,\n",
      "          'increasingly': 1,\n",
      "          'difficult': 1,\n",
      "          'nsoon': 1,\n",
      "          'enough': 1,\n",
      "          'repressed': 1,\n",
      "          'aggression': 1,\n",
      "          'manifests': 1,\n",
      "          'second': 1,\n",
      "          'independent': 1,\n",
      "          'named': 1,\n",
      "          'hank': 1,\n",
      "          'deepvoiced': 1,\n",
      "          'boorish': 1,\n",
      "          'ogre': 1,\n",
      "          'unafraid': 1,\n",
      "          'assertive': 1,\n",
      "          'predecessor': 1,\n",
      "          'unable': 1,\n",
      "          'muster': 1,\n",
      "          'crashing': 1,\n",
      "          'car': 1,\n",
      "          'wall': 1,\n",
      "          'barber': 1,\n",
      "          'shop': 1,\n",
      "          'insulted': 1,\n",
      "          'holding': 1,\n",
      "          'little': 1,\n",
      "          'girls': 1,\n",
      "          'head': 1,\n",
      "          'underwater': 1,\n",
      "          'refused': 1,\n",
      "          'jumproping': 1,\n",
      "          'street': 1,\n",
      "          'nthen': 1,\n",
      "          'things': 1,\n",
      "          'start': 1,\n",
      "          'getting': 1,\n",
      "          'lost': 1,\n",
      "          'complicated': 1,\n",
      "          'attempted': 1,\n",
      "          'tracks': 1,\n",
      "          'nsome': 1,\n",
      "          'suggested': 1,\n",
      "          'brand': 1,\n",
      "          'require': 1,\n",
      "          'ntheyre': 1,\n",
      "          'greatly': 1,\n",
      "          'instrumental': 1,\n",
      "          'building': 1,\n",
      "          'rollicking': 1,\n",
      "          'comic': 1,\n",
      "          'energy': 1,\n",
      "          'infused': 1,\n",
      "          'last': 1,\n",
      "          'effort': 1,\n",
      "          '1996s': 1,\n",
      "          'theres': 1,\n",
      "          '1999s': 1,\n",
      "          'outside': 1,\n",
      "          'providence': 1,\n",
      "          'technically': 1,\n",
      "          'project': 1,\n",
      "          'wasnt': 1,\n",
      "          'contained': 1,\n",
      "          'despite': 1,\n",
      "          'newsmagazine': 1,\n",
      "          'articles': 1,\n",
      "          'rather': 1,\n",
      "          'nin': 1,\n",
      "          'managed': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'neat': 1,\n",
      "          'sleightofhand': 1,\n",
      "          'trick': 1,\n",
      "          'theyd': 1,\n",
      "          'thinking': 1,\n",
      "          'story': 1,\n",
      "          'going': 1,\n",
      "          'reveal': 1,\n",
      "          'real': 1,\n",
      "          'direction': 1,\n",
      "          'delightfully': 1,\n",
      "          'fashion': 1,\n",
      "          'contrast': 1,\n",
      "          'folks': 1,\n",
      "          'looked': 1,\n",
      "          'saw': 1,\n",
      "          'surface': 1,\n",
      "          'grossness': 1,\n",
      "          'missing': 1,\n",
      "          'subtle': 1,\n",
      "          'machinations': 1,\n",
      "          'nhaving': 1,\n",
      "          'produced': 1,\n",
      "          'guys': 1,\n",
      "          'bigger': 1,\n",
      "          'disappointment': 1,\n",
      "          'pile': 1,\n",
      "          'shots': 1,\n",
      "          'race': 1,\n",
      "          'midgets': 1,\n",
      "          'albinos': 1,\n",
      "          'bathroom': 1,\n",
      "          'come': 1,\n",
      "          'fresh': 1,\n",
      "          'comes': 1,\n",
      "          'rote': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'forced': 1,\n",
      "          'drive': 1,\n",
      "          'alleged': 1,\n",
      "          'fugitive': 1,\n",
      "          'p': 1,\n",
      "          'waters': 1,\n",
      "          'renee': 1,\n",
      "          'zellweger': 1,\n",
      "          'whos': 1,\n",
      "          'trouble': 1,\n",
      "          'anyone': 1,\n",
      "          'knows': 1,\n",
      "          'back': 1,\n",
      "          'york': 1,\n",
      "          'ending': 1,\n",
      "          'thats': 1,\n",
      "          'predictable': 1,\n",
      "          'getgo': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'nyeah': 1,\n",
      "          'introduce': 1,\n",
      "          'scores': 1,\n",
      "          'different': 1,\n",
      "          'characters': 1,\n",
      "          'manage': 1,\n",
      "          'already': 1,\n",
      "          'expected': 1,\n",
      "          'might': 1,\n",
      "          'ncompared': 1,\n",
      "          'curveballs': 1,\n",
      "          'used': 1,\n",
      "          'stuff': 1,\n",
      "          'almost': 1,\n",
      "          'softtossed': 1,\n",
      "          'presenting': 1,\n",
      "          'obvious': 1,\n",
      "          'grossout': 1,\n",
      "          'loses': 1,\n",
      "          'shock': 1,\n",
      "          'value': 1,\n",
      "          'longer': 1,\n",
      "          'gross': 1,\n",
      "          'milked': 1,\n",
      "          'effectiveness': 1,\n",
      "          'dry': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'subplot': 1,\n",
      "          'sons': 1,\n",
      "          'anthony': 1,\n",
      "          'anderson': 1,\n",
      "          'mongo': 1,\n",
      "          'brownlee': 1,\n",
      "          'jerod': 1,\n",
      "          'mixon': 1,\n",
      "          'incongruity': 1,\n",
      "          'burly': 1,\n",
      "          'men': 1,\n",
      "          'discussing': 1,\n",
      "          'higher': 1,\n",
      "          'math': 1,\n",
      "          'ghetto': 1,\n",
      "          'whitebread': 1,\n",
      "          'mouthing': 1,\n",
      "          'said': 1,\n",
      "          'toopleasant': 1,\n",
      "          'smile': 1,\n",
      "          'face': 1,\n",
      "          'end': 1,\n",
      "          'theyre': 1,\n",
      "          'schitck': 1,\n",
      "          'elevated': 1,\n",
      "          'funnier': 1,\n",
      "          'level': 1,\n",
      "          'dropped': 1,\n",
      "          'either': 1,\n",
      "          'nthats': 1,\n",
      "          'bad': 1,\n",
      "          'ceases': 1,\n",
      "          'amusing': 1,\n",
      "          'halfway': 1,\n",
      "          'reeks': 1,\n",
      "          'wasted': 1,\n",
      "          'opportunities': 1,\n",
      "          'nthere': 1,\n",
      "          'ought': 1,\n",
      "          'focus': 1,\n",
      "          'react': 1,\n",
      "          'deals': 1,\n",
      "          'consequences': 1,\n",
      "          'hanks': 1,\n",
      "          'happen': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'learns': 1,\n",
      "          'early': 1,\n",
      "          'opportunity': 1,\n",
      "          'surprised': 1,\n",
      "          'throws': 1,\n",
      "          'looks': 1,\n",
      "          'patented': 1,\n",
      "          'curve': 1,\n",
      "          'scene': 1,\n",
      "          'towards': 1,\n",
      "          'midway': 1,\n",
      "          'point': 1,\n",
      "          'albino': 1,\n",
      "          'companion': 1,\n",
      "          'pick': 1,\n",
      "          'called': 1,\n",
      "          'appropriately': 1,\n",
      "          'whitey': 1,\n",
      "          'go': 1,\n",
      "          'anywhere': 1,\n",
      "          'instead': 1,\n",
      "          'leaving': 1,\n",
      "          'thread': 1,\n",
      "          'twisting': 1,\n",
      "          'awkwardly': 1,\n",
      "          'tying': 1,\n",
      "          'climax': 1,\n",
      "          'gifted': 1,\n",
      "          'comedian': 1,\n",
      "          'physically': 1,\n",
      "          'vocally': 1,\n",
      "          'left': 1,\n",
      "          'much': 1,\n",
      "          'except': 1,\n",
      "          'contort': 1,\n",
      "          'similar': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'great': 1,\n",
      "          'showcase': 1,\n",
      "          'flexibility': 1,\n",
      "          'splitsecond': 1,\n",
      "          'terribly': 1,\n",
      "          'ncarrey': 1,\n",
      "          'stunts': 1,\n",
      "          'expect': 1,\n",
      "          'give': 1,\n",
      "          'else': 1,\n",
      "          'situations': 1,\n",
      "          'must': 1,\n",
      "          'perform': 1,\n",
      "          'arent': 1,\n",
      "          'set': 1,\n",
      "          'meaningful': 1,\n",
      "          'nperhaps': 1,\n",
      "          'solace': 1,\n",
      "          'fact': 1,\n",
      "          'actors': 1,\n",
      "          'fare': 1,\n",
      "          'nzellwegers': 1,\n",
      "          'strong': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'may': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'part': 1,\n",
      "          'fantasy': 1,\n",
      "          'also': 1,\n",
      "          'intelligent': 1,\n",
      "          'strongwilled': 1,\n",
      "          'nirene': 1,\n",
      "          'particular': 1,\n",
      "          'makes': 1,\n",
      "          'clear': 1,\n",
      "          'shes': 1,\n",
      "          'ditzy': 1,\n",
      "          'clever': 1,\n",
      "          'neither': 1,\n",
      "          'nas': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'latch': 1,\n",
      "          'onto': 1,\n",
      "          'sane': 1,\n",
      "          'person': 1,\n",
      "          'nchris': 1,\n",
      "          'cooper': 1,\n",
      "          'playing': 1,\n",
      "          'note': 1,\n",
      "          'corrupt': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'straightlaced': 1,\n",
      "          'nhe': 1,\n",
      "          'others': 1,\n",
      "          'absolutely': 1,\n",
      "          'nafter': 1,\n",
      "          'viewing': 1,\n",
      "          'shapeless': 1,\n",
      "          'mess': 1,\n",
      "          'eventually': 1,\n",
      "          'dissolved': 1,\n",
      "          'wondering': 1,\n",
      "          'outsmarted': 1,\n",
      "          'nmaybe': 1,\n",
      "          'long': 1,\n",
      "          'wise': 1,\n",
      "          'shocked': 1,\n",
      "          'find': 1,\n",
      "          'ways': 1,\n",
      "          'grown': 1,\n",
      "          'attuned': 1,\n",
      "          'style': 1,\n",
      "          'nif': 1,\n",
      "          'indeed': 1,\n",
      "          'smart': 1,\n",
      "          'theyll': 1,\n",
      "          'rebound': 1,\n",
      "          'fine': 1,\n",
      "          'happens': 1,\n",
      "          'though': 1,\n",
      "          'consider': 1,\n",
      "          'highcaliber': 1,\n",
      "          'misfire': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'one': 7,\n",
      "          'stupid': 5,\n",
      "          'nand': 5,\n",
      "          'nbut': 5,\n",
      "          'get': 5,\n",
      "          'cool': 5,\n",
      "          'characters': 4,\n",
      "          'time': 4,\n",
      "          'disaster': 4,\n",
      "          'part': 4,\n",
      "          'cause': 3,\n",
      "          'inane': 3,\n",
      "          'fun': 3,\n",
      "          'eccentric': 3,\n",
      "          'god': 3,\n",
      "          'volcano': 3,\n",
      "          'good': 3,\n",
      "          'cheadle': 3,\n",
      "          'best': 3,\n",
      "          'interesting': 3,\n",
      "          'ni': 3,\n",
      "          'see': 3,\n",
      "          'watching': 3,\n",
      "          'nhe': 3,\n",
      "          'go': 3,\n",
      "          'sight': 3,\n",
      "          'theres': 2,\n",
      "          'scene': 2,\n",
      "          'first': 2,\n",
      "          'goes': 2,\n",
      "          'since': 2,\n",
      "          'nits': 2,\n",
      "          'like': 2,\n",
      "          'greatest': 2,\n",
      "          'earthquake': 2,\n",
      "          'n': 2,\n",
      "          'erupts': 2,\n",
      "          'actors': 2,\n",
      "          'lee': 2,\n",
      "          'jones': 2,\n",
      "          'great': 2,\n",
      "          'gabys': 2,\n",
      "          'dumb': 2,\n",
      "          'nthey': 2,\n",
      "          'magma': 2,\n",
      "          'actually': 2,\n",
      "          'sites': 2,\n",
      "          'destroyed': 2,\n",
      "          'films': 2,\n",
      "          'toppled': 2,\n",
      "          'really': 2,\n",
      "          'lava': 2,\n",
      "          'guy': 2,\n",
      "          'could': 2,\n",
      "          'throw': 2,\n",
      "          'jump': 2,\n",
      "          'nheres': 2,\n",
      "          'nif': 2,\n",
      "          'want': 2,\n",
      "          'flick': 2,\n",
      "          'somewhere': 1,\n",
      "          'reads': 1,\n",
      "          'book': 1,\n",
      "          'screenwriting': 1,\n",
      "          'made': 1,\n",
      "          'easy': 1,\n",
      "          'nthis': 1,\n",
      "          'funny': 1,\n",
      "          'funnier': 1,\n",
      "          'totally': 1,\n",
      "          'ironic': 1,\n",
      "          'screenwriters': 1,\n",
      "          'probably': 1,\n",
      "          'read': 1,\n",
      "          'outlined': 1,\n",
      "          'wrote': 1,\n",
      "          'took': 1,\n",
      "          'subgenre': 1,\n",
      "          'pic': 1,\n",
      "          'hokey': 1,\n",
      "          'forgot': 1,\n",
      "          'parts': 1,\n",
      "          'nyes': 1,\n",
      "          'poseidon': 1,\n",
      "          'adventure': 1,\n",
      "          'crap': 1,\n",
      "          'got': 1,\n",
      "          'worst': 1,\n",
      "          'movies': 1,\n",
      "          'least': 1,\n",
      "          'joke': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'sleeping': 1,\n",
      "          'genevieve': 1,\n",
      "          'bujold': 1,\n",
      "          'takes': 1,\n",
      "          'semiintriguing': 1,\n",
      "          'yet': 1,\n",
      "          'stupendously': 1,\n",
      "          'plot': 1,\n",
      "          'knew': 1,\n",
      "          'suddenly': 1,\n",
      "          'errupts': 1,\n",
      "          'fine': 1,\n",
      "          'morning': 1,\n",
      "          'later': 1,\n",
      "          'stops': 1,\n",
      "          'dare': 1,\n",
      "          'say': 1,\n",
      "          'nl': 1,\n",
      "          'puts': 1,\n",
      "          'stereotypical': 1,\n",
      "          'ntheyre': 1,\n",
      "          'ones': 1,\n",
      "          'ntommy': 1,\n",
      "          'oscar': 1,\n",
      "          'winner': 1,\n",
      "          'member': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'vote': 1,\n",
      "          'coolest': 1,\n",
      "          'movie': 1,\n",
      "          'summer': 1,\n",
      "          'nanne': 1,\n",
      "          'heche': 1,\n",
      "          'indy': 1,\n",
      "          'actress': 1,\n",
      "          'ndon': 1,\n",
      "          'stole': 1,\n",
      "          'disappointing': 1,\n",
      "          'devil': 1,\n",
      "          'blue': 1,\n",
      "          'dress': 1,\n",
      "          'denzels': 1,\n",
      "          'feet': 1,\n",
      "          'teenage': 1,\n",
      "          'nothing': 1,\n",
      "          'act': 1,\n",
      "          'scream': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'bless': 1,\n",
      "          'theyre': 1,\n",
      "          'lost': 1,\n",
      "          'fake': 1,\n",
      "          'gets': 1,\n",
      "          'hes': 1,\n",
      "          'ntheres': 1,\n",
      "          'real': 1,\n",
      "          'suspense': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'anyone': 1,\n",
      "          'rooting': 1,\n",
      "          'character': 1,\n",
      "          'killed': 1,\n",
      "          'tommy': 1,\n",
      "          'wouldnt': 1,\n",
      "          'keep': 1,\n",
      "          'saving': 1,\n",
      "          'thirty': 1,\n",
      "          'times': 1,\n",
      "          'l': 1,\n",
      "          'npart': 1,\n",
      "          'whatever': 1,\n",
      "          'nin': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'judd': 1,\n",
      "          'hirsch': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'empire': 1,\n",
      "          'state': 1,\n",
      "          'building': 1,\n",
      "          'blown': 1,\n",
      "          'aliens': 1,\n",
      "          'nthat': 1,\n",
      "          'nwatching': 1,\n",
      "          'fakelooking': 1,\n",
      "          'plow': 1,\n",
      "          'street': 1,\n",
      "          'nokay': 1,\n",
      "          'devoid': 1,\n",
      "          'merit': 1,\n",
      "          'nas': 1,\n",
      "          'already': 1,\n",
      "          'stated': 1,\n",
      "          'cast': 1,\n",
      "          'moronic': 1,\n",
      "          'looks': 1,\n",
      "          'njohn': 1,\n",
      "          'carrol': 1,\n",
      "          'lynch': 1,\n",
      "          'norm': 1,\n",
      "          'fargo': 1,\n",
      "          'subway': 1,\n",
      "          'car': 1,\n",
      "          'save': 1,\n",
      "          'people': 1,\n",
      "          'comes': 1,\n",
      "          'surrounds': 1,\n",
      "          'whos': 1,\n",
      "          'wounded': 1,\n",
      "          'make': 1,\n",
      "          'still': 1,\n",
      "          'survive': 1,\n",
      "          'inanely': 1,\n",
      "          'land': 1,\n",
      "          'right': 1,\n",
      "          'middle': 1,\n",
      "          'melts': 1,\n",
      "          'somehow': 1,\n",
      "          'manages': 1,\n",
      "          'man': 1,\n",
      "          'safety': 1,\n",
      "          'legs': 1,\n",
      "          'melting': 1,\n",
      "          'ncool': 1,\n",
      "          'nno': 1,\n",
      "          'logic': 1,\n",
      "          'nthe': 1,\n",
      "          'twice': 1,\n",
      "          'reason': 1,\n",
      "          'ends': 1,\n",
      "          'arent': 1,\n",
      "          'worried': 1,\n",
      "          'eruting': 1,\n",
      "          'home': 1,\n",
      "          'homes': 1,\n",
      "          'tell': 1,\n",
      "          'truth': 1,\n",
      "          'glad': 1,\n",
      "          'didnt': 1,\n",
      "          'hoping': 1,\n",
      "          'eruption': 1,\n",
      "          'ended': 1,\n",
      "          'nmy': 1,\n",
      "          'painful': 1,\n",
      "          'sit': 1,\n",
      "          'little': 1,\n",
      "          '102': 1,\n",
      "          'minute': 1,\n",
      "          'long': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'dantes': 1,\n",
      "          'peak': 1,\n",
      "          'ive': 1,\n",
      "          'heard': 1,\n",
      "          'masterpiece': 1,\n",
      "          'compared': 1,\n",
      "          'thats': 1,\n",
      "          'rent': 1,\n",
      "          'towering': 1,\n",
      "          'inferno': 1,\n",
      "          'steve': 1,\n",
      "          'mcqueen': 1,\n",
      "          'paul': 1,\n",
      "          'newman': 1,\n",
      "          'schweppervescent': 1,\n",
      "          'j': 1,\n",
      "          'nsimpson': 1,\n",
      "          'saves': 1,\n",
      "          'cat': 1,\n",
      "          'waste': 1,\n",
      "          'boring': 1,\n",
      "          'literally': 1,\n",
      "          'almost': 1,\n",
      "          'grossed': 1,\n",
      "          'half': 1,\n",
      "          'budget': 1,\n",
      "          'warned': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tribe': 9,\n",
      "          'krippendorfs': 5,\n",
      "          'comedy': 5,\n",
      "          'new': 5,\n",
      "          'family': 4,\n",
      "          'effort': 4,\n",
      "          'film': 4,\n",
      "          'make': 3,\n",
      "          'way': 3,\n",
      "          'miss': 3,\n",
      "          'professor': 3,\n",
      "          'krippendorf': 3,\n",
      "          'discovery': 3,\n",
      "          'must': 3,\n",
      "          'overly': 3,\n",
      "          'history': 3,\n",
      "          'go': 3,\n",
      "          'nits': 3,\n",
      "          'parents': 2,\n",
      "          'adult': 2,\n",
      "          'approached': 2,\n",
      "          'unbalanced': 2,\n",
      "          'nthe': 2,\n",
      "          'spent': 2,\n",
      "          'two': 2,\n",
      "          'years': 2,\n",
      "          'key': 2,\n",
      "          'grant': 2,\n",
      "          'show': 2,\n",
      "          'nwith': 2,\n",
      "          'guinea': 2,\n",
      "          'finds': 2,\n",
      "          'lyonne': 2,\n",
      "          'micelli': 2,\n",
      "          'etc': 2,\n",
      "          'sociological': 2,\n",
      "          'books': 2,\n",
      "          'lecture': 2,\n",
      "          'something': 2,\n",
      "          'structure': 2,\n",
      "          'thru': 2,\n",
      "          'highly': 2,\n",
      "          'real': 2,\n",
      "          'youve': 2,\n",
      "          'got': 2,\n",
      "          'man': 2,\n",
      "          'meets': 2,\n",
      "          'one': 2,\n",
      "          'seems': 2,\n",
      "          'jungle': 2,\n",
      "          'merely': 2,\n",
      "          'yettobereleased': 1,\n",
      "          'marketed': 1,\n",
      "          'buyer': 1,\n",
      "          'beware': 1,\n",
      "          'nthis': 1,\n",
      "          'movie': 1,\n",
      "          'cant': 1,\n",
      "          'mind': 1,\n",
      "          'nis': 1,\n",
      "          'vulgar': 1,\n",
      "          'references': 1,\n",
      "          'male': 1,\n",
      "          'female': 1,\n",
      "          'bodies': 1,\n",
      "          'menstruation': 1,\n",
      "          'circumcision': 1,\n",
      "          'sex': 1,\n",
      "          'would': 1,\n",
      "          'squirm': 1,\n",
      "          'thought': 1,\n",
      "          'child': 1,\n",
      "          'next': 1,\n",
      "          'immaturity': 1,\n",
      "          'adolescents': 1,\n",
      "          'appreciate': 1,\n",
      "          'neither': 1,\n",
      "          'word': 1,\n",
      "          'stamp': 1,\n",
      "          'hit': 1,\n",
      "          'premise': 1,\n",
      "          'catchy': 1,\n",
      "          'widowed': 1,\n",
      "          'anthropology': 1,\n",
      "          'james': 1,\n",
      "          'richard': 1,\n",
      "          'dreyfuss': 1,\n",
      "          'past': 1,\n",
      "          'getting': 1,\n",
      "          'death': 1,\n",
      "          'wife': 1,\n",
      "          'neglecting': 1,\n",
      "          'research': 1,\n",
      "          'squandering': 1,\n",
      "          'money': 1,\n",
      "          'personal': 1,\n",
      "          'living': 1,\n",
      "          'expenses': 1,\n",
      "          'nnow': 1,\n",
      "          'time': 1,\n",
      "          'hes': 1,\n",
      "          'achieved': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'fabricated': 1,\n",
      "          'tale': 1,\n",
      "          'studying': 1,\n",
      "          'previously': 1,\n",
      "          'undiscovered': 1,\n",
      "          'petitions': 1,\n",
      "          'funds': 1,\n",
      "          'hiding': 1,\n",
      "          'fact': 1,\n",
      "          'previous': 1,\n",
      "          '100': 1,\n",
      "          '000': 1,\n",
      "          'trips': 1,\n",
      "          'mcdonalds': 1,\n",
      "          'nbut': 1,\n",
      "          'becomes': 1,\n",
      "          'latest': 1,\n",
      "          'craze': 1,\n",
      "          'among': 1,\n",
      "          'colleagues': 1,\n",
      "          'talk': 1,\n",
      "          'create': 1,\n",
      "          'aid': 1,\n",
      "          'three': 1,\n",
      "          'children': 1,\n",
      "          'headstrong': 1,\n",
      "          'teen': 1,\n",
      "          'shelly': 1,\n",
      "          'natasha': 1,\n",
      "          'everyone': 1,\n",
      "          'says': 1,\n",
      "          'love': 1,\n",
      "          'slightly': 1,\n",
      "          'younger': 1,\n",
      "          'mickey': 1,\n",
      "          'gregory': 1,\n",
      "          'smith': 1,\n",
      "          'nineyearold': 1,\n",
      "          'edmund': 1,\n",
      "          'carl': 1,\n",
      "          'michael': 1,\n",
      "          'lindner': 1,\n",
      "          'shelmikedmu': 1,\n",
      "          'named': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'childs': 1,\n",
      "          'name': 1,\n",
      "          'born': 1,\n",
      "          'videos': 1,\n",
      "          'quickly': 1,\n",
      "          'produced': 1,\n",
      "          'backyard': 1,\n",
      "          'passed': 1,\n",
      "          'stunning': 1,\n",
      "          'documentary': 1,\n",
      "          'footage': 1,\n",
      "          'newly': 1,\n",
      "          'found': 1,\n",
      "          'ndespite': 1,\n",
      "          'professors': 1,\n",
      "          'wishes': 1,\n",
      "          'buzz': 1,\n",
      "          'surrounding': 1,\n",
      "          'grows': 1,\n",
      "          'due': 1,\n",
      "          'greatest': 1,\n",
      "          'part': 1,\n",
      "          'veronica': 1,\n",
      "          'jenna': 1,\n",
      "          'elfman': 1,\n",
      "          'vivacious': 1,\n",
      "          'voluptuous': 1,\n",
      "          'anthropologist': 1,\n",
      "          'barges': 1,\n",
      "          'basically': 1,\n",
      "          'deems': 1,\n",
      "          'main': 1,\n",
      "          'assistant': 1,\n",
      "          'nhungry': 1,\n",
      "          'recognition': 1,\n",
      "          'sets': 1,\n",
      "          'interviews': 1,\n",
      "          'lectures': 1,\n",
      "          'biggest': 1,\n",
      "          'event': 1,\n",
      "          'sure': 1,\n",
      "          'fire': 1,\n",
      "          'nkrippendorf': 1,\n",
      "          'hand': 1,\n",
      "          'seeing': 1,\n",
      "          'jail': 1,\n",
      "          'cell': 1,\n",
      "          'corridor': 1,\n",
      "          'come': 1,\n",
      "          'impressive': 1,\n",
      "          'unleash': 1,\n",
      "          'mating': 1,\n",
      "          'habits': 1,\n",
      "          'domestic': 1,\n",
      "          'fumbling': 1,\n",
      "          'improvisation': 1,\n",
      "          'often': 1,\n",
      "          'quick': 1,\n",
      "          'thinking': 1,\n",
      "          'oldest': 1,\n",
      "          'son': 1,\n",
      "          'makes': 1,\n",
      "          'creates': 1,\n",
      "          'interest': 1,\n",
      "          'unique': 1,\n",
      "          'non': 1,\n",
      "          'opposing': 1,\n",
      "          'end': 1,\n",
      "          'arch': 1,\n",
      "          'rival': 1,\n",
      "          'ruth': 1,\n",
      "          'allen': 1,\n",
      "          'lily': 1,\n",
      "          'tomlin': 1,\n",
      "          'arrogant': 1,\n",
      "          'whose': 1,\n",
      "          'jealousy': 1,\n",
      "          'drives': 1,\n",
      "          'mission': 1,\n",
      "          'disprove': 1,\n",
      "          'existance': 1,\n",
      "          'nonexistent': 1,\n",
      "          'cute': 1,\n",
      "          'idea': 1,\n",
      "          'subtle': 1,\n",
      "          'mature': 1,\n",
      "          'style': 1,\n",
      "          'couldve': 1,\n",
      "          'winner': 1,\n",
      "          'nsadly': 1,\n",
      "          'mostlymisfired': 1,\n",
      "          'toilet': 1,\n",
      "          'humor': 1,\n",
      "          'comical': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'bruce': 1,\n",
      "          'broughton': 1,\n",
      "          'sugar': 1,\n",
      "          'coated': 1,\n",
      "          'sentiments': 1,\n",
      "          'ingredients': 1,\n",
      "          'arent': 1,\n",
      "          'right': 1,\n",
      "          'tone': 1,\n",
      "          'ncut': 1,\n",
      "          'crap': 1,\n",
      "          'add': 1,\n",
      "          'razor': 1,\n",
      "          'sharp': 1,\n",
      "          'dialogue': 1,\n",
      "          'witty': 1,\n",
      "          'perceptions': 1,\n",
      "          'good': 1,\n",
      "          'start': 1,\n",
      "          'nat': 1,\n",
      "          'state': 1,\n",
      "          'along': 1,\n",
      "          'lines': 1,\n",
      "          'medicine': 1,\n",
      "          'mrs': 1,\n",
      "          'ndoubtfire': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'thats': 1,\n",
      "          'concoction': 1,\n",
      "          'anyone': 1,\n",
      "          'anxious': 1,\n",
      "          'try': 1,\n",
      "          'overall': 1,\n",
      "          'product': 1,\n",
      "          'forgettable': 1,\n",
      "          'cup': 1,\n",
      "          'average': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'moments': 1,\n",
      "          'great': 1,\n",
      "          'big': 1,\n",
      "          'gap': 1,\n",
      "          'nmost': 1,\n",
      "          'characters': 1,\n",
      "          'surprisingly': 1,\n",
      "          'twodimensional': 1,\n",
      "          'exhibit': 1,\n",
      "          'acting': 1,\n",
      "          'greatly': 1,\n",
      "          'unappreciated': 1,\n",
      "          'ndirector': 1,\n",
      "          'todd': 1,\n",
      "          'holland': 1,\n",
      "          'gone': 1,\n",
      "          'making': 1,\n",
      "          'wrong': 1,\n",
      "          'ways': 1,\n",
      "          'stuck': 1,\n",
      "          'limbo': 1,\n",
      "          'disney': 1,\n",
      "          'fare': 1,\n",
      "          '2': 1,\n",
      "          'potentially': 1,\n",
      "          'hilarious': 1,\n",
      "          'fish': 1,\n",
      "          'called': 1,\n",
      "          'wanda': 1,\n",
      "          'really': 1,\n",
      "          'knocks': 1,\n",
      "          'grade': 1,\n",
      "          'brutal': 1,\n",
      "          'drop': 1,\n",
      "          'na': 1,\n",
      "          'strong': 1,\n",
      "          'warning': 1,\n",
      "          'forget': 1,\n",
      "          'impression': 1,\n",
      "          'given': 1,\n",
      "          'advertisements': 1,\n",
      "          'want': 1,\n",
      "          'take': 1,\n",
      "          'kids': 1,\n",
      "          'woman': 1,\n",
      "          'asking': 1,\n",
      "          'attractive': 1,\n",
      "          'shes': 1,\n",
      "          'holding': 1,\n",
      "          'penis': 1,\n",
      "          'nyes': 1,\n",
      "          'put': 1,\n",
      "          'bluntly': 1,\n",
      "          'njust': 1,\n",
      "          'warned': 1,\n",
      "          'example': 1,\n",
      "          'many': 1,\n",
      "          'shocking': 1,\n",
      "          'subjects': 1,\n",
      "          'brought': 1,\n",
      "          'others': 1,\n",
      "          'might': 1,\n",
      "          'tame': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mission': 9,\n",
      "          'mars': 8,\n",
      "          'space': 6,\n",
      "          'nthe': 4,\n",
      "          'de': 3,\n",
      "          'palma': 3,\n",
      "          'would': 3,\n",
      "          'nafter': 3,\n",
      "          'astronauts': 3,\n",
      "          'luc': 3,\n",
      "          'team': 3,\n",
      "          'final': 3,\n",
      "          'still': 2,\n",
      "          'movie': 2,\n",
      "          'digital': 2,\n",
      "          'somehow': 2,\n",
      "          'drama': 2,\n",
      "          'nbut': 2,\n",
      "          'one': 2,\n",
      "          'sequence': 2,\n",
      "          'colossal': 2,\n",
      "          'takes': 2,\n",
      "          'back': 2,\n",
      "          'visual': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'impossible': 2,\n",
      "          'pull': 2,\n",
      "          'although': 2,\n",
      "          'snake': 2,\n",
      "          'eyes': 2,\n",
      "          'want': 2,\n",
      "          'may': 2,\n",
      "          'words': 2,\n",
      "          'wouldnt': 2,\n",
      "          'nsinise': 2,\n",
      "          'wonderful': 2,\n",
      "          'sure': 2,\n",
      "          'nasa': 2,\n",
      "          'mcconnell': 2,\n",
      "          'wife': 2,\n",
      "          'planet': 2,\n",
      "          'probably': 2,\n",
      "          'sand': 2,\n",
      "          'tornado': 2,\n",
      "          'robbins': 2,\n",
      "          'nielsen': 2,\n",
      "          'oconnell': 2,\n",
      "          'secret': 2,\n",
      "          'trip': 2,\n",
      "          'months': 2,\n",
      "          'quite': 2,\n",
      "          'good': 2,\n",
      "          'scenes': 2,\n",
      "          'even': 2,\n",
      "          'well': 2,\n",
      "          'couple': 2,\n",
      "          'hours': 1,\n",
      "          'since': 1,\n",
      "          'returned': 1,\n",
      "          'much': 1,\n",
      "          'anticipated': 1,\n",
      "          'scifi': 1,\n",
      "          'opus': 1,\n",
      "          'detect': 1,\n",
      "          'reek': 1,\n",
      "          'moldy': 1,\n",
      "          'cheddar': 1,\n",
      "          'nwhy': 1,\n",
      "          'shoddy': 1,\n",
      "          'cheesefest': 1,\n",
      "          'full': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'stapled': 1,\n",
      "          'carelessly': 1,\n",
      "          'onto': 1,\n",
      "          'flimsy': 1,\n",
      "          'screenplay': 1,\n",
      "          'manages': 1,\n",
      "          'leapfrog': 1,\n",
      "          'great': 1,\n",
      "          'promise': 1,\n",
      "          'opera': 1,\n",
      "          'instead': 1,\n",
      "          'shooting': 1,\n",
      "          'angle': 1,\n",
      "          'feelgood': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'akin': 1,\n",
      "          '2001': 1,\n",
      "          'odyssey': 1,\n",
      "          'ni': 1,\n",
      "          'got': 1,\n",
      "          'feeling': 1,\n",
      "          'fellow': 1,\n",
      "          'moviegoing': 1,\n",
      "          'patrons': 1,\n",
      "          'expecting': 1,\n",
      "          'another': 1,\n",
      "          'armageddon': 1,\n",
      "          'certainly': 1,\n",
      "          'isnt': 1,\n",
      "          'large': 1,\n",
      "          'action': 1,\n",
      "          'disaster': 1,\n",
      "          'nthis': 1,\n",
      "          'supposedly': 1,\n",
      "          'thoughtful': 1,\n",
      "          'familyfriendly': 1,\n",
      "          'flick': 1,\n",
      "          'apocalyptic': 1,\n",
      "          'excitement': 1,\n",
      "          'seat': 1,\n",
      "          'elegance': 1,\n",
      "          'uplifting': 1,\n",
      "          'drivel': 1,\n",
      "          'nyou': 1,\n",
      "          'warned': 1,\n",
      "          'crafting': 1,\n",
      "          'tightly': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'see': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'excellent': 1,\n",
      "          'example': 1,\n",
      "          'directors': 1,\n",
      "          'possess': 1,\n",
      "          'skill': 1,\n",
      "          'craftsmanship': 1,\n",
      "          'without': 1,\n",
      "          'seriously': 1,\n",
      "          'scarring': 1,\n",
      "          'reputation': 1,\n",
      "          'nbrian': 1,\n",
      "          'enough': 1,\n",
      "          'directorial': 1,\n",
      "          'expertise': 1,\n",
      "          'wizardry': 1,\n",
      "          'sleeve': 1,\n",
      "          'nwhen': 1,\n",
      "          'gets': 1,\n",
      "          'hands': 1,\n",
      "          'intelligent': 1,\n",
      "          'systematically': 1,\n",
      "          'practical': 1,\n",
      "          'script': 1,\n",
      "          'like': 1,\n",
      "          'untouchables': 1,\n",
      "          'director': 1,\n",
      "          'ability': 1,\n",
      "          'create': 1,\n",
      "          'sound': 1,\n",
      "          'technical': 1,\n",
      "          'achievement': 1,\n",
      "          'overly': 1,\n",
      "          'indulgent': 1,\n",
      "          'style': 1,\n",
      "          'becomes': 1,\n",
      "          'bothersome': 1,\n",
      "          'occasionally': 1,\n",
      "          'theres': 1,\n",
      "          'also': 1,\n",
      "          'inexcusable': 1,\n",
      "          'string': 1,\n",
      "          'crap': 1,\n",
      "          'carried': 1,\n",
      "          'name': 1,\n",
      "          'including': 1,\n",
      "          'notorious': 1,\n",
      "          'bomb': 1,\n",
      "          'bonfire': 1,\n",
      "          'vanities': 1,\n",
      "          'nall': 1,\n",
      "          'makes': 1,\n",
      "          'call': 1,\n",
      "          'talented': 1,\n",
      "          'hack': 1,\n",
      "          'hollywood': 1,\n",
      "          'nthat': 1,\n",
      "          'term': 1,\n",
      "          'harsh': 1,\n",
      "          'judging': 1,\n",
      "          'solely': 1,\n",
      "          'perpetual': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'choice': 1,\n",
      "          'slightly': 1,\n",
      "          'less': 1,\n",
      "          'lenient': 1,\n",
      "          'nif': 1,\n",
      "          'gary': 1,\n",
      "          'sinise': 1,\n",
      "          'touch': 1,\n",
      "          '10foot': 1,\n",
      "          'pole': 1,\n",
      "          'actor': 1,\n",
      "          'appearing': 1,\n",
      "          'vomitinducing': 1,\n",
      "          'sham': 1,\n",
      "          'im': 1,\n",
      "          'risk': 1,\n",
      "          'embarrassment': 1,\n",
      "          'third': 1,\n",
      "          'collaboration': 1,\n",
      "          'academy': 1,\n",
      "          'awardwinner': 1,\n",
      "          'plays': 1,\n",
      "          'astronaut': 1,\n",
      "          'jim': 1,\n",
      "          'man': 1,\n",
      "          'recently': 1,\n",
      "          'lost': 1,\n",
      "          'kim': 1,\n",
      "          'delaney': 1,\n",
      "          'apparently': 1,\n",
      "          'psychologically': 1,\n",
      "          'unfit': 1,\n",
      "          'upcoming': 1,\n",
      "          'shuttle': 1,\n",
      "          'oops': 1,\n",
      "          'forgot': 1,\n",
      "          'mention': 1,\n",
      "          'year': 1,\n",
      "          '2020': 1,\n",
      "          'barbecue': 1,\n",
      "          'gettogether': 1,\n",
      "          'cut': 1,\n",
      "          'goddard': 1,\n",
      "          'cheadle': 1,\n",
      "          'already': 1,\n",
      "          'taking': 1,\n",
      "          'measurements': 1,\n",
      "          'calculations': 1,\n",
      "          'red': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'towering': 1,\n",
      "          'formation': 1,\n",
      "          'rocks': 1,\n",
      "          'soil': 1,\n",
      "          'best': 1,\n",
      "          'dubbed': 1,\n",
      "          'appears': 1,\n",
      "          'creates': 1,\n",
      "          'whirlwind': 1,\n",
      "          'suction': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'stand': 1,\n",
      "          'calmly': 1,\n",
      "          'admire': 1,\n",
      "          'lovely': 1,\n",
      "          'piece': 1,\n",
      "          'art': 1,\n",
      "          'killed': 1,\n",
      "          'within': 1,\n",
      "          'seconds': 1,\n",
      "          'expect': 1,\n",
      "          'able': 1,\n",
      "          'send': 1,\n",
      "          'transmission': 1,\n",
      "          'alive': 1,\n",
      "          'nimmediately': 1,\n",
      "          'second': 1,\n",
      "          'consisting': 1,\n",
      "          'husband': 1,\n",
      "          'woody': 1,\n",
      "          'terri': 1,\n",
      "          'blake': 1,\n",
      "          'tim': 1,\n",
      "          'connie': 1,\n",
      "          'phil': 1,\n",
      "          'ohlmyer': 1,\n",
      "          'jerry': 1,\n",
      "          'dispatched': 1,\n",
      "          'rescue': 1,\n",
      "          'discover': 1,\n",
      "          'mysterious': 1,\n",
      "          'nlets': 1,\n",
      "          'put': 1,\n",
      "          'hold': 1,\n",
      "          'discuss': 1,\n",
      "          'nit': 1,\n",
      "          'explained': 1,\n",
      "          'whether': 1,\n",
      "          'scientifically': 1,\n",
      "          'accurate': 1,\n",
      "          'roughly': 1,\n",
      "          'six': 1,\n",
      "          'nim': 1,\n",
      "          'quartet': 1,\n",
      "          'screenwriters': 1,\n",
      "          'behind': 1,\n",
      "          'm2m': 1,\n",
      "          'didnt': 1,\n",
      "          'capitalize': 1,\n",
      "          'juicy': 1,\n",
      "          'opportunity': 1,\n",
      "          'creating': 1,\n",
      "          'tension': 1,\n",
      "          'claustrophobia': 1,\n",
      "          'ninstead': 1,\n",
      "          'join': 1,\n",
      "          'days': 1,\n",
      "          'aboard': 1,\n",
      "          'ship': 1,\n",
      "          'nwhat': 1,\n",
      "          'happened': 1,\n",
      "          'five': 1,\n",
      "          'prior': 1,\n",
      "          'ndid': 1,\n",
      "          'play': 1,\n",
      "          'cards': 1,\n",
      "          'tell': 1,\n",
      "          'dirty': 1,\n",
      "          'jokes': 1,\n",
      "          'nstill': 1,\n",
      "          'nicely': 1,\n",
      "          'tense': 1,\n",
      "          'moments': 1,\n",
      "          'maybe': 1,\n",
      "          'timeframe': 1,\n",
      "          'involving': 1,\n",
      "          'fuel': 1,\n",
      "          'leak': 1,\n",
      "          'ndepalmas': 1,\n",
      "          'direction': 1,\n",
      "          'score': 1,\n",
      "          'ennio': 1,\n",
      "          'morricone': 1,\n",
      "          'largely': 1,\n",
      "          'inconsistent': 1,\n",
      "          'organ': 1,\n",
      "          'music': 1,\n",
      "          'ncmon': 1,\n",
      "          'ntheres': 1,\n",
      "          'imaginative': 1,\n",
      "          'ideas': 1,\n",
      "          'landslide': 1,\n",
      "          'cheese': 1,\n",
      "          'sad': 1,\n",
      "          'realization': 1,\n",
      "          'causes': 1,\n",
      "          'sigh': 1,\n",
      "          'loud': 1,\n",
      "          'nits': 1,\n",
      "          'bummer': 1,\n",
      "          'poorly': 1,\n",
      "          'assembled': 1,\n",
      "          'laughably': 1,\n",
      "          'written': 1,\n",
      "          'dubious': 1,\n",
      "          'supremely': 1,\n",
      "          'silly': 1,\n",
      "          'finale': 1,\n",
      "          'satisfy': 1,\n",
      "          'dedicated': 1,\n",
      "          'optimists': 1,\n",
      "          'nas': 1,\n",
      "          'mentioned': 1,\n",
      "          'anyone': 1,\n",
      "          'looking': 1,\n",
      "          'disastermovie': 1,\n",
      "          'carnage': 1,\n",
      "          'going': 1,\n",
      "          'feel': 1,\n",
      "          'savagely': 1,\n",
      "          'disappointed': 1,\n",
      "          'nmaybe': 1,\n",
      "          'cheated': 1,\n",
      "          'unbelievably': 1,\n",
      "          'hokey': 1,\n",
      "          'shot': 1,\n",
      "          'end': 1,\n",
      "          'adding': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'made': 1,\n",
      "          'effort': 1,\n",
      "          'boo': 1,\n",
      "          'hiss': 1,\n",
      "          'screen': 1,\n",
      "          'nothers': 1,\n",
      "          'muttered': 1,\n",
      "          'obscenities': 1,\n",
      "          'shaking': 1,\n",
      "          'heads': 1,\n",
      "          'disbelief': 1,\n",
      "          'mumbling': 1,\n",
      "          'jeez': 1,\n",
      "          'sucked': 1,\n",
      "          'nokay': 1,\n",
      "          'suck': 1,\n",
      "          'show': 1,\n",
      "          'actors': 1,\n",
      "          'sympathetic': 1,\n",
      "          'mercy': 1,\n",
      "          'pretty': 1,\n",
      "          'sincere': 1,\n",
      "          'effective': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'many': 1,\n",
      "          'wholeheartedly': 1,\n",
      "          'convince': 1,\n",
      "          'loving': 1,\n",
      "          'funnyman': 1,\n",
      "          'lines': 1,\n",
      "          'actually': 1,\n",
      "          'amusing': 1,\n",
      "          'intentionally': 1,\n",
      "          'effects': 1,\n",
      "          'accompanying': 1,\n",
      "          'impressive': 1,\n",
      "          'nso': 1,\n",
      "          'golly': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'nlooking': 1,\n",
      "          'appalling': 1,\n",
      "          'experience': 1,\n",
      "          'say': 1,\n",
      "          'practically': 1,\n",
      "          'every': 1,\n",
      "          'conduit': 1,\n",
      "          'crevasse': 1,\n",
      "          'could': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'suggestion': 1,\n",
      "          'immediately': 1,\n",
      "          'abort': 1,\n",
      "          'better': 1,\n",
      "          'yet': 1,\n",
      "          'dont': 1,\n",
      "          'strap': 1,\n",
      "          'liftoff': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'alien': 13,\n",
      "          'species': 6,\n",
      "          'patrick': 6,\n",
      "          'original': 5,\n",
      "          'effects': 4,\n",
      "          'time': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 3,\n",
      "          'back': 3,\n",
      "          'sil': 3,\n",
      "          'laura': 3,\n",
      "          'eve': 3,\n",
      "          'hes': 3,\n",
      "          'also': 3,\n",
      "          'nbut': 3,\n",
      "          'medak': 3,\n",
      "          'best': 3,\n",
      "          'visual': 2,\n",
      "          'big': 2,\n",
      "          'writing': 2,\n",
      "          'performances': 2,\n",
      "          'nso': 2,\n",
      "          'sequels': 2,\n",
      "          'yet': 2,\n",
      "          'nit': 2,\n",
      "          'ii': 2,\n",
      "          'something': 2,\n",
      "          'door': 2,\n",
      "          'left': 2,\n",
      "          'open': 2,\n",
      "          'quite': 2,\n",
      "          'earth': 2,\n",
      "          'body': 2,\n",
      "          'im': 2,\n",
      "          'installment': 2,\n",
      "          'crew': 2,\n",
      "          'returning': 2,\n",
      "          'within': 2,\n",
      "          'deadly': 2,\n",
      "          'dna': 2,\n",
      "          'lazard': 2,\n",
      "          'created': 2,\n",
      "          'films': 2,\n",
      "          'like': 2,\n",
      "          'sex': 2,\n",
      "          'find': 2,\n",
      "          'henstridge': 2,\n",
      "          'another': 2,\n",
      "          'presence': 2,\n",
      "          'press': 2,\n",
      "          'madsen': 2,\n",
      "          'patricks': 2,\n",
      "          'character': 2,\n",
      "          'first': 2,\n",
      "          'awful': 2,\n",
      "          'director': 2,\n",
      "          'brancato': 2,\n",
      "          'already': 2,\n",
      "          'much': 2,\n",
      "          'originals': 2,\n",
      "          'tongue': 2,\n",
      "          'na': 2,\n",
      "          'large': 2,\n",
      "          'nat': 2,\n",
      "          'shes': 2,\n",
      "          'whitaker': 2,\n",
      "          'featured': 2,\n",
      "          'takes': 2,\n",
      "          'film': 2,\n",
      "          'rest': 2,\n",
      "          'problem': 2,\n",
      "          'worst': 2,\n",
      "          'effort': 2,\n",
      "          'despite': 1,\n",
      "          'exceedingly': 1,\n",
      "          'welldone': 1,\n",
      "          '1995s': 1,\n",
      "          'hunk': 1,\n",
      "          'scifi': 1,\n",
      "          'cheese': 1,\n",
      "          'feeble': 1,\n",
      "          'coming': 1,\n",
      "          'bgrade': 1,\n",
      "          'roots': 1,\n",
      "          'stunning': 1,\n",
      "          'ineptitude': 1,\n",
      "          'terribly': 1,\n",
      "          'surprising': 1,\n",
      "          'would': 1,\n",
      "          'difficult': 1,\n",
      "          'people': 1,\n",
      "          'behind': 1,\n",
      "          'top': 1,\n",
      "          'hokey': 1,\n",
      "          'somehow': 1,\n",
      "          'managed': 1,\n",
      "          'fabricate': 1,\n",
      "          'bad': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'nsomething': 1,\n",
      "          'clearly': 1,\n",
      "          'amiss': 1,\n",
      "          'sequel': 1,\n",
      "          'speciesa': 1,\n",
      "          'sewer': 1,\n",
      "          'rat': 1,\n",
      "          'becomes': 1,\n",
      "          'eating': 1,\n",
      "          'part': 1,\n",
      "          'exploded': 1,\n",
      "          'alienhuman': 1,\n",
      "          'hybrid': 1,\n",
      "          'silis': 1,\n",
      "          'never': 1,\n",
      "          'entered': 1,\n",
      "          'perhaps': 1,\n",
      "          'iiithough': 1,\n",
      "          'giving': 1,\n",
      "          'away': 1,\n",
      "          'anything': 1,\n",
      "          'say': 1,\n",
      "          'fun': 1,\n",
      "          'games': 1,\n",
      "          'begin': 1,\n",
      "          'threeperson': 1,\n",
      "          'astronaut': 1,\n",
      "          'mars': 1,\n",
      "          'inadvertently': 1,\n",
      "          'carries': 1,\n",
      "          'soil': 1,\n",
      "          'samples': 1,\n",
      "          'eventually': 1,\n",
      "          'infects': 1,\n",
      "          'mission': 1,\n",
      "          'captain': 1,\n",
      "          'ross': 1,\n",
      "          'justin': 1,\n",
      "          'late': 1,\n",
      "          'cbss': 1,\n",
      "          'shortlived': 1,\n",
      "          'soap': 1,\n",
      "          'years': 1,\n",
      "          'central': 1,\n",
      "          'park': 1,\n",
      "          'westcpw': 1,\n",
      "          'nthis': 1,\n",
      "          'identical': 1,\n",
      "          'close': 1,\n",
      "          'enough': 1,\n",
      "          'upon': 1,\n",
      "          'arrival': 1,\n",
      "          'mating': 1,\n",
      "          'crazy': 1,\n",
      "          'engaging': 1,\n",
      "          'bloody': 1,\n",
      "          'every': 1,\n",
      "          'woman': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'scientist': 1,\n",
      "          'dr': 1,\n",
      "          'baker': 1,\n",
      "          'marg': 1,\n",
      "          'helgenberger': 1,\n",
      "          'clone': 1,\n",
      "          'named': 1,\n",
      "          'natasha': 1,\n",
      "          'research': 1,\n",
      "          'purposes': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'long': 1,\n",
      "          'sense': 1,\n",
      "          'send': 1,\n",
      "          'libido': 1,\n",
      "          'hyperdrive': 1,\n",
      "          'nits': 1,\n",
      "          'former': 1,\n",
      "          'partner': 1,\n",
      "          'bounty': 1,\n",
      "          'hunter': 1,\n",
      "          'lennox': 1,\n",
      "          'michael': 1,\n",
      "          'returnee': 1,\n",
      "          'uninfected': 1,\n",
      "          'shipmate': 1,\n",
      "          'dennis': 1,\n",
      "          'gamble': 1,\n",
      "          'mykelti': 1,\n",
      "          'williamson': 1,\n",
      "          'inheat': 1,\n",
      "          'n': 1,\n",
      "          'isnt': 1,\n",
      "          'xfiles': 1,\n",
      "          'goddammit': 1,\n",
      "          'nexclaims': 1,\n",
      "          'early': 1,\n",
      "          'going': 1,\n",
      "          'nin': 1,\n",
      "          'terms': 1,\n",
      "          'quality': 1,\n",
      "          'absolutely': 1,\n",
      "          'right': 1,\n",
      "          'wrong': 1,\n",
      "          'new': 1,\n",
      "          'appears': 1,\n",
      "          'otherworldly': 1,\n",
      "          'oozing': 1,\n",
      "          'sludge': 1,\n",
      "          'causes': 1,\n",
      "          'pupils': 1,\n",
      "          'dilate': 1,\n",
      "          'infected': 1,\n",
      "          'nlooks': 1,\n",
      "          'sounds': 1,\n",
      "          'lot': 1,\n",
      "          'xfiless': 1,\n",
      "          'black': 1,\n",
      "          'cancer': 1,\n",
      "          'thats': 1,\n",
      "          'source': 1,\n",
      "          'peter': 1,\n",
      "          'writer': 1,\n",
      "          'chris': 1,\n",
      "          'steal': 1,\n",
      "          'nspecies': 1,\n",
      "          'ripoff': 1,\n",
      "          'makes': 1,\n",
      "          'cribbing': 1,\n",
      "          'blatant': 1,\n",
      "          'roger': 1,\n",
      "          'donaldson': 1,\n",
      "          'nhuman': 1,\n",
      "          'given': 1,\n",
      "          'form': 1,\n",
      "          'closely': 1,\n",
      "          'resembles': 1,\n",
      "          'eves': 1,\n",
      "          'ironically': 1,\n",
      "          'designed': 1,\n",
      "          'designer': 1,\n",
      "          'h': 1,\n",
      "          'r': 1,\n",
      "          'giger': 1,\n",
      "          'hive': 1,\n",
      "          'heros': 1,\n",
      "          'douse': 1,\n",
      "          'substance': 1,\n",
      "          'fired': 1,\n",
      "          'guns': 1,\n",
      "          'naliens': 1,\n",
      "          'sans': 1,\n",
      "          'flamethrowers': 1,\n",
      "          'far': 1,\n",
      "          'thing': 1,\n",
      "          'steve': 1,\n",
      "          'johnsons': 1,\n",
      "          'xfx': 1,\n",
      "          'inc': 1,\n",
      "          'keeps': 1,\n",
      "          'highquality': 1,\n",
      "          'tradition': 1,\n",
      "          'alive': 1,\n",
      "          'cheaplooking': 1,\n",
      "          'lost': 1,\n",
      "          'space': 1,\n",
      "          'cgi': 1,\n",
      "          'nafter': 1,\n",
      "          'asset': 1,\n",
      "          'fresh': 1,\n",
      "          'nhowever': 1,\n",
      "          'idea': 1,\n",
      "          'exactly': 1,\n",
      "          'point': 1,\n",
      "          'called': 1,\n",
      "          'play': 1,\n",
      "          'empath': 1,\n",
      "          'la': 1,\n",
      "          'forest': 1,\n",
      "          'duration': 1,\n",
      "          'holed': 1,\n",
      "          'glass': 1,\n",
      "          'cell': 1,\n",
      "          'nby': 1,\n",
      "          'breakout': 1,\n",
      "          'prominently': 1,\n",
      "          'trailer': 1,\n",
      "          'actually': 1,\n",
      "          'place': 1,\n",
      "          'well': 1,\n",
      "          'home': 1,\n",
      "          'stretch': 1,\n",
      "          'treated': 1,\n",
      "          'played': 1,\n",
      "          'little': 1,\n",
      "          'zest': 1,\n",
      "          'none': 1,\n",
      "          'horny': 1,\n",
      "          'innocentatheart': 1,\n",
      "          'sympathetic': 1,\n",
      "          'comes': 1,\n",
      "          'cocky': 1,\n",
      "          'pretty': 1,\n",
      "          'boy': 1,\n",
      "          'control': 1,\n",
      "          'cast': 1,\n",
      "          'fails': 1,\n",
      "          'add': 1,\n",
      "          'faulted': 1,\n",
      "          'nhelgenberger': 1,\n",
      "          'go': 1,\n",
      "          'motions': 1,\n",
      "          'hampered': 1,\n",
      "          'clich': 1,\n",
      "          'development': 1,\n",
      "          'somewhere': 1,\n",
      "          'two': 1,\n",
      "          'oncelinked': 1,\n",
      "          'stopped': 1,\n",
      "          'getting': 1,\n",
      "          'along': 1,\n",
      "          'nwilliamson': 1,\n",
      "          'suffers': 1,\n",
      "          'indignity': 1,\n",
      "          'nhe': 1,\n",
      "          'tries': 1,\n",
      "          'enliven': 1,\n",
      "          'token': 1,\n",
      "          'africanamerican': 1,\n",
      "          'role': 1,\n",
      "          'anyone': 1,\n",
      "          'recite': 1,\n",
      "          'insulting': 1,\n",
      "          'derivative': 1,\n",
      "          'lines': 1,\n",
      "          'gon': 1,\n",
      "          'get': 1,\n",
      "          'african': 1,\n",
      "          'someones': 1,\n",
      "          'ass': 1,\n",
      "          'appear': 1,\n",
      "          'ridiculous': 1,\n",
      "          'iis': 1,\n",
      "          'crime': 1,\n",
      "          'thoroughly': 1,\n",
      "          'uninteresting': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'least': 1,\n",
      "          'plenty': 1,\n",
      "          'laugh': 1,\n",
      "          'atunaccountably': 1,\n",
      "          'otherwise': 1,\n",
      "          'fine': 1,\n",
      "          'actors': 1,\n",
      "          'ben': 1,\n",
      "          'kingsley': 1,\n",
      "          'sight': 1,\n",
      "          'helgenbergers': 1,\n",
      "          'performing': 1,\n",
      "          'fellatio': 1,\n",
      "          'madsens': 1,\n",
      "          'start': 1,\n",
      "          'filmmakers': 1,\n",
      "          'display': 1,\n",
      "          'discernable': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'misguided': 1,\n",
      "          'required': 1,\n",
      "          'reach': 1,\n",
      "          'camp': 1,\n",
      "          'level': 1,\n",
      "          'nfor': 1,\n",
      "          'blood': 1,\n",
      "          'gore': 1,\n",
      "          'nudity': 1,\n",
      "          'thrown': 1,\n",
      "          'simply': 1,\n",
      "          'vapid': 1,\n",
      "          'bore': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'franciss': 8,\n",
      "          'francis': 7,\n",
      "          'movie': 6,\n",
      "          'george': 5,\n",
      "          'nthe': 4,\n",
      "          'director': 3,\n",
      "          'love': 3,\n",
      "          'devil': 3,\n",
      "          'nas': 3,\n",
      "          'film': 3,\n",
      "          'man': 3,\n",
      "          'sex': 3,\n",
      "          'nhe': 3,\n",
      "          'n': 3,\n",
      "          'marvelous': 2,\n",
      "          'jacobi': 2,\n",
      "          'tries': 2,\n",
      "          'vain': 2,\n",
      "          'never': 2,\n",
      "          'nwhen': 2,\n",
      "          'style': 2,\n",
      "          'sound': 2,\n",
      "          'camera': 2,\n",
      "          'shots': 2,\n",
      "          'heavy': 2,\n",
      "          'filmed': 2,\n",
      "          'much': 2,\n",
      "          'interested': 2,\n",
      "          'bed': 2,\n",
      "          'bloody': 2,\n",
      "          'complete': 2,\n",
      "          'nwe': 2,\n",
      "          'learn': 2,\n",
      "          'little': 2,\n",
      "          'nfranciss': 2,\n",
      "          'sadomasochism': 2,\n",
      "          'boxing': 2,\n",
      "          'head': 2,\n",
      "          'audience': 2,\n",
      "          'one': 2,\n",
      "          'optimistic': 2,\n",
      "          'british': 1,\n",
      "          'actor': 1,\n",
      "          'derek': 1,\n",
      "          'stars': 1,\n",
      "          'writer': 1,\n",
      "          'john': 1,\n",
      "          'mayburys': 1,\n",
      "          'popular': 1,\n",
      "          'modern': 1,\n",
      "          'artist': 1,\n",
      "          'bacon': 1,\n",
      "          'always': 1,\n",
      "          'jacobis': 1,\n",
      "          'acting': 1,\n",
      "          'impeccable': 1,\n",
      "          'hard': 1,\n",
      "          'succeeds': 1,\n",
      "          'unentertaining': 1,\n",
      "          'opaque': 1,\n",
      "          'convincingly': 1,\n",
      "          'argues': 1,\n",
      "          'played': 1,\n",
      "          'completely': 1,\n",
      "          'despicable': 1,\n",
      "          'individual': 1,\n",
      "          'provides': 1,\n",
      "          'insight': 1,\n",
      "          'work': 1,\n",
      "          'motivation': 1,\n",
      "          'attitude': 1,\n",
      "          'interviewed': 1,\n",
      "          'fawning': 1,\n",
      "          'talk': 1,\n",
      "          'show': 1,\n",
      "          'host': 1,\n",
      "          'calls': 1,\n",
      "          'chance': 1,\n",
      "          'brushstrokes': 1,\n",
      "          'nstarting': 1,\n",
      "          'burglary': 1,\n",
      "          'flat': 1,\n",
      "          'uses': 1,\n",
      "          'loud': 1,\n",
      "          'effects': 1,\n",
      "          'like': 1,\n",
      "          'lifted': 1,\n",
      "          'cheap': 1,\n",
      "          'horror': 1,\n",
      "          'avantgarde': 1,\n",
      "          'angles': 1,\n",
      "          'lots': 1,\n",
      "          'wideangle': 1,\n",
      "          'closeups': 1,\n",
      "          'distorted': 1,\n",
      "          'coloredglass': 1,\n",
      "          'reflections': 1,\n",
      "          'filmmaking': 1,\n",
      "          'substance': 1,\n",
      "          'story': 1,\n",
      "          'result': 1,\n",
      "          'sterile': 1,\n",
      "          'examination': 1,\n",
      "          'lonely': 1,\n",
      "          'ndaniel': 1,\n",
      "          'craig': 1,\n",
      "          'lifeless': 1,\n",
      "          'performance': 1,\n",
      "          'plays': 1,\n",
      "          'burglar': 1,\n",
      "          'boxer': 1,\n",
      "          'dyer': 1,\n",
      "          'lays': 1,\n",
      "          'eyes': 1,\n",
      "          'breakin': 1,\n",
      "          'promises': 1,\n",
      "          'call': 1,\n",
      "          'police': 1,\n",
      "          'hell': 1,\n",
      "          'stay': 1,\n",
      "          'stays': 1,\n",
      "          'entire': 1,\n",
      "          'respects': 1,\n",
      "          'shares': 1,\n",
      "          'thinks': 1,\n",
      "          'paintings': 1,\n",
      "          'use': 1,\n",
      "          'presents': 1,\n",
      "          'counterargument': 1,\n",
      "          'nwriter': 1,\n",
      "          'maybury': 1,\n",
      "          'barely': 1,\n",
      "          'outlines': 1,\n",
      "          'character': 1,\n",
      "          'rest': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'remain': 1,\n",
      "          'enigma': 1,\n",
      "          'reason': 1,\n",
      "          'liking': 1,\n",
      "          'georges': 1,\n",
      "          'amorality': 1,\n",
      "          'innocence': 1,\n",
      "          'shown': 1,\n",
      "          'early': 1,\n",
      "          'often': 1,\n",
      "          'aperitif': 1,\n",
      "          'reflects': 1,\n",
      "          'way': 1,\n",
      "          'watch': 1,\n",
      "          'match': 1,\n",
      "          'fighters': 1,\n",
      "          'sliced': 1,\n",
      "          'open': 1,\n",
      "          'blow': 1,\n",
      "          'cuts': 1,\n",
      "          'gleeful': 1,\n",
      "          'whose': 1,\n",
      "          'soaked': 1,\n",
      "          'flying': 1,\n",
      "          'blood': 1,\n",
      "          'nfrancis': 1,\n",
      "          'appears': 1,\n",
      "          'ecstasy': 1,\n",
      "          'nanother': 1,\n",
      "          'favorite': 1,\n",
      "          'activities': 1,\n",
      "          'viewing': 1,\n",
      "          'old': 1,\n",
      "          'movies': 1,\n",
      "          'atrocities': 1,\n",
      "          'carnage': 1,\n",
      "          'mounts': 1,\n",
      "          'witness': 1,\n",
      "          'orgasmically': 1,\n",
      "          'happy': 1,\n",
      "          'nin': 1,\n",
      "          'obsessively': 1,\n",
      "          'shock': 1,\n",
      "          'dream': 1,\n",
      "          'sequence': 1,\n",
      "          'portrays': 1,\n",
      "          'family': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'mind': 1,\n",
      "          'slowly': 1,\n",
      "          'examines': 1,\n",
      "          'every': 1,\n",
      "          'limb': 1,\n",
      "          'mother': 1,\n",
      "          'father': 1,\n",
      "          'boy': 1,\n",
      "          'nsometimes': 1,\n",
      "          'script': 1,\n",
      "          'throws': 1,\n",
      "          'us': 1,\n",
      "          'tidbits': 1,\n",
      "          'wisdom': 1,\n",
      "          'illuminate': 1,\n",
      "          'merely': 1,\n",
      "          'sounding': 1,\n",
      "          'insightful': 1,\n",
      "          'im': 1,\n",
      "          'nature': 1,\n",
      "          'nim': 1,\n",
      "          'nothing': 1,\n",
      "          'loneliness': 1,\n",
      "          'true': 1,\n",
      "          'companion': 1,\n",
      "          'details': 1,\n",
      "          'makeup': 1,\n",
      "          'techniques': 1,\n",
      "          'prefers': 1,\n",
      "          'shoe': 1,\n",
      "          'polish': 1,\n",
      "          'hair': 1,\n",
      "          'sink': 1,\n",
      "          'cleaning': 1,\n",
      "          'powder': 1,\n",
      "          'teeth': 1,\n",
      "          'nfull': 1,\n",
      "          'metaphorical': 1,\n",
      "          'interpretations': 1,\n",
      "          'films': 1,\n",
      "          'best': 1,\n",
      "          'scene': 1,\n",
      "          'occurs': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'get': 1,\n",
      "          'go': 1,\n",
      "          'bathroom': 1,\n",
      "          'nmistaking': 1,\n",
      "          'picture': 1,\n",
      "          'toilet': 1,\n",
      "          'genuine': 1,\n",
      "          'article': 1,\n",
      "          'urinates': 1,\n",
      "          'crawls': 1,\n",
      "          'back': 1,\n",
      "          'contentedly': 1,\n",
      "          'nlike': 1,\n",
      "          'parody': 1,\n",
      "          'bad': 1,\n",
      "          'art': 1,\n",
      "          'house': 1,\n",
      "          'horrid': 1,\n",
      "          'characters': 1,\n",
      "          'bizarrely': 1,\n",
      "          'confusingly': 1,\n",
      "          'technique': 1,\n",
      "          'storytelling': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'hasnt': 1,\n",
      "          'learned': 1,\n",
      "          'could': 1,\n",
      "          'threeminute': 1,\n",
      "          'sketch': 1,\n",
      "          'nlove': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '30': 1,\n",
      "          'rated': 1,\n",
      "          'considered': 1,\n",
      "          'nc17': 1,\n",
      "          'violence': 1,\n",
      "          'profanity': 1,\n",
      "          'graphic': 1,\n",
      "          'nudity': 1,\n",
      "          'unacceptable': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'payback': 5,\n",
      "          'gibson': 3,\n",
      "          'get': 3,\n",
      "          'every': 3,\n",
      "          'would': 3,\n",
      "          'like': 3,\n",
      "          '1997s': 2,\n",
      "          'takes': 2,\n",
      "          'one': 2,\n",
      "          'movie': 2,\n",
      "          'violence': 2,\n",
      "          'death': 2,\n",
      "          'away': 2,\n",
      "          'anyone': 2,\n",
      "          'porter': 2,\n",
      "          'back': 2,\n",
      "          'dead': 2,\n",
      "          'root': 2,\n",
      "          'bad': 2,\n",
      "          'guy': 2,\n",
      "          'sure': 2,\n",
      "          'character': 2,\n",
      "          'appears': 2,\n",
      "          'way': 2,\n",
      "          'time': 2,\n",
      "          'made': 2,\n",
      "          'characters': 2,\n",
      "          'didnt': 2,\n",
      "          'stand': 2,\n",
      "          'plays': 2,\n",
      "          'since': 2,\n",
      "          'role': 2,\n",
      "          'least': 2,\n",
      "          'took': 2,\n",
      "          'part': 2,\n",
      "          'film': 2,\n",
      "          'though': 2,\n",
      "          'even': 2,\n",
      "          'could': 2,\n",
      "          'brian': 1,\n",
      "          'helgelands': 1,\n",
      "          'inauspicious': 1,\n",
      "          'directing': 1,\n",
      "          'debut': 1,\n",
      "          'coincidentally': 1,\n",
      "          'previously': 1,\n",
      "          'penned': 1,\n",
      "          'awardwinning': 1,\n",
      "          'screenplay': 1,\n",
      "          'l': 1,\n",
      "          'confidential': 1,\n",
      "          'wildly': 1,\n",
      "          'uneven': 1,\n",
      "          'thoroughly': 1,\n",
      "          'unpleasant': 1,\n",
      "          'revenge': 1,\n",
      "          'thriller': 1,\n",
      "          'ideaa': 1,\n",
      "          'nonstop': 1,\n",
      "          'villainsand': 1,\n",
      "          'runs': 1,\n",
      "          'say': 1,\n",
      "          'barely': 1,\n",
      "          'manages': 1,\n",
      "          'crawl': 1,\n",
      "          'nmel': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'disappointing': 1,\n",
      "          'picture': 1,\n",
      "          'conspiracy': 1,\n",
      "          'theory': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          '4': 1,\n",
      "          'stars': 1,\n",
      "          'reprehensible': 1,\n",
      "          'villainhero': 1,\n",
      "          'man': 1,\n",
      "          'becomes': 1,\n",
      "          'determined': 1,\n",
      "          '50': 1,\n",
      "          'share': 1,\n",
      "          '140': 1,\n",
      "          '000': 1,\n",
      "          'stole': 1,\n",
      "          'robbery': 1,\n",
      "          'partnerincrime': 1,\n",
      "          'gregg': 1,\n",
      "          'henry': 1,\n",
      "          'drugaddicted': 1,\n",
      "          'wife': 1,\n",
      "          'deborah': 1,\n",
      "          'kara': 1,\n",
      "          'unger': 1,\n",
      "          'doublecross': 1,\n",
      "          'shoot': 1,\n",
      "          'leave': 1,\n",
      "          'nporter': 1,\n",
      "          'howevernot': 1,\n",
      "          'long': 1,\n",
      "          'shotas': 1,\n",
      "          'quickly': 1,\n",
      "          'rehabilitates': 1,\n",
      "          'along': 1,\n",
      "          'loyal': 1,\n",
      "          'prositute': 1,\n",
      "          'girlfriend': 1,\n",
      "          'rosie': 1,\n",
      "          'maria': 1,\n",
      "          'bello': 1,\n",
      "          'sets': 1,\n",
      "          'make': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'scam': 1,\n",
      "          'pay': 1,\n",
      "          'nthe': 1,\n",
      "          'tagline': 1,\n",
      "          'ready': 1,\n",
      "          'enough': 1,\n",
      "          'true': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'significant': 1,\n",
      "          'crooked': 1,\n",
      "          'ni': 1,\n",
      "          'wouldnt': 1,\n",
      "          'problem': 1,\n",
      "          'offbeat': 1,\n",
      "          'detail': 1,\n",
      "          'painfully': 1,\n",
      "          'thin': 1,\n",
      "          'story': 1,\n",
      "          'interest': 1,\n",
      "          'wasnt': 1,\n",
      "          'therefore': 1,\n",
      "          'found': 1,\n",
      "          'especially': 1,\n",
      "          'laborious': 1,\n",
      "          'investing': 1,\n",
      "          'wide': 1,\n",
      "          'array': 1,\n",
      "          'absolutely': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nno': 1,\n",
      "          'attempt': 1,\n",
      "          'flesh': 1,\n",
      "          'roles': 1,\n",
      "          'threedimensional': 1,\n",
      "          'vacant': 1,\n",
      "          'signs': 1,\n",
      "          'sort': 1,\n",
      "          'humanity': 1,\n",
      "          'njust': 1,\n",
      "          'protagonist': 1,\n",
      "          'played': 1,\n",
      "          'mel': 1,\n",
      "          'doesnt': 1,\n",
      "          'mean': 1,\n",
      "          'nquite': 1,\n",
      "          'contrary': 1,\n",
      "          'person': 1,\n",
      "          'deserved': 1,\n",
      "          'die': 1,\n",
      "          'gory': 1,\n",
      "          'although': 1,\n",
      "          'anyway': 1,\n",
      "          'spice': 1,\n",
      "          'dull': 1,\n",
      "          'proceedings': 1,\n",
      "          'nsince': 1,\n",
      "          'none': 1,\n",
      "          'respectable': 1,\n",
      "          'actors': 1,\n",
      "          'actually': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'play': 1,\n",
      "          'performance': 1,\n",
      "          'managed': 1,\n",
      "          'nlucy': 1,\n",
      "          'alexis': 1,\n",
      "          'liu': 1,\n",
      "          'v': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'spicy': 1,\n",
      "          'sm': 1,\n",
      "          'dominatrix': 1,\n",
      "          'brightens': 1,\n",
      "          'scene': 1,\n",
      "          'definite': 1,\n",
      "          'flair': 1,\n",
      "          'comedy': 1,\n",
      "          'something': 1,\n",
      "          'liked': 1,\n",
      "          'seen': 1,\n",
      "          'humor': 1,\n",
      "          'fell': 1,\n",
      "          'resounding': 1,\n",
      "          'splat': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'perfectly': 1,\n",
      "          'fine': 1,\n",
      "          'sleepwalks': 1,\n",
      "          'bit': 1,\n",
      "          'challenging': 1,\n",
      "          'nunger': 1,\n",
      "          'impression': 1,\n",
      "          'game': 1,\n",
      "          'surprisingly': 1,\n",
      "          'wasted': 1,\n",
      "          'difficult': 1,\n",
      "          'see': 1,\n",
      "          'disappears': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'two': 1,\n",
      "          'purproses': 1,\n",
      "          '1': 1,\n",
      "          'high': 1,\n",
      "          'heroin': 1,\n",
      "          '2': 1,\n",
      "          'key': 1,\n",
      "          'early': 1,\n",
      "          'flashback': 1,\n",
      "          'nfinally': 1,\n",
      "          'kris': 1,\n",
      "          'kristofferson': 1,\n",
      "          'throwaway': 1,\n",
      "          'climax': 1,\n",
      "          'unnecessary': 1,\n",
      "          'plot': 1,\n",
      "          'development': 1,\n",
      "          'sticks': 1,\n",
      "          'sore': 1,\n",
      "          'thumb': 1,\n",
      "          'tellingly': 1,\n",
      "          'appear': 1,\n",
      "          'original': 1,\n",
      "          'cut': 1,\n",
      "          'cast': 1,\n",
      "          'extensive': 1,\n",
      "          'reshoots': 1,\n",
      "          'place': 1,\n",
      "          'months': 1,\n",
      "          'later': 1,\n",
      "          'nlike': 1,\n",
      "          'action': 1,\n",
      "          'movies': 1,\n",
      "          'star': 1,\n",
      "          'often': 1,\n",
      "          'licking': 1,\n",
      "          'keeps': 1,\n",
      "          'ticking': 1,\n",
      "          'nin': 1,\n",
      "          'course': 1,\n",
      "          '102minute': 1,\n",
      "          'running': 1,\n",
      "          'shot': 1,\n",
      "          'three': 1,\n",
      "          'times': 1,\n",
      "          'hit': 1,\n",
      "          'van': 1,\n",
      "          'beaten': 1,\n",
      "          'feet': 1,\n",
      "          'smashed': 1,\n",
      "          'sledgehammer': 1,\n",
      "          'nand': 1,\n",
      "          'guess': 1,\n",
      "          'nnot': 1,\n",
      "          'survive': 1,\n",
      "          'whole': 1,\n",
      "          'ordeal': 1,\n",
      "          'happygolucky': 1,\n",
      "          'penultimate': 1,\n",
      "          'sequence': 1,\n",
      "          'still': 1,\n",
      "          'walk': 1,\n",
      "          'neven': 1,\n",
      "          'looks': 1,\n",
      "          'recently': 1,\n",
      "          'substituted': 1,\n",
      "          'punching': 1,\n",
      "          'bag': 1,\n",
      "          'n': 1,\n",
      "          'entertaining': 1,\n",
      "          'makers': 1,\n",
      "          'hoped': 1,\n",
      "          'graphic': 1,\n",
      "          'carnage': 1,\n",
      "          'goes': 1,\n",
      "          'take': 1,\n",
      "          'basically': 1,\n",
      "          'left': 1,\n",
      "          'blank': 1,\n",
      "          'screen': 1,\n",
      "          'nperhaps': 1,\n",
      "          'director': 1,\n",
      "          'helgeland': 1,\n",
      "          'smart': 1,\n",
      "          'consider': 1,\n",
      "          'added': 1,\n",
      "          'worthwhile': 1,\n",
      "          'elements': 1,\n",
      "          'fresh': 1,\n",
      "          'storyline': 1,\n",
      "          'remotely': 1,\n",
      "          'around': 1,\n",
      "          'hours': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'nthe': 7,\n",
      "          'g': 7,\n",
      "          'film': 7,\n",
      "          'dont': 6,\n",
      "          'people': 6,\n",
      "          'like': 6,\n",
      "          'feel': 5,\n",
      "          'first': 5,\n",
      "          'even': 5,\n",
      "          'man': 5,\n",
      "          'one': 4,\n",
      "          'good': 4,\n",
      "          'holy': 4,\n",
      "          'plot': 3,\n",
      "          'sales': 3,\n",
      "          'ricky': 3,\n",
      "          'work': 3,\n",
      "          'murphy': 3,\n",
      "          'makes': 3,\n",
      "          'make': 3,\n",
      "          'problem': 3,\n",
      "          'theyve': 3,\n",
      "          'bought': 3,\n",
      "          'humor': 3,\n",
      "          'theyre': 3,\n",
      "          'something': 2,\n",
      "          'must': 2,\n",
      "          'goldblum': 2,\n",
      "          'producer': 2,\n",
      "          'home': 2,\n",
      "          'new': 2,\n",
      "          'boss': 2,\n",
      "          'loggia': 2,\n",
      "          'rickys': 2,\n",
      "          'flat': 2,\n",
      "          'problems': 2,\n",
      "          'kate': 2,\n",
      "          'preston': 2,\n",
      "          'brought': 2,\n",
      "          'great': 2,\n",
      "          'eddie': 2,\n",
      "          'simple': 2,\n",
      "          'key': 2,\n",
      "          'nsure': 2,\n",
      "          'might': 2,\n",
      "          'believe': 2,\n",
      "          'allows': 2,\n",
      "          'nbut': 2,\n",
      "          'time': 2,\n",
      "          'thing': 2,\n",
      "          'move': 2,\n",
      "          'place': 2,\n",
      "          'nyou': 2,\n",
      "          'seriously': 2,\n",
      "          'never': 2,\n",
      "          'think': 2,\n",
      "          'comedy': 2,\n",
      "          'n': 2,\n",
      "          'script': 2,\n",
      "          'actors': 2,\n",
      "          'three': 2,\n",
      "          'entire': 2,\n",
      "          'nas': 2,\n",
      "          'njust': 2,\n",
      "          'surely': 2,\n",
      "          'look': 2,\n",
      "          'half': 2,\n",
      "          'hour': 2,\n",
      "          'pr': 2,\n",
      "          'bad': 1,\n",
      "          'ni': 1,\n",
      "          'sitting': 1,\n",
      "          'sheer': 1,\n",
      "          'punishment': 1,\n",
      "          'nheres': 1,\n",
      "          'nricky': 1,\n",
      "          'jeff': 1,\n",
      "          'goodbuy': 1,\n",
      "          'network': 1,\n",
      "          '24hour': 1,\n",
      "          'shopping': 1,\n",
      "          'channels': 1,\n",
      "          'robert': 1,\n",
      "          'plans': 1,\n",
      "          'behind': 1,\n",
      "          'doesnt': 1,\n",
      "          'turn': 1,\n",
      "          'previous': 1,\n",
      "          'months': 1,\n",
      "          'numbers': 1,\n",
      "          'around': 1,\n",
      "          'add': 1,\n",
      "          'also': 1,\n",
      "          'kelly': 1,\n",
      "          'ivy': 1,\n",
      "          'league': 1,\n",
      "          'wunderkind': 1,\n",
      "          'nkate': 1,\n",
      "          'get': 1,\n",
      "          'along': 1,\n",
      "          'ideas': 1,\n",
      "          'meet': 1,\n",
      "          'spiritualist': 1,\n",
      "          'sees': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'positive': 1,\n",
      "          'everything': 1,\n",
      "          'nhis': 1,\n",
      "          'soothing': 1,\n",
      "          'voice': 1,\n",
      "          'logic': 1,\n",
      "          'quality': 1,\n",
      "          'gbn': 1,\n",
      "          'television': 1,\n",
      "          'star': 1,\n",
      "          'networks': 1,\n",
      "          'success': 1,\n",
      "          'flaw': 1,\n",
      "          'told': 1,\n",
      "          'guilty': 1,\n",
      "          'buying': 1,\n",
      "          'impulse': 1,\n",
      "          'item': 1,\n",
      "          'matter': 1,\n",
      "          'wealthy': 1,\n",
      "          'ill': 1,\n",
      "          'talks': 1,\n",
      "          'talk': 1,\n",
      "          'hey': 1,\n",
      "          'thats': 1,\n",
      "          'nwhy': 1,\n",
      "          'skyrocket': 1,\n",
      "          'camera': 1,\n",
      "          'nfar': 1,\n",
      "          'trying': 1,\n",
      "          'sell': 1,\n",
      "          'product': 1,\n",
      "          'instead': 1,\n",
      "          'blathers': 1,\n",
      "          'need': 1,\n",
      "          'nsomeone': 1,\n",
      "          'please': 1,\n",
      "          'tell': 1,\n",
      "          'supposed': 1,\n",
      "          'merchandise': 1,\n",
      "          'say': 1,\n",
      "          'come': 1,\n",
      "          'back': 1,\n",
      "          'due': 1,\n",
      "          'fact': 1,\n",
      "          'round': 1,\n",
      "          'inexplicable': 1,\n",
      "          'im': 1,\n",
      "          'convinced': 1,\n",
      "          'filmmakers': 1,\n",
      "          'mind': 1,\n",
      "          'whole': 1,\n",
      "          'therefore': 1,\n",
      "          'undermined': 1,\n",
      "          'point': 1,\n",
      "          'credible': 1,\n",
      "          'nanother': 1,\n",
      "          'know': 1,\n",
      "          'see': 1,\n",
      "          'unreasonable': 1,\n",
      "          'expect': 1,\n",
      "          'nwhoa': 1,\n",
      "          'partner': 1,\n",
      "          'surprise': 1,\n",
      "          'nholy': 1,\n",
      "          'funny': 1,\n",
      "          'nmurphy': 1,\n",
      "          'asset': 1,\n",
      "          'youd': 1,\n",
      "          'remember': 1,\n",
      "          'last': 1,\n",
      "          'minute': 1,\n",
      "          'save': 1,\n",
      "          'best': 1,\n",
      "          'defense': 1,\n",
      "          'maybe': 1,\n",
      "          'reigned': 1,\n",
      "          'gives': 1,\n",
      "          'almost': 1,\n",
      "          'nothing': 1,\n",
      "          'seems': 1,\n",
      "          'though': 1,\n",
      "          'director': 1,\n",
      "          'stephen': 1,\n",
      "          'herek': 1,\n",
      "          'kept': 1,\n",
      "          'toned': 1,\n",
      "          'wouldnt': 1,\n",
      "          'left': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'ntheres': 1,\n",
      "          'moment': 1,\n",
      "          'allowed': 1,\n",
      "          'let': 1,\n",
      "          'loose': 1,\n",
      "          'lasts': 1,\n",
      "          'shouted': 1,\n",
      "          'words': 1,\n",
      "          'seem': 1,\n",
      "          'totally': 1,\n",
      "          'result': 1,\n",
      "          'npathetic': 1,\n",
      "          'nin': 1,\n",
      "          'jokes': 1,\n",
      "          'picture': 1,\n",
      "          'side': 1,\n",
      "          'note': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'dan': 1,\n",
      "          'marino': 1,\n",
      "          'pitching': 1,\n",
      "          'contraption': 1,\n",
      "          'cook': 1,\n",
      "          'car': 1,\n",
      "          'engine': 1,\n",
      "          'james': 1,\n",
      "          'brown': 1,\n",
      "          'introducing': 1,\n",
      "          'medicalert': 1,\n",
      "          'device': 1,\n",
      "          'shouts': 1,\n",
      "          'help': 1,\n",
      "          'hardest': 1,\n",
      "          'working': 1,\n",
      "          'show': 1,\n",
      "          'business': 1,\n",
      "          'push': 1,\n",
      "          'button': 1,\n",
      "          'cause': 1,\n",
      "          'personal': 1,\n",
      "          'laughometer': 1,\n",
      "          'rise': 1,\n",
      "          'level': 1,\n",
      "          'mild': 1,\n",
      "          'bemusement': 1,\n",
      "          'well': 1,\n",
      "          'ask': 1,\n",
      "          'convincing': 1,\n",
      "          'performances': 1,\n",
      "          'lack': 1,\n",
      "          'nthink': 1,\n",
      "          'buckwheat': 1,\n",
      "          'njeff': 1,\n",
      "          'disappoints': 1,\n",
      "          'nkelly': 1,\n",
      "          'nrobert': 1,\n",
      "          'kind': 1,\n",
      "          'role': 1,\n",
      "          'virtually': 1,\n",
      "          'typecast': 1,\n",
      "          'cant': 1,\n",
      "          'anything': 1,\n",
      "          'part': 1,\n",
      "          'making': 1,\n",
      "          'nthey': 1,\n",
      "          'lot': 1,\n",
      "          'bored': 1,\n",
      "          'audience': 1,\n",
      "          'nso': 1,\n",
      "          'absent': 1,\n",
      "          'acting': 1,\n",
      "          'siberian': 1,\n",
      "          'steppes': 1,\n",
      "          'na': 1,\n",
      "          'drags': 1,\n",
      "          'dropped': 1,\n",
      "          'anchor': 1,\n",
      "          'wait': 1,\n",
      "          'slow': 1,\n",
      "          'enough': 1,\n",
      "          'screenplays': 1,\n",
      "          'pacing': 1,\n",
      "          'slower': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'establish': 1,\n",
      "          'movies': 1,\n",
      "          'premise': 1,\n",
      "          'wades': 1,\n",
      "          'tortuous': 1,\n",
      "          'seemingly': 1,\n",
      "          'mandatory': 1,\n",
      "          'romance': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'conniving': 1,\n",
      "          'eric': 1,\n",
      "          'mccormack': 1,\n",
      "          'wants': 1,\n",
      "          'discredit': 1,\n",
      "          'take': 1,\n",
      "          'job': 1,\n",
      "          'nwhen': 1,\n",
      "          'guys': 1,\n",
      "          'plan': 1,\n",
      "          'foiled': 1,\n",
      "          'climaxes': 1,\n",
      "          'treated': 1,\n",
      "          'little': 1,\n",
      "          'epilogue': 1,\n",
      "          'go': 1,\n",
      "          'right': 1,\n",
      "          'nwrong': 1,\n",
      "          'goes': 1,\n",
      "          'another': 1,\n",
      "          'ncontinental': 1,\n",
      "          'drift': 1,\n",
      "          'indy': 1,\n",
      "          '500': 1,\n",
      "          'compared': 1,\n",
      "          'pace': 1,\n",
      "          'number': 1,\n",
      "          'exclaiming': 1,\n",
      "          'awful': 1,\n",
      "          'nthis': 1,\n",
      "          'truly': 1,\n",
      "          'pious': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'horror': 5,\n",
      "          'movies': 4,\n",
      "          'funny': 4,\n",
      "          'something': 3,\n",
      "          'parody': 3,\n",
      "          'one': 3,\n",
      "          'like': 3,\n",
      "          'ni': 3,\n",
      "          'im': 3,\n",
      "          'movie': 3,\n",
      "          'brothers': 3,\n",
      "          '810': 3,\n",
      "          'plot': 2,\n",
      "          'going': 2,\n",
      "          'parodies': 2,\n",
      "          'work': 2,\n",
      "          'nthe': 2,\n",
      "          'laughs': 2,\n",
      "          'gags': 2,\n",
      "          'wink': 2,\n",
      "          'took': 2,\n",
      "          'seven': 2,\n",
      "          'say': 2,\n",
      "          'films': 2,\n",
      "          'title': 2,\n",
      "          'even': 2,\n",
      "          'trying': 2,\n",
      "          'see': 2,\n",
      "          'head': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'last': 2,\n",
      "          'n': 2,\n",
      "          'thats': 2,\n",
      "          'nyou': 2,\n",
      "          'joblo': 2,\n",
      "          '1010': 2,\n",
      "          'bunch': 1,\n",
      "          'kids': 1,\n",
      "          'haunted': 1,\n",
      "          'house': 1,\n",
      "          'playing': 1,\n",
      "          'nonhorror': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'theres': 1,\n",
      "          'also': 1,\n",
      "          'ghost': 1,\n",
      "          'possessing': 1,\n",
      "          'mansion': 1,\n",
      "          'shit': 1,\n",
      "          'trust': 1,\n",
      "          'wont': 1,\n",
      "          'care': 1,\n",
      "          'much': 1,\n",
      "          'ncritique': 1,\n",
      "          'either': 1,\n",
      "          'dont': 1,\n",
      "          'doesnt': 1,\n",
      "          'arent': 1,\n",
      "          'pronounced': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'energy': 1,\n",
      "          'level': 1,\n",
      "          'characters': 1,\n",
      "          'seem': 1,\n",
      "          'motions': 1,\n",
      "          'nits': 1,\n",
      "          'hurry': 1,\n",
      "          'finish': 1,\n",
      "          'nand': 1,\n",
      "          'scariest': 1,\n",
      "          'part': 1,\n",
      "          'ncheck': 1,\n",
      "          'number': 1,\n",
      "          'screenwriters': 1,\n",
      "          'pen': 1,\n",
      "          'puppy': 1,\n",
      "          'people': 1,\n",
      "          'write': 1,\n",
      "          '82minutes': 1,\n",
      "          'worth': 1,\n",
      "          'fart': 1,\n",
      "          'jokes': 1,\n",
      "          'halfassed': 1,\n",
      "          'stunts': 1,\n",
      "          'spoofs': 1,\n",
      "          'nnow': 1,\n",
      "          'exactly': 1,\n",
      "          'sure': 1,\n",
      "          'writers': 1,\n",
      "          'wrote': 1,\n",
      "          'parts': 1,\n",
      "          'separately': 1,\n",
      "          'tossed': 1,\n",
      "          'sketch': 1,\n",
      "          'ideas': 1,\n",
      "          'smoking': 1,\n",
      "          'chronic': 1,\n",
      "          'end': 1,\n",
      "          'result': 1,\n",
      "          'basically': 1,\n",
      "          'plays': 1,\n",
      "          'extended': 1,\n",
      "          'skit': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'nthere': 1,\n",
      "          'couple': 1,\n",
      "          'oneliners': 1,\n",
      "          'mostly': 1,\n",
      "          'rehashed': 1,\n",
      "          'onejoke': 1,\n",
      "          'scenes': 1,\n",
      "          'lot': 1,\n",
      "          'dead': 1,\n",
      "          'silence': 1,\n",
      "          'lame': 1,\n",
      "          'nadd': 1,\n",
      "          'unoriginal': 1,\n",
      "          'poster': 1,\n",
      "          'got': 1,\n",
      "          'ta': 1,\n",
      "          'start': 1,\n",
      "          'asking': 1,\n",
      "          'anybody': 1,\n",
      "          'website': 1,\n",
      "          'isnt': 1,\n",
      "          'yet': 1,\n",
      "          'nwhat': 1,\n",
      "          'f': 1,\n",
      "          'however': 1,\n",
      "          'give': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'man': 1,\n",
      "          'opens': 1,\n",
      "          'funniest': 1,\n",
      "          'exorcist': 1,\n",
      "          'takeoff': 1,\n",
      "          'miss': 1,\n",
      "          'youve': 1,\n",
      "          'missed': 1,\n",
      "          'reason': 1,\n",
      "          'flick': 1,\n",
      "          'especially': 1,\n",
      "          'liked': 1,\n",
      "          'oneliner': 1,\n",
      "          'walked': 1,\n",
      "          'possessed': 1,\n",
      "          'womans': 1,\n",
      "          'turning': 1,\n",
      "          'nvery': 1,\n",
      "          'plummets': 1,\n",
      "          'straight': 1,\n",
      "          'dumb': 1,\n",
      "          'many': 1,\n",
      "          'teen': 1,\n",
      "          'flicks': 1,\n",
      "          'nothing': 1,\n",
      "          'save': 1,\n",
      "          'dance': 1,\n",
      "          'dude': 1,\n",
      "          'wheres': 1,\n",
      "          'car': 1,\n",
      "          'action': 1,\n",
      "          'charlies': 1,\n",
      "          'angels': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          '2': 1,\n",
      "          'help': 1,\n",
      "          'figure': 1,\n",
      "          'nisnt': 1,\n",
      "          'supposed': 1,\n",
      "          'maybe': 1,\n",
      "          'fing': 1,\n",
      "          'nwell': 1,\n",
      "          'sorry': 1,\n",
      "          'lameass': 1,\n",
      "          'script': 1,\n",
      "          'wayans': 1,\n",
      "          'known': 1,\n",
      "          'better': 1,\n",
      "          'look': 1,\n",
      "          'towards': 1,\n",
      "          'weinstein': 1,\n",
      "          'money': 1,\n",
      "          'instead': 1,\n",
      "          'zucker': 1,\n",
      "          'comedy': 1,\n",
      "          'sequel': 1,\n",
      "          'us': 1,\n",
      "          'left': 1,\n",
      "          'skeleton': 1,\n",
      "          'mightve': 1,\n",
      "          'worked': 1,\n",
      "          'times': 1,\n",
      "          'tightened': 1,\n",
      "          'injected': 1,\n",
      "          'solid': 1,\n",
      "          'nbut': 1,\n",
      "          'things': 1,\n",
      "          'stand': 1,\n",
      "          'doubt': 1,\n",
      "          'mind': 1,\n",
      "          'obvious': 1,\n",
      "          'greed': 1,\n",
      "          'capitalize': 1,\n",
      "          'success': 1,\n",
      "          'years': 1,\n",
      "          'led': 1,\n",
      "          'everyone': 1,\n",
      "          'path': 1,\n",
      "          'screw': 1,\n",
      "          'hard': 1,\n",
      "          'critically': 1,\n",
      "          'speaking': 1,\n",
      "          'course': 1,\n",
      "          'ashamed': 1,\n",
      "          'putting': 1,\n",
      "          'enough': 1,\n",
      "          'real': 1,\n",
      "          'effort': 1,\n",
      "          'chopjob': 1,\n",
      "          'providing': 1,\n",
      "          'fans': 1,\n",
      "          'ultimate': 1,\n",
      "          'talents': 1,\n",
      "          'npooh': 1,\n",
      "          'telling': 1,\n",
      "          'em': 1,\n",
      "          'nsheesh': 1,\n",
      "          'nbtw': 1,\n",
      "          'allotting': 1,\n",
      "          'point': 1,\n",
      "          'alone': 1,\n",
      "          'actress': 1,\n",
      "          'kathleen': 1,\n",
      "          'robertson': 1,\n",
      "          'whose': 1,\n",
      "          'massive': 1,\n",
      "          'breasts': 1,\n",
      "          'skanky': 1,\n",
      "          'gstring': 1,\n",
      "          'chompin': 1,\n",
      "          'bit': 1,\n",
      "          'go': 1,\n",
      "          'girl': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'stay': 1,\n",
      "          'nwheres': 1,\n",
      "          'coming': 1,\n",
      "          'nairplane': 1,\n",
      "          'airplane': 1,\n",
      "          'ii': 1,\n",
      "          'galaxy': 1,\n",
      "          'quest': 1,\n",
      "          'hannibal': 1,\n",
      "          '710': 1,\n",
      "          'haunting': 1,\n",
      "          '310': 1,\n",
      "          'mafia': 1,\n",
      "          '510': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'scary': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          '910': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'cartoon': 5,\n",
      "          'nin': 5,\n",
      "          'film': 5,\n",
      "          'slapstick': 4,\n",
      "          'puppies': 4,\n",
      "          'dalmatians': 4,\n",
      "          'daniels': 4,\n",
      "          'animated': 3,\n",
      "          'hughes': 3,\n",
      "          'cruella': 3,\n",
      "          'devil': 3,\n",
      "          'quickly': 3,\n",
      "          'dogs': 3,\n",
      "          'like': 3,\n",
      "          'bland': 3,\n",
      "          'close': 3,\n",
      "          'way': 2,\n",
      "          'version': 2,\n",
      "          'disney': 2,\n",
      "          'john': 2,\n",
      "          'home': 2,\n",
      "          'alone': 2,\n",
      "          'nwhen': 2,\n",
      "          'original': 2,\n",
      "          'give': 2,\n",
      "          'another': 2,\n",
      "          'pongo': 2,\n",
      "          'human': 2,\n",
      "          'pets': 2,\n",
      "          'animal': 2,\n",
      "          'distinct': 2,\n",
      "          'heads': 2,\n",
      "          'licking': 2,\n",
      "          'cute': 2,\n",
      "          'wonder': 2,\n",
      "          'personality': 2,\n",
      "          'little': 2,\n",
      "          'richardson': 2,\n",
      "          'icon': 2,\n",
      "          'performance': 2,\n",
      "          'long': 2,\n",
      "          'n': 2,\n",
      "          '101': 2,\n",
      "          'enduring': 2,\n",
      "          'better': 1,\n",
      "          'nthats': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'disneys': 1,\n",
      "          'incredibly': 1,\n",
      "          'hyped': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          '1961': 1,\n",
      "          'feature': 1,\n",
      "          'alliance': 1,\n",
      "          'king': 1,\n",
      "          'produced': 1,\n",
      "          'frenetic': 1,\n",
      "          'much': 1,\n",
      "          'else': 1,\n",
      "          'production': 1,\n",
      "          'remake': 1,\n",
      "          'announced': 1,\n",
      "          'big': 1,\n",
      "          'question': 1,\n",
      "          'seemed': 1,\n",
      "          'still': 1,\n",
      "          'works': 1,\n",
      "          'whats': 1,\n",
      "          'point': 1,\n",
      "          'answer': 1,\n",
      "          'appears': 1,\n",
      "          'excuse': 1,\n",
      "          'yet': 1,\n",
      "          'massive': 1,\n",
      "          'merchandising': 1,\n",
      "          'campaign': 1,\n",
      "          'story': 1,\n",
      "          'missed': 1,\n",
      "          'childhood': 1,\n",
      "          'simple': 1,\n",
      "          'ntwo': 1,\n",
      "          'perdy': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'first': 1,\n",
      "          'sight': 1,\n",
      "          'nthey': 1,\n",
      "          'drag': 1,\n",
      "          'together': 1,\n",
      "          'short': 1,\n",
      "          'time': 1,\n",
      "          'couples': 1,\n",
      "          'marry': 1,\n",
      "          'heavenly': 1,\n",
      "          'matchups': 1,\n",
      "          'turn': 1,\n",
      "          'chaotic': 1,\n",
      "          'perdys': 1,\n",
      "          'newborn': 1,\n",
      "          'pups': 1,\n",
      "          'stolen': 1,\n",
      "          'dognapping': 1,\n",
      "          'engineered': 1,\n",
      "          'evil': 1,\n",
      "          'wants': 1,\n",
      "          'pelts': 1,\n",
      "          'neveryone': 1,\n",
      "          'kingdom': 1,\n",
      "          'joins': 1,\n",
      "          'frantic': 1,\n",
      "          'effort': 1,\n",
      "          'save': 1,\n",
      "          'movie': 1,\n",
      "          'pooches': 1,\n",
      "          'broad': 1,\n",
      "          'range': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'personalities': 1,\n",
      "          'nwe': 1,\n",
      "          'also': 1,\n",
      "          'could': 1,\n",
      "          'hear': 1,\n",
      "          'talk': 1,\n",
      "          'established': 1,\n",
      "          'crucial': 1,\n",
      "          'element': 1,\n",
      "          'charm': 1,\n",
      "          'view': 1,\n",
      "          'humans': 1,\n",
      "          'new': 1,\n",
      "          'mute': 1,\n",
      "          'expressionless': 1,\n",
      "          'nhughes': 1,\n",
      "          'attempts': 1,\n",
      "          'character': 1,\n",
      "          'repeated': 1,\n",
      "          'shots': 1,\n",
      "          'draping': 1,\n",
      "          'faces': 1,\n",
      "          'necks': 1,\n",
      "          'nwhile': 1,\n",
      "          'drew': 1,\n",
      "          'desired': 1,\n",
      "          'aww': 1,\n",
      "          'theyre': 1,\n",
      "          'reaction': 1,\n",
      "          'audience': 1,\n",
      "          'followed': 1,\n",
      "          'several': 1,\n",
      "          'people': 1,\n",
      "          'whispering': 1,\n",
      "          'kind': 1,\n",
      "          'food': 1,\n",
      "          'smeared': 1,\n",
      "          'get': 1,\n",
      "          'canines': 1,\n",
      "          'lack': 1,\n",
      "          'would': 1,\n",
      "          'easier': 1,\n",
      "          'take': 1,\n",
      "          'beings': 1,\n",
      "          'njoely': 1,\n",
      "          'jeff': 1,\n",
      "          'stunningly': 1,\n",
      "          'lead': 1,\n",
      "          'roles': 1,\n",
      "          'previous': 1,\n",
      "          'films': 1,\n",
      "          'successfully': 1,\n",
      "          'played': 1,\n",
      "          'white': 1,\n",
      "          'bread': 1,\n",
      "          'persona': 1,\n",
      "          'something': 1,\n",
      "          'wild': 1,\n",
      "          'revealed': 1,\n",
      "          'rebellious': 1,\n",
      "          'thrillseeker': 1,\n",
      "          'beneath': 1,\n",
      "          'neutral': 1,\n",
      "          'demeanor': 1,\n",
      "          'terms': 1,\n",
      "          'endearment': 1,\n",
      "          'hapless': 1,\n",
      "          'appearance': 1,\n",
      "          'masked': 1,\n",
      "          'cold': 1,\n",
      "          'manipulative': 1,\n",
      "          'womanizer': 1,\n",
      "          'nhere': 1,\n",
      "          'consistently': 1,\n",
      "          'images': 1,\n",
      "          'even': 1,\n",
      "          'stick': 1,\n",
      "          'nglenn': 1,\n",
      "          'however': 1,\n",
      "          'problems': 1,\n",
      "          'establishing': 1,\n",
      "          'nas': 1,\n",
      "          'villainous': 1,\n",
      "          'tears': 1,\n",
      "          'screen': 1,\n",
      "          'deliciously': 1,\n",
      "          'overthetop': 1,\n",
      "          'nclose': 1,\n",
      "          'matches': 1,\n",
      "          'intensity': 1,\n",
      "          'becoming': 1,\n",
      "          'nwith': 1,\n",
      "          'twotone': 1,\n",
      "          'fright': 1,\n",
      "          'wig': 1,\n",
      "          'red': 1,\n",
      "          'gloves': 1,\n",
      "          'nails': 1,\n",
      "          'attached': 1,\n",
      "          'fingertips': 1,\n",
      "          'garish': 1,\n",
      "          'skin': 1,\n",
      "          'outfits': 1,\n",
      "          'stiletto': 1,\n",
      "          'heels': 1,\n",
      "          'bursts': 1,\n",
      "          'scenes': 1,\n",
      "          'force': 1,\n",
      "          'nature': 1,\n",
      "          'nshes': 1,\n",
      "          'clearly': 1,\n",
      "          'ball': 1,\n",
      "          'playing': 1,\n",
      "          'monstrous': 1,\n",
      "          'wicked': 1,\n",
      "          'glee': 1,\n",
      "          'infectious': 1,\n",
      "          'spits': 1,\n",
      "          'lines': 1,\n",
      "          'youve': 1,\n",
      "          'battle': 1,\n",
      "          'im': 1,\n",
      "          'win': 1,\n",
      "          'wardrobe': 1,\n",
      "          'comes': 1,\n",
      "          'briefly': 1,\n",
      "          'life': 1,\n",
      "          'crammed': 1,\n",
      "          'typical': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'approach': 1,\n",
      "          'comedy': 1,\n",
      "          'nafter': 1,\n",
      "          'ingenuous': 1,\n",
      "          'opening': 1,\n",
      "          'showing': 1,\n",
      "          'pongos': 1,\n",
      "          'morning': 1,\n",
      "          'routine': 1,\n",
      "          'gets': 1,\n",
      "          'prepared': 1,\n",
      "          'day': 1,\n",
      "          'tumbles': 1,\n",
      "          'lame': 1,\n",
      "          'pooch': 1,\n",
      "          'drags': 1,\n",
      "          'careening': 1,\n",
      "          'trek': 1,\n",
      "          'city': 1,\n",
      "          'park': 1,\n",
      "          'goes': 1,\n",
      "          'keeps': 1,\n",
      "          'laying': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'local': 1,\n",
      "          'animals': 1,\n",
      "          'team': 1,\n",
      "          'rescue': 1,\n",
      "          '99': 1,\n",
      "          'nondescript': 1,\n",
      "          'dalmatian': 1,\n",
      "          'henchmen': 1,\n",
      "          'tedious': 1,\n",
      "          'clone': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'variety': 1,\n",
      "          'sadistic': 1,\n",
      "          'assaults': 1,\n",
      "          'worthy': 1,\n",
      "          'itchy': 1,\n",
      "          'scratchy': 1,\n",
      "          'including': 1,\n",
      "          'thug': 1,\n",
      "          'getting': 1,\n",
      "          'testicles': 1,\n",
      "          'fried': 1,\n",
      "          'electric': 1,\n",
      "          'fence': 1,\n",
      "          'hoot': 1,\n",
      "          'glenn': 1,\n",
      "          'enough': 1,\n",
      "          'warrant': 1,\n",
      "          'third': 1,\n",
      "          'rate': 1,\n",
      "          'characters': 1,\n",
      "          'unconvincing': 1,\n",
      "          'animatronic': 1,\n",
      "          'raccoons': 1,\n",
      "          'highfiving': 1,\n",
      "          'one': 1,\n",
      "          'nrent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'nbut': 5,\n",
      "          'spawn': 4,\n",
      "          'video': 4,\n",
      "          'worst': 4,\n",
      "          'year': 4,\n",
      "          'even': 4,\n",
      "          'movie': 4,\n",
      "          'wasnt': 3,\n",
      "          'effects': 3,\n",
      "          'might': 3,\n",
      "          'ni': 3,\n",
      "          'one': 3,\n",
      "          'n': 3,\n",
      "          'makes': 3,\n",
      "          'matter': 3,\n",
      "          'somewhat': 2,\n",
      "          'nin': 2,\n",
      "          'fact': 2,\n",
      "          'anyone': 2,\n",
      "          'seen': 2,\n",
      "          'get': 2,\n",
      "          'see': 2,\n",
      "          'catch': 2,\n",
      "          'way': 2,\n",
      "          'nit': 2,\n",
      "          'means': 2,\n",
      "          'top': 2,\n",
      "          'films': 2,\n",
      "          'bottom': 2,\n",
      "          'reason': 2,\n",
      "          'special': 2,\n",
      "          'part': 2,\n",
      "          'campy': 2,\n",
      "          'neven': 2,\n",
      "          'editing': 2,\n",
      "          'seemed': 2,\n",
      "          'something': 2,\n",
      "          'quite': 2,\n",
      "          'problem': 2,\n",
      "          'movies': 2,\n",
      "          'would': 2,\n",
      "          'definitely': 2,\n",
      "          'want': 2,\n",
      "          'small': 2,\n",
      "          'game': 2,\n",
      "          'seeing': 2,\n",
      "          'really': 2,\n",
      "          'may': 1,\n",
      "          'older': 1,\n",
      "          'probably': 1,\n",
      "          'hasnt': 1,\n",
      "          'finally': 1,\n",
      "          'managed': 1,\n",
      "          'made': 1,\n",
      "          'theaters': 1,\n",
      "          'world': 1,\n",
      "          'rentals': 1,\n",
      "          'god': 1,\n",
      "          'forbid': 1,\n",
      "          'cassette': 1,\n",
      "          'purchasing': 1,\n",
      "          'isnt': 1,\n",
      "          '5': 1,\n",
      "          'manage': 1,\n",
      "          'five': 1,\n",
      "          'ten': 1,\n",
      "          'simpler': 1,\n",
      "          'terms': 1,\n",
      "          'comes': 1,\n",
      "          'number': 1,\n",
      "          '6': 1,\n",
      "          '1997': 1,\n",
      "          'list': 1,\n",
      "          'nthe': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'lower': 1,\n",
      "          'thanks': 1,\n",
      "          'actually': 1,\n",
      "          'best': 1,\n",
      "          'nperformances': 1,\n",
      "          'however': 1,\n",
      "          'either': 1,\n",
      "          'wooden': 1,\n",
      "          'unforgivingly': 1,\n",
      "          'shows': 1,\n",
      "          'signs': 1,\n",
      "          'attempting': 1,\n",
      "          'avoid': 1,\n",
      "          'campiness': 1,\n",
      "          'boast': 1,\n",
      "          'quality': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'explain': 1,\n",
      "          'exactly': 1,\n",
      "          'choppy': 1,\n",
      "          'nwell': 1,\n",
      "          'annoyingly': 1,\n",
      "          'unprofessional': 1,\n",
      "          'njohn': 1,\n",
      "          'leguizamo': 1,\n",
      "          'almost': 1,\n",
      "          'clown': 1,\n",
      "          'nhe': 1,\n",
      "          'character': 1,\n",
      "          'provides': 1,\n",
      "          'audience': 1,\n",
      "          'laughs': 1,\n",
      "          'honestly': 1,\n",
      "          'called': 1,\n",
      "          'intentional': 1,\n",
      "          'main': 1,\n",
      "          'found': 1,\n",
      "          'wind': 1,\n",
      "          'lists': 1,\n",
      "          'plain': 1,\n",
      "          'boring': 1,\n",
      "          'wouldnt': 1,\n",
      "          'say': 1,\n",
      "          'climax': 1,\n",
      "          'nsure': 1,\n",
      "          'big': 1,\n",
      "          'battle': 1,\n",
      "          'scene': 1,\n",
      "          'end': 1,\n",
      "          'excitement': 1,\n",
      "          'felt': 1,\n",
      "          'nearing': 1,\n",
      "          'conclusion': 1,\n",
      "          'nnever': 1,\n",
      "          'soon': 1,\n",
      "          'conclude': 1,\n",
      "          'simple': 1,\n",
      "          'disappointing': 1,\n",
      "          'though': 1,\n",
      "          'shorter': 1,\n",
      "          'ive': 1,\n",
      "          'subject': 1,\n",
      "          'sitting': 1,\n",
      "          'thru': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'sense': 1,\n",
      "          'pride': 1,\n",
      "          'impressed': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'long': 1,\n",
      "          'didnt': 1,\n",
      "          'allow': 1,\n",
      "          'melodramatic': 1,\n",
      "          'voiceover': 1,\n",
      "          'lobotomizing': 1,\n",
      "          'nand': 1,\n",
      "          'batman': 1,\n",
      "          'nothing': 1,\n",
      "          'spectacular': 1,\n",
      "          'visuals': 1,\n",
      "          'spawns': 1,\n",
      "          'outfit': 1,\n",
      "          'created': 1,\n",
      "          'got': 1,\n",
      "          'tiresome': 1,\n",
      "          'final': 1,\n",
      "          'scenes': 1,\n",
      "          'looked': 1,\n",
      "          'bit': 1,\n",
      "          'like': 1,\n",
      "          'modern': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'plan': 1,\n",
      "          'beginning': 1,\n",
      "          'nkeeping': 1,\n",
      "          'mind': 1,\n",
      "          'based': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'approachable': 1,\n",
      "          'amount': 1,\n",
      "          'cheeziness': 1,\n",
      "          'none': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'saving': 1,\n",
      "          'graces': 1,\n",
      "          'make': 1,\n",
      "          'id': 1,\n",
      "          'recommend': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'nthis': 1,\n",
      "          'young': 1,\n",
      "          'children': 1,\n",
      "          'shouldnt': 1,\n",
      "          'teenagers': 1,\n",
      "          'likely': 1,\n",
      "          'find': 1,\n",
      "          'appealing': 1,\n",
      "          'nif': 1,\n",
      "          'many': 1,\n",
      "          'better': 1,\n",
      "          'ones': 1,\n",
      "          'tastes': 1,\n",
      "          'ntrust': 1,\n",
      "          'little': 1,\n",
      "          'offer': 1,\n",
      "          'avid': 1,\n",
      "          'moviegoers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'league': 13,\n",
      "          'baseball': 11,\n",
      "          'major': 10,\n",
      "          'njb': 8,\n",
      "          'back': 7,\n",
      "          'one': 7,\n",
      "          'nwh': 7,\n",
      "          'nhc': 6,\n",
      "          'right': 5,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'low': 4,\n",
      "          'minor': 4,\n",
      "          'ball': 4,\n",
      "          'gus': 4,\n",
      "          'new': 3,\n",
      "          'minors': 3,\n",
      "          'jim': 3,\n",
      "          '2': 3,\n",
      "          'twins': 3,\n",
      "          'game': 3,\n",
      "          'field': 3,\n",
      "          'warren': 3,\n",
      "          'pitch': 3,\n",
      "          'dorn': 3,\n",
      "          'movies': 3,\n",
      "          'even': 3,\n",
      "          'foul': 3,\n",
      "          'good': 3,\n",
      "          'time': 3,\n",
      "          'really': 3,\n",
      "          'youre': 3,\n",
      "          'play': 2,\n",
      "          'man': 2,\n",
      "          'james': 2,\n",
      "          'berardinelli': 2,\n",
      "          'top': 2,\n",
      "          'booth': 2,\n",
      "          'fresh': 2,\n",
      "          'third': 2,\n",
      "          'see': 2,\n",
      "          'give': 2,\n",
      "          'none': 2,\n",
      "          'nits': 2,\n",
      "          'ni': 2,\n",
      "          'likely': 2,\n",
      "          'real': 2,\n",
      "          'nactually': 2,\n",
      "          'action': 2,\n",
      "          'involves': 2,\n",
      "          'aaa': 2,\n",
      "          'club': 2,\n",
      "          'buzz': 2,\n",
      "          'nhe': 2,\n",
      "          'box': 2,\n",
      "          'pitcher': 2,\n",
      "          'needs': 2,\n",
      "          'manager': 2,\n",
      "          'team': 2,\n",
      "          'two': 2,\n",
      "          'played': 2,\n",
      "          'cerrano': 2,\n",
      "          'tanaka': 2,\n",
      "          'already': 2,\n",
      "          'theyre': 2,\n",
      "          'nbut': 2,\n",
      "          '1': 2,\n",
      "          'first': 2,\n",
      "          'nthe': 2,\n",
      "          'humor': 2,\n",
      "          'neven': 2,\n",
      "          'heres': 2,\n",
      "          'get': 2,\n",
      "          'nthere': 2,\n",
      "          'arent': 2,\n",
      "          'natural': 2,\n",
      "          'characters': 2,\n",
      "          'better': 2,\n",
      "          'miss': 2,\n",
      "          'radio': 1,\n",
      "          'broadcast': 1,\n",
      "          'featuring': 1,\n",
      "          'playby': 1,\n",
      "          'harry': 1,\n",
      "          'canary': 1,\n",
      "          'color': 1,\n",
      "          'whitey': 1,\n",
      "          'hashbrown': 1,\n",
      "          'special': 1,\n",
      "          'guest': 1,\n",
      "          'commentator': 1,\n",
      "          'go': 1,\n",
      "          '8th': 1,\n",
      "          'joined': 1,\n",
      "          'critic': 1,\n",
      "          'whos': 1,\n",
      "          'seeing': 1,\n",
      "          'popular': 1,\n",
      "          'saga': 1,\n",
      "          'taking': 1,\n",
      "          'lighter': 1,\n",
      "          'look': 1,\n",
      "          'majors': 1,\n",
      "          'nnice': 1,\n",
      "          'nas': 1,\n",
      "          'big': 1,\n",
      "          'fan': 1,\n",
      "          'reviewer': 1,\n",
      "          'us': 1,\n",
      "          'scoop': 1,\n",
      "          'flick': 1,\n",
      "          'opinion': 1,\n",
      "          'producers': 1,\n",
      "          'stopped': 1,\n",
      "          'ahead': 1,\n",
      "          'nine': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'entry': 1,\n",
      "          'definitely': 1,\n",
      "          'enough': 1,\n",
      "          'im': 1,\n",
      "          'surprised': 1,\n",
      "          'anemic': 1,\n",
      "          'showing': 1,\n",
      "          'quality': 1,\n",
      "          'latest': 1,\n",
      "          'installment': 1,\n",
      "          'earmarks': 1,\n",
      "          'something': 1,\n",
      "          'released': 1,\n",
      "          'directtovideo': 1,\n",
      "          'worse': 1,\n",
      "          'mediocre': 1,\n",
      "          'madefortv': 1,\n",
      "          'feature': 1,\n",
      "          'also': 1,\n",
      "          'mention': 1,\n",
      "          'wont': 1,\n",
      "          'well': 1,\n",
      "          'cleveland': 1,\n",
      "          'nnow': 1,\n",
      "          'indians': 1,\n",
      "          'perennial': 1,\n",
      "          'contenders': 1,\n",
      "          'replaced': 1,\n",
      "          'minnesota': 1,\n",
      "          'cinematic': 1,\n",
      "          'sadsacks': 1,\n",
      "          'rather': 1,\n",
      "          'actual': 1,\n",
      "          'franchise': 1,\n",
      "          'sorry': 1,\n",
      "          'interrupt': 1,\n",
      "          'still': 1,\n",
      "          'playbyplay': 1,\n",
      "          'nleading': 1,\n",
      "          'inning': 1,\n",
      "          'john': 1,\n",
      "          'steps': 1,\n",
      "          'batters': 1,\n",
      "          'takes': 1,\n",
      "          'kents': 1,\n",
      "          'storys': 1,\n",
      "          'strictly': 1,\n",
      "          'nwhats': 1,\n",
      "          'scott': 1,\n",
      "          'bakula': 1,\n",
      "          'guy': 1,\n",
      "          'quantum': 1,\n",
      "          'leap': 1,\n",
      "          'plays': 1,\n",
      "          'career': 1,\n",
      "          'cantrell': 1,\n",
      "          'nwhen': 1,\n",
      "          'owner': 1,\n",
      "          'roger': 1,\n",
      "          'portrayed': 1,\n",
      "          'corbin': 1,\n",
      "          'bernsen': 1,\n",
      "          'offers': 1,\n",
      "          'job': 1,\n",
      "          'faced': 1,\n",
      "          'daunting': 1,\n",
      "          'tasks': 1,\n",
      "          'turn': 1,\n",
      "          'around': 1,\n",
      "          'groom': 1,\n",
      "          'hot': 1,\n",
      "          'prospect': 1,\n",
      "          'downtown': 1,\n",
      "          'anderson': 1,\n",
      "          'walt': 1,\n",
      "          'goggins': 1,\n",
      "          'promotion': 1,\n",
      "          'show': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'former': 1,\n",
      "          'leaguers': 1,\n",
      "          'pedro': 1,\n",
      "          'dennis': 1,\n",
      "          'haysbert': 1,\n",
      "          'rube': 1,\n",
      "          'baker': 1,\n",
      "          'eric': 1,\n",
      "          'bruskotter': 1,\n",
      "          'isuro': 1,\n",
      "          'takaaki': 1,\n",
      "          'ishibashi': 1,\n",
      "          'gets': 1,\n",
      "          'track': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'successful': 1,\n",
      "          'earns': 1,\n",
      "          'enmity': 1,\n",
      "          'jealous': 1,\n",
      "          'bigleague': 1,\n",
      "          'leonard': 1,\n",
      "          'huff': 1,\n",
      "          'overthetop': 1,\n",
      "          'relish': 1,\n",
      "          'ted': 1,\n",
      "          'mcginley': 1,\n",
      "          'nsoon': 1,\n",
      "          'arranged': 1,\n",
      "          'exhibition': 1,\n",
      "          'pits': 1,\n",
      "          'overachieving': 1,\n",
      "          'group': 1,\n",
      "          'huffs': 1,\n",
      "          'overpaid': 1,\n",
      "          'lastplace': 1,\n",
      "          'bunch': 1,\n",
      "          'guess': 1,\n",
      "          'wins': 1,\n",
      "          'results': 1,\n",
      "          'suspense': 1,\n",
      "          'watching': 1,\n",
      "          'videotape': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'score': 1,\n",
      "          'non': 1,\n",
      "          'mockups': 1,\n",
      "          'presented': 1,\n",
      "          'much': 1,\n",
      "          'flair': 1,\n",
      "          'ntheyre': 1,\n",
      "          'boring': 1,\n",
      "          'lackluster': 1,\n",
      "          'never': 1,\n",
      "          'drama': 1,\n",
      "          'tension': 1,\n",
      "          'theyve': 1,\n",
      "          'using': 1,\n",
      "          'situations': 1,\n",
      "          'generate': 1,\n",
      "          'laughs': 1,\n",
      "          'fouls': 1,\n",
      "          'fastball': 1,\n",
      "          'n1': 1,\n",
      "          'lots': 1,\n",
      "          'yuks': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'enjoyed': 1,\n",
      "          'reasonably': 1,\n",
      "          'funny': 1,\n",
      "          'nokay': 1,\n",
      "          'lot': 1,\n",
      "          'jokes': 1,\n",
      "          'sophomoric': 1,\n",
      "          'made': 1,\n",
      "          'laugh': 1,\n",
      "          'sequels': 1,\n",
      "          'havent': 1,\n",
      "          'stale': 1,\n",
      "          'quotient': 1,\n",
      "          'abysmally': 1,\n",
      "          'bob': 1,\n",
      "          'ueckers': 1,\n",
      "          'oncesharp': 1,\n",
      "          'oneliners': 1,\n",
      "          'turned': 1,\n",
      "          'lame': 1,\n",
      "          'closest': 1,\n",
      "          'comes': 1,\n",
      "          'vaguely': 1,\n",
      "          'amusing': 1,\n",
      "          '11': 1,\n",
      "          'nlooooooong': 1,\n",
      "          'drive': 1,\n",
      "          'fair': 1,\n",
      "          'count': 1,\n",
      "          'goes': 1,\n",
      "          'least': 1,\n",
      "          'details': 1,\n",
      "          'correct': 1,\n",
      "          'yes': 1,\n",
      "          'glaring': 1,\n",
      "          'errors': 1,\n",
      "          'like': 1,\n",
      "          'bestever': 1,\n",
      "          'id': 1,\n",
      "          'gladly': 1,\n",
      "          'trade': 1,\n",
      "          'technically': 1,\n",
      "          'accurate': 1,\n",
      "          'story': 1,\n",
      "          'believable': 1,\n",
      "          'little': 1,\n",
      "          'genuine': 1,\n",
      "          'nheck': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'comedy': 1,\n",
      "          'nice': 1,\n",
      "          'old': 1,\n",
      "          'friends': 1,\n",
      "          'isnt': 1,\n",
      "          'nlike': 1,\n",
      "          'depends': 1,\n",
      "          'whether': 1,\n",
      "          'care': 1,\n",
      "          'anyone': 1,\n",
      "          'assortment': 1,\n",
      "          'cliched': 1,\n",
      "          'oddballs': 1,\n",
      "          'nyeah': 1,\n",
      "          'voodoo': 1,\n",
      "          'hitter': 1,\n",
      "          'catcher': 1,\n",
      "          'cant': 1,\n",
      "          'throw': 1,\n",
      "          'japanese': 1,\n",
      "          'player': 1,\n",
      "          'conceited': 1,\n",
      "          'playerturnedowner': 1,\n",
      "          'returned': 1,\n",
      "          'cares': 1,\n",
      "          'nthey': 1,\n",
      "          'depth': 1,\n",
      "          'nnotable': 1,\n",
      "          'absences': 1,\n",
      "          'include': 1,\n",
      "          'tom': 1,\n",
      "          'berengers': 1,\n",
      "          'veteran': 1,\n",
      "          'charlie': 1,\n",
      "          'sheens': 1,\n",
      "          'wild': 1,\n",
      "          'thing': 1,\n",
      "          'nwe': 1,\n",
      "          'dont': 1,\n",
      "          'though': 1,\n",
      "          'breaking': 1,\n",
      "          'outside': 1,\n",
      "          'n2': 1,\n",
      "          'saying': 1,\n",
      "          'thats': 1,\n",
      "          'nto': 1,\n",
      "          'use': 1,\n",
      "          'terminology': 1,\n",
      "          'threepitch': 1,\n",
      "          'strikeout': 1,\n",
      "          'nif': 1,\n",
      "          'looking': 1,\n",
      "          'try': 1,\n",
      "          'popping': 1,\n",
      "          'dreams': 1,\n",
      "          'bull': 1,\n",
      "          'durham': 1,\n",
      "          'vcr': 1,\n",
      "          'oddlytimed': 1,\n",
      "          'release': 1,\n",
      "          'since': 1,\n",
      "          'fans': 1,\n",
      "          'spending': 1,\n",
      "          'parks': 1,\n",
      "          'theaters': 1,\n",
      "          'seasons': 1,\n",
      "          'underway': 1,\n",
      "          'ndont': 1,\n",
      "          'bother': 1,\n",
      "          'wretched': 1,\n",
      "          'waster': 1,\n",
      "          'thanks': 1,\n",
      "          'advice': 1,\n",
      "          'welcome': 1,\n",
      "          '22': 1,\n",
      "          'nfouled': 1,\n",
      "          'nhey': 1,\n",
      "          'heads': 1,\n",
      "          'noops': 1,\n",
      "          'nsomebody': 1,\n",
      "          'ice': 1,\n",
      "          'may': 1,\n",
      "          'deflecting': 1,\n",
      "          'bad': 1,\n",
      "          'learn': 1,\n",
      "          'duck': 1,\n",
      "          'balls': 1,\n",
      "          'nodd': 1,\n",
      "          'seemed': 1,\n",
      "          'aim': 1,\n",
      "          'almost': 1,\n",
      "          'grudge': 1,\n",
      "          'settle': 1,\n",
      "          'nanyway': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'harry': 11,\n",
      "          'peak': 8,\n",
      "          'nthe': 8,\n",
      "          'one': 7,\n",
      "          'dantes': 7,\n",
      "          'eruption': 7,\n",
      "          'movie': 6,\n",
      "          'town': 6,\n",
      "          'disaster': 5,\n",
      "          'volcano': 5,\n",
      "          'film': 5,\n",
      "          'people': 5,\n",
      "          'survey': 5,\n",
      "          'nthere': 5,\n",
      "          'going': 5,\n",
      "          'two': 4,\n",
      "          'even': 4,\n",
      "          'u': 4,\n",
      "          'geological': 4,\n",
      "          'mayor': 4,\n",
      "          'couple': 4,\n",
      "          'frog': 4,\n",
      "          'nin': 3,\n",
      "          'better': 3,\n",
      "          'scene': 3,\n",
      "          'trying': 3,\n",
      "          'water': 3,\n",
      "          'doesnt': 3,\n",
      "          'small': 3,\n",
      "          'wando': 3,\n",
      "          'members': 3,\n",
      "          'nthey': 3,\n",
      "          'harrys': 3,\n",
      "          'nthis': 3,\n",
      "          'well': 3,\n",
      "          'nfor': 3,\n",
      "          'team': 3,\n",
      "          'nwhen': 3,\n",
      "          'nif': 3,\n",
      "          'caption': 3,\n",
      "          'think': 3,\n",
      "          'dont': 3,\n",
      "          'cover': 2,\n",
      "          'years': 2,\n",
      "          'begins': 2,\n",
      "          'volcanic': 2,\n",
      "          'rocks': 2,\n",
      "          'fall': 2,\n",
      "          'nwe': 2,\n",
      "          'see': 2,\n",
      "          'nit': 2,\n",
      "          'get': 2,\n",
      "          'much': 2,\n",
      "          'wife': 2,\n",
      "          'na': 2,\n",
      "          'sent': 2,\n",
      "          'activity': 2,\n",
      "          'second': 2,\n",
      "          'nalthough': 2,\n",
      "          'presence': 2,\n",
      "          'man': 2,\n",
      "          'next': 2,\n",
      "          'city': 2,\n",
      "          'would': 2,\n",
      "          'amorous': 2,\n",
      "          'turn': 2,\n",
      "          'cooked': 2,\n",
      "          'lava': 2,\n",
      "          'leading': 2,\n",
      "          'abrasive': 2,\n",
      "          'motherinlaw': 2,\n",
      "          'make': 2,\n",
      "          'plot': 2,\n",
      "          'elements': 2,\n",
      "          'example': 2,\n",
      "          'paul': 2,\n",
      "          'situation': 2,\n",
      "          'cause': 2,\n",
      "          'best': 2,\n",
      "          'got': 2,\n",
      "          'n': 2,\n",
      "          'recipe': 2,\n",
      "          'acid': 2,\n",
      "          'first': 2,\n",
      "          'building': 2,\n",
      "          'theres': 2,\n",
      "          'suppose': 2,\n",
      "          'signs': 2,\n",
      "          'rushed': 2,\n",
      "          'kissing': 2,\n",
      "          'guy': 2,\n",
      "          'way': 2,\n",
      "          'usually': 2,\n",
      "          'enough': 2,\n",
      "          'real': 2,\n",
      "          'time': 1,\n",
      "          'take': 1,\n",
      "          'nafter': 1,\n",
      "          'hiatus': 1,\n",
      "          'fifteen': 1,\n",
      "          'come': 1,\n",
      "          'back': 1,\n",
      "          'renewed': 1,\n",
      "          'zest': 1,\n",
      "          'early': 1,\n",
      "          '1997': 1,\n",
      "          'less': 1,\n",
      "          'three': 1,\n",
      "          'movies': 1,\n",
      "          'volcanoes': 1,\n",
      "          'alone': 1,\n",
      "          'television': 1,\n",
      "          'theaters': 1,\n",
      "          'heavy': 1,\n",
      "          'competition': 1,\n",
      "          'moviegoing': 1,\n",
      "          'dollar': 1,\n",
      "          'nof': 1,\n",
      "          'heard': 1,\n",
      "          'decided': 1,\n",
      "          'check': 1,\n",
      "          'released': 1,\n",
      "          'video': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'third': 1,\n",
      "          'world': 1,\n",
      "          'country': 1,\n",
      "          'evacuate': 1,\n",
      "          'little': 1,\n",
      "          'covered': 1,\n",
      "          'ash': 1,\n",
      "          'sulfuric': 1,\n",
      "          'presume': 1,\n",
      "          'nflaming': 1,\n",
      "          'various': 1,\n",
      "          'sizes': 1,\n",
      "          'also': 1,\n",
      "          'sky': 1,\n",
      "          'crushing': 1,\n",
      "          'homes': 1,\n",
      "          'panicking': 1,\n",
      "          'crying': 1,\n",
      "          'horses': 1,\n",
      "          'rearing': 1,\n",
      "          'biblical': 1,\n",
      "          'proportions': 1,\n",
      "          'signified': 1,\n",
      "          'us': 1,\n",
      "          'person': 1,\n",
      "          'dragging': 1,\n",
      "          'cross': 1,\n",
      "          'road': 1,\n",
      "          'nsymbolism': 1,\n",
      "          'blatant': 1,\n",
      "          'learn': 1,\n",
      "          'dalton': 1,\n",
      "          'pierce': 1,\n",
      "          'brosnan': 1,\n",
      "          'volcanologist': 1,\n",
      "          'occurred': 1,\n",
      "          'nharry': 1,\n",
      "          'survived': 1,\n",
      "          'later': 1,\n",
      "          'investigate': 1,\n",
      "          'unusual': 1,\n",
      "          'seismic': 1,\n",
      "          'detected': 1,\n",
      "          'near': 1,\n",
      "          'washington': 1,\n",
      "          'told': 1,\n",
      "          'voted': 1,\n",
      "          'desirable': 1,\n",
      "          'place': 1,\n",
      "          'live': 1,\n",
      "          '20': 1,\n",
      "          '000': 1,\n",
      "          'readers': 1,\n",
      "          'money': 1,\n",
      "          'magazine': 1,\n",
      "          'meets': 1,\n",
      "          'rachel': 1,\n",
      "          'single': 1,\n",
      "          'mother': 1,\n",
      "          'serves': 1,\n",
      "          'proprietor': 1,\n",
      "          'coffee': 1,\n",
      "          'shop': 1,\n",
      "          'seem': 1,\n",
      "          'alarmed': 1,\n",
      "          'determine': 1,\n",
      "          'mountain': 1,\n",
      "          'blow': 1,\n",
      "          'council': 1,\n",
      "          'afraid': 1,\n",
      "          'scare': 1,\n",
      "          'investor': 1,\n",
      "          'pledged': 1,\n",
      "          'put': 1,\n",
      "          'millions': 1,\n",
      "          'dollars': 1,\n",
      "          'developing': 1,\n",
      "          'rather': 1,\n",
      "          'news': 1,\n",
      "          'possible': 1,\n",
      "          'stirrings': 1,\n",
      "          'within': 1,\n",
      "          'neighboring': 1,\n",
      "          'dormant': 1,\n",
      "          'swept': 1,\n",
      "          'rug': 1,\n",
      "          'nhowever': 1,\n",
      "          'young': 1,\n",
      "          'takes': 1,\n",
      "          'skinnydip': 1,\n",
      "          'local': 1,\n",
      "          'hot': 1,\n",
      "          'springs': 1,\n",
      "          'bubbles': 1,\n",
      "          'fissure': 1,\n",
      "          'underneath': 1,\n",
      "          'nthus': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'inevitable': 1,\n",
      "          'contains': 1,\n",
      "          'number': 1,\n",
      "          'cliches': 1,\n",
      "          'nas': 1,\n",
      "          'soon': 1,\n",
      "          'doff': 1,\n",
      "          'clothes': 1,\n",
      "          'know': 1,\n",
      "          'theyre': 1,\n",
      "          'die': 1,\n",
      "          'busybody': 1,\n",
      "          'appearances': 1,\n",
      "          'deathdefying': 1,\n",
      "          'dog': 1,\n",
      "          'ncountless': 1,\n",
      "          'familiar': 1,\n",
      "          'scenarios': 1,\n",
      "          'serve': 1,\n",
      "          'predictable': 1,\n",
      "          'nwatching': 1,\n",
      "          'able': 1,\n",
      "          'anticipate': 1,\n",
      "          'major': 1,\n",
      "          'dialogue': 1,\n",
      "          'nunfortunate': 1,\n",
      "          'since': 1,\n",
      "          'dialog': 1,\n",
      "          'terrible': 1,\n",
      "          'boss': 1,\n",
      "          'charles': 1,\n",
      "          'hallahan': 1,\n",
      "          'join': 1,\n",
      "          'assess': 1,\n",
      "          'npaul': 1,\n",
      "          'basically': 1,\n",
      "          'tells': 1,\n",
      "          'townsfolk': 1,\n",
      "          'predictions': 1,\n",
      "          'arent': 1,\n",
      "          'alarm': 1,\n",
      "          'causes': 1,\n",
      "          'leave': 1,\n",
      "          'fit': 1,\n",
      "          'rage': 1,\n",
      "          'day': 1,\n",
      "          'ready': 1,\n",
      "          'work': 1,\n",
      "          'asks': 1,\n",
      "          'stayed': 1,\n",
      "          'says': 1,\n",
      "          'grim': 1,\n",
      "          'determination': 1,\n",
      "          'towns': 1,\n",
      "          'trouble': 1,\n",
      "          'im': 1,\n",
      "          'youve': 1,\n",
      "          'neven': 1,\n",
      "          'explain': 1,\n",
      "          'need': 1,\n",
      "          'jolt': 1,\n",
      "          'residents': 1,\n",
      "          'leaving': 1,\n",
      "          'nhe': 1,\n",
      "          'likens': 1,\n",
      "          'jump': 1,\n",
      "          'dropped': 1,\n",
      "          'pot': 1,\n",
      "          'boiling': 1,\n",
      "          'cold': 1,\n",
      "          'gradually': 1,\n",
      "          'heated': 1,\n",
      "          'however': 1,\n",
      "          'wont': 1,\n",
      "          'move': 1,\n",
      "          'allow': 1,\n",
      "          'soup': 1,\n",
      "          'nasks': 1,\n",
      "          'responds': 1,\n",
      "          'ndantes': 1,\n",
      "          'singular': 1,\n",
      "          'talent': 1,\n",
      "          'pointing': 1,\n",
      "          'obvious': 1,\n",
      "          'nour': 1,\n",
      "          'heroes': 1,\n",
      "          'boat': 1,\n",
      "          'middle': 1,\n",
      "          'lake': 1,\n",
      "          'realizes': 1,\n",
      "          'turned': 1,\n",
      "          'nmayor': 1,\n",
      "          'demonstrates': 1,\n",
      "          'brilliant': 1,\n",
      "          'powers': 1,\n",
      "          'deduction': 1,\n",
      "          'proclaiming': 1,\n",
      "          'grave': 1,\n",
      "          'tone': 1,\n",
      "          'eats': 1,\n",
      "          'metal': 1,\n",
      "          'nthanks': 1,\n",
      "          'tip': 1,\n",
      "          'labeling': 1,\n",
      "          'wouldnt': 1,\n",
      "          'bad': 1,\n",
      "          'werent': 1,\n",
      "          'fact': 1,\n",
      "          'right': 1,\n",
      "          'sign': 1,\n",
      "          'reads': 1,\n",
      "          'large': 1,\n",
      "          'letters': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'read': 1,\n",
      "          'become': 1,\n",
      "          'item': 1,\n",
      "          'end': 1,\n",
      "          'viewer': 1,\n",
      "          'idea': 1,\n",
      "          'severe': 1,\n",
      "          'lack': 1,\n",
      "          'chemistry': 1,\n",
      "          'characters': 1,\n",
      "          'relationship': 1,\n",
      "          'seems': 1,\n",
      "          'close': 1,\n",
      "          'asking': 1,\n",
      "          'want': 1,\n",
      "          'kiss': 1,\n",
      "          'nwere': 1,\n",
      "          'attracted': 1,\n",
      "          'sure': 1,\n",
      "          'twice': 1,\n",
      "          'crack': 1,\n",
      "          'smile': 1,\n",
      "          'whole': 1,\n",
      "          'pull': 1,\n",
      "          'roughyetdebonair': 1,\n",
      "          'act': 1,\n",
      "          'nwho': 1,\n",
      "          'njames': 1,\n",
      "          'bond': 1,\n",
      "          'feels': 1,\n",
      "          'similarly': 1,\n",
      "          'several': 1,\n",
      "          'warning': 1,\n",
      "          'prior': 1,\n",
      "          'lackluster': 1,\n",
      "          'without': 1,\n",
      "          'suspense': 1,\n",
      "          'feel': 1,\n",
      "          'anything': 1,\n",
      "          'makes': 1,\n",
      "          'crater': 1,\n",
      "          'order': 1,\n",
      "          'retrieve': 1,\n",
      "          'remote': 1,\n",
      "          'controlled': 1,\n",
      "          'robot': 1,\n",
      "          'tremor': 1,\n",
      "          'occurs': 1,\n",
      "          'ndoes': 1,\n",
      "          'plunge': 1,\n",
      "          'headlong': 1,\n",
      "          'death': 1,\n",
      "          'nis': 1,\n",
      "          'engulfed': 1,\n",
      "          'shoots': 1,\n",
      "          'nno': 1,\n",
      "          'break': 1,\n",
      "          'leg': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'seemed': 1,\n",
      "          'set': 1,\n",
      "          'subsequent': 1,\n",
      "          'chopper': 1,\n",
      "          'rescue': 1,\n",
      "          'intended': 1,\n",
      "          'dramatic': 1,\n",
      "          'wasnt': 1,\n",
      "          'none': 1,\n",
      "          'thread': 1,\n",
      "          'left': 1,\n",
      "          'noticeably': 1,\n",
      "          'hanging': 1,\n",
      "          'investment': 1,\n",
      "          'whos': 1,\n",
      "          'greedy': 1,\n",
      "          'possibility': 1,\n",
      "          'eruptionfireearthquakeexplosiontsunamitornadometeorite': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'nits': 1,\n",
      "          'okay': 1,\n",
      "          'course': 1,\n",
      "          'deserved': 1,\n",
      "          'youre': 1,\n",
      "          'unoriginal': 1,\n",
      "          'might': 1,\n",
      "          'go': 1,\n",
      "          'councilmembers': 1,\n",
      "          'concerned': 1,\n",
      "          'really': 1,\n",
      "          'try': 1,\n",
      "          'hard': 1,\n",
      "          'nmaybe': 1,\n",
      "          'mayors': 1,\n",
      "          'apparent': 1,\n",
      "          'reason': 1,\n",
      "          'snaps': 1,\n",
      "          'positing': 1,\n",
      "          'could': 1,\n",
      "          'erupt': 1,\n",
      "          'nperhaps': 1,\n",
      "          'ancestors': 1,\n",
      "          'invested': 1,\n",
      "          'pompeii': 1,\n",
      "          'estate': 1,\n",
      "          'good': 1,\n",
      "          'things': 1,\n",
      "          'scenery': 1,\n",
      "          'panoramic': 1,\n",
      "          'shots': 1,\n",
      "          'forests': 1,\n",
      "          'lakes': 1,\n",
      "          'mountains': 1,\n",
      "          'absolutely': 1,\n",
      "          'beautiful': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'closest': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'pyroclastic': 1,\n",
      "          'nbut': 1,\n",
      "          'speak': 1,\n",
      "          'parts': 1,\n",
      "          'youd': 1,\n",
      "          'probably': 1,\n",
      "          'rewrite': 1,\n",
      "          'script': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 14,\n",
      "          'nthe': 7,\n",
      "          'character': 5,\n",
      "          'really': 4,\n",
      "          'way': 4,\n",
      "          'one': 4,\n",
      "          'role': 4,\n",
      "          'tension': 4,\n",
      "          'get': 4,\n",
      "          'know': 3,\n",
      "          'na': 3,\n",
      "          'time': 3,\n",
      "          'story': 3,\n",
      "          'good': 3,\n",
      "          'jackson': 3,\n",
      "          'given': 3,\n",
      "          'movies': 3,\n",
      "          'scene': 3,\n",
      "          'supposed': 3,\n",
      "          'jacksons': 3,\n",
      "          'nits': 3,\n",
      "          'play': 2,\n",
      "          'doesnt': 2,\n",
      "          'anything': 2,\n",
      "          'kill': 2,\n",
      "          'easy': 2,\n",
      "          'see': 2,\n",
      "          'bullock': 2,\n",
      "          'important': 2,\n",
      "          'nit': 2,\n",
      "          'ive': 2,\n",
      "          'something': 2,\n",
      "          'somehow': 2,\n",
      "          'serious': 2,\n",
      "          'totally': 2,\n",
      "          'ni': 2,\n",
      "          'generate': 2,\n",
      "          'like': 2,\n",
      "          'none': 2,\n",
      "          'whole': 2,\n",
      "          'tried': 2,\n",
      "          'empty': 2,\n",
      "          'little': 2,\n",
      "          'theres': 2,\n",
      "          'dilemma': 2,\n",
      "          'matter': 2,\n",
      "          'moral': 2,\n",
      "          'saw': 2,\n",
      "          'white': 2,\n",
      "          'plot': 2,\n",
      "          'two': 2,\n",
      "          'empathy': 2,\n",
      "          'makes': 2,\n",
      "          'isnt': 2,\n",
      "          'things': 2,\n",
      "          'information': 2,\n",
      "          'nhow': 2,\n",
      "          'questions': 2,\n",
      "          'writing': 2,\n",
      "          'ultimately': 2,\n",
      "          'capsule': 1,\n",
      "          'hamhanded': 1,\n",
      "          'overunderwritten': 1,\n",
      "          'morality': 1,\n",
      "          'masquerading': 1,\n",
      "          'entertainment': 1,\n",
      "          'muddled': 1,\n",
      "          'even': 1,\n",
      "          'advocating': 1,\n",
      "          'hailed': 1,\n",
      "          'best': 1,\n",
      "          'grisham': 1,\n",
      "          'adaptations': 1,\n",
      "          'presents': 1,\n",
      "          'strong': 1,\n",
      "          'almost': 1,\n",
      "          'rancorously': 1,\n",
      "          'full': 1,\n",
      "          'actors': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'sandra': 1,\n",
      "          'kevin': 1,\n",
      "          'spacey': 1,\n",
      "          'charles': 1,\n",
      "          'dutton': 1,\n",
      "          'ostensibly': 1,\n",
      "          'social': 1,\n",
      "          'issue': 1,\n",
      "          'tangling': 1,\n",
      "          'however': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'reasons': 1,\n",
      "          'listed': 1,\n",
      "          'nright': 1,\n",
      "          'beginning': 1,\n",
      "          'deadset': 1,\n",
      "          'stacking': 1,\n",
      "          'deck': 1,\n",
      "          'thoroughly': 1,\n",
      "          'unrepentantly': 1,\n",
      "          'possible': 1,\n",
      "          'pair': 1,\n",
      "          'redneck': 1,\n",
      "          'whites': 1,\n",
      "          'boozed': 1,\n",
      "          'drugged': 1,\n",
      "          'minds': 1,\n",
      "          'kidnap': 1,\n",
      "          'young': 1,\n",
      "          'black': 1,\n",
      "          'girl': 1,\n",
      "          'abuse': 1,\n",
      "          'rape': 1,\n",
      "          'horribly': 1,\n",
      "          'leave': 1,\n",
      "          'dead': 1,\n",
      "          'nafter': 1,\n",
      "          'arrest': 1,\n",
      "          'father': 1,\n",
      "          'takes': 1,\n",
      "          'assault': 1,\n",
      "          'rifle': 1,\n",
      "          'guns': 1,\n",
      "          'trial': 1,\n",
      "          'nmcconaughey': 1,\n",
      "          'drafted': 1,\n",
      "          'lawyer': 1,\n",
      "          'rest': 1,\n",
      "          'strangely': 1,\n",
      "          'predictable': 1,\n",
      "          'courtoom': 1,\n",
      "          'dramatics': 1,\n",
      "          'acting': 1,\n",
      "          'quite': 1,\n",
      "          'cast': 1,\n",
      "          'nsandra': 1,\n",
      "          'actress': 1,\n",
      "          'looks': 1,\n",
      "          'clueless': 1,\n",
      "          'spaceys': 1,\n",
      "          'accent': 1,\n",
      "          'switches': 1,\n",
      "          'random': 1,\n",
      "          'hes': 1,\n",
      "          'thankless': 1,\n",
      "          'well': 1,\n",
      "          'without': 1,\n",
      "          'iota': 1,\n",
      "          'depth': 1,\n",
      "          'mcconaugheys': 1,\n",
      "          'stamped': 1,\n",
      "          'cardboard': 1,\n",
      "          'back': 1,\n",
      "          'cereal': 1,\n",
      "          'box': 1,\n",
      "          'memorable': 1,\n",
      "          'donald': 1,\n",
      "          'sutherlands': 1,\n",
      "          'bit': 1,\n",
      "          'part': 1,\n",
      "          'always': 1,\n",
      "          'consider': 1,\n",
      "          'index': 1,\n",
      "          'desperation': 1,\n",
      "          'able': 1,\n",
      "          'present': 1,\n",
      "          'shocking': 1,\n",
      "          'outlandish': 1,\n",
      "          'events': 1,\n",
      "          'ounce': 1,\n",
      "          'impact': 1,\n",
      "          'nthere': 1,\n",
      "          'riot': 1,\n",
      "          'outside': 1,\n",
      "          'courtroom': 1,\n",
      "          'created': 1,\n",
      "          'incredible': 1,\n",
      "          'winds': 1,\n",
      "          'playing': 1,\n",
      "          'textbook': 1,\n",
      "          'exercise': 1,\n",
      "          'deploy': 1,\n",
      "          'nbecause': 1,\n",
      "          'cant': 1,\n",
      "          'genuine': 1,\n",
      "          'artifically': 1,\n",
      "          'inject': 1,\n",
      "          'clumsy': 1,\n",
      "          'plotting': 1,\n",
      "          'ways': 1,\n",
      "          'throwing': 1,\n",
      "          'subplot': 1,\n",
      "          'bunch': 1,\n",
      "          'vicious': 1,\n",
      "          'kkk': 1,\n",
      "          'crossburners': 1,\n",
      "          'tidied': 1,\n",
      "          'neatly': 1,\n",
      "          'borders': 1,\n",
      "          'nihilistic': 1,\n",
      "          'reminded': 1,\n",
      "          'despicable': 1,\n",
      "          'betrayed': 1,\n",
      "          'tart': 1,\n",
      "          'fundamentally': 1,\n",
      "          'injecting': 1,\n",
      "          'vile': 1,\n",
      "          'graphic': 1,\n",
      "          'acts': 1,\n",
      "          'racism': 1,\n",
      "          'attentiongetter': 1,\n",
      "          'immolates': 1,\n",
      "          'enormous': 1,\n",
      "          'amount': 1,\n",
      "          'potential': 1,\n",
      "          'making': 1,\n",
      "          'critical': 1,\n",
      "          'mistakes': 1,\n",
      "          'nfirst': 1,\n",
      "          'hard': 1,\n",
      "          'judge': 1,\n",
      "          'nhes': 1,\n",
      "          'selfadmittedly': 1,\n",
      "          'guilty': 1,\n",
      "          'sent': 1,\n",
      "          'jail': 1,\n",
      "          'crusade': 1,\n",
      "          'old': 1,\n",
      "          'court': 1,\n",
      "          'land': 1,\n",
      "          'would': 1,\n",
      "          'convict': 1,\n",
      "          'underlying': 1,\n",
      "          'theme': 1,\n",
      "          'never': 1,\n",
      "          'developed': 1,\n",
      "          'organic': 1,\n",
      "          'component': 1,\n",
      "          'sort': 1,\n",
      "          'floats': 1,\n",
      "          'around': 1,\n",
      "          'top': 1,\n",
      "          'grinds': 1,\n",
      "          'away': 1,\n",
      "          'furiously': 1,\n",
      "          'mechanics': 1,\n",
      "          'nanother': 1,\n",
      "          'mistake': 1,\n",
      "          'motivational': 1,\n",
      "          'logic': 1,\n",
      "          'thugs': 1,\n",
      "          'arraigned': 1,\n",
      "          'first': 1,\n",
      "          'maybe': 1,\n",
      "          'dismissed': 1,\n",
      "          'lack': 1,\n",
      "          'evidence': 1,\n",
      "          'say': 1,\n",
      "          'much': 1,\n",
      "          'less': 1,\n",
      "          'nim': 1,\n",
      "          'probably': 1,\n",
      "          'think': 1,\n",
      "          'daughter': 1,\n",
      "          'raped': 1,\n",
      "          'automatically': 1,\n",
      "          'feel': 1,\n",
      "          'thats': 1,\n",
      "          'precisely': 1,\n",
      "          'kind': 1,\n",
      "          'facile': 1,\n",
      "          'thinking': 1,\n",
      "          'real': 1,\n",
      "          'justice': 1,\n",
      "          'impossible': 1,\n",
      "          'n': 1,\n",
      "          'virgin': 1,\n",
      "          'spring': 1,\n",
      "          'note': 1,\n",
      "          'nis': 1,\n",
      "          'simply': 1,\n",
      "          'insane': 1,\n",
      "          'nthat': 1,\n",
      "          'prospect': 1,\n",
      "          'terribly': 1,\n",
      "          'treatment': 1,\n",
      "          'either': 1,\n",
      "          'aggravating': 1,\n",
      "          'coutroom': 1,\n",
      "          'seem': 1,\n",
      "          'law': 1,\n",
      "          'works': 1,\n",
      "          'lawyers': 1,\n",
      "          'nmcconaugheys': 1,\n",
      "          'slipup': 1,\n",
      "          'late': 1,\n",
      "          'witnesses': 1,\n",
      "          'turns': 1,\n",
      "          'convicted': 1,\n",
      "          'capital': 1,\n",
      "          'offense': 1,\n",
      "          'prosecution': 1,\n",
      "          'come': 1,\n",
      "          'didnt': 1,\n",
      "          'handled': 1,\n",
      "          'symptomatic': 1,\n",
      "          'dealing': 1,\n",
      "          'complex': 1,\n",
      "          'legal': 1,\n",
      "          'cheap': 1,\n",
      "          'screenwriterly': 1,\n",
      "          'slambang': 1,\n",
      "          'fashion': 1,\n",
      "          'nthis': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'case': 1,\n",
      "          'frequently': 1,\n",
      "          'interesting': 1,\n",
      "          'despite': 1,\n",
      "          'porcine': 1,\n",
      "          'direction': 1,\n",
      "          'characters': 1,\n",
      "          'except': 1,\n",
      "          'stupid': 1,\n",
      "          'geareddown': 1,\n",
      "          'inches': 1,\n",
      "          'onwards': 1,\n",
      "          'unremarkable': 1,\n",
      "          'another': 1,\n",
      "          'towards': 1,\n",
      "          'contrived': 1,\n",
      "          'ending': 1,\n",
      "          'nat': 1,\n",
      "          'half': 1,\n",
      "          'hours': 1,\n",
      "          'overlong': 1,\n",
      "          'drastically': 1,\n",
      "          'overwritten': 1,\n",
      "          'endless': 1,\n",
      "          'stuff': 1,\n",
      "          'add': 1,\n",
      "          'nothing': 1,\n",
      "          'material': 1,\n",
      "          'handwaving': 1,\n",
      "          'closing': 1,\n",
      "          'argument': 1,\n",
      "          'also': 1,\n",
      "          'sneaky': 1,\n",
      "          'underhanded': 1,\n",
      "          'underscored': 1,\n",
      "          'suspicion': 1,\n",
      "          'manipulative': 1,\n",
      "          'unfair': 1,\n",
      "          'make': 1,\n",
      "          'day': 1,\n",
      "          'kurosawas': 1,\n",
      "          'phenomenal': 1,\n",
      "          'rashomon': 1,\n",
      "          'people': 1,\n",
      "          'deal': 1,\n",
      "          'truth': 1,\n",
      "          'reality': 1,\n",
      "          'dont': 1,\n",
      "          'ponderous': 1,\n",
      "          'seen': 1,\n",
      "          'long': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'deep': 5,\n",
      "          'rising': 5,\n",
      "          'nthe': 4,\n",
      "          'movie': 3,\n",
      "          'ship': 3,\n",
      "          'monster': 3,\n",
      "          'argonautica': 3,\n",
      "          'even': 3,\n",
      "          'cast': 3,\n",
      "          'isnt': 3,\n",
      "          'take': 2,\n",
      "          'place': 2,\n",
      "          'middle': 2,\n",
      "          'story': 2,\n",
      "          'part': 2,\n",
      "          'films': 2,\n",
      "          'movies': 2,\n",
      "          'anaconda': 2,\n",
      "          'titanic': 2,\n",
      "          'known': 2,\n",
      "          'stay': 2,\n",
      "          'giant': 2,\n",
      "          'sea': 2,\n",
      "          'survivors': 2,\n",
      "          'famke': 2,\n",
      "          'janssen': 2,\n",
      "          'na': 2,\n",
      "          'finnegan': 2,\n",
      "          'williams': 2,\n",
      "          'bad': 2,\n",
      "          'like': 2,\n",
      "          'gets': 2,\n",
      "          'alien': 2,\n",
      "          'water': 2,\n",
      "          'nand': 2,\n",
      "          'enough': 2,\n",
      "          'gives': 1,\n",
      "          'sinking': 1,\n",
      "          'feeling': 1,\n",
      "          'literally': 1,\n",
      "          'figuratively': 1,\n",
      "          'cruise': 1,\n",
      "          'slowly': 1,\n",
      "          'immersed': 1,\n",
      "          'ocean': 1,\n",
      "          'squidlike': 1,\n",
      "          'menace': 1,\n",
      "          'unfolding': 1,\n",
      "          'artificial': 1,\n",
      "          'silly': 1,\n",
      "          'almost': 1,\n",
      "          'completely': 1,\n",
      "          'derivative': 1,\n",
      "          'countless': 1,\n",
      "          'better': 1,\n",
      "          'nwhile': 1,\n",
      "          'dumb': 1,\n",
      "          'least': 1,\n",
      "          'decent': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasures': 1,\n",
      "          'example': 1,\n",
      "          'schlocky': 1,\n",
      "          'mountain': 1,\n",
      "          'highs': 1,\n",
      "          'last': 1,\n",
      "          'springs': 1,\n",
      "          'tongue': 1,\n",
      "          'put': 1,\n",
      "          'cheek': 1,\n",
      "          'nfolks': 1,\n",
      "          'month': 1,\n",
      "          'new': 1,\n",
      "          'year': 1,\n",
      "          'already': 1,\n",
      "          'heres': 1,\n",
      "          'candidate': 1,\n",
      "          'one': 1,\n",
      "          'stinkiest': 1,\n",
      "          'releases': 1,\n",
      "          'nmost': 1,\n",
      "          'action': 1,\n",
      "          'takes': 1,\n",
      "          'luxury': 1,\n",
      "          'liner': 1,\n",
      "          'maiden': 1,\n",
      "          'voyage': 1,\n",
      "          'uhoh': 1,\n",
      "          'people': 1,\n",
      "          'seen': 1,\n",
      "          'maybe': 1,\n",
      "          'theyd': 1,\n",
      "          'home': 1,\n",
      "          'attacked': 1,\n",
      "          'tentacled': 1,\n",
      "          'creature': 1,\n",
      "          'slinky': 1,\n",
      "          'jewel': 1,\n",
      "          'thief': 1,\n",
      "          'trilian': 1,\n",
      "          'owner': 1,\n",
      "          'canton': 1,\n",
      "          'anthony': 1,\n",
      "          'heald': 1,\n",
      "          'crew': 1,\n",
      "          'members': 1,\n",
      "          'mercenary': 1,\n",
      "          'team': 1,\n",
      "          'lead': 1,\n",
      "          'resourceful': 1,\n",
      "          'captain': 1,\n",
      "          'john': 1,\n",
      "          'treat': 1,\n",
      "          'board': 1,\n",
      "          'looking': 1,\n",
      "          'assistance': 1,\n",
      "          'boat': 1,\n",
      "          'breaks': 1,\n",
      "          'nearby': 1,\n",
      "          'nbut': 1,\n",
      "          'search': 1,\n",
      "          'uncovers': 1,\n",
      "          'something': 1,\n",
      "          'bloodsoaked': 1,\n",
      "          'hungry': 1,\n",
      "          'helpful': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'overt': 1,\n",
      "          'familiarity': 1,\n",
      "          'makes': 1,\n",
      "          'absolutely': 1,\n",
      "          'attempt': 1,\n",
      "          'differentiate': 1,\n",
      "          'scifihorror': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'concept': 1,\n",
      "          'leviathan': 1,\n",
      "          'meets': 1,\n",
      "          'dash': 1,\n",
      "          'speed': 1,\n",
      "          '2': 1,\n",
      "          'thrown': 1,\n",
      "          'good': 1,\n",
      "          'nmeasure': 1,\n",
      "          'nthis': 1,\n",
      "          'equal': 1,\n",
      "          'parts': 1,\n",
      "          '20': 1,\n",
      "          '000': 1,\n",
      "          'leagues': 1,\n",
      "          'relic': 1,\n",
      "          'knows': 1,\n",
      "          'open': 1,\n",
      "          'doors': 1,\n",
      "          'raptors': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'expel': 1,\n",
      "          'halfdigested': 1,\n",
      "          'victim': 1,\n",
      "          'neat': 1,\n",
      "          'effect': 1,\n",
      "          'admittedly': 1,\n",
      "          'la': 1,\n",
      "          'snake': 1,\n",
      "          'nsome': 1,\n",
      "          'attack': 1,\n",
      "          'sequences': 1,\n",
      "          'straight': 1,\n",
      "          'jaws': 1,\n",
      "          'scene': 1,\n",
      "          'remaining': 1,\n",
      "          'travel': 1,\n",
      "          'escape': 1,\n",
      "          'death': 1,\n",
      "          'right': 1,\n",
      "          'resurrection': 1,\n",
      "          'ntheres': 1,\n",
      "          'jet': 1,\n",
      "          'ski': 1,\n",
      "          'chase': 1,\n",
      "          'hard': 1,\n",
      "          'rain': 1,\n",
      "          'list': 1,\n",
      "          'goes': 1,\n",
      "          'nwatching': 1,\n",
      "          'battle': 1,\n",
      "          'beast': 1,\n",
      "          'murky': 1,\n",
      "          'chore': 1,\n",
      "          'none': 1,\n",
      "          'welldeveloped': 1,\n",
      "          'characters': 1,\n",
      "          'seem': 1,\n",
      "          'project': 1,\n",
      "          'slightest': 1,\n",
      "          'sense': 1,\n",
      "          'fear': 1,\n",
      "          'facing': 1,\n",
      "          'enemy': 1,\n",
      "          'nwilliams': 1,\n",
      "          'affable': 1,\n",
      "          'believable': 1,\n",
      "          'nan': 1,\n",
      "          'interesting': 1,\n",
      "          'supporting': 1,\n",
      "          'thoroughly': 1,\n",
      "          'wasted': 1,\n",
      "          'pretty': 1,\n",
      "          'best': 1,\n",
      "          'goldeneye': 1,\n",
      "          'killer': 1,\n",
      "          'thighs': 1,\n",
      "          'trapped': 1,\n",
      "          'forced': 1,\n",
      "          'romantic': 1,\n",
      "          'interest': 1,\n",
      "          'kevin': 1,\n",
      "          'j': 1,\n",
      "          'oconnor': 1,\n",
      "          'finnegans': 1,\n",
      "          'mechanic': 1,\n",
      "          'provides': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'screechy': 1,\n",
      "          'manic': 1,\n",
      "          'shtick': 1,\n",
      "          'old': 1,\n",
      "          'fast': 1,\n",
      "          'ndjimon': 1,\n",
      "          'honsou': 1,\n",
      "          'received': 1,\n",
      "          'raves': 1,\n",
      "          'performance': 1,\n",
      "          'noble': 1,\n",
      "          'slave': 1,\n",
      "          'decembers': 1,\n",
      "          'amistad': 1,\n",
      "          'pops': 1,\n",
      "          'brief': 1,\n",
      "          'nhe': 1,\n",
      "          'needs': 1,\n",
      "          'away': 1,\n",
      "          'final': 1,\n",
      "          'shot': 1,\n",
      "          'groaner': 1,\n",
      "          '11thhour': 1,\n",
      "          'regurgitation': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'onship': 1,\n",
      "          'saboteur': 1,\n",
      "          'nas': 1,\n",
      "          'deserving': 1,\n",
      "          'snack': 1,\n",
      "          'foodfate': 1,\n",
      "          'taunt': 1,\n",
      "          'youre': 1,\n",
      "          'really': 1,\n",
      "          'asking': 1,\n",
      "          'slow': 1,\n",
      "          'stupid': 1,\n",
      "          'slog': 1,\n",
      "          'without': 1,\n",
      "          'single': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'since': 1,\n",
      "          'know': 1,\n",
      "          'higher': 1,\n",
      "          'casualty': 1,\n",
      "          'rate': 1,\n",
      "          'closer': 1,\n",
      "          'end': 1,\n",
      "          'rooting': 1,\n",
      "          'overgrown': 1,\n",
      "          'squid': 1,\n",
      "          'swallow': 1,\n",
      "          'whole': 1,\n",
      "          'question': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mandingo': 16,\n",
      "          'film': 9,\n",
      "          'hammond': 9,\n",
      "          'nthe': 7,\n",
      "          'slavery': 6,\n",
      "          'slave': 6,\n",
      "          'mede': 6,\n",
      "          'nhammond': 6,\n",
      "          'blanche': 6,\n",
      "          'movie': 5,\n",
      "          'slaves': 5,\n",
      "          'one': 4,\n",
      "          'good': 4,\n",
      "          'bed': 4,\n",
      "          'see': 4,\n",
      "          'films': 4,\n",
      "          'black': 4,\n",
      "          'two': 3,\n",
      "          'trashy': 3,\n",
      "          'although': 3,\n",
      "          'mason': 3,\n",
      "          'king': 3,\n",
      "          'ken': 3,\n",
      "          'never': 3,\n",
      "          'susan': 3,\n",
      "          'george': 3,\n",
      "          'given': 3,\n",
      "          'female': 3,\n",
      "          'easy': 3,\n",
      "          'sex': 3,\n",
      "          'ellen': 3,\n",
      "          'white': 3,\n",
      "          'child': 3,\n",
      "          'boiling': 3,\n",
      "          'n': 3,\n",
      "          'script': 3,\n",
      "          'stereotyped': 3,\n",
      "          'nature': 3,\n",
      "          'seen': 2,\n",
      "          'things': 2,\n",
      "          'look': 2,\n",
      "          'south': 2,\n",
      "          'potboiler': 2,\n",
      "          'trash': 2,\n",
      "          'warren': 2,\n",
      "          'perry': 2,\n",
      "          'named': 2,\n",
      "          'norton': 2,\n",
      "          'simply': 2,\n",
      "          'name': 2,\n",
      "          'mandingos': 2,\n",
      "          'fight': 2,\n",
      "          'time': 2,\n",
      "          'father': 2,\n",
      "          'wench': 2,\n",
      "          'racism': 2,\n",
      "          'sensitive': 2,\n",
      "          'finds': 2,\n",
      "          'another': 2,\n",
      "          'man': 2,\n",
      "          'slept': 2,\n",
      "          'fact': 2,\n",
      "          'nso': 2,\n",
      "          'birth': 2,\n",
      "          'getting': 2,\n",
      "          'pure': 2,\n",
      "          'purpose': 2,\n",
      "          'seems': 2,\n",
      "          'many': 2,\n",
      "          'would': 2,\n",
      "          'southern': 2,\n",
      "          'history': 2,\n",
      "          'weak': 2,\n",
      "          'notion': 2,\n",
      "          'entire': 2,\n",
      "          'based': 2,\n",
      "          'owner': 2,\n",
      "          'nthere': 2,\n",
      "          'owners': 2,\n",
      "          'human': 2,\n",
      "          'number': 2,\n",
      "          'behind': 2,\n",
      "          '1966': 2,\n",
      "          'movies': 2,\n",
      "          'including': 2,\n",
      "          'oscar': 2,\n",
      "          'actors': 2,\n",
      "          'na': 2,\n",
      "          'talk': 2,\n",
      "          'especially': 2,\n",
      "          'credit': 2,\n",
      "          'hollywood': 2,\n",
      "          'might': 2,\n",
      "          'worthwhile': 2,\n",
      "          'potential': 2,\n",
      "          'spielberg': 2,\n",
      "          'traditionally': 1,\n",
      "          'either': 1,\n",
      "          'muchneeded': 1,\n",
      "          'revisionist': 1,\n",
      "          'words': 1,\n",
      "          'critic': 1,\n",
      "          'leonard': 1,\n",
      "          'maltin': 1,\n",
      "          'appeals': 1,\n",
      "          'sm': 1,\n",
      "          'crowd': 1,\n",
      "          'nactually': 1,\n",
      "          'think': 1,\n",
      "          'strange': 1,\n",
      "          'combination': 1,\n",
      "          'fails': 1,\n",
      "          'fronts': 1,\n",
      "          'nits': 1,\n",
      "          'drama': 1,\n",
      "          'dramatic': 1,\n",
      "          'story': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'dilapidated': 1,\n",
      "          'louisiana': 1,\n",
      "          'plantation': 1,\n",
      "          'run': 1,\n",
      "          'crotchety': 1,\n",
      "          'old': 1,\n",
      "          'maxwell': 1,\n",
      "          'james': 1,\n",
      "          'son': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'new': 1,\n",
      "          'orleans': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'trader': 1,\n",
      "          'selling': 1,\n",
      "          'heavyweight': 1,\n",
      "          'boxer': 1,\n",
      "          'nalthough': 1,\n",
      "          'explains': 1,\n",
      "          'africans': 1,\n",
      "          'come': 1,\n",
      "          'region': 1,\n",
      "          'upper': 1,\n",
      "          'niger': 1,\n",
      "          'river': 1,\n",
      "          'valley': 1,\n",
      "          'naccording': 1,\n",
      "          'rolls': 1,\n",
      "          'royce': 1,\n",
      "          'african': 1,\n",
      "          'pays': 1,\n",
      "          'top': 1,\n",
      "          'price': 1,\n",
      "          'others': 1,\n",
      "          'order': 1,\n",
      "          'get': 1,\n",
      "          'spends': 1,\n",
      "          'training': 1,\n",
      "          'fighter': 1,\n",
      "          'money': 1,\n",
      "          'brawls': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'married': 1,\n",
      "          'cousin': 1,\n",
      "          'wants': 1,\n",
      "          'escape': 1,\n",
      "          'family': 1,\n",
      "          'pressure': 1,\n",
      "          'produce': 1,\n",
      "          'grandchild': 1,\n",
      "          'however': 1,\n",
      "          'happier': 1,\n",
      "          'spending': 1,\n",
      "          'nights': 1,\n",
      "          'derogatory': 1,\n",
      "          'used': 1,\n",
      "          'masters': 1,\n",
      "          'nit': 1,\n",
      "          'quickly': 1,\n",
      "          'apparent': 1,\n",
      "          'despite': 1,\n",
      "          'overt': 1,\n",
      "          'love': 1,\n",
      "          'girl': 1,\n",
      "          'brenda': 1,\n",
      "          'sykes': 1,\n",
      "          'considers': 1,\n",
      "          'tainted': 1,\n",
      "          'goods': 1,\n",
      "          'wedding': 1,\n",
      "          'night': 1,\n",
      "          'pleasured': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'fine': 1,\n",
      "          'hes': 1,\n",
      "          'numerous': 1,\n",
      "          'girls': 1,\n",
      "          'wife': 1,\n",
      "          'lady': 1,\n",
      "          'wedlock': 1,\n",
      "          'destroys': 1,\n",
      "          'capacity': 1,\n",
      "          'care': 1,\n",
      "          'usually': 1,\n",
      "          'left': 1,\n",
      "          'lonely': 1,\n",
      "          'sexstarved': 1,\n",
      "          'sleeping': 1,\n",
      "          'nblanche': 1,\n",
      "          'gets': 1,\n",
      "          'back': 1,\n",
      "          'seducing': 1,\n",
      "          'studly': 1,\n",
      "          'bearing': 1,\n",
      "          'stand': 1,\n",
      "          'idea': 1,\n",
      "          'halfblack': 1,\n",
      "          'okay': 1,\n",
      "          'pregnant': 1,\n",
      "          'kills': 1,\n",
      "          'letting': 1,\n",
      "          'bleed': 1,\n",
      "          'death': 1,\n",
      "          'poisons': 1,\n",
      "          'shoots': 1,\n",
      "          'twice': 1,\n",
      "          'shoulder': 1,\n",
      "          'pushes': 1,\n",
      "          'giant': 1,\n",
      "          'cauldron': 1,\n",
      "          'water': 1,\n",
      "          'nyes': 1,\n",
      "          'read': 1,\n",
      "          'right': 1,\n",
      "          'ends': 1,\n",
      "          'revenge': 1,\n",
      "          'alive': 1,\n",
      "          'njudging': 1,\n",
      "          'plot': 1,\n",
      "          'sexploitation': 1,\n",
      "          'main': 1,\n",
      "          'blacks': 1,\n",
      "          'whites': 1,\n",
      "          'together': 1,\n",
      "          'possible': 1,\n",
      "          'slightest': 1,\n",
      "          'commentary': 1,\n",
      "          'mean': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'society': 1,\n",
      "          'nwhen': 1,\n",
      "          'released': 1,\n",
      "          '1975': 1,\n",
      "          'still': 1,\n",
      "          'bit': 1,\n",
      "          'shocker': 1,\n",
      "          'miscegenation': 1,\n",
      "          'screen': 1,\n",
      "          'graphic': 1,\n",
      "          'detail': 1,\n",
      "          'way': 1,\n",
      "          'could': 1,\n",
      "          'revise': 1,\n",
      "          'cinematic': 1,\n",
      "          'attracting': 1,\n",
      "          'large': 1,\n",
      "          'audiences': 1,\n",
      "          'curious': 1,\n",
      "          'voyeurs': 1,\n",
      "          'ndramatically': 1,\n",
      "          'unfocused': 1,\n",
      "          'historically': 1,\n",
      "          'mostly': 1,\n",
      "          'confused': 1,\n",
      "          'nif': 1,\n",
      "          'judge': 1,\n",
      "          'walk': 1,\n",
      "          'away': 1,\n",
      "          'system': 1,\n",
      "          'american': 1,\n",
      "          'sexuality': 1,\n",
      "          'economics': 1,\n",
      "          'nnot': 1,\n",
      "          'working': 1,\n",
      "          'except': 1,\n",
      "          'house': 1,\n",
      "          'servants': 1,\n",
      "          'men': 1,\n",
      "          'spend': 1,\n",
      "          'sitting': 1,\n",
      "          'around': 1,\n",
      "          'sole': 1,\n",
      "          'free': 1,\n",
      "          'historical': 1,\n",
      "          'basis': 1,\n",
      "          'often': 1,\n",
      "          'overwhelming': 1,\n",
      "          'emphasis': 1,\n",
      "          'aspect': 1,\n",
      "          'gives': 1,\n",
      "          'unpleasant': 1,\n",
      "          'taste': 1,\n",
      "          'cheap': 1,\n",
      "          'flick': 1,\n",
      "          'theres': 1,\n",
      "          'plenty': 1,\n",
      "          'violence': 1,\n",
      "          'fights': 1,\n",
      "          'vicious': 1,\n",
      "          'beatings': 1,\n",
      "          'shootings': 1,\n",
      "          'aforementioned': 1,\n",
      "          'sequence': 1,\n",
      "          'thrown': 1,\n",
      "          'measure': 1,\n",
      "          'nsome': 1,\n",
      "          'tried': 1,\n",
      "          'write': 1,\n",
      "          'blaxploitation': 1,\n",
      "          'quicklymade': 1,\n",
      "          'lowbudget': 1,\n",
      "          'appealing': 1,\n",
      "          'sensibilities': 1,\n",
      "          'early': 1,\n",
      "          'seventies': 1,\n",
      "          'studiofinanced': 1,\n",
      "          'paramount': 1,\n",
      "          'pictures': 1,\n",
      "          'produced': 1,\n",
      "          'dino': 1,\n",
      "          'de': 1,\n",
      "          'laurentiis': 1,\n",
      "          'grandiose': 1,\n",
      "          'italian': 1,\n",
      "          'producer': 1,\n",
      "          'notorious': 1,\n",
      "          'productions': 1,\n",
      "          'bible': 1,\n",
      "          'remake': 1,\n",
      "          'kong': 1,\n",
      "          '1976': 1,\n",
      "          'illfated': 1,\n",
      "          'dune': 1,\n",
      "          '1984': 1,\n",
      "          'director': 1,\n",
      "          'richard': 1,\n",
      "          'fleischer': 1,\n",
      "          'veteran': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'several': 1,\n",
      "          'special': 1,\n",
      "          'effectsladen': 1,\n",
      "          'action': 1,\n",
      "          '20': 1,\n",
      "          '000': 1,\n",
      "          'leagues': 1,\n",
      "          'sea': 1,\n",
      "          '1954': 1,\n",
      "          'fantastic': 1,\n",
      "          'voyage': 1,\n",
      "          'well': 1,\n",
      "          'superior': 1,\n",
      "          'suspense': 1,\n",
      "          'narrow': 1,\n",
      "          'margin': 1,\n",
      "          '1952': 1,\n",
      "          'supermarket': 1,\n",
      "          'bestseller': 1,\n",
      "          'ostott': 1,\n",
      "          'subsequent': 1,\n",
      "          'play': 1,\n",
      "          'jack': 1,\n",
      "          'kirkland': 1,\n",
      "          'penned': 1,\n",
      "          'norman': 1,\n",
      "          'wexler': 1,\n",
      "          'nominated': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'work': 1,\n",
      "          'serpico': 1,\n",
      "          'njames': 1,\n",
      "          'wellknown': 1,\n",
      "          'respected': 1,\n",
      "          'already': 1,\n",
      "          'three': 1,\n",
      "          'nominations': 1,\n",
      "          'belt': 1,\n",
      "          'appeared': 1,\n",
      "          'promising': 1,\n",
      "          'career': 1,\n",
      "          'bad': 1,\n",
      "          'reasons': 1,\n",
      "          'experienced': 1,\n",
      "          'filmmakers': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'lousy': 1,\n",
      "          'job': 1,\n",
      "          'nwexlers': 1,\n",
      "          'poor': 1,\n",
      "          'hokum': 1,\n",
      "          'bordering': 1,\n",
      "          'offensive': 1,\n",
      "          'combines': 1,\n",
      "          'slavetalk': 1,\n",
      "          'yessuh': 1,\n",
      "          'massuh': 1,\n",
      "          'fer': 1,\n",
      "          'whutre': 1,\n",
      "          'gittin': 1,\n",
      "          'outta': 1,\n",
      "          'contemporary': 1,\n",
      "          'militant': 1,\n",
      "          'hang': 1,\n",
      "          'gon': 1,\n",
      "          'know': 1,\n",
      "          'killed': 1,\n",
      "          'brother': 1,\n",
      "          'nfleischers': 1,\n",
      "          'direction': 1,\n",
      "          'clumsy': 1,\n",
      "          'scenes': 1,\n",
      "          'give': 1,\n",
      "          'performances': 1,\n",
      "          'whose': 1,\n",
      "          'constant': 1,\n",
      "          'shrieking': 1,\n",
      "          'finally': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'becomes': 1,\n",
      "          'laughable': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'due': 1,\n",
      "          'ndespite': 1,\n",
      "          'exploitative': 1,\n",
      "          'first': 1,\n",
      "          'take': 1,\n",
      "          'alternative': 1,\n",
      "          'nuntil': 1,\n",
      "          'kind': 1,\n",
      "          'underlying': 1,\n",
      "          'dealing': 1,\n",
      "          'neven': 1,\n",
      "          'classics': 1,\n",
      "          'gone': 1,\n",
      "          'wind': 1,\n",
      "          '1939': 1,\n",
      "          'inherently': 1,\n",
      "          'racist': 1,\n",
      "          'glossing': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'reassessed': 1,\n",
      "          'showed': 1,\n",
      "          'wasnt': 1,\n",
      "          'beautiful': 1,\n",
      "          'plantations': 1,\n",
      "          'green': 1,\n",
      "          'fields': 1,\n",
      "          'pretty': 1,\n",
      "          'sunsets': 1,\n",
      "          'nbut': 1,\n",
      "          'constantly': 1,\n",
      "          'undermined': 1,\n",
      "          'negligible': 1,\n",
      "          'pointofview': 1,\n",
      "          'claims': 1,\n",
      "          'perspective': 1,\n",
      "          'narrative': 1,\n",
      "          'focus': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'tales': 1,\n",
      "          'nwith': 1,\n",
      "          'little': 1,\n",
      "          'maturity': 1,\n",
      "          'different': 1,\n",
      "          'handling': 1,\n",
      "          'effective': 1,\n",
      "          'nwhile': 1,\n",
      "          'portrays': 1,\n",
      "          'aspects': 1,\n",
      "          'deals': 1,\n",
      "          'issues': 1,\n",
      "          'brings': 1,\n",
      "          'wexlers': 1,\n",
      "          'refuses': 1,\n",
      "          'move': 1,\n",
      "          'beyond': 1,\n",
      "          'surface': 1,\n",
      "          'level': 1,\n",
      "          'trashily': 1,\n",
      "          'vicarious': 1,\n",
      "          'viewing': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'honestly': 1,\n",
      "          'exploring': 1,\n",
      "          'sexual': 1,\n",
      "          'relationship': 1,\n",
      "          'nsteven': 1,\n",
      "          'touched': 1,\n",
      "          'topic': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          '1993': 1,\n",
      "          'looking': 1,\n",
      "          'nazi': 1,\n",
      "          'officer': 1,\n",
      "          'writhing': 1,\n",
      "          'inner': 1,\n",
      "          'turmoil': 1,\n",
      "          'feelings': 1,\n",
      "          'jewish': 1,\n",
      "          'maid': 1,\n",
      "          'difference': 1,\n",
      "          'dealt': 1,\n",
      "          'situation': 1,\n",
      "          'fair': 1,\n",
      "          'unexploitive': 1,\n",
      "          'manner': 1,\n",
      "          'focused': 1,\n",
      "          'inherent': 1,\n",
      "          'dilemma': 1,\n",
      "          'satisfied': 1,\n",
      "          'show': 1,\n",
      "          'skin': 1,\n",
      "          'overshadows': 1,\n",
      "          'social': 1,\n",
      "          'accomplished': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 23,\n",
      "          'show': 10,\n",
      "          'world': 8,\n",
      "          'really': 8,\n",
      "          'scene': 8,\n",
      "          'one': 8,\n",
      "          'teen': 8,\n",
      "          'nthe': 8,\n",
      "          'kind': 8,\n",
      "          'bad': 8,\n",
      "          'nand': 7,\n",
      "          'something': 7,\n",
      "          'everything': 7,\n",
      "          'make': 6,\n",
      "          'wants': 6,\n",
      "          'go': 6,\n",
      "          'angst': 6,\n",
      "          'amy': 6,\n",
      "          'xavier': 6,\n",
      "          'films': 6,\n",
      "          'horrible': 5,\n",
      "          'like': 5,\n",
      "          'sex': 5,\n",
      "          'people': 5,\n",
      "          'nhe': 5,\n",
      "          'dont': 5,\n",
      "          'two': 4,\n",
      "          'araki': 4,\n",
      "          'teenagers': 4,\n",
      "          'scenes': 4,\n",
      "          'takes': 4,\n",
      "          'place': 4,\n",
      "          'know': 4,\n",
      "          'n': 4,\n",
      "          'doom': 4,\n",
      "          'generation': 4,\n",
      "          'would': 4,\n",
      "          'scream': 4,\n",
      "          'thing': 4,\n",
      "          'get': 4,\n",
      "          'theyre': 4,\n",
      "          'nit': 3,\n",
      "          'basically': 3,\n",
      "          'example': 3,\n",
      "          'another': 3,\n",
      "          'says': 3,\n",
      "          'man': 3,\n",
      "          'cant': 3,\n",
      "          'even': 3,\n",
      "          'nits': 3,\n",
      "          'angsty': 3,\n",
      "          'teens': 3,\n",
      "          'play': 3,\n",
      "          'james': 3,\n",
      "          'duval': 3,\n",
      "          'kill': 3,\n",
      "          'seen': 3,\n",
      "          'doesnt': 3,\n",
      "          'want': 3,\n",
      "          'manner': 3,\n",
      "          'reason': 3,\n",
      "          'level': 3,\n",
      "          'nheres': 3,\n",
      "          'jordan': 3,\n",
      "          'clerk': 3,\n",
      "          'makes': 3,\n",
      "          'say': 3,\n",
      "          'head': 3,\n",
      "          'ni': 3,\n",
      "          'sick': 3,\n",
      "          'violence': 3,\n",
      "          'thinks': 3,\n",
      "          'dead': 3,\n",
      "          'still': 3,\n",
      "          'peter': 3,\n",
      "          'look': 3,\n",
      "          'didnt': 3,\n",
      "          'theres': 3,\n",
      "          'dispondent': 3,\n",
      "          'much': 3,\n",
      "          'dialogue': 2,\n",
      "          'taken': 2,\n",
      "          'bit': 2,\n",
      "          'protagonists': 2,\n",
      "          'somewhere': 2,\n",
      "          'gregg': 2,\n",
      "          'cheap': 2,\n",
      "          'gets': 2,\n",
      "          'better': 2,\n",
      "          'na': 2,\n",
      "          'middle': 2,\n",
      "          'oh': 2,\n",
      "          'im': 2,\n",
      "          'lines': 2,\n",
      "          'life': 2,\n",
      "          'guy': 2,\n",
      "          'right': 2,\n",
      "          'road': 2,\n",
      "          'trip': 2,\n",
      "          'also': 2,\n",
      "          'har': 2,\n",
      "          'blue': 2,\n",
      "          'macgowan': 2,\n",
      "          'white': 2,\n",
      "          'day': 2,\n",
      "          'red': 2,\n",
      "          'jonathan': 2,\n",
      "          'schaech': 2,\n",
      "          'way': 2,\n",
      "          'symbolism': 2,\n",
      "          'nhuh': 2,\n",
      "          'happen': 2,\n",
      "          'weird': 2,\n",
      "          'easy': 2,\n",
      "          'nbut': 2,\n",
      "          'forgets': 2,\n",
      "          'surreal': 2,\n",
      "          'real': 2,\n",
      "          'food': 2,\n",
      "          'stuff': 2,\n",
      "          'mind': 2,\n",
      "          'tells': 2,\n",
      "          'put': 2,\n",
      "          'fuck': 2,\n",
      "          'note': 2,\n",
      "          'shotgun': 2,\n",
      "          'njordan': 2,\n",
      "          'wallet': 2,\n",
      "          'car': 2,\n",
      "          'asks': 2,\n",
      "          'nowhere': 2,\n",
      "          'clean': 2,\n",
      "          'hell': 2,\n",
      "          'art': 2,\n",
      "          'gory': 2,\n",
      "          'today': 2,\n",
      "          'long': 2,\n",
      "          'taking': 2,\n",
      "          'satirical': 2,\n",
      "          'happens': 2,\n",
      "          'watches': 2,\n",
      "          'masturbates': 2,\n",
      "          'semen': 2,\n",
      "          'hand': 2,\n",
      "          'trio': 2,\n",
      "          'giant': 2,\n",
      "          'could': 2,\n",
      "          'probably': 2,\n",
      "          'signed': 2,\n",
      "          'actors': 2,\n",
      "          'annoying': 2,\n",
      "          'line': 2,\n",
      "          'phase': 2,\n",
      "          'experimenting': 2,\n",
      "          'parents': 2,\n",
      "          'express': 2,\n",
      "          'graphic': 2,\n",
      "          'nhow': 2,\n",
      "          'hed': 2,\n",
      "          'every': 2,\n",
      "          'talented': 2,\n",
      "          'worst': 2,\n",
      "          'performance': 2,\n",
      "          'slacker': 2,\n",
      "          'least': 2,\n",
      "          'song': 2,\n",
      "          'almost': 1,\n",
      "          'completely': 1,\n",
      "          'context': 1,\n",
      "          'jazzed': 1,\n",
      "          'inept': 1,\n",
      "          'spoken': 1,\n",
      "          'serves': 1,\n",
      "          'perfect': 1,\n",
      "          'especially': 1,\n",
      "          'realize': 1,\n",
      "          'exchange': 1,\n",
      "          'meant': 1,\n",
      "          'seriously': 1,\n",
      "          'nmr': 1,\n",
      "          'imhavingamidlifecrisis': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'important': 1,\n",
      "          'feel': 1,\n",
      "          'nby': 1,\n",
      "          'surrealism': 1,\n",
      "          'moronic': 1,\n",
      "          'exchanges': 1,\n",
      "          'noh': 1,\n",
      "          'similar': 1,\n",
      "          'said': 1,\n",
      "          'dunno': 1,\n",
      "          'fiftieth': 1,\n",
      "          'counting': 1,\n",
      "          'several': 1,\n",
      "          'masturbation': 1,\n",
      "          'nin': 1,\n",
      "          'humping': 1,\n",
      "          'away': 1,\n",
      "          'top': 1,\n",
      "          'along': 1,\n",
      "          'ever': 1,\n",
      "          'wonder': 1,\n",
      "          'nsorry': 1,\n",
      "          'foreplay': 1,\n",
      "          'act': 1,\n",
      "          'coitus': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'expect': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'spell': 1,\n",
      "          'first': 1,\n",
      "          'name': 1,\n",
      "          'yes': 1,\n",
      "          'joke': 1,\n",
      "          'done': 1,\n",
      "          'advertised': 1,\n",
      "          'movie': 1,\n",
      "          'around': 1,\n",
      "          'killing': 1,\n",
      "          'others': 1,\n",
      "          'attack': 1,\n",
      "          'slogans': 1,\n",
      "          'fourletter': 1,\n",
      "          'word': 1,\n",
      "          'hardy': 1,\n",
      "          'rose': 1,\n",
      "          'later': 1,\n",
      "          'buxom': 1,\n",
      "          'tatum': 1,\n",
      "          'jordon': 1,\n",
      "          'randy': 1,\n",
      "          'quaids': 1,\n",
      "          'son': 1,\n",
      "          'independence': 1,\n",
      "          'pick': 1,\n",
      "          'homicidal': 1,\n",
      "          'maniac': 1,\n",
      "          'lead': 1,\n",
      "          'guitarist': 1,\n",
      "          'nred': 1,\n",
      "          'three': 1,\n",
      "          'things': 1,\n",
      "          'order': 1,\n",
      "          '1': 1,\n",
      "          '2': 1,\n",
      "          'run': 1,\n",
      "          '3': 1,\n",
      "          'remix': 1,\n",
      "          'bunch': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'ngregg': 1,\n",
      "          'obviously': 1,\n",
      "          'rider': 1,\n",
      "          'natural': 1,\n",
      "          'born': 1,\n",
      "          'killers': 1,\n",
      "          'kalifornia': 1,\n",
      "          'tries': 1,\n",
      "          'borrow': 1,\n",
      "          'elements': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'reference': 1,\n",
      "          'guide': 1,\n",
      "          'either': 1,\n",
      "          'represented': 1,\n",
      "          'dug': 1,\n",
      "          'deep': 1,\n",
      "          'subjects': 1,\n",
      "          'brought': 1,\n",
      "          'deeper': 1,\n",
      "          'sole': 1,\n",
      "          'deal': 1,\n",
      "          'supposed': 1,\n",
      "          'earlier': 1,\n",
      "          'quicke': 1,\n",
      "          'mart': 1,\n",
      "          'type': 1,\n",
      "          'namy': 1,\n",
      "          'smoking': 1,\n",
      "          'asian': 1,\n",
      "          'love': 1,\n",
      "          'racist': 1,\n",
      "          'nshe': 1,\n",
      "          'points': 1,\n",
      "          'puts': 1,\n",
      "          'reluctantly': 1,\n",
      "          'hot': 1,\n",
      "          'dogs': 1,\n",
      "          'counter': 1,\n",
      "          'cash': 1,\n",
      "          'register': 1,\n",
      "          'rings': 1,\n",
      "          '6': 1,\n",
      "          '66': 1,\n",
      "          'stop': 1,\n",
      "          'checks': 1,\n",
      "          'left': 1,\n",
      "          'well': 1,\n",
      "          'brings': 1,\n",
      "          'money': 1,\n",
      "          'nthey': 1,\n",
      "          'ready': 1,\n",
      "          'ditched': 1,\n",
      "          'pops': 1,\n",
      "          'fights': 1,\n",
      "          'ends': 1,\n",
      "          'blowing': 1,\n",
      "          'clerks': 1,\n",
      "          'wound': 1,\n",
      "          'shown': 1,\n",
      "          'flying': 1,\n",
      "          'air': 1,\n",
      "          'lands': 1,\n",
      "          'fryer': 1,\n",
      "          'begins': 1,\n",
      "          'object': 1,\n",
      "          'gross': 1,\n",
      "          'naraki': 1,\n",
      "          'extreme': 1,\n",
      "          'nwrong': 1,\n",
      "          'resistance': 1,\n",
      "          'gore': 1,\n",
      "          'nwhen': 1,\n",
      "          'george': 1,\n",
      "          'romero': 1,\n",
      "          'made': 1,\n",
      "          'dawn': 1,\n",
      "          'flick': 1,\n",
      "          'control': 1,\n",
      "          'able': 1,\n",
      "          'nsame': 1,\n",
      "          'goes': 1,\n",
      "          'jacksons': 1,\n",
      "          'disgustingly': 1,\n",
      "          'alive': 1,\n",
      "          'features': 1,\n",
      "          '30': 1,\n",
      "          'minute': 1,\n",
      "          'fest': 1,\n",
      "          'blood': 1,\n",
      "          'guts': 1,\n",
      "          'dismemberments': 1,\n",
      "          'flesh': 1,\n",
      "          'chewing': 1,\n",
      "          'assorted': 1,\n",
      "          'ending': 1,\n",
      "          'lawn': 1,\n",
      "          'mower': 1,\n",
      "          'strapped': 1,\n",
      "          'body': 1,\n",
      "          'sorts': 1,\n",
      "          'zombies': 1,\n",
      "          'controled': 1,\n",
      "          'purpose': 1,\n",
      "          'sticks': 1,\n",
      "          'else': 1,\n",
      "          'couple': 1,\n",
      "          'bath': 1,\n",
      "          'tub': 1,\n",
      "          'licks': 1,\n",
      "          'window': 1,\n",
      "          'falls': 1,\n",
      "          'backwards': 1,\n",
      "          'attacks': 1,\n",
      "          'stabbed': 1,\n",
      "          'crotch': 1,\n",
      "          'sword': 1,\n",
      "          'fast': 1,\n",
      "          'employee': 1,\n",
      "          'stalks': 1,\n",
      "          'arm': 1,\n",
      "          'shot': 1,\n",
      "          'various': 1,\n",
      "          'annoyances': 1,\n",
      "          'nalso': 1,\n",
      "          'million': 1,\n",
      "          'camoes': 1,\n",
      "          'wide': 1,\n",
      "          'assortment': 1,\n",
      "          'getting': 1,\n",
      "          'otoole': 1,\n",
      "          'helen': 1,\n",
      "          'mirren': 1,\n",
      "          'malcolm': 1,\n",
      "          'macdowell': 1,\n",
      "          'john': 1,\n",
      "          'gielgud': 1,\n",
      "          'caligula': 1,\n",
      "          'npeople': 1,\n",
      "          'indie': 1,\n",
      "          'parker': 1,\n",
      "          'posey': 1,\n",
      "          'nicky': 1,\n",
      "          'katt': 1,\n",
      "          'alternative': 1,\n",
      "          'rock': 1,\n",
      "          'stars': 1,\n",
      "          'skinny': 1,\n",
      "          'puppy': 1,\n",
      "          'perry': 1,\n",
      "          'farrel': 1,\n",
      "          'hollywood': 1,\n",
      "          'madam': 1,\n",
      "          'heidi': 1,\n",
      "          'fleiss': 1,\n",
      "          'christopher': 1,\n",
      "          'brady': 1,\n",
      "          'mcknight': 1,\n",
      "          'amanda': 1,\n",
      "          'bearse': 1,\n",
      "          'margaret': 1,\n",
      "          'cho': 1,\n",
      "          'grace': 1,\n",
      "          'screen': 1,\n",
      "          'matter': 1,\n",
      "          'seconds': 1,\n",
      "          'disappear': 1,\n",
      "          'return': 1,\n",
      "          'main': 1,\n",
      "          'plot': 1,\n",
      "          'nwhy': 1,\n",
      "          'nso': 1,\n",
      "          'point': 1,\n",
      "          'hey': 1,\n",
      "          'fill': 1,\n",
      "          'blank': 1,\n",
      "          'nwow': 1,\n",
      "          'ngimme': 1,\n",
      "          'break': 1,\n",
      "          'meaning': 1,\n",
      "          'pretty': 1,\n",
      "          'detect': 1,\n",
      "          'precious': 1,\n",
      "          'entities': 1,\n",
      "          'collide': 1,\n",
      "          'explosion': 1,\n",
      "          'horrific': 1,\n",
      "          'notherwise': 1,\n",
      "          'defined': 1,\n",
      "          'belief': 1,\n",
      "          'teenager': 1,\n",
      "          'nlook': 1,\n",
      "          '19': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'went': 1,\n",
      "          'brief': 1,\n",
      "          'curiously': 1,\n",
      "          'lasted': 1,\n",
      "          'taste': 1,\n",
      "          'nirvana': 1,\n",
      "          'nive': 1,\n",
      "          'since': 1,\n",
      "          'moved': 1,\n",
      "          'annoyingly': 1,\n",
      "          'sophomoric': 1,\n",
      "          'ignorant': 1,\n",
      "          'dealing': 1,\n",
      "          'serious': 1,\n",
      "          'beating': 1,\n",
      "          'wrong': 1,\n",
      "          'horse': 1,\n",
      "          'npart': 1,\n",
      "          'testing': 1,\n",
      "          'waters': 1,\n",
      "          'whining': 1,\n",
      "          'awful': 1,\n",
      "          'purposely': 1,\n",
      "          'feeling': 1,\n",
      "          'nthis': 1,\n",
      "          'characters': 1,\n",
      "          'great': 1,\n",
      "          'punished': 1,\n",
      "          'try': 1,\n",
      "          'defend': 1,\n",
      "          'totally': 1,\n",
      "          'overcome': 1,\n",
      "          'fault': 1,\n",
      "          'worlds': 1,\n",
      "          'nwhat': 1,\n",
      "          'need': 1,\n",
      "          'reality': 1,\n",
      "          'check': 1,\n",
      "          'easily': 1,\n",
      "          'harmed': 1,\n",
      "          'part': 1,\n",
      "          'learning': 1,\n",
      "          'doomed': 1,\n",
      "          'nothing': 1,\n",
      "          'nhence': 1,\n",
      "          'title': 1,\n",
      "          'nnot': 1,\n",
      "          'fallacy': 1,\n",
      "          'intelligent': 1,\n",
      "          'coherent': 1,\n",
      "          'neverythings': 1,\n",
      "          'overly': 1,\n",
      "          'licking': 1,\n",
      "          'talking': 1,\n",
      "          'decapitated': 1,\n",
      "          'constantly': 1,\n",
      "          'back': 1,\n",
      "          'issue': 1,\n",
      "          'nif': 1,\n",
      "          'competence': 1,\n",
      "          'writing': 1,\n",
      "          'direction': 1,\n",
      "          'approach': 1,\n",
      "          'problems': 1,\n",
      "          'think': 1,\n",
      "          'incompetent': 1,\n",
      "          'single': 1,\n",
      "          'possible': 1,\n",
      "          'take': 1,\n",
      "          'acting': 1,\n",
      "          'nrose': 1,\n",
      "          'nyes': 1,\n",
      "          'proved': 1,\n",
      "          'shes': 1,\n",
      "          'christened': 1,\n",
      "          'actresses': 1,\n",
      "          'working': 1,\n",
      "          'nher': 1,\n",
      "          'entire': 1,\n",
      "          'onenote': 1,\n",
      "          'bitchy': 1,\n",
      "          'cries': 1,\n",
      "          'animal': 1,\n",
      "          'forced': 1,\n",
      "          'laughable': 1,\n",
      "          'nequally': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'someone': 1,\n",
      "          'remorse': 1,\n",
      "          'emotions': 1,\n",
      "          'cause': 1,\n",
      "          'strain': 1,\n",
      "          'nhis': 1,\n",
      "          'granted': 1,\n",
      "          'nlets': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'brando': 1,\n",
      "          'stuttering': 1,\n",
      "          'worse': 1,\n",
      "          'deemed': 1,\n",
      "          'actor': 1,\n",
      "          'lots': 1,\n",
      "          'got': 1,\n",
      "          'youre': 1,\n",
      "          'convinced': 1,\n",
      "          'opens': 1,\n",
      "          'club': 1,\n",
      "          'playing': 1,\n",
      "          'nine': 1,\n",
      "          'inch': 1,\n",
      "          'nails': 1,\n",
      "          'banal': 1,\n",
      "          'heresy': 1,\n",
      "          'god': 1,\n",
      "          'deadand': 1,\n",
      "          'caresif': 1,\n",
      "          'hellill': 1,\n",
      "          'see': 1,\n",
      "          'plays': 1,\n",
      "          'strobe': 1,\n",
      "          'lights': 1,\n",
      "          'patrons': 1,\n",
      "          'dancing': 1,\n",
      "          'pans': 1,\n",
      "          'standing': 1,\n",
      "          'looking': 1,\n",
      "          'closes': 1,\n",
      "          'looks': 1,\n",
      "          'camera': 1,\n",
      "          'nno': 1,\n",
      "          'explanation': 1,\n",
      "          'necessary': 1,\n",
      "          'finally': 1,\n",
      "          'grow': 1,\n",
      "          'nreally': 1,\n",
      "          'nmove': 1,\n",
      "          'basement': 1,\n",
      "          'read': 1,\n",
      "          'salinger': 1,\n",
      "          'job': 1,\n",
      "          'quit': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chester': 6,\n",
      "          'team': 5,\n",
      "          'doesnt': 4,\n",
      "          'film': 4,\n",
      "          'comedy': 3,\n",
      "          'girls': 3,\n",
      "          'soccer': 3,\n",
      "          'even': 3,\n",
      "          'reason': 3,\n",
      "          'sports': 3,\n",
      "          'dress': 3,\n",
      "          'martha': 3,\n",
      "          'bad': 3,\n",
      "          'ladybugs': 2,\n",
      "          'cross': 2,\n",
      "          'dressing': 2,\n",
      "          'dangerfield': 2,\n",
      "          'nthis': 2,\n",
      "          'play': 2,\n",
      "          'like': 2,\n",
      "          'sitcom': 2,\n",
      "          'nhe': 2,\n",
      "          'thinks': 2,\n",
      "          'get': 2,\n",
      "          'nwhat': 2,\n",
      "          'know': 2,\n",
      "          'seem': 2,\n",
      "          'less': 2,\n",
      "          'didnt': 2,\n",
      "          'much': 2,\n",
      "          'bess': 2,\n",
      "          'matthew': 2,\n",
      "          'girl': 2,\n",
      "          'story': 2,\n",
      "          'seen': 2,\n",
      "          'going': 2,\n",
      "          'typical': 1,\n",
      "          'relies': 1,\n",
      "          'three': 1,\n",
      "          'supposed': 1,\n",
      "          'guarantees': 1,\n",
      "          'pathetic': 1,\n",
      "          'beats': 1,\n",
      "          'champs': 1,\n",
      "          'presence': 1,\n",
      "          'rodney': 1,\n",
      "          'picture': 1,\n",
      "          'children': 1,\n",
      "          'aimed': 1,\n",
      "          'nand': 1,\n",
      "          'told': 1,\n",
      "          '91minute': 1,\n",
      "          'instead': 1,\n",
      "          'feature': 1,\n",
      "          'nrodney': 1,\n",
      "          'stars': 1,\n",
      "          'lee': 1,\n",
      "          'total': 1,\n",
      "          'schmuck': 1,\n",
      "          'working': 1,\n",
      "          'huge': 1,\n",
      "          'corporation': 1,\n",
      "          'obviously': 1,\n",
      "          'lot': 1,\n",
      "          'self': 1,\n",
      "          'esteem': 1,\n",
      "          'kiss': 1,\n",
      "          'ahead': 1,\n",
      "          'volunteering': 1,\n",
      "          'coach': 1,\n",
      "          'companys': 1,\n",
      "          'shock': 1,\n",
      "          'learn': 1,\n",
      "          'assistant': 1,\n",
      "          'julie': 1,\n",
      "          'jackee': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'game': 1,\n",
      "          'players': 1,\n",
      "          'ni': 1,\n",
      "          'laugh': 1,\n",
      "          'annoy': 1,\n",
      "          'nchesters': 1,\n",
      "          'fiancee': 1,\n",
      "          'graff': 1,\n",
      "          'got': 1,\n",
      "          'promotion': 1,\n",
      "          'addition': 1,\n",
      "          'coaching': 1,\n",
      "          'position': 1,\n",
      "          'course': 1,\n",
      "          'slacker': 1,\n",
      "          'son': 1,\n",
      "          'poorly': 1,\n",
      "          'school': 1,\n",
      "          'kicked': 1,\n",
      "          'teams': 1,\n",
      "          'njonathon': 1,\n",
      "          'brandis': 1,\n",
      "          'nice': 1,\n",
      "          'surprise': 1,\n",
      "          'agrees': 1,\n",
      "          'named': 1,\n",
      "          'help': 1,\n",
      "          'probably': 1,\n",
      "          'crush': 1,\n",
      "          'plays': 1,\n",
      "          'original': 1,\n",
      "          'ideas': 1,\n",
      "          'another': 1,\n",
      "          'retread': 1,\n",
      "          'underdog': 1,\n",
      "          'mixed': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'isnt': 1,\n",
      "          'smart': 1,\n",
      "          'enough': 1,\n",
      "          'upon': 1,\n",
      "          'drag': 1,\n",
      "          'aspect': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'downplays': 1,\n",
      "          'heavily': 1,\n",
      "          'totally': 1,\n",
      "          'unbelievable': 1,\n",
      "          'ncould': 1,\n",
      "          'obvious': 1,\n",
      "          'boy': 1,\n",
      "          'wears': 1,\n",
      "          'wig': 1,\n",
      "          'without': 1,\n",
      "          'makeup': 1,\n",
      "          'dont': 1,\n",
      "          'give': 1,\n",
      "          'falsies': 1,\n",
      "          'nbrandis': 1,\n",
      "          'bother': 1,\n",
      "          'mimic': 1,\n",
      "          'voice': 1,\n",
      "          'either': 1,\n",
      "          'nthen': 1,\n",
      "          'pointless': 1,\n",
      "          'scene': 1,\n",
      "          'shop': 1,\n",
      "          'nmartha': 1,\n",
      "          'field': 1,\n",
      "          'would': 1,\n",
      "          'buy': 1,\n",
      "          'njust': 1,\n",
      "          'think': 1,\n",
      "          'character': 1,\n",
      "          'useful': 1,\n",
      "          'disappears': 1,\n",
      "          'wanders': 1,\n",
      "          'aimlessly': 1,\n",
      "          'looking': 1,\n",
      "          'new': 1,\n",
      "          'plot': 1,\n",
      "          'pick': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'whats': 1,\n",
      "          'really': 1,\n",
      "          'breaks': 1,\n",
      "          'relationship': 1,\n",
      "          'forgotten': 1,\n",
      "          'focuses': 1,\n",
      "          'tension': 1,\n",
      "          'boss': 1,\n",
      "          'couldve': 1,\n",
      "          'cliche': 1,\n",
      "          'feels': 1,\n",
      "          'need': 1,\n",
      "          'go': 1,\n",
      "          'tangents': 1,\n",
      "          'completely': 1,\n",
      "          'unnecessary': 1,\n",
      "          'ntheres': 1,\n",
      "          'feel': 1,\n",
      "          'especially': 1,\n",
      "          'socalled': 1,\n",
      "          'serious': 1,\n",
      "          'moments': 1,\n",
      "          'confusion': 1,\n",
      "          'characters': 1,\n",
      "          'nive': 1,\n",
      "          'worse': 1,\n",
      "          'movies': 1,\n",
      "          'contained': 1,\n",
      "          'sort': 1,\n",
      "          'bizarre': 1,\n",
      "          'charm': 1,\n",
      "          'turns': 1,\n",
      "          'sour': 1,\n",
      "          'ndangerfield': 1,\n",
      "          'finally': 1,\n",
      "          'gets': 1,\n",
      "          'respect': 1,\n",
      "          'end': 1,\n",
      "          'price': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'really': 5,\n",
      "          'scenes': 5,\n",
      "          'nthe': 4,\n",
      "          'bowling': 4,\n",
      "          'farrelly': 3,\n",
      "          'brothers': 3,\n",
      "          'duo': 3,\n",
      "          'dumb': 3,\n",
      "          'thats': 3,\n",
      "          'roy': 3,\n",
      "          'hes': 3,\n",
      "          'amish': 3,\n",
      "          'angel': 3,\n",
      "          'movie': 2,\n",
      "          'stupid': 2,\n",
      "          'comedy': 2,\n",
      "          'best': 2,\n",
      "          'kingpin': 2,\n",
      "          'film': 2,\n",
      "          'directed': 2,\n",
      "          'something': 2,\n",
      "          'mary': 2,\n",
      "          'problem': 2,\n",
      "          'bowler': 2,\n",
      "          'top': 2,\n",
      "          'however': 2,\n",
      "          'runs': 2,\n",
      "          'murray': 2,\n",
      "          'well': 2,\n",
      "          'hand': 2,\n",
      "          'quite': 2,\n",
      "          'course': 2,\n",
      "          'kid': 2,\n",
      "          'particularly': 2,\n",
      "          'roys': 2,\n",
      "          'way': 2,\n",
      "          'hustler': 2,\n",
      "          'wasnt': 2,\n",
      "          'fact': 2,\n",
      "          'funny': 2,\n",
      "          'throw': 2,\n",
      "          'ni': 2,\n",
      "          'mean': 2,\n",
      "          'bit': 2,\n",
      "          'think': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quick': 1,\n",
      "          'review': 1,\n",
      "          'concept': 1,\n",
      "          'enjoying': 1,\n",
      "          'realized': 1,\n",
      "          'keeping': 1,\n",
      "          'nshift': 1,\n",
      "          'gears': 1,\n",
      "          'even': 1,\n",
      "          'audience': 1,\n",
      "          'thrown': 1,\n",
      "          'miserably': 1,\n",
      "          'control': 1,\n",
      "          'nsadly': 1,\n",
      "          'case': 1,\n",
      "          'brought': 1,\n",
      "          'us': 1,\n",
      "          'theres': 1,\n",
      "          'dumber': 1,\n",
      "          'nsince': 1,\n",
      "          'didnt': 1,\n",
      "          'write': 1,\n",
      "          'script': 1,\n",
      "          'assume': 1,\n",
      "          'part': 1,\n",
      "          'story': 1,\n",
      "          'seems': 1,\n",
      "          'good': 1,\n",
      "          'enough': 1,\n",
      "          'pro': 1,\n",
      "          '1970s': 1,\n",
      "          'name': 1,\n",
      "          'munson': 1,\n",
      "          'woody': 1,\n",
      "          'harrelson': 1,\n",
      "          'sitting': 1,\n",
      "          'world': 1,\n",
      "          'nhis': 1,\n",
      "          'popularity': 1,\n",
      "          'gone': 1,\n",
      "          'roof': 1,\n",
      "          'getting': 1,\n",
      "          'career': 1,\n",
      "          'ground': 1,\n",
      "          'nthen': 1,\n",
      "          'ed': 1,\n",
      "          'mccracken': 1,\n",
      "          'bill': 1,\n",
      "          'rival': 1,\n",
      "          'hardly': 1,\n",
      "          'real': 1,\n",
      "          'consideration': 1,\n",
      "          'anything': 1,\n",
      "          'nthese': 1,\n",
      "          'two': 1,\n",
      "          'form': 1,\n",
      "          'illtimed': 1,\n",
      "          'relationship': 1,\n",
      "          'involves': 1,\n",
      "          'risky': 1,\n",
      "          'betting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sees': 1,\n",
      "          'coming': 1,\n",
      "          'eds': 1,\n",
      "          'abandoned': 1,\n",
      "          'lose': 1,\n",
      "          'ball': 1,\n",
      "          'machine': 1,\n",
      "          'nforward': 1,\n",
      "          'seventeen': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'become': 1,\n",
      "          'loser': 1,\n",
      "          'complete': 1,\n",
      "          'mechanical': 1,\n",
      "          'tornup': 1,\n",
      "          'car': 1,\n",
      "          'occasional': 1,\n",
      "          'knocking': 1,\n",
      "          'uglyass': 1,\n",
      "          'landlord': 1,\n",
      "          'avoid': 1,\n",
      "          'paying': 1,\n",
      "          'rent': 1,\n",
      "          'nhowever': 1,\n",
      "          'finds': 1,\n",
      "          'glimmer': 1,\n",
      "          'hope': 1,\n",
      "          'upon': 1,\n",
      "          'visit': 1,\n",
      "          'local': 1,\n",
      "          'alley': 1,\n",
      "          'named': 1,\n",
      "          'ishmael': 1,\n",
      "          'randy': 1,\n",
      "          'quaid': 1,\n",
      "          'arm': 1,\n",
      "          'nwith': 1,\n",
      "          'kids': 1,\n",
      "          'help': 1,\n",
      "          'figures': 1,\n",
      "          'known': 1,\n",
      "          'biggest': 1,\n",
      "          'tournament': 1,\n",
      "          'rapidly': 1,\n",
      "          'approaching': 1,\n",
      "          'reno': 1,\n",
      "          'nevada': 1,\n",
      "          'nof': 1,\n",
      "          'needs': 1,\n",
      "          'coaxing': 1,\n",
      "          'consider': 1,\n",
      "          'nthis': 1,\n",
      "          'leads': 1,\n",
      "          'comic': 1,\n",
      "          'process': 1,\n",
      "          'removing': 1,\n",
      "          'horseshoes': 1,\n",
      "          'milking': 1,\n",
      "          'cow': 1,\n",
      "          'nfinally': 1,\n",
      "          'get': 1,\n",
      "          'road': 1,\n",
      "          'along': 1,\n",
      "          'pick': 1,\n",
      "          'additional': 1,\n",
      "          'helper': 1,\n",
      "          'beautiful': 1,\n",
      "          'played': 1,\n",
      "          'gorgeous': 1,\n",
      "          'vanessa': 1,\n",
      "          'main': 1,\n",
      "          'nin': 1,\n",
      "          'rather': 1,\n",
      "          'hilarious': 1,\n",
      "          'aformentioned': 1,\n",
      "          'explanation': 1,\n",
      "          'children': 1,\n",
      "          'involving': 1,\n",
      "          'cheese': 1,\n",
      "          'grater': 1,\n",
      "          'nbut': 1,\n",
      "          'ntheres': 1,\n",
      "          'couple': 1,\n",
      "          'serious': 1,\n",
      "          'entire': 1,\n",
      "          'momentum': 1,\n",
      "          'like': 1,\n",
      "          'abuse': 1,\n",
      "          'takes': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'necessary': 1,\n",
      "          'ncouldnt': 1,\n",
      "          'handled': 1,\n",
      "          'wackier': 1,\n",
      "          'ethics': 1,\n",
      "          'nparticularly': 1,\n",
      "          'vehicle': 1,\n",
      "          'hair': 1,\n",
      "          'gel': 1,\n",
      "          'easily': 1,\n",
      "          'mistaken': 1,\n",
      "          'nthat': 1,\n",
      "          'ruined': 1,\n",
      "          'bad': 1,\n",
      "          'acting': 1,\n",
      "          'notch': 1,\n",
      "          'especially': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          'nstill': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'ok': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'got': 1,\n",
      "          'back': 1,\n",
      "          'track': 1,\n",
      "          'id': 1,\n",
      "          'still': 1,\n",
      "          'little': 1,\n",
      "          'irked': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'costumes': 3,\n",
      "          'potential': 3,\n",
      "          'seemed': 2,\n",
      "          'like': 2,\n",
      "          'sets': 2,\n",
      "          '60s': 2,\n",
      "          'played': 2,\n",
      "          'myers': 2,\n",
      "          'humor': 2,\n",
      "          'funniest': 2,\n",
      "          'film': 2,\n",
      "          'shagadellic': 1,\n",
      "          'groovy': 1,\n",
      "          'baby': 1,\n",
      "          'n': 1,\n",
      "          'smashing': 1,\n",
      "          'nadorn': 1,\n",
      "          '14': 1,\n",
      "          'page': 1,\n",
      "          'ad': 1,\n",
      "          'tabbed': 1,\n",
      "          '1': 1,\n",
      "          'comedy': 1,\n",
      "          'america': 1,\n",
      "          'may': 1,\n",
      "          '8th': 1,\n",
      "          'ndid': 1,\n",
      "          'attend': 1,\n",
      "          'nat': 1,\n",
      "          '87': 1,\n",
      "          'minutes': 1,\n",
      "          'overlong': 1,\n",
      "          'snl': 1,\n",
      "          'skit': 1,\n",
      "          'steroids': 1,\n",
      "          'length': 1,\n",
      "          'unfunny': 1,\n",
      "          'nyes': 1,\n",
      "          'interesting': 1,\n",
      "          'exaggeration': 1,\n",
      "          'pop': 1,\n",
      "          'frills': 1,\n",
      "          'yes': 1,\n",
      "          'concept': 1,\n",
      "          'dealing': 1,\n",
      "          'secret': 1,\n",
      "          'agentpop': 1,\n",
      "          'icon': 1,\n",
      "          'awakened': 1,\n",
      "          'cryogenic': 1,\n",
      "          'slumber': 1,\n",
      "          'battle': 1,\n",
      "          'arch': 1,\n",
      "          'enemy': 1,\n",
      "          'dr': 1,\n",
      "          'nevil': 1,\n",
      "          'also': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'nfun': 1,\n",
      "          'scenery': 1,\n",
      "          'make': 1,\n",
      "          'lets': 1,\n",
      "          'throw': 1,\n",
      "          'hefty': 1,\n",
      "          'dose': 1,\n",
      "          'bathroom': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'good': 1,\n",
      "          'bubbles': 1,\n",
      "          'bathtub': 1,\n",
      "          'joke': 1,\n",
      "          'much': 1,\n",
      "          'next': 1,\n",
      "          'person': 1,\n",
      "          'type': 1,\n",
      "          'thing': 1,\n",
      "          'waste': 1,\n",
      "          'yuor': 1,\n",
      "          'talent': 1,\n",
      "          'money': 1,\n",
      "          'nbut': 1,\n",
      "          'way': 1,\n",
      "          'things': 1,\n",
      "          'work': 1,\n",
      "          'days': 1,\n",
      "          'business': 1,\n",
      "          'call': 1,\n",
      "          'people': 1,\n",
      "          'believe': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'stars': 1,\n",
      "          'sadly': 1,\n",
      "          'unmet': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'may': 5,\n",
      "          'come': 5,\n",
      "          'film': 5,\n",
      "          'dreams': 4,\n",
      "          'robin': 3,\n",
      "          'chris': 3,\n",
      "          'get': 3,\n",
      "          'nthe': 3,\n",
      "          'help': 3,\n",
      "          'emotion': 3,\n",
      "          'williams': 2,\n",
      "          'time': 2,\n",
      "          'redeeming': 2,\n",
      "          'incredible': 2,\n",
      "          'effects': 2,\n",
      "          'meets': 2,\n",
      "          'great': 2,\n",
      "          'kids': 2,\n",
      "          'sadly': 2,\n",
      "          'car': 2,\n",
      "          'crash': 2,\n",
      "          'worse': 2,\n",
      "          'goes': 2,\n",
      "          'heaven': 2,\n",
      "          'gooding': 2,\n",
      "          'jnr': 2,\n",
      "          'cant': 2,\n",
      "          'n': 2,\n",
      "          'like': 2,\n",
      "          'hell': 2,\n",
      "          'traveller': 2,\n",
      "          'von': 2,\n",
      "          'sydow': 2,\n",
      "          'novel': 2,\n",
      "          'matheson': 2,\n",
      "          'spielberg': 2,\n",
      "          'never': 2,\n",
      "          'movie': 2,\n",
      "          'characters': 2,\n",
      "          'face': 2,\n",
      "          'performance': 2,\n",
      "          'look': 2,\n",
      "          'pretty': 2,\n",
      "          'nothing': 2,\n",
      "          'special': 2,\n",
      "          'adds': 2,\n",
      "          'best': 2,\n",
      "          'performers': 2,\n",
      "          'script': 2,\n",
      "          'actors': 2,\n",
      "          'music': 2,\n",
      "          'scene': 2,\n",
      "          'ninstead': 2,\n",
      "          'theres': 2,\n",
      "          'hopeless': 2,\n",
      "          'ending': 2,\n",
      "          'nbut': 2,\n",
      "          '1998': 2,\n",
      "          'without': 1,\n",
      "          'beard': 1,\n",
      "          'returns': 1,\n",
      "          'drama': 1,\n",
      "          'sloppy': 1,\n",
      "          'sickly': 1,\n",
      "          'sweet': 1,\n",
      "          'fantasy': 1,\n",
      "          'features': 1,\n",
      "          'apart': 1,\n",
      "          'nhe': 1,\n",
      "          'plays': 1,\n",
      "          'nielsen': 1,\n",
      "          'annie': 1,\n",
      "          'annabella': 1,\n",
      "          'sciora': 1,\n",
      "          'promptly': 1,\n",
      "          'marries': 1,\n",
      "          'nthey': 1,\n",
      "          'two': 1,\n",
      "          'die': 1,\n",
      "          'njust': 1,\n",
      "          'couldnt': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'guide': 1,\n",
      "          'albert': 1,\n",
      "          'nannie': 1,\n",
      "          'take': 1,\n",
      "          'grief': 1,\n",
      "          'anymore': 1,\n",
      "          'kills': 1,\n",
      "          'sounding': 1,\n",
      "          'good': 1,\n",
      "          'fun': 1,\n",
      "          'far': 1,\n",
      "          'penalty': 1,\n",
      "          'suicide': 1,\n",
      "          'go': 1,\n",
      "          'mission': 1,\n",
      "          'try': 1,\n",
      "          'rescue': 1,\n",
      "          'using': 1,\n",
      "          'max': 1,\n",
      "          'nbased': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'writer': 1,\n",
      "          'richard': 1,\n",
      "          'clunky': 1,\n",
      "          'manufactured': 1,\n",
      "          'material': 1,\n",
      "          'doused': 1,\n",
      "          'extra': 1,\n",
      "          'load': 1,\n",
      "          'sugar': 1,\n",
      "          'nthis': 1,\n",
      "          'made': 1,\n",
      "          'neverything': 1,\n",
      "          'wrong': 1,\n",
      "          'performances': 1,\n",
      "          'forced': 1,\n",
      "          'audiences': 1,\n",
      "          'fail': 1,\n",
      "          'relate': 1,\n",
      "          'nwilliams': 1,\n",
      "          'puts': 1,\n",
      "          'convincing': 1,\n",
      "          'upset': 1,\n",
      "          'thats': 1,\n",
      "          'ntheres': 1,\n",
      "          'behind': 1,\n",
      "          'nscioras': 1,\n",
      "          'lazy': 1,\n",
      "          'bogs': 1,\n",
      "          'whole': 1,\n",
      "          'nshe': 1,\n",
      "          'act': 1,\n",
      "          'nmax': 1,\n",
      "          'k': 1,\n",
      "          'ncuba': 1,\n",
      "          'thankfully': 1,\n",
      "          'bounce': 1,\n",
      "          'certainly': 1,\n",
      "          'performer': 1,\n",
      "          'nits': 1,\n",
      "          'shame': 1,\n",
      "          'character': 1,\n",
      "          'flat': 1,\n",
      "          '2d': 1,\n",
      "          'offers': 1,\n",
      "          'room': 1,\n",
      "          'improvement': 1,\n",
      "          'nall': 1,\n",
      "          'work': 1,\n",
      "          'soppy': 1,\n",
      "          'tries': 1,\n",
      "          'going': 1,\n",
      "          'takes': 1,\n",
      "          'ground': 1,\n",
      "          'nthere': 1,\n",
      "          '_some_': 1,\n",
      "          'scenes': 1,\n",
      "          'could': 1,\n",
      "          'real': 1,\n",
      "          'heartwarmers': 1,\n",
      "          'faceless': 1,\n",
      "          'dont': 1,\n",
      "          'anything': 1,\n",
      "          'nwhile': 1,\n",
      "          'films': 1,\n",
      "          'e': 1,\n",
      "          'used': 1,\n",
      "          'direction': 1,\n",
      "          'pull': 1,\n",
      "          'masterful': 1,\n",
      "          'hearttugging': 1,\n",
      "          'haphazard': 1,\n",
      "          'expecting': 1,\n",
      "          'automatically': 1,\n",
      "          'rather': 1,\n",
      "          'boring': 1,\n",
      "          'nsure': 1,\n",
      "          'michael': 1,\n",
      "          'kamen': 1,\n",
      "          'cinematography': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'eduardo': 1,\n",
      "          'serra': 1,\n",
      "          'something': 1,\n",
      "          'lacking': 1,\n",
      "          'doesnt': 1,\n",
      "          'filled': 1,\n",
      "          'romantic': 1,\n",
      "          'clich': 1,\n",
      "          'dud': 1,\n",
      "          'speeches': 1,\n",
      "          'nrichard': 1,\n",
      "          'write': 1,\n",
      "          'awesome': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'stories': 1,\n",
      "          'would': 1,\n",
      "          'embarrassed': 1,\n",
      "          'bargain': 1,\n",
      "          'bin': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'converted': 1,\n",
      "          '70': 1,\n",
      "          'million': 1,\n",
      "          'vehicle': 1,\n",
      "          'ndespite': 1,\n",
      "          'set': 1,\n",
      "          'mightily': 1,\n",
      "          'depressing': 1,\n",
      "          'rushes': 1,\n",
      "          'happy': 1,\n",
      "          'everything': 1,\n",
      "          'sad': 1,\n",
      "          'black': 1,\n",
      "          'make': 1,\n",
      "          'even': 1,\n",
      "          'stupid': 1,\n",
      "          'one': 1,\n",
      "          'feature': 1,\n",
      "          'failure': 1,\n",
      "          'nheaven': 1,\n",
      "          'truly': 1,\n",
      "          'places': 1,\n",
      "          'fit': 1,\n",
      "          'perfectly': 1,\n",
      "          'virtual': 1,\n",
      "          'sets': 1,\n",
      "          'despite': 1,\n",
      "          'proves': 1,\n",
      "          'biggest': 1,\n",
      "          'disappointment': 1,\n",
      "          'raising': 1,\n",
      "          'questions': 1,\n",
      "          'existence': 1,\n",
      "          'raises': 1,\n",
      "          'boredom': 1,\n",
      "          'nsadly': 1,\n",
      "          'recommend': 1,\n",
      "          'give': 1,\n",
      "          'miss': 1,\n",
      "          'nbetter': 1,\n",
      "          'luck': 1,\n",
      "          'next': 1,\n",
      "          'na': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'review': 1,\n",
      "          'know': 1,\n",
      "          'norville': 1,\n",
      "          'barnes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 4,\n",
      "          'fred': 4,\n",
      "          'williams': 4,\n",
      "          'astronaut': 4,\n",
      "          'much': 4,\n",
      "          'hes': 4,\n",
      "          'program': 4,\n",
      "          'even': 4,\n",
      "          'kids': 4,\n",
      "          'n': 3,\n",
      "          'cant': 3,\n",
      "          'space': 3,\n",
      "          'nasa': 3,\n",
      "          'first': 3,\n",
      "          'thing': 3,\n",
      "          'others': 2,\n",
      "          'movie': 2,\n",
      "          'take': 2,\n",
      "          'simple': 2,\n",
      "          'nfred': 2,\n",
      "          'nas': 2,\n",
      "          'mission': 2,\n",
      "          'think': 2,\n",
      "          'training': 2,\n",
      "          'important': 2,\n",
      "          'like': 2,\n",
      "          'anything': 2,\n",
      "          'another': 2,\n",
      "          'kid': 2,\n",
      "          'poor': 2,\n",
      "          'role': 2,\n",
      "          'would': 2,\n",
      "          'might': 2,\n",
      "          'less': 2,\n",
      "          'example': 2,\n",
      "          'something': 2,\n",
      "          'make': 2,\n",
      "          'admit': 2,\n",
      "          'little': 2,\n",
      "          'arent': 2,\n",
      "          'enjoy': 2,\n",
      "          'could': 2,\n",
      "          'catch': 1,\n",
      "          'phrase': 1,\n",
      "          'disneys': 1,\n",
      "          'rocket': 1,\n",
      "          'man': 1,\n",
      "          'spoken': 1,\n",
      "          'z': 1,\n",
      "          'randall': 1,\n",
      "          'harland': 1,\n",
      "          'bumbling': 1,\n",
      "          'idiot': 1,\n",
      "          'computer': 1,\n",
      "          'programmer': 1,\n",
      "          'turned': 1,\n",
      "          'continuously': 1,\n",
      "          'wreaks': 1,\n",
      "          'havoc': 1,\n",
      "          'everywhere': 1,\n",
      "          'goes': 1,\n",
      "          'wasnt': 1,\n",
      "          'proclaims': 1,\n",
      "          'aftermath': 1,\n",
      "          'stupidity': 1,\n",
      "          'brings': 1,\n",
      "          'looks': 1,\n",
      "          'disgust': 1,\n",
      "          'nwell': 1,\n",
      "          'comes': 1,\n",
      "          'horrible': 1,\n",
      "          'blame': 1,\n",
      "          'sure': 1,\n",
      "          'justify': 1,\n",
      "          'tag': 1,\n",
      "          'line': 1,\n",
      "          'either': 1,\n",
      "          'dreamed': 1,\n",
      "          'travel': 1,\n",
      "          'since': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'turning': 1,\n",
      "          'clothes': 1,\n",
      "          'dryer': 1,\n",
      "          'mock': 1,\n",
      "          'shuttle': 1,\n",
      "          'staring': 1,\n",
      "          'wideeyed': 1,\n",
      "          'poster': 1,\n",
      "          'earth': 1,\n",
      "          '30yearold': 1,\n",
      "          'hasnt': 1,\n",
      "          'grown': 1,\n",
      "          'least': 1,\n",
      "          'somewhat': 1,\n",
      "          'closer': 1,\n",
      "          'goal': 1,\n",
      "          'designing': 1,\n",
      "          'software': 1,\n",
      "          'nwhen': 1,\n",
      "          'upcoming': 1,\n",
      "          'mars': 1,\n",
      "          'becomes': 1,\n",
      "          'injured': 1,\n",
      "          'calls': 1,\n",
      "          'person': 1,\n",
      "          'knows': 1,\n",
      "          'programming': 1,\n",
      "          'inside': 1,\n",
      "          'fill': 1,\n",
      "          'void': 1,\n",
      "          'nyes': 1,\n",
      "          'although': 1,\n",
      "          'obviously': 1,\n",
      "          'klutzy': 1,\n",
      "          'moron': 1,\n",
      "          'doesnt': 1,\n",
      "          'twice': 1,\n",
      "          'throwing': 1,\n",
      "          'rigorous': 1,\n",
      "          'assist': 1,\n",
      "          'events': 1,\n",
      "          'time': 1,\n",
      "          'ever': 1,\n",
      "          'known': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'film': 1,\n",
      "          'watch': 1,\n",
      "          'takes': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'laughs': 1,\n",
      "          'screams': 1,\n",
      "          'never': 1,\n",
      "          'breaks': 1,\n",
      "          'sweat': 1,\n",
      "          'views': 1,\n",
      "          'preparation': 1,\n",
      "          'childs': 1,\n",
      "          'play': 1,\n",
      "          'nhis': 1,\n",
      "          'passive': 1,\n",
      "          'approach': 1,\n",
      "          'eventually': 1,\n",
      "          'leads': 1,\n",
      "          'many': 1,\n",
      "          'recordbreaking': 1,\n",
      "          'feats': 1,\n",
      "          'dismay': 1,\n",
      "          'cocky': 1,\n",
      "          'counterpart': 1,\n",
      "          'commander': 1,\n",
      "          'captain': 1,\n",
      "          'overbeck': 1,\n",
      "          'william': 1,\n",
      "          'sadler': 1,\n",
      "          'held': 1,\n",
      "          'records': 1,\n",
      "          'noverbeck': 1,\n",
      "          'regretfully': 1,\n",
      "          'accompany': 1,\n",
      "          'two': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'julie': 1,\n",
      "          'ford': 1,\n",
      "          'stupids': 1,\n",
      "          'jessica': 1,\n",
      "          'lundy': 1,\n",
      "          'chimpanzee': 1,\n",
      "          'civilized': 1,\n",
      "          'antagonizing': 1,\n",
      "          'protagonist': 1,\n",
      "          'nfrom': 1,\n",
      "          'subjected': 1,\n",
      "          'lame': 1,\n",
      "          'gag': 1,\n",
      "          'dealing': 1,\n",
      "          'snot': 1,\n",
      "          'laxatives': 1,\n",
      "          'flatulence': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'standard': 1,\n",
      "          'material': 1,\n",
      "          'nalmost': 1,\n",
      "          'sounding': 1,\n",
      "          'james': 1,\n",
      "          'stewart': 1,\n",
      "          'impressionist': 1,\n",
      "          'awful': 1,\n",
      "          'starring': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'feeling': 1,\n",
      "          'jerry': 1,\n",
      "          'lewis': 1,\n",
      "          'peewee': 1,\n",
      "          'herman': 1,\n",
      "          'related': 1,\n",
      "          'produced': 1,\n",
      "          'inbred': 1,\n",
      "          'offspring': 1,\n",
      "          'nwhile': 1,\n",
      "          'annoying': 1,\n",
      "          'actors': 1,\n",
      "          'cater': 1,\n",
      "          'zany': 1,\n",
      "          'stupid': 1,\n",
      "          'comedy': 1,\n",
      "          'unlikeable': 1,\n",
      "          'nto': 1,\n",
      "          'say': 1,\n",
      "          'understandably': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'annoy': 1,\n",
      "          'guy': 1,\n",
      "          'funny': 1,\n",
      "          'nwhy': 1,\n",
      "          'nbecause': 1,\n",
      "          'possesses': 1,\n",
      "          'stupidness': 1,\n",
      "          'needed': 1,\n",
      "          'pull': 1,\n",
      "          'performance': 1,\n",
      "          'understated': 1,\n",
      "          'boring': 1,\n",
      "          'nclassic': 1,\n",
      "          'comedic': 1,\n",
      "          'dunces': 1,\n",
      "          'generally': 1,\n",
      "          'oblivious': 1,\n",
      "          'idiocy': 1,\n",
      "          'nstan': 1,\n",
      "          'laurel': 1,\n",
      "          'innocent': 1,\n",
      "          'troublemaking': 1,\n",
      "          'immediately': 1,\n",
      "          'fond': 1,\n",
      "          'npeter': 1,\n",
      "          'sellers': 1,\n",
      "          'inspector': 1,\n",
      "          'clouseau': 1,\n",
      "          'selfassured': 1,\n",
      "          'confident': 1,\n",
      "          'trip': 1,\n",
      "          'humor': 1,\n",
      "          'best': 1,\n",
      "          'nwilliams': 1,\n",
      "          'hand': 1,\n",
      "          'garner': 1,\n",
      "          'pity': 1,\n",
      "          'needs': 1,\n",
      "          'us': 1,\n",
      "          'love': 1,\n",
      "          'antiglory': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'bigger': 1,\n",
      "          'names': 1,\n",
      "          'smaller': 1,\n",
      "          'roles': 1,\n",
      "          'beau': 1,\n",
      "          'bridges': 1,\n",
      "          'shelley': 1,\n",
      "          'duvall': 1,\n",
      "          'nobody': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nthis': 1,\n",
      "          'fastfood': 1,\n",
      "          'equivalent': 1,\n",
      "          'cinema': 1,\n",
      "          'massproduced': 1,\n",
      "          'mediocre': 1,\n",
      "          'priced': 1,\n",
      "          'hard': 1,\n",
      "          'stomach': 1,\n",
      "          'ngiving': 1,\n",
      "          'oneandahalf': 1,\n",
      "          'stars': 1,\n",
      "          'extremely': 1,\n",
      "          'generous': 1,\n",
      "          'ill': 1,\n",
      "          'laughing': 1,\n",
      "          'times': 1,\n",
      "          'nthe': 1,\n",
      "          'amazing': 1,\n",
      "          'theater': 1,\n",
      "          'packed': 1,\n",
      "          'laughter': 1,\n",
      "          'rarely': 1,\n",
      "          'heard': 1,\n",
      "          'children': 1,\n",
      "          'ni': 1,\n",
      "          'must': 1,\n",
      "          'gave': 1,\n",
      "          'respect': 1,\n",
      "          'didnt': 1,\n",
      "          'crack': 1,\n",
      "          'every': 1,\n",
      "          'nthen': 1,\n",
      "          'maybe': 1,\n",
      "          'asleep': 1,\n",
      "          'nsome': 1,\n",
      "          'people': 1,\n",
      "          'critics': 1,\n",
      "          'harsh': 1,\n",
      "          'movies': 1,\n",
      "          'claiming': 1,\n",
      "          'adults': 1,\n",
      "          'targeted': 1,\n",
      "          'audience': 1,\n",
      "          'therefore': 1,\n",
      "          'meant': 1,\n",
      "          'wont': 1,\n",
      "          'nsadly': 1,\n",
      "          'also': 1,\n",
      "          'true': 1,\n",
      "          'almost': 1,\n",
      "          'presented': 1,\n",
      "          'right': 1,\n",
      "          'na': 1,\n",
      "          'twohour': 1,\n",
      "          'still': 1,\n",
      "          'shot': 1,\n",
      "          'dog': 1,\n",
      "          'cartoonish': 1,\n",
      "          'voice': 1,\n",
      "          'entertain': 1,\n",
      "          'lot': 1,\n",
      "          'toddlers': 1,\n",
      "          'artistic': 1,\n",
      "          'beauty': 1,\n",
      "          'beast': 1,\n",
      "          'easily': 1,\n",
      "          'nand': 1,\n",
      "          'saying': 1,\n",
      "          'parents': 1,\n",
      "          'perspective': 1,\n",
      "          'isnt': 1,\n",
      "          'quite': 1,\n",
      "          'theory': 1,\n",
      "          'theyre': 1,\n",
      "          'ones': 1,\n",
      "          'films': 1,\n",
      "          'place': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'heyst': 8,\n",
      "          'jones': 6,\n",
      "          'film': 6,\n",
      "          'heysts': 5,\n",
      "          'mr': 5,\n",
      "          'victory': 4,\n",
      "          'conrads': 4,\n",
      "          'love': 4,\n",
      "          'relationship': 4,\n",
      "          'n': 4,\n",
      "          'novel': 3,\n",
      "          'alma': 3,\n",
      "          'characterization': 3,\n",
      "          'characters': 3,\n",
      "          'detachment': 3,\n",
      "          'much': 3,\n",
      "          'conrad': 2,\n",
      "          'arrival': 2,\n",
      "          'sam': 2,\n",
      "          'ricardo': 2,\n",
      "          'rufus': 2,\n",
      "          'sewell': 2,\n",
      "          'come': 2,\n",
      "          'nwhile': 2,\n",
      "          'struggle': 2,\n",
      "          'lost': 2,\n",
      "          'character': 2,\n",
      "          'left': 2,\n",
      "          'human': 2,\n",
      "          'involvement': 2,\n",
      "          'one': 2,\n",
      "          'hand': 2,\n",
      "          'dafoes': 2,\n",
      "          'end': 2,\n",
      "          'supposed': 2,\n",
      "          'philosophy': 2,\n",
      "          'yet': 2,\n",
      "          'two': 2,\n",
      "          'true': 2,\n",
      "          'almas': 2,\n",
      "          'accent': 2,\n",
      "          'schomberg': 2,\n",
      "          'terror': 2,\n",
      "          'plans': 2,\n",
      "          'behind': 2,\n",
      "          'nat': 2,\n",
      "          'based': 1,\n",
      "          'set': 1,\n",
      "          '1914': 1,\n",
      "          'joseph': 1,\n",
      "          'spins': 1,\n",
      "          'tale': 1,\n",
      "          'pair': 1,\n",
      "          'lovers': 1,\n",
      "          'william': 1,\n",
      "          'dafoe': 1,\n",
      "          'irene': 1,\n",
      "          'jacob': 1,\n",
      "          'seek': 1,\n",
      "          'refuge': 1,\n",
      "          'isolated': 1,\n",
      "          'island': 1,\n",
      "          'nhowever': 1,\n",
      "          'idyllic': 1,\n",
      "          'world': 1,\n",
      "          'begins': 1,\n",
      "          'crumble': 1,\n",
      "          'upon': 1,\n",
      "          'neil': 1,\n",
      "          'martin': 1,\n",
      "          'servant': 1,\n",
      "          'pedro': 1,\n",
      "          'graziano': 1,\n",
      "          'marcelli': 1,\n",
      "          'steal': 1,\n",
      "          'rumoured': 1,\n",
      "          'plunder': 1,\n",
      "          'largely': 1,\n",
      "          'complex': 1,\n",
      "          'sadly': 1,\n",
      "          'transposes': 1,\n",
      "          'lacklustre': 1,\n",
      "          'leads': 1,\n",
      "          'disappointing': 1,\n",
      "          'nconrads': 1,\n",
      "          'adheres': 1,\n",
      "          'religiously': 1,\n",
      "          'late': 1,\n",
      "          'fathers': 1,\n",
      "          'ways': 1,\n",
      "          'isolation': 1,\n",
      "          'nhis': 1,\n",
      "          'ascetic': 1,\n",
      "          'lifestyle': 1,\n",
      "          'thrown': 1,\n",
      "          'question': 1,\n",
      "          'meets': 1,\n",
      "          'helpless': 1,\n",
      "          'orchestra': 1,\n",
      "          'girl': 1,\n",
      "          'charms': 1,\n",
      "          'voice': 1,\n",
      "          'embrace': 1,\n",
      "          'solitude': 1,\n",
      "          'however': 1,\n",
      "          'mark': 1,\n",
      "          'peploes': 1,\n",
      "          'director': 1,\n",
      "          'writer': 1,\n",
      "          'diluted': 1,\n",
      "          'version': 1,\n",
      "          'nwithout': 1,\n",
      "          'properly': 1,\n",
      "          'establishing': 1,\n",
      "          'crucial': 1,\n",
      "          'details': 1,\n",
      "          'main': 1,\n",
      "          'shallow': 1,\n",
      "          'treatment': 1,\n",
      "          'internal': 1,\n",
      "          'conflict': 1,\n",
      "          'non': 1,\n",
      "          'actualizing': 1,\n",
      "          'subtext': 1,\n",
      "          'mammoth': 1,\n",
      "          'task': 1,\n",
      "          'though': 1,\n",
      "          'impossible': 1,\n",
      "          'flat': 1,\n",
      "          'acting': 1,\n",
      "          'excused': 1,\n",
      "          'attempt': 1,\n",
      "          'stoicism': 1,\n",
      "          'nin': 1,\n",
      "          'witness': 1,\n",
      "          'renounce': 1,\n",
      "          'finally': 1,\n",
      "          'understanding': 1,\n",
      "          'another': 1,\n",
      "          'final': 1,\n",
      "          'transformation': 1,\n",
      "          'perceptible': 1,\n",
      "          'lacks': 1,\n",
      "          'cathartic': 1,\n",
      "          'revelation': 1,\n",
      "          'undeniable': 1,\n",
      "          'nits': 1,\n",
      "          'absence': 1,\n",
      "          'unforgivable': 1,\n",
      "          'seems': 1,\n",
      "          'concerned': 1,\n",
      "          'moving': 1,\n",
      "          'plot': 1,\n",
      "          'along': 1,\n",
      "          'said': 1,\n",
      "          'complete': 1,\n",
      "          'strangers': 1,\n",
      "          'nalma': 1,\n",
      "          'overcome': 1,\n",
      "          'great': 1,\n",
      "          'emotional': 1,\n",
      "          'barriers': 1,\n",
      "          'namely': 1,\n",
      "          'underlying': 1,\n",
      "          'grapples': 1,\n",
      "          'ignorance': 1,\n",
      "          'accounts': 1,\n",
      "          'greatness': 1,\n",
      "          'njacob': 1,\n",
      "          'fairskinned': 1,\n",
      "          'gentle': 1,\n",
      "          'passionate': 1,\n",
      "          'handles': 1,\n",
      "          'role': 1,\n",
      "          'precision': 1,\n",
      "          'detailing': 1,\n",
      "          'nuances': 1,\n",
      "          'possible': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'let': 1,\n",
      "          'superficial': 1,\n",
      "          'script': 1,\n",
      "          'couples': 1,\n",
      "          'develops': 1,\n",
      "          'hastily': 1,\n",
      "          'leaving': 1,\n",
      "          'subtlety': 1,\n",
      "          'effaced': 1,\n",
      "          'replaced': 1,\n",
      "          'blatant': 1,\n",
      "          'showandtell': 1,\n",
      "          'approach': 1,\n",
      "          'nall': 1,\n",
      "          'know': 1,\n",
      "          'mostly': 1,\n",
      "          'explained': 1,\n",
      "          'lines': 1,\n",
      "          'alone': 1,\n",
      "          'nthis': 1,\n",
      "          'unsatisfactory': 1,\n",
      "          'turmoil': 1,\n",
      "          'experienced': 1,\n",
      "          'stem': 1,\n",
      "          'buried': 1,\n",
      "          'thoughts': 1,\n",
      "          'emotions': 1,\n",
      "          'sketchy': 1,\n",
      "          'handling': 1,\n",
      "          'stands': 1,\n",
      "          'sorely': 1,\n",
      "          'american': 1,\n",
      "          'inappropriate': 1,\n",
      "          'since': 1,\n",
      "          'spent': 1,\n",
      "          'life': 1,\n",
      "          'london': 1,\n",
      "          'jean': 1,\n",
      "          'yanne': 1,\n",
      "          'owner': 1,\n",
      "          'hotel': 1,\n",
      "          'neill': 1,\n",
      "          'also': 1,\n",
      "          'fall': 1,\n",
      "          'short': 1,\n",
      "          'meticulous': 1,\n",
      "          'menacing': 1,\n",
      "          'vindictive': 1,\n",
      "          'portrayed': 1,\n",
      "          'something': 1,\n",
      "          'enigma': 1,\n",
      "          'nsam': 1,\n",
      "          'neils': 1,\n",
      "          'caricature': 1,\n",
      "          'slightly': 1,\n",
      "          'stout': 1,\n",
      "          'effeminate': 1,\n",
      "          'softspoken': 1,\n",
      "          'gentlemanatlarge': 1,\n",
      "          'nullifies': 1,\n",
      "          'effect': 1,\n",
      "          'intended': 1,\n",
      "          'describes': 1,\n",
      "          'insolent': 1,\n",
      "          'spectre': 1,\n",
      "          'leave': 1,\n",
      "          'hades': 1,\n",
      "          'endowed': 1,\n",
      "          'skin': 1,\n",
      "          'bones': 1,\n",
      "          'subtle': 1,\n",
      "          'power': 1,\n",
      "          'npoor': 1,\n",
      "          'aside': 1,\n",
      "          'kudos': 1,\n",
      "          'goes': 1,\n",
      "          'excellent': 1,\n",
      "          'portrayal': 1,\n",
      "          'secretary': 1,\n",
      "          'reckless': 1,\n",
      "          'ruffian': 1,\n",
      "          'capable': 1,\n",
      "          'murder': 1,\n",
      "          'nsewell': 1,\n",
      "          'cockney': 1,\n",
      "          'large': 1,\n",
      "          'expressive': 1,\n",
      "          'green': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'eyes': 1,\n",
      "          'becomes': 1,\n",
      "          'unholy': 1,\n",
      "          'trinity': 1,\n",
      "          'masterminding': 1,\n",
      "          'deceitful': 1,\n",
      "          'back': 1,\n",
      "          'time': 1,\n",
      "          'entertained': 1,\n",
      "          'foolhardiness': 1,\n",
      "          'ndespite': 1,\n",
      "          'authentic': 1,\n",
      "          'setting': 1,\n",
      "          'marvellous': 1,\n",
      "          'cinematography': 1,\n",
      "          'bruno': 1,\n",
      "          'de': 1,\n",
      "          'keyzer': 1,\n",
      "          'images': 1,\n",
      "          'us': 1,\n",
      "          'savour': 1,\n",
      "          'ended': 1,\n",
      "          'nsourabaya': 1,\n",
      "          'surrounding': 1,\n",
      "          'islands': 1,\n",
      "          'volcanoes': 1,\n",
      "          'may': 1,\n",
      "          'charm': 1,\n",
      "          'mean': 1,\n",
      "          'nothing': 1,\n",
      "          'fails': 1,\n",
      "          'capture': 1,\n",
      "          'essence': 1,\n",
      "          'epic': 1,\n",
      "          'deserves': 1,\n",
      "          'delicately': 1,\n",
      "          'interwoven': 1,\n",
      "          'complexities': 1,\n",
      "          'story': 1,\n",
      "          'inadequate': 1,\n",
      "          'production': 1,\n",
      "          'told': 1,\n",
      "          'perhaps': 1,\n",
      "          'teaching': 1,\n",
      "          'na': 1,\n",
      "          'hollow': 1,\n",
      "          'indeed': 1,\n",
      "          'flying': 1,\n",
      "          'inkpots': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'video': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mario': 3,\n",
      "          'van': 3,\n",
      "          'peebles': 3,\n",
      "          'jewels': 2,\n",
      "          'film': 2,\n",
      "          'couple': 1,\n",
      "          'criminals': 1,\n",
      "          'loretta': 1,\n",
      "          'devine': 1,\n",
      "          'move': 1,\n",
      "          'rich': 1,\n",
      "          'familys': 1,\n",
      "          'house': 1,\n",
      "          'hopes': 1,\n",
      "          'conning': 1,\n",
      "          'nhowever': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'steals': 1,\n",
      "          'able': 1,\n",
      "          'get': 1,\n",
      "          'nwriter': 1,\n",
      "          'delivers': 1,\n",
      "          'clever': 1,\n",
      "          'script': 1,\n",
      "          'several': 1,\n",
      "          'unexpected': 1,\n",
      "          'plot': 1,\n",
      "          'twists': 1,\n",
      "          'director': 1,\n",
      "          'undermines': 1,\n",
      "          'high': 1,\n",
      "          'points': 1,\n",
      "          'haphazard': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'editing': 1,\n",
      "          'pacing': 1,\n",
      "          'nit': 1,\n",
      "          'felt': 1,\n",
      "          'though': 1,\n",
      "          'wrapping': 1,\n",
      "          'hour': 1,\n",
      "          'mark': 1,\n",
      "          'alas': 1,\n",
      "          'still': 1,\n",
      "          '35': 1,\n",
      "          'minutes': 1,\n",
      "          'go': 1,\n",
      "          'ndaniel': 1,\n",
      "          'baldwin': 1,\n",
      "          'cant': 1,\n",
      "          'believe': 1,\n",
      "          'im': 1,\n",
      "          'type': 1,\n",
      "          'gives': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'outshining': 1,\n",
      "          'talented': 1,\n",
      "          'members': 1,\n",
      "          'cast': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'ulrich': 6,\n",
      "          'weapon': 5,\n",
      "          'ice': 4,\n",
      "          'gooding': 4,\n",
      "          'elvis': 4,\n",
      "          'nthey': 4,\n",
      "          'chill': 3,\n",
      "          'factor': 3,\n",
      "          'speed': 3,\n",
      "          'one': 3,\n",
      "          'cream': 3,\n",
      "          'jr': 3,\n",
      "          'nthis': 3,\n",
      "          'must': 3,\n",
      "          'general': 3,\n",
      "          'movie': 3,\n",
      "          'action': 3,\n",
      "          'like': 3,\n",
      "          'truck': 2,\n",
      "          'arlo': 2,\n",
      "          'cuba': 2,\n",
      "          'mason': 2,\n",
      "          'fort': 2,\n",
      "          'mcgruder': 2,\n",
      "          '50': 2,\n",
      "          'degrees': 2,\n",
      "          'island': 2,\n",
      "          'virtually': 2,\n",
      "          'safety': 2,\n",
      "          'brynner': 2,\n",
      "          'years': 2,\n",
      "          'good': 2,\n",
      "          'selling': 2,\n",
      "          'man': 2,\n",
      "          'get': 2,\n",
      "          'also': 2,\n",
      "          'nto': 2,\n",
      "          'put': 2,\n",
      "          'seems': 2,\n",
      "          'thats': 2,\n",
      "          'dialogue': 2,\n",
      "          'lot': 2,\n",
      "          'example': 2,\n",
      "          'every': 2,\n",
      "          'walked': 2,\n",
      "          'lines': 2,\n",
      "          'much': 2,\n",
      "          'exciting': 2,\n",
      "          'im': 2,\n",
      "          'character': 2,\n",
      "          'could': 2,\n",
      "          'carbon': 1,\n",
      "          'copy': 1,\n",
      "          'notable': 1,\n",
      "          'exception': 1,\n",
      "          'instead': 1,\n",
      "          'speeding': 1,\n",
      "          'bus': 1,\n",
      "          'driven': 1,\n",
      "          'skeet': 1,\n",
      "          'instructed': 1,\n",
      "          'dying': 1,\n",
      "          'scientist': 1,\n",
      "          'transport': 1,\n",
      "          'deadly': 1,\n",
      "          'chemical': 1,\n",
      "          'military': 1,\n",
      "          'base': 1,\n",
      "          'name': 1,\n",
      "          'particular': 1,\n",
      "          'nicknamed': 1,\n",
      "          'kept': 1,\n",
      "          'temperature': 1,\n",
      "          'else': 1,\n",
      "          'shockwave': 1,\n",
      "          'gooiffy': 1,\n",
      "          'everything': 1,\n",
      "          'mile': 1,\n",
      "          'radius': 1,\n",
      "          'nthat': 1,\n",
      "          'would': 1,\n",
      "          'pretty': 1,\n",
      "          'nasty': 1,\n",
      "          'power': 1,\n",
      "          'revealed': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'dr': 1,\n",
      "          'richard': 1,\n",
      "          'long': 1,\n",
      "          'david': 1,\n",
      "          'paymer': 1,\n",
      "          'conducts': 1,\n",
      "          'test': 1,\n",
      "          'isolated': 1,\n",
      "          'tropical': 1,\n",
      "          'nlong': 1,\n",
      "          'accidentally': 1,\n",
      "          'melts': 1,\n",
      "          '18': 1,\n",
      "          'soldiers': 1,\n",
      "          'defoliates': 1,\n",
      "          'entire': 1,\n",
      "          'due': 1,\n",
      "          'enormously': 1,\n",
      "          'miscalculated': 1,\n",
      "          'distance': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'peter': 1,\n",
      "          'firth': 1,\n",
      "          'sentenced': 1,\n",
      "          '10': 1,\n",
      "          'prison': 1,\n",
      "          'murder': 1,\n",
      "          'troops': 1,\n",
      "          'nupon': 1,\n",
      "          'release': 1,\n",
      "          'intent': 1,\n",
      "          'tracking': 1,\n",
      "          'doctor': 1,\n",
      "          'snatching': 1,\n",
      "          'highest': 1,\n",
      "          'international': 1,\n",
      "          'bidder': 1,\n",
      "          'nprotecting': 1,\n",
      "          'fate': 1,\n",
      "          'world': 1,\n",
      "          'drifting': 1,\n",
      "          'hamburger': 1,\n",
      "          'flipper': 1,\n",
      "          'feisty': 1,\n",
      "          'delivery': 1,\n",
      "          'elude': 1,\n",
      "          'brynners': 1,\n",
      "          'men': 1,\n",
      "          'nall': 1,\n",
      "          'course': 1,\n",
      "          'keep': 1,\n",
      "          'proves': 1,\n",
      "          'tricky': 1,\n",
      "          'namong': 1,\n",
      "          'wild': 1,\n",
      "          'adventures': 1,\n",
      "          'partake': 1,\n",
      "          'trip': 1,\n",
      "          'treecovered': 1,\n",
      "          'mountainside': 1,\n",
      "          'boat': 1,\n",
      "          'fist': 1,\n",
      "          'fight': 1,\n",
      "          'top': 1,\n",
      "          'moving': 1,\n",
      "          'vehicle': 1,\n",
      "          'crack': 1,\n",
      "          'dozen': 1,\n",
      "          'witty': 1,\n",
      "          'retorts': 1,\n",
      "          'supposed': 1,\n",
      "          'find': 1,\n",
      "          'amusing': 1,\n",
      "          'simply': 1,\n",
      "          'ill': 1,\n",
      "          'use': 1,\n",
      "          'clever': 1,\n",
      "          'pun': 1,\n",
      "          'ndirector': 1,\n",
      "          'hugh': 1,\n",
      "          'johnson': 1,\n",
      "          'mixed': 1,\n",
      "          'elements': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'lethal': 1,\n",
      "          'series': 1,\n",
      "          'create': 1,\n",
      "          'lifelessly': 1,\n",
      "          'bland': 1,\n",
      "          'cocktail': 1,\n",
      "          'chase': 1,\n",
      "          'nwhen': 1,\n",
      "          'occasional': 1,\n",
      "          'audience': 1,\n",
      "          'oddly': 1,\n",
      "          'detached': 1,\n",
      "          'nperhaps': 1,\n",
      "          'weve': 1,\n",
      "          'already': 1,\n",
      "          'waded': 1,\n",
      "          'pool': 1,\n",
      "          'clich': 1,\n",
      "          'boring': 1,\n",
      "          'material': 1,\n",
      "          'used': 1,\n",
      "          'spice': 1,\n",
      "          'ntake': 1,\n",
      "          'villains': 1,\n",
      "          'typical': 1,\n",
      "          'stereotypes': 1,\n",
      "          'terrorist': 1,\n",
      "          'ever': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'speak': 1,\n",
      "          'recycled': 1,\n",
      "          'profusely': 1,\n",
      "          'next': 1,\n",
      "          'divulge': 1,\n",
      "          'important': 1,\n",
      "          'plot': 1,\n",
      "          'details': 1,\n",
      "          'holding': 1,\n",
      "          'enemies': 1,\n",
      "          'gunpoint': 1,\n",
      "          'act': 1,\n",
      "          'predictable': 1,\n",
      "          'ways': 1,\n",
      "          'tagteam': 1,\n",
      "          'sounds': 1,\n",
      "          'nfrankly': 1,\n",
      "          'sure': 1,\n",
      "          'accept': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'better': 1,\n",
      "          'dressed': 1,\n",
      "          'giant': 1,\n",
      "          'hot': 1,\n",
      "          'dog': 1,\n",
      "          'jumbo': 1,\n",
      "          'frankfurters': 1,\n",
      "          'street': 1,\n",
      "          'corner': 1,\n",
      "          'ngooding': 1,\n",
      "          'displays': 1,\n",
      "          'single': 1,\n",
      "          'emotion': 1,\n",
      "          'frequently': 1,\n",
      "          'display': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'yo': 1,\n",
      "          'ass': 1,\n",
      "          'last': 1,\n",
      "          'underwear': 1,\n",
      "          'incessant': 1,\n",
      "          'sputtering': 1,\n",
      "          'oh': 1,\n",
      "          'sh': 1,\n",
      "          'played': 1,\n",
      "          'jerry': 1,\n",
      "          'maguire': 1,\n",
      "          'gets': 1,\n",
      "          'nbut': 1,\n",
      "          'actor': 1,\n",
      "          'dull': 1,\n",
      "          'endlessly': 1,\n",
      "          'monotonous': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'hes': 1,\n",
      "          'bit': 1,\n",
      "          'captivating': 1,\n",
      "          'films': 1,\n",
      "          'worst': 1,\n",
      "          'nothing': 1,\n",
      "          'noticeable': 1,\n",
      "          'enliven': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'includes': 1,\n",
      "          'personality': 1,\n",
      "          'expect': 1,\n",
      "          'pop': 1,\n",
      "          'wasted': 1,\n",
      "          'fair': 1,\n",
      "          'brief': 1,\n",
      "          'moments': 1,\n",
      "          'serviceable': 1,\n",
      "          'nand': 1,\n",
      "          'chuckle': 1,\n",
      "          'times': 1,\n",
      "          'none': 1,\n",
      "          'employee': 1,\n",
      "          'darlenes': 1,\n",
      "          'diner': 1,\n",
      "          'counter': 1,\n",
      "          'walks': 1,\n",
      "          'door': 1,\n",
      "          'nyou': 1,\n",
      "          'place': 1,\n",
      "          'asks': 1,\n",
      "          'nyeah': 1,\n",
      "          'says': 1,\n",
      "          'call': 1,\n",
      "          'darlene': 1,\n",
      "          'nthese': 1,\n",
      "          'little': 1,\n",
      "          'tidbits': 1,\n",
      "          'humor': 1,\n",
      "          'mainly': 1,\n",
      "          'welcome': 1,\n",
      "          'weak': 1,\n",
      "          'disappointing': 1,\n",
      "          'wreckage': 1,\n",
      "          'film': 1,\n",
      "          'nas': 1,\n",
      "          'clone': 1,\n",
      "          'benefited': 1,\n",
      "          'suspense': 1,\n",
      "          'perhaps': 1,\n",
      "          'god': 1,\n",
      "          'forbid': 1,\n",
      "          'even': 1,\n",
      "          'decent': 1,\n",
      "          'writing': 1,\n",
      "          'nsadly': 1,\n",
      "          'away': 1,\n",
      "          'wondering': 1,\n",
      "          'fun': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'mission': 7,\n",
      "          'one': 7,\n",
      "          'mars': 6,\n",
      "          'character': 6,\n",
      "          'like': 5,\n",
      "          'sinise': 4,\n",
      "          'robbins': 4,\n",
      "          'movie': 4,\n",
      "          'day': 4,\n",
      "          'oconnell': 3,\n",
      "          'time': 3,\n",
      "          'wife': 3,\n",
      "          'away': 3,\n",
      "          'rescue': 3,\n",
      "          'ever': 3,\n",
      "          'would': 3,\n",
      "          'films': 3,\n",
      "          'better': 3,\n",
      "          'music': 3,\n",
      "          'worse': 3,\n",
      "          'cheadle': 2,\n",
      "          'jerry': 2,\n",
      "          'kim': 2,\n",
      "          'delaney': 2,\n",
      "          'tim': 2,\n",
      "          'thomas': 2,\n",
      "          'first': 2,\n",
      "          'astronaut': 2,\n",
      "          'given': 2,\n",
      "          'couple': 2,\n",
      "          'crew': 2,\n",
      "          'nwhat': 2,\n",
      "          'planet': 2,\n",
      "          'come': 2,\n",
      "          'pepper': 2,\n",
      "          'drink': 2,\n",
      "          'product': 2,\n",
      "          'placement': 2,\n",
      "          'features': 2,\n",
      "          'also': 2,\n",
      "          'lifted': 2,\n",
      "          'even': 2,\n",
      "          'independence': 2,\n",
      "          'space': 2,\n",
      "          'sequence': 2,\n",
      "          'rover': 2,\n",
      "          'could': 2,\n",
      "          'least': 2,\n",
      "          'clich': 2,\n",
      "          'another': 2,\n",
      "          'usually': 2,\n",
      "          'particularly': 2,\n",
      "          'came': 2,\n",
      "          'scenes': 2,\n",
      "          'wont': 2,\n",
      "          'extreme': 2,\n",
      "          'emotional': 2,\n",
      "          'response': 2,\n",
      "          'supposed': 2,\n",
      "          'save': 2,\n",
      "          'people': 2,\n",
      "          'warning': 1,\n",
      "          'following': 1,\n",
      "          'review': 1,\n",
      "          'contains': 1,\n",
      "          'spoilers': 1,\n",
      "          'ncast': 1,\n",
      "          'gary': 1,\n",
      "          'connie': 1,\n",
      "          'nielsen': 1,\n",
      "          'elise': 1,\n",
      "          'neal': 1,\n",
      "          'jill': 1,\n",
      "          'teed': 1,\n",
      "          'jody': 1,\n",
      "          'thompson': 1,\n",
      "          'bill': 1,\n",
      "          'timoney': 1,\n",
      "          'written': 1,\n",
      "          'jim': 1,\n",
      "          'john': 1,\n",
      "          'graham': 1,\n",
      "          'yost': 1,\n",
      "          'directed': 1,\n",
      "          'brian': 1,\n",
      "          'depalma': 1,\n",
      "          'running': 1,\n",
      "          '115': 1,\n",
      "          'minutes': 1,\n",
      "          'nthe': 1,\n",
      "          'big': 1,\n",
      "          'event': 1,\n",
      "          '2000': 1,\n",
      "          'turns': 1,\n",
      "          'anything': 1,\n",
      "          'ngary': 1,\n",
      "          'stars': 1,\n",
      "          'removed': 1,\n",
      "          'maggie': 1,\n",
      "          'becomes': 1,\n",
      "          'ill': 1,\n",
      "          'passes': 1,\n",
      "          'ndon': 1,\n",
      "          'along': 1,\n",
      "          'russian': 1,\n",
      "          'young': 1,\n",
      "          'hotshot': 1,\n",
      "          'nwhen': 1,\n",
      "          'strange': 1,\n",
      "          'whirlwind': 1,\n",
      "          'shot': 1,\n",
      "          'top': 1,\n",
      "          'mountain': 1,\n",
      "          'range': 1,\n",
      "          'attacks': 1,\n",
      "          'convince': 1,\n",
      "          'superior': 1,\n",
      "          'let': 1,\n",
      "          'neilsen': 1,\n",
      "          'perform': 1,\n",
      "          'whatever': 1,\n",
      "          'might': 1,\n",
      "          'remaining': 1,\n",
      "          'discover': 1,\n",
      "          'surface': 1,\n",
      "          'dramatically': 1,\n",
      "          'change': 1,\n",
      "          'lives': 1,\n",
      "          'forever': 1,\n",
      "          'although': 1,\n",
      "          'watching': 1,\n",
      "          'profoundly': 1,\n",
      "          'affected': 1,\n",
      "          'nbefore': 1,\n",
      "          'saw': 1,\n",
      "          'aware': 1,\n",
      "          'promotional': 1,\n",
      "          'campaign': 1,\n",
      "          'dr': 1,\n",
      "          'nevery': 1,\n",
      "          'see': 1,\n",
      "          'bottle': 1,\n",
      "          'soft': 1,\n",
      "          'logo': 1,\n",
      "          'emblazoned': 1,\n",
      "          'upon': 1,\n",
      "          'nlittle': 1,\n",
      "          'know': 1,\n",
      "          'plot': 1,\n",
      "          'taking': 1,\n",
      "          'back': 1,\n",
      "          'seat': 1,\n",
      "          'several': 1,\n",
      "          'products': 1,\n",
      "          'ndr': 1,\n",
      "          'saves': 1,\n",
      "          'point': 1,\n",
      "          'dream': 1,\n",
      "          'sequenceflashback': 1,\n",
      "          'shoving': 1,\n",
      "          'mms': 1,\n",
      "          'face': 1,\n",
      "          'nthese': 1,\n",
      "          'ridiculous': 1,\n",
      "          'examples': 1,\n",
      "          'scattered': 1,\n",
      "          'throughout': 1,\n",
      "          'nclich': 1,\n",
      "          'order': 1,\n",
      "          'ndialogue': 1,\n",
      "          'motivations': 1,\n",
      "          'directly': 1,\n",
      "          'countless': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'done': 1,\n",
      "          'style': 1,\n",
      "          'premises': 1,\n",
      "          'scifi': 1,\n",
      "          'dont': 1,\n",
      "          'nfilms': 1,\n",
      "          '2001': 1,\n",
      "          'odyssey': 1,\n",
      "          'abyss': 1,\n",
      "          'close': 1,\n",
      "          'encounters': 1,\n",
      "          'third': 1,\n",
      "          'kind': 1,\n",
      "          'blatantly': 1,\n",
      "          'stolen': 1,\n",
      "          'poorly': 1,\n",
      "          'nthere': 1,\n",
      "          'traveling': 1,\n",
      "          'canyon': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'whisper': 1,\n",
      "          'utinni': 1,\n",
      "          'wait': 1,\n",
      "          'jawa': 1,\n",
      "          'quickly': 1,\n",
      "          'hide': 1,\n",
      "          'rocks': 1,\n",
      "          'get': 1,\n",
      "          'glimpse': 1,\n",
      "          'nthis': 1,\n",
      "          'alltime': 1,\n",
      "          'favorite': 1,\n",
      "          'wanted': 1,\n",
      "          'moment': 1,\n",
      "          'gives': 1,\n",
      "          'trinket': 1,\n",
      "          'yet': 1,\n",
      "          'established': 1,\n",
      "          'constantly': 1,\n",
      "          'made': 1,\n",
      "          'fun': 1,\n",
      "          'ends': 1,\n",
      "          'getting': 1,\n",
      "          'sappy': 1,\n",
      "          'later': 1,\n",
      "          'nscenes': 1,\n",
      "          'always': 1,\n",
      "          'bother': 1,\n",
      "          'nowhere': 1,\n",
      "          'regular': 1,\n",
      "          'ridden': 1,\n",
      "          'irritating': 1,\n",
      "          'nennio': 1,\n",
      "          'morricones': 1,\n",
      "          'considered': 1,\n",
      "          'best': 1,\n",
      "          'stuff': 1,\n",
      "          'projects': 1,\n",
      "          'works': 1,\n",
      "          'dreadfully': 1,\n",
      "          'overbearing': 1,\n",
      "          'nhis': 1,\n",
      "          'sounds': 1,\n",
      "          'straight': 1,\n",
      "          'vincent': 1,\n",
      "          'price': 1,\n",
      "          'certain': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'unbearably': 1,\n",
      "          'overdramatic': 1,\n",
      "          'none': 1,\n",
      "          'involving': 1,\n",
      "          'daring': 1,\n",
      "          'spacewalk': 1,\n",
      "          'cheesy': 1,\n",
      "          'sting': 1,\n",
      "          'discovered': 1,\n",
      "          'grappling': 1,\n",
      "          'hook': 1,\n",
      "          'device': 1,\n",
      "          'used': 1,\n",
      "          'reach': 1,\n",
      "          'intended': 1,\n",
      "          'target': 1,\n",
      "          'nmission': 1,\n",
      "          'push': 1,\n",
      "          'button': 1,\n",
      "          'filmmaking': 1,\n",
      "          'greatest': 1,\n",
      "          'nevents': 1,\n",
      "          'set': 1,\n",
      "          'motion': 1,\n",
      "          'obvious': 1,\n",
      "          'anyone': 1,\n",
      "          'seen': 1,\n",
      "          'seem': 1,\n",
      "          'evoke': 1,\n",
      "          'audience': 1,\n",
      "          'nwe': 1,\n",
      "          'apparently': 1,\n",
      "          'upset': 1,\n",
      "          'removes': 1,\n",
      "          'helmet': 1,\n",
      "          'deep': 1,\n",
      "          'kills': 1,\n",
      "          'felt': 1,\n",
      "          'boredom': 1,\n",
      "          'coupled': 1,\n",
      "          'twinge': 1,\n",
      "          'disinterest': 1,\n",
      "          'makes': 1,\n",
      "          'fact': 1,\n",
      "          'real': 1,\n",
      "          'reason': 1,\n",
      "          'needs': 1,\n",
      "          'turn': 1,\n",
      "          'popsicle': 1,\n",
      "          'except': 1,\n",
      "          'invoke': 1,\n",
      "          'think': 1,\n",
      "          'way': 1,\n",
      "          'nasa': 1,\n",
      "          'clowns': 1,\n",
      "          'smarter': 1,\n",
      "          'nduring': 1,\n",
      "          'finale': 1,\n",
      "          'finally': 1,\n",
      "          'introduced': 1,\n",
      "          'translucent': 1,\n",
      "          'conehead': 1,\n",
      "          'kittyfaced': 1,\n",
      "          'aliens': 1,\n",
      "          'ostensibly': 1,\n",
      "          'sprung': 1,\n",
      "          'presented': 1,\n",
      "          'ridiculously': 1,\n",
      "          'cartoonish': 1,\n",
      "          'cgi': 1,\n",
      "          'put': 1,\n",
      "          'slightly': 1,\n",
      "          'plane': 1,\n",
      "          'crash': 1,\n",
      "          'end': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'hell': 1,\n",
      "          'spawn': 1,\n",
      "          'na': 1,\n",
      "          'brief': 1,\n",
      "          'history': 1,\n",
      "          'lesson': 1,\n",
      "          'proffered': 1,\n",
      "          'whisked': 1,\n",
      "          'rest': 1,\n",
      "          'late': 1,\n",
      "          'proclaims': 1,\n",
      "          'video': 1,\n",
      "          'watches': 1,\n",
      "          'early': 1,\n",
      "          'chance': 1,\n",
      "          'step': 1,\n",
      "          'foot': 1,\n",
      "          'else': 1,\n",
      "          'nfrom': 1,\n",
      "          'press': 1,\n",
      "          'ive': 1,\n",
      "          'seeing': 1,\n",
      "          'receive': 1,\n",
      "          'apparent': 1,\n",
      "          'dying': 1,\n",
      "          'quick': 1,\n",
      "          'death': 1,\n",
      "          'theater': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'weekend': 1,\n",
      "          'two': 1,\n",
      "          'huge': 1,\n",
      "          'word': 1,\n",
      "          'gets': 1,\n",
      "          'stop': 1,\n",
      "          'going': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'upcoming': 1,\n",
      "          'red': 1,\n",
      "          'isnt': 1,\n",
      "          'hurt': 1,\n",
      "          'negativity': 1,\n",
      "          'generating': 1,\n",
      "          'nid': 1,\n",
      "          'venture': 1,\n",
      "          'say': 1,\n",
      "          'waste': 1,\n",
      "          'npg': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dead': 5,\n",
      "          'films': 5,\n",
      "          'nand': 5,\n",
      "          'city': 4,\n",
      "          'living': 4,\n",
      "          'film': 4,\n",
      "          'fulci': 4,\n",
      "          'like': 3,\n",
      "          'bad': 3,\n",
      "          'nthe': 3,\n",
      "          'day': 3,\n",
      "          'dont': 3,\n",
      "          'dialogue': 3,\n",
      "          'mike': 2,\n",
      "          'watson': 2,\n",
      "          'someone': 2,\n",
      "          'director': 2,\n",
      "          'one': 2,\n",
      "          'fabio': 2,\n",
      "          'frizzi': 2,\n",
      "          'things': 2,\n",
      "          'large': 2,\n",
      "          'direction': 2,\n",
      "          'seance': 2,\n",
      "          'medium': 2,\n",
      "          'mccoll': 2,\n",
      "          'town': 2,\n",
      "          'dunwich': 2,\n",
      "          'nfor': 2,\n",
      "          'go': 2,\n",
      "          'saints': 2,\n",
      "          'coffin': 2,\n",
      "          'next': 2,\n",
      "          'various': 2,\n",
      "          'nfulcis': 2,\n",
      "          'actors': 2,\n",
      "          'care': 2,\n",
      "          'beyond': 2,\n",
      "          'retrospective': 1,\n",
      "          '1980': 1,\n",
      "          'na': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1997': 1,\n",
      "          'ni': 1,\n",
      "          'heard': 1,\n",
      "          'describe': 1,\n",
      "          'italian': 1,\n",
      "          'schlock': 1,\n",
      "          'horror': 1,\n",
      "          'lucio': 1,\n",
      "          'dimwitted': 1,\n",
      "          'golly': 1,\n",
      "          'words': 1,\n",
      "          'fail': 1,\n",
      "          'confronted': 1,\n",
      "          'dog': 1,\n",
      "          'nalthough': 1,\n",
      "          'late': 1,\n",
      "          'managed': 1,\n",
      "          'rather': 1,\n",
      "          'good': 1,\n",
      "          'thrillers': 1,\n",
      "          'career': 1,\n",
      "          'ntwo': 1,\n",
      "          'points': 1,\n",
      "          'movies': 1,\n",
      "          'favour': 1,\n",
      "          'impressive': 1,\n",
      "          'camerawork': 1,\n",
      "          'sergio': 1,\n",
      "          'salvati': 1,\n",
      "          'occasionally': 1,\n",
      "          'evocative': 1,\n",
      "          'score': 1,\n",
      "          'keep': 1,\n",
      "          'falling': 1,\n",
      "          'totally': 1,\n",
      "          'abyss': 1,\n",
      "          'failure': 1,\n",
      "          'cinematic': 1,\n",
      "          'failures': 1,\n",
      "          'comes': 1,\n",
      "          'writing': 1,\n",
      "          'dumb': 1,\n",
      "          'performances': 1,\n",
      "          'lousy': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'story': 1,\n",
      "          'starts': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'katherine': 1,\n",
      "          'sees': 1,\n",
      "          'vision': 1,\n",
      "          'priest': 1,\n",
      "          'hanging': 1,\n",
      "          'massachusetts': 1,\n",
      "          'reasons': 1,\n",
      "          'wont': 1,\n",
      "          'opens': 1,\n",
      "          'gates': 1,\n",
      "          'hell': 1,\n",
      "          'must': 1,\n",
      "          'closed': 1,\n",
      "          'rise': 1,\n",
      "          'walk': 1,\n",
      "          'earth': 1,\n",
      "          'apparently': 1,\n",
      "          'dies': 1,\n",
      "          'fright': 1,\n",
      "          'awakens': 1,\n",
      "          'graveyard': 1,\n",
      "          'rescued': 1,\n",
      "          'crusty': 1,\n",
      "          'old': 1,\n",
      "          'journalist': 1,\n",
      "          'christopher': 1,\n",
      "          'george': 1,\n",
      "          'nthat': 1,\n",
      "          'scene': 1,\n",
      "          'howler': 1,\n",
      "          'would': 1,\n",
      "          'bust': 1,\n",
      "          'open': 1,\n",
      "          'pick': 1,\n",
      "          'axe': 1,\n",
      "          'know': 1,\n",
      "          'alive': 1,\n",
      "          'inside': 1,\n",
      "          'cadavers': 1,\n",
      "          'stuffed': 1,\n",
      "          'drained': 1,\n",
      "          'theyre': 1,\n",
      "          'buried': 1,\n",
      "          'nanyway': 1,\n",
      "          'two': 1,\n",
      "          'save': 1,\n",
      "          'world': 1,\n",
      "          'grisly': 1,\n",
      "          'goingson': 1,\n",
      "          'already': 1,\n",
      "          'happening': 1,\n",
      "          'approaches': 1,\n",
      "          'graphic': 1,\n",
      "          'gore': 1,\n",
      "          'evidence': 1,\n",
      "          'serves': 1,\n",
      "          'highlight': 1,\n",
      "          'flimsy': 1,\n",
      "          'script': 1,\n",
      "          'plodding': 1,\n",
      "          'manner': 1,\n",
      "          'speaking': 1,\n",
      "          'unspeakable': 1,\n",
      "          'nnot': 1,\n",
      "          'quotable': 1,\n",
      "          'sense': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'sheer': 1,\n",
      "          'dullness': 1,\n",
      "          'blatantly': 1,\n",
      "          'obvious': 1,\n",
      "          'lets': 1,\n",
      "          'explain': 1,\n",
      "          'plot': 1,\n",
      "          'type': 1,\n",
      "          'approach': 1,\n",
      "          'nmccoll': 1,\n",
      "          'doesnt': 1,\n",
      "          'clue': 1,\n",
      "          'character': 1,\n",
      "          'deadly': 1,\n",
      "          'serious': 1,\n",
      "          'minute': 1,\n",
      "          'frivolous': 1,\n",
      "          'times': 1,\n",
      "          'genuinely': 1,\n",
      "          'hard': 1,\n",
      "          'watch': 1,\n",
      "          'geezer': 1,\n",
      "          'name': 1,\n",
      "          'escapes': 1,\n",
      "          'plays': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'becomes': 1,\n",
      "          'even': 1,\n",
      "          'harder': 1,\n",
      "          'stomach': 1,\n",
      "          'progresses': 1,\n",
      "          'nchristopher': 1,\n",
      "          'georges': 1,\n",
      "          'performance': 1,\n",
      "          'salvageable': 1,\n",
      "          'gets': 1,\n",
      "          'brains': 1,\n",
      "          'ripped': 1,\n",
      "          'end': 1,\n",
      "          'zombie': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'anyone': 1,\n",
      "          'though': 1,\n",
      "          'hasnt': 1,\n",
      "          'mattered': 1,\n",
      "          'much': 1,\n",
      "          'form': 1,\n",
      "          'stylist': 1,\n",
      "          'ideas': 1,\n",
      "          'man': 1,\n",
      "          'nas': 1,\n",
      "          'idiosyncrasies': 1,\n",
      "          'incredibly': 1,\n",
      "          'silly': 1,\n",
      "          'annoying': 1,\n",
      "          'nhe': 1,\n",
      "          'constantly': 1,\n",
      "          'uses': 1,\n",
      "          'extreme': 1,\n",
      "          'closeups': 1,\n",
      "          'peoples': 1,\n",
      "          'eyes': 1,\n",
      "          'ridiculous': 1,\n",
      "          'technique': 1,\n",
      "          'suggests': 1,\n",
      "          'attempt': 1,\n",
      "          'convey': 1,\n",
      "          'emotion': 1,\n",
      "          'arent': 1,\n",
      "          'capable': 1,\n",
      "          'despite': 1,\n",
      "          'gruesome': 1,\n",
      "          'violence': 1,\n",
      "          'barely': 1,\n",
      "          'manages': 1,\n",
      "          'single': 1,\n",
      "          'scare': 1,\n",
      "          'entire': 1,\n",
      "          'nlongtime': 1,\n",
      "          'collaborator': 1,\n",
      "          'talented': 1,\n",
      "          'always': 1,\n",
      "          'erratic': 1,\n",
      "          'offers': 1,\n",
      "          'patchy': 1,\n",
      "          'soundtrack': 1,\n",
      "          'veers': 1,\n",
      "          'eerie': 1,\n",
      "          'gothic': 1,\n",
      "          'death': 1,\n",
      "          'marches': 1,\n",
      "          'woefully': 1,\n",
      "          'inappropriate': 1,\n",
      "          'electropop': 1,\n",
      "          'thats': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'embarrassing': 1,\n",
      "          'period': 1,\n",
      "          'may': 1,\n",
      "          'flawed': 1,\n",
      "          'house': 1,\n",
      "          'cemetery': 1,\n",
      "          'black': 1,\n",
      "          'cat': 1,\n",
      "          'nonetheless': 1,\n",
      "          'inspiration': 1,\n",
      "          'atmosphere': 1,\n",
      "          'better': 1,\n",
      "          'turkey': 1,\n",
      "          'completists': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'harry': 9,\n",
      "          'palmetto': 6,\n",
      "          'plot': 3,\n",
      "          'dimwit': 2,\n",
      "          'femme': 2,\n",
      "          'nin': 2,\n",
      "          'whos': 2,\n",
      "          'la': 2,\n",
      "          'shue': 2,\n",
      "          'man': 2,\n",
      "          'odette': 2,\n",
      "          'sevigny': 2,\n",
      "          'nas': 2,\n",
      "          'hes': 2,\n",
      "          'gets': 2,\n",
      "          'horndog': 2,\n",
      "          'kennel': 2,\n",
      "          'could': 2,\n",
      "          'film': 2,\n",
      "          'noir': 2,\n",
      "          'best': 2,\n",
      "          'ndorff': 2,\n",
      "          'script': 2,\n",
      "          'know': 1,\n",
      "          'shady': 1,\n",
      "          'past': 1,\n",
      "          'seduced': 1,\n",
      "          'committing': 1,\n",
      "          'crime': 1,\n",
      "          'doublecrossed': 1,\n",
      "          'fatal': 1,\n",
      "          'barber': 1,\n",
      "          'woody': 1,\n",
      "          'harrelson': 1,\n",
      "          'reporter': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'framed': 1,\n",
      "          'gangsters': 1,\n",
      "          'corrupt': 1,\n",
      "          'officials': 1,\n",
      "          'investigating': 1,\n",
      "          'nenter': 1,\n",
      "          'rhea': 1,\n",
      "          'malroux': 1,\n",
      "          'elisabeth': 1,\n",
      "          'sexy': 1,\n",
      "          'young': 1,\n",
      "          'wife': 1,\n",
      "          'richest': 1,\n",
      "          'florida': 1,\n",
      "          'rolf': 1,\n",
      "          'hoppe': 1,\n",
      "          'nshe': 1,\n",
      "          'stepdaughter': 1,\n",
      "          'chlo': 1,\n",
      "          'extort': 1,\n",
      "          '500k': 1,\n",
      "          'old': 1,\n",
      "          'kidnap': 1,\n",
      "          'nafter': 1,\n",
      "          'groping': 1,\n",
      "          'women': 1,\n",
      "          'agrees': 1,\n",
      "          'everyone': 1,\n",
      "          'except': 1,\n",
      "          'see': 1,\n",
      "          'set': 1,\n",
      "          'fall': 1,\n",
      "          'guy': 1,\n",
      "          'nsure': 1,\n",
      "          'enough': 1,\n",
      "          'long': 1,\n",
      "          'dead': 1,\n",
      "          'body': 1,\n",
      "          'trunk': 1,\n",
      "          'cops': 1,\n",
      "          'tail': 1,\n",
      "          'nhis': 1,\n",
      "          'brotherinlaw': 1,\n",
      "          'tom': 1,\n",
      "          'wright': 1,\n",
      "          'assistant': 1,\n",
      "          'da': 1,\n",
      "          'hired': 1,\n",
      "          'press': 1,\n",
      "          'liaison': 1,\n",
      "          'case': 1,\n",
      "          'front': 1,\n",
      "          'row': 1,\n",
      "          'seat': 1,\n",
      "          'manhunt': 1,\n",
      "          'get': 1,\n",
      "          'watch': 1,\n",
      "          'sweatliterally': 1,\n",
      "          'nthere': 1,\n",
      "          'several': 1,\n",
      "          'twists': 1,\n",
      "          'coursea': 1,\n",
      "          'couple': 1,\n",
      "          'even': 1,\n",
      "          'took': 1,\n",
      "          'surprise': 1,\n",
      "          'napparently': 1,\n",
      "          'every': 1,\n",
      "          'woman': 1,\n",
      "          'raving': 1,\n",
      "          'theyre': 1,\n",
      "          'like': 1,\n",
      "          'bone': 1,\n",
      "          'nshue': 1,\n",
      "          'vamps': 1,\n",
      "          'broadly': 1,\n",
      "          'expected': 1,\n",
      "          'tex': 1,\n",
      "          'averys': 1,\n",
      "          'wolf': 1,\n",
      "          'show': 1,\n",
      "          'nher': 1,\n",
      "          'incredible': 1,\n",
      "          'performance': 1,\n",
      "          'leaving': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'seems': 1,\n",
      "          'fluke': 1,\n",
      "          'nhere': 1,\n",
      "          'easily': 1,\n",
      "          'mistaken': 1,\n",
      "          'melanie': 1,\n",
      "          'griffith': 1,\n",
      "          'nshues': 1,\n",
      "          'character': 1,\n",
      "          'supposed': 1,\n",
      "          'savvy': 1,\n",
      "          'schemer': 1,\n",
      "          'comes': 1,\n",
      "          'brainless': 1,\n",
      "          'bimbo': 1,\n",
      "          'addition': 1,\n",
      "          'includes': 1,\n",
      "          'gina': 1,\n",
      "          'gershon': 1,\n",
      "          'filled': 1,\n",
      "          'dimwitwithashadypast': 1,\n",
      "          'role': 1,\n",
      "          'bound': 1,\n",
      "          'harrys': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nina': 1,\n",
      "          'jail': 1,\n",
      "          'licks': 1,\n",
      "          'face': 1,\n",
      "          'theres': 1,\n",
      "          'nthe': 1,\n",
      "          'parts': 1,\n",
      "          'overplayed': 1,\n",
      "          'little': 1,\n",
      "          'push': 1,\n",
      "          'overthetop': 1,\n",
      "          'parody': 1,\n",
      "          'romeo': 1,\n",
      "          'bleeding': 1,\n",
      "          'watched': 1,\n",
      "          '2am': 1,\n",
      "          'showtime': 1,\n",
      "          'love': 1,\n",
      "          'scenes': 1,\n",
      "          'seem': 1,\n",
      "          'written': 1,\n",
      "          'one': 1,\n",
      "          'channels': 1,\n",
      "          'soft': 1,\n",
      "          'porn': 1,\n",
      "          'programs': 1,\n",
      "          'anyway': 1,\n",
      "          'n': 1,\n",
      "          'wellknown': 1,\n",
      "          'director': 1,\n",
      "          'volker': 1,\n",
      "          'schl': 1,\n",
      "          'known': 1,\n",
      "          'adaptations': 1,\n",
      "          'major': 1,\n",
      "          'literary': 1,\n",
      "          'works': 1,\n",
      "          'especially': 1,\n",
      "          'tin': 1,\n",
      "          'drum': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'must': 1,\n",
      "          'drawn': 1,\n",
      "          'plotbynumbers': 1,\n",
      "          'admiration': 1,\n",
      "          'classic': 1,\n",
      "          'led': 1,\n",
      "          'scorsese': 1,\n",
      "          'remake': 1,\n",
      "          'cape': 1,\n",
      "          'fear': 1,\n",
      "          'nschl': 1,\n",
      "          'tries': 1,\n",
      "          'hardhe': 1,\n",
      "          'makes': 1,\n",
      "          'interesting': 1,\n",
      "          'motif': 1,\n",
      "          'ubiquitous': 1,\n",
      "          'bugsbut': 1,\n",
      "          'nothing': 1,\n",
      "          'freshen': 1,\n",
      "          'stale': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 3,\n",
      "          'nthe': 3,\n",
      "          'armageddon': 3,\n",
      "          'film': 3,\n",
      "          'top': 2,\n",
      "          'asteroid': 2,\n",
      "          'comet': 2,\n",
      "          'deep': 2,\n",
      "          'impact': 2,\n",
      "          'cometdisaster': 1,\n",
      "          'flick': 1,\n",
      "          'disaster': 1,\n",
      "          'alright': 1,\n",
      "          'ndirected': 1,\n",
      "          'tony': 1,\n",
      "          'scott': 1,\n",
      "          'gun': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'size': 1,\n",
      "          'texas': 1,\n",
      "          'caught': 1,\n",
      "          'collision': 1,\n",
      "          'course': 1,\n",
      "          'earth': 1,\n",
      "          'nand': 1,\n",
      "          'thought': 1,\n",
      "          'dinky': 1,\n",
      "          'little': 1,\n",
      "          'trouble': 1,\n",
      "          'njeez': 1,\n",
      "          'nafter': 1,\n",
      "          'great': 1,\n",
      "          'opening': 1,\n",
      "          'american': 1,\n",
      "          'spaceship': 1,\n",
      "          'plus': 1,\n",
      "          'city': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'completely': 1,\n",
      "          'destroyed': 1,\n",
      "          'shower': 1,\n",
      "          'nasa': 1,\n",
      "          'detects': 1,\n",
      "          'said': 1,\n",
      "          'go': 1,\n",
      "          'frenzy': 1,\n",
      "          'nthey': 1,\n",
      "          'hire': 1,\n",
      "          'worlds': 1,\n",
      "          'best': 1,\n",
      "          'oil': 1,\n",
      "          'driller': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'send': 1,\n",
      "          'crew': 1,\n",
      "          'space': 1,\n",
      "          'fix': 1,\n",
      "          'globel': 1,\n",
      "          'problem': 1,\n",
      "          'nthats': 1,\n",
      "          'sending': 1,\n",
      "          'mouse': 1,\n",
      "          'cat': 1,\n",
      "          'carrier': 1,\n",
      "          'isnt': 1,\n",
      "          'action': 1,\n",
      "          'nonstop': 1,\n",
      "          'ludicrous': 1,\n",
      "          'words': 1,\n",
      "          'sigh': 1,\n",
      "          'hit': 1,\n",
      "          'head': 1,\n",
      "          'notebook': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'ni': 1,\n",
      "          'alone': 1,\n",
      "          'nplus': 1,\n",
      "          'see': 1,\n",
      "          'wonderful': 1,\n",
      "          'actor': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'thornton': 1,\n",
      "          'waste': 1,\n",
      "          'actors': 1,\n",
      "          'talents': 1,\n",
      "          'reel': 1,\n",
      "          'show': 1,\n",
      "          'bunch': 1,\n",
      "          'snazzy': 1,\n",
      "          'fx': 1,\n",
      "          'shots': 1,\n",
      "          'real': 1,\n",
      "          'reason': 1,\n",
      "          'making': 1,\n",
      "          'somehow': 1,\n",
      "          'outperform': 1,\n",
      "          'nproducer': 1,\n",
      "          'jerry': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'fails': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'would': 8,\n",
      "          'chris': 6,\n",
      "          'story': 6,\n",
      "          'nand': 6,\n",
      "          'nthe': 5,\n",
      "          'nso': 5,\n",
      "          'dont': 5,\n",
      "          'thoughts': 5,\n",
      "          'question': 5,\n",
      "          'like': 5,\n",
      "          'special': 4,\n",
      "          'effects': 4,\n",
      "          'ni': 4,\n",
      "          'nit': 4,\n",
      "          'filmmakers': 4,\n",
      "          'really': 4,\n",
      "          'respect': 4,\n",
      "          'still': 4,\n",
      "          'eternity': 4,\n",
      "          'williams': 3,\n",
      "          'love': 3,\n",
      "          'imagery': 3,\n",
      "          'better': 3,\n",
      "          'one': 3,\n",
      "          'know': 3,\n",
      "          'tell': 3,\n",
      "          'life': 3,\n",
      "          'far': 3,\n",
      "          'wife': 3,\n",
      "          'exist': 3,\n",
      "          'due': 3,\n",
      "          'heaven': 3,\n",
      "          'annie': 3,\n",
      "          'thats': 3,\n",
      "          'fantasy': 3,\n",
      "          'robin': 2,\n",
      "          'said': 2,\n",
      "          'dreams': 2,\n",
      "          'may': 2,\n",
      "          'come_': 2,\n",
      "          'great': 2,\n",
      "          'daring': 2,\n",
      "          'thought': 2,\n",
      "          'never': 2,\n",
      "          'nits': 2,\n",
      "          'idea': 2,\n",
      "          'plot': 2,\n",
      "          'questions': 2,\n",
      "          'live': 2,\n",
      "          'soundtrack': 2,\n",
      "          'popular': 2,\n",
      "          'care': 2,\n",
      "          'afterlife': 2,\n",
      "          'take': 2,\n",
      "          'build': 2,\n",
      "          'played': 2,\n",
      "          'people': 2,\n",
      "          'god': 2,\n",
      "          'reality': 2,\n",
      "          'time': 2,\n",
      "          'ideas': 2,\n",
      "          'n': 2,\n",
      "          'perhaps': 2,\n",
      "          'possible': 2,\n",
      "          'commits': 2,\n",
      "          'suicide': 2,\n",
      "          'separated': 2,\n",
      "          'important': 2,\n",
      "          'good': 2,\n",
      "          'deviate': 2,\n",
      "          'rescue': 2,\n",
      "          'run': 2,\n",
      "          '_real_': 2,\n",
      "          'physical': 2,\n",
      "          'let': 2,\n",
      "          'appear': 2,\n",
      "          'real': 2,\n",
      "          'enough': 2,\n",
      "          'hang': 2,\n",
      "          'got': 2,\n",
      "          'late': 2,\n",
      "          'yes': 2,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'made': 1,\n",
      "          '_jumanji_': 1,\n",
      "          'brilliant': 1,\n",
      "          'achievement': 1,\n",
      "          'travesty': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'level': 1,\n",
      "          '_what': 1,\n",
      "          'boring': 1,\n",
      "          'illogical': 1,\n",
      "          'weepiewannabe': 1,\n",
      "          'left': 1,\n",
      "          'senses': 1,\n",
      "          'numb': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'breathtaking': 1,\n",
      "          'pulsepounding': 1,\n",
      "          'n_brazil_': 1,\n",
      "          'personal': 1,\n",
      "          'top': 1,\n",
      "          'ten': 1,\n",
      "          'n_the': 1,\n",
      "          'city': 1,\n",
      "          'lost': 1,\n",
      "          'children_': 1,\n",
      "          'outlandish': 1,\n",
      "          'scenarios': 1,\n",
      "          'even': 1,\n",
      "          '_2001_': 1,\n",
      "          '_last': 1,\n",
      "          'year': 1,\n",
      "          'marienbad_': 1,\n",
      "          'minority': 1,\n",
      "          'amidst': 1,\n",
      "          'friends': 1,\n",
      "          'n_what': 1,\n",
      "          'aside': 1,\n",
      "          'little': 1,\n",
      "          'complement': 1,\n",
      "          '_does_': 1,\n",
      "          'fully': 1,\n",
      "          'realized': 1,\n",
      "          'lukewarm': 1,\n",
      "          'insults': 1,\n",
      "          'bigger': 1,\n",
      "          'raises': 1,\n",
      "          'rid': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'put': 1,\n",
      "          'electronica': 1,\n",
      "          'sell': 1,\n",
      "          '_minds': 1,\n",
      "          'eye_': 1,\n",
      "          'videos': 1,\n",
      "          'nrobin': 1,\n",
      "          'plays': 1,\n",
      "          'nielsen': 1,\n",
      "          'dies': 1,\n",
      "          'prematurelynot': 1,\n",
      "          'chance': 1,\n",
      "          'director': 1,\n",
      "          'vincent': 1,\n",
      "          'ward': 1,\n",
      "          'screenwriter': 1,\n",
      "          'ronald': 1,\n",
      "          'bass': 1,\n",
      "          'chosen': 1,\n",
      "          'flashbacks': 1,\n",
      "          'foreground': 1,\n",
      "          'focus': 1,\n",
      "          'experience': 1,\n",
      "          'nbig': 1,\n",
      "          'mistake': 1,\n",
      "          'halfhour': 1,\n",
      "          'needed': 1,\n",
      "          'first': 1,\n",
      "          'ala': 1,\n",
      "          '_its': 1,\n",
      "          'wonderful': 1,\n",
      "          'life_': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'children': 1,\n",
      "          'longsuffering': 1,\n",
      "          'superbly': 1,\n",
      "          'annabella': 1,\n",
      "          'sciorra': 1,\n",
      "          'ninstead': 1,\n",
      "          'insult': 1,\n",
      "          'intelligence': 1,\n",
      "          'rushing': 1,\n",
      "          'expecting': 1,\n",
      "          'grow': 1,\n",
      "          'depth': 1,\n",
      "          'progresses': 1,\n",
      "          'doesnt': 1,\n",
      "          'learns': 1,\n",
      "          'meet': 1,\n",
      "          'b': 1,\n",
      "          'c': 1,\n",
      "          'nhmm': 1,\n",
      "          'nill': 1,\n",
      "          'grant': 1,\n",
      "          'silly': 1,\n",
      "          'giant': 1,\n",
      "          'sake': 1,\n",
      "          'narrative': 1,\n",
      "          'meeting': 1,\n",
      "          'part': 1,\n",
      "          'irks': 1,\n",
      "          'way': 1,\n",
      "          'give': 1,\n",
      "          'nthat': 1,\n",
      "          'alternate': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'nread': 1,\n",
      "          'nchris': 1,\n",
      "          'nsince': 1,\n",
      "          'suicides': 1,\n",
      "          'go': 1,\n",
      "          'hell': 1,\n",
      "          'forever': 1,\n",
      "          'ngood': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          '_loathe_': 1,\n",
      "          'becomes': 1,\n",
      "          'especially': 1,\n",
      "          'underlying': 1,\n",
      "          'premise': 1,\n",
      "          'seriously': 1,\n",
      "          '_really_': 1,\n",
      "          'loathe': 1,\n",
      "          'longer': 1,\n",
      "          'logic': 1,\n",
      "          'nhey': 1,\n",
      "          'forget': 1,\n",
      "          'nyour': 1,\n",
      "          'nthey': 1,\n",
      "          'world': 1,\n",
      "          'according': 1,\n",
      "          'newage': 1,\n",
      "          'screenplay': 1,\n",
      "          'conjure': 1,\n",
      "          'positive': 1,\n",
      "          'wild': 1,\n",
      "          'two': 1,\n",
      "          'happy': 1,\n",
      "          'bliss': 1,\n",
      "          'nbecause': 1,\n",
      "          'movie': 1,\n",
      "          'albert': 1,\n",
      "          'angel': 1,\n",
      "          'miscast': 1,\n",
      "          'cuba': 1,\n",
      "          'gooding': 1,\n",
      "          'jr': 1,\n",
      "          'says': 1,\n",
      "          'bluntly': 1,\n",
      "          'numm': 1,\n",
      "          'nif': 1,\n",
      "          'nsurely': 1,\n",
      "          'eastern': 1,\n",
      "          'meditation': 1,\n",
      "          'specialist': 1,\n",
      "          'able': 1,\n",
      "          'happen': 1,\n",
      "          'think': 1,\n",
      "          'unimaginative': 1,\n",
      "          'person': 1,\n",
      "          'arent': 1,\n",
      "          'big': 1,\n",
      "          'sustain': 1,\n",
      "          'well': 1,\n",
      "          'subscribe': 1,\n",
      "          'theology': 1,\n",
      "          'nall': 1,\n",
      "          'nanother': 1,\n",
      "          'based': 1,\n",
      "          'pause': 1,\n",
      "          'spend': 1,\n",
      "          'earth': 1,\n",
      "          'reliving': 1,\n",
      "          'favorite': 1,\n",
      "          'memories': 1,\n",
      "          'growing': 1,\n",
      "          'nyouve': 1,\n",
      "          'around': 1,\n",
      "          'long': 1,\n",
      "          'learn': 1,\n",
      "          'freak': 1,\n",
      "          'forcing': 1,\n",
      "          'write': 1,\n",
      "          'diary': 1,\n",
      "          'imo': 1,\n",
      "          'tacky': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'hundred': 1,\n",
      "          'times': 1,\n",
      "          'whats': 1,\n",
      "          'unraveled': 1,\n",
      "          'aforementioned': 1,\n",
      "          'sidetracked': 1,\n",
      "          'gimmicky': 1,\n",
      "          'subplots': 1,\n",
      "          'done': 1,\n",
      "          'come': 1,\n",
      "          'stale': 1,\n",
      "          'nmost': 1,\n",
      "          'insulting': 1,\n",
      "          'subplot': 1,\n",
      "          'differently': 1,\n",
      "          'expects': 1,\n",
      "          'finally': 1,\n",
      "          'show': 1,\n",
      "          'realizes': 1,\n",
      "          'along': 1,\n",
      "          'happens': 1,\n",
      "          'runs': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'emotion': 1,\n",
      "          'n_gag': 1,\n",
      "          'spoon_': 1,\n",
      "          'things': 1,\n",
      "          'sciorras': 1,\n",
      "          'effective': 1,\n",
      "          'performance': 1,\n",
      "          'rises': 1,\n",
      "          'mundane': 1,\n",
      "          'material': 1,\n",
      "          'nplease': 1,\n",
      "          'note': 1,\n",
      "          'enjoyed': 1,\n",
      "          'visuals': 1,\n",
      "          'enjoy': 1,\n",
      "          '_all_': 1,\n",
      "          'images': 1,\n",
      "          'looked': 1,\n",
      "          'sandy': 1,\n",
      "          'duncan': 1,\n",
      "          'universe': 1,\n",
      "          'everybody': 1,\n",
      "          'floating': 1,\n",
      "          'invisible': 1,\n",
      "          'strings': 1,\n",
      "          'sounds': 1,\n",
      "          'joke': 1,\n",
      "          'true': 1,\n",
      "          'tried': 1,\n",
      "          'block': 1,\n",
      "          'dialogue': 1,\n",
      "          'figure': 1,\n",
      "          'music': 1,\n",
      "          'best': 1,\n",
      "          'work': 1,\n",
      "          'alternative': 1,\n",
      "          'nmy': 1,\n",
      "          'vote': 1,\n",
      "          'goes': 1,\n",
      "          'rare': 1,\n",
      "          'cd': 1,\n",
      "          'called': 1,\n",
      "          'say': 1,\n",
      "          'die': 1,\n",
      "          '1981': 1,\n",
      "          'petra': 1,\n",
      "          'christian': 1,\n",
      "          'rock': 1,\n",
      "          'group': 1,\n",
      "          'pretty': 1,\n",
      "          'song': 1,\n",
      "          'annieshes': 1,\n",
      "          'gone': 1,\n",
      "          'away': 1,\n",
      "          'goodtheres': 1,\n",
      "          'much': 1,\n",
      "          'wed': 1,\n",
      "          'told': 1,\n",
      "          'herand': 1,\n",
      "          'wish': 1,\n",
      "          'couldbut': 1,\n",
      "          'nmelancholic': 1,\n",
      "          'ndepressing': 1,\n",
      "          'nbut': 1,\n",
      "          'entertaining': 1,\n",
      "          'case': 1,\n",
      "          'straight': 1,\n",
      "          'nsuicidebad': 1,\n",
      "          'n_dont': 1,\n",
      "          'it_': 1,\n",
      "          'nno': 1,\n",
      "          'nshouldnt': 1,\n",
      "          'pay': 1,\n",
      "          '7': 1,\n",
      "          '50': 1,\n",
      "          'hear': 1,\n",
      "          'awful': 1,\n",
      "          'schmaltzfest': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 13,\n",
      "          'pig': 10,\n",
      "          'babe': 8,\n",
      "          'original': 6,\n",
      "          'ni': 5,\n",
      "          'story': 5,\n",
      "          '2': 4,\n",
      "          'film': 4,\n",
      "          'must': 4,\n",
      "          'scenes': 4,\n",
      "          'didnt': 4,\n",
      "          'nbut': 4,\n",
      "          'nthis': 3,\n",
      "          '_more_': 3,\n",
      "          'mice': 3,\n",
      "          'time': 3,\n",
      "          'looking': 3,\n",
      "          'city': 3,\n",
      "          'hoggett': 3,\n",
      "          'nthe': 3,\n",
      "          'nbeing': 2,\n",
      "          'limited': 2,\n",
      "          'final': 2,\n",
      "          'budget': 2,\n",
      "          'money': 2,\n",
      "          'made': 2,\n",
      "          '1': 2,\n",
      "          'even': 2,\n",
      "          'sequels': 2,\n",
      "          'fairy': 2,\n",
      "          'tales': 2,\n",
      "          'great': 2,\n",
      "          'like': 2,\n",
      "          'talking': 2,\n",
      "          'animals': 2,\n",
      "          'comedy': 2,\n",
      "          'thats': 2,\n",
      "          'cute': 2,\n",
      "          'action': 2,\n",
      "          'given': 2,\n",
      "          'thatll': 2,\n",
      "          'nthatll': 2,\n",
      "          'limitations': 2,\n",
      "          'cromwell': 2,\n",
      "          'maybe': 2,\n",
      "          'script': 2,\n",
      "          'george': 2,\n",
      "          'miller': 2,\n",
      "          'dark': 2,\n",
      "          'impressive': 2,\n",
      "          'straight': 2,\n",
      "          'happy': 2,\n",
      "          'hes': 2,\n",
      "          'neven': 2,\n",
      "          'nno': 2,\n",
      "          'overused': 2,\n",
      "          'nand': 2,\n",
      "          'wife': 2,\n",
      "          'shes': 2,\n",
      "          'nhave': 2,\n",
      "          'embarrassment': 2,\n",
      "          'scene': 2,\n",
      "          'pit': 2,\n",
      "          'bull': 2,\n",
      "          'farm': 2,\n",
      "          '_do_': 2,\n",
      "          'farmer': 2,\n",
      "          'singing': 2,\n",
      "          'dog': 2,\n",
      "          '_babe_': 1,\n",
      "          'favorite': 1,\n",
      "          'movie': 1,\n",
      "          '1995': 1,\n",
      "          'sleeper': 1,\n",
      "          'hit': 1,\n",
      "          'transcended': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'surprise': 1,\n",
      "          'commercial': 1,\n",
      "          'critical': 1,\n",
      "          'success': 1,\n",
      "          'marketing': 1,\n",
      "          'tieins': 1,\n",
      "          'take': 1,\n",
      "          'nthus': 1,\n",
      "          'arrives': 1,\n",
      "          'greater': 1,\n",
      "          'nplush': 1,\n",
      "          'dolls': 1,\n",
      "          'vending': 1,\n",
      "          'machines': 1,\n",
      "          'hawking': 1,\n",
      "          'tshirts': 1,\n",
      "          'macys': 1,\n",
      "          'thanksgiving': 1,\n",
      "          'day': 1,\n",
      "          'balloons': 1,\n",
      "          'arrive': 1,\n",
      "          'holiday': 1,\n",
      "          'moneygrubbing': 1,\n",
      "          'ntoo': 1,\n",
      "          'late': 1,\n",
      "          'sad': 1,\n",
      "          'review': 1,\n",
      "          'write': 1,\n",
      "          '_not_': 1,\n",
      "          'live': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'fraction': 1,\n",
      "          'shouldnt': 1,\n",
      "          'expect': 1,\n",
      "          'modern': 1,\n",
      "          'match': 1,\n",
      "          'predecessors': 1,\n",
      "          'magic': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'loses': 1,\n",
      "          'charm': 1,\n",
      "          'nconsider': 1,\n",
      "          'driver': 1,\n",
      "          'applying': 1,\n",
      "          'accelerator': 1,\n",
      "          'intensity': 1,\n",
      "          'unaware': 1,\n",
      "          'car': 1,\n",
      "          'neutral': 1,\n",
      "          'nimagine': 1,\n",
      "          '_scream_s': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'explaining': 1,\n",
      "          'rules': 1,\n",
      "          'slapstick': 1,\n",
      "          '3': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'songs': 1,\n",
      "          'sing': 1,\n",
      "          '4': 1,\n",
      "          'keep': 1,\n",
      "          'cards': 1,\n",
      "          'break': 1,\n",
      "          'though': 1,\n",
      "          'gets': 1,\n",
      "          'wise': 1,\n",
      "          'sense': 1,\n",
      "          'context': 1,\n",
      "          'partition': 1,\n",
      "          '5': 1,\n",
      "          'however': 1,\n",
      "          'illogical': 1,\n",
      "          'conjure': 1,\n",
      "          'pivotal': 1,\n",
      "          'trademark': 1,\n",
      "          'song': 1,\n",
      "          'nobody': 1,\n",
      "          'remembers': 1,\n",
      "          'words': 1,\n",
      "          'baaramewe': 1,\n",
      "          'secret': 1,\n",
      "          'code': 1,\n",
      "          'nnow': 1,\n",
      "          'throw': 1,\n",
      "          'james': 1,\n",
      "          'hot': 1,\n",
      "          'commodity': 1,\n",
      "          'set': 1,\n",
      "          'approve': 1,\n",
      "          'b': 1,\n",
      "          'christine': 1,\n",
      "          'cavanaugh': 1,\n",
      "          'voice': 1,\n",
      "          'demands': 1,\n",
      "          '200': 1,\n",
      "          '000paltry': 1,\n",
      "          'considering': 1,\n",
      "          '80': 1,\n",
      "          'million': 1,\n",
      "          'nout': 1,\n",
      "          'ne': 1,\n",
      "          'g': 1,\n",
      "          'ndaily': 1,\n",
      "          'comes': 1,\n",
      "          'noticable': 1,\n",
      "          'results': 1,\n",
      "          'c': 1,\n",
      "          'director': 1,\n",
      "          'wellknown': 1,\n",
      "          'futuristic': 1,\n",
      "          'mad': 1,\n",
      "          'max': 1,\n",
      "          'films': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'segment': 1,\n",
      "          'kiddie': 1,\n",
      "          'fare': 1,\n",
      "          'direct': 1,\n",
      "          '_andre_': 1,\n",
      "          '94': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          '_but': 1,\n",
      "          'limited_': 1,\n",
      "          'nbabe': 1,\n",
      "          'talks': 1,\n",
      "          'single': 1,\n",
      "          'shot': 1,\n",
      "          'repeated': 1,\n",
      "          'center': 1,\n",
      "          'screen': 1,\n",
      "          'camera': 1,\n",
      "          'smirkregardless': 1,\n",
      "          'whether': 1,\n",
      "          'scared': 1,\n",
      "          'tired': 1,\n",
      "          'nseason': 1,\n",
      "          'elements': 1,\n",
      "          'find': 1,\n",
      "          'screenwritingishell': 1,\n",
      "          'bin': 1,\n",
      "          'change': 1,\n",
      "          'venue': 1,\n",
      "          'big': 1,\n",
      "          'praised': 1,\n",
      "          'wildly': 1,\n",
      "          'nexcuse': 1,\n",
      "          '_home': 1,\n",
      "          'alone_': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nhow': 1,\n",
      "          'muppets': 1,\n",
      "          '_the': 1,\n",
      "          'bad': 1,\n",
      "          'news': 1,\n",
      "          'bears_': 1,\n",
      "          'travelled': 1,\n",
      "          'tokyo': 1,\n",
      "          'nsorry': 1,\n",
      "          'dice': 1,\n",
      "          'nside': 1,\n",
      "          'note': 1,\n",
      "          'give': 1,\n",
      "          'fairytale': 1,\n",
      "          'look': 1,\n",
      "          'crafted': 1,\n",
      "          'fantastical': 1,\n",
      "          'fantasyland': 1,\n",
      "          'merges': 1,\n",
      "          'landmarks': 1,\n",
      "          'worlds': 1,\n",
      "          'cities': 1,\n",
      "          'yes': 1,\n",
      "          '_is_': 1,\n",
      "          'repeating': 1,\n",
      "          'view': 1,\n",
      "          'multiple': 1,\n",
      "          'occasions': 1,\n",
      "          'part': 1,\n",
      "          '_remains': 1,\n",
      "          'hotel_': 1,\n",
      "          'ii': 1,\n",
      "          'human': 1,\n",
      "          'element': 1,\n",
      "          'taken': 1,\n",
      "          'boss': 1,\n",
      "          'played': 1,\n",
      "          'magda': 1,\n",
      "          'szubanski': 1,\n",
      "          'nstretch': 1,\n",
      "          'nshes': 1,\n",
      "          'lead': 1,\n",
      "          'actresstype': 1,\n",
      "          'funny': 1,\n",
      "          'enough': 1,\n",
      "          'physical': 1,\n",
      "          'simply': 1,\n",
      "          'embarrassing': 1,\n",
      "          'pratfalls': 1,\n",
      "          'arrested': 1,\n",
      "          'falsely': 1,\n",
      "          'drug': 1,\n",
      "          'charges': 1,\n",
      "          'accidentally': 1,\n",
      "          'incite': 1,\n",
      "          'riot': 1,\n",
      "          'biker': 1,\n",
      "          'dudes': 1,\n",
      "          'scantily': 1,\n",
      "          'clad': 1,\n",
      "          'babes': 1,\n",
      "          'bounce': 1,\n",
      "          'around': 1,\n",
      "          'bungee': 1,\n",
      "          'cord': 1,\n",
      "          'prestigious': 1,\n",
      "          'benefit': 1,\n",
      "          'dinner': 1,\n",
      "          'hoping': 1,\n",
      "          'little': 1,\n",
      "          'smirk': 1,\n",
      "          'felt': 1,\n",
      "          'sorry': 1,\n",
      "          'put': 1,\n",
      "          'restraining': 1,\n",
      "          'nature': 1,\n",
      "          'violence': 1,\n",
      "          'dangles': 1,\n",
      "          'bridge': 1,\n",
      "          'head': 1,\n",
      "          'submerged': 1,\n",
      "          'underwater': 1,\n",
      "          'best': 1,\n",
      "          'bit': 1,\n",
      "          'macabre': 1,\n",
      "          'brothers': 1,\n",
      "          'grimm': 1,\n",
      "          'demonstrated': 1,\n",
      "          'problem': 1,\n",
      "          'lack': 1,\n",
      "          'thereof': 1,\n",
      "          'n_babe_': 1,\n",
      "          'sent': 1,\n",
      "          'save': 1,\n",
      "          'forgotten': 1,\n",
      "          'goodnatured': 1,\n",
      "          'midst': 1,\n",
      "          'cynicism': 1,\n",
      "          'environs': 1,\n",
      "          'nice': 1,\n",
      "          'rescue': 1,\n",
      "          'aforementioned': 1,\n",
      "          'actually': 1,\n",
      "          'nwithout': 1,\n",
      "          'giving': 1,\n",
      "          'ending': 1,\n",
      "          'away': 1,\n",
      "          'saved': 1,\n",
      "          'leftfield': 1,\n",
      "          'quirk': 1,\n",
      "          'nothing': 1,\n",
      "          'nspeaking': 1,\n",
      "          'pigpigpigpigpig': 1,\n",
      "          'word': 1,\n",
      "          'changed': 1,\n",
      "          'expletive': 1,\n",
      "          'al': 1,\n",
      "          'pacino': 1,\n",
      "          'could': 1,\n",
      "          'watching': 1,\n",
      "          '_scarface_': 1,\n",
      "          'screenwriting': 1,\n",
      "          'nfurther': 1,\n",
      "          'explain': 1,\n",
      "          'deep': 1,\n",
      "          'gnaw': 1,\n",
      "          'gut': 1,\n",
      "          'many': 1,\n",
      "          'accidents': 1,\n",
      "          'happen': 1,\n",
      "          'good': 1,\n",
      "          'people': 1,\n",
      "          'fantastically': 1,\n",
      "          'elaborate': 1,\n",
      "          'setups': 1,\n",
      "          'nhad': 1,\n",
      "          'cartoon': 1,\n",
      "          'victim': 1,\n",
      "          'equivalent': 1,\n",
      "          'elmer': 1,\n",
      "          'fudd': 1,\n",
      "          'reaction': 1,\n",
      "          'would': 1,\n",
      "          'softened': 1,\n",
      "          'nhis': 1,\n",
      "          'nan': 1,\n",
      "          'elderly': 1,\n",
      "          'mickey': 1,\n",
      "          'rooney': 1,\n",
      "          'nmuch': 1,\n",
      "          'irreverent': 1,\n",
      "          'quick': 1,\n",
      "          'nsplice': 1,\n",
      "          'isnt': 1,\n",
      "          'colossal': 1,\n",
      "          'failure': 1,\n",
      "          'glenne': 1,\n",
      "          'headleys': 1,\n",
      "          'schmoozy': 1,\n",
      "          'chimpanzee': 1,\n",
      "          'liked': 1,\n",
      "          'pink': 1,\n",
      "          'poodle': 1,\n",
      "          'cart': 1,\n",
      "          'momentarily': 1,\n",
      "          'thinks': 1,\n",
      "          'heaven': 1,\n",
      "          'weird': 1,\n",
      "          'guy': 1,\n",
      "          'may': 1,\n",
      "          'doublycast': 1,\n",
      "          'airport': 1,\n",
      "          'employee': 1,\n",
      "          'judge': 1,\n",
      "          'boredom': 1,\n",
      "          'hackedup': 1,\n",
      "          'nthem': 1,\n",
      "          'chapter': 1,\n",
      "          'partitions': 1,\n",
      "          'proficient': 1,\n",
      "          'acting': 1,\n",
      "          'none': 1,\n",
      "          'compensate': 1,\n",
      "          'nlet': 1,\n",
      "          'spoil': 1,\n",
      "          'looks': 1,\n",
      "          'proud': 1,\n",
      "          'says': 1,\n",
      "          'nthats': 1,\n",
      "          'nhope': 1,\n",
      "          'ruin': 1,\n",
      "          'tell': 1,\n",
      "          'heck': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nits': 6,\n",
      "          'film': 4,\n",
      "          'like': 4,\n",
      "          'cast': 3,\n",
      "          'galaxy': 3,\n",
      "          'quest': 3,\n",
      "          'nthe': 3,\n",
      "          'bad': 3,\n",
      "          'least': 3,\n",
      "          'nwhen': 3,\n",
      "          'creatures': 2,\n",
      "          'story': 2,\n",
      "          'begins': 2,\n",
      "          'tim': 2,\n",
      "          'allen': 2,\n",
      "          'rickman': 2,\n",
      "          'weaver': 2,\n",
      "          'meet': 2,\n",
      "          'fans': 2,\n",
      "          'aliens': 2,\n",
      "          'thermians': 2,\n",
      "          'help': 2,\n",
      "          'movie': 2,\n",
      "          'really': 2,\n",
      "          'star': 2,\n",
      "          'trek': 2,\n",
      "          'worse': 2,\n",
      "          'ni': 2,\n",
      "          'even': 2,\n",
      "          'jokes': 2,\n",
      "          'series': 2,\n",
      "          'show': 2,\n",
      "          'may': 2,\n",
      "          'much': 2,\n",
      "          'need': 2,\n",
      "          'pretty': 2,\n",
      "          'fine': 2,\n",
      "          'well': 2,\n",
      "          'cleavage': 2,\n",
      "          'entertaining': 2,\n",
      "          'nit': 2,\n",
      "          'effects': 2,\n",
      "          'first': 1,\n",
      "          'intrigued': 1,\n",
      "          'strange': 1,\n",
      "          'odd': 1,\n",
      "          'trailer': 1,\n",
      "          'saw': 1,\n",
      "          'nnow': 1,\n",
      "          'view': 1,\n",
      "          'completely': 1,\n",
      "          'changed': 1,\n",
      "          'time': 1,\n",
      "          'embrace': 1,\n",
      "          'impact': 1,\n",
      "          'bumpy': 1,\n",
      "          'ride': 1,\n",
      "          'including': 1,\n",
      "          'jason': 1,\n",
      "          'nesmith': 1,\n",
      "          'alexander': 1,\n",
      "          'dane': 1,\n",
      "          'alan': 1,\n",
      "          'gwen': 1,\n",
      "          'demarco': 1,\n",
      "          'sigourney': 1,\n",
      "          'signing': 1,\n",
      "          'autographs': 1,\n",
      "          'convention': 1,\n",
      "          'nthey': 1,\n",
      "          'dress': 1,\n",
      "          'costumes': 1,\n",
      "          'worship': 1,\n",
      "          'ground': 1,\n",
      "          'walk': 1,\n",
      "          'group': 1,\n",
      "          'called': 1,\n",
      "          'believe': 1,\n",
      "          'ultimate': 1,\n",
      "          'saviors': 1,\n",
      "          'dreaded': 1,\n",
      "          'alien': 1,\n",
      "          'colony': 1,\n",
      "          'lead': 1,\n",
      "          'sarris': 1,\n",
      "          'robin': 1,\n",
      "          'sachs': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'unaware': 1,\n",
      "          'actually': 1,\n",
      "          'begin': 1,\n",
      "          'performing': 1,\n",
      "          'duties': 1,\n",
      "          'ugly': 1,\n",
      "          'nthus': 1,\n",
      "          'long': 1,\n",
      "          'adventure': 1,\n",
      "          'save': 1,\n",
      "          'plays': 1,\n",
      "          'episode': 1,\n",
      "          'fact': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'trekkies': 1,\n",
      "          'appreciate': 1,\n",
      "          'weak': 1,\n",
      "          'spoof': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'funny': 1,\n",
      "          'nall': 1,\n",
      "          'basically': 1,\n",
      "          'collected': 1,\n",
      "          'observations': 1,\n",
      "          'none': 1,\n",
      "          'continuous': 1,\n",
      "          'joke': 1,\n",
      "          'involves': 1,\n",
      "          'simple': 1,\n",
      "          'crew': 1,\n",
      "          'member': 1,\n",
      "          'believes': 1,\n",
      "          'die': 1,\n",
      "          'space': 1,\n",
      "          'extra': 1,\n",
      "          'tv': 1,\n",
      "          'ever': 1,\n",
      "          'lives': 1,\n",
      "          'proven': 1,\n",
      "          'ncreative': 1,\n",
      "          'seem': 1,\n",
      "          'clever': 1,\n",
      "          'idea': 1,\n",
      "          'used': 1,\n",
      "          'death': 1,\n",
      "          'na': 1,\n",
      "          'person': 1,\n",
      "          'take': 1,\n",
      "          'nwe': 1,\n",
      "          'tortured': 1,\n",
      "          'especially': 1,\n",
      "          'pay': 1,\n",
      "          'pitiful': 1,\n",
      "          'expected': 1,\n",
      "          'oscar': 1,\n",
      "          'worthy': 1,\n",
      "          'performance': 1,\n",
      "          'form': 1,\n",
      "          'laughs': 1,\n",
      "          'would': 1,\n",
      "          'helpful': 1,\n",
      "          'nspeaking': 1,\n",
      "          'acting': 1,\n",
      "          '2': 1,\n",
      "          'talents': 1,\n",
      "          'wasted': 1,\n",
      "          'nsigourney': 1,\n",
      "          'worked': 1,\n",
      "          'value': 1,\n",
      "          'shows': 1,\n",
      "          'disgraceful': 1,\n",
      "          'nalan': 1,\n",
      "          'however': 1,\n",
      "          'lucky': 1,\n",
      "          'nafter': 1,\n",
      "          'last': 1,\n",
      "          'hit': 1,\n",
      "          'dogma': 1,\n",
      "          'embarrasses': 1,\n",
      "          'sloppy': 1,\n",
      "          'mess': 1,\n",
      "          'shame': 1,\n",
      "          'see': 1,\n",
      "          'talented': 1,\n",
      "          'actors': 1,\n",
      "          'actresses': 1,\n",
      "          'throw': 1,\n",
      "          'ability': 1,\n",
      "          'away': 1,\n",
      "          'couldnt': 1,\n",
      "          'get': 1,\n",
      "          'thankfully': 1,\n",
      "          'nice': 1,\n",
      "          'special': 1,\n",
      "          'pop': 1,\n",
      "          'nlike': 1,\n",
      "          'many': 1,\n",
      "          'big': 1,\n",
      "          'blockbusters': 1,\n",
      "          'armageddon': 1,\n",
      "          'haunting': 1,\n",
      "          'name': 1,\n",
      "          'rely': 1,\n",
      "          'heavily': 1,\n",
      "          'boost': 1,\n",
      "          'films': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'results': 1,\n",
      "          'ntimes': 1,\n",
      "          'works': 1,\n",
      "          'unfortunately': 1,\n",
      "          'shell': 1,\n",
      "          'hard': 1,\n",
      "          'earned': 1,\n",
      "          'money': 1,\n",
      "          'suffer': 1,\n",
      "          'junk': 1,\n",
      "          'stop': 1,\n",
      "          'getting': 1,\n",
      "          'tired': 1,\n",
      "          'suckered': 1,\n",
      "          'seeing': 1,\n",
      "          'trash': 1,\n",
      "          'look': 1,\n",
      "          'dandy': 1,\n",
      "          'nis': 1,\n",
      "          'ask': 1,\n",
      "          'nobviously': 1,\n",
      "          'finally': 1,\n",
      "          'ends': 1,\n",
      "          'literally': 1,\n",
      "          'crash': 1,\n",
      "          'lands': 1,\n",
      "          'naside': 1,\n",
      "          'impressive': 1,\n",
      "          'looking': 1,\n",
      "          'industrial': 1,\n",
      "          'light': 1,\n",
      "          'magic': 1,\n",
      "          'embarrassment': 1,\n",
      "          'embarrassing': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'genre': 1,\n",
      "          'bit': 1,\n",
      "          'fun': 1,\n",
      "          'place': 1,\n",
      "          'belongs': 1,\n",
      "          'infinity': 1,\n",
      "          'beyond': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'spawn': 5,\n",
      "          'something': 3,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'make': 2,\n",
      "          'dialogue': 2,\n",
      "          'nspawn': 2,\n",
      "          'assassin': 2,\n",
      "          'named': 2,\n",
      "          'simmons': 2,\n",
      "          'left': 2,\n",
      "          'movie': 2,\n",
      "          'nbut': 2,\n",
      "          'expected': 2,\n",
      "          'death': 2,\n",
      "          'nwhile': 2,\n",
      "          'sequences': 2,\n",
      "          'makers': 1,\n",
      "          'created': 1,\n",
      "          'almost': 1,\n",
      "          'vacuous': 1,\n",
      "          'summers': 1,\n",
      "          'adaptation': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'nboth': 1,\n",
      "          'films': 1,\n",
      "          'mistake': 1,\n",
      "          'adapting': 1,\n",
      "          'screen': 1,\n",
      "          'look': 1,\n",
      "          'graphic': 1,\n",
      "          'counterparts': 1,\n",
      "          'also': 1,\n",
      "          'monosyllabic': 1,\n",
      "          'emptyheaded': 1,\n",
      "          'character': 1,\n",
      "          'motivations': 1,\n",
      "          'nin': 1,\n",
      "          'panelsized': 1,\n",
      "          'morsels': 1,\n",
      "          'implausible': 1,\n",
      "          'plots': 1,\n",
      "          'rambo': 1,\n",
      "          'esque': 1,\n",
      "          'often': 1,\n",
      "          'overshadowed': 1,\n",
      "          'artwork': 1,\n",
      "          'thirty': 1,\n",
      "          'foot': 1,\n",
      "          'silver': 1,\n",
      "          'screens': 1,\n",
      "          'much': 1,\n",
      "          'difficult': 1,\n",
      "          'dismiss': 1,\n",
      "          'shallowness': 1,\n",
      "          'behind': 1,\n",
      "          'pretty': 1,\n",
      "          'pictures': 1,\n",
      "          'ostensibly': 1,\n",
      "          'white': 1,\n",
      "          'framed': 1,\n",
      "          'corporate': 1,\n",
      "          'baddie': 1,\n",
      "          'played': 1,\n",
      "          'without': 1,\n",
      "          'irony': 1,\n",
      "          'sheen': 1,\n",
      "          'set': 1,\n",
      "          'fire': 1,\n",
      "          'dead': 1,\n",
      "          'nthough': 1,\n",
      "          'skimps': 1,\n",
      "          'next': 1,\n",
      "          'plot': 1,\n",
      "          'points': 1,\n",
      "          'heres': 1,\n",
      "          'could': 1,\n",
      "          'determine': 1,\n",
      "          'said': 1,\n",
      "          'becomes': 1,\n",
      "          'leader': 1,\n",
      "          'satans': 1,\n",
      "          'army': 1,\n",
      "          'tutelage': 1,\n",
      "          'flatulating': 1,\n",
      "          'midget': 1,\n",
      "          'clown': 1,\n",
      "          'leguizamo': 1,\n",
      "          'grating': 1,\n",
      "          'always': 1,\n",
      "          'nhe': 1,\n",
      "          'renamed': 1,\n",
      "          'reasons': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'granted': 1,\n",
      "          'really': 1,\n",
      "          'cool': 1,\n",
      "          'costume': 1,\n",
      "          'enables': 1,\n",
      "          'become': 1,\n",
      "          'human': 1,\n",
      "          'chameleon': 1,\n",
      "          'spies': 1,\n",
      "          'birthday': 1,\n",
      "          'party': 1,\n",
      "          'child': 1,\n",
      "          'realizes': 1,\n",
      "          'cant': 1,\n",
      "          'evil': 1,\n",
      "          'superdemon': 1,\n",
      "          'hes': 1,\n",
      "          'sets': 1,\n",
      "          'avenging': 1,\n",
      "          'untimely': 1,\n",
      "          'ntypical': 1,\n",
      "          'summer': 1,\n",
      "          'blockbusters': 1,\n",
      "          'effectsladen': 1,\n",
      "          'ninety': 1,\n",
      "          'minute': 1,\n",
      "          'rock': 1,\n",
      "          'video': 1,\n",
      "          'visions': 1,\n",
      "          'hell': 1,\n",
      "          'laughably': 1,\n",
      "          'crude': 1,\n",
      "          'think': 1,\n",
      "          'virtual': 1,\n",
      "          'reality': 1,\n",
      "          'lawnmower': 1,\n",
      "          'man': 1,\n",
      "          'spawns': 1,\n",
      "          'prehensile': 1,\n",
      "          'outfit': 1,\n",
      "          'action': 1,\n",
      "          'truly': 1,\n",
      "          'behold': 1,\n",
      "          'storytelling': 1,\n",
      "          'completely': 1,\n",
      "          'lacking': 1,\n",
      "          'emotion': 1,\n",
      "          'longs': 1,\n",
      "          'wife': 1,\n",
      "          'dont': 1,\n",
      "          'single': 1,\n",
      "          'scene': 1,\n",
      "          'together': 1,\n",
      "          'conflict': 1,\n",
      "          'triumph': 1,\n",
      "          'anybodys': 1,\n",
      "          'guess': 1,\n",
      "          'believability': 1,\n",
      "          'nso': 1,\n",
      "          'many': 1,\n",
      "          'questions': 1,\n",
      "          'unanswered': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'wont': 1,\n",
      "          'addressed': 1,\n",
      "          'inevitable': 1,\n",
      "          'sequel': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'crow': 1,\n",
      "          'city': 1,\n",
      "          'angels': 1,\n",
      "          'suffered': 1,\n",
      "          'similar': 1,\n",
      "          'problems': 1,\n",
      "          'narrative': 1,\n",
      "          'lazy': 1,\n",
      "          'somewhat': 1,\n",
      "          'incoherent': 1,\n",
      "          'atmosphere': 1,\n",
      "          'spare': 1,\n",
      "          'genuine': 1,\n",
      "          'moments': 1,\n",
      "          'hypnotic': 1,\n",
      "          'power': 1,\n",
      "          'inyourface': 1,\n",
      "          'screaming': 1,\n",
      "          'banshee': 1,\n",
      "          'film': 1,\n",
      "          'guys': 1,\n",
      "          'know': 1,\n",
      "          'graft': 1,\n",
      "          'onto': 1,\n",
      "          'celluloid': 1,\n",
      "          'havent': 1,\n",
      "          'faintest': 1,\n",
      "          'idea': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 6,\n",
      "          'one': 5,\n",
      "          'sculptress': 5,\n",
      "          'film': 4,\n",
      "          'like': 4,\n",
      "          'actor': 4,\n",
      "          'release': 3,\n",
      "          'dobie': 3,\n",
      "          'nthe': 3,\n",
      "          'wright': 3,\n",
      "          'halloween': 2,\n",
      "          'looking': 2,\n",
      "          'right': 2,\n",
      "          'way': 2,\n",
      "          'easy': 2,\n",
      "          'see': 2,\n",
      "          'fahey': 2,\n",
      "          'plays': 2,\n",
      "          'shakespearean': 2,\n",
      "          'lacking': 2,\n",
      "          'hes': 2,\n",
      "          'apartment': 2,\n",
      "          'san': 2,\n",
      "          'francisco': 2,\n",
      "          'dobies': 2,\n",
      "          'sarah': 2,\n",
      "          'work': 2,\n",
      "          'films': 2,\n",
      "          'sarahs': 2,\n",
      "          'manages': 2,\n",
      "          'past': 2,\n",
      "          'old': 2,\n",
      "          'hollywood': 2,\n",
      "          'even': 2,\n",
      "          'phaedra': 1,\n",
      "          'cinema': 1,\n",
      "          'distributor': 1,\n",
      "          'neverheardof': 1,\n",
      "          'classics': 1,\n",
      "          'soft': 1,\n",
      "          'toilet': 1,\n",
      "          'seats': 1,\n",
      "          'trailer': 1,\n",
      "          'movie': 1,\n",
      "          'armed': 1,\n",
      "          'boxer': 1,\n",
      "          'vs': 1,\n",
      "          'flying': 1,\n",
      "          'guillotine': 1,\n",
      "          'sneaked': 1,\n",
      "          'latest': 1,\n",
      "          'theaters': 1,\n",
      "          'weekend': 1,\n",
      "          'hoping': 1,\n",
      "          'cash': 1,\n",
      "          'handful': 1,\n",
      "          'holidaygoers': 1,\n",
      "          'good': 1,\n",
      "          'scare': 1,\n",
      "          'scary': 1,\n",
      "          'proposition': 1,\n",
      "          'producers': 1,\n",
      "          'intended': 1,\n",
      "          'nfrom': 1,\n",
      "          'outset': 1,\n",
      "          'larger': 1,\n",
      "          'reputable': 1,\n",
      "          'chains': 1,\n",
      "          'arent': 1,\n",
      "          'carrying': 1,\n",
      "          'looks': 1,\n",
      "          'straighttovideo': 1,\n",
      "          'early': 1,\n",
      "          '80s': 1,\n",
      "          'thats': 1,\n",
      "          'dusted': 1,\n",
      "          'carefully': 1,\n",
      "          'reissued': 1,\n",
      "          'theatrical': 1,\n",
      "          'format': 1,\n",
      "          'nthat': 1,\n",
      "          'staple': 1,\n",
      "          'schlocky': 1,\n",
      "          'zmovies': 1,\n",
      "          'jeff': 1,\n",
      "          'lawnmower': 1,\n",
      "          'man': 1,\n",
      "          'washedup': 1,\n",
      "          'basic': 1,\n",
      "          'people': 1,\n",
      "          'skills': 1,\n",
      "          'nwhen': 1,\n",
      "          'reliving': 1,\n",
      "          'glory': 1,\n",
      "          'days': 1,\n",
      "          'ramshackle': 1,\n",
      "          'nob': 1,\n",
      "          'hill': 1,\n",
      "          'screaming': 1,\n",
      "          'scotchinduced': 1,\n",
      "          'hamlet': 1,\n",
      "          'soliloquies': 1,\n",
      "          'well': 1,\n",
      "          'night': 1,\n",
      "          'streets': 1,\n",
      "          'stalking': 1,\n",
      "          'loose': 1,\n",
      "          'women': 1,\n",
      "          'nfaheys': 1,\n",
      "          'sizes': 1,\n",
      "          'victims': 1,\n",
      "          'actually': 1,\n",
      "          'peep': 1,\n",
      "          'show': 1,\n",
      "          'performer': 1,\n",
      "          'name': 1,\n",
      "          'sylvie': 1,\n",
      "          'dressed': 1,\n",
      "          'guys': 1,\n",
      "          'kraftwerk': 1,\n",
      "          'approaches': 1,\n",
      "          'ridiculous': 1,\n",
      "          'attire': 1,\n",
      "          'bavarian': 1,\n",
      "          'count': 1,\n",
      "          'replete': 1,\n",
      "          'cane': 1,\n",
      "          'dark': 1,\n",
      "          'glasses': 1,\n",
      "          'false': 1,\n",
      "          'beard': 1,\n",
      "          'time': 1,\n",
      "          'castle': 1,\n",
      "          'nsylvie': 1,\n",
      "          'asks': 1,\n",
      "          'seductively': 1,\n",
      "          'flashes': 1,\n",
      "          'bulging': 1,\n",
      "          'contents': 1,\n",
      "          'wallet': 1,\n",
      "          'outside': 1,\n",
      "          'coffee': 1,\n",
      "          'shop': 1,\n",
      "          'jah': 1,\n",
      "          'nwith': 1,\n",
      "          'ze': 1,\n",
      "          'many': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'turrets': 1,\n",
      "          'perplexing': 1,\n",
      "          'reply': 1,\n",
      "          'real': 1,\n",
      "          'star': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'extremely': 1,\n",
      "          'loosely': 1,\n",
      "          'katie': 1,\n",
      "          'title': 1,\n",
      "          'nsarah': 1,\n",
      "          'new': 1,\n",
      "          'town': 1,\n",
      "          'studying': 1,\n",
      "          'prestigious': 1,\n",
      "          'sf': 1,\n",
      "          'art': 1,\n",
      "          'institute': 1,\n",
      "          'mentorship': 1,\n",
      "          'genius': 1,\n",
      "          'frenchman': 1,\n",
      "          'played': 1,\n",
      "          'beretwearing': 1,\n",
      "          'patrick': 1,\n",
      "          'bauchau': 1,\n",
      "          'nthats': 1,\n",
      "          'convenient': 1,\n",
      "          'would': 1,\n",
      "          'day': 1,\n",
      "          'live': 1,\n",
      "          'paris': 1,\n",
      "          'wont': 1,\n",
      "          'believe': 1,\n",
      "          'final': 1,\n",
      "          'shot': 1,\n",
      "          'cheesy': 1,\n",
      "          'eiffel': 1,\n",
      "          'tower': 1,\n",
      "          'backdrop': 1,\n",
      "          'rosemarys': 1,\n",
      "          'baby': 1,\n",
      "          'inspired': 1,\n",
      "          'imagery': 1,\n",
      "          'nbauchaus': 1,\n",
      "          'character': 1,\n",
      "          'criticizes': 1,\n",
      "          'publicly': 1,\n",
      "          'clay': 1,\n",
      "          'busts': 1,\n",
      "          'keep': 1,\n",
      "          'turning': 1,\n",
      "          'gargoylesperhaps': 1,\n",
      "          'shes': 1,\n",
      "          'possessed': 1,\n",
      "          'nby': 1,\n",
      "          'incubus': 1,\n",
      "          'still': 1,\n",
      "          'talk': 1,\n",
      "          'dinner': 1,\n",
      "          'nwhereas': 1,\n",
      "          'decent': 1,\n",
      "          'english': 1,\n",
      "          'accent': 1,\n",
      "          'talents': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'end': 1,\n",
      "          'non': 1,\n",
      "          'side': 1,\n",
      "          'wall': 1,\n",
      "          'troubled': 1,\n",
      "          'succinctly': 1,\n",
      "          'summarized': 1,\n",
      "          'scene': 1,\n",
      "          'thumbs': 1,\n",
      "          'scrapbook': 1,\n",
      "          'newspaper': 1,\n",
      "          'clippings': 1,\n",
      "          'headings': 1,\n",
      "          'delivers': 1,\n",
      "          'stunning': 1,\n",
      "          'macbeth': 1,\n",
      "          'courted': 1,\n",
      "          'studio': 1,\n",
      "          'renounces': 1,\n",
      "          'priesthood': 1,\n",
      "          'prostitute': 1,\n",
      "          'fingers': 1,\n",
      "          'priest': 1,\n",
      "          'sex': 1,\n",
      "          'scandal': 1,\n",
      "          'plot': 1,\n",
      "          'could': 1,\n",
      "          'easily': 1,\n",
      "          'condensed': 1,\n",
      "          'artist': 1,\n",
      "          'moves': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'psychopath': 1,\n",
      "          'yawns': 1,\n",
      "          'ensue': 1,\n",
      "          'nso': 1,\n",
      "          'rants': 1,\n",
      "          'raves': 1,\n",
      "          'chips': 1,\n",
      "          'away': 1,\n",
      "          'large': 1,\n",
      "          'blocks': 1,\n",
      "          'granite': 1,\n",
      "          'till': 1,\n",
      "          'bedtimes': 1,\n",
      "          'nlate': 1,\n",
      "          'paths': 1,\n",
      "          'finally': 1,\n",
      "          'cross': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'results': 1,\n",
      "          'nnobody': 1,\n",
      "          'else': 1,\n",
      "          'complex': 1,\n",
      "          'appears': 1,\n",
      "          'mind': 1,\n",
      "          'racket': 1,\n",
      "          'dear': 1,\n",
      "          'go': 1,\n",
      "          'ballistic': 1,\n",
      "          'bathtub': 1,\n",
      "          'overflows': 1,\n",
      "          'nno': 1,\n",
      "          'dont': 1,\n",
      "          'tub': 1,\n",
      "          'matter': 1,\n",
      "          'gore': 1,\n",
      "          'quotient': 1,\n",
      "          'virtually': 1,\n",
      "          'nil': 1,\n",
      "          'horror': 1,\n",
      "          'surprisingly': 1,\n",
      "          'thing': 1,\n",
      "          'worth': 1,\n",
      "          'writerdirector': 1,\n",
      "          'ian': 1,\n",
      "          'merrick': 1,\n",
      "          'make': 1,\n",
      "          'look': 1,\n",
      "          'dreary': 1,\n",
      "          'windswept': 1,\n",
      "          'deserted': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'fun': 1,\n",
      "          'nluckily': 1,\n",
      "          'limited': 1,\n",
      "          'made': 1,\n",
      "          'avoid': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'buster': 10,\n",
      "          'cisco': 5,\n",
      "          'melvin': 4,\n",
      "          'partner': 4,\n",
      "          'nand': 4,\n",
      "          'trace': 4,\n",
      "          'hong': 3,\n",
      "          'movies': 3,\n",
      "          'sequence': 3,\n",
      "          'characters': 3,\n",
      "          'storm': 3,\n",
      "          'apartment': 3,\n",
      "          'nthe': 3,\n",
      "          'way': 3,\n",
      "          'nishi': 3,\n",
      "          'paris': 3,\n",
      "          'plot': 2,\n",
      "          'subplots': 2,\n",
      "          'like': 2,\n",
      "          'kong': 2,\n",
      "          'havent': 2,\n",
      "          'american': 2,\n",
      "          'sight': 2,\n",
      "          'gags': 2,\n",
      "          'cut': 2,\n",
      "          'nhowever': 2,\n",
      "          'happens': 2,\n",
      "          'go': 2,\n",
      "          'big': 2,\n",
      "          'hit': 2,\n",
      "          'kidnapping': 2,\n",
      "          'daughter': 2,\n",
      "          'ciscos': 2,\n",
      "          'melvins': 2,\n",
      "          'investigation': 2,\n",
      "          'know': 2,\n",
      "          'call': 2,\n",
      "          'nbut': 2,\n",
      "          'nthere': 2,\n",
      "          'made': 2,\n",
      "          'video': 2,\n",
      "          'movie': 1,\n",
      "          'sadly': 1,\n",
      "          'follows': 1,\n",
      "          'kongrecipe': 1,\n",
      "          'moviemaking': 1,\n",
      "          'storytelling': 1,\n",
      "          'letter': 1,\n",
      "          'nthese': 1,\n",
      "          'kinds': 1,\n",
      "          'marked': 1,\n",
      "          'eyeopening': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'main': 1,\n",
      "          'lifeanddeath': 1,\n",
      "          'become': 1,\n",
      "          'involved': 1,\n",
      "          'inclusion': 1,\n",
      "          'host': 1,\n",
      "          'inconsequential': 1,\n",
      "          'ridiculous': 1,\n",
      "          'sunglasswearing': 1,\n",
      "          'henchmen': 1,\n",
      "          'nthat': 1,\n",
      "          'say': 1,\n",
      "          'dont': 1,\n",
      "          'influenced': 1,\n",
      "          'however': 1,\n",
      "          'quite': 1,\n",
      "          'obvious': 1,\n",
      "          'moviemakers': 1,\n",
      "          'clue': 1,\n",
      "          'filmgoer': 1,\n",
      "          'needs': 1,\n",
      "          'hiphoptalking': 1,\n",
      "          'thugs': 1,\n",
      "          'stupid': 1,\n",
      "          'nobserve': 1,\n",
      "          'opening': 1,\n",
      "          'na': 1,\n",
      "          'band': 1,\n",
      "          'hitmen': 1,\n",
      "          'led': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'lou': 1,\n",
      "          'diamond': 1,\n",
      "          'phillips': 1,\n",
      "          'nthey': 1,\n",
      "          'waiting': 1,\n",
      "          'power': 1,\n",
      "          'help': 1,\n",
      "          'infrared': 1,\n",
      "          'goggles': 1,\n",
      "          'unsure': 1,\n",
      "          'cable': 1,\n",
      "          'nhe': 1,\n",
      "          'undecided': 1,\n",
      "          'nthis': 1,\n",
      "          '10': 1,\n",
      "          'seconds': 1,\n",
      "          'audience': 1,\n",
      "          'finds': 1,\n",
      "          'humor': 1,\n",
      "          'foolishness': 1,\n",
      "          'lights': 1,\n",
      "          'suddenly': 1,\n",
      "          'ncisco': 1,\n",
      "          'surprised': 1,\n",
      "          'says': 1,\n",
      "          'whoa': 1,\n",
      "          'lets': 1,\n",
      "          'ngo': 1,\n",
      "          'nicely': 1,\n",
      "          'executed': 1,\n",
      "          'title': 1,\n",
      "          'refers': 1,\n",
      "          'quarter': 1,\n",
      "          'film': 1,\n",
      "          'nneeding': 1,\n",
      "          'cash': 1,\n",
      "          'devises': 1,\n",
      "          'plan': 1,\n",
      "          'kidnap': 1,\n",
      "          'china': 1,\n",
      "          'chow': 1,\n",
      "          'wealthy': 1,\n",
      "          'japanese': 1,\n",
      "          'industrialist': 1,\n",
      "          'jiro': 1,\n",
      "          'also': 1,\n",
      "          'goddaughter': 1,\n",
      "          'avery': 1,\n",
      "          'brooks': 1,\n",
      "          'boss': 1,\n",
      "          'ninfuriated': 1,\n",
      "          'insufferable': 1,\n",
      "          'commands': 1,\n",
      "          'uncover': 1,\n",
      "          'mastermind': 1,\n",
      "          'nduring': 1,\n",
      "          'singles': 1,\n",
      "          'ringleader': 1,\n",
      "          'orders': 1,\n",
      "          'capture': 1,\n",
      "          'execution': 1,\n",
      "          'nmelvin': 1,\n",
      "          'must': 1,\n",
      "          'find': 1,\n",
      "          'stay': 1,\n",
      "          'alive': 1,\n",
      "          'nby': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'nciscos': 1,\n",
      "          'makes': 1,\n",
      "          'ransom': 1,\n",
      "          'phone': 1,\n",
      "          'believing': 1,\n",
      "          'traced': 1,\n",
      "          'prevents': 1,\n",
      "          'tracing': 1,\n",
      "          'mr': 1,\n",
      "          'nto': 1,\n",
      "          'counter': 1,\n",
      "          'doubt': 1,\n",
      "          'interesting': 1,\n",
      "          'world': 1,\n",
      "          'live': 1,\n",
      "          'lots': 1,\n",
      "          'issues': 1,\n",
      "          'wed': 1,\n",
      "          'nhow': 1,\n",
      "          'justify': 1,\n",
      "          'profession': 1,\n",
      "          'fiancee': 1,\n",
      "          'nwhat': 1,\n",
      "          'goes': 1,\n",
      "          'among': 1,\n",
      "          'clique': 1,\n",
      "          'nwhy': 1,\n",
      "          'odds': 1,\n",
      "          'actually': 1,\n",
      "          'lot': 1,\n",
      "          'potential': 1,\n",
      "          'material': 1,\n",
      "          'could': 1,\n",
      "          'explored': 1,\n",
      "          'seems': 1,\n",
      "          'effort': 1,\n",
      "          'direction': 1,\n",
      "          'instead': 1,\n",
      "          'given': 1,\n",
      "          'notsoengrossing': 1,\n",
      "          'filled': 1,\n",
      "          'oneliners': 1,\n",
      "          'silly': 1,\n",
      "          'extraneous': 1,\n",
      "          'tomfoolery': 1,\n",
      "          'even': 1,\n",
      "          'mentioned': 1,\n",
      "          'financees': 1,\n",
      "          'visiting': 1,\n",
      "          'parents': 1,\n",
      "          'want': 1,\n",
      "          'separate': 1,\n",
      "          'mistress': 1,\n",
      "          'pimplefaced': 1,\n",
      "          'clerk': 1,\n",
      "          'demanding': 1,\n",
      "          'return': 1,\n",
      "          'overdue': 1,\n",
      "          'nif': 1,\n",
      "          'signals': 1,\n",
      "          'future': 1,\n",
      "          'style': 1,\n",
      "          'audiences': 1,\n",
      "          'shoot': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 4,\n",
      "          'exorcist': 3,\n",
      "          'sequel': 3,\n",
      "          'like': 3,\n",
      "          'one': 3,\n",
      "          'demon': 3,\n",
      "          'film': 3,\n",
      "          'success': 2,\n",
      "          'make': 2,\n",
      "          'linda': 2,\n",
      "          'blair': 2,\n",
      "          'start': 2,\n",
      "          'regan': 2,\n",
      "          'figure': 2,\n",
      "          'possess': 2,\n",
      "          'good': 2,\n",
      "          'really': 2,\n",
      "          'anywhere': 2,\n",
      "          'direction': 2,\n",
      "          'fact': 2,\n",
      "          'going': 2,\n",
      "          'jumbled': 2,\n",
      "          'huge': 1,\n",
      "          '1973': 1,\n",
      "          'inevitable': 1,\n",
      "          'sadly': 1,\n",
      "          'horror': 1,\n",
      "          'fims': 1,\n",
      "          'money': 1,\n",
      "          'filmmakers': 1,\n",
      "          'decided': 1,\n",
      "          'ridiculous': 1,\n",
      "          'makes': 1,\n",
      "          'absolutely': 1,\n",
      "          'sense': 1,\n",
      "          'extremely': 1,\n",
      "          'pointless': 1,\n",
      "          'wasting': 1,\n",
      "          'max': 1,\n",
      "          'von': 1,\n",
      "          'sydow': 1,\n",
      "          'completely': 1,\n",
      "          'nneedless': 1,\n",
      "          'dumb': 1,\n",
      "          'flopped': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'never': 1,\n",
      "          'gained': 1,\n",
      "          'much': 1,\n",
      "          'though': 1,\n",
      "          'voted': 1,\n",
      "          'worst': 1,\n",
      "          'sequels': 1,\n",
      "          'time': 1,\n",
      "          'agree': 1,\n",
      "          'nto': 1,\n",
      "          'story': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'tormented': 1,\n",
      "          'memories': 1,\n",
      "          'used': 1,\n",
      "          'priest': 1,\n",
      "          'played': 1,\n",
      "          'richard': 1,\n",
      "          'burton': 1,\n",
      "          'trying': 1,\n",
      "          'tried': 1,\n",
      "          'somehow': 1,\n",
      "          'wants': 1,\n",
      "          'maybe': 1,\n",
      "          'something': 1,\n",
      "          'nnow': 1,\n",
      "          'must': 1,\n",
      "          'try': 1,\n",
      "          'stop': 1,\n",
      "          'taking': 1,\n",
      "          'regans': 1,\n",
      "          'body': 1,\n",
      "          'late': 1,\n",
      "          'nsome': 1,\n",
      "          'things': 1,\n",
      "          'ii': 1,\n",
      "          'need': 1,\n",
      "          'revive': 1,\n",
      "          'character': 1,\n",
      "          'terrible': 1,\n",
      "          'brings': 1,\n",
      "          'lull': 1,\n",
      "          'places': 1,\n",
      "          'seems': 1,\n",
      "          'stops': 1,\n",
      "          'place': 1,\n",
      "          'doesnt': 1,\n",
      "          'go': 1,\n",
      "          'nlouise': 1,\n",
      "          'fletcher': 1,\n",
      "          'alright': 1,\n",
      "          'worth': 1,\n",
      "          'could': 1,\n",
      "          'done': 1,\n",
      "          'lot': 1,\n",
      "          'better': 1,\n",
      "          'nthe': 1,\n",
      "          'john': 1,\n",
      "          'boorman': 1,\n",
      "          'confused': 1,\n",
      "          'stylish': 1,\n",
      "          'nature': 1,\n",
      "          'couldnt': 1,\n",
      "          'nin': 1,\n",
      "          'idea': 1,\n",
      "          'script': 1,\n",
      "          'plot': 1,\n",
      "          'ending': 1,\n",
      "          'laugh': 1,\n",
      "          'loud': 1,\n",
      "          'hilariosly': 1,\n",
      "          'nfor': 1,\n",
      "          'fans': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'recommend': 1,\n",
      "          'renting': 1,\n",
      "          'ni': 1,\n",
      "          'actually': 1,\n",
      "          'gave': 1,\n",
      "          'high': 1,\n",
      "          'rating': 1,\n",
      "          'worse': 1,\n",
      "          'would': 1,\n",
      "          'deserved': 1,\n",
      "          'zero': 1,\n",
      "          'pumpkins': 1,\n",
      "          'went': 1,\n",
      "          'easy': 1,\n",
      "          'however': 1,\n",
      "          'bit': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'nim': 1,\n",
      "          'saying': 1,\n",
      "          'dont': 1,\n",
      "          'nbad': 1,\n",
      "          'movie': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'part': 4,\n",
      "          'movie': 3,\n",
      "          '54': 3,\n",
      "          'new': 3,\n",
      "          'enough': 3,\n",
      "          'shane': 3,\n",
      "          'era': 2,\n",
      "          'n54': 2,\n",
      "          'story': 2,\n",
      "          'york': 2,\n",
      "          'studio': 2,\n",
      "          'anybody': 2,\n",
      "          'nhe': 2,\n",
      "          'one': 2,\n",
      "          'famous': 2,\n",
      "          'dreams': 2,\n",
      "          'moment': 2,\n",
      "          'big': 2,\n",
      "          'julie': 2,\n",
      "          'nits': 2,\n",
      "          'people': 1,\n",
      "          'populate': 1,\n",
      "          'shallow': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'selfindulgent': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'perfectly': 1,\n",
      "          'mirror': 1,\n",
      "          'well': 1,\n",
      "          'feature': 1,\n",
      "          'depicts': 1,\n",
      "          'wellpublicized': 1,\n",
      "          'disco': 1,\n",
      "          'inplace': 1,\n",
      "          '70s': 1,\n",
      "          'went': 1,\n",
      "          'ogled': 1,\n",
      "          'photographed': 1,\n",
      "          'pampered': 1,\n",
      "          'difficulty': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'mark': 1,\n",
      "          'christopher': 1,\n",
      "          'script': 1,\n",
      "          'takes': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'nchristopher': 1,\n",
      "          'neither': 1,\n",
      "          'condemns': 1,\n",
      "          'glorifies': 1,\n",
      "          'legendary': 1,\n",
      "          'excesses': 1,\n",
      "          '54s': 1,\n",
      "          'hallmark': 1,\n",
      "          'keeps': 1,\n",
      "          'uninvolved': 1,\n",
      "          'distance': 1,\n",
      "          'thus': 1,\n",
      "          'keeping': 1,\n",
      "          'us': 1,\n",
      "          'forming': 1,\n",
      "          'emotional': 1,\n",
      "          'attachment': 1,\n",
      "          'protagonists': 1,\n",
      "          'movies': 1,\n",
      "          'main': 1,\n",
      "          'asset': 1,\n",
      "          'surprising': 1,\n",
      "          'performance': 1,\n",
      "          'mike': 1,\n",
      "          'myers': 1,\n",
      "          'steve': 1,\n",
      "          'rubell': 1,\n",
      "          'owner': 1,\n",
      "          'nightspot': 1,\n",
      "          'rebel': 1,\n",
      "          'dreamer': 1,\n",
      "          'shrewd': 1,\n",
      "          'entrepreneur': 1,\n",
      "          'nhes': 1,\n",
      "          'smart': 1,\n",
      "          'childlike': 1,\n",
      "          'pander': 1,\n",
      "          'desires': 1,\n",
      "          'clientele': 1,\n",
      "          'yet': 1,\n",
      "          'stupid': 1,\n",
      "          'brag': 1,\n",
      "          'tv': 1,\n",
      "          'hiding': 1,\n",
      "          'profits': 1,\n",
      "          'irs': 1,\n",
      "          'nmyers': 1,\n",
      "          'first': 1,\n",
      "          'straight': 1,\n",
      "          'character': 1,\n",
      "          'turn': 1,\n",
      "          'appealing': 1,\n",
      "          'appalling': 1,\n",
      "          'nat': 1,\n",
      "          'try': 1,\n",
      "          'pressure': 1,\n",
      "          'male': 1,\n",
      "          'employee': 1,\n",
      "          'sexual': 1,\n",
      "          'situation': 1,\n",
      "          'next': 1,\n",
      "          'apologize': 1,\n",
      "          'bad': 1,\n",
      "          'behavior': 1,\n",
      "          'offer': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n",
      "          'handful': 1,\n",
      "          'cash': 1,\n",
      "          'told': 1,\n",
      "          'oshea': 1,\n",
      "          'ryan': 1,\n",
      "          'phillippe': 1,\n",
      "          'jersey': 1,\n",
      "          'lad': 1,\n",
      "          'crossing': 1,\n",
      "          'river': 1,\n",
      "          'apple': 1,\n",
      "          'nshades': 1,\n",
      "          'john': 1,\n",
      "          'travoltas': 1,\n",
      "          'brooklynbound': 1,\n",
      "          'tony': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'fever': 1,\n",
      "          'neventually': 1,\n",
      "          'come': 1,\n",
      "          'attracts': 1,\n",
      "          'rubells': 1,\n",
      "          'eye': 1,\n",
      "          'admitted': 1,\n",
      "          'promised': 1,\n",
      "          'land': 1,\n",
      "          'nhis': 1,\n",
      "          'looks': 1,\n",
      "          'get': 1,\n",
      "          'job': 1,\n",
      "          'busboy': 1,\n",
      "          'later': 1,\n",
      "          'promoted': 1,\n",
      "          'prestigious': 1,\n",
      "          'position': 1,\n",
      "          'bartender': 1,\n",
      "          'mixes': 1,\n",
      "          'makes': 1,\n",
      "          'drinks': 1,\n",
      "          'rich': 1,\n",
      "          'nshanes': 1,\n",
      "          'dream': 1,\n",
      "          'meet': 1,\n",
      "          'soap': 1,\n",
      "          'star': 1,\n",
      "          'black': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'fellow': 1,\n",
      "          'garden': 1,\n",
      "          'stater': 1,\n",
      "          'nbut': 1,\n",
      "          'characters': 1,\n",
      "          'sketchily': 1,\n",
      "          'drawn': 1,\n",
      "          'even': 1,\n",
      "          'hook': 1,\n",
      "          'deal': 1,\n",
      "          'chemistry': 1,\n",
      "          'nonexistent': 1,\n",
      "          'cold': 1,\n",
      "          'uninvolving': 1,\n",
      "          'strobe': 1,\n",
      "          'lights': 1,\n",
      "          'glitz': 1,\n",
      "          'substance': 1,\n",
      "          'sort': 1,\n",
      "          'like': 1,\n",
      "          'musical': 1,\n",
      "          'covers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 7,\n",
      "          'time': 5,\n",
      "          'n': 4,\n",
      "          'wedding': 4,\n",
      "          'even': 3,\n",
      "          'trailer': 3,\n",
      "          'like': 3,\n",
      "          'funny': 3,\n",
      "          'brackett': 3,\n",
      "          'played': 3,\n",
      "          'movie': 3,\n",
      "          'nkline': 3,\n",
      "          'friends': 3,\n",
      "          'gay': 3,\n",
      "          'come': 3,\n",
      "          'nit': 3,\n",
      "          'gets': 3,\n",
      "          'seemed': 3,\n",
      "          'scene': 3,\n",
      "          'ive': 2,\n",
      "          'kline': 2,\n",
      "          'great': 2,\n",
      "          'hilarious': 2,\n",
      "          'got': 2,\n",
      "          'however': 2,\n",
      "          'much': 2,\n",
      "          'wife': 2,\n",
      "          'name': 2,\n",
      "          'began': 2,\n",
      "          'teacher': 2,\n",
      "          'nhe': 2,\n",
      "          'poetry': 2,\n",
      "          'famous': 2,\n",
      "          'student': 2,\n",
      "          'take': 2,\n",
      "          'nthey': 2,\n",
      "          'poetic': 2,\n",
      "          'engaged': 2,\n",
      "          'joan': 2,\n",
      "          'three': 2,\n",
      "          'years': 2,\n",
      "          'says': 2,\n",
      "          'live': 2,\n",
      "          'town': 2,\n",
      "          'begins': 2,\n",
      "          'dont': 2,\n",
      "          'nthere': 2,\n",
      "          'tom': 2,\n",
      "          'selleck': 2,\n",
      "          'climax': 2,\n",
      "          'saying': 2,\n",
      "          'parents': 2,\n",
      "          'klines': 2,\n",
      "          'hes': 2,\n",
      "          'pointless': 2,\n",
      "          'found': 2,\n",
      "          'action': 2,\n",
      "          'always': 1,\n",
      "          'kevin': 1,\n",
      "          'fan': 1,\n",
      "          'silverado': 1,\n",
      "          'fish': 1,\n",
      "          'called': 1,\n",
      "          'wanda': 1,\n",
      "          'pirates': 1,\n",
      "          'penzance': 1,\n",
      "          'hamlet': 1,\n",
      "          'pbs': 1,\n",
      "          'performances': 1,\n",
      "          'minute': 1,\n",
      "          'saw': 1,\n",
      "          'resolved': 1,\n",
      "          'see': 1,\n",
      "          'nbesides': 1,\n",
      "          'fact': 1,\n",
      "          'starred': 1,\n",
      "          'looked': 1,\n",
      "          'ni': 1,\n",
      "          'sucker': 1,\n",
      "          'punched': 1,\n",
      "          'extent': 1,\n",
      "          'also': 1,\n",
      "          'thought': 1,\n",
      "          'wow': 1,\n",
      "          'theres': 1,\n",
      "          'stuff': 1,\n",
      "          'must': 1,\n",
      "          'ton': 1,\n",
      "          'laughs': 1,\n",
      "          'rest': 1,\n",
      "          'oops': 1,\n",
      "          'packed': 1,\n",
      "          'headed': 1,\n",
      "          'les': 1,\n",
      "          'cinemas': 1,\n",
      "          'del': 1,\n",
      "          'diablo': 1,\n",
      "          'local': 1,\n",
      "          'multimultiplex': 1,\n",
      "          'concerns': 1,\n",
      "          'englishdrama': 1,\n",
      "          'suburban': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'named': 1,\n",
      "          'howard': 1,\n",
      "          'loves': 1,\n",
      "          'literary': 1,\n",
      "          'works': 1,\n",
      "          'class': 1,\n",
      "          'interested': 1,\n",
      "          'former': 1,\n",
      "          'matt': 1,\n",
      "          'dillon': 1,\n",
      "          'id': 1,\n",
      "          'put': 1,\n",
      "          'wont': 1,\n",
      "          'let': 1,\n",
      "          'notes': 1,\n",
      "          'forgotten': 1,\n",
      "          'continually': 1,\n",
      "          'interrupt': 1,\n",
      "          'long': 1,\n",
      "          'expositions': 1,\n",
      "          'fawning': 1,\n",
      "          'questions': 1,\n",
      "          'nbrackett': 1,\n",
      "          'another': 1,\n",
      "          'cusack': 1,\n",
      "          'finally': 1,\n",
      "          'gotten': 1,\n",
      "          'gumption': 1,\n",
      "          'marry': 1,\n",
      "          'becomes': 1,\n",
      "          'big': 1,\n",
      "          'question': 1,\n",
      "          'mark': 1,\n",
      "          'oscar': 1,\n",
      "          'broadcast': 1,\n",
      "          'homosexual': 1,\n",
      "          'spends': 1,\n",
      "          'first': 1,\n",
      "          'twothirds': 1,\n",
      "          'frantically': 1,\n",
      "          'trying': 1,\n",
      "          'convince': 1,\n",
      "          'everyone': 1,\n",
      "          'isnt': 1,\n",
      "          'whole': 1,\n",
      "          'examine': 1,\n",
      "          'every': 1,\n",
      "          'detail': 1,\n",
      "          'life': 1,\n",
      "          'identifying': 1,\n",
      "          'things': 1,\n",
      "          'confirm': 1,\n",
      "          'sexual': 1,\n",
      "          'preference': 1,\n",
      "          'nhis': 1,\n",
      "          'closest': 1,\n",
      "          'help': 1,\n",
      "          'matters': 1,\n",
      "          'bringing': 1,\n",
      "          'nothing': 1,\n",
      "          'barbara': 1,\n",
      "          'streisand': 1,\n",
      "          'laserdiscs': 1,\n",
      "          'stag': 1,\n",
      "          'party': 1,\n",
      "          'genuinely': 1,\n",
      "          'hilarous': 1,\n",
      "          'moments': 1,\n",
      "          'one': 1,\n",
      "          'involving': 1,\n",
      "          'tape': 1,\n",
      "          'geared': 1,\n",
      "          'towards': 1,\n",
      "          'helping': 1,\n",
      "          'men': 1,\n",
      "          'assert': 1,\n",
      "          'masculinity': 1,\n",
      "          'hounded': 1,\n",
      "          'reporter': 1,\n",
      "          'waxes': 1,\n",
      "          'benefits': 1,\n",
      "          'coming': 1,\n",
      "          'best': 1,\n",
      "          'exploit': 1,\n",
      "          'situation': 1,\n",
      "          'sleazy': 1,\n",
      "          'tabloid': 1,\n",
      "          'machinations': 1,\n",
      "          'moves': 1,\n",
      "          'along': 1,\n",
      "          'fine': 1,\n",
      "          'slowly': 1,\n",
      "          'builds': 1,\n",
      "          'stands': 1,\n",
      "          'altar': 1,\n",
      "          'asked': 1,\n",
      "          'vows': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'surprised': 1,\n",
      "          'read': 1,\n",
      "          'going': 1,\n",
      "          'reveal': 1,\n",
      "          'ending': 1,\n",
      "          'instead': 1,\n",
      "          'front': 1,\n",
      "          'cameras': 1,\n",
      "          'im': 1,\n",
      "          'nthis': 1,\n",
      "          'opinion': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'nmost': 1,\n",
      "          'humor': 1,\n",
      "          'insistence': 1,\n",
      "          'straight': 1,\n",
      "          'loving': 1,\n",
      "          'senstivie': 1,\n",
      "          'guy': 1,\n",
      "          'dressing': 1,\n",
      "          'well': 1,\n",
      "          'occaisionally': 1,\n",
      "          'acting': 1,\n",
      "          'prissy': 1,\n",
      "          'reminded': 1,\n",
      "          'effeminate': 1,\n",
      "          'heterosexual': 1,\n",
      "          'sketch': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'sustainably': 1,\n",
      "          'performance': 1,\n",
      "          'made': 1,\n",
      "          'doubly': 1,\n",
      "          'nhowever': 1,\n",
      "          'drags': 1,\n",
      "          'attempted': 1,\n",
      "          'quick': 1,\n",
      "          'conclusion': 1,\n",
      "          'serious': 1,\n",
      "          'side': 1,\n",
      "          'done': 1,\n",
      "          'reconciles': 1,\n",
      "          'turned': 1,\n",
      "          'several': 1,\n",
      "          'scenes': 1,\n",
      "          'waste': 1,\n",
      "          'mother': 1,\n",
      "          'bar': 1,\n",
      "          'nfinally': 1,\n",
      "          'though': 1,\n",
      "          'catholic': 1,\n",
      "          'priest': 1,\n",
      "          'condescending': 1,\n",
      "          'preist': 1,\n",
      "          'believe': 1,\n",
      "          'man': 1,\n",
      "          'consumated': 1,\n",
      "          'relationship': 1,\n",
      "          'proclaiming': 1,\n",
      "          'third': 1,\n",
      "          'person': 1,\n",
      "          'chuckle': 1,\n",
      "          'audience': 1,\n",
      "          'distracted': 1,\n",
      "          'tire': 1,\n",
      "          'nby': 1,\n",
      "          'gone': 1,\n",
      "          'hoping': 1,\n",
      "          'would': 1,\n",
      "          'soon': 1,\n",
      "          'review': 1,\n",
      "          'noverall': 1,\n",
      "          'quantify': 1,\n",
      "          'say': 1,\n",
      "          'rising': 1,\n",
      "          'falling': 1,\n",
      "          'nsee': 1,\n",
      "          'economy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'blah': 3,\n",
      "          'speed': 2,\n",
      "          '2': 2,\n",
      "          'batman': 2,\n",
      "          'picture': 2,\n",
      "          'one': 2,\n",
      "          'nthe': 2,\n",
      "          'gotham': 2,\n",
      "          'city': 2,\n",
      "          'oddly': 2,\n",
      "          'month': 1,\n",
      "          'ago': 1,\n",
      "          'wrote': 1,\n",
      "          'worst': 1,\n",
      "          'film': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'reviewed': 1,\n",
      "          'paper': 1,\n",
      "          'ni': 1,\n",
      "          'didnt': 1,\n",
      "          'know': 1,\n",
      "          'time': 1,\n",
      "          'id': 1,\n",
      "          'soon': 1,\n",
      "          'encounter': 1,\n",
      "          'despise': 1,\n",
      "          'robin': 1,\n",
      "          'overtaken': 1,\n",
      "          'least': 1,\n",
      "          'worthy': 1,\n",
      "          'attention': 1,\n",
      "          'summer': 1,\n",
      "          'nas': 1,\n",
      "          'directed': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'specializes': 1,\n",
      "          'sequels': 1,\n",
      "          'john': 1,\n",
      "          'grisham': 1,\n",
      "          'adaptations': 1,\n",
      "          'isnt': 1,\n",
      "          'good': 1,\n",
      "          'either': 1,\n",
      "          'b': 1,\n",
      "          'r': 1,\n",
      "          'long': 1,\n",
      "          'excuse': 1,\n",
      "          'taco': 1,\n",
      "          'bell': 1,\n",
      "          'promotion': 1,\n",
      "          'plot': 1,\n",
      "          'mr': 1,\n",
      "          'freeze': 1,\n",
      "          'poison': 1,\n",
      "          'ivy': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'planning': 1,\n",
      "          'take': 1,\n",
      "          'vorld': 1,\n",
      "          'ineffective': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'states': 1,\n",
      "          'weighted': 1,\n",
      "          'repetitive': 1,\n",
      "          'asides': 1,\n",
      "          'nature': 1,\n",
      "          'trust': 1,\n",
      "          'partnership': 1,\n",
      "          'nbut': 1,\n",
      "          'morals': 1,\n",
      "          'point': 1,\n",
      "          'filmtopping': 1,\n",
      "          'bloated': 1,\n",
      "          'confusing': 1,\n",
      "          'action': 1,\n",
      "          'scene': 1,\n",
      "          'next': 1,\n",
      "          'garish': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'overlit': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'cinematography': 1,\n",
      "          'make': 1,\n",
      "          'comparable': 1,\n",
      "          'trashy': 1,\n",
      "          'showgirls': 1,\n",
      "          'nsince': 1,\n",
      "          'become': 1,\n",
      "          'giant': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'hotel': 1,\n",
      "          'nonly': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'comes': 1,\n",
      "          'top': 1,\n",
      "          'underplays': 1,\n",
      "          'nicely': 1,\n",
      "          'pretends': 1,\n",
      "          'like': 1,\n",
      "          'hes': 1,\n",
      "          'real': 1,\n",
      "          'movie': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hush': 8,\n",
      "          'helen': 7,\n",
      "          'martha': 6,\n",
      "          'lange': 4,\n",
      "          'marthas': 3,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'really': 3,\n",
      "          'call': 2,\n",
      "          'see': 2,\n",
      "          'bad': 2,\n",
      "          'stupidity': 2,\n",
      "          'nits': 2,\n",
      "          'paltrow': 2,\n",
      "          'horse': 2,\n",
      "          'kilronan': 2,\n",
      "          'takes': 2,\n",
      "          'nbut': 2,\n",
      "          'much': 2,\n",
      "          'shes': 2,\n",
      "          'nif': 2,\n",
      "          'theres': 2,\n",
      "          'yells': 2,\n",
      "          'people': 2,\n",
      "          'like': 2,\n",
      "          'ending': 2,\n",
      "          'scene': 2,\n",
      "          'stop': 1,\n",
      "          'mom': 1,\n",
      "          'kill': 1,\n",
      "          'mommy': 1,\n",
      "          'fearest': 1,\n",
      "          'hand': 1,\n",
      "          'robs': 1,\n",
      "          'cradle': 1,\n",
      "          'ncall': 1,\n",
      "          'whatever': 1,\n",
      "          'want': 1,\n",
      "          'certainly': 1,\n",
      "          'dont': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'desperate': 1,\n",
      "          'need': 1,\n",
      "          'movieinduced': 1,\n",
      "          'chuckle': 1,\n",
      "          'scores': 1,\n",
      "          'many': 1,\n",
      "          'unintentional': 1,\n",
      "          'guffaws': 1,\n",
      "          'almost': 1,\n",
      "          'qualifies': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'nchalk': 1,\n",
      "          'losses': 1,\n",
      "          'frequent': 1,\n",
      "          'lapses': 1,\n",
      "          'apparent': 1,\n",
      "          'postproduction': 1,\n",
      "          'tinkering': 1,\n",
      "          'supposed': 1,\n",
      "          'open': 1,\n",
      "          'year': 1,\n",
      "          'ago': 1,\n",
      "          'latter': 1,\n",
      "          'appears': 1,\n",
      "          'given': 1,\n",
      "          'sendoff': 1,\n",
      "          'thats': 1,\n",
      "          'downright': 1,\n",
      "          'infuriating': 1,\n",
      "          'laughable': 1,\n",
      "          'onscreen': 1,\n",
      "          'talent': 1,\n",
      "          'including': 1,\n",
      "          'pairing': 1,\n",
      "          'gwyneth': 1,\n",
      "          'jessica': 1,\n",
      "          'nothing': 1,\n",
      "          'laugh': 1,\n",
      "          'npaltrow': 1,\n",
      "          'johnathon': 1,\n",
      "          'schaech': 1,\n",
      "          'play': 1,\n",
      "          'jackson': 1,\n",
      "          'photogenic': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'couple': 1,\n",
      "          'way': 1,\n",
      "          'spend': 1,\n",
      "          'christmas': 1,\n",
      "          'vacation': 1,\n",
      "          'wealthy': 1,\n",
      "          'welltodo': 1,\n",
      "          'familys': 1,\n",
      "          'farmestate': 1,\n",
      "          'njacksons': 1,\n",
      "          'mother': 1,\n",
      "          'runs': 1,\n",
      "          'genteel': 1,\n",
      "          'southern': 1,\n",
      "          'hospitality': 1,\n",
      "          'makes': 1,\n",
      "          'feel': 1,\n",
      "          'welcome': 1,\n",
      "          'immediately': 1,\n",
      "          'even': 1,\n",
      "          'first': 1,\n",
      "          'meeting': 1,\n",
      "          'place': 1,\n",
      "          'altogether': 1,\n",
      "          'caught': 1,\n",
      "          'redhanded': 1,\n",
      "          'bedroom': 1,\n",
      "          'romp': 1,\n",
      "          'husbandtobe': 1,\n",
      "          'seems': 1,\n",
      "          'friendly': 1,\n",
      "          'smile': 1,\n",
      "          'masks': 1,\n",
      "          'threatening': 1,\n",
      "          'demeanor': 1,\n",
      "          'youd': 1,\n",
      "          'someone': 1,\n",
      "          'loves': 1,\n",
      "          'nmartha': 1,\n",
      "          'eagerly': 1,\n",
      "          'deviously': 1,\n",
      "          'wants': 1,\n",
      "          'grandchild': 1,\n",
      "          'expendable': 1,\n",
      "          'far': 1,\n",
      "          'concerned': 1,\n",
      "          'reason': 1,\n",
      "          'catch': 1,\n",
      "          'nshe': 1,\n",
      "          'treats': 1,\n",
      "          'pedestrian': 1,\n",
      "          'screenplay': 1,\n",
      "          'better': 1,\n",
      "          'deserves': 1,\n",
      "          'treated': 1,\n",
      "          'injecting': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'though': 1,\n",
      "          'may': 1,\n",
      "          'little': 1,\n",
      "          'empathy': 1,\n",
      "          'level': 1,\n",
      "          'psychoplaying': 1,\n",
      "          'field': 1,\n",
      "          'nwhen': 1,\n",
      "          'delves': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'predictable': 1,\n",
      "          'cliches': 1,\n",
      "          'chainsmoking': 1,\n",
      "          'staring': 1,\n",
      "          'mirrors': 1,\n",
      "          'praying': 1,\n",
      "          'confessional': 1,\n",
      "          'priest': 1,\n",
      "          'isnt': 1,\n",
      "          'poking': 1,\n",
      "          'hole': 1,\n",
      "          'helens': 1,\n",
      "          'diaphragm': 1,\n",
      "          'shell': 1,\n",
      "          'become': 1,\n",
      "          'pregnant': 1,\n",
      "          'abound': 1,\n",
      "          'moderately': 1,\n",
      "          'entertaining': 1,\n",
      "          'junk': 1,\n",
      "          'interesting': 1,\n",
      "          'actress': 1,\n",
      "          'watch': 1,\n",
      "          'nveteran': 1,\n",
      "          'performer': 1,\n",
      "          'nina': 1,\n",
      "          'foch': 1,\n",
      "          'smart': 1,\n",
      "          'tart': 1,\n",
      "          'jacksons': 1,\n",
      "          'wheelchairbound': 1,\n",
      "          'paternal': 1,\n",
      "          'grandmother': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'looks': 1,\n",
      "          'ill': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'especially': 1,\n",
      "          'blame': 1,\n",
      "          'character': 1,\n",
      "          'relationships': 1,\n",
      "          'hold': 1,\n",
      "          'certain': 1,\n",
      "          'amount': 1,\n",
      "          'promise': 1,\n",
      "          'least': 1,\n",
      "          'psychological': 1,\n",
      "          'impact': 1,\n",
      "          'blown': 1,\n",
      "          'water': 1,\n",
      "          'sheer': 1,\n",
      "          'nidiotic': 1,\n",
      "          'situations': 1,\n",
      "          'nearby': 1,\n",
      "          'bolt': 1,\n",
      "          'knock': 1,\n",
      "          'compliment': 1,\n",
      "          'idiotic': 1,\n",
      "          'dialogue': 1,\n",
      "          'yell': 1,\n",
      "          'nhelen': 1,\n",
      "          'back': 1,\n",
      "          'film': 1,\n",
      "          'form': 1,\n",
      "          'shoddier': 1,\n",
      "          'fill': 1,\n",
      "          'blankfromhell': 1,\n",
      "          'flicks': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'nyou': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'actions': 1,\n",
      "          'lies': 1,\n",
      "          'conception': 1,\n",
      "          'known': 1,\n",
      "          'woman': 1,\n",
      "          'years': 1,\n",
      "          'longer': 1,\n",
      "          'never': 1,\n",
      "          'figure': 1,\n",
      "          'things': 1,\n",
      "          'ndoes': 1,\n",
      "          'nobody': 1,\n",
      "          'communicate': 1,\n",
      "          'read': 1,\n",
      "          'newspaper': 1,\n",
      "          'town': 1,\n",
      "          'potential': 1,\n",
      "          'victims': 1,\n",
      "          'thought': 1,\n",
      "          'acted': 1,\n",
      "          'behaved': 1,\n",
      "          'normal': 1,\n",
      "          'would': 1,\n",
      "          'short': 1,\n",
      "          'movie': 1,\n",
      "          'nand': 1,\n",
      "          'climax': 1,\n",
      "          'abruptly': 1,\n",
      "          'come': 1,\n",
      "          'starts': 1,\n",
      "          'contractions': 1,\n",
      "          'eating': 1,\n",
      "          'pound': 1,\n",
      "          'cake': 1,\n",
      "          'spiked': 1,\n",
      "          'laborinducing': 1,\n",
      "          'drug': 1,\n",
      "          'normally': 1,\n",
      "          'used': 1,\n",
      "          'horses': 1,\n",
      "          'nafter': 1,\n",
      "          'weird': 1,\n",
      "          'chase': 1,\n",
      "          'calmly': 1,\n",
      "          'knits': 1,\n",
      "          'rocking': 1,\n",
      "          'chair': 1,\n",
      "          'forcing': 1,\n",
      "          'give': 1,\n",
      "          'birth': 1,\n",
      "          'bed': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'spoil': 1,\n",
      "          'happens': 1,\n",
      "          'next': 1,\n",
      "          'except': 1,\n",
      "          'say': 1,\n",
      "          'contradictory': 1,\n",
      "          'illogical': 1,\n",
      "          'probably': 1,\n",
      "          'since': 1,\n",
      "          'im': 1,\n",
      "          'doctor': 1,\n",
      "          'medically': 1,\n",
      "          'impossible': 1,\n",
      "          'final': 1,\n",
      "          'offers': 1,\n",
      "          'closure': 1,\n",
      "          'resolution': 1,\n",
      "          'confrontation': 1,\n",
      "          'whatsoever': 1,\n",
      "          'dangling': 1,\n",
      "          'amidst': 1,\n",
      "          'silent': 1,\n",
      "          'displeasure': 1,\n",
      "          'nno': 1,\n",
      "          'regardless': 1,\n",
      "          'feelings': 1,\n",
      "          'preceding': 1,\n",
      "          'material': 1,\n",
      "          'nperhaps': 1,\n",
      "          'title': 1,\n",
      "          'plea': 1,\n",
      "          'silence': 1,\n",
      "          'audiences': 1,\n",
      "          'likely': 1,\n",
      "          'bitter': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'exiting': 1,\n",
      "          'theater': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'white': 4,\n",
      "          'black': 4,\n",
      "          'hype': 3,\n",
      "          'nthe': 3,\n",
      "          'big': 2,\n",
      "          'boxing': 2,\n",
      "          'great': 2,\n",
      "          'champ': 2,\n",
      "          'vs': 2,\n",
      "          'nhe': 2,\n",
      "          'nas': 2,\n",
      "          'spoof': 2,\n",
      "          'though': 2,\n",
      "          'enough': 2,\n",
      "          'hudlin': 2,\n",
      "          'busy': 1,\n",
      "          'satire': 1,\n",
      "          'surprisingly': 1,\n",
      "          'paltry': 1,\n",
      "          'punch': 1,\n",
      "          'stars': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'shameless': 1,\n",
      "          'promoter': 1,\n",
      "          'whose': 1,\n",
      "          'plan': 1,\n",
      "          'boost': 1,\n",
      "          'sagging': 1,\n",
      "          'payperview': 1,\n",
      "          'revenues': 1,\n",
      "          'invent': 1,\n",
      "          'contender': 1,\n",
      "          'peter': 1,\n",
      "          'berg': 1,\n",
      "          'challenge': 1,\n",
      "          'heavyweight': 1,\n",
      "          'damon': 1,\n",
      "          'wayans': 1,\n",
      "          'n': 1,\n",
      "          'logic': 1,\n",
      "          'people': 1,\n",
      "          'pay': 1,\n",
      "          'see': 1,\n",
      "          'may': 1,\n",
      "          'right': 1,\n",
      "          'absurdly': 1,\n",
      "          'accurate': 1,\n",
      "          'way': 1,\n",
      "          'film': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'reason': 1,\n",
      "          'care': 1,\n",
      "          'scathing': 1,\n",
      "          'sports': 1,\n",
      "          'unfunny': 1,\n",
      "          'unfocused': 1,\n",
      "          'times': 1,\n",
      "          'plain': 1,\n",
      "          'pointless': 1,\n",
      "          'commentary': 1,\n",
      "          'race': 1,\n",
      "          'relations': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'effective': 1,\n",
      "          'dialogue': 1,\n",
      "          'best': 1,\n",
      "          'mess': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'jon': 1,\n",
      "          'lovitz': 1,\n",
      "          'exclaiming': 1,\n",
      "          'make': 1,\n",
      "          'caviar': 1,\n",
      "          'fish': 1,\n",
      "          'eggs': 1,\n",
      "          'nwriters': 1,\n",
      "          'tony': 1,\n",
      "          'hendra': 1,\n",
      "          'ron': 1,\n",
      "          'shelton': 1,\n",
      "          'also': 1,\n",
      "          'good': 1,\n",
      "          'street': 1,\n",
      "          'slang': 1,\n",
      "          'never': 1,\n",
      "          'hear': 1,\n",
      "          'script': 1,\n",
      "          'isnt': 1,\n",
      "          'strong': 1,\n",
      "          'support': 1,\n",
      "          'aggressive': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'director': 1,\n",
      "          'reginald': 1,\n",
      "          'house': 1,\n",
      "          'party': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'absolute': 1,\n",
      "          'overkill': 1,\n",
      "          'almost': 1,\n",
      "          'turns': 1,\n",
      "          'around': 1,\n",
      "          'end': 1,\n",
      "          'match': 1,\n",
      "          'attempts': 1,\n",
      "          'extended': 1,\n",
      "          'gag': 1,\n",
      "          'rockconcert': 1,\n",
      "          'proportions': 1,\n",
      "          'nwith': 1,\n",
      "          'costumed': 1,\n",
      "          'dwarfs': 1,\n",
      "          'gangsta': 1,\n",
      "          'rappers': 1,\n",
      "          'dressed': 1,\n",
      "          'death': 1,\n",
      "          'get': 1,\n",
      "          'glimpse': 1,\n",
      "          'shouldve': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bunz': 6,\n",
      "          'know': 5,\n",
      "          'call': 5,\n",
      "          'film': 5,\n",
      "          'nthe': 4,\n",
      "          'booty': 4,\n",
      "          'much': 4,\n",
      "          'rushon': 4,\n",
      "          'nikki': 4,\n",
      "          'reason': 4,\n",
      "          'use': 4,\n",
      "          'doesnt': 3,\n",
      "          'like': 3,\n",
      "          'questions': 3,\n",
      "          'wants': 3,\n",
      "          'lysterine': 3,\n",
      "          'two': 3,\n",
      "          'get': 3,\n",
      "          'nwhy': 3,\n",
      "          'chinese': 3,\n",
      "          'nthis': 3,\n",
      "          'times': 2,\n",
      "          'cant': 2,\n",
      "          'review': 2,\n",
      "          'nin': 2,\n",
      "          'ni': 2,\n",
      "          'commitment': 2,\n",
      "          'nbunz': 2,\n",
      "          'best': 2,\n",
      "          'friend': 2,\n",
      "          'totally': 2,\n",
      "          'happen': 2,\n",
      "          'nikkis': 2,\n",
      "          'make': 2,\n",
      "          'long': 2,\n",
      "          'story': 2,\n",
      "          'couples': 2,\n",
      "          'safe': 2,\n",
      "          'sex': 2,\n",
      "          'condoms': 2,\n",
      "          'store': 2,\n",
      "          'better': 2,\n",
      "          'nbooty': 2,\n",
      "          'nthere': 2,\n",
      "          'even': 2,\n",
      "          'also': 2,\n",
      "          'screenplay': 2,\n",
      "          'bad': 2,\n",
      "          'scene': 2,\n",
      "          'characters': 2,\n",
      "          'restaurant': 2,\n",
      "          'goes': 2,\n",
      "          'asked': 2,\n",
      "          'learned': 2,\n",
      "          'language': 2,\n",
      "          'words': 2,\n",
      "          'kungfu': 2,\n",
      "          'films': 2,\n",
      "          'nif': 2,\n",
      "          'movies': 2,\n",
      "          'would': 2,\n",
      "          'unbelievable': 2,\n",
      "          'funny': 2,\n",
      "          'almost': 2,\n",
      "          'seem': 2,\n",
      "          'movie': 1,\n",
      "          'laughed': 1,\n",
      "          'pretty': 1,\n",
      "          'hard': 1,\n",
      "          'problem': 1,\n",
      "          'remember': 1,\n",
      "          'write': 1,\n",
      "          'nthats': 1,\n",
      "          'good': 1,\n",
      "          'sign': 1,\n",
      "          'jamie': 1,\n",
      "          'foxx': 1,\n",
      "          'character': 1,\n",
      "          'really': 1,\n",
      "          'describe': 1,\n",
      "          'dont': 1,\n",
      "          'likes': 1,\n",
      "          'shoot': 1,\n",
      "          'dice': 1,\n",
      "          'sidewalk': 1,\n",
      "          'relationships': 1,\n",
      "          'calls': 1,\n",
      "          'three': 1,\n",
      "          'morning': 1,\n",
      "          'named': 1,\n",
      "          'tommy': 1,\n",
      "          'davidson': 1,\n",
      "          'seems': 1,\n",
      "          'bunzs': 1,\n",
      "          'direct': 1,\n",
      "          'opposite': 1,\n",
      "          'straight': 1,\n",
      "          'narrow': 1,\n",
      "          'currently': 1,\n",
      "          'longterm': 1,\n",
      "          'whole': 1,\n",
      "          'seven': 1,\n",
      "          'weeks': 1,\n",
      "          'wow': 1,\n",
      "          'nrushon': 1,\n",
      "          'finally': 1,\n",
      "          'sleep': 1,\n",
      "          'girlfriend': 1,\n",
      "          'tamala': 1,\n",
      "          'jones': 1,\n",
      "          'explained': 1,\n",
      "          'going': 1,\n",
      "          'double': 1,\n",
      "          'date': 1,\n",
      "          'vivica': 1,\n",
      "          'fox': 1,\n",
      "          'never': 1,\n",
      "          'met': 1,\n",
      "          'nto': 1,\n",
      "          'short': 1,\n",
      "          'pair': 1,\n",
      "          'spend': 1,\n",
      "          'rest': 1,\n",
      "          'evening': 1,\n",
      "          'attempts': 1,\n",
      "          'deed': 1,\n",
      "          'spoiled': 1,\n",
      "          'obsession': 1,\n",
      "          'nfirst': 1,\n",
      "          'go': 1,\n",
      "          'noh': 1,\n",
      "          'latex': 1,\n",
      "          'lambskin': 1,\n",
      "          'nback': 1,\n",
      "          'nnow': 1,\n",
      "          'theyve': 1,\n",
      "          'got': 1,\n",
      "          'dental': 1,\n",
      "          'dams': 1,\n",
      "          'therell': 1,\n",
      "          'foreplay': 1,\n",
      "          'stopped': 1,\n",
      "          'time': 1,\n",
      "          'makes': 1,\n",
      "          'demand': 1,\n",
      "          'nnikki': 1,\n",
      "          'phones': 1,\n",
      "          'lives': 1,\n",
      "          'across': 1,\n",
      "          'hall': 1,\n",
      "          'tells': 1,\n",
      "          'shed': 1,\n",
      "          'making': 1,\n",
      "          'demands': 1,\n",
      "          'ntalk': 1,\n",
      "          'coitus': 1,\n",
      "          'interruptus': 1,\n",
      "          'whether': 1,\n",
      "          'regular': 1,\n",
      "          'comedy': 1,\n",
      "          'one': 1,\n",
      "          'overthetop': 1,\n",
      "          'comedies': 1,\n",
      "          'difference': 1,\n",
      "          'latter': 1,\n",
      "          'things': 1,\n",
      "          'constantly': 1,\n",
      "          'far': 1,\n",
      "          'removed': 1,\n",
      "          'reality': 1,\n",
      "          'category': 1,\n",
      "          'example': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'private': 1,\n",
      "          'eye': 1,\n",
      "          'mild': 1,\n",
      "          'side': 1,\n",
      "          'airplane': 1,\n",
      "          'nat': 1,\n",
      "          'extreme': 1,\n",
      "          'steps': 1,\n",
      "          'shell': 1,\n",
      "          'tries': 1,\n",
      "          'status': 1,\n",
      "          'often': 1,\n",
      "          'quickly': 1,\n",
      "          'retreats': 1,\n",
      "          'safety': 1,\n",
      "          'convention': 1,\n",
      "          'nit': 1,\n",
      "          'disappointing': 1,\n",
      "          'worse': 1,\n",
      "          'distracting': 1,\n",
      "          'instances': 1,\n",
      "          'takashi': 1,\n",
      "          'bufford': 1,\n",
      "          'bootsie': 1,\n",
      "          'parker': 1,\n",
      "          'real': 1,\n",
      "          'names': 1,\n",
      "          'ndoes': 1,\n",
      "          'live': 1,\n",
      "          'potential': 1,\n",
      "          'jokes': 1,\n",
      "          'left': 1,\n",
      "          'unexploited': 1,\n",
      "          'ruined': 1,\n",
      "          'writing': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'main': 1,\n",
      "          'asian': 1,\n",
      "          'gangster': 1,\n",
      "          'speaks': 1,\n",
      "          'fluent': 1,\n",
      "          'cantonese': 1,\n",
      "          'everyones': 1,\n",
      "          'surprise': 1,\n",
      "          'nhowever': 1,\n",
      "          'explanation': 1,\n",
      "          'started': 1,\n",
      "          'picking': 1,\n",
      "          'latenight': 1,\n",
      "          'soon': 1,\n",
      "          'gained': 1,\n",
      "          'mastery': 1,\n",
      "          'negated': 1,\n",
      "          'ludicrousness': 1,\n",
      "          'entire': 1,\n",
      "          'hand': 1,\n",
      "          'speak': 1,\n",
      "          'simply': 1,\n",
      "          'replied': 1,\n",
      "          'moved': 1,\n",
      "          'joke': 1,\n",
      "          'effective': 1,\n",
      "          'nby': 1,\n",
      "          'explaining': 1,\n",
      "          'point': 1,\n",
      "          'trying': 1,\n",
      "          'ridiculous': 1,\n",
      "          'plausible': 1,\n",
      "          'giving': 1,\n",
      "          'viewers': 1,\n",
      "          'enough': 1,\n",
      "          'credit': 1,\n",
      "          'inconsistency': 1,\n",
      "          'uncertain': 1,\n",
      "          'believability': 1,\n",
      "          'unfortunately': 1,\n",
      "          'raise': 1,\n",
      "          'disparate': 1,\n",
      "          'people': 1,\n",
      "          'friends': 1,\n",
      "          'fix': 1,\n",
      "          'obsessed': 1,\n",
      "          'apartment': 1,\n",
      "          'nthese': 1,\n",
      "          'answered': 1,\n",
      "          'overlooked': 1,\n",
      "          'sole': 1,\n",
      "          'moving': 1,\n",
      "          'plot': 1,\n",
      "          'forward': 1,\n",
      "          'na': 1,\n",
      "          'noticeable': 1,\n",
      "          'quality': 1,\n",
      "          'prevalence': 1,\n",
      "          'unnecessary': 1,\n",
      "          'foul': 1,\n",
      "          'nsome': 1,\n",
      "          'lot': 1,\n",
      "          'swear': 1,\n",
      "          'justifiable': 1,\n",
      "          'circumstances': 1,\n",
      "          'employed': 1,\n",
      "          'consistent': 1,\n",
      "          'pattern': 1,\n",
      "          'speech': 1,\n",
      "          'nother': 1,\n",
      "          'recent': 1,\n",
      "          'jackie': 1,\n",
      "          'brown': 1,\n",
      "          'ways': 1,\n",
      "          'parody': 1,\n",
      "          'sticks': 1,\n",
      "          'laughs': 1,\n",
      "          'work': 1,\n",
      "          'nthey': 1,\n",
      "          'stick': 1,\n",
      "          'sore': 1,\n",
      "          'thumbs': 1,\n",
      "          'nhalf': 1,\n",
      "          'scenes': 1,\n",
      "          'occur': 1,\n",
      "          'holdup': 1,\n",
      "          'convenience': 1,\n",
      "          'trip': 1,\n",
      "          'hospital': 1,\n",
      "          'nothing': 1,\n",
      "          'filler': 1,\n",
      "          'surprising': 1,\n",
      "          'considering': 1,\n",
      "          'less': 1,\n",
      "          'eighty': 1,\n",
      "          'minutes': 1,\n",
      "          'nits': 1,\n",
      "          'core': 1,\n",
      "          'isnt': 1,\n",
      "          'since': 1,\n",
      "          'comprised': 1,\n",
      "          'sometimes': 1,\n",
      "          'forgettable': 1,\n",
      "          'dialog': 1,\n",
      "          'refer': 1,\n",
      "          'first': 1,\n",
      "          'paragraph': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'messenger': 10,\n",
      "          'story': 6,\n",
      "          'jeanne': 6,\n",
      "          'joan': 5,\n",
      "          'besson': 5,\n",
      "          'jovovich': 5,\n",
      "          'nthe': 5,\n",
      "          'arc': 4,\n",
      "          'epic': 4,\n",
      "          'milla': 3,\n",
      "          'historical': 3,\n",
      "          'film': 3,\n",
      "          'like': 3,\n",
      "          'power': 3,\n",
      "          'ntheres': 3,\n",
      "          'classic': 2,\n",
      "          'role': 2,\n",
      "          'girl': 2,\n",
      "          'god': 2,\n",
      "          'heavenly': 2,\n",
      "          'disjointed': 2,\n",
      "          'overblown': 2,\n",
      "          'merely': 2,\n",
      "          'nbesson': 2,\n",
      "          'work': 2,\n",
      "          'actress': 2,\n",
      "          'could': 2,\n",
      "          'hesitant': 2,\n",
      "          'looked': 2,\n",
      "          'timeless': 2,\n",
      "          'battle': 2,\n",
      "          'bizarre': 2,\n",
      "          'character': 2,\n",
      "          'njovovich': 2,\n",
      "          'little': 2,\n",
      "          'visual': 2,\n",
      "          'moments': 2,\n",
      "          'charles': 2,\n",
      "          'malkovich': 2,\n",
      "          'time': 2,\n",
      "          'presence': 2,\n",
      "          'none': 2,\n",
      "          'also': 2,\n",
      "          '90s': 2,\n",
      "          'seems': 2,\n",
      "          'come': 2,\n",
      "          'going': 2,\n",
      "          'retelling': 1,\n",
      "          'popular': 1,\n",
      "          'trend': 1,\n",
      "          'year': 1,\n",
      "          'nearlier': 1,\n",
      "          'may': 1,\n",
      "          'leelee': 1,\n",
      "          'sobieski': 1,\n",
      "          'played': 1,\n",
      "          'passionate': 1,\n",
      "          'title': 1,\n",
      "          'toprated': 1,\n",
      "          'miniseries': 1,\n",
      "          'debuted': 1,\n",
      "          'cbs': 1,\n",
      "          'nand': 1,\n",
      "          'director': 1,\n",
      "          'luc': 1,\n",
      "          'delivered': 1,\n",
      "          'version': 1,\n",
      "          'sweeping': 1,\n",
      "          'teenage': 1,\n",
      "          'supposedly': 1,\n",
      "          'sent': 1,\n",
      "          'rescue': 1,\n",
      "          'france': 1,\n",
      "          'clutches': 1,\n",
      "          'enemies': 1,\n",
      "          'nstarring': 1,\n",
      "          'predominantly': 1,\n",
      "          'unconvincing': 1,\n",
      "          'accused': 1,\n",
      "          'witch': 1,\n",
      "          'reenactment': 1,\n",
      "          'prevails': 1,\n",
      "          'bloated': 1,\n",
      "          'mistreatment': 1,\n",
      "          'famous': 1,\n",
      "          'legend': 1,\n",
      "          'whos': 1,\n",
      "          'previous': 1,\n",
      "          'includes': 1,\n",
      "          'hyperactive': 1,\n",
      "          'scifi': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'perhaps': 1,\n",
      "          'entrusted': 1,\n",
      "          'bit': 1,\n",
      "          'much': 1,\n",
      "          'faith': 1,\n",
      "          'exwife': 1,\n",
      "          'drowning': 1,\n",
      "          'pool': 1,\n",
      "          'inexperience': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'reports': 1,\n",
      "          'indicating': 1,\n",
      "          'chosen': 1,\n",
      "          'demanding': 1,\n",
      "          'highly': 1,\n",
      "          'doubtful': 1,\n",
      "          'marginal': 1,\n",
      "          'talent': 1,\n",
      "          'carry': 1,\n",
      "          'caliber': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'rousing': 1,\n",
      "          'trailer': 1,\n",
      "          'optimism': 1,\n",
      "          'suddenly': 1,\n",
      "          'skyrocketed': 1,\n",
      "          'superb': 1,\n",
      "          'nwith': 1,\n",
      "          'hopeful': 1,\n",
      "          'propulsion': 1,\n",
      "          'stellar': 1,\n",
      "          'performance': 1,\n",
      "          'making': 1,\n",
      "          'na': 1,\n",
      "          'abandon': 1,\n",
      "          'unique': 1,\n",
      "          'flashy': 1,\n",
      "          'style': 1,\n",
      "          'behind': 1,\n",
      "          'entirely': 1,\n",
      "          'suited': 1,\n",
      "          'demands': 1,\n",
      "          'non': 1,\n",
      "          'shoulders': 1,\n",
      "          'bessons': 1,\n",
      "          'choppy': 1,\n",
      "          'unexciting': 1,\n",
      "          'direction': 1,\n",
      "          'dissipates': 1,\n",
      "          'uninspiring': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'poorly': 1,\n",
      "          'executed': 1,\n",
      "          'sequences': 1,\n",
      "          'imagery': 1,\n",
      "          'nthere': 1,\n",
      "          'human': 1,\n",
      "          'exploration': 1,\n",
      "          'rambles': 1,\n",
      "          'insight': 1,\n",
      "          'visionary': 1,\n",
      "          'objective': 1,\n",
      "          'njovivichs': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'portrayal': 1,\n",
      "          'helps': 1,\n",
      "          'lead': 1,\n",
      "          'realization': 1,\n",
      "          'sees': 1,\n",
      "          'piece': 1,\n",
      "          'spiritual': 1,\n",
      "          'cardboard': 1,\n",
      "          'nshe': 1,\n",
      "          'another': 1,\n",
      "          'special': 1,\n",
      "          'effect': 1,\n",
      "          'continuous': 1,\n",
      "          'feast': 1,\n",
      "          'isolated': 1,\n",
      "          'sheer': 1,\n",
      "          'mainly': 1,\n",
      "          'looks': 1,\n",
      "          'lost': 1,\n",
      "          'nquite': 1,\n",
      "          'frankly': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'successfully': 1,\n",
      "          'navigate': 1,\n",
      "          'way': 1,\n",
      "          'without': 1,\n",
      "          'major': 1,\n",
      "          'fumble': 1,\n",
      "          'script': 1,\n",
      "          'chockfull': 1,\n",
      "          'laughable': 1,\n",
      "          'dialogue': 1,\n",
      "          'unfortunate': 1,\n",
      "          'comedy': 1,\n",
      "          'confronts': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'uncrowned': 1,\n",
      "          'king': 1,\n",
      "          'vii': 1,\n",
      "          'john': 1,\n",
      "          'informs': 1,\n",
      "          'intentions': 1,\n",
      "          'nfaye': 1,\n",
      "          'dunaway': 1,\n",
      "          'plays': 1,\n",
      "          'overbearing': 1,\n",
      "          'motherinlaw': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'appears': 1,\n",
      "          'twohours': 1,\n",
      "          'dubbed': 1,\n",
      "          'conscience': 1,\n",
      "          'nall': 1,\n",
      "          'three': 1,\n",
      "          'actors': 1,\n",
      "          'juggle': 1,\n",
      "          'limited': 1,\n",
      "          'screen': 1,\n",
      "          'although': 1,\n",
      "          'uncharacteristically': 1,\n",
      "          'awful': 1,\n",
      "          'scenes': 1,\n",
      "          'extremely': 1,\n",
      "          'bloody': 1,\n",
      "          'jittery': 1,\n",
      "          'camera': 1,\n",
      "          'capture': 1,\n",
      "          'excitement': 1,\n",
      "          'finesse': 1,\n",
      "          'something': 1,\n",
      "          'braveheart': 1,\n",
      "          'particularly': 1,\n",
      "          'graphic': 1,\n",
      "          'unsettling': 1,\n",
      "          'scene': 1,\n",
      "          'early': 1,\n",
      "          'young': 1,\n",
      "          'watches': 1,\n",
      "          'horror': 1,\n",
      "          'closet': 1,\n",
      "          'older': 1,\n",
      "          'sister': 1,\n",
      "          'murdered': 1,\n",
      "          'savagely': 1,\n",
      "          'raped': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'english': 1,\n",
      "          'soldier': 1,\n",
      "          'neven': 1,\n",
      "          'fellow': 1,\n",
      "          'troopers': 1,\n",
      "          'petrified': 1,\n",
      "          'strictly': 1,\n",
      "          'update': 1,\n",
      "          'nalmost': 1,\n",
      "          'gratuitous': 1,\n",
      "          'use': 1,\n",
      "          'fword': 1,\n",
      "          'barrage': 1,\n",
      "          'slang': 1,\n",
      "          'terms': 1,\n",
      "          'shes': 1,\n",
      "          'nuts': 1,\n",
      "          'nsprinkled': 1,\n",
      "          'throughout': 1,\n",
      "          'screenplay': 1,\n",
      "          'ni': 1,\n",
      "          'halfexpecting': 1,\n",
      "          'invite': 1,\n",
      "          'homeys': 1,\n",
      "          'chill': 1,\n",
      "          'crib': 1,\n",
      "          'never': 1,\n",
      "          'happened': 1,\n",
      "          'familiar': 1,\n",
      "          'humor': 1,\n",
      "          'comes': 1,\n",
      "          'even': 1,\n",
      "          'remotely': 1,\n",
      "          'close': 1,\n",
      "          'functioning': 1,\n",
      "          'properly': 1,\n",
      "          'nit': 1,\n",
      "          'terribly': 1,\n",
      "          'misplaced': 1,\n",
      "          'catastrophe': 1,\n",
      "          'jumbled': 1,\n",
      "          'almost': 1,\n",
      "          'everything': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'erric': 1,\n",
      "          'serra': 1,\n",
      "          'spectacular': 1,\n",
      "          'set': 1,\n",
      "          'production': 1,\n",
      "          'designs': 1,\n",
      "          'continuously': 1,\n",
      "          'impressive': 1,\n",
      "          'nif': 1,\n",
      "          'excellence': 1,\n",
      "          'striving': 1,\n",
      "          'achieves': 1,\n",
      "          'goal': 1,\n",
      "          'nbut': 1,\n",
      "          'dramatics': 1,\n",
      "          'alive': 1,\n",
      "          'closing': 1,\n",
      "          'trial': 1,\n",
      "          'found': 1,\n",
      "          'guilty': 1,\n",
      "          'burned': 1,\n",
      "          'stake': 1,\n",
      "          'nduring': 1,\n",
      "          'relevance': 1,\n",
      "          'dramatic': 1,\n",
      "          'purpose': 1,\n",
      "          'reaches': 1,\n",
      "          'audience': 1,\n",
      "          'albeit': 1,\n",
      "          'faint': 1,\n",
      "          'stream': 1,\n",
      "          'light': 1,\n",
      "          'provokes': 1,\n",
      "          'meaning': 1,\n",
      "          'nits': 1,\n",
      "          'delayed': 1,\n",
      "          'revive': 1,\n",
      "          'lifeless': 1,\n",
      "          'interpretation': 1,\n",
      "          'always': 1,\n",
      "          'concerned': 1,\n",
      "          'wrong': 1,\n",
      "          'aspects': 1,\n",
      "          'unlikely': 1,\n",
      "          'unwelcome': 1,\n",
      "          'addition': 1,\n",
      "          'hollywood': 1,\n",
      "          'shelf': 1,\n",
      "          'nanyone': 1,\n",
      "          'searching': 1,\n",
      "          'entertaining': 1,\n",
      "          'painfully': 1,\n",
      "          'slapped': 1,\n",
      "          'confusing': 1,\n",
      "          'ndespite': 1,\n",
      "          'original': 1,\n",
      "          'hopefulness': 1,\n",
      "          'worry': 1,\n",
      "          'thanking': 1,\n",
      "          'academy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 5,\n",
      "          'brother': 4,\n",
      "          'violence': 3,\n",
      "          'kitano': 3,\n",
      "          'yakuza': 3,\n",
      "          'family': 3,\n",
      "          'would': 3,\n",
      "          'nthe': 3,\n",
      "          'nviolence': 2,\n",
      "          'directed': 2,\n",
      "          'first': 2,\n",
      "          'film': 2,\n",
      "          'dishonor': 2,\n",
      "          'na': 2,\n",
      "          'interesting': 2,\n",
      "          'know': 2,\n",
      "          'doesnt': 2,\n",
      "          'much': 2,\n",
      "          'nthere': 2,\n",
      "          'back': 2,\n",
      "          'rival': 2,\n",
      "          'scenes': 2,\n",
      "          'people': 2,\n",
      "          'go': 2,\n",
      "          'moments': 2,\n",
      "          'also': 2,\n",
      "          'combination': 2,\n",
      "          'crime': 2,\n",
      "          'get': 2,\n",
      "          'great': 2,\n",
      "          'bad': 1,\n",
      "          'ugly': 1,\n",
      "          'breeds': 1,\n",
      "          'yet': 1,\n",
      "          'nkids': 1,\n",
      "          'dont': 1,\n",
      "          'try': 1,\n",
      "          'home': 1,\n",
      "          'nthis': 1,\n",
      "          'weighty': 1,\n",
      "          'message': 1,\n",
      "          'isnt': 1,\n",
      "          'barrier': 1,\n",
      "          'enjoying': 1,\n",
      "          'certainly': 1,\n",
      "          'largest': 1,\n",
      "          'nwritten': 1,\n",
      "          'starring': 1,\n",
      "          'infamous': 1,\n",
      "          'takeshi': 1,\n",
      "          'kikujiro': 1,\n",
      "          'sonatine': 1,\n",
      "          'made': 1,\n",
      "          'outside': 1,\n",
      "          'familial': 1,\n",
      "          'japan': 1,\n",
      "          'bringing': 1,\n",
      "          'tradition': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'n': 1,\n",
      "          'translated': 1,\n",
      "          'average': 1,\n",
      "          'american': 1,\n",
      "          'japanese': 1,\n",
      "          'mafia': 1,\n",
      "          'nif': 1,\n",
      "          'piss': 1,\n",
      "          'member': 1,\n",
      "          'way': 1,\n",
      "          'usual': 1,\n",
      "          'punishment': 1,\n",
      "          'public': 1,\n",
      "          'display': 1,\n",
      "          'selfmutilation': 1,\n",
      "          'usually': 1,\n",
      "          'resulting': 1,\n",
      "          'loss': 1,\n",
      "          'limbs': 1,\n",
      "          'definition': 1,\n",
      "          'anything': 1,\n",
      "          'making': 1,\n",
      "          'stupid': 1,\n",
      "          'decision': 1,\n",
      "          'leaving': 1,\n",
      "          'another': 1,\n",
      "          'nit': 1,\n",
      "          'customs': 1,\n",
      "          'come': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'give': 1,\n",
      "          'explanation': 1,\n",
      "          'assuming': 1,\n",
      "          'audience': 1,\n",
      "          'aware': 1,\n",
      "          'kitanos': 1,\n",
      "          'earlier': 1,\n",
      "          'work': 1,\n",
      "          'several': 1,\n",
      "          'shots': 1,\n",
      "          'focus': 1,\n",
      "          'specifically': 1,\n",
      "          'detailed': 1,\n",
      "          'tattoos': 1,\n",
      "          'spread': 1,\n",
      "          'across': 1,\n",
      "          'entire': 1,\n",
      "          'members': 1,\n",
      "          'leading': 1,\n",
      "          'assume': 1,\n",
      "          'symbolic': 1,\n",
      "          'something': 1,\n",
      "          'never': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'scene': 1,\n",
      "          'man': 1,\n",
      "          'kills': 1,\n",
      "          'front': 1,\n",
      "          'exchange': 1,\n",
      "          'joining': 1,\n",
      "          'ngranted': 1,\n",
      "          'best': 1,\n",
      "          'movie': 1,\n",
      "          'make': 1,\n",
      "          'lot': 1,\n",
      "          'sense': 1,\n",
      "          'ninstead': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'basically': 1,\n",
      "          'spent': 1,\n",
      "          'watching': 1,\n",
      "          'following': 1,\n",
      "          'shoot': 1,\n",
      "          'talk': 1,\n",
      "          'tenplus': 1,\n",
      "          'minutes': 1,\n",
      "          'consistently': 1,\n",
      "          'repetitive': 1,\n",
      "          'discussion': 1,\n",
      "          'territory': 1,\n",
      "          'involuntarily': 1,\n",
      "          'provokes': 1,\n",
      "          'yawning': 1,\n",
      "          'plot': 1,\n",
      "          'details': 1,\n",
      "          'thrown': 1,\n",
      "          'identifiable': 1,\n",
      "          'purpose': 1,\n",
      "          'nall': 1,\n",
      "          'sudden': 1,\n",
      "          'yamamoto': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nhe': 1,\n",
      "          'barely': 1,\n",
      "          'speaks': 1,\n",
      "          'treats': 1,\n",
      "          'like': 1,\n",
      "          'crap': 1,\n",
      "          'sends': 1,\n",
      "          'away': 1,\n",
      "          'nanother': 1,\n",
      "          'missed': 1,\n",
      "          'opportunity': 1,\n",
      "          'considering': 1,\n",
      "          'big': 1,\n",
      "          'deal': 1,\n",
      "          'bring': 1,\n",
      "          'magic': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'cultures': 1,\n",
      "          'rely': 1,\n",
      "          'heavily': 1,\n",
      "          'overused': 1,\n",
      "          'stereotypes': 1,\n",
      "          'nthough': 1,\n",
      "          'slow': 1,\n",
      "          'moving': 1,\n",
      "          'good': 1,\n",
      "          'elements': 1,\n",
      "          'action': 1,\n",
      "          'well': 1,\n",
      "          'clearly': 1,\n",
      "          'defined': 1,\n",
      "          'watch': 1,\n",
      "          'nsome': 1,\n",
      "          'hinted': 1,\n",
      "          'shown': 1,\n",
      "          'produces': 1,\n",
      "          'luscious': 1,\n",
      "          'squirm': 1,\n",
      "          'goes': 1,\n",
      "          'see': 1,\n",
      "          'films': 1,\n",
      "          'actors': 1,\n",
      "          'enticing': 1,\n",
      "          'nshirases': 1,\n",
      "          'masaya': 1,\n",
      "          'kato': 1,\n",
      "          'loud': 1,\n",
      "          'sarcastic': 1,\n",
      "          'coolness': 1,\n",
      "          'set': 1,\n",
      "          'yamamotos': 1,\n",
      "          'quietly': 1,\n",
      "          'threatening': 1,\n",
      "          'attitude': 1,\n",
      "          'truly': 1,\n",
      "          'entertaining': 1,\n",
      "          'ntheir': 1,\n",
      "          'together': 1,\n",
      "          'apart': 1,\n",
      "          'steal': 1,\n",
      "          'rest': 1,\n",
      "          'show': 1,\n",
      "          'nalso': 1,\n",
      "          'credit': 1,\n",
      "          'tackles': 1,\n",
      "          'cause': 1,\n",
      "          'effect': 1,\n",
      "          'realism': 1,\n",
      "          'life': 1,\n",
      "          'easy': 1,\n",
      "          'sucked': 1,\n",
      "          'reward': 1,\n",
      "          'quick': 1,\n",
      "          'cash': 1,\n",
      "          'nsure': 1,\n",
      "          'rich': 1,\n",
      "          'lose': 1,\n",
      "          'easily': 1,\n",
      "          'nits': 1,\n",
      "          'moral': 1,\n",
      "          'cast': 1,\n",
      "          'substance': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nit': 8,\n",
      "          'vampire': 8,\n",
      "          'like': 6,\n",
      "          'anime': 6,\n",
      "          'hunter': 6,\n",
      "          'really': 5,\n",
      "          'see': 5,\n",
      "          'blood': 5,\n",
      "          'gory': 4,\n",
      "          'vampires': 4,\n",
      "          'film': 3,\n",
      "          'gets': 3,\n",
      "          'would': 3,\n",
      "          'peasant': 3,\n",
      "          'girl': 3,\n",
      "          '17': 3,\n",
      "          'year': 3,\n",
      "          'old': 3,\n",
      "          'think': 3,\n",
      "          'genre': 2,\n",
      "          'nif': 2,\n",
      "          'made': 2,\n",
      "          'live': 2,\n",
      "          'gore': 2,\n",
      "          'one': 2,\n",
      "          'supposed': 2,\n",
      "          'story': 2,\n",
      "          'animation': 2,\n",
      "          'seems': 2,\n",
      "          'evil': 2,\n",
      "          'local': 2,\n",
      "          'get': 2,\n",
      "          'look': 2,\n",
      "          'guessed': 2,\n",
      "          'shower': 2,\n",
      "          'fighting': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'bite': 2,\n",
      "          'enough': 2,\n",
      "          'nthe': 2,\n",
      "          'bad': 2,\n",
      "          'animated': 2,\n",
      "          'clever': 2,\n",
      "          'movie': 2,\n",
      "          'defense': 2,\n",
      "          'original': 2,\n",
      "          'ni': 2,\n",
      "          'understand': 2,\n",
      "          'excuse': 2,\n",
      "          'nothing': 1,\n",
      "          'quite': 1,\n",
      "          'nreally': 1,\n",
      "          'truth': 1,\n",
      "          'away': 1,\n",
      "          'violence': 1,\n",
      "          'without': 1,\n",
      "          'word': 1,\n",
      "          'said': 1,\n",
      "          'media': 1,\n",
      "          'nwith': 1,\n",
      "          'common': 1,\n",
      "          'shot': 1,\n",
      "          'watching': 1,\n",
      "          'body': 1,\n",
      "          'getting': 1,\n",
      "          'quickly': 1,\n",
      "          'cut': 1,\n",
      "          'two': 1,\n",
      "          'rest': 1,\n",
      "          'insides': 1,\n",
      "          'falling': 1,\n",
      "          'seconds': 1,\n",
      "          'afterword': 1,\n",
      "          'nthis': 1,\n",
      "          'standard': 1,\n",
      "          'practice': 1,\n",
      "          'least': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'titles': 1,\n",
      "          'seen': 1,\n",
      "          'nvampire': 1,\n",
      "          'ever': 1,\n",
      "          'version': 1,\n",
      "          'banned': 1,\n",
      "          'several': 1,\n",
      "          'countries': 1,\n",
      "          'given': 1,\n",
      "          'rating': 1,\n",
      "          'somewhere': 1,\n",
      "          'xxx': 1,\n",
      "          'unique': 1,\n",
      "          'animes': 1,\n",
      "          'stand': 1,\n",
      "          'complexity': 1,\n",
      "          'characters': 1,\n",
      "          'etc': 1,\n",
      "          'disgusting': 1,\n",
      "          'gruesome': 1,\n",
      "          'overshadowed': 1,\n",
      "          'little': 1,\n",
      "          'distant': 1,\n",
      "          'future': 1,\n",
      "          'control': 1,\n",
      "          'world': 1,\n",
      "          'god': 1,\n",
      "          'knows': 1,\n",
      "          'police': 1,\n",
      "          'force': 1,\n",
      "          'seem': 1,\n",
      "          'handle': 1,\n",
      "          'movies': 1,\n",
      "          'none': 1,\n",
      "          'evening': 1,\n",
      "          'blond': 1,\n",
      "          'drawn': 1,\n",
      "          'innocent': 1,\n",
      "          'foreshadow': 1,\n",
      "          'naked': 1,\n",
      "          'early': 1,\n",
      "          'rape': 1,\n",
      "          'scene': 1,\n",
      "          'forest': 1,\n",
      "          'preserve': 1,\n",
      "          'stumbles': 1,\n",
      "          'onto': 1,\n",
      "          'private': 1,\n",
      "          'property': 1,\n",
      "          'ten': 1,\n",
      "          'thousand': 1,\n",
      "          'insert': 1,\n",
      "          'strom': 1,\n",
      "          'thurmand': 1,\n",
      "          'joke': 1,\n",
      "          'never': 1,\n",
      "          'put': 1,\n",
      "          'trespassing': 1,\n",
      "          'sign': 1,\n",
      "          'yard': 1,\n",
      "          'blame': 1,\n",
      "          'upset': 1,\n",
      "          'anyway': 1,\n",
      "          'demands': 1,\n",
      "          'retribution': 1,\n",
      "          'nshe': 1,\n",
      "          'obligatory': 1,\n",
      "          'neck': 1,\n",
      "          'places': 1,\n",
      "          'elbow': 1,\n",
      "          'well': 1,\n",
      "          'good': 1,\n",
      "          'doctors': 1,\n",
      "          'draw': 1,\n",
      "          'stray': 1,\n",
      "          'sight': 1,\n",
      "          'nto': 1,\n",
      "          'fight': 1,\n",
      "          'spell': 1,\n",
      "          'enlists': 1,\n",
      "          'help': 1,\n",
      "          'mysteriously': 1,\n",
      "          'tall': 1,\n",
      "          'dark': 1,\n",
      "          'handsome': 1,\n",
      "          'name': 1,\n",
      "          'torn': 1,\n",
      "          'attracted': 1,\n",
      "          'finding': 1,\n",
      "          'reasons': 1,\n",
      "          'talk': 1,\n",
      "          'much': 1,\n",
      "          'nyou': 1,\n",
      "          'heroes': 1,\n",
      "          'kinds': 1,\n",
      "          'stories': 1,\n",
      "          'brooder': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'life': 1,\n",
      "          'remain': 1,\n",
      "          'silent': 1,\n",
      "          'nwhen': 1,\n",
      "          'speaks': 1,\n",
      "          'cliches': 1,\n",
      "          'nheroes': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'nlater': 1,\n",
      "          'storms': 1,\n",
      "          'castle': 1,\n",
      "          'meet': 1,\n",
      "          'big': 1,\n",
      "          'wants': 1,\n",
      "          'marry': 1,\n",
      "          'bored': 1,\n",
      "          '10': 1,\n",
      "          '000': 1,\n",
      "          'years': 1,\n",
      "          'living': 1,\n",
      "          'insight': 1,\n",
      "          'rush': 1,\n",
      "          'save': 1,\n",
      "          'time': 1,\n",
      "          'nwill': 1,\n",
      "          'intestines': 1,\n",
      "          'spattering': 1,\n",
      "          'every': 1,\n",
      "          'place': 1,\n",
      "          'imaginable': 1,\n",
      "          'nin': 1,\n",
      "          'focusing': 1,\n",
      "          'rather': 1,\n",
      "          'recycling': 1,\n",
      "          'slicing': 1,\n",
      "          'could': 1,\n",
      "          'times': 1,\n",
      "          'talking': 1,\n",
      "          'hand': 1,\n",
      "          'inspiration': 1,\n",
      "          'skateboardrelated': 1,\n",
      "          'logo': 1,\n",
      "          'nand': 1,\n",
      "          'best': 1,\n",
      "          'fave': 1,\n",
      "          'among': 1,\n",
      "          'fans': 1,\n",
      "          'watch': 1,\n",
      "          'dripping': 1,\n",
      "          'teeth': 1,\n",
      "          'exploding': 1,\n",
      "          'eye': 1,\n",
      "          'sockets': 1,\n",
      "          'horses': 1,\n",
      "          'necks': 1,\n",
      "          'importantly': 1,\n",
      "          'violent': 1,\n",
      "          'breasts': 1,\n",
      "          'nwhy': 1,\n",
      "          'nwhat': 1,\n",
      "          'point': 1,\n",
      "          'nmaybe': 1,\n",
      "          'past': 1,\n",
      "          'obsessive': 1,\n",
      "          'mysogny': 1,\n",
      "          'prude': 1,\n",
      "          'warranted': 1,\n",
      "          'puts': 1,\n",
      "          'far': 1,\n",
      "          'front': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'lost': 1,\n",
      "          'nis': 1,\n",
      "          'neccesity': 1,\n",
      "          'seeing': 1,\n",
      "          'done': 1,\n",
      "          'shock': 1,\n",
      "          'tasteless': 1,\n",
      "          'despicable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bill': 5,\n",
      "          'alice': 5,\n",
      "          'hes': 4,\n",
      "          'almost': 4,\n",
      "          'many': 3,\n",
      "          'kubrick': 3,\n",
      "          'wide': 3,\n",
      "          'shut': 3,\n",
      "          'film': 3,\n",
      "          'nthis': 3,\n",
      "          'confused': 3,\n",
      "          'nhe': 3,\n",
      "          'director': 3,\n",
      "          'little': 3,\n",
      "          'eyes': 2,\n",
      "          'nkubrick': 2,\n",
      "          'kidman': 2,\n",
      "          'one': 2,\n",
      "          'long': 2,\n",
      "          'story': 2,\n",
      "          'nin': 2,\n",
      "          'leaving': 2,\n",
      "          'pollack': 2,\n",
      "          'keitel': 2,\n",
      "          'leigh': 2,\n",
      "          'depth': 2,\n",
      "          'nand': 2,\n",
      "          'much': 2,\n",
      "          'theres': 2,\n",
      "          'blackandwhite': 2,\n",
      "          'kubricks': 2,\n",
      "          'doesnt': 2,\n",
      "          'party': 2,\n",
      "          'nbill': 2,\n",
      "          'deal': 2,\n",
      "          'feelings': 2,\n",
      "          'bad': 2,\n",
      "          'lauded': 1,\n",
      "          'genius': 1,\n",
      "          'stanley': 1,\n",
      "          'commands': 1,\n",
      "          'superlative': 1,\n",
      "          'filmography': 1,\n",
      "          'includes': 1,\n",
      "          'criticallyacclaimed': 1,\n",
      "          'films': 1,\n",
      "          '2001': 1,\n",
      "          'space': 1,\n",
      "          'odyssey': 1,\n",
      "          'clockwork': 1,\n",
      "          'orange': 1,\n",
      "          'lolita': 1,\n",
      "          'dr': 1,\n",
      "          'nstrangelove': 1,\n",
      "          'learned': 1,\n",
      "          'stop': 1,\n",
      "          'worrying': 1,\n",
      "          'love': 1,\n",
      "          'bomb': 1,\n",
      "          'nnow': 1,\n",
      "          'sadly': 1,\n",
      "          'added': 1,\n",
      "          'impeccable': 1,\n",
      "          'body': 1,\n",
      "          'work': 1,\n",
      "          'final': 1,\n",
      "          'first': 1,\n",
      "          'blot': 1,\n",
      "          'nearflawless': 1,\n",
      "          'copybook': 1,\n",
      "          'alas': 1,\n",
      "          'quit': 1,\n",
      "          'ahead': 1,\n",
      "          'muchpublicized': 1,\n",
      "          'psychosexual': 1,\n",
      "          'teaseathon': 1,\n",
      "          'star': 1,\n",
      "          'billing': 1,\n",
      "          'reallife': 1,\n",
      "          'marrieds': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'nicole': 1,\n",
      "          'nothing': 1,\n",
      "          'twoandahalf': 1,\n",
      "          'hours': 1,\n",
      "          'boring': 1,\n",
      "          'exercise': 1,\n",
      "          'features': 1,\n",
      "          'operating': 1,\n",
      "          'talent': 1,\n",
      "          'faithless': 1,\n",
      "          'arthur': 1,\n",
      "          'schnitzlers': 1,\n",
      "          '1926': 1,\n",
      "          'novella': 1,\n",
      "          'dream': 1,\n",
      "          'eroticism': 1,\n",
      "          'nudity': 1,\n",
      "          'intellectualism': 1,\n",
      "          'talking': 1,\n",
      "          'slowly': 1,\n",
      "          'profundity': 1,\n",
      "          'pretentiousness': 1,\n",
      "          'addition': 1,\n",
      "          'made': 1,\n",
      "          'strange': 1,\n",
      "          'casting': 1,\n",
      "          'choices': 1,\n",
      "          'sydney': 1,\n",
      "          'accomplished': 1,\n",
      "          'performers': 1,\n",
      "          'harvey': 1,\n",
      "          'jennifer': 1,\n",
      "          'jason': 1,\n",
      "          'npollack': 1,\n",
      "          'boxoffice': 1,\n",
      "          'hits': 1,\n",
      "          'tootsie': 1,\n",
      "          'africa': 1,\n",
      "          'normally': 1,\n",
      "          'solid': 1,\n",
      "          'occasional': 1,\n",
      "          'acting': 1,\n",
      "          'stints': 1,\n",
      "          'miserably': 1,\n",
      "          'isnt': 1,\n",
      "          'begin': 1,\n",
      "          'nunhappily': 1,\n",
      "          'likely': 1,\n",
      "          'directors': 1,\n",
      "          'cut': 1,\n",
      "          'determine': 1,\n",
      "          'whether': 1,\n",
      "          'decision': 1,\n",
      "          'exorcise': 1,\n",
      "          'right': 1,\n",
      "          'fact': 1,\n",
      "          'exception': 1,\n",
      "          'stark': 1,\n",
      "          'credits': 1,\n",
      "          'snatches': 1,\n",
      "          'baroque': 1,\n",
      "          'music': 1,\n",
      "          'soundtrack': 1,\n",
      "          'grainy': 1,\n",
      "          'tracking': 1,\n",
      "          'shots': 1,\n",
      "          'lavishlydecorated': 1,\n",
      "          'corridors': 1,\n",
      "          'none': 1,\n",
      "          'trademark': 1,\n",
      "          'brilliance': 1,\n",
      "          'nit': 1,\n",
      "          'help': 1,\n",
      "          'delivered': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ncruise': 1,\n",
      "          'bring': 1,\n",
      "          'marital': 1,\n",
      "          'torpor': 1,\n",
      "          'project': 1,\n",
      "          'play': 1,\n",
      "          'welltodo': 1,\n",
      "          'new': 1,\n",
      "          'yorkers': 1,\n",
      "          'harford': 1,\n",
      "          'nhes': 1,\n",
      "          'doctor': 1,\n",
      "          'shes': 1,\n",
      "          'unemployed': 1,\n",
      "          'art': 1,\n",
      "          'gallery': 1,\n",
      "          'share': 1,\n",
      "          'central': 1,\n",
      "          'park': 1,\n",
      "          'west': 1,\n",
      "          'address': 1,\n",
      "          'nat': 1,\n",
      "          'opulent': 1,\n",
      "          'hosted': 1,\n",
      "          'friend': 1,\n",
      "          'victor': 1,\n",
      "          'ziegler': 1,\n",
      "          'gets': 1,\n",
      "          'tipsy': 1,\n",
      "          'starts': 1,\n",
      "          'dancing': 1,\n",
      "          'jeremy': 1,\n",
      "          'ironslike': 1,\n",
      "          'hungarian': 1,\n",
      "          'whos': 1,\n",
      "          'singularly': 1,\n",
      "          'determined': 1,\n",
      "          'get': 1,\n",
      "          'sack': 1,\n",
      "          'seen': 1,\n",
      "          'arminarm': 1,\n",
      "          'couple': 1,\n",
      "          'models': 1,\n",
      "          'pulled': 1,\n",
      "          'away': 1,\n",
      "          'overdoser': 1,\n",
      "          'nback': 1,\n",
      "          'home': 1,\n",
      "          'smoke': 1,\n",
      "          'pot': 1,\n",
      "          'alices': 1,\n",
      "          'aggressive': 1,\n",
      "          'jealousy': 1,\n",
      "          'kicks': 1,\n",
      "          'nas': 1,\n",
      "          'retribution': 1,\n",
      "          'confesses': 1,\n",
      "          'husband': 1,\n",
      "          'deep': 1,\n",
      "          'naval': 1,\n",
      "          'officer': 1,\n",
      "          'eyeballed': 1,\n",
      "          'hotel': 1,\n",
      "          'stayed': 1,\n",
      "          'hurtful': 1,\n",
      "          'admission': 1,\n",
      "          'sends': 1,\n",
      "          'tailspin': 1,\n",
      "          'pounds': 1,\n",
      "          'streets': 1,\n",
      "          'village': 1,\n",
      "          'heavy': 1,\n",
      "          'black': 1,\n",
      "          'overcoat': 1,\n",
      "          'struggling': 1,\n",
      "          'images': 1,\n",
      "          'grip': 1,\n",
      "          'horny': 1,\n",
      "          'midshipman': 1,\n",
      "          'nits': 1,\n",
      "          'way': 1,\n",
      "          'nfor': 1,\n",
      "          'revenge': 1,\n",
      "          'sex': 1,\n",
      "          'hooker': 1,\n",
      "          'underage': 1,\n",
      "          'girl': 1,\n",
      "          'sees': 1,\n",
      "          'costume': 1,\n",
      "          'store': 1,\n",
      "          'nthen': 1,\n",
      "          'hookers': 1,\n",
      "          'roommate': 1,\n",
      "          'involved': 1,\n",
      "          'overblown': 1,\n",
      "          'rococo': 1,\n",
      "          'orgy': 1,\n",
      "          'old': 1,\n",
      "          'college': 1,\n",
      "          'chum': 1,\n",
      "          'tips': 1,\n",
      "          'mysterious': 1,\n",
      "          'passwordprotected': 1,\n",
      "          'everyone': 1,\n",
      "          'wears': 1,\n",
      "          'masks': 1,\n",
      "          'women': 1,\n",
      "          'incredible': 1,\n",
      "          'e': 1,\n",
      "          'naked': 1,\n",
      "          'erotic': 1,\n",
      "          'set': 1,\n",
      "          'piece': 1,\n",
      "          'cultish': 1,\n",
      "          'bacchanal': 1,\n",
      "          'complete': 1,\n",
      "          'chanting': 1,\n",
      "          'incense': 1,\n",
      "          'lots': 1,\n",
      "          'strategicallyplaced': 1,\n",
      "          'partygoers': 1,\n",
      "          'covering': 1,\n",
      "          'dirty': 1,\n",
      "          'might': 1,\n",
      "          'impress': 1,\n",
      "          'likes': 1,\n",
      "          'hugh': 1,\n",
      "          'hefner': 1,\n",
      "          'lot': 1,\n",
      "          'less': 1,\n",
      "          'shocking': 1,\n",
      "          'intended': 1,\n",
      "          'nwhats': 1,\n",
      "          'big': 1,\n",
      "          'exactly': 1,\n",
      "          'anything': 1,\n",
      "          'throw': 1,\n",
      "          'money': 1,\n",
      "          'credentials': 1,\n",
      "          'around': 1,\n",
      "          'ever': 1,\n",
      "          'lusted': 1,\n",
      "          'heart': 1,\n",
      "          'nwhoopdeedoo': 1,\n",
      "          'nstill': 1,\n",
      "          'make': 1,\n",
      "          'agonizingly': 1,\n",
      "          'slow': 1,\n",
      "          'pacewas': 1,\n",
      "          'notorious': 1,\n",
      "          'multiple': 1,\n",
      "          'takes': 1,\n",
      "          'paying': 1,\n",
      "          'hourly': 1,\n",
      "          'rate': 1,\n",
      "          'neven': 1,\n",
      "          'geniuses': 1,\n",
      "          'days': 1,\n",
      "          'n': 1,\n",
      "          'happens': 1,\n",
      "          'day': 1,\n",
      "          'unerotic': 1,\n",
      "          'disappointing': 1,\n",
      "          'altogether': 1,\n",
      "          'pointless': 1,\n",
      "          'end': 1,\n",
      "          'otherwise': 1,\n",
      "          'memorable': 1,\n",
      "          'career': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'excess': 7,\n",
      "          'baggage': 7,\n",
      "          'emily': 6,\n",
      "          'vincent': 5,\n",
      "          'clueless': 4,\n",
      "          'two': 3,\n",
      "          'story': 3,\n",
      "          'nbut': 3,\n",
      "          'back': 3,\n",
      "          'many': 3,\n",
      "          'turn': 2,\n",
      "          'shes': 2,\n",
      "          'film': 2,\n",
      "          'together': 2,\n",
      "          'locks': 2,\n",
      "          'car': 2,\n",
      "          'whos': 2,\n",
      "          'annoys': 2,\n",
      "          'way': 2,\n",
      "          'course': 2,\n",
      "          'get': 2,\n",
      "          'situation': 2,\n",
      "          'matters': 2,\n",
      "          'even': 2,\n",
      "          'aloof': 2,\n",
      "          'suddenly': 2,\n",
      "          'becomes': 2,\n",
      "          'na': 2,\n",
      "          'movie': 2,\n",
      "          'comedy': 2,\n",
      "          'seems': 2,\n",
      "          'n': 2,\n",
      "          'one': 2,\n",
      "          'hand': 2,\n",
      "          'starring': 1,\n",
      "          'amy': 1,\n",
      "          'heckerlings': 1,\n",
      "          'summers': 1,\n",
      "          'ago': 1,\n",
      "          'alicia': 1,\n",
      "          'silverstone': 1,\n",
      "          'proved': 1,\n",
      "          'wasnt': 1,\n",
      "          'another': 1,\n",
      "          'pretty': 1,\n",
      "          'pouty': 1,\n",
      "          'ingenue': 1,\n",
      "          'showing': 1,\n",
      "          'buoyant': 1,\n",
      "          'comedic': 1,\n",
      "          'craftiness': 1,\n",
      "          'blew': 1,\n",
      "          'previous': 1,\n",
      "          'jobs': 1,\n",
      "          'namely': 1,\n",
      "          'stint': 1,\n",
      "          'aerosmith': 1,\n",
      "          'girl': 1,\n",
      "          'silly': 1,\n",
      "          'lethal': 1,\n",
      "          'lolita': 1,\n",
      "          'crush': 1,\n",
      "          'water': 1,\n",
      "          'nher': 1,\n",
      "          'work': 1,\n",
      "          'since': 1,\n",
      "          '1995': 1,\n",
      "          'gem': 1,\n",
      "          'junes': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'overcame': 1,\n",
      "          'underwritten': 1,\n",
      "          'role': 1,\n",
      "          'batgirl': 1,\n",
      "          'nnow': 1,\n",
      "          'star': 1,\n",
      "          'producer': 1,\n",
      "          'hopelessly': 1,\n",
      "          'phony': 1,\n",
      "          'demonstrates': 1,\n",
      "          'illcomposed': 1,\n",
      "          'drag': 1,\n",
      "          'otherwise': 1,\n",
      "          'solid': 1,\n",
      "          'performer': 1,\n",
      "          'level': 1,\n",
      "          'nsilverstones': 1,\n",
      "          'hope': 1,\n",
      "          'stuck': 1,\n",
      "          'billionaire': 1,\n",
      "          'father': 1,\n",
      "          'jack': 1,\n",
      "          'thompson': 1,\n",
      "          'neglects': 1,\n",
      "          'emotionally': 1,\n",
      "          'nin': 1,\n",
      "          'outlandish': 1,\n",
      "          'plan': 1,\n",
      "          'gain': 1,\n",
      "          'affection': 1,\n",
      "          'fakes': 1,\n",
      "          'kidnapping': 1,\n",
      "          'uses': 1,\n",
      "          'electronically': 1,\n",
      "          'disguised': 1,\n",
      "          'voice': 1,\n",
      "          'call': 1,\n",
      "          'dad': 1,\n",
      "          'set': 1,\n",
      "          'pricey': 1,\n",
      "          'ransom': 1,\n",
      "          'ties': 1,\n",
      "          'legs': 1,\n",
      "          'mouth': 1,\n",
      "          'shut': 1,\n",
      "          'duct': 1,\n",
      "          'tape': 1,\n",
      "          'trunk': 1,\n",
      "          'bmw': 1,\n",
      "          'police': 1,\n",
      "          'rescue': 1,\n",
      "          'professional': 1,\n",
      "          'auto': 1,\n",
      "          'thief': 1,\n",
      "          'roche': 1,\n",
      "          'benicio': 1,\n",
      "          'del': 1,\n",
      "          'toro': 1,\n",
      "          'jimmies': 1,\n",
      "          'hotwires': 1,\n",
      "          'engine': 1,\n",
      "          'makes': 1,\n",
      "          'still': 1,\n",
      "          'trapped': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'dont': 1,\n",
      "          'exactly': 1,\n",
      "          'hit': 1,\n",
      "          'advice': 1,\n",
      "          'slimy': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'salesman': 1,\n",
      "          'partner': 1,\n",
      "          'harry': 1,\n",
      "          'connick': 1,\n",
      "          'jr': 1,\n",
      "          'decides': 1,\n",
      "          'drive': 1,\n",
      "          'middle': 1,\n",
      "          'nowhere': 1,\n",
      "          'leave': 1,\n",
      "          'nalong': 1,\n",
      "          'whole': 1,\n",
      "          'heap': 1,\n",
      "          'trouble': 1,\n",
      "          'come': 1,\n",
      "          'realize': 1,\n",
      "          'sticky': 1,\n",
      "          'felonystudded': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'help': 1,\n",
      "          'trailed': 1,\n",
      "          'cops': 1,\n",
      "          'crooks': 1,\n",
      "          'shady': 1,\n",
      "          'uncle': 1,\n",
      "          'ray': 1,\n",
      "          'christopher': 1,\n",
      "          'walken': 1,\n",
      "          'wise': 1,\n",
      "          'nieces': 1,\n",
      "          'ploys': 1,\n",
      "          'attention': 1,\n",
      "          'mafia': 1,\n",
      "          'connections': 1,\n",
      "          'nfor': 1,\n",
      "          'least': 1,\n",
      "          'halfhour': 1,\n",
      "          'bounces': 1,\n",
      "          'along': 1,\n",
      "          'fast': 1,\n",
      "          'efficiently': 1,\n",
      "          'nduring': 1,\n",
      "          'time': 1,\n",
      "          'sport': 1,\n",
      "          'engaging': 1,\n",
      "          'personalities': 1,\n",
      "          'well': 1,\n",
      "          'nice': 1,\n",
      "          'rolereversal': 1,\n",
      "          'twist': 1,\n",
      "          'awfully': 1,\n",
      "          'aggressive': 1,\n",
      "          'combative': 1,\n",
      "          'victim': 1,\n",
      "          'hes': 1,\n",
      "          'quite': 1,\n",
      "          'seemingly': 1,\n",
      "          'vulnerable': 1,\n",
      "          'captor': 1,\n",
      "          'past': 1,\n",
      "          'setup': 1,\n",
      "          'uninvolving': 1,\n",
      "          'tries': 1,\n",
      "          'things': 1,\n",
      "          'road': 1,\n",
      "          'teen': 1,\n",
      "          'mob': 1,\n",
      "          'thriller': 1,\n",
      "          'drama': 1,\n",
      "          'family': 1,\n",
      "          'relationships': 1,\n",
      "          'name': 1,\n",
      "          'cliche': 1,\n",
      "          'likely': 1,\n",
      "          'covers': 1,\n",
      "          'territory': 1,\n",
      "          'nof': 1,\n",
      "          'romance': 1,\n",
      "          'develops': 1,\n",
      "          'leads': 1,\n",
      "          'forced': 1,\n",
      "          'thus': 1,\n",
      "          'characterization': 1,\n",
      "          'manipulated': 1,\n",
      "          'cause': 1,\n",
      "          'finally': 1,\n",
      "          'happy': 1,\n",
      "          'outcome': 1,\n",
      "          'like': 1,\n",
      "          'tummy': 1,\n",
      "          'nemily': 1,\n",
      "          'coos': 1,\n",
      "          'point': 1,\n",
      "          'nhuh': 1,\n",
      "          'ndid': 1,\n",
      "          'miss': 1,\n",
      "          'something': 1,\n",
      "          'nthe': 1,\n",
      "          'hardedged': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'grrrl': 1,\n",
      "          'gone': 1,\n",
      "          'replaced': 1,\n",
      "          'pair': 1,\n",
      "          'batting': 1,\n",
      "          'googoo': 1,\n",
      "          'eyes': 1,\n",
      "          'nthen': 1,\n",
      "          'weak': 1,\n",
      "          'areas': 1,\n",
      "          'personality': 1,\n",
      "          'transplant': 1,\n",
      "          'complete': 1,\n",
      "          'surprise': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'attempts': 1,\n",
      "          'colorful': 1,\n",
      "          'empty': 1,\n",
      "          'secondary': 1,\n",
      "          'roles': 1,\n",
      "          'isnt': 1,\n",
      "          'game': 1,\n",
      "          'enough': 1,\n",
      "          'use': 1,\n",
      "          'therefore': 1,\n",
      "          'overcrowded': 1,\n",
      "          'nmotivations': 1,\n",
      "          'keep': 1,\n",
      "          'shifting': 1,\n",
      "          'resulting': 1,\n",
      "          'often': 1,\n",
      "          'confusing': 1,\n",
      "          'narrative': 1,\n",
      "          'nscant': 1,\n",
      "          'existing': 1,\n",
      "          'background': 1,\n",
      "          'confuses': 1,\n",
      "          'worse': 1,\n",
      "          'adds': 1,\n",
      "          'growing': 1,\n",
      "          'list': 1,\n",
      "          'unanswered': 1,\n",
      "          'questions': 1,\n",
      "          'characters': 1,\n",
      "          'much': 1,\n",
      "          'plot': 1,\n",
      "          'juggles': 1,\n",
      "          'arm': 1,\n",
      "          'behind': 1,\n",
      "          'remaining': 1,\n",
      "          'shaky': 1,\n",
      "          'ni': 1,\n",
      "          'loved': 1,\n",
      "          'silverstones': 1,\n",
      "          'pampered': 1,\n",
      "          'beverly': 1,\n",
      "          'hills': 1,\n",
      "          'matchmaker': 1,\n",
      "          'inspired': 1,\n",
      "          'jane': 1,\n",
      "          'austens': 1,\n",
      "          'emma': 1,\n",
      "          'nlooking': 1,\n",
      "          'skill': 1,\n",
      "          'displayed': 1,\n",
      "          'simple': 1,\n",
      "          'justify': 1,\n",
      "          'high': 1,\n",
      "          'expectation': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'mustered': 1,\n",
      "          'nsadly': 1,\n",
      "          'however': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bats': 9,\n",
      "          'town': 9,\n",
      "          'bat': 9,\n",
      "          'film': 9,\n",
      "          'going': 6,\n",
      "          'films': 5,\n",
      "          'one': 4,\n",
      "          'death': 4,\n",
      "          'good': 4,\n",
      "          'never': 4,\n",
      "          'nthe': 4,\n",
      "          'bob': 3,\n",
      "          'gunton': 3,\n",
      "          'animals': 3,\n",
      "          'small': 3,\n",
      "          'military': 3,\n",
      "          'plot': 3,\n",
      "          'meyer': 3,\n",
      "          'sheriff': 3,\n",
      "          'character': 3,\n",
      "          'ni': 3,\n",
      "          'say': 3,\n",
      "          'would': 3,\n",
      "          'bad': 3,\n",
      "          'actual': 3,\n",
      "          'could': 3,\n",
      "          'movie': 3,\n",
      "          'scenes': 3,\n",
      "          'im': 2,\n",
      "          'scientist': 2,\n",
      "          'stop': 2,\n",
      "          'genetically': 2,\n",
      "          'altered': 2,\n",
      "          'specialist': 2,\n",
      "          'ndina': 2,\n",
      "          'sheila': 2,\n",
      "          'order': 2,\n",
      "          'help': 2,\n",
      "          'texas': 2,\n",
      "          'local': 2,\n",
      "          'diamond': 2,\n",
      "          'phillips': 2,\n",
      "          'official': 2,\n",
      "          'nin': 2,\n",
      "          'level': 2,\n",
      "          'things': 2,\n",
      "          'sit': 2,\n",
      "          'nwhile': 2,\n",
      "          'really': 2,\n",
      "          'doubt': 2,\n",
      "          'performance': 2,\n",
      "          'reason': 2,\n",
      "          'whats': 2,\n",
      "          'even': 2,\n",
      "          'though': 2,\n",
      "          'creations': 2,\n",
      "          'ever': 2,\n",
      "          'little': 2,\n",
      "          'entire': 2,\n",
      "          'full': 2,\n",
      "          'na': 2,\n",
      "          'unit': 2,\n",
      "          'nearly': 2,\n",
      "          'get': 2,\n",
      "          'puppets': 2,\n",
      "          'shot': 2,\n",
      "          'nthats': 1,\n",
      "          'n': 1,\n",
      "          'dr': 1,\n",
      "          'alexander': 1,\n",
      "          'mccabe': 1,\n",
      "          'response': 1,\n",
      "          'created': 1,\n",
      "          'evil': 1,\n",
      "          'nalright': 1,\n",
      "          'folks': 1,\n",
      "          'youve': 1,\n",
      "          'heard': 1,\n",
      "          'wreak': 1,\n",
      "          'havoc': 1,\n",
      "          'band': 1,\n",
      "          'locals': 1,\n",
      "          'assisted': 1,\n",
      "          'particular': 1,\n",
      "          'field': 1,\n",
      "          'must': 1,\n",
      "          'team': 1,\n",
      "          'mutant': 1,\n",
      "          'creatures': 1,\n",
      "          'multiply': 1,\n",
      "          'spread': 1,\n",
      "          'across': 1,\n",
      "          'earth': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'way': 1,\n",
      "          'bomb': 1,\n",
      "          'well': 1,\n",
      "          'running': 1,\n",
      "          'short': 1,\n",
      "          'time': 1,\n",
      "          'nsound': 1,\n",
      "          'familiar': 1,\n",
      "          'nsuch': 1,\n",
      "          'destination': 1,\n",
      "          'release': 1,\n",
      "          'stars': 1,\n",
      "          'pulled': 1,\n",
      "          'research': 1,\n",
      "          'along': 1,\n",
      "          'annoying': 1,\n",
      "          'sidekick': 1,\n",
      "          'played': 1,\n",
      "          'irritating': 1,\n",
      "          'deftness': 1,\n",
      "          'leon': 1,\n",
      "          'figure': 1,\n",
      "          'citizens': 1,\n",
      "          'chewed': 1,\n",
      "          'recently': 1,\n",
      "          'nwith': 1,\n",
      "          'lou': 1,\n",
      "          'cdc': 1,\n",
      "          'carlos': 1,\n",
      "          'jacott': 1,\n",
      "          'discovers': 1,\n",
      "          'indeed': 1,\n",
      "          'guntons': 1,\n",
      "          'aggressive': 1,\n",
      "          'omnivorous': 1,\n",
      "          'used': 1,\n",
      "          'weapon': 1,\n",
      "          'knew': 1,\n",
      "          'exactly': 1,\n",
      "          'getting': 1,\n",
      "          'ntheres': 1,\n",
      "          'frame': 1,\n",
      "          'promotional': 1,\n",
      "          'footage': 1,\n",
      "          'seen': 1,\n",
      "          'led': 1,\n",
      "          'believe': 1,\n",
      "          'respect': 1,\n",
      "          'disappointed': 1,\n",
      "          'nthis': 1,\n",
      "          'reaches': 1,\n",
      "          'transcends': 1,\n",
      "          'borders': 1,\n",
      "          'downright': 1,\n",
      "          'insane': 1,\n",
      "          'effects': 1,\n",
      "          'awful': 1,\n",
      "          'script': 1,\n",
      "          'contrived': 1,\n",
      "          'feature': 1,\n",
      "          'laughing': 1,\n",
      "          'supposed': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'think': 1,\n",
      "          'challenge': 1,\n",
      "          'anyone': 1,\n",
      "          'scene': 1,\n",
      "          'stalks': 1,\n",
      "          'baby': 1,\n",
      "          'crib': 1,\n",
      "          'another': 1,\n",
      "          'terrorizes': 1,\n",
      "          'patron': 1,\n",
      "          'eating': 1,\n",
      "          'diner': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'nthankfully': 1,\n",
      "          'performances': 1,\n",
      "          'considering': 1,\n",
      "          'material': 1,\n",
      "          'actors': 1,\n",
      "          'perform': 1,\n",
      "          'always': 1,\n",
      "          'highlight': 1,\n",
      "          'johnny': 1,\n",
      "          'mnemonic': 1,\n",
      "          'dragonheart': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'latter': 1,\n",
      "          'batch': 1,\n",
      "          'merit': 1,\n",
      "          'exception': 1,\n",
      "          'gets': 1,\n",
      "          'impression': 1,\n",
      "          'meyers': 1,\n",
      "          'expert': 1,\n",
      "          'reality': 1,\n",
      "          'cares': 1,\n",
      "          'either': 1,\n",
      "          'nshe': 1,\n",
      "          'gives': 1,\n",
      "          'expected': 1,\n",
      "          'plus': 1,\n",
      "          'shes': 1,\n",
      "          'nice': 1,\n",
      "          'look': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'nlou': 1,\n",
      "          'also': 1,\n",
      "          'serviceable': 1,\n",
      "          'turned': 1,\n",
      "          'eventual': 1,\n",
      "          'hero': 1,\n",
      "          'nalthough': 1,\n",
      "          'first': 1,\n",
      "          'meet': 1,\n",
      "          'knows': 1,\n",
      "          'later': 1,\n",
      "          'suddenly': 1,\n",
      "          'becomes': 1,\n",
      "          'amazed': 1,\n",
      "          'learn': 1,\n",
      "          'cause': 1,\n",
      "          'deaths': 1,\n",
      "          'leons': 1,\n",
      "          'nhe': 1,\n",
      "          'relegated': 1,\n",
      "          'sticking': 1,\n",
      "          'around': 1,\n",
      "          'ncharacter': 1,\n",
      "          'proceeds': 1,\n",
      "          'repeat': 1,\n",
      "          'variations': 1,\n",
      "          'line': 1,\n",
      "          'majority': 1,\n",
      "          'stays': 1,\n",
      "          'nanyone': 1,\n",
      "          'cant': 1,\n",
      "          'immediately': 1,\n",
      "          'tell': 1,\n",
      "          'guy': 1,\n",
      "          'patch': 1,\n",
      "          'adams': 1,\n",
      "          'countless': 1,\n",
      "          'eventually': 1,\n",
      "          'turn': 1,\n",
      "          'gang': 1,\n",
      "          'side': 1,\n",
      "          'eminent': 1,\n",
      "          'probably': 1,\n",
      "          'surprised': 1,\n",
      "          'highly': 1,\n",
      "          'neven': 1,\n",
      "          'hadnt': 1,\n",
      "          'villain': 1,\n",
      "          'every': 1,\n",
      "          'hes': 1,\n",
      "          'many': 1,\n",
      "          'obvious': 1,\n",
      "          'hints': 1,\n",
      "          'given': 1,\n",
      "          'indicate': 1,\n",
      "          'devious': 1,\n",
      "          'act': 1,\n",
      "          'holds': 1,\n",
      "          'shock': 1,\n",
      "          'whatsoever': 1,\n",
      "          'fact': 1,\n",
      "          'welcome': 1,\n",
      "          'finally': 1,\n",
      "          'starts': 1,\n",
      "          'moving': 1,\n",
      "          'towards': 1,\n",
      "          'finale': 1,\n",
      "          'nif': 1,\n",
      "          'doesnt': 1,\n",
      "          'sound': 1,\n",
      "          'ridiculous': 1,\n",
      "          'yet': 1,\n",
      "          'check': 1,\n",
      "          'tidbits': 1,\n",
      "          'multitude': 1,\n",
      "          'inexplicably': 1,\n",
      "          'disperses': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'cocks': 1,\n",
      "          'pistol': 1,\n",
      "          'nan': 1,\n",
      "          'disregards': 1,\n",
      "          'doctors': 1,\n",
      "          'orders': 1,\n",
      "          'stay': 1,\n",
      "          'indoors': 1,\n",
      "          'curfew': 1,\n",
      "          'instigated': 1,\n",
      "          'causing': 1,\n",
      "          'mass': 1,\n",
      "          'hysteria': 1,\n",
      "          'come': 1,\n",
      "          'force': 1,\n",
      "          'killing': 1,\n",
      "          'several': 1,\n",
      "          'townsfolk': 1,\n",
      "          'government': 1,\n",
      "          'blows': 1,\n",
      "          'shelias': 1,\n",
      "          'instructions': 1,\n",
      "          'wait': 1,\n",
      "          'dawn': 1,\n",
      "          'install': 1,\n",
      "          'cooling': 1,\n",
      "          'cave': 1,\n",
      "          'kill': 1,\n",
      "          'pulling': 1,\n",
      "          'night': 1,\n",
      "          'job': 1,\n",
      "          'resulting': 1,\n",
      "          'cavern': 1,\n",
      "          'feces': 1,\n",
      "          'ignites': 1,\n",
      "          'phosphorus': 1,\n",
      "          'flare': 1,\n",
      "          'lit': 1,\n",
      "          'right': 1,\n",
      "          'middle': 1,\n",
      "          'nfinally': 1,\n",
      "          'top': 1,\n",
      "          'showing': 1,\n",
      "          'nosferatu': 1,\n",
      "          'single': 1,\n",
      "          'screen': 1,\n",
      "          'theater': 1,\n",
      "          'reference': 1,\n",
      "          'million': 1,\n",
      "          'people': 1,\n",
      "          '150': 1,\n",
      "          'screens': 1,\n",
      "          'lucky': 1,\n",
      "          'kevin': 1,\n",
      "          'smiths': 1,\n",
      "          'dogma': 1,\n",
      "          'laughable': 1,\n",
      "          'part': 1,\n",
      "          'comes': 1,\n",
      "          'illconceived': 1,\n",
      "          'attack': 1,\n",
      "          'rapid': 1,\n",
      "          'fire': 1,\n",
      "          'editing': 1,\n",
      "          'making': 1,\n",
      "          'impossible': 1,\n",
      "          'comprehend': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'interact': 1,\n",
      "          'live': 1,\n",
      "          'actor': 1,\n",
      "          'usually': 1,\n",
      "          'lowkey': 1,\n",
      "          'ntherefore': 1,\n",
      "          'audience': 1,\n",
      "          'loving': 1,\n",
      "          'closeups': 1,\n",
      "          'unrealistic': 1,\n",
      "          'rubbery': 1,\n",
      "          'committed': 1,\n",
      "          'nbeing': 1,\n",
      "          'able': 1,\n",
      "          'see': 1,\n",
      "          'puppeteers': 1,\n",
      "          'arms': 1,\n",
      "          'made': 1,\n",
      "          'worse': 1,\n",
      "          'nafter': 1,\n",
      "          'still': 1,\n",
      "          'decide': 1,\n",
      "          'might': 1,\n",
      "          'dont': 1,\n",
      "          'havent': 1,\n",
      "          'warned': 1,\n",
      "          'ntrust': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'trash': 1,\n",
      "          'wish': 1,\n",
      "          'dina': 1,\n",
      "          'cast': 1,\n",
      "          'roles': 1,\n",
      "          'least': 1,\n",
      "          'choose': 1,\n",
      "          'better': 1,\n",
      "          'appear': 1,\n",
      "          'nshes': 1,\n",
      "          'definitely': 1,\n",
      "          'talent': 1,\n",
      "          'waste': 1,\n",
      "          'like': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wonder': 3,\n",
      "          'turns': 3,\n",
      "          'stone': 2,\n",
      "          'unexpected': 2,\n",
      "          'someone': 2,\n",
      "          'character': 2,\n",
      "          'word': 1,\n",
      "          'describe': 1,\n",
      "          'sharon': 1,\n",
      "          'nnot': 1,\n",
      "          '_is_': 1,\n",
      "          'rather': 1,\n",
      "          'inconsistent': 1,\n",
      "          'nshe': 1,\n",
      "          'dynamic': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'surprisingly': 1,\n",
      "          'fine': 1,\n",
      "          'acting': 1,\n",
      "          'job': 1,\n",
      "          'casino': 1,\n",
      "          'possesses': 1,\n",
      "          'neither': 1,\n",
      "          'nstone': 1,\n",
      "          'teams': 1,\n",
      "          'private': 1,\n",
      "          'school': 1,\n",
      "          'headmasters': 1,\n",
      "          'wife': 1,\n",
      "          'isabelle': 1,\n",
      "          'adjani': 1,\n",
      "          'kill': 1,\n",
      "          'adjanis': 1,\n",
      "          'thoroughly': 1,\n",
      "          'unlikable': 1,\n",
      "          'husband': 1,\n",
      "          'chazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'nin': 1,\n",
      "          'comedy': 1,\n",
      "          'errors': 1,\n",
      "          'twists': 1,\n",
      "          'straight': 1,\n",
      "          'hitchcock': 1,\n",
      "          'homage': 1,\n",
      "          'read': 1,\n",
      "          'steal': 1,\n",
      "          'saw': 1,\n",
      "          'hes': 1,\n",
      "          'dead': 1,\n",
      "          'maybe': 1,\n",
      "          'nkathy': 1,\n",
      "          'bates': 1,\n",
      "          'credible': 1,\n",
      "          'unspectacular': 1,\n",
      "          'performance': 1,\n",
      "          'investigative': 1,\n",
      "          'police': 1,\n",
      "          'detective': 1,\n",
      "          'nher': 1,\n",
      "          'bit': 1,\n",
      "          'dull': 1,\n",
      "          'realistic': 1,\n",
      "          'although': 1,\n",
      "          'actions': 1,\n",
      "          'end': 1,\n",
      "          'puzzling': 1,\n",
      "          'nadjani': 1,\n",
      "          'satisfactory': 1,\n",
      "          'timid': 1,\n",
      "          'beaten': 1,\n",
      "          'spouse': 1,\n",
      "          'driven': 1,\n",
      "          'desperation': 1,\n",
      "          'nits': 1,\n",
      "          'disappointment': 1,\n",
      "          'among': 1,\n",
      "          'actors': 1,\n",
      "          'nhow': 1,\n",
      "          'epitome': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'previous': 1,\n",
      "          'films': 1,\n",
      "          'come': 1,\n",
      "          'blank': 1,\n",
      "          'one': 1,\n",
      "          'ncostumed': 1,\n",
      "          'skintight': 1,\n",
      "          'clothes': 1,\n",
      "          'looking': 1,\n",
      "          'nose': 1,\n",
      "          'everyone': 1,\n",
      "          'would': 1,\n",
      "          'want': 1,\n",
      "          'avoid': 1,\n",
      "          'boring': 1,\n",
      "          'enticingly': 1,\n",
      "          'dangerous': 1,\n",
      "          'neven': 1,\n",
      "          'threat': 1,\n",
      "          'promise': 1,\n",
      "          'lesbian': 1,\n",
      "          'relationship': 1,\n",
      "          'conspirators': 1,\n",
      "          'half': 1,\n",
      "          'played': 1,\n",
      "          'non': 1,\n",
      "          'positive': 1,\n",
      "          'side': 1,\n",
      "          'enough': 1,\n",
      "          'plot': 1,\n",
      "          'developments': 1,\n",
      "          'keep': 1,\n",
      "          'interest': 1,\n",
      "          'alive': 1,\n",
      "          'nthat': 1,\n",
      "          'put': 1,\n",
      "          'stones': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutout': 1,\n",
      "          'scenes': 1,\n",
      "          'directly': 1,\n",
      "          'lifted': 1,\n",
      "          'hitchs': 1,\n",
      "          'movies': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'kay': 4,\n",
      "          'plots': 4,\n",
      "          'hearts': 3,\n",
      "          'never': 3,\n",
      "          'dutch': 3,\n",
      "          'characters': 3,\n",
      "          'ndutch': 3,\n",
      "          'sub': 3,\n",
      "          'random': 2,\n",
      "          'perfect': 2,\n",
      "          'world': 2,\n",
      "          'would': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'two': 2,\n",
      "          'little': 2,\n",
      "          'nalthough': 2,\n",
      "          'soon': 2,\n",
      "          'seems': 2,\n",
      "          'rather': 2,\n",
      "          'primary': 2,\n",
      "          'daughter': 2,\n",
      "          'seem': 2,\n",
      "          'hard': 2,\n",
      "          'tagline': 1,\n",
      "          'reads': 1,\n",
      "          'met': 1,\n",
      "          'nin': 1,\n",
      "          'seen': 1,\n",
      "          'biggest': 1,\n",
      "          'flaw': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'chandler': 1,\n",
      "          'kristin': 1,\n",
      "          'scott': 1,\n",
      "          'thomas': 1,\n",
      "          'van': 1,\n",
      "          'den': 1,\n",
      "          'broeck': 1,\n",
      "          'harrison': 1,\n",
      "          'ford': 1,\n",
      "          'major': 1,\n",
      "          'alive': 1,\n",
      "          'resulting': 1,\n",
      "          'doubt': 1,\n",
      "          'end': 1,\n",
      "          'together': 1,\n",
      "          'point': 1,\n",
      "          'laborious': 1,\n",
      "          'twohoursandthensome': 1,\n",
      "          'production': 1,\n",
      "          'sergeant': 1,\n",
      "          'internal': 1,\n",
      "          'affairs': 1,\n",
      "          'district': 1,\n",
      "          'columbia': 1,\n",
      "          'police': 1,\n",
      "          'department': 1,\n",
      "          'nkay': 1,\n",
      "          'congresswoman': 1,\n",
      "          'new': 1,\n",
      "          'hampshire': 1,\n",
      "          'think': 1,\n",
      "          'happily': 1,\n",
      "          'married': 1,\n",
      "          'spouses': 1,\n",
      "          'cheating': 1,\n",
      "          'behind': 1,\n",
      "          'backs': 1,\n",
      "          'widowed': 1,\n",
      "          'plane': 1,\n",
      "          'goes': 1,\n",
      "          'carrying': 1,\n",
      "          'partners': 1,\n",
      "          'subsequently': 1,\n",
      "          'discover': 1,\n",
      "          'affair': 1,\n",
      "          'rest': 1,\n",
      "          'pointless': 1,\n",
      "          'unrealistic': 1,\n",
      "          'oftentimes': 1,\n",
      "          'boring': 1,\n",
      "          'story': 1,\n",
      "          'researching': 1,\n",
      "          'sexual': 1,\n",
      "          'relationship': 1,\n",
      "          'blind': 1,\n",
      "          'getting': 1,\n",
      "          'know': 1,\n",
      "          'process': 1,\n",
      "          'ntwo': 1,\n",
      "          'help': 1,\n",
      "          'already': 1,\n",
      "          'problematic': 1,\n",
      "          'trying': 1,\n",
      "          'arrest': 1,\n",
      "          'fellow': 1,\n",
      "          'officer': 1,\n",
      "          'task': 1,\n",
      "          'ordinary': 1,\n",
      "          'hollywood': 1,\n",
      "          'fare': 1,\n",
      "          'nall': 1,\n",
      "          'great': 1,\n",
      "          'stereotypes': 1,\n",
      "          'get': 1,\n",
      "          'pulled': 1,\n",
      "          'including': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'key': 1,\n",
      "          'witness': 1,\n",
      "          'makes': 1,\n",
      "          'bail': 1,\n",
      "          'murdered': 1,\n",
      "          'thereafter': 1,\n",
      "          'nkays': 1,\n",
      "          'distraction': 1,\n",
      "          'films': 1,\n",
      "          'focus': 1,\n",
      "          'campaign': 1,\n",
      "          'reelection': 1,\n",
      "          'attempts': 1,\n",
      "          'shield': 1,\n",
      "          '15': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'truth': 1,\n",
      "          'father': 1,\n",
      "          'put': 1,\n",
      "          'pedestal': 1,\n",
      "          'nthese': 1,\n",
      "          'could': 1,\n",
      "          'made': 1,\n",
      "          'semiinteresting': 1,\n",
      "          'points': 1,\n",
      "          'afraid': 1,\n",
      "          'explore': 1,\n",
      "          'politics': 1,\n",
      "          'motherdaughter': 1,\n",
      "          'relations': 1,\n",
      "          'depth': 1,\n",
      "          'consequently': 1,\n",
      "          'suffers': 1,\n",
      "          'nrandom': 1,\n",
      "          'live': 1,\n",
      "          'shells': 1,\n",
      "          'given': 1,\n",
      "          'deal': 1,\n",
      "          'anyone': 1,\n",
      "          'nthere': 1,\n",
      "          'plenty': 1,\n",
      "          'opportunity': 1,\n",
      "          'partner': 1,\n",
      "          'close': 1,\n",
      "          'friends': 1,\n",
      "          'shies': 1,\n",
      "          'away': 1,\n",
      "          'exploring': 1,\n",
      "          'relationships': 1,\n",
      "          'nveteran': 1,\n",
      "          'actor': 1,\n",
      "          'director': 1,\n",
      "          'sydney': 1,\n",
      "          'pollack': 1,\n",
      "          'critically': 1,\n",
      "          'acclaimed': 1,\n",
      "          'upandcomer': 1,\n",
      "          'dylan': 1,\n",
      "          'baker': 1,\n",
      "          'cameo': 1,\n",
      "          'roles': 1,\n",
      "          'careful': 1,\n",
      "          'blink': 1,\n",
      "          'much': 1,\n",
      "          'miss': 1,\n",
      "          'nother': 1,\n",
      "          'weak': 1,\n",
      "          'plot': 1,\n",
      "          'criticize': 1,\n",
      "          'nhowever': 1,\n",
      "          'also': 1,\n",
      "          'compliment': 1,\n",
      "          'nhad': 1,\n",
      "          'taken': 1,\n",
      "          'small': 1,\n",
      "          'risks': 1,\n",
      "          'fully': 1,\n",
      "          'explored': 1,\n",
      "          'extra': 1,\n",
      "          'may': 1,\n",
      "          'tasted': 1,\n",
      "          'like': 1,\n",
      "          'well': 1,\n",
      "          'frosted': 1,\n",
      "          'cake': 1,\n",
      "          'dry': 1,\n",
      "          'one': 1,\n",
      "          'equates': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'double': 6,\n",
      "          'jeopardy': 6,\n",
      "          'plot': 4,\n",
      "          'nthe': 4,\n",
      "          'libby': 4,\n",
      "          'husband': 3,\n",
      "          'like': 3,\n",
      "          'dont': 3,\n",
      "          'movie': 3,\n",
      "          'details': 2,\n",
      "          'although': 2,\n",
      "          'thriller': 2,\n",
      "          'nlibby': 2,\n",
      "          'ashley': 2,\n",
      "          'judd': 2,\n",
      "          'none': 2,\n",
      "          'night': 2,\n",
      "          'nick': 2,\n",
      "          'bruce': 2,\n",
      "          'character': 2,\n",
      "          'convicted': 2,\n",
      "          'vital': 2,\n",
      "          'nbut': 2,\n",
      "          'douglas': 2,\n",
      "          'two': 2,\n",
      "          'scenes': 2,\n",
      "          'jones': 2,\n",
      "          'parole': 2,\n",
      "          'officer': 2,\n",
      "          'role': 2,\n",
      "          'well': 2,\n",
      "          'fugitive': 2,\n",
      "          'njudd': 2,\n",
      "          'nwhile': 2,\n",
      "          'could': 2,\n",
      "          'film': 2,\n",
      "          'work': 2,\n",
      "          'driving': 2,\n",
      "          'stakes': 1,\n",
      "          'high': 1,\n",
      "          'nthink': 1,\n",
      "          'rehash': 1,\n",
      "          'sleeping': 1,\n",
      "          'enemy': 1,\n",
      "          'rearrange': 1,\n",
      "          'gender': 1,\n",
      "          'stalker': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'able': 1,\n",
      "          'maintain': 1,\n",
      "          'viewers': 1,\n",
      "          'attention': 1,\n",
      "          'predictable': 1,\n",
      "          'unexciting': 1,\n",
      "          'idiotic': 1,\n",
      "          'script': 1,\n",
      "          'nalex': 1,\n",
      "          'ill': 1,\n",
      "          'take': 1,\n",
      "          'homicide': 1,\n",
      "          '400': 1,\n",
      "          'parsons': 1,\n",
      "          'happily': 1,\n",
      "          'married': 1,\n",
      "          'mom': 1,\n",
      "          'leading': 1,\n",
      "          'normal': 1,\n",
      "          'life': 1,\n",
      "          'greenwood': 1,\n",
      "          'takes': 1,\n",
      "          'romantic': 1,\n",
      "          'escape': 1,\n",
      "          'sailboat': 1,\n",
      "          'awakens': 1,\n",
      "          'middle': 1,\n",
      "          'find': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'strangely': 1,\n",
      "          'disappeared': 1,\n",
      "          'nshe': 1,\n",
      "          'follows': 1,\n",
      "          'trail': 1,\n",
      "          'bloody': 1,\n",
      "          'footprints': 1,\n",
      "          'deck': 1,\n",
      "          'handles': 1,\n",
      "          'fallen': 1,\n",
      "          'knife': 1,\n",
      "          'stupid': 1,\n",
      "          'spotted': 1,\n",
      "          'coast': 1,\n",
      "          'guard': 1,\n",
      "          'responding': 1,\n",
      "          'distress': 1,\n",
      "          'signal': 1,\n",
      "          'sent': 1,\n",
      "          'earlier': 1,\n",
      "          'evening': 1,\n",
      "          'nnick': 1,\n",
      "          'presumed': 1,\n",
      "          'dead': 1,\n",
      "          'pleads': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'innocence': 1,\n",
      "          'tried': 1,\n",
      "          'murder': 1,\n",
      "          'nnow': 1,\n",
      "          'please': 1,\n",
      "          'think': 1,\n",
      "          'im': 1,\n",
      "          'spoiling': 1,\n",
      "          'informative': 1,\n",
      "          'trailer': 1,\n",
      "          'already': 1,\n",
      "          'spilled': 1,\n",
      "          'beans': 1,\n",
      "          'nif': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'preview': 1,\n",
      "          'read': 1,\n",
      "          'seriously': 1,\n",
      "          'inane': 1,\n",
      "          'screenplay': 1,\n",
      "          'weisberg': 1,\n",
      "          'cook': 1,\n",
      "          'elementary': 1,\n",
      "          'average': 1,\n",
      "          'viewer': 1,\n",
      "          'three': 1,\n",
      "          'steps': 1,\n",
      "          'ahead': 1,\n",
      "          'characters': 1,\n",
      "          'nduring': 1,\n",
      "          'anticipating': 1,\n",
      "          'every': 1,\n",
      "          'twist': 1,\n",
      "          'surprise': 1,\n",
      "          'eventually': 1,\n",
      "          'popped': 1,\n",
      "          'screen': 1,\n",
      "          'ni': 1,\n",
      "          'imagine': 1,\n",
      "          'writers': 1,\n",
      "          'presume': 1,\n",
      "          'core': 1,\n",
      "          'audience': 1,\n",
      "          'naive': 1,\n",
      "          'group': 1,\n",
      "          'individuals': 1,\n",
      "          'nmost': 1,\n",
      "          'unfortunately': 1,\n",
      "          'distracted': 1,\n",
      "          'moronic': 1,\n",
      "          'appreciate': 1,\n",
      "          'positive': 1,\n",
      "          'aspects': 1,\n",
      "          'production': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'plays': 1,\n",
      "          'travis': 1,\n",
      "          'lehman': 1,\n",
      "          'given': 1,\n",
      "          'tedious': 1,\n",
      "          'task': 1,\n",
      "          'watching': 1,\n",
      "          'serves': 1,\n",
      "          'sentence': 1,\n",
      "          'prison': 1,\n",
      "          'njones': 1,\n",
      "          'always': 1,\n",
      "          'wonderful': 1,\n",
      "          'authority': 1,\n",
      "          'figure': 1,\n",
      "          'hes': 1,\n",
      "          'certainly': 1,\n",
      "          'familiar': 1,\n",
      "          'sort': 1,\n",
      "          'played': 1,\n",
      "          'us': 1,\n",
      "          'marshals': 1,\n",
      "          'likable': 1,\n",
      "          'heroin': 1,\n",
      "          'gusto': 1,\n",
      "          'also': 1,\n",
      "          'chance': 1,\n",
      "          'flex': 1,\n",
      "          'acting': 1,\n",
      "          'abilities': 1,\n",
      "          'emotionally': 1,\n",
      "          'unconvincing': 1,\n",
      "          'actress': 1,\n",
      "          'tremendously': 1,\n",
      "          'fun': 1,\n",
      "          'juvenile': 1,\n",
      "          'perking': 1,\n",
      "          'injection': 1,\n",
      "          'antidepressant': 1,\n",
      "          'actors': 1,\n",
      "          'relationship': 1,\n",
      "          'together': 1,\n",
      "          'present': 1,\n",
      "          'onetwo': 1,\n",
      "          'punch': 1,\n",
      "          'prevents': 1,\n",
      "          'derailing': 1,\n",
      "          'entirely': 1,\n",
      "          'nand': 1,\n",
      "          'back': 1,\n",
      "          'behind': 1,\n",
      "          'bars': 1,\n",
      "          'learns': 1,\n",
      "          'interesting': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'information': 1,\n",
      "          'person': 1,\n",
      "          'cant': 1,\n",
      "          'crime': 1,\n",
      "          'twice': 1,\n",
      "          'nthis': 1,\n",
      "          'law': 1,\n",
      "          'called': 1,\n",
      "          'motive': 1,\n",
      "          'hunting': 1,\n",
      "          'nwho': 1,\n",
      "          'may': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'nyes': 1,\n",
      "          'heard': 1,\n",
      "          'right': 1,\n",
      "          'degenerates': 1,\n",
      "          'crosscountry': 1,\n",
      "          'chase': 1,\n",
      "          'everything': 1,\n",
      "          'expect': 1,\n",
      "          'happen': 1,\n",
      "          'ndoes': 1,\n",
      "          'final': 1,\n",
      "          'redeemed': 1,\n",
      "          'poorly': 1,\n",
      "          'handled': 1,\n",
      "          'director': 1,\n",
      "          'beresford': 1,\n",
      "          'whose': 1,\n",
      "          'previous': 1,\n",
      "          'centers': 1,\n",
      "          'highly': 1,\n",
      "          'around': 1,\n",
      "          'drama': 1,\n",
      "          'miss': 1,\n",
      "          'daisy': 1,\n",
      "          'paradise': 1,\n",
      "          'road': 1,\n",
      "          'nironically': 1,\n",
      "          'elements': 1,\n",
      "          'force': 1,\n",
      "          'reunite': 1,\n",
      "          'son': 1,\n",
      "          'quite': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'paced': 1,\n",
      "          'enough': 1,\n",
      "          'satisfy': 1,\n",
      "          'diehard': 1,\n",
      "          'fans': 1,\n",
      "          'stars': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'lacks': 1,\n",
      "          'edge': 1,\n",
      "          'sam': 1,\n",
      "          'gerard': 1,\n",
      "          'real': 1,\n",
      "          'depth': 1,\n",
      "          'skin': 1,\n",
      "          'deep': 1,\n",
      "          'welcome': 1,\n",
      "          'considering': 1,\n",
      "          'material': 1,\n",
      "          'memorable': 1,\n",
      "          'comic': 1,\n",
      "          'moments': 1,\n",
      "          'particular': 1,\n",
      "          'hilarious': 1,\n",
      "          'scene': 1,\n",
      "          'wards': 1,\n",
      "          'oncoming': 1,\n",
      "          'male': 1,\n",
      "          'explaining': 1,\n",
      "          'check': 1,\n",
      "          'nhmmm': 1,\n",
      "          'nperhaps': 1,\n",
      "          'would': 1,\n",
      "          'made': 1,\n",
      "          'good': 1,\n",
      "          'comedy': 1,\n",
      "          'nit': 1,\n",
      "          'disappointing': 1,\n",
      "          'makings': 1,\n",
      "          'competent': 1,\n",
      "          'action': 1,\n",
      "          'nits': 1,\n",
      "          'nicely': 1,\n",
      "          'shot': 1,\n",
      "          'choreographed': 1,\n",
      "          'downtown': 1,\n",
      "          'vancouver': 1,\n",
      "          'entertain': 1,\n",
      "          'arent': 1,\n",
      "          'turned': 1,\n",
      "          'woeful': 1,\n",
      "          'storyline': 1,\n",
      "          'n': 1,\n",
      "          'tis': 1,\n",
      "          'shame': 1,\n",
      "          'adult': 1,\n",
      "          'wouldnt': 1,\n",
      "          'fool': 1,\n",
      "          'children': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'doug': 5,\n",
      "          'melissa': 4,\n",
      "          'girlfriend': 3,\n",
      "          'like': 3,\n",
      "          'suspenseful': 3,\n",
      "          'nshe': 3,\n",
      "          'one': 3,\n",
      "          'likes': 2,\n",
      "          'baseball': 2,\n",
      "          'maliciously': 2,\n",
      "          'revenge': 2,\n",
      "          'thriller': 2,\n",
      "          'dozens': 2,\n",
      "          'etc': 2,\n",
      "          'nmalicious': 2,\n",
      "          'however': 2,\n",
      "          'really': 2,\n",
      "          'nthe': 2,\n",
      "          'starts': 2,\n",
      "          'film': 2,\n",
      "          'try': 2,\n",
      "          'seems': 2,\n",
      "          'number': 2,\n",
      "          'supposed': 2,\n",
      "          'good': 2,\n",
      "          'nat': 2,\n",
      "          'times': 2,\n",
      "          'isnt': 2,\n",
      "          'synopsis': 1,\n",
      "          'mentallydisturbed': 1,\n",
      "          'woman': 1,\n",
      "          'smoke': 1,\n",
      "          'seduces': 1,\n",
      "          'minorleague': 1,\n",
      "          'player': 1,\n",
      "          'study': 1,\n",
      "          'anatomy': 1,\n",
      "          'work': 1,\n",
      "          'motorcycles': 1,\n",
      "          'make': 1,\n",
      "          'public': 1,\n",
      "          'library': 1,\n",
      "          'nwhen': 1,\n",
      "          'decides': 1,\n",
      "          'stop': 1,\n",
      "          'seeing': 1,\n",
      "          'takes': 1,\n",
      "          'around': 1,\n",
      "          'including': 1,\n",
      "          'mother': 1,\n",
      "          'cat': 1,\n",
      "          'ncomments': 1,\n",
      "          'malicious': 1,\n",
      "          'suppose': 1,\n",
      "          'acceptable': 1,\n",
      "          'moview': 1,\n",
      "          'cheap': 1,\n",
      "          'bmovie': 1,\n",
      "          'rips': 1,\n",
      "          'spurnedpsycholoverwhowantsrevenge': 1,\n",
      "          'films': 1,\n",
      "          'fatal': 1,\n",
      "          'attraction': 1,\n",
      "          'hand': 1,\n",
      "          'rocks': 1,\n",
      "          'cradle': 1,\n",
      "          'come': 1,\n",
      "          'doesnt': 1,\n",
      "          'provide': 1,\n",
      "          'many': 1,\n",
      "          'particularly': 1,\n",
      "          'moments': 1,\n",
      "          'plot': 1,\n",
      "          'energetically': 1,\n",
      "          'enough': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'introduced': 1,\n",
      "          'affair': 1,\n",
      "          'begins': 1,\n",
      "          'ends': 1,\n",
      "          'pretty': 1,\n",
      "          'early': 1,\n",
      "          'nit': 1,\n",
      "          'drag': 1,\n",
      "          'unfortunately': 1,\n",
      "          'nmelissa': 1,\n",
      "          'obviously': 1,\n",
      "          'take': 1,\n",
      "          'always': 1,\n",
      "          'happen': 1,\n",
      "          'movies': 1,\n",
      "          'unimaginative': 1,\n",
      "          'ways': 1,\n",
      "          'done': 1,\n",
      "          'better': 1,\n",
      "          'thrillers': 1,\n",
      "          'drugs': 1,\n",
      "          'someone': 1,\n",
      "          'kills': 1,\n",
      "          'family': 1,\n",
      "          'pet': 1,\n",
      "          'leaves': 1,\n",
      "          'girlfriends': 1,\n",
      "          'apartment': 1,\n",
      "          'nand': 1,\n",
      "          'course': 1,\n",
      "          'stalks': 1,\n",
      "          'see': 1,\n",
      "          'shots': 1,\n",
      "          'shes': 1,\n",
      "          'spying': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'reveal': 1,\n",
      "          'ludicrous': 1,\n",
      "          'ending': 1,\n",
      "          'turkey': 1,\n",
      "          'warn': 1,\n",
      "          'painfully': 1,\n",
      "          'obvious': 1,\n",
      "          'real': 1,\n",
      "          'yawner': 1,\n",
      "          'njohn': 1,\n",
      "          'vernon': 1,\n",
      "          'remarkably': 1,\n",
      "          'job': 1,\n",
      "          'playing': 1,\n",
      "          'notsobright': 1,\n",
      "          'jock': 1,\n",
      "          'initially': 1,\n",
      "          'gets': 1,\n",
      "          'swept': 1,\n",
      "          'away': 1,\n",
      "          'scripts': 1,\n",
      "          'faults': 1,\n",
      "          'pass': 1,\n",
      "          'character': 1,\n",
      "          'premed': 1,\n",
      "          'student': 1,\n",
      "          'said': 1,\n",
      "          'though': 1,\n",
      "          'molly': 1,\n",
      "          'ringwald': 1,\n",
      "          'effectively': 1,\n",
      "          'pull': 1,\n",
      "          'obsessed': 1,\n",
      "          'lover': 1,\n",
      "          'routine': 1,\n",
      "          'especially': 1,\n",
      "          'silent': 1,\n",
      "          'imgoingtostareyoudown': 1,\n",
      "          'scenes': 1,\n",
      "          'somehow': 1,\n",
      "          'goofy': 1,\n",
      "          'place': 1,\n",
      "          'nin': 1,\n",
      "          'particular': 1,\n",
      "          'scene': 1,\n",
      "          'guess': 1,\n",
      "          'screeches': 1,\n",
      "          'fk': 1,\n",
      "          'bd': 1,\n",
      "          'throws': 1,\n",
      "          'phone': 1,\n",
      "          'delivers': 1,\n",
      "          'line': 1,\n",
      "          'ridiculously': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'laugh': 1,\n",
      "          'certainly': 1,\n",
      "          'worst': 1,\n",
      "          'kind': 1,\n",
      "          'video': 1,\n",
      "          'racks': 1,\n",
      "          'fat': 1,\n",
      "          'turkies': 1,\n",
      "          'genre': 1,\n",
      "          'original': 1,\n",
      "          'either': 1,\n",
      "          'nfeel': 1,\n",
      "          'free': 1,\n",
      "          'treat': 1,\n",
      "          'watch': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 10,\n",
      "          'film': 7,\n",
      "          'message': 5,\n",
      "          'bottle': 5,\n",
      "          'theresa': 5,\n",
      "          'also': 4,\n",
      "          'nthis': 4,\n",
      "          'one': 4,\n",
      "          'simply': 4,\n",
      "          'di': 3,\n",
      "          'pego': 3,\n",
      "          'costner': 3,\n",
      "          'wrightpenn': 3,\n",
      "          'newman': 3,\n",
      "          'douglas': 3,\n",
      "          'time': 3,\n",
      "          'little': 3,\n",
      "          'chicago': 3,\n",
      "          'two': 3,\n",
      "          'way': 3,\n",
      "          'since': 3,\n",
      "          'nmessage': 3,\n",
      "          'romantic': 3,\n",
      "          '1998': 3,\n",
      "          'warner': 2,\n",
      "          'brothers': 2,\n",
      "          'gerald': 2,\n",
      "          'novel': 2,\n",
      "          'nicholas': 2,\n",
      "          'sparks': 2,\n",
      "          'kevin': 2,\n",
      "          'robin': 2,\n",
      "          'paul': 2,\n",
      "          'illeana': 2,\n",
      "          'robbie': 2,\n",
      "          'coltrane': 2,\n",
      "          'jesse': 2,\n",
      "          'james': 2,\n",
      "          'john': 2,\n",
      "          'savage': 2,\n",
      "          'overly': 2,\n",
      "          'nthere': 2,\n",
      "          'romances': 2,\n",
      "          'nhowever': 2,\n",
      "          'brings': 2,\n",
      "          'us': 2,\n",
      "          'romance': 2,\n",
      "          'going': 2,\n",
      "          'story': 2,\n",
      "          'boring': 2,\n",
      "          'tribune': 2,\n",
      "          'recent': 2,\n",
      "          'letter': 2,\n",
      "          'written': 2,\n",
      "          'woman': 2,\n",
      "          'best': 2,\n",
      "          'city': 2,\n",
      "          'turns': 2,\n",
      "          'garret': 2,\n",
      "          'attractive': 2,\n",
      "          'first': 2,\n",
      "          'relationship': 2,\n",
      "          'discovery': 2,\n",
      "          'garrets': 2,\n",
      "          'really': 2,\n",
      "          'dead': 2,\n",
      "          'played': 2,\n",
      "          'na': 2,\n",
      "          'horse': 2,\n",
      "          'nthey': 2,\n",
      "          'technical': 2,\n",
      "          'enough': 2,\n",
      "          'especially': 2,\n",
      "          'characters': 2,\n",
      "          'real': 2,\n",
      "          'scene': 2,\n",
      "          'look': 2,\n",
      "          'times': 2,\n",
      "          'rated': 1,\n",
      "          'pg13': 1,\n",
      "          'mild': 1,\n",
      "          'violence': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          '132': 1,\n",
      "          'minutes': 1,\n",
      "          'ndirector': 1,\n",
      "          'luis': 1,\n",
      "          'mandoki': 1,\n",
      "          'nscreenplay': 1,\n",
      "          'ncast': 1,\n",
      "          'nreview': 1,\n",
      "          'geoff': 1,\n",
      "          'berkshire': 1,\n",
      "          'nim': 1,\n",
      "          'cynical': 1,\n",
      "          'guy': 1,\n",
      "          'many': 1,\n",
      "          'glossy': 1,\n",
      "          'hollywood': 1,\n",
      "          'carried': 1,\n",
      "          'away': 1,\n",
      "          'romanticism': 1,\n",
      "          'years': 1,\n",
      "          'limits': 1,\n",
      "          'standards': 1,\n",
      "          'subject': 1,\n",
      "          'hand': 1,\n",
      "          'big': 1,\n",
      "          'ticket': 1,\n",
      "          'unleashed': 1,\n",
      "          'upon': 1,\n",
      "          'movie': 1,\n",
      "          'public': 1,\n",
      "          'valentines': 1,\n",
      "          'day': 1,\n",
      "          'involves': 1,\n",
      "          'reporter': 1,\n",
      "          'osborne': 1,\n",
      "          'dealing': 1,\n",
      "          'divorce': 1,\n",
      "          'trying': 1,\n",
      "          'raise': 1,\n",
      "          'young': 1,\n",
      "          'son': 1,\n",
      "          'jason': 1,\n",
      "          'nduring': 1,\n",
      "          'brief': 1,\n",
      "          'stay': 1,\n",
      "          'somewhere': 1,\n",
      "          'new': 1,\n",
      "          'england': 1,\n",
      "          'finds': 1,\n",
      "          'titular': 1,\n",
      "          'morning': 1,\n",
      "          'run': 1,\n",
      "          'ocean': 1,\n",
      "          'mystery': 1,\n",
      "          'named': 1,\n",
      "          'catherine': 1,\n",
      "          'instantly': 1,\n",
      "          'captivates': 1,\n",
      "          'nupon': 1,\n",
      "          'return': 1,\n",
      "          'shares': 1,\n",
      "          'friend': 1,\n",
      "          'lina': 1,\n",
      "          'boss': 1,\n",
      "          'charlie': 1,\n",
      "          'entire': 1,\n",
      "          'newspaper': 1,\n",
      "          'publishes': 1,\n",
      "          'article': 1,\n",
      "          'nit': 1,\n",
      "          'grieving': 1,\n",
      "          'widower': 1,\n",
      "          'blake': 1,\n",
      "          'travels': 1,\n",
      "          'north': 1,\n",
      "          'carolina': 1,\n",
      "          'tracks': 1,\n",
      "          'nhe': 1,\n",
      "          'colorful': 1,\n",
      "          'father': 1,\n",
      "          'otherwise': 1,\n",
      "          'perfectly': 1,\n",
      "          'dull': 1,\n",
      "          'obsessed': 1,\n",
      "          'sailing': 1,\n",
      "          'somehow': 1,\n",
      "          'begin': 1,\n",
      "          'awkward': 1,\n",
      "          'courtship': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'doesnt': 1,\n",
      "          'tell': 1,\n",
      "          'found': 1,\n",
      "          'wants': 1,\n",
      "          'rules': 1,\n",
      "          'type': 1,\n",
      "          'require': 1,\n",
      "          'find': 1,\n",
      "          'later': 1,\n",
      "          'preferably': 1,\n",
      "          'right': 1,\n",
      "          'make': 1,\n",
      "          'love': 1,\n",
      "          'get': 1,\n",
      "          'angry': 1,\n",
      "          'threatened': 1,\n",
      "          'discovered': 1,\n",
      "          'noteworthy': 1,\n",
      "          'events': 1,\n",
      "          'happen': 1,\n",
      "          'nearly': 1,\n",
      "          'quarter': 1,\n",
      "          'hour': 1,\n",
      "          'running': 1,\n",
      "          'ntheres': 1,\n",
      "          'truly': 1,\n",
      "          'lame': 1,\n",
      "          'subplot': 1,\n",
      "          'wifes': 1,\n",
      "          'family': 1,\n",
      "          'gets': 1,\n",
      "          'bar': 1,\n",
      "          'fight': 1,\n",
      "          'brother': 1,\n",
      "          'necessary': 1,\n",
      "          'tearjerking': 1,\n",
      "          'ending': 1,\n",
      "          'fun': 1,\n",
      "          'pass': 1,\n",
      "          'take': 1,\n",
      "          'bets': 1,\n",
      "          'exactly': 1,\n",
      "          'die': 1,\n",
      "          'although': 1,\n",
      "          'becomes': 1,\n",
      "          'pretty': 1,\n",
      "          'clear': 1,\n",
      "          'second': 1,\n",
      "          'reel': 1,\n",
      "          'actual': 1,\n",
      "          'death': 1,\n",
      "          'sequence': 1,\n",
      "          'ridiculously': 1,\n",
      "          'forced': 1,\n",
      "          'unintentionally': 1,\n",
      "          'humorous': 1,\n",
      "          'sequences': 1,\n",
      "          'filmed': 1,\n",
      "          'nwell': 1,\n",
      "          'costners': 1,\n",
      "          'postman': 1,\n",
      "          '1997': 1,\n",
      "          'slow': 1,\n",
      "          'moving': 1,\n",
      "          'nlast': 1,\n",
      "          'year': 1,\n",
      "          'audiences': 1,\n",
      "          'offered': 1,\n",
      "          'endurance': 1,\n",
      "          'tests': 1,\n",
      "          'whisperer': 1,\n",
      "          'meet': 1,\n",
      "          'joe': 1,\n",
      "          'black': 1,\n",
      "          'films': 1,\n",
      "          'resemble': 1,\n",
      "          'jerry': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'productions': 1,\n",
      "          'next': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'form': 1,\n",
      "          'quality': 1,\n",
      "          'performances': 1,\n",
      "          'stand': 1,\n",
      "          'work': 1,\n",
      "          'decent': 1,\n",
      "          'cast': 1,\n",
      "          'theyre': 1,\n",
      "          'fighting': 1,\n",
      "          'material': 1,\n",
      "          'losing': 1,\n",
      "          'badly': 1,\n",
      "          'ncostner': 1,\n",
      "          'likable': 1,\n",
      "          'cheer': 1,\n",
      "          'fail': 1,\n",
      "          'generate': 1,\n",
      "          'kind': 1,\n",
      "          'chemistry': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'given': 1,\n",
      "          'reliable': 1,\n",
      "          'particularly': 1,\n",
      "          'wasted': 1,\n",
      "          'nold': 1,\n",
      "          'pro': 1,\n",
      "          'gives': 1,\n",
      "          'occasionally': 1,\n",
      "          'threatens': 1,\n",
      "          'kick': 1,\n",
      "          'life': 1,\n",
      "          'confrontational': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'well': 1,\n",
      "          'frequently': 1,\n",
      "          'reminds': 1,\n",
      "          'unexciting': 1,\n",
      "          'lead': 1,\n",
      "          'polished': 1,\n",
      "          'side': 1,\n",
      "          'sure': 1,\n",
      "          'works': 1,\n",
      "          'undercut': 1,\n",
      "          'ngabriel': 1,\n",
      "          'yared': 1,\n",
      "          'previously': 1,\n",
      "          'set': 1,\n",
      "          'moods': 1,\n",
      "          'english': 1,\n",
      "          'patient': 1,\n",
      "          '1996': 1,\n",
      "          'angels': 1,\n",
      "          'scores': 1,\n",
      "          'overdoes': 1,\n",
      "          'bit': 1,\n",
      "          'ncaleb': 1,\n",
      "          'deschanels': 1,\n",
      "          'camera': 1,\n",
      "          'makes': 1,\n",
      "          'everything': 1,\n",
      "          'beautiful': 1,\n",
      "          'ndo': 1,\n",
      "          'offices': 1,\n",
      "          'need': 1,\n",
      "          'heavenly': 1,\n",
      "          'editing': 1,\n",
      "          'steven': 1,\n",
      "          'weisberg': 1,\n",
      "          'troubling': 1,\n",
      "          'considering': 1,\n",
      "          'could': 1,\n",
      "          'cut': 1,\n",
      "          'messy': 1,\n",
      "          'offender': 1,\n",
      "          'screenwriter': 1,\n",
      "          'nworking': 1,\n",
      "          'selling': 1,\n",
      "          'read': 1,\n",
      "          'told': 1,\n",
      "          'literary': 1,\n",
      "          'level': 1,\n",
      "          'bridges': 1,\n",
      "          'madison': 1,\n",
      "          'county': 1,\n",
      "          'creates': 1,\n",
      "          'uninspired': 1,\n",
      "          'scripts': 1,\n",
      "          'nits': 1,\n",
      "          'strict': 1,\n",
      "          'adherence': 1,\n",
      "          'clich': 1,\n",
      "          'mind': 1,\n",
      "          'disasters': 1,\n",
      "          'still': 1,\n",
      "          'know': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'isnt': 1,\n",
      "          'original': 1,\n",
      "          'dialogue': 1,\n",
      "          'rarely': 1,\n",
      "          'better': 1,\n",
      "          'laughable': 1,\n",
      "          'accentuated': 1,\n",
      "          'excessively': 1,\n",
      "          'long': 1,\n",
      "          'pauses': 1,\n",
      "          'every': 1,\n",
      "          'character': 1,\n",
      "          'takes': 1,\n",
      "          'speaking': 1,\n",
      "          'director': 1,\n",
      "          'mandokis': 1,\n",
      "          'man': 1,\n",
      "          'loves': 1,\n",
      "          '1994': 1,\n",
      "          'solid': 1,\n",
      "          'meg': 1,\n",
      "          'ryanandy': 1,\n",
      "          'garcia': 1,\n",
      "          'nhes': 1,\n",
      "          'motions': 1,\n",
      "          'easily': 1,\n",
      "          'worst': 1,\n",
      "          'several': 1,\n",
      "          'offerings': 1,\n",
      "          'available': 1,\n",
      "          'theaters': 1,\n",
      "          'moment': 1,\n",
      "          'vies': 1,\n",
      "          'dreams': 1,\n",
      "          'may': 1,\n",
      "          'come': 1,\n",
      "          'misguided': 1,\n",
      "          'decade': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hanging': 8,\n",
      "          'sisters': 5,\n",
      "          'nthe': 4,\n",
      "          'time': 4,\n",
      "          'melodramatic': 3,\n",
      "          'film': 3,\n",
      "          'keaton': 3,\n",
      "          'phone': 2,\n",
      "          'side': 2,\n",
      "          'like': 2,\n",
      "          'opportunity': 2,\n",
      "          'ryan': 2,\n",
      "          'kudrow': 2,\n",
      "          'career': 2,\n",
      "          'matthau': 2,\n",
      "          'ephron': 2,\n",
      "          'two': 2,\n",
      "          'nfor': 2,\n",
      "          'conversations': 2,\n",
      "          'character': 2,\n",
      "          'development': 2,\n",
      "          'annoying': 2,\n",
      "          'minutes': 2,\n",
      "          'everyone': 2,\n",
      "          'issues': 2,\n",
      "          'nbut': 2,\n",
      "          'attempts': 2,\n",
      "          'daughter': 2,\n",
      "          'one': 2,\n",
      "          'ngeorgia': 2,\n",
      "          'chuckles': 2,\n",
      "          'three': 2,\n",
      "          'four': 2,\n",
      "          'certainly': 2,\n",
      "          'nits': 2,\n",
      "          'disconnect': 1,\n",
      "          'line': 1,\n",
      "          'ndont': 1,\n",
      "          'accept': 1,\n",
      "          'charges': 1,\n",
      "          'ndo': 1,\n",
      "          'anything': 1,\n",
      "          'avoid': 1,\n",
      "          'wretched': 1,\n",
      "          'sisterhood': 1,\n",
      "          'dramedy': 1,\n",
      "          'ni': 1,\n",
      "          'figured': 1,\n",
      "          'needed': 1,\n",
      "          'get': 1,\n",
      "          'touch': 1,\n",
      "          'feminine': 1,\n",
      "          'seemed': 1,\n",
      "          'ideal': 1,\n",
      "          'features': 1,\n",
      "          'incredible': 1,\n",
      "          'palate': 1,\n",
      "          'female': 1,\n",
      "          'talent': 1,\n",
      "          'capability': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'brought': 1,\n",
      "          'mind': 1,\n",
      "          'sparkling': 1,\n",
      "          'gems': 1,\n",
      "          'sleepless': 1,\n",
      "          'seattle': 1,\n",
      "          'unsung': 1,\n",
      "          'heroes': 1,\n",
      "          'nmeg': 1,\n",
      "          'diane': 1,\n",
      "          'lisa': 1,\n",
      "          'play': 1,\n",
      "          'trio': 1,\n",
      "          'separated': 1,\n",
      "          'judgments': 1,\n",
      "          'family': 1,\n",
      "          'ties': 1,\n",
      "          'must': 1,\n",
      "          'reunite': 1,\n",
      "          'father': 1,\n",
      "          'walter': 1,\n",
      "          'admitted': 1,\n",
      "          'hospital': 1,\n",
      "          'alzheimers': 1,\n",
      "          'disease': 1,\n",
      "          'nwhile': 1,\n",
      "          'may': 1,\n",
      "          'read': 1,\n",
      "          'optimum': 1,\n",
      "          'rekindle': 1,\n",
      "          'relationship': 1,\n",
      "          'reflect': 1,\n",
      "          'poignancy': 1,\n",
      "          'past': 1,\n",
      "          'script': 1,\n",
      "          'delia': 1,\n",
      "          'nora': 1,\n",
      "          'exasperating': 1,\n",
      "          'shapeless': 1,\n",
      "          'dreck': 1,\n",
      "          'teeming': 1,\n",
      "          'emotional': 1,\n",
      "          'fakery': 1,\n",
      "          'nhanging': 1,\n",
      "          'overall': 1,\n",
      "          'effect': 1,\n",
      "          'telemarketer': 1,\n",
      "          'pestering': 1,\n",
      "          'hours': 1,\n",
      "          'dont': 1,\n",
      "          'option': 1,\n",
      "          'title': 1,\n",
      "          'suggests': 1,\n",
      "          'first': 1,\n",
      "          'halfhour': 1,\n",
      "          'use': 1,\n",
      "          'telephone': 1,\n",
      "          'basis': 1,\n",
      "          'nthis': 1,\n",
      "          'ineffective': 1,\n",
      "          'device': 1,\n",
      "          'ncellphones': 1,\n",
      "          'ring': 1,\n",
      "          'every': 1,\n",
      "          'five': 1,\n",
      "          'hurriedly': 1,\n",
      "          'rushes': 1,\n",
      "          'along': 1,\n",
      "          'leaving': 1,\n",
      "          'marginal': 1,\n",
      "          'frustrated': 1,\n",
      "          'viewer': 1,\n",
      "          'relate': 1,\n",
      "          'problems': 1,\n",
      "          'nif': 1,\n",
      "          'apple': 1,\n",
      "          'pie': 1,\n",
      "          'felt': 1,\n",
      "          'getting': 1,\n",
      "          'mere': 1,\n",
      "          'crust': 1,\n",
      "          'story': 1,\n",
      "          'ngranted': 1,\n",
      "          'genuine': 1,\n",
      "          'sincere': 1,\n",
      "          'moments': 1,\n",
      "          'help': 1,\n",
      "          'establish': 1,\n",
      "          'remainder': 1,\n",
      "          'strained': 1,\n",
      "          'emotions': 1,\n",
      "          'nothing': 1,\n",
      "          'inferior': 1,\n",
      "          'dramatic': 1,\n",
      "          'muck': 1,\n",
      "          'outrageous': 1,\n",
      "          'strategy': 1,\n",
      "          'series': 1,\n",
      "          'largely': 1,\n",
      "          'unrealized': 1,\n",
      "          'expected': 1,\n",
      "          'exhibit': 1,\n",
      "          'compassion': 1,\n",
      "          'courtesy': 1,\n",
      "          'toward': 1,\n",
      "          'join': 1,\n",
      "          'finale': 1,\n",
      "          'nwe': 1,\n",
      "          'able': 1,\n",
      "          'identify': 1,\n",
      "          'eve': 1,\n",
      "          'open': 1,\n",
      "          'caring': 1,\n",
      "          'stayed': 1,\n",
      "          'fathers': 1,\n",
      "          'else': 1,\n",
      "          'moved': 1,\n",
      "          'forward': 1,\n",
      "          'pursue': 1,\n",
      "          'impending': 1,\n",
      "          'eldest': 1,\n",
      "          'celebrating': 1,\n",
      "          'fifth': 1,\n",
      "          'year': 1,\n",
      "          'anniversary': 1,\n",
      "          'magazine': 1,\n",
      "          'called': 1,\n",
      "          'nmaddy': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'actress': 1,\n",
      "          'spends': 1,\n",
      "          'either': 1,\n",
      "          'contemplating': 1,\n",
      "          'possible': 1,\n",
      "          'path': 1,\n",
      "          'stardom': 1,\n",
      "          'nursing': 1,\n",
      "          'dog': 1,\n",
      "          'nryans': 1,\n",
      "          'convincing': 1,\n",
      "          'performance': 1,\n",
      "          'diverting': 1,\n",
      "          'cuteness': 1,\n",
      "          'agreeable': 1,\n",
      "          'aspects': 1,\n",
      "          'nkudrow': 1,\n",
      "          'delightfully': 1,\n",
      "          'eccentric': 1,\n",
      "          'offkilter': 1,\n",
      "          'airhead': 1,\n",
      "          'phoebe': 1,\n",
      "          'friends': 1,\n",
      "          'totally': 1,\n",
      "          'wasted': 1,\n",
      "          'nditto': 1,\n",
      "          'serving': 1,\n",
      "          'double': 1,\n",
      "          'shift': 1,\n",
      "          'costar': 1,\n",
      "          'director': 1,\n",
      "          'slot': 1,\n",
      "          'difficult': 1,\n",
      "          'priority': 1,\n",
      "          'juggle': 1,\n",
      "          'nher': 1,\n",
      "          'frenzy': 1,\n",
      "          'apparent': 1,\n",
      "          'chick': 1,\n",
      "          'flick': 1,\n",
      "          'distressing': 1,\n",
      "          'lack': 1,\n",
      "          'reliable': 1,\n",
      "          'reduced': 1,\n",
      "          'chaotic': 1,\n",
      "          'shtick': 1,\n",
      "          'given': 1,\n",
      "          'characters': 1,\n",
      "          'situation': 1,\n",
      "          'seems': 1,\n",
      "          'depressing': 1,\n",
      "          'amusing': 1,\n",
      "          'neven': 1,\n",
      "          'peak': 1,\n",
      "          'form': 1,\n",
      "          'humor': 1,\n",
      "          'represented': 1,\n",
      "          'matthaus': 1,\n",
      "          'nasty': 1,\n",
      "          'quips': 1,\n",
      "          'ryans': 1,\n",
      "          'eternal': 1,\n",
      "          'battle': 1,\n",
      "          'aforementioned': 1,\n",
      "          'pooch': 1,\n",
      "          'swallow': 1,\n",
      "          'pill': 1,\n",
      "          'nthat': 1,\n",
      "          'accounts': 1,\n",
      "          'expel': 1,\n",
      "          'nmy': 1,\n",
      "          'curiosity': 1,\n",
      "          'suddenly': 1,\n",
      "          'tweaked': 1,\n",
      "          'discover': 1,\n",
      "          'promising': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'starstudded': 1,\n",
      "          'approach': 1,\n",
      "          'could': 1,\n",
      "          'turn': 1,\n",
      "          'viciously': 1,\n",
      "          'sour': 1,\n",
      "          'really': 1,\n",
      "          'mystery': 1,\n",
      "          'predictable': 1,\n",
      "          'filth': 1,\n",
      "          'fault': 1,\n",
      "          'actresses': 1,\n",
      "          'npin': 1,\n",
      "          'screenplay': 1,\n",
      "          'clear': 1,\n",
      "          'vital': 1,\n",
      "          'spending': 1,\n",
      "          'rest': 1,\n",
      "          'running': 1,\n",
      "          'flurry': 1,\n",
      "          'far': 1,\n",
      "          'cry': 1,\n",
      "          'would': 1,\n",
      "          'label': 1,\n",
      "          'rewarding': 1,\n",
      "          'experience': 1,\n",
      "          'least': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nuhuh': 1,\n",
      "          'wrong': 1,\n",
      "          'number': 1,\n",
      "          'beginning': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'nexistenz': 4,\n",
      "          'existenz': 4,\n",
      "          'nthe': 3,\n",
      "          'game': 3,\n",
      "          'rather': 2,\n",
      "          'opening': 2,\n",
      "          'sequence': 2,\n",
      "          'neoreality': 2,\n",
      "          'reality': 2,\n",
      "          'actually': 2,\n",
      "          'new': 2,\n",
      "          'games': 2,\n",
      "          'n': 2,\n",
      "          'leigh': 2,\n",
      "          'ultimate': 2,\n",
      "          'form': 2,\n",
      "          'enjoy': 2,\n",
      "          'assassination': 2,\n",
      "          'attempt': 2,\n",
      "          'law': 2,\n",
      "          'anything': 2,\n",
      "          'else': 2,\n",
      "          'still': 2,\n",
      "          'expected': 2,\n",
      "          'videodrome': 2,\n",
      "          'even': 2,\n",
      "          'probably': 2,\n",
      "          'looked': 2,\n",
      "          'cronenberg': 2,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'approximately': 1,\n",
      "          '1hr': 1,\n",
      "          '40mins': 1,\n",
      "          'nreviewed': 1,\n",
      "          'jack': 1,\n",
      "          'choo': 1,\n",
      "          'nrating': 1,\n",
      "          'movie': 1,\n",
      "          'starts': 1,\n",
      "          'se7enish': 1,\n",
      "          'cool': 1,\n",
      "          'sets': 1,\n",
      "          'mood': 1,\n",
      "          'things': 1,\n",
      "          'come': 1,\n",
      "          'story': 1,\n",
      "          'propels': 1,\n",
      "          'audience': 1,\n",
      "          'somewhat': 1,\n",
      "          'close': 1,\n",
      "          'conscious': 1,\n",
      "          'laced': 1,\n",
      "          'weird': 1,\n",
      "          'tinges': 1,\n",
      "          'blue': 1,\n",
      "          'red': 1,\n",
      "          'name': 1,\n",
      "          'virtualreality': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'vr': 1,\n",
      "          'highly': 1,\n",
      "          'popular': 1,\n",
      "          'considered': 1,\n",
      "          'legaldrug': 1,\n",
      "          'creator': 1,\n",
      "          'introduces': 1,\n",
      "          'gameexperience': 1,\n",
      "          'nplayers': 1,\n",
      "          'required': 1,\n",
      "          'bioports': 1,\n",
      "          'embedded': 1,\n",
      "          'spine': 1,\n",
      "          'plugs': 1,\n",
      "          'gamepod': 1,\n",
      "          'order': 1,\n",
      "          'immersive': 1,\n",
      "          'experience': 1,\n",
      "          'nduring': 1,\n",
      "          'secretive': 1,\n",
      "          'betatestingcumteaser': 1,\n",
      "          'meeting': 1,\n",
      "          'life': 1,\n",
      "          'occurs': 1,\n",
      "          'runs': 1,\n",
      "          'fellow': 1,\n",
      "          'bodyguard': 1,\n",
      "          'realists': 1,\n",
      "          'afraid': 1,\n",
      "          'hell': 1,\n",
      "          'lose': 1,\n",
      "          'begin': 1,\n",
      "          'play': 1,\n",
      "          'requires': 1,\n",
      "          'help': 1,\n",
      "          'immerse': 1,\n",
      "          'together': 1,\n",
      "          'check': 1,\n",
      "          'program': 1,\n",
      "          'functioning': 1,\n",
      "          'properly': 1,\n",
      "          'nas': 1,\n",
      "          'soon': 1,\n",
      "          'discover': 1,\n",
      "          'transported': 1,\n",
      "          'realities': 1,\n",
      "          'within': 1,\n",
      "          'uncovering': 1,\n",
      "          'initially': 1,\n",
      "          'cronenberggore': 1,\n",
      "          'neven': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'cult': 1,\n",
      "          'classics': 1,\n",
      "          'scanners': 1,\n",
      "          'nnot': 1,\n",
      "          'half': 1,\n",
      "          'suspenseful': 1,\n",
      "          'commercially': 1,\n",
      "          'successful': 1,\n",
      "          'fly': 1,\n",
      "          'upon': 1,\n",
      "          '90s': 1,\n",
      "          'version': 1,\n",
      "          'poor': 1,\n",
      "          'followup': 1,\n",
      "          'nwhile': 1,\n",
      "          'famed': 1,\n",
      "          'films': 1,\n",
      "          'penchant': 1,\n",
      "          'gore': 1,\n",
      "          'always': 1,\n",
      "          'hit': 1,\n",
      "          'right': 1,\n",
      "          'note': 1,\n",
      "          'theme': 1,\n",
      "          'plot': 1,\n",
      "          'nin': 1,\n",
      "          'gory': 1,\n",
      "          'sequences': 1,\n",
      "          'attached': 1,\n",
      "          'spirit': 1,\n",
      "          'seem': 1,\n",
      "          'act': 1,\n",
      "          'overindulgence': 1,\n",
      "          'njennifer': 1,\n",
      "          'jason': 1,\n",
      "          'jude': 1,\n",
      "          'commendable': 1,\n",
      "          'actors': 1,\n",
      "          'aloof': 1,\n",
      "          'missdirected': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'scripting': 1,\n",
      "          'acting': 1,\n",
      "          'barely': 1,\n",
      "          'pulls': 1,\n",
      "          'bgrade': 1,\n",
      "          'category': 1,\n",
      "          'nit': 1,\n",
      "          'obvious': 1,\n",
      "          'worked': 1,\n",
      "          'really': 1,\n",
      "          'tightbudget': 1,\n",
      "          'seems': 1,\n",
      "          'handled': 1,\n",
      "          'pretty': 1,\n",
      "          'well': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'values': 1,\n",
      "          'created': 1,\n",
      "          'though': 1,\n",
      "          'formed': 1,\n",
      "          'considerable': 1,\n",
      "          'portion': 1,\n",
      "          'budget': 1,\n",
      "          'nwhich': 1,\n",
      "          'quite': 1,\n",
      "          'good': 1,\n",
      "          'predictable': 1,\n",
      "          'cliched': 1,\n",
      "          'times': 1,\n",
      "          'n10': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'would': 1,\n",
      "          'another': 1,\n",
      "          'classic': 1,\n",
      "          'ncronenberg': 1,\n",
      "          'fans': 1,\n",
      "          'however': 1,\n",
      "          'people': 1,\n",
      "          'seeing': 1,\n",
      "          'friends': 1,\n",
      "          'getting': 1,\n",
      "          'queasy': 1,\n",
      "          'mutilation': 1,\n",
      "          'give': 1,\n",
      "          'miss': 1,\n",
      "          'appreciation': 1,\n",
      "          'offered': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'greg': 5,\n",
      "          'nbut': 5,\n",
      "          'see': 4,\n",
      "          'china': 3,\n",
      "          'could': 3,\n",
      "          'comedy': 3,\n",
      "          'nit': 3,\n",
      "          'many': 3,\n",
      "          'script': 3,\n",
      "          'little': 3,\n",
      "          'nthe': 3,\n",
      "          '4': 3,\n",
      "          'asked': 2,\n",
      "          'america': 2,\n",
      "          'ni': 2,\n",
      "          'along': 2,\n",
      "          'nhe': 2,\n",
      "          'would': 2,\n",
      "          'trying': 2,\n",
      "          'new': 2,\n",
      "          'parents': 2,\n",
      "          'ngreg': 2,\n",
      "          'stiller': 2,\n",
      "          'love': 2,\n",
      "          'byrnes': 2,\n",
      "          'meet': 2,\n",
      "          'beginning': 2,\n",
      "          'robert': 2,\n",
      "          'blythe': 2,\n",
      "          'danner': 2,\n",
      "          'game': 2,\n",
      "          'oneupmanship': 2,\n",
      "          'playing': 2,\n",
      "          'situation': 2,\n",
      "          'main': 2,\n",
      "          'character': 2,\n",
      "          'ncertainly': 2,\n",
      "          'things': 2,\n",
      "          'nthere': 2,\n",
      "          'written': 2,\n",
      "          'deeper': 2,\n",
      "          'really': 2,\n",
      "          'basic': 2,\n",
      "          'score': 2,\n",
      "          'music': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          '1982': 1,\n",
      "          'turned': 1,\n",
      "          'tables': 1,\n",
      "          'national': 1,\n",
      "          'guide': 1,\n",
      "          'questions': 1,\n",
      "          'guess': 1,\n",
      "          'expecting': 1,\n",
      "          'sort': 1,\n",
      "          'political': 1,\n",
      "          'question': 1,\n",
      "          'ninstead': 1,\n",
      "          'dumfounded': 1,\n",
      "          'mind': 1,\n",
      "          'n': 1,\n",
      "          'wives': 1,\n",
      "          'mothersinlaw': 1,\n",
      "          'get': 1,\n",
      "          'well': 1,\n",
      "          'assured': 1,\n",
      "          'certain': 1,\n",
      "          'true': 1,\n",
      "          'neven': 1,\n",
      "          'people': 1,\n",
      "          'seem': 1,\n",
      "          'problems': 1,\n",
      "          'relating': 1,\n",
      "          'laws': 1,\n",
      "          'nperhaps': 1,\n",
      "          'lifes': 1,\n",
      "          'difficult': 1,\n",
      "          'relationships': 1,\n",
      "          'arise': 1,\n",
      "          'families': 1,\n",
      "          'suddenly': 1,\n",
      "          'artificially': 1,\n",
      "          'joined': 1,\n",
      "          'marriage': 1,\n",
      "          'na': 1,\n",
      "          'man': 1,\n",
      "          'relate': 1,\n",
      "          'prospective': 1,\n",
      "          'inlaws': 1,\n",
      "          'viceversa': 1,\n",
      "          'basis': 1,\n",
      "          'strong': 1,\n",
      "          'nmeet': 1,\n",
      "          'demonstrate': 1,\n",
      "          'fact': 1,\n",
      "          'however': 1,\n",
      "          'focker': 1,\n",
      "          'played': 1,\n",
      "          'ben': 1,\n",
      "          'dating': 1,\n",
      "          'pam': 1,\n",
      "          'teri': 1,\n",
      "          'polo': 1,\n",
      "          'ten': 1,\n",
      "          'months': 1,\n",
      "          'ready': 1,\n",
      "          'propose': 1,\n",
      "          'weekend': 1,\n",
      "          'visit': 1,\n",
      "          'debbies': 1,\n",
      "          'family': 1,\n",
      "          'attend': 1,\n",
      "          'sisters': 1,\n",
      "          'wedding': 1,\n",
      "          'nfrom': 1,\n",
      "          'relationship': 1,\n",
      "          'awkward': 1,\n",
      "          'jack': 1,\n",
      "          'dina': 1,\n",
      "          'deniro': 1,\n",
      "          'nthrough': 1,\n",
      "          'fault': 1,\n",
      "          'airline': 1,\n",
      "          'lost': 1,\n",
      "          'gregs': 1,\n",
      "          'luggage': 1,\n",
      "          'nand': 1,\n",
      "          'ask': 1,\n",
      "          'borrow': 1,\n",
      "          'clothing': 1,\n",
      "          'nearly': 1,\n",
      "          'always': 1,\n",
      "          'onedown': 1,\n",
      "          'nas': 1,\n",
      "          'games': 1,\n",
      "          'go': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'uneasy': 1,\n",
      "          'contributes': 1,\n",
      "          'mistakes': 1,\n",
      "          'makes': 1,\n",
      "          'understand': 1,\n",
      "          'league': 1,\n",
      "          'perhaps': 1,\n",
      "          'way': 1,\n",
      "          'discover': 1,\n",
      "          'unexpected': 1,\n",
      "          'secrets': 1,\n",
      "          'fatherinlaw': 1,\n",
      "          'nthis': 1,\n",
      "          'potential': 1,\n",
      "          'tale': 1,\n",
      "          'hit': 1,\n",
      "          'audience': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'familiarone': 1,\n",
      "          'done': 1,\n",
      "          'overly': 1,\n",
      "          'frequently': 1,\n",
      "          'films': 1,\n",
      "          'jim': 1,\n",
      "          'herzfeld': 1,\n",
      "          'john': 1,\n",
      "          'hamburg': 1,\n",
      "          'contrived': 1,\n",
      "          'ntoo': 1,\n",
      "          'coincidences': 1,\n",
      "          'story': 1,\n",
      "          'work': 1,\n",
      "          'decide': 1,\n",
      "          'incompetent': 1,\n",
      "          'simply': 1,\n",
      "          'unlucky': 1,\n",
      "          'help': 1,\n",
      "          'everything': 1,\n",
      "          'wrong': 1,\n",
      "          'possibly': 1,\n",
      "          'even': 1,\n",
      "          'right': 1,\n",
      "          'nature': 1,\n",
      "          'conspires': 1,\n",
      "          'uneven': 1,\n",
      "          'mix': 1,\n",
      "          'slapstick': 1,\n",
      "          'sequences': 1,\n",
      "          'human': 1,\n",
      "          'last': 1,\n",
      "          'part': 1,\n",
      "          'feels': 1,\n",
      "          'awkwardly': 1,\n",
      "          'reason': 1,\n",
      "          'deniros': 1,\n",
      "          'performance': 1,\n",
      "          'ndeniro': 1,\n",
      "          'plays': 1,\n",
      "          'suspicious': 1,\n",
      "          'fascistic': 1,\n",
      "          'father': 1,\n",
      "          'tightly': 1,\n",
      "          'wound': 1,\n",
      "          'threatening': 1,\n",
      "          'judgmental': 1,\n",
      "          'expressions': 1,\n",
      "          'face': 1,\n",
      "          'show': 1,\n",
      "          'digs': 1,\n",
      "          'insecurities': 1,\n",
      "          'much': 1,\n",
      "          'digging': 1,\n",
      "          'nben': 1,\n",
      "          'affable': 1,\n",
      "          'presence': 1,\n",
      "          'stretching': 1,\n",
      "          'role': 1,\n",
      "          'nebbish': 1,\n",
      "          'bad': 1,\n",
      "          'happen': 1,\n",
      "          'nice': 1,\n",
      "          'screen': 1,\n",
      "          'conflict': 1,\n",
      "          'decency': 1,\n",
      "          'husband': 1,\n",
      "          'given': 1,\n",
      "          'nrandy': 1,\n",
      "          'newman': 1,\n",
      "          'playful': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'seconds': 1,\n",
      "          'something': 1,\n",
      "          'creative': 1,\n",
      "          'never': 1,\n",
      "          'heard': 1,\n",
      "          'lot': 1,\n",
      "          'source': 1,\n",
      "          'popular': 1,\n",
      "          '1960s': 1,\n",
      "          'npresumably': 1,\n",
      "          'upper': 1,\n",
      "          'class': 1,\n",
      "          'listens': 1,\n",
      "          'least': 1,\n",
      "          'somebodys': 1,\n",
      "          'imagination': 1,\n",
      "          'nhumor': 1,\n",
      "          'subjective': 1,\n",
      "          'getting': 1,\n",
      "          'favorable': 1,\n",
      "          'comment': 1,\n",
      "          'works': 1,\n",
      "          'occasionally': 1,\n",
      "          'rate': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 6,\n",
      "          'movie': 6,\n",
      "          'nthe': 5,\n",
      "          'funny': 4,\n",
      "          'one': 4,\n",
      "          'fab': 3,\n",
      "          '4': 3,\n",
      "          'nin': 3,\n",
      "          'isnt': 3,\n",
      "          'liz': 3,\n",
      "          'bad': 3,\n",
      "          'taste': 3,\n",
      "          'reagan': 2,\n",
      "          'high': 2,\n",
      "          'makeup': 2,\n",
      "          'ever': 2,\n",
      "          'director': 2,\n",
      "          'jawbreaker': 2,\n",
      "          'teen': 2,\n",
      "          'lines': 2,\n",
      "          'princess': 2,\n",
      "          'di': 2,\n",
      "          '3': 2,\n",
      "          'stick': 2,\n",
      "          'mouth': 2,\n",
      "          'body': 2,\n",
      "          'trunk': 2,\n",
      "          'nwhen': 2,\n",
      "          'dead': 2,\n",
      "          'nthey': 2,\n",
      "          'make': 2,\n",
      "          'look': 2,\n",
      "          'hard': 2,\n",
      "          'young': 2,\n",
      "          'fern': 2,\n",
      "          'mayo': 2,\n",
      "          'learning': 2,\n",
      "          'n': 2,\n",
      "          'cover': 2,\n",
      "          'made': 2,\n",
      "          'question': 2,\n",
      "          'number': 2,\n",
      "          'detective': 2,\n",
      "          'cruz': 2,\n",
      "          'ni': 2,\n",
      "          'ronald': 1,\n",
      "          'four': 1,\n",
      "          'stuckup': 1,\n",
      "          'girls': 1,\n",
      "          'played': 1,\n",
      "          'rose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'rebecca': 1,\n",
      "          'gayheart': 1,\n",
      "          'julie': 1,\n",
      "          'benz': 1,\n",
      "          'charlotte': 1,\n",
      "          'roldan': 1,\n",
      "          'overdress': 1,\n",
      "          'posh': 1,\n",
      "          'spice': 1,\n",
      "          'wannabes': 1,\n",
      "          'ntheir': 1,\n",
      "          'daily': 1,\n",
      "          'ritual': 1,\n",
      "          'parade': 1,\n",
      "          'school': 1,\n",
      "          'halls': 1,\n",
      "          'royalty': 1,\n",
      "          'constant': 1,\n",
      "          'reflex': 1,\n",
      "          'action': 1,\n",
      "          'grab': 1,\n",
      "          'compacts': 1,\n",
      "          'check': 1,\n",
      "          'powder': 1,\n",
      "          'cheeks': 1,\n",
      "          'nunder': 1,\n",
      "          'circumstances': 1,\n",
      "          'let': 1,\n",
      "          'seen': 1,\n",
      "          'eating': 1,\n",
      "          'public': 1,\n",
      "          'writer': 1,\n",
      "          'darren': 1,\n",
      "          'steins': 1,\n",
      "          'sounds': 1,\n",
      "          'fact': 1,\n",
      "          'nstein': 1,\n",
      "          'taken': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'heathers': 1,\n",
      "          'stripped': 1,\n",
      "          'intelligence': 1,\n",
      "          'wit': 1,\n",
      "          'charm': 1,\n",
      "          'nhis': 1,\n",
      "          'actresses': 1,\n",
      "          'toss': 1,\n",
      "          'fast': 1,\n",
      "          'dont': 1,\n",
      "          'time': 1,\n",
      "          'add': 1,\n",
      "          'emotion': 1,\n",
      "          'nand': 1,\n",
      "          'female': 1,\n",
      "          'characters': 1,\n",
      "          'considerably': 1,\n",
      "          'lipstick': 1,\n",
      "          'brains': 1,\n",
      "          'setup': 1,\n",
      "          'referred': 1,\n",
      "          'killed': 1,\n",
      "          'prank': 1,\n",
      "          'goes': 1,\n",
      "          'wrong': 1,\n",
      "          'reference': 1,\n",
      "          'much': 1,\n",
      "          'ngranted': 1,\n",
      "          'sometimes': 1,\n",
      "          'mere': 1,\n",
      "          'presence': 1,\n",
      "          'doesnt': 1,\n",
      "          'guarantee': 1,\n",
      "          'nlizs': 1,\n",
      "          'girlfriends': 1,\n",
      "          'literally': 1,\n",
      "          'larger': 1,\n",
      "          'golf': 1,\n",
      "          'ball': 1,\n",
      "          'tape': 1,\n",
      "          'shut': 1,\n",
      "          'bound': 1,\n",
      "          'car': 1,\n",
      "          'open': 1,\n",
      "          'later': 1,\n",
      "          'eventually': 1,\n",
      "          'put': 1,\n",
      "          'blue': 1,\n",
      "          'bruised': 1,\n",
      "          'sexual': 1,\n",
      "          'position': 1,\n",
      "          'victim': 1,\n",
      "          'brutal': 1,\n",
      "          'rape': 1,\n",
      "          'nthese': 1,\n",
      "          'realistic': 1,\n",
      "          'disgusting': 1,\n",
      "          'scenes': 1,\n",
      "          'seminude': 1,\n",
      "          'pornographic': 1,\n",
      "          'feeling': 1,\n",
      "          'forget': 1,\n",
      "          'likely': 1,\n",
      "          'turn': 1,\n",
      "          'stomach': 1,\n",
      "          'many': 1,\n",
      "          'viewer': 1,\n",
      "          'films': 1,\n",
      "          'dialog': 1,\n",
      "          'trite': 1,\n",
      "          'none': 1,\n",
      "          'nerdy': 1,\n",
      "          'girl': 1,\n",
      "          'introduces': 1,\n",
      "          'name': 1,\n",
      "          'hold': 1,\n",
      "          'discovers': 1,\n",
      "          'happened': 1,\n",
      "          'offer': 1,\n",
      "          'cant': 1,\n",
      "          'refuse': 1,\n",
      "          'cake': 1,\n",
      "          'welcome': 1,\n",
      "          'clan': 1,\n",
      "          'parents': 1,\n",
      "          'brag': 1,\n",
      "          'parenting': 1,\n",
      "          'skills': 1,\n",
      "          'watching': 1,\n",
      "          'oprah': 1,\n",
      "          'teachers': 1,\n",
      "          'fare': 1,\n",
      "          'better': 1,\n",
      "          'especially': 1,\n",
      "          'ridiculous': 1,\n",
      "          'given': 1,\n",
      "          'miss': 1,\n",
      "          'shayne': 1,\n",
      "          'please': 1,\n",
      "          'bosom': 1,\n",
      "          'teacher': 1,\n",
      "          'old': 1,\n",
      "          'ugly': 1,\n",
      "          'says': 1,\n",
      "          'without': 1,\n",
      "          'conviction': 1,\n",
      "          'institution': 1,\n",
      "          'brothel': 1,\n",
      "          'nbesides': 1,\n",
      "          'obvious': 1,\n",
      "          'id': 1,\n",
      "          'ask': 1,\n",
      "          'nwhy': 1,\n",
      "          'phone': 1,\n",
      "          'start': 1,\n",
      "          '555': 1,\n",
      "          'going': 1,\n",
      "          'rest': 1,\n",
      "          'anyway': 1,\n",
      "          'cameo': 1,\n",
      "          'pam': 1,\n",
      "          'grier': 1,\n",
      "          'plays': 1,\n",
      "          'vera': 1,\n",
      "          'investigates': 1,\n",
      "          'lizs': 1,\n",
      "          'murder': 1,\n",
      "          'nas': 1,\n",
      "          'interrogates': 1,\n",
      "          'people': 1,\n",
      "          'stares': 1,\n",
      "          'idiots': 1,\n",
      "          'proving': 1,\n",
      "          'gets': 1,\n",
      "          'sure': 1,\n",
      "          'nosed': 1,\n",
      "          'see': 1,\n",
      "          'shed': 1,\n",
      "          'walk': 1,\n",
      "          '5': 1,\n",
      "          'minutes': 1,\n",
      "          'youd': 1,\n",
      "          'well': 1,\n",
      "          'advised': 1,\n",
      "          'happen': 1,\n",
      "          'find': 1,\n",
      "          'theater': 1,\n",
      "          'showing': 1,\n",
      "          'njawbreaker': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '27': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'gore': 1,\n",
      "          'profanity': 1,\n",
      "          'sex': 1,\n",
      "          'would': 1,\n",
      "          'advise': 1,\n",
      "          'everyone': 1,\n",
      "          'avoid': 1,\n",
      "          'teenagers': 1,\n",
      "          'go': 1,\n",
      "          'older': 1,\n",
      "          'mature': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'end': 5,\n",
      "          'days': 5,\n",
      "          'comes': 4,\n",
      "          'even': 4,\n",
      "          'new': 3,\n",
      "          'nthe': 3,\n",
      "          'devil': 3,\n",
      "          'robin': 3,\n",
      "          'satan': 3,\n",
      "          'york': 3,\n",
      "          'one': 3,\n",
      "          'take': 3,\n",
      "          'see': 3,\n",
      "          'nand': 3,\n",
      "          'like': 3,\n",
      "          'noh': 3,\n",
      "          'cane': 3,\n",
      "          'daughter': 3,\n",
      "          'well': 3,\n",
      "          'wild': 2,\n",
      "          '1999': 2,\n",
      "          'big': 2,\n",
      "          'audience': 2,\n",
      "          'music': 2,\n",
      "          'explosions': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'decent': 2,\n",
      "          'least': 2,\n",
      "          'cant': 2,\n",
      "          'narnold': 2,\n",
      "          'turned': 2,\n",
      "          'agent': 2,\n",
      "          'something': 2,\n",
      "          'kevin': 2,\n",
      "          'pollak': 2,\n",
      "          'character': 2,\n",
      "          'gets': 2,\n",
      "          'supernatural': 2,\n",
      "          'gabriel': 2,\n",
      "          'byrne': 2,\n",
      "          'years': 2,\n",
      "          'christine': 2,\n",
      "          'tunney': 2,\n",
      "          'chosen': 2,\n",
      "          'guy': 2,\n",
      "          'know': 2,\n",
      "          'girl': 2,\n",
      "          'meets': 2,\n",
      "          'van': 2,\n",
      "          'make': 2,\n",
      "          'marlowes': 2,\n",
      "          'implausibility': 2,\n",
      "          'film': 2,\n",
      "          'hes': 2,\n",
      "          'nin': 2,\n",
      "          'scares': 2,\n",
      "          'might': 2,\n",
      "          'better': 2,\n",
      "          'get': 2,\n",
      "          'thee': 2,\n",
      "          'hollywood': 1,\n",
      "          'never': 1,\n",
      "          'fails': 1,\n",
      "          'astound': 1,\n",
      "          'nevery': 1,\n",
      "          'time': 1,\n",
      "          'think': 1,\n",
      "          'cokedup': 1,\n",
      "          'little': 1,\n",
      "          'buggers': 1,\n",
      "          'hit': 1,\n",
      "          'rock': 1,\n",
      "          'bottom': 1,\n",
      "          'come': 1,\n",
      "          'excavating': 1,\n",
      "          'tool': 1,\n",
      "          'ni': 1,\n",
      "          'truly': 1,\n",
      "          'convinced': 1,\n",
      "          'west': 1,\n",
      "          'marked': 1,\n",
      "          'studio': 1,\n",
      "          'filmmaking': 1,\n",
      "          'hapless': 1,\n",
      "          'along': 1,\n",
      "          'prove': 1,\n",
      "          'wrong': 1,\n",
      "          'nthis': 1,\n",
      "          'budget': 1,\n",
      "          'brain': 1,\n",
      "          'dead': 1,\n",
      "          'apocalyptic': 1,\n",
      "          'thriller': 1,\n",
      "          'bludgeons': 1,\n",
      "          'overwrought': 1,\n",
      "          'grisly': 1,\n",
      "          'violence': 1,\n",
      "          'galore': 1,\n",
      "          'lots': 1,\n",
      "          'cheesy': 1,\n",
      "          'result': 1,\n",
      "          'nnothing': 1,\n",
      "          'groans': 1,\n",
      "          'yawns': 1,\n",
      "          'neven': 1,\n",
      "          'unable': 1,\n",
      "          'produce': 1,\n",
      "          'scare': 1,\n",
      "          'festival': 1,\n",
      "          'inept': 1,\n",
      "          'nat': 1,\n",
      "          'done': 1,\n",
      "          'us': 1,\n",
      "          'courtesy': 1,\n",
      "          'badenoughtobegood': 1,\n",
      "          'manage': 1,\n",
      "          'nits': 1,\n",
      "          'lousy': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'still': 1,\n",
      "          'recovering': 1,\n",
      "          'heart': 1,\n",
      "          'problems': 1,\n",
      "          'batman': 1,\n",
      "          'plays': 1,\n",
      "          'excop': 1,\n",
      "          'security': 1,\n",
      "          'bodyguard': 1,\n",
      "          'nalong': 1,\n",
      "          'obligatory': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'partner': 1,\n",
      "          'impersonating': 1,\n",
      "          'matthew': 1,\n",
      "          'perrys': 1,\n",
      "          'chandler': 1,\n",
      "          'friends': 1,\n",
      "          'involved': 1,\n",
      "          'major': 1,\n",
      "          'league': 1,\n",
      "          'hoodoo': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'shot': 1,\n",
      "          'world': 1,\n",
      "          'domination': 1,\n",
      "          'every': 1,\n",
      "          'thousand': 1,\n",
      "          'thought': 1,\n",
      "          'hed': 1,\n",
      "          'pulled': 1,\n",
      "          'republican': 1,\n",
      "          'landslide': 1,\n",
      "          '94': 1,\n",
      "          'nif': 1,\n",
      "          'sex': 1,\n",
      "          '20year': 1,\n",
      "          'old': 1,\n",
      "          'child': 1,\n",
      "          'antichrist': 1,\n",
      "          'brat': 1,\n",
      "          'nah': 1,\n",
      "          'deal': 1,\n",
      "          'catches': 1,\n",
      "          'eve': 1,\n",
      "          'pass': 1,\n",
      "          'halfway': 1,\n",
      "          'house': 1,\n",
      "          'unholy': 1,\n",
      "          'union': 1,\n",
      "          'must': 1,\n",
      "          'place': 1,\n",
      "          'december': 1,\n",
      "          '31': 1,\n",
      "          '999': 1,\n",
      "          '666': 1,\n",
      "          'upside': 1,\n",
      "          '11': 1,\n",
      "          'p': 1,\n",
      "          'midnight': 1,\n",
      "          'wonder': 1,\n",
      "          'cranky': 1,\n",
      "          'given': 1,\n",
      "          'refuge': 1,\n",
      "          'church': 1,\n",
      "          'wont': 1,\n",
      "          'sanctuary': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nyou': 1,\n",
      "          'kind': 1,\n",
      "          'supermans': 1,\n",
      "          'xray': 1,\n",
      "          'vision': 1,\n",
      "          'lead': 1,\n",
      "          'walls': 1,\n",
      "          'evil': 1,\n",
      "          'na': 1,\n",
      "          'group': 1,\n",
      "          'guerrilla': 1,\n",
      "          'catholic': 1,\n",
      "          'priests': 1,\n",
      "          'decide': 1,\n",
      "          'best': 1,\n",
      "          'way': 1,\n",
      "          'stop': 1,\n",
      "          'situation': 1,\n",
      "          'killing': 1,\n",
      "          'chooses': 1,\n",
      "          'save': 1,\n",
      "          'kick': 1,\n",
      "          'hell': 1,\n",
      "          'youll': 1,\n",
      "          'pardon': 1,\n",
      "          'expression': 1,\n",
      "          'exploding': 1,\n",
      "          'decisions': 1,\n",
      "          'anguish': 1,\n",
      "          'humanity': 1,\n",
      "          'writing': 1,\n",
      "          'nandrew': 1,\n",
      "          'w': 1,\n",
      "          'screenplay': 1,\n",
      "          'ladles': 1,\n",
      "          'upon': 1,\n",
      "          'preposterous': 1,\n",
      "          'otherworldly': 1,\n",
      "          'histrionics': 1,\n",
      "          'handling': 1,\n",
      "          'jericho': 1,\n",
      "          'schwarzeneggers': 1,\n",
      "          'ncane': 1,\n",
      "          'starts': 1,\n",
      "          'la': 1,\n",
      "          'mel': 1,\n",
      "          'gibson': 1,\n",
      "          'first': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'preparing': 1,\n",
      "          'put': 1,\n",
      "          'gun': 1,\n",
      "          'mouth': 1,\n",
      "          'due': 1,\n",
      "          'ongoing': 1,\n",
      "          'despondence': 1,\n",
      "          'murder': 1,\n",
      "          'wife': 1,\n",
      "          'ntwenty': 1,\n",
      "          'minutes': 1,\n",
      "          'later': 1,\n",
      "          'racing': 1,\n",
      "          'bowels': 1,\n",
      "          'city': 1,\n",
      "          'deciphering': 1,\n",
      "          'clues': 1,\n",
      "          'sherlock': 1,\n",
      "          'holmes': 1,\n",
      "          'kreskin': 1,\n",
      "          'would': 1,\n",
      "          'find': 1,\n",
      "          'baffling': 1,\n",
      "          'nwhen': 1,\n",
      "          'instantly': 1,\n",
      "          'switches': 1,\n",
      "          'terminator': 1,\n",
      "          'father': 1,\n",
      "          'figure': 1,\n",
      "          'mode': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'serving': 1,\n",
      "          'surrogate': 1,\n",
      "          'case': 1,\n",
      "          'anyone': 1,\n",
      "          'misses': 1,\n",
      "          'connection': 1,\n",
      "          'camera': 1,\n",
      "          'close': 1,\n",
      "          'christines': 1,\n",
      "          'box': 1,\n",
      "          'happens': 1,\n",
      "          'identical': 1,\n",
      "          'owned': 1,\n",
      "          'canes': 1,\n",
      "          'nsubtle': 1,\n",
      "          'marlowe': 1,\n",
      "          'subtle': 1,\n",
      "          'nspeaking': 1,\n",
      "          'cameras': 1,\n",
      "          'director': 1,\n",
      "          'peter': 1,\n",
      "          'hyams': 1,\n",
      "          'man': 1,\n",
      "          'script': 1,\n",
      "          'selfimportant': 1,\n",
      "          'murky': 1,\n",
      "          'annoying': 1,\n",
      "          'nhyams': 1,\n",
      "          'direction': 1,\n",
      "          'shows': 1,\n",
      "          'subtlety': 1,\n",
      "          'gwar': 1,\n",
      "          'video': 1,\n",
      "          'running': 1,\n",
      "          'gauntlet': 1,\n",
      "          'ridiculous': 1,\n",
      "          'action': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'punctuated': 1,\n",
      "          'loads': 1,\n",
      "          'neager': 1,\n",
      "          'satisfy': 1,\n",
      "          'arnolds': 1,\n",
      "          'core': 1,\n",
      "          'throws': 1,\n",
      "          'pairs': 1,\n",
      "          'breasts': 1,\n",
      "          'nwhat': 1,\n",
      "          'nhad': 1,\n",
      "          'delivered': 1,\n",
      "          'maintained': 1,\n",
      "          'consistently': 1,\n",
      "          'ominous': 1,\n",
      "          'tone': 1,\n",
      "          'bombastic': 1,\n",
      "          'clich': 1,\n",
      "          'tolerable': 1,\n",
      "          'simply': 1,\n",
      "          'flaccid': 1,\n",
      "          'show': 1,\n",
      "          'cast': 1,\n",
      "          'ineffective': 1,\n",
      "          'early': 1,\n",
      "          'scenes': 1,\n",
      "          'attempts': 1,\n",
      "          'invest': 1,\n",
      "          'beelzebub': 1,\n",
      "          'panache': 1,\n",
      "          'soon': 1,\n",
      "          'turns': 1,\n",
      "          'another': 1,\n",
      "          'standard': 1,\n",
      "          'issue': 1,\n",
      "          'monster': 1,\n",
      "          'nkevin': 1,\n",
      "          'goes': 1,\n",
      "          'quickly': 1,\n",
      "          'bargain': 1,\n",
      "          'basement': 1,\n",
      "          'winona': 1,\n",
      "          'ryder': 1,\n",
      "          'arnold': 1,\n",
      "          'actor': 1,\n",
      "          'casper': 1,\n",
      "          'dien': 1,\n",
      "          'nthat': 1,\n",
      "          'count': 1,\n",
      "          'nway': 1,\n",
      "          'back': 1,\n",
      "          'aftermath': 1,\n",
      "          'exorcist': 1,\n",
      "          'omen': 1,\n",
      "          'swill': 1,\n",
      "          'passed': 1,\n",
      "          'muster': 1,\n",
      "          'bmovie': 1,\n",
      "          'nbut': 1,\n",
      "          'n': 1,\n",
      "          'xfiles': 1,\n",
      "          'buffy': 1,\n",
      "          'vampire': 1,\n",
      "          'slayer': 1,\n",
      "          'deliver': 1,\n",
      "          'real': 1,\n",
      "          'weekly': 1,\n",
      "          'basis': 1,\n",
      "          'want': 1,\n",
      "          'flip': 1,\n",
      "          '700': 1,\n",
      "          'club': 1,\n",
      "          'gander': 1,\n",
      "          'pat': 1,\n",
      "          'robertsons': 1,\n",
      "          'grinning': 1,\n",
      "          'maw': 1,\n",
      "          'nafter': 1,\n",
      "          'enduring': 1,\n",
      "          'say': 1,\n",
      "          'behind': 1,\n",
      "          'youre': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'danes': 5,\n",
      "          'anything': 3,\n",
      "          'nbut': 3,\n",
      "          'even': 3,\n",
      "          'mod': 3,\n",
      "          'squad': 3,\n",
      "          'nthe': 3,\n",
      "          'three': 3,\n",
      "          'characters': 3,\n",
      "          'played': 3,\n",
      "          'ribisi': 3,\n",
      "          'fare': 3,\n",
      "          'remakes': 2,\n",
      "          'tv': 2,\n",
      "          'series': 2,\n",
      "          'theres': 2,\n",
      "          'way': 2,\n",
      "          'effectively': 2,\n",
      "          'well': 2,\n",
      "          'intriguing': 2,\n",
      "          'cinematic': 2,\n",
      "          'experience': 2,\n",
      "          'also': 2,\n",
      "          'bad': 2,\n",
      "          'remake': 2,\n",
      "          'much': 2,\n",
      "          'based': 2,\n",
      "          'good': 2,\n",
      "          'like': 2,\n",
      "          'corrupt': 2,\n",
      "          'go': 2,\n",
      "          'various': 2,\n",
      "          'become': 2,\n",
      "          'undercover': 2,\n",
      "          'cops': 2,\n",
      "          'get': 2,\n",
      "          'epps': 2,\n",
      "          'character': 2,\n",
      "          'slightly': 2,\n",
      "          'scenes': 2,\n",
      "          'lots': 2,\n",
      "          'drug': 2,\n",
      "          'movie': 2,\n",
      "          'man': 2,\n",
      "          'really': 2,\n",
      "          'nepps': 2,\n",
      "          'film': 2,\n",
      "          'action': 2,\n",
      "          'plot': 2,\n",
      "          'longer': 2,\n",
      "          'exciting': 2,\n",
      "          'nclaire': 2,\n",
      "          'could': 2,\n",
      "          'may': 2,\n",
      "          'call': 2,\n",
      "          'little': 1,\n",
      "          'updates': 1,\n",
      "          'older': 1,\n",
      "          'films': 1,\n",
      "          'nif': 1,\n",
      "          'believe': 1,\n",
      "          'matter': 1,\n",
      "          'great': 1,\n",
      "          'revered': 1,\n",
      "          'improved': 1,\n",
      "          'upon': 1,\n",
      "          'nthis': 1,\n",
      "          'reason': 1,\n",
      "          'responded': 1,\n",
      "          'gus': 1,\n",
      "          'van': 1,\n",
      "          'sants': 1,\n",
      "          'universally': 1,\n",
      "          'panned': 1,\n",
      "          'update': 1,\n",
      "          'psycho': 1,\n",
      "          'thought': 1,\n",
      "          'onpar': 1,\n",
      "          'original': 1,\n",
      "          'big': 1,\n",
      "          'problem': 1,\n",
      "          'blatantly': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'point': 1,\n",
      "          'least': 1,\n",
      "          'iron': 1,\n",
      "          'originals': 1,\n",
      "          'flaws': 1,\n",
      "          'bring': 1,\n",
      "          'work': 1,\n",
      "          'closer': 1,\n",
      "          'greatness': 1,\n",
      "          'perfection': 1,\n",
      "          'source': 1,\n",
      "          'material': 1,\n",
      "          'isnt': 1,\n",
      "          'begin': 1,\n",
      "          'nthat': 1,\n",
      "          'question': 1,\n",
      "          'pondered': 1,\n",
      "          'bland': 1,\n",
      "          'actioner': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'couple': 1,\n",
      "          'episodes': 1,\n",
      "          'late': 1,\n",
      "          '60s': 1,\n",
      "          'honest': 1,\n",
      "          'didnt': 1,\n",
      "          'nit': 1,\n",
      "          'concept': 1,\n",
      "          'still': 1,\n",
      "          'interesting': 1,\n",
      "          'group': 1,\n",
      "          'young': 1,\n",
      "          'adults': 1,\n",
      "          'early': 1,\n",
      "          '20s': 1,\n",
      "          'given': 1,\n",
      "          'choice': 1,\n",
      "          'either': 1,\n",
      "          'jail': 1,\n",
      "          'crimes': 1,\n",
      "          'committed': 1,\n",
      "          'helping': 1,\n",
      "          'police': 1,\n",
      "          'places': 1,\n",
      "          'normally': 1,\n",
      "          'wouldnt': 1,\n",
      "          'able': 1,\n",
      "          'access': 1,\n",
      "          'nobviously': 1,\n",
      "          '3': 1,\n",
      "          'opt': 1,\n",
      "          'latter': 1,\n",
      "          'option': 1,\n",
      "          'policemen': 1,\n",
      "          'policewomen': 1,\n",
      "          'main': 1,\n",
      "          'claire': 1,\n",
      "          'omar': 1,\n",
      "          'giovanni': 1,\n",
      "          'nof': 1,\n",
      "          'real': 1,\n",
      "          'nribisis': 1,\n",
      "          'dumbass': 1,\n",
      "          '20': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'exclusively': 1,\n",
      "          'laughs': 1,\n",
      "          'intelligent': 1,\n",
      "          'one': 1,\n",
      "          'used': 1,\n",
      "          'create': 1,\n",
      "          'chase': 1,\n",
      "          'nwhen': 1,\n",
      "          'squads': 1,\n",
      "          'superviser': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'reputation': 1,\n",
      "          'dirtied': 1,\n",
      "          'death': 1,\n",
      "          'sure': 1,\n",
      "          'beloved': 1,\n",
      "          'master': 1,\n",
      "          'framed': 1,\n",
      "          'investigate': 1,\n",
      "          'discovering': 1,\n",
      "          'expensive': 1,\n",
      "          'whores': 1,\n",
      "          'lucrative': 1,\n",
      "          'operations': 1,\n",
      "          'nall': 1,\n",
      "          'kinds': 1,\n",
      "          'stuff': 1,\n",
      "          'times': 1,\n",
      "          'comes': 1,\n",
      "          'close': 1,\n",
      "          'working': 1,\n",
      "          'comedic': 1,\n",
      "          'moments': 1,\n",
      "          'nalthough': 1,\n",
      "          'trite': 1,\n",
      "          'actor': 1,\n",
      "          'repeat': 1,\n",
      "          'rather': 1,\n",
      "          'amusing': 1,\n",
      "          'script': 1,\n",
      "          'gives': 1,\n",
      "          'chance': 1,\n",
      "          'straight': 1,\n",
      "          'ribisis': 1,\n",
      "          'clueless': 1,\n",
      "          'spontaneity': 1,\n",
      "          'rest': 1,\n",
      "          'dull': 1,\n",
      "          'boring': 1,\n",
      "          'singularly': 1,\n",
      "          'uninteresting': 1,\n",
      "          'na': 1,\n",
      "          'drugop': 1,\n",
      "          'new': 1,\n",
      "          'teenage': 1,\n",
      "          'heroes': 1,\n",
      "          'executed': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'suspenseful': 1,\n",
      "          'potential': 1,\n",
      "          'buried': 1,\n",
      "          'heaps': 1,\n",
      "          'cliches': 1,\n",
      "          'performance': 1,\n",
      "          'restrained': 1,\n",
      "          'nshe': 1,\n",
      "          'tourdeforce': 1,\n",
      "          'instead': 1,\n",
      "          'director': 1,\n",
      "          'scott': 1,\n",
      "          'silver': 1,\n",
      "          'puts': 1,\n",
      "          'shackles': 1,\n",
      "          'simply': 1,\n",
      "          'allow': 1,\n",
      "          'significant': 1,\n",
      "          'role': 1,\n",
      "          'better': 1,\n",
      "          'expected': 1,\n",
      "          'although': 1,\n",
      "          'arent': 1,\n",
      "          'nearly': 1,\n",
      "          'rich': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'marketing': 1,\n",
      "          'teens': 1,\n",
      "          'jump': 1,\n",
      "          'nits': 1,\n",
      "          'full': 1,\n",
      "          'dialogue': 1,\n",
      "          'concepts': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'dealers': 1,\n",
      "          'tango': 1,\n",
      "          'guys': 1,\n",
      "          'spare': 1,\n",
      "          'time': 1,\n",
      "          'nnothing': 1,\n",
      "          'remotely': 1,\n",
      "          'worth': 1,\n",
      "          'paying': 1,\n",
      "          'alluring': 1,\n",
      "          'mainly': 1,\n",
      "          'shes': 1,\n",
      "          'got': 1,\n",
      "          'horrible': 1,\n",
      "          'hairdo': 1,\n",
      "          'draw': 1,\n",
      "          'nthere': 1,\n",
      "          'however': 1,\n",
      "          'cool': 1,\n",
      "          'explosions': 1,\n",
      "          'guns': 1,\n",
      "          'chases': 1,\n",
      "          'lure': 1,\n",
      "          'viewer': 1,\n",
      "          'thinking': 1,\n",
      "          'thriller': 1,\n",
      "          'sort': 1,\n",
      "          'ndo': 1,\n",
      "          'fooled': 1,\n",
      "          'nsome': 1,\n",
      "          'escapist': 1,\n",
      "          'escapeasquicklyasyoucan': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'commander': 8,\n",
      "          'wing': 7,\n",
      "          'like': 4,\n",
      "          'nthe': 4,\n",
      "          'n': 3,\n",
      "          'video': 2,\n",
      "          'game': 2,\n",
      "          'feature': 2,\n",
      "          'fighter': 2,\n",
      "          'kind': 2,\n",
      "          'minutes': 2,\n",
      "          'one': 2,\n",
      "          'roberts': 2,\n",
      "          'original': 2,\n",
      "          'prinze': 2,\n",
      "          'way': 2,\n",
      "          'new': 2,\n",
      "          'dont': 2,\n",
      "          'star': 2,\n",
      "          'kilrathi': 2,\n",
      "          'something': 2,\n",
      "          'theyre': 2,\n",
      "          'though': 2,\n",
      "          'lillard': 2,\n",
      "          'mediums': 1,\n",
      "          'question': 1,\n",
      "          'film': 1,\n",
      "          'ever': 1,\n",
      "          'respective': 1,\n",
      "          'heretothere': 1,\n",
      "          'transformation': 1,\n",
      "          'achieved': 1,\n",
      "          'ground': 1,\n",
      "          'higher': 1,\n",
      "          'noodleheaded': 1,\n",
      "          'mediocrity': 1,\n",
      "          'super': 1,\n",
      "          'mario': 1,\n",
      "          'bros': 1,\n",
      "          'street': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          'silly': 1,\n",
      "          'stinkers': 1,\n",
      "          'empty': 1,\n",
      "          'execrable': 1,\n",
      "          'joins': 1,\n",
      "          'lowly': 1,\n",
      "          'ranks': 1,\n",
      "          'nenduring': 1,\n",
      "          'spectacularly': 1,\n",
      "          'bad': 1,\n",
      "          'bit': 1,\n",
      "          'scifi': 1,\n",
      "          'easily': 1,\n",
      "          'worst': 1,\n",
      "          'watching': 1,\n",
      "          'someone': 1,\n",
      "          'futz': 1,\n",
      "          'around': 1,\n",
      "          '100': 1,\n",
      "          'say': 1,\n",
      "          'theres': 1,\n",
      "          'little': 1,\n",
      "          'fun': 1,\n",
      "          'youre': 1,\n",
      "          'holding': 1,\n",
      "          'joystick': 1,\n",
      "          'movie': 1,\n",
      "          'missed': 1,\n",
      "          'opportunity': 1,\n",
      "          'director': 1,\n",
      "          'chris': 1,\n",
      "          'created': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'pc': 1,\n",
      "          'incarnation': 1,\n",
      "          'back': 1,\n",
      "          '1990': 1,\n",
      "          'nhow': 1,\n",
      "          'interactive': 1,\n",
      "          'brainchild': 1,\n",
      "          'revered': 1,\n",
      "          'could': 1,\n",
      "          'end': 1,\n",
      "          'cinematic': 1,\n",
      "          'pile': 1,\n",
      "          'junk': 1,\n",
      "          'helm': 1,\n",
      "          'guy': 1,\n",
      "          'headscratcher': 1,\n",
      "          'story': 1,\n",
      "          'credited': 1,\n",
      "          'screenwriter': 1,\n",
      "          'kevin': 1,\n",
      "          'droney': 1,\n",
      "          'clueless': 1,\n",
      "          'chaos': 1,\n",
      "          'melding': 1,\n",
      "          'incoherent': 1,\n",
      "          'narrative': 1,\n",
      "          'unoriginal': 1,\n",
      "          'ideas': 1,\n",
      "          'nit': 1,\n",
      "          'rips': 1,\n",
      "          'finest': 1,\n",
      "          'films': 1,\n",
      "          'genre': 1,\n",
      "          'top': 1,\n",
      "          'gun': 1,\n",
      "          'scene': 1,\n",
      "          'even': 1,\n",
      "          'spiffy': 1,\n",
      "          'stereoscopic': 1,\n",
      "          'freeze': 1,\n",
      "          'gap': 1,\n",
      "          'commercials': 1,\n",
      "          'nset': 1,\n",
      "          '2654': 1,\n",
      "          'stars': 1,\n",
      "          'freddie': 1,\n",
      "          'jr': 1,\n",
      "          'daredevil': 1,\n",
      "          'cosmos': 1,\n",
      "          'cowboy': 1,\n",
      "          'hopes': 1,\n",
      "          'great': 1,\n",
      "          'pilot': 1,\n",
      "          'father': 1,\n",
      "          'nalong': 1,\n",
      "          'plays': 1,\n",
      "          'kissyface': 1,\n",
      "          'stoic': 1,\n",
      "          'superior': 1,\n",
      "          'saffron': 1,\n",
      "          'burrows': 1,\n",
      "          'galaxy': 1,\n",
      "          'hangout': 1,\n",
      "          'hes': 1,\n",
      "          'posted': 1,\n",
      "          'comes': 1,\n",
      "          'terms': 1,\n",
      "          'bigots': 1,\n",
      "          'resent': 1,\n",
      "          'pilgrim': 1,\n",
      "          'heritage': 1,\n",
      "          'ask': 1,\n",
      "          'goes': 1,\n",
      "          'topsecret': 1,\n",
      "          'mission': 1,\n",
      "          'involving': 1,\n",
      "          'jump': 1,\n",
      "          'coordinates': 1,\n",
      "          'death': 1,\n",
      "          'plans': 1,\n",
      "          'nasty': 1,\n",
      "          'alien': 1,\n",
      "          'race': 1,\n",
      "          'known': 1,\n",
      "          'ngiven': 1,\n",
      "          'immensely': 1,\n",
      "          'confusing': 1,\n",
      "          'activity': 1,\n",
      "          'hard': 1,\n",
      "          'tell': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'whats': 1,\n",
      "          'easy': 1,\n",
      "          'see': 1,\n",
      "          'big': 1,\n",
      "          'old': 1,\n",
      "          'mess': 1,\n",
      "          'lame': 1,\n",
      "          'dialogue': 1,\n",
      "          'strains': 1,\n",
      "          'filled': 1,\n",
      "          'lines': 1,\n",
      "          'die': 1,\n",
      "          'battle': 1,\n",
      "          'stations': 1,\n",
      "          'nand': 1,\n",
      "          'repeated': 1,\n",
      "          'frequently': 1,\n",
      "          'unanswered': 1,\n",
      "          'calls': 1,\n",
      "          'medic': 1,\n",
      "          'naction': 1,\n",
      "          'sequences': 1,\n",
      "          'fizzle': 1,\n",
      "          'character': 1,\n",
      "          'conflict': 1,\n",
      "          'garners': 1,\n",
      "          'unintentional': 1,\n",
      "          'giggles': 1,\n",
      "          'sole': 1,\n",
      "          'source': 1,\n",
      "          'suspense': 1,\n",
      "          'creeps': 1,\n",
      "          'look': 1,\n",
      "          'kept': 1,\n",
      "          'view': 1,\n",
      "          'concluding': 1,\n",
      "          '15': 1,\n",
      "          'nimagine': 1,\n",
      "          'bearded': 1,\n",
      "          'siamese': 1,\n",
      "          'cats': 1,\n",
      "          'crossed': 1,\n",
      "          '50s': 1,\n",
      "          'roger': 1,\n",
      "          'corman': 1,\n",
      "          'cheapie': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'good': 1,\n",
      "          'idea': 1,\n",
      "          'nlittle': 1,\n",
      "          'technobabble': 1,\n",
      "          'happens': 1,\n",
      "          'hour': 1,\n",
      "          'tries': 1,\n",
      "          'much': 1,\n",
      "          'appears': 1,\n",
      "          'movies': 1,\n",
      "          'show': 1,\n",
      "          'signs': 1,\n",
      "          'pulse': 1,\n",
      "          'instead': 1,\n",
      "          'provides': 1,\n",
      "          'hilarious': 1,\n",
      "          'touch': 1,\n",
      "          'human': 1,\n",
      "          'drama': 1,\n",
      "          'culminating': 1,\n",
      "          'use': 1,\n",
      "          'bulldozer': 1,\n",
      "          'probably': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'space': 1,\n",
      "          'camp': 1,\n",
      "          'nmatthew': 1,\n",
      "          'featured': 1,\n",
      "          'prominently': 1,\n",
      "          'said': 1,\n",
      "          'sequence': 1,\n",
      "          'cast': 1,\n",
      "          'prinzes': 1,\n",
      "          'hotshot': 1,\n",
      "          'partner': 1,\n",
      "          'two': 1,\n",
      "          'fine': 1,\n",
      "          'young': 1,\n",
      "          'actors': 1,\n",
      "          'recently': 1,\n",
      "          'paired': 1,\n",
      "          'hit': 1,\n",
      "          'shes': 1,\n",
      "          'fighting': 1,\n",
      "          'otherworldly': 1,\n",
      "          'evil': 1,\n",
      "          'nrumor': 1,\n",
      "          'slated': 1,\n",
      "          'laterintheyear': 1,\n",
      "          'release': 1,\n",
      "          'bumped': 1,\n",
      "          'capitalize': 1,\n",
      "          'hot': 1,\n",
      "          'casting': 1,\n",
      "          'coup': 1,\n",
      "          'well': 1,\n",
      "          'premiere': 1,\n",
      "          'wars': 1,\n",
      "          'episode': 1,\n",
      "          'trailer': 1,\n",
      "          'nbut': 1,\n",
      "          'audience': 1,\n",
      "          'females': 1,\n",
      "          'present': 1,\n",
      "          'make': 1,\n",
      "          'googoo': 1,\n",
      "          'eyes': 1,\n",
      "          'many': 1,\n",
      "          'member': 1,\n",
      "          'exited': 1,\n",
      "          'muchballyhooed': 1,\n",
      "          'sneak': 1,\n",
      "          'peek': 1,\n",
      "          'nsince': 1,\n",
      "          'cineplexes': 1,\n",
      "          'wont': 1,\n",
      "          'granting': 1,\n",
      "          'refunds': 1,\n",
      "          'latter': 1,\n",
      "          'contingency': 1,\n",
      "          'might': 1,\n",
      "          'rake': 1,\n",
      "          'dough': 1,\n",
      "          'warned': 1,\n",
      "          'high': 1,\n",
      "          'wears': 1,\n",
      "          'soon': 1,\n",
      "          'coming': 1,\n",
      "          'attraction': 1,\n",
      "          'gives': 1,\n",
      "          'presentation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'films': 10,\n",
      "          'nthe': 8,\n",
      "          'suzie': 8,\n",
      "          'man': 5,\n",
      "          'cried': 5,\n",
      "          'film': 5,\n",
      "          'potter': 5,\n",
      "          'almost': 3,\n",
      "          'ricci': 3,\n",
      "          'whose': 3,\n",
      "          'character': 3,\n",
      "          'lola': 3,\n",
      "          'singer': 3,\n",
      "          'everything': 3,\n",
      "          'life': 3,\n",
      "          'theres': 3,\n",
      "          'time': 3,\n",
      "          'note': 3,\n",
      "          'much': 3,\n",
      "          'amusing': 2,\n",
      "          'actress': 2,\n",
      "          'come': 2,\n",
      "          'close': 2,\n",
      "          'bold': 2,\n",
      "          'heroine': 2,\n",
      "          'historical': 2,\n",
      "          'blanchett': 2,\n",
      "          'quite': 2,\n",
      "          'always': 2,\n",
      "          'events': 2,\n",
      "          'involving': 2,\n",
      "          'nazis': 2,\n",
      "          'go': 2,\n",
      "          'forward': 2,\n",
      "          'gypsy': 2,\n",
      "          'core': 2,\n",
      "          'isnt': 2,\n",
      "          'skilled': 2,\n",
      "          'enough': 2,\n",
      "          'hardly': 2,\n",
      "          'leave': 2,\n",
      "          'one': 2,\n",
      "          'action': 2,\n",
      "          'meant': 2,\n",
      "          'beginning': 2,\n",
      "          'reaches': 2,\n",
      "          'present': 2,\n",
      "          'music': 2,\n",
      "          'minute': 2,\n",
      "          'opera': 2,\n",
      "          'state': 2,\n",
      "          'watch': 1,\n",
      "          '21year': 1,\n",
      "          'old': 1,\n",
      "          'christina': 1,\n",
      "          'get': 1,\n",
      "          'drastically': 1,\n",
      "          'overshadowed': 1,\n",
      "          'sally': 1,\n",
      "          'potters': 1,\n",
      "          'followup': 1,\n",
      "          '1997s': 1,\n",
      "          'tango': 1,\n",
      "          'lesson': 1,\n",
      "          'geny': 1,\n",
      "          'cold': 1,\n",
      "          'stare': 1,\n",
      "          'big': 1,\n",
      "          'black': 1,\n",
      "          'eyes': 1,\n",
      "          'appeared': 1,\n",
      "          'impressive': 1,\n",
      "          'range': 1,\n",
      "          'doesnt': 1,\n",
      "          'even': 1,\n",
      "          'set': 1,\n",
      "          'backdrop': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          '2': 1,\n",
      "          'requires': 1,\n",
      "          'nricci': 1,\n",
      "          'shockingly': 1,\n",
      "          'silent': 1,\n",
      "          'blank': 1,\n",
      "          'showing': 1,\n",
      "          'occasional': 1,\n",
      "          'smile': 1,\n",
      "          'hint': 1,\n",
      "          'concern': 1,\n",
      "          'shares': 1,\n",
      "          'scenes': 1,\n",
      "          'astounding': 1,\n",
      "          'cate': 1,\n",
      "          'sight': 1,\n",
      "          'behold': 1,\n",
      "          'nblanchetts': 1,\n",
      "          'paris': 1,\n",
      "          'dwelling': 1,\n",
      "          'dancer': 1,\n",
      "          'befriends': 1,\n",
      "          'aspiring': 1,\n",
      "          'interesting': 1,\n",
      "          'layered': 1,\n",
      "          'lacks': 1,\n",
      "          'ncostar': 1,\n",
      "          'upcoming': 1,\n",
      "          'lord': 1,\n",
      "          'rings': 1,\n",
      "          'trilogy': 1,\n",
      "          'good': 1,\n",
      "          'seven': 1,\n",
      "          'inches': 1,\n",
      "          'sports': 1,\n",
      "          'twice': 1,\n",
      "          'makeup': 1,\n",
      "          'dons': 1,\n",
      "          'flashy': 1,\n",
      "          'wardrobe': 1,\n",
      "          'inhabits': 1,\n",
      "          'role': 1,\n",
      "          'remarkably': 1,\n",
      "          'fervor': 1,\n",
      "          'makes': 1,\n",
      "          'want': 1,\n",
      "          'hold': 1,\n",
      "          'screen': 1,\n",
      "          'lead': 1,\n",
      "          'rather': 1,\n",
      "          'dull': 1,\n",
      "          'companion': 1,\n",
      "          'nimportant': 1,\n",
      "          'hitler': 1,\n",
      "          'scatter': 1,\n",
      "          'across': 1,\n",
      "          'landmarks': 1,\n",
      "          'serve': 1,\n",
      "          'little': 1,\n",
      "          'conflict': 1,\n",
      "          'nobviously': 1,\n",
      "          'tables': 1,\n",
      "          'turned': 1,\n",
      "          'jewish': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'origin': 1,\n",
      "          'unknown': 1,\n",
      "          'among': 1,\n",
      "          'parisian': 1,\n",
      "          'colleagues': 1,\n",
      "          'many': 1,\n",
      "          'aspirations': 1,\n",
      "          'none': 1,\n",
      "          'full': 1,\n",
      "          'circle': 1,\n",
      "          'nthere': 1,\n",
      "          'forced': 1,\n",
      "          'messages': 1,\n",
      "          'preaches': 1,\n",
      "          'romance': 1,\n",
      "          'fellow': 1,\n",
      "          'target': 1,\n",
      "          'hitlers': 1,\n",
      "          'cesar': 1,\n",
      "          'johnny': 1,\n",
      "          'depp': 1,\n",
      "          'like': 1,\n",
      "          'barely': 1,\n",
      "          'gets': 1,\n",
      "          'speak': 1,\n",
      "          'struggles': 1,\n",
      "          'desires': 1,\n",
      "          'things': 1,\n",
      "          'wealth': 1,\n",
      "          'men': 1,\n",
      "          'devices': 1,\n",
      "          'lies': 1,\n",
      "          'suzies': 1,\n",
      "          'desire': 1,\n",
      "          'travel': 1,\n",
      "          'america': 1,\n",
      "          'father': 1,\n",
      "          'journeyed': 1,\n",
      "          'leaving': 1,\n",
      "          'mother': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'tell': 1,\n",
      "          'epicsized': 1,\n",
      "          'story': 1,\n",
      "          'periods': 1,\n",
      "          'instability': 1,\n",
      "          'conflicting': 1,\n",
      "          'social': 1,\n",
      "          'classes': 1,\n",
      "          'prejudice': 1,\n",
      "          'around': 1,\n",
      "          'new': 1,\n",
      "          'serving': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'throws': 1,\n",
      "          'inch': 1,\n",
      "          'depth': 1,\n",
      "          'found': 1,\n",
      "          'nby': 1,\n",
      "          'sighinducing': 1,\n",
      "          'climax': 1,\n",
      "          'hits': 1,\n",
      "          'believability': 1,\n",
      "          'complete': 1,\n",
      "          'absence': 1,\n",
      "          'focus': 1,\n",
      "          'ready': 1,\n",
      "          'theater': 1,\n",
      "          'falling': 1,\n",
      "          'weirdly': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'unlikely': 1,\n",
      "          'really': 1,\n",
      "          'believe': 1,\n",
      "          'could': 1,\n",
      "          'happen': 1,\n",
      "          'ncontrastingly': 1,\n",
      "          'moving': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'strikes': 1,\n",
      "          'made': 1,\n",
      "          'effective': 1,\n",
      "          'ties': 1,\n",
      "          'emotional': 1,\n",
      "          'nalthough': 1,\n",
      "          'apparent': 1,\n",
      "          'cant': 1,\n",
      "          'grasp': 1,\n",
      "          'im': 1,\n",
      "          'puzzled': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'nriccis': 1,\n",
      "          'extended': 1,\n",
      "          'flashback': 1,\n",
      "          'quickly': 1,\n",
      "          'drawn': 1,\n",
      "          'ending': 1,\n",
      "          'seen': 1,\n",
      "          'way': 1,\n",
      "          'relates': 1,\n",
      "          'nso': 1,\n",
      "          'spend': 1,\n",
      "          'subplots': 1,\n",
      "          'individuals': 1,\n",
      "          'work': 1,\n",
      "          'ensemble': 1,\n",
      "          'riccis': 1,\n",
      "          'constant': 1,\n",
      "          'lack': 1,\n",
      "          'flow': 1,\n",
      "          'onenote': 1,\n",
      "          'tone': 1,\n",
      "          'depicts': 1,\n",
      "          'somewhat': 1,\n",
      "          'improved': 1,\n",
      "          'upon': 1,\n",
      "          'sacha': 1,\n",
      "          'viernys': 1,\n",
      "          'beautiful': 1,\n",
      "          'cinematography': 1,\n",
      "          'renders': 1,\n",
      "          'various': 1,\n",
      "          'locations': 1,\n",
      "          'wonderfully': 1,\n",
      "          'nalso': 1,\n",
      "          'worthy': 1,\n",
      "          'lindy': 1,\n",
      "          'hemmings': 1,\n",
      "          'costumes': 1,\n",
      "          'help': 1,\n",
      "          'depict': 1,\n",
      "          'area': 1,\n",
      "          'nicely': 1,\n",
      "          'nand': 1,\n",
      "          'nfrom': 1,\n",
      "          'ninetyseven': 1,\n",
      "          'moment': 1,\n",
      "          'wavering': 1,\n",
      "          'voice': 1,\n",
      "          'rhythms': 1,\n",
      "          'dont': 1,\n",
      "          'undercut': 1,\n",
      "          'notes': 1,\n",
      "          'stricken': 1,\n",
      "          'overwhelm': 1,\n",
      "          'particularly': 1,\n",
      "          'john': 1,\n",
      "          'turturro': 1,\n",
      "          'portraying': 1,\n",
      "          'fictional': 1,\n",
      "          'dante': 1,\n",
      "          'dominio': 1,\n",
      "          'money': 1,\n",
      "          'reputation': 1,\n",
      "          'catch': 1,\n",
      "          'lolas': 1,\n",
      "          'interest': 1,\n",
      "          'accompany': 1,\n",
      "          'oftentimes': 1,\n",
      "          'perfect': 1,\n",
      "          'chords': 1,\n",
      "          'captured': 1,\n",
      "          'undermine': 1,\n",
      "          'characters': 1,\n",
      "          'reinforce': 1,\n",
      "          'npotter': 1,\n",
      "          'obviously': 1,\n",
      "          'cares': 1,\n",
      "          'every': 1,\n",
      "          'musical': 1,\n",
      "          'unfortunately': 1,\n",
      "          'effort': 1,\n",
      "          'given': 1,\n",
      "          'towards': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 8,\n",
      "          'bullock': 3,\n",
      "          'summer': 3,\n",
      "          'way': 3,\n",
      "          'time': 3,\n",
      "          'first': 3,\n",
      "          'computer': 3,\n",
      "          'less': 3,\n",
      "          'thats': 3,\n",
      "          'hes': 3,\n",
      "          'high': 2,\n",
      "          'thought': 2,\n",
      "          'speed': 2,\n",
      "          'cruise': 2,\n",
      "          'bus': 2,\n",
      "          'rigged': 2,\n",
      "          'nthe': 2,\n",
      "          'ocean': 2,\n",
      "          'disgruntled': 2,\n",
      "          'film': 2,\n",
      "          'willem': 2,\n",
      "          'dafoes': 2,\n",
      "          'main': 2,\n",
      "          'live': 2,\n",
      "          'nso': 2,\n",
      "          'course': 2,\n",
      "          'one': 2,\n",
      "          'boat': 2,\n",
      "          'jason': 2,\n",
      "          'patric': 2,\n",
      "          'handful': 2,\n",
      "          'also': 2,\n",
      "          'slam': 2,\n",
      "          'movie': 2,\n",
      "          'far': 2,\n",
      "          'motion': 2,\n",
      "          'damn': 2,\n",
      "          'camera': 2,\n",
      "          'de': 2,\n",
      "          'bont': 2,\n",
      "          'even': 2,\n",
      "          'hundred': 2,\n",
      "          'two': 2,\n",
      "          'big': 2,\n",
      "          'nonsense': 2,\n",
      "          'character': 2,\n",
      "          'ships': 2,\n",
      "          'step': 2,\n",
      "          'sandra': 1,\n",
      "          'heels': 1,\n",
      "          'wielding': 1,\n",
      "          'chainsaw': 1,\n",
      "          'nyup': 1,\n",
      "          'got': 1,\n",
      "          'ta': 1,\n",
      "          'njust': 1,\n",
      "          'pointless': 1,\n",
      "          'sequel': 1,\n",
      "          'gone': 1,\n",
      "          'franchise': 1,\n",
      "          'films': 1,\n",
      "          'directtovideo': 1,\n",
      "          'releases': 1,\n",
      "          'port': 1,\n",
      "          'slams': 1,\n",
      "          '2': 1,\n",
      "          'control': 1,\n",
      "          'gloriously': 1,\n",
      "          'godawful': 1,\n",
      "          'followup': 1,\n",
      "          '1994': 1,\n",
      "          'sleeper': 1,\n",
      "          'explode': 1,\n",
      "          'slowed': 1,\n",
      "          'certain': 1,\n",
      "          'gimmick': 1,\n",
      "          'liner': 1,\n",
      "          'well': 1,\n",
      "          'crash': 1,\n",
      "          'stuff': 1,\n",
      "          'nsound': 1,\n",
      "          'exciting': 1,\n",
      "          'ndennis': 1,\n",
      "          'hoppers': 1,\n",
      "          'bomb': 1,\n",
      "          'squader': 1,\n",
      "          'villain': 1,\n",
      "          'given': 1,\n",
      "          'programmer': 1,\n",
      "          'maniac': 1,\n",
      "          'whose': 1,\n",
      "          'beef': 1,\n",
      "          'something': 1,\n",
      "          'use': 1,\n",
      "          'leeches': 1,\n",
      "          'kid': 1,\n",
      "          'selftreatment': 1,\n",
      "          'copper': 1,\n",
      "          'poison': 1,\n",
      "          'ing': 1,\n",
      "          'said': 1,\n",
      "          'poisoning': 1,\n",
      "          'induced': 1,\n",
      "          'prolonged': 1,\n",
      "          'exposure': 1,\n",
      "          'electro': 1,\n",
      "          'magnetic': 1,\n",
      "          'fields': 1,\n",
      "          'ncalling': 1,\n",
      "          'dean': 1,\n",
      "          'edell': 1,\n",
      "          'overrides': 1,\n",
      "          'boats': 1,\n",
      "          'convinces': 1,\n",
      "          'crew': 1,\n",
      "          'abandon': 1,\n",
      "          'ship': 1,\n",
      "          'sends': 1,\n",
      "          'remaining': 1,\n",
      "          'passengers': 1,\n",
      "          'couldnt': 1,\n",
      "          'evacuate': 1,\n",
      "          'col': 1,\n",
      "          'lision': 1,\n",
      "          'destiny': 1,\n",
      "          'oddly': 1,\n",
      "          'thinks': 1,\n",
      "          'njump': 1,\n",
      "          'back': 1,\n",
      "          'nwith': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'electing': 1,\n",
      "          'return': 1,\n",
      "          'perhaps': 1,\n",
      "          'read': 1,\n",
      "          'script': 1,\n",
      "          'job': 1,\n",
      "          'john': 1,\n",
      "          'mcclane': 1,\n",
      "          'goes': 1,\n",
      "          'sleepers': 1,\n",
      "          'second': 1,\n",
      "          'la': 1,\n",
      "          'cop': 1,\n",
      "          'swat': 1,\n",
      "          'team': 1,\n",
      "          'member': 1,\n",
      "          'drivin': 1,\n",
      "          'babe': 1,\n",
      "          'annie': 1,\n",
      "          'dated': 1,\n",
      "          'odds': 1,\n",
      "          'ntheyre': 1,\n",
      "          'caribbean': 1,\n",
      "          'pleasure': 1,\n",
      "          'requisite': 1,\n",
      "          'stock': 1,\n",
      "          'characters': 1,\n",
      "          'including': 1,\n",
      "          'deaf': 1,\n",
      "          'teenager': 1,\n",
      "          'crush': 1,\n",
      "          'hero': 1,\n",
      "          'knows': 1,\n",
      "          'sign': 1,\n",
      "          'raptor': 1,\n",
      "          'cool': 1,\n",
      "          'move': 1,\n",
      "          'nwait': 1,\n",
      "          'till': 1,\n",
      "          'see': 1,\n",
      "          'feats': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'stuck': 1,\n",
      "          'shipboard': 1,\n",
      "          'elevator': 1,\n",
      "          'nbullock': 1,\n",
      "          'pesky': 1,\n",
      "          'perky': 1,\n",
      "          'self': 1,\n",
      "          'though': 1,\n",
      "          'ends': 1,\n",
      "          'screen': 1,\n",
      "          'top': 1,\n",
      "          'billing': 1,\n",
      "          'suggests': 1,\n",
      "          'paying': 1,\n",
      "          'attention': 1,\n",
      "          'bikini': 1,\n",
      "          'tank': 1,\n",
      "          'tops': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'complain': 1,\n",
      "          'however': 1,\n",
      "          'man': 1,\n",
      "          'good': 1,\n",
      "          'cause': 1,\n",
      "          'stops': 1,\n",
      "          'talk': 1,\n",
      "          'slightly': 1,\n",
      "          'monotone': 1,\n",
      "          'predecessor': 1,\n",
      "          'lol': 1,\n",
      "          'line': 1,\n",
      "          'ms': 1,\n",
      "          'id': 1,\n",
      "          'like': 1,\n",
      "          'boogie': 1,\n",
      "          'nof': 1,\n",
      "          'nobody': 1,\n",
      "          'front': 1,\n",
      "          'embarrasses': 1,\n",
      "          'quite': 1,\n",
      "          'returning': 1,\n",
      "          'director': 1,\n",
      "          'jan': 1,\n",
      "          'nhe': 1,\n",
      "          'produced': 1,\n",
      "          'mess': 1,\n",
      "          'insulting': 1,\n",
      "          'lax': 1,\n",
      "          'standards': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'buddy': 1,\n",
      "          'fathers': 1,\n",
      "          'day': 1,\n",
      "          'romy': 1,\n",
      "          'michelles': 1,\n",
      "          'school': 1,\n",
      "          'reunion': 1,\n",
      "          'murder': 1,\n",
      "          '1600': 1,\n",
      "          '8': 1,\n",
      "          'heads': 1,\n",
      "          'duffle': 1,\n",
      "          'bag': 1,\n",
      "          'anaconda': 1,\n",
      "          'vegas': 1,\n",
      "          'vacation': 1,\n",
      "          'meet': 1,\n",
      "          'wally': 1,\n",
      "          'sparks': 1,\n",
      "          'metro': 1,\n",
      "          'bevery': 1,\n",
      "          'hills': 1,\n",
      "          'ninja': 1,\n",
      "          'relic': 1,\n",
      "          'forgiven': 1,\n",
      "          'nworse': 1,\n",
      "          'spent': 1,\n",
      "          'mil': 1,\n",
      "          'premise': 1,\n",
      "          'doesnt': 1,\n",
      "          'title': 1,\n",
      "          'ntheres': 1,\n",
      "          'sweatinducing': 1,\n",
      "          'hours': 1,\n",
      "          'shaky': 1,\n",
      "          'handheld': 1,\n",
      "          'work': 1,\n",
      "          'crosscut': 1,\n",
      "          'exteriors': 1,\n",
      "          'leading': 1,\n",
      "          'love': 1,\n",
      "          'sideswipes': 1,\n",
      "          'oil': 1,\n",
      "          'tanker': 1,\n",
      "          'plows': 1,\n",
      "          'harbor': 1,\n",
      "          'town': 1,\n",
      "          'oh': 1,\n",
      "          'weve': 1,\n",
      "          'come': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'nremember': 1,\n",
      "          'simple': 1,\n",
      "          'fun': 1,\n",
      "          'seeing': 1,\n",
      "          'locomotive': 1,\n",
      "          'smash': 1,\n",
      "          'railway': 1,\n",
      "          'station': 1,\n",
      "          'silver': 1,\n",
      "          'streak': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'either': 1,\n",
      "          'aforementioned': 1,\n",
      "          'sequences': 1,\n",
      "          'worth': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'nits': 1,\n",
      "          'rest': 1,\n",
      "          'minutes': 1,\n",
      "          'pure': 1,\n",
      "          'nand': 1,\n",
      "          'wonderful': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'didnt': 1,\n",
      "          'intend': 1,\n",
      "          'done': 1,\n",
      "          'thing': 1,\n",
      "          'right': 1,\n",
      "          'created': 1,\n",
      "          'handsdown': 1,\n",
      "          'funniest': 1,\n",
      "          'year': 1,\n",
      "          'allow': 1,\n",
      "          'present': 1,\n",
      "          'things': 1,\n",
      "          'made': 1,\n",
      "          'laugh': 1,\n",
      "          'box': 1,\n",
      "          'label': 1,\n",
      "          'fiber': 1,\n",
      "          'optic': 1,\n",
      "          'converter': 1,\n",
      "          'plain': 1,\n",
      "          'english': 1,\n",
      "          'wholesentence': 1,\n",
      "          'instructions': 1,\n",
      "          'entire': 1,\n",
      "          'sequence': 1,\n",
      "          'devoted': 1,\n",
      "          'opening': 1,\n",
      "          'fire': 1,\n",
      "          'door': 1,\n",
      "          'patrics': 1,\n",
      "          'walks': 1,\n",
      "          'onto': 1,\n",
      "          'bridge': 1,\n",
      "          'immediately': 1,\n",
      "          'understands': 1,\n",
      "          'everything': 1,\n",
      "          'happening': 1,\n",
      "          'navigator': 1,\n",
      "          'speaks': 1,\n",
      "          'scottish': 1,\n",
      "          'accent': 1,\n",
      "          'actually': 1,\n",
      "          'gets': 1,\n",
      "          'say': 1,\n",
      "          'canna': 1,\n",
      "          'override': 1,\n",
      "          'amazing': 1,\n",
      "          'armmounted': 1,\n",
      "          'keyboard': 1,\n",
      "          'living': 1,\n",
      "          'breathing': 1,\n",
      "          'adults': 1,\n",
      "          'bullocks': 1,\n",
      "          'mate': 1,\n",
      "          'told': 1,\n",
      "          'disconnect': 1,\n",
      "          'trip': 1,\n",
      "          'wire': 1,\n",
      "          'pin': 1,\n",
      "          'hand': 1,\n",
      "          'grenade': 1,\n",
      "          'nduh': 1,\n",
      "          'wait': 1,\n",
      "          'nscreams': 1,\n",
      "          'intercom': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'dog': 1,\n",
      "          'peril': 1,\n",
      "          'fishing': 1,\n",
      "          'reel': 1,\n",
      "          'npontoon': 1,\n",
      "          'plane': 1,\n",
      "          'nmemories': 1,\n",
      "          'weekend': 1,\n",
      "          'bernies': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mouse': 5,\n",
      "          'hunt': 3,\n",
      "          'nthis': 3,\n",
      "          'nthe': 3,\n",
      "          'worth': 3,\n",
      "          'like': 2,\n",
      "          'dreamworks': 2,\n",
      "          'plot': 2,\n",
      "          'overacting': 2,\n",
      "          'slapstick': 2,\n",
      "          'way': 2,\n",
      "          'decent': 2,\n",
      "          'two': 2,\n",
      "          'brothers': 2,\n",
      "          'lee': 2,\n",
      "          'evens': 2,\n",
      "          'run': 2,\n",
      "          'seemingly': 2,\n",
      "          'house': 2,\n",
      "          'soon': 2,\n",
      "          'happy': 2,\n",
      "          'little': 2,\n",
      "          'abode': 2,\n",
      "          'wanting': 2,\n",
      "          'increasingly': 2,\n",
      "          'film': 2,\n",
      "          'becomes': 2,\n",
      "          'alone': 2,\n",
      "          'makeshift': 2,\n",
      "          'kind': 2,\n",
      "          'films': 1,\n",
      "          'get': 1,\n",
      "          'theatres': 1,\n",
      "          'nisnt': 1,\n",
      "          'law': 1,\n",
      "          'something': 1,\n",
      "          'diabolical': 1,\n",
      "          'load': 1,\n",
      "          'claptrap': 1,\n",
      "          'steven': 1,\n",
      "          'speilbergs': 1,\n",
      "          'studio': 1,\n",
      "          'hollywood': 1,\n",
      "          'family': 1,\n",
      "          'fare': 1,\n",
      "          'deadly': 1,\n",
      "          'worst': 1,\n",
      "          'nmouse': 1,\n",
      "          'takes': 1,\n",
      "          'bare': 1,\n",
      "          'threads': 1,\n",
      "          'tries': 1,\n",
      "          'prop': 1,\n",
      "          'flatout': 1,\n",
      "          'stupid': 1,\n",
      "          'makes': 1,\n",
      "          'comedies': 1,\n",
      "          'jingle': 1,\n",
      "          'look': 1,\n",
      "          'comparison': 1,\n",
      "          'nwriter': 1,\n",
      "          'adam': 1,\n",
      "          'rifkin': 1,\n",
      "          'director': 1,\n",
      "          'gore': 1,\n",
      "          'verbinski': 1,\n",
      "          'names': 1,\n",
      "          'chiefly': 1,\n",
      "          'responsible': 1,\n",
      "          'swill': 1,\n",
      "          'concerns': 1,\n",
      "          'nathan': 1,\n",
      "          'lane': 1,\n",
      "          'appalling': 1,\n",
      "          'inherit': 1,\n",
      "          'poorly': 1,\n",
      "          'string': 1,\n",
      "          'factory': 1,\n",
      "          'worthless': 1,\n",
      "          'eccentric': 1,\n",
      "          'father': 1,\n",
      "          'ndeciding': 1,\n",
      "          'check': 1,\n",
      "          'longabandoned': 1,\n",
      "          'learn': 1,\n",
      "          'fortune': 1,\n",
      "          'set': 1,\n",
      "          'selling': 1,\n",
      "          'auction': 1,\n",
      "          'highest': 1,\n",
      "          'bidder': 1,\n",
      "          'nbut': 1,\n",
      "          'battling': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'smart': 1,\n",
      "          'rundown': 1,\n",
      "          'stay': 1,\n",
      "          'story': 1,\n",
      "          'alternates': 1,\n",
      "          'unfunny': 1,\n",
      "          'scenes': 1,\n",
      "          'bickering': 1,\n",
      "          'inheritance': 1,\n",
      "          'endless': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'take': 1,\n",
      "          'determined': 1,\n",
      "          'furry': 1,\n",
      "          'foe': 1,\n",
      "          'nwhatever': 1,\n",
      "          'promise': 1,\n",
      "          'starts': 1,\n",
      "          'deteriorates': 1,\n",
      "          'boring': 1,\n",
      "          'dialogue': 1,\n",
      "          'terrible': 1,\n",
      "          'uninspired': 1,\n",
      "          'sound': 1,\n",
      "          'fury': 1,\n",
      "          'signifying': 1,\n",
      "          'nothing': 1,\n",
      "          'script': 1,\n",
      "          'unspeakably': 1,\n",
      "          'bad': 1,\n",
      "          'best': 1,\n",
      "          'line': 1,\n",
      "          'poor': 1,\n",
      "          'utter': 1,\n",
      "          'another': 1,\n",
      "          'rodent': 1,\n",
      "          'hate': 1,\n",
      "          'noh': 1,\n",
      "          'cringe': 1,\n",
      "          'home': 1,\n",
      "          'ten': 1,\n",
      "          'times': 1,\n",
      "          'worse': 1,\n",
      "          'none': 1,\n",
      "          'touching': 1,\n",
      "          'scene': 1,\n",
      "          'early': 1,\n",
      "          'mentioning': 1,\n",
      "          'nwe': 1,\n",
      "          'follow': 1,\n",
      "          'maze': 1,\n",
      "          'walls': 1,\n",
      "          'pipes': 1,\n",
      "          'arrives': 1,\n",
      "          'somewhere': 1,\n",
      "          'wall': 1,\n",
      "          'nhe': 1,\n",
      "          'jumps': 1,\n",
      "          'tiny': 1,\n",
      "          'bed': 1,\n",
      "          'pulls': 1,\n",
      "          'sheet': 1,\n",
      "          'snuggles': 1,\n",
      "          'sleep': 1,\n",
      "          'left': 1,\n",
      "          'nits': 1,\n",
      "          'magical': 1,\n",
      "          'moment': 1,\n",
      "          'otherwise': 1,\n",
      "          'soulless': 1,\n",
      "          'na': 1,\n",
      "          'message': 1,\n",
      "          'speilberg': 1,\n",
      "          'want': 1,\n",
      "          'associated': 1,\n",
      "          'artistic': 1,\n",
      "          'credibility': 1,\n",
      "          'either': 1,\n",
      "          'give': 1,\n",
      "          'concerned': 1,\n",
      "          'swift': 1,\n",
      "          'kick': 1,\n",
      "          'arse': 1,\n",
      "          'hire': 1,\n",
      "          'writers': 1,\n",
      "          'directors': 1,\n",
      "          'rubbish': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'scream': 17,\n",
      "          '3': 10,\n",
      "          'nthe': 5,\n",
      "          'ghostface': 4,\n",
      "          '2': 4,\n",
      "          'film': 3,\n",
      "          'weary': 3,\n",
      "          'next': 3,\n",
      "          'stab': 3,\n",
      "          'ghostfaces': 3,\n",
      "          'craven': 3,\n",
      "          'part': 3,\n",
      "          'online': 2,\n",
      "          'write': 2,\n",
      "          'critics': 2,\n",
      "          'difference': 2,\n",
      "          'society': 2,\n",
      "          'news': 2,\n",
      "          'wed': 2,\n",
      "          'cotton': 2,\n",
      "          'killer': 2,\n",
      "          'prescott': 2,\n",
      "          'sidneys': 2,\n",
      "          'car': 2,\n",
      "          'n': 2,\n",
      "          'pop': 2,\n",
      "          'new': 2,\n",
      "          'screams': 2,\n",
      "          '3s': 2,\n",
      "          'one': 2,\n",
      "          'spring': 2,\n",
      "          'arquette': 2,\n",
      "          'hishertheir': 2,\n",
      "          'isare': 2,\n",
      "          'aside': 2,\n",
      "          'theres': 2,\n",
      "          'nwith': 2,\n",
      "          'kruger': 2,\n",
      "          'act': 2,\n",
      "          'rule': 2,\n",
      "          'kevin': 2,\n",
      "          'silent': 2,\n",
      "          'music': 2,\n",
      "          'three': 2,\n",
      "          'miramax': 1,\n",
      "          'disinvited': 1,\n",
      "          'media': 1,\n",
      "          'press': 1,\n",
      "          'screenings': 1,\n",
      "          'nthey': 1,\n",
      "          'ostensibly': 1,\n",
      "          'feared': 1,\n",
      "          'folks': 1,\n",
      "          'like': 1,\n",
      "          'would': 1,\n",
      "          'spoilerfilled': 1,\n",
      "          'reviews': 1,\n",
      "          'post': 1,\n",
      "          'prior': 1,\n",
      "          'films': 1,\n",
      "          'february': 1,\n",
      "          '4th': 1,\n",
      "          'release': 1,\n",
      "          'dateunsound': 1,\n",
      "          'reasoning': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'net': 1,\n",
      "          'established': 1,\n",
      "          'enough': 1,\n",
      "          'sort': 1,\n",
      "          'vip': 1,\n",
      "          'list': 1,\n",
      "          'professionalsmiramax': 1,\n",
      "          'surely': 1,\n",
      "          'knows': 1,\n",
      "          'member': 1,\n",
      "          'ofcs': 1,\n",
      "          'type': 1,\n",
      "          'fanboy': 1,\n",
      "          'posts': 1,\n",
      "          'spy': 1,\n",
      "          'reports': 1,\n",
      "          'aint': 1,\n",
      "          'cool': 1,\n",
      "          'nno': 1,\n",
      "          'mini': 1,\n",
      "          'major': 1,\n",
      "          'afraid': 1,\n",
      "          'let': 1,\n",
      "          'bigger': 1,\n",
      "          'cat': 1,\n",
      "          'bag': 1,\n",
      "          'whodunit': 1,\n",
      "          'dismal': 1,\n",
      "          'conclusion': 1,\n",
      "          'beloved': 1,\n",
      "          'writer': 1,\n",
      "          'least': 1,\n",
      "          'franchise': 1,\n",
      "          'nsomething': 1,\n",
      "          'smells': 1,\n",
      "          'rotten': 1,\n",
      "          'state': 1,\n",
      "          'california': 1,\n",
      "          'right': 1,\n",
      "          'getgo': 1,\n",
      "          'liev': 1,\n",
      "          'schrieber': 1,\n",
      "          'former': 1,\n",
      "          'lover': 1,\n",
      "          'wouldbe': 1,\n",
      "          'maureen': 1,\n",
      "          'mother': 1,\n",
      "          'juggling': 1,\n",
      "          'phone': 1,\n",
      "          'calls': 1,\n",
      "          'luxury': 1,\n",
      "          'considered': 1,\n",
      "          'danger': 1,\n",
      "          'hosts': 1,\n",
      "          'talk': 1,\n",
      "          'show': 1,\n",
      "          '100': 1,\n",
      "          'clever': 1,\n",
      "          'dated': 1,\n",
      "          'jab': 1,\n",
      "          'american': 1,\n",
      "          'culture': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'dials': 1,\n",
      "          'memories': 1,\n",
      "          'unbearably': 1,\n",
      "          'suspenseful': 1,\n",
      "          'prologue': 1,\n",
      "          'mind': 1,\n",
      "          'immediately': 1,\n",
      "          'wonder': 1,\n",
      "          'backseat': 1,\n",
      "          'nthrilling': 1,\n",
      "          'prospects': 1,\n",
      "          'sure': 1,\n",
      "          'actually': 1,\n",
      "          'residence': 1,\n",
      "          'waiting': 1,\n",
      "          'cottons': 1,\n",
      "          'girlfriend': 1,\n",
      "          'kelly': 1,\n",
      "          'rutheford': 1,\n",
      "          'finishing': 1,\n",
      "          'showering': 1,\n",
      "          'nwhats': 1,\n",
      "          'missing': 1,\n",
      "          'sequence': 1,\n",
      "          'indeed': 1,\n",
      "          'remaining': 1,\n",
      "          'frights': 1,\n",
      "          'disappointingly': 1,\n",
      "          'moment': 1,\n",
      "          'ingenue': 1,\n",
      "          'forced': 1,\n",
      "          'hide': 1,\n",
      "          'wardrobe': 1,\n",
      "          'room': 1,\n",
      "          'filled': 1,\n",
      "          'costumes': 1,\n",
      "          'might': 1,\n",
      "          'life': 1,\n",
      "          'elaborate': 1,\n",
      "          'attenuated': 1,\n",
      "          'payoff': 1,\n",
      "          'nour': 1,\n",
      "          'surviving': 1,\n",
      "          'regulars': 1,\n",
      "          'become': 1,\n",
      "          'estranged': 1,\n",
      "          'nsidney': 1,\n",
      "          'campbell': 1,\n",
      "          'living': 1,\n",
      "          'paranoid': 1,\n",
      "          'existence': 1,\n",
      "          'electronic': 1,\n",
      "          'gates': 1,\n",
      "          'passwordprotected': 1,\n",
      "          'locks': 1,\n",
      "          'dewey': 1,\n",
      "          'acts': 1,\n",
      "          'technical': 1,\n",
      "          'advisor': 1,\n",
      "          'second': 1,\n",
      "          'sequel': 1,\n",
      "          '2s': 1,\n",
      "          'moviewithinamovie': 1,\n",
      "          'gale': 1,\n",
      "          'weathers': 1,\n",
      "          'cox': 1,\n",
      "          'headlines': 1,\n",
      "          'gossipy': 1,\n",
      "          'program': 1,\n",
      "          'nmurder': 1,\n",
      "          'reunites': 1,\n",
      "          'knifewielding': 1,\n",
      "          'stalks': 1,\n",
      "          'set': 1,\n",
      "          'imitating': 1,\n",
      "          'sadistic': 1,\n",
      "          'screenplayand': 1,\n",
      "          'personal': 1,\n",
      "          'draft': 1,\n",
      "          'climaxes': 1,\n",
      "          'death': 1,\n",
      "          'appeal': 1,\n",
      "          'villainy': 1,\n",
      "          'heshethey': 1,\n",
      "          'could': 1,\n",
      "          'boyfriend': 1,\n",
      "          'classmate': 1,\n",
      "          'door': 1,\n",
      "          'neighbour': 1,\n",
      "          'combination': 1,\n",
      "          'people': 1,\n",
      "          'nscream': 1,\n",
      "          'first': 1,\n",
      "          'kind': 1,\n",
      "          'slasher': 1,\n",
      "          'mystery': 1,\n",
      "          'guessing': 1,\n",
      "          'game': 1,\n",
      "          'entailing': 1,\n",
      "          'also': 1,\n",
      "          'perpetrator': 1,\n",
      "          'motive': 1,\n",
      "          'nironic': 1,\n",
      "          'selfreflection': 1,\n",
      "          'parts': 1,\n",
      "          'two': 1,\n",
      "          'stand': 1,\n",
      "          'crowd': 1,\n",
      "          'includes': 1,\n",
      "          'umpteen': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'halloween': 1,\n",
      "          'flicks': 1,\n",
      "          'last': 1,\n",
      "          'articulate': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'behind': 1,\n",
      "          'iconic': 1,\n",
      "          'costume': 1,\n",
      "          'novelty': 1,\n",
      "          'evermutating': 1,\n",
      "          'identity': 1,\n",
      "          'worn': 1,\n",
      "          'character': 1,\n",
      "          'remains': 1,\n",
      "          'conceptually': 1,\n",
      "          'potent': 1,\n",
      "          'nconceptually': 1,\n",
      "          'execution': 1,\n",
      "          'master': 1,\n",
      "          'plan': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'creaky': 1,\n",
      "          'screenwriter': 1,\n",
      "          'ehren': 1,\n",
      "          'invented': 1,\n",
      "          'mythology': 1,\n",
      "          'world': 1,\n",
      "          'sidney': 1,\n",
      "          'far': 1,\n",
      "          'afield': 1,\n",
      "          'come': 1,\n",
      "          'understand': 1,\n",
      "          'movie': 1,\n",
      "          'gets': 1,\n",
      "          'silly': 1,\n",
      "          'habit': 1,\n",
      "          'saying': 1,\n",
      "          'bets': 1,\n",
      "          'nin': 1,\n",
      "          'reference': 1,\n",
      "          'rules': 1,\n",
      "          'trilogys': 1,\n",
      "          'third': 1,\n",
      "          'breaking': 1,\n",
      "          'cheating': 1,\n",
      "          'departure': 1,\n",
      "          'williamson': 1,\n",
      "          'authored': 1,\n",
      "          'previous': 1,\n",
      "          'well': 1,\n",
      "          'tidy': 1,\n",
      "          'outline': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'reasons': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'ignored': 1,\n",
      "          'save': 1,\n",
      "          'notion': 1,\n",
      "          'needed': 1,\n",
      "          'reined': 1,\n",
      "          'tighter': 1,\n",
      "          'wes': 1,\n",
      "          'ncravens': 1,\n",
      "          'direction': 1,\n",
      "          'lazy': 1,\n",
      "          'respects': 1,\n",
      "          'nhow': 1,\n",
      "          'else': 1,\n",
      "          'explain': 1,\n",
      "          'jay': 1,\n",
      "          'bob': 1,\n",
      "          'cameo': 1,\n",
      "          'slacker': 1,\n",
      "          'duo': 1,\n",
      "          'smith': 1,\n",
      "          'movies': 1,\n",
      "          'akin': 1,\n",
      "          'seeing': 1,\n",
      "          'mickey': 1,\n",
      "          'mouse': 1,\n",
      "          'mulan': 1,\n",
      "          'distracting': 1,\n",
      "          'funny': 1,\n",
      "          'nit': 1,\n",
      "          'pains': 1,\n",
      "          'comedy': 1,\n",
      "          'generally': 1,\n",
      "          'laughless': 1,\n",
      "          'exception': 1,\n",
      "          'welltimed': 1,\n",
      "          'performances': 1,\n",
      "          'josh': 1,\n",
      "          'pais': 1,\n",
      "          'police': 1,\n",
      "          'detective': 1,\n",
      "          'possessed': 1,\n",
      "          'personality': 1,\n",
      "          'persnickety': 1,\n",
      "          'teacher': 1,\n",
      "          'cravens': 1,\n",
      "          'heart': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'resurrecting': 1,\n",
      "          'geek': 1,\n",
      "          'randy': 1,\n",
      "          'sendoff': 1,\n",
      "          'denied': 1,\n",
      "          'parker': 1,\n",
      "          'posey': 1,\n",
      "          'sheer': 1,\n",
      "          'force': 1,\n",
      "          'bactress': 1,\n",
      "          'visuals': 1,\n",
      "          'much': 1,\n",
      "          'weaker': 1,\n",
      "          'wellthe': 1,\n",
      "          'occasional': 1,\n",
      "          'sweeping': 1,\n",
      "          'gesture': 1,\n",
      "          'peter': 1,\n",
      "          'demings': 1,\n",
      "          'camera': 1,\n",
      "          'pale': 1,\n",
      "          'imitation': 1,\n",
      "          'stalking': 1,\n",
      "          'steadicam': 1,\n",
      "          'gave': 1,\n",
      "          'us': 1,\n",
      "          'twice': 1,\n",
      "          'wake': 1,\n",
      "          'columbine': 1,\n",
      "          'toned': 1,\n",
      "          'violence': 1,\n",
      "          'significantly': 1,\n",
      "          '3why': 1,\n",
      "          'sanctimony': 1,\n",
      "          'still': 1,\n",
      "          'readily': 1,\n",
      "          'available': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'shelves': 1,\n",
      "          'nfinally': 1,\n",
      "          'marco': 1,\n",
      "          'beltramis': 1,\n",
      "          'cues': 1,\n",
      "          'suspense': 1,\n",
      "          'blatantlydo': 1,\n",
      "          'recall': 1,\n",
      "          'tense': 1,\n",
      "          'chase': 1,\n",
      "          'college': 1,\n",
      "          'radio': 1,\n",
      "          'station': 1,\n",
      "          'mostly': 1,\n",
      "          'nsting': 1,\n",
      "          'notes': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'effective': 1,\n",
      "          'nowhere': 1,\n",
      "          'crescendos': 1,\n",
      "          'incessantly': 1,\n",
      "          'nervejangling': 1,\n",
      "          'score': 1,\n",
      "          'ni': 1,\n",
      "          'look': 1,\n",
      "          'coming': 1,\n",
      "          'alternative': 1,\n",
      "          'universe': 1,\n",
      "          'place': 1,\n",
      "          'birthed': 1,\n",
      "          'godfather': 1,\n",
      "          'iii': 1,\n",
      "          'superman': 1,\n",
      "          'iiiwoefully': 1,\n",
      "          'synch': 1,\n",
      "          'prequels': 1,\n",
      "          'nightmare': 1,\n",
      "          'instead': 1,\n",
      "          'nightmarish': 1,\n",
      "          'likely': 1,\n",
      "          'put': 1,\n",
      "          'horror': 1,\n",
      "          'genre': 1,\n",
      "          'back': 1,\n",
      "          'mothballs': 1,\n",
      "          'unintentionally': 1,\n",
      "          'follows': 1,\n",
      "          'unspoken': 1,\n",
      "          'trilogy': 1,\n",
      "          'must': 1,\n",
      "          'disappoint': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'200': 4,\n",
      "          'big': 3,\n",
      "          'cigarettes': 3,\n",
      "          'love': 3,\n",
      "          'rudd': 3,\n",
      "          'two': 3,\n",
      "          'best': 3,\n",
      "          'good': 3,\n",
      "          'new': 2,\n",
      "          'would': 2,\n",
      "          'nthe': 2,\n",
      "          'yet': 2,\n",
      "          'worth': 2,\n",
      "          'better': 2,\n",
      "          'includes': 2,\n",
      "          'hot': 2,\n",
      "          'gets': 2,\n",
      "          'affleck': 2,\n",
      "          'ben': 2,\n",
      "          'plimpton': 2,\n",
      "          'bad': 2,\n",
      "          'many': 2,\n",
      "          'backdrop': 1,\n",
      "          'years': 1,\n",
      "          'eve': 1,\n",
      "          '1981': 1,\n",
      "          'seem': 1,\n",
      "          'lend': 1,\n",
      "          'great': 1,\n",
      "          'party': 1,\n",
      "          'movie': 1,\n",
      "          'decor': 1,\n",
      "          'possibilities': 1,\n",
      "          'endless': 1,\n",
      "          'disco': 1,\n",
      "          'balls': 1,\n",
      "          'migrate': 1,\n",
      "          'dark': 1,\n",
      "          'corners': 1,\n",
      "          'attic': 1,\n",
      "          'hair': 1,\n",
      "          'weight': 1,\n",
      "          'aquanet': 1,\n",
      "          'louder': 1,\n",
      "          'fashion': 1,\n",
      "          'look': 1,\n",
      "          'nbut': 1,\n",
      "          'despite': 1,\n",
      "          'setting': 1,\n",
      "          'details': 1,\n",
      "          'soundtrack': 1,\n",
      "          '40plus': 1,\n",
      "          'irresistible': 1,\n",
      "          'hits': 1,\n",
      "          'early': 1,\n",
      "          'days': 1,\n",
      "          'decade': 1,\n",
      "          'something': 1,\n",
      "          'inherently': 1,\n",
      "          'wrong': 1,\n",
      "          'na': 1,\n",
      "          'title': 1,\n",
      "          'nostalgic': 1,\n",
      "          'mess': 1,\n",
      "          '50': 1,\n",
      "          'missed': 1,\n",
      "          'opportunities': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'retrocomedy': 1,\n",
      "          'downer': 1,\n",
      "          'nits': 1,\n",
      "          'certainly': 1,\n",
      "          'cast': 1,\n",
      "          'enough': 1,\n",
      "          'young': 1,\n",
      "          'talent': 1,\n",
      "          'several': 1,\n",
      "          'movies': 1,\n",
      "          'ntheres': 1,\n",
      "          'courtney': 1,\n",
      "          'cementing': 1,\n",
      "          'reputation': 1,\n",
      "          'serious': 1,\n",
      "          'actress': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'shouldabeennominated': 1,\n",
      "          'turn': 1,\n",
      "          'opposite': 1,\n",
      "          'sex': 1,\n",
      "          'paul': 1,\n",
      "          'even': 1,\n",
      "          'appealing': 1,\n",
      "          'every': 1,\n",
      "          'role': 1,\n",
      "          'kate': 1,\n",
      "          'hudson': 1,\n",
      "          'inheriting': 1,\n",
      "          'fine': 1,\n",
      "          'acting': 1,\n",
      "          'genes': 1,\n",
      "          'mom': 1,\n",
      "          'goldie': 1,\n",
      "          'hawn': 1,\n",
      "          'brothers': 1,\n",
      "          'casey': 1,\n",
      "          'things': 1,\n",
      "          'hunting': 1,\n",
      "          'nperhaps': 1,\n",
      "          'question': 1,\n",
      "          'drew': 1,\n",
      "          'immensely': 1,\n",
      "          'talented': 1,\n",
      "          'actors': 1,\n",
      "          'dreary': 1,\n",
      "          'project': 1,\n",
      "          'nmaybe': 1,\n",
      "          'looked': 1,\n",
      "          'paper': 1,\n",
      "          'n': 1,\n",
      "          'composed': 1,\n",
      "          'series': 1,\n",
      "          'vignettes': 1,\n",
      "          'various': 1,\n",
      "          'characters': 1,\n",
      "          'make': 1,\n",
      "          'way': 1,\n",
      "          'yorks': 1,\n",
      "          'festively': 1,\n",
      "          'decorated': 1,\n",
      "          'east': 1,\n",
      "          'village': 1,\n",
      "          'holiday': 1,\n",
      "          'bash': 1,\n",
      "          'thrown': 1,\n",
      "          'jittery': 1,\n",
      "          'bundle': 1,\n",
      "          'nerves': 1,\n",
      "          'named': 1,\n",
      "          'monica': 1,\n",
      "          'martha': 1,\n",
      "          'dressed': 1,\n",
      "          'cyndi': 1,\n",
      "          'lauper': 1,\n",
      "          'namong': 1,\n",
      "          'potential': 1,\n",
      "          'guests': 1,\n",
      "          'likeable': 1,\n",
      "          'cad': 1,\n",
      "          'kevin': 1,\n",
      "          'friend': 1,\n",
      "          'lucy': 1,\n",
      "          'busy': 1,\n",
      "          'bickering': 1,\n",
      "          'recent': 1,\n",
      "          'breakup': 1,\n",
      "          'clumsy': 1,\n",
      "          'seemingly': 1,\n",
      "          'charming': 1,\n",
      "          'bartender': 1,\n",
      "          'opens': 1,\n",
      "          'mouth': 1,\n",
      "          'spew': 1,\n",
      "          'forth': 1,\n",
      "          'pickup': 1,\n",
      "          'lines': 1,\n",
      "          'nmore': 1,\n",
      "          'subplots': 1,\n",
      "          '_many_': 1,\n",
      "          'dot': 1,\n",
      "          'picture': 1,\n",
      "          'listed': 1,\n",
      "          'ones': 1,\n",
      "          'noting': 1,\n",
      "          'positive': 1,\n",
      "          'light': 1,\n",
      "          'nall': 1,\n",
      "          'story': 1,\n",
      "          'tangents': 1,\n",
      "          'frazzled': 1,\n",
      "          'cokehead': 1,\n",
      "          'trying': 1,\n",
      "          'solve': 1,\n",
      "          'rubicks': 1,\n",
      "          'cube': 1,\n",
      "          'nricci': 1,\n",
      "          'gaby': 1,\n",
      "          'hoffman': 1,\n",
      "          'grate': 1,\n",
      "          'ronkonkoma': 1,\n",
      "          'gals': 1,\n",
      "          'kind': 1,\n",
      "          'trouble': 1,\n",
      "          'pronouncing': 1,\n",
      "          'hard': 1,\n",
      "          'consonants': 1,\n",
      "          'high': 1,\n",
      "          'time': 1,\n",
      "          'city': 1,\n",
      "          'ninfamously': 1,\n",
      "          'acerbic': 1,\n",
      "          'comedienne': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'wasted': 1,\n",
      "          'amounts': 1,\n",
      "          'severalscene': 1,\n",
      "          'cameo': 1,\n",
      "          'nhudson': 1,\n",
      "          'prettyinpink': 1,\n",
      "          'klutz': 1,\n",
      "          'recently': 1,\n",
      "          'devirginized': 1,\n",
      "          'reprehensible': 1,\n",
      "          'ladies': 1,\n",
      "          'man': 1,\n",
      "          'jay': 1,\n",
      "          'mohr': 1,\n",
      "          'trips': 1,\n",
      "          'pukes': 1,\n",
      "          'smeared': 1,\n",
      "          'dog': 1,\n",
      "          'poop': 1,\n",
      "          'nare': 1,\n",
      "          'laughing': 1,\n",
      "          'film': 1,\n",
      "          'boils': 1,\n",
      "          'mixture': 1,\n",
      "          'gaudy': 1,\n",
      "          'latter': 1,\n",
      "          'overtaking': 1,\n",
      "          'former': 1,\n",
      "          'ngame': 1,\n",
      "          'performances': 1,\n",
      "          'especially': 1,\n",
      "          'almost': 1,\n",
      "          'shot': 1,\n",
      "          'bizarrely': 1,\n",
      "          'colorful': 1,\n",
      "          'parts': 1,\n",
      "          'constantly': 1,\n",
      "          'roving': 1,\n",
      "          'focus': 1,\n",
      "          'combination': 1,\n",
      "          'mostly': 1,\n",
      "          'sputters': 1,\n",
      "          'crackle': 1,\n",
      "          'ntoo': 1,\n",
      "          'sidetracks': 1,\n",
      "          'rate': 1,\n",
      "          'uninteresting': 1,\n",
      "          'little': 1,\n",
      "          'payoff': 1,\n",
      "          'lengthy': 1,\n",
      "          'final': 1,\n",
      "          'montage': 1,\n",
      "          'find': 1,\n",
      "          'performers': 1,\n",
      "          'served': 1,\n",
      "          'one': 1,\n",
      "          'night': 1,\n",
      "          'stands': 1,\n",
      "          'nif': 1,\n",
      "          'get': 1,\n",
      "          'nicotine': 1,\n",
      "          'patches': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 4,\n",
      "          'premise': 2,\n",
      "          'final': 2,\n",
      "          'destination': 2,\n",
      "          'friends': 2,\n",
      "          'fate': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'horror': 2,\n",
      "          'death': 2,\n",
      "          'nthe': 2,\n",
      "          'characters': 2,\n",
      "          'new': 1,\n",
      "          'james': 1,\n",
      "          'wong': 1,\n",
      "          'alex': 1,\n",
      "          'browning': 1,\n",
      "          'protagonist': 1,\n",
      "          'prevents': 1,\n",
      "          'six': 1,\n",
      "          'boarding': 1,\n",
      "          'doomed': 1,\n",
      "          'airplane': 1,\n",
      "          'thereby': 1,\n",
      "          'cheating': 1,\n",
      "          'nhowever': 1,\n",
      "          'easily': 1,\n",
      "          'bested': 1,\n",
      "          'alexs': 1,\n",
      "          'soon': 1,\n",
      "          'begin': 1,\n",
      "          'dying': 1,\n",
      "          'unusual': 1,\n",
      "          'circumstances': 1,\n",
      "          'nessentially': 1,\n",
      "          'cleverway': 1,\n",
      "          'make': 1,\n",
      "          'slasherflick': 1,\n",
      "          'without': 1,\n",
      "          'slasher': 1,\n",
      "          'practically': 1,\n",
      "          'clever': 1,\n",
      "          'thing': 1,\n",
      "          'nas': 1,\n",
      "          'far': 1,\n",
      "          'teen': 1,\n",
      "          'flicks': 1,\n",
      "          'go': 1,\n",
      "          'better': 1,\n",
      "          'many': 1,\n",
      "          'nthere': 1,\n",
      "          'enough': 1,\n",
      "          'shocking': 1,\n",
      "          'graphic': 1,\n",
      "          'gore': 1,\n",
      "          'requisite': 1,\n",
      "          'black': 1,\n",
      "          'humor': 1,\n",
      "          'provide': 1,\n",
      "          'essential': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'type': 1,\n",
      "          'thrill': 1,\n",
      "          'heart': 1,\n",
      "          'average': 1,\n",
      "          'flick': 1,\n",
      "          'also': 1,\n",
      "          'suffers': 1,\n",
      "          'worst': 1,\n",
      "          'characteristics': 1,\n",
      "          'genre': 1,\n",
      "          'relationships': 1,\n",
      "          'main': 1,\n",
      "          'tenuous': 1,\n",
      "          'motivations': 1,\n",
      "          'meaningless': 1,\n",
      "          'except': 1,\n",
      "          'excuse': 1,\n",
      "          'setup': 1,\n",
      "          'next': 1,\n",
      "          'scene': 1,\n",
      "          'two': 1,\n",
      "          'break': 1,\n",
      "          'funeral': 1,\n",
      "          'home': 1,\n",
      "          'view': 1,\n",
      "          'body': 1,\n",
      "          'recently': 1,\n",
      "          'killed': 1,\n",
      "          'friend': 1,\n",
      "          'suppose': 1,\n",
      "          'scary': 1,\n",
      "          'dramatic': 1,\n",
      "          'features': 1,\n",
      "          'dumbest': 1,\n",
      "          'dialogue': 1,\n",
      "          'witnessed': 1,\n",
      "          'nif': 1,\n",
      "          'looking': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'thriller': 1,\n",
      "          'scare': 1,\n",
      "          'date': 1,\n",
      "          'might': 1,\n",
      "          'trick': 1,\n",
      "          'nother': 1,\n",
      "          'wait': 1,\n",
      "          'goes': 1,\n",
      "          'heavyrotation': 1,\n",
      "          'cable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'patch': 22,\n",
      "          'film': 11,\n",
      "          'patients': 9,\n",
      "          'nand': 8,\n",
      "          'adams': 7,\n",
      "          'scene': 6,\n",
      "          'people': 6,\n",
      "          'ni': 6,\n",
      "          'real': 6,\n",
      "          'way': 5,\n",
      "          'every': 5,\n",
      "          'bad': 5,\n",
      "          'dont': 5,\n",
      "          'hes': 5,\n",
      "          'free': 5,\n",
      "          'nbut': 5,\n",
      "          'music': 5,\n",
      "          'lot': 5,\n",
      "          'doctors': 4,\n",
      "          'going': 4,\n",
      "          'nyou': 4,\n",
      "          'wants': 4,\n",
      "          'good': 4,\n",
      "          'doesnt': 4,\n",
      "          'like': 4,\n",
      "          'doctor': 4,\n",
      "          'nhe': 4,\n",
      "          'medical': 4,\n",
      "          'clinic': 4,\n",
      "          'know': 4,\n",
      "          'sad': 4,\n",
      "          'patient': 4,\n",
      "          'moved': 4,\n",
      "          'see': 3,\n",
      "          'themes': 3,\n",
      "          'nthe': 3,\n",
      "          'make': 3,\n",
      "          'nin': 3,\n",
      "          'even': 3,\n",
      "          'goes': 3,\n",
      "          'school': 3,\n",
      "          'help': 3,\n",
      "          'us': 3,\n",
      "          'cry': 3,\n",
      "          'really': 3,\n",
      "          'drama': 3,\n",
      "          'something': 3,\n",
      "          'patchs': 3,\n",
      "          'without': 3,\n",
      "          'think': 3,\n",
      "          'rules': 3,\n",
      "          'words': 3,\n",
      "          'center': 2,\n",
      "          'courtroom': 2,\n",
      "          'lively': 2,\n",
      "          'audience': 2,\n",
      "          'hard': 2,\n",
      "          'someone': 2,\n",
      "          'quality': 2,\n",
      "          'picture': 2,\n",
      "          'hate': 2,\n",
      "          'days': 2,\n",
      "          'later': 2,\n",
      "          'superficial': 2,\n",
      "          'beginning': 2,\n",
      "          'cant': 2,\n",
      "          'yet': 2,\n",
      "          'probably': 2,\n",
      "          'point': 2,\n",
      "          'played': 2,\n",
      "          'robin': 2,\n",
      "          'williams': 2,\n",
      "          'performance': 2,\n",
      "          'human': 2,\n",
      "          'mental': 2,\n",
      "          'get': 2,\n",
      "          'nso': 2,\n",
      "          'great': 2,\n",
      "          'actually': 2,\n",
      "          'meets': 2,\n",
      "          'potters': 2,\n",
      "          'student': 2,\n",
      "          'go': 2,\n",
      "          'successful': 2,\n",
      "          'middle': 2,\n",
      "          'problem': 2,\n",
      "          'may': 2,\n",
      "          'seem': 2,\n",
      "          'first': 2,\n",
      "          'nwe': 2,\n",
      "          'theres': 2,\n",
      "          'dying': 2,\n",
      "          'last': 2,\n",
      "          'life': 2,\n",
      "          'nreal': 2,\n",
      "          'grow': 2,\n",
      "          'forced': 2,\n",
      "          'cheap': 2,\n",
      "          'little': 2,\n",
      "          'simplistic': 2,\n",
      "          'studying': 2,\n",
      "          'memorizing': 2,\n",
      "          'facts': 2,\n",
      "          'might': 2,\n",
      "          'study': 2,\n",
      "          'wont': 2,\n",
      "          'death': 2,\n",
      "          'understand': 2,\n",
      "          'maybe': 2,\n",
      "          'big': 2,\n",
      "          'pay': 2,\n",
      "          'character': 2,\n",
      "          'phony': 2,\n",
      "          'shouting': 2,\n",
      "          'surrounded': 1,\n",
      "          'giving': 1,\n",
      "          'standing': 1,\n",
      "          'ovation': 1,\n",
      "          'strongworded': 1,\n",
      "          'attack': 1,\n",
      "          'group': 1,\n",
      "          'stoic': 1,\n",
      "          'nwhen': 1,\n",
      "          'noticed': 1,\n",
      "          'saw': 1,\n",
      "          'reacting': 1,\n",
      "          'realized': 1,\n",
      "          'time': 1,\n",
      "          'finding': 1,\n",
      "          'agrees': 1,\n",
      "          'revolted': 1,\n",
      "          'beyond': 1,\n",
      "          'boundaries': 1,\n",
      "          'hated': 1,\n",
      "          'movie': 1,\n",
      "          'second': 1,\n",
      "          'sat': 1,\n",
      "          'watching': 1,\n",
      "          'actively': 1,\n",
      "          'simpering': 1,\n",
      "          'nauseatingly': 1,\n",
      "          'sentimental': 1,\n",
      "          'images': 1,\n",
      "          'forever': 1,\n",
      "          'plaguing': 1,\n",
      "          'memories': 1,\n",
      "          'element': 1,\n",
      "          'tom': 1,\n",
      "          'shadyacs': 1,\n",
      "          'shameless': 1,\n",
      "          'direction': 1,\n",
      "          'misguided': 1,\n",
      "          'mishandled': 1,\n",
      "          'screenplay': 1,\n",
      "          'desperately': 1,\n",
      "          'convey': 1,\n",
      "          'badness': 1,\n",
      "          'stupefying': 1,\n",
      "          'nits': 1,\n",
      "          'confounding': 1,\n",
      "          'believe': 1,\n",
      "          'based': 1,\n",
      "          'man': 1,\n",
      "          'undefeatable': 1,\n",
      "          'indefatigable': 1,\n",
      "          'insulting': 1,\n",
      "          'pathos': 1,\n",
      "          'sledgehammer': 1,\n",
      "          'sympathy': 1,\n",
      "          'wonder': 1,\n",
      "          'commits': 1,\n",
      "          'institution': 1,\n",
      "          'want': 1,\n",
      "          'kill': 1,\n",
      "          'nwhile': 1,\n",
      "          'notices': 1,\n",
      "          'care': 1,\n",
      "          'best': 1,\n",
      "          'treat': 1,\n",
      "          'beings': 1,\n",
      "          'crusade': 1,\n",
      "          'talks': 1,\n",
      "          'truman': 1,\n",
      "          'daniel': 1,\n",
      "          'london': 1,\n",
      "          'convinces': 1,\n",
      "          'also': 1,\n",
      "          'carin': 1,\n",
      "          'fischer': 1,\n",
      "          'monica': 1,\n",
      "          'antimale': 1,\n",
      "          'med': 1,\n",
      "          'motions': 1,\n",
      "          'nnaturally': 1,\n",
      "          'dean': 1,\n",
      "          'bob': 1,\n",
      "          'gunton': 1,\n",
      "          'hates': 1,\n",
      "          'thwart': 1,\n",
      "          'plans': 1,\n",
      "          'though': 1,\n",
      "          'gets': 1,\n",
      "          'highest': 1,\n",
      "          'scores': 1,\n",
      "          'exams': 1,\n",
      "          'decides': 1,\n",
      "          'build': 1,\n",
      "          'nowhere': 1,\n",
      "          'friends': 1,\n",
      "          'synopsis': 1,\n",
      "          'easily': 1,\n",
      "          'abhorrent': 1,\n",
      "          '1998': 1,\n",
      "          'non': 1,\n",
      "          'level': 1,\n",
      "          'particularly': 1,\n",
      "          'wouldnt': 1,\n",
      "          'say': 1,\n",
      "          'cinematography': 1,\n",
      "          'bothered': 1,\n",
      "          'performances': 1,\n",
      "          'exactly': 1,\n",
      "          'shadyac': 1,\n",
      "          'aiming': 1,\n",
      "          'liked': 1,\n",
      "          'wasted': 1,\n",
      "          'fails': 1,\n",
      "          'fundamentally': 1,\n",
      "          'execution': 1,\n",
      "          'nevery': 1,\n",
      "          'swells': 1,\n",
      "          'grand': 1,\n",
      "          'emotional': 1,\n",
      "          'maximum': 1,\n",
      "          'volume': 1,\n",
      "          'ntake': 1,\n",
      "          'instance': 1,\n",
      "          'shows': 1,\n",
      "          'sitting': 1,\n",
      "          'bus': 1,\n",
      "          'supposed': 1,\n",
      "          'nlater': 1,\n",
      "          'makes': 1,\n",
      "          'progress': 1,\n",
      "          'helps': 1,\n",
      "          'peter': 1,\n",
      "          'coyote': 1,\n",
      "          'enjoy': 1,\n",
      "          'pushing': 1,\n",
      "          'recklessly': 1,\n",
      "          'halls': 1,\n",
      "          'hospital': 1,\n",
      "          'finally': 1,\n",
      "          'dies': 1,\n",
      "          'spoiler': 1,\n",
      "          'alert': 1,\n",
      "          'emotions': 1,\n",
      "          'characterbased': 1,\n",
      "          'happens': 1,\n",
      "          'feel': 1,\n",
      "          'ever': 1,\n",
      "          'simply': 1,\n",
      "          'vehicle': 1,\n",
      "          'greatness': 1,\n",
      "          'present': 1,\n",
      "          'nthats': 1,\n",
      "          'nit': 1,\n",
      "          'tear': 1,\n",
      "          'imaginable': 1,\n",
      "          'wringing': 1,\n",
      "          'tired': 1,\n",
      "          'overbearing': 1,\n",
      "          'sentimentality': 1,\n",
      "          'neven': 1,\n",
      "          'scenes': 1,\n",
      "          'impact': 1,\n",
      "          'overall': 1,\n",
      "          'drowning': 1,\n",
      "          'marc': 1,\n",
      "          'shaimans': 1,\n",
      "          'sickening': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'nsentimentality': 1,\n",
      "          'indeed': 1,\n",
      "          'halfbaked': 1,\n",
      "          'aces': 1,\n",
      "          'tests': 1,\n",
      "          'effectively': 1,\n",
      "          'cheating': 1,\n",
      "          'become': 1,\n",
      "          'n': 1,\n",
      "          'third': 1,\n",
      "          'year': 1,\n",
      "          'bursts': 1,\n",
      "          'three': 1,\n",
      "          'seconds': 1,\n",
      "          'nwell': 1,\n",
      "          'fact': 1,\n",
      "          'need': 1,\n",
      "          'learn': 1,\n",
      "          'treating': 1,\n",
      "          'nnot': 1,\n",
      "          'everyone': 1,\n",
      "          'capability': 1,\n",
      "          'effort': 1,\n",
      "          'nmost': 1,\n",
      "          'toe': 1,\n",
      "          'finger': 1,\n",
      "          'preventing': 1,\n",
      "          'noh': 1,\n",
      "          'wait': 1,\n",
      "          'almost': 1,\n",
      "          'forgot': 1,\n",
      "          'prevent': 1,\n",
      "          'improve': 1,\n",
      "          'nyes': 1,\n",
      "          'nthat': 1,\n",
      "          'true': 1,\n",
      "          'nwhat': 1,\n",
      "          'never': 1,\n",
      "          'seemed': 1,\n",
      "          'possibility': 1,\n",
      "          'idea': 1,\n",
      "          'talk': 1,\n",
      "          'nfollow': 1,\n",
      "          'nbah': 1,\n",
      "          'nwho': 1,\n",
      "          'needs': 1,\n",
      "          'nonly': 1,\n",
      "          'uptight': 1,\n",
      "          'follow': 1,\n",
      "          'saviors': 1,\n",
      "          'ones': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'hospitals': 1,\n",
      "          'red': 1,\n",
      "          'spheres': 1,\n",
      "          'faces': 1,\n",
      "          'sporting': 1,\n",
      "          'baggy': 1,\n",
      "          'yellow': 1,\n",
      "          'pants': 1,\n",
      "          'issue': 1,\n",
      "          'find': 1,\n",
      "          'shockingly': 1,\n",
      "          'frighteningly': 1,\n",
      "          'idealistic': 1,\n",
      "          'na': 1,\n",
      "          'forest': 1,\n",
      "          'nwhere': 1,\n",
      "          'taken': 1,\n",
      "          'helped': 1,\n",
      "          'nfor': 1,\n",
      "          'nhow': 1,\n",
      "          'transported': 1,\n",
      "          'nwill': 1,\n",
      "          'emergency': 1,\n",
      "          'room': 1,\n",
      "          'ask': 1,\n",
      "          'give': 1,\n",
      "          'token': 1,\n",
      "          'attempts': 1,\n",
      "          'question': 1,\n",
      "          'motives': 1,\n",
      "          'another': 1,\n",
      "          'asks': 1,\n",
      "          'addition': 1,\n",
      "          'bit': 1,\n",
      "          'meaningless': 1,\n",
      "          'blather': 1,\n",
      "          'hmos': 1,\n",
      "          'insurance': 1,\n",
      "          'certainly': 1,\n",
      "          'explore': 1,\n",
      "          'challenge': 1,\n",
      "          'ideas': 1,\n",
      "          'meaningful': 1,\n",
      "          'extent': 1,\n",
      "          'nreader': 1,\n",
      "          'please': 1,\n",
      "          'making': 1,\n",
      "          'kind': 1,\n",
      "          'judgment': 1,\n",
      "          'nothing': 1,\n",
      "          'nif': 1,\n",
      "          'beliefs': 1,\n",
      "          'mirror': 1,\n",
      "          'intelligent': 1,\n",
      "          'discussion': 1,\n",
      "          'regardless': 1,\n",
      "          'believes': 1,\n",
      "          'put': 1,\n",
      "          'forth': 1,\n",
      "          'obligatory': 1,\n",
      "          'lunch': 1,\n",
      "          'halfway': 1,\n",
      "          'esophagus': 1,\n",
      "          'nactually': 1,\n",
      "          'shouts': 1,\n",
      "          'helping': 1,\n",
      "          'tell': 1,\n",
      "          'profoundly': 1,\n",
      "          'negative': 1,\n",
      "          'reminded': 1,\n",
      "          'cinematic': 1,\n",
      "          'experience': 1,\n",
      "          'npatch': 1,\n",
      "          'cheapest': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'eddie': 7,\n",
      "          'movie': 6,\n",
      "          'knicks': 5,\n",
      "          'players': 5,\n",
      "          'nba': 4,\n",
      "          'neddie': 4,\n",
      "          'bad': 4,\n",
      "          'new': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 3,\n",
      "          'nits': 3,\n",
      "          'basketball': 3,\n",
      "          'well': 3,\n",
      "          'eventually': 3,\n",
      "          'get': 3,\n",
      "          'script': 3,\n",
      "          'york': 3,\n",
      "          'fan': 3,\n",
      "          'team': 3,\n",
      "          'coach': 3,\n",
      "          'actual': 3,\n",
      "          'make': 3,\n",
      "          'actors': 3,\n",
      "          'like': 3,\n",
      "          'lines': 3,\n",
      "          'though': 3,\n",
      "          'isnt': 3,\n",
      "          'cant': 2,\n",
      "          'miss': 2,\n",
      "          'cameo': 2,\n",
      "          'ill': 2,\n",
      "          'right': 2,\n",
      "          'publicity': 2,\n",
      "          'sort': 2,\n",
      "          'comedy': 2,\n",
      "          'see': 2,\n",
      "          'least': 2,\n",
      "          'required': 2,\n",
      "          'plot': 2,\n",
      "          'makes': 2,\n",
      "          'every': 2,\n",
      "          'decision': 2,\n",
      "          'goldberg': 2,\n",
      "          'frank': 2,\n",
      "          'langella': 2,\n",
      "          'surprise': 2,\n",
      "          'big': 2,\n",
      "          'teams': 2,\n",
      "          'nthose': 2,\n",
      "          'usually': 2,\n",
      "          'involve': 2,\n",
      "          'kids': 2,\n",
      "          'sound': 2,\n",
      "          'comedic': 2,\n",
      "          'reason': 2,\n",
      "          'premise': 2,\n",
      "          'look': 2,\n",
      "          'punch': 2,\n",
      "          'nperhaps': 2,\n",
      "          'film': 2,\n",
      "          'donald': 2,\n",
      "          'trump': 2,\n",
      "          'mayor': 2,\n",
      "          'letterman': 2,\n",
      "          'mujibur': 2,\n",
      "          'sirajul': 2,\n",
      "          'hey': 2,\n",
      "          'great': 1,\n",
      "          'idea': 1,\n",
      "          'nsee': 1,\n",
      "          'ive': 1,\n",
      "          'got': 1,\n",
      "          'coolio': 1,\n",
      "          'song': 1,\n",
      "          'soundtrack': 1,\n",
      "          'fifty': 1,\n",
      "          'athletes': 1,\n",
      "          'celebrities': 1,\n",
      "          'appearances': 1,\n",
      "          'professional': 1,\n",
      "          'release': 1,\n",
      "          'around': 1,\n",
      "          'finals': 1,\n",
      "          'guarantee': 1,\n",
      "          'added': 1,\n",
      "          'nas': 1,\n",
      "          'actually': 1,\n",
      "          'ni': 1,\n",
      "          'figure': 1,\n",
      "          'throw': 1,\n",
      "          'halfdozen': 1,\n",
      "          'writers': 1,\n",
      "          'take': 1,\n",
      "          'best': 1,\n",
      "          'whatever': 1,\n",
      "          'come': 1,\n",
      "          'nmaybe': 1,\n",
      "          'put': 1,\n",
      "          'gender': 1,\n",
      "          'spin': 1,\n",
      "          'women': 1,\n",
      "          'phenomenally': 1,\n",
      "          'lazy': 1,\n",
      "          'films': 1,\n",
      "          'infuriates': 1,\n",
      "          'kind': 1,\n",
      "          'ntwister': 1,\n",
      "          'inane': 1,\n",
      "          'might': 1,\n",
      "          'creative': 1,\n",
      "          'technicians': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'overwrought': 1,\n",
      "          'involved': 1,\n",
      "          'genuine': 1,\n",
      "          'effort': 1,\n",
      "          'sits': 1,\n",
      "          'hawking': 1,\n",
      "          'formula': 1,\n",
      "          'story': 1,\n",
      "          'without': 1,\n",
      "          'laughs': 1,\n",
      "          'possible': 1,\n",
      "          'nwhoopi': 1,\n",
      "          'plays': 1,\n",
      "          'franklin': 1,\n",
      "          'limo': 1,\n",
      "          'driver': 1,\n",
      "          'diehard': 1,\n",
      "          'suffering': 1,\n",
      "          'dismal': 1,\n",
      "          'season': 1,\n",
      "          'beloved': 1,\n",
      "          'ncoach': 1,\n",
      "          'john': 1,\n",
      "          'bailey': 1,\n",
      "          'dennis': 1,\n",
      "          'farina': 1,\n",
      "          'lost': 1,\n",
      "          'control': 1,\n",
      "          'overpaid': 1,\n",
      "          'prima': 1,\n",
      "          'donnas': 1,\n",
      "          'losses': 1,\n",
      "          'beginning': 1,\n",
      "          'mount': 1,\n",
      "          'dwindling': 1,\n",
      "          'attendance': 1,\n",
      "          'inspires': 1,\n",
      "          'owner': 1,\n",
      "          'wild': 1,\n",
      "          'bill': 1,\n",
      "          'burgess': 1,\n",
      "          'try': 1,\n",
      "          'stunt': 1,\n",
      "          'lucky': 1,\n",
      "          'honorary': 1,\n",
      "          'winner': 1,\n",
      "          'becomes': 1,\n",
      "          'favorite': 1,\n",
      "          'continue': 1,\n",
      "          'lose': 1,\n",
      "          'sassy': 1,\n",
      "          'tricks': 1,\n",
      "          'sleeve': 1,\n",
      "          'inspire': 1,\n",
      "          'troops': 1,\n",
      "          'nincidentally': 1,\n",
      "          'start': 1,\n",
      "          'winning': 1,\n",
      "          'nplease': 1,\n",
      "          'raise': 1,\n",
      "          'hand': 1,\n",
      "          'comes': 1,\n",
      "          'shock': 1,\n",
      "          'invite': 1,\n",
      "          'allnight': 1,\n",
      "          'marathon': 1,\n",
      "          'news': 1,\n",
      "          'bears': 1,\n",
      "          'major': 1,\n",
      "          'league': 1,\n",
      "          'angels': 1,\n",
      "          'outfield': 1,\n",
      "          'mighty': 1,\n",
      "          'ducks': 1,\n",
      "          'green': 1,\n",
      "          'cool': 1,\n",
      "          'runnings': 1,\n",
      "          'little': 1,\n",
      "          'giants': 1,\n",
      "          'nawful': 1,\n",
      "          'sports': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'comedies': 1,\n",
      "          'miraculous': 1,\n",
      "          'turnarounds': 1,\n",
      "          'funnier': 1,\n",
      "          'screw': 1,\n",
      "          'theyre': 1,\n",
      "          'sympathetic': 1,\n",
      "          '_dont_': 1,\n",
      "          'lead': 1,\n",
      "          'roles': 1,\n",
      "          'another': 1,\n",
      "          'generally': 1,\n",
      "          'developed': 1,\n",
      "          'comic': 1,\n",
      "          'timing': 1,\n",
      "          'cast': 1,\n",
      "          'misguided': 1,\n",
      "          'easier': 1,\n",
      "          'nthis': 1,\n",
      "          'finds': 1,\n",
      "          'greg': 1,\n",
      "          'ostertag': 1,\n",
      "          'dwayne': 1,\n",
      "          'schintzius': 1,\n",
      "          'rick': 1,\n",
      "          'fox': 1,\n",
      "          'malik': 1,\n",
      "          'sealy': 1,\n",
      "          'delivering': 1,\n",
      "          'reading': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'bazooka': 1,\n",
      "          'wrapper': 1,\n",
      "          'sacramento': 1,\n",
      "          'kings': 1,\n",
      "          'center': 1,\n",
      "          'olden': 1,\n",
      "          'polynice': 1,\n",
      "          'nice': 1,\n",
      "          'moment': 1,\n",
      "          'describing': 1,\n",
      "          'black': 1,\n",
      "          'hole': 1,\n",
      "          'fellow': 1,\n",
      "          'didnt': 1,\n",
      "          'matter': 1,\n",
      "          'anyone': 1,\n",
      "          'whole': 1,\n",
      "          'casting': 1,\n",
      "          'gimmick': 1,\n",
      "          'nsteve': 1,\n",
      "          'rash': 1,\n",
      "          'directs': 1,\n",
      "          'spiritless': 1,\n",
      "          'waving': 1,\n",
      "          'flag': 1,\n",
      "          'surrender': 1,\n",
      "          'screaming': 1,\n",
      "          'dont': 1,\n",
      "          'blame': 1,\n",
      "          'work': 1,\n",
      "          'patently': 1,\n",
      "          'obvious': 1,\n",
      "          'appearance': 1,\n",
      "          'trips': 1,\n",
      "          'namong': 1,\n",
      "          'notables': 1,\n",
      "          'lend': 1,\n",
      "          'faces': 1,\n",
      "          'travesty': 1,\n",
      "          'rudolph': 1,\n",
      "          'giulianni': 1,\n",
      "          'former': 1,\n",
      "          'ed': 1,\n",
      "          'koch': 1,\n",
      "          'david': 1,\n",
      "          'regulars': 1,\n",
      "          'rahman': 1,\n",
      "          'islam': 1,\n",
      "          'espn': 1,\n",
      "          'broadcaster': 1,\n",
      "          'chris': 1,\n",
      "          'berman': 1,\n",
      "          'announcer': 1,\n",
      "          'marv': 1,\n",
      "          'albert': 1,\n",
      "          'dozens': 1,\n",
      "          'several': 1,\n",
      "          'arenas': 1,\n",
      "          'nand': 1,\n",
      "          'real': 1,\n",
      "          'jokes': 1,\n",
      "          'nnothing': 1,\n",
      "          'individuals': 1,\n",
      "          'say': 1,\n",
      "          'funny': 1,\n",
      "          'supposed': 1,\n",
      "          'laughing': 1,\n",
      "          'simply': 1,\n",
      "          'notice': 1,\n",
      "          'difficult': 1,\n",
      "          'decide': 1,\n",
      "          'whether': 1,\n",
      "          'shamelessly': 1,\n",
      "          'lacking': 1,\n",
      "          'imagination': 1,\n",
      "          'even': 1,\n",
      "          'cliches': 1,\n",
      "          'clicheridden': 1,\n",
      "          'genre': 1,\n",
      "          'eddies': 1,\n",
      "          'antagonist': 1,\n",
      "          'early': 1,\n",
      "          'reappears': 1,\n",
      "          'end': 1,\n",
      "          'given': 1,\n",
      "          'chance': 1,\n",
      "          'villain': 1,\n",
      "          'desperately': 1,\n",
      "          'needs': 1,\n",
      "          'nneither': 1,\n",
      "          'none': 1,\n",
      "          'athleteactors': 1,\n",
      "          'ability': 1,\n",
      "          'give': 1,\n",
      "          'whoopi': 1,\n",
      "          'anything': 1,\n",
      "          'play': 1,\n",
      "          'nthat': 1,\n",
      "          'leaves': 1,\n",
      "          'streetwise': 1,\n",
      "          'thang': 1,\n",
      "          'routine': 1,\n",
      "          'character': 1,\n",
      "          'sharp': 1,\n",
      "          'help': 1,\n",
      "          'formulaic': 1,\n",
      "          'feel': 1,\n",
      "          'cheated': 1,\n",
      "          'offended': 1,\n",
      "          'someone': 1,\n",
      "          'came': 1,\n",
      "          'poster': 1,\n",
      "          'marketing': 1,\n",
      "          'plan': 1,\n",
      "          'attach': 1,\n",
      "          'nerve': 1,\n",
      "          'believe': 1,\n",
      "          'going': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'club': 7,\n",
      "          'film': 6,\n",
      "          'fight': 5,\n",
      "          'films': 4,\n",
      "          'nbut': 4,\n",
      "          'world': 4,\n",
      "          'ni': 3,\n",
      "          'much': 3,\n",
      "          'truly': 3,\n",
      "          'make': 3,\n",
      "          'game': 3,\n",
      "          'tyler': 3,\n",
      "          'get': 3,\n",
      "          'good': 3,\n",
      "          'social': 3,\n",
      "          'politics': 3,\n",
      "          'would': 2,\n",
      "          'must': 2,\n",
      "          'befuddled': 2,\n",
      "          'things': 2,\n",
      "          'nnow': 2,\n",
      "          'sometimes': 2,\n",
      "          'later': 2,\n",
      "          'years': 2,\n",
      "          'nperhaps': 2,\n",
      "          'nfight': 2,\n",
      "          'brilliant': 2,\n",
      "          'right': 2,\n",
      "          'throughout': 2,\n",
      "          'media': 2,\n",
      "          'norton': 2,\n",
      "          'jack': 2,\n",
      "          'pitt': 2,\n",
      "          'begin': 2,\n",
      "          'say': 2,\n",
      "          'fincher': 2,\n",
      "          'se7en': 2,\n",
      "          'put': 2,\n",
      "          'filmmakers': 2,\n",
      "          'means': 2,\n",
      "          'woven': 2,\n",
      "          'interoffice': 2,\n",
      "          'n': 2,\n",
      "          'nall': 2,\n",
      "          'nnot': 2,\n",
      "          'point': 2,\n",
      "          'bizarre': 2,\n",
      "          'likely': 2,\n",
      "          'think': 2,\n",
      "          'reasonable': 1,\n",
      "          'human': 1,\n",
      "          'admit': 1,\n",
      "          'occasionally': 1,\n",
      "          'certain': 1,\n",
      "          'favorite': 1,\n",
      "          'panned': 1,\n",
      "          'critics': 1,\n",
      "          'achieve': 1,\n",
      "          'critical': 1,\n",
      "          'success': 1,\n",
      "          'ten': 1,\n",
      "          'twenty': 1,\n",
      "          'way': 1,\n",
      "          'ahead': 1,\n",
      "          'time': 1,\n",
      "          'new': 1,\n",
      "          'complex': 1,\n",
      "          'allowing': 1,\n",
      "          'sink': 1,\n",
      "          'appreciate': 1,\n",
      "          'understand': 1,\n",
      "          'either': 1,\n",
      "          'garbage': 1,\n",
      "          'least': 1,\n",
      "          'lean': 1,\n",
      "          'toward': 1,\n",
      "          'former': 1,\n",
      "          'nmaybe': 1,\n",
      "          'subconsciously': 1,\n",
      "          'affected': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'slowly': 1,\n",
      "          'leaking': 1,\n",
      "          'weeks': 1,\n",
      "          'pure': 1,\n",
      "          'gold': 1,\n",
      "          'sure': 1,\n",
      "          'see': 1,\n",
      "          'nedward': 1,\n",
      "          'plays': 1,\n",
      "          'field': 1,\n",
      "          'examiner': 1,\n",
      "          'major': 1,\n",
      "          'automobile': 1,\n",
      "          'manufacturer': 1,\n",
      "          'nhis': 1,\n",
      "          'insomnia': 1,\n",
      "          'coupled': 1,\n",
      "          'compulsive': 1,\n",
      "          'desires': 1,\n",
      "          'fill': 1,\n",
      "          'ikea': 1,\n",
      "          'furniture': 1,\n",
      "          'complete': 1,\n",
      "          'loser': 1,\n",
      "          'life': 1,\n",
      "          'worldly': 1,\n",
      "          'possessions': 1,\n",
      "          'blown': 1,\n",
      "          '15th': 1,\n",
      "          'story': 1,\n",
      "          'window': 1,\n",
      "          'seeks': 1,\n",
      "          'comfort': 1,\n",
      "          'stranger': 1,\n",
      "          'met': 1,\n",
      "          'flight': 1,\n",
      "          'home': 1,\n",
      "          'nonce': 1,\n",
      "          'sucked': 1,\n",
      "          'literally': 1,\n",
      "          'nthey': 1,\n",
      "          'organization': 1,\n",
      "          'based': 1,\n",
      "          'brutal': 1,\n",
      "          'bloody': 1,\n",
      "          'fistfights': 1,\n",
      "          'signify': 1,\n",
      "          'nothing': 1,\n",
      "          'provide': 1,\n",
      "          'join': 1,\n",
      "          'sense': 1,\n",
      "          'belonging': 1,\n",
      "          'nas': 1,\n",
      "          'grows': 1,\n",
      "          'control': 1,\n",
      "          'take': 1,\n",
      "          'cult': 1,\n",
      "          'status': 1,\n",
      "          'beginning': 1,\n",
      "          'one': 1,\n",
      "          'future': 1,\n",
      "          'soldier': 1,\n",
      "          'proves': 1,\n",
      "          'worth': 1,\n",
      "          'standing': 1,\n",
      "          'still': 1,\n",
      "          'outside': 1,\n",
      "          'house': 1,\n",
      "          'three': 1,\n",
      "          'days': 1,\n",
      "          'dare': 1,\n",
      "          'even': 1,\n",
      "          'bring': 1,\n",
      "          'last': 1,\n",
      "          'quarter': 1,\n",
      "          'since': 1,\n",
      "          'contains': 1,\n",
      "          'twist': 1,\n",
      "          'explains': 1,\n",
      "          'pointless': 1,\n",
      "          'journey': 1,\n",
      "          'nsuffice': 1,\n",
      "          'disappointed': 1,\n",
      "          'previous': 1,\n",
      "          'two': 1,\n",
      "          'slim': 1,\n",
      "          'category': 1,\n",
      "          'young': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'nthis': 1,\n",
      "          'imply': 1,\n",
      "          'longer': 1,\n",
      "          'genius': 1,\n",
      "          'capable': 1,\n",
      "          'bringing': 1,\n",
      "          'masterpieces': 1,\n",
      "          'table': 1,\n",
      "          'allowed': 1,\n",
      "          'unique': 1,\n",
      "          'talent': 1,\n",
      "          'extraordinary': 1,\n",
      "          'vision': 1,\n",
      "          'distorted': 1,\n",
      "          'silly': 1,\n",
      "          'digital': 1,\n",
      "          'experiments': 1,\n",
      "          'selfreferencing': 1,\n",
      "          'elements': 1,\n",
      "          'talking': 1,\n",
      "          'audience': 1,\n",
      "          'seeing': 1,\n",
      "          'telling': 1,\n",
      "          'little': 1,\n",
      "          'blips': 1,\n",
      "          'hand': 1,\n",
      "          'corner': 1,\n",
      "          'signifiers': 1,\n",
      "          'projectionist': 1,\n",
      "          'changing': 1,\n",
      "          'reels': 1,\n",
      "          'slightly': 1,\n",
      "          'altered': 1,\n",
      "          'recurring': 1,\n",
      "          'line': 1,\n",
      "          'flashback': 1,\n",
      "          'humor': 1,\n",
      "          'coarsely': 1,\n",
      "          'texture': 1,\n",
      "          'overextended': 1,\n",
      "          'plot': 1,\n",
      "          'lines': 1,\n",
      "          'obviously': 1,\n",
      "          'trying': 1,\n",
      "          'various': 1,\n",
      "          'comments': 1,\n",
      "          'state': 1,\n",
      "          'today': 1,\n",
      "          'nadvertisements': 1,\n",
      "          'corporations': 1,\n",
      "          'name': 1,\n",
      "          'addressed': 1,\n",
      "          'though': 1,\n",
      "          'suspiciously': 1,\n",
      "          'absent': 1,\n",
      "          'institutions': 1,\n",
      "          'referenced': 1,\n",
      "          'play': 1,\n",
      "          'important': 1,\n",
      "          'role': 1,\n",
      "          'nhow': 1,\n",
      "          'nwell': 1,\n",
      "          'kinda': 1,\n",
      "          'tell': 1,\n",
      "          'really': 1,\n",
      "          'finger': 1,\n",
      "          'nto': 1,\n",
      "          'starbucks': 1,\n",
      "          'barnes': 1,\n",
      "          'noble': 1,\n",
      "          'taking': 1,\n",
      "          'respective': 1,\n",
      "          'markets': 1,\n",
      "          'kicking': 1,\n",
      "          'small': 1,\n",
      "          'business': 1,\n",
      "          'owner': 1,\n",
      "          'big': 1,\n",
      "          'news': 1,\n",
      "          'nis': 1,\n",
      "          'bad': 1,\n",
      "          'nprobably': 1,\n",
      "          'room': 1,\n",
      "          'commentary': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'nso': 1,\n",
      "          'nthe': 1,\n",
      "          'seems': 1,\n",
      "          'desperate': 1,\n",
      "          'number': 1,\n",
      "          'points': 1,\n",
      "          'figure': 1,\n",
      "          'saw': 1,\n",
      "          'satire': 1,\n",
      "          'strange': 1,\n",
      "          'techniques': 1,\n",
      "          'bleak': 1,\n",
      "          'visual': 1,\n",
      "          'design': 1,\n",
      "          'fine': 1,\n",
      "          'acting': 1,\n",
      "          'carter': 1,\n",
      "          'neven': 1,\n",
      "          'meatloaf': 1,\n",
      "          'nwhen': 1,\n",
      "          'end': 1,\n",
      "          'filled': 1,\n",
      "          'questions': 1,\n",
      "          'many': 1,\n",
      "          'wanted': 1,\n",
      "          'ask': 1,\n",
      "          'give': 1,\n",
      "          'different': 1,\n",
      "          'answer': 1,\n",
      "          'want': 1,\n",
      "          'mean': 1,\n",
      "          'gives': 1,\n",
      "          'stuff': 1,\n",
      "          'unappealing': 1,\n",
      "          'nsure': 1,\n",
      "          'shock': 1,\n",
      "          'value': 1,\n",
      "          'significantly': 1,\n",
      "          'stronger': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'batman': 7,\n",
      "          'ni': 7,\n",
      "          'film': 6,\n",
      "          'really': 6,\n",
      "          'like': 4,\n",
      "          'much': 4,\n",
      "          'films': 4,\n",
      "          'clooney': 2,\n",
      "          'say': 2,\n",
      "          'couple': 2,\n",
      "          'miss': 2,\n",
      "          'would': 2,\n",
      "          'first': 2,\n",
      "          'bit': 2,\n",
      "          'dark': 2,\n",
      "          'mean': 2,\n",
      "          'fun': 2,\n",
      "          'everyone': 2,\n",
      "          'reason': 2,\n",
      "          'staring': 1,\n",
      "          'george': 1,\n",
      "          'arnold': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'chris': 1,\n",
      "          'odonnell': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'alicia': 1,\n",
      "          'silverstone': 1,\n",
      "          'nwell': 1,\n",
      "          'start': 1,\n",
      "          'id': 1,\n",
      "          'things': 1,\n",
      "          'nfirst': 1,\n",
      "          'michael': 1,\n",
      "          'keaton': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'prefer': 1,\n",
      "          'think': 1,\n",
      "          'last': 1,\n",
      "          'two': 1,\n",
      "          'dallas': 1,\n",
      "          'dream': 1,\n",
      "          'sequence': 1,\n",
      "          'nnot': 1,\n",
      "          'even': 1,\n",
      "          'star': 1,\n",
      "          'though': 1,\n",
      "          'damn': 1,\n",
      "          'close': 1,\n",
      "          'anyway': 1,\n",
      "          'nin': 1,\n",
      "          'forever': 1,\n",
      "          'robin': 1,\n",
      "          'hes': 1,\n",
      "          'almost': 1,\n",
      "          'pushed': 1,\n",
      "          'player': 1,\n",
      "          'cant': 1,\n",
      "          'regardless': 1,\n",
      "          'better': 1,\n",
      "          'kilmer': 1,\n",
      "          'good': 1,\n",
      "          'nhes': 1,\n",
      "          'given': 1,\n",
      "          'next': 1,\n",
      "          'nothing': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'wouldnt': 1,\n",
      "          'made': 1,\n",
      "          'difference': 1,\n",
      "          'nnow': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'said': 1,\n",
      "          'refuses': 1,\n",
      "          'bend': 1,\n",
      "          'masses': 1,\n",
      "          'hated': 1,\n",
      "          'cheered': 1,\n",
      "          'return': 1,\n",
      "          'buton': 1,\n",
      "          'wont': 1,\n",
      "          'make': 1,\n",
      "          'brooding': 1,\n",
      "          'nfine': 1,\n",
      "          'granted': 1,\n",
      "          'returns': 1,\n",
      "          'awsome': 1,\n",
      "          'sometimes': 1,\n",
      "          'nyet': 1,\n",
      "          'bright': 1,\n",
      "          'neon': 1,\n",
      "          'campy': 1,\n",
      "          'style': 1,\n",
      "          'killing': 1,\n",
      "          'anything': 1,\n",
      "          'series': 1,\n",
      "          'meant': 1,\n",
      "          'nim': 1,\n",
      "          'usually': 1,\n",
      "          'easy': 1,\n",
      "          'loved': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'critics': 1,\n",
      "          'slammed': 1,\n",
      "          'ngranted': 1,\n",
      "          'paper': 1,\n",
      "          'thin': 1,\n",
      "          'cliche': 1,\n",
      "          'ridden': 1,\n",
      "          'except': 1,\n",
      "          'one': 1,\n",
      "          'thing': 1,\n",
      "          'nthere': 1,\n",
      "          'virtually': 1,\n",
      "          'couldnt': 1,\n",
      "          'cared': 1,\n",
      "          'less': 1,\n",
      "          'nitll': 1,\n",
      "          'thrill': 1,\n",
      "          'little': 1,\n",
      "          'ones': 1,\n",
      "          'theres': 1,\n",
      "          'violence': 1,\n",
      "          'none': 1,\n",
      "          'comes': 1,\n",
      "          'fine': 1,\n",
      "          'end': 1,\n",
      "          'old': 1,\n",
      "          'tv': 1,\n",
      "          'shows': 1,\n",
      "          'ends': 1,\n",
      "          'laughing': 1,\n",
      "          'nschwarzenegger': 1,\n",
      "          'awful': 1,\n",
      "          'bad': 1,\n",
      "          'nand': 1,\n",
      "          'coming': 1,\n",
      "          'regular': 1,\n",
      "          'fan': 1,\n",
      "          'work': 1,\n",
      "          'love': 1,\n",
      "          'movies': 1,\n",
      "          'time': 1,\n",
      "          'basic': 1,\n",
      "          'never': 1,\n",
      "          'says': 1,\n",
      "          'nhe': 1,\n",
      "          'talks': 1,\n",
      "          'often': 1,\n",
      "          'movie': 1,\n",
      "          'prefered': 1,\n",
      "          'seen': 1,\n",
      "          'patric': 1,\n",
      "          'stewart': 1,\n",
      "          'roll': 1,\n",
      "          'believe': 1,\n",
      "          'truely': 1,\n",
      "          'care': 1,\n",
      "          'least': 1,\n",
      "          'someone': 1,\n",
      "          'liked': 1,\n",
      "          'alfred': 1,\n",
      "          'behind': 1,\n",
      "          'cheap': 1,\n",
      "          'shot': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tribe': 8,\n",
      "          'nthe': 6,\n",
      "          'krippendorfs': 5,\n",
      "          'dreyfuss': 3,\n",
      "          'level': 3,\n",
      "          'like': 3,\n",
      "          'krippendorf': 3,\n",
      "          'professor': 3,\n",
      "          'college': 3,\n",
      "          'much': 3,\n",
      "          'quality': 2,\n",
      "          'everyone': 2,\n",
      "          'else': 2,\n",
      "          'occasionally': 2,\n",
      "          'movies': 2,\n",
      "          'kind': 2,\n",
      "          'never': 2,\n",
      "          'film': 2,\n",
      "          'school': 2,\n",
      "          'nkrippendorfs': 2,\n",
      "          'three': 2,\n",
      "          'viewers': 2,\n",
      "          'character': 2,\n",
      "          'james': 2,\n",
      "          'little': 2,\n",
      "          'wife': 2,\n",
      "          'lost': 2,\n",
      "          'new': 2,\n",
      "          'children': 2,\n",
      "          'natasha': 2,\n",
      "          'lyonne': 2,\n",
      "          'see': 2,\n",
      "          'jenna': 2,\n",
      "          'elfman': 2,\n",
      "          'shelmikedmu': 2,\n",
      "          'one': 2,\n",
      "          'lily': 2,\n",
      "          'tomlin': 2,\n",
      "          'television': 2,\n",
      "          'quickly': 2,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'utmost': 1,\n",
      "          'respect': 1,\n",
      "          'richard': 1,\n",
      "          'actor': 1,\n",
      "          'presence': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'guarantee': 1,\n",
      "          'particular': 1,\n",
      "          'nlike': 1,\n",
      "          'bills': 1,\n",
      "          'pay': 1,\n",
      "          'accepts': 1,\n",
      "          'big': 1,\n",
      "          'paychecks': 1,\n",
      "          'prominent': 1,\n",
      "          'roles': 1,\n",
      "          'bad': 1,\n",
      "          'nconsequently': 1,\n",
      "          'career': 1,\n",
      "          'highlights': 1,\n",
      "          'include': 1,\n",
      "          'jaws': 1,\n",
      "          'close': 1,\n",
      "          'encounters': 1,\n",
      "          'third': 1,\n",
      "          'stakeout': 1,\n",
      "          'tin': 1,\n",
      "          'men': 1,\n",
      "          'resume': 1,\n",
      "          'dotted': 1,\n",
      "          'titles': 1,\n",
      "          'moon': 1,\n",
      "          'parador': 1,\n",
      "          'let': 1,\n",
      "          'ride': 1,\n",
      "          'nlet': 1,\n",
      "          'start': 1,\n",
      "          'saying': 1,\n",
      "          'funny': 1,\n",
      "          'although': 1,\n",
      "          'riotously': 1,\n",
      "          'thats': 1,\n",
      "          'asset': 1,\n",
      "          'best': 1,\n",
      "          'word': 1,\n",
      "          'describe': 1,\n",
      "          'asinine': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'would': 1,\n",
      "          'appear': 1,\n",
      "          'recent': 1,\n",
      "          'nursery': 1,\n",
      "          'graduates': 1,\n",
      "          'numerous': 1,\n",
      "          'sexual': 1,\n",
      "          'innuendoes': 1,\n",
      "          'aimed': 1,\n",
      "          'someone': 1,\n",
      "          'going': 1,\n",
      "          'puberty': 1,\n",
      "          'tries': 1,\n",
      "          'zany': 1,\n",
      "          'offthewall': 1,\n",
      "          'comedy': 1,\n",
      "          'makers': 1,\n",
      "          'forgotten': 1,\n",
      "          'important': 1,\n",
      "          'rules': 1,\n",
      "          'first': 1,\n",
      "          'minimal': 1,\n",
      "          'plot': 1,\n",
      "          'credibility': 1,\n",
      "          'exist': 1,\n",
      "          'second': 1,\n",
      "          'able': 1,\n",
      "          'identify': 1,\n",
      "          'least': 1,\n",
      "          'care': 1,\n",
      "          'two': 1,\n",
      "          'nfinally': 1,\n",
      "          'importantly': 1,\n",
      "          '5': 1,\n",
      "          'jokes': 1,\n",
      "          'work': 1,\n",
      "          'nonce': 1,\n",
      "          'upon': 1,\n",
      "          'time': 1,\n",
      "          'respected': 1,\n",
      "          'anthropology': 1,\n",
      "          'bounderby': 1,\n",
      "          'nhe': 1,\n",
      "          'obtained': 1,\n",
      "          'grant': 1,\n",
      "          'seek': 1,\n",
      "          'somewhere': 1,\n",
      "          'wilds': 1,\n",
      "          'guinea': 1,\n",
      "          'goal': 1,\n",
      "          'accomplished': 1,\n",
      "          'nshortly': 1,\n",
      "          'return': 1,\n",
      "          'failed': 1,\n",
      "          'trip': 1,\n",
      "          'died': 1,\n",
      "          'left': 1,\n",
      "          'herculean': 1,\n",
      "          'task': 1,\n",
      "          'raising': 1,\n",
      "          'shelly': 1,\n",
      "          'mickey': 1,\n",
      "          'gregory': 1,\n",
      "          'smith': 1,\n",
      "          'edmund': 1,\n",
      "          'carl': 1,\n",
      "          'michael': 1,\n",
      "          'linder': 1,\n",
      "          'nnow': 1,\n",
      "          'year': 1,\n",
      "          'later': 1,\n",
      "          'wants': 1,\n",
      "          'results': 1,\n",
      "          'money': 1,\n",
      "          'gave': 1,\n",
      "          'spent': 1,\n",
      "          'research': 1,\n",
      "          'things': 1,\n",
      "          'family': 1,\n",
      "          'send': 1,\n",
      "          'member': 1,\n",
      "          'faculty': 1,\n",
      "          'veronica': 1,\n",
      "          'micelli': 1,\n",
      "          'inform': 1,\n",
      "          'scheduled': 1,\n",
      "          'give': 1,\n",
      "          'lecture': 1,\n",
      "          'findings': 1,\n",
      "          'nwhen': 1,\n",
      "          'arrives': 1,\n",
      "          'momentous': 1,\n",
      "          'event': 1,\n",
      "          'rather': 1,\n",
      "          'telling': 1,\n",
      "          'truth': 1,\n",
      "          'risking': 1,\n",
      "          'sent': 1,\n",
      "          'jail': 1,\n",
      "          'misappropriating': 1,\n",
      "          'funds': 1,\n",
      "          'fabricates': 1,\n",
      "          'tale': 1,\n",
      "          'mythical': 1,\n",
      "          'nto': 1,\n",
      "          'provide': 1,\n",
      "          'video': 1,\n",
      "          'footage': 1,\n",
      "          'films': 1,\n",
      "          'dressed': 1,\n",
      "          'native': 1,\n",
      "          'garb': 1,\n",
      "          'nsoon': 1,\n",
      "          'surprise': 1,\n",
      "          'national': 1,\n",
      "          'phenomenon': 1,\n",
      "          'nbut': 1,\n",
      "          'disaffected': 1,\n",
      "          'determined': 1,\n",
      "          'prove': 1,\n",
      "          'fraud': 1,\n",
      "          'way': 1,\n",
      "          'works': 1,\n",
      "          'assume': 1,\n",
      "          'characters': 1,\n",
      "          'mention': 1,\n",
      "          'dumber': 1,\n",
      "          'dirt': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'impossible': 1,\n",
      "          'sympathize': 1,\n",
      "          'bunch': 1,\n",
      "          'putzes': 1,\n",
      "          'ndirector': 1,\n",
      "          'todd': 1,\n",
      "          'holland': 1,\n",
      "          'completely': 1,\n",
      "          'fails': 1,\n",
      "          'develop': 1,\n",
      "          'something': 1,\n",
      "          'substantial': 1,\n",
      "          'device': 1,\n",
      "          'implement': 1,\n",
      "          'various': 1,\n",
      "          'dubious': 1,\n",
      "          'gags': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'attempts': 1,\n",
      "          'satirizing': 1,\n",
      "          'shallowness': 1,\n",
      "          'american': 1,\n",
      "          'culture': 1,\n",
      "          'e': 1,\n",
      "          'easily': 1,\n",
      "          'public': 1,\n",
      "          'fooled': 1,\n",
      "          'jumping': 1,\n",
      "          'bandwagon': 1,\n",
      "          'latest': 1,\n",
      "          'trend': 1,\n",
      "          'come': 1,\n",
      "          'across': 1,\n",
      "          'feeble': 1,\n",
      "          'derivative': 1,\n",
      "          'acting': 1,\n",
      "          'underwhelming': 1,\n",
      "          'ndreyfuss': 1,\n",
      "          'definitely': 1,\n",
      "          'given': 1,\n",
      "          'role': 1,\n",
      "          'nalongside': 1,\n",
      "          'spunky': 1,\n",
      "          'costar': 1,\n",
      "          'tvs': 1,\n",
      "          'dharma': 1,\n",
      "          'greg': 1,\n",
      "          'radiates': 1,\n",
      "          'perkiness': 1,\n",
      "          'nthis': 1,\n",
      "          'fine': 1,\n",
      "          '22minute': 1,\n",
      "          'program': 1,\n",
      "          'becomes': 1,\n",
      "          'irritating': 1,\n",
      "          'arena': 1,\n",
      "          'featurelength': 1,\n",
      "          'movie': 1,\n",
      "          'nno': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'david': 1,\n",
      "          'ogden': 1,\n",
      "          'stiers': 1,\n",
      "          'woody': 1,\n",
      "          'allens': 1,\n",
      "          'daughter': 1,\n",
      "          'says': 1,\n",
      "          'love': 1,\n",
      "          'excels': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'trouble': 1,\n",
      "          'half': 1,\n",
      "          'length': 1,\n",
      "          'titanic': 1,\n",
      "          'seems': 1,\n",
      "          'longer': 1,\n",
      "          'nmost': 1,\n",
      "          'comes': 1,\n",
      "          'screen': 1,\n",
      "          'generic': 1,\n",
      "          'sitcom': 1,\n",
      "          'material': 1,\n",
      "          'slop': 1,\n",
      "          'people': 1,\n",
      "          'absorb': 1,\n",
      "          'dozing': 1,\n",
      "          'favorite': 1,\n",
      "          'easy': 1,\n",
      "          'chair': 1,\n",
      "          'front': 1,\n",
      "          'set': 1,\n",
      "          'nif': 1,\n",
      "          'theres': 1,\n",
      "          'upside': 1,\n",
      "          'dont': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'boxoffice': 1,\n",
      "          'support': 1,\n",
      "          'developing': 1,\n",
      "          'lame': 1,\n",
      "          'illmarketed': 1,\n",
      "          'miscue': 1,\n",
      "          'become': 1,\n",
      "          'extinct': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'elfont': 5,\n",
      "          'kaplan': 5,\n",
      "          'hardly': 4,\n",
      "          'wait': 4,\n",
      "          'teenagers': 3,\n",
      "          'characters': 3,\n",
      "          'funny': 3,\n",
      "          'movies': 2,\n",
      "          'teenage': 2,\n",
      "          'one': 2,\n",
      "          'reason': 2,\n",
      "          'however': 2,\n",
      "          'say': 2,\n",
      "          'ncant': 2,\n",
      "          'attend': 2,\n",
      "          'kenny': 2,\n",
      "          'william': 2,\n",
      "          'got': 2,\n",
      "          'sex': 2,\n",
      "          'could': 2,\n",
      "          'cant': 2,\n",
      "          'forced': 2,\n",
      "          'humour': 2,\n",
      "          'nfor': 2,\n",
      "          'culture': 1,\n",
      "          'rarely': 1,\n",
      "          'prove': 1,\n",
      "          'either': 1,\n",
      "          'interesting': 1,\n",
      "          'entertaining': 1,\n",
      "          'convincing': 1,\n",
      "          'fundamental': 1,\n",
      "          'made': 1,\n",
      "          'adults': 1,\n",
      "          'noccasionally': 1,\n",
      "          'films': 1,\n",
      "          'like': 1,\n",
      "          'anything': 1,\n",
      "          'dazed': 1,\n",
      "          'confused': 1,\n",
      "          'breakfast': 1,\n",
      "          'club': 1,\n",
      "          'break': 1,\n",
      "          'mold': 1,\n",
      "          'offer': 1,\n",
      "          'genuine': 1,\n",
      "          'insight': 1,\n",
      "          'lives': 1,\n",
      "          'bizarre': 1,\n",
      "          'creatures': 1,\n",
      "          'surround': 1,\n",
      "          'us': 1,\n",
      "          'called': 1,\n",
      "          'ninstead': 1,\n",
      "          'writingdirecting': 1,\n",
      "          'team': 1,\n",
      "          'harry': 1,\n",
      "          'deborah': 1,\n",
      "          'manages': 1,\n",
      "          'take': 1,\n",
      "          'every': 1,\n",
      "          'clich': 1,\n",
      "          'found': 1,\n",
      "          'genre': 1,\n",
      "          'strip': 1,\n",
      "          'completely': 1,\n",
      "          'perception': 1,\n",
      "          'intelligence': 1,\n",
      "          'wit': 1,\n",
      "          'turn': 1,\n",
      "          'nauseating': 1,\n",
      "          'cinematic': 1,\n",
      "          'experiences': 1,\n",
      "          'ever': 1,\n",
      "          'subjected': 1,\n",
      "          'follows': 1,\n",
      "          'group': 1,\n",
      "          'house': 1,\n",
      "          'party': 1,\n",
      "          'night': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'graduation': 1,\n",
      "          'nthe': 1,\n",
      "          'main': 1,\n",
      "          'perfected': 1,\n",
      "          'stereotypes': 1,\n",
      "          'analysis': 1,\n",
      "          'needs': 1,\n",
      "          'provided': 1,\n",
      "          'perfectly': 1,\n",
      "          'understand': 1,\n",
      "          'theres': 1,\n",
      "          'average': 1,\n",
      "          'male': 1,\n",
      "          'protagonist': 1,\n",
      "          'preston': 1,\n",
      "          'ethan': 1,\n",
      "          'embry': 1,\n",
      "          'prom': 1,\n",
      "          'queen': 1,\n",
      "          'cheerleader': 1,\n",
      "          'amanda': 1,\n",
      "          'jennifer': 1,\n",
      "          'lovehewitt': 1,\n",
      "          'football': 1,\n",
      "          'star': 1,\n",
      "          'mike': 1,\n",
      "          'peter': 1,\n",
      "          'facinelli': 1,\n",
      "          'white': 1,\n",
      "          'rapper': 1,\n",
      "          'wannabe': 1,\n",
      "          'seth': 1,\n",
      "          'green': 1,\n",
      "          'computer': 1,\n",
      "          'geek': 1,\n",
      "          'charlie': 1,\n",
      "          'korsmo': 1,\n",
      "          'brainy': 1,\n",
      "          'outsider': 1,\n",
      "          'denise': 1,\n",
      "          'lauren': 1,\n",
      "          'ambrose': 1,\n",
      "          'ni': 1,\n",
      "          'couldnt': 1,\n",
      "          'stand': 1,\n",
      "          'nwhether': 1,\n",
      "          'getting': 1,\n",
      "          'drunk': 1,\n",
      "          'signing': 1,\n",
      "          'along': 1,\n",
      "          'heavy': 1,\n",
      "          'metal': 1,\n",
      "          'songs': 1,\n",
      "          'proclaiming': 1,\n",
      "          'yo': 1,\n",
      "          'ta': 1,\n",
      "          'tonight': 1,\n",
      "          'nall': 1,\n",
      "          'think': 1,\n",
      "          'possibly': 1,\n",
      "          'managed': 1,\n",
      "          'con': 1,\n",
      "          'columbia': 1,\n",
      "          'pictures': 1,\n",
      "          'ten': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'fund': 1,\n",
      "          'film': 1,\n",
      "          'napparently': 1,\n",
      "          'supposed': 1,\n",
      "          'comedy': 1,\n",
      "          'tends': 1,\n",
      "          'fail': 1,\n",
      "          'respect': 1,\n",
      "          'fact': 1,\n",
      "          'nin': 1,\n",
      "          'honesty': 1,\n",
      "          'employers': 1,\n",
      "          'remedial': 1,\n",
      "          'classes': 1,\n",
      "          'nand': 1,\n",
      "          'mean': 1,\n",
      "          'nthey': 1,\n",
      "          'strapped': 1,\n",
      "          'chair': 1,\n",
      "          'eyes': 1,\n",
      "          'wedged': 1,\n",
      "          'open': 1,\n",
      "          'similar': 1,\n",
      "          'fashion': 1,\n",
      "          'alex': 1,\n",
      "          'clockwork': 1,\n",
      "          'orange': 1,\n",
      "          'nthis': 1,\n",
      "          'desperately': 1,\n",
      "          'need': 1,\n",
      "          'educated': 1,\n",
      "          'concept': 1,\n",
      "          'instance': 1,\n",
      "          'features': 1,\n",
      "          'foreign': 1,\n",
      "          'exchange': 1,\n",
      "          'student': 1,\n",
      "          'instructed': 1,\n",
      "          'repeat': 1,\n",
      "          'absurd': 1,\n",
      "          'statements': 1,\n",
      "          'machine': 1,\n",
      "          'believe': 1,\n",
      "          'character': 1,\n",
      "          'repeats': 1,\n",
      "          'enough': 1,\n",
      "          'eventually': 1,\n",
      "          'nif': 1,\n",
      "          'recognise': 1,\n",
      "          'irony': 1,\n",
      "          'actually': 1,\n",
      "          'paid': 1,\n",
      "          'making': 1,\n",
      "          'junk': 1,\n",
      "          'thats': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 14,\n",
      "          'james': 6,\n",
      "          'phillippe': 6,\n",
      "          'one': 6,\n",
      "          'suspects': 6,\n",
      "          'way': 5,\n",
      "          'bad': 5,\n",
      "          'character': 5,\n",
      "          'caan': 5,\n",
      "          'good': 4,\n",
      "          'much': 4,\n",
      "          'nbut': 4,\n",
      "          'even': 4,\n",
      "          'usual': 4,\n",
      "          'movie': 4,\n",
      "          'gun': 3,\n",
      "          'performance': 3,\n",
      "          'know': 3,\n",
      "          'john': 3,\n",
      "          'though': 3,\n",
      "          'seems': 3,\n",
      "          'nits': 3,\n",
      "          'ass': 3,\n",
      "          'plot': 3,\n",
      "          'well': 3,\n",
      "          'del': 3,\n",
      "          'torro': 3,\n",
      "          'us': 3,\n",
      "          'nthe': 3,\n",
      "          'feels': 3,\n",
      "          'characters': 3,\n",
      "          'scene': 3,\n",
      "          'twist': 3,\n",
      "          'never': 3,\n",
      "          'lines': 3,\n",
      "          'role': 3,\n",
      "          'surprises': 2,\n",
      "          'ones': 2,\n",
      "          'actor': 2,\n",
      "          'last': 2,\n",
      "          'bit': 2,\n",
      "          'growth': 2,\n",
      "          'film': 2,\n",
      "          'around': 2,\n",
      "          'nit': 2,\n",
      "          'dramatic': 2,\n",
      "          'could': 2,\n",
      "          'point': 2,\n",
      "          'look': 2,\n",
      "          'pretty': 2,\n",
      "          'day': 2,\n",
      "          'sound': 2,\n",
      "          'see': 2,\n",
      "          'tough': 2,\n",
      "          'nunlike': 2,\n",
      "          'approach': 2,\n",
      "          'benicio': 2,\n",
      "          'two': 2,\n",
      "          'lot': 2,\n",
      "          'juliette': 2,\n",
      "          'lewis': 2,\n",
      "          'man': 2,\n",
      "          'shoot': 2,\n",
      "          'many': 2,\n",
      "          'diggs': 2,\n",
      "          'katt': 2,\n",
      "          'mcquarrie': 2,\n",
      "          'crime': 2,\n",
      "          'movies': 2,\n",
      "          'seen': 2,\n",
      "          'limey': 2,\n",
      "          'without': 2,\n",
      "          'code': 2,\n",
      "          'seemed': 2,\n",
      "          'rather': 2,\n",
      "          'thing': 2,\n",
      "          'life': 2,\n",
      "          'neven': 2,\n",
      "          'didnt': 2,\n",
      "          'astonishing': 2,\n",
      "          'ending': 2,\n",
      "          'dirty': 2,\n",
      "          'little': 2,\n",
      "          'shattering': 2,\n",
      "          'reason': 2,\n",
      "          'overplotted': 2,\n",
      "          'better': 2,\n",
      "          'guy': 2,\n",
      "          'give': 2,\n",
      "          'weak': 2,\n",
      "          'brief': 2,\n",
      "          'bargain': 2,\n",
      "          'basement': 2,\n",
      "          'woo': 2,\n",
      "          'brimming': 1,\n",
      "          'none': 1,\n",
      "          'ryan': 1,\n",
      "          'phillippes': 1,\n",
      "          'surprisingly': 1,\n",
      "          'halfway': 1,\n",
      "          'decent': 1,\n",
      "          'nafter': 1,\n",
      "          'gained': 1,\n",
      "          'attention': 1,\n",
      "          'posing': 1,\n",
      "          'preening': 1,\n",
      "          'teen': 1,\n",
      "          'swill': 1,\n",
      "          'summer': 1,\n",
      "          'hinted': 1,\n",
      "          'years': 1,\n",
      "          'cruel': 1,\n",
      "          'intentions': 1,\n",
      "          'amusingly': 1,\n",
      "          'contemptuous': 1,\n",
      "          'malkovich': 1,\n",
      "          'meets': 1,\n",
      "          'spader': 1,\n",
      "          'acting': 1,\n",
      "          'faltered': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'mark': 1,\n",
      "          'precisely': 1,\n",
      "          'screenplay': 1,\n",
      "          'made': 1,\n",
      "          'grow': 1,\n",
      "          'heart': 1,\n",
      "          'presumably': 1,\n",
      "          'appeal': 1,\n",
      "          'training': 1,\n",
      "          'bra': 1,\n",
      "          'wearing': 1,\n",
      "          'fans': 1,\n",
      "          'start': 1,\n",
      "          'bellyaching': 1,\n",
      "          'hed': 1,\n",
      "          'fallen': 1,\n",
      "          'target': 1,\n",
      "          'shift': 1,\n",
      "          'neither': 1,\n",
      "          'films': 1,\n",
      "          'director': 1,\n",
      "          'negotiate': 1,\n",
      "          'trying': 1,\n",
      "          'shouldnt': 1,\n",
      "          'overlooked': 1,\n",
      "          'probably': 1,\n",
      "          'praised': 1,\n",
      "          'seeing': 1,\n",
      "          'really': 1,\n",
      "          'isnt': 1,\n",
      "          'required': 1,\n",
      "          'nhere': 1,\n",
      "          'procured': 1,\n",
      "          'five': 1,\n",
      "          'beard': 1,\n",
      "          'hair': 1,\n",
      "          'askew': 1,\n",
      "          'affect': 1,\n",
      "          'altered': 1,\n",
      "          'something': 1,\n",
      "          'cagney': 1,\n",
      "          'glory': 1,\n",
      "          'believe': 1,\n",
      "          'boy': 1,\n",
      "          'hard': 1,\n",
      "          'actually': 1,\n",
      "          'helps': 1,\n",
      "          'illusion': 1,\n",
      "          'ben': 1,\n",
      "          'afflecks': 1,\n",
      "          'puppy': 1,\n",
      "          'dog': 1,\n",
      "          'reindeer': 1,\n",
      "          'games': 1,\n",
      "          'believable': 1,\n",
      "          'nas': 1,\n",
      "          'thats': 1,\n",
      "          'great': 1,\n",
      "          'play': 1,\n",
      "          'moronic': 1,\n",
      "          'remotely': 1,\n",
      "          'likeable': 1,\n",
      "          'criminals': 1,\n",
      "          'introduced': 1,\n",
      "          'parking': 1,\n",
      "          'rave': 1,\n",
      "          'stupidly': 1,\n",
      "          'pick': 1,\n",
      "          'fight': 1,\n",
      "          'twenty': 1,\n",
      "          'people': 1,\n",
      "          'hatch': 1,\n",
      "          'scheme': 1,\n",
      "          'kidnap': 1,\n",
      "          'surrogate': 1,\n",
      "          'mother': 1,\n",
      "          'overhearing': 1,\n",
      "          'shes': 1,\n",
      "          'carrying': 1,\n",
      "          'baby': 1,\n",
      "          'painter': 1,\n",
      "          'scott': 1,\n",
      "          'wilson': 1,\n",
      "          'connected': 1,\n",
      "          'wealthy': 1,\n",
      "          'kidnapping': 1,\n",
      "          'devolves': 1,\n",
      "          'laborious': 1,\n",
      "          'damage': 1,\n",
      "          'done': 1,\n",
      "          'killed': 1,\n",
      "          'antiheroes': 1,\n",
      "          'escape': 1,\n",
      "          'woman': 1,\n",
      "          'aging': 1,\n",
      "          'hit': 1,\n",
      "          'scheming': 1,\n",
      "          'bodyguards': 1,\n",
      "          'taye': 1,\n",
      "          'nicky': 1,\n",
      "          'remain': 1,\n",
      "          'pursuit': 1,\n",
      "          'ndirected': 1,\n",
      "          'christopher': 1,\n",
      "          'screenwriter': 1,\n",
      "          'oscar': 1,\n",
      "          'work': 1,\n",
      "          'overrated': 1,\n",
      "          'piece': 1,\n",
      "          'noir': 1,\n",
      "          'circles': 1,\n",
      "          'included': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'thriller': 1,\n",
      "          'motifs': 1,\n",
      "          'oozes': 1,\n",
      "          'eye': 1,\n",
      "          'rolling': 1,\n",
      "          'familiarity': 1,\n",
      "          'phillipe': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'growing': 1,\n",
      "          'fills': 1,\n",
      "          'flick': 1,\n",
      "          'sprawling': 1,\n",
      "          'labyrinth': 1,\n",
      "          'snatched': 1,\n",
      "          'ive': 1,\n",
      "          'worse': 1,\n",
      "          'lacks': 1,\n",
      "          'fresh': 1,\n",
      "          'soderbergh': 1,\n",
      "          'sight': 1,\n",
      "          'clich': 1,\n",
      "          'spewed': 1,\n",
      "          'picture': 1,\n",
      "          'tries': 1,\n",
      "          'desperately': 1,\n",
      "          'hip': 1,\n",
      "          'gritty': 1,\n",
      "          'bothering': 1,\n",
      "          'notice': 1,\n",
      "          'common': 1,\n",
      "          'features': 1,\n",
      "          'living': 1,\n",
      "          'picked': 1,\n",
      "          'sam': 1,\n",
      "          'peckinpah': 1,\n",
      "          '101': 1,\n",
      "          'resembling': 1,\n",
      "          'attempts': 1,\n",
      "          'emotional': 1,\n",
      "          'weight': 1,\n",
      "          'feel': 1,\n",
      "          'strained': 1,\n",
      "          'preposterous': 1,\n",
      "          'enemies': 1,\n",
      "          'stop': 1,\n",
      "          'tracks': 1,\n",
      "          'cup': 1,\n",
      "          'coffee': 1,\n",
      "          'pontificate': 1,\n",
      "          'philosophy': 1,\n",
      "          'etc': 1,\n",
      "          'first': 1,\n",
      "          'appeared': 1,\n",
      "          'heat': 1,\n",
      "          'self': 1,\n",
      "          'consciously': 1,\n",
      "          'nusual': 1,\n",
      "          'also': 1,\n",
      "          'featured': 1,\n",
      "          'bunch': 1,\n",
      "          'low': 1,\n",
      "          'lives': 1,\n",
      "          'live': 1,\n",
      "          'learned': 1,\n",
      "          'worked': 1,\n",
      "          'degree': 1,\n",
      "          'nnowadays': 1,\n",
      "          'per': 1,\n",
      "          'de': 1,\n",
      "          'rigeur': 1,\n",
      "          'mind': 1,\n",
      "          'deems': 1,\n",
      "          'transpired': 1,\n",
      "          'completely': 1,\n",
      "          'inconsequential': 1,\n",
      "          'nthus': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'comes': 1,\n",
      "          'least': 1,\n",
      "          'secret': 1,\n",
      "          'amateurishly': 1,\n",
      "          'projected': 1,\n",
      "          'appear': 1,\n",
      "          'ironic': 1,\n",
      "          'end': 1,\n",
      "          'nothing': 1,\n",
      "          'earth': 1,\n",
      "          'admit': 1,\n",
      "          'coming': 1,\n",
      "          'smiled': 1,\n",
      "          'nhowever': 1,\n",
      "          'exactly': 1,\n",
      "          'interrogation': 1,\n",
      "          'scenes': 1,\n",
      "          'palminteri': 1,\n",
      "          'spacey': 1,\n",
      "          'faux': 1,\n",
      "          'huffing': 1,\n",
      "          'puffing': 1,\n",
      "          'rhythm': 1,\n",
      "          'substance': 1,\n",
      "          'often': 1,\n",
      "          'dull': 1,\n",
      "          'interesting': 1,\n",
      "          'distinctive': 1,\n",
      "          'style': 1,\n",
      "          'script': 1,\n",
      "          'would': 1,\n",
      "          'stuff': 1,\n",
      "          'involves': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'odd': 1,\n",
      "          'place': 1,\n",
      "          'thinks': 1,\n",
      "          'karma': 1,\n",
      "          'justice': 1,\n",
      "          'satisfaction': 1,\n",
      "          'clever': 1,\n",
      "          'nat': 1,\n",
      "          'laments': 1,\n",
      "          'need': 1,\n",
      "          'ultimate': 1,\n",
      "          'monkey': 1,\n",
      "          'line': 1,\n",
      "          'inexplicable': 1,\n",
      "          'might': 1,\n",
      "          'said': 1,\n",
      "          'love': 1,\n",
      "          'hippo': 1,\n",
      "          'nive': 1,\n",
      "          'porno': 1,\n",
      "          'dialogue': 1,\n",
      "          'nand': 1,\n",
      "          'rarely': 1,\n",
      "          'porn': 1,\n",
      "          'offered': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'mean': 1,\n",
      "          'compare': 1,\n",
      "          'ron': 1,\n",
      "          'jeremy': 1,\n",
      "          'ncaan': 1,\n",
      "          'slips': 1,\n",
      "          'seeming': 1,\n",
      "          'ease': 1,\n",
      "          'kind': 1,\n",
      "          'softspoken': 1,\n",
      "          'coma': 1,\n",
      "          'manages': 1,\n",
      "          'depth': 1,\n",
      "          'weariness': 1,\n",
      "          'nbenicio': 1,\n",
      "          'always': 1,\n",
      "          'welcome': 1,\n",
      "          'plays': 1,\n",
      "          'fairly': 1,\n",
      "          'straight': 1,\n",
      "          'another': 1,\n",
      "          'oddball': 1,\n",
      "          'creation': 1,\n",
      "          'gave': 1,\n",
      "          'excess': 1,\n",
      "          'baggage': 1,\n",
      "          'adopting': 1,\n",
      "          'brad': 1,\n",
      "          'pittesque': 1,\n",
      "          'quizzical': 1,\n",
      "          'pout': 1,\n",
      "          'go': 1,\n",
      "          'along': 1,\n",
      "          'heavy': 1,\n",
      "          'swaggering': 1,\n",
      "          'nspeaking': 1,\n",
      "          'pitt': 1,\n",
      "          'ex': 1,\n",
      "          'link': 1,\n",
      "          'either': 1,\n",
      "          'shouting': 1,\n",
      "          'ear': 1,\n",
      "          'shrillness': 1,\n",
      "          'waddling': 1,\n",
      "          'silly': 1,\n",
      "          'goose': 1,\n",
      "          'nnicky': 1,\n",
      "          'brilliant': 1,\n",
      "          'wasted': 1,\n",
      "          'hes': 1,\n",
      "          'kept': 1,\n",
      "          'cold': 1,\n",
      "          'presence': 1,\n",
      "          'ntaye': 1,\n",
      "          'similar': 1,\n",
      "          'function': 1,\n",
      "          'cool': 1,\n",
      "          'ever': 1,\n",
      "          'helluva': 1,\n",
      "          'death': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'incessantly': 1,\n",
      "          'talky': 1,\n",
      "          'hippos': 1,\n",
      "          'transpires': 1,\n",
      "          'since': 1,\n",
      "          'simplistic': 1,\n",
      "          'pawns': 1,\n",
      "          'vaguely': 1,\n",
      "          'tarantinoish': 1,\n",
      "          'truth': 1,\n",
      "          'consequences': 1,\n",
      "          'nm': 1,\n",
      "          'leaping': 1,\n",
      "          'stupid': 1,\n",
      "          'rant': 1,\n",
      "          'faggots': 1,\n",
      "          'migrating': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'nyou': 1,\n",
      "          'routine': 1,\n",
      "          'final': 1,\n",
      "          'pure': 1,\n",
      "          'interchangeable': 1,\n",
      "          'guys': 1,\n",
      "          'lining': 1,\n",
      "          'shot': 1,\n",
      "          'shots': 1,\n",
      "          'sure': 1,\n",
      "          'crack': 1,\n",
      "          'thunder': 1,\n",
      "          'njust': 1,\n",
      "          'watching': 1,\n",
      "          'old': 1,\n",
      "          'harry': 1,\n",
      "          'cable': 1,\n",
      "          'stunned': 1,\n",
      "          'hear': 1,\n",
      "          'elephant': 1,\n",
      "          'gruntlike': 1,\n",
      "          'emanated': 1,\n",
      "          'harrys': 1,\n",
      "          'fetishized': 1,\n",
      "          'smith': 1,\n",
      "          'wesson': 1,\n",
      "          'noh': 1,\n",
      "          'far': 1,\n",
      "          'weve': 1,\n",
      "          'come': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'forward': 10,\n",
      "          'film': 9,\n",
      "          'pay': 7,\n",
      "          'nthe': 7,\n",
      "          'one': 7,\n",
      "          'like': 6,\n",
      "          'movie': 5,\n",
      "          'though': 5,\n",
      "          'make': 5,\n",
      "          'films': 4,\n",
      "          'even': 4,\n",
      "          'place': 4,\n",
      "          'picture': 4,\n",
      "          'hunt': 4,\n",
      "          'good': 4,\n",
      "          'seems': 4,\n",
      "          'actually': 4,\n",
      "          'feel': 4,\n",
      "          'little': 4,\n",
      "          'could': 4,\n",
      "          'academy': 4,\n",
      "          'critics': 3,\n",
      "          'may': 3,\n",
      "          'isnt': 3,\n",
      "          'audience': 3,\n",
      "          'teacher': 3,\n",
      "          'spacey': 3,\n",
      "          'course': 3,\n",
      "          'world': 3,\n",
      "          'osmet': 3,\n",
      "          'mother': 3,\n",
      "          'helen': 3,\n",
      "          'npay': 3,\n",
      "          'would': 3,\n",
      "          'leder': 3,\n",
      "          'made': 3,\n",
      "          'oscar': 3,\n",
      "          'scene': 3,\n",
      "          'performance': 3,\n",
      "          'said': 3,\n",
      "          'two': 3,\n",
      "          'seemingly': 2,\n",
      "          'patch': 2,\n",
      "          'adams': 2,\n",
      "          'neven': 2,\n",
      "          'nthese': 2,\n",
      "          'message': 2,\n",
      "          'bad': 2,\n",
      "          'heart': 2,\n",
      "          'right': 2,\n",
      "          'still': 2,\n",
      "          'guarded': 2,\n",
      "          'trevor': 2,\n",
      "          'haley': 2,\n",
      "          'joel': 2,\n",
      "          'alcoholic': 2,\n",
      "          'deed': 2,\n",
      "          'three': 2,\n",
      "          'others': 2,\n",
      "          'jay': 2,\n",
      "          'mohr': 2,\n",
      "          'apparently': 2,\n",
      "          'cynicism': 2,\n",
      "          'nits': 2,\n",
      "          'mimi': 2,\n",
      "          'way': 2,\n",
      "          'wasnt': 2,\n",
      "          'character': 2,\n",
      "          'black': 2,\n",
      "          'coming': 2,\n",
      "          'guilty': 2,\n",
      "          'clich': 2,\n",
      "          'flick': 2,\n",
      "          'scenes': 2,\n",
      "          'dopey': 2,\n",
      "          'better': 2,\n",
      "          'emotional': 2,\n",
      "          'deglamed': 2,\n",
      "          'trailer': 2,\n",
      "          'hunts': 2,\n",
      "          'feels': 2,\n",
      "          'get': 2,\n",
      "          'award': 2,\n",
      "          'nin': 2,\n",
      "          'mouth': 2,\n",
      "          'hand': 2,\n",
      "          'really': 2,\n",
      "          'actors': 2,\n",
      "          'children': 2,\n",
      "          'first': 2,\n",
      "          'impact': 2,\n",
      "          'earths': 2,\n",
      "          'complete': 2,\n",
      "          'attack': 1,\n",
      "          'wellintentioned': 1,\n",
      "          'recently': 1,\n",
      "          'opinions': 1,\n",
      "          'often': 1,\n",
      "          'greeted': 1,\n",
      "          'backlash': 1,\n",
      "          'angry': 1,\n",
      "          'emails': 1,\n",
      "          'sometimes': 1,\n",
      "          'mock': 1,\n",
      "          'death': 1,\n",
      "          'threats': 1,\n",
      "          'suppose': 1,\n",
      "          'shamelessly': 1,\n",
      "          'manipulated': 1,\n",
      "          'entertainment': 1,\n",
      "          'politicians': 1,\n",
      "          'ntend': 1,\n",
      "          'dismiss': 1,\n",
      "          'heartless': 1,\n",
      "          'cynics': 1,\n",
      "          'occasionally': 1,\n",
      "          'dumping': 1,\n",
      "          'goodhearted': 1,\n",
      "          'praising': 1,\n",
      "          'filth': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'fill': 1,\n",
      "          'derogatory': 1,\n",
      "          'term': 1,\n",
      "          'comfortable': 1,\n",
      "          'tend': 1,\n",
      "          'forget': 1,\n",
      "          'job': 1,\n",
      "          'review': 1,\n",
      "          'however': 1,\n",
      "          'sweet': 1,\n",
      "          'endearing': 1,\n",
      "          'nthusly': 1,\n",
      "          'doctor': 1,\n",
      "          'cares': 1,\n",
      "          'patients': 1,\n",
      "          'calculated': 1,\n",
      "          'piece': 1,\n",
      "          'brazen': 1,\n",
      "          'exploitation': 1,\n",
      "          'nsimilarly': 1,\n",
      "          'doubt': 1,\n",
      "          'stay': 1,\n",
      "          'tuned': 1,\n",
      "          'explanation': 1,\n",
      "          'forthcoming': 1,\n",
      "          'unpleasantly': 1,\n",
      "          'maudlin': 1,\n",
      "          'mess': 1,\n",
      "          'emotionally': 1,\n",
      "          '5th': 1,\n",
      "          'grade': 1,\n",
      "          'history': 1,\n",
      "          'somewhat': 1,\n",
      "          'similarly': 1,\n",
      "          'kevin': 1,\n",
      "          'burn': 1,\n",
      "          'scared': 1,\n",
      "          'face': 1,\n",
      "          'equally': 1,\n",
      "          'singed': 1,\n",
      "          'attitude': 1,\n",
      "          'gives': 1,\n",
      "          'class': 1,\n",
      "          'impossible': 1,\n",
      "          'assignment': 1,\n",
      "          'thing': 1,\n",
      "          'semester': 1,\n",
      "          'change': 1,\n",
      "          'n12': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'disneyfied': 1,\n",
      "          'gooder': 1,\n",
      "          'takes': 1,\n",
      "          'care': 1,\n",
      "          'comes': 1,\n",
      "          'notion': 1,\n",
      "          'entails': 1,\n",
      "          'person': 1,\n",
      "          'call': 1,\n",
      "          'uber': 1,\n",
      "          'favor': 1,\n",
      "          'telling': 1,\n",
      "          'long': 1,\n",
      "          'living': 1,\n",
      "          'frank': 1,\n",
      "          'capra': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'parallel': 1,\n",
      "          'story': 1,\n",
      "          'weasely': 1,\n",
      "          'reporter': 1,\n",
      "          'tracks': 1,\n",
      "          'movement': 1,\n",
      "          'begun': 1,\n",
      "          'grow': 1,\n",
      "          'odd': 1,\n",
      "          'ideas': 1,\n",
      "          'tone': 1,\n",
      "          'certain': 1,\n",
      "          'points': 1,\n",
      "          'hurls': 1,\n",
      "          'smattering': 1,\n",
      "          'unnecessary': 1,\n",
      "          'us': 1,\n",
      "          'appropriate': 1,\n",
      "          'antidote': 1,\n",
      "          'unrelenting': 1,\n",
      "          'sappiness': 1,\n",
      "          'core': 1,\n",
      "          'director': 1,\n",
      "          'didnt': 1,\n",
      "          'confidence': 1,\n",
      "          'intended': 1,\n",
      "          'compromised': 1,\n",
      "          'fear': 1,\n",
      "          'gutsy': 1,\n",
      "          'enough': 1,\n",
      "          'earn': 1,\n",
      "          'acclaim': 1,\n",
      "          'clearly': 1,\n",
      "          'nso': 1,\n",
      "          'adds': 1,\n",
      "          'grit': 1,\n",
      "          'child': 1,\n",
      "          'molester': 1,\n",
      "          'propositions': 1,\n",
      "          'homeless': 1,\n",
      "          'man': 1,\n",
      "          'returns': 1,\n",
      "          'heroin': 1,\n",
      "          'saved': 1,\n",
      "          'knifed': 1,\n",
      "          'etc': 1,\n",
      "          'shallow': 1,\n",
      "          'incorporated': 1,\n",
      "          'proceedings': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'ready': 1,\n",
      "          'buy': 1,\n",
      "          'utopian': 1,\n",
      "          'blather': 1,\n",
      "          'offers': 1,\n",
      "          'crowd': 1,\n",
      "          'pleasing': 1,\n",
      "          'elements': 1,\n",
      "          'general': 1,\n",
      "          'audiences': 1,\n",
      "          'mohrs': 1,\n",
      "          'umpteenth': 1,\n",
      "          'variation': 1,\n",
      "          'waspy': 1,\n",
      "          'sleazeball': 1,\n",
      "          'angie': 1,\n",
      "          'dickinsons': 1,\n",
      "          'earthy': 1,\n",
      "          'bag': 1,\n",
      "          'woman': 1,\n",
      "          'jivetalking': 1,\n",
      "          'hoodlum': 1,\n",
      "          'gold': 1,\n",
      "          'heals': 1,\n",
      "          'godlike': 1,\n",
      "          'inmate': 1,\n",
      "          'embodied': 1,\n",
      "          'gabriel': 1,\n",
      "          'casseus': 1,\n",
      "          'bedazzled': 1,\n",
      "          'beginnings': 1,\n",
      "          'brand': 1,\n",
      "          'new': 1,\n",
      "          'white': 1,\n",
      "          'liberal': 1,\n",
      "          'nhurray': 1,\n",
      "          'hollywood': 1,\n",
      "          'calls': 1,\n",
      "          'nigga': 1,\n",
      "          'says': 1,\n",
      "          'things': 1,\n",
      "          'nleave': 1,\n",
      "          'happily': 1,\n",
      "          'include': 1,\n",
      "          'minstrel': 1,\n",
      "          'act': 1,\n",
      "          'enjoyment': 1,\n",
      "          'n': 1,\n",
      "          'maybe': 1,\n",
      "          'spikes': 1,\n",
      "          'misguided': 1,\n",
      "          'belong': 1,\n",
      "          'comedy': 1,\n",
      "          'aspirations': 1,\n",
      "          'rather': 1,\n",
      "          'irritatingly': 1,\n",
      "          'saccharine': 1,\n",
      "          'drama': 1,\n",
      "          'youll': 1,\n",
      "          'find': 1,\n",
      "          'trapped': 1,\n",
      "          'heed': 1,\n",
      "          'warnings': 1,\n",
      "          'nwhile': 1,\n",
      "          'filmmakers': 1,\n",
      "          'stressed': 1,\n",
      "          'interviews': 1,\n",
      "          'hope': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'oily': 1,\n",
      "          'cynical': 1,\n",
      "          'politician': 1,\n",
      "          'contemptuously': 1,\n",
      "          'reciting': 1,\n",
      "          'cookie': 1,\n",
      "          'fortune': 1,\n",
      "          'slogans': 1,\n",
      "          'hopeful': 1,\n",
      "          'looks': 1,\n",
      "          'tailor': 1,\n",
      "          'consideration': 1,\n",
      "          'main': 1,\n",
      "          'players': 1,\n",
      "          'previous': 1,\n",
      "          'winners': 1,\n",
      "          'nominees': 1,\n",
      "          'given': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'big': 1,\n",
      "          'practically': 1,\n",
      "          'variations': 1,\n",
      "          'lauded': 1,\n",
      "          'turns': 1,\n",
      "          'none': 1,\n",
      "          'slightly': 1,\n",
      "          'means': 1,\n",
      "          'fashion': 1,\n",
      "          'victim': 1,\n",
      "          'look': 1,\n",
      "          'somewhere': 1,\n",
      "          'goth': 1,\n",
      "          'queen': 1,\n",
      "          'park': 1,\n",
      "          'mama': 1,\n",
      "          'hair': 1,\n",
      "          'also': 1,\n",
      "          'natty': 1,\n",
      "          'badly': 1,\n",
      "          'bleached': 1,\n",
      "          'verbally': 1,\n",
      "          'castigates': 1,\n",
      "          'gets': 1,\n",
      "          'clip': 1,\n",
      "          'nspacey': 1,\n",
      "          'responds': 1,\n",
      "          'cultured': 1,\n",
      "          'monotone': 1,\n",
      "          'straight': 1,\n",
      "          'low': 1,\n",
      "          'key': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'nmaybe': 1,\n",
      "          'actor': 1,\n",
      "          'least': 1,\n",
      "          'self': 1,\n",
      "          'consciously': 1,\n",
      "          'irritating': 1,\n",
      "          'hes': 1,\n",
      "          'emoting': 1,\n",
      "          'somehow': 1,\n",
      "          'shielded': 1,\n",
      "          'wry': 1,\n",
      "          'indifference': 1,\n",
      "          'usually': 1,\n",
      "          'talented': 1,\n",
      "          'worst': 1,\n",
      "          'offender': 1,\n",
      "          'atrocious': 1,\n",
      "          'touched': 1,\n",
      "          'angel': 1,\n",
      "          'moment': 1,\n",
      "          'slaps': 1,\n",
      "          'immediately': 1,\n",
      "          'covering': 1,\n",
      "          'stroke': 1,\n",
      "          'begins': 1,\n",
      "          'convulsing': 1,\n",
      "          'dry': 1,\n",
      "          'heaving': 1,\n",
      "          'im': 1,\n",
      "          'making': 1,\n",
      "          'scurries': 1,\n",
      "          'kitchen': 1,\n",
      "          'tearing': 1,\n",
      "          'apart': 1,\n",
      "          'frenzied': 1,\n",
      "          'search': 1,\n",
      "          'alcohol': 1,\n",
      "          'hokey': 1,\n",
      "          'nearly': 1,\n",
      "          'construed': 1,\n",
      "          'parody': 1,\n",
      "          'hackneyed': 1,\n",
      "          'tv': 1,\n",
      "          'blowups': 1,\n",
      "          'theatrical': 1,\n",
      "          'especially': 1,\n",
      "          'pathetic': 1,\n",
      "          'plea': 1,\n",
      "          'another': 1,\n",
      "          'dubious': 1,\n",
      "          'distinction': 1,\n",
      "          'used': 1,\n",
      "          'argument': 1,\n",
      "          'shouldnt': 1,\n",
      "          'awards': 1,\n",
      "          'unknowingly': 1,\n",
      "          'affirms': 1,\n",
      "          'oscars': 1,\n",
      "          'transform': 1,\n",
      "          'nuanced': 1,\n",
      "          'talent': 1,\n",
      "          'overwrought': 1,\n",
      "          'expressionists': 1,\n",
      "          'osemt': 1,\n",
      "          'wunderkind': 1,\n",
      "          'nominated': 1,\n",
      "          'unforced': 1,\n",
      "          'sixth': 1,\n",
      "          'sense': 1,\n",
      "          'divisive': 1,\n",
      "          'expressions': 1,\n",
      "          'inflections': 1,\n",
      "          'nhis': 1,\n",
      "          'acting': 1,\n",
      "          'become': 1,\n",
      "          'broader': 1,\n",
      "          'less': 1,\n",
      "          'intimate': 1,\n",
      "          'munchkins': 1,\n",
      "          'thoughts': 1,\n",
      "          'boy': 1,\n",
      "          'outta': 1,\n",
      "          'floor': 1,\n",
      "          'em': 1,\n",
      "          'nnaturally': 1,\n",
      "          'play': 1,\n",
      "          'onlyinthemovies': 1,\n",
      "          'martyrfigure': 1,\n",
      "          'cleans': 1,\n",
      "          'lectures': 1,\n",
      "          'ills': 1,\n",
      "          'drinking': 1,\n",
      "          'fixes': 1,\n",
      "          'date': 1,\n",
      "          'intellectual': 1,\n",
      "          'nnever': 1,\n",
      "          'mind': 1,\n",
      "          'couldnt': 1,\n",
      "          'dissimilar': 1,\n",
      "          'trash': 1,\n",
      "          'dennis': 1,\n",
      "          'millerey': 1,\n",
      "          'intellectuals': 1,\n",
      "          'hides': 1,\n",
      "          'insecurities': 1,\n",
      "          'behind': 1,\n",
      "          'vast': 1,\n",
      "          'vocabulary': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'nudnik': 1,\n",
      "          'goes': 1,\n",
      "          'bring': 1,\n",
      "          'pair': 1,\n",
      "          'together': 1,\n",
      "          'recalls': 1,\n",
      "          'parent': 1,\n",
      "          'trapish': 1,\n",
      "          'cornball': 1,\n",
      "          'antics': 1,\n",
      "          'nbut': 1,\n",
      "          'oh': 1,\n",
      "          'love': 1,\n",
      "          'bright': 1,\n",
      "          'articulate': 1,\n",
      "          'selfsacrificing': 1,\n",
      "          'pick': 1,\n",
      "          'adults': 1,\n",
      "          'bootstraps': 1,\n",
      "          'guide': 1,\n",
      "          'life': 1,\n",
      "          'ntheyre': 1,\n",
      "          'adorable': 1,\n",
      "          'nof': 1,\n",
      "          'blame': 1,\n",
      "          'cant': 1,\n",
      "          'hoisted': 1,\n",
      "          'onto': 1,\n",
      "          'exception': 1,\n",
      "          'kid': 1,\n",
      "          'probably': 1,\n",
      "          'known': 1,\n",
      "          'instead': 1,\n",
      "          'brunt': 1,\n",
      "          'passed': 1,\n",
      "          'directed': 1,\n",
      "          'thrilling': 1,\n",
      "          'episodes': 1,\n",
      "          'er': 1,\n",
      "          'went': 1,\n",
      "          'awful': 1,\n",
      "          'genre': 1,\n",
      "          'row': 1,\n",
      "          'peacemaker': 1,\n",
      "          'witless': 1,\n",
      "          'postcold': 1,\n",
      "          'war': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'vehicle': 1,\n",
      "          'deep': 1,\n",
      "          '1998': 1,\n",
      "          'squander': 1,\n",
      "          'premise': 1,\n",
      "          'possible': 1,\n",
      "          'demise': 1,\n",
      "          'crazed': 1,\n",
      "          'meteorite': 1,\n",
      "          'sunk': 1,\n",
      "          'reliance': 1,\n",
      "          'absence': 1,\n",
      "          'kind': 1,\n",
      "          'involvement': 1,\n",
      "          'aided': 1,\n",
      "          'ending': 1,\n",
      "          'centered': 1,\n",
      "          'around': 1,\n",
      "          'diffusing': 1,\n",
      "          'ticking': 1,\n",
      "          'time': 1,\n",
      "          'bomb': 1,\n",
      "          'digital': 1,\n",
      "          'read': 1,\n",
      "          'present': 1,\n",
      "          'invisible': 1,\n",
      "          'ndeep': 1,\n",
      "          'common': 1,\n",
      "          'treats': 1,\n",
      "          'impending': 1,\n",
      "          'destruction': 1,\n",
      "          'awfully': 1,\n",
      "          'simplistic': 1,\n",
      "          'terms': 1,\n",
      "          'completely': 1,\n",
      "          'ignoring': 1,\n",
      "          'havoc': 1,\n",
      "          'obviously': 1,\n",
      "          'take': 1,\n",
      "          'believed': 1,\n",
      "          'planet': 1,\n",
      "          'goner': 1,\n",
      "          'within': 1,\n",
      "          'days': 1,\n",
      "          'full': 1,\n",
      "          'inspirational': 1,\n",
      "          'speeches': 1,\n",
      "          'people': 1,\n",
      "          'nothing': 1,\n",
      "          'sappy': 1,\n",
      "          'score': 1,\n",
      "          'swelled': 1,\n",
      "          'appear': 1,\n",
      "          'profoundly': 1,\n",
      "          'touching': 1,\n",
      "          'continues': 1,\n",
      "          'vein': 1,\n",
      "          'intermittent': 1,\n",
      "          'dollops': 1,\n",
      "          'seeming': 1,\n",
      "          'almost': 1,\n",
      "          'rebuttal': 1,\n",
      "          'see': 1,\n",
      "          'na': 1,\n",
      "          'might': 1,\n",
      "          'think': 1,\n",
      "          'saying': 1,\n",
      "          'nno': 1,\n",
      "          'horribly': 1,\n",
      "          'confused': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 12,\n",
      "          'see': 7,\n",
      "          'nit': 7,\n",
      "          'bad': 6,\n",
      "          'succeed': 6,\n",
      "          'love': 5,\n",
      "          'troopers': 4,\n",
      "          'want': 4,\n",
      "          'nthe': 4,\n",
      "          'go': 4,\n",
      "          'got': 4,\n",
      "          'one': 3,\n",
      "          'movies': 3,\n",
      "          'even': 3,\n",
      "          'ni': 3,\n",
      "          'free': 3,\n",
      "          'could': 3,\n",
      "          'still': 3,\n",
      "          'characters': 3,\n",
      "          'agony': 3,\n",
      "          'torture': 3,\n",
      "          'dont': 3,\n",
      "          'people': 3,\n",
      "          'nbut': 3,\n",
      "          'nso': 3,\n",
      "          'like': 3,\n",
      "          'near': 3,\n",
      "          'really': 3,\n",
      "          'resurrection': 3,\n",
      "          'alien': 3,\n",
      "          'starship': 2,\n",
      "          'worst': 2,\n",
      "          'long': 2,\n",
      "          'film': 2,\n",
      "          'years': 2,\n",
      "          'nthis': 2,\n",
      "          'money': 2,\n",
      "          'nif': 2,\n",
      "          'ahead': 2,\n",
      "          'scenes': 2,\n",
      "          'interest': 2,\n",
      "          'sex': 2,\n",
      "          'nthey': 2,\n",
      "          'hour': 2,\n",
      "          'audience': 2,\n",
      "          'bugs': 2,\n",
      "          'though': 2,\n",
      "          'okay': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'ncue': 2,\n",
      "          'nthen': 2,\n",
      "          'batman': 2,\n",
      "          'robin': 2,\n",
      "          'nwell': 2,\n",
      "          'action': 2,\n",
      "          'away': 2,\n",
      "          'better': 2,\n",
      "          'written': 2,\n",
      "          'feels': 2,\n",
      "          'whole': 2,\n",
      "          'thing': 2,\n",
      "          'children': 2,\n",
      "          'anywhere': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'recommend': 2,\n",
      "          'everyone': 2,\n",
      "          'itll': 2,\n",
      "          'know': 2,\n",
      "          '30': 2,\n",
      "          'seconds': 2,\n",
      "          'possibly': 2,\n",
      "          'seen': 2,\n",
      "          'best': 2,\n",
      "          'begin': 1,\n",
      "          'nokay': 1,\n",
      "          'hit': 1,\n",
      "          'theaters': 1,\n",
      "          'time': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'might': 1,\n",
      "          'major': 1,\n",
      "          'release': 1,\n",
      "          'come': 1,\n",
      "          'decade': 1,\n",
      "          'beyond': 1,\n",
      "          'belief': 1,\n",
      "          'would': 1,\n",
      "          'suggest': 1,\n",
      "          'paying': 1,\n",
      "          'ntheres': 1,\n",
      "          'good': 1,\n",
      "          'chance': 1,\n",
      "          'youll': 1,\n",
      "          'regret': 1,\n",
      "          'walk': 1,\n",
      "          'ngo': 1,\n",
      "          'right': 1,\n",
      "          'starts': 1,\n",
      "          'cheesy': 1,\n",
      "          '90210': 1,\n",
      "          'set': 1,\n",
      "          'future': 1,\n",
      "          'world': 1,\n",
      "          'buenos': 1,\n",
      "          'aires': 1,\n",
      "          'nhere': 1,\n",
      "          'meet': 1,\n",
      "          'group': 1,\n",
      "          'horrendously': 1,\n",
      "          'actors': 1,\n",
      "          'actresses': 1,\n",
      "          'playing': 1,\n",
      "          'obnoxious': 1,\n",
      "          'easyto': 1,\n",
      "          'despise': 1,\n",
      "          'withapassion': 1,\n",
      "          'triangles': 1,\n",
      "          'rectangles': 1,\n",
      "          'hexagons': 1,\n",
      "          'screwing': 1,\n",
      "          'life': 1,\n",
      "          'nbefore': 1,\n",
      "          'join': 1,\n",
      "          'military': 1,\n",
      "          'primarily': 1,\n",
      "          'youngsters': 1,\n",
      "          'joined': 1,\n",
      "          'train': 1,\n",
      "          'strut': 1,\n",
      "          'around': 1,\n",
      "          'nude': 1,\n",
      "          'reason': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nafter': 1,\n",
      "          'making': 1,\n",
      "          'scream': 1,\n",
      "          'start': 1,\n",
      "          'fighting': 1,\n",
      "          'big': 1,\n",
      "          'look': 1,\n",
      "          'nice': 1,\n",
      "          'design': 1,\n",
      "          'fights': 1,\n",
      "          'boring': 1,\n",
      "          'since': 1,\n",
      "          'dead': 1,\n",
      "          'anyway': 1,\n",
      "          'die': 1,\n",
      "          'n': 1,\n",
      "          'cares': 1,\n",
      "          'ends': 1,\n",
      "          'runs': 1,\n",
      "          'cars': 1,\n",
      "          'vomits': 1,\n",
      "          'pavement': 1,\n",
      "          'attempts': 1,\n",
      "          'drive': 1,\n",
      "          'home': 1,\n",
      "          'cant': 1,\n",
      "          'think': 1,\n",
      "          'straight': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'road': 1,\n",
      "          'many': 1,\n",
      "          'ugly': 1,\n",
      "          'car': 1,\n",
      "          'wrecks': 1,\n",
      "          'nyou': 1,\n",
      "          'remember': 1,\n",
      "          'kicked': 1,\n",
      "          'sorry': 1,\n",
      "          'butt': 1,\n",
      "          'nstarship': 1,\n",
      "          'drama': 1,\n",
      "          'war': 1,\n",
      "          'comedy': 1,\n",
      "          'satire': 1,\n",
      "          'parody': 1,\n",
      "          'succeeds': 1,\n",
      "          'horrible': 1,\n",
      "          'nterrible': 1,\n",
      "          'ngutwrenchingly': 1,\n",
      "          'wanted': 1,\n",
      "          'run': 1,\n",
      "          'every': 1,\n",
      "          'minute': 1,\n",
      "          'paid': 1,\n",
      "          'owed': 1,\n",
      "          'others': 1,\n",
      "          'stayed': 1,\n",
      "          'never': 1,\n",
      "          'nfrequently': 1,\n",
      "          'impossible': 1,\n",
      "          'worse': 1,\n",
      "          'acted': 1,\n",
      "          'directed': 1,\n",
      "          'basically': 1,\n",
      "          'mental': 1,\n",
      "          'maturity': 1,\n",
      "          'level': 1,\n",
      "          'willy': 1,\n",
      "          '4': 1,\n",
      "          'threeyearolds': 1,\n",
      "          'enjoy': 1,\n",
      "          'nexcept': 1,\n",
      "          'ridiculously': 1,\n",
      "          'gratuitous': 1,\n",
      "          'blood': 1,\n",
      "          'gore': 1,\n",
      "          'pointless': 1,\n",
      "          'nudity': 1,\n",
      "          'nits': 1,\n",
      "          'little': 1,\n",
      "          'definitely': 1,\n",
      "          'ndont': 1,\n",
      "          'nverhoevens': 1,\n",
      "          'streak': 1,\n",
      "          'going': 1,\n",
      "          'nhis': 1,\n",
      "          'last': 1,\n",
      "          'showgirls': 1,\n",
      "          'nhe': 1,\n",
      "          'seems': 1,\n",
      "          'trying': 1,\n",
      "          'get': 1,\n",
      "          'finally': 1,\n",
      "          'stop': 1,\n",
      "          'coming': 1,\n",
      "          'nshowgirls': 1,\n",
      "          'failure': 1,\n",
      "          'appears': 1,\n",
      "          'lucky': 1,\n",
      "          'make': 1,\n",
      "          'budget': 1,\n",
      "          'grosswise': 1,\n",
      "          'nis': 1,\n",
      "          'ntroopers': 1,\n",
      "          'four': 1,\n",
      "          'five': 1,\n",
      "          'lines': 1,\n",
      "          'dialougeshort': 1,\n",
      "          'humorous': 1,\n",
      "          'actually': 1,\n",
      "          'funny': 1,\n",
      "          'mostly': 1,\n",
      "          'ncommercials': 1,\n",
      "          'pop': 1,\n",
      "          'throughout': 1,\n",
      "          'story': 1,\n",
      "          'promoting': 1,\n",
      "          'joys': 1,\n",
      "          'joining': 1,\n",
      "          'adds': 1,\n",
      "          'entertainment': 1,\n",
      "          '59': 1,\n",
      "          'minutes': 1,\n",
      "          'miserable': 1,\n",
      "          'nim': 1,\n",
      "          'totally': 1,\n",
      "          'confused': 1,\n",
      "          'way': 1,\n",
      "          'enjoying': 1,\n",
      "          'admit': 1,\n",
      "          'youre': 1,\n",
      "          'willing': 1,\n",
      "          'put': 1,\n",
      "          'decide': 1,\n",
      "          'hate': 1,\n",
      "          'anyone': 1,\n",
      "          'hey': 1,\n",
      "          'nfeel': 1,\n",
      "          'give': 1,\n",
      "          'shot': 1,\n",
      "          'saving': 1,\n",
      "          'souls': 1,\n",
      "          'guess': 1,\n",
      "          'nalien': 1,\n",
      "          'comes': 1,\n",
      "          'november': 1,\n",
      "          '26th': 1,\n",
      "          'already': 1,\n",
      "          'read': 1,\n",
      "          'script': 1,\n",
      "          'assure': 1,\n",
      "          'blow': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'nthough': 1,\n",
      "          'opinion': 1,\n",
      "          'reasonably': 1,\n",
      "          'split': 1,\n",
      "          'difficult': 1,\n",
      "          'find': 1,\n",
      "          'someone': 1,\n",
      "          'wont': 1,\n",
      "          'theyve': 1,\n",
      "          'intense': 1,\n",
      "          'least': 1,\n",
      "          'warfare': 1,\n",
      "          'thats': 1,\n",
      "          'played': 1,\n",
      "          'intelligently': 1,\n",
      "          'seriously': 1,\n",
      "          'nplease': 1,\n",
      "          'avoid': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wedding': 9,\n",
      "          'film': 7,\n",
      "          'singer': 6,\n",
      "          '80s': 5,\n",
      "          'sandler': 4,\n",
      "          'one': 4,\n",
      "          'julia': 4,\n",
      "          'nhes': 3,\n",
      "          'plot': 3,\n",
      "          'nthe': 3,\n",
      "          'nice': 3,\n",
      "          'best': 3,\n",
      "          'man': 3,\n",
      "          'adam': 2,\n",
      "          'nostalgia': 2,\n",
      "          'nadam': 2,\n",
      "          'guy': 2,\n",
      "          'robbie': 2,\n",
      "          'reception': 2,\n",
      "          'hall': 2,\n",
      "          'classic': 2,\n",
      "          'leaves': 2,\n",
      "          'glenn': 2,\n",
      "          'love': 2,\n",
      "          'attempts': 2,\n",
      "          'nas': 2,\n",
      "          'last': 2,\n",
      "          'songs': 2,\n",
      "          'result': 2,\n",
      "          'get': 2,\n",
      "          'see': 2,\n",
      "          'nwhile': 2,\n",
      "          'least': 2,\n",
      "          'rival': 2,\n",
      "          'hand': 2,\n",
      "          'simply': 2,\n",
      "          'hes': 2,\n",
      "          'work': 2,\n",
      "          'actually': 2,\n",
      "          'turns': 1,\n",
      "          'charm': 1,\n",
      "          'latest': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'also': 1,\n",
      "          'effect': 1,\n",
      "          'softening': 1,\n",
      "          'edge': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'peak': 1,\n",
      "          'happy': 1,\n",
      "          'gilmore': 1,\n",
      "          'much': 1,\n",
      "          'certainly': 1,\n",
      "          'helped': 1,\n",
      "          'rather': 1,\n",
      "          'frail': 1,\n",
      "          'year': 1,\n",
      "          '1985': 1,\n",
      "          'letting': 1,\n",
      "          'whole': 1,\n",
      "          'obsess': 1,\n",
      "          'titular': 1,\n",
      "          'entertains': 1,\n",
      "          'local': 1,\n",
      "          'belting': 1,\n",
      "          'interpretations': 1,\n",
      "          'hits': 1,\n",
      "          'nrobbies': 1,\n",
      "          'life': 1,\n",
      "          'thrown': 1,\n",
      "          'turmoil': 1,\n",
      "          'fiancee': 1,\n",
      "          'linda': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'altar': 1,\n",
      "          'nhowever': 1,\n",
      "          'things': 1,\n",
      "          'looking': 1,\n",
      "          'meets': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'waitress': 1,\n",
      "          'nshes': 1,\n",
      "          'perfect': 1,\n",
      "          'woman': 1,\n",
      "          'small': 1,\n",
      "          'flaw': 1,\n",
      "          'shes': 1,\n",
      "          'engaged': 1,\n",
      "          'married': 1,\n",
      "          'slick': 1,\n",
      "          'junk': 1,\n",
      "          'bond': 1,\n",
      "          'king': 1,\n",
      "          'matthew': 1,\n",
      "          'glave': 1,\n",
      "          'nso': 1,\n",
      "          'deals': 1,\n",
      "          'slow': 1,\n",
      "          'realization': 1,\n",
      "          'stop': 1,\n",
      "          'far': 1,\n",
      "          'plots': 1,\n",
      "          'go': 1,\n",
      "          'pretty': 1,\n",
      "          'thin': 1,\n",
      "          'tired': 1,\n",
      "          'nto': 1,\n",
      "          'fill': 1,\n",
      "          'gaps': 1,\n",
      "          'delivers': 1,\n",
      "          'heaping': 1,\n",
      "          'spoonfuls': 1,\n",
      "          '1980s': 1,\n",
      "          'nfrom': 1,\n",
      "          'boy': 1,\n",
      "          'george': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'miami': 1,\n",
      "          'vice': 1,\n",
      "          'dallas': 1,\n",
      "          'first': 1,\n",
      "          'cds': 1,\n",
      "          'rubiks': 1,\n",
      "          'cubes': 1,\n",
      "          'revels': 1,\n",
      "          'minutiae': 1,\n",
      "          'nand': 1,\n",
      "          'theres': 1,\n",
      "          'music': 1,\n",
      "          'nlearning': 1,\n",
      "          'lesson': 1,\n",
      "          'successful': 1,\n",
      "          'soundtracks': 1,\n",
      "          'grosse': 1,\n",
      "          'pointe': 1,\n",
      "          'blank': 1,\n",
      "          'romy': 1,\n",
      "          'micheles': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'reunion': 1,\n",
      "          'packs': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'allow': 1,\n",
      "          'maybe': 1,\n",
      "          'lyric': 1,\n",
      "          'half': 1,\n",
      "          'almost': 1,\n",
      "          'bright': 1,\n",
      "          'gleam': 1,\n",
      "          'record': 1,\n",
      "          'executives': 1,\n",
      "          'eyes': 1,\n",
      "          'vols': 1,\n",
      "          'n2': 1,\n",
      "          '3': 1,\n",
      "          '4': 1,\n",
      "          'nonstop': 1,\n",
      "          'riffs': 1,\n",
      "          'incredibly': 1,\n",
      "          'tiring': 1,\n",
      "          'distract': 1,\n",
      "          'nat': 1,\n",
      "          'years': 1,\n",
      "          'friends': 1,\n",
      "          'stirred': 1,\n",
      "          'standard': 1,\n",
      "          'keep': 1,\n",
      "          'true': 1,\n",
      "          'marrying': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'making': 1,\n",
      "          'person': 1,\n",
      "          'nhere': 1,\n",
      "          'lowly': 1,\n",
      "          'rat': 1,\n",
      "          'never': 1,\n",
      "          'saw': 1,\n",
      "          'nbarrymore': 1,\n",
      "          'charming': 1,\n",
      "          'nwhich': 1,\n",
      "          'us': 1,\n",
      "          'persona': 1,\n",
      "          'fades': 1,\n",
      "          'little': 1,\n",
      "          'breakdown': 1,\n",
      "          'stage': 1,\n",
      "          'nwhen': 1,\n",
      "          'full': 1,\n",
      "          'niceguy': 1,\n",
      "          'mode': 1,\n",
      "          'pathetic': 1,\n",
      "          'endearing': 1,\n",
      "          'boasts': 1,\n",
      "          'several': 1,\n",
      "          'cameos': 1,\n",
      "          'notably': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'jon': 1,\n",
      "          'lovitz': 1,\n",
      "          'nbut': 1,\n",
      "          'none': 1,\n",
      "          'well': 1,\n",
      "          'nbuscemis': 1,\n",
      "          'role': 1,\n",
      "          'drunken': 1,\n",
      "          'fails': 1,\n",
      "          'humorous': 1,\n",
      "          'nlovitz': 1,\n",
      "          'makes': 1,\n",
      "          'long': 1,\n",
      "          'good': 1,\n",
      "          'old': 1,\n",
      "          'days': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'funny': 1,\n",
      "          'cameo': 1,\n",
      "          'appeal': 1,\n",
      "          'guest': 1,\n",
      "          'appearance': 1,\n",
      "          'rocker': 1,\n",
      "          'films': 1,\n",
      "          'finale': 1,\n",
      "          'surprisingly': 1,\n",
      "          'plotrelated': 1,\n",
      "          'scenes': 1,\n",
      "          'works': 1,\n",
      "          'still': 1,\n",
      "          'become': 1,\n",
      "          'dependable': 1,\n",
      "          'leading': 1,\n",
      "          'change': 1,\n",
      "          'image': 1,\n",
      "          'end': 1,\n",
      "          'net': 1,\n",
      "          'gain': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 8,\n",
      "          'blair': 5,\n",
      "          'witch': 5,\n",
      "          'lost': 5,\n",
      "          'like': 4,\n",
      "          'lot': 4,\n",
      "          'get': 4,\n",
      "          'woods': 4,\n",
      "          'project': 3,\n",
      "          'three': 3,\n",
      "          'students': 3,\n",
      "          'footage': 3,\n",
      "          'nalthough': 3,\n",
      "          'shouting': 3,\n",
      "          'fact': 3,\n",
      "          'one': 2,\n",
      "          'biggest': 2,\n",
      "          'nhowever': 2,\n",
      "          'although': 2,\n",
      "          'made': 2,\n",
      "          'good': 2,\n",
      "          'camcorder': 2,\n",
      "          'events': 2,\n",
      "          'quickly': 2,\n",
      "          'interesting': 2,\n",
      "          'actors': 2,\n",
      "          'still': 2,\n",
      "          'sound': 2,\n",
      "          'eventually': 2,\n",
      "          'matches': 2,\n",
      "          'nthere': 2,\n",
      "          'back': 2,\n",
      "          'audience': 2,\n",
      "          'parts': 2,\n",
      "          'minutes': 2,\n",
      "          'scares': 2,\n",
      "          'sometimes': 2,\n",
      "          'well': 2,\n",
      "          'ni': 2,\n",
      "          'really': 2,\n",
      "          'fear': 2,\n",
      "          'heather': 2,\n",
      "          'also': 2,\n",
      "          'could': 2,\n",
      "          'idea': 2,\n",
      "          'deliver': 2,\n",
      "          'scenes': 2,\n",
      "          'arriving': 1,\n",
      "          'barrage': 1,\n",
      "          'hype': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'success': 1,\n",
      "          'year': 1,\n",
      "          'golden': 1,\n",
      "          'child': 1,\n",
      "          'money': 1,\n",
      "          'ndonahue': 1,\n",
      "          'williams': 1,\n",
      "          'leonard': 1,\n",
      "          'play': 1,\n",
      "          'set': 1,\n",
      "          'make': 1,\n",
      "          'documentary': 1,\n",
      "          'myth': 1,\n",
      "          'recorded': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'means': 1,\n",
      "          'grainy': 1,\n",
      "          'woozy': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'start': 1,\n",
      "          'normal': 1,\n",
      "          'weird': 1,\n",
      "          'pretty': 1,\n",
      "          'threesome': 1,\n",
      "          'argue': 1,\n",
      "          'journey': 1,\n",
      "          'goes': 1,\n",
      "          'premise': 1,\n",
      "          'amounts': 1,\n",
      "          'nothing': 1,\n",
      "          'missed': 1,\n",
      "          'opportunity': 1,\n",
      "          'mistake': 1,\n",
      "          'makes': 1,\n",
      "          'let': 1,\n",
      "          'mediocre': 1,\n",
      "          'chance': 1,\n",
      "          'improvise': 1,\n",
      "          'nmost': 1,\n",
      "          'dialogue': 1,\n",
      "          'adlibbed': 1,\n",
      "          'manages': 1,\n",
      "          'poor': 1,\n",
      "          'bmovie': 1,\n",
      "          'script': 1,\n",
      "          'degenerates': 1,\n",
      "          'fword': 1,\n",
      "          'included': 1,\n",
      "          'breaks': 1,\n",
      "          'arguments': 1,\n",
      "          'creepy': 1,\n",
      "          'occur': 1,\n",
      "          'swearing': 1,\n",
      "          'gets': 1,\n",
      "          'tiresome': 1,\n",
      "          'nif': 1,\n",
      "          'wanted': 1,\n",
      "          'see': 1,\n",
      "          'people': 1,\n",
      "          'shout': 1,\n",
      "          'swear': 1,\n",
      "          'id': 1,\n",
      "          'go': 1,\n",
      "          'scout': 1,\n",
      "          'camp': 1,\n",
      "          'nbut': 1,\n",
      "          'meant': 1,\n",
      "          'entertainment': 1,\n",
      "          'factor': 1,\n",
      "          'im': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'supernatural': 1,\n",
      "          'actually': 1,\n",
      "          'especially': 1,\n",
      "          'close': 1,\n",
      "          'attention': 1,\n",
      "          'paid': 1,\n",
      "          'story': 1,\n",
      "          'developing': 1,\n",
      "          'first': 1,\n",
      "          'twenty': 1,\n",
      "          'nwith': 1,\n",
      "          'music': 1,\n",
      "          'budget': 1,\n",
      "          'work': 1,\n",
      "          'depend': 1,\n",
      "          'natural': 1,\n",
      "          'psychological': 1,\n",
      "          'delivered': 1,\n",
      "          'never': 1,\n",
      "          'felt': 1,\n",
      "          'truly': 1,\n",
      "          'scared': 1,\n",
      "          'part': 1,\n",
      "          'small': 1,\n",
      "          'sense': 1,\n",
      "          'underlying': 1,\n",
      "          'throughout': 1,\n",
      "          'irritating': 1,\n",
      "          'reverts': 1,\n",
      "          'saying': 1,\n",
      "          'f': 1,\n",
      "          'ck': 1,\n",
      "          'na': 1,\n",
      "          'mike': 1,\n",
      "          'giggling': 1,\n",
      "          'loony': 1,\n",
      "          'ntheres': 1,\n",
      "          'niggling': 1,\n",
      "          'student': 1,\n",
      "          'filmmakers': 1,\n",
      "          'stupid': 1,\n",
      "          'things': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'hapless': 1,\n",
      "          'bunch': 1,\n",
      "          'killed': 1,\n",
      "          'moment': 1,\n",
      "          'hopelessly': 1,\n",
      "          'insists': 1,\n",
      "          'filming': 1,\n",
      "          'gives': 1,\n",
      "          'half': 1,\n",
      "          'hearted': 1,\n",
      "          'reason': 1,\n",
      "          'want': 1,\n",
      "          'isnt': 1,\n",
      "          'convincing': 1,\n",
      "          'nalso': 1,\n",
      "          'survive': 1,\n",
      "          'following': 1,\n",
      "          'large': 1,\n",
      "          'river': 1,\n",
      "          'flowing': 1,\n",
      "          'civilisation': 1,\n",
      "          'amateur': 1,\n",
      "          'obviously': 1,\n",
      "          'staged': 1,\n",
      "          'heathers': 1,\n",
      "          'apology': 1,\n",
      "          'major': 1,\n",
      "          'end': 1,\n",
      "          'fails': 1,\n",
      "          'suppose': 1,\n",
      "          'youve': 1,\n",
      "          'camping': 1,\n",
      "          'may': 1,\n",
      "          'chills': 1,\n",
      "          'use': 1,\n",
      "          '99': 1,\n",
      "          'paying': 1,\n",
      "          'havent': 1,\n",
      "          'napart': 1,\n",
      "          'final': 1,\n",
      "          'mind': 1,\n",
      "          'boggingly': 1,\n",
      "          'unscary': 1,\n",
      "          'hideously': 1,\n",
      "          'dull': 1,\n",
      "          'spook': 1,\n",
      "          'short': 1,\n",
      "          'far': 1,\n",
      "          'horror': 1,\n",
      "          'movie': 1,\n",
      "          'probably': 1,\n",
      "          'achieve': 1,\n",
      "          'amount': 1,\n",
      "          'provide': 1,\n",
      "          'executed': 1,\n",
      "          'enough': 1,\n",
      "          'fun': 1,\n",
      "          'scary': 1,\n",
      "          'cinema': 1,\n",
      "          'experience': 1,\n",
      "          'nits': 1,\n",
      "          'worrying': 1,\n",
      "          'website': 1,\n",
      "          'http': 1,\n",
      "          'www': 1,\n",
      "          'blairwitch': 1,\n",
      "          'com': 1,\n",
      "          'n': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'film': 8,\n",
      "          'generals': 6,\n",
      "          'good': 6,\n",
      "          'get': 6,\n",
      "          'scene': 5,\n",
      "          'west': 5,\n",
      "          'story': 5,\n",
      "          'movie': 5,\n",
      "          'even': 5,\n",
      "          'detail': 4,\n",
      "          'whole': 4,\n",
      "          'daughter': 4,\n",
      "          'little': 4,\n",
      "          'brenner': 4,\n",
      "          'time': 4,\n",
      "          'ni': 4,\n",
      "          'army': 3,\n",
      "          'action': 3,\n",
      "          'salute': 3,\n",
      "          'rendered': 3,\n",
      "          'work': 3,\n",
      "          'officer': 3,\n",
      "          'comes': 3,\n",
      "          'man': 3,\n",
      "          'beginning': 3,\n",
      "          'see': 3,\n",
      "          'hard': 3,\n",
      "          'like': 3,\n",
      "          'one': 3,\n",
      "          'arms': 3,\n",
      "          'sunhill': 3,\n",
      "          'entire': 3,\n",
      "          'theme': 3,\n",
      "          'ever': 3,\n",
      "          'couple': 3,\n",
      "          'information': 3,\n",
      "          'characters': 3,\n",
      "          'colonel': 3,\n",
      "          'seem': 3,\n",
      "          'utilizes': 2,\n",
      "          'known': 2,\n",
      "          'field': 2,\n",
      "          'covers': 2,\n",
      "          'saluting': 2,\n",
      "          'section': 2,\n",
      "          'military': 2,\n",
      "          'presence': 2,\n",
      "          'superior': 2,\n",
      "          'six': 2,\n",
      "          'paces': 2,\n",
      "          'nin': 2,\n",
      "          'nit': 2,\n",
      "          'looked': 2,\n",
      "          'wasnt': 2,\n",
      "          'right': 2,\n",
      "          'go': 2,\n",
      "          'style': 2,\n",
      "          'fact': 2,\n",
      "          'would': 2,\n",
      "          'serve': 2,\n",
      "          'rest': 2,\n",
      "          'director': 2,\n",
      "          'simon': 2,\n",
      "          'atmosphere': 2,\n",
      "          'flash': 2,\n",
      "          'characterization': 2,\n",
      "          'also': 2,\n",
      "          'nwhat': 2,\n",
      "          'isnt': 2,\n",
      "          'minutes': 2,\n",
      "          'john': 2,\n",
      "          'travolta': 2,\n",
      "          'investigation': 2,\n",
      "          'illegal': 2,\n",
      "          'buyer': 2,\n",
      "          'hes': 2,\n",
      "          'later': 2,\n",
      "          'say': 2,\n",
      "          'nbrenner': 2,\n",
      "          'new': 2,\n",
      "          'campbell': 2,\n",
      "          'nhe': 2,\n",
      "          'investigator': 2,\n",
      "          'stowe': 2,\n",
      "          'murder': 2,\n",
      "          'want': 2,\n",
      "          'gives': 2,\n",
      "          'nno': 2,\n",
      "          'us': 2,\n",
      "          'music': 2,\n",
      "          'doesnt': 2,\n",
      "          'attention': 2,\n",
      "          'ninstead': 2,\n",
      "          'another': 2,\n",
      "          'ive': 2,\n",
      "          'across': 2,\n",
      "          'james': 2,\n",
      "          'actors': 2,\n",
      "          'scenes': 2,\n",
      "          'na': 2,\n",
      "          'wests': 2,\n",
      "          'playing': 2,\n",
      "          'kind': 2,\n",
      "          'based': 2,\n",
      "          'brennan': 2,\n",
      "          'letting': 2,\n",
      "          'car': 2,\n",
      "          'drive': 2,\n",
      "          'u': 1,\n",
      "          'number': 1,\n",
      "          'books': 1,\n",
      "          'manuals': 1,\n",
      "          'stipulate': 1,\n",
      "          'specific': 1,\n",
      "          'way': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'imaginable': 1,\n",
      "          'must': 1,\n",
      "          'done': 1,\n",
      "          'none': 1,\n",
      "          'particular': 1,\n",
      "          'manual': 1,\n",
      "          'fm': 1,\n",
      "          '225': 1,\n",
      "          'among': 1,\n",
      "          'things': 1,\n",
      "          'practice': 1,\n",
      "          'nunder': 1,\n",
      "          'subsection': 1,\n",
      "          'highestranking': 1,\n",
      "          'individual': 1,\n",
      "          'present': 1,\n",
      "          'within': 1,\n",
      "          'dropped': 1,\n",
      "          'passes': 1,\n",
      "          'event': 1,\n",
      "          'woman': 1,\n",
      "          'charge': 1,\n",
      "          'rather': 1,\n",
      "          'group': 1,\n",
      "          'nalmost': 1,\n",
      "          'motorcade': 1,\n",
      "          'passing': 1,\n",
      "          'neveryone': 1,\n",
      "          'salutes': 1,\n",
      "          'impressive': 1,\n",
      "          'nthat': 1,\n",
      "          'bit': 1,\n",
      "          'showed': 1,\n",
      "          'someone': 1,\n",
      "          'either': 1,\n",
      "          'didnt': 1,\n",
      "          'appropriate': 1,\n",
      "          'research': 1,\n",
      "          'made': 1,\n",
      "          'conscious': 1,\n",
      "          'decision': 1,\n",
      "          'substance': 1,\n",
      "          'metaphor': 1,\n",
      "          'picture': 1,\n",
      "          'seems': 1,\n",
      "          'tried': 1,\n",
      "          'craft': 1,\n",
      "          'forgot': 1,\n",
      "          'coherent': 1,\n",
      "          'crucial': 1,\n",
      "          'results': 1,\n",
      "          'looks': 1,\n",
      "          'first': 1,\n",
      "          'fifteen': 1,\n",
      "          'example': 1,\n",
      "          'npaul': 1,\n",
      "          'agent': 1,\n",
      "          'armys': 1,\n",
      "          'criminal': 1,\n",
      "          'division': 1,\n",
      "          'undercover': 1,\n",
      "          'georgia': 1,\n",
      "          'base': 1,\n",
      "          'investigate': 1,\n",
      "          'sale': 1,\n",
      "          'nprior': 1,\n",
      "          'transaction': 1,\n",
      "          'gets': 1,\n",
      "          'whiff': 1,\n",
      "          'unscrupulous': 1,\n",
      "          'supply': 1,\n",
      "          'sergeant': 1,\n",
      "          'supposed': 1,\n",
      "          'night': 1,\n",
      "          'attempts': 1,\n",
      "          'kill': 1,\n",
      "          'shooting': 1,\n",
      "          'houseboat': 1,\n",
      "          'living': 1,\n",
      "          'nso': 1,\n",
      "          'ensues': 1,\n",
      "          'cat': 1,\n",
      "          'mouse': 1,\n",
      "          'sequence': 1,\n",
      "          'ends': 1,\n",
      "          'certain': 1,\n",
      "          'raiders': 1,\n",
      "          'lost': 1,\n",
      "          'ark': 1,\n",
      "          'well': 1,\n",
      "          'involves': 1,\n",
      "          'propellers': 1,\n",
      "          'receives': 1,\n",
      "          'orders': 1,\n",
      "          'commanding': 1,\n",
      "          'captain': 1,\n",
      "          'elisabeth': 1,\n",
      "          'leslie': 1,\n",
      "          'stefanson': 1,\n",
      "          'found': 1,\n",
      "          'naked': 1,\n",
      "          'bound': 1,\n",
      "          'dead': 1,\n",
      "          'bases': 1,\n",
      "          'training': 1,\n",
      "          'ranges': 1,\n",
      "          'teamed': 1,\n",
      "          'rape': 1,\n",
      "          'sarah': 1,\n",
      "          'madeleine': 1,\n",
      "          'uncover': 1,\n",
      "          'truth': 1,\n",
      "          'peculiarly': 1,\n",
      "          'gruesome': 1,\n",
      "          'know': 1,\n",
      "          'necessary': 1,\n",
      "          'insight': 1,\n",
      "          'cocky': 1,\n",
      "          'ndoes': 1,\n",
      "          'subplot': 1,\n",
      "          'turn': 1,\n",
      "          'add': 1,\n",
      "          'extra': 1,\n",
      "          'running': 1,\n",
      "          'answer': 1,\n",
      "          'cool': 1,\n",
      "          'presents': 1,\n",
      "          'imagery': 1,\n",
      "          'deep': 1,\n",
      "          'south': 1,\n",
      "          'thick': 1,\n",
      "          'trees': 1,\n",
      "          'dirt': 1,\n",
      "          'roads': 1,\n",
      "          'sultry': 1,\n",
      "          'colors': 1,\n",
      "          'water': 1,\n",
      "          'backed': 1,\n",
      "          'bayouesque': 1,\n",
      "          'nnice': 1,\n",
      "          'immersion': 1,\n",
      "          'setting': 1,\n",
      "          'soon': 1,\n",
      "          'matter': 1,\n",
      "          'films': 1,\n",
      "          'plot': 1,\n",
      "          'shifts': 1,\n",
      "          'mood': 1,\n",
      "          'paid': 1,\n",
      "          'location': 1,\n",
      "          'altered': 1,\n",
      "          'fit': 1,\n",
      "          'generic': 1,\n",
      "          'thriller': 1,\n",
      "          'ndid': 1,\n",
      "          'filmmakers': 1,\n",
      "          'start': 1,\n",
      "          'thinking': 1,\n",
      "          'making': 1,\n",
      "          'different': 1,\n",
      "          'creating': 1,\n",
      "          'cohesive': 1,\n",
      "          'atmospheric': 1,\n",
      "          'distraction': 1,\n",
      "          'followed': 1,\n",
      "          'thought': 1,\n",
      "          'show': 1,\n",
      "          'countryside': 1,\n",
      "          'examples': 1,\n",
      "          'illustrate': 1,\n",
      "          'inconsistency': 1,\n",
      "          'problem': 1,\n",
      "          'nas': 1,\n",
      "          'already': 1,\n",
      "          'mentioned': 1,\n",
      "          'jibe': 1,\n",
      "          'adds': 1,\n",
      "          'difficulty': 1,\n",
      "          'respect': 1,\n",
      "          'authority': 1,\n",
      "          'suddenly': 1,\n",
      "          'snaps': 1,\n",
      "          'general': 1,\n",
      "          'cromwell': 1,\n",
      "          'utters': 1,\n",
      "          'corniest': 1,\n",
      "          'yes': 1,\n",
      "          'sir': 1,\n",
      "          'heard': 1,\n",
      "          'delivers': 1,\n",
      "          'emotioncharged': 1,\n",
      "          'monologue': 1,\n",
      "          'catch': 1,\n",
      "          'person': 1,\n",
      "          'killed': 1,\n",
      "          'though': 1,\n",
      "          'totally': 1,\n",
      "          'flippant': 1,\n",
      "          'thing': 1,\n",
      "          'previous': 1,\n",
      "          'nsunhill': 1,\n",
      "          'initially': 1,\n",
      "          'professional': 1,\n",
      "          'blatantly': 1,\n",
      "          'methods': 1,\n",
      "          'obtain': 1,\n",
      "          'revels': 1,\n",
      "          'ingenuity': 1,\n",
      "          'nboth': 1,\n",
      "          'protagonists': 1,\n",
      "          'behind': 1,\n",
      "          'personalities': 1,\n",
      "          'place': 1,\n",
      "          'cases': 1,\n",
      "          'simply': 1,\n",
      "          'unappealing': 1,\n",
      "          'could': 1,\n",
      "          'imagine': 1,\n",
      "          'filming': 1,\n",
      "          'shoot': 1,\n",
      "          'take': 1,\n",
      "          'aside': 1,\n",
      "          'tell': 1,\n",
      "          'lets': 1,\n",
      "          'although': 1,\n",
      "          'normally': 1,\n",
      "          'overact': 1,\n",
      "          'nan': 1,\n",
      "          'worse': 1,\n",
      "          'offender': 1,\n",
      "          'clarence': 1,\n",
      "          'williams': 1,\n",
      "          'iii': 1,\n",
      "          'aide': 1,\n",
      "          'fowler': 1,\n",
      "          'swear': 1,\n",
      "          'guy': 1,\n",
      "          'says': 1,\n",
      "          'lines': 1,\n",
      "          'position': 1,\n",
      "          'far': 1,\n",
      "          'cry': 1,\n",
      "          'days': 1,\n",
      "          'linc': 1,\n",
      "          'mod': 1,\n",
      "          'squad': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'think': 1,\n",
      "          'acting': 1,\n",
      "          'direction': 1,\n",
      "          'side': 1,\n",
      "          'including': 1,\n",
      "          'point': 1,\n",
      "          'psychologist': 1,\n",
      "          'beasly': 1,\n",
      "          'young': 1,\n",
      "          'female': 1,\n",
      "          'private': 1,\n",
      "          'ariyan': 1,\n",
      "          'johnson': 1,\n",
      "          'make': 1,\n",
      "          'nearly': 1,\n",
      "          'impossible': 1,\n",
      "          'bear': 1,\n",
      "          'two': 1,\n",
      "          'escaped': 1,\n",
      "          'influence': 1,\n",
      "          'woods': 1,\n",
      "          'provides': 1,\n",
      "          'performance': 1,\n",
      "          'moore': 1,\n",
      "          'elisabeths': 1,\n",
      "          'mentor': 1,\n",
      "          'psychological': 1,\n",
      "          'operations': 1,\n",
      "          'unit': 1,\n",
      "          'timothy': 1,\n",
      "          'hutton': 1,\n",
      "          'kent': 1,\n",
      "          'police': 1,\n",
      "          'nwoods': 1,\n",
      "          'relishes': 1,\n",
      "          'role': 1,\n",
      "          'whose': 1,\n",
      "          'job': 1,\n",
      "          'peoples': 1,\n",
      "          'minds': 1,\n",
      "          'without': 1,\n",
      "          'taking': 1,\n",
      "          'top': 1,\n",
      "          'nhutton': 1,\n",
      "          'hangs': 1,\n",
      "          'around': 1,\n",
      "          'least': 1,\n",
      "          'overacting': 1,\n",
      "          'havent': 1,\n",
      "          'read': 1,\n",
      "          'nelson': 1,\n",
      "          'demille': 1,\n",
      "          'novel': 1,\n",
      "          'ill': 1,\n",
      "          'bet': 1,\n",
      "          'dollars': 1,\n",
      "          'better': 1,\n",
      "          'book': 1,\n",
      "          'form': 1,\n",
      "          'version': 1,\n",
      "          'got': 1,\n",
      "          'come': 1,\n",
      "          'nothing': 1,\n",
      "          'except': 1,\n",
      "          'fill': 1,\n",
      "          'space': 1,\n",
      "          'provide': 1,\n",
      "          'bits': 1,\n",
      "          'neither': 1,\n",
      "          'mean': 1,\n",
      "          'anything': 1,\n",
      "          'terms': 1,\n",
      "          'advancing': 1,\n",
      "          'reveal': 1,\n",
      "          'significance': 1,\n",
      "          'finished': 1,\n",
      "          'nevery': 1,\n",
      "          'presented': 1,\n",
      "          'aspect': 1,\n",
      "          'case': 1,\n",
      "          'momentous': 1,\n",
      "          'discovery': 1,\n",
      "          'used': 1,\n",
      "          'investigators': 1,\n",
      "          'conclusions': 1,\n",
      "          'drawn': 1,\n",
      "          'tremendous': 1,\n",
      "          'leaps': 1,\n",
      "          'faith': 1,\n",
      "          'wonder': 1,\n",
      "          'successful': 1,\n",
      "          'investigations': 1,\n",
      "          'facts': 1,\n",
      "          'lucky': 1,\n",
      "          'guesses': 1,\n",
      "          'instead': 1,\n",
      "          'saved': 1,\n",
      "          'bringing': 1,\n",
      "          'play': 1,\n",
      "          'game': 1,\n",
      "          'twenty': 1,\n",
      "          'questions': 1,\n",
      "          'suspects': 1,\n",
      "          'guess': 1,\n",
      "          'killer': 1,\n",
      "          'nwouldve': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'finishes': 1,\n",
      "          'sort': 1,\n",
      "          'bookend': 1,\n",
      "          'featuring': 1,\n",
      "          'southern': 1,\n",
      "          'scenery': 1,\n",
      "          'nliterally': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'nthey': 1,\n",
      "          'happy': 1,\n",
      "          'nmaybe': 1,\n",
      "          'driving': 1,\n",
      "          'away': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'daughter': 6,\n",
      "          'nthe': 6,\n",
      "          'generals': 5,\n",
      "          'movie': 5,\n",
      "          'thriller': 3,\n",
      "          'plot': 3,\n",
      "          'predictable': 3,\n",
      "          'travolta': 3,\n",
      "          'officer': 3,\n",
      "          'nin': 2,\n",
      "          'case': 2,\n",
      "          'certain': 2,\n",
      "          'nbut': 2,\n",
      "          'like': 2,\n",
      "          'involving': 2,\n",
      "          'enough': 2,\n",
      "          'one': 2,\n",
      "          'moment': 2,\n",
      "          'brenner': 2,\n",
      "          'another': 2,\n",
      "          'female': 2,\n",
      "          'nit': 2,\n",
      "          'james': 2,\n",
      "          'cromwell': 2,\n",
      "          'begin': 2,\n",
      "          'nwith': 2,\n",
      "          'stowe': 2,\n",
      "          'woods': 2,\n",
      "          'commanding': 2,\n",
      "          'secrets': 2,\n",
      "          'comes': 2,\n",
      "          'many': 2,\n",
      "          'scenes': 2,\n",
      "          'cast': 2,\n",
      "          'west': 2,\n",
      "          'action': 2,\n",
      "          'show': 2,\n",
      "          'could': 2,\n",
      "          'nfrom': 2,\n",
      "          'doesnt': 2,\n",
      "          'much': 2,\n",
      "          'dont': 1,\n",
      "          'appreciate': 1,\n",
      "          'manipulates': 1,\n",
      "          'viewer': 1,\n",
      "          'thinking': 1,\n",
      "          'interesting': 1,\n",
      "          'fact': 1,\n",
      "          'ludicrous': 1,\n",
      "          'capable': 1,\n",
      "          'intriguing': 1,\n",
      "          'point': 1,\n",
      "          'juncture': 1,\n",
      "          'story': 1,\n",
      "          'begins': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'crumbling': 1,\n",
      "          'cookie': 1,\n",
      "          'nthis': 1,\n",
      "          'summer': 1,\n",
      "          'sporadically': 1,\n",
      "          'unfortunately': 1,\n",
      "          'compensate': 1,\n",
      "          'detailed': 1,\n",
      "          'flaws': 1,\n",
      "          'nget': 1,\n",
      "          'past': 1,\n",
      "          'early': 1,\n",
      "          'john': 1,\n",
      "          'exercises': 1,\n",
      "          'southern': 1,\n",
      "          'accent': 1,\n",
      "          'youre': 1,\n",
      "          'likely': 1,\n",
      "          'survive': 1,\n",
      "          'entire': 1,\n",
      "          'ntravolta': 1,\n",
      "          'plays': 1,\n",
      "          'criminal': 1,\n",
      "          'investigations': 1,\n",
      "          'divisions': 1,\n",
      "          'paul': 1,\n",
      "          'whos': 1,\n",
      "          'working': 1,\n",
      "          'undercover': 1,\n",
      "          'military': 1,\n",
      "          'base': 1,\n",
      "          'situation': 1,\n",
      "          'arises': 1,\n",
      "          'apparent': 1,\n",
      "          'rape': 1,\n",
      "          'murder': 1,\n",
      "          'young': 1,\n",
      "          'leslie': 1,\n",
      "          'stefanson': 1,\n",
      "          'turns': 1,\n",
      "          'victim': 1,\n",
      "          'general': 1,\n",
      "          'joe': 1,\n",
      "          'campbell': 1,\n",
      "          'nlet': 1,\n",
      "          'investigation': 1,\n",
      "          'assistance': 1,\n",
      "          'fellow': 1,\n",
      "          'cid': 1,\n",
      "          'investigator': 1,\n",
      "          'sarah': 1,\n",
      "          'sunhill': 1,\n",
      "          'played': 1,\n",
      "          'rather': 1,\n",
      "          'onthesidelines': 1,\n",
      "          'madeleine': 1,\n",
      "          'uncovers': 1,\n",
      "          'appears': 1,\n",
      "          'intricate': 1,\n",
      "          'bizarre': 1,\n",
      "          'homicide': 1,\n",
      "          'nthings': 1,\n",
      "          'get': 1,\n",
      "          'marginally': 1,\n",
      "          'engrossing': 1,\n",
      "          'meet': 1,\n",
      "          'colonel': 1,\n",
      "          'moore': 1,\n",
      "          'former': 1,\n",
      "          'deceased': 1,\n",
      "          'sleeve': 1,\n",
      "          'nwoods': 1,\n",
      "          'submits': 1,\n",
      "          'scenestealing': 1,\n",
      "          'performance': 1,\n",
      "          'oozes': 1,\n",
      "          'authority': 1,\n",
      "          'surrounded': 1,\n",
      "          'clouds': 1,\n",
      "          'smoke': 1,\n",
      "          'emitted': 1,\n",
      "          'cigar': 1,\n",
      "          'echoes': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'true': 1,\n",
      "          'crime': 1,\n",
      "          'duked': 1,\n",
      "          'clint': 1,\n",
      "          'eastwood': 1,\n",
      "          'enjoyably': 1,\n",
      "          'profane': 1,\n",
      "          'verbal': 1,\n",
      "          'exchanges': 1,\n",
      "          'makes': 1,\n",
      "          'every': 1,\n",
      "          'believable': 1,\n",
      "          'nhere': 1,\n",
      "          'though': 1,\n",
      "          'intense': 1,\n",
      "          'dialogue': 1,\n",
      "          'care': 1,\n",
      "          'confrontations': 1,\n",
      "          'two': 1,\n",
      "          'send': 1,\n",
      "          'mindful': 1,\n",
      "          'knowing': 1,\n",
      "          'glares': 1,\n",
      "          'across': 1,\n",
      "          'room': 1,\n",
      "          'nthere': 1,\n",
      "          'veteran': 1,\n",
      "          'performs': 1,\n",
      "          'splendidly': 1,\n",
      "          'pressure': 1,\n",
      "          'circumstances': 1,\n",
      "          'tie': 1,\n",
      "          'meetings': 1,\n",
      "          'together': 1,\n",
      "          'difficult': 1,\n",
      "          'absorb': 1,\n",
      "          'ndirector': 1,\n",
      "          'simon': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'shows': 1,\n",
      "          'watchful': 1,\n",
      "          'eye': 1,\n",
      "          'delivering': 1,\n",
      "          'stylish': 1,\n",
      "          'looking': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'intellectual': 1,\n",
      "          'part': 1,\n",
      "          'often': 1,\n",
      "          'unexciting': 1,\n",
      "          'mess': 1,\n",
      "          'help': 1,\n",
      "          'matters': 1,\n",
      "          'virtually': 1,\n",
      "          'actionless': 1,\n",
      "          'dragging': 1,\n",
      "          'heels': 1,\n",
      "          'way': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'snails': 1,\n",
      "          'pace': 1,\n",
      "          'na': 1,\n",
      "          'brief': 1,\n",
      "          'marvelously': 1,\n",
      "          'handled': 1,\n",
      "          'editing': 1,\n",
      "          'department': 1,\n",
      "          'delivered': 1,\n",
      "          'proficient': 1,\n",
      "          'package': 1,\n",
      "          'director': 1,\n",
      "          'great': 1,\n",
      "          'job': 1,\n",
      "          'staging': 1,\n",
      "          'explosions': 1,\n",
      "          'miraculous': 1,\n",
      "          'stunts': 1,\n",
      "          'suggest': 1,\n",
      "          'stick': 1,\n",
      "          'mindless': 1,\n",
      "          'riproaring': 1,\n",
      "          'features': 1,\n",
      "          'attempt': 1,\n",
      "          'avoid': 1,\n",
      "          'future': 1,\n",
      "          'projects': 1,\n",
      "          'nstill': 1,\n",
      "          'certainly': 1,\n",
      "          'without': 1,\n",
      "          'merits': 1,\n",
      "          'acting': 1,\n",
      "          'good': 1,\n",
      "          'majority': 1,\n",
      "          'experienced': 1,\n",
      "          'performances': 1,\n",
      "          'range': 1,\n",
      "          'electric': 1,\n",
      "          'stiffasaboard': 1,\n",
      "          'real': 1,\n",
      "          'talents': 1,\n",
      "          'nmadeleine': 1,\n",
      "          'manages': 1,\n",
      "          'hold': 1,\n",
      "          'lead': 1,\n",
      "          'actionthriller': 1,\n",
      "          'pull': 1,\n",
      "          'sufficiently': 1,\n",
      "          'none': 1,\n",
      "          'problems': 1,\n",
      "          'execution': 1,\n",
      "          'minute': 1,\n",
      "          'doubts': 1,\n",
      "          'identity': 1,\n",
      "          'killer': 1,\n",
      "          'question': 1,\n",
      "          'script': 1,\n",
      "          'even': 1,\n",
      "          'unwillingly': 1,\n",
      "          'points': 1,\n",
      "          'us': 1,\n",
      "          'using': 1,\n",
      "          'familiar': 1,\n",
      "          'techniques': 1,\n",
      "          'hide': 1,\n",
      "          'guilt': 1,\n",
      "          'unmasking': 1,\n",
      "          'toward': 1,\n",
      "          'end': 1,\n",
      "          'fairness': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'devices': 1,\n",
      "          'used': 1,\n",
      "          'put': 1,\n",
      "          'greater': 1,\n",
      "          'effect': 1,\n",
      "          'films': 1,\n",
      "          'behind': 1,\n",
      "          'girls': 1,\n",
      "          'mysterious': 1,\n",
      "          'death': 1,\n",
      "          'explained': 1,\n",
      "          'gradually': 1,\n",
      "          'resolution': 1,\n",
      "          'tunneled': 1,\n",
      "          'malarkey': 1,\n",
      "          'feels': 1,\n",
      "          'unnecessary': 1,\n",
      "          'surprisingly': 1,\n",
      "          'silly': 1,\n",
      "          'terrible': 1,\n",
      "          'sustain': 1,\n",
      "          'viewers': 1,\n",
      "          'attention': 1,\n",
      "          'span': 1,\n",
      "          'period': 1,\n",
      "          'time': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'nthe': 9,\n",
      "          'one': 6,\n",
      "          'characters': 6,\n",
      "          'macdonald': 6,\n",
      "          'jokes': 6,\n",
      "          'norm': 5,\n",
      "          'like': 4,\n",
      "          'sam': 4,\n",
      "          'mitch': 4,\n",
      "          'dont': 4,\n",
      "          'nand': 4,\n",
      "          'nbut': 3,\n",
      "          'critic': 3,\n",
      "          'plot': 3,\n",
      "          'n': 3,\n",
      "          'fan': 3,\n",
      "          'comedy': 3,\n",
      "          'rich': 3,\n",
      "          'businessman': 3,\n",
      "          'care': 3,\n",
      "          'crude': 3,\n",
      "          'ntheres': 3,\n",
      "          'core': 3,\n",
      "          'get': 3,\n",
      "          'every': 3,\n",
      "          'opera': 2,\n",
      "          'goes': 2,\n",
      "          'thinking': 2,\n",
      "          'performance': 2,\n",
      "          'nthis': 2,\n",
      "          'laughing': 2,\n",
      "          'sketch': 2,\n",
      "          'nits': 2,\n",
      "          '50000': 2,\n",
      "          'doctor': 2,\n",
      "          'give': 2,\n",
      "          'father': 2,\n",
      "          'revenge': 2,\n",
      "          'played': 2,\n",
      "          'seems': 2,\n",
      "          'building': 2,\n",
      "          'night': 2,\n",
      "          'new': 2,\n",
      "          'guy': 2,\n",
      "          'way': 2,\n",
      "          'nheres': 2,\n",
      "          'sex': 2,\n",
      "          'thats': 2,\n",
      "          'ni': 2,\n",
      "          'joke': 2,\n",
      "          'tells': 2,\n",
      "          'construction': 2,\n",
      "          'gambling': 2,\n",
      "          'says': 2,\n",
      "          'used': 2,\n",
      "          'least': 2,\n",
      "          'isnt': 2,\n",
      "          'mean': 2,\n",
      "          'attitude': 2,\n",
      "          'doesnt': 2,\n",
      "          'point': 1,\n",
      "          'staging': 1,\n",
      "          'completely': 1,\n",
      "          'wrong': 1,\n",
      "          'member': 1,\n",
      "          'crowd': 1,\n",
      "          'stands': 1,\n",
      "          'cheers': 1,\n",
      "          'planned': 1,\n",
      "          'applauding': 1,\n",
      "          'efforts': 1,\n",
      "          'nthats': 1,\n",
      "          'dirty': 1,\n",
      "          'work': 1,\n",
      "          'nutshell': 1,\n",
      "          'na': 1,\n",
      "          'different': 1,\n",
      "          'kind': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'easily': 1,\n",
      "          'review': 1,\n",
      "          'analyzes': 1,\n",
      "          'structure': 1,\n",
      "          'acting': 1,\n",
      "          'ntells': 1,\n",
      "          'terrible': 1,\n",
      "          'rolling': 1,\n",
      "          'floor': 1,\n",
      "          'plays': 1,\n",
      "          'hbo': 1,\n",
      "          'note': 1,\n",
      "          'concept': 1,\n",
      "          'nmitch': 1,\n",
      "          'need': 1,\n",
      "          'order': 1,\n",
      "          'bribe': 1,\n",
      "          'heart': 1,\n",
      "          'transplant': 1,\n",
      "          'needy': 1,\n",
      "          'patients': 1,\n",
      "          'nrealizing': 1,\n",
      "          'good': 1,\n",
      "          'plots': 1,\n",
      "          'open': 1,\n",
      "          'hire': 1,\n",
      "          'business': 1,\n",
      "          'eventually': 1,\n",
      "          'running': 1,\n",
      "          'afoul': 1,\n",
      "          'christopher': 1,\n",
      "          'roles': 1,\n",
      "          'happy': 1,\n",
      "          'gilmore': 1,\n",
      "          'veronicas': 1,\n",
      "          'closet': 1,\n",
      "          'typcast': 1,\n",
      "          'role': 1,\n",
      "          'sends': 1,\n",
      "          'destroy': 1,\n",
      "          'learns': 1,\n",
      "          'home': 1,\n",
      "          'girlfriends': 1,\n",
      "          'grandmother': 1,\n",
      "          'thus': 1,\n",
      "          'leading': 1,\n",
      "          'grand': 1,\n",
      "          'opening': 1,\n",
      "          'house': 1,\n",
      "          'nfirst': 1,\n",
      "          'standard': 1,\n",
      "          'poor': 1,\n",
      "          'vs': 1,\n",
      "          'evil': 1,\n",
      "          'device': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'meets': 1,\n",
      "          'girl': 1,\n",
      "          'dreams': 1,\n",
      "          'along': 1,\n",
      "          'catch': 1,\n",
      "          'nnone': 1,\n",
      "          'sympathetic': 1,\n",
      "          'ntheyre': 1,\n",
      "          'selfish': 1,\n",
      "          'jerks': 1,\n",
      "          'hurt': 1,\n",
      "          'attempts': 1,\n",
      "          'whatever': 1,\n",
      "          'want': 1,\n",
      "          'juvenile': 1,\n",
      "          'appealing': 1,\n",
      "          'worst': 1,\n",
      "          'elements': 1,\n",
      "          'people': 1,\n",
      "          'prostitutes': 1,\n",
      "          'homeless': 1,\n",
      "          'beastiality': 1,\n",
      "          'anal': 1,\n",
      "          'even': 1,\n",
      "          'subplot': 1,\n",
      "          'developed': 1,\n",
      "          'make': 1,\n",
      "          'infidelity': 1,\n",
      "          'incest': 1,\n",
      "          'loved': 1,\n",
      "          'watching': 1,\n",
      "          'huge': 1,\n",
      "          'macdonalds': 1,\n",
      "          'sarcastic': 1,\n",
      "          'tothepoint': 1,\n",
      "          'saturday': 1,\n",
      "          'live': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'nnorm': 1,\n",
      "          'takes': 1,\n",
      "          'strips': 1,\n",
      "          'dry': 1,\n",
      "          'wit': 1,\n",
      "          'nlike': 1,\n",
      "          'scene': 1,\n",
      "          'friend': 1,\n",
      "          'learning': 1,\n",
      "          'ropes': 1,\n",
      "          'job': 1,\n",
      "          'foreman': 1,\n",
      "          'basics': 1,\n",
      "          'understand': 1,\n",
      "          'nhow': 1,\n",
      "          'nby': 1,\n",
      "          'admiting': 1,\n",
      "          'lied': 1,\n",
      "          'resumes': 1,\n",
      "          'know': 1,\n",
      "          'thing': 1,\n",
      "          'surprise': 1,\n",
      "          'fired': 1,\n",
      "          'incredibly': 1,\n",
      "          'meanspirited': 1,\n",
      "          'whos': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'addicted': 1,\n",
      "          'chevy': 1,\n",
      "          'chase': 1,\n",
      "          'fathers': 1,\n",
      "          'condition': 1,\n",
      "          'saying': 1,\n",
      "          'man': 1,\n",
      "          'id': 1,\n",
      "          'put': 1,\n",
      "          'lot': 1,\n",
      "          'money': 1,\n",
      "          'death': 1,\n",
      "          'cole': 1,\n",
      "          'always': 1,\n",
      "          'dog': 1,\n",
      "          'spunky': 1,\n",
      "          'knows': 1,\n",
      "          'theres': 1,\n",
      "          'destroying': 1,\n",
      "          'ponder': 1,\n",
      "          'actions': 1,\n",
      "          'would': 1,\n",
      "          'ruin': 1,\n",
      "          'lives': 1,\n",
      "          'residents': 1,\n",
      "          'bad': 1,\n",
      "          'executed': 1,\n",
      "          'set': 1,\n",
      "          'see': 1,\n",
      "          'punchline': 1,\n",
      "          'coming': 1,\n",
      "          'spot': 1,\n",
      "          'profanity': 1,\n",
      "          'could': 1,\n",
      "          'nat': 1,\n",
      "          'film': 1,\n",
      "          'honest': 1,\n",
      "          'makes': 1,\n",
      "          'mistake': 1,\n",
      "          'anything': 1,\n",
      "          'idiotic': 1,\n",
      "          'dull': 1,\n",
      "          'predictable': 1,\n",
      "          'youre': 1,\n",
      "          'youll': 1,\n",
      "          'love': 1,\n",
      "          'nif': 1,\n",
      "          'stupid': 1,\n",
      "          'movies': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'nso': 1,\n",
      "          'seeing': 1,\n",
      "          'tune': 1,\n",
      "          'mindset': 1,\n",
      "          'prepare': 1,\n",
      "          'slew': 1,\n",
      "          'humor': 1,\n",
      "          'gay': 1,\n",
      "          'animal': 1,\n",
      "          'prison': 1,\n",
      "          'rape': 1,\n",
      "          'uncaring': 1,\n",
      "          'last': 1,\n",
      "          'chris': 1,\n",
      "          'farley': 1,\n",
      "          '8': 1,\n",
      "          'couldnt': 1,\n",
      "          'stop': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 4,\n",
      "          'austin': 3,\n",
      "          'movie': 3,\n",
      "          'sex': 3,\n",
      "          'jokes': 3,\n",
      "          'ni': 3,\n",
      "          'comic': 3,\n",
      "          'generation': 3,\n",
      "          'blah': 3,\n",
      "          'new': 2,\n",
      "          'powers': 2,\n",
      "          'tradition': 2,\n",
      "          'anything': 2,\n",
      "          'get': 2,\n",
      "          'high': 2,\n",
      "          'humor': 2,\n",
      "          'sight': 2,\n",
      "          'gags': 2,\n",
      "          'nand': 2,\n",
      "          'go': 2,\n",
      "          'like': 2,\n",
      "          'nbut': 2,\n",
      "          'films': 2,\n",
      "          'many': 2,\n",
      "          'least': 2,\n",
      "          'material': 2,\n",
      "          'director': 2,\n",
      "          'us': 2,\n",
      "          'nothing': 2,\n",
      "          'continues': 1,\n",
      "          'begun': 1,\n",
      "          'eighties': 1,\n",
      "          'nproduce': 1,\n",
      "          'something': 1,\n",
      "          'school': 1,\n",
      "          'junior': 1,\n",
      "          'kids': 1,\n",
      "          'theater': 1,\n",
      "          'buy': 1,\n",
      "          'soda': 1,\n",
      "          'popcorn': 1,\n",
      "          'senior': 1,\n",
      "          'citizens': 1,\n",
      "          'usual': 1,\n",
      "          'hallmarks': 1,\n",
      "          'filmmaking': 1,\n",
      "          'ngross': 1,\n",
      "          'silly': 1,\n",
      "          'strong': 1,\n",
      "          'contender': 1,\n",
      "          'current': 1,\n",
      "          'race': 1,\n",
      "          'cruder': 1,\n",
      "          'grosser': 1,\n",
      "          'outrageous': 1,\n",
      "          'last': 1,\n",
      "          'nwhat': 1,\n",
      "          'however': 1,\n",
      "          'funny': 1,\n",
      "          'plot': 1,\n",
      "          'centers': 1,\n",
      "          'around': 1,\n",
      "          'return': 1,\n",
      "          'dr': 1,\n",
      "          'evil': 1,\n",
      "          'goes': 1,\n",
      "          'back': 1,\n",
      "          'time': 1,\n",
      "          'steal': 1,\n",
      "          'mojo': 1,\n",
      "          'liquid': 1,\n",
      "          'red': 1,\n",
      "          'stuff': 1,\n",
      "          'extracted': 1,\n",
      "          'austins': 1,\n",
      "          'pelvis': 1,\n",
      "          'gives': 1,\n",
      "          'sexual': 1,\n",
      "          'prowess': 1,\n",
      "          'charisma': 1,\n",
      "          'defeat': 1,\n",
      "          'enemies': 1,\n",
      "          'naustin': 1,\n",
      "          'must': 1,\n",
      "          'returns': 1,\n",
      "          'swinging': 1,\n",
      "          'sixties': 1,\n",
      "          'free': 1,\n",
      "          'love': 1,\n",
      "          'sexy': 1,\n",
      "          'secret': 1,\n",
      "          'agents': 1,\n",
      "          'heyday': 1,\n",
      "          'almost': 1,\n",
      "          'avoided': 1,\n",
      "          'original': 1,\n",
      "          'premise': 1,\n",
      "          'sounded': 1,\n",
      "          'excellent': 1,\n",
      "          'vehicle': 1,\n",
      "          'received': 1,\n",
      "          'good': 1,\n",
      "          'reviews': 1,\n",
      "          'wish': 1,\n",
      "          'stuck': 1,\n",
      "          'first': 1,\n",
      "          'impression': 1,\n",
      "          'nmyers': 1,\n",
      "          'trying': 1,\n",
      "          'jerry': 1,\n",
      "          'lewis': 1,\n",
      "          'talent': 1,\n",
      "          'actor': 1,\n",
      "          'working': 1,\n",
      "          'much': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'resembling': 1,\n",
      "          'genius': 1,\n",
      "          'nthis': 1,\n",
      "          'tries': 1,\n",
      "          'carry': 1,\n",
      "          'day': 1,\n",
      "          'drinking': 1,\n",
      "          'distilled': 1,\n",
      "          'feces': 1,\n",
      "          'fivehundredpound': 1,\n",
      "          'fat': 1,\n",
      "          'mans': 1,\n",
      "          'butt': 1,\n",
      "          'crack': 1,\n",
      "          'barrage': 1,\n",
      "          'aimed': 1,\n",
      "          'level': 1,\n",
      "          'average': 1,\n",
      "          '15': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'nafter': 1,\n",
      "          'scenes': 1,\n",
      "          'one': 1,\n",
      "          'wonder': 1,\n",
      "          'gross': 1,\n",
      "          'next': 1,\n",
      "          'audiences': 1,\n",
      "          'attention': 1,\n",
      "          'direction': 1,\n",
      "          'also': 1,\n",
      "          'helps': 1,\n",
      "          'achieve': 1,\n",
      "          'low': 1,\n",
      "          'point': 1,\n",
      "          'cinematic': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'felt': 1,\n",
      "          'watching': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'chalderns': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'nthere': 1,\n",
      "          'sense': 1,\n",
      "          'timing': 1,\n",
      "          'subtlety': 1,\n",
      "          'throws': 1,\n",
      "          'giving': 1,\n",
      "          'except': 1,\n",
      "          'hope': 1,\n",
      "          'anyone': 1,\n",
      "          'camera': 1,\n",
      "          'could': 1,\n",
      "          'sure': 1,\n",
      "          'appeal': 1,\n",
      "          '22': 1,\n",
      "          'crowd': 1,\n",
      "          'ones': 1,\n",
      "          'yet': 1,\n",
      "          'discover': 1,\n",
      "          'literacy': 1,\n",
      "          'ncertainly': 1,\n",
      "          'directed': 1,\n",
      "          'towards': 1,\n",
      "          'prefers': 1,\n",
      "          'everything': 1,\n",
      "          'described': 1,\n",
      "          'face': 1,\n",
      "          'kick': 1,\n",
      "          'teeth': 1,\n",
      "          'take': 1,\n",
      "          'prisoners': 1,\n",
      "          'actionverb': 1,\n",
      "          'nif': 1,\n",
      "          'see': 1,\n",
      "          'find': 1,\n",
      "          'youre': 1,\n",
      "          'laughing': 1,\n",
      "          'wrong': 1,\n",
      "          'nit': 1,\n",
      "          'means': 1,\n",
      "          'grew': 1,\n",
      "          'since': 1,\n",
      "          'seventh': 1,\n",
      "          'grade': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 10,\n",
      "          '54': 7,\n",
      "          'like': 7,\n",
      "          'film': 5,\n",
      "          'studio': 4,\n",
      "          'nhe': 4,\n",
      "          'rubell': 4,\n",
      "          'n': 3,\n",
      "          'seems': 3,\n",
      "          'new': 3,\n",
      "          'performance': 3,\n",
      "          'half': 3,\n",
      "          'would': 2,\n",
      "          'brought': 2,\n",
      "          'almost': 2,\n",
      "          'shane': 2,\n",
      "          'phillippe': 2,\n",
      "          'york': 2,\n",
      "          'attractive': 2,\n",
      "          'steve': 2,\n",
      "          'mike': 2,\n",
      "          'myers': 2,\n",
      "          'becomes': 2,\n",
      "          'nyou': 2,\n",
      "          'isnt': 2,\n",
      "          'nothing': 2,\n",
      "          'perpetually': 2,\n",
      "          'show': 2,\n",
      "          'much': 2,\n",
      "          'audience': 2,\n",
      "          'people': 2,\n",
      "          'two': 2,\n",
      "          'introduced': 2,\n",
      "          'sure': 2,\n",
      "          'quarter': 2,\n",
      "          'eighty': 2,\n",
      "          'year': 2,\n",
      "          'old': 2,\n",
      "          'high': 2,\n",
      "          'john': 2,\n",
      "          'best': 2,\n",
      "          'meyer': 2,\n",
      "          'cambell': 2,\n",
      "          'give': 2,\n",
      "          'added': 2,\n",
      "          'subplots': 2,\n",
      "          'forced': 2,\n",
      "          'flowed': 2,\n",
      "          'sum': 1,\n",
      "          'entire': 1,\n",
      "          'one': 1,\n",
      "          'sentence': 1,\n",
      "          'watch': 1,\n",
      "          'vh1': 1,\n",
      "          'documentary': 1,\n",
      "          'instead': 1,\n",
      "          'someone': 1,\n",
      "          'william': 1,\n",
      "          'faulkner': 1,\n",
      "          '1978': 1,\n",
      "          'got': 1,\n",
      "          'really': 1,\n",
      "          'drunk': 1,\n",
      "          'told': 1,\n",
      "          'write': 1,\n",
      "          'dumbed': 1,\n",
      "          'released': 1,\n",
      "          'public': 1,\n",
      "          'na': 1,\n",
      "          'sloppy': 1,\n",
      "          'version': 1,\n",
      "          'stream': 1,\n",
      "          'conciousness': 1,\n",
      "          'spirals': 1,\n",
      "          'oblivion': 1,\n",
      "          'illusion': 1,\n",
      "          'sex': 1,\n",
      "          'drugs': 1,\n",
      "          'disco': 1,\n",
      "          'narrator': 1,\n",
      "          'oshae': 1,\n",
      "          'ryan': 1,\n",
      "          'works': 1,\n",
      "          'grease': 1,\n",
      "          'monkey': 1,\n",
      "          'jersey': 1,\n",
      "          'course': 1,\n",
      "          'whim': 1,\n",
      "          'decides': 1,\n",
      "          'go': 1,\n",
      "          'try': 1,\n",
      "          'get': 1,\n",
      "          'nphillippe': 1,\n",
      "          'gives': 1,\n",
      "          'passable': 1,\n",
      "          'could': 1,\n",
      "          'made': 1,\n",
      "          'young': 1,\n",
      "          'actor': 1,\n",
      "          'six': 1,\n",
      "          'pack': 1,\n",
      "          'stomach': 1,\n",
      "          'let': 1,\n",
      "          'rubbell': 1,\n",
      "          'infamous': 1,\n",
      "          'coowner': 1,\n",
      "          'eventually': 1,\n",
      "          'bus': 1,\n",
      "          'boy': 1,\n",
      "          'bartender': 1,\n",
      "          'expected': 1,\n",
      "          'didnt': 1,\n",
      "          'nthere': 1,\n",
      "          'builds': 1,\n",
      "          'climax': 1,\n",
      "          'apt': 1,\n",
      "          'word': 1,\n",
      "          'lands': 1,\n",
      "          'thud': 1,\n",
      "          'glitz': 1,\n",
      "          'club': 1,\n",
      "          'semiclothed': 1,\n",
      "          'patrons': 1,\n",
      "          'used': 1,\n",
      "          'attempt': 1,\n",
      "          'glamour': 1,\n",
      "          'nfor': 1,\n",
      "          'target': 1,\n",
      "          'college': 1,\n",
      "          'age': 1,\n",
      "          'early': 1,\n",
      "          'thirties': 1,\n",
      "          'attempts': 1,\n",
      "          'celebrities': 1,\n",
      "          'mixing': 1,\n",
      "          'normal': 1,\n",
      "          'nthis': 1,\n",
      "          'even': 1,\n",
      "          'fails': 1,\n",
      "          'since': 1,\n",
      "          'celebs': 1,\n",
      "          'truly': 1,\n",
      "          'andy': 1,\n",
      "          'warhol': 1,\n",
      "          'truman': 1,\n",
      "          'capote': 1,\n",
      "          'hasnt': 1,\n",
      "          'heard': 1,\n",
      "          'another': 1,\n",
      "          'know': 1,\n",
      "          'names': 1,\n",
      "          'knew': 1,\n",
      "          'already': 1,\n",
      "          'humor': 1,\n",
      "          'call': 1,\n",
      "          'built': 1,\n",
      "          'woman': 1,\n",
      "          'getting': 1,\n",
      "          '70s': 1,\n",
      "          'references': 1,\n",
      "          'travolta': 1,\n",
      "          'olivia': 1,\n",
      "          'newton': 1,\n",
      "          'making': 1,\n",
      "          'us': 1,\n",
      "          'laugh': 1,\n",
      "          'stupid': 1,\n",
      "          'back': 1,\n",
      "          'given': 1,\n",
      "          'sexually': 1,\n",
      "          'ambivlaent': 1,\n",
      "          'play': 1,\n",
      "          'better': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'looks': 1,\n",
      "          'sounds': 1,\n",
      "          'giving': 1,\n",
      "          'subdued': 1,\n",
      "          'nostalgic': 1,\n",
      "          'needed': 1,\n",
      "          'nit': 1,\n",
      "          'reminds': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'character': 1,\n",
      "          'linda': 1,\n",
      "          'richmond': 1,\n",
      "          'coffee': 1,\n",
      "          'talk': 1,\n",
      "          'sans': 1,\n",
      "          'dress': 1,\n",
      "          'wig': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'salma': 1,\n",
      "          'hayek': 1,\n",
      "          'breckin': 1,\n",
      "          'neve': 1,\n",
      "          'lead': 1,\n",
      "          'absolutely': 1,\n",
      "          'nowhere': 1,\n",
      "          'romance': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'star': 1,\n",
      "          'completely': 1,\n",
      "          'implausable': 1,\n",
      "          'share': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'shots': 1,\n",
      "          'hooked': 1,\n",
      "          'amphetimenes': 1,\n",
      "          'nhayeks': 1,\n",
      "          'wannabe': 1,\n",
      "          'singer': 1,\n",
      "          'extremely': 1,\n",
      "          'husband': 1,\n",
      "          'greg': 1,\n",
      "          'stands': 1,\n",
      "          'oshaes': 1,\n",
      "          'surrogate': 1,\n",
      "          'friend': 1,\n",
      "          'seemed': 1,\n",
      "          'seem': 1,\n",
      "          'make': 1,\n",
      "          'hour': 1,\n",
      "          'long': 1,\n",
      "          'noverall': 1,\n",
      "          'tried': 1,\n",
      "          'view': 1,\n",
      "          'brashness': 1,\n",
      "          'place': 1,\n",
      "          'crack': 1,\n",
      "          'heroin': 1,\n",
      "          'wine': 1,\n",
      "          'never': 1,\n",
      "          'leads': 1,\n",
      "          'anything': 1,\n",
      "          'obserable': 1,\n",
      "          'point': 1,\n",
      "          'covers': 1,\n",
      "          'lack': 1,\n",
      "          'real': 1,\n",
      "          'plot': 1,\n",
      "          'veil': 1,\n",
      "          'beautiful': 1,\n",
      "          'nin': 1,\n",
      "          'truth': 1,\n",
      "          'reminded': 1,\n",
      "          'eighies': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'instinct': 7,\n",
      "          'hes': 7,\n",
      "          'tarzan': 6,\n",
      "          'man': 6,\n",
      "          'film': 6,\n",
      "          'prison': 6,\n",
      "          'hopkins': 5,\n",
      "          'caulder': 5,\n",
      "          'gorillas': 5,\n",
      "          'evil': 5,\n",
      "          'really': 4,\n",
      "          'like': 4,\n",
      "          'old': 4,\n",
      "          'good': 4,\n",
      "          'one': 4,\n",
      "          'powell': 4,\n",
      "          'two': 4,\n",
      "          'interesting': 4,\n",
      "          'guard': 4,\n",
      "          'would': 3,\n",
      "          'way': 3,\n",
      "          'ni': 3,\n",
      "          'acting': 3,\n",
      "          'actors': 3,\n",
      "          'make': 3,\n",
      "          'patch': 3,\n",
      "          'adams': 3,\n",
      "          'us': 3,\n",
      "          'case': 3,\n",
      "          'life': 3,\n",
      "          'years': 3,\n",
      "          'work': 3,\n",
      "          'playing': 3,\n",
      "          'warden': 3,\n",
      "          'subplot': 3,\n",
      "          'daughter': 3,\n",
      "          'nif': 3,\n",
      "          'movie': 3,\n",
      "          'films': 2,\n",
      "          'movies': 2,\n",
      "          'neven': 2,\n",
      "          'comparison': 2,\n",
      "          'isnt': 2,\n",
      "          'hate': 2,\n",
      "          'recognize': 2,\n",
      "          'beyond': 2,\n",
      "          'involved': 2,\n",
      "          'also': 2,\n",
      "          'director': 2,\n",
      "          'jr': 2,\n",
      "          'psychiatrist': 2,\n",
      "          'supervision': 2,\n",
      "          'thinks': 2,\n",
      "          'anthropologist': 2,\n",
      "          'living': 2,\n",
      "          'africa': 2,\n",
      "          'caulders': 2,\n",
      "          'together': 2,\n",
      "          'central': 2,\n",
      "          'idea': 2,\n",
      "          'spent': 2,\n",
      "          'wild': 2,\n",
      "          'di': 2,\n",
      "          'pego': 2,\n",
      "          'seems': 2,\n",
      "          'time': 2,\n",
      "          'entire': 2,\n",
      "          'characters': 2,\n",
      "          'live': 2,\n",
      "          'means': 2,\n",
      "          'subplots': 2,\n",
      "          'thats': 2,\n",
      "          'obvious': 2,\n",
      "          'theres': 2,\n",
      "          'depth': 2,\n",
      "          'know': 1,\n",
      "          'never': 1,\n",
      "          'wondered': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'acknowledge': 1,\n",
      "          'carelessly': 1,\n",
      "          'rehashes': 1,\n",
      "          'wellexplored': 1,\n",
      "          'themes': 1,\n",
      "          'earlier': 1,\n",
      "          'beside': 1,\n",
      "          'nits': 1,\n",
      "          'painfully': 1,\n",
      "          'idealistic': 1,\n",
      "          'manipulative': 1,\n",
      "          'silly': 1,\n",
      "          'didnt': 1,\n",
      "          'simply': 1,\n",
      "          'impossible': 1,\n",
      "          'starring': 1,\n",
      "          'anthony': 1,\n",
      "          'furthermore': 1,\n",
      "          'quite': 1,\n",
      "          'nbut': 1,\n",
      "          'subjective': 1,\n",
      "          'admiration': 1,\n",
      "          'reasons': 1,\n",
      "          'wanting': 1,\n",
      "          'pretty': 1,\n",
      "          'clear': 1,\n",
      "          'could': 1,\n",
      "          'massive': 1,\n",
      "          'script': 1,\n",
      "          'overhaul': 1,\n",
      "          'less': 1,\n",
      "          'interested': 1,\n",
      "          'imitating': 1,\n",
      "          'nthings': 1,\n",
      "          'start': 1,\n",
      "          'predictable': 1,\n",
      "          'jon': 1,\n",
      "          'turtletaub': 1,\n",
      "          'introduces': 1,\n",
      "          'hero': 1,\n",
      "          'theo': 1,\n",
      "          'cuba': 1,\n",
      "          'gooding': 1,\n",
      "          'ambitious': 1,\n",
      "          'young': 1,\n",
      "          'experienced': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'ncaulder': 1,\n",
      "          'soon': 1,\n",
      "          'finds': 1,\n",
      "          'famous': 1,\n",
      "          'subject': 1,\n",
      "          'ethan': 1,\n",
      "          'among': 1,\n",
      "          'past': 1,\n",
      "          'npowell': 1,\n",
      "          'charged': 1,\n",
      "          'brutal': 1,\n",
      "          'murders': 1,\n",
      "          'several': 1,\n",
      "          'men': 1,\n",
      "          'job': 1,\n",
      "          'find': 1,\n",
      "          'mentally': 1,\n",
      "          'competent': 1,\n",
      "          'enough': 1,\n",
      "          'stand': 1,\n",
      "          'trial': 1,\n",
      "          'nthrough': 1,\n",
      "          'series': 1,\n",
      "          'short': 1,\n",
      "          'sessions': 1,\n",
      "          'tries': 1,\n",
      "          'put': 1,\n",
      "          'complex': 1,\n",
      "          'psyche': 1,\n",
      "          'though': 1,\n",
      "          'version': 1,\n",
      "          'much': 1,\n",
      "          'rather': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'captivating': 1,\n",
      "          'every': 1,\n",
      "          'second': 1,\n",
      "          'screen': 1,\n",
      "          'convincing': 1,\n",
      "          'actually': 1,\n",
      "          'family': 1,\n",
      "          'character': 1,\n",
      "          'likes': 1,\n",
      "          'makes': 1,\n",
      "          'subtleties': 1,\n",
      "          'speech': 1,\n",
      "          'action': 1,\n",
      "          'ngooding': 1,\n",
      "          'strong': 1,\n",
      "          'opposite': 1,\n",
      "          'intelligent': 1,\n",
      "          'flawed': 1,\n",
      "          'individual': 1,\n",
      "          'screenplay': 1,\n",
      "          'written': 1,\n",
      "          'gerald': 1,\n",
      "          'suggested': 1,\n",
      "          'novel': 1,\n",
      "          'daniel': 1,\n",
      "          'quinn': 1,\n",
      "          'gives': 1,\n",
      "          'background': 1,\n",
      "          'information': 1,\n",
      "          'point': 1,\n",
      "          'friends': 1,\n",
      "          'obsessed': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'essentially': 1,\n",
      "          'list': 1,\n",
      "          'things': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'filmmaking': 1,\n",
      "          'inept': 1,\n",
      "          'mangle': 1,\n",
      "          'effect': 1,\n",
      "          'even': 1,\n",
      "          'best': 1,\n",
      "          'nturtletaub': 1,\n",
      "          'guilty': 1,\n",
      "          'instincts': 1,\n",
      "          'artistic': 1,\n",
      "          'failure': 1,\n",
      "          'dumbest': 1,\n",
      "          'clicheridden': 1,\n",
      "          'environment': 1,\n",
      "          'brainless': 1,\n",
      "          'nfirst': 1,\n",
      "          'wants': 1,\n",
      "          'stop': 1,\n",
      "          'progress': 1,\n",
      "          'cost': 1,\n",
      "          'taking': 1,\n",
      "          'fine': 1,\n",
      "          'ntheres': 1,\n",
      "          'played': 1,\n",
      "          'john': 1,\n",
      "          'ashton': 1,\n",
      "          'enjoy': 1,\n",
      "          'mercilessly': 1,\n",
      "          'beating': 1,\n",
      "          'upon': 1,\n",
      "          'psychotics': 1,\n",
      "          'instrumental': 1,\n",
      "          'helping': 1,\n",
      "          'story': 1,\n",
      "          'along': 1,\n",
      "          'conclusion': 1,\n",
      "          'nthen': 1,\n",
      "          'maura': 1,\n",
      "          'tierney': 1,\n",
      "          'must': 1,\n",
      "          'look': 1,\n",
      "          'upset': 1,\n",
      "          'lot': 1,\n",
      "          'deranged': 1,\n",
      "          'stuff': 1,\n",
      "          'sounds': 1,\n",
      "          'familiar': 1,\n",
      "          'theyre': 1,\n",
      "          'devices': 1,\n",
      "          'used': 1,\n",
      "          'reused': 1,\n",
      "          'countless': 1,\n",
      "          'doctor': 1,\n",
      "          'unlike': 1,\n",
      "          'offensive': 1,\n",
      "          'caricatures': 1,\n",
      "          'mental': 1,\n",
      "          'patients': 1,\n",
      "          'lack': 1,\n",
      "          'similar': 1,\n",
      "          'portrayals': 1,\n",
      "          'flew': 1,\n",
      "          'cuckoos': 1,\n",
      "          'nest': 1,\n",
      "          'nashtons': 1,\n",
      "          'pales': 1,\n",
      "          'clancy': 1,\n",
      "          'browns': 1,\n",
      "          'shawshank': 1,\n",
      "          'redemption': 1,\n",
      "          'nhopkins': 1,\n",
      "          'performance': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'remind': 1,\n",
      "          'audiences': 1,\n",
      "          'turn': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'nand': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'nperhaps': 1,\n",
      "          'irritates': 1,\n",
      "          'halfhearted': 1,\n",
      "          'attempt': 1,\n",
      "          'philosophical': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'message': 1,\n",
      "          'brings': 1,\n",
      "          'back': 1,\n",
      "          'subtle': 1,\n",
      "          'humans': 1,\n",
      "          'takers': 1,\n",
      "          'expand': 1,\n",
      "          'kill': 1,\n",
      "          'sympathize': 1,\n",
      "          'compelling': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'stupid': 1,\n",
      "          'big': 1,\n",
      "          'group': 1,\n",
      "          'psychotic': 1,\n",
      "          'inmates': 1,\n",
      "          'rise': 1,\n",
      "          'forces': 1,\n",
      "          'oppressing': 1,\n",
      "          'tearing': 1,\n",
      "          'cards': 1,\n",
      "          'nwhat': 1,\n",
      "          'left': 1,\n",
      "          'cutting': 1,\n",
      "          'room': 1,\n",
      "          'floor': 1,\n",
      "          'thirtyminute': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'twohour': 1,\n",
      "          'watched': 1,\n",
      "          'today': 1,\n",
      "          'developed': 1,\n",
      "          'premise': 1,\n",
      "          'something': 1,\n",
      "          'doesnt': 1,\n",
      "          'rely': 1,\n",
      "          'strength': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'joe': 6,\n",
      "          'effects': 6,\n",
      "          'young': 5,\n",
      "          'mighty': 4,\n",
      "          'remake': 4,\n",
      "          'kong': 4,\n",
      "          'predictable': 4,\n",
      "          'gorilla': 3,\n",
      "          'theres': 3,\n",
      "          'king': 3,\n",
      "          'also': 3,\n",
      "          'world': 3,\n",
      "          'disneys': 2,\n",
      "          'bill': 2,\n",
      "          'see': 2,\n",
      "          'one': 2,\n",
      "          'clich': 2,\n",
      "          'unnecessary': 2,\n",
      "          'story': 2,\n",
      "          'years': 2,\n",
      "          'ready': 2,\n",
      "          'beast': 2,\n",
      "          'nthe': 2,\n",
      "          'baker': 2,\n",
      "          'computer': 2,\n",
      "          'nwhile': 2,\n",
      "          'including': 2,\n",
      "          'films': 2,\n",
      "          'finale': 1,\n",
      "          '15foot': 1,\n",
      "          'tall': 1,\n",
      "          '2000pound': 1,\n",
      "          'holds': 1,\n",
      "          'frightened': 1,\n",
      "          'boy': 1,\n",
      "          'clutches': 1,\n",
      "          'topples': 1,\n",
      "          'crippled': 1,\n",
      "          'ferris': 1,\n",
      "          'wheel': 1,\n",
      "          'plummets': 1,\n",
      "          'ground': 1,\n",
      "          'nupon': 1,\n",
      "          'impact': 1,\n",
      "          'rugged': 1,\n",
      "          'everyman': 1,\n",
      "          'perennial': 1,\n",
      "          'dogooder': 1,\n",
      "          'paxton': 1,\n",
      "          'rushes': 1,\n",
      "          'containing': 1,\n",
      "          'emotional': 1,\n",
      "          'crowd': 1,\n",
      "          'earnest': 1,\n",
      "          'move': 1,\n",
      "          'along': 1,\n",
      "          'folks': 1,\n",
      "          'nothing': 1,\n",
      "          'nok': 1,\n",
      "          'arent': 1,\n",
      "          'exactly': 1,\n",
      "          'words': 1,\n",
      "          'uses': 1,\n",
      "          'probably': 1,\n",
      "          'uttered': 1,\n",
      "          'mother': 1,\n",
      "          'monster': 1,\n",
      "          'movies': 1,\n",
      "          'n1949s': 1,\n",
      "          'update': 1,\n",
      "          'classic': 1,\n",
      "          'creature': 1,\n",
      "          'feature': 1,\n",
      "          'based': 1,\n",
      "          'merian': 1,\n",
      "          'c': 1,\n",
      "          'coopers': 1,\n",
      "          'original': 1,\n",
      "          '16': 1,\n",
      "          'appeared': 1,\n",
      "          'new': 1,\n",
      "          'take': 1,\n",
      "          'beauty': 1,\n",
      "          'fable': 1,\n",
      "          'nnow': 1,\n",
      "          '49': 1,\n",
      "          'later': 1,\n",
      "          'least': 1,\n",
      "          'according': 1,\n",
      "          'way': 1,\n",
      "          'thinking': 1,\n",
      "          'nnot': 1,\n",
      "          'onlyand': 1,\n",
      "          'mean': 1,\n",
      "          'onlyreason': 1,\n",
      "          '1998': 1,\n",
      "          'version': 1,\n",
      "          'special': 1,\n",
      "          'nand': 1,\n",
      "          'unfortunately': 1,\n",
      "          'run': 1,\n",
      "          'hot': 1,\n",
      "          'cold': 1,\n",
      "          'ntodays': 1,\n",
      "          'designed': 1,\n",
      "          'produced': 1,\n",
      "          'specialeffects': 1,\n",
      "          'whiz': 1,\n",
      "          'rick': 1,\n",
      "          'wowing': 1,\n",
      "          'audiences': 1,\n",
      "          'stateoftheart': 1,\n",
      "          'makeup': 1,\n",
      "          'since': 1,\n",
      "          '1971s': 1,\n",
      "          'schlock': 1,\n",
      "          'incidentally': 1,\n",
      "          'featured': 1,\n",
      "          'bakerenhanced': 1,\n",
      "          'njoe': 1,\n",
      "          'combination': 1,\n",
      "          'animatronic': 1,\n",
      "          'graphics': 1,\n",
      "          'old': 1,\n",
      "          'standard': 1,\n",
      "          'man': 1,\n",
      "          'monkey': 1,\n",
      "          'suit': 1,\n",
      "          'occasional': 1,\n",
      "          'flashes': 1,\n",
      "          'brilliancebakers': 1,\n",
      "          'lot': 1,\n",
      "          'practice': 1,\n",
      "          'simian': 1,\n",
      "          'gorillas': 1,\n",
      "          'mist': 1,\n",
      "          'greystoke': 1,\n",
      "          'legend': 1,\n",
      "          'tarzan': 1,\n",
      "          'lord': 1,\n",
      "          'apes': 1,\n",
      "          '1976': 1,\n",
      "          'surprising': 1,\n",
      "          'cheesiness': 1,\n",
      "          'none': 1,\n",
      "          'embarrassing': 1,\n",
      "          'moments': 1,\n",
      "          'paxtons': 1,\n",
      "          'band': 1,\n",
      "          'african': 1,\n",
      "          'trackers': 1,\n",
      "          'first': 1,\n",
      "          'encounter': 1,\n",
      "          'pursue': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'primate': 1,\n",
      "          'scene': 1,\n",
      "          'unashamedly': 1,\n",
      "          'ripped': 1,\n",
      "          'lost': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'npaxton': 1,\n",
      "          'jubilantly': 1,\n",
      "          'extols': 1,\n",
      "          'beasts': 1,\n",
      "          'majestic': 1,\n",
      "          'gait': 1,\n",
      "          'exact': 1,\n",
      "          'moment': 1,\n",
      "          'driving': 1,\n",
      "          'stutter': 1,\n",
      "          'halt': 1,\n",
      "          'nalso': 1,\n",
      "          'producers': 1,\n",
      "          'wanted': 1,\n",
      "          'us': 1,\n",
      "          'focus': 1,\n",
      "          'attentions': 1,\n",
      "          'titular': 1,\n",
      "          'ape': 1,\n",
      "          'shouldnt': 1,\n",
      "          'paraded': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'charlize': 1,\n",
      "          'theron': 1,\n",
      "          'trial': 1,\n",
      "          'error': 1,\n",
      "          'around': 1,\n",
      "          'seeminglyendless': 1,\n",
      "          'wardrobe': 1,\n",
      "          'spaghettistrapped': 1,\n",
      "          'tops': 1,\n",
      "          'neven': 1,\n",
      "          'seems': 1,\n",
      "          'distracted': 1,\n",
      "          'times': 1,\n",
      "          'film': 1,\n",
      "          'piles': 1,\n",
      "          'like': 1,\n",
      "          'tomorrow': 1,\n",
      "          'plot': 1,\n",
      "          'anthrozoologists': 1,\n",
      "          'ship': 1,\n",
      "          'gigantic': 1,\n",
      "          'l': 1,\n",
      "          'urban': 1,\n",
      "          'havoc': 1,\n",
      "          'inevitably': 1,\n",
      "          'wrought': 1,\n",
      "          'villain': 1,\n",
      "          'lithuanian': 1,\n",
      "          'think': 1,\n",
      "          'overheard': 1,\n",
      "          'someplace': 1,\n",
      "          'love': 1,\n",
      "          'charlizesurprise': 1,\n",
      "          'denouement': 1,\n",
      "          'twas': 1,\n",
      "          'boxoffice': 1,\n",
      "          'receipts': 1,\n",
      "          'killed': 1,\n",
      "          'nkids': 1,\n",
      "          'raised': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'nonmonkey': 1,\n",
      "          'going': 1,\n",
      "          'find': 1,\n",
      "          'ron': 1,\n",
      "          'tremors': 1,\n",
      "          'underwoods': 1,\n",
      "          'outing': 1,\n",
      "          'little': 1,\n",
      "          'lame': 1,\n",
      "          'comparison': 1,\n",
      "          'certainly': 1,\n",
      "          'better': 1,\n",
      "          '1978s': 1,\n",
      "          'lives': 1,\n",
      "          'lousy': 1,\n",
      "          'sequel': 1,\n",
      "          'particularly': 1,\n",
      "          'good': 1,\n",
      "          'proves': 1,\n",
      "          'keep': 1,\n",
      "          'falling': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'much': 5,\n",
      "          'harry': 4,\n",
      "          'noir': 3,\n",
      "          'youre': 3,\n",
      "          'florida': 2,\n",
      "          'palmetto': 2,\n",
      "          'nits': 2,\n",
      "          'slow': 2,\n",
      "          'harrelson': 2,\n",
      "          'things': 2,\n",
      "          'shue': 2,\n",
      "          'sevigny': 2,\n",
      "          'gets': 2,\n",
      "          'seem': 2,\n",
      "          'even': 2,\n",
      "          'plot': 2,\n",
      "          'twists': 2,\n",
      "          'whole': 2,\n",
      "          'end': 2,\n",
      "          'nsome': 2,\n",
      "          'example': 2,\n",
      "          'type': 2,\n",
      "          'movie': 2,\n",
      "          'attempt': 1,\n",
      "          'fails': 1,\n",
      "          'fundamental': 1,\n",
      "          'levels': 1,\n",
      "          'moving': 1,\n",
      "          'uninvolving': 1,\n",
      "          'plain': 1,\n",
      "          'uninteresting': 1,\n",
      "          'nharry': 1,\n",
      "          'barber': 1,\n",
      "          'woody': 1,\n",
      "          'exnewspaper': 1,\n",
      "          'man': 1,\n",
      "          'jail': 1,\n",
      "          'framed': 1,\n",
      "          'crime': 1,\n",
      "          'nhis': 1,\n",
      "          'luck': 1,\n",
      "          'hasnt': 1,\n",
      "          'best': 1,\n",
      "          'looking': 1,\n",
      "          'mysterious': 1,\n",
      "          'woman': 1,\n",
      "          'rhea': 1,\n",
      "          'malroux': 1,\n",
      "          'elisabeth': 1,\n",
      "          'approaches': 1,\n",
      "          'proposition': 1,\n",
      "          'nshe': 1,\n",
      "          'wants': 1,\n",
      "          'help': 1,\n",
      "          'stepdaughter': 1,\n",
      "          'odette': 1,\n",
      "          'chloe': 1,\n",
      "          'pull': 1,\n",
      "          'fake': 1,\n",
      "          'kidnapping': 1,\n",
      "          'scheme': 1,\n",
      "          'get': 1,\n",
      "          '500': 1,\n",
      "          '000': 1,\n",
      "          'stingy': 1,\n",
      "          'rich': 1,\n",
      "          'husband': 1,\n",
      "          'felix': 1,\n",
      "          'rolf': 1,\n",
      "          'hoppe': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'expected': 1,\n",
      "          'provide': 1,\n",
      "          'threatening': 1,\n",
      "          'voice': 1,\n",
      "          'phone': 1,\n",
      "          'collect': 1,\n",
      "          'money': 1,\n",
      "          'keep': 1,\n",
      "          '10': 1,\n",
      "          'nbut': 1,\n",
      "          'deed': 1,\n",
      "          'carried': 1,\n",
      "          'caught': 1,\n",
      "          'ensuing': 1,\n",
      "          'storm': 1,\n",
      "          'npalmetto': 1,\n",
      "          'pulls': 1,\n",
      "          'stops': 1,\n",
      "          'achieve': 1,\n",
      "          'effect': 1,\n",
      "          'never': 1,\n",
      "          'quite': 1,\n",
      "          'comes': 1,\n",
      "          'together': 1,\n",
      "          'got': 1,\n",
      "          'sultry': 1,\n",
      "          'heat': 1,\n",
      "          'seductive': 1,\n",
      "          'women': 1,\n",
      "          'curvier': 1,\n",
      "          'thing': 1,\n",
      "          'smells': 1,\n",
      "          'paintbynumbers': 1,\n",
      "          'nsure': 1,\n",
      "          'right': 1,\n",
      "          'ingredients': 1,\n",
      "          'result': 1,\n",
      "          'artificial': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'problems': 1,\n",
      "          'lie': 1,\n",
      "          'script': 1,\n",
      "          'though': 1,\n",
      "          'providing': 1,\n",
      "          'genuine': 1,\n",
      "          'surprises': 1,\n",
      "          'packed': 1,\n",
      "          'full': 1,\n",
      "          'leaden': 1,\n",
      "          'dialogue': 1,\n",
      "          'bland': 1,\n",
      "          'situations': 1,\n",
      "          'neven': 1,\n",
      "          'dont': 1,\n",
      "          'flow': 1,\n",
      "          'well': 1,\n",
      "          'rest': 1,\n",
      "          'story': 1,\n",
      "          'come': 1,\n",
      "          'far': 1,\n",
      "          'afield': 1,\n",
      "          'seemingly': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'writer': 1,\n",
      "          'needed': 1,\n",
      "          'twist': 1,\n",
      "          'harrys': 1,\n",
      "          'spontaneous': 1,\n",
      "          'job': 1,\n",
      "          'offer': 1,\n",
      "          'typewriter': 1,\n",
      "          'situation': 1,\n",
      "          'nthe': 1,\n",
      "          'characters': 1,\n",
      "          'mostly': 1,\n",
      "          'lifeless': 1,\n",
      "          'played': 1,\n",
      "          'nwoody': 1,\n",
      "          'plays': 1,\n",
      "          'imbecilic': 1,\n",
      "          'thickheadedness': 1,\n",
      "          'hard': 1,\n",
      "          'picture': 1,\n",
      "          'exjournalist': 1,\n",
      "          'nelisabeth': 1,\n",
      "          'vamps': 1,\n",
      "          'doesnt': 1,\n",
      "          'add': 1,\n",
      "          'anything': 1,\n",
      "          'special': 1,\n",
      "          'role': 1,\n",
      "          'nchloe': 1,\n",
      "          'gives': 1,\n",
      "          'terrible': 1,\n",
      "          'performance': 1,\n",
      "          'trying': 1,\n",
      "          'sexy': 1,\n",
      "          '17year': 1,\n",
      "          'old': 1,\n",
      "          'leaves': 1,\n",
      "          'bad': 1,\n",
      "          'taste': 1,\n",
      "          'mouth': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'notably': 1,\n",
      "          'gina': 1,\n",
      "          'gershon': 1,\n",
      "          'michael': 1,\n",
      "          'rapaport': 1,\n",
      "          'give': 1,\n",
      "          'stronger': 1,\n",
      "          'meaningless': 1,\n",
      "          'performances': 1,\n",
      "          'nand': 1,\n",
      "          'top': 1,\n",
      "          'pacing': 1,\n",
      "          'nas': 1,\n",
      "          'grinds': 1,\n",
      "          'halt': 1,\n",
      "          'given': 1,\n",
      "          'time': 1,\n",
      "          'wonder': 1,\n",
      "          'wasting': 1,\n",
      "          'watching': 1,\n",
      "          'nif': 1,\n",
      "          'mood': 1,\n",
      "          'youd': 1,\n",
      "          'better': 1,\n",
      "          'going': 1,\n",
      "          'renting': 1,\n",
      "          'classic': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ned': 9,\n",
      "          'kelly': 9,\n",
      "          'film': 6,\n",
      "          'police': 5,\n",
      "          'see': 3,\n",
      "          'nthe': 3,\n",
      "          'better': 3,\n",
      "          'neds': 3,\n",
      "          'british': 3,\n",
      "          'nwhen': 3,\n",
      "          'gang': 3,\n",
      "          'brothers': 3,\n",
      "          'kellys': 3,\n",
      "          'want': 2,\n",
      "          'jagger': 2,\n",
      "          'australian': 2,\n",
      "          'nbut': 2,\n",
      "          'goes': 2,\n",
      "          'nthis': 2,\n",
      "          'nin': 2,\n",
      "          'revenge': 2,\n",
      "          'begins': 2,\n",
      "          'outback': 2,\n",
      "          'justice': 2,\n",
      "          'horses': 2,\n",
      "          'go': 2,\n",
      "          'poor': 2,\n",
      "          'train': 2,\n",
      "          'much': 2,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'mick': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'sporting': 1,\n",
      "          'abe': 1,\n",
      "          'lincoln': 1,\n",
      "          'beard': 1,\n",
      "          'rock': 1,\n",
      "          'roller': 1,\n",
      "          'asked': 1,\n",
      "          'carry': 1,\n",
      "          'action': 1,\n",
      "          'antihero': 1,\n",
      "          'legend': 1,\n",
      "          'nkelly': 1,\n",
      "          'socalled': 1,\n",
      "          'robin': 1,\n",
      "          'hood': 1,\n",
      "          'aussies': 1,\n",
      "          'fails': 1,\n",
      "          'convincing': 1,\n",
      "          'opinion': 1,\n",
      "          'suited': 1,\n",
      "          'play': 1,\n",
      "          'gene': 1,\n",
      "          'opens': 1,\n",
      "          'bw': 1,\n",
      "          'prologue': 1,\n",
      "          'bravely': 1,\n",
      "          'going': 1,\n",
      "          'execution': 1,\n",
      "          'nthen': 1,\n",
      "          'technicolor': 1,\n",
      "          'seen': 1,\n",
      "          'flashback': 1,\n",
      "          'coming': 1,\n",
      "          'home': 1,\n",
      "          'jail': 1,\n",
      "          '3year': 1,\n",
      "          'sentence': 1,\n",
      "          'mom': 1,\n",
      "          'reacquaint': 1,\n",
      "          'large': 1,\n",
      "          'family': 1,\n",
      "          'scene': 1,\n",
      "          'set': 1,\n",
      "          '1871': 1,\n",
      "          'background': 1,\n",
      "          'hear': 1,\n",
      "          'booming': 1,\n",
      "          'voice': 1,\n",
      "          'waylon': 1,\n",
      "          'jennings': 1,\n",
      "          'sings': 1,\n",
      "          'shel': 1,\n",
      "          'silversteins': 1,\n",
      "          'lyrics': 1,\n",
      "          'tells': 1,\n",
      "          'hatred': 1,\n",
      "          'rule': 1,\n",
      "          'hope': 1,\n",
      "          'ireland': 1,\n",
      "          'republic': 1,\n",
      "          'nned': 1,\n",
      "          'says': 1,\n",
      "          'debt': 1,\n",
      "          'must': 1,\n",
      "          'paid': 1,\n",
      "          'nas': 1,\n",
      "          'hears': 1,\n",
      "          'voices': 1,\n",
      "          'dead': 1,\n",
      "          'father': 1,\n",
      "          'classdivided': 1,\n",
      "          'country': 1,\n",
      "          'conscience': 1,\n",
      "          'telling': 1,\n",
      "          'get': 1,\n",
      "          'nso': 1,\n",
      "          'romp': 1,\n",
      "          'australias': 1,\n",
      "          'seeking': 1,\n",
      "          'wrongs': 1,\n",
      "          'people': 1,\n",
      "          'suffered': 1,\n",
      "          'nhe': 1,\n",
      "          'stealing': 1,\n",
      "          'complaining': 1,\n",
      "          'unfair': 1,\n",
      "          'tax': 1,\n",
      "          'law': 1,\n",
      "          'stray': 1,\n",
      "          'favors': 1,\n",
      "          'rich': 1,\n",
      "          'landowners': 1,\n",
      "          'hes': 1,\n",
      "          '20': 1,\n",
      "          'forms': 1,\n",
      "          'causing': 1,\n",
      "          'hide': 1,\n",
      "          'rest': 1,\n",
      "          'life': 1,\n",
      "          'put': 1,\n",
      "          'price': 1,\n",
      "          'head': 1,\n",
      "          'two': 1,\n",
      "          'thousand': 1,\n",
      "          'pounds': 1,\n",
      "          'mother': 1,\n",
      "          'clarissa': 1,\n",
      "          'kaye': 1,\n",
      "          'jailed': 1,\n",
      "          'false': 1,\n",
      "          'charge': 1,\n",
      "          'abetting': 1,\n",
      "          'criminals': 1,\n",
      "          'sentenced': 1,\n",
      "          '35': 1,\n",
      "          'years': 1,\n",
      "          'offers': 1,\n",
      "          'surrender': 1,\n",
      "          'exchange': 1,\n",
      "          'mothers': 1,\n",
      "          'freedom': 1,\n",
      "          'authorities': 1,\n",
      "          'refuse': 1,\n",
      "          'robbing': 1,\n",
      "          'rampage': 1,\n",
      "          'burning': 1,\n",
      "          'mortgages': 1,\n",
      "          'found': 1,\n",
      "          'postal': 1,\n",
      "          'vaults': 1,\n",
      "          'murdering': 1,\n",
      "          'soldiers': 1,\n",
      "          'nrampaging': 1,\n",
      "          'gather': 1,\n",
      "          'sympathy': 1,\n",
      "          'among': 1,\n",
      "          'lower': 1,\n",
      "          'classes': 1,\n",
      "          'dont': 1,\n",
      "          'trust': 1,\n",
      "          'traps': 1,\n",
      "          'nspoiler': 1,\n",
      "          'follow': 1,\n",
      "          'next': 1,\n",
      "          'paragraph': 1,\n",
      "          'climax': 1,\n",
      "          'plan': 1,\n",
      "          'ambush': 1,\n",
      "          'someone': 1,\n",
      "          'trusted': 1,\n",
      "          'tips': 1,\n",
      "          'trapped': 1,\n",
      "          'saloon': 1,\n",
      "          'captured': 1,\n",
      "          'nneds': 1,\n",
      "          'commit': 1,\n",
      "          'suicide': 1,\n",
      "          'rather': 1,\n",
      "          'taken': 1,\n",
      "          'alive': 1,\n",
      "          'escapes': 1,\n",
      "          'heroically': 1,\n",
      "          'become': 1,\n",
      "          'decoys': 1,\n",
      "          'flat': 1,\n",
      "          'presentation': 1,\n",
      "          'hardly': 1,\n",
      "          'touching': 1,\n",
      "          'emotional': 1,\n",
      "          'button': 1,\n",
      "          'fuss': 1,\n",
      "          'call': 1,\n",
      "          'njagger': 1,\n",
      "          'didnt': 1,\n",
      "          'prayer': 1,\n",
      "          'succeeding': 1,\n",
      "          'dry': 1,\n",
      "          'script': 1,\n",
      "          'offered': 1,\n",
      "          'ian': 1,\n",
      "          'jones': 1,\n",
      "          'tony': 1,\n",
      "          'richardson': 1,\n",
      "          'story': 1,\n",
      "          'failed': 1,\n",
      "          'focus': 1,\n",
      "          'australia': 1,\n",
      "          'seemingly': 1,\n",
      "          'nunder': 1,\n",
      "          'richardsons': 1,\n",
      "          'lackluster': 1,\n",
      "          'direction': 1,\n",
      "          'seemed': 1,\n",
      "          'proclaim': 1,\n",
      "          'innocence': 1,\n",
      "          'vow': 1,\n",
      "          'soon': 1,\n",
      "          'became': 1,\n",
      "          'shrill': 1,\n",
      "          'cry': 1,\n",
      "          'nif': 1,\n",
      "          'catch': 1,\n",
      "          'mad': 1,\n",
      "          'dog': 1,\n",
      "          'morgan': 1,\n",
      "          '76': 1,\n",
      "          'truer': 1,\n",
      "          'daring': 1,\n",
      "          'version': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'giving': 1,\n",
      "          'characterization': 1,\n",
      "          'madness': 1,\n",
      "          'something': 1,\n",
      "          'could': 1,\n",
      "          'hohum': 1,\n",
      "          'manner': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nit': 7,\n",
      "          'fails': 5,\n",
      "          'movie': 3,\n",
      "          'ni': 3,\n",
      "          'get': 2,\n",
      "          'making': 2,\n",
      "          'would': 2,\n",
      "          'premise': 2,\n",
      "          'suceeds': 2,\n",
      "          'laughing': 2,\n",
      "          'sight': 2,\n",
      "          'trying': 2,\n",
      "          'funny': 2,\n",
      "          'stupid': 2,\n",
      "          'best': 2,\n",
      "          'make': 2,\n",
      "          'people': 2,\n",
      "          'go': 2,\n",
      "          'insane': 2,\n",
      "          'think': 1,\n",
      "          'responsible': 1,\n",
      "          'citizens': 1,\n",
      "          'together': 1,\n",
      "          'stop': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'another': 1,\n",
      "          'nhes': 1,\n",
      "          'changing': 1,\n",
      "          'cinema': 1,\n",
      "          'know': 1,\n",
      "          'itand': 1,\n",
      "          'worst': 1,\n",
      "          'willingly': 1,\n",
      "          'rewatch': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'rather': 1,\n",
      "          'sit': 1,\n",
      "          'miserable': 1,\n",
      "          'collection': 1,\n",
      "          'filmic': 1,\n",
      "          'momentsprologues': 1,\n",
      "          'epilogues': 1,\n",
      "          'etc': 1,\n",
      "          'lawyer': 1,\n",
      "          'cant': 1,\n",
      "          'lie': 1,\n",
      "          'day': 1,\n",
      "          'nho': 1,\n",
      "          'ho': 1,\n",
      "          'nnormally': 1,\n",
      "          'made': 1,\n",
      "          'terriblemr': 1,\n",
      "          'ncarrey': 1,\n",
      "          'unwatchable': 1,\n",
      "          'laughed': 1,\n",
      "          'onceand': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'ngrinding': 1,\n",
      "          'doesnt': 1,\n",
      "          'begin': 1,\n",
      "          'describe': 1,\n",
      "          'pounds': 1,\n",
      "          'head': 1,\n",
      "          'forcefully': 1,\n",
      "          'unstoppably': 1,\n",
      "          'normal': 1,\n",
      "          'person': 1,\n",
      "          'leave': 1,\n",
      "          'feeling': 1,\n",
      "          'sick': 1,\n",
      "          'nwhen': 1,\n",
      "          'melodramaticbut': 1,\n",
      "          'annoying': 1,\n",
      "          'sappy': 1,\n",
      "          'nat': 1,\n",
      "          'nthis': 1,\n",
      "          'intended': 1,\n",
      "          'laugh': 1,\n",
      "          'yes': 1,\n",
      "          'voted': 1,\n",
      "          'picture': 1,\n",
      "          'time': 1,\n",
      "          'sound': 1,\n",
      "          'nbut': 1,\n",
      "          'every': 1,\n",
      "          'possible': 1,\n",
      "          'level': 1,\n",
      "          'insightful': 1,\n",
      "          'suspensful': 1,\n",
      "          'fun': 1,\n",
      "          'nthey': 1,\n",
      "          'pay': 1,\n",
      "          'see': 1,\n",
      "          'one': 1,\n",
      "          'levelit': 1,\n",
      "          'makes': 1,\n",
      "          'want': 1,\n",
      "          'ground': 1,\n",
      "          'start': 1,\n",
      "          'thanking': 1,\n",
      "          'orson': 1,\n",
      "          'welles': 1,\n",
      "          'lived': 1,\n",
      "          'nif': 1,\n",
      "          'intention': 1,\n",
      "          'coming': 1,\n",
      "          'alive': 1,\n",
      "          'please': 1,\n",
      "          'sure': 1,\n",
      "          'overly': 1,\n",
      "          'fond': 1,\n",
      "          'boob': 1,\n",
      "          'fart': 1,\n",
      "          'pimple': 1,\n",
      "          'fat': 1,\n",
      "          'jokesotherwise': 1,\n",
      "          'nyes': 1,\n",
      "          'literally': 1,\n",
      "          'nstark': 1,\n",
      "          'raving': 1,\n",
      "          'mad': 1,\n",
      "          'boring': 1,\n",
      "          'melodramatic': 1,\n",
      "          'end': 1,\n",
      "          'ugly': 1,\n",
      "          'reccemond': 1,\n",
      "          'strongly': 1,\n",
      "          'nto': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'given': 8,\n",
      "          'city': 7,\n",
      "          'noir': 6,\n",
      "          'plot': 6,\n",
      "          'nthe': 6,\n",
      "          'go': 4,\n",
      "          'get': 4,\n",
      "          'man': 4,\n",
      "          'us': 4,\n",
      "          'anything': 4,\n",
      "          'dark': 3,\n",
      "          'ni': 3,\n",
      "          'film': 3,\n",
      "          'doesnt': 3,\n",
      "          'way': 3,\n",
      "          'back': 3,\n",
      "          'dont': 3,\n",
      "          'fedoras': 3,\n",
      "          'without': 3,\n",
      "          'life': 3,\n",
      "          'would': 3,\n",
      "          'long': 3,\n",
      "          'getting': 3,\n",
      "          'nits': 3,\n",
      "          'like': 3,\n",
      "          'around': 3,\n",
      "          'nwere': 3,\n",
      "          'aliens': 3,\n",
      "          'thing': 2,\n",
      "          'good': 2,\n",
      "          'say': 2,\n",
      "          'want': 2,\n",
      "          'see': 2,\n",
      "          'hurt': 2,\n",
      "          'real': 2,\n",
      "          'new': 2,\n",
      "          'critics': 2,\n",
      "          'feel': 2,\n",
      "          'worked': 2,\n",
      "          'hard': 2,\n",
      "          'stunning': 2,\n",
      "          'care': 2,\n",
      "          'sense': 2,\n",
      "          'reason': 2,\n",
      "          'sewell': 2,\n",
      "          'doctor': 2,\n",
      "          'well': 2,\n",
      "          'bit': 2,\n",
      "          'going': 2,\n",
      "          'first': 2,\n",
      "          'casablanca': 2,\n",
      "          'thats': 2,\n",
      "          'make': 2,\n",
      "          'powers': 2,\n",
      "          'yet': 2,\n",
      "          'moments': 2,\n",
      "          'nowhere': 2,\n",
      "          'playing': 2,\n",
      "          'isnt': 2,\n",
      "          'one': 2,\n",
      "          'remember': 2,\n",
      "          'tall': 2,\n",
      "          'bald': 2,\n",
      "          'remind': 2,\n",
      "          'theyre': 2,\n",
      "          'evil': 2,\n",
      "          'breathy': 2,\n",
      "          'two': 2,\n",
      "          'ndark': 2,\n",
      "          'intricately': 2,\n",
      "          'best': 1,\n",
      "          'fact': 1,\n",
      "          'made': 1,\n",
      "          'l': 1,\n",
      "          'confidential': 1,\n",
      "          'rent': 1,\n",
      "          'body': 1,\n",
      "          'heat': 1,\n",
      "          'william': 1,\n",
      "          'even': 1,\n",
      "          'god': 1,\n",
      "          'help': 1,\n",
      "          'palmetto': 1,\n",
      "          'nalex': 1,\n",
      "          'proyass': 1,\n",
      "          'screams': 1,\n",
      "          'atmosphere': 1,\n",
      "          'screamed': 1,\n",
      "          'theater': 1,\n",
      "          'nnew': 1,\n",
      "          'line': 1,\n",
      "          'cinema': 1,\n",
      "          'spent': 1,\n",
      "          'millions': 1,\n",
      "          'dollars': 1,\n",
      "          'creating': 1,\n",
      "          'expressionistic': 1,\n",
      "          'visuals': 1,\n",
      "          'paying': 1,\n",
      "          'actors': 1,\n",
      "          'paid': 1,\n",
      "          '4': 1,\n",
      "          '25': 1,\n",
      "          'matinee': 1,\n",
      "          'screening': 1,\n",
      "          'money': 1,\n",
      "          'either': 1,\n",
      "          'nyoull': 1,\n",
      "          'hear': 1,\n",
      "          'lot': 1,\n",
      "          'look': 1,\n",
      "          'admit': 1,\n",
      "          'cinematographers': 1,\n",
      "          'costume': 1,\n",
      "          'designers': 1,\n",
      "          'set': 1,\n",
      "          'artists': 1,\n",
      "          'cgi': 1,\n",
      "          'graphics': 1,\n",
      "          'geeks': 1,\n",
      "          'create': 1,\n",
      "          'nightmarish': 1,\n",
      "          'future': 1,\n",
      "          'world': 1,\n",
      "          'always': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          '1948': 1,\n",
      "          'complete': 1,\n",
      "          'rotary': 1,\n",
      "          'phones': 1,\n",
      "          'automats': 1,\n",
      "          'nive': 1,\n",
      "          'got': 1,\n",
      "          'news': 1,\n",
      "          'fellows': 1,\n",
      "          'visually': 1,\n",
      "          'looks': 1,\n",
      "          'wasted': 1,\n",
      "          'time': 1,\n",
      "          'mine': 1,\n",
      "          'working': 1,\n",
      "          'clear': 1,\n",
      "          'direction': 1,\n",
      "          'wanted': 1,\n",
      "          'soul': 1,\n",
      "          'starts': 1,\n",
      "          'ohsopromising': 1,\n",
      "          'njohn': 1,\n",
      "          'murdoch': 1,\n",
      "          'rufus': 1,\n",
      "          'lying': 1,\n",
      "          'bathtub': 1,\n",
      "          'sort': 1,\n",
      "          'seedy': 1,\n",
      "          'hotel': 1,\n",
      "          'boarded': 1,\n",
      "          'ago': 1,\n",
      "          'nthere': 1,\n",
      "          'dead': 1,\n",
      "          'mutilated': 1,\n",
      "          'prostitute': 1,\n",
      "          'room': 1,\n",
      "          'surprise': 1,\n",
      "          'lost': 1,\n",
      "          'memory': 1,\n",
      "          'phone': 1,\n",
      "          'rings': 1,\n",
      "          'sinistersounding': 1,\n",
      "          'claiming': 1,\n",
      "          'telling': 1,\n",
      "          'flee': 1,\n",
      "          'nall': 1,\n",
      "          'right': 1,\n",
      "          'nwrong': 1,\n",
      "          'napparently': 1,\n",
      "          'someone': 1,\n",
      "          'decided': 1,\n",
      "          'audience': 1,\n",
      "          'dim': 1,\n",
      "          'figure': 1,\n",
      "          'intricacies': 1,\n",
      "          'n': 1,\n",
      "          'popular': 1,\n",
      "          'assumption': 1,\n",
      "          'hollywood': 1,\n",
      "          'nso': 1,\n",
      "          'actual': 1,\n",
      "          'beginning': 1,\n",
      "          'running': 1,\n",
      "          'rather': 1,\n",
      "          'voiceover': 1,\n",
      "          'narration': 1,\n",
      "          'aforementioned': 1,\n",
      "          'keifer': 1,\n",
      "          'sutherland': 1,\n",
      "          'explaining': 1,\n",
      "          'exactly': 1,\n",
      "          'responsible': 1,\n",
      "          'though': 1,\n",
      "          'sam': 1,\n",
      "          'piano': 1,\n",
      "          'player': 1,\n",
      "          'told': 1,\n",
      "          'rick': 1,\n",
      "          'ilsa': 1,\n",
      "          'paris': 1,\n",
      "          'three': 1,\n",
      "          'minutes': 1,\n",
      "          'nno': 1,\n",
      "          'wait': 1,\n",
      "          'fair': 1,\n",
      "          'watching': 1,\n",
      "          'plotline': 1,\n",
      "          'show': 1,\n",
      "          'know': 1,\n",
      "          'really': 1,\n",
      "          'offscreen': 1,\n",
      "          'narrator': 1,\n",
      "          'explain': 1,\n",
      "          'gilligan': 1,\n",
      "          'wont': 1,\n",
      "          'island': 1,\n",
      "          'episode': 1,\n",
      "          'nfrom': 1,\n",
      "          'coherence': 1,\n",
      "          'goes': 1,\n",
      "          'faster': 1,\n",
      "          'insert': 1,\n",
      "          'monica': 1,\n",
      "          'lewinsky': 1,\n",
      "          'joke': 1,\n",
      "          'characters': 1,\n",
      "          'wander': 1,\n",
      "          'aimlessly': 1,\n",
      "          'bump': 1,\n",
      "          'apparent': 1,\n",
      "          'moves': 1,\n",
      "          'nwhat': 1,\n",
      "          'left': 1,\n",
      "          'string': 1,\n",
      "          'unanswered': 1,\n",
      "          'questions': 1,\n",
      "          'unlimited': 1,\n",
      "          'omnipotent': 1,\n",
      "          'forget': 1,\n",
      "          'use': 1,\n",
      "          'critical': 1,\n",
      "          'killed': 1,\n",
      "          'hero': 1,\n",
      "          'tune': 1,\n",
      "          'uses': 1,\n",
      "          'convenient': 1,\n",
      "          'whole': 1,\n",
      "          'list': 1,\n",
      "          'loose': 1,\n",
      "          'ends': 1,\n",
      "          'nusually': 1,\n",
      "          'actor': 1,\n",
      "          'underwritten': 1,\n",
      "          'part': 1,\n",
      "          'much': 1,\n",
      "          'nin': 1,\n",
      "          'nsewell': 1,\n",
      "          'impossible': 1,\n",
      "          'role': 1,\n",
      "          'plays': 1,\n",
      "          'num': 1,\n",
      "          'na': 1,\n",
      "          'pastyfaced': 1,\n",
      "          'wear': 1,\n",
      "          'black': 1,\n",
      "          'cloaks': 1,\n",
      "          'theres': 1,\n",
      "          'child': 1,\n",
      "          'alien': 1,\n",
      "          'straight': 1,\n",
      "          'anne': 1,\n",
      "          'rice': 1,\n",
      "          'novel': 1,\n",
      "          'nsutherland': 1,\n",
      "          'saddled': 1,\n",
      "          'limp': 1,\n",
      "          'twitchy': 1,\n",
      "          'eye': 1,\n",
      "          'accent': 1,\n",
      "          'hes': 1,\n",
      "          'league': 1,\n",
      "          'nto': 1,\n",
      "          'credit': 1,\n",
      "          'boasts': 1,\n",
      "          'impressive': 1,\n",
      "          'bits': 1,\n",
      "          'casting': 1,\n",
      "          'nwilliam': 1,\n",
      "          'perfectly': 1,\n",
      "          'cast': 1,\n",
      "          'worldweary': 1,\n",
      "          'inspector': 1,\n",
      "          'charged': 1,\n",
      "          'catching': 1,\n",
      "          'murdering': 1,\n",
      "          'prostitutes': 1,\n",
      "          'njennifer': 1,\n",
      "          'connelly': 1,\n",
      "          'sewells': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'alltoobrief': 1,\n",
      "          'screen': 1,\n",
      "          'lounge': 1,\n",
      "          'singer': 1,\n",
      "          'turns': 1,\n",
      "          'sexiest': 1,\n",
      "          'performace': 1,\n",
      "          'side': 1,\n",
      "          'jessica': 1,\n",
      "          'rabbit': 1,\n",
      "          'nbut': 1,\n",
      "          'instead': 1,\n",
      "          'dogged': 1,\n",
      "          'policeman': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'central': 1,\n",
      "          'treatment': 1,\n",
      "          'script': 1,\n",
      "          'selfrespecting': 1,\n",
      "          'almost': 1,\n",
      "          'tangiential': 1,\n",
      "          'problem': 1,\n",
      "          'bad': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'pretending': 1,\n",
      "          'essence': 1,\n",
      "          'proyas': 1,\n",
      "          'seems': 1,\n",
      "          'beleive': 1,\n",
      "          'dialogue': 1,\n",
      "          'snapbrim': 1,\n",
      "          'villains': 1,\n",
      "          'peter': 1,\n",
      "          'lorre': 1,\n",
      "          'curl': 1,\n",
      "          'corner': 1,\n",
      "          'intrigue': 1,\n",
      "          'moral': 1,\n",
      "          'ambiguity': 1,\n",
      "          'suspense': 1,\n",
      "          'else': 1,\n",
      "          'keeps': 1,\n",
      "          'coming': 1,\n",
      "          'classics': 1,\n",
      "          'carved': 1,\n",
      "          'door': 1,\n",
      "          'kate': 1,\n",
      "          'winslet': 1,\n",
      "          'floats': 1,\n",
      "          'titanic': 1,\n",
      "          'exceptionlly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wellmade': 1,\n",
      "          'designed': 1,\n",
      "          'piece': 1,\n",
      "          'flotsam': 1,\n",
      "          'sailing': 1,\n",
      "          'middle': 1,\n",
      "          'ocean': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'help': 5,\n",
      "          'movie': 3,\n",
      "          'good': 3,\n",
      "          'least': 3,\n",
      "          'always': 2,\n",
      "          'first': 2,\n",
      "          'howie': 2,\n",
      "          'action': 2,\n",
      "          'bad': 2,\n",
      "          'could': 2,\n",
      "          'isnt': 2,\n",
      "          'film': 2,\n",
      "          'parachutes': 2,\n",
      "          'forest': 2,\n",
      "          'ground': 2,\n",
      "          'nin': 2,\n",
      "          'scott': 2,\n",
      "          'glenn': 2,\n",
      "          'plays': 2,\n",
      "          'get': 2,\n",
      "          'blaze': 2,\n",
      "          'escape': 2,\n",
      "          'canadian': 2,\n",
      "          'pretty': 2,\n",
      "          'amis': 2,\n",
      "          'hostage': 2,\n",
      "          'nlongs': 2,\n",
      "          'talents': 2,\n",
      "          'much': 2,\n",
      "          'nthe': 2,\n",
      "          'doesnt': 2,\n",
      "          'cold': 2,\n",
      "          'case': 2,\n",
      "          'interesting': 2,\n",
      "          'think': 2,\n",
      "          'careful': 1,\n",
      "          'official': 1,\n",
      "          'studio': 1,\n",
      "          'release': 1,\n",
      "          'gate': 1,\n",
      "          'year': 1,\n",
      "          'ntheyre': 1,\n",
      "          'obviously': 1,\n",
      "          'films': 1,\n",
      "          'studios': 1,\n",
      "          'great': 1,\n",
      "          'hopes': 1,\n",
      "          'missed': 1,\n",
      "          'deadline': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'eligibility': 1,\n",
      "          'big': 1,\n",
      "          'boxoffice': 1,\n",
      "          'holiday': 1,\n",
      "          'season': 1,\n",
      "          'ncombine': 1,\n",
      "          'longs': 1,\n",
      "          'starring': 1,\n",
      "          'role': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'doozy': 1,\n",
      "          'nhowie': 1,\n",
      "          'stars': 1,\n",
      "          'ace': 1,\n",
      "          'smokejumper': 1,\n",
      "          'firefighter': 1,\n",
      "          'fires': 1,\n",
      "          'unreachable': 1,\n",
      "          'slightly': 1,\n",
      "          'contrived': 1,\n",
      "          'opening': 1,\n",
      "          'scenes': 1,\n",
      "          'witness': 1,\n",
      "          'heroism': 1,\n",
      "          'mentor': 1,\n",
      "          'played': 1,\n",
      "          'attempt': 1,\n",
      "          'rescue': 1,\n",
      "          'small': 1,\n",
      "          'girl': 1,\n",
      "          'dog': 1,\n",
      "          'oncoming': 1,\n",
      "          'fire': 1,\n",
      "          'nwilliam': 1,\n",
      "          'forsythe': 1,\n",
      "          'guy': 1,\n",
      "          'mass': 1,\n",
      "          'murderer': 1,\n",
      "          'several': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'tucked': 1,\n",
      "          'away': 1,\n",
      "          'fund': 1,\n",
      "          'jailbreak': 1,\n",
      "          'nhe': 1,\n",
      "          'five': 1,\n",
      "          'convict': 1,\n",
      "          'cohorts': 1,\n",
      "          'manages': 1,\n",
      "          'selected': 1,\n",
      "          'firefighting': 1,\n",
      "          'duty': 1,\n",
      "          'woodland': 1,\n",
      "          'happens': 1,\n",
      "          'ignite': 1,\n",
      "          'nearby': 1,\n",
      "          'nhis': 1,\n",
      "          'plan': 1,\n",
      "          'bets': 1,\n",
      "          'lot': 1,\n",
      "          'laxity': 1,\n",
      "          'guards': 1,\n",
      "          'since': 1,\n",
      "          'must': 1,\n",
      "          'luck': 1,\n",
      "          'nsoon': 1,\n",
      "          'nowescaped': 1,\n",
      "          'convicts': 1,\n",
      "          'masquerading': 1,\n",
      "          'firefighters': 1,\n",
      "          'nwhy': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'eh': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'pick': 1,\n",
      "          'birdwatcher': 1,\n",
      "          'suzy': 1,\n",
      "          'nenter': 1,\n",
      "          'long': 1,\n",
      "          'nhes': 1,\n",
      "          'called': 1,\n",
      "          'fight': 1,\n",
      "          'spots': 1,\n",
      "          'group': 1,\n",
      "          'pounders': 1,\n",
      "          'apparently': 1,\n",
      "          'lost': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'true': 1,\n",
      "          'identity': 1,\n",
      "          'thing': 1,\n",
      "          'standing': 1,\n",
      "          'hope': 1,\n",
      "          'acting': 1,\n",
      "          'say': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'nalthough': 1,\n",
      "          'delivery': 1,\n",
      "          'mostly': 1,\n",
      "          'flat': 1,\n",
      "          'wooden': 1,\n",
      "          'hes': 1,\n",
      "          'likeable': 1,\n",
      "          'hero': 1,\n",
      "          'hints': 1,\n",
      "          'may': 1,\n",
      "          'better': 1,\n",
      "          'script': 1,\n",
      "          'however': 1,\n",
      "          'nall': 1,\n",
      "          'often': 1,\n",
      "          'veers': 1,\n",
      "          'realm': 1,\n",
      "          'unintentionally': 1,\n",
      "          'funny': 1,\n",
      "          'dialogue': 1,\n",
      "          'strictly': 1,\n",
      "          'bmovie': 1,\n",
      "          'material': 1,\n",
      "          'plotting': 1,\n",
      "          'relies': 1,\n",
      "          'heavily': 1,\n",
      "          'coincidences': 1,\n",
      "          'believable': 1,\n",
      "          'costars': 1,\n",
      "          'mixed': 1,\n",
      "          'bag': 1,\n",
      "          'nat': 1,\n",
      "          'theyre': 1,\n",
      "          'comfortable': 1,\n",
      "          'respective': 1,\n",
      "          'roles': 1,\n",
      "          'nforsythe': 1,\n",
      "          'scenerychewing': 1,\n",
      "          'villain': 1,\n",
      "          'enjoyable': 1,\n",
      "          'watch': 1,\n",
      "          'even': 1,\n",
      "          'seem': 1,\n",
      "          'stretching': 1,\n",
      "          'definitely': 1,\n",
      "          'nsuzy': 1,\n",
      "          'peril': 1,\n",
      "          'well': 1,\n",
      "          'given': 1,\n",
      "          'nsome': 1,\n",
      "          'nature': 1,\n",
      "          'wildfire': 1,\n",
      "          'shots': 1,\n",
      "          'many': 1,\n",
      "          'rather': 1,\n",
      "          'bland': 1,\n",
      "          'nyoud': 1,\n",
      "          'director': 1,\n",
      "          'dean': 1,\n",
      "          'semler': 1,\n",
      "          'former': 1,\n",
      "          'cinematographer': 1,\n",
      "          'would': 1,\n",
      "          'produce': 1,\n",
      "          'visuals': 1,\n",
      "          'nthats': 1,\n",
      "          'ntheres': 1,\n",
      "          'lack': 1,\n",
      "          'originality': 1,\n",
      "          'nearly': 1,\n",
      "          'sequences': 1,\n",
      "          'weve': 1,\n",
      "          'nseen': 1,\n",
      "          'stuff': 1,\n",
      "          'nits': 1,\n",
      "          'auspicious': 1,\n",
      "          'start': 1,\n",
      "          '1998': 1,\n",
      "          'worse': 1,\n",
      "          'back': 1,\n",
      "          '1996s': 1,\n",
      "          'debut': 1,\n",
      "          'biodome': 1,\n",
      "          'nhowever': 1,\n",
      "          'month': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'pictures': 1,\n",
      "          'like': 1,\n",
      "          'firestorm': 1,\n",
      "          'gives': 1,\n",
      "          'perspective': 1,\n",
      "          'movies': 1,\n",
      "          'really': 1,\n",
      "          'fact': 1,\n",
      "          'theres': 1,\n",
      "          'chance': 1,\n",
      "          'still': 1,\n",
      "          'playing': 1,\n",
      "          'near': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'diedre': 8,\n",
      "          'ex': 7,\n",
      "          'david': 6,\n",
      "          'time': 6,\n",
      "          'like': 6,\n",
      "          'nthe': 5,\n",
      "          'wife': 4,\n",
      "          'shes': 4,\n",
      "          'son': 4,\n",
      "          'ni': 4,\n",
      "          'however': 4,\n",
      "          'one': 4,\n",
      "          'many': 4,\n",
      "          'though': 4,\n",
      "          'kills': 4,\n",
      "          'film': 4,\n",
      "          'ndiedre': 3,\n",
      "          'davids': 3,\n",
      "          'new': 3,\n",
      "          'molly': 3,\n",
      "          'bad': 3,\n",
      "          'turkey': 3,\n",
      "          'humor': 3,\n",
      "          'two': 3,\n",
      "          'type': 3,\n",
      "          '000': 3,\n",
      "          'come': 3,\n",
      "          'nmolly': 3,\n",
      "          'woman': 3,\n",
      "          'nif': 3,\n",
      "          'audience': 3,\n",
      "          'character': 3,\n",
      "          'apartment': 3,\n",
      "          'groan': 3,\n",
      "          'synopsis': 2,\n",
      "          'chainsmoking': 2,\n",
      "          'first': 2,\n",
      "          'easily': 2,\n",
      "          'believing': 2,\n",
      "          'child': 2,\n",
      "          'psychologist': 2,\n",
      "          'michael': 2,\n",
      "          'murders': 2,\n",
      "          'people': 2,\n",
      "          'three': 2,\n",
      "          'stars': 2,\n",
      "          'another': 2,\n",
      "          'nim': 2,\n",
      "          'films': 2,\n",
      "          'use': 2,\n",
      "          'storyline': 2,\n",
      "          'cliches': 2,\n",
      "          'doesnt': 2,\n",
      "          'theyre': 2,\n",
      "          'turn': 2,\n",
      "          'hammy': 2,\n",
      "          'performances': 2,\n",
      "          'dialogue': 2,\n",
      "          'said': 2,\n",
      "          'plot': 2,\n",
      "          'viewer': 2,\n",
      "          'accept': 2,\n",
      "          'example': 2,\n",
      "          'scene': 2,\n",
      "          'specifically': 2,\n",
      "          'never': 2,\n",
      "          'every': 2,\n",
      "          'spend': 2,\n",
      "          'cant': 2,\n",
      "          'probably': 2,\n",
      "          'better': 2,\n",
      "          'necessarily': 2,\n",
      "          'lines': 2,\n",
      "          'thats': 2,\n",
      "          'wishes': 2,\n",
      "          'spy': 2,\n",
      "          'sorry': 2,\n",
      "          'therapist': 2,\n",
      "          'n': 2,\n",
      "          'movies': 2,\n",
      "          'watching': 2,\n",
      "          'nin': 2,\n",
      "          'ending': 2,\n",
      "          'across': 2,\n",
      "          'crazy': 2,\n",
      "          'easilyangered': 1,\n",
      "          'architect': 1,\n",
      "          'encounters': 1,\n",
      "          'homicidal': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'divorce': 1,\n",
      "          'cons': 1,\n",
      "          'notsobright': 1,\n",
      "          'influence': 1,\n",
      "          'quicktempered': 1,\n",
      "          'bunch': 1,\n",
      "          'ncomments': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'magnitude': 1,\n",
      "          'quite': 1,\n",
      "          'kept': 1,\n",
      "          'vacillating': 1,\n",
      "          'giving': 1,\n",
      "          'star': 1,\n",
      "          'sheer': 1,\n",
      "          'awfulness': 1,\n",
      "          'campy': 1,\n",
      "          'ultimately': 1,\n",
      "          'decided': 1,\n",
      "          'split': 1,\n",
      "          'difference': 1,\n",
      "          'give': 1,\n",
      "          'nas': 1,\n",
      "          'summarized': 1,\n",
      "          'briefly': 1,\n",
      "          'yet': 1,\n",
      "          'spurnedpsycholovergetsherrevenge': 1,\n",
      "          'sure': 1,\n",
      "          'produced': 1,\n",
      "          'since': 1,\n",
      "          'fatal': 1,\n",
      "          'attraction': 1,\n",
      "          'tired': 1,\n",
      "          'seems': 1,\n",
      "          '10': 1,\n",
      "          'following': 1,\n",
      "          'standard': 1,\n",
      "          'thriller': 1,\n",
      "          'subgenre': 1,\n",
      "          'differs': 1,\n",
      "          'slightly': 1,\n",
      "          'norm': 1,\n",
      "          'least': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'duds': 1,\n",
      "          'malicious': 1,\n",
      "          'stalked': 1,\n",
      "          'examples': 1,\n",
      "          'mind': 1,\n",
      "          'nthose': 1,\n",
      "          'involved': 1,\n",
      "          'realize': 1,\n",
      "          'apparently': 1,\n",
      "          'compliment': 1,\n",
      "          'ludicrous': 1,\n",
      "          'contained': 1,\n",
      "          'within': 1,\n",
      "          'script': 1,\n",
      "          'exs': 1,\n",
      "          'incorporates': 1,\n",
      "          'predominant': 1,\n",
      "          'nature': 1,\n",
      "          'overwrought': 1,\n",
      "          'unbelievable': 1,\n",
      "          'must': 1,\n",
      "          'logic': 1,\n",
      "          'operate': 1,\n",
      "          'realm': 1,\n",
      "          'without': 1,\n",
      "          'ever': 1,\n",
      "          'worry': 1,\n",
      "          'police': 1,\n",
      "          'investigations': 1,\n",
      "          'bright': 1,\n",
      "          'enough': 1,\n",
      "          'leave': 1,\n",
      "          'fingerprints': 1,\n",
      "          'crime': 1,\n",
      "          'ndavid': 1,\n",
      "          'incredibly': 1,\n",
      "          'difficult': 1,\n",
      "          'understanding': 1,\n",
      "          'emotional': 1,\n",
      "          'problems': 1,\n",
      "          'inability': 1,\n",
      "          'control': 1,\n",
      "          'anger': 1,\n",
      "          'nthough': 1,\n",
      "          'smokes': 1,\n",
      "          'tomorrow': 1,\n",
      "          'blows': 1,\n",
      "          'minute': 1,\n",
      "          'connection': 1,\n",
      "          'made': 1,\n",
      "          'swayed': 1,\n",
      "          'allows': 1,\n",
      "          'demented': 1,\n",
      "          'ntime': 1,\n",
      "          'things': 1,\n",
      "          'add': 1,\n",
      "          'fact': 1,\n",
      "          'definately': 1,\n",
      "          'hand': 1,\n",
      "          'appreciate': 1,\n",
      "          'campiness': 1,\n",
      "          'hell': 1,\n",
      "          'much': 1,\n",
      "          'dont': 1,\n",
      "          'mean': 1,\n",
      "          'suggest': 1,\n",
      "          'memorable': 1,\n",
      "          'exercise': 1,\n",
      "          'camp': 1,\n",
      "          'neven': 1,\n",
      "          'viewed': 1,\n",
      "          'itssobaditsgood': 1,\n",
      "          'angle': 1,\n",
      "          'isnt': 1,\n",
      "          'successful': 1,\n",
      "          'moments': 1,\n",
      "          'almost': 1,\n",
      "          'involve': 1,\n",
      "          'yancy': 1,\n",
      "          'butler': 1,\n",
      "          'psychotic': 1,\n",
      "          'nick': 1,\n",
      "          'mancuso': 1,\n",
      "          'nthese': 1,\n",
      "          'actors': 1,\n",
      "          'decidedly': 1,\n",
      "          'oftentimes': 1,\n",
      "          'elicit': 1,\n",
      "          'chuckles': 1,\n",
      "          'truly': 1,\n",
      "          'awful': 1,\n",
      "          'written': 1,\n",
      "          'help': 1,\n",
      "          'along': 1,\n",
      "          'nbutler': 1,\n",
      "          'gets': 1,\n",
      "          'larger': 1,\n",
      "          'portion': 1,\n",
      "          'someone': 1,\n",
      "          'punchline': 1,\n",
      "          'unbelievably': 1,\n",
      "          'inane': 1,\n",
      "          'nwhen': 1,\n",
      "          'tenant': 1,\n",
      "          'whacks': 1,\n",
      "          'elderly': 1,\n",
      "          'lady': 1,\n",
      "          'crowbar': 1,\n",
      "          'states': 1,\n",
      "          'im': 1,\n",
      "          'lease': 1,\n",
      "          'terminated': 1,\n",
      "          'takes': 1,\n",
      "          'ridiculous': 1,\n",
      "          'diedres': 1,\n",
      "          'recommitted': 1,\n",
      "          'decides': 1,\n",
      "          'visit': 1,\n",
      "          'alone': 1,\n",
      "          'realizing': 1,\n",
      "          'course': 1,\n",
      "          'ntherapists': 1,\n",
      "          'typically': 1,\n",
      "          'catatonically': 1,\n",
      "          'braindead': 1,\n",
      "          'nhaving': 1,\n",
      "          'successfully': 1,\n",
      "          'snuffed': 1,\n",
      "          'looks': 1,\n",
      "          'body': 1,\n",
      "          'says': 1,\n",
      "          'always': 1,\n",
      "          'end': 1,\n",
      "          'session': 1,\n",
      "          'dr': 1,\n",
      "          'jones': 1,\n",
      "          'noh': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'passes': 1,\n",
      "          'laugh': 1,\n",
      "          'suggests': 1,\n",
      "          'believe': 1,\n",
      "          'crap': 1,\n",
      "          'although': 1,\n",
      "          'nnick': 1,\n",
      "          'mancusos': 1,\n",
      "          'nervouswreck': 1,\n",
      "          'cheesy': 1,\n",
      "          'butlers': 1,\n",
      "          'delivers': 1,\n",
      "          'ridiculously': 1,\n",
      "          'overdone': 1,\n",
      "          'performance': 1,\n",
      "          'provides': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'drags': 1,\n",
      "          'cigarette': 1,\n",
      "          'instance': 1,\n",
      "          'best': 1,\n",
      "          'scenes': 1,\n",
      "          'tries': 1,\n",
      "          'explain': 1,\n",
      "          'lawyer': 1,\n",
      "          'creep': 1,\n",
      "          'exwife': 1,\n",
      "          'exaggerated': 1,\n",
      "          'exasperation': 1,\n",
      "          'nearly': 1,\n",
      "          'shouts': 1,\n",
      "          'cuckoobird': 1,\n",
      "          'trust': 1,\n",
      "          'funny': 1,\n",
      "          'context': 1,\n",
      "          'nand': 1,\n",
      "          'continues': 1,\n",
      "          'painfully': 1,\n",
      "          'obvious': 1,\n",
      "          'conclusion': 1,\n",
      "          'wont': 1,\n",
      "          'reveal': 1,\n",
      "          'anyone': 1,\n",
      "          'remotely': 1,\n",
      "          'familiar': 1,\n",
      "          'thrillers': 1,\n",
      "          'could': 1,\n",
      "          'guess': 1,\n",
      "          'review': 1,\n",
      "          'say': 1,\n",
      "          'biggest': 1,\n",
      "          'fire': 1,\n",
      "          'hazards': 1,\n",
      "          'appearing': 1,\n",
      "          'recently': 1,\n",
      "          'cabin': 1,\n",
      "          'becomes': 1,\n",
      "          'engulfed': 1,\n",
      "          'flames': 1,\n",
      "          'approximately': 1,\n",
      "          'seconds': 1,\n",
      "          'point': 1,\n",
      "          'notsobrilliantly': 1,\n",
      "          'observes': 1,\n",
      "          'discovering': 1,\n",
      "          'moved': 1,\n",
      "          'familys': 1,\n",
      "          'upon': 1,\n",
      "          'nyoud': 1,\n",
      "          'pretty': 1,\n",
      "          'youd': 1,\n",
      "          'rented': 1,\n",
      "          'nid': 1,\n",
      "          'avoid': 1,\n",
      "          'unless': 1,\n",
      "          'tv': 1,\n",
      "          'may': 1,\n",
      "          'want': 1,\n",
      "          'watch': 1,\n",
      "          'punchlines': 1,\n",
      "          'stupid': 1,\n",
      "          'feel': 1,\n",
      "          'good': 1,\n",
      "          'didnt': 1,\n",
      "          'money': 1,\n",
      "          'renting': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 12,\n",
      "          'first': 7,\n",
      "          'blues': 6,\n",
      "          'music': 6,\n",
      "          'original': 6,\n",
      "          'band': 6,\n",
      "          'brothers': 4,\n",
      "          'movie': 4,\n",
      "          'packed': 3,\n",
      "          'sequel': 3,\n",
      "          'john': 3,\n",
      "          'nthe': 3,\n",
      "          'new': 3,\n",
      "          'characters': 3,\n",
      "          'theres': 3,\n",
      "          'time': 3,\n",
      "          'role': 3,\n",
      "          'country': 3,\n",
      "          'much': 3,\n",
      "          'comedy': 2,\n",
      "          'nit': 2,\n",
      "          'belushis': 2,\n",
      "          'eighteen': 2,\n",
      "          'years': 2,\n",
      "          'finally': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'one': 2,\n",
      "          'nelwood': 2,\n",
      "          'aykroyd': 2,\n",
      "          'getting': 2,\n",
      "          'nas': 2,\n",
      "          'mother': 2,\n",
      "          'stigmata': 2,\n",
      "          'njohn': 2,\n",
      "          'although': 2,\n",
      "          'fill': 2,\n",
      "          'morton': 2,\n",
      "          'cab': 2,\n",
      "          'mighty': 2,\n",
      "          'mack': 2,\n",
      "          'goodman': 2,\n",
      "          'bonifant': 2,\n",
      "          'orphan': 2,\n",
      "          'elwood': 2,\n",
      "          'police': 2,\n",
      "          'nin': 2,\n",
      "          'plot': 2,\n",
      "          'performance': 2,\n",
      "          'like': 2,\n",
      "          'ntheres': 2,\n",
      "          'even': 2,\n",
      "          'reverend': 2,\n",
      "          'cleophus': 2,\n",
      "          'prison': 2,\n",
      "          'appearance': 2,\n",
      "          'stars': 2,\n",
      "          'yet': 2,\n",
      "          'character': 2,\n",
      "          'nand': 2,\n",
      "          'wonderful': 1,\n",
      "          'hilarious': 1,\n",
      "          'good': 1,\n",
      "          'cried': 1,\n",
      "          'untimely': 1,\n",
      "          'death': 1,\n",
      "          'seemed': 1,\n",
      "          'eliminate': 1,\n",
      "          'idea': 1,\n",
      "          'nhowever': 1,\n",
      "          'passed': 1,\n",
      "          'long': 1,\n",
      "          'dormant': 1,\n",
      "          'emerged': 1,\n",
      "          'worthy': 1,\n",
      "          'starts': 1,\n",
      "          'exactly': 1,\n",
      "          'ended': 1,\n",
      "          'dan': 1,\n",
      "          'jail': 1,\n",
      "          'brother': 1,\n",
      "          'jake': 1,\n",
      "          'recently': 1,\n",
      "          'died': 1,\n",
      "          'visits': 1,\n",
      "          'mary': 1,\n",
      "          'kathleen': 1,\n",
      "          'freeman': 1,\n",
      "          'sets': 1,\n",
      "          'back': 1,\n",
      "          'together': 1,\n",
      "          'absence': 1,\n",
      "          'leaves': 1,\n",
      "          'terrible': 1,\n",
      "          'hole': 1,\n",
      "          'three': 1,\n",
      "          'created': 1,\n",
      "          'void': 1,\n",
      "          'still': 1,\n",
      "          'noticeable': 1,\n",
      "          'nfirst': 1,\n",
      "          'cabel': 1,\n",
      "          'joe': 1,\n",
      "          'illegitimate': 1,\n",
      "          'son': 1,\n",
      "          'elwoods': 1,\n",
      "          'stepfather': 1,\n",
      "          'played': 1,\n",
      "          'calloway': 1,\n",
      "          'ncabel': 1,\n",
      "          'reluctant': 1,\n",
      "          'join': 1,\n",
      "          'destiny': 1,\n",
      "          'spends': 1,\n",
      "          'illinois': 1,\n",
      "          'sheriff': 1,\n",
      "          'chasing': 1,\n",
      "          'nnext': 1,\n",
      "          'bartender': 1,\n",
      "          'becomes': 1,\n",
      "          'lead': 1,\n",
      "          'singer': 1,\n",
      "          'nfinally': 1,\n",
      "          'buster': 1,\n",
      "          'j': 1,\n",
      "          'nevan': 1,\n",
      "          'ten': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'tags': 1,\n",
      "          'along': 1,\n",
      "          'eventually': 1,\n",
      "          'joins': 1,\n",
      "          'plotting': 1,\n",
      "          'hardly': 1,\n",
      "          'nseems': 1,\n",
      "          'almost': 1,\n",
      "          'clone': 1,\n",
      "          'go': 1,\n",
      "          'reluctantly': 1,\n",
      "          'retrieve': 1,\n",
      "          'member': 1,\n",
      "          'travel': 1,\n",
      "          'pursued': 1,\n",
      "          'perform': 1,\n",
      "          'several': 1,\n",
      "          'odd': 1,\n",
      "          'stops': 1,\n",
      "          'reach': 1,\n",
      "          'big': 1,\n",
      "          'concert': 1,\n",
      "          'finale': 1,\n",
      "          'neonazis': 1,\n",
      "          'random': 1,\n",
      "          'element': 1,\n",
      "          'around': 1,\n",
      "          'russian': 1,\n",
      "          'mafia': 1,\n",
      "          'militia': 1,\n",
      "          'group': 1,\n",
      "          'fact': 1,\n",
      "          'duplication': 1,\n",
      "          'ridiculously': 1,\n",
      "          'complete': 1,\n",
      "          'certain': 1,\n",
      "          'scenes': 1,\n",
      "          'practically': 1,\n",
      "          'identical': 1,\n",
      "          'nremember': 1,\n",
      "          'classic': 1,\n",
      "          'bobs': 1,\n",
      "          'types': 1,\n",
      "          'western': 1,\n",
      "          'nwell': 1,\n",
      "          'fair': 1,\n",
      "          'expected': 1,\n",
      "          'play': 1,\n",
      "          'bluegrass': 1,\n",
      "          'massive': 1,\n",
      "          'car': 1,\n",
      "          'pileup': 1,\n",
      "          'gag': 1,\n",
      "          'falls': 1,\n",
      "          'completely': 1,\n",
      "          'flat': 1,\n",
      "          'exact': 1,\n",
      "          'replica': 1,\n",
      "          'conversion': 1,\n",
      "          'scene': 1,\n",
      "          'church': 1,\n",
      "          'james': 1,\n",
      "          'brown': 1,\n",
      "          'nthere': 1,\n",
      "          'plenty': 1,\n",
      "          'recurring': 1,\n",
      "          'addition': 1,\n",
      "          'aretha': 1,\n",
      "          'franklin': 1,\n",
      "          'reprises': 1,\n",
      "          'mrs': 1,\n",
      "          'murphy': 1,\n",
      "          'nfrank': 1,\n",
      "          'oz': 1,\n",
      "          'guard': 1,\n",
      "          'makes': 1,\n",
      "          'warden': 1,\n",
      "          'dont': 1,\n",
      "          'live': 1,\n",
      "          'legacy': 1,\n",
      "          'naykroyd': 1,\n",
      "          'loquacious': 1,\n",
      "          'flatter': 1,\n",
      "          'barely': 1,\n",
      "          'njoe': 1,\n",
      "          'deepest': 1,\n",
      "          'terribly': 1,\n",
      "          'interesting': 1,\n",
      "          'whats': 1,\n",
      "          'deal': 1,\n",
      "          'plays': 1,\n",
      "          'desperate': 1,\n",
      "          'gimmick': 1,\n",
      "          'doesnt': 1,\n",
      "          'mesh': 1,\n",
      "          'rest': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'isnt': 1,\n",
      "          'precocious': 1,\n",
      "          'could': 1,\n",
      "          'nbut': 1,\n",
      "          'true': 1,\n",
      "          'star': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'ending': 1,\n",
      "          'credits': 1,\n",
      "          'nalthough': 1,\n",
      "          'brilliant': 1,\n",
      "          'mergers': 1,\n",
      "          'song': 1,\n",
      "          'originals': 1,\n",
      "          'rawhidestand': 1,\n",
      "          'man': 1,\n",
      "          'medley': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nto': 1,\n",
      "          'top': 1,\n",
      "          'gills': 1,\n",
      "          'cameo': 1,\n",
      "          'musician': 1,\n",
      "          'appearances': 1,\n",
      "          'nb': 1,\n",
      "          'b': 1,\n",
      "          'king': 1,\n",
      "          'traveler': 1,\n",
      "          'eric': 1,\n",
      "          'clapton': 1,\n",
      "          'travis': 1,\n",
      "          'tritt': 1,\n",
      "          'wilson': 1,\n",
      "          'pickett': 1,\n",
      "          'erykah': 1,\n",
      "          'badu': 1,\n",
      "          'bo': 1,\n",
      "          'diddley': 1,\n",
      "          'steve': 1,\n",
      "          'winwood': 1,\n",
      "          'sampling': 1,\n",
      "          'multitude': 1,\n",
      "          'make': 1,\n",
      "          'pauses': 1,\n",
      "          'allow': 1,\n",
      "          'familiar': 1,\n",
      "          'nif': 1,\n",
      "          'simply': 1,\n",
      "          'copying': 1,\n",
      "          'wasnt': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'writers': 1,\n",
      "          'landis': 1,\n",
      "          'dumb': 1,\n",
      "          'removing': 1,\n",
      "          'memorable': 1,\n",
      "          'replacing': 1,\n",
      "          'flashy': 1,\n",
      "          'unbelievable': 1,\n",
      "          'magical': 1,\n",
      "          'gimmicks': 1,\n",
      "          'nits': 1,\n",
      "          'shame': 1,\n",
      "          'nbuy': 1,\n",
      "          'soundtrack': 1,\n",
      "          'avoid': 1,\n",
      "          'nbetter': 1,\n",
      "          'rewatch': 1,\n",
      "          'youll': 1,\n",
      "          'nhave': 1,\n",
      "          'better': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'actors': 8,\n",
      "          'nthe': 6,\n",
      "          'science': 5,\n",
      "          'fiction': 5,\n",
      "          'novel': 4,\n",
      "          'good': 4,\n",
      "          'really': 4,\n",
      "          'alien': 4,\n",
      "          'team': 4,\n",
      "          'effects': 4,\n",
      "          'crichton': 3,\n",
      "          'adaptation': 3,\n",
      "          'nit': 3,\n",
      "          'much': 3,\n",
      "          '4': 3,\n",
      "          'michael': 2,\n",
      "          'long': 2,\n",
      "          'profitable': 2,\n",
      "          'make': 2,\n",
      "          'bigbudget': 2,\n",
      "          'sphere': 2,\n",
      "          'better': 2,\n",
      "          'little': 2,\n",
      "          'makes': 2,\n",
      "          'dustin': 2,\n",
      "          'hoffman': 2,\n",
      "          'samuel': 2,\n",
      "          'l': 2,\n",
      "          'jackson': 2,\n",
      "          'sharon': 2,\n",
      "          'stone': 2,\n",
      "          'less': 2,\n",
      "          'plan': 2,\n",
      "          'investigate': 2,\n",
      "          'spacecraft': 2,\n",
      "          'pacific': 2,\n",
      "          'spaceship': 2,\n",
      "          'performances': 2,\n",
      "          'levinson': 2,\n",
      "          'rather': 2,\n",
      "          'special': 2,\n",
      "          'could': 2,\n",
      "          'requires': 2,\n",
      "          'seems': 2,\n",
      "          'get': 2,\n",
      "          'nlevinson': 2,\n",
      "          'price': 2,\n",
      "          'spectaculars': 2,\n",
      "          'secondtier': 2,\n",
      "          'firsttier': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          'career': 1,\n",
      "          'writing': 1,\n",
      "          'novels': 1,\n",
      "          'many': 1,\n",
      "          'nso': 1,\n",
      "          'logic': 1,\n",
      "          'industry': 1,\n",
      "          'way': 1,\n",
      "          'would': 1,\n",
      "          'another': 1,\n",
      "          'ncongo': 1,\n",
      "          'failed': 1,\n",
      "          'afraid': 1,\n",
      "          'probably': 1,\n",
      "          'going': 1,\n",
      "          'fare': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'okay': 1,\n",
      "          'even': 1,\n",
      "          'expensive': 1,\n",
      "          'one': 1,\n",
      "          'hundred': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          '133': 1,\n",
      "          'minutes': 1,\n",
      "          'terrific': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'original': 1,\n",
      "          'exciting': 1,\n",
      "          'nseveral': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'dr': 1,\n",
      "          'norman': 1,\n",
      "          'goodman': 1,\n",
      "          'played': 1,\n",
      "          'asked': 1,\n",
      "          'write': 1,\n",
      "          'set': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'procedures': 1,\n",
      "          'government': 1,\n",
      "          'follow': 1,\n",
      "          'entity': 1,\n",
      "          'actually': 1,\n",
      "          'encountered': 1,\n",
      "          'wrote': 1,\n",
      "          'semiserious': 1,\n",
      "          'explicitly': 1,\n",
      "          'define': 1,\n",
      "          'experts': 1,\n",
      "          'nnow': 1,\n",
      "          'assembled': 1,\n",
      "          'mysterious': 1,\n",
      "          'leader': 1,\n",
      "          'named': 1,\n",
      "          'barnes': 1,\n",
      "          'peter': 1,\n",
      "          'coyote': 1,\n",
      "          'study': 1,\n",
      "          'almost': 1,\n",
      "          'half': 1,\n",
      "          'mile': 1,\n",
      "          'length': 1,\n",
      "          'apparently': 1,\n",
      "          'dropped': 1,\n",
      "          'ocean': 1,\n",
      "          'early': 1,\n",
      "          '1700s': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'normans': 1,\n",
      "          'serious': 1,\n",
      "          'procedure': 1,\n",
      "          'become': 1,\n",
      "          'action': 1,\n",
      "          'dealing': 1,\n",
      "          'real': 1,\n",
      "          'nincluded': 1,\n",
      "          'mathematician': 1,\n",
      "          'harry': 1,\n",
      "          'adams': 1,\n",
      "          'biologist': 1,\n",
      "          'beth': 1,\n",
      "          'halperin': 1,\n",
      "          'astrophysicist': 1,\n",
      "          'ted': 1,\n",
      "          'fielding': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'ntogether': 1,\n",
      "          'travel': 1,\n",
      "          'deep': 1,\n",
      "          'understand': 1,\n",
      "          'secrets': 1,\n",
      "          'none': 1,\n",
      "          'major': 1,\n",
      "          'secret': 1,\n",
      "          'meaning': 1,\n",
      "          'huge': 1,\n",
      "          'goldtoned': 1,\n",
      "          'liquid': 1,\n",
      "          'metal': 1,\n",
      "          'heart': 1,\n",
      "          'nwhat': 1,\n",
      "          'disappointing': 1,\n",
      "          'effective': 1,\n",
      "          'ndirector': 1,\n",
      "          'barry': 1,\n",
      "          'best': 1,\n",
      "          'problem': 1,\n",
      "          'making': 1,\n",
      "          'intriguing': 1,\n",
      "          'effect': 1,\n",
      "          'shows': 1,\n",
      "          'outline': 1,\n",
      "          'radar': 1,\n",
      "          'screen': 1,\n",
      "          'technique': 1,\n",
      "          'suggest': 1,\n",
      "          'show': 1,\n",
      "          'let': 1,\n",
      "          'viewers': 1,\n",
      "          'imagination': 1,\n",
      "          'carry': 1,\n",
      "          'robert': 1,\n",
      "          'wise': 1,\n",
      "          'haunting': 1,\n",
      "          'nthat': 1,\n",
      "          'reasonable': 1,\n",
      "          'approach': 1,\n",
      "          'lowbudget': 1,\n",
      "          'nbut': 1,\n",
      "          'creating': 1,\n",
      "          'atmosphere': 1,\n",
      "          'manage': 1,\n",
      "          'muster': 1,\n",
      "          'give': 1,\n",
      "          'compelling': 1,\n",
      "          'simply': 1,\n",
      "          'put': 1,\n",
      "          'dont': 1,\n",
      "          'nhoffmans': 1,\n",
      "          'acting': 1,\n",
      "          'muted': 1,\n",
      "          'njackson': 1,\n",
      "          'laid': 1,\n",
      "          'back': 1,\n",
      "          'nwe': 1,\n",
      "          'feel': 1,\n",
      "          'characters': 1,\n",
      "          'inside': 1,\n",
      "          'heads': 1,\n",
      "          'paid': 1,\n",
      "          'big': 1,\n",
      "          'bucks': 1,\n",
      "          'performance': 1,\n",
      "          'nand': 1,\n",
      "          'queen': 1,\n",
      "          'latifah': 1,\n",
      "          'minor': 1,\n",
      "          'functionary': 1,\n",
      "          'expedition': 1,\n",
      "          'anybodys': 1,\n",
      "          'guess': 1,\n",
      "          'ncast': 1,\n",
      "          'unknowns': 1,\n",
      "          'delivered': 1,\n",
      "          'emotional': 1,\n",
      "          'impact': 1,\n",
      "          'fraction': 1,\n",
      "          'nlook': 1,\n",
      "          'powerful': 1,\n",
      "          'like': 1,\n",
      "          'moderate': 1,\n",
      "          'nmost': 1,\n",
      "          'days': 1,\n",
      "          'tries': 1,\n",
      "          'never': 1,\n",
      "          'exchange': 1,\n",
      "          'pay': 1,\n",
      "          'viewer': 1,\n",
      "          'nperhaps': 1,\n",
      "          'scifi': 1,\n",
      "          'medium': 1,\n",
      "          'result': 1,\n",
      "          'gets': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'pie': 5,\n",
      "          '2': 5,\n",
      "          'nit': 4,\n",
      "          'american': 3,\n",
      "          'laughs': 3,\n",
      "          'nbut': 3,\n",
      "          'upon': 3,\n",
      "          'sequel': 3,\n",
      "          'original': 3,\n",
      "          'women': 3,\n",
      "          'nthe': 3,\n",
      "          'built': 2,\n",
      "          'adolescent': 2,\n",
      "          'humor': 2,\n",
      "          'along': 2,\n",
      "          'quartet': 2,\n",
      "          'jim': 2,\n",
      "          'oz': 2,\n",
      "          'thomas': 2,\n",
      "          'year': 2,\n",
      "          'first': 2,\n",
      "          'college': 2,\n",
      "          'nothing': 2,\n",
      "          'two': 2,\n",
      "          'young': 2,\n",
      "          'film': 2,\n",
      "          'sex': 2,\n",
      "          'still': 2,\n",
      "          'involving': 2,\n",
      "          'namerican': 2,\n",
      "          'filled': 1,\n",
      "          'mostly': 1,\n",
      "          'cheap': 1,\n",
      "          'ones': 1,\n",
      "          'primarily': 1,\n",
      "          'sexual': 1,\n",
      "          'degradation': 1,\n",
      "          'fit': 1,\n",
      "          'locker': 1,\n",
      "          'room': 1,\n",
      "          'movie': 1,\n",
      "          'theater': 1,\n",
      "          'nim': 1,\n",
      "          'prude': 1,\n",
      "          'admit': 1,\n",
      "          'laughing': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'preview': 1,\n",
      "          'screening': 1,\n",
      "          '1999': 1,\n",
      "          'hit': 1,\n",
      "          'comedy': 1,\n",
      "          'discomfort': 1,\n",
      "          'embarrassment': 1,\n",
      "          'intrinsic': 1,\n",
      "          'within': 1,\n",
      "          'story': 1,\n",
      "          'nwhat': 1,\n",
      "          'separates': 1,\n",
      "          'predecessor': 1,\n",
      "          'heart': 1,\n",
      "          'nof': 1,\n",
      "          'noted': 1,\n",
      "          'warm': 1,\n",
      "          'pleasant': 1,\n",
      "          'outing': 1,\n",
      "          'travails': 1,\n",
      "          'growing': 1,\n",
      "          'nwell': 1,\n",
      "          'chums': 1,\n",
      "          'jason': 1,\n",
      "          'biggs': 1,\n",
      "          'chris': 1,\n",
      "          'klein': 1,\n",
      "          'kevin': 1,\n",
      "          'ian': 1,\n",
      "          'nicholas': 1,\n",
      "          'finch': 1,\n",
      "          'eddie': 1,\n",
      "          'kaye': 1,\n",
      "          'grown': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'older': 1,\n",
      "          'dont': 1,\n",
      "          'seem': 1,\n",
      "          'wiser': 1,\n",
      "          'nfresh': 1,\n",
      "          'obnoxious': 1,\n",
      "          'stifler': 1,\n",
      "          'seann': 1,\n",
      "          'william': 1,\n",
      "          'scott': 1,\n",
      "          'rent': 1,\n",
      "          'summer': 1,\n",
      "          'house': 1,\n",
      "          'lake': 1,\n",
      "          'order': 1,\n",
      "          'attract': 1,\n",
      "          'girls': 1,\n",
      "          'attempt': 1,\n",
      "          'score': 1,\n",
      "          'nas': 1,\n",
      "          'usual': 1,\n",
      "          'goes': 1,\n",
      "          'right': 1,\n",
      "          'last': 1,\n",
      "          'reel': 1,\n",
      "          'left': 1,\n",
      "          'five': 1,\n",
      "          'guys': 1,\n",
      "          'spending': 1,\n",
      "          'nearly': 1,\n",
      "          'hours': 1,\n",
      "          'drooling': 1,\n",
      "          'various': 1,\n",
      "          'nand': 1,\n",
      "          'rather': 1,\n",
      "          'degrading': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'shown': 1,\n",
      "          'individuals': 1,\n",
      "          'nthey': 1,\n",
      "          'potential': 1,\n",
      "          'recipients': 1,\n",
      "          'overactive': 1,\n",
      "          'raging': 1,\n",
      "          'hormones': 1,\n",
      "          'telling': 1,\n",
      "          'normal': 1,\n",
      "          'couple': 1,\n",
      "          'heather': 1,\n",
      "          'mena': 1,\n",
      "          'suvari': 1,\n",
      "          'spend': 1,\n",
      "          'bulk': 1,\n",
      "          'trying': 1,\n",
      "          'phone': 1,\n",
      "          'shes': 1,\n",
      "          'overseas': 1,\n",
      "          'exchange': 1,\n",
      "          'student': 1,\n",
      "          'program': 1,\n",
      "          'ndespite': 1,\n",
      "          'klutzy': 1,\n",
      "          'awkward': 1,\n",
      "          'unsure': 1,\n",
      "          'around': 1,\n",
      "          'opposite': 1,\n",
      "          'nmost': 1,\n",
      "          'pratfalls': 1,\n",
      "          'humiliations': 1,\n",
      "          'heaped': 1,\n",
      "          'including': 1,\n",
      "          'painful': 1,\n",
      "          'episode': 1,\n",
      "          'instant': 1,\n",
      "          'gluelike': 1,\n",
      "          'substance': 1,\n",
      "          'nalso': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'watch': 1,\n",
      "          'sequence': 1,\n",
      "          'three': 1,\n",
      "          'lads': 1,\n",
      "          'roommates': 1,\n",
      "          'boys': 1,\n",
      "          'suspect': 1,\n",
      "          'lesbians': 1,\n",
      "          'offensive': 1,\n",
      "          'plays': 1,\n",
      "          'outdated': 1,\n",
      "          'stereotypes': 1,\n",
      "          'generate': 1,\n",
      "          'despite': 1,\n",
      "          'raunchy': 1,\n",
      "          'moments': 1,\n",
      "          'innocent': 1,\n",
      "          'charm': 1,\n",
      "          'cynical': 1,\n",
      "          'knows': 1,\n",
      "          'predominantly': 1,\n",
      "          'male': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'want': 1,\n",
      "          'unabashedly': 1,\n",
      "          'gives': 1,\n",
      "          'many': 1,\n",
      "          'mentions': 1,\n",
      "          'finchs': 1,\n",
      "          'encounter': 1,\n",
      "          'stiflers': 1,\n",
      "          'mom': 1,\n",
      "          'becomes': 1,\n",
      "          'tiresome': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'throughout': 1,\n",
      "          'eugene': 1,\n",
      "          'levys': 1,\n",
      "          'return': 1,\n",
      "          'jims': 1,\n",
      "          'wellmeaning': 1,\n",
      "          'tryingtobehip': 1,\n",
      "          'dad': 1,\n",
      "          'performer': 1,\n",
      "          'actually': 1,\n",
      "          'given': 1,\n",
      "          'new': 1,\n",
      "          'fresh': 1,\n",
      "          'material': 1,\n",
      "          'alyson': 1,\n",
      "          'hannigan': 1,\n",
      "          'michelle': 1,\n",
      "          'band': 1,\n",
      "          'geek': 1,\n",
      "          'nin': 1,\n",
      "          'imbues': 1,\n",
      "          'character': 1,\n",
      "          'vulnerability': 1,\n",
      "          'wisdom': 1,\n",
      "          'maturity': 1,\n",
      "          'presold': 1,\n",
      "          'commodity': 1,\n",
      "          'earn': 1,\n",
      "          'several': 1,\n",
      "          'million': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'shame': 1,\n",
      "          'though': 1,\n",
      "          'rush': 1,\n",
      "          'rake': 1,\n",
      "          'bucks': 1,\n",
      "          'screenwriter': 1,\n",
      "          'adam': 1,\n",
      "          'herz': 1,\n",
      "          'also': 1,\n",
      "          'penned': 1,\n",
      "          'could': 1,\n",
      "          'set': 1,\n",
      "          'sights': 1,\n",
      "          'higher': 1,\n",
      "          'funny': 1,\n",
      "          'comedown': 1,\n",
      "          'well': 1,\n",
      "          'letdown': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'snake': 14,\n",
      "          'film': 6,\n",
      "          'anaconda': 6,\n",
      "          'characters': 6,\n",
      "          'movie': 5,\n",
      "          'nin': 5,\n",
      "          'crew': 4,\n",
      "          'dont': 4,\n",
      "          'get': 4,\n",
      "          'scene': 4,\n",
      "          'see': 4,\n",
      "          'maybe': 3,\n",
      "          'cale': 3,\n",
      "          'find': 3,\n",
      "          'sarone': 3,\n",
      "          'know': 3,\n",
      "          'seems': 3,\n",
      "          'must': 3,\n",
      "          'everyone': 3,\n",
      "          'else': 3,\n",
      "          'monster': 3,\n",
      "          'real': 3,\n",
      "          'one': 3,\n",
      "          'showdown': 3,\n",
      "          'actually': 3,\n",
      "          'us': 3,\n",
      "          'big': 2,\n",
      "          'eats': 2,\n",
      "          'would': 2,\n",
      "          'ended': 2,\n",
      "          'along': 2,\n",
      "          'flores': 2,\n",
      "          'voight': 2,\n",
      "          'capture': 2,\n",
      "          'nto': 2,\n",
      "          'since': 2,\n",
      "          'nif': 2,\n",
      "          'good': 2,\n",
      "          'reason': 2,\n",
      "          'nat': 2,\n",
      "          'relationship': 2,\n",
      "          'fact': 2,\n",
      "          'back': 2,\n",
      "          'nthis': 2,\n",
      "          'sense': 2,\n",
      "          'nhowever': 2,\n",
      "          'better': 2,\n",
      "          'bad': 2,\n",
      "          'hard': 2,\n",
      "          'supposed': 2,\n",
      "          'really': 2,\n",
      "          'hes': 2,\n",
      "          'nno': 2,\n",
      "          'theres': 2,\n",
      "          'snakes': 2,\n",
      "          'films': 2,\n",
      "          'early': 2,\n",
      "          'like': 2,\n",
      "          'something': 2,\n",
      "          'danger': 2,\n",
      "          'saw': 2,\n",
      "          'decoy': 2,\n",
      "          'waiting': 2,\n",
      "          'make': 2,\n",
      "          'well': 1,\n",
      "          'going': 1,\n",
      "          'expect': 1,\n",
      "          'nits': 1,\n",
      "          'people': 1,\n",
      "          'nthats': 1,\n",
      "          'thinking': 1,\n",
      "          'viewed': 1,\n",
      "          'enjoyed': 1,\n",
      "          'ninstead': 1,\n",
      "          'wishing': 1,\n",
      "          'giant': 1,\n",
      "          'come': 1,\n",
      "          'eat': 1,\n",
      "          'nanaconda': 1,\n",
      "          'documentary': 1,\n",
      "          'sailing': 1,\n",
      "          'south': 1,\n",
      "          'american': 1,\n",
      "          'river': 1,\n",
      "          'nled': 1,\n",
      "          'anthropologists': 1,\n",
      "          'dr': 1,\n",
      "          'steven': 1,\n",
      "          'eric': 1,\n",
      "          'stolz': 1,\n",
      "          'terri': 1,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'attempting': 1,\n",
      "          'locate': 1,\n",
      "          'lost': 1,\n",
      "          'tribe': 1,\n",
      "          'natives': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'poacher': 1,\n",
      "          'paul': 1,\n",
      "          'jon': 1,\n",
      "          'become': 1,\n",
      "          'unwillingly': 1,\n",
      "          'embroiled': 1,\n",
      "          'quest': 1,\n",
      "          'elusive': 1,\n",
      "          'simply': 1,\n",
      "          'say': 1,\n",
      "          'worlds': 1,\n",
      "          'largest': 1,\n",
      "          'wouldnt': 1,\n",
      "          'justice': 1,\n",
      "          'least': 1,\n",
      "          'two': 1,\n",
      "          'feet': 1,\n",
      "          'wide': 1,\n",
      "          'isnt': 1,\n",
      "          'avoid': 1,\n",
      "          'picking': 1,\n",
      "          'hitchhikers': 1,\n",
      "          'beginning': 1,\n",
      "          'kind': 1,\n",
      "          'past': 1,\n",
      "          'less': 1,\n",
      "          'ni': 1,\n",
      "          'expected': 1,\n",
      "          'play': 1,\n",
      "          'key': 1,\n",
      "          'part': 1,\n",
      "          'somewhere': 1,\n",
      "          'line': 1,\n",
      "          'setup': 1,\n",
      "          'nothing': 1,\n",
      "          'ncale': 1,\n",
      "          'chokes': 1,\n",
      "          'deadly': 1,\n",
      "          'wasp': 1,\n",
      "          'ask': 1,\n",
      "          'happens': 1,\n",
      "          'put': 1,\n",
      "          'action': 1,\n",
      "          'relegated': 1,\n",
      "          'person': 1,\n",
      "          'rest': 1,\n",
      "          'civilization': 1,\n",
      "          'medical': 1,\n",
      "          'help': 1,\n",
      "          'minimally': 1,\n",
      "          'helps': 1,\n",
      "          'add': 1,\n",
      "          'urgency': 1,\n",
      "          'plot': 1,\n",
      "          'goal': 1,\n",
      "          'comes': 1,\n",
      "          'direct': 1,\n",
      "          'conflict': 1,\n",
      "          'sarones': 1,\n",
      "          'plan': 1,\n",
      "          'negated': 1,\n",
      "          'halfway': 1,\n",
      "          'event': 1,\n",
      "          'still': 1,\n",
      "          'results': 1,\n",
      "          'zero': 1,\n",
      "          'payoff': 1,\n",
      "          'angle': 1,\n",
      "          'nmost': 1,\n",
      "          'either': 1,\n",
      "          'annoying': 1,\n",
      "          'stupid': 1,\n",
      "          'theyre': 1,\n",
      "          'nsince': 1,\n",
      "          'description': 1,\n",
      "          'applies': 1,\n",
      "          'except': 1,\n",
      "          'someone': 1,\n",
      "          'root': 1,\n",
      "          'nyoure': 1,\n",
      "          'guys': 1,\n",
      "          'end': 1,\n",
      "          'cheering': 1,\n",
      "          'smarter': 1,\n",
      "          'dumb': 1,\n",
      "          'times': 1,\n",
      "          'almost': 1,\n",
      "          'found': 1,\n",
      "          'rooting': 1,\n",
      "          'nthere': 1,\n",
      "          'standout': 1,\n",
      "          'performances': 1,\n",
      "          'neveryone': 1,\n",
      "          'reciting': 1,\n",
      "          'lines': 1,\n",
      "          'written': 1,\n",
      "          'stock': 1,\n",
      "          'neven': 1,\n",
      "          'appears': 1,\n",
      "          'best': 1,\n",
      "          'impression': 1,\n",
      "          'christopher': 1,\n",
      "          'walken': 1,\n",
      "          'matter': 1,\n",
      "          'movies': 1,\n",
      "          'star': 1,\n",
      "          'anyway': 1,\n",
      "          'scenes': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'effects': 1,\n",
      "          'decent': 1,\n",
      "          'job': 1,\n",
      "          'making': 1,\n",
      "          'look': 1,\n",
      "          'realism': 1,\n",
      "          'thrown': 1,\n",
      "          'pretty': 1,\n",
      "          'unrealistic': 1,\n",
      "          'occurrences': 1,\n",
      "          'nsometimes': 1,\n",
      "          'example': 1,\n",
      "          'moves': 1,\n",
      "          'fast': 1,\n",
      "          'nit': 1,\n",
      "          'catches': 1,\n",
      "          'guy': 1,\n",
      "          'jumping': 1,\n",
      "          'waterfall': 1,\n",
      "          'crying': 1,\n",
      "          'loud': 1,\n",
      "          'nthen': 1,\n",
      "          'another': 1,\n",
      "          'skin': 1,\n",
      "          'drawn': 1,\n",
      "          'tightly': 1,\n",
      "          'prey': 1,\n",
      "          'victims': 1,\n",
      "          'pained': 1,\n",
      "          'expression': 1,\n",
      "          'within': 1,\n",
      "          'belly': 1,\n",
      "          'nabsolutely': 1,\n",
      "          'ridiculous': 1,\n",
      "          'na': 1,\n",
      "          'testimony': 1,\n",
      "          'direction': 1,\n",
      "          'inclusion': 1,\n",
      "          'dangerous': 1,\n",
      "          'mighty': 1,\n",
      "          'totally': 1,\n",
      "          'unrelated': 1,\n",
      "          'anything': 1,\n",
      "          'witness': 1,\n",
      "          'winning': 1,\n",
      "          'panther': 1,\n",
      "          'nthe': 1,\n",
      "          'wraps': 1,\n",
      "          'around': 1,\n",
      "          'powerful': 1,\n",
      "          'feline': 1,\n",
      "          'stuffed': 1,\n",
      "          'animal': 1,\n",
      "          'squeezes': 1,\n",
      "          'panthers': 1,\n",
      "          'eyeballs': 1,\n",
      "          'pops': 1,\n",
      "          'neeeewwwww': 1,\n",
      "          'nabove': 1,\n",
      "          'beyond': 1,\n",
      "          'sick': 1,\n",
      "          'factor': 1,\n",
      "          'however': 1,\n",
      "          'surprised': 1,\n",
      "          'showed': 1,\n",
      "          'face': 1,\n",
      "          'quarter': 1,\n",
      "          'even': 1,\n",
      "          'passed': 1,\n",
      "          'mystery': 1,\n",
      "          'surrounding': 1,\n",
      "          'maintained': 1,\n",
      "          'reacting': 1,\n",
      "          'fear': 1,\n",
      "          'audience': 1,\n",
      "          'experience': 1,\n",
      "          'feeling': 1,\n",
      "          'show': 1,\n",
      "          'let': 1,\n",
      "          'therefore': 1,\n",
      "          'allow': 1,\n",
      "          'used': 1,\n",
      "          'pivotal': 1,\n",
      "          'moment': 1,\n",
      "          'man': 1,\n",
      "          'beast': 1,\n",
      "          'climactic': 1,\n",
      "          'case': 1,\n",
      "          'ends': 1,\n",
      "          'letdown': 1,\n",
      "          'nwhen': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'decided': 1,\n",
      "          'give': 1,\n",
      "          'benefit': 1,\n",
      "          'doubt': 1,\n",
      "          'assume': 1,\n",
      "          'wasnt': 1,\n",
      "          'bigger': 1,\n",
      "          'appearance': 1,\n",
      "          'thought': 1,\n",
      "          'safe': 1,\n",
      "          'luck': 1,\n",
      "          'nokay': 1,\n",
      "          'debut': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'horrendous': 1,\n",
      "          'im': 1,\n",
      "          'going': 1,\n",
      "          'waste': 1,\n",
      "          'words': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'anaconda': 6,\n",
      "          'movie': 5,\n",
      "          'crew': 5,\n",
      "          'snake': 4,\n",
      "          'stoltz': 4,\n",
      "          'voight': 4,\n",
      "          'documentary': 3,\n",
      "          'n': 3,\n",
      "          'monster': 3,\n",
      "          'like': 3,\n",
      "          'clown': 3,\n",
      "          'nthe': 3,\n",
      "          'giant': 3,\n",
      "          'special': 3,\n",
      "          'look': 3,\n",
      "          'nbut': 3,\n",
      "          'one': 3,\n",
      "          'around': 3,\n",
      "          'lopez': 2,\n",
      "          'says': 2,\n",
      "          'would': 2,\n",
      "          'break': 2,\n",
      "          'lousy': 2,\n",
      "          'nits': 2,\n",
      "          'manage': 2,\n",
      "          'way': 2,\n",
      "          'jackinthebox': 2,\n",
      "          'mildly': 2,\n",
      "          'effects': 2,\n",
      "          'appear': 2,\n",
      "          'shots': 2,\n",
      "          'phony': 2,\n",
      "          'scenes': 2,\n",
      "          'shot': 2,\n",
      "          'character': 2,\n",
      "          'really': 2,\n",
      "          'time': 2,\n",
      "          'story': 2,\n",
      "          'eric': 2,\n",
      "          'river': 2,\n",
      "          'shirishama': 2,\n",
      "          'members': 2,\n",
      "          'jon': 2,\n",
      "          'throw': 2,\n",
      "          'away': 2,\n",
      "          'point': 2,\n",
      "          'jaws': 2,\n",
      "          'cube': 2,\n",
      "          'horror': 2,\n",
      "          'midway': 1,\n",
      "          'filmmaker': 1,\n",
      "          'terri': 1,\n",
      "          'flores': 1,\n",
      "          'jennifer': 1,\n",
      "          'turns': 1,\n",
      "          'coworker': 1,\n",
      "          'thought': 1,\n",
      "          'first': 1,\n",
      "          'big': 1,\n",
      "          'ninstead': 1,\n",
      "          'turned': 1,\n",
      "          'disaster': 1,\n",
      "          'ntruer': 1,\n",
      "          'words': 1,\n",
      "          'never': 1,\n",
      "          'spoken': 1,\n",
      "          'suspense': 1,\n",
      "          'utterly': 1,\n",
      "          'predictable': 1,\n",
      "          'mess': 1,\n",
      "          'drum': 1,\n",
      "          'scares': 1,\n",
      "          'elementary': 1,\n",
      "          'nas': 1,\n",
      "          'turn': 1,\n",
      "          'crank': 1,\n",
      "          'youre': 1,\n",
      "          'totally': 1,\n",
      "          'aware': 1,\n",
      "          'damn': 1,\n",
      "          'going': 1,\n",
      "          'pop': 1,\n",
      "          'somehow': 1,\n",
      "          'still': 1,\n",
      "          'startling': 1,\n",
      "          'happens': 1,\n",
      "          'main': 1,\n",
      "          'difference': 1,\n",
      "          'realistic': 1,\n",
      "          'boasts': 1,\n",
      "          'worst': 1,\n",
      "          'onscreen': 1,\n",
      "          'years': 1,\n",
      "          'nanimatronic': 1,\n",
      "          'cringe': 1,\n",
      "          'inducing': 1,\n",
      "          'robots': 1,\n",
      "          'youve': 1,\n",
      "          'endured': 1,\n",
      "          'disney': 1,\n",
      "          'world': 1,\n",
      "          'computer': 1,\n",
      "          'animated': 1,\n",
      "          'truly': 1,\n",
      "          'expand': 1,\n",
      "          'meaning': 1,\n",
      "          'word': 1,\n",
      "          'lame': 1,\n",
      "          'nin': 1,\n",
      "          'tries': 1,\n",
      "          'flee': 1,\n",
      "          'diving': 1,\n",
      "          'tree': 1,\n",
      "          'near': 1,\n",
      "          'waterfall': 1,\n",
      "          'springs': 1,\n",
      "          'loops': 1,\n",
      "          'hapless': 1,\n",
      "          'victim': 1,\n",
      "          'mid': 1,\n",
      "          'air': 1,\n",
      "          'scene': 1,\n",
      "          'done': 1,\n",
      "          'well': 1,\n",
      "          'jaw': 1,\n",
      "          'dropper': 1,\n",
      "          'nhere': 1,\n",
      "          'horribly': 1,\n",
      "          'bad': 1,\n",
      "          'digital': 1,\n",
      "          'less': 1,\n",
      "          'convincing': 1,\n",
      "          'saturday': 1,\n",
      "          'morning': 1,\n",
      "          'cartoon': 1,\n",
      "          'nwhats': 1,\n",
      "          'amazing': 1,\n",
      "          'filmmakers': 1,\n",
      "          'proud': 1,\n",
      "          'dreadful': 1,\n",
      "          'actually': 1,\n",
      "          'included': 1,\n",
      "          'promotional': 1,\n",
      "          'trailers': 1,\n",
      "          'enough': 1,\n",
      "          'snakes': 1,\n",
      "          'nnow': 1,\n",
      "          'talk': 1,\n",
      "          'nheroic': 1,\n",
      "          'pale': 1,\n",
      "          'anthropologist': 1,\n",
      "          'leads': 1,\n",
      "          'brazilian': 1,\n",
      "          'search': 1,\n",
      "          'indians': 1,\n",
      "          'legendary': 1,\n",
      "          'tribe': 1,\n",
      "          'supposedly': 1,\n",
      "          'lives': 1,\n",
      "          'boondocks': 1,\n",
      "          'rain': 1,\n",
      "          'forest': 1,\n",
      "          'nstoltz': 1,\n",
      "          'tells': 1,\n",
      "          'pray': 1,\n",
      "          'didnt': 1,\n",
      "          'forget': 1,\n",
      "          'bug': 1,\n",
      "          'spray': 1,\n",
      "          'napparently': 1,\n",
      "          'female': 1,\n",
      "          'bathed': 1,\n",
      "          'stuff': 1,\n",
      "          'spend': 1,\n",
      "          'wearing': 1,\n",
      "          'skimpy': 1,\n",
      "          'tops': 1,\n",
      "          'short': 1,\n",
      "          'shorts': 1,\n",
      "          'ill': 1,\n",
      "          'effect': 1,\n",
      "          'nalong': 1,\n",
      "          'group': 1,\n",
      "          'rescues': 1,\n",
      "          'whackedout': 1,\n",
      "          'lapsed': 1,\n",
      "          'priest': 1,\n",
      "          'claims': 1,\n",
      "          'know': 1,\n",
      "          'find': 1,\n",
      "          'nwithin': 1,\n",
      "          'minutes': 1,\n",
      "          'plans': 1,\n",
      "          'follow': 1,\n",
      "          'tributary': 1,\n",
      "          'land': 1,\n",
      "          'creepiness': 1,\n",
      "          'nfrom': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'ripped': 1,\n",
      "          'dead': 1,\n",
      "          'calm': 1,\n",
      "          'none': 1,\n",
      "          'oddest': 1,\n",
      "          'structural': 1,\n",
      "          'points': 1,\n",
      "          'handling': 1,\n",
      "          'nearly': 1,\n",
      "          'gets': 1,\n",
      "          'knocked': 1,\n",
      "          'coma': 1,\n",
      "          'insect': 1,\n",
      "          'spends': 1,\n",
      "          'virtually': 1,\n",
      "          'rest': 1,\n",
      "          'unconscious': 1,\n",
      "          'nso': 1,\n",
      "          'hire': 1,\n",
      "          'actor': 1,\n",
      "          'caliber': 1,\n",
      "          'amounts': 1,\n",
      "          'cameo': 1,\n",
      "          'appearance': 1,\n",
      "          'nalso': 1,\n",
      "          'generally': 1,\n",
      "          'selects': 1,\n",
      "          'roles': 1,\n",
      "          'great': 1,\n",
      "          'care': 1,\n",
      "          'agree': 1,\n",
      "          'crap': 1,\n",
      "          'nah': 1,\n",
      "          'mysteries': 1,\n",
      "          'hollywood': 1,\n",
      "          'remaining': 1,\n",
      "          'basically': 1,\n",
      "          'food': 1,\n",
      "          'waiting': 1,\n",
      "          'happen': 1,\n",
      "          'njonathan': 1,\n",
      "          'hyde': 1,\n",
      "          'diverting': 1,\n",
      "          'pompous': 1,\n",
      "          'englishman': 1,\n",
      "          'hired': 1,\n",
      "          'narrate': 1,\n",
      "          'ice': 1,\n",
      "          'rise': 1,\n",
      "          'cardboard': 1,\n",
      "          'characters': 1,\n",
      "          'nlopez': 1,\n",
      "          'starred': 1,\n",
      "          'selena': 1,\n",
      "          'enormously': 1,\n",
      "          'appealing': 1,\n",
      "          'performer': 1,\n",
      "          'possessing': 1,\n",
      "          'vibrancy': 1,\n",
      "          'makes': 1,\n",
      "          'even': 1,\n",
      "          'trite': 1,\n",
      "          'lines': 1,\n",
      "          'seem': 1,\n",
      "          'credible': 1,\n",
      "          'nice': 1,\n",
      "          'charisma': 1,\n",
      "          'ability': 1,\n",
      "          'macho': 1,\n",
      "          'adult': 1,\n",
      "          'frightened': 1,\n",
      "          'boy': 1,\n",
      "          'simultaneously': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'twinkle': 1,\n",
      "          'eyes': 1,\n",
      "          'hes': 1,\n",
      "          'gently': 1,\n",
      "          'mocking': 1,\n",
      "          'toughguy': 1,\n",
      "          'posturing': 1,\n",
      "          'centers': 1,\n",
      "          'outrageously': 1,\n",
      "          'hammy': 1,\n",
      "          'performance': 1,\n",
      "          'nobsessed': 1,\n",
      "          'capturing': 1,\n",
      "          'anacondas': 1,\n",
      "          'plays': 1,\n",
      "          'villain': 1,\n",
      "          'thick': 1,\n",
      "          'accent': 1,\n",
      "          'series': 1,\n",
      "          'leers': 1,\n",
      "          'hisses': 1,\n",
      "          'spouting': 1,\n",
      "          'kind': 1,\n",
      "          'dialogue': 1,\n",
      "          'usually': 1,\n",
      "          'heard': 1,\n",
      "          'episodes': 1,\n",
      "          'jonny': 1,\n",
      "          'quest': 1,\n",
      "          'nat': 1,\n",
      "          'looms': 1,\n",
      "          'perfect': 1,\n",
      "          'killing': 1,\n",
      "          'machine': 1,\n",
      "          'nit': 1,\n",
      "          'strikes': 1,\n",
      "          'wraps': 1,\n",
      "          'holds': 1,\n",
      "          'tighter': 1,\n",
      "          'true': 1,\n",
      "          'love': 1,\n",
      "          'nand': 1,\n",
      "          'get': 1,\n",
      "          'privilege': 1,\n",
      "          'hearing': 1,\n",
      "          'bones': 1,\n",
      "          'power': 1,\n",
      "          'embrace': 1,\n",
      "          'causes': 1,\n",
      "          'veins': 1,\n",
      "          'explode': 1,\n",
      "          'moment': 1,\n",
      "          'highcamp': 1,\n",
      "          'almost': 1,\n",
      "          'made': 1,\n",
      "          'tolerable': 1,\n",
      "          'nalmost': 1,\n",
      "          'nfans': 1,\n",
      "          'genre': 1,\n",
      "          'may': 1,\n",
      "          'tempted': 1,\n",
      "          'check': 1,\n",
      "          'ndont': 1,\n",
      "          'nthere': 1,\n",
      "          'lots': 1,\n",
      "          'films': 1,\n",
      "          'scheduled': 1,\n",
      "          'release': 1,\n",
      "          'summer': 1,\n",
      "          'including': 1,\n",
      "          'another': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'alien': 1,\n",
      "          'sequel': 1,\n",
      "          'nwait': 1,\n",
      "          'rent': 1,\n",
      "          'meantime': 1,\n",
      "          'dont': 1,\n",
      "          'money': 1,\n",
      "          'drivel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 5,\n",
      "          'wedding': 3,\n",
      "          'singer': 3,\n",
      "          'nthe': 3,\n",
      "          'nostalgia': 2,\n",
      "          'seems': 2,\n",
      "          'nand': 2,\n",
      "          'robbie': 2,\n",
      "          'adam': 2,\n",
      "          'sandler': 2,\n",
      "          'julia': 2,\n",
      "          'robbies': 2,\n",
      "          'fiance': 2,\n",
      "          'billy': 2,\n",
      "          'idol': 2,\n",
      "          'supposed': 2,\n",
      "          'notice': 2,\n",
      "          '70s': 1,\n",
      "          'didnt': 1,\n",
      "          'make': 1,\n",
      "          'feel': 1,\n",
      "          'old': 1,\n",
      "          '80s': 1,\n",
      "          'bound': 1,\n",
      "          'none': 1,\n",
      "          'latter': 1,\n",
      "          'set': 1,\n",
      "          'written': 1,\n",
      "          'someone': 1,\n",
      "          'experience': 1,\n",
      "          '1980s': 1,\n",
      "          'directly': 1,\n",
      "          'read': 1,\n",
      "          'article': 1,\n",
      "          'parade': 1,\n",
      "          'magazine': 1,\n",
      "          'wacky': 1,\n",
      "          'fashions': 1,\n",
      "          'music': 1,\n",
      "          'references': 1,\n",
      "          'aplenty': 1,\n",
      "          'celebrities': 1,\n",
      "          'signs': 1,\n",
      "          'times': 1,\n",
      "          'tediouslyand': 1,\n",
      "          'obviouslyinserted': 1,\n",
      "          'didntwedressfunnybackthen': 1,\n",
      "          'chuckle': 1,\n",
      "          'plot': 1,\n",
      "          'standard': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'nothing': 1,\n",
      "          'original': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'waits': 1,\n",
      "          'tables': 1,\n",
      "          'weddings': 1,\n",
      "          'nboth': 1,\n",
      "          'engaged': 1,\n",
      "          'however': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'dumps': 1,\n",
      "          'altar': 1,\n",
      "          'julias': 1,\n",
      "          'matthew': 1,\n",
      "          'glave': 1,\n",
      "          'skirtchasing': 1,\n",
      "          'speculator': 1,\n",
      "          'junk': 1,\n",
      "          'bonds': 1,\n",
      "          'nrobbie': 1,\n",
      "          'go': 1,\n",
      "          'expected': 1,\n",
      "          'upsanddowns': 1,\n",
      "          'realize': 1,\n",
      "          'meant': 1,\n",
      "          'together': 1,\n",
      "          'nill': 1,\n",
      "          'fess': 1,\n",
      "          'upive': 1,\n",
      "          'never': 1,\n",
      "          'found': 1,\n",
      "          'funny': 1,\n",
      "          'nwhatever': 1,\n",
      "          'appeal': 1,\n",
      "          'ive': 1,\n",
      "          'missed': 1,\n",
      "          'comedians': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'include': 1,\n",
      "          'pauly': 1,\n",
      "          'shore': 1,\n",
      "          'pee': 1,\n",
      "          'wee': 1,\n",
      "          'hermanmake': 1,\n",
      "          'judgments': 1,\n",
      "          'stupidity': 1,\n",
      "          'artificiality': 1,\n",
      "          'whole': 1,\n",
      "          'project': 1,\n",
      "          'summarized': 1,\n",
      "          'cameo': 1,\n",
      "          'nidol': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'hell': 1,\n",
      "          'ravages': 1,\n",
      "          'lifestyle': 1,\n",
      "          'barely': 1,\n",
      "          'concealed': 1,\n",
      "          'thick': 1,\n",
      "          'makeup': 1,\n",
      "          'nhes': 1,\n",
      "          'mocked': 1,\n",
      "          'photo': 1,\n",
      "          'younger': 1,\n",
      "          'self': 1,\n",
      "          'rolling': 1,\n",
      "          'stone': 1,\n",
      "          'cover': 1,\n",
      "          'scene': 1,\n",
      "          'nwere': 1,\n",
      "          'silly': 1,\n",
      "          'suddenly': 1,\n",
      "          'appears': 1,\n",
      "          'play': 1,\n",
      "          'fairy': 1,\n",
      "          'godmother': 1,\n",
      "          'nother': 1,\n",
      "          'cameos': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'jon': 1,\n",
      "          'lovitz': 1,\n",
      "          'provide': 1,\n",
      "          'real': 1,\n",
      "          'laughs': 1,\n",
      "          'movie': 1,\n",
      "          'nlovitz': 1,\n",
      "          'especially': 1,\n",
      "          'good': 1,\n",
      "          'playing': 1,\n",
      "          'rival': 1,\n",
      "          'plotting': 1,\n",
      "          'mania': 1,\n",
      "          'bond': 1,\n",
      "          'villain': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'postbreakup': 1,\n",
      "          'depression': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sex': 5,\n",
      "          'thanksgiving': 4,\n",
      "          'daniel': 3,\n",
      "          'time': 3,\n",
      "          'us': 3,\n",
      "          'rich': 2,\n",
      "          'family': 2,\n",
      "          'mansion': 2,\n",
      "          'basement': 2,\n",
      "          'shoot': 2,\n",
      "          'else': 2,\n",
      "          'one': 2,\n",
      "          'nfor': 2,\n",
      "          'however': 2,\n",
      "          'milano': 2,\n",
      "          'like': 2,\n",
      "          'icet': 2,\n",
      "          'nthis': 2,\n",
      "          'alyssa': 2,\n",
      "          'nit': 2,\n",
      "          'people': 2,\n",
      "          'synopsis': 1,\n",
      "          'nice': 1,\n",
      "          'girl': 1,\n",
      "          'susanne': 1,\n",
      "          'boyfriend': 1,\n",
      "          'car': 1,\n",
      "          'visits': 1,\n",
      "          'daniels': 1,\n",
      "          'middle': 1,\n",
      "          'nowhere': 1,\n",
      "          'nsusanne': 1,\n",
      "          'must': 1,\n",
      "          'decide': 1,\n",
      "          'hide': 1,\n",
      "          'evil': 1,\n",
      "          'art': 1,\n",
      "          'thieves': 1,\n",
      "          'everyone': 1,\n",
      "          'steal': 1,\n",
      "          'paintings': 1,\n",
      "          'nbrace': 1,\n",
      "          'painfully': 1,\n",
      "          'obvious': 1,\n",
      "          'surprise': 1,\n",
      "          'endings': 1,\n",
      "          'ncomments': 1,\n",
      "          'loved': 1,\n",
      "          'ones': 1,\n",
      "          'enjoy': 1,\n",
      "          'good': 1,\n",
      "          'homecooked': 1,\n",
      "          'meal': 1,\n",
      "          'makers': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'multiple': 1,\n",
      "          'murders': 1,\n",
      "          'violence': 1,\n",
      "          'profanity': 1,\n",
      "          'dysfunction': 1,\n",
      "          'nboy': 1,\n",
      "          'feel': 1,\n",
      "          'better': 1,\n",
      "          'sat': 1,\n",
      "          'crap': 1,\n",
      "          'nalyssa': 1,\n",
      "          'former': 1,\n",
      "          'child': 1,\n",
      "          'star': 1,\n",
      "          'whos': 1,\n",
      "          'boss': 1,\n",
      "          'matures': 1,\n",
      "          'madeforvideo': 1,\n",
      "          'sludge': 1,\n",
      "          'movie': 1,\n",
      "          'nsomeone': 1,\n",
      "          'somewhere': 1,\n",
      "          'thought': 1,\n",
      "          'itd': 1,\n",
      "          'great': 1,\n",
      "          'idea': 1,\n",
      "          'pair': 1,\n",
      "          'rapper': 1,\n",
      "          'since': 1,\n",
      "          'gueststarred': 1,\n",
      "          'madeforthescifichannel': 1,\n",
      "          'series': 1,\n",
      "          'welcome': 1,\n",
      "          'paradox': 1,\n",
      "          'isnt': 1,\n",
      "          'exactly': 1,\n",
      "          'winning': 1,\n",
      "          'combination': 1,\n",
      "          'noutside': 1,\n",
      "          'permanently': 1,\n",
      "          'ruining': 1,\n",
      "          'holiday': 1,\n",
      "          'may': 1,\n",
      "          'said': 1,\n",
      "          'turkey': 1,\n",
      "          'nwell': 1,\n",
      "          'teaches': 1,\n",
      "          'beautiful': 1,\n",
      "          'attractive': 1,\n",
      "          'women': 1,\n",
      "          'look': 1,\n",
      "          'strikingly': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'nerds': 1,\n",
      "          'drive': 1,\n",
      "          'long': 1,\n",
      "          'winding': 1,\n",
      "          'roads': 1,\n",
      "          'eyes': 1,\n",
      "          'closed': 1,\n",
      "          'complain': 1,\n",
      "          'english': 1,\n",
      "          'teachers': 1,\n",
      "          'presents': 1,\n",
      "          'heartwarming': 1,\n",
      "          'dinner': 1,\n",
      "          'attended': 1,\n",
      "          'alcoholic': 1,\n",
      "          'stuckup': 1,\n",
      "          'white': 1,\n",
      "          'waited': 1,\n",
      "          'black': 1,\n",
      "          'servants': 1,\n",
      "          'shows': 1,\n",
      "          'old': 1,\n",
      "          'guys': 1,\n",
      "          'try': 1,\n",
      "          'laugh': 1,\n",
      "          'sit': 1,\n",
      "          'around': 1,\n",
      "          'talk': 1,\n",
      "          'appeal': 1,\n",
      "          'postmodernism': 1,\n",
      "          'free': 1,\n",
      "          'nand': 1,\n",
      "          'proves': 1,\n",
      "          'parents': 1,\n",
      "          'dozen': 1,\n",
      "          'guests': 1,\n",
      "          'notice': 1,\n",
      "          'nbefore': 1,\n",
      "          'go': 1,\n",
      "          'young': 1,\n",
      "          'male': 1,\n",
      "          'reading': 1,\n",
      "          'hopes': 1,\n",
      "          'seeing': 1,\n",
      "          'naked': 1,\n",
      "          'forget': 1,\n",
      "          'nthe': 1,\n",
      "          'filmmakers': 1,\n",
      "          'cleverly': 1,\n",
      "          'simulated': 1,\n",
      "          'scenes': 1,\n",
      "          'manner': 1,\n",
      "          'makes': 1,\n",
      "          'sure': 1,\n",
      "          'dont': 1,\n",
      "          'see': 1,\n",
      "          'milanos': 1,\n",
      "          'attributes': 1,\n",
      "          'nthey': 1,\n",
      "          'inexplicably': 1,\n",
      "          'throw': 1,\n",
      "          'scene': 1,\n",
      "          'whistles': 1,\n",
      "          'jingle': 1,\n",
      "          'bells': 1,\n",
      "          'killing': 1,\n",
      "          'whatever': 1,\n",
      "          'thats': 1,\n",
      "          'worth': 1,\n",
      "          'film': 1,\n",
      "          'originally': 1,\n",
      "          'titled': 1,\n",
      "          'utopia': 1,\n",
      "          'nperhaps': 1,\n",
      "          'renamed': 1,\n",
      "          'hell': 1,\n",
      "          'navoid': 1,\n",
      "          'clunker': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'funny': 4,\n",
      "          'time': 4,\n",
      "          'isnt': 4,\n",
      "          'sure': 3,\n",
      "          'review': 3,\n",
      "          'one': 3,\n",
      "          'wcw': 3,\n",
      "          'plot': 3,\n",
      "          'actors': 3,\n",
      "          'going': 3,\n",
      "          'quite': 2,\n",
      "          'nwell': 2,\n",
      "          'sat': 2,\n",
      "          'wondering': 2,\n",
      "          '107': 2,\n",
      "          'like': 2,\n",
      "          'forever': 2,\n",
      "          'fact': 2,\n",
      "          'could': 2,\n",
      "          'unfunniest': 2,\n",
      "          'movie': 2,\n",
      "          'long': 2,\n",
      "          'ready': 2,\n",
      "          'rumble': 2,\n",
      "          'david': 2,\n",
      "          'scott': 2,\n",
      "          'king': 2,\n",
      "          'films': 2,\n",
      "          'sadly': 2,\n",
      "          'script': 2,\n",
      "          'much': 2,\n",
      "          'nim': 2,\n",
      "          'anything': 2,\n",
      "          'well': 1,\n",
      "          'lets': 1,\n",
      "          'see': 1,\n",
      "          'im': 1,\n",
      "          'nnot': 1,\n",
      "          'based': 1,\n",
      "          'laughter': 1,\n",
      "          'factor': 1,\n",
      "          'yeah': 1,\n",
      "          'nok': 1,\n",
      "          'laughed': 1,\n",
      "          'warranted': 1,\n",
      "          '12': 1,\n",
      "          'star': 1,\n",
      "          'seat': 1,\n",
      "          'pos': 1,\n",
      "          'would': 1,\n",
      "          'running': 1,\n",
      "          'minutes': 1,\n",
      "          'seemed': 1,\n",
      "          'nin': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'nlet': 1,\n",
      "          'first': 1,\n",
      "          'say': 1,\n",
      "          'huge': 1,\n",
      "          'disappointment': 1,\n",
      "          'nlong': 1,\n",
      "          'wrestling': 1,\n",
      "          'lovers': 1,\n",
      "          'dream': 1,\n",
      "          'making': 1,\n",
      "          'watching': 1,\n",
      "          'jimmy': 1,\n",
      "          'wrestle': 1,\n",
      "          'nthat': 1,\n",
      "          'hero': 1,\n",
      "          'course': 1,\n",
      "          'kicked': 1,\n",
      "          'thickens': 1,\n",
      "          'lol': 1,\n",
      "          'two': 1,\n",
      "          'wish': 1,\n",
      "          'rescue': 1,\n",
      "          'put': 1,\n",
      "          'back': 1,\n",
      "          'easily': 1,\n",
      "          'tampered': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'get': 1,\n",
      "          'davids': 1,\n",
      "          'father': 1,\n",
      "          'wants': 1,\n",
      "          'become': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'loser': 1,\n",
      "          'help': 1,\n",
      "          'clean': 1,\n",
      "          'johnny': 1,\n",
      "          'spots': 1,\n",
      "          'nwhat': 1,\n",
      "          'eh': 1,\n",
      "          'n': 1,\n",
      "          'tries': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'everything': 1,\n",
      "          'imcomprehinsable': 1,\n",
      "          'even': 1,\n",
      "          'trailer': 1,\n",
      "          'wasnt': 1,\n",
      "          'nthe': 1,\n",
      "          'dull': 1,\n",
      "          'awful': 1,\n",
      "          'really': 1,\n",
      "          'nannoying': 1,\n",
      "          'great': 1,\n",
      "          'given': 1,\n",
      "          'lame': 1,\n",
      "          'directed': 1,\n",
      "          'childish': 1,\n",
      "          'manner': 1,\n",
      "          'wonder': 1,\n",
      "          'hollywood': 1,\n",
      "          'ever': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'days': 1,\n",
      "          'nthis': 1,\n",
      "          'nonly': 1,\n",
      "          'big': 1,\n",
      "          'laugh': 1,\n",
      "          'hilarious': 1,\n",
      "          'ni': 1,\n",
      "          'chair': 1,\n",
      "          'nminute': 1,\n",
      "          'comedy': 1,\n",
      "          'went': 1,\n",
      "          'saved': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'believe': 1,\n",
      "          'nreviewed': 1,\n",
      "          'brandon': 1,\n",
      "          'herring': 1,\n",
      "          '42900': 1,\n",
      "          'reviews': 1,\n",
      "          'please': 1,\n",
      "          'visit': 1,\n",
      "          'central': 1,\n",
      "          'http': 1,\n",
      "          'www': 1,\n",
      "          'geocities': 1,\n",
      "          'commoviefan983moviereviewcentral': 1,\n",
      "          'html': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'vacation': 15,\n",
      "          'movie': 15,\n",
      "          'nthe': 7,\n",
      "          'would': 7,\n",
      "          'like': 7,\n",
      "          'series': 7,\n",
      "          'nvegas': 6,\n",
      "          'first': 6,\n",
      "          'years': 5,\n",
      "          'national': 5,\n",
      "          'good': 5,\n",
      "          'two': 5,\n",
      "          'griswold': 4,\n",
      "          'vegas': 4,\n",
      "          'isnt': 4,\n",
      "          'one': 4,\n",
      "          'movies': 4,\n",
      "          'well': 4,\n",
      "          'film': 4,\n",
      "          'nif': 4,\n",
      "          'directed': 4,\n",
      "          'us': 3,\n",
      "          'family': 3,\n",
      "          'griswolds': 3,\n",
      "          'time': 3,\n",
      "          'ellen': 3,\n",
      "          'audrey': 3,\n",
      "          'find': 3,\n",
      "          'nthere': 3,\n",
      "          'much': 3,\n",
      "          'comes': 3,\n",
      "          'really': 3,\n",
      "          'skit': 3,\n",
      "          'couple': 3,\n",
      "          'far': 3,\n",
      "          'doesnt': 3,\n",
      "          'even': 3,\n",
      "          'lampoons': 3,\n",
      "          'didnt': 3,\n",
      "          'lampoon': 2,\n",
      "          'new': 2,\n",
      "          'nin': 2,\n",
      "          'nwe': 2,\n",
      "          'shared': 2,\n",
      "          'wild': 2,\n",
      "          'went': 2,\n",
      "          'four': 2,\n",
      "          'christmas': 2,\n",
      "          'clark': 2,\n",
      "          'basically': 2,\n",
      "          'nclark': 2,\n",
      "          'idea': 2,\n",
      "          'kids': 2,\n",
      "          'rusty': 2,\n",
      "          'around': 2,\n",
      "          'make': 2,\n",
      "          'minutes': 2,\n",
      "          'cousin': 2,\n",
      "          'times': 2,\n",
      "          'plot': 2,\n",
      "          'ways': 2,\n",
      "          'know': 2,\n",
      "          'seems': 2,\n",
      "          'example': 2,\n",
      "          'fast': 2,\n",
      "          'fit': 2,\n",
      "          'either': 2,\n",
      "          'gambling': 2,\n",
      "          'fun': 2,\n",
      "          'simple': 2,\n",
      "          'fact': 2,\n",
      "          'funny': 2,\n",
      "          'plays': 2,\n",
      "          'nhe': 2,\n",
      "          'character': 2,\n",
      "          'quite': 2,\n",
      "          'never': 2,\n",
      "          'credits': 2,\n",
      "          '1': 2,\n",
      "          'three': 2,\n",
      "          'close': 2,\n",
      "          'actually': 2,\n",
      "          'pretty': 2,\n",
      "          'things': 2,\n",
      "          'title': 2,\n",
      "          'reasons': 2,\n",
      "          'look': 2,\n",
      "          'another': 2,\n",
      "          'makes': 2,\n",
      "          'obvious': 2,\n",
      "          'films': 2,\n",
      "          'john': 2,\n",
      "          'hughes': 2,\n",
      "          'behind': 2,\n",
      "          'including': 2,\n",
      "          'day': 2,\n",
      "          'guy': 2,\n",
      "          'nthis': 2,\n",
      "          'also': 2,\n",
      "          'hits': 2,\n",
      "          'madefortv': 2,\n",
      "          'direct': 2,\n",
      "          'loved': 2,\n",
      "          '14': 1,\n",
      "          'ago': 1,\n",
      "          'introduced': 1,\n",
      "          '1983': 1,\n",
      "          'embarked': 1,\n",
      "          'crosscountry': 1,\n",
      "          'journey': 1,\n",
      "          'destination': 1,\n",
      "          'wally': 1,\n",
      "          'world': 1,\n",
      "          'worldrenowned': 1,\n",
      "          'theme': 1,\n",
      "          'park': 1,\n",
      "          'california': 1,\n",
      "          'laughed': 1,\n",
      "          'heads': 1,\n",
      "          'crazy': 1,\n",
      "          'mishaps': 1,\n",
      "          'endured': 1,\n",
      "          'ntwo': 1,\n",
      "          'later': 1,\n",
      "          'watched': 1,\n",
      "          'europe': 1,\n",
      "          'nnow': 1,\n",
      "          'eight': 1,\n",
      "          'passed': 1,\n",
      "          'laughs': 1,\n",
      "          'done': 1,\n",
      "          'die': 1,\n",
      "          'ntheyve': 1,\n",
      "          'cremated': 1,\n",
      "          'brings': 1,\n",
      "          'back': 1,\n",
      "          'chevy': 1,\n",
      "          'chase': 1,\n",
      "          'intentioned': 1,\n",
      "          'illfated': 1,\n",
      "          'father': 1,\n",
      "          'premise': 1,\n",
      "          'wonderful': 1,\n",
      "          'take': 1,\n",
      "          'bonding': 1,\n",
      "          'las': 1,\n",
      "          'nhis': 1,\n",
      "          'wife': 1,\n",
      "          'beverly': 1,\n",
      "          'dangelo': 1,\n",
      "          'teenage': 1,\n",
      "          'always': 1,\n",
      "          'played': 1,\n",
      "          'different': 1,\n",
      "          'actors': 1,\n",
      "          'ethan': 1,\n",
      "          'embry': 1,\n",
      "          'marisol': 1,\n",
      "          'nichols': 1,\n",
      "          'respectively': 1,\n",
      "          'join': 1,\n",
      "          'soon': 1,\n",
      "          'sin': 1,\n",
      "          'city': 1,\n",
      "          'casinos': 1,\n",
      "          'backdrop': 1,\n",
      "          'ninety': 1,\n",
      "          'slapstick': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'wouldnt': 1,\n",
      "          'complete': 1,\n",
      "          'without': 1,\n",
      "          'ole': 1,\n",
      "          'eddie': 1,\n",
      "          'reprised': 1,\n",
      "          'randy': 1,\n",
      "          'quaid': 1,\n",
      "          'misfit': 1,\n",
      "          'showing': 1,\n",
      "          'wrong': 1,\n",
      "          'right': 1,\n",
      "          'nits': 1,\n",
      "          'define': 1,\n",
      "          'real': 1,\n",
      "          'term': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'hours': 1,\n",
      "          'therefore': 1,\n",
      "          'coming': 1,\n",
      "          'hour': 1,\n",
      "          'second': 1,\n",
      "          'comprised': 1,\n",
      "          'twenty': 1,\n",
      "          'shorter': 1,\n",
      "          'skits': 1,\n",
      "          'lasting': 1,\n",
      "          'five': 1,\n",
      "          'na': 1,\n",
      "          'latter': 1,\n",
      "          'last': 1,\n",
      "          'black': 1,\n",
      "          'sheep': 1,\n",
      "          'problem': 1,\n",
      "          'format': 1,\n",
      "          'becomes': 1,\n",
      "          'old': 1,\n",
      "          'mold': 1,\n",
      "          'cases': 1,\n",
      "          'generally': 1,\n",
      "          'thin': 1,\n",
      "          'used': 1,\n",
      "          'shameless': 1,\n",
      "          'filler': 1,\n",
      "          'scenes': 1,\n",
      "          'simply': 1,\n",
      "          'add': 1,\n",
      "          'convenience': 1,\n",
      "          'gags': 1,\n",
      "          'e': 1,\n",
      "          'nhave': 1,\n",
      "          'joke': 1,\n",
      "          'nsuch': 1,\n",
      "          'case': 1,\n",
      "          'miniplots': 1,\n",
      "          'gets': 1,\n",
      "          'fever': 1,\n",
      "          'begins': 1,\n",
      "          'spending': 1,\n",
      "          'money': 1,\n",
      "          'verge': 1,\n",
      "          'affair': 1,\n",
      "          'wayne': 1,\n",
      "          'newton': 1,\n",
      "          'fake': 1,\n",
      "          'id': 1,\n",
      "          'using': 1,\n",
      "          'advantage': 1,\n",
      "          'desperate': 1,\n",
      "          'winds': 1,\n",
      "          'joining': 1,\n",
      "          'vickie': 1,\n",
      "          'shae': 1,\n",
      "          'dlyn': 1,\n",
      "          'exotic': 1,\n",
      "          'dancer': 1,\n",
      "          'nat': 1,\n",
      "          'chuckling': 1,\n",
      "          'heartily': 1,\n",
      "          'little': 1,\n",
      "          'jokes': 1,\n",
      "          'got': 1,\n",
      "          'rolling': 1,\n",
      "          'interest': 1,\n",
      "          'suddenly': 1,\n",
      "          'stopped': 1,\n",
      "          'nchase': 1,\n",
      "          'made': 1,\n",
      "          'ndangelo': 1,\n",
      "          'honest': 1,\n",
      "          'impressive': 1,\n",
      "          'show': 1,\n",
      "          'signs': 1,\n",
      "          'redemption': 1,\n",
      "          'nas': 1,\n",
      "          'word': 1,\n",
      "          'blah': 1,\n",
      "          'mind': 1,\n",
      "          'prove': 1,\n",
      "          'anybody': 1,\n",
      "          'play': 1,\n",
      "          'characters': 1,\n",
      "          'reason': 1,\n",
      "          'nothing': 1,\n",
      "          'ntheyre': 1,\n",
      "          'generic': 1,\n",
      "          'youll': 1,\n",
      "          'expect': 1,\n",
      "          'read': 1,\n",
      "          'girl': 1,\n",
      "          'differs': 1,\n",
      "          'laugh': 1,\n",
      "          'factor': 1,\n",
      "          'nyes': 1,\n",
      "          'true': 1,\n",
      "          'others': 1,\n",
      "          'doofy': 1,\n",
      "          'set': 1,\n",
      "          'negatively': 1,\n",
      "          'apart': 1,\n",
      "          'nfirst': 1,\n",
      "          'leave': 1,\n",
      "          'heading': 1,\n",
      "          'ni': 1,\n",
      "          'couldnt': 1,\n",
      "          'maybe': 1,\n",
      "          'want': 1,\n",
      "          'associated': 1,\n",
      "          'lame': 1,\n",
      "          'nthats': 1,\n",
      "          'saying': 1,\n",
      "          'lot': 1,\n",
      "          'especially': 1,\n",
      "          'else': 1,\n",
      "          'company': 1,\n",
      "          'proudly': 1,\n",
      "          'presented': 1,\n",
      "          'loaded': 1,\n",
      "          'weapon': 1,\n",
      "          'pcu': 1,\n",
      "          'etc': 1,\n",
      "          'expected': 1,\n",
      "          'hit': 1,\n",
      "          'assume': 1,\n",
      "          'theyd': 1,\n",
      "          'proud': 1,\n",
      "          'tack': 1,\n",
      "          'notorious': 1,\n",
      "          'header': 1,\n",
      "          'guess': 1,\n",
      "          'sucking': 1,\n",
      "          'difference': 1,\n",
      "          'impact': 1,\n",
      "          'written': 1,\n",
      "          'talented': 1,\n",
      "          'writer': 1,\n",
      "          'several': 1,\n",
      "          'popular': 1,\n",
      "          '80s': 1,\n",
      "          'mr': 1,\n",
      "          'nmom': 1,\n",
      "          'sixteen': 1,\n",
      "          'candles': 1,\n",
      "          'breakfast': 1,\n",
      "          'club': 1,\n",
      "          'weird': 1,\n",
      "          'science': 1,\n",
      "          'pink': 1,\n",
      "          'ferris': 1,\n",
      "          'buellers': 1,\n",
      "          'planes': 1,\n",
      "          'trains': 1,\n",
      "          'automobiles': 1,\n",
      "          'uncle': 1,\n",
      "          'buck': 1,\n",
      "          'nwowzers': 1,\n",
      "          'nwhat': 1,\n",
      "          'r': 1,\n",
      "          'sum': 1,\n",
      "          'nlooking': 1,\n",
      "          'names': 1,\n",
      "          'youd': 1,\n",
      "          'think': 1,\n",
      "          'wrote': 1,\n",
      "          'everything': 1,\n",
      "          'stands': 1,\n",
      "          'icon': 1,\n",
      "          '1980s': 1,\n",
      "          'nwell': 1,\n",
      "          'thats': 1,\n",
      "          'brought': 1,\n",
      "          '90s': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'remake': 1,\n",
      "          '101': 1,\n",
      "          'dalmatians': 1,\n",
      "          'dennis': 1,\n",
      "          'menace': 1,\n",
      "          'current': 1,\n",
      "          'flubber': 1,\n",
      "          'however': 1,\n",
      "          'loss': 1,\n",
      "          'script': 1,\n",
      "          'hands': 1,\n",
      "          'elisa': 1,\n",
      "          'bell': 1,\n",
      "          'whose': 1,\n",
      "          'thus': 1,\n",
      "          'include': 1,\n",
      "          'work': 1,\n",
      "          'better': 1,\n",
      "          'sequel': 1,\n",
      "          'sounds': 1,\n",
      "          'nrevenge': 1,\n",
      "          'nerds': 1,\n",
      "          'third': 1,\n",
      "          'fourth': 1,\n",
      "          'installments': 1,\n",
      "          'television': 1,\n",
      "          'seemed': 1,\n",
      "          'fox': 1,\n",
      "          'network': 1,\n",
      "          '2': 1,\n",
      "          '00': 1,\n",
      "          'nsunday': 1,\n",
      "          'morning': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'major': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'place': 1,\n",
      "          'nstephen': 1,\n",
      "          'kesslers': 1,\n",
      "          'jejune': 1,\n",
      "          'direction': 1,\n",
      "          'help': 1,\n",
      "          'tvmovieish': 1,\n",
      "          'neach': 1,\n",
      "          'consecutive': 1,\n",
      "          'suffered': 1,\n",
      "          'drop': 1,\n",
      "          'directing': 1,\n",
      "          'power': 1,\n",
      "          'started': 1,\n",
      "          'harold': 1,\n",
      "          'ramis': 1,\n",
      "          'caddyshack': 1,\n",
      "          'groundhog': 1,\n",
      "          'cowriting': 1,\n",
      "          'ghostbusters': 1,\n",
      "          'nnot': 1,\n",
      "          'bad': 1,\n",
      "          'nthen': 1,\n",
      "          'european': 1,\n",
      "          'amy': 1,\n",
      "          'heckerling': 1,\n",
      "          'go': 1,\n",
      "          'whos': 1,\n",
      "          'talking': 1,\n",
      "          'clueless': 1,\n",
      "          'already': 1,\n",
      "          'infamous': 1,\n",
      "          'ridgemont': 1,\n",
      "          'high': 1,\n",
      "          'nlastly': 1,\n",
      "          'jeremiah': 1,\n",
      "          'chechik': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'charming': 1,\n",
      "          'benny': 1,\n",
      "          'joon': 1,\n",
      "          'nkessler': 1,\n",
      "          'belt': 1,\n",
      "          'short': 1,\n",
      "          'birch': 1,\n",
      "          'street': 1,\n",
      "          'gym': 1,\n",
      "          'received': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          '1992': 1,\n",
      "          'ngranted': 1,\n",
      "          'attempt': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'allow': 1,\n",
      "          'amateurish': 1,\n",
      "          'quality': 1,\n",
      "          'instead': 1,\n",
      "          'get': 1,\n",
      "          'straight': 1,\n",
      "          'text': 1,\n",
      "          'book': 1,\n",
      "          'boring': 1,\n",
      "          'bland': 1,\n",
      "          'deeply': 1,\n",
      "          'unoriginal': 1,\n",
      "          'still': 1,\n",
      "          'anything': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'dont': 1,\n",
      "          'ruin': 1,\n",
      "          'impressions': 1,\n",
      "          'indulging': 1,\n",
      "          'tragic': 1,\n",
      "          'cinema': 1,\n",
      "          'ala': 1,\n",
      "          'carte': 1,\n",
      "          'need': 1,\n",
      "          'confirm': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'macleane': 6,\n",
      "          'movie': 5,\n",
      "          'little': 5,\n",
      "          'nthe': 5,\n",
      "          'film': 5,\n",
      "          'plunkett': 4,\n",
      "          'would': 4,\n",
      "          'miller': 4,\n",
      "          'nalthough': 4,\n",
      "          'ridley': 3,\n",
      "          'tony': 3,\n",
      "          'nothing': 3,\n",
      "          'disappointment': 3,\n",
      "          'character': 3,\n",
      "          'update': 3,\n",
      "          'directing': 2,\n",
      "          'scott': 2,\n",
      "          'nif': 2,\n",
      "          'ncarlyle': 2,\n",
      "          'carlyle': 2,\n",
      "          'wants': 2,\n",
      "          'make': 2,\n",
      "          'two': 2,\n",
      "          'tyler': 2,\n",
      "          'mr': 2,\n",
      "          'chance': 2,\n",
      "          'stott': 2,\n",
      "          'nplunkett': 2,\n",
      "          'theres': 2,\n",
      "          'enough': 2,\n",
      "          'although': 2,\n",
      "          'sets': 2,\n",
      "          'costumes': 2,\n",
      "          'development': 2,\n",
      "          'story': 2,\n",
      "          'mess': 2,\n",
      "          'bad': 2,\n",
      "          'music': 2,\n",
      "          'video': 2,\n",
      "          'period': 2,\n",
      "          'drama': 2,\n",
      "          'f': 2,\n",
      "          'mtv': 2,\n",
      "          'recommend': 2,\n",
      "          'marks': 1,\n",
      "          'debut': 1,\n",
      "          'jake': 1,\n",
      "          'brother': 1,\n",
      "          'nnaturally': 1,\n",
      "          'got': 1,\n",
      "          'worried': 1,\n",
      "          'nwould': 1,\n",
      "          'jakes': 1,\n",
      "          'talent': 1,\n",
      "          'inherited': 1,\n",
      "          'thoughtful': 1,\n",
      "          'suspensor': 1,\n",
      "          'action': 1,\n",
      "          'thrown': 1,\n",
      "          'wham': 1,\n",
      "          'bang': 1,\n",
      "          'drivel': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'latter': 1,\n",
      "          'true': 1,\n",
      "          'worthless': 1,\n",
      "          'picture': 1,\n",
      "          'charm': 1,\n",
      "          'titular': 1,\n",
      "          'highwaymen': 1,\n",
      "          'poor': 1,\n",
      "          'unruly': 1,\n",
      "          'captain': 1,\n",
      "          'james': 1,\n",
      "          'clean': 1,\n",
      "          'cut': 1,\n",
      "          'gentleman': 1,\n",
      "          'nas': 1,\n",
      "          'tagline': 1,\n",
      "          'clearly': 1,\n",
      "          'known': 1,\n",
      "          'rob': 1,\n",
      "          'rich': 1,\n",
      "          'else': 1,\n",
      "          'basically': 1,\n",
      "          'follows': 1,\n",
      "          'rowdy': 1,\n",
      "          'hold': 1,\n",
      "          'ups': 1,\n",
      "          'stage': 1,\n",
      "          'along': 1,\n",
      "          'romantic': 1,\n",
      "          'interludes': 1,\n",
      "          'lady': 1,\n",
      "          'rebecca': 1,\n",
      "          'nhot': 1,\n",
      "          'tails': 1,\n",
      "          'ken': 1,\n",
      "          'see': 1,\n",
      "          'dead': 1,\n",
      "          'annoying': 1,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'slick': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'merit': 1,\n",
      "          'contained': 1,\n",
      "          'fun': 1,\n",
      "          'foul': 1,\n",
      "          'mouthed': 1,\n",
      "          'pair': 1,\n",
      "          'characters': 1,\n",
      "          'criminally': 1,\n",
      "          'undeveloped': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'much': 1,\n",
      "          'money': 1,\n",
      "          'spent': 1,\n",
      "          'expensive': 1,\n",
      "          'looking': 1,\n",
      "          'script': 1,\n",
      "          'five': 1,\n",
      "          'screenwriters': 1,\n",
      "          'three': 1,\n",
      "          'credited': 1,\n",
      "          'produced': 1,\n",
      "          'still': 1,\n",
      "          'born': 1,\n",
      "          'nalso': 1,\n",
      "          'major': 1,\n",
      "          'events': 1,\n",
      "          'cash': 1,\n",
      "          'finding': 1,\n",
      "          'really': 1,\n",
      "          'rushed': 1,\n",
      "          'barely': 1,\n",
      "          'happened': 1,\n",
      "          'bit': 1,\n",
      "          'frankly': 1,\n",
      "          'performances': 1,\n",
      "          'arent': 1,\n",
      "          'typical': 1,\n",
      "          'lads': 1,\n",
      "          'liv': 1,\n",
      "          'huge': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'nher': 1,\n",
      "          'irritable': 1,\n",
      "          'stilted': 1,\n",
      "          'performance': 1,\n",
      "          'sticks': 1,\n",
      "          'like': 1,\n",
      "          'sore': 1,\n",
      "          'thumb': 1,\n",
      "          'quite': 1,\n",
      "          'unsure': 1,\n",
      "          'accent': 1,\n",
      "          'trying': 1,\n",
      "          'put': 1,\n",
      "          'nshe': 1,\n",
      "          'looks': 1,\n",
      "          'nice': 1,\n",
      "          'though': 1,\n",
      "          'nmore': 1,\n",
      "          'interesting': 1,\n",
      "          'alan': 1,\n",
      "          'cummings': 1,\n",
      "          'campy': 1,\n",
      "          'lord': 1,\n",
      "          'rochester': 1,\n",
      "          'amounts': 1,\n",
      "          'dimensional': 1,\n",
      "          'comedy': 1,\n",
      "          'gay': 1,\n",
      "          'hams': 1,\n",
      "          'well': 1,\n",
      "          'nken': 1,\n",
      "          'suitably': 1,\n",
      "          'evil': 1,\n",
      "          'flat': 1,\n",
      "          'ni': 1,\n",
      "          'didnt': 1,\n",
      "          'particularly': 1,\n",
      "          'care': 1,\n",
      "          'predictable': 1,\n",
      "          'death': 1,\n",
      "          'sequence': 1,\n",
      "          'arrived': 1,\n",
      "          'writing': 1,\n",
      "          'minor': 1,\n",
      "          'success': 1,\n",
      "          'acting': 1,\n",
      "          'certainly': 1,\n",
      "          'look': 1,\n",
      "          'lavish': 1,\n",
      "          'good': 1,\n",
      "          'wonderful': 1,\n",
      "          'nbut': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'alone': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'especially': 1,\n",
      "          'njake': 1,\n",
      "          'suited': 1,\n",
      "          'rather': 1,\n",
      "          'failed': 1,\n",
      "          'seems': 1,\n",
      "          'fact': 1,\n",
      "          'everyone': 1,\n",
      "          'must': 1,\n",
      "          'talk': 1,\n",
      "          'dirty': 1,\n",
      "          'ck': 1,\n",
      "          'stand': 1,\n",
      "          'cking': 1,\n",
      "          'deliver': 1,\n",
      "          'splattered': 1,\n",
      "          'place': 1,\n",
      "          'editing': 1,\n",
      "          'direction': 1,\n",
      "          'flash': 1,\n",
      "          'end': 1,\n",
      "          'decidedly': 1,\n",
      "          'empty': 1,\n",
      "          'massive': 1,\n",
      "          'somewhat': 1,\n",
      "          'enjoyable': 1,\n",
      "          'parts': 1,\n",
      "          'light': 1,\n",
      "          'could': 1,\n",
      "          'float': 1,\n",
      "          'screen': 1,\n",
      "          'wasnt': 1,\n",
      "          'images': 1,\n",
      "          'reel': 1,\n",
      "          'ntheres': 1,\n",
      "          'thought': 1,\n",
      "          'plot': 1,\n",
      "          'series': 1,\n",
      "          'manic': 1,\n",
      "          'edits': 1,\n",
      "          'quirky': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'appeal': 1,\n",
      "          'genxers': 1,\n",
      "          'great': 1,\n",
      "          'idea': 1,\n",
      "          'generation': 1,\n",
      "          'execution': 1,\n",
      "          'awful': 1,\n",
      "          'likely': 1,\n",
      "          'bore': 1,\n",
      "          'excite': 1,\n",
      "          'nsloppy': 1,\n",
      "          'occasionally': 1,\n",
      "          'puttingly': 1,\n",
      "          'tasteless': 1,\n",
      "          'hard': 1,\n",
      "          'easy': 1,\n",
      "          'overlong': 1,\n",
      "          'ngive': 1,\n",
      "          'miss': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'johnny': 5,\n",
      "          'could': 5,\n",
      "          'script': 4,\n",
      "          'nthe': 4,\n",
      "          'future': 4,\n",
      "          'one': 3,\n",
      "          'another': 3,\n",
      "          'data': 3,\n",
      "          'head': 3,\n",
      "          'work': 3,\n",
      "          'yakuza': 3,\n",
      "          'movies': 3,\n",
      "          'course': 3,\n",
      "          'thats': 3,\n",
      "          'newark': 3,\n",
      "          'doesnt': 3,\n",
      "          'like': 3,\n",
      "          'would': 3,\n",
      "          'short': 2,\n",
      "          'story': 2,\n",
      "          'awesomely': 2,\n",
      "          'bad': 2,\n",
      "          'thing': 2,\n",
      "          'fail': 2,\n",
      "          'terrible': 2,\n",
      "          'way': 2,\n",
      "          'make': 2,\n",
      "          'new': 2,\n",
      "          'whole': 2,\n",
      "          'details': 2,\n",
      "          'theres': 2,\n",
      "          'come': 2,\n",
      "          'mind': 2,\n",
      "          'johnnys': 2,\n",
      "          'look': 2,\n",
      "          'fun': 2,\n",
      "          'capsule': 1,\n",
      "          'silly': 1,\n",
      "          'inane': 1,\n",
      "          'adaptation': 1,\n",
      "          'gibsons': 1,\n",
      "          'nowhere': 1,\n",
      "          'sight': 1,\n",
      "          'ngibsons': 1,\n",
      "          'adds': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'njohnny': 1,\n",
      "          'mnemonic': 1,\n",
      "          'ni': 1,\n",
      "          'say': 1,\n",
      "          'entirely': 1,\n",
      "          'completely': 1,\n",
      "          'even': 1,\n",
      "          'chances': 1,\n",
      "          'camp': 1,\n",
      "          'value': 1,\n",
      "          'sabotaged': 1,\n",
      "          'nkeanur': 1,\n",
      "          'reeves': 1,\n",
      "          'stars': 1,\n",
      "          'information': 1,\n",
      "          'courier': 1,\n",
      "          'carry': 1,\n",
      "          'dozens': 1,\n",
      "          'gigabytes': 1,\n",
      "          'nhe': 1,\n",
      "          'given': 1,\n",
      "          'last': 1,\n",
      "          'job': 1,\n",
      "          'whenever': 1,\n",
      "          'hear': 1,\n",
      "          'words': 1,\n",
      "          'run': 1,\n",
      "          'involves': 1,\n",
      "          'shoving': 1,\n",
      "          'much': 1,\n",
      "          'cranium': 1,\n",
      "          'lethal': 1,\n",
      "          'none': 1,\n",
      "          'neater': 1,\n",
      "          'touches': 1,\n",
      "          'brings': 1,\n",
      "          'arrangement': 1,\n",
      "          'ditching': 1,\n",
      "          'childhood': 1,\n",
      "          'memories': 1,\n",
      "          'followed': 1,\n",
      "          'token': 1,\n",
      "          'fashion': 1,\n",
      "          'nfor': 1,\n",
      "          'trouble': 1,\n",
      "          'gets': 1,\n",
      "          'chased': 1,\n",
      "          'seem': 1,\n",
      "          'guys': 1,\n",
      "          'hightech': 1,\n",
      "          'thrillers': 1,\n",
      "          'nwhats': 1,\n",
      "          'funny': 1,\n",
      "          'watch': 1,\n",
      "          'gangster': 1,\n",
      "          'made': 1,\n",
      "          'japan': 1,\n",
      "          'gobs': 1,\n",
      "          'genuine': 1,\n",
      "          'behavior': 1,\n",
      "          'ethics': 1,\n",
      "          'room': 1,\n",
      "          'simply': 1,\n",
      "          'used': 1,\n",
      "          'point': 1,\n",
      "          'guns': 1,\n",
      "          'wave': 1,\n",
      "          'swords': 1,\n",
      "          'flaunt': 1,\n",
      "          'tattoos': 1,\n",
      "          'grimace': 1,\n",
      "          'menacingly': 1,\n",
      "          'n': 1,\n",
      "          'go': 1,\n",
      "          'gangsters': 1,\n",
      "          'criminals': 1,\n",
      "          'many': 1,\n",
      "          'ethnicities': 1,\n",
      "          'gotten': 1,\n",
      "          'thoughtful': 1,\n",
      "          'examinations': 1,\n",
      "          'bound': 1,\n",
      "          'honor': 1,\n",
      "          'sugar': 1,\n",
      "          'hill': 1,\n",
      "          'american': 1,\n",
      "          'asians': 1,\n",
      "          'remain': 1,\n",
      "          'perpetually': 1,\n",
      "          'stereotyped': 1,\n",
      "          'nbut': 1,\n",
      "          'essay': 1,\n",
      "          'nanyway': 1,\n",
      "          'runs': 1,\n",
      "          'eventually': 1,\n",
      "          'winds': 1,\n",
      "          'nwhy': 1,\n",
      "          'nmaybe': 1,\n",
      "          'cheaper': 1,\n",
      "          'fake': 1,\n",
      "          'york': 1,\n",
      "          'nthere': 1,\n",
      "          'meets': 1,\n",
      "          'assortment': 1,\n",
      "          'odd': 1,\n",
      "          'characters': 1,\n",
      "          'icet': 1,\n",
      "          'dolph': 1,\n",
      "          'lundgren': 1,\n",
      "          'henry': 1,\n",
      "          'rollins': 1,\n",
      "          'play': 1,\n",
      "          'gallery': 1,\n",
      "          'weirdos': 1,\n",
      "          'deals': 1,\n",
      "          'depth': 1,\n",
      "          'pieces': 1,\n",
      "          'furniture': 1,\n",
      "          'nit': 1,\n",
      "          'turns': 1,\n",
      "          'else': 1,\n",
      "          'save': 1,\n",
      "          'lot': 1,\n",
      "          'people': 1,\n",
      "          'wants': 1,\n",
      "          'kill': 1,\n",
      "          'nhandled': 1,\n",
      "          'right': 1,\n",
      "          'absorbing': 1,\n",
      "          'manages': 1,\n",
      "          'mangle': 1,\n",
      "          'chance': 1,\n",
      "          'real': 1,\n",
      "          'sympathy': 1,\n",
      "          'every': 1,\n",
      "          'opportunity': 1,\n",
      "          'feel': 1,\n",
      "          'phoned': 1,\n",
      "          'better': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'brazil': 1,\n",
      "          'neverything': 1,\n",
      "          'looks': 1,\n",
      "          'rundown': 1,\n",
      "          'scummy': 1,\n",
      "          'everyone': 1,\n",
      "          'dresses': 1,\n",
      "          'theyre': 1,\n",
      "          'punk': 1,\n",
      "          'rockers': 1,\n",
      "          'videophones': 1,\n",
      "          'commonplace': 1,\n",
      "          'nsnore': 1,\n",
      "          'really': 1,\n",
      "          'interesting': 1,\n",
      "          'flourish': 1,\n",
      "          'extended': 1,\n",
      "          'depiction': 1,\n",
      "          'internet': 1,\n",
      "          'might': 1,\n",
      "          'complete': 1,\n",
      "          'vr': 1,\n",
      "          'goggles': 1,\n",
      "          'feedback': 1,\n",
      "          'gloves': 1,\n",
      "          'kept': 1,\n",
      "          'thinking': 1,\n",
      "          'relatively': 1,\n",
      "          'untechnical': 1,\n",
      "          'fellow': 1,\n",
      "          'think': 1,\n",
      "          'behave': 1,\n",
      "          'na': 1,\n",
      "          'hacker': 1,\n",
      "          'caliber': 1,\n",
      "          'blasting': 1,\n",
      "          'away': 1,\n",
      "          'commandline': 1,\n",
      "          'function': 1,\n",
      "          'instead': 1,\n",
      "          'wasting': 1,\n",
      "          'time': 1,\n",
      "          'twiddling': 1,\n",
      "          'holograms': 1,\n",
      "          'cinematic': 1,\n",
      "          'nwhatever': 1,\n",
      "          'nwhat': 1,\n",
      "          'went': 1,\n",
      "          'wrong': 1,\n",
      "          'ngibson': 1,\n",
      "          'wrote': 1,\n",
      "          'screenplay': 1,\n",
      "          'guess': 1,\n",
      "          'part': 1,\n",
      "          'problem': 1,\n",
      "          'works': 1,\n",
      "          'nhis': 1,\n",
      "          'ear': 1,\n",
      "          'dialogue': 1,\n",
      "          'plot': 1,\n",
      "          'advance': 1,\n",
      "          'convulses': 1,\n",
      "          'nfrom': 1,\n",
      "          'probably': 1,\n",
      "          'downhill': 1,\n",
      "          'nrenting': 1,\n",
      "          'sort': 1,\n",
      "          'pointless': 1,\n",
      "          'kicking': 1,\n",
      "          'wounded': 1,\n",
      "          'dog': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 14,\n",
      "          'hit': 7,\n",
      "          'action': 7,\n",
      "          'nthe': 7,\n",
      "          'comedy': 6,\n",
      "          'big': 5,\n",
      "          'nits': 5,\n",
      "          'paris': 5,\n",
      "          'n': 4,\n",
      "          'melvin': 4,\n",
      "          'work': 4,\n",
      "          'turns': 4,\n",
      "          'though': 3,\n",
      "          'never': 3,\n",
      "          'watch': 3,\n",
      "          'way': 3,\n",
      "          'nit': 3,\n",
      "          'lot': 3,\n",
      "          'good': 3,\n",
      "          'doesnt': 3,\n",
      "          'nthey': 3,\n",
      "          'go': 3,\n",
      "          'nothing': 3,\n",
      "          'fun': 3,\n",
      "          'one': 3,\n",
      "          'like': 3,\n",
      "          'cisco': 3,\n",
      "          'interesting': 2,\n",
      "          'awfulness': 2,\n",
      "          'disaster': 2,\n",
      "          'entertaining': 2,\n",
      "          'fails': 2,\n",
      "          'know': 2,\n",
      "          'wong': 2,\n",
      "          'seem': 2,\n",
      "          'hitman': 2,\n",
      "          'bit': 2,\n",
      "          'make': 2,\n",
      "          'ntheyre': 2,\n",
      "          'guys': 2,\n",
      "          'around': 2,\n",
      "          'man': 2,\n",
      "          'named': 2,\n",
      "          'rich': 2,\n",
      "          'powerful': 2,\n",
      "          'girl': 2,\n",
      "          'keiko': 2,\n",
      "          'bad': 2,\n",
      "          'story': 2,\n",
      "          'certainly': 2,\n",
      "          'really': 2,\n",
      "          'true': 2,\n",
      "          'films': 2,\n",
      "          'also': 2,\n",
      "          'bullets': 2,\n",
      "          'makes': 2,\n",
      "          'nthen': 2,\n",
      "          'back': 2,\n",
      "          'scene': 2,\n",
      "          'letter': 2,\n",
      "          'kidnapped': 2,\n",
      "          'nand': 2,\n",
      "          'scenes': 2,\n",
      "          'goofy': 2,\n",
      "          'tone': 2,\n",
      "          'men': 2,\n",
      "          'funny': 2,\n",
      "          'people': 2,\n",
      "          'npeople': 2,\n",
      "          'didnt': 1,\n",
      "          'hate': 1,\n",
      "          'even': 1,\n",
      "          'stupefyingly': 1,\n",
      "          'terrible': 1,\n",
      "          'nfor': 1,\n",
      "          'entirety': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'eyes': 1,\n",
      "          'attached': 1,\n",
      "          'screen': 1,\n",
      "          'got': 1,\n",
      "          'bored': 1,\n",
      "          'ni': 1,\n",
      "          'found': 1,\n",
      "          'unique': 1,\n",
      "          'confused': 1,\n",
      "          'witness': 1,\n",
      "          'thirty': 1,\n",
      "          'car': 1,\n",
      "          'pileup': 1,\n",
      "          'freeway': 1,\n",
      "          'spaghetti': 1,\n",
      "          'bowl': 1,\n",
      "          'nas': 1,\n",
      "          'narrative': 1,\n",
      "          'pure': 1,\n",
      "          'garbage': 1,\n",
      "          'truly': 1,\n",
      "          'deciding': 1,\n",
      "          'genre': 1,\n",
      "          'constantly': 1,\n",
      "          'crossing': 1,\n",
      "          'kinds': 1,\n",
      "          'boundaries': 1,\n",
      "          'reminded': 1,\n",
      "          'grosse': 1,\n",
      "          'pointe': 1,\n",
      "          'blank': 1,\n",
      "          'similar': 1,\n",
      "          'ways': 1,\n",
      "          'fine': 1,\n",
      "          'mix': 1,\n",
      "          'genres': 1,\n",
      "          'makers': 1,\n",
      "          'theyre': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'writer': 1,\n",
      "          'ben': 1,\n",
      "          'ramsey': 1,\n",
      "          'director': 1,\n",
      "          'kirk': 1,\n",
      "          'dont': 1,\n",
      "          'handle': 1,\n",
      "          'material': 1,\n",
      "          'result': 1,\n",
      "          'wants': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'amalgamation': 1,\n",
      "          'case': 1,\n",
      "          'absurd': 1,\n",
      "          'place': 1,\n",
      "          'nbut': 1,\n",
      "          'sure': 1,\n",
      "          'fascinating': 1,\n",
      "          'failure': 1,\n",
      "          'nmarky': 1,\n",
      "          'ner': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'stars': 1,\n",
      "          'surley': 1,\n",
      "          'nhes': 1,\n",
      "          'apparently': 1,\n",
      "          'although': 1,\n",
      "          'tactics': 1,\n",
      "          'rambunctious': 1,\n",
      "          'snipe': 1,\n",
      "          'clean': 1,\n",
      "          'killshe': 1,\n",
      "          'kicks': 1,\n",
      "          'door': 1,\n",
      "          'shoots': 1,\n",
      "          'everything': 1,\n",
      "          'nhe': 1,\n",
      "          'works': 1,\n",
      "          'hitmencisco': 1,\n",
      "          'lou': 1,\n",
      "          'diamond': 1,\n",
      "          'phillips': 1,\n",
      "          'crunch': 1,\n",
      "          'bokeem': 1,\n",
      "          'woodbine': 1,\n",
      "          'vinnie': 1,\n",
      "          'antonio': 1,\n",
      "          'sabbato': 1,\n",
      "          'jr': 1,\n",
      "          'nice': 1,\n",
      "          'bunch': 1,\n",
      "          'muscular': 1,\n",
      "          'stand': 1,\n",
      "          'locker': 1,\n",
      "          'room': 1,\n",
      "          'working': 1,\n",
      "          'compare': 1,\n",
      "          'masturbation': 1,\n",
      "          'sex': 1,\n",
      "          'avery': 1,\n",
      "          'brooks': 1,\n",
      "          'constant': 1,\n",
      "          'need': 1,\n",
      "          'four': 1,\n",
      "          'sloppy': 1,\n",
      "          'hitmen': 1,\n",
      "          'important': 1,\n",
      "          'beyond': 1,\n",
      "          'boss': 1,\n",
      "          'course': 1,\n",
      "          'plot': 1,\n",
      "          'comes': 1,\n",
      "          'decide': 1,\n",
      "          'kidnap': 1,\n",
      "          'young': 1,\n",
      "          'japanese': 1,\n",
      "          'china': 1,\n",
      "          'chow': 1,\n",
      "          'father': 1,\n",
      "          'nwhen': 1,\n",
      "          'ngoddaughter': 1,\n",
      "          'standard': 1,\n",
      "          'stuff': 1,\n",
      "          'new': 1,\n",
      "          'particularly': 1,\n",
      "          'offensive': 1,\n",
      "          'slightest': 1,\n",
      "          'compelling': 1,\n",
      "          'nclearly': 1,\n",
      "          'major': 1,\n",
      "          'selling': 1,\n",
      "          'point': 1,\n",
      "          'john': 1,\n",
      "          'wootype': 1,\n",
      "          'mixed': 1,\n",
      "          'hip': 1,\n",
      "          'sequences': 1,\n",
      "          'resemble': 1,\n",
      "          'recent': 1,\n",
      "          'idea': 1,\n",
      "          'faceoff': 1,\n",
      "          'replacement': 1,\n",
      "          'killers': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'nthere': 1,\n",
      "          'stunts': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'two': 1,\n",
      "          'partners': 1,\n",
      "          'going': 1,\n",
      "          'kill': 1,\n",
      "          'guy': 1,\n",
      "          'use': 1,\n",
      "          'night': 1,\n",
      "          'vision': 1,\n",
      "          'goggles': 1,\n",
      "          'handguns': 1,\n",
      "          'nmelvin': 1,\n",
      "          'breakdancing': 1,\n",
      "          'uses': 1,\n",
      "          'talent': 1,\n",
      "          'avoid': 1,\n",
      "          'knives': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'boring': 1,\n",
      "          'disasters': 1,\n",
      "          'arent': 1,\n",
      "          'nwhat': 1,\n",
      "          'genreshifting': 1,\n",
      "          'madness': 1,\n",
      "          'seems': 1,\n",
      "          'start': 1,\n",
      "          'quirkybutrealistic': 1,\n",
      "          'seen': 1,\n",
      "          'transporting': 1,\n",
      "          'bags': 1,\n",
      "          'human': 1,\n",
      "          'remains': 1,\n",
      "          'soon': 1,\n",
      "          'first': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'bodies': 1,\n",
      "          'flying': 1,\n",
      "          'everywhere': 1,\n",
      "          'somewhere': 1,\n",
      "          'nkeiko': 1,\n",
      "          'spunky': 1,\n",
      "          'little': 1,\n",
      "          'amusing': 1,\n",
      "          'forced': 1,\n",
      "          'read': 1,\n",
      "          'loud': 1,\n",
      "          'indicating': 1,\n",
      "          'littered': 1,\n",
      "          'grammatical': 1,\n",
      "          'errors': 1,\n",
      "          'skew': 1,\n",
      "          'meaning': 1,\n",
      "          'words': 1,\n",
      "          'alone': 1,\n",
      "          'applies': 1,\n",
      "          'serious': 1,\n",
      "          'none': 1,\n",
      "          'irritating': 1,\n",
      "          'moments': 1,\n",
      "          'ordering': 1,\n",
      "          'come': 1,\n",
      "          'office': 1,\n",
      "          'learns': 1,\n",
      "          'gets': 1,\n",
      "          'standing': 1,\n",
      "          'knew': 1,\n",
      "          'let': 1,\n",
      "          'telling': 1,\n",
      "          'find': 1,\n",
      "          'perpetrator': 1,\n",
      "          'played': 1,\n",
      "          'laughs': 1,\n",
      "          'isnt': 1,\n",
      "          'since': 1,\n",
      "          'quite': 1,\n",
      "          'tries': 1,\n",
      "          'fall': 1,\n",
      "          'nthis': 1,\n",
      "          'fly': 1,\n",
      "          'fifteen': 1,\n",
      "          'feet': 1,\n",
      "          'backwards': 1,\n",
      "          'shot': 1,\n",
      "          'handgun': 1,\n",
      "          'ncars': 1,\n",
      "          'land': 1,\n",
      "          'tree': 1,\n",
      "          'branches': 1,\n",
      "          'supported': 1,\n",
      "          'ncharacters': 1,\n",
      "          'betray': 1,\n",
      "          'without': 1,\n",
      "          'second': 1,\n",
      "          'thought': 1,\n",
      "          'ngrenades': 1,\n",
      "          'thrown': 1,\n",
      "          'tight': 1,\n",
      "          'places': 1,\n",
      "          'jump': 1,\n",
      "          'tall': 1,\n",
      "          'buildings': 1,\n",
      "          'survive': 1,\n",
      "          'outrun': 1,\n",
      "          'tumbling': 1,\n",
      "          'cars': 1,\n",
      "          'get': 1,\n",
      "          'falling': 1,\n",
      "          'objects': 1,\n",
      "          'small': 1,\n",
      "          'fractions': 1,\n",
      "          'seconds': 1,\n",
      "          'nmost': 1,\n",
      "          'frustrating': 1,\n",
      "          'definition': 1,\n",
      "          'anything': 1,\n",
      "          'subtle': 1,\n",
      "          'quiet': 1,\n",
      "          'skilled': 1,\n",
      "          'individuals': 1,\n",
      "          'socially': 1,\n",
      "          'depraved': 1,\n",
      "          'militia': 1,\n",
      "          'extensive': 1,\n",
      "          'collection': 1,\n",
      "          'firearms': 1,\n",
      "          'garage': 1,\n",
      "          'including': 1,\n",
      "          'missile': 1,\n",
      "          'launchers': 1,\n",
      "          'handheld': 1,\n",
      "          'machineguns': 1,\n",
      "          'characters': 1,\n",
      "          'trait': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'distinguishes': 1,\n",
      "          'rest': 1,\n",
      "          'obviously': 1,\n",
      "          'deep': 1,\n",
      "          'acting': 1,\n",
      "          'kind': 1,\n",
      "          'thoughwahlberg': 1,\n",
      "          'actor': 1,\n",
      "          'innocuous': 1,\n",
      "          'presence': 1,\n",
      "          'charming': 1,\n",
      "          'silly': 1,\n",
      "          'sort': 1,\n",
      "          'nphillips': 1,\n",
      "          'psychotic': 1,\n",
      "          'character': 1,\n",
      "          'christina': 1,\n",
      "          'applegate': 1,\n",
      "          'plays': 1,\n",
      "          'melvins': 1,\n",
      "          'fianc': 1,\n",
      "          'e': 1,\n",
      "          'convincingly': 1,\n",
      "          'airheaded': 1,\n",
      "          'unknowingly': 1,\n",
      "          'spoofs': 1,\n",
      "          'trying': 1,\n",
      "          'funniest': 1,\n",
      "          'parts': 1,\n",
      "          'supplied': 1,\n",
      "          'actors': 1,\n",
      "          'numerous': 1,\n",
      "          'failed': 1,\n",
      "          'attempts': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'oneliners': 1,\n",
      "          'believe': 1,\n",
      "          'unrealistic': 1,\n",
      "          'completely': 1,\n",
      "          'unintentional': 1,\n",
      "          'ndespite': 1,\n",
      "          'must': 1,\n",
      "          'reiterate': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'nyou': 1,\n",
      "          'cherish': 1,\n",
      "          'nif': 1,\n",
      "          'embrace': 1,\n",
      "          'catastrophe': 1,\n",
      "          'might': 1,\n",
      "          'enjoy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'nhowever': 4,\n",
      "          'lynch': 3,\n",
      "          'b': 3,\n",
      "          'grade': 3,\n",
      "          'action': 3,\n",
      "          'madsen': 3,\n",
      "          'richard': 2,\n",
      "          'role': 2,\n",
      "          'montana': 2,\n",
      "          'gio': 2,\n",
      "          'played': 2,\n",
      "          'rosie': 2,\n",
      "          'vela': 2,\n",
      "          'forgettable': 2,\n",
      "          'features': 1,\n",
      "          'chief': 1,\n",
      "          'villain': 1,\n",
      "          'know': 1,\n",
      "          'expect': 1,\n",
      "          'nothing': 1,\n",
      "          'movie': 1,\n",
      "          'since': 1,\n",
      "          'also': 1,\n",
      "          'featured': 1,\n",
      "          'michael': 1,\n",
      "          'capable': 1,\n",
      "          'character': 1,\n",
      "          'actor': 1,\n",
      "          'time': 1,\n",
      "          'protagonist': 1,\n",
      "          'author': 1,\n",
      "          'review': 1,\n",
      "          'decided': 1,\n",
      "          'give': 1,\n",
      "          'benefit': 1,\n",
      "          'doubt': 1,\n",
      "          'first': 1,\n",
      "          'scenes': 1,\n",
      "          'show': 1,\n",
      "          'clear': 1,\n",
      "          'credentials': 1,\n",
      "          'plays': 1,\n",
      "          'tough': 1,\n",
      "          'policeman': 1,\n",
      "          'raids': 1,\n",
      "          'drug': 1,\n",
      "          'warehouse': 1,\n",
      "          'make': 1,\n",
      "          'life': 1,\n",
      "          'miserable': 1,\n",
      "          'local': 1,\n",
      "          'crime': 1,\n",
      "          'lord': 1,\n",
      "          'mario': 1,\n",
      "          'raid': 1,\n",
      "          'partially': 1,\n",
      "          'successful': 1,\n",
      "          'getting': 1,\n",
      "          'rap': 1,\n",
      "          'nso': 1,\n",
      "          'begins': 1,\n",
      "          'private': 1,\n",
      "          'war': 1,\n",
      "          'trying': 1,\n",
      "          'penetrate': 1,\n",
      "          'organisation': 1,\n",
      "          'pretending': 1,\n",
      "          'corrupt': 1,\n",
      "          'nin': 1,\n",
      "          'process': 1,\n",
      "          'meets': 1,\n",
      "          'gios': 1,\n",
      "          'mistress': 1,\n",
      "          'gina': 1,\n",
      "          'zamora': 1,\n",
      "          'starts': 1,\n",
      "          'relationship': 1,\n",
      "          'nalthough': 1,\n",
      "          'doesnt': 1,\n",
      "          'stink': 1,\n",
      "          'like': 1,\n",
      "          'many': 1,\n",
      "          'similar': 1,\n",
      "          'films': 1,\n",
      "          'inside': 1,\n",
      "          'edge': 1,\n",
      "          'mostly': 1,\n",
      "          'routine': 1,\n",
      "          'nnobody': 1,\n",
      "          'actually': 1,\n",
      "          'puts': 1,\n",
      "          'much': 1,\n",
      "          'effort': 1,\n",
      "          'including': 1,\n",
      "          'especially': 1,\n",
      "          'case': 1,\n",
      "          'uninspired': 1,\n",
      "          'screenwriter': 1,\n",
      "          'william': 1,\n",
      "          'tannen': 1,\n",
      "          'director': 1,\n",
      "          'warren': 1,\n",
      "          'clarke': 1,\n",
      "          'nthe': 1,\n",
      "          'element': 1,\n",
      "          'presence': 1,\n",
      "          'former': 1,\n",
      "          'supermodel': 1,\n",
      "          'apart': 1,\n",
      "          'showing': 1,\n",
      "          'impressive': 1,\n",
      "          'looks': 1,\n",
      "          'shows': 1,\n",
      "          'singing': 1,\n",
      "          'talent': 1,\n",
      "          'isnt': 1,\n",
      "          'reason': 1,\n",
      "          'enough': 1,\n",
      "          'viewers': 1,\n",
      "          'spend': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'watching': 1,\n",
      "          'would': 1,\n",
      "          'likelihood': 1,\n",
      "          'forget': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'board': 5,\n",
      "          'carrot': 5,\n",
      "          'edison': 5,\n",
      "          'npredictably': 4,\n",
      "          'movie': 3,\n",
      "          'top': 3,\n",
      "          'nchairman': 3,\n",
      "          'plot': 3,\n",
      "          'say': 3,\n",
      "          'job': 3,\n",
      "          'nthe': 3,\n",
      "          'debut': 2,\n",
      "          'dollar': 2,\n",
      "          'chairman': 2,\n",
      "          'known': 2,\n",
      "          'lead': 2,\n",
      "          'role': 2,\n",
      "          'tops': 2,\n",
      "          'least': 2,\n",
      "          'named': 2,\n",
      "          'surfer': 2,\n",
      "          'past': 2,\n",
      "          'soon': 2,\n",
      "          'armand': 2,\n",
      "          'mcmillan': 2,\n",
      "          'old': 2,\n",
      "          'man': 2,\n",
      "          'absolutely': 2,\n",
      "          'whose': 2,\n",
      "          'thornesmith': 2,\n",
      "          'nothing': 2,\n",
      "          'give': 2,\n",
      "          'meyer': 2,\n",
      "          'septien': 2,\n",
      "          'one': 2,\n",
      "          'bad': 2,\n",
      "          'every': 2,\n",
      "          'deserves': 2,\n",
      "          'warning': 1,\n",
      "          'signs': 1,\n",
      "          'terrible': 1,\n",
      "          'nmaking': 1,\n",
      "          'theater': 1,\n",
      "          'nlocally': 1,\n",
      "          'nhaving': 1,\n",
      "          'annoying': 1,\n",
      "          'prop': 1,\n",
      "          'comic': 1,\n",
      "          'scott': 1,\n",
      "          'thompson': 1,\n",
      "          'better': 1,\n",
      "          'nhow': 1,\n",
      "          'overly': 1,\n",
      "          'exhausted': 1,\n",
      "          'paper': 1,\n",
      "          'thin': 1,\n",
      "          'approached': 1,\n",
      "          'utter': 1,\n",
      "          'incompetence': 1,\n",
      "          'ndid': 1,\n",
      "          'somebody': 1,\n",
      "          'nthats': 1,\n",
      "          'right': 1,\n",
      "          'long': 1,\n",
      "          'dreaded': 1,\n",
      "          'major': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'starring': 1,\n",
      "          'poking': 1,\n",
      "          'handful': 1,\n",
      "          'theaters': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'stars': 1,\n",
      "          'obnoxious': 1,\n",
      "          'wannabezany': 1,\n",
      "          'king': 1,\n",
      "          'redheaded': 1,\n",
      "          'standup': 1,\n",
      "          'comics': 1,\n",
      "          'lazy': 1,\n",
      "          'creative': 1,\n",
      "          'inventive': 1,\n",
      "          'uneventful': 1,\n",
      "          'generation': 1,\n",
      "          'x': 1,\n",
      "          'er': 1,\n",
      "          'nliving': 1,\n",
      "          'pair': 1,\n",
      "          'dudes': 1,\n",
      "          'small': 1,\n",
      "          'rented': 1,\n",
      "          'house': 1,\n",
      "          'bounces': 1,\n",
      "          'always': 1,\n",
      "          'squandering': 1,\n",
      "          'away': 1,\n",
      "          'money': 1,\n",
      "          'eccentric': 1,\n",
      "          'inventions': 1,\n",
      "          'ignoring': 1,\n",
      "          'crucial': 1,\n",
      "          'responsibilities': 1,\n",
      "          'rent': 1,\n",
      "          'nthis': 1,\n",
      "          'crabby': 1,\n",
      "          'landlady': 1,\n",
      "          'ms': 1,\n",
      "          'krubavitch': 1,\n",
      "          'estelle': 1,\n",
      "          'harris': 1,\n",
      "          'best': 1,\n",
      "          'george': 1,\n",
      "          'constanzas': 1,\n",
      "          'mother': 1,\n",
      "          'seinfeld': 1,\n",
      "          'threatening': 1,\n",
      "          'eviction': 1,\n",
      "          'due': 1,\n",
      "          'expenses': 1,\n",
      "          'arent': 1,\n",
      "          'furnished': 1,\n",
      "          'post': 1,\n",
      "          'haste': 1,\n",
      "          'nas': 1,\n",
      "          'luck': 1,\n",
      "          'would': 1,\n",
      "          'meets': 1,\n",
      "          'jack': 1,\n",
      "          'warden': 1,\n",
      "          'dude': 1,\n",
      "          'happens': 1,\n",
      "          'president': 1,\n",
      "          'multimillion': 1,\n",
      "          'industries': 1,\n",
      "          'nsharing': 1,\n",
      "          'passion': 1,\n",
      "          'riding': 1,\n",
      "          'waves': 1,\n",
      "          'deeply': 1,\n",
      "          'impacted': 1,\n",
      "          'young': 1,\n",
      "          'inventors': 1,\n",
      "          'notebook': 1,\n",
      "          'dreams': 1,\n",
      "          'ideas': 1,\n",
      "          'dies': 1,\n",
      "          'afterward': 1,\n",
      "          'learns': 1,\n",
      "          'benefactor': 1,\n",
      "          'armands': 1,\n",
      "          'acquires': 1,\n",
      "          'entire': 1,\n",
      "          'corporation': 1,\n",
      "          'maintain': 1,\n",
      "          'productivity': 1,\n",
      "          'knowledge': 1,\n",
      "          'business': 1,\n",
      "          'world': 1,\n",
      "          'bitter': 1,\n",
      "          'nephew': 1,\n",
      "          'larry': 1,\n",
      "          'miller': 1,\n",
      "          'lesser': 1,\n",
      "          'inheritance': 1,\n",
      "          'fuels': 1,\n",
      "          'resentment': 1,\n",
      "          'elaborate': 1,\n",
      "          'sabotage': 1,\n",
      "          'attractive': 1,\n",
      "          'employee': 1,\n",
      "          'courtney': 1,\n",
      "          'initial': 1,\n",
      "          'repulsion': 1,\n",
      "          'transform': 1,\n",
      "          'love': 1,\n",
      "          'doofy': 1,\n",
      "          'protagonist': 1,\n",
      "          'knows': 1,\n",
      "          'fight': 1,\n",
      "          'odds': 1,\n",
      "          'company': 1,\n",
      "          'profitable': 1,\n",
      "          'successful': 1,\n",
      "          'turnaround': 1,\n",
      "          'ever': 1,\n",
      "          'ran': 1,\n",
      "          'things': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'greed': 1,\n",
      "          'nits': 1,\n",
      "          'though': 1,\n",
      "          'writers': 1,\n",
      "          'turi': 1,\n",
      "          'al': 1,\n",
      "          'alex': 1,\n",
      "          'zamm': 1,\n",
      "          'also': 1,\n",
      "          'wrote': 1,\n",
      "          'leprechaun': 1,\n",
      "          '2': 1,\n",
      "          'together': 1,\n",
      "          'npulled': 1,\n",
      "          'hat': 1,\n",
      "          'worked': 1,\n",
      "          'jokes': 1,\n",
      "          'surprises': 1,\n",
      "          'developments': 1,\n",
      "          'run': 1,\n",
      "          'predictable': 1,\n",
      "          'path': 1,\n",
      "          'may': 1,\n",
      "          'signature': 1,\n",
      "          'brazen': 1,\n",
      "          'red': 1,\n",
      "          'hairdo': 1,\n",
      "          'sets': 1,\n",
      "          'apart': 1,\n",
      "          'myriad': 1,\n",
      "          'similar': 1,\n",
      "          'films': 1,\n",
      "          'na': 1,\n",
      "          'speaks': 1,\n",
      "          'nwhats': 1,\n",
      "          'left': 1,\n",
      "          'element': 1,\n",
      "          'possesses': 1,\n",
      "          'shameful': 1,\n",
      "          'retread': 1,\n",
      "          'movies': 1,\n",
      "          'script': 1,\n",
      "          '100': 1,\n",
      "          'recycled': 1,\n",
      "          'direction': 1,\n",
      "          'hokey': 1,\n",
      "          'acting': 1,\n",
      "          'horrible': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'accomplishment': 1,\n",
      "          'surely': 1,\n",
      "          'medal': 1,\n",
      "          'honor': 1,\n",
      "          'nshe': 1,\n",
      "          'certainly': 1,\n",
      "          'went': 1,\n",
      "          'beyond': 1,\n",
      "          'call': 1,\n",
      "          'duty': 1,\n",
      "          'kiss': 1,\n",
      "          'n': 1,\n",
      "          'barf': 1,\n",
      "          'bag': 1,\n",
      "          'please': 1,\n",
      "          'nmovies': 1,\n",
      "          'like': 1,\n",
      "          'audience': 1,\n",
      "          'ponder': 1,\n",
      "          'many': 1,\n",
      "          'synonyms': 1,\n",
      "          'really': 1,\n",
      "          'without': 1,\n",
      "          'doubt': 1,\n",
      "          'way': 1,\n",
      "          'wont': 1,\n",
      "          'end': 1,\n",
      "          'everybodys': 1,\n",
      "          'bottom': 1,\n",
      "          'ten': 1,\n",
      "          'year': 1,\n",
      "          'list': 1,\n",
      "          'lucky': 1,\n",
      "          'enough': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'njust': 1,\n",
      "          'cant': 1,\n",
      "          'miss': 1,\n",
      "          'outlandish': 1,\n",
      "          'fiery': 1,\n",
      "          'mane': 1,\n",
      "          'dont': 1,\n",
      "          'skimp': 1,\n",
      "          'avoiding': 1,\n",
      "          'abhorrent': 1,\n",
      "          'feature': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 5,\n",
      "          'wood': 5,\n",
      "          'dont': 4,\n",
      "          'woke': 4,\n",
      "          'early': 4,\n",
      "          'day': 4,\n",
      "          'died': 4,\n",
      "          'film': 4,\n",
      "          'nthe': 4,\n",
      "          'ed': 4,\n",
      "          'ni': 4,\n",
      "          'around': 4,\n",
      "          'minutes': 3,\n",
      "          'comedy': 3,\n",
      "          'bad': 3,\n",
      "          'nit': 3,\n",
      "          'made': 3,\n",
      "          'look': 2,\n",
      "          'looking': 2,\n",
      "          'surrealistic': 2,\n",
      "          'dialogue': 2,\n",
      "          'nits': 2,\n",
      "          'weird': 2,\n",
      "          'ever': 2,\n",
      "          'style': 2,\n",
      "          '20': 2,\n",
      "          'reason': 2,\n",
      "          'script': 2,\n",
      "          'plan': 2,\n",
      "          '9': 2,\n",
      "          'films': 2,\n",
      "          'good': 2,\n",
      "          'really': 2,\n",
      "          'zane': 2,\n",
      "          'money': 2,\n",
      "          'nhe': 2,\n",
      "          'upon': 2,\n",
      "          'people': 2,\n",
      "          'think': 2,\n",
      "          'either': 2,\n",
      "          'would': 2,\n",
      "          'short': 2,\n",
      "          'seem': 2,\n",
      "          'already': 2,\n",
      "          'went': 2,\n",
      "          'wrong': 2,\n",
      "          'make': 2,\n",
      "          'making': 2,\n",
      "          'thrown': 2,\n",
      "          'makes': 2,\n",
      "          'head': 2,\n",
      "          'spin': 2,\n",
      "          'ren': 1,\n",
      "          'magritte': 1,\n",
      "          'painting': 1,\n",
      "          'search': 1,\n",
      "          'deeper': 1,\n",
      "          'meaning': 1,\n",
      "          'nyou': 1,\n",
      "          'likewise': 1,\n",
      "          '88': 1,\n",
      "          'straight': 1,\n",
      "          'nsurrealist': 1,\n",
      "          'works': 1,\n",
      "          'notable': 1,\n",
      "          'quirks': 1,\n",
      "          'fun': 1,\n",
      "          'quirk': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'exhausting': 1,\n",
      "          'nthat': 1,\n",
      "          'experience': 1,\n",
      "          'hyperactive': 1,\n",
      "          'silent': 1,\n",
      "          'movie': 1,\n",
      "          'lots': 1,\n",
      "          'atmospheric': 1,\n",
      "          'music': 1,\n",
      "          'occasional': 1,\n",
      "          'screams': 1,\n",
      "          'sound': 1,\n",
      "          'effects': 1,\n",
      "          'nobody': 1,\n",
      "          'utters': 1,\n",
      "          'audible': 1,\n",
      "          'word': 1,\n",
      "          'nthough': 1,\n",
      "          'distinctive': 1,\n",
      "          'unique': 1,\n",
      "          'wore': 1,\n",
      "          'thin': 1,\n",
      "          'progressed': 1,\n",
      "          'watching': 1,\n",
      "          'became': 1,\n",
      "          'chore': 1,\n",
      "          'got': 1,\n",
      "          'filmed': 1,\n",
      "          'written': 1,\n",
      "          'pseudolegendary': 1,\n",
      "          'man': 1,\n",
      "          'behind': 1,\n",
      "          'classics': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'night': 1,\n",
      "          'ghouls': 1,\n",
      "          'joke': 1,\n",
      "          'course': 1,\n",
      "          'theyre': 1,\n",
      "          'humorous': 1,\n",
      "          'inanity': 1,\n",
      "          'become': 1,\n",
      "          'hits': 1,\n",
      "          'unfortunatly': 1,\n",
      "          'stars': 1,\n",
      "          'billy': 1,\n",
      "          'titanic': 1,\n",
      "          'dangerous': 1,\n",
      "          'lunatic': 1,\n",
      "          'overpowers': 1,\n",
      "          'nurse': 1,\n",
      "          'escapes': 1,\n",
      "          'mental': 1,\n",
      "          'hospital': 1,\n",
      "          'proceeds': 1,\n",
      "          'wonder': 1,\n",
      "          'stealing': 1,\n",
      "          'car': 1,\n",
      "          'clothes': 1,\n",
      "          'load': 1,\n",
      "          'nour': 1,\n",
      "          'thief': 1,\n",
      "          'reaches': 1,\n",
      "          'cemetery': 1,\n",
      "          'witnesses': 1,\n",
      "          'bizarre': 1,\n",
      "          'ritual': 1,\n",
      "          'falls': 1,\n",
      "          'asleep': 1,\n",
      "          'finds': 1,\n",
      "          'literally': 1,\n",
      "          'hole': 1,\n",
      "          'gone': 1,\n",
      "          'nfor': 1,\n",
      "          'whatever': 1,\n",
      "          'bent': 1,\n",
      "          'getting': 1,\n",
      "          'hardunearned': 1,\n",
      "          'cash': 1,\n",
      "          'back': 1,\n",
      "          'considering': 1,\n",
      "          'easily': 1,\n",
      "          'stole': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'didnt': 1,\n",
      "          'go': 1,\n",
      "          'steal': 1,\n",
      "          'comes': 1,\n",
      "          'list': 1,\n",
      "          'mysterious': 1,\n",
      "          'ceremony': 1,\n",
      "          'commences': 1,\n",
      "          'seek': 1,\n",
      "          'kill': 1,\n",
      "          'director': 1,\n",
      "          'aris': 1,\n",
      "          'iliopulos': 1,\n",
      "          'realized': 1,\n",
      "          'glorious': 1,\n",
      "          'minute': 1,\n",
      "          'subject': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'twenty': 1,\n",
      "          'worth': 1,\n",
      "          'material': 1,\n",
      "          'stretched': 1,\n",
      "          'four': 1,\n",
      "          'times': 1,\n",
      "          'length': 1,\n",
      "          'simply': 1,\n",
      "          'overstays': 1,\n",
      "          'dubious': 1,\n",
      "          'welcome': 1,\n",
      "          'grabbed': 1,\n",
      "          'attention': 1,\n",
      "          'beginning': 1,\n",
      "          'gradually': 1,\n",
      "          'lost': 1,\n",
      "          'point': 1,\n",
      "          'halfway': 1,\n",
      "          'weary': 1,\n",
      "          'might': 1,\n",
      "          'odd': 1,\n",
      "          'furiously': 1,\n",
      "          'paced': 1,\n",
      "          'tedious': 1,\n",
      "          'surprise': 1,\n",
      "          'wear': 1,\n",
      "          'consider': 1,\n",
      "          'repetitive': 1,\n",
      "          'guess': 1,\n",
      "          'though': 1,\n",
      "          'could': 1,\n",
      "          'fooled': 1,\n",
      "          'nunlike': 1,\n",
      "          'tries': 1,\n",
      "          'funny': 1,\n",
      "          'fails': 1,\n",
      "          'instead': 1,\n",
      "          'way': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'inherently': 1,\n",
      "          'fact': 1,\n",
      "          'sense': 1,\n",
      "          'someone': 1,\n",
      "          'unintentional': 1,\n",
      "          'comedies': 1,\n",
      "          'take': 1,\n",
      "          'stab': 1,\n",
      "          'real': 1,\n",
      "          'nwhether': 1,\n",
      "          'actually': 1,\n",
      "          'well': 1,\n",
      "          'never': 1,\n",
      "          'know': 1,\n",
      "          'case': 1,\n",
      "          'failure': 1,\n",
      "          'njonathan': 1,\n",
      "          'taylor': 1,\n",
      "          'thomas': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'summer': 1,\n",
      "          'phoenix': 1,\n",
      "          'john': 1,\n",
      "          'ritter': 1,\n",
      "          'others': 1,\n",
      "          'show': 1,\n",
      "          'pointless': 1,\n",
      "          'cameos': 1,\n",
      "          'nricci': 1,\n",
      "          'example': 1,\n",
      "          'plays': 1,\n",
      "          'prostitute': 1,\n",
      "          'nher': 1,\n",
      "          'role': 1,\n",
      "          'consists': 1,\n",
      "          'dancing': 1,\n",
      "          'motel': 1,\n",
      "          'room': 1,\n",
      "          'nthomas': 1,\n",
      "          'astonished': 1,\n",
      "          'onlooker': 1,\n",
      "          'woman': 1,\n",
      "          'gets': 1,\n",
      "          'cliff': 1,\n",
      "          'nwas': 1,\n",
      "          'home': 1,\n",
      "          'improvement': 1,\n",
      "          'teen': 1,\n",
      "          'heartthrob': 1,\n",
      "          'desperate': 1,\n",
      "          'work': 1,\n",
      "          'nzane': 1,\n",
      "          'meanwhile': 1,\n",
      "          'occupies': 1,\n",
      "          'faces': 1,\n",
      "          'camera': 1,\n",
      "          'called': 1,\n",
      "          'run': 1,\n",
      "          'wildly': 1,\n",
      "          'beat': 1,\n",
      "          'nlack': 1,\n",
      "          'ultimate': 1,\n",
      "          'caricature': 1,\n",
      "          'carnival': 1,\n",
      "          'sideshow': 1,\n",
      "          'climax': 1,\n",
      "          'manages': 1,\n",
      "          'demonstrate': 1,\n",
      "          'everything': 1,\n",
      "          'nobudget': 1,\n",
      "          'production': 1,\n",
      "          'desperately': 1,\n",
      "          'unfunny': 1,\n",
      "          'thinks': 1,\n",
      "          'funniest': 1,\n",
      "          'thing': 1,\n",
      "          'since': 1,\n",
      "          'spontaneously': 1,\n",
      "          'confusing': 1,\n",
      "          'enough': 1,\n",
      "          'twice': 1,\n",
      "          'fast': 1,\n",
      "          'direction': 1,\n",
      "          'hope': 1,\n",
      "          'another': 1,\n",
      "          'screenplay': 1,\n",
      "          'fitting': 1,\n",
      "          'sendoff': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov': 1,\n",
      "          '137': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'two': 7,\n",
      "          'film': 5,\n",
      "          'movie': 4,\n",
      "          'get': 4,\n",
      "          'club': 4,\n",
      "          'brothers': 4,\n",
      "          'ni': 3,\n",
      "          'see': 3,\n",
      "          'night': 3,\n",
      "          'roxbury': 3,\n",
      "          'doug': 3,\n",
      "          'well': 2,\n",
      "          'ideas': 2,\n",
      "          'decided': 2,\n",
      "          'nbut': 2,\n",
      "          'say': 2,\n",
      "          'nthe': 2,\n",
      "          'one': 2,\n",
      "          'worth': 2,\n",
      "          'greatest': 2,\n",
      "          'seem': 2,\n",
      "          'way': 2,\n",
      "          'friend': 2,\n",
      "          'ntheir': 2,\n",
      "          'nand': 2,\n",
      "          'take': 2,\n",
      "          'ever': 2,\n",
      "          'check': 1,\n",
      "          'score': 1,\n",
      "          'card': 1,\n",
      "          'ive': 1,\n",
      "          'done': 1,\n",
      "          'holiday': 1,\n",
      "          'weekend': 1,\n",
      "          'reads': 1,\n",
      "          'good': 1,\n",
      "          '0': 1,\n",
      "          'dumb': 1,\n",
      "          '1': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'thinking': 1,\n",
      "          'watch': 1,\n",
      "          'defense': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'urged': 1,\n",
      "          'im': 1,\n",
      "          'talking': 1,\n",
      "          'offerings': 1,\n",
      "          'based': 1,\n",
      "          'saturday': 1,\n",
      "          'live': 1,\n",
      "          'skit': 1,\n",
      "          'nwayne': 1,\n",
      "          'garth': 1,\n",
      "          'nrather': 1,\n",
      "          'meet': 1,\n",
      "          'steve': 1,\n",
      "          'butabi': 1,\n",
      "          'actors': 1,\n",
      "          'names': 1,\n",
      "          'mentioning': 1,\n",
      "          'eternal': 1,\n",
      "          'partyers': 1,\n",
      "          'whose': 1,\n",
      "          'ambitions': 1,\n",
      "          'life': 1,\n",
      "          'finding': 1,\n",
      "          'hottest': 1,\n",
      "          'city': 1,\n",
      "          'ndriving': 1,\n",
      "          'dads': 1,\n",
      "          'bmw': 1,\n",
      "          'donning': 1,\n",
      "          'metallic': 1,\n",
      "          'disco': 1,\n",
      "          'suits': 1,\n",
      "          'right': 1,\n",
      "          'miami': 1,\n",
      "          'vice': 1,\n",
      "          'try': 1,\n",
      "          'bribe': 1,\n",
      "          'bouncer': 1,\n",
      "          'nhave': 1,\n",
      "          'met': 1,\n",
      "          'washington': 1,\n",
      "          'roosevelt': 1,\n",
      "          'confidently': 1,\n",
      "          'pull': 1,\n",
      "          'spare': 1,\n",
      "          'pocket': 1,\n",
      "          'change': 1,\n",
      "          'second': 1,\n",
      "          'ambition': 1,\n",
      "          'seems': 1,\n",
      "          'oozing': 1,\n",
      "          'many': 1,\n",
      "          'silly': 1,\n",
      "          'pickup': 1,\n",
      "          'lines': 1,\n",
      "          'humanly': 1,\n",
      "          'possible': 1,\n",
      "          'order': 1,\n",
      "          'start': 1,\n",
      "          'conversation': 1,\n",
      "          'girl': 1,\n",
      "          'let': 1,\n",
      "          'label': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'made': 1,\n",
      "          'heaven': 1,\n",
      "          'says': 1,\n",
      "          'like': 1,\n",
      "          'losers': 1,\n",
      "          'fail': 1,\n",
      "          'either': 1,\n",
      "          'much': 1,\n",
      "          'nhowever': 1,\n",
      "          'fate': 1,\n",
      "          'would': 1,\n",
      "          'accidental': 1,\n",
      "          'meeting': 1,\n",
      "          'whateverhappenedto': 1,\n",
      "          'richard': 1,\n",
      "          'grieco': 1,\n",
      "          'gives': 1,\n",
      "          'allimportant': 1,\n",
      "          'ticket': 1,\n",
      "          'sad': 1,\n",
      "          'lives': 1,\n",
      "          'whole': 1,\n",
      "          'new': 1,\n",
      "          'direction': 1,\n",
      "          'nthey': 1,\n",
      "          'make': 1,\n",
      "          'important': 1,\n",
      "          'contact': 1,\n",
      "          'owner': 1,\n",
      "          'believes': 1,\n",
      "          'uncanny': 1,\n",
      "          'insight': 1,\n",
      "          'scene': 1,\n",
      "          'mistaken': 1,\n",
      "          'rich': 1,\n",
      "          'swingers': 1,\n",
      "          'voluptuous': 1,\n",
      "          'young': 1,\n",
      "          'women': 1,\n",
      "          'newfound': 1,\n",
      "          'popularity': 1,\n",
      "          'impress': 1,\n",
      "          'father': 1,\n",
      "          'plans': 1,\n",
      "          'unfortunate': 1,\n",
      "          'thing': 1,\n",
      "          'onejoke': 1,\n",
      "          'joke': 1,\n",
      "          'nactually': 1,\n",
      "          'theres': 1,\n",
      "          '10': 1,\n",
      "          'mintues': 1,\n",
      "          'tolerable': 1,\n",
      "          'stuff': 1,\n",
      "          'nalas': 1,\n",
      "          'long': 1,\n",
      "          'tv': 1,\n",
      "          'short': 1,\n",
      "          'featurelength': 1,\n",
      "          'nthus': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'material': 1,\n",
      "          'sustain': 1,\n",
      "          '83minute': 1,\n",
      "          'ntheres': 1,\n",
      "          'plot': 1,\n",
      "          'found': 1,\n",
      "          'everything': 1,\n",
      "          'culminate': 1,\n",
      "          'opportunity': 1,\n",
      "          'execute': 1,\n",
      "          'trademark': 1,\n",
      "          'move': 1,\n",
      "          'snapping': 1,\n",
      "          'heads': 1,\n",
      "          'unison': 1,\n",
      "          'funky': 1,\n",
      "          'beat': 1,\n",
      "          'haddaways': 1,\n",
      "          'europop': 1,\n",
      "          'song': 1,\n",
      "          'love': 1,\n",
      "          'amazed': 1,\n",
      "          'none': 1,\n",
      "          'suffered': 1,\n",
      "          'whiplash': 1,\n",
      "          'nto': 1,\n",
      "          'time': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'daughter': 1,\n",
      "          'businessman': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'wants': 1,\n",
      "          'marry': 1,\n",
      "          'nthis': 1,\n",
      "          'creates': 1,\n",
      "          'friction': 1,\n",
      "          'unlikely': 1,\n",
      "          'pairing': 1,\n",
      "          'also': 1,\n",
      "          'agitate': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'nshes': 1,\n",
      "          'educated': 1,\n",
      "          'forebearing': 1,\n",
      "          'witch': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'complete': 1,\n",
      "          'loser': 1,\n",
      "          'nhow': 1,\n",
      "          'together': 1,\n",
      "          'suppose': 1,\n",
      "          'figure': 1,\n",
      "          'answer': 1,\n",
      "          'question': 1,\n",
      "          'ill': 1,\n",
      "          'figured': 1,\n",
      "          'go': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'entertainment': 1,\n",
      "          'wont': 1,\n",
      "          'find': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'malick': 3,\n",
      "          'great': 3,\n",
      "          'narration': 3,\n",
      "          'terrence': 2,\n",
      "          'made': 2,\n",
      "          'war': 2,\n",
      "          'nick': 2,\n",
      "          'nolte': 2,\n",
      "          'nthe': 2,\n",
      "          'best': 2,\n",
      "          'koteas': 2,\n",
      "          'could': 2,\n",
      "          'truly': 2,\n",
      "          'story': 2,\n",
      "          'version': 2,\n",
      "          'excellent': 1,\n",
      "          '90': 1,\n",
      "          'minute': 1,\n",
      "          'adaptation': 1,\n",
      "          'james': 1,\n",
      "          'jones': 1,\n",
      "          'world': 1,\n",
      "          'ii': 1,\n",
      "          'novel': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'buried': 1,\n",
      "          'within': 1,\n",
      "          'overlong': 1,\n",
      "          'overreaching': 1,\n",
      "          '3hour': 1,\n",
      "          'long': 1,\n",
      "          'pseudoepic': 1,\n",
      "          'nthis': 1,\n",
      "          'shame': 1,\n",
      "          'features': 1,\n",
      "          'outstanding': 1,\n",
      "          'performance': 1,\n",
      "          'scene': 1,\n",
      "          'noltes': 1,\n",
      "          'character': 1,\n",
      "          'lt': 1,\n",
      "          'col': 1,\n",
      "          'tall': 1,\n",
      "          'forced': 1,\n",
      "          'deal': 1,\n",
      "          'direct': 1,\n",
      "          'refusal': 1,\n",
      "          'capt': 1,\n",
      "          'staros': 1,\n",
      "          'elias': 1,\n",
      "          'execute': 1,\n",
      "          'order': 1,\n",
      "          'nnoltes': 1,\n",
      "          'reaction': 1,\n",
      "          'transformation': 1,\n",
      "          'may': 1,\n",
      "          'work': 1,\n",
      "          'career': 1,\n",
      "          'nhad': 1,\n",
      "          'concentrated': 1,\n",
      "          'performances': 1,\n",
      "          'well': 1,\n",
      "          'sean': 1,\n",
      "          'penn': 1,\n",
      "          'woody': 1,\n",
      "          'harrelson': 1,\n",
      "          'john': 1,\n",
      "          'cusack': 1,\n",
      "          'ninstead': 1,\n",
      "          'saddled': 1,\n",
      "          'plodding': 1,\n",
      "          'pacing': 1,\n",
      "          'unnecessary': 1,\n",
      "          'flashbacks': 1,\n",
      "          'voiceover': 1,\n",
      "          'designed': 1,\n",
      "          'telegraph': 1,\n",
      "          'philosophical': 1,\n",
      "          'underpinnings': 1,\n",
      "          'especially': 1,\n",
      "          'annoying': 1,\n",
      "          'much': 1,\n",
      "          'sounded': 1,\n",
      "          'like': 1,\n",
      "          'bad': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'poetry': 1,\n",
      "          'nwith': 1,\n",
      "          'lot': 1,\n",
      "          'editing': 1,\n",
      "          'core': 1,\n",
      "          'transformed': 1,\n",
      "          'classic': 1,\n",
      "          'nhopefully': 1,\n",
      "          'dvd': 1,\n",
      "          'feature': 1,\n",
      "          'options': 1,\n",
      "          'suppress': 1,\n",
      "          'perhaps': 1,\n",
      "          'even': 1,\n",
      "          'provide': 1,\n",
      "          'alternate': 1,\n",
      "          'shorter': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'special': 5,\n",
      "          'effects': 4,\n",
      "          'great': 4,\n",
      "          'n': 4,\n",
      "          'dont': 4,\n",
      "          'away': 4,\n",
      "          'hes': 4,\n",
      "          'ni': 3,\n",
      "          'much': 3,\n",
      "          'little': 3,\n",
      "          'voices': 3,\n",
      "          'nits': 3,\n",
      "          'may': 3,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'came': 2,\n",
      "          'dolittle': 2,\n",
      "          'eddie': 2,\n",
      "          'murphy': 2,\n",
      "          'character': 2,\n",
      "          'comic': 2,\n",
      "          'actors': 2,\n",
      "          'supply': 2,\n",
      "          'nthey': 2,\n",
      "          'possibly': 2,\n",
      "          'ncant': 2,\n",
      "          'miss': 2,\n",
      "          'nafter': 2,\n",
      "          'three': 2,\n",
      "          'let': 2,\n",
      "          'movie': 2,\n",
      "          'director': 2,\n",
      "          'script': 2,\n",
      "          'e': 2,\n",
      "          'thomas': 2,\n",
      "          'cast': 2,\n",
      "          'less': 2,\n",
      "          'get': 2,\n",
      "          'voice': 2,\n",
      "          'nearly': 2,\n",
      "          'certain': 2,\n",
      "          'theres': 2,\n",
      "          'mouth': 2,\n",
      "          'illsynched': 2,\n",
      "          'timing': 2,\n",
      "          'nthis': 2,\n",
      "          'comedies': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nhere': 2,\n",
      "          'animals': 2,\n",
      "          'far': 2,\n",
      "          'back': 2,\n",
      "          'given': 2,\n",
      "          'years': 2,\n",
      "          'jokes': 2,\n",
      "          'butt': 2,\n",
      "          'cried': 1,\n",
      "          '_babe_': 1,\n",
      "          'admit': 1,\n",
      "          'story': 1,\n",
      "          'dialogue': 1,\n",
      "          'woven': 1,\n",
      "          'together': 1,\n",
      "          'delicately': 1,\n",
      "          'successfully': 1,\n",
      "          'mind': 1,\n",
      "          'lost': 1,\n",
      "          'track': 1,\n",
      "          'childrens': 1,\n",
      "          'yes': 1,\n",
      "          'got': 1,\n",
      "          'overly': 1,\n",
      "          'sentimental': 1,\n",
      "          'nsuch': 1,\n",
      "          'friend': 1,\n",
      "          'power': 1,\n",
      "          'cinema': 1,\n",
      "          'nwhen': 1,\n",
      "          'word': 1,\n",
      "          'using': 1,\n",
      "          'newly': 1,\n",
      "          'developed': 1,\n",
      "          'fx': 1,\n",
      "          'doctor': 1,\n",
      "          'update': 1,\n",
      "          'plays': 1,\n",
      "          'title': 1,\n",
      "          'many': 1,\n",
      "          'anticipation': 1,\n",
      "          'rose': 1,\n",
      "          'expectations': 1,\n",
      "          'cant': 1,\n",
      "          'drop': 1,\n",
      "          'ball': 1,\n",
      "          'one': 1,\n",
      "          'missed': 1,\n",
      "          'nwhat': 1,\n",
      "          'went': 1,\n",
      "          'wrong': 1,\n",
      "          'thought': 1,\n",
      "          'general': 1,\n",
      "          'rules': 1,\n",
      "          '1': 1,\n",
      "          'television': 1,\n",
      "          'actressturnedcomedy': 1,\n",
      "          'near': 1,\n",
      "          'urbanite': 1,\n",
      "          'penny': 1,\n",
      "          'marshalls': 1,\n",
      "          'dreadful': 1,\n",
      "          'preachers': 1,\n",
      "          'wife': 1,\n",
      "          'nbetty': 1,\n",
      "          'worked': 1,\n",
      "          'wonders': 1,\n",
      "          'brady': 1,\n",
      "          'bunch': 1,\n",
      "          'sitcomairiness': 1,\n",
      "          'doesnt': 1,\n",
      "          'quite': 1,\n",
      "          'work': 1,\n",
      "          'lifted': 1,\n",
      "          'generic': 1,\n",
      "          'sitcom': 1,\n",
      "          'iced': 1,\n",
      "          'light': 1,\n",
      "          'doses': 1,\n",
      "          'modern': 1,\n",
      "          'rb': 1,\n",
      "          'ntake': 1,\n",
      "          'black': 1,\n",
      "          'take': 1,\n",
      "          'atrocious': 1,\n",
      "          'soundtrack': 1,\n",
      "          'residue': 1,\n",
      "          'mid80s': 1,\n",
      "          'kirk': 1,\n",
      "          'cameron': 1,\n",
      "          'show': 1,\n",
      "          '2': 1,\n",
      "          'greater': 1,\n",
      "          'individual': 1,\n",
      "          'castmember': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'nit': 1,\n",
      "          'jenna': 1,\n",
      "          'elfman': 1,\n",
      "          'garry': 1,\n",
      "          'schandling': 1,\n",
      "          'john': 1,\n",
      "          'leguizimo': 1,\n",
      "          'ellen': 1,\n",
      "          'degeneres': 1,\n",
      "          'gilbert': 1,\n",
      "          'godfried': 1,\n",
      "          'lineup': 1,\n",
      "          'nothing': 1,\n",
      "          'improvise': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'stereotyped': 1,\n",
      "          'characters': 1,\n",
      "          'onelineatatime': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'sometimes': 1,\n",
      "          'unrecognizable': 1,\n",
      "          'satisfaction': 1,\n",
      "          'linking': 1,\n",
      "          'comedian': 1,\n",
      "          'credits': 1,\n",
      "          'nnow': 1,\n",
      "          'treatment': 1,\n",
      "          'albert': 1,\n",
      "          'brooks': 1,\n",
      "          'brings': 1,\n",
      "          'dignity': 1,\n",
      "          'every': 1,\n",
      "          'project': 1,\n",
      "          'scenes': 1,\n",
      "          'depressed': 1,\n",
      "          'tiger': 1,\n",
      "          'resonate': 1,\n",
      "          'poignancy': 1,\n",
      "          'nnorm': 1,\n",
      "          'mcdonald': 1,\n",
      "          'fares': 1,\n",
      "          'well': 1,\n",
      "          'stray': 1,\n",
      "          'dog': 1,\n",
      "          'learns': 1,\n",
      "          'bond': 1,\n",
      "          'nbut': 1,\n",
      "          'humor': 1,\n",
      "          'nthat': 1,\n",
      "          'rests': 1,\n",
      "          'shoulders': 1,\n",
      "          'chris': 1,\n",
      "          'rock': 1,\n",
      "          'sorely': 1,\n",
      "          'miscast': 1,\n",
      "          'unfunny': 1,\n",
      "          'wiseass': 1,\n",
      "          'guinea': 1,\n",
      "          'pig': 1,\n",
      "          'neven': 1,\n",
      "          '3': 1,\n",
      "          'technicians': 1,\n",
      "          'walk': 1,\n",
      "          'ntheres': 1,\n",
      "          'thats': 1,\n",
      "          'mandatory': 1,\n",
      "          'comedy': 1,\n",
      "          'nto': 1,\n",
      "          'usurped': 1,\n",
      "          'brilliancy': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'mouths': 1,\n",
      "          'lifelike': 1,\n",
      "          'creations': 1,\n",
      "          'jim': 1,\n",
      "          'hensons': 1,\n",
      "          'creature': 1,\n",
      "          'shop': 1,\n",
      "          'travesty': 1,\n",
      "          'say': 1,\n",
      "          'filled': 1,\n",
      "          'muppet': 1,\n",
      "          'movies': 1,\n",
      "          'arent': 1,\n",
      "          'welltimed': 1,\n",
      "          'laughfests': 1,\n",
      "          'right': 1,\n",
      "          'betty': 1,\n",
      "          'clearly': 1,\n",
      "          'head': 1,\n",
      "          'wish': 1,\n",
      "          'could': 1,\n",
      "          'commend': 1,\n",
      "          'theyre': 1,\n",
      "          'merely': 1,\n",
      "          'average': 1,\n",
      "          'ncount': 1,\n",
      "          'number': 1,\n",
      "          'times': 1,\n",
      "          'turned': 1,\n",
      "          'camera': 1,\n",
      "          'notice': 1,\n",
      "          'babe': 1,\n",
      "          'look': 1,\n",
      "          'whos': 1,\n",
      "          'barking': 1,\n",
      "          'clone': 1,\n",
      "          'nyou': 1,\n",
      "          'wondering': 1,\n",
      "          'fare': 1,\n",
      "          'nwell': 1,\n",
      "          'exceptional': 1,\n",
      "          'nutty': 1,\n",
      "          'professor': 1,\n",
      "          'doubt': 1,\n",
      "          'come': 1,\n",
      "          'tied': 1,\n",
      "          'straight': 1,\n",
      "          'man': 1,\n",
      "          'exceptions': 1,\n",
      "          'fears': 1,\n",
      "          'going': 1,\n",
      "          'crazy': 1,\n",
      "          'cry': 1,\n",
      "          'smarterthanyoud': 1,\n",
      "          'expect': 1,\n",
      "          'routine': 1,\n",
      "          'adept': 1,\n",
      "          'unfortunate': 1,\n",
      "          'richard': 1,\n",
      "          'pryor': 1,\n",
      "          'ten': 1,\n",
      "          'ago': 1,\n",
      "          'making': 1,\n",
      "          'lame': 1,\n",
      "          'without': 1,\n",
      "          'bite': 1,\n",
      "          'early': 1,\n",
      "          'whats': 1,\n",
      "          'left': 1,\n",
      "          'nbutt': 1,\n",
      "          'na': 1,\n",
      "          '_lot_': 1,\n",
      "          'guess': 1,\n",
      "          'kids': 1,\n",
      "          'funny': 1,\n",
      "          'stonefaced': 1,\n",
      "          'nif': 1,\n",
      "          'lesson': 1,\n",
      "          'telling': 1,\n",
      "          'us': 1,\n",
      "          'feelings': 1,\n",
      "          'care': 1,\n",
      "          'way': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'didnt': 4,\n",
      "          'pretty': 4,\n",
      "          'much': 4,\n",
      "          'nice': 4,\n",
      "          'berenger': 3,\n",
      "          'panama': 3,\n",
      "          'beginning': 3,\n",
      "          'nbut': 3,\n",
      "          'many': 3,\n",
      "          'action': 3,\n",
      "          'real': 3,\n",
      "          'nit': 3,\n",
      "          'sniper': 2,\n",
      "          'nthis': 2,\n",
      "          'film': 2,\n",
      "          'played': 2,\n",
      "          'seemed': 2,\n",
      "          'get': 2,\n",
      "          'character': 2,\n",
      "          'seems': 2,\n",
      "          'acting': 2,\n",
      "          'think': 2,\n",
      "          'good': 2,\n",
      "          'situations': 2,\n",
      "          'hero': 2,\n",
      "          'nand': 2,\n",
      "          'far': 2,\n",
      "          'heroics': 2,\n",
      "          'photography': 2,\n",
      "          'used': 2,\n",
      "          'saw': 1,\n",
      "          'advanced': 1,\n",
      "          'screening': 1,\n",
      "          'movie': 1,\n",
      "          'last': 1,\n",
      "          'night': 1,\n",
      "          'say': 1,\n",
      "          'wasnt': 1,\n",
      "          'impressed': 1,\n",
      "          'expert': 1,\n",
      "          'marine': 1,\n",
      "          'tom': 1,\n",
      "          'teamed': 1,\n",
      "          'hotshotyoungnoexperienceneverkilledaman': 1,\n",
      "          'new': 1,\n",
      "          'partner': 1,\n",
      "          'take': 1,\n",
      "          'drugkingpins': 1,\n",
      "          'military': 1,\n",
      "          'strong': 1,\n",
      "          'men': 1,\n",
      "          'nsound': 1,\n",
      "          'cliche': 1,\n",
      "          'nthats': 1,\n",
      "          'nbilly': 1,\n",
      "          'zane': 1,\n",
      "          'memphis': 1,\n",
      "          'belle': 1,\n",
      "          'rookie': 1,\n",
      "          'never': 1,\n",
      "          'handle': 1,\n",
      "          'nhe': 1,\n",
      "          'contrary': 1,\n",
      "          'pigheaded': 1,\n",
      "          'wanted': 1,\n",
      "          'smack': 1,\n",
      "          'nthen': 1,\n",
      "          'goes': 1,\n",
      "          'crazy': 1,\n",
      "          'pressure': 1,\n",
      "          'immediately': 1,\n",
      "          'snap': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'blame': 1,\n",
      "          'lie': 1,\n",
      "          'directing': 1,\n",
      "          'editing': 1,\n",
      "          'scriptwriting': 1,\n",
      "          'come': 1,\n",
      "          'together': 1,\n",
      "          'ni': 1,\n",
      "          'actor': 1,\n",
      "          'looked': 1,\n",
      "          'great': 1,\n",
      "          'part': 1,\n",
      "          'covered': 1,\n",
      "          'camo': 1,\n",
      "          'face': 1,\n",
      "          'painted': 1,\n",
      "          'stalking': 1,\n",
      "          'jungle': 1,\n",
      "          'highpower': 1,\n",
      "          'rifle': 1,\n",
      "          'given': 1,\n",
      "          'bad': 1,\n",
      "          'dialogue': 1,\n",
      "          'react': 1,\n",
      "          'logically': 1,\n",
      "          'nthere': 1,\n",
      "          'little': 1,\n",
      "          'logical': 1,\n",
      "          'development': 1,\n",
      "          'characters': 1,\n",
      "          'nmy': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'tendency': 1,\n",
      "          'put': 1,\n",
      "          'two': 1,\n",
      "          'snipers': 1,\n",
      "          'inchesfromdeath': 1,\n",
      "          'possible': 1,\n",
      "          'nthey': 1,\n",
      "          'began': 1,\n",
      "          'resemble': 1,\n",
      "          'g': 1,\n",
      "          'joes': 1,\n",
      "          'greatest': 1,\n",
      "          'american': 1,\n",
      "          'course': 1,\n",
      "          'almost': 1,\n",
      "          'supernatural': 1,\n",
      "          'accuracy': 1,\n",
      "          'guns': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'close': 1,\n",
      "          'calls': 1,\n",
      "          'nnow': 1,\n",
      "          'lot': 1,\n",
      "          'movies': 1,\n",
      "          'stamped': 1,\n",
      "          'mold': 1,\n",
      "          'fact': 1,\n",
      "          'thats': 1,\n",
      "          'made': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'fun': 1,\n",
      "          'superhero': 1,\n",
      "          'avenger': 1,\n",
      "          'type': 1,\n",
      "          'nso': 1,\n",
      "          'enjoy': 1,\n",
      "          'fit': 1,\n",
      "          'tension': 1,\n",
      "          'built': 1,\n",
      "          'earlier': 1,\n",
      "          'scenes': 1,\n",
      "          'life': 1,\n",
      "          'feel': 1,\n",
      "          'covert': 1,\n",
      "          'operations': 1,\n",
      "          'na': 1,\n",
      "          'word': 1,\n",
      "          'must': 1,\n",
      "          'said': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'nthe': 1,\n",
      "          'jungles': 1,\n",
      "          'standins': 1,\n",
      "          'case': 1,\n",
      "          'formed': 1,\n",
      "          'picturesque': 1,\n",
      "          'background': 1,\n",
      "          'drama': 1,\n",
      "          'speeding': 1,\n",
      "          'bullets': 1,\n",
      "          'captured': 1,\n",
      "          'using': 1,\n",
      "          'trick': 1,\n",
      "          'nmany': 1,\n",
      "          'seen': 1,\n",
      "          'slowed': 1,\n",
      "          'bulletcam': 1,\n",
      "          'following': 1,\n",
      "          'projectile': 1,\n",
      "          'target': 1,\n",
      "          'well': 1,\n",
      "          'show': 1,\n",
      "          'feverish': 1,\n",
      "          'nightmares': 1,\n",
      "          'gets': 1,\n",
      "          'remembering': 1,\n",
      "          'moment': 1,\n",
      "          'kill': 1,\n",
      "          'dramatic': 1,\n",
      "          'flashback': 1,\n",
      "          'director': 1,\n",
      "          'liked': 1,\n",
      "          'technique': 1,\n",
      "          'started': 1,\n",
      "          'inserting': 1,\n",
      "          'shots': 1,\n",
      "          'pardon': 1,\n",
      "          'pun': 1,\n",
      "          'time': 1,\n",
      "          'silly': 1,\n",
      "          'nall': 1,\n",
      "          'dog': 1,\n",
      "          'atmosphere': 1,\n",
      "          'plot': 1,\n",
      "          'lame': 1,\n",
      "          'form': 1,\n",
      "          'cohesive': 1,\n",
      "          'whole': 1,\n",
      "          'thisclosefromdeath': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 3,\n",
      "          'nand': 3,\n",
      "          'dragon': 2,\n",
      "          'n': 2,\n",
      "          'draco': 2,\n",
      "          'minutes': 2,\n",
      "          'light': 2,\n",
      "          'quaid': 2,\n",
      "          'thewlis': 2,\n",
      "          'king': 2,\n",
      "          'upon': 2,\n",
      "          'nthe': 2,\n",
      "          'fringe': 2,\n",
      "          'much': 2,\n",
      "          '18foothigh': 1,\n",
      "          '43footlong': 1,\n",
      "          'computergenerated': 1,\n",
      "          'co': 1,\n",
      "          'star': 1,\n",
      "          'strictlybythenumbers': 1,\n",
      "          'sword': 1,\n",
      "          'sorcery': 1,\n",
      "          'flick': 1,\n",
      "          'nas': 1,\n",
      "          'voiced': 1,\n",
      "          'sean': 1,\n",
      "          'connery': 1,\n",
      "          'surprisingly': 1,\n",
      "          'expressive': 1,\n",
      "          'creation': 1,\n",
      "          'welldeserving': 1,\n",
      "          '23': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'nhe': 1,\n",
      "          'walks': 1,\n",
      "          'talks': 1,\n",
      "          'flies': 1,\n",
      "          'fries': 1,\n",
      "          'even': 1,\n",
      "          'fakes': 1,\n",
      "          'death': 1,\n",
      "          'help': 1,\n",
      "          '96': 1,\n",
      "          'computeraided': 1,\n",
      "          'animators': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'ilm': 1,\n",
      "          'industrial': 1,\n",
      "          'magic': 1,\n",
      "          'couldnt': 1,\n",
      "          'spare': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'dragonhearts': 1,\n",
      "          'human': 1,\n",
      "          'costars': 1,\n",
      "          'na': 1,\n",
      "          'bearded': 1,\n",
      "          'black': 1,\n",
      "          'hole': 1,\n",
      "          'exists': 1,\n",
      "          'dennis': 1,\n",
      "          'nhes': 1,\n",
      "          'neartotal': 1,\n",
      "          'loss': 1,\n",
      "          'growls': 1,\n",
      "          'glumly': 1,\n",
      "          'role': 1,\n",
      "          'disillusioned': 1,\n",
      "          'knight': 1,\n",
      "          'ndavid': 1,\n",
      "          'evil': 1,\n",
      "          'high': 1,\n",
      "          'hiss': 1,\n",
      "          'factor': 1,\n",
      "          'hf': 1,\n",
      "          'though': 1,\n",
      "          'hes': 1,\n",
      "          'mumbling': 1,\n",
      "          'oddity': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'noh': 1,\n",
      "          'theres': 1,\n",
      "          'redhead': 1,\n",
      "          '90s': 1,\n",
      "          'wig': 1,\n",
      "          'runs': 1,\n",
      "          'around': 1,\n",
      "          'either': 1,\n",
      "          'screaming': 1,\n",
      "          'scowling': 1,\n",
      "          'depending': 1,\n",
      "          'particular': 1,\n",
      "          'scene': 1,\n",
      "          'playing': 1,\n",
      "          'woman': 1,\n",
      "          'peril': 1,\n",
      "          'put': 1,\n",
      "          'peasant': 1,\n",
      "          'flourishes': 1,\n",
      "          'include': 1,\n",
      "          'pete': 1,\n",
      "          'postlethwaite': 1,\n",
      "          'wandering': 1,\n",
      "          'monk': 1,\n",
      "          'literary': 1,\n",
      "          'ambitions': 1,\n",
      "          'julie': 1,\n",
      "          'christie': 1,\n",
      "          'good': 1,\n",
      "          'queen': 1,\n",
      "          'mother': 1,\n",
      "          'band': 1,\n",
      "          'mercenaries': 1,\n",
      "          'appear': 1,\n",
      "          'dressed': 1,\n",
      "          'ye': 1,\n",
      "          'olde': 1,\n",
      "          'heavymetal': 1,\n",
      "          'concert': 1,\n",
      "          'believe': 1,\n",
      "          'speaking': 1,\n",
      "          'spirit': 1,\n",
      "          'arthur': 1,\n",
      "          'nbring': 1,\n",
      "          'dead': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'add': 1,\n",
      "          'together': 1,\n",
      "          'bits': 1,\n",
      "          'sum': 1,\n",
      "          'total': 1,\n",
      "          'amounts': 1,\n",
      "          'zero': 1,\n",
      "          'ndragonheart': 1,\n",
      "          'well': 1,\n",
      "          'little': 1,\n",
      "          'ndirector': 1,\n",
      "          'rob': 1,\n",
      "          'cohen': 1,\n",
      "          'bruce': 1,\n",
      "          'lee': 1,\n",
      "          'story': 1,\n",
      "          'made': 1,\n",
      "          'big': 1,\n",
      "          'expensive': 1,\n",
      "          'ambitiously': 1,\n",
      "          'plotted': 1,\n",
      "          'murky': 1,\n",
      "          'predictable': 1,\n",
      "          'overscored': 1,\n",
      "          'selfimportant': 1,\n",
      "          'list': 1,\n",
      "          'goes': 1,\n",
      "          'must': 1,\n",
      "          'ask': 1,\n",
      "          'screenwriter': 1,\n",
      "          'charles': 1,\n",
      "          'edward': 1,\n",
      "          'pogue': 1,\n",
      "          'intend': 1,\n",
      "          'every': 1,\n",
      "          'character': 1,\n",
      "          'stabbed': 1,\n",
      "          'lanced': 1,\n",
      "          'sliced': 1,\n",
      "          'least': 1,\n",
      "          'nkeep': 1,\n",
      "          'man': 1,\n",
      "          'away': 1,\n",
      "          'knife': 1,\n",
      "          'drawer': 1,\n",
      "          'last': 1,\n",
      "          'five': 1,\n",
      "          'worst': 1,\n",
      "          'silly': 1,\n",
      "          'celestial': 1,\n",
      "          'nonsense': 1,\n",
      "          'would': 1,\n",
      "          'laughed': 1,\n",
      "          'planetarium': 1,\n",
      "          'show': 1,\n",
      "          'less': 1,\n",
      "          'summer': 1,\n",
      "          'nsave': 1,\n",
      "          'money': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'league': 7,\n",
      "          'nthe': 5,\n",
      "          'twins': 5,\n",
      "          'major': 4,\n",
      "          'team': 4,\n",
      "          'ii': 3,\n",
      "          'first': 3,\n",
      "          'around': 3,\n",
      "          'cast': 3,\n",
      "          'gus': 3,\n",
      "          'even': 3,\n",
      "          'n': 3,\n",
      "          'back': 2,\n",
      "          'minors': 2,\n",
      "          'contradiction': 2,\n",
      "          'minor': 2,\n",
      "          'third': 2,\n",
      "          'bernsen': 2,\n",
      "          'cerrano': 2,\n",
      "          'tanaka': 2,\n",
      "          'lend': 2,\n",
      "          'enterprise': 2,\n",
      "          'buzz': 2,\n",
      "          'ntheres': 2,\n",
      "          'old': 2,\n",
      "          'ngus': 2,\n",
      "          'leonard': 2,\n",
      "          '1989s': 1,\n",
      "          'delightful': 1,\n",
      "          'surprise': 1,\n",
      "          'ni': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'decided': 1,\n",
      "          'watch': 1,\n",
      "          'cable': 1,\n",
      "          'proved': 1,\n",
      "          'fresh': 1,\n",
      "          'funny': 1,\n",
      "          'nhowever': 1,\n",
      "          'appeal': 1,\n",
      "          'freshness': 1,\n",
      "          'sequels': 1,\n",
      "          'virtually': 1,\n",
      "          'guaranteed': 1,\n",
      "          'stale': 1,\n",
      "          'nthats': 1,\n",
      "          'certainly': 1,\n",
      "          'true': 1,\n",
      "          'recent': 1,\n",
      "          'entry': 1,\n",
      "          'title': 1,\n",
      "          'course': 1,\n",
      "          'nshouldnt': 1,\n",
      "          'nthat': 1,\n",
      "          'suggests': 1,\n",
      "          'lengths': 1,\n",
      "          'writerdirector': 1,\n",
      "          'john': 1,\n",
      "          'warren': 1,\n",
      "          'gone': 1,\n",
      "          'squeeze': 1,\n",
      "          'formula': 1,\n",
      "          'established': 1,\n",
      "          'noriginal': 1,\n",
      "          'stars': 1,\n",
      "          'charlie': 1,\n",
      "          'sheen': 1,\n",
      "          'tom': 1,\n",
      "          'berenger': 1,\n",
      "          'returned': 1,\n",
      "          'leaving': 1,\n",
      "          'corbin': 1,\n",
      "          'original': 1,\n",
      "          'headliner': 1,\n",
      "          'make': 1,\n",
      "          'veterans': 1,\n",
      "          'return': 1,\n",
      "          'dennis': 1,\n",
      "          'haysbert': 1,\n",
      "          'voodooinspired': 1,\n",
      "          'batter': 1,\n",
      "          'takaaki': 1,\n",
      "          'ishibashi': 1,\n",
      "          'introduced': 1,\n",
      "          'seem': 1,\n",
      "          'legitimacy': 1,\n",
      "          'returning': 1,\n",
      "          'member': 1,\n",
      "          'produces': 1,\n",
      "          'laughs': 1,\n",
      "          'bob': 1,\n",
      "          'uecker': 1,\n",
      "          'radio': 1,\n",
      "          'announcer': 1,\n",
      "          'harry': 1,\n",
      "          'doyle': 1,\n",
      "          'inexplicably': 1,\n",
      "          'broadcasting': 1,\n",
      "          'games': 1,\n",
      "          'far': 1,\n",
      "          'home': 1,\n",
      "          'turf': 1,\n",
      "          'protagonist': 1,\n",
      "          'time': 1,\n",
      "          'retiring': 1,\n",
      "          'pitcher': 1,\n",
      "          'cantrell': 1,\n",
      "          'scott': 1,\n",
      "          'bakula': 1,\n",
      "          'hired': 1,\n",
      "          'minnesota': 1,\n",
      "          'owner': 1,\n",
      "          'roger': 1,\n",
      "          'dorn': 1,\n",
      "          'manage': 1,\n",
      "          'aaa': 1,\n",
      "          'nyou': 1,\n",
      "          'write': 1,\n",
      "          'finds': 1,\n",
      "          'group': 1,\n",
      "          'misfits': 1,\n",
      "          'need': 1,\n",
      "          'learn': 1,\n",
      "          'play': 1,\n",
      "          'together': 1,\n",
      "          'order': 1,\n",
      "          'win': 1,\n",
      "          'future': 1,\n",
      "          'superstar': 1,\n",
      "          'whose': 1,\n",
      "          'ego': 1,\n",
      "          'keeps': 1,\n",
      "          'growing': 1,\n",
      "          'walton': 1,\n",
      "          'goggins': 1,\n",
      "          'exballet': 1,\n",
      "          'dancer': 1,\n",
      "          'kenneth': 1,\n",
      "          'johnson': 1,\n",
      "          'brokendown': 1,\n",
      "          'timer': 1,\n",
      "          'thom': 1,\n",
      "          'barry': 1,\n",
      "          'twin': 1,\n",
      "          'outfielders': 1,\n",
      "          'named': 1,\n",
      "          'juan': 1,\n",
      "          'difilippo': 1,\n",
      "          'triplets': 1,\n",
      "          'couple': 1,\n",
      "          'pitchers': 1,\n",
      "          'throwing': 1,\n",
      "          'problems': 1,\n",
      "          'judson': 1,\n",
      "          'mills': 1,\n",
      "          'peter': 1,\n",
      "          'mackenzie': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'picks': 1,\n",
      "          'supposedly': 1,\n",
      "          'teammate': 1,\n",
      "          'though': 1,\n",
      "          'wasnt': 1,\n",
      "          'either': 1,\n",
      "          'preceding': 1,\n",
      "          'films': 1,\n",
      "          'nsum': 1,\n",
      "          'total': 1,\n",
      "          'none': 1,\n",
      "          'entire': 1,\n",
      "          'artificial': 1,\n",
      "          'ready': 1,\n",
      "          'hollywood': 1,\n",
      "          'majors': 1,\n",
      "          'antagonist': 1,\n",
      "          'manager': 1,\n",
      "          'huff': 1,\n",
      "          'ted': 1,\n",
      "          'mcginley': 1,\n",
      "          'nleonard': 1,\n",
      "          'slimy': 1,\n",
      "          'sniveling': 1,\n",
      "          'little': 1,\n",
      "          'egotist': 1,\n",
      "          'lazy': 1,\n",
      "          'spoiled': 1,\n",
      "          'full': 1,\n",
      "          'watching': 1,\n",
      "          'wondered': 1,\n",
      "          'reallife': 1,\n",
      "          'would': 1,\n",
      "          'caricatured': 1,\n",
      "          'manner': 1,\n",
      "          'challenges': 1,\n",
      "          'match': 1,\n",
      "          'vs': 1,\n",
      "          'wan': 1,\n",
      "          'na': 1,\n",
      "          'guess': 1,\n",
      "          'wins': 1,\n",
      "          'reason': 1,\n",
      "          'exist': 1,\n",
      "          'hardly': 1,\n",
      "          'laugh': 1,\n",
      "          'weak': 1,\n",
      "          'left': 1,\n",
      "          'room': 1,\n",
      "          'one': 1,\n",
      "          'sequel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'harmon': 7,\n",
      "          'lesbos': 7,\n",
      "          'nthe': 6,\n",
      "          'n': 5,\n",
      "          'jeff': 5,\n",
      "          'b': 5,\n",
      "          'april': 5,\n",
      "          'musical': 5,\n",
      "          'isle': 5,\n",
      "          'homosexual': 5,\n",
      "          'like': 5,\n",
      "          'smith': 4,\n",
      "          'sheridan': 4,\n",
      "          'lesbian': 4,\n",
      "          'get': 4,\n",
      "          'dick': 4,\n",
      "          'im': 4,\n",
      "          'trying': 4,\n",
      "          'good': 4,\n",
      "          'danica': 3,\n",
      "          'michael': 3,\n",
      "          'running': 3,\n",
      "          'pfferpot': 3,\n",
      "          'lance': 3,\n",
      "          'ms': 3,\n",
      "          'make': 3,\n",
      "          'movie': 3,\n",
      "          'society': 3,\n",
      "          'one': 3,\n",
      "          'ni': 3,\n",
      "          'could': 3,\n",
      "          'visuals': 3,\n",
      "          'end': 3,\n",
      "          'harsh': 2,\n",
      "          'expect': 2,\n",
      "          'kristen': 2,\n",
      "          'holly': 2,\n",
      "          'alex': 2,\n",
      "          'boling': 2,\n",
      "          'dotson': 2,\n",
      "          'janet': 2,\n",
      "          'krajeski': 2,\n",
      "          'time': 2,\n",
      "          'minutes': 2,\n",
      "          'blatz': 2,\n",
      "          'lover': 2,\n",
      "          'nisle': 2,\n",
      "          'offensive': 2,\n",
      "          'small': 2,\n",
      "          'town': 2,\n",
      "          'bumfuck': 2,\n",
      "          'married': 2,\n",
      "          'dickson': 2,\n",
      "          'nwhen': 2,\n",
      "          'home': 2,\n",
      "          'ninstead': 2,\n",
      "          'new': 2,\n",
      "          'parents': 2,\n",
      "          'give': 2,\n",
      "          'nmr': 2,\n",
      "          'decide': 2,\n",
      "          'help': 2,\n",
      "          'dr': 2,\n",
      "          'colon': 2,\n",
      "          'also': 2,\n",
      "          'nin': 2,\n",
      "          'well': 2,\n",
      "          'character': 2,\n",
      "          'send': 2,\n",
      "          'bomb': 2,\n",
      "          'circuitry': 2,\n",
      "          'way': 2,\n",
      "          'thanks': 2,\n",
      "          'work': 2,\n",
      "          'back': 2,\n",
      "          'nim': 2,\n",
      "          'people': 2,\n",
      "          'going': 2,\n",
      "          'ever': 2,\n",
      "          'number': 2,\n",
      "          'nif': 2,\n",
      "          'point': 2,\n",
      "          'elements': 2,\n",
      "          'presented': 2,\n",
      "          'nas': 2,\n",
      "          'dont': 2,\n",
      "          'mind': 2,\n",
      "          'enough': 2,\n",
      "          'accepted': 2,\n",
      "          'free': 2,\n",
      "          'wish': 2,\n",
      "          'particular': 2,\n",
      "          'arent': 2,\n",
      "          'think': 2,\n",
      "          'little': 2,\n",
      "          'portion': 2,\n",
      "          'songs': 2,\n",
      "          'disturbing': 2,\n",
      "          'decent': 2,\n",
      "          'pretty': 2,\n",
      "          'singing': 2,\n",
      "          'voice': 2,\n",
      "          'rock': 2,\n",
      "          '1': 2,\n",
      "          'means': 2,\n",
      "          'gladiator': 2,\n",
      "          'following': 1,\n",
      "          'review': 1,\n",
      "          'contains': 1,\n",
      "          'language': 1,\n",
      "          'nbut': 1,\n",
      "          'clicked': 1,\n",
      "          'title': 1,\n",
      "          'ncast': 1,\n",
      "          'sonya': 1,\n",
      "          'hensley': 1,\n",
      "          'sabrina': 1,\n",
      "          'lu': 1,\n",
      "          'dionysius': 1,\n",
      "          'burbano': 1,\n",
      "          'calvin': 1,\n",
      "          'grant': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          '97': 1,\n",
      "          'thought': 1,\n",
      "          'losing': 1,\n",
      "          'makes': 1,\n",
      "          'vomity': 1,\n",
      "          'inside': 1,\n",
      "          'balinski': 1,\n",
      "          'laments': 1,\n",
      "          'fact': 1,\n",
      "          'received': 1,\n",
      "          'telegram': 1,\n",
      "          'exfiance': 1,\n",
      "          'incredibly': 1,\n",
      "          'comedy': 1,\n",
      "          'resident': 1,\n",
      "          'arkansas': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'sweetheart': 1,\n",
      "          'football': 1,\n",
      "          'hero': 1,\n",
      "          'gets': 1,\n",
      "          'extreme': 1,\n",
      "          'cold': 1,\n",
      "          'feet': 1,\n",
      "          'runs': 1,\n",
      "          'sticks': 1,\n",
      "          'gun': 1,\n",
      "          'mouth': 1,\n",
      "          'pulls': 1,\n",
      "          'trigger': 1,\n",
      "          'killing': 1,\n",
      "          'magically': 1,\n",
      "          'transported': 1,\n",
      "          'mirror': 1,\n",
      "          'alternate': 1,\n",
      "          'dimension': 1,\n",
      "          'lesbians': 1,\n",
      "          'rule': 1,\n",
      "          'men': 1,\n",
      "          'allowed': 1,\n",
      "          'except': 1,\n",
      "          'toilet': 1,\n",
      "          'cleanerslave': 1,\n",
      "          'napril': 1,\n",
      "          'loves': 1,\n",
      "          'friends': 1,\n",
      "          'ready': 1,\n",
      "          'director': 1,\n",
      "          'need': 1,\n",
      "          'medical': 1,\n",
      "          'enlist': 1,\n",
      "          'aid': 1,\n",
      "          'sigmoid': 1,\n",
      "          'claims': 1,\n",
      "          'cure': 1,\n",
      "          'homosexuality': 1,\n",
      "          'actuality': 1,\n",
      "          'begins': 1,\n",
      "          'special': 1,\n",
      "          'treatment': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'turns': 1,\n",
      "          'dicks': 1,\n",
      "          'demand': 1,\n",
      "          'return': 1,\n",
      "          'decides': 1,\n",
      "          'take': 1,\n",
      "          'matters': 1,\n",
      "          'hands': 1,\n",
      "          'attack': 1,\n",
      "          'rambostyle': 1,\n",
      "          'leveling': 1,\n",
      "          'place': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'two': 1,\n",
      "          'along': 1,\n",
      "          'note': 1,\n",
      "          'filmmaker': 1,\n",
      "          'asides': 1,\n",
      "          'camera': 1,\n",
      "          'followed': 1,\n",
      "          'silence': 1,\n",
      "          'assuming': 1,\n",
      "          'inserted': 1,\n",
      "          'purpose': 1,\n",
      "          'waiting': 1,\n",
      "          'laughter': 1,\n",
      "          'audience': 1,\n",
      "          'subsided': 1,\n",
      "          'naprils': 1,\n",
      "          'feeling': 1,\n",
      "          'recourse': 1,\n",
      "          'call': 1,\n",
      "          'favor': 1,\n",
      "          'president': 1,\n",
      "          'clinton': 1,\n",
      "          'nuclear': 1,\n",
      "          'whose': 1,\n",
      "          'inexplicably': 1,\n",
      "          'made': 1,\n",
      "          'performer': 1,\n",
      "          'dud': 1,\n",
      "          'rewire': 1,\n",
      "          'washington': 1,\n",
      "          'c': 1,\n",
      "          'destroying': 1,\n",
      "          'daughter': 1,\n",
      "          'instead': 1,\n",
      "          'join': 1,\n",
      "          'alternative': 1,\n",
      "          'sexual': 1,\n",
      "          'practices': 1,\n",
      "          'sure': 1,\n",
      "          'writerdirectorcostar': 1,\n",
      "          'purposely': 1,\n",
      "          'offend': 1,\n",
      "          'believes': 1,\n",
      "          'ideas': 1,\n",
      "          'presents': 1,\n",
      "          'cheap': 1,\n",
      "          'laughs': 1,\n",
      "          'neither': 1,\n",
      "          'manages': 1,\n",
      "          'present': 1,\n",
      "          'material': 1,\n",
      "          'seen': 1,\n",
      "          'opens': 1,\n",
      "          'preacher': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'africanamerican': 1,\n",
      "          'child': 1,\n",
      "          'later': 1,\n",
      "          'moves': 1,\n",
      "          'hanging': 1,\n",
      "          'jackson': 1,\n",
      "          'impersonator': 1,\n",
      "          'ku': 1,\n",
      "          'klux': 1,\n",
      "          'klan': 1,\n",
      "          'jaunty': 1,\n",
      "          'preceded': 1,\n",
      "          'remarks': 1,\n",
      "          'gays': 1,\n",
      "          'straights': 1,\n",
      "          'finally': 1,\n",
      "          'able': 1,\n",
      "          'put': 1,\n",
      "          'differences': 1,\n",
      "          'behind': 1,\n",
      "          'together': 1,\n",
      "          'hate': 1,\n",
      "          'others': 1,\n",
      "          'jews': 1,\n",
      "          'merely': 1,\n",
      "          'idiotic': 1,\n",
      "          'apologize': 1,\n",
      "          'mean': 1,\n",
      "          'spiritedly': 1,\n",
      "          'cant': 1,\n",
      "          'feel': 1,\n",
      "          'serious': 1,\n",
      "          'intent': 1,\n",
      "          'entire': 1,\n",
      "          'central': 1,\n",
      "          'theme': 1,\n",
      "          'afraid': 1,\n",
      "          'tried': 1,\n",
      "          'keep': 1,\n",
      "          'open': 1,\n",
      "          'watching': 1,\n",
      "          'prevalent': 1,\n",
      "          'tastes': 1,\n",
      "          'nit': 1,\n",
      "          'hard': 1,\n",
      "          'watch': 1,\n",
      "          'bash': 1,\n",
      "          'races': 1,\n",
      "          'sexes': 1,\n",
      "          'without': 1,\n",
      "          'preaching': 1,\n",
      "          'virtues': 1,\n",
      "          'nhow': 1,\n",
      "          'guilty': 1,\n",
      "          'nonacceptance': 1,\n",
      "          'prone': 1,\n",
      "          'judging': 1,\n",
      "          'anyone': 1,\n",
      "          'believe': 1,\n",
      "          'explore': 1,\n",
      "          'whatever': 1,\n",
      "          'avenues': 1,\n",
      "          'scornful': 1,\n",
      "          'eye': 1,\n",
      "          'force': 1,\n",
      "          'rhetoric': 1,\n",
      "          'throat': 1,\n",
      "          'show': 1,\n",
      "          'respect': 1,\n",
      "          'preferences': 1,\n",
      "          'nagain': 1,\n",
      "          'maybe': 1,\n",
      "          'missing': 1,\n",
      "          'satirical': 1,\n",
      "          'handled': 1,\n",
      "          'tactfully': 1,\n",
      "          'far': 1,\n",
      "          'comedies': 1,\n",
      "          'go': 1,\n",
      "          'trey': 1,\n",
      "          'parker': 1,\n",
      "          'matt': 1,\n",
      "          'stone': 1,\n",
      "          'maddeningly': 1,\n",
      "          'catchy': 1,\n",
      "          'ndespite': 1,\n",
      "          'mom': 1,\n",
      "          'apple': 1,\n",
      "          'pie': 1,\n",
      "          'stuck': 1,\n",
      "          'rest': 1,\n",
      "          'day': 1,\n",
      "          'nspeaking': 1,\n",
      "          'wedding': 1,\n",
      "          'bells': 1,\n",
      "          'aint': 1,\n",
      "          'ringing': 1,\n",
      "          'song': 1,\n",
      "          'accompanying': 1,\n",
      "          'spousal': 1,\n",
      "          'abuse': 1,\n",
      "          'harrowing': 1,\n",
      "          'displaying': 1,\n",
      "          'touted': 1,\n",
      "          'press': 1,\n",
      "          'release': 1,\n",
      "          'particularly': 1,\n",
      "          'popular': 1,\n",
      "          'due': 1,\n",
      "          'stellar': 1,\n",
      "          'nits': 1,\n",
      "          'mainly': 1,\n",
      "          'excellent': 1,\n",
      "          'vocals': 1,\n",
      "          'rating': 1,\n",
      "          'based': 1,\n",
      "          'performers': 1,\n",
      "          'save': 1,\n",
      "          'rosie': 1,\n",
      "          'odonnell': 1,\n",
      "          'performance': 1,\n",
      "          'given': 1,\n",
      "          'inherent': 1,\n",
      "          'problem': 1,\n",
      "          'leaves': 1,\n",
      "          'desired': 1,\n",
      "          'none': 1,\n",
      "          'lowest': 1,\n",
      "          'points': 1,\n",
      "          'experienced': 1,\n",
      "          'filmgoing': 1,\n",
      "          'life': 1,\n",
      "          'strained': 1,\n",
      "          'lackluster': 1,\n",
      "          'vocal': 1,\n",
      "          'job': 1,\n",
      "          'ends': 1,\n",
      "          'twenty': 1,\n",
      "          'credits': 1,\n",
      "          'actually': 1,\n",
      "          'roll': 1,\n",
      "          'remainder': 1,\n",
      "          'padded': 1,\n",
      "          'included': 1,\n",
      "          'ridiculously': 1,\n",
      "          'antinukes': 1,\n",
      "          'message': 1,\n",
      "          'tacked': 1,\n",
      "          'reason': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'nonce': 1,\n",
      "          'reprise': 1,\n",
      "          'reached': 1,\n",
      "          'felt': 1,\n",
      "          'story': 1,\n",
      "          'already': 1,\n",
      "          'wrapped': 1,\n",
      "          'nwhy': 1,\n",
      "          'needlessly': 1,\n",
      "          'stretched': 1,\n",
      "          'past': 1,\n",
      "          'obvious': 1,\n",
      "          'available': 1,\n",
      "          'videocassette': 1,\n",
      "          'www': 1,\n",
      "          'indieunderground': 1,\n",
      "          'com': 1,\n",
      "          'transfer': 1,\n",
      "          'clean': 1,\n",
      "          'detail': 1,\n",
      "          'wrinkled': 1,\n",
      "          'cloth': 1,\n",
      "          'paint': 1,\n",
      "          'backdrops': 1,\n",
      "          'readily': 1,\n",
      "          'apparent': 1,\n",
      "          'letterboxed': 1,\n",
      "          'approximately': 1,\n",
      "          '85': 1,\n",
      "          'many': 1,\n",
      "          'respects': 1,\n",
      "          'incredible': 1,\n",
      "          'cult': 1,\n",
      "          'potential': 1,\n",
      "          'rocky': 1,\n",
      "          'horror': 1,\n",
      "          'millennium': 1,\n",
      "          'nthis': 1,\n",
      "          'cup': 1,\n",
      "          'tea': 1,\n",
      "          'know': 1,\n",
      "          'enjoy': 1,\n",
      "          'might': 1,\n",
      "          'seek': 1,\n",
      "          'hand': 1,\n",
      "          'cleansing': 1,\n",
      "          'palette': 1,\n",
      "          'action': 1,\n",
      "          'nwait': 1,\n",
      "          'films': 1,\n",
      "          'considered': 1,\n",
      "          'noh': 1,\n",
      "          'never': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'lynch': 6,\n",
      "          'helena': 5,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 3,\n",
      "          'role': 3,\n",
      "          'cavanaugh': 3,\n",
      "          'fenn': 3,\n",
      "          'characters': 3,\n",
      "          'end': 3,\n",
      "          'remembered': 2,\n",
      "          'boxing': 2,\n",
      "          'peaks': 2,\n",
      "          'twisted': 2,\n",
      "          'also': 2,\n",
      "          'result': 2,\n",
      "          'quickly': 2,\n",
      "          'nick': 2,\n",
      "          'played': 2,\n",
      "          'sands': 2,\n",
      "          'talented': 2,\n",
      "          'sherilyn': 2,\n",
      "          'beautiful': 2,\n",
      "          'takes': 2,\n",
      "          'order': 2,\n",
      "          'cavanaughs': 2,\n",
      "          'looks': 2,\n",
      "          'supposed': 2,\n",
      "          'even': 2,\n",
      "          'actors': 2,\n",
      "          'either': 2,\n",
      "          'unnecessary': 2,\n",
      "          'subplots': 2,\n",
      "          'indicator': 1,\n",
      "          'badness': 1,\n",
      "          'hype': 1,\n",
      "          'nsuch': 1,\n",
      "          'case': 1,\n",
      "          '1993': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'jennifer': 1,\n",
      "          'chambers': 1,\n",
      "          'daughter': 1,\n",
      "          'great': 1,\n",
      "          'david': 1,\n",
      "          'nmade': 1,\n",
      "          'dying': 1,\n",
      "          'years': 1,\n",
      "          'posttwin': 1,\n",
      "          'craze': 1,\n",
      "          'among': 1,\n",
      "          'snobs': 1,\n",
      "          'hyped': 1,\n",
      "          'another': 1,\n",
      "          'warped': 1,\n",
      "          'masterpiece': 1,\n",
      "          'clan': 1,\n",
      "          'nkim': 1,\n",
      "          'basinger': 1,\n",
      "          'provided': 1,\n",
      "          'extra': 1,\n",
      "          'publicity': 1,\n",
      "          'quitting': 1,\n",
      "          'lead': 1,\n",
      "          'sued': 1,\n",
      "          'breech': 1,\n",
      "          'contract': 1,\n",
      "          'nbut': 1,\n",
      "          'extremely': 1,\n",
      "          'disappointing': 1,\n",
      "          'sank': 1,\n",
      "          'welldeserved': 1,\n",
      "          'oblivion': 1,\n",
      "          'protagonist': 1,\n",
      "          'julian': 1,\n",
      "          'surgeon': 1,\n",
      "          'getting': 1,\n",
      "          'obsessed': 1,\n",
      "          'woman': 1,\n",
      "          'ditched': 1,\n",
      "          'brief': 1,\n",
      "          'affair': 1,\n",
      "          'ncavanaugh': 1,\n",
      "          'stalks': 1,\n",
      "          'uses': 1,\n",
      "          'every': 1,\n",
      "          'opportunity': 1,\n",
      "          'pathetic': 1,\n",
      "          'attempts': 1,\n",
      "          'reestablish': 1,\n",
      "          'relationship': 1,\n",
      "          'nduring': 1,\n",
      "          'occasions': 1,\n",
      "          'hit': 1,\n",
      "          'car': 1,\n",
      "          'personal': 1,\n",
      "          'physician': 1,\n",
      "          'way': 1,\n",
      "          'nafter': 1,\n",
      "          'wakes': 1,\n",
      "          'discovers': 1,\n",
      "          'prisoner': 1,\n",
      "          'stylish': 1,\n",
      "          'residence': 1,\n",
      "          'amputated': 1,\n",
      "          'legs': 1,\n",
      "          'prevent': 1,\n",
      "          'escaping': 1,\n",
      "          'nshe': 1,\n",
      "          'still': 1,\n",
      "          'trying': 1,\n",
      "          'escape': 1,\n",
      "          'arms': 1,\n",
      "          'napart': 1,\n",
      "          'casting': 1,\n",
      "          'audrey': 1,\n",
      "          'horne': 1,\n",
      "          'twin': 1,\n",
      "          'small': 1,\n",
      "          'cameo': 1,\n",
      "          'wild': 1,\n",
      "          'heart': 1,\n",
      "          'use': 1,\n",
      "          'perverse': 1,\n",
      "          'fantasies': 1,\n",
      "          'ms': 1,\n",
      "          'hasnt': 1,\n",
      "          'got': 1,\n",
      "          'anything': 1,\n",
      "          'common': 1,\n",
      "          'works': 1,\n",
      "          'directors': 1,\n",
      "          'father': 1,\n",
      "          'ndespite': 1,\n",
      "          'rather': 1,\n",
      "          'bizarre': 1,\n",
      "          'subject': 1,\n",
      "          'style': 1,\n",
      "          'conventional': 1,\n",
      "          'setting': 1,\n",
      "          'light': 1,\n",
      "          'quite': 1,\n",
      "          'sterile': 1,\n",
      "          'artificial': 1,\n",
      "          'dark': 1,\n",
      "          'sexual': 1,\n",
      "          'fantasy': 1,\n",
      "          'portray': 1,\n",
      "          'njennifer': 1,\n",
      "          'obviously': 1,\n",
      "          'lacks': 1,\n",
      "          'talents': 1,\n",
      "          'directing': 1,\n",
      "          'becomes': 1,\n",
      "          'painfully': 1,\n",
      "          'obvious': 1,\n",
      "          'scenes': 1,\n",
      "          'erotic': 1,\n",
      "          'banal': 1,\n",
      "          'artificiality': 1,\n",
      "          'bellow': 1,\n",
      "          'standards': 1,\n",
      "          'playboy': 1,\n",
      "          'videos': 1,\n",
      "          'arent': 1,\n",
      "          'good': 1,\n",
      "          'njulian': 1,\n",
      "          'terribly': 1,\n",
      "          'miscast': 1,\n",
      "          'emotionally': 1,\n",
      "          'disturbed': 1,\n",
      "          'man': 1,\n",
      "          'best': 1,\n",
      "          'plays': 1,\n",
      "          'charismatic': 1,\n",
      "          'protagonists': 1,\n",
      "          'villains': 1,\n",
      "          'neurotic': 1,\n",
      "          'doesnt': 1,\n",
      "          'suit': 1,\n",
      "          'nbill': 1,\n",
      "          'paxton': 1,\n",
      "          'better': 1,\n",
      "          'presence': 1,\n",
      "          'wasted': 1,\n",
      "          'forgettable': 1,\n",
      "          'subplot': 1,\n",
      "          'dealing': 1,\n",
      "          'helenas': 1,\n",
      "          'boyfriend': 1,\n",
      "          'nsherilyn': 1,\n",
      "          'contributed': 1,\n",
      "          'mostly': 1,\n",
      "          'greater': 1,\n",
      "          'effort': 1,\n",
      "          'acting': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'screenplay': 1,\n",
      "          'hand': 1,\n",
      "          'awful': 1,\n",
      "          'least': 1,\n",
      "          'someone': 1,\n",
      "          'made': 1,\n",
      "          'bestseller': 1,\n",
      "          'laura': 1,\n",
      "          'palmers': 1,\n",
      "          'diary': 1,\n",
      "          'events': 1,\n",
      "          'implausible': 1,\n",
      "          'come': 1,\n",
      "          'go': 1,\n",
      "          'without': 1,\n",
      "          'purpose': 1,\n",
      "          'many': 1,\n",
      "          'slow': 1,\n",
      "          'add': 1,\n",
      "          'total': 1,\n",
      "          'confusion': 1,\n",
      "          'none': 1,\n",
      "          'involves': 1,\n",
      "          'character': 1,\n",
      "          'regular': 1,\n",
      "          'girlfriend': 1,\n",
      "          'betsy': 1,\n",
      "          'clarke': 1,\n",
      "          'twist': 1,\n",
      "          'although': 1,\n",
      "          'unpredictable': 1,\n",
      "          'unbelievable': 1,\n",
      "          'viewers': 1,\n",
      "          'stomach': 1,\n",
      "          'endure': 1,\n",
      "          'entire': 1,\n",
      "          'would': 1,\n",
      "          'feel': 1,\n",
      "          'cheated': 1,\n",
      "          'nall': 1,\n",
      "          'disorganised': 1,\n",
      "          'quasiartistic': 1,\n",
      "          'mess': 1,\n",
      "          'nothing': 1,\n",
      "          'wiser': 1,\n",
      "          'decisions': 1,\n",
      "          'kim': 1,\n",
      "          'basingers': 1,\n",
      "          'career': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 19,\n",
      "          'godzilla': 16,\n",
      "          'new': 13,\n",
      "          'nthe': 13,\n",
      "          'york': 12,\n",
      "          'one': 8,\n",
      "          'dr': 7,\n",
      "          'would': 6,\n",
      "          'beast': 6,\n",
      "          'eggs': 5,\n",
      "          'tatopoulos': 5,\n",
      "          'could': 5,\n",
      "          'plot': 4,\n",
      "          'fish': 4,\n",
      "          'military': 4,\n",
      "          'two': 4,\n",
      "          'monster': 4,\n",
      "          'french': 4,\n",
      "          'ni': 4,\n",
      "          'cant': 4,\n",
      "          'nif': 3,\n",
      "          'without': 3,\n",
      "          'amount': 3,\n",
      "          'n': 3,\n",
      "          'nuclear': 3,\n",
      "          'iguanas': 3,\n",
      "          'nwell': 3,\n",
      "          'creature': 3,\n",
      "          'nin': 3,\n",
      "          'place': 3,\n",
      "          'subway': 3,\n",
      "          'system': 3,\n",
      "          'face': 3,\n",
      "          'good': 3,\n",
      "          'almost': 3,\n",
      "          'characters': 3,\n",
      "          'mr': 3,\n",
      "          'else': 3,\n",
      "          'cold': 3,\n",
      "          'bridge': 3,\n",
      "          'tall': 3,\n",
      "          'nothing': 3,\n",
      "          'go': 3,\n",
      "          'lets': 2,\n",
      "          'quickly': 2,\n",
      "          'nbut': 2,\n",
      "          'doubt': 2,\n",
      "          'major': 2,\n",
      "          'devlin': 2,\n",
      "          'emmerich': 2,\n",
      "          'nno': 2,\n",
      "          'hype': 2,\n",
      "          'footage': 2,\n",
      "          'tests': 2,\n",
      "          'nwe': 2,\n",
      "          'introduced': 2,\n",
      "          'japanese': 2,\n",
      "          'ship': 2,\n",
      "          'tuna': 2,\n",
      "          'eliminate': 2,\n",
      "          'state': 2,\n",
      "          'thing': 2,\n",
      "          'nick': 2,\n",
      "          'broderick': 2,\n",
      "          'taken': 2,\n",
      "          'effects': 2,\n",
      "          'nhe': 2,\n",
      "          'local': 2,\n",
      "          'u': 2,\n",
      "          'time': 2,\n",
      "          'jamaica': 2,\n",
      "          'ships': 2,\n",
      "          'finally': 2,\n",
      "          'makes': 2,\n",
      "          'mayor': 2,\n",
      "          'comes': 2,\n",
      "          'city': 2,\n",
      "          'picture': 2,\n",
      "          'starts': 2,\n",
      "          'decided': 2,\n",
      "          'big': 2,\n",
      "          'home': 2,\n",
      "          'even': 2,\n",
      "          'though': 2,\n",
      "          'test': 2,\n",
      "          'say': 2,\n",
      "          'back': 2,\n",
      "          'dead': 2,\n",
      "          'yet': 2,\n",
      "          'neverything': 2,\n",
      "          'holes': 2,\n",
      "          'next': 2,\n",
      "          'audrey': 2,\n",
      "          'timmonds': 2,\n",
      "          'take': 2,\n",
      "          'got': 2,\n",
      "          'ugly': 2,\n",
      "          'little': 2,\n",
      "          'nnew': 2,\n",
      "          'color': 2,\n",
      "          'carries': 2,\n",
      "          'gray': 2,\n",
      "          'standing': 2,\n",
      "          'giant': 2,\n",
      "          'footprint': 2,\n",
      "          'comparison': 2,\n",
      "          'steel': 2,\n",
      "          'brooklyn': 2,\n",
      "          'suspension': 2,\n",
      "          'carry': 2,\n",
      "          'hundred': 2,\n",
      "          'feet': 2,\n",
      "          'ngodzilla': 2,\n",
      "          'helicopters': 2,\n",
      "          'made': 2,\n",
      "          'maneuver': 2,\n",
      "          'foot': 2,\n",
      "          'park': 2,\n",
      "          'less': 2,\n",
      "          'yorkers': 2,\n",
      "          'make': 2,\n",
      "          'none': 2,\n",
      "          'youve': 2,\n",
      "          'seen': 2,\n",
      "          'get': 1,\n",
      "          'possible': 1,\n",
      "          'possibility': 1,\n",
      "          'receive': 1,\n",
      "          'refund': 1,\n",
      "          'review': 1,\n",
      "          'forthcoming': 1,\n",
      "          'loudest': 1,\n",
      "          'longest': 1,\n",
      "          'ultimately': 1,\n",
      "          'amateurishly': 1,\n",
      "          'written': 1,\n",
      "          'ever': 1,\n",
      "          'released': 1,\n",
      "          'studio': 1,\n",
      "          'nproducer': 1,\n",
      "          'dean': 1,\n",
      "          'director': 1,\n",
      "          'roland': 1,\n",
      "          'ashamed': 1,\n",
      "          'penance': 1,\n",
      "          'forced': 1,\n",
      "          'return': 1,\n",
      "          'school': 1,\n",
      "          'watch': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'merienbad': 1,\n",
      "          'grasp': 1,\n",
      "          'idea': 1,\n",
      "          'content': 1,\n",
      "          'money': 1,\n",
      "          'hide': 1,\n",
      "          'fact': 1,\n",
      "          'filmmakers': 1,\n",
      "          '90s': 1,\n",
      "          'equivalent': 1,\n",
      "          'william': 1,\n",
      "          'beaudine': 1,\n",
      "          'billy': 1,\n",
      "          'kid': 1,\n",
      "          'vs': 1,\n",
      "          'ndracula': 1,\n",
      "          'opens': 1,\n",
      "          'stock': 1,\n",
      "          'bikini': 1,\n",
      "          'atoll': 1,\n",
      "          'interspersed': 1,\n",
      "          'playfully': 1,\n",
      "          'swimming': 1,\n",
      "          'nuzzling': 1,\n",
      "          'crew': 1,\n",
      "          'canning': 1,\n",
      "          'questionable': 1,\n",
      "          'enterprise': 1,\n",
      "          'considering': 1,\n",
      "          'processing': 1,\n",
      "          'supposed': 1,\n",
      "          'supervised': 1,\n",
      "          'netting': 1,\n",
      "          'dolphins': 1,\n",
      "          'attacked': 1,\n",
      "          'sunk': 1,\n",
      "          'unseen': 1,\n",
      "          'nlater': 1,\n",
      "          'group': 1,\n",
      "          'frenchmen': 1,\n",
      "          'led': 1,\n",
      "          'philippe': 1,\n",
      "          'roache': 1,\n",
      "          'jean': 1,\n",
      "          'reno': 1,\n",
      "          'interview': 1,\n",
      "          'sole': 1,\n",
      "          'survivor': 1,\n",
      "          'shock': 1,\n",
      "          'man': 1,\n",
      "          'utter': 1,\n",
      "          'word': 1,\n",
      "          'gojira': 1,\n",
      "          'name': 1,\n",
      "          'famed': 1,\n",
      "          'matthew': 1,\n",
      "          'moniker': 1,\n",
      "          'obviously': 1,\n",
      "          'designer': 1,\n",
      "          'currently': 1,\n",
      "          'studying': 1,\n",
      "          'chernobyl': 1,\n",
      "          'disaster': 1,\n",
      "          'earthworm': 1,\n",
      "          'population': 1,\n",
      "          'immediately': 1,\n",
      "          'drafted': 1,\n",
      "          'panama': 1,\n",
      "          'shown': 1,\n",
      "          'huge': 1,\n",
      "          'footprints': 1,\n",
      "          'short': 1,\n",
      "          'another': 1,\n",
      "          'fishing': 1,\n",
      "          'boat': 1,\n",
      "          'loaded': 1,\n",
      "          'canned': 1,\n",
      "          'korea': 1,\n",
      "          'reason': 1,\n",
      "          'found': 1,\n",
      "          'grounded': 1,\n",
      "          'seems': 1,\n",
      "          'whatever': 1,\n",
      "          'eating': 1,\n",
      "          'headed': 1,\n",
      "          'nwhen': 1,\n",
      "          'appears': 1,\n",
      "          'tears': 1,\n",
      "          'building': 1,\n",
      "          'stomps': 1,\n",
      "          'couple': 1,\n",
      "          'trucks': 1,\n",
      "          'life': 1,\n",
      "          'hell': 1,\n",
      "          'incumbent': 1,\n",
      "          'ebert': 1,\n",
      "          'thumbs': 1,\n",
      "          'tatopouloss': 1,\n",
      "          'help': 1,\n",
      "          'tons': 1,\n",
      "          'fresh': 1,\n",
      "          'dumped': 1,\n",
      "          'middle': 1,\n",
      "          'lure': 1,\n",
      "          'hiding': 1,\n",
      "          'nit': 1,\n",
      "          'crashing': 1,\n",
      "          'streets': 1,\n",
      "          'cute': 1,\n",
      "          'snaps': 1,\n",
      "          'beasts': 1,\n",
      "          'eats': 1,\n",
      "          'shooting': 1,\n",
      "          'chase': 1,\n",
      "          'army': 1,\n",
      "          'causing': 1,\n",
      "          '90': 1,\n",
      "          'ensuing': 1,\n",
      "          'damage': 1,\n",
      "          'nworking': 1,\n",
      "          'hunch': 1,\n",
      "          'come': 1,\n",
      "          'apple': 1,\n",
      "          'totopoulos': 1,\n",
      "          'buys': 1,\n",
      "          'pregnancy': 1,\n",
      "          'kits': 1,\n",
      "          'drugstore': 1,\n",
      "          'chosen': 1,\n",
      "          'remain': 1,\n",
      "          'open': 1,\n",
      "          'evacuated': 1,\n",
      "          'proves': 1,\n",
      "          'hermaphrodite': 1,\n",
      "          'pregnant': 1,\n",
      "          'nneedless': 1,\n",
      "          'believes': 1,\n",
      "          'doctor': 1,\n",
      "          'discovery': 1,\n",
      "          'must': 1,\n",
      "          'join': 1,\n",
      "          'renegade': 1,\n",
      "          'secret': 1,\n",
      "          'service': 1,\n",
      "          'agents': 1,\n",
      "          'find': 1,\n",
      "          'monsters': 1,\n",
      "          'nesting': 1,\n",
      "          'site': 1,\n",
      "          'destroy': 1,\n",
      "          'letting': 1,\n",
      "          'populous': 1,\n",
      "          'isnt': 1,\n",
      "          'sincerely': 1,\n",
      "          'hope': 1,\n",
      "          'ive': 1,\n",
      "          'completely': 1,\n",
      "          'spoiled': 1,\n",
      "          'interest': 1,\n",
      "          'anyone': 1,\n",
      "          'might': 1,\n",
      "          'seeing': 1,\n",
      "          'gave': 1,\n",
      "          'away': 1,\n",
      "          'relevant': 1,\n",
      "          'spare': 1,\n",
      "          'courageous': 1,\n",
      "          'foolish': 1,\n",
      "          'enough': 1,\n",
      "          'drop': 1,\n",
      "          'hours': 1,\n",
      "          'wage': 1,\n",
      "          'tripe': 1,\n",
      "          'reeks': 1,\n",
      "          'bad': 1,\n",
      "          'piles': 1,\n",
      "          'rotting': 1,\n",
      "          'used': 1,\n",
      "          'trap': 1,\n",
      "          'script': 1,\n",
      "          'clear': 1,\n",
      "          'full': 1,\n",
      "          'non': 1,\n",
      "          'sure': 1,\n",
      "          'recipient': 1,\n",
      "          'years': 1,\n",
      "          'razzie': 1,\n",
      "          'award': 1,\n",
      "          'dialogue': 1,\n",
      "          'maria': 1,\n",
      "          'pitillo': 1,\n",
      "          'estranged': 1,\n",
      "          'girlfriend': 1,\n",
      "          'adolescent': 1,\n",
      "          'teenagers': 1,\n",
      "          'giggle': 1,\n",
      "          'disbelief': 1,\n",
      "          'happened': 1,\n",
      "          'screening': 1,\n",
      "          'witnessed': 1,\n",
      "          'enjoyably': 1,\n",
      "          'campy': 1,\n",
      "          'didnt': 1,\n",
      "          'damn': 1,\n",
      "          'seriously': 1,\n",
      "          'end': 1,\n",
      "          'commentary': 1,\n",
      "          'humanities': 1,\n",
      "          'foibles': 1,\n",
      "          'nature': 1,\n",
      "          'reference': 1,\n",
      "          'sort': 1,\n",
      "          'retaliation': 1,\n",
      "          'mankind': 1,\n",
      "          'dummy': 1,\n",
      "          'knocked': 1,\n",
      "          'immigrants': 1,\n",
      "          'let': 1,\n",
      "          'pay': 1,\n",
      "          'bleak': 1,\n",
      "          'looking': 1,\n",
      "          'ntaking': 1,\n",
      "          'night': 1,\n",
      "          'rain': 1,\n",
      "          'storm': 1,\n",
      "          'movie': 1,\n",
      "          'depth': 1,\n",
      "          'dark': 1,\n",
      "          'never': 1,\n",
      "          'looked': 1,\n",
      "          'inhospitable': 1,\n",
      "          'since': 1,\n",
      "          'death': 1,\n",
      "          'wish': 1,\n",
      "          'attempt': 1,\n",
      "          'give': 1,\n",
      "          'bright': 1,\n",
      "          'red': 1,\n",
      "          'umbrella': 1,\n",
      "          'unique': 1,\n",
      "          'everyone': 1,\n",
      "          'standard': 1,\n",
      "          'issue': 1,\n",
      "          'moment': 1,\n",
      "          'composition': 1,\n",
      "          'brief': 1,\n",
      "          'scenes': 1,\n",
      "          'finds': 1,\n",
      "          'scene': 1,\n",
      "          'nicely': 1,\n",
      "          'photographed': 1,\n",
      "          'poorly': 1,\n",
      "          'set': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'outset': 1,\n",
      "          'nfor': 1,\n",
      "          'scientist': 1,\n",
      "          'poor': 1,\n",
      "          'observation': 1,\n",
      "          'nlets': 1,\n",
      "          'look': 1,\n",
      "          'interesting': 1,\n",
      "          'activity': 1,\n",
      "          'becoming': 1,\n",
      "          'popular': 1,\n",
      "          'kevin': 1,\n",
      "          'bacon': 1,\n",
      "          'game': 1,\n",
      "          'n1': 1,\n",
      "          'affect': 1,\n",
      "          'clutch': 1,\n",
      "          'iguana': 1,\n",
      "          'fuse': 1,\n",
      "          'n2': 1,\n",
      "          'blooded': 1,\n",
      "          'choose': 1,\n",
      "          'climate': 1,\n",
      "          'nest': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'habit': 1,\n",
      "          'migrating': 1,\n",
      "          'n3': 1,\n",
      "          'crawl': 1,\n",
      "          'slice': 1,\n",
      "          'submarine': 1,\n",
      "          'half': 1,\n",
      "          'unable': 1,\n",
      "          'extricate': 1,\n",
      "          'thin': 1,\n",
      "          'cable': 1,\n",
      "          'n4': 1,\n",
      "          'existence': 1,\n",
      "          'need': 1,\n",
      "          'cables': 1,\n",
      "          'n5': 1,\n",
      "          'belly': 1,\n",
      "          'radioactive': 1,\n",
      "          'mutations': 1,\n",
      "          'surely': 1,\n",
      "          'wondrous': 1,\n",
      "          'creatures': 1,\n",
      "          'note': 1,\n",
      "          'egg': 1,\n",
      "          '10': 1,\n",
      "          'wide': 1,\n",
      "          '1': 1,\n",
      "          '000': 1,\n",
      "          'n6': 1,\n",
      "          'crush': 1,\n",
      "          'eat': 1,\n",
      "          'cabs': 1,\n",
      "          'stronger': 1,\n",
      "          'n7': 1,\n",
      "          'bullets': 1,\n",
      "          'torpedoes': 1,\n",
      "          'missiles': 1,\n",
      "          'catch': 1,\n",
      "          'n8': 1,\n",
      "          'taxis': 1,\n",
      "          'n9': 1,\n",
      "          'burrow': 1,\n",
      "          'tear': 1,\n",
      "          'avenue': 1,\n",
      "          'tunnel': 1,\n",
      "          'n10': 1,\n",
      "          'mutated': 1,\n",
      "          'nmaybe': 1,\n",
      "          'hermit': 1,\n",
      "          'crab': 1,\n",
      "          'sequel': 1,\n",
      "          'n11': 1,\n",
      "          'galapagos': 1,\n",
      "          'actually': 1,\n",
      "          'live': 1,\n",
      "          'polynesian': 1,\n",
      "          'islands': 1,\n",
      "          'n12': 1,\n",
      "          'brought': 1,\n",
      "          'going': 1,\n",
      "          'listen': 1,\n",
      "          'anyway': 1,\n",
      "          'n13': 1,\n",
      "          'evacuate': 1,\n",
      "          'island': 1,\n",
      "          'day': 1,\n",
      "          'convince': 1,\n",
      "          'jersey': 1,\n",
      "          'n14': 1,\n",
      "          'television': 1,\n",
      "          'stations': 1,\n",
      "          'use': 1,\n",
      "          'vhs': 1,\n",
      "          'tape': 1,\n",
      "          'filming': 1,\n",
      "          'broadcasting': 1,\n",
      "          'hate': 1,\n",
      "          'beta': 1,\n",
      "          'cam': 1,\n",
      "          'serve': 1,\n",
      "          'seem': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ndont': 1,\n",
      "          'fooled': 1,\n",
      "          'matter': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'episode': 1,\n",
      "          'americas': 1,\n",
      "          'funniest': 1,\n",
      "          'videos': 1,\n",
      "          'performances': 1,\n",
      "          'singularly': 1,\n",
      "          'bland': 1,\n",
      "          'nnot': 1,\n",
      "          'performance': 1,\n",
      "          'belays': 1,\n",
      "          'awe': 1,\n",
      "          'fear': 1,\n",
      "          'terror': 1,\n",
      "          'midst': 1,\n",
      "          'onslaught': 1,\n",
      "          'stop': 1,\n",
      "          'discuss': 1,\n",
      "          'lack': 1,\n",
      "          'coffee': 1,\n",
      "          'failed': 1,\n",
      "          'relationships': 1,\n",
      "          'career': 1,\n",
      "          'choices': 1,\n",
      "          'common': 1,\n",
      "          'occurrence': 1,\n",
      "          'doesnt': 1,\n",
      "          'bowel': 1,\n",
      "          'movement': 1,\n",
      "          'believable': 1,\n",
      "          'part': 1,\n",
      "          'okay': 1,\n",
      "          'design': 1,\n",
      "          'funky': 1,\n",
      "          'memorable': 1,\n",
      "          'mind': 1,\n",
      "          'redirection': 1,\n",
      "          'remove': 1,\n",
      "          'familiar': 1,\n",
      "          'trademark': 1,\n",
      "          'namely': 1,\n",
      "          'atomic': 1,\n",
      "          'breath': 1,\n",
      "          'nnow': 1,\n",
      "          'quite': 1,\n",
      "          'fathom': 1,\n",
      "          'call': 1,\n",
      "          'trait': 1,\n",
      "          'na': 1,\n",
      "          'superman': 1,\n",
      "          'ability': 1,\n",
      "          'fly': 1,\n",
      "          'nthere': 1,\n",
      "          'much': 1,\n",
      "          'wrong': 1,\n",
      "          'really': 1,\n",
      "          'recall': 1,\n",
      "          'anything': 1,\n",
      "          'recently': 1,\n",
      "          'left': 1,\n",
      "          'hearted': 1,\n",
      "          'except': 1,\n",
      "          'divorce': 1,\n",
      "          'nany': 1,\n",
      "          'ton': 1,\n",
      "          'lizard': 1,\n",
      "          'slipping': 1,\n",
      "          'gum': 1,\n",
      "          'balls': 1,\n",
      "          'envisioned': 1,\n",
      "          'influence': 1,\n",
      "          'prozac': 1,\n",
      "          'addition': 1,\n",
      "          'baby': 1,\n",
      "          'raptors': 1,\n",
      "          'ah': 1,\n",
      "          'meant': 1,\n",
      "          'godzillas': 1,\n",
      "          'direct': 1,\n",
      "          'rip': 1,\n",
      "          'jurassic': 1,\n",
      "          'films': 1,\n",
      "          'suspense': 1,\n",
      "          'tension': 1,\n",
      "          'nsuffice': 1,\n",
      "          'brain': 1,\n",
      "          'motion': 1,\n",
      "          'decade': 1,\n",
      "          'nthis': 1,\n",
      "          'needed': 1,\n",
      "          'nwith': 1,\n",
      "          'current': 1,\n",
      "          'level': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'succeeds': 1,\n",
      "          'trailers': 1,\n",
      "          'best': 1,\n",
      "          'parts': 1,\n",
      "          'nmy': 1,\n",
      "          'suggestion': 1,\n",
      "          'e': 1,\n",
      "          'always': 1,\n",
      "          'selling': 1,\n",
      "          'shoes': 1,\n",
      "          'rocky': 1,\n",
      "          'horror': 1,\n",
      "          'nonly': 1,\n",
      "          'funny': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'harrys': 8,\n",
      "          'allen': 7,\n",
      "          'harry': 7,\n",
      "          'story': 6,\n",
      "          'one': 5,\n",
      "          'nharry': 5,\n",
      "          'real': 5,\n",
      "          'life': 4,\n",
      "          'nthe': 4,\n",
      "          'character': 4,\n",
      "          'film': 4,\n",
      "          'block': 3,\n",
      "          'wants': 3,\n",
      "          'stylistic': 3,\n",
      "          'time': 3,\n",
      "          'books': 3,\n",
      "          'fragments': 3,\n",
      "          'fictional': 3,\n",
      "          'characters': 3,\n",
      "          'also': 3,\n",
      "          'friend': 3,\n",
      "          'less': 2,\n",
      "          'comedy': 2,\n",
      "          'different': 2,\n",
      "          'work': 2,\n",
      "          'better': 2,\n",
      "          'ndeconstructing': 2,\n",
      "          'goes': 2,\n",
      "          'viewer': 2,\n",
      "          'gives': 2,\n",
      "          'writing': 2,\n",
      "          'told': 2,\n",
      "          'device': 2,\n",
      "          'scenes': 2,\n",
      "          'cuts': 2,\n",
      "          'show': 2,\n",
      "          'something': 2,\n",
      "          'nas': 2,\n",
      "          'puts': 2,\n",
      "          'friends': 2,\n",
      "          'playing': 2,\n",
      "          'frustrating': 2,\n",
      "          'even': 2,\n",
      "          'bringing': 2,\n",
      "          'nit': 2,\n",
      "          'keep': 2,\n",
      "          'nif': 2,\n",
      "          'another': 2,\n",
      "          'seen': 2,\n",
      "          'blurry': 2,\n",
      "          'touches': 2,\n",
      "          'audience': 2,\n",
      "          'worth': 2,\n",
      "          'us': 2,\n",
      "          'old': 2,\n",
      "          'find': 2,\n",
      "          'go': 2,\n",
      "          'someone': 2,\n",
      "          'commit': 2,\n",
      "          'fay': 2,\n",
      "          'larry': 2,\n",
      "          'would': 2,\n",
      "          'like': 2,\n",
      "          'son': 2,\n",
      "          'prostitute': 2,\n",
      "          'cookie': 2,\n",
      "          'lot': 2,\n",
      "          'nthat': 2,\n",
      "          'scale': 2,\n",
      "          '4': 2,\n",
      "          'woody': 1,\n",
      "          'successful': 1,\n",
      "          'artistdirectors': 1,\n",
      "          'hollywood': 1,\n",
      "          'becoming': 1,\n",
      "          'reliable': 1,\n",
      "          'filmmaker': 1,\n",
      "          'nin': 1,\n",
      "          'early': 1,\n",
      "          'years': 1,\n",
      "          'filmmaking': 1,\n",
      "          'mastered': 1,\n",
      "          'simple': 1,\n",
      "          'nfrom': 1,\n",
      "          'went': 1,\n",
      "          'second': 1,\n",
      "          'phase': 1,\n",
      "          'took': 1,\n",
      "          'risks': 1,\n",
      "          'experimenting': 1,\n",
      "          'approaches': 1,\n",
      "          'styles': 1,\n",
      "          'nsome': 1,\n",
      "          'others': 1,\n",
      "          'nzelig': 1,\n",
      "          'crimes': 1,\n",
      "          'misdemeanors': 1,\n",
      "          'creative': 1,\n",
      "          'intelligent': 1,\n",
      "          'artist': 1,\n",
      "          'extreme': 1,\n",
      "          'bizarre': 1,\n",
      "          'experiment': 1,\n",
      "          'demanding': 1,\n",
      "          'back': 1,\n",
      "          'two': 1,\n",
      "          'drives': 1,\n",
      "          'nhe': 1,\n",
      "          'sex': 1,\n",
      "          'many': 1,\n",
      "          'women': 1,\n",
      "          'possible': 1,\n",
      "          'makes': 1,\n",
      "          'mess': 1,\n",
      "          'lovers': 1,\n",
      "          'retreat': 1,\n",
      "          'static': 1,\n",
      "          'highly': 1,\n",
      "          'unsympathetic': 1,\n",
      "          'number': 1,\n",
      "          'often': 1,\n",
      "          'clumsy': 1,\n",
      "          'experiments': 1,\n",
      "          'nperhaps': 1,\n",
      "          'irritating': 1,\n",
      "          'express': 1,\n",
      "          'disjointedness': 1,\n",
      "          'editing': 1,\n",
      "          'putting': 1,\n",
      "          'middle': 1,\n",
      "          'missing': 1,\n",
      "          'edited': 1,\n",
      "          'writer': 1,\n",
      "          'thinnest': 1,\n",
      "          'disguises': 1,\n",
      "          'dramatizes': 1,\n",
      "          'incidents': 1,\n",
      "          'supposed': 1,\n",
      "          'line': 1,\n",
      "          'actors': 1,\n",
      "          'people': 1,\n",
      "          'nthese': 1,\n",
      "          'lack': 1,\n",
      "          'completion': 1,\n",
      "          'track': 1,\n",
      "          'straight': 1,\n",
      "          'doppelganger': 1,\n",
      "          'person': 1,\n",
      "          'sounds': 1,\n",
      "          'complicated': 1,\n",
      "          'nthen': 1,\n",
      "          'stories': 1,\n",
      "          'actor': 1,\n",
      "          'seems': 1,\n",
      "          'peculiar': 1,\n",
      "          'property': 1,\n",
      "          'gone': 1,\n",
      "          'focus': 1,\n",
      "          'image': 1,\n",
      "          'sees': 1,\n",
      "          'metaphor': 1,\n",
      "          'condition': 1,\n",
      "          'short': 1,\n",
      "          'create': 1,\n",
      "          'sufficient': 1,\n",
      "          'confusion': 1,\n",
      "          'chronological': 1,\n",
      "          'order': 1,\n",
      "          'giving': 1,\n",
      "          'decoding': 1,\n",
      "          'could': 1,\n",
      "          'excusable': 1,\n",
      "          'nbut': 1,\n",
      "          'give': 1,\n",
      "          'portrait': 1,\n",
      "          'selfish': 1,\n",
      "          'manipulator': 1,\n",
      "          'effort': 1,\n",
      "          'understand': 1,\n",
      "          'set': 1,\n",
      "          'college': 1,\n",
      "          'expelled': 1,\n",
      "          'attended': 1,\n",
      "          'honor': 1,\n",
      "          'lifetime': 1,\n",
      "          'achievement': 1,\n",
      "          'searching': 1,\n",
      "          'among': 1,\n",
      "          'njust': 1,\n",
      "          'unwilling': 1,\n",
      "          'relationship': 1,\n",
      "          'anyone': 1,\n",
      "          'suddenly': 1,\n",
      "          'needs': 1,\n",
      "          'support': 1,\n",
      "          'else': 1,\n",
      "          'unclear': 1,\n",
      "          'tries': 1,\n",
      "          'current': 1,\n",
      "          'girl': 1,\n",
      "          'elizabeth': 1,\n",
      "          'shue': 1,\n",
      "          'marry': 1,\n",
      "          'billy': 1,\n",
      "          'crystal': 1,\n",
      "          'nblock': 1,\n",
      "          'hilly': 1,\n",
      "          'eric': 1,\n",
      "          'lloyd': 1,\n",
      "          'accompany': 1,\n",
      "          'hillys': 1,\n",
      "          'mother': 1,\n",
      "          'previously': 1,\n",
      "          'first': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'recently': 1,\n",
      "          'wife': 1,\n",
      "          'refuses': 1,\n",
      "          'let': 1,\n",
      "          'see': 1,\n",
      "          'father': 1,\n",
      "          'nanother': 1,\n",
      "          'richard': 1,\n",
      "          'bob': 1,\n",
      "          'balaban': 1,\n",
      "          'health': 1,\n",
      "          'problems': 1,\n",
      "          'considers': 1,\n",
      "          'hazel': 1,\n",
      "          'goodman': 1,\n",
      "          'interesting': 1,\n",
      "          'introduce': 1,\n",
      "          'likable': 1,\n",
      "          'soon': 1,\n",
      "          'mighty': 1,\n",
      "          'aphrodite': 1,\n",
      "          'considerably': 1,\n",
      "          'differentblack': 1,\n",
      "          'brighter': 1,\n",
      "          'mira': 1,\n",
      "          'sorvinos': 1,\n",
      "          'previous': 1,\n",
      "          'nwhile': 1,\n",
      "          'sequences': 1,\n",
      "          'never': 1,\n",
      "          'complete': 1,\n",
      "          'elaborate': 1,\n",
      "          'quite': 1,\n",
      "          'funny': 1,\n",
      "          'centerpiece': 1,\n",
      "          'journey': 1,\n",
      "          'hell': 1,\n",
      "          'sort': 1,\n",
      "          'orpheus': 1,\n",
      "          'rescuing': 1,\n",
      "          'clutches': 1,\n",
      "          'devil': 1,\n",
      "          'looks': 1,\n",
      "          'left': 1,\n",
      "          'uncompleted': 1,\n",
      "          'perhaps': 1,\n",
      "          'unwillingness': 1,\n",
      "          'telling': 1,\n",
      "          'linchpin': 1,\n",
      "          'needed': 1,\n",
      "          'tie': 1,\n",
      "          'together': 1,\n",
      "          'quirks': 1,\n",
      "          'central': 1,\n",
      "          'changes': 1,\n",
      "          'care': 1,\n",
      "          'patently': 1,\n",
      "          'creates': 1,\n",
      "          'around': 1,\n",
      "          'acerbic': 1,\n",
      "          'eyes': 1,\n",
      "          'nallen': 1,\n",
      "          'much': 1,\n",
      "          'deconstructing': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '3': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          '1': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'awake': 4,\n",
      "          'best': 4,\n",
      "          'film': 3,\n",
      "          'audience': 3,\n",
      "          'wide': 3,\n",
      "          'better': 3,\n",
      "          'first': 3,\n",
      "          'nit': 3,\n",
      "          'kids': 3,\n",
      "          'might': 3,\n",
      "          'nthe': 3,\n",
      "          'childrens': 2,\n",
      "          'god': 2,\n",
      "          'joshua': 2,\n",
      "          'grandfather': 2,\n",
      "          'quest': 2,\n",
      "          'nhe': 2,\n",
      "          'religious': 2,\n",
      "          'delany': 2,\n",
      "          'leary': 2,\n",
      "          'favorite': 2,\n",
      "          'teacher': 2,\n",
      "          'odonnell': 2,\n",
      "          'journey': 2,\n",
      "          'year': 2,\n",
      "          'friend': 2,\n",
      "          'crush': 2,\n",
      "          'serious': 2,\n",
      "          'seem': 2,\n",
      "          'see': 2,\n",
      "          'questions': 2,\n",
      "          'delivers': 2,\n",
      "          'answer': 2,\n",
      "          'nostalgic': 2,\n",
      "          'movie': 2,\n",
      "          'flashbacks': 2,\n",
      "          'joshuas': 2,\n",
      "          'relationship': 2,\n",
      "          'would': 2,\n",
      "          'heres': 1,\n",
      "          'rarity': 1,\n",
      "          'attempts': 1,\n",
      "          'tackle': 1,\n",
      "          'weighty': 1,\n",
      "          'subject': 1,\n",
      "          'ndone': 1,\n",
      "          'well': 1,\n",
      "          'could': 1,\n",
      "          'gem': 1,\n",
      "          'among': 1,\n",
      "          'wasteland': 1,\n",
      "          'modern': 1,\n",
      "          'cinema': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'isnt': 1,\n",
      "          'nwith': 1,\n",
      "          'jumbled': 1,\n",
      "          'messages': 1,\n",
      "          'unclear': 1,\n",
      "          'left': 1,\n",
      "          'asleep': 1,\n",
      "          'nfifth': 1,\n",
      "          'grader': 1,\n",
      "          'beal': 1,\n",
      "          'joseph': 1,\n",
      "          'cross': 1,\n",
      "          'middle': 1,\n",
      "          'moral': 1,\n",
      "          'crisis': 1,\n",
      "          'nhis': 1,\n",
      "          'beloved': 1,\n",
      "          'robert': 1,\n",
      "          'loggia': 1,\n",
      "          'died': 1,\n",
      "          'begun': 1,\n",
      "          'wants': 1,\n",
      "          'find': 1,\n",
      "          'discover': 1,\n",
      "          'bad': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'nthis': 1,\n",
      "          'slightly': 1,\n",
      "          'disturbing': 1,\n",
      "          'parents': 1,\n",
      "          'dana': 1,\n",
      "          'denis': 1,\n",
      "          'cope': 1,\n",
      "          'son': 1,\n",
      "          'explores': 1,\n",
      "          'different': 1,\n",
      "          'faiths': 1,\n",
      "          'nat': 1,\n",
      "          'catholic': 1,\n",
      "          'school': 1,\n",
      "          'sister': 1,\n",
      "          'terry': 1,\n",
      "          'rosie': 1,\n",
      "          'tries': 1,\n",
      "          'give': 1,\n",
      "          'guidance': 1,\n",
      "          'must': 1,\n",
      "          'make': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'momentous': 1,\n",
      "          'life': 1,\n",
      "          'several': 1,\n",
      "          'adventures': 1,\n",
      "          'daredevil': 1,\n",
      "          'dave': 1,\n",
      "          'timothy': 1,\n",
      "          'reifsnyder': 1,\n",
      "          'gets': 1,\n",
      "          'begins': 1,\n",
      "          'wake': 1,\n",
      "          'world': 1,\n",
      "          'around': 1,\n",
      "          'spiritual': 1,\n",
      "          'somewhat': 1,\n",
      "          'confusing': 1,\n",
      "          'real': 1,\n",
      "          'expected': 1,\n",
      "          'non': 1,\n",
      "          'surface': 1,\n",
      "          'appears': 1,\n",
      "          'nhowever': 1,\n",
      "          'deals': 1,\n",
      "          'issues': 1,\n",
      "          'likely': 1,\n",
      "          'boring': 1,\n",
      "          'todays': 1,\n",
      "          'instantgratification': 1,\n",
      "          'nand': 1,\n",
      "          'heartening': 1,\n",
      "          'someone': 1,\n",
      "          'trying': 1,\n",
      "          'produce': 1,\n",
      "          'something': 1,\n",
      "          'thoughtful': 1,\n",
      "          'kidvid': 1,\n",
      "          'asks': 1,\n",
      "          'cheap': 1,\n",
      "          'gimmick': 1,\n",
      "          'nif': 1,\n",
      "          'bit': 1,\n",
      "          'meat': 1,\n",
      "          'story': 1,\n",
      "          'adults': 1,\n",
      "          'bent': 1,\n",
      "          'get': 1,\n",
      "          'kick': 1,\n",
      "          'actors': 1,\n",
      "          'created': 1,\n",
      "          'great': 1,\n",
      "          'cast': 1,\n",
      "          'wasted': 1,\n",
      "          'roles': 1,\n",
      "          'amount': 1,\n",
      "          'little': 1,\n",
      "          'cameos': 1,\n",
      "          'elements': 1,\n",
      "          'etc': 1,\n",
      "          'done': 1,\n",
      "          'much': 1,\n",
      "          'movies': 1,\n",
      "          'actually': 1,\n",
      "          'like': 1,\n",
      "          'filler': 1,\n",
      "          'films': 1,\n",
      "          'strongest': 1,\n",
      "          'scenes': 1,\n",
      "          'touching': 1,\n",
      "          'depicting': 1,\n",
      "          'nthey': 1,\n",
      "          'show': 1,\n",
      "          'depth': 1,\n",
      "          'present': 1,\n",
      "          'anywhere': 1,\n",
      "          'else': 1,\n",
      "          'nmaybe': 1,\n",
      "          'instead': 1,\n",
      "          'playing': 1,\n",
      "          'set': 1,\n",
      "          'entirely': 1,\n",
      "          'last': 1,\n",
      "          'grandpa': 1,\n",
      "          'certainly': 1,\n",
      "          'entertaining': 1,\n",
      "          'nwide': 1,\n",
      "          'described': 1,\n",
      "          'failed': 1,\n",
      "          'experiment': 1,\n",
      "          'starts': 1,\n",
      "          'noble': 1,\n",
      "          'aspirations': 1,\n",
      "          'never': 1,\n",
      "          'promise': 1,\n",
      "          'nparents': 1,\n",
      "          'take': 1,\n",
      "          'children': 1,\n",
      "          'one': 1,\n",
      "          'ought': 1,\n",
      "          'prepared': 1,\n",
      "          'tough': 1,\n",
      "          'arent': 1,\n",
      "          'bored': 1,\n",
      "          'death': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'brasco': 7,\n",
      "          'donnie': 6,\n",
      "          'gangster': 5,\n",
      "          'nthe': 5,\n",
      "          'movie': 4,\n",
      "          'pistone': 4,\n",
      "          'wiseguy': 4,\n",
      "          'family': 4,\n",
      "          'way': 4,\n",
      "          'style': 3,\n",
      "          'pacinos': 3,\n",
      "          'ndonnie': 3,\n",
      "          'could': 3,\n",
      "          'true': 2,\n",
      "          'nbut': 2,\n",
      "          'picture': 2,\n",
      "          'life': 2,\n",
      "          'americas': 2,\n",
      "          'crime': 2,\n",
      "          'much': 2,\n",
      "          'films': 2,\n",
      "          'trade': 2,\n",
      "          'flicks': 2,\n",
      "          'lefty': 2,\n",
      "          'pacino': 2,\n",
      "          'troubles': 2,\n",
      "          'little': 2,\n",
      "          'pistones': 2,\n",
      "          'gangsterflick': 2,\n",
      "          'subplot': 2,\n",
      "          'never': 2,\n",
      "          'drama': 2,\n",
      "          'us': 2,\n",
      "          'presence': 2,\n",
      "          'brascos': 2,\n",
      "          'take': 2,\n",
      "          'obvious': 2,\n",
      "          'themes': 2,\n",
      "          'explored': 2,\n",
      "          'bloody': 2,\n",
      "          'isnt': 2,\n",
      "          'expect': 2,\n",
      "          'action': 2,\n",
      "          'ndepp': 2,\n",
      "          'makers': 2,\n",
      "          'theres': 1,\n",
      "          'reason': 1,\n",
      "          'doubt': 1,\n",
      "          'based': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'proclaim': 1,\n",
      "          'story': 1,\n",
      "          'accurate': 1,\n",
      "          'mean': 1,\n",
      "          'streets': 1,\n",
      "          'cinematic': 1,\n",
      "          'depictions': 1,\n",
      "          'organised': 1,\n",
      "          'stronger': 1,\n",
      "          'basis': 1,\n",
      "          'reality': 1,\n",
      "          'would': 1,\n",
      "          'previously': 1,\n",
      "          'thought': 1,\n",
      "          'nfor': 1,\n",
      "          'outset': 1,\n",
      "          'group': 1,\n",
      "          'hoods': 1,\n",
      "          'jocularly': 1,\n",
      "          'differing': 1,\n",
      "          'opinions': 1,\n",
      "          'merits': 1,\n",
      "          'various': 1,\n",
      "          'automobiles': 1,\n",
      "          'unlike': 1,\n",
      "          'number': 1,\n",
      "          'lowlifes': 1,\n",
      "          'recently': 1,\n",
      "          'gave': 1,\n",
      "          'madonna': 1,\n",
      "          'song': 1,\n",
      "          'close': 1,\n",
      "          'reading': 1,\n",
      "          'resembles': 1,\n",
      "          'passingly': 1,\n",
      "          'believed': 1,\n",
      "          'works': 1,\n",
      "          'fiction': 1,\n",
      "          'nour': 1,\n",
      "          'eponymous': 1,\n",
      "          'hero': 1,\n",
      "          'johnny': 1,\n",
      "          'depp': 1,\n",
      "          'cheap': 1,\n",
      "          'crook': 1,\n",
      "          'first': 1,\n",
      "          'appears': 1,\n",
      "          'nbrasco': 1,\n",
      "          'joseph': 1,\n",
      "          'undercover': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'task': 1,\n",
      "          'chummingup': 1,\n",
      "          'al': 1,\n",
      "          'seasoned': 1,\n",
      "          'hood': 1,\n",
      "          'tutors': 1,\n",
      "          'art': 1,\n",
      "          'nregrettably': 1,\n",
      "          'learns': 1,\n",
      "          'lessons': 1,\n",
      "          'well': 1,\n",
      "          'nhis': 1,\n",
      "          'concern': 1,\n",
      "          'burdened': 1,\n",
      "          'heroin': 1,\n",
      "          'addicted': 1,\n",
      "          'son': 1,\n",
      "          'exacerbates': 1,\n",
      "          'children': 1,\n",
      "          'resent': 1,\n",
      "          'lengthy': 1,\n",
      "          'absences': 1,\n",
      "          'wife': 1,\n",
      "          'fears': 1,\n",
      "          'husbands': 1,\n",
      "          'persona': 1,\n",
      "          'becoming': 1,\n",
      "          'convincing': 1,\n",
      "          'ntrue': 1,\n",
      "          'focus': 1,\n",
      "          'deviate': 1,\n",
      "          'typical': 1,\n",
      "          'formula': 1,\n",
      "          'rises': 1,\n",
      "          'television': 1,\n",
      "          'origins': 1,\n",
      "          'unhappy': 1,\n",
      "          'couple': 1,\n",
      "          'predictable': 1,\n",
      "          'lines': 1,\n",
      "          'engage': 1,\n",
      "          'drawnout': 1,\n",
      "          'domestic': 1,\n",
      "          'squabbles': 1,\n",
      "          'including': 1,\n",
      "          'illadvised': 1,\n",
      "          'marriage': 1,\n",
      "          'guidance': 1,\n",
      "          'routine': 1,\n",
      "          'slow': 1,\n",
      "          'film': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'however': 1,\n",
      "          'attitude': 1,\n",
      "          'lacks': 1,\n",
      "          'flair': 1,\n",
      "          'many': 1,\n",
      "          'predecessors': 1,\n",
      "          'awkward': 1,\n",
      "          'use': 1,\n",
      "          'occasional': 1,\n",
      "          'disco': 1,\n",
      "          'tune': 1,\n",
      "          'momentarily': 1,\n",
      "          'reminds': 1,\n",
      "          '70s': 1,\n",
      "          'consistent': 1,\n",
      "          'blindingly': 1,\n",
      "          'tacky': 1,\n",
      "          'loved': 1,\n",
      "          'fluoro': 1,\n",
      "          'coloured': 1,\n",
      "          'suits': 1,\n",
      "          'scorces': 1,\n",
      "          'costume': 1,\n",
      "          'casino': 1,\n",
      "          'nmore': 1,\n",
      "          'importantly': 1,\n",
      "          'triggers': 1,\n",
      "          'memories': 1,\n",
      "          'earlier': 1,\n",
      "          'triumphs': 1,\n",
      "          'similar': 1,\n",
      "          'territory': 1,\n",
      "          'covered': 1,\n",
      "          'far': 1,\n",
      "          'effectively': 1,\n",
      "          'american': 1,\n",
      "          'values': 1,\n",
      "          'instance': 1,\n",
      "          'feeble': 1,\n",
      "          'nlefty': 1,\n",
      "          'rambles': 1,\n",
      "          'dreams': 1,\n",
      "          'material': 1,\n",
      "          'betterment': 1,\n",
      "          'accompaniment': 1,\n",
      "          'grating': 1,\n",
      "          'inspirational': 1,\n",
      "          'music': 1,\n",
      "          'ninexplicably': 1,\n",
      "          'leftys': 1,\n",
      "          'horatio': 1,\n",
      "          'alger': 1,\n",
      "          'inspired': 1,\n",
      "          'gush': 1,\n",
      "          'supposed': 1,\n",
      "          'move': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'dealt': 1,\n",
      "          'saccharine': 1,\n",
      "          'manner': 1,\n",
      "          'njust': 1,\n",
      "          'think': 1,\n",
      "          'minute': 1,\n",
      "          'godfather': 1,\n",
      "          'movies': 1,\n",
      "          'scarface': 1,\n",
      "          'nin': 1,\n",
      "          'pictures': 1,\n",
      "          'dedication': 1,\n",
      "          'peculiar': 1,\n",
      "          'hypercapitalism': 1,\n",
      "          'twisted': 1,\n",
      "          'confronting': 1,\n",
      "          'dogged': 1,\n",
      "          'application': 1,\n",
      "          'macho': 1,\n",
      "          'procedure': 1,\n",
      "          'meant': 1,\n",
      "          'relations': 1,\n",
      "          'friends': 1,\n",
      "          'intriguingly': 1,\n",
      "          'dark': 1,\n",
      "          'neither': 1,\n",
      "          'spared': 1,\n",
      "          'retribution': 1,\n",
      "          'breaching': 1,\n",
      "          'regulations': 1,\n",
      "          'tawdry': 1,\n",
      "          'therefore': 1,\n",
      "          'repetition': 1,\n",
      "          'familiar': 1,\n",
      "          'shameless': 1,\n",
      "          'sanitises': 1,\n",
      "          'n': 1,\n",
      "          'oh': 1,\n",
      "          'forgot': 1,\n",
      "          'mention': 1,\n",
      "          'script': 1,\n",
      "          'also': 1,\n",
      "          'sports': 1,\n",
      "          'startling': 1,\n",
      "          'pipstones': 1,\n",
      "          'superiors': 1,\n",
      "          'obstructive': 1,\n",
      "          'incompetents': 1,\n",
      "          'infuriated': 1,\n",
      "          'constant': 1,\n",
      "          'insubordination': 1,\n",
      "          'damn': 1,\n",
      "          'mcbain': 1,\n",
      "          'ni': 1,\n",
      "          'hear': 1,\n",
      "          'springfield': 1,\n",
      "          'nso': 1,\n",
      "          'cliched': 1,\n",
      "          'nbig': 1,\n",
      "          'deal': 1,\n",
      "          'nwell': 1,\n",
      "          'quality': 1,\n",
      "          'sequences': 1,\n",
      "          'bravado': 1,\n",
      "          'performances': 1,\n",
      "          'abundance': 1,\n",
      "          'going': 1,\n",
      "          'decent': 1,\n",
      "          'example': 1,\n",
      "          'genre': 1,\n",
      "          'fails': 1,\n",
      "          'counts': 1,\n",
      "          'scenes': 1,\n",
      "          'rise': 1,\n",
      "          'ordinary': 1,\n",
      "          'depps': 1,\n",
      "          'woeful': 1,\n",
      "          'performance': 1,\n",
      "          'tends': 1,\n",
      "          'smother': 1,\n",
      "          'goodwork': 1,\n",
      "          'comrades': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'michael': 1,\n",
      "          'madsen': 1,\n",
      "          'sonny': 1,\n",
      "          'simply': 1,\n",
      "          'smirks': 1,\n",
      "          'like': 1,\n",
      "          'slightly': 1,\n",
      "          'subdued': 1,\n",
      "          'mr': 1,\n",
      "          'white': 1,\n",
      "          'possess': 1,\n",
      "          'unmistakable': 1,\n",
      "          'sly': 1,\n",
      "          'charm': 1,\n",
      "          'usually': 1,\n",
      "          'exhibits': 1,\n",
      "          'bit': 1,\n",
      "          'class': 1,\n",
      "          'regrettably': 1,\n",
      "          'one': 1,\n",
      "          'betters': 1,\n",
      "          'must': 1,\n",
      "          'left': 1,\n",
      "          'starstruck': 1,\n",
      "          'completely': 1,\n",
      "          'hellbent': 1,\n",
      "          'mimicking': 1,\n",
      "          'wellearned': 1,\n",
      "          'high': 1,\n",
      "          'consequences': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'nits': 1,\n",
      "          'exaggeration': 1,\n",
      "          'say': 1,\n",
      "          'credibility': 1,\n",
      "          'seriously': 1,\n",
      "          'strained': 1,\n",
      "          'sight': 1,\n",
      "          'familys': 1,\n",
      "          'uncanny': 1,\n",
      "          'ability': 1,\n",
      "          'keep': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'front': 1,\n",
      "          'breadwinners': 1,\n",
      "          'phony': 1,\n",
      "          'brooklyn': 1,\n",
      "          'accent': 1,\n",
      "          'nperhaps': 1,\n",
      "          'pity': 1,\n",
      "          'nmaybe': 1,\n",
      "          'scrupulous': 1,\n",
      "          'adherence': 1,\n",
      "          'pinpoint': 1,\n",
      "          'accuracy': 1,\n",
      "          'demanded': 1,\n",
      "          'tiered': 1,\n",
      "          'dialogue': 1,\n",
      "          'scenarios': 1,\n",
      "          'weakly': 1,\n",
      "          'reminiscent': 1,\n",
      "          'classic': 1,\n",
      "          'nif': 1,\n",
      "          'indeed': 1,\n",
      "          'case': 1,\n",
      "          'surely': 1,\n",
      "          'fascinating': 1,\n",
      "          'possibility': 1,\n",
      "          'underworld': 1,\n",
      "          'committed': 1,\n",
      "          'emulating': 1,\n",
      "          'albeit': 1,\n",
      "          'heavily': 1,\n",
      "          'attenuated': 1,\n",
      "          'form': 1,\n",
      "          'namesakes': 1,\n",
      "          'poignantly': 1,\n",
      "          'played': 1,\n",
      "          'simple': 1,\n",
      "          'cop': 1,\n",
      "          'becomes': 1,\n",
      "          'hideous': 1,\n",
      "          'parody': 1,\n",
      "          'forced': 1,\n",
      "          'mimic': 1,\n",
      "          'bigscreen': 1,\n",
      "          'greats': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'insights': 1,\n",
      "          'criminal': 1,\n",
      "          'psyche': 1,\n",
      "          'arisen': 1,\n",
      "          'perhaps': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'action': 5,\n",
      "          'foley': 5,\n",
      "          'years': 4,\n",
      "          'beverly': 4,\n",
      "          'hills': 4,\n",
      "          'popular': 3,\n",
      "          'murphy': 3,\n",
      "          'nin': 3,\n",
      "          '1984': 3,\n",
      "          'time': 3,\n",
      "          'de': 3,\n",
      "          'hollywood': 2,\n",
      "          'among': 2,\n",
      "          'used': 2,\n",
      "          'movie': 2,\n",
      "          'whose': 2,\n",
      "          'nthe': 2,\n",
      "          'characters': 2,\n",
      "          'first': 2,\n",
      "          'decade': 2,\n",
      "          'comedy': 2,\n",
      "          'third': 2,\n",
      "          'landis': 2,\n",
      "          'another': 2,\n",
      "          'neddie': 2,\n",
      "          'detroit': 2,\n",
      "          'policeman': 2,\n",
      "          'wald': 2,\n",
      "          'turns': 2,\n",
      "          'wonderland': 2,\n",
      "          'los': 2,\n",
      "          'angeles': 2,\n",
      "          'would': 2,\n",
      "          'provided': 2,\n",
      "          'simply': 2,\n",
      "          'guys': 2,\n",
      "          'belongs': 2,\n",
      "          'sometimes': 2,\n",
      "          'end': 2,\n",
      "          'days': 1,\n",
      "          'lack': 1,\n",
      "          'originality': 1,\n",
      "          'reflects': 1,\n",
      "          'deluge': 1,\n",
      "          'remakes': 1,\n",
      "          'nbut': 1,\n",
      "          'ago': 1,\n",
      "          'wes': 1,\n",
      "          'craven': 1,\n",
      "          'publicly': 1,\n",
      "          'made': 1,\n",
      "          'fun': 1,\n",
      "          'practice': 1,\n",
      "          'sequels': 1,\n",
      "          'producers': 1,\n",
      "          'nsequels': 1,\n",
      "          'also': 1,\n",
      "          'directors': 1,\n",
      "          'stars': 1,\n",
      "          'careers': 1,\n",
      "          'went': 1,\n",
      "          'south': 1,\n",
      "          'way': 1,\n",
      "          'regain': 1,\n",
      "          'popularity': 1,\n",
      "          'prestige': 1,\n",
      "          'thought': 1,\n",
      "          'use': 1,\n",
      "          'formulas': 1,\n",
      "          'story': 1,\n",
      "          'lines': 1,\n",
      "          'brought': 1,\n",
      "          'success': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'place': 1,\n",
      "          'none': 1,\n",
      "          'celebrity': 1,\n",
      "          'eddie': 1,\n",
      "          'black': 1,\n",
      "          'comedian': 1,\n",
      "          '1980s': 1,\n",
      "          'career': 1,\n",
      "          'big': 1,\n",
      "          'decline': 1,\n",
      "          'part': 1,\n",
      "          'order': 1,\n",
      "          'return': 1,\n",
      "          'spotlight': 1,\n",
      "          'chose': 1,\n",
      "          'resurrect': 1,\n",
      "          'franchise': 1,\n",
      "          'created': 1,\n",
      "          'cop': 1,\n",
      "          'already': 1,\n",
      "          'spawned': 1,\n",
      "          'sequel': 1,\n",
      "          '1987': 1,\n",
      "          'nseven': 1,\n",
      "          'later': 1,\n",
      "          'instalment': 1,\n",
      "          'directorial': 1,\n",
      "          'service': 1,\n",
      "          'john': 1,\n",
      "          'fading': 1,\n",
      "          'star': 1,\n",
      "          'successfully': 1,\n",
      "          'collaborated': 1,\n",
      "          'twice': 1,\n",
      "          'trading': 1,\n",
      "          'places': 1,\n",
      "          'coming': 1,\n",
      "          'america': 1,\n",
      "          'nthis': 1,\n",
      "          'however': 1,\n",
      "          'wasnt': 1,\n",
      "          'charm': 1,\n",
      "          'iii': 1,\n",
      "          'failure': 1,\n",
      "          'wait': 1,\n",
      "          'real': 1,\n",
      "          'comeback': 1,\n",
      "          'plays': 1,\n",
      "          'axel': 1,\n",
      "          'fasttalking': 1,\n",
      "          'streetwise': 1,\n",
      "          'raids': 1,\n",
      "          'illegal': 1,\n",
      "          'chop': 1,\n",
      "          'shop': 1,\n",
      "          'routine': 1,\n",
      "          'police': 1,\n",
      "          'ends': 1,\n",
      "          'tragedy': 1,\n",
      "          'criminals': 1,\n",
      "          'kill': 1,\n",
      "          'foleys': 1,\n",
      "          'boss': 1,\n",
      "          'ndetermined': 1,\n",
      "          'bring': 1,\n",
      "          'killers': 1,\n",
      "          'justice': 1,\n",
      "          'realises': 1,\n",
      "          'leader': 1,\n",
      "          'ellis': 1,\n",
      "          'timothy': 1,\n",
      "          'carhart': 1,\n",
      "          'nwhen': 1,\n",
      "          'happens': 1,\n",
      "          'security': 1,\n",
      "          'chief': 1,\n",
      "          'theme': 1,\n",
      "          'park': 1,\n",
      "          'goes': 1,\n",
      "          'back': 1,\n",
      "          'nthere': 1,\n",
      "          'help': 1,\n",
      "          'old': 1,\n",
      "          'friend': 1,\n",
      "          'local': 1,\n",
      "          'rosewood': 1,\n",
      "          'judge': 1,\n",
      "          'rheinhold': 1,\n",
      "          'clash': 1,\n",
      "          'money': 1,\n",
      "          'counterfeit': 1,\n",
      "          'ring': 1,\n",
      "          'nten': 1,\n",
      "          'passed': 1,\n",
      "          'since': 1,\n",
      "          'original': 1,\n",
      "          'times': 1,\n",
      "          'definitely': 1,\n",
      "          'different': 1,\n",
      "          'contrast': 1,\n",
      "          'blue': 1,\n",
      "          'collar': 1,\n",
      "          'yuppie': 1,\n",
      "          'lot': 1,\n",
      "          'gags': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'steven': 1,\n",
      "          'e': 1,\n",
      "          'souza': 1,\n",
      "          'provides': 1,\n",
      "          'conflict': 1,\n",
      "          'childish': 1,\n",
      "          'sillyness': 1,\n",
      "          'good': 1,\n",
      "          'businesslike': 1,\n",
      "          'professionalism': 1,\n",
      "          'bad': 1,\n",
      "          'nsince': 1,\n",
      "          'former': 1,\n",
      "          'character': 1,\n",
      "          'watch': 1,\n",
      "          'language': 1,\n",
      "          'tone': 1,\n",
      "          'general': 1,\n",
      "          'infantile': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'still': 1,\n",
      "          'genre': 1,\n",
      "          'much': 1,\n",
      "          'violence': 1,\n",
      "          'little': 1,\n",
      "          'children': 1,\n",
      "          'nnice': 1,\n",
      "          'example': 1,\n",
      "          'humorous': 1,\n",
      "          'scene': 1,\n",
      "          'beginning': 1,\n",
      "          'standard': 1,\n",
      "          'ramboesque': 1,\n",
      "          'bloodbath': 1,\n",
      "          'nunlike': 1,\n",
      "          'donner': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'series': 1,\n",
      "          'cant': 1,\n",
      "          'balance': 1,\n",
      "          'regular': 1,\n",
      "          'result': 1,\n",
      "          'fails': 1,\n",
      "          'aspects': 1,\n",
      "          'naction': 1,\n",
      "          'scenes': 1,\n",
      "          'interesting': 1,\n",
      "          'spectacular': 1,\n",
      "          'scenery': 1,\n",
      "          'fascinating': 1,\n",
      "          'humour': 1,\n",
      "          'hand': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'minor': 1,\n",
      "          'gets': 1,\n",
      "          'unnecessary': 1,\n",
      "          'irritating': 1,\n",
      "          'overexposure': 1,\n",
      "          'especially': 1,\n",
      "          'art': 1,\n",
      "          'expert': 1,\n",
      "          'turned': 1,\n",
      "          'arms': 1,\n",
      "          'dealer': 1,\n",
      "          'played': 1,\n",
      "          'bronson': 1,\n",
      "          'pinchot': 1,\n",
      "          'although': 1,\n",
      "          'entertainment': 1,\n",
      "          'viewers': 1,\n",
      "          'least': 1,\n",
      "          'critical': 1,\n",
      "          'ones': 1,\n",
      "          'probably': 1,\n",
      "          'happy': 1,\n",
      "          'know': 1,\n",
      "          'arent': 1,\n",
      "          'plans': 1,\n",
      "          'iv': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'death': 10,\n",
      "          'nit': 7,\n",
      "          'joe': 6,\n",
      "          'film': 6,\n",
      "          'time': 5,\n",
      "          'one': 4,\n",
      "          'pitt': 4,\n",
      "          'like': 4,\n",
      "          'story': 4,\n",
      "          'human': 4,\n",
      "          'form': 4,\n",
      "          'forlani': 3,\n",
      "          'nthe': 3,\n",
      "          'voice': 3,\n",
      "          'bills': 3,\n",
      "          'falls': 3,\n",
      "          'love': 3,\n",
      "          'difficult': 3,\n",
      "          'black': 2,\n",
      "          'probably': 2,\n",
      "          'cinematography': 2,\n",
      "          'cast': 2,\n",
      "          'us': 2,\n",
      "          'nat': 2,\n",
      "          'ridiculous': 2,\n",
      "          'experience': 2,\n",
      "          'elegant': 2,\n",
      "          'direction': 2,\n",
      "          'youll': 2,\n",
      "          'something': 2,\n",
      "          'hour': 2,\n",
      "          'actors': 2,\n",
      "          'anthony': 2,\n",
      "          'hopkins': 2,\n",
      "          'brad': 2,\n",
      "          'claire': 2,\n",
      "          'script': 2,\n",
      "          'motion': 2,\n",
      "          'picture': 2,\n",
      "          'eternity': 2,\n",
      "          'soap': 2,\n",
      "          'opera': 2,\n",
      "          'play': 2,\n",
      "          'takes': 2,\n",
      "          'bill': 2,\n",
      "          'lives': 2,\n",
      "          'life': 2,\n",
      "          'business': 2,\n",
      "          'introduces': 2,\n",
      "          'nbut': 2,\n",
      "          'come': 2,\n",
      "          'nbills': 2,\n",
      "          'serious': 2,\n",
      "          'wouldnt': 2,\n",
      "          'say': 2,\n",
      "          'take': 2,\n",
      "          'nto': 2,\n",
      "          'performances': 2,\n",
      "          'scent': 2,\n",
      "          'woman': 2,\n",
      "          'looks': 2,\n",
      "          'complete': 2,\n",
      "          'seems': 2,\n",
      "          'earthly': 2,\n",
      "          'matters': 2,\n",
      "          'would': 2,\n",
      "          'nin': 2,\n",
      "          'never': 1,\n",
      "          'confused': 1,\n",
      "          'watching': 1,\n",
      "          'movie': 1,\n",
      "          'n': 1,\n",
      "          'meet': 1,\n",
      "          'visually': 1,\n",
      "          'satisfying': 1,\n",
      "          'films': 1,\n",
      "          'year': 1,\n",
      "          'music': 1,\n",
      "          'dazzle': 1,\n",
      "          'boring': 1,\n",
      "          'hat': 1,\n",
      "          'season': 1,\n",
      "          'first': 1,\n",
      "          'marvel': 1,\n",
      "          'graceful': 1,\n",
      "          'sensual': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'nthen': 1,\n",
      "          'wait': 1,\n",
      "          'happen': 1,\n",
      "          'half': 1,\n",
      "          'finally': 1,\n",
      "          'understand': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'wonder': 1,\n",
      "          'simply': 1,\n",
      "          'silly': 1,\n",
      "          'unresolved': 1,\n",
      "          'artificially': 1,\n",
      "          'stretched': 1,\n",
      "          'three': 1,\n",
      "          'long': 1,\n",
      "          'feels': 1,\n",
      "          'nmost': 1,\n",
      "          'pompous': 1,\n",
      "          'filled': 1,\n",
      "          'empty': 1,\n",
      "          'dialogue': 1,\n",
      "          'deliver': 1,\n",
      "          'high': 1,\n",
      "          'pitched': 1,\n",
      "          'meaningful': 1,\n",
      "          'winks': 1,\n",
      "          'based': 1,\n",
      "          'alberto': 1,\n",
      "          'caesellas': 1,\n",
      "          'holiday': 1,\n",
      "          'concentrates': 1,\n",
      "          'around': 1,\n",
      "          'fulfilled': 1,\n",
      "          'successful': 1,\n",
      "          'man': 1,\n",
      "          'sometimes': 1,\n",
      "          'wakes': 1,\n",
      "          'middle': 1,\n",
      "          'night': 1,\n",
      "          'hears': 1,\n",
      "          'saying': 1,\n",
      "          'yes': 1,\n",
      "          'nsoon': 1,\n",
      "          'meets': 1,\n",
      "          'young': 1,\n",
      "          'gentlemen': 1,\n",
      "          'plans': 1,\n",
      "          'simple': 1,\n",
      "          'mortals': 1,\n",
      "          'find': 1,\n",
      "          'means': 1,\n",
      "          'alive': 1,\n",
      "          'nour': 1,\n",
      "          'chosen': 1,\n",
      "          'deaths': 1,\n",
      "          'guide': 1,\n",
      "          'exchange': 1,\n",
      "          'gets': 1,\n",
      "          'nbill': 1,\n",
      "          'immediately': 1,\n",
      "          'becomes': 1,\n",
      "          'center': 1,\n",
      "          'everyones': 1,\n",
      "          'attention': 1,\n",
      "          'partners': 1,\n",
      "          'speculate': 1,\n",
      "          'constantly': 1,\n",
      "          'side': 1,\n",
      "          'house': 1,\n",
      "          'resides': 1,\n",
      "          'office': 1,\n",
      "          'nthat': 1,\n",
      "          'however': 1,\n",
      "          'youngest': 1,\n",
      "          'daughter': 1,\n",
      "          'susan': 1,\n",
      "          'mysterious': 1,\n",
      "          'stranger': 1,\n",
      "          'nthis': 1,\n",
      "          'relationship': 1,\n",
      "          'bound': 1,\n",
      "          'consequences': 1,\n",
      "          'fair': 1,\n",
      "          'didnt': 1,\n",
      "          'interesting': 1,\n",
      "          'moments': 1,\n",
      "          'scene': 1,\n",
      "          'invited': 1,\n",
      "          'join': 1,\n",
      "          'family': 1,\n",
      "          'dinner': 1,\n",
      "          'nwhen': 1,\n",
      "          'starts': 1,\n",
      "          'enjoying': 1,\n",
      "          'peanut': 1,\n",
      "          'butter': 1,\n",
      "          'later': 1,\n",
      "          'somewhat': 1,\n",
      "          'different': 1,\n",
      "          'obvious': 1,\n",
      "          'structure': 1,\n",
      "          'nits': 1,\n",
      "          'thing': 1,\n",
      "          'fun': 1,\n",
      "          'earth': 1,\n",
      "          'create': 1,\n",
      "          'another': 1,\n",
      "          'nfour': 1,\n",
      "          'screenwriters': 1,\n",
      "          'worked': 1,\n",
      "          'lacks': 1,\n",
      "          'drive': 1,\n",
      "          'logic': 1,\n",
      "          'overlong': 1,\n",
      "          'primitive': 1,\n",
      "          'pass': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'demonstrates': 1,\n",
      "          'incredible': 1,\n",
      "          'decent': 1,\n",
      "          'martin': 1,\n",
      "          'brest': 1,\n",
      "          'nhopkins': 1,\n",
      "          'great': 1,\n",
      "          'role': 1,\n",
      "          'matter': 1,\n",
      "          'shallow': 1,\n",
      "          'hollow': 1,\n",
      "          'nhis': 1,\n",
      "          'talent': 1,\n",
      "          'charisma': 1,\n",
      "          'needed': 1,\n",
      "          'else': 1,\n",
      "          'since': 1,\n",
      "          'actually': 1,\n",
      "          'saves': 1,\n",
      "          'embarrassment': 1,\n",
      "          'got': 1,\n",
      "          'roles': 1,\n",
      "          'recent': 1,\n",
      "          'nhow': 1,\n",
      "          'associated': 1,\n",
      "          'nthey': 1,\n",
      "          'creatures': 1,\n",
      "          'phenomenas': 1,\n",
      "          'nsaying': 1,\n",
      "          'suggest': 1,\n",
      "          'nhandling': 1,\n",
      "          'task': 1,\n",
      "          'incredibly': 1,\n",
      "          'deserves': 1,\n",
      "          'credit': 1,\n",
      "          'work': 1,\n",
      "          'nspeaking': 1,\n",
      "          'calm': 1,\n",
      "          'soft': 1,\n",
      "          'portraying': 1,\n",
      "          'lonely': 1,\n",
      "          'distant': 1,\n",
      "          'powerful': 1,\n",
      "          'guy': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'practical': 1,\n",
      "          'nhe': 1,\n",
      "          'acts': 1,\n",
      "          'angel': 1,\n",
      "          'rather': 1,\n",
      "          'demon': 1,\n",
      "          'redeyed': 1,\n",
      "          'executioner': 1,\n",
      "          'nclaire': 1,\n",
      "          'others': 1,\n",
      "          'also': 1,\n",
      "          'fine': 1,\n",
      "          'stretching': 1,\n",
      "          'stereotypical': 1,\n",
      "          'characters': 1,\n",
      "          'limits': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'enough': 1,\n",
      "          'rescue': 1,\n",
      "          'self': 1,\n",
      "          'inflicted': 1,\n",
      "          'misery': 1,\n",
      "          'words': 1,\n",
      "          'expected': 1,\n",
      "          'director': 1,\n",
      "          'could': 1,\n",
      "          'better': 1,\n",
      "          'crew': 1,\n",
      "          'end': 1,\n",
      "          'intensively': 1,\n",
      "          'working': 1,\n",
      "          'ravishingly': 1,\n",
      "          'looking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 3,\n",
      "          'lemmon': 2,\n",
      "          'garner': 2,\n",
      "          'dan': 2,\n",
      "          'first': 2,\n",
      "          'nfor': 2,\n",
      "          'n': 2,\n",
      "          'us': 2,\n",
      "          'movie': 2,\n",
      "          'mens': 2,\n",
      "          'crap': 1,\n",
      "          'honestly': 1,\n",
      "          'older': 1,\n",
      "          'american': 1,\n",
      "          'audience': 1,\n",
      "          'going': 1,\n",
      "          'able': 1,\n",
      "          'resist': 1,\n",
      "          'seeing': 1,\n",
      "          'jack': 1,\n",
      "          'james': 1,\n",
      "          'bicker': 1,\n",
      "          'ing': 1,\n",
      "          'expresidents': 1,\n",
      "          'nespecially': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'clude': 1,\n",
      "          'aykroyd': 1,\n",
      "          'current': 1,\n",
      "          'commander': 1,\n",
      "          'chief': 1,\n",
      "          'lauren': 1,\n",
      "          'bacall': 1,\n",
      "          'former': 1,\n",
      "          'lady': 1,\n",
      "          'john': 1,\n",
      "          'heard': 1,\n",
      "          'quayleish': 1,\n",
      "          'vice': 1,\n",
      "          'president': 1,\n",
      "          'nyup': 1,\n",
      "          'youre': 1,\n",
      "          'talkin': 1,\n",
      "          'presold': 1,\n",
      "          'property': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'perfect': 1,\n",
      "          'fit': 1,\n",
      "          'nowritual': 1,\n",
      "          'grumpy': 1,\n",
      "          'old': 1,\n",
      "          'men': 1,\n",
      "          'holiday': 1,\n",
      "          'slot': 1,\n",
      "          'nondiscriminating': 1,\n",
      "          'viewer': 1,\n",
      "          'fellow': 1,\n",
      "          'americans': 1,\n",
      "          'fine': 1,\n",
      "          'raw': 1,\n",
      "          'star': 1,\n",
      "          'power': 1,\n",
      "          'alone': 1,\n",
      "          'audiences': 1,\n",
      "          'applauding': 1,\n",
      "          'atrocious': 1,\n",
      "          'political': 1,\n",
      "          'thriller': 1,\n",
      "          'roadcomedy': 1,\n",
      "          'mine': 1,\n",
      "          'heaven': 1,\n",
      "          'help': 1,\n",
      "          'rest': 1,\n",
      "          'immediately': 1,\n",
      "          'tiresome': 1,\n",
      "          'tone': 1,\n",
      "          'terrible': 1,\n",
      "          'banter': 1,\n",
      "          'worse': 1,\n",
      "          'nforget': 1,\n",
      "          'wit': 1,\n",
      "          'merely': 1,\n",
      "          'exchange': 1,\n",
      "          'profanities': 1,\n",
      "          'anyone': 1,\n",
      "          'counted': 1,\n",
      "          'number': 1,\n",
      "          'penis': 1,\n",
      "          'references': 1,\n",
      "          'nsure': 1,\n",
      "          'bits': 1,\n",
      "          'absurdly': 1,\n",
      "          'funny': 1,\n",
      "          'including': 1,\n",
      "          'room': 1,\n",
      "          'macarena': 1,\n",
      "          'joke': 1,\n",
      "          'appearance': 1,\n",
      "          'elvis': 1,\n",
      "          'impersonator': 1,\n",
      "          'trainload': 1,\n",
      "          'tarheels': 1,\n",
      "          'dorothy': 1,\n",
      "          'marching': 1,\n",
      "          'band': 1,\n",
      "          'performing': 1,\n",
      "          'rainbow': 1,\n",
      "          'gay': 1,\n",
      "          'march': 1,\n",
      "          'get': 1,\n",
      "          'though': 1,\n",
      "          'submit': 1,\n",
      "          'one': 1,\n",
      "          'offensively': 1,\n",
      "          'overbearing': 1,\n",
      "          'musical': 1,\n",
      "          'scores': 1,\n",
      "          'time': 1,\n",
      "          'njudas': 1,\n",
      "          'priest': 1,\n",
      "          'single': 1,\n",
      "          'moment': 1,\n",
      "          'silence': 1,\n",
      "          'film': 1,\n",
      "          'neven': 1,\n",
      "          'dialogue': 1,\n",
      "          'gets': 1,\n",
      "          'drowned': 1,\n",
      "          'nwhat': 1,\n",
      "          'waste': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bookseller': 11,\n",
      "          'film': 9,\n",
      "          'man': 9,\n",
      "          'young': 8,\n",
      "          'one': 7,\n",
      "          'nthe': 7,\n",
      "          'nightclub': 6,\n",
      "          'older': 6,\n",
      "          'keep': 5,\n",
      "          'cool': 5,\n",
      "          'get': 5,\n",
      "          'us': 5,\n",
      "          'hand': 5,\n",
      "          'nalthough': 5,\n",
      "          'half': 5,\n",
      "          'owner': 5,\n",
      "          'nthere': 4,\n",
      "          'films': 3,\n",
      "          'good': 3,\n",
      "          'time': 3,\n",
      "          'movie': 3,\n",
      "          'tries': 3,\n",
      "          'order': 3,\n",
      "          'made': 3,\n",
      "          'ying': 3,\n",
      "          'could': 3,\n",
      "          'see': 3,\n",
      "          'woman': 3,\n",
      "          'scene': 3,\n",
      "          'would': 3,\n",
      "          'revenge': 3,\n",
      "          'chinese': 2,\n",
      "          'zhang': 2,\n",
      "          'hawaii': 2,\n",
      "          'festival': 2,\n",
      "          'around': 2,\n",
      "          'well': 2,\n",
      "          'theater': 2,\n",
      "          'nthey': 2,\n",
      "          'humor': 2,\n",
      "          'attempts': 2,\n",
      "          'wasnt': 2,\n",
      "          'getting': 2,\n",
      "          'china': 2,\n",
      "          'funny': 2,\n",
      "          'producer': 2,\n",
      "          'interpreter': 2,\n",
      "          'print': 2,\n",
      "          'bad': 2,\n",
      "          'also': 2,\n",
      "          'give': 2,\n",
      "          'say': 2,\n",
      "          'camera': 2,\n",
      "          'case': 2,\n",
      "          'way': 2,\n",
      "          'seems': 2,\n",
      "          'since': 2,\n",
      "          'thing': 2,\n",
      "          'audience': 2,\n",
      "          'headache': 2,\n",
      "          'left': 2,\n",
      "          'first': 2,\n",
      "          'back': 2,\n",
      "          'course': 2,\n",
      "          'nin': 2,\n",
      "          'laptop': 2,\n",
      "          'computer': 2,\n",
      "          'use': 2,\n",
      "          'logic': 2,\n",
      "          'sympathy': 2,\n",
      "          'nice': 2,\n",
      "          'interaction': 2,\n",
      "          'na': 2,\n",
      "          'hour': 2,\n",
      "          'point': 2,\n",
      "          'enough': 2,\n",
      "          'directed': 1,\n",
      "          'semiaccomplished': 1,\n",
      "          'filmmaker': 1,\n",
      "          'yimou': 1,\n",
      "          'kickoff': 1,\n",
      "          'years': 1,\n",
      "          'international': 1,\n",
      "          'non': 1,\n",
      "          'day': 1,\n",
      "          'premiered': 1,\n",
      "          'lines': 1,\n",
      "          'eager': 1,\n",
      "          'moviegoers': 1,\n",
      "          'stretched': 1,\n",
      "          'block': 1,\n",
      "          'anticipants': 1,\n",
      "          'queued': 1,\n",
      "          'advance': 1,\n",
      "          'seat': 1,\n",
      "          'need': 1,\n",
      "          'wasted': 1,\n",
      "          'billed': 1,\n",
      "          'comedy': 1,\n",
      "          'surprisingly': 1,\n",
      "          'bereft': 1,\n",
      "          'noticeable': 1,\n",
      "          'laughs': 1,\n",
      "          'actually': 1,\n",
      "          'click': 1,\n",
      "          'ni': 1,\n",
      "          'wondered': 1,\n",
      "          'jokes': 1,\n",
      "          'im': 1,\n",
      "          'unfortunately': 1,\n",
      "          'conclusion': 1,\n",
      "          'lack': 1,\n",
      "          'couldnt': 1,\n",
      "          'attributed': 1,\n",
      "          'cultural': 1,\n",
      "          'barrier': 1,\n",
      "          'either': 1,\n",
      "          'nkeep': 1,\n",
      "          'isnt': 1,\n",
      "          'prelude': 1,\n",
      "          'visit': 1,\n",
      "          'cools': 1,\n",
      "          'help': 1,\n",
      "          'regaled': 1,\n",
      "          'assistant': 1,\n",
      "          'carried': 1,\n",
      "          'plane': 1,\n",
      "          'assistants': 1,\n",
      "          'luggage': 1,\n",
      "          'lost': 1,\n",
      "          'ntoo': 1,\n",
      "          'story': 1,\n",
      "          'got': 1,\n",
      "          'big': 1,\n",
      "          'laugh': 1,\n",
      "          'nqu': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'comments': 1,\n",
      "          'nhowever': 1,\n",
      "          'whereas': 1,\n",
      "          'politely': 1,\n",
      "          'regular': 1,\n",
      "          'pauses': 1,\n",
      "          'dialog': 1,\n",
      "          'bring': 1,\n",
      "          'speed': 1,\n",
      "          'ms': 1,\n",
      "          'saw': 1,\n",
      "          'fit': 1,\n",
      "          'everything': 1,\n",
      "          'fastpaced': 1,\n",
      "          'incredibly': 1,\n",
      "          'long': 1,\n",
      "          'tirade': 1,\n",
      "          'nit': 1,\n",
      "          'dizzying': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'nyou': 1,\n",
      "          'filmed': 1,\n",
      "          'almost': 1,\n",
      "          'totally': 1,\n",
      "          'handheld': 1,\n",
      "          'shakes': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'thats': 1,\n",
      "          'constantly': 1,\n",
      "          'moving': 1,\n",
      "          'ncinema': 1,\n",
      "          'verite': 1,\n",
      "          'panning': 1,\n",
      "          'shaking': 1,\n",
      "          'another': 1,\n",
      "          'might': 1,\n",
      "          'consider': 1,\n",
      "          'form': 1,\n",
      "          'helps': 1,\n",
      "          'viewer': 1,\n",
      "          'idea': 1,\n",
      "          'anarchic': 1,\n",
      "          'state': 1,\n",
      "          'youth': 1,\n",
      "          'slowly': 1,\n",
      "          'growing': 1,\n",
      "          'found': 1,\n",
      "          'thoroughly': 1,\n",
      "          'distracting': 1,\n",
      "          'quite': 1,\n",
      "          'annoying': 1,\n",
      "          'nheadache': 1,\n",
      "          'said': 1,\n",
      "          'wen': 1,\n",
      "          'jiang': 1,\n",
      "          'qu': 1,\n",
      "          'used': 1,\n",
      "          'romantically': 1,\n",
      "          'involved': 1,\n",
      "          'grew': 1,\n",
      "          'tired': 1,\n",
      "          'relationship': 1,\n",
      "          'mans': 1,\n",
      "          'plan': 1,\n",
      "          'win': 1,\n",
      "          'nof': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'friend': 1,\n",
      "          'rough': 1,\n",
      "          'bit': 1,\n",
      "          'fight': 1,\n",
      "          'grabs': 1,\n",
      "          'belonging': 1,\n",
      "          'bystander': 1,\n",
      "          'fend': 1,\n",
      "          'attacker': 1,\n",
      "          'ends': 1,\n",
      "          'smashing': 1,\n",
      "          'lamppost': 1,\n",
      "          'nwe': 1,\n",
      "          'later': 1,\n",
      "          'find': 1,\n",
      "          'belongs': 1,\n",
      "          'wishes': 1,\n",
      "          'damaged': 1,\n",
      "          'replaced': 1,\n",
      "          'twisted': 1,\n",
      "          'seek': 1,\n",
      "          'baotian': 1,\n",
      "          'li': 1,\n",
      "          'recoup': 1,\n",
      "          'losses': 1,\n",
      "          'sense': 1,\n",
      "          'womans': 1,\n",
      "          'behavior': 1,\n",
      "          'cold': 1,\n",
      "          'minute': 1,\n",
      "          'caring': 1,\n",
      "          'next': 1,\n",
      "          'feel': 1,\n",
      "          'character': 1,\n",
      "          'better': 1,\n",
      "          'without': 1,\n",
      "          'second': 1,\n",
      "          'causes': 1,\n",
      "          'lose': 1,\n",
      "          'lot': 1,\n",
      "          'obsessed': 1,\n",
      "          'chopping': 1,\n",
      "          'owners': 1,\n",
      "          'beating': 1,\n",
      "          'took': 1,\n",
      "          'offers': 1,\n",
      "          'nwhile': 1,\n",
      "          'blinded': 1,\n",
      "          'thirst': 1,\n",
      "          'voice': 1,\n",
      "          'reason': 1,\n",
      "          'rationalize': 1,\n",
      "          'situation': 1,\n",
      "          'nhis': 1,\n",
      "          'quest': 1,\n",
      "          'end': 1,\n",
      "          'dispute': 1,\n",
      "          'peacefully': 1,\n",
      "          'equitably': 1,\n",
      "          'identify': 1,\n",
      "          'frustrating': 1,\n",
      "          'talking': 1,\n",
      "          'brick': 1,\n",
      "          'wall': 1,\n",
      "          'friendship': 1,\n",
      "          'develops': 1,\n",
      "          'two': 1,\n",
      "          'men': 1,\n",
      "          'occurs': 1,\n",
      "          'late': 1,\n",
      "          'appreciate': 1,\n",
      "          'length': 1,\n",
      "          'contains': 1,\n",
      "          'extraneous': 1,\n",
      "          'material': 1,\n",
      "          'whole': 1,\n",
      "          'plot': 1,\n",
      "          'taken': 1,\n",
      "          'dont': 1,\n",
      "          'midpoint': 1,\n",
      "          'mistaken': 1,\n",
      "          'identity': 1,\n",
      "          'device': 1,\n",
      "          'served': 1,\n",
      "          'conflict': 1,\n",
      "          'saved': 1,\n",
      "          'booksellers': 1,\n",
      "          'boring': 1,\n",
      "          'pursuit': 1,\n",
      "          'nbut': 1,\n",
      "          'shortened': 1,\n",
      "          'less': 1,\n",
      "          'things': 1,\n",
      "          'right': 1,\n",
      "          'nas': 1,\n",
      "          'mentioned': 1,\n",
      "          'generally': 1,\n",
      "          'pretty': 1,\n",
      "          'grows': 1,\n",
      "          'tiresome': 1,\n",
      "          'reasoning': 1,\n",
      "          'unreasonable': 1,\n",
      "          'exercise': 1,\n",
      "          'represents': 1,\n",
      "          'differences': 1,\n",
      "          'thinking': 1,\n",
      "          'generations': 1,\n",
      "          'example': 1,\n",
      "          'quotes': 1,\n",
      "          'confucius': 1,\n",
      "          'across': 1,\n",
      "          'claims': 1,\n",
      "          'quote': 1,\n",
      "          'misinterpreted': 1,\n",
      "          'means': 1,\n",
      "          'something': 1,\n",
      "          'entirely': 1,\n",
      "          'different': 1,\n",
      "          'nalso': 1,\n",
      "          'effective': 1,\n",
      "          'sets': 1,\n",
      "          'tension': 1,\n",
      "          'within': 1,\n",
      "          'ready': 1,\n",
      "          'cut': 1,\n",
      "          'unwitting': 1,\n",
      "          'counting': 1,\n",
      "          'money': 1,\n",
      "          'slapping': 1,\n",
      "          'bundle': 1,\n",
      "          'currency': 1,\n",
      "          'table': 1,\n",
      "          'nwith': 1,\n",
      "          'every': 1,\n",
      "          'shot': 1,\n",
      "          'hardly': 1,\n",
      "          'stand': 1,\n",
      "          'interminable': 1,\n",
      "          'wait': 1,\n",
      "          'going': 1,\n",
      "          'pull': 1,\n",
      "          'cleaver': 1,\n",
      "          'exact': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'crumbs': 1,\n",
      "          'overcome': 1,\n",
      "          'rest': 1,\n",
      "          'shortcomings': 1,\n",
      "          'werent': 1,\n",
      "          'prevent': 1,\n",
      "          'lingering': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'rugrats': 10,\n",
      "          'movie': 10,\n",
      "          'film': 6,\n",
      "          'children': 5,\n",
      "          'nthe': 3,\n",
      "          'worst': 3,\n",
      "          'n': 3,\n",
      "          'nas': 3,\n",
      "          'things': 3,\n",
      "          'nfor': 3,\n",
      "          'animated': 2,\n",
      "          'looked': 2,\n",
      "          'antz': 2,\n",
      "          'good': 2,\n",
      "          'group': 2,\n",
      "          'babies': 2,\n",
      "          'threeyearold': 2,\n",
      "          'tommy': 2,\n",
      "          'pickles': 2,\n",
      "          'dill': 2,\n",
      "          'take': 2,\n",
      "          'along': 2,\n",
      "          'lost': 2,\n",
      "          'judging': 2,\n",
      "          'could': 2,\n",
      "          'family': 2,\n",
      "          'course': 2,\n",
      "          'may': 2,\n",
      "          'kids': 2,\n",
      "          'even': 2,\n",
      "          'picture': 2,\n",
      "          'although': 1,\n",
      "          'viewer': 1,\n",
      "          'television': 1,\n",
      "          'series': 1,\n",
      "          'went': 1,\n",
      "          'first': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'feature': 1,\n",
      "          'positive': 1,\n",
      "          'attitude': 1,\n",
      "          'trailer': 1,\n",
      "          'cute': 1,\n",
      "          'enough': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'think': 1,\n",
      "          'words': 1,\n",
      "          'recent': 1,\n",
      "          'review': 1,\n",
      "          'stated': 1,\n",
      "          'type': 1,\n",
      "          'since': 1,\n",
      "          '1995s': 1,\n",
      "          'pebble': 1,\n",
      "          'penguin': 1,\n",
      "          'bit': 1,\n",
      "          'premature': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'childrens': 1,\n",
      "          'fare': 1,\n",
      "          'starts': 1,\n",
      "          'make': 1,\n",
      "          'look': 1,\n",
      "          'comparison': 1,\n",
      "          'show': 1,\n",
      "          'little': 1,\n",
      "          'friends': 1,\n",
      "          'ranging': 1,\n",
      "          'head': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'ndaily': 1,\n",
      "          'becomes': 1,\n",
      "          'distraught': 1,\n",
      "          'mother': 1,\n",
      "          'newborn': 1,\n",
      "          'baby': 1,\n",
      "          'named': 1,\n",
      "          'get': 1,\n",
      "          'ndill': 1,\n",
      "          'hardeeharhar': 1,\n",
      "          'informed': 1,\n",
      "          'cousin': 1,\n",
      "          'anjelica': 1,\n",
      "          'cheryl': 1,\n",
      "          'chase': 1,\n",
      "          'new': 1,\n",
      "          'always': 1,\n",
      "          'attention': 1,\n",
      "          'away': 1,\n",
      "          'nwhen': 1,\n",
      "          'chuckie': 1,\n",
      "          'twins': 1,\n",
      "          'lil': 1,\n",
      "          'phil': 1,\n",
      "          'suggest': 1,\n",
      "          'taking': 1,\n",
      "          'back': 1,\n",
      "          'hospital': 1,\n",
      "          'goes': 1,\n",
      "          'way': 1,\n",
      "          'crash': 1,\n",
      "          'forest': 1,\n",
      "          'become': 1,\n",
      "          'running': 1,\n",
      "          'wolves': 1,\n",
      "          'circus': 1,\n",
      "          'monkeys': 1,\n",
      "          'among': 1,\n",
      "          'idea': 1,\n",
      "          'woods': 1,\n",
      "          'potentially': 1,\n",
      "          'fun': 1,\n",
      "          'many': 1,\n",
      "          'different': 1,\n",
      "          'done': 1,\n",
      "          'story': 1,\n",
      "          'nso': 1,\n",
      "          'writers': 1,\n",
      "          'choose': 1,\n",
      "          'nwhy': 1,\n",
      "          'set': 1,\n",
      "          'protracted': 1,\n",
      "          'cliched': 1,\n",
      "          'scene': 1,\n",
      "          'almost': 1,\n",
      "          'go': 1,\n",
      "          'waterfall': 1,\n",
      "          'youngest': 1,\n",
      "          'ages': 1,\n",
      "          '37': 1,\n",
      "          'well': 1,\n",
      "          'entertain': 1,\n",
      "          'audience': 1,\n",
      "          'saw': 1,\n",
      "          'nof': 1,\n",
      "          'around': 1,\n",
      "          'older': 1,\n",
      "          'parents': 1,\n",
      "          'desperately': 1,\n",
      "          'struggling': 1,\n",
      "          'stay': 1,\n",
      "          'awake': 1,\n",
      "          'included': 1,\n",
      "          'adult': 1,\n",
      "          'piece': 1,\n",
      "          'garbage': 1,\n",
      "          'plotline': 1,\n",
      "          'unoriginal': 1,\n",
      "          'writing': 1,\n",
      "          'absolutely': 1,\n",
      "          'wit': 1,\n",
      "          'charm': 1,\n",
      "          'nthere': 1,\n",
      "          'isnt': 1,\n",
      "          'one': 1,\n",
      "          'laugh': 1,\n",
      "          'excitement': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'marginally': 1,\n",
      "          'bright': 1,\n",
      "          'animation': 1,\n",
      "          'style': 1,\n",
      "          'especially': 1,\n",
      "          'unfortunate': 1,\n",
      "          'wasnt': 1,\n",
      "          'service': 1,\n",
      "          'quality': 1,\n",
      "          'doa': 1,\n",
      "          'start': 1,\n",
      "          'ni': 1,\n",
      "          'worthwhile': 1,\n",
      "          'sometimes': 1,\n",
      "          'comes': 1,\n",
      "          'simply': 1,\n",
      "          'awful': 1,\n",
      "          'said': 1,\n",
      "          'young': 1,\n",
      "          'like': 1,\n",
      "          'deserve': 1,\n",
      "          'better': 1,\n",
      "          'adults': 1,\n",
      "          'nearly': 1,\n",
      "          'unbearable': 1,\n",
      "          'excruciating': 1,\n",
      "          'chore': 1,\n",
      "          'sit': 1,\n",
      "          'year': 1,\n",
      "          'deeply': 1,\n",
      "          'hated': 1,\n",
      "          'boring': 1,\n",
      "          'nparents': 1,\n",
      "          'favor': 1,\n",
      "          'see': 1,\n",
      "          'rerelease': 1,\n",
      "          'wizard': 1,\n",
      "          'oz': 1,\n",
      "          'nthat': 1,\n",
      "          'contains': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'magic': 1,\n",
      "          'wonder': 1,\n",
      "          'two': 1,\n",
      "          'completely': 1,\n",
      "          'missing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'macleane': 7,\n",
      "          'rebecca': 5,\n",
      "          'nthe': 4,\n",
      "          'plunkett': 3,\n",
      "          'film': 3,\n",
      "          'two': 3,\n",
      "          'scott': 3,\n",
      "          'going': 3,\n",
      "          'mtv': 2,\n",
      "          'ni': 2,\n",
      "          'movie': 2,\n",
      "          'dont': 2,\n",
      "          'together': 2,\n",
      "          'involves': 2,\n",
      "          'way': 2,\n",
      "          'make': 2,\n",
      "          'money': 2,\n",
      "          'america': 2,\n",
      "          'nhe': 2,\n",
      "          'love': 2,\n",
      "          'shots': 2,\n",
      "          'scenes': 2,\n",
      "          'even': 2,\n",
      "          'lack': 2,\n",
      "          'us': 2,\n",
      "          'barely': 2,\n",
      "          'seconds': 2,\n",
      "          'style': 2,\n",
      "          'kinetic': 2,\n",
      "          'period': 1,\n",
      "          'piece': 1,\n",
      "          'mired': 1,\n",
      "          'modern': 1,\n",
      "          'pretentions': 1,\n",
      "          'nothing': 1,\n",
      "          'approach': 1,\n",
      "          'filmmaking': 1,\n",
      "          'used': 1,\n",
      "          'properly': 1,\n",
      "          'save': 1,\n",
      "          'see': 1,\n",
      "          'stigmata': 1,\n",
      "          'ruins': 1,\n",
      "          'one': 1,\n",
      "          'making': 1,\n",
      "          'muddled': 1,\n",
      "          'incoherent': 1,\n",
      "          'mess': 1,\n",
      "          'potentially': 1,\n",
      "          'interesting': 1,\n",
      "          'premise': 1,\n",
      "          'nthere': 1,\n",
      "          'certain': 1,\n",
      "          'genres': 1,\n",
      "          'go': 1,\n",
      "          'opens': 1,\n",
      "          'sequence': 1,\n",
      "          'still': 1,\n",
      "          'understand': 1,\n",
      "          'nit': 1,\n",
      "          'sort': 1,\n",
      "          'prison': 1,\n",
      "          'outbreak': 1,\n",
      "          'robbery': 1,\n",
      "          'gem': 1,\n",
      "          'keeps': 1,\n",
      "          'eaten': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'caper': 1,\n",
      "          'whatever': 1,\n",
      "          'may': 1,\n",
      "          'brings': 1,\n",
      "          'robert': 1,\n",
      "          'carlyle': 1,\n",
      "          'johnny': 1,\n",
      "          'lee': 1,\n",
      "          'miller': 1,\n",
      "          'respectively': 1,\n",
      "          'happygolucky': 1,\n",
      "          'brits': 1,\n",
      "          'living': 1,\n",
      "          'nthey': 1,\n",
      "          'pact': 1,\n",
      "          'steal': 1,\n",
      "          'rich': 1,\n",
      "          'give': 1,\n",
      "          'earn': 1,\n",
      "          'enough': 1,\n",
      "          'buy': 1,\n",
      "          'ticket': 1,\n",
      "          'ntheir': 1,\n",
      "          'first': 1,\n",
      "          'heist': 1,\n",
      "          'young': 1,\n",
      "          'debutante': 1,\n",
      "          'named': 1,\n",
      "          'lady': 1,\n",
      "          'liv': 1,\n",
      "          'tyler': 1,\n",
      "          'woman': 1,\n",
      "          'especially': 1,\n",
      "          'friendly': 1,\n",
      "          'party': 1,\n",
      "          'earlier': 1,\n",
      "          'nhis': 1,\n",
      "          'decorum': 1,\n",
      "          'stripping': 1,\n",
      "          'valuables': 1,\n",
      "          'earns': 1,\n",
      "          'crooks': 1,\n",
      "          'name': 1,\n",
      "          'gentleman': 1,\n",
      "          'highwaymen': 1,\n",
      "          'nlady': 1,\n",
      "          'also': 1,\n",
      "          'happens': 1,\n",
      "          'niece': 1,\n",
      "          'lord': 1,\n",
      "          'chief': 1,\n",
      "          'justice': 1,\n",
      "          'glaringly': 1,\n",
      "          'arrogant': 1,\n",
      "          'man': 1,\n",
      "          'nearing': 1,\n",
      "          'end': 1,\n",
      "          'political': 1,\n",
      "          'career': 1,\n",
      "          'demands': 1,\n",
      "          'robbers': 1,\n",
      "          'caught': 1,\n",
      "          'punished': 1,\n",
      "          'immediately': 1,\n",
      "          'leaving': 1,\n",
      "          'job': 1,\n",
      "          'hands': 1,\n",
      "          'devious': 1,\n",
      "          'chance': 1,\n",
      "          'ken': 1,\n",
      "          'stott': 1,\n",
      "          'things': 1,\n",
      "          'mind': 1,\n",
      "          'catching': 1,\n",
      "          'criminals': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'falls': 1,\n",
      "          'infuriating': 1,\n",
      "          'businesslike': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'plans': 1,\n",
      "          'foiled': 1,\n",
      "          'partners': 1,\n",
      "          'mindless': 1,\n",
      "          'romantic': 1,\n",
      "          'travails': 1,\n",
      "          'ndirector': 1,\n",
      "          'jake': 1,\n",
      "          'son': 1,\n",
      "          'ridley': 1,\n",
      "          'alien': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'fathers': 1,\n",
      "          'knack': 1,\n",
      "          'setting': 1,\n",
      "          'atmospheric': 1,\n",
      "          'none': 1,\n",
      "          'skill': 1,\n",
      "          'actually': 1,\n",
      "          'moving': 1,\n",
      "          'camera': 1,\n",
      "          'nmost': 1,\n",
      "          'action': 1,\n",
      "          'filmed': 1,\n",
      "          'rapid': 1,\n",
      "          'jerky': 1,\n",
      "          'impossible': 1,\n",
      "          'comprehend': 1,\n",
      "          'whats': 1,\n",
      "          'camerawork': 1,\n",
      "          'nauseating': 1,\n",
      "          'purposefully': 1,\n",
      "          'dizzying': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'project': 1,\n",
      "          'due': 1,\n",
      "          'fluidity': 1,\n",
      "          'ninstead': 1,\n",
      "          'utilizing': 1,\n",
      "          'panning': 1,\n",
      "          'impress': 1,\n",
      "          'upon': 1,\n",
      "          'scope': 1,\n",
      "          'events': 1,\n",
      "          'uses': 1,\n",
      "          'attentiondeficitdisorder': 1,\n",
      "          'edits': 1,\n",
      "          'ever': 1,\n",
      "          'holds': 1,\n",
      "          'shot': 1,\n",
      "          'ten': 1,\n",
      "          'faster': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'couple': 1,\n",
      "          'frames': 1,\n",
      "          'cut': 1,\n",
      "          'weird': 1,\n",
      "          'almost': 1,\n",
      "          'defiant': 1,\n",
      "          'dialogue': 1,\n",
      "          'conversations': 1,\n",
      "          'lasting': 1,\n",
      "          'say': 1,\n",
      "          '20': 1,\n",
      "          'undermines': 1,\n",
      "          'character': 1,\n",
      "          'definition': 1,\n",
      "          'protagonists': 1,\n",
      "          'come': 1,\n",
      "          'ciphers': 1,\n",
      "          'rather': 1,\n",
      "          'characters': 1,\n",
      "          'affair': 1,\n",
      "          'different': 1,\n",
      "          'emotionless': 1,\n",
      "          'unrealistic': 1,\n",
      "          'nwhen': 1,\n",
      "          'script': 1,\n",
      "          'calls': 1,\n",
      "          'decide': 1,\n",
      "          'meet': 1,\n",
      "          'lover': 1,\n",
      "          'reason': 1,\n",
      "          'believe': 1,\n",
      "          'would': 1,\n",
      "          'worth': 1,\n",
      "          'abandon': 1,\n",
      "          'goal': 1,\n",
      "          'speak': 1,\n",
      "          'throughout': 1,\n",
      "          'nplunkett': 1,\n",
      "          'wants': 1,\n",
      "          'desperately': 1,\n",
      "          'triumph': 1,\n",
      "          'substance': 1,\n",
      "          'since': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'blows': 1,\n",
      "          'hope': 1,\n",
      "          'succeeding': 1,\n",
      "          'level': 1,\n",
      "          'wanted': 1,\n",
      "          'appreciate': 1,\n",
      "          'basis': 1,\n",
      "          'admittedly': 1,\n",
      "          'pace': 1,\n",
      "          'couldnt': 1,\n",
      "          'gave': 1,\n",
      "          'headache': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dora': 9,\n",
      "          'paul': 6,\n",
      "          'n': 6,\n",
      "          'heckerling': 5,\n",
      "          'loser': 3,\n",
      "          'shes': 3,\n",
      "          'become': 3,\n",
      "          'pauls': 3,\n",
      "          'films': 2,\n",
      "          'heckerlings': 2,\n",
      "          'nwhen': 2,\n",
      "          'big': 2,\n",
      "          'fast': 2,\n",
      "          'times': 2,\n",
      "          'ever': 2,\n",
      "          'girl': 2,\n",
      "          'goth': 2,\n",
      "          'losers': 2,\n",
      "          'women': 2,\n",
      "          'drugged': 2,\n",
      "          'alcott': 2,\n",
      "          'love': 2,\n",
      "          'girls': 2,\n",
      "          'got': 2,\n",
      "          'aside': 2,\n",
      "          'nheckerling': 2,\n",
      "          'lot': 2,\n",
      "          'review': 1,\n",
      "          'contains': 1,\n",
      "          'spoilers': 1,\n",
      "          'director': 1,\n",
      "          'amy': 1,\n",
      "          'latest': 1,\n",
      "          'seesaws': 1,\n",
      "          'unpleasant': 1,\n",
      "          'artificial': 1,\n",
      "          'sometimes': 1,\n",
      "          'tackles': 1,\n",
      "          'issues': 1,\n",
      "          'abortion': 1,\n",
      "          'ridgemont': 1,\n",
      "          'high': 1,\n",
      "          'impossible': 1,\n",
      "          'tell': 1,\n",
      "          'whether': 1,\n",
      "          'matteroffact': 1,\n",
      "          'glib': 1,\n",
      "          'carry': 1,\n",
      "          'almost': 1,\n",
      "          'documentary': 1,\n",
      "          'starkness': 1,\n",
      "          'whatever': 1,\n",
      "          'case': 1,\n",
      "          'continually': 1,\n",
      "          'refuses': 1,\n",
      "          'comment': 1,\n",
      "          'politically': 1,\n",
      "          'nsuch': 1,\n",
      "          'sitcom': 1,\n",
      "          'tendency': 1,\n",
      "          'work': 1,\n",
      "          'jeopardize': 1,\n",
      "          'innocence': 1,\n",
      "          'characters': 1,\n",
      "          'hit': 1,\n",
      "          'reset': 1,\n",
      "          'button': 1,\n",
      "          'nthis': 1,\n",
      "          'fear': 1,\n",
      "          'drama': 1,\n",
      "          'soured': 1,\n",
      "          'look': 1,\n",
      "          'whos': 1,\n",
      "          'talking': 1,\n",
      "          'clueless': 1,\n",
      "          'ms': 1,\n",
      "          'also': 1,\n",
      "          'demonstrates': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'zero': 1,\n",
      "          'affinity': 1,\n",
      "          'milieu': 1,\n",
      "          'nhas': 1,\n",
      "          'anyone': 1,\n",
      "          'instance': 1,\n",
      "          'met': 1,\n",
      "          'stylistic': 1,\n",
      "          'vein': 1,\n",
      "          'mena': 1,\n",
      "          'suvaris': 1,\n",
      "          'nattired': 1,\n",
      "          'black': 1,\n",
      "          'thrift': 1,\n",
      "          'eye': 1,\n",
      "          'shadow': 1,\n",
      "          'smeared': 1,\n",
      "          'racoon': 1,\n",
      "          'chic': 1,\n",
      "          'bangy': 1,\n",
      "          'red': 1,\n",
      "          'hair': 1,\n",
      "          'barely': 1,\n",
      "          'contained': 1,\n",
      "          'girlish': 1,\n",
      "          'clips': 1,\n",
      "          'accepts': 1,\n",
      "          'label': 1,\n",
      "          'selfrespecting': 1,\n",
      "          'admitted': 1,\n",
      "          'digging': 1,\n",
      "          'geriatric': 1,\n",
      "          'rockers': 1,\n",
      "          'everclear': 1,\n",
      "          'willingly': 1,\n",
      "          'went': 1,\n",
      "          'anywhere': 1,\n",
      "          'sixpackwielding': 1,\n",
      "          'fratboy': 1,\n",
      "          'stranger': 1,\n",
      "          'nthe': 1,\n",
      "          'mechanics': 1,\n",
      "          'tired': 1,\n",
      "          'old': 1,\n",
      "          'introvertboyfallsforextrovertgirl': 1,\n",
      "          'plot': 1,\n",
      "          'drive': 1,\n",
      "          'protagonists': 1,\n",
      "          'cultural': 1,\n",
      "          'nonspecificity': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'stereotypes': 1,\n",
      "          'nthey': 1,\n",
      "          'walking': 1,\n",
      "          'wardrobes': 1,\n",
      "          'nsmalltown': 1,\n",
      "          'transplant': 1,\n",
      "          'strangely': 1,\n",
      "          'static': 1,\n",
      "          'jason': 1,\n",
      "          'biggs': 1,\n",
      "          'eponymous': 1,\n",
      "          'hero': 1,\n",
      "          'always': 1,\n",
      "          'wears': 1,\n",
      "          'woolly': 1,\n",
      "          'hunters': 1,\n",
      "          'cap': 1,\n",
      "          'flaps': 1,\n",
      "          'covering': 1,\n",
      "          'ears': 1,\n",
      "          'beneath': 1,\n",
      "          'rests': 1,\n",
      "          'parted': 1,\n",
      "          'moptop': 1,\n",
      "          'couldnt': 1,\n",
      "          'scream': 1,\n",
      "          'shemp': 1,\n",
      "          'lame': 1,\n",
      "          'stooge': 1,\n",
      "          'wig': 1,\n",
      "          'louder': 1,\n",
      "          'nhe': 1,\n",
      "          'three': 1,\n",
      "          'smuglooking': 1,\n",
      "          'roommates': 1,\n",
      "          'onedimensional': 1,\n",
      "          'trio': 1,\n",
      "          'supposed': 1,\n",
      "          'brothers': 1,\n",
      "          'share': 1,\n",
      "          'similar': 1,\n",
      "          'facial': 1,\n",
      "          'features': 1,\n",
      "          'including': 1,\n",
      "          'especially': 1,\n",
      "          'mouths': 1,\n",
      "          'fashion': 1,\n",
      "          'sense': 1,\n",
      "          'incomprehensibly': 1,\n",
      "          'glam': 1,\n",
      "          'nthough': 1,\n",
      "          'theyre': 1,\n",
      "          'overtly': 1,\n",
      "          'transvestites': 1,\n",
      "          'seems': 1,\n",
      "          'equating': 1,\n",
      "          'flamboyance': 1,\n",
      "          'villainy': 1,\n",
      "          'cruising': 1,\n",
      "          'dormies': 1,\n",
      "          'conspire': 1,\n",
      "          'evict': 1,\n",
      "          'regularly': 1,\n",
      "          'molest': 1,\n",
      "          'ndora': 1,\n",
      "          'ignorantly': 1,\n",
      "          'downs': 1,\n",
      "          'one': 1,\n",
      "          'date': 1,\n",
      "          'rape': 1,\n",
      "          'potions': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'either': 1,\n",
      "          'studio': 1,\n",
      "          'cowardly': 1,\n",
      "          'admit': 1,\n",
      "          'subsequently': 1,\n",
      "          'violated': 1,\n",
      "          'rescues': 1,\n",
      "          'said': 1,\n",
      "          'narcotic': 1,\n",
      "          'scare': 1,\n",
      "          'learns': 1,\n",
      "          'dating': 1,\n",
      "          'unctuous': 1,\n",
      "          'european': 1,\n",
      "          'lit': 1,\n",
      "          'professor': 1,\n",
      "          'edward': 1,\n",
      "          'superb': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'nalthough': 1,\n",
      "          'already': 1,\n",
      "          'point': 1,\n",
      "          'bound': 1,\n",
      "          'happen': 1,\n",
      "          'pretty': 1,\n",
      "          'address': 1,\n",
      "          'name': 1,\n",
      "          'gets': 1,\n",
      "          'altruistic': 1,\n",
      "          'pretends': 1,\n",
      "          'flowers': 1,\n",
      "          'bought': 1,\n",
      "          'actually': 1,\n",
      "          'nshes': 1,\n",
      "          'thrilled': 1,\n",
      "          'nevertheless': 1,\n",
      "          'spends': 1,\n",
      "          'days': 1,\n",
      "          'recuperate': 1,\n",
      "          'two': 1,\n",
      "          'bond': 1,\n",
      "          'emergency': 1,\n",
      "          'kitten': 1,\n",
      "          'surgery': 1,\n",
      "          'broadway': 1,\n",
      "          'play': 1,\n",
      "          'cabaret': 1,\n",
      "          'head': 1,\n",
      "          'starting': 1,\n",
      "          'back': 1,\n",
      "          'nonfriendly': 1,\n",
      "          'way': 1,\n",
      "          'decides': 1,\n",
      "          'alcotts': 1,\n",
      "          'livein': 1,\n",
      "          'girlfriend': 1,\n",
      "          'ncue': 1,\n",
      "          'precious': 1,\n",
      "          'hommage': 1,\n",
      "          'graduate': 1,\n",
      "          'shots': 1,\n",
      "          'drifting': 1,\n",
      "          'around': 1,\n",
      "          'berkeleyer': 1,\n",
      "          'simon': 1,\n",
      "          'garfunkels': 1,\n",
      "          'parsley': 1,\n",
      "          'sage': 1,\n",
      "          'rosemary': 1,\n",
      "          'thyme': 1,\n",
      "          'never': 1,\n",
      "          'allowed': 1,\n",
      "          'another': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'common': 1,\n",
      "          'nora': 1,\n",
      "          'youve': 1,\n",
      "          'mail': 1,\n",
      "          'ephron': 1,\n",
      "          'prominent': 1,\n",
      "          'chick': 1,\n",
      "          'directing': 1,\n",
      "          'comedies': 1,\n",
      "          'today': 1,\n",
      "          'neither': 1,\n",
      "          'use': 1,\n",
      "          'strongwilled': 1,\n",
      "          'nmen': 1,\n",
      "          'continue': 1,\n",
      "          'trod': 1,\n",
      "          'bitter': 1,\n",
      "          'end': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'gives': 1,\n",
      "          'smooch': 1,\n",
      "          'blurts': 1,\n",
      "          'feelings': 1,\n",
      "          'amounts': 1,\n",
      "          'creepy': 1,\n",
      "          'ultimatum': 1,\n",
      "          'ultimately': 1,\n",
      "          'shrugs': 1,\n",
      "          'willmere': 1,\n",
      "          'hours': 1,\n",
      "          'hints': 1,\n",
      "          'poisoned': 1,\n",
      "          'cheerily': 1,\n",
      "          'redecorating': 1,\n",
      "          'apartment': 1,\n",
      "          'laissezfaire': 1,\n",
      "          'issue': 1,\n",
      "          'general': 1,\n",
      "          'reserves': 1,\n",
      "          'comeuppance': 1,\n",
      "          'wouldbe': 1,\n",
      "          'rapists': 1,\n",
      "          'jokey': 1,\n",
      "          'epilogue': 1,\n",
      "          'titles': 1,\n",
      "          'ngoth': 1,\n",
      "          'veneer': 1,\n",
      "          'awful': 1,\n",
      "          'behave': 1,\n",
      "          'erratically': 1,\n",
      "          'enough': 1,\n",
      "          'angry': 1,\n",
      "          'young': 1,\n",
      "          'dude': 1,\n",
      "          'filmmakers': 1,\n",
      "          'make': 1,\n",
      "          'movies': 1,\n",
      "          'misses': 1,\n",
      "          'shot': 1,\n",
      "          'transform': 1,\n",
      "          'role': 1,\n",
      "          'model': 1,\n",
      "          'arcs': 1,\n",
      "          'may': 1,\n",
      "          'social': 1,\n",
      "          'responsibility': 1,\n",
      "          'privilege': 1,\n",
      "          'would': 1,\n",
      "          'taken': 1,\n",
      "          'advantage': 1,\n",
      "          'shoes': 1,\n",
      "          'consider': 1,\n",
      "          'sole': 1,\n",
      "          'female': 1,\n",
      "          'principal': 1,\n",
      "          'nnot': 1,\n",
      "          'worth': 1,\n",
      "          'contemplating': 1,\n",
      "          'seriouslygod': 1,\n",
      "          'knows': 1,\n",
      "          'didnt': 1,\n",
      "          'nthat': 1,\n",
      "          'hallmark': 1,\n",
      "          'firstrun': 1,\n",
      "          'dvd': 1,\n",
      "          'booksaboutmovies': 1,\n",
      "          'reviews': 1,\n",
      "          'plus': 1,\n",
      "          'contests': 1,\n",
      "          'proverbial': 1,\n",
      "          'nvisit': 1,\n",
      "          'film': 1,\n",
      "          'freak': 1,\n",
      "          'central': 1,\n",
      "          'http': 1,\n",
      "          'filmfreakcentral': 1,\n",
      "          'net': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'new': 4,\n",
      "          'york': 4,\n",
      "          'movie': 4,\n",
      "          'acting': 4,\n",
      "          'film': 3,\n",
      "          'french': 3,\n",
      "          'nalso': 3,\n",
      "          'nbut': 3,\n",
      "          'script': 3,\n",
      "          'ha': 3,\n",
      "          'finally': 2,\n",
      "          'screen': 2,\n",
      "          'beast': 2,\n",
      "          'broderick': 2,\n",
      "          'looks': 2,\n",
      "          'nand': 2,\n",
      "          'godzilla': 2,\n",
      "          'non': 2,\n",
      "          'summer': 2,\n",
      "          'movies': 2,\n",
      "          'nbroderick': 2,\n",
      "          'pretty': 2,\n",
      "          'useless': 2,\n",
      "          'humour': 2,\n",
      "          'day': 2,\n",
      "          'reno': 2,\n",
      "          'save': 2,\n",
      "          'little': 2,\n",
      "          'par': 2,\n",
      "          'never': 2,\n",
      "          'thats': 2,\n",
      "          'seem': 2,\n",
      "          'destruction': 2,\n",
      "          'lot': 2,\n",
      "          'fish': 2,\n",
      "          'running': 2,\n",
      "          'ebert': 2,\n",
      "          'mayor': 2,\n",
      "          'impressive': 2,\n",
      "          'although': 2,\n",
      "          'aswell': 2,\n",
      "          'cant': 2,\n",
      "          'ending': 2,\n",
      "          'fantastically': 1,\n",
      "          'hyped': 1,\n",
      "          'godzila': 1,\n",
      "          'lumbers': 1,\n",
      "          'onto': 1,\n",
      "          'big': 1,\n",
      "          'opens': 1,\n",
      "          'footage': 1,\n",
      "          'nuclear': 1,\n",
      "          'testing': 1,\n",
      "          'polynesian': 1,\n",
      "          'islands': 1,\n",
      "          'attack': 1,\n",
      "          'boat': 1,\n",
      "          'join': 1,\n",
      "          'dr': 1,\n",
      "          'nick': 1,\n",
      "          'tatopoulos': 1,\n",
      "          'looking': 1,\n",
      "          '17': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'research': 1,\n",
      "          'chernobyl': 1,\n",
      "          'nsome': 1,\n",
      "          'shady': 1,\n",
      "          'u': 1,\n",
      "          'government': 1,\n",
      "          'guys': 1,\n",
      "          'appear': 1,\n",
      "          'ask': 1,\n",
      "          'come': 1,\n",
      "          'island': 1,\n",
      "          'massive': 1,\n",
      "          'footprints': 1,\n",
      "          'like': 1,\n",
      "          'giant': 1,\n",
      "          'lizard': 1,\n",
      "          'whats': 1,\n",
      "          'heading': 1,\n",
      "          'ngulp': 1,\n",
      "          'nalthough': 1,\n",
      "          'stop': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'ride': 1,\n",
      "          'points': 1,\n",
      "          'something': 1,\n",
      "          'curiously': 1,\n",
      "          'uninvolving': 1,\n",
      "          'unexciting': 1,\n",
      "          'main': 1,\n",
      "          'faults': 1,\n",
      "          'lie': 1,\n",
      "          'writing': 1,\n",
      "          'common': 1,\n",
      "          'problems': 1,\n",
      "          'blockbuster': 1,\n",
      "          'hero': 1,\n",
      "          'tough': 1,\n",
      "          'guy': 1,\n",
      "          'image': 1,\n",
      "          'nwhile': 1,\n",
      "          'emmerichs': 1,\n",
      "          'previous': 1,\n",
      "          'flick': 1,\n",
      "          'independence': 1,\n",
      "          '1996': 1,\n",
      "          'wisecracks': 1,\n",
      "          'action': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'smith': 1,\n",
      "          'neither': 1,\n",
      "          'maria': 1,\n",
      "          'pitillo': 1,\n",
      "          'brodericks': 1,\n",
      "          'former': 1,\n",
      "          'girlfriend': 1,\n",
      "          'chronic': 1,\n",
      "          'disability': 1,\n",
      "          'nshes': 1,\n",
      "          'incapable': 1,\n",
      "          'showing': 1,\n",
      "          'emotion': 1,\n",
      "          'speaks': 1,\n",
      "          'every': 1,\n",
      "          'line': 1,\n",
      "          'way': 1,\n",
      "          'basically': 1,\n",
      "          'shes': 1,\n",
      "          'total': 1,\n",
      "          'crap': 1,\n",
      "          'nits': 1,\n",
      "          'actor': 1,\n",
      "          'jean': 1,\n",
      "          'indeed': 1,\n",
      "          'turning': 1,\n",
      "          'campy': 1,\n",
      "          'performance': 1,\n",
      "          'secret': 1,\n",
      "          'agent': 1,\n",
      "          'nshame': 1,\n",
      "          'time': 1,\n",
      "          'overlong': 1,\n",
      "          'nhank': 1,\n",
      "          'azaria': 1,\n",
      "          'also': 1,\n",
      "          'turns': 1,\n",
      "          'crazy': 1,\n",
      "          'cameraman': 1,\n",
      "          'named': 1,\n",
      "          'animal': 1,\n",
      "          'adds': 1,\n",
      "          'life': 1,\n",
      "          'picture': 1,\n",
      "          'making': 1,\n",
      "          'appearance': 1,\n",
      "          'harry': 1,\n",
      "          'shearer': 1,\n",
      "          'probably': 1,\n",
      "          'best': 1,\n",
      "          'know': 1,\n",
      "          'voices': 1,\n",
      "          'simpsons': 1,\n",
      "          'slimy': 1,\n",
      "          'news': 1,\n",
      "          'reporter': 1,\n",
      "          'k': 1,\n",
      "          'nwell': 1,\n",
      "          'either': 1,\n",
      "          'nemmerich': 1,\n",
      "          'screenwriting': 1,\n",
      "          'pal': 1,\n",
      "          'dean': 1,\n",
      "          'devlin': 1,\n",
      "          'caught': 1,\n",
      "          'city': 1,\n",
      "          'forgot': 1,\n",
      "          'write': 1,\n",
      "          'dialogue': 1,\n",
      "          'banal': 1,\n",
      "          'utters': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'existent': 1,\n",
      "          'plays': 1,\n",
      "          'typical': 1,\n",
      "          'frenchman': 1,\n",
      "          'croissant': 1,\n",
      "          'forever': 1,\n",
      "          'remains': 1,\n",
      "          'geeky': 1,\n",
      "          'scientist': 1,\n",
      "          'seriously': 1,\n",
      "          'lacking': 1,\n",
      "          'sense': 1,\n",
      "          'jokes': 1,\n",
      "          'uttered': 1,\n",
      "          'pathetic': 1,\n",
      "          'theres': 1,\n",
      "          'hilarious': 1,\n",
      "          'gag': 1,\n",
      "          'siskel': 1,\n",
      "          'n': 1,\n",
      "          'assistant': 1,\n",
      "          'called': 1,\n",
      "          'gene': 1,\n",
      "          'nha': 1,\n",
      "          'plot': 1,\n",
      "          'dire': 1,\n",
      "          'end': 1,\n",
      "          'rips': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          '1993': 1,\n",
      "          'lots': 1,\n",
      "          'baby': 1,\n",
      "          'godzillas': 1,\n",
      "          'e': 1,\n",
      "          'nvelicorapters': 1,\n",
      "          'around': 1,\n",
      "          'nright': 1,\n",
      "          'suck': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nthankfully': 1,\n",
      "          'theyre': 1,\n",
      "          'quite': 1,\n",
      "          'good': 1,\n",
      "          'ngodzilla': 1,\n",
      "          'piece': 1,\n",
      "          'cgi': 1,\n",
      "          'dont': 1,\n",
      "          'see': 1,\n",
      "          'much': 1,\n",
      "          'dark': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'hugely': 1,\n",
      "          'disappointing': 1,\n",
      "          'boring': 1,\n",
      "          'goes': 1,\n",
      "          'far': 1,\n",
      "          'long': 1,\n",
      "          'decide': 1,\n",
      "          'course': 1,\n",
      "          'leaves': 1,\n",
      "          'possibility': 1,\n",
      "          'sequel': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'one': 1,\n",
      "          'arrives': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'evolution': 4,\n",
      "          'ghostbusters': 4,\n",
      "          'find': 4,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'ira': 3,\n",
      "          'harry': 3,\n",
      "          'jones': 3,\n",
      "          'take': 3,\n",
      "          'time': 3,\n",
      "          'whole': 3,\n",
      "          'scott': 3,\n",
      "          'comic': 3,\n",
      "          'movie': 2,\n",
      "          'plus': 2,\n",
      "          'none': 2,\n",
      "          'meteor': 2,\n",
      "          'david': 2,\n",
      "          'duchovny': 2,\n",
      "          'orlando': 2,\n",
      "          'organisms': 2,\n",
      "          'took': 2,\n",
      "          'years': 2,\n",
      "          'doesnt': 2,\n",
      "          'government': 2,\n",
      "          'area': 2,\n",
      "          'movies': 2,\n",
      "          'julianne': 2,\n",
      "          'moore': 2,\n",
      "          'center': 2,\n",
      "          'seann': 2,\n",
      "          'william': 2,\n",
      "          'also': 2,\n",
      "          'seems': 2,\n",
      "          'really': 2,\n",
      "          'funny': 2,\n",
      "          'offers': 2,\n",
      "          'much': 2,\n",
      "          'trip': 2,\n",
      "          'scene': 2,\n",
      "          'alien': 2,\n",
      "          'make': 2,\n",
      "          'side': 2,\n",
      "          'comedic': 2,\n",
      "          'talent': 2,\n",
      "          'comedy': 2,\n",
      "          'njones': 2,\n",
      "          'cast': 2,\n",
      "          'concepts': 1,\n",
      "          'often': 1,\n",
      "          'pitched': 1,\n",
      "          'producers': 1,\n",
      "          'mathematical': 1,\n",
      "          'formulas': 1,\n",
      "          'involving': 1,\n",
      "          'successful': 1,\n",
      "          'films': 1,\n",
      "          'past': 1,\n",
      "          'nso': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'day': 1,\n",
      "          'someone': 1,\n",
      "          'said': 1,\n",
      "          'nits': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'tremors': 1,\n",
      "          'nand': 1,\n",
      "          'nsum': 1,\n",
      "          'total': 1,\n",
      "          'alienbusting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'begins': 1,\n",
      "          'lands': 1,\n",
      "          'glen': 1,\n",
      "          'canyon': 1,\n",
      "          'arizona': 1,\n",
      "          'ncommunity': 1,\n",
      "          'college': 1,\n",
      "          'science': 1,\n",
      "          'profs': 1,\n",
      "          'kane': 1,\n",
      "          'block': 1,\n",
      "          'samples': 1,\n",
      "          'discover': 1,\n",
      "          'onecelled': 1,\n",
      "          'inside': 1,\n",
      "          'evolving': 1,\n",
      "          'rapidly': 1,\n",
      "          'hours': 1,\n",
      "          'millions': 1,\n",
      "          'life': 1,\n",
      "          'earth': 1,\n",
      "          'njust': 1,\n",
      "          'wondering': 1,\n",
      "          'hey': 1,\n",
      "          'usually': 1,\n",
      "          'come': 1,\n",
      "          'came': 1,\n",
      "          'leader': 1,\n",
      "          'pack': 1,\n",
      "          'gen': 1,\n",
      "          'woodman': 1,\n",
      "          'ted': 1,\n",
      "          'levine': 1,\n",
      "          'turns': 1,\n",
      "          'old': 1,\n",
      "          'nemesis': 1,\n",
      "          'iras': 1,\n",
      "          'blocked': 1,\n",
      "          'research': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'continue': 1,\n",
      "          'grow': 1,\n",
      "          'large': 1,\n",
      "          'enough': 1,\n",
      "          'start': 1,\n",
      "          'attacking': 1,\n",
      "          'people': 1,\n",
      "          'nby': 1,\n",
      "          'gained': 1,\n",
      "          'friend': 1,\n",
      "          'dr': 1,\n",
      "          'allison': 1,\n",
      "          'reed': 1,\n",
      "          'disease': 1,\n",
      "          'control': 1,\n",
      "          'na': 1,\n",
      "          'country': 1,\n",
      "          'club': 1,\n",
      "          'poolboy': 1,\n",
      "          'wayne': 1,\n",
      "          'green': 1,\n",
      "          'attached': 1,\n",
      "          'merry': 1,\n",
      "          'band': 1,\n",
      "          'nbut': 1,\n",
      "          'means': 1,\n",
      "          'stop': 1,\n",
      "          'aliens': 1,\n",
      "          'ndirector': 1,\n",
      "          'ivan': 1,\n",
      "          'reitman': 1,\n",
      "          'revisiting': 1,\n",
      "          'biggest': 1,\n",
      "          'hit': 1,\n",
      "          '1984s': 1,\n",
      "          'falls': 1,\n",
      "          'miserably': 1,\n",
      "          'short': 1,\n",
      "          'reason': 1,\n",
      "          'readily': 1,\n",
      "          'apparent': 1,\n",
      "          'n': 1,\n",
      "          'three': 1,\n",
      "          'guys': 1,\n",
      "          'scientists': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'dan': 1,\n",
      "          'aykroyd': 1,\n",
      "          'harold': 1,\n",
      "          'ramis': 1,\n",
      "          'guy': 1,\n",
      "          'adlib': 1,\n",
      "          'milk': 1,\n",
      "          'potential': 1,\n",
      "          'lines': 1,\n",
      "          'prove': 1,\n",
      "          'useless': 1,\n",
      "          'anyone': 1,\n",
      "          'elses': 1,\n",
      "          'hands': 1,\n",
      "          'nfor': 1,\n",
      "          'good': 1,\n",
      "          'measure': 1,\n",
      "          'talents': 1,\n",
      "          'rick': 1,\n",
      "          'moranis': 1,\n",
      "          'funnier': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'road': 1,\n",
      "          'nscott': 1,\n",
      "          'amusing': 1,\n",
      "          'sings': 1,\n",
      "          'beautiful': 1,\n",
      "          'dragonlike': 1,\n",
      "          'draw': 1,\n",
      "          'trap': 1,\n",
      "          'nother': 1,\n",
      "          'unable': 1,\n",
      "          'thin': 1,\n",
      "          'material': 1,\n",
      "          'writers': 1,\n",
      "          'gave': 1,\n",
      "          'nan': 1,\n",
      "          'actor': 1,\n",
      "          'search': 1,\n",
      "          'forte': 1,\n",
      "          'looked': 1,\n",
      "          'gritty': 1,\n",
      "          'action': 1,\n",
      "          'hero': 1,\n",
      "          'playing': 1,\n",
      "          'god': 1,\n",
      "          'romantic': 1,\n",
      "          'return': 1,\n",
      "          'nnow': 1,\n",
      "          'wants': 1,\n",
      "          'wacky': 1,\n",
      "          'nlook': 1,\n",
      "          'back': 1,\n",
      "          'tv': 1,\n",
      "          'five': 1,\n",
      "          'nanother': 1,\n",
      "          'sad': 1,\n",
      "          'case': 1,\n",
      "          'needs': 1,\n",
      "          'selective': 1,\n",
      "          'accepts': 1,\n",
      "          'nshes': 1,\n",
      "          'talented': 1,\n",
      "          'actress': 1,\n",
      "          'impressive': 1,\n",
      "          'list': 1,\n",
      "          'credits': 1,\n",
      "          'award': 1,\n",
      "          'nominations': 1,\n",
      "          'trying': 1,\n",
      "          'slapstick': 1,\n",
      "          'nher': 1,\n",
      "          'character': 1,\n",
      "          'tendency': 1,\n",
      "          'bump': 1,\n",
      "          'things': 1,\n",
      "          'trait': 1,\n",
      "          'comes': 1,\n",
      "          'pathetic': 1,\n",
      "          'plea': 1,\n",
      "          'laughs': 1,\n",
      "          'sole': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'film': 1,\n",
      "          'nhes': 1,\n",
      "          'funniest': 1,\n",
      "          'bug': 1,\n",
      "          'invades': 1,\n",
      "          'harrys': 1,\n",
      "          'body': 1,\n",
      "          'pulled': 1,\n",
      "          'ass': 1,\n",
      "          'member': 1,\n",
      "          'ball': 1,\n",
      "          'run': 1,\n",
      "          'cant': 1,\n",
      "          'carry': 1,\n",
      "          'nhe': 1,\n",
      "          'found': 1,\n",
      "          'similar': 1,\n",
      "          'situation': 1,\n",
      "          'replacements': 1,\n",
      "          'ensemble': 1,\n",
      "          'eventually': 1,\n",
      "          'project': 1,\n",
      "          'major': 1,\n",
      "          'star': 1,\n",
      "          'isnt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'action': 8,\n",
      "          'film': 8,\n",
      "          'one': 7,\n",
      "          'girl': 6,\n",
      "          'arnold': 5,\n",
      "          'end': 5,\n",
      "          'jericho': 5,\n",
      "          'movie': 5,\n",
      "          'nin': 4,\n",
      "          'days': 4,\n",
      "          'trying': 4,\n",
      "          'devil': 4,\n",
      "          'plays': 4,\n",
      "          'nthe': 4,\n",
      "          'nhe': 3,\n",
      "          'made': 3,\n",
      "          'script': 3,\n",
      "          'make': 3,\n",
      "          'unforgettable': 3,\n",
      "          'baby': 3,\n",
      "          'everyone': 3,\n",
      "          'character': 3,\n",
      "          'scene': 3,\n",
      "          'boy': 3,\n",
      "          'impossible': 2,\n",
      "          'films': 2,\n",
      "          'tell': 2,\n",
      "          'good': 2,\n",
      "          'attempt': 2,\n",
      "          'series': 2,\n",
      "          'nis': 2,\n",
      "          'stars': 2,\n",
      "          'give': 2,\n",
      "          'another': 2,\n",
      "          'performance': 2,\n",
      "          'like': 2,\n",
      "          'past': 2,\n",
      "          'terminator': 2,\n",
      "          '2': 2,\n",
      "          'true': 2,\n",
      "          'n': 2,\n",
      "          'satans': 2,\n",
      "          'director': 2,\n",
      "          'thing': 2,\n",
      "          'narnold': 2,\n",
      "          'cane': 2,\n",
      "          'finds': 2,\n",
      "          'kill': 2,\n",
      "          'gabriel': 2,\n",
      "          'byrne': 2,\n",
      "          'longer': 2,\n",
      "          'njericho': 2,\n",
      "          'feels': 2,\n",
      "          'wife': 2,\n",
      "          'daughter': 2,\n",
      "          'killed': 2,\n",
      "          'cliched': 2,\n",
      "          'high': 2,\n",
      "          'nchoir': 2,\n",
      "          'nyou': 2,\n",
      "          'two': 2,\n",
      "          'memorable': 2,\n",
      "          'performances': 2,\n",
      "          'exception': 2,\n",
      "          'fun': 2,\n",
      "          'whole': 2,\n",
      "          'power': 2,\n",
      "          'actors': 2,\n",
      "          'pollak': 2,\n",
      "          'funny': 2,\n",
      "          'tunney': 2,\n",
      "          'audience': 2,\n",
      "          'job': 2,\n",
      "          'terrible': 2,\n",
      "          'nthis': 2,\n",
      "          'well': 1,\n",
      "          'completed': 1,\n",
      "          'seemingly': 1,\n",
      "          'task': 1,\n",
      "          'three': 1,\n",
      "          'consecutive': 1,\n",
      "          'unsatisfactory': 1,\n",
      "          'domain': 1,\n",
      "          'owns': 1,\n",
      "          'surprising': 1,\n",
      "          'goliath': 1,\n",
      "          'star': 1,\n",
      "          'bad': 1,\n",
      "          'neraser': 1,\n",
      "          'back': 1,\n",
      "          '1996': 1,\n",
      "          'confused': 1,\n",
      "          'sense': 1,\n",
      "          'nbatman': 1,\n",
      "          'robin': 1,\n",
      "          '1997': 1,\n",
      "          'black': 1,\n",
      "          'sheep': 1,\n",
      "          'batman': 1,\n",
      "          'ridiculous': 1,\n",
      "          'acting': 1,\n",
      "          'idiotic': 1,\n",
      "          'scenes': 1,\n",
      "          'painfully': 1,\n",
      "          'flashy': 1,\n",
      "          'costumes': 1,\n",
      "          'nnow': 1,\n",
      "          '1999': 1,\n",
      "          'third': 1,\n",
      "          'strike': 1,\n",
      "          'tough': 1,\n",
      "          'bat': 1,\n",
      "          'powerful': 1,\n",
      "          'longlived': 1,\n",
      "          'career': 1,\n",
      "          'nwill': 1,\n",
      "          'ever': 1,\n",
      "          'us': 1,\n",
      "          'classic': 1,\n",
      "          'judgement': 1,\n",
      "          'day': 1,\n",
      "          'predator': 1,\n",
      "          'great': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'commando': 1,\n",
      "          'red': 1,\n",
      "          'sonja': 1,\n",
      "          'lies': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'look': 1,\n",
      "          'way': 1,\n",
      "          'begins': 1,\n",
      "          'birth': 1,\n",
      "          '1979': 1,\n",
      "          'inexorably': 1,\n",
      "          'due': 1,\n",
      "          'formation': 1,\n",
      "          'night': 1,\n",
      "          'carrier': 1,\n",
      "          'hour': 1,\n",
      "          'new': 1,\n",
      "          'years': 1,\n",
      "          '2000': 1,\n",
      "          'nfortunately': 1,\n",
      "          'movies': 1,\n",
      "          'sake': 1,\n",
      "          'grows': 1,\n",
      "          'resides': 1,\n",
      "          'manhattan': 1,\n",
      "          'skyscrapers': 1,\n",
      "          'subway': 1,\n",
      "          'trains': 1,\n",
      "          'dark': 1,\n",
      "          'tunnels': 1,\n",
      "          'myriad': 1,\n",
      "          'inept': 1,\n",
      "          'nypd': 1,\n",
      "          'officers': 1,\n",
      "          'nits': 1,\n",
      "          'dream': 1,\n",
      "          'come': 1,\n",
      "          'given': 1,\n",
      "          'tons': 1,\n",
      "          'cool': 1,\n",
      "          'stuff': 1,\n",
      "          'blow': 1,\n",
      "          'nimagine': 1,\n",
      "          'lived': 1,\n",
      "          'anytown': 1,\n",
      "          'usa': 1,\n",
      "          'destroy': 1,\n",
      "          'dairy': 1,\n",
      "          'queen': 1,\n",
      "          'post': 1,\n",
      "          'office': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'boring': 1,\n",
      "          'events': 1,\n",
      "          'middle': 1,\n",
      "          'religious': 1,\n",
      "          'battle': 1,\n",
      "          'church': 1,\n",
      "          'hide': 1,\n",
      "          'cases': 1,\n",
      "          'satan': 1,\n",
      "          'pregnant': 1,\n",
      "          'nif': 1,\n",
      "          'successful': 1,\n",
      "          'world': 1,\n",
      "          'exist': 1,\n",
      "          'know': 1,\n",
      "          'duty': 1,\n",
      "          'protect': 1,\n",
      "          '1': 1,\n",
      "          'faith': 1,\n",
      "          'responsible': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'hero': 1,\n",
      "          'right': 1,\n",
      "          'name': 1,\n",
      "          'fittingly': 1,\n",
      "          'shouts': 1,\n",
      "          'cops': 1,\n",
      "          'priests': 1,\n",
      "          'truly': 1,\n",
      "          'hilarious': 1,\n",
      "          'supposed': 1,\n",
      "          'ultimate': 1,\n",
      "          'dramatic': 1,\n",
      "          'point': 1,\n",
      "          'screams': 1,\n",
      "          'choir': 1,\n",
      "          'nthose': 1,\n",
      "          'lines': 1,\n",
      "          'marked': 1,\n",
      "          'points': 1,\n",
      "          'na': 1,\n",
      "          'still': 1,\n",
      "          'enjoyable': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'effective': 1,\n",
      "          'main': 1,\n",
      "          'actor': 1,\n",
      "          'fails': 1,\n",
      "          'contain': 1,\n",
      "          'nbyrne': 1,\n",
      "          'playing': 1,\n",
      "          'man': 1,\n",
      "          'manifestation': 1,\n",
      "          'seems': 1,\n",
      "          'wonderfully': 1,\n",
      "          'manipulative': 1,\n",
      "          'villain': 1,\n",
      "          'control': 1,\n",
      "          'time': 1,\n",
      "          'annoying': 1,\n",
      "          'however': 1,\n",
      "          'human': 1,\n",
      "          'simple': 1,\n",
      "          'punch': 1,\n",
      "          'face': 1,\n",
      "          'yet': 1,\n",
      "          'seriously': 1,\n",
      "          'hurt': 1,\n",
      "          'ni': 1,\n",
      "          'count': 1,\n",
      "          'number': 1,\n",
      "          'times': 1,\n",
      "          'could': 1,\n",
      "          'taken': 1,\n",
      "          'custody': 1,\n",
      "          'weak': 1,\n",
      "          'unconvincing': 1,\n",
      "          'nkevin': 1,\n",
      "          'partner': 1,\n",
      "          'close': 1,\n",
      "          'friend': 1,\n",
      "          'supposedly': 1,\n",
      "          'every': 1,\n",
      "          'problem': 1,\n",
      "          'deliver': 1,\n",
      "          'line': 1,\n",
      "          'nrobin': 1,\n",
      "          'chosen': 1,\n",
      "          'mother': 1,\n",
      "          'extreme': 1,\n",
      "          'annoyance': 1,\n",
      "          'nshe': 1,\n",
      "          'gets': 1,\n",
      "          'sympathy': 1,\n",
      "          'characters': 1,\n",
      "          'except': 1,\n",
      "          'pretends': 1,\n",
      "          'viewers': 1,\n",
      "          'unnecessary': 1,\n",
      "          'walks': 1,\n",
      "          'room': 1,\n",
      "          'takes': 1,\n",
      "          'top': 1,\n",
      "          'blame': 1,\n",
      "          'entirely': 1,\n",
      "          'able': 1,\n",
      "          'predict': 1,\n",
      "          'happen': 1,\n",
      "          'minutes': 1,\n",
      "          'little': 1,\n",
      "          'prediction': 1,\n",
      "          'game': 1,\n",
      "          'sit': 1,\n",
      "          'nonsense': 1,\n",
      "          'last': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'used': 1,\n",
      "          'try': 1,\n",
      "          'entertain': 1,\n",
      "          'nbut': 1,\n",
      "          'without': 1,\n",
      "          'done': 1,\n",
      "          'successfully': 1,\n",
      "          'would': 1,\n",
      "          'gotten': 1,\n",
      "          'c': 1,\n",
      "          'stood': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'shouted': 1,\n",
      "          'nfor': 1,\n",
      "          'hours': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'trek': 6,\n",
      "          'would': 5,\n",
      "          'enterprise': 5,\n",
      "          'series': 4,\n",
      "          'film': 4,\n",
      "          'one': 4,\n",
      "          'star': 4,\n",
      "          'nits': 4,\n",
      "          'crew': 4,\n",
      "          'doesnt': 4,\n",
      "          'new': 4,\n",
      "          'cast': 4,\n",
      "          'ni': 3,\n",
      "          'original': 3,\n",
      "          'get': 3,\n",
      "          'data': 3,\n",
      "          'generations': 3,\n",
      "          'may': 3,\n",
      "          'shatner': 3,\n",
      "          'nexus': 3,\n",
      "          'stewart': 3,\n",
      "          'think': 3,\n",
      "          'chip': 3,\n",
      "          'screen': 3,\n",
      "          'like': 3,\n",
      "          'moment': 3,\n",
      "          'whether': 2,\n",
      "          'considered': 2,\n",
      "          'even': 2,\n",
      "          'nhowever': 2,\n",
      "          'away': 2,\n",
      "          'high': 2,\n",
      "          'writing': 2,\n",
      "          'characters': 2,\n",
      "          'century': 2,\n",
      "          'captain': 2,\n",
      "          'james': 2,\n",
      "          'kirk': 2,\n",
      "          'william': 2,\n",
      "          'nno': 2,\n",
      "          'distress': 2,\n",
      "          'energy': 2,\n",
      "          'soran': 2,\n",
      "          'malcolm': 2,\n",
      "          'mcdowell': 2,\n",
      "          'back': 2,\n",
      "          'years': 2,\n",
      "          'picard': 2,\n",
      "          'patrick': 2,\n",
      "          'plot': 2,\n",
      "          'really': 2,\n",
      "          'friends': 2,\n",
      "          'story': 2,\n",
      "          'nbut': 2,\n",
      "          'spiner': 2,\n",
      "          'major': 2,\n",
      "          'emotions': 2,\n",
      "          'point': 2,\n",
      "          'hes': 2,\n",
      "          'theyre': 2,\n",
      "          'little': 2,\n",
      "          'part': 2,\n",
      "          'time': 2,\n",
      "          'turn': 2,\n",
      "          'need': 2,\n",
      "          'trekker': 1,\n",
      "          'probably': 1,\n",
      "          'depends': 1,\n",
      "          'ask': 1,\n",
      "          'fan': 1,\n",
      "          'recently': 1,\n",
      "          'retired': 1,\n",
      "          'followup': 1,\n",
      "          'well': 1,\n",
      "          'numbered': 1,\n",
      "          'entries': 1,\n",
      "          'never': 1,\n",
      "          'folks': 1,\n",
      "          'store': 1,\n",
      "          'minutiae': 1,\n",
      "          'debates': 1,\n",
      "          'relative': 1,\n",
      "          'merits': 1,\n",
      "          'spock': 1,\n",
      "          'vs': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'along': 1,\n",
      "          'line': 1,\n",
      "          'began': 1,\n",
      "          'seem': 1,\n",
      "          'directed': 1,\n",
      "          'latter': 1,\n",
      "          'category': 1,\n",
      "          'natural': 1,\n",
      "          'conclusion': 1,\n",
      "          'direction': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'frequently': 1,\n",
      "          'appalling': 1,\n",
      "          'instead': 1,\n",
      "          'script': 1,\n",
      "          'collection': 1,\n",
      "          'references': 1,\n",
      "          'injokes': 1,\n",
      "          'illdefined': 1,\n",
      "          'ngenerations': 1,\n",
      "          'opens': 1,\n",
      "          'late': 1,\n",
      "          '23rd': 1,\n",
      "          'members': 1,\n",
      "          'including': 1,\n",
      "          'present': 1,\n",
      "          'christening': 1,\n",
      "          'latest': 1,\n",
      "          'ship': 1,\n",
      "          'bear': 1,\n",
      "          'name': 1,\n",
      "          'sooner': 1,\n",
      "          'maiden': 1,\n",
      "          'voyage': 1,\n",
      "          'signal': 1,\n",
      "          'brings': 1,\n",
      "          'mysterious': 1,\n",
      "          'ribbon': 1,\n",
      "          'namong': 1,\n",
      "          'rescued': 1,\n",
      "          'longlived': 1,\n",
      "          'alien': 1,\n",
      "          'dr': 1,\n",
      "          'nonetoopleased': 1,\n",
      "          'real': 1,\n",
      "          'world': 1,\n",
      "          'nseventyeight': 1,\n",
      "          'later': 1,\n",
      "          'still': 1,\n",
      "          'trying': 1,\n",
      "          'encounters': 1,\n",
      "          'led': 1,\n",
      "          'jeanluc': 1,\n",
      "          'nsorans': 1,\n",
      "          'plan': 1,\n",
      "          'involves': 1,\n",
      "          'destroying': 1,\n",
      "          'inhabited': 1,\n",
      "          'planet': 1,\n",
      "          'hope': 1,\n",
      "          'saving': 1,\n",
      "          '230': 1,\n",
      "          'million': 1,\n",
      "          'people': 1,\n",
      "          'historic': 1,\n",
      "          'meeting': 1,\n",
      "          'two': 1,\n",
      "          'captains': 1,\n",
      "          'dont': 1,\n",
      "          'insult': 1,\n",
      "          'fans': 1,\n",
      "          'suggest': 1,\n",
      "          'certain': 1,\n",
      "          'extent': 1,\n",
      "          'particulars': 1,\n",
      "          'important': 1,\n",
      "          'elements': 1,\n",
      "          'chance': 1,\n",
      "          'visit': 1,\n",
      "          'old': 1,\n",
      "          'involved': 1,\n",
      "          'truly': 1,\n",
      "          'interesting': 1,\n",
      "          'gravy': 1,\n",
      "          'interpretation': 1,\n",
      "          'assumes': 1,\n",
      "          'characterization': 1,\n",
      "          'consistent': 1,\n",
      "          'happen': 1,\n",
      "          'ndata': 1,\n",
      "          'brent': 1,\n",
      "          'particularly': 1,\n",
      "          'victimized': 1,\n",
      "          'sloppy': 1,\n",
      "          'nin': 1,\n",
      "          'films': 1,\n",
      "          'subplot': 1,\n",
      "          'decides': 1,\n",
      "          'use': 1,\n",
      "          'give': 1,\n",
      "          'human': 1,\n",
      "          'possession': 1,\n",
      "          'year': 1,\n",
      "          'nwhat': 1,\n",
      "          'motivation': 1,\n",
      "          'taking': 1,\n",
      "          'drastic': 1,\n",
      "          'perhaps': 1,\n",
      "          'dangerous': 1,\n",
      "          'step': 1,\n",
      "          'nhe': 1,\n",
      "          'joke': 1,\n",
      "          'nonce': 1,\n",
      "          'place': 1,\n",
      "          'gets': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'datas': 1,\n",
      "          'longer': 1,\n",
      "          'know': 1,\n",
      "          'nif': 1,\n",
      "          'rest': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'fares': 1,\n",
      "          'better': 1,\n",
      "          'simply': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'isnt': 1,\n",
      "          'cowboy': 1,\n",
      "          'politician': 1,\n",
      "          'sharing': 1,\n",
      "          'nthe': 1,\n",
      "          'huge': 1,\n",
      "          'surprise': 1,\n",
      "          'blows': 1,\n",
      "          'nperhaps': 1,\n",
      "          'knows': 1,\n",
      "          'last': 1,\n",
      "          'goround': 1,\n",
      "          'made': 1,\n",
      "          'legend': 1,\n",
      "          'looks': 1,\n",
      "          'life': 1,\n",
      "          'hand': 1,\n",
      "          'borders': 1,\n",
      "          'deferrential': 1,\n",
      "          'saddled': 1,\n",
      "          'lackluster': 1,\n",
      "          'motivations': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'nstewarts': 1,\n",
      "          'edginess': 1,\n",
      "          'indicative': 1,\n",
      "          'bad': 1,\n",
      "          'sign': 1,\n",
      "          'paramounts': 1,\n",
      "          'hopes': 1,\n",
      "          'kind': 1,\n",
      "          'franchise': 1,\n",
      "          'clearly': 1,\n",
      "          'ready': 1,\n",
      "          'big': 1,\n",
      "          'players': 1,\n",
      "          'nby': 1,\n",
      "          'contrast': 1,\n",
      "          'prologue': 1,\n",
      "          'features': 1,\n",
      "          'scotty': 1,\n",
      "          'doohan': 1,\n",
      "          'chekhov': 1,\n",
      "          'walter': 1,\n",
      "          'koenig': 1,\n",
      "          'highlight': 1,\n",
      "          'nthese': 1,\n",
      "          'become': 1,\n",
      "          'popular': 1,\n",
      "          'mythology': 1,\n",
      "          'take': 1,\n",
      "          'nonly': 1,\n",
      "          'thirty': 1,\n",
      "          'history': 1,\n",
      "          'create': 1,\n",
      "          'thats': 1,\n",
      "          'nit': 1,\n",
      "          'certainly': 1,\n",
      "          'help': 1,\n",
      "          'stuck': 1,\n",
      "          'convoluted': 1,\n",
      "          'badly': 1,\n",
      "          'constructed': 1,\n",
      "          'leave': 1,\n",
      "          'trail': 1,\n",
      "          'bread': 1,\n",
      "          'crumbs': 1,\n",
      "          'find': 1,\n",
      "          'way': 1,\n",
      "          'also': 1,\n",
      "          'loaded': 1,\n",
      "          'gags': 1,\n",
      "          'aimed': 1,\n",
      "          'familiar': 1,\n",
      "          'enough': 1,\n",
      "          'shared': 1,\n",
      "          'nudge': 1,\n",
      "          'recognition': 1,\n",
      "          'wonder': 1,\n",
      "          'anyone': 1,\n",
      "          'coming': 1,\n",
      "          'cold': 1,\n",
      "          'universe': 1,\n",
      "          'anything': 1,\n",
      "          'baffled': 1,\n",
      "          'bored': 1,\n",
      "          'going': 1,\n",
      "          'nand': 1,\n",
      "          'waste': 1,\n",
      "          'could': 1,\n",
      "          'great': 1,\n",
      "          'monomanical': 1,\n",
      "          'villain': 1,\n",
      "          'given': 1,\n",
      "          'much': 1,\n",
      "          'compelling': 1,\n",
      "          'reason': 1,\n",
      "          'obsession': 1,\n",
      "          'nthere': 1,\n",
      "          'plenty': 1,\n",
      "          'details': 1,\n",
      "          'scientific': 1,\n",
      "          'continuity': 1,\n",
      "          'pick': 1,\n",
      "          'ignore': 1,\n",
      "          'flaws': 1,\n",
      "          'make': 1,\n",
      "          'recommendation': 1,\n",
      "          'seatbelts': 1,\n",
      "          'nnot': 1,\n",
      "          'although': 1,\n",
      "          'youd': 1,\n",
      "          '24th': 1,\n",
      "          'space': 1,\n",
      "          'travel': 1,\n",
      "          'wouldnt': 1,\n",
      "          'involve': 1,\n",
      "          'rolling': 1,\n",
      "          'around': 1,\n",
      "          'floor': 1,\n",
      "          'battle': 1,\n",
      "          'audience': 1,\n",
      "          'might': 1,\n",
      "          'nthis': 1,\n",
      "          'journey': 1,\n",
      "          'bumpy': 1,\n",
      "          'ride': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          '2': 6,\n",
      "          'original': 5,\n",
      "          'nscary': 4,\n",
      "          'sequel': 3,\n",
      "          'scary': 3,\n",
      "          'haunted': 3,\n",
      "          'wayans': 2,\n",
      "          'dont': 2,\n",
      "          'spoof': 2,\n",
      "          'nthe': 2,\n",
      "          'teen': 2,\n",
      "          'slasher': 2,\n",
      "          'takenoprisoners': 2,\n",
      "          'lame': 2,\n",
      "          'features': 2,\n",
      "          'weak': 2,\n",
      "          'really': 2,\n",
      "          'stuck': 1,\n",
      "          'promise': 1,\n",
      "          'emblazoned': 1,\n",
      "          'movies': 1,\n",
      "          'poster': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'funny': 1,\n",
      "          'predecessor': 1,\n",
      "          'brothers': 1,\n",
      "          'shawn': 1,\n",
      "          'marlon': 1,\n",
      "          'writing': 1,\n",
      "          'keenen': 1,\n",
      "          'ivory': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'try': 1,\n",
      "          'nwhat': 1,\n",
      "          'defeats': 1,\n",
      "          'genre': 1,\n",
      "          'chosen': 1,\n",
      "          'first': 1,\n",
      "          'outrageous': 1,\n",
      "          'lowbrow': 1,\n",
      "          'savage': 1,\n",
      "          'satire': 1,\n",
      "          'flicks': 1,\n",
      "          'scream': 1,\n",
      "          'know': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'succeeded': 1,\n",
      "          'attitude': 1,\n",
      "          'toward': 1,\n",
      "          'type': 1,\n",
      "          'film': 1,\n",
      "          'vogue': 1,\n",
      "          'familiar': 1,\n",
      "          'popular': 1,\n",
      "          'nin': 1,\n",
      "          'filmmakers': 1,\n",
      "          'take': 1,\n",
      "          'houseghost': 1,\n",
      "          'story': 1,\n",
      "          'format': 1,\n",
      "          'look': 1,\n",
      "          'grosses': 1,\n",
      "          'recent': 1,\n",
      "          'offerings': 1,\n",
      "          'respective': 1,\n",
      "          'remakes': 1,\n",
      "          'haunting': 1,\n",
      "          'house': 1,\n",
      "          'hill': 1,\n",
      "          'draw': 1,\n",
      "          'audiences': 1,\n",
      "          'enter': 1,\n",
      "          'cultural': 1,\n",
      "          'psyche': 1,\n",
      "          'various': 1,\n",
      "          'series': 1,\n",
      "          'start': 1,\n",
      "          'promising': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wonderful': 1,\n",
      "          'exorcist': 1,\n",
      "          'featuring': 1,\n",
      "          'james': 1,\n",
      "          'wood': 1,\n",
      "          'max': 1,\n",
      "          'von': 1,\n",
      "          'sydow': 1,\n",
      "          'role': 1,\n",
      "          'veronica': 1,\n",
      "          'cartwright': 1,\n",
      "          'lampooning': 1,\n",
      "          'ellen': 1,\n",
      "          'burstyn': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'split': 1,\n",
      "          'pea': 1,\n",
      "          'soup': 1,\n",
      "          'punch': 1,\n",
      "          'line': 1,\n",
      "          'overabundant': 1,\n",
      "          'amount': 1,\n",
      "          'offers': 1,\n",
      "          'hope': 1,\n",
      "          'rest': 1,\n",
      "          'tasteless': 1,\n",
      "          'excessive': 1,\n",
      "          'nbut': 1,\n",
      "          'precredit': 1,\n",
      "          'sequence': 1,\n",
      "          'nothing': 1,\n",
      "          'main': 1,\n",
      "          'action': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'signing': 1,\n",
      "          'spend': 1,\n",
      "          'weekend': 1,\n",
      "          'creepy': 1,\n",
      "          'mansion': 1,\n",
      "          'part': 1,\n",
      "          'university': 1,\n",
      "          'class': 1,\n",
      "          'project': 1,\n",
      "          'nsome': 1,\n",
      "          'jokes': 1,\n",
      "          'scatological': 1,\n",
      "          'offensive': 1,\n",
      "          'lack': 1,\n",
      "          'bite': 1,\n",
      "          'raised': 1,\n",
      "          'heights': 1,\n",
      "          'burlesque': 1,\n",
      "          'merely': 1,\n",
      "          'lurches': 1,\n",
      "          'one': 1,\n",
      "          'sendup': 1,\n",
      "          'another': 1,\n",
      "          'offering': 1,\n",
      "          'spoofs': 1,\n",
      "          'nike': 1,\n",
      "          'shoe': 1,\n",
      "          'ad': 1,\n",
      "          'everyone': 1,\n",
      "          'acrobatics': 1,\n",
      "          'basketball': 1,\n",
      "          'films': 1,\n",
      "          'lies': 1,\n",
      "          'beneath': 1,\n",
      "          'hannibal': 1,\n",
      "          'faired': 1,\n",
      "          'adequately': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'john': 1,\n",
      "          'woos': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'charlies': 1,\n",
      "          'angels': 1,\n",
      "          'nit': 1,\n",
      "          'team': 1,\n",
      "          'writers': 1,\n",
      "          'least': 1,\n",
      "          'seven': 1,\n",
      "          'credited': 1,\n",
      "          'threw': 1,\n",
      "          'ideas': 1,\n",
      "          'blender': 1,\n",
      "          'hoped': 1,\n",
      "          'theyd': 1,\n",
      "          'coalesce': 1,\n",
      "          'nthey': 1,\n",
      "          'nwhile': 1,\n",
      "          'pace': 1,\n",
      "          'left': 1,\n",
      "          'breathless': 1,\n",
      "          'moves': 1,\n",
      "          'speed': 1,\n",
      "          '18wheeler': 1,\n",
      "          'carrying': 1,\n",
      "          'two': 1,\n",
      "          'tons': 1,\n",
      "          'concrete': 1,\n",
      "          'steep': 1,\n",
      "          'mountain': 1,\n",
      "          'road': 1,\n",
      "          'nyou': 1,\n",
      "          'almost': 1,\n",
      "          'hear': 1,\n",
      "          'reels': 1,\n",
      "          'panting': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'live': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'nits': 1,\n",
      "          'dissatisfying': 1,\n",
      "          'spectacle': 1,\n",
      "          'sister': 1,\n",
      "          'good': 1,\n",
      "          'aspect': 1,\n",
      "          'disappointing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'warriors': 6,\n",
      "          'viking': 5,\n",
      "          'vikings': 4,\n",
      "          'battle': 4,\n",
      "          'film': 4,\n",
      "          'ahmed': 4,\n",
      "          'nthey': 4,\n",
      "          '13th': 3,\n",
      "          'battles': 3,\n",
      "          'would': 3,\n",
      "          'place': 3,\n",
      "          'greatest': 3,\n",
      "          'group': 3,\n",
      "          '12': 3,\n",
      "          'nthe': 3,\n",
      "          'bears': 2,\n",
      "          'night': 2,\n",
      "          'warrior': 2,\n",
      "          'strength': 2,\n",
      "          'eventually': 2,\n",
      "          'come': 2,\n",
      "          'village': 2,\n",
      "          'proud': 2,\n",
      "          'arrogance': 2,\n",
      "          'nbut': 2,\n",
      "          'arrives': 2,\n",
      "          'leader': 2,\n",
      "          'evil': 2,\n",
      "          'land': 2,\n",
      "          'needed': 2,\n",
      "          'nan': 2,\n",
      "          'one': 2,\n",
      "          'look': 2,\n",
      "          'becomes': 2,\n",
      "          'lives': 2,\n",
      "          'size': 2,\n",
      "          'dog': 2,\n",
      "          'fight': 2,\n",
      "          'nhe': 2,\n",
      "          'nit': 2,\n",
      "          'heads': 2,\n",
      "          'entire': 2,\n",
      "          'subplot': 2,\n",
      "          'nhowever': 2,\n",
      "          'v': 1,\n",
      "          'nno': 1,\n",
      "          'isnt': 1,\n",
      "          'lineup': 1,\n",
      "          'monday': 1,\n",
      "          'football': 1,\n",
      "          'nrather': 1,\n",
      "          'two': 1,\n",
      "          'opposing': 1,\n",
      "          'forces': 1,\n",
      "          'death': 1,\n",
      "          'dramatically': 1,\n",
      "          'flat': 1,\n",
      "          'gratuitously': 1,\n",
      "          'gory': 1,\n",
      "          'nbased': 1,\n",
      "          'michael': 1,\n",
      "          'crichtons': 1,\n",
      "          'book': 1,\n",
      "          'eaters': 1,\n",
      "          'dead': 1,\n",
      "          'saga': 1,\n",
      "          'tries': 1,\n",
      "          'evoke': 1,\n",
      "          'mysticism': 1,\n",
      "          'fabled': 1,\n",
      "          'norsemen': 1,\n",
      "          'glorious': 1,\n",
      "          'fought': 1,\n",
      "          'ntheir': 1,\n",
      "          'honor': 1,\n",
      "          'etch': 1,\n",
      "          'history': 1,\n",
      "          'among': 1,\n",
      "          'ever': 1,\n",
      "          'picked': 1,\n",
      "          'sword': 1,\n",
      "          'nluckily': 1,\n",
      "          'however': 1,\n",
      "          'warring': 1,\n",
      "          'abilities': 1,\n",
      "          'clumsy': 1,\n",
      "          'nantonio': 1,\n",
      "          'bandaras': 1,\n",
      "          'travelling': 1,\n",
      "          'ambassador': 1,\n",
      "          'naccompanied': 1,\n",
      "          'friend': 1,\n",
      "          'omar': 1,\n",
      "          'shariff': 1,\n",
      "          'cameo': 1,\n",
      "          'across': 1,\n",
      "          'small': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'extremely': 1,\n",
      "          'whose': 1,\n",
      "          'fortitude': 1,\n",
      "          'laugh': 1,\n",
      "          'heartily': 1,\n",
      "          'revel': 1,\n",
      "          'sing': 1,\n",
      "          'songs': 1,\n",
      "          'festivities': 1,\n",
      "          'halted': 1,\n",
      "          'messenger': 1,\n",
      "          'boy': 1,\n",
      "          'tell': 1,\n",
      "          'great': 1,\n",
      "          'threatening': 1,\n",
      "          'nhelp': 1,\n",
      "          'quickly': 1,\n",
      "          'elderly': 1,\n",
      "          'fortunetelling': 1,\n",
      "          'witch': 1,\n",
      "          'nafter': 1,\n",
      "          'brief': 1,\n",
      "          'incantation': 1,\n",
      "          'proclaims': 1,\n",
      "          'norse': 1,\n",
      "          'blood': 1,\n",
      "          'ensure': 1,\n",
      "          'victory': 1,\n",
      "          'npersonally': 1,\n",
      "          'always': 1,\n",
      "          'wonder': 1,\n",
      "          'people': 1,\n",
      "          'believe': 1,\n",
      "          'oracles': 1,\n",
      "          'haggardly': 1,\n",
      "          'brink': 1,\n",
      "          'insanity': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'men': 1,\n",
      "          'eagerly': 1,\n",
      "          'accept': 1,\n",
      "          'pivotal': 1,\n",
      "          'sets': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'ride': 1,\n",
      "          'target': 1,\n",
      "          'fun': 1,\n",
      "          'burly': 1,\n",
      "          'ably': 1,\n",
      "          'shows': 1,\n",
      "          'rather': 1,\n",
      "          'able': 1,\n",
      "          'overcome': 1,\n",
      "          'skills': 1,\n",
      "          'enough': 1,\n",
      "          'defeat': 1,\n",
      "          'whatever': 1,\n",
      "          'menacing': 1,\n",
      "          'countryside': 1,\n",
      "          'promising': 1,\n",
      "          'nthese': 1,\n",
      "          'creatures': 1,\n",
      "          'resembling': 1,\n",
      "          'strong': 1,\n",
      "          'high': 1,\n",
      "          'morale': 1,\n",
      "          'fearless': 1,\n",
      "          'display': 1,\n",
      "          'desire': 1,\n",
      "          'decapitating': 1,\n",
      "          'enemies': 1,\n",
      "          'attack': 1,\n",
      "          'hundreds': 1,\n",
      "          'next': 1,\n",
      "          'strike': 1,\n",
      "          'soon': 1,\n",
      "          'prepare': 1,\n",
      "          'defenses': 1,\n",
      "          'pray': 1,\n",
      "          'gods': 1,\n",
      "          'ready': 1,\n",
      "          'sacrifice': 1,\n",
      "          'n': 1,\n",
      "          'good': 1,\n",
      "          'way': 1,\n",
      "          'die': 1,\n",
      "          'says': 1,\n",
      "          'fallen': 1,\n",
      "          'ndespite': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'sequences': 1,\n",
      "          'unmoved': 1,\n",
      "          'experience': 1,\n",
      "          'nat': 1,\n",
      "          'many': 1,\n",
      "          'points': 1,\n",
      "          'even': 1,\n",
      "          'confused': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'somewhere': 1,\n",
      "          'middle': 1,\n",
      "          'creeps': 1,\n",
      "          'involving': 1,\n",
      "          'prince': 1,\n",
      "          'threatened': 1,\n",
      "          'seems': 1,\n",
      "          'agenda': 1,\n",
      "          'elevate': 1,\n",
      "          'greater': 1,\n",
      "          'power': 1,\n",
      "          'crisis': 1,\n",
      "          'never': 1,\n",
      "          'fully': 1,\n",
      "          'materializes': 1,\n",
      "          'left': 1,\n",
      "          'scratching': 1,\n",
      "          'purpose': 1,\n",
      "          'inclusion': 1,\n",
      "          'nthere': 1,\n",
      "          'questions': 1,\n",
      "          'real': 1,\n",
      "          'problem': 1,\n",
      "          'story': 1,\n",
      "          'little': 1,\n",
      "          'offered': 1,\n",
      "          'characters': 1,\n",
      "          'love': 1,\n",
      "          'hate': 1,\n",
      "          'charisma': 1,\n",
      "          'banderass': 1,\n",
      "          'role': 1,\n",
      "          'completely': 1,\n",
      "          'underwritten': 1,\n",
      "          'unclear': 1,\n",
      "          'makes': 1,\n",
      "          'special': 1,\n",
      "          'rewrite': 1,\n",
      "          'character': 1,\n",
      "          'order': 1,\n",
      "          'nalso': 1,\n",
      "          'much': 1,\n",
      "          'action': 1,\n",
      "          'takes': 1,\n",
      "          'torrential': 1,\n",
      "          'downpours': 1,\n",
      "          'made': 1,\n",
      "          'difficult': 1,\n",
      "          'follow': 1,\n",
      "          'ni': 1,\n",
      "          'preferred': 1,\n",
      "          'time': 1,\n",
      "          'looking': 1,\n",
      "          'culture': 1,\n",
      "          'beliefs': 1,\n",
      "          'shaped': 1,\n",
      "          'decision': 1,\n",
      "          'enemy': 1,\n",
      "          'nas': 1,\n",
      "          'stands': 1,\n",
      "          'manages': 1,\n",
      "          'confusion': 1,\n",
      "          'intensity': 1,\n",
      "          'make': 1,\n",
      "          'thor': 1,\n",
      "          'cry': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carrey': 4,\n",
      "          'look': 4,\n",
      "          'like': 3,\n",
      "          'level': 3,\n",
      "          'movie': 3,\n",
      "          'jim': 2,\n",
      "          'ace': 2,\n",
      "          'ventura': 2,\n",
      "          'means': 2,\n",
      "          'terms': 2,\n",
      "          'merit': 2,\n",
      "          'lack': 2,\n",
      "          'humor': 2,\n",
      "          'anyone': 2,\n",
      "          'consciousness': 2,\n",
      "          'nif': 2,\n",
      "          'civilization': 2,\n",
      "          'film': 2,\n",
      "          'say': 2,\n",
      "          'jerry': 2,\n",
      "          'lewis': 2,\n",
      "          'apparently': 1,\n",
      "          'crap': 1,\n",
      "          'calls': 1,\n",
      "          'answers': 1,\n",
      "          'nhere': 1,\n",
      "          'mugging': 1,\n",
      "          'countless': 1,\n",
      "          'unfunny': 1,\n",
      "          'ways': 1,\n",
      "          'fifth': 1,\n",
      "          'time': 1,\n",
      "          'second': 1,\n",
      "          'goaround': 1,\n",
      "          'role': 1,\n",
      "          'pet': 1,\n",
      "          'detective': 1,\n",
      "          'nthat': 1,\n",
      "          'talking': 1,\n",
      "          'asscracks': 1,\n",
      "          'penis': 1,\n",
      "          'jokes': 1,\n",
      "          'cries': 1,\n",
      "          'alllllllllllrighty': 1,\n",
      "          'nit': 1,\n",
      "          'adds': 1,\n",
      "          'sequel': 1,\n",
      "          'makes': 1,\n",
      "          'original': 1,\n",
      "          'resemble': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'dramatic': 1,\n",
      "          'ngranted': 1,\n",
      "          'laughs': 1,\n",
      "          'amid': 1,\n",
      "          'constant': 1,\n",
      "          'barrage': 1,\n",
      "          'preschool': 1,\n",
      "          'appreciates': 1,\n",
      "          'good': 1,\n",
      "          'comedy': 1,\n",
      "          'bang': 1,\n",
      "          'head': 1,\n",
      "          'wall': 1,\n",
      "          'ten': 1,\n",
      "          'times': 1,\n",
      "          'every': 1,\n",
      "          'minor': 1,\n",
      "          'chuckle': 1,\n",
      "          'nits': 1,\n",
      "          'painful': 1,\n",
      "          'experience': 1,\n",
      "          'brain': 1,\n",
      "          'nace': 1,\n",
      "          'distraught': 1,\n",
      "          'accidentally': 1,\n",
      "          'dropping': 1,\n",
      "          'racoon': 1,\n",
      "          'canyon': 1,\n",
      "          'parody': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallones': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'person': 1,\n",
      "          'make': 1,\n",
      "          'stallone': 1,\n",
      "          'college': 1,\n",
      "          'professor': 1,\n",
      "          'intellect': 1,\n",
      "          'decides': 1,\n",
      "          'retire': 1,\n",
      "          'mountains': 1,\n",
      "          'tibet': 1,\n",
      "          'gain': 1,\n",
      "          'higher': 1,\n",
      "          'case': 1,\n",
      "          'nbut': 1,\n",
      "          'pulled': 1,\n",
      "          'retirement': 1,\n",
      "          'tune': 1,\n",
      "          '20': 1,\n",
      "          '000': 1,\n",
      "          'retrieve': 1,\n",
      "          'sacred': 1,\n",
      "          'white': 1,\n",
      "          'bat': 1,\n",
      "          'african': 1,\n",
      "          'tribe': 1,\n",
      "          'nwhy': 1,\n",
      "          'africa': 1,\n",
      "          'nso': 1,\n",
      "          'disguise': 1,\n",
      "          'nude': 1,\n",
      "          'inside': 1,\n",
      "          'fake': 1,\n",
      "          'rhino': 1,\n",
      "          'later': 1,\n",
      "          'climb': 1,\n",
      "          'rear': 1,\n",
      "          'end': 1,\n",
      "          'tourist': 1,\n",
      "          'family': 1,\n",
      "          'watches': 1,\n",
      "          'rhinos': 1,\n",
      "          'give': 1,\n",
      "          'birth': 1,\n",
      "          'seems': 1,\n",
      "          'heehaw': 1,\n",
      "          'see': 1,\n",
      "          'claim': 1,\n",
      "          'place': 1,\n",
      "          'human': 1,\n",
      "          'rest': 1,\n",
      "          'us': 1,\n",
      "          'nobviously': 1,\n",
      "          'quite': 1,\n",
      "          'nonmembers': 1,\n",
      "          'made': 1,\n",
      "          'first': 1,\n",
      "          'use': 1,\n",
      "          'word': 1,\n",
      "          'filmed': 1,\n",
      "          'theres': 1,\n",
      "          'artistic': 1,\n",
      "          'huge': 1,\n",
      "          'success': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'career': 1,\n",
      "          'decline': 1,\n",
      "          'intelligence': 1,\n",
      "          'culture': 1,\n",
      "          'nyou': 1,\n",
      "          'may': 1,\n",
      "          'andrew': 1,\n",
      "          'nhe': 1,\n",
      "          'born': 1,\n",
      "          'negative': 1,\n",
      "          'q': 1,\n",
      "          'nand': 1,\n",
      "          'popular': 1,\n",
      "          'thirty': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nmaybe': 1,\n",
      "          'still': 1,\n",
      "          'notch': 1,\n",
      "          'two': 1,\n",
      "          'comedic': 1,\n",
      "          'ladder': 1,\n",
      "          'never': 1,\n",
      "          'actually': 1,\n",
      "          'impression': 1,\n",
      "          'rabid': 1,\n",
      "          'bulldog': 1,\n",
      "          'biting': 1,\n",
      "          'mans': 1,\n",
      "          'testicles': 1,\n",
      "          'nlewis': 1,\n",
      "          'least': 1,\n",
      "          'dignity': 1,\n",
      "          'save': 1,\n",
      "          'performance': 1,\n",
      "          'company': 1,\n",
      "          'came': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'deep': 12,\n",
      "          'skin': 10,\n",
      "          'edwards': 6,\n",
      "          'zach': 6,\n",
      "          'drinking': 4,\n",
      "          'wife': 4,\n",
      "          'nif': 4,\n",
      "          'drink': 4,\n",
      "          'one': 3,\n",
      "          'better': 3,\n",
      "          'watch': 3,\n",
      "          'comedy': 3,\n",
      "          'never': 3,\n",
      "          'arrested': 3,\n",
      "          'dont': 2,\n",
      "          'nskin': 2,\n",
      "          'ritter': 2,\n",
      "          'problem': 2,\n",
      "          'women': 2,\n",
      "          'see': 2,\n",
      "          'goes': 2,\n",
      "          'every': 2,\n",
      "          'zachs': 2,\n",
      "          'alex': 2,\n",
      "          'mistress': 2,\n",
      "          'nlike': 2,\n",
      "          'nin': 2,\n",
      "          'get': 2,\n",
      "          'sex': 2,\n",
      "          'mercedes': 2,\n",
      "          'makes': 2,\n",
      "          'characters': 2,\n",
      "          'nzach': 2,\n",
      "          'jack': 2,\n",
      "          'bit': 2,\n",
      "          'crashes': 2,\n",
      "          'role': 2,\n",
      "          'reed': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'nzachs': 2,\n",
      "          'give': 2,\n",
      "          'serious': 2,\n",
      "          'gets': 2,\n",
      "          'clean': 2,\n",
      "          'making': 2,\n",
      "          'favorite': 1,\n",
      "          'songs': 1,\n",
      "          'stranglers': 1,\n",
      "          'includes': 1,\n",
      "          'lyric': 1,\n",
      "          'youd': 1,\n",
      "          'nid': 1,\n",
      "          'like': 1,\n",
      "          'extend': 1,\n",
      "          'warning': 1,\n",
      "          'whatever': 1,\n",
      "          'tedious': 1,\n",
      "          'uneven': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'blake': 1,\n",
      "          'njohn': 1,\n",
      "          'stars': 1,\n",
      "          'dried': 1,\n",
      "          'writer': 1,\n",
      "          'insatiable': 1,\n",
      "          'womanizer': 1,\n",
      "          'bigtime': 1,\n",
      "          'ni': 1,\n",
      "          'saw': 1,\n",
      "          'man': 1,\n",
      "          'loved': 1,\n",
      "          'wonder': 1,\n",
      "          'whether': 1,\n",
      "          'remake': 1,\n",
      "          'nyou': 1,\n",
      "          'put': 1,\n",
      "          'mildly': 1,\n",
      "          'bed': 1,\n",
      "          'woman': 1,\n",
      "          'meets': 1,\n",
      "          'nas': 1,\n",
      "          'movie': 1,\n",
      "          'opens': 1,\n",
      "          'catches': 1,\n",
      "          'also': 1,\n",
      "          'hairdresser': 1,\n",
      "          'sensible': 1,\n",
      "          'kicks': 1,\n",
      "          'house': 1,\n",
      "          'divorces': 1,\n",
      "          'response': 1,\n",
      "          'spiritual': 1,\n",
      "          'journey': 1,\n",
      "          'womanizing': 1,\n",
      "          'psychotherapy': 1,\n",
      "          'selfdiscovery': 1,\n",
      "          'youre': 1,\n",
      "          'turned': 1,\n",
      "          'idea': 1,\n",
      "          'watching': 1,\n",
      "          'crash': 1,\n",
      "          'sing': 1,\n",
      "          'horrendously': 1,\n",
      "          'piano': 1,\n",
      "          'right': 1,\n",
      "          'alley': 1,\n",
      "          'fatal': 1,\n",
      "          'mistake': 1,\n",
      "          'inflicting': 1,\n",
      "          'us': 1,\n",
      "          'unbelievable': 1,\n",
      "          'unsympathetic': 1,\n",
      "          'rich': 1,\n",
      "          '80s': 1,\n",
      "          'l': 1,\n",
      "          'version': 1,\n",
      "          'ritters': 1,\n",
      "          'tripper': 1,\n",
      "          'character': 1,\n",
      "          'threes': 1,\n",
      "          'company': 1,\n",
      "          'clumsy': 1,\n",
      "          'inept': 1,\n",
      "          'hes': 1,\n",
      "          'type': 1,\n",
      "          'guy': 1,\n",
      "          'whose': 1,\n",
      "          'bad': 1,\n",
      "          'aim': 1,\n",
      "          'accidently': 1,\n",
      "          'squirt': 1,\n",
      "          'breath': 1,\n",
      "          'freshener': 1,\n",
      "          'eye': 1,\n",
      "          'supposed': 1,\n",
      "          'charming': 1,\n",
      "          'charismatic': 1,\n",
      "          'failed': 1,\n",
      "          'even': 1,\n",
      "          'redeeming': 1,\n",
      "          'virtue': 1,\n",
      "          'nconsequently': 1,\n",
      "          'felt': 1,\n",
      "          'least': 1,\n",
      "          'sympathy': 1,\n",
      "          'pity': 1,\n",
      "          'philandering': 1,\n",
      "          'alcoholic': 1,\n",
      "          'moments': 1,\n",
      "          'crisis': 1,\n",
      "          'fact': 1,\n",
      "          'exwifes': 1,\n",
      "          'wedding': 1,\n",
      "          'desperate': 1,\n",
      "          'attempt': 1,\n",
      "          'stop': 1,\n",
      "          'remarrying': 1,\n",
      "          'actually': 1,\n",
      "          'rooted': 1,\n",
      "          'go': 1,\n",
      "          'ceremony': 1,\n",
      "          'nto': 1,\n",
      "          'add': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'gives': 1,\n",
      "          'large': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'nothing': 1,\n",
      "          'stereotypes': 1,\n",
      "          'work': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'vincent': 1,\n",
      "          'gardenias': 1,\n",
      "          'talents': 1,\n",
      "          'wasted': 1,\n",
      "          'fatherly': 1,\n",
      "          'bartender': 1,\n",
      "          'nof': 1,\n",
      "          'filmand': 1,\n",
      "          'manyalyson': 1,\n",
      "          'alone': 1,\n",
      "          'stands': 1,\n",
      "          'brings': 1,\n",
      "          'intelligence': 1,\n",
      "          'sensitivity': 1,\n",
      "          'nbecause': 1,\n",
      "          'care': 1,\n",
      "          'slightest': 1,\n",
      "          'anyone': 1,\n",
      "          'films': 1,\n",
      "          'feeble': 1,\n",
      "          'attempts': 1,\n",
      "          'drama': 1,\n",
      "          'inevitably': 1,\n",
      "          'fail': 1,\n",
      "          'doesnt': 1,\n",
      "          'fare': 1,\n",
      "          'much': 1,\n",
      "          'nmost': 1,\n",
      "          'jokes': 1,\n",
      "          'dumb': 1,\n",
      "          'predictable': 1,\n",
      "          'sitcomish': 1,\n",
      "          'nabout': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'however': 1,\n",
      "          'manage': 1,\n",
      "          'come': 1,\n",
      "          'good': 1,\n",
      "          'line': 1,\n",
      "          'novel': 1,\n",
      "          'sightgag': 1,\n",
      "          'effective': 1,\n",
      "          'involves': 1,\n",
      "          'pair': 1,\n",
      "          'dueling': 1,\n",
      "          'condoms': 1,\n",
      "          'noverall': 1,\n",
      "          'laughs': 1,\n",
      "          'infrequent': 1,\n",
      "          'shallow': 1,\n",
      "          'stay': 1,\n",
      "          'afloat': 1,\n",
      "          'nmy': 1,\n",
      "          'final': 1,\n",
      "          'criticism': 1,\n",
      "          'lies': 1,\n",
      "          'glamorous': 1,\n",
      "          'depiction': 1,\n",
      "          'alcohol': 1,\n",
      "          'alcoholism': 1,\n",
      "          'excessive': 1,\n",
      "          'clearly': 1,\n",
      "          'ruining': 1,\n",
      "          'life': 1,\n",
      "          'nevertheless': 1,\n",
      "          'seems': 1,\n",
      "          'pleasure': 1,\n",
      "          'pain': 1,\n",
      "          'binges': 1,\n",
      "          'truly': 1,\n",
      "          'lasting': 1,\n",
      "          'consequences': 1,\n",
      "          'new': 1,\n",
      "          'lawyer': 1,\n",
      "          'bails': 1,\n",
      "          'jail': 1,\n",
      "          'leaves': 1,\n",
      "          'eventually': 1,\n",
      "          'decide': 1,\n",
      "          'second': 1,\n",
      "          'chance': 1,\n",
      "          'hell': 1,\n",
      "          'act': 1,\n",
      "          'tone': 1,\n",
      "          'wrong': 1,\n",
      "          'treats': 1,\n",
      "          'issue': 1,\n",
      "          'far': 1,\n",
      "          'lightly': 1,\n",
      "          'joke': 1,\n",
      "          'joking': 1,\n",
      "          'matter': 1,\n",
      "          'nperhaps': 1,\n",
      "          'studied': 1,\n",
      "          'dudley': 1,\n",
      "          'moore': 1,\n",
      "          'arthur': 1,\n",
      "          'yet': 1,\n",
      "          'michael': 1,\n",
      "          'keaton': 1,\n",
      "          'sober': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'eddie': 9,\n",
      "          'maureen': 4,\n",
      "          'eddies': 4,\n",
      "          'nshe': 4,\n",
      "          'two': 3,\n",
      "          'joey': 3,\n",
      "          'life': 3,\n",
      "          'really': 2,\n",
      "          'gets': 2,\n",
      "          'good': 2,\n",
      "          'penn': 2,\n",
      "          'wife': 2,\n",
      "          'nmaureen': 2,\n",
      "          'relationship': 2,\n",
      "          'love': 2,\n",
      "          'ntheir': 2,\n",
      "          'new': 2,\n",
      "          'lows': 2,\n",
      "          'next': 2,\n",
      "          'high': 2,\n",
      "          'father': 2,\n",
      "          'nduring': 2,\n",
      "          'kiefer': 2,\n",
      "          'insists': 2,\n",
      "          'institution': 2,\n",
      "          'find': 2,\n",
      "          'gone': 2,\n",
      "          'mere': 2,\n",
      "          'shell': 2,\n",
      "          'movie': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'families': 1,\n",
      "          'never': 1,\n",
      "          'ground': 1,\n",
      "          'despite': 1,\n",
      "          'performances': 1,\n",
      "          'basically': 1,\n",
      "          'competent': 1,\n",
      "          'cast': 1,\n",
      "          'neddie': 1,\n",
      "          'sean': 1,\n",
      "          'robin': 1,\n",
      "          'wright': 1,\n",
      "          'notsohappily': 1,\n",
      "          'married': 1,\n",
      "          'couple': 1,\n",
      "          'luck': 1,\n",
      "          'nliving': 1,\n",
      "          'rented': 1,\n",
      "          'rooms': 1,\n",
      "          'seedier': 1,\n",
      "          'part': 1,\n",
      "          'unnamed': 1,\n",
      "          'city': 1,\n",
      "          'spend': 1,\n",
      "          'little': 1,\n",
      "          'income': 1,\n",
      "          'local': 1,\n",
      "          'bar': 1,\n",
      "          'owned': 1,\n",
      "          'shorty': 1,\n",
      "          'stanton': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'georgie': 1,\n",
      "          'mazar': 1,\n",
      "          'share': 1,\n",
      "          'odd': 1,\n",
      "          'marked': 1,\n",
      "          'frequent': 1,\n",
      "          'disappearances': 1,\n",
      "          'non': 1,\n",
      "          'return': 1,\n",
      "          'promises': 1,\n",
      "          'world': 1,\n",
      "          'professes': 1,\n",
      "          'undying': 1,\n",
      "          'manic': 1,\n",
      "          'reunions': 1,\n",
      "          'soon': 1,\n",
      "          'lead': 1,\n",
      "          'disappears': 1,\n",
      "          'nlike': 1,\n",
      "          'junky': 1,\n",
      "          'craving': 1,\n",
      "          'suffers': 1,\n",
      "          'reach': 1,\n",
      "          'complicated': 1,\n",
      "          'maureens': 1,\n",
      "          'pregnancy': 1,\n",
      "          'wants': 1,\n",
      "          'baby': 1,\n",
      "          'deep': 1,\n",
      "          'seems': 1,\n",
      "          'sense': 1,\n",
      "          'inevitability': 1,\n",
      "          'losing': 1,\n",
      "          'latter': 1,\n",
      "          'one': 1,\n",
      "          'absences': 1,\n",
      "          'attacked': 1,\n",
      "          'neighbor': 1,\n",
      "          'drunk': 1,\n",
      "          'cooperation': 1,\n",
      "          'intimacy': 1,\n",
      "          'leaves': 1,\n",
      "          'badly': 1,\n",
      "          'bruised': 1,\n",
      "          'fear': 1,\n",
      "          'might': 1,\n",
      "          'lies': 1,\n",
      "          'happens': 1,\n",
      "          'ensure': 1,\n",
      "          'harm': 1,\n",
      "          'come': 1,\n",
      "          'result': 1,\n",
      "          'inevitable': 1,\n",
      "          'rage': 1,\n",
      "          'nhe': 1,\n",
      "          'lashes': 1,\n",
      "          'expects': 1,\n",
      "          'ends': 1,\n",
      "          'believes': 1,\n",
      "          '3': 1,\n",
      "          'months': 1,\n",
      "          'reality': 1,\n",
      "          '10': 1,\n",
      "          'years': 1,\n",
      "          'decade': 1,\n",
      "          'divorces': 1,\n",
      "          'remarries': 1,\n",
      "          'solid': 1,\n",
      "          'reliable': 1,\n",
      "          'individual': 1,\n",
      "          'travolta': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'nher': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'released': 1,\n",
      "          'comes': 1,\n",
      "          'njoey': 1,\n",
      "          'bringing': 1,\n",
      "          'home': 1,\n",
      "          'making': 1,\n",
      "          'choose': 1,\n",
      "          'husband': 1,\n",
      "          'children': 1,\n",
      "          'stability': 1,\n",
      "          'makes': 1,\n",
      "          'living': 1,\n",
      "          'drives': 1,\n",
      "          'cadillac': 1,\n",
      "          'live': 1,\n",
      "          'large': 1,\n",
      "          'house': 1,\n",
      "          'suburbs': 1,\n",
      "          'previous': 1,\n",
      "          'chooses': 1,\n",
      "          'past': 1,\n",
      "          'sacrifices': 1,\n",
      "          'old': 1,\n",
      "          'giving': 1,\n",
      "          'daughter': 1,\n",
      "          'nbut': 1,\n",
      "          'knew': 1,\n",
      "          'replaced': 1,\n",
      "          'man': 1,\n",
      "          'automaton': 1,\n",
      "          'woman': 1,\n",
      "          'whatever': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'therapy': 1,\n",
      "          'treatment': 1,\n",
      "          'given': 1,\n",
      "          'along': 1,\n",
      "          'nperhaps': 1,\n",
      "          'need': 1,\n",
      "          'happiness': 1,\n",
      "          'maybe': 1,\n",
      "          'lack': 1,\n",
      "          'sadness': 1,\n",
      "          'together': 1,\n",
      "          'movies': 1,\n",
      "          'denouement': 1,\n",
      "          'convincing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'nperhaps': 5,\n",
      "          'nthe': 4,\n",
      "          'richards': 3,\n",
      "          'seinfeld': 2,\n",
      "          'tv': 2,\n",
      "          'daniels': 2,\n",
      "          'lawyer': 2,\n",
      "          'charles': 2,\n",
      "          'film': 2,\n",
      "          'two': 2,\n",
      "          'try': 2,\n",
      "          'wasnt': 2,\n",
      "          'funny': 2,\n",
      "          'acting': 2,\n",
      "          'good': 2,\n",
      "          'waste': 2,\n",
      "          'time': 2,\n",
      "          'non': 2,\n",
      "          'side': 2,\n",
      "          'theron': 2,\n",
      "          'ncharlize': 2,\n",
      "          'career': 2,\n",
      "          'nshe': 2,\n",
      "          'la': 2,\n",
      "          'michael': 1,\n",
      "          'leaves': 1,\n",
      "          'spot': 1,\n",
      "          'kramer': 1,\n",
      "          'infamous': 1,\n",
      "          'sitcom': 1,\n",
      "          'stint': 1,\n",
      "          'lanky': 1,\n",
      "          'goofy': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'jeff': 1,\n",
      "          'character': 1,\n",
      "          'illfated': 1,\n",
      "          'unfunny': 1,\n",
      "          'comedy': 1,\n",
      "          'nplot': 1,\n",
      "          'richard': 1,\n",
      "          'actor': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'real': 1,\n",
      "          'court': 1,\n",
      "          'case': 1,\n",
      "          'left': 1,\n",
      "          'unintelligible': 1,\n",
      "          'night': 1,\n",
      "          'heavy': 1,\n",
      "          'drinking': 1,\n",
      "          'bachelor': 1,\n",
      "          'party': 1,\n",
      "          'follows': 1,\n",
      "          'antics': 1,\n",
      "          'men': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'tomfoolery': 1,\n",
      "          'ncritique': 1,\n",
      "          'make': 1,\n",
      "          'laugh': 1,\n",
      "          'tired': 1,\n",
      "          'watched': 1,\n",
      "          'seen': 1,\n",
      "          'perform': 1,\n",
      "          'schtick': 1,\n",
      "          'thousand': 1,\n",
      "          'times': 1,\n",
      "          'nabsolutely': 1,\n",
      "          'lack': 1,\n",
      "          'humour': 1,\n",
      "          'issue': 1,\n",
      "          'either': 1,\n",
      "          'attempts': 1,\n",
      "          'weave': 1,\n",
      "          'couple': 1,\n",
      "          'love': 1,\n",
      "          'stories': 1,\n",
      "          'vision': 1,\n",
      "          'unfortunately': 1,\n",
      "          'also': 1,\n",
      "          'lacking': 1,\n",
      "          'conviction': 1,\n",
      "          'believability': 1,\n",
      "          'credibility': 1,\n",
      "          'nthey': 1,\n",
      "          'contrived': 1,\n",
      "          'appear': 1,\n",
      "          'placed': 1,\n",
      "          'story': 1,\n",
      "          'convenience': 1,\n",
      "          'sake': 1,\n",
      "          'actors': 1,\n",
      "          'adequate': 1,\n",
      "          'enough': 1,\n",
      "          'roles': 1,\n",
      "          'problem': 1,\n",
      "          'didnt': 1,\n",
      "          'lie': 1,\n",
      "          'ni': 1,\n",
      "          'wish': 1,\n",
      "          'could': 1,\n",
      "          'find': 1,\n",
      "          'one': 1,\n",
      "          'reason': 1,\n",
      "          'see': 1,\n",
      "          'cant': 1,\n",
      "          'nunless': 1,\n",
      "          'course': 1,\n",
      "          'need': 1,\n",
      "          'something': 1,\n",
      "          'playing': 1,\n",
      "          'set': 1,\n",
      "          'around': 1,\n",
      "          'house': 1,\n",
      "          'noverall': 1,\n",
      "          'stinks': 1,\n",
      "          'charlize': 1,\n",
      "          'darn': 1,\n",
      "          'cute': 1,\n",
      "          'longer': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'bad': 1,\n",
      "          'interesting': 1,\n",
      "          'enjoyable': 1,\n",
      "          'way': 1,\n",
      "          'possible': 1,\n",
      "          'na': 1,\n",
      "          'person': 1,\n",
      "          'wouldnt': 1,\n",
      "          'even': 1,\n",
      "          'enjoy': 1,\n",
      "          'nachos': 1,\n",
      "          'watching': 1,\n",
      "          'emptiness': 1,\n",
      "          'nplease': 1,\n",
      "          'skip': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'jonathan': 1,\n",
      "          'lynn': 1,\n",
      "          'earned': 1,\n",
      "          'degree': 1,\n",
      "          'law': 1,\n",
      "          'cambridge': 1,\n",
      "          'becoming': 1,\n",
      "          'actordirector': 1,\n",
      "          'grew': 1,\n",
      "          'farm': 1,\n",
      "          'outside': 1,\n",
      "          'benoni': 1,\n",
      "          'south': 1,\n",
      "          'africa': 1,\n",
      "          'child': 1,\n",
      "          'nat': 1,\n",
      "          'age': 1,\n",
      "          '18': 1,\n",
      "          'mother': 1,\n",
      "          'made': 1,\n",
      "          'go': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'industry': 1,\n",
      "          'came': 1,\n",
      "          'without': 1,\n",
      "          'knowing': 1,\n",
      "          'anyone': 1,\n",
      "          'city': 1,\n",
      "          'weeks': 1,\n",
      "          'standing': 1,\n",
      "          'line': 1,\n",
      "          'hollywood': 1,\n",
      "          'boulevard': 1,\n",
      "          'agent': 1,\n",
      "          'gave': 1,\n",
      "          'card': 1,\n",
      "          'nafter': 1,\n",
      "          'eight': 1,\n",
      "          'months': 1,\n",
      "          'got': 1,\n",
      "          'first': 1,\n",
      "          'part': 1,\n",
      "          'nsince': 1,\n",
      "          'taken': 1,\n",
      "          'lessons': 1,\n",
      "          'skyrocketed': 1,\n",
      "          'specifically': 1,\n",
      "          'devils': 1,\n",
      "          'advocate': 1,\n",
      "          '810': 1,\n",
      "          'narrowly': 1,\n",
      "          'beat': 1,\n",
      "          'elizabeth': 1,\n",
      "          'berkley': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'showgirls': 1,\n",
      "          'quoted': 1,\n",
      "          'saying': 1,\n",
      "          'like': 1,\n",
      "          'guardian': 1,\n",
      "          'angel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chan': 4,\n",
      "          'scenes': 4,\n",
      "          'chans': 4,\n",
      "          'jackie': 3,\n",
      "          'plot': 3,\n",
      "          'nthe': 3,\n",
      "          'get': 3,\n",
      "          'brothers': 3,\n",
      "          'twin': 2,\n",
      "          'dragons': 2,\n",
      "          'action': 2,\n",
      "          'forget': 2,\n",
      "          'even': 2,\n",
      "          'movies': 2,\n",
      "          'films': 2,\n",
      "          'little': 2,\n",
      "          'sequences': 2,\n",
      "          'together': 2,\n",
      "          'case': 2,\n",
      "          'movie': 2,\n",
      "          'good': 2,\n",
      "          'love': 2,\n",
      "          'yet': 2,\n",
      "          'seem': 2,\n",
      "          'mind': 2,\n",
      "          'brother': 2,\n",
      "          'final': 2,\n",
      "          'fight': 2,\n",
      "          'white': 2,\n",
      "          'marsh': 2,\n",
      "          'kicks': 1,\n",
      "          'way': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'territory': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'bland': 1,\n",
      "          'comedy': 1,\n",
      "          'mistaken': 1,\n",
      "          'identities': 1,\n",
      "          'nchan': 1,\n",
      "          'plays': 1,\n",
      "          'separatedatbirths': 1,\n",
      "          'boomer': 1,\n",
      "          'john': 1,\n",
      "          'whose': 1,\n",
      "          'drastically': 1,\n",
      "          'different': 1,\n",
      "          'paths': 1,\n",
      "          'naw': 1,\n",
      "          'description': 1,\n",
      "          'worth': 1,\n",
      "          'space': 1,\n",
      "          'nbut': 1,\n",
      "          'lets': 1,\n",
      "          'face': 1,\n",
      "          'nno': 1,\n",
      "          'one': 1,\n",
      "          'goes': 1,\n",
      "          'anyway': 1,\n",
      "          'nothing': 1,\n",
      "          'happens': 1,\n",
      "          'always': 1,\n",
      "          'glue': 1,\n",
      "          'thriftily': 1,\n",
      "          'spread': 1,\n",
      "          'hold': 1,\n",
      "          'nin': 1,\n",
      "          'however': 1,\n",
      "          'tiresome': 1,\n",
      "          'plotdriving': 1,\n",
      "          'fritter': 1,\n",
      "          'away': 1,\n",
      "          'much': 1,\n",
      "          'almost': 1,\n",
      "          'want': 1,\n",
      "          'shout': 1,\n",
      "          'risk': 1,\n",
      "          'demeaning': 1,\n",
      "          'artistic': 1,\n",
      "          'value': 1,\n",
      "          'cinema': 1,\n",
      "          'part': 1,\n",
      "          'already': 1,\n",
      "          'nmost': 1,\n",
      "          'film': 1,\n",
      "          'devoted': 1,\n",
      "          'showing': 1,\n",
      "          'efforts': 1,\n",
      "          'hide': 1,\n",
      "          'others': 1,\n",
      "          'existence': 1,\n",
      "          'acquaintances': 1,\n",
      "          'nwhy': 1,\n",
      "          'necessary': 1,\n",
      "          'satisfactorily': 1,\n",
      "          'explained': 1,\n",
      "          'neither': 1,\n",
      "          'lot': 1,\n",
      "          'aspects': 1,\n",
      "          'twins': 1,\n",
      "          'interests': 1,\n",
      "          'demure': 1,\n",
      "          'clubsinger': 1,\n",
      "          'barbara': 1,\n",
      "          'chanfilm': 1,\n",
      "          'regular': 1,\n",
      "          'maggie': 1,\n",
      "          'cheung': 1,\n",
      "          'lusty': 1,\n",
      "          'bridehopeful': 1,\n",
      "          'tammy': 1,\n",
      "          'nina': 1,\n",
      "          'li': 1,\n",
      "          'chi': 1,\n",
      "          'disoriented': 1,\n",
      "          'brouhaha': 1,\n",
      "          'strangely': 1,\n",
      "          'sure': 1,\n",
      "          'describing': 1,\n",
      "          'boys': 1,\n",
      "          'bumbling': 1,\n",
      "          'antics': 1,\n",
      "          'stretched': 1,\n",
      "          'thin': 1,\n",
      "          'stop': 1,\n",
      "          'caring': 1,\n",
      "          'supposed': 1,\n",
      "          'given': 1,\n",
      "          'shot': 1,\n",
      "          'several': 1,\n",
      "          'shots': 1,\n",
      "          'fact': 1,\n",
      "          'makeup': 1,\n",
      "          'hair': 1,\n",
      "          'people': 1,\n",
      "          'neven': 1,\n",
      "          'socornyitsfunny': 1,\n",
      "          'humor': 1,\n",
      "          'offkilter': 1,\n",
      "          'outing': 1,\n",
      "          'nsome': 1,\n",
      "          'gags': 1,\n",
      "          'carefully': 1,\n",
      "          'innocuous': 1,\n",
      "          'theyre': 1,\n",
      "          'annoying': 1,\n",
      "          'na': 1,\n",
      "          'point': 1,\n",
      "          'whenever': 1,\n",
      "          'anyone': 1,\n",
      "          'sees': 1,\n",
      "          'fall': 1,\n",
      "          'ground': 1,\n",
      "          'dead': 1,\n",
      "          'faint': 1,\n",
      "          'nare': 1,\n",
      "          'laughing': 1,\n",
      "          'nas': 1,\n",
      "          'usual': 1,\n",
      "          'showdown': 1,\n",
      "          'jewel': 1,\n",
      "          'tour': 1,\n",
      "          'de': 1,\n",
      "          'force': 1,\n",
      "          'display': 1,\n",
      "          'agility': 1,\n",
      "          'grace': 1,\n",
      "          'nnever': 1,\n",
      "          'clear': 1,\n",
      "          'end': 1,\n",
      "          'fighting': 1,\n",
      "          'suited': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'inside': 1,\n",
      "          'automobile': 1,\n",
      "          'crashtesting': 1,\n",
      "          'facility': 1,\n",
      "          'nits': 1,\n",
      "          'fun': 1,\n",
      "          'late': 1,\n",
      "          'nperhaps': 1,\n",
      "          'next': 1,\n",
      "          'collection': 1,\n",
      "          'last': 1,\n",
      "          'nthey': 1,\n",
      "          'could': 1,\n",
      "          'call': 1,\n",
      "          'everybody': 1,\n",
      "          'would': 1,\n",
      "          'go': 1,\n",
      "          'home': 1,\n",
      "          'happy': 1,\n",
      "          'nreviewed': 1,\n",
      "          'april': 1,\n",
      "          '14': 1,\n",
      "          '1999': 1,\n",
      "          'loews': 1,\n",
      "          'theaters': 1,\n",
      "          'md': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'brenner': 7,\n",
      "          'generals': 5,\n",
      "          'daughter': 5,\n",
      "          'nits': 4,\n",
      "          'case': 4,\n",
      "          'campbell': 4,\n",
      "          'film': 3,\n",
      "          'much': 3,\n",
      "          'lines': 3,\n",
      "          'captain': 3,\n",
      "          'sexual': 3,\n",
      "          'enough': 3,\n",
      "          'two': 3,\n",
      "          'scene': 3,\n",
      "          'stupid': 2,\n",
      "          'dialogue': 2,\n",
      "          'nthe': 2,\n",
      "          'ever': 2,\n",
      "          'even': 2,\n",
      "          'face': 2,\n",
      "          'hero': 2,\n",
      "          'investigator': 2,\n",
      "          'criminal': 2,\n",
      "          'investigation': 2,\n",
      "          'georgia': 2,\n",
      "          'james': 2,\n",
      "          'hours': 2,\n",
      "          'make': 2,\n",
      "          'longer': 2,\n",
      "          'wink': 2,\n",
      "          'turn': 2,\n",
      "          'campbells': 2,\n",
      "          'smart': 2,\n",
      "          'one': 2,\n",
      "          'provides': 2,\n",
      "          'script': 2,\n",
      "          'probably': 1,\n",
      "          'cleverest': 1,\n",
      "          'well': 1,\n",
      "          'see': 1,\n",
      "          'year': 1,\n",
      "          'perhaps': 1,\n",
      "          'stupidest': 1,\n",
      "          'clever': 1,\n",
      "          'confusing': 1,\n",
      "          'critic': 1,\n",
      "          'knuckleheaded': 1,\n",
      "          'plotting': 1,\n",
      "          'ostentatious': 1,\n",
      "          'direction': 1,\n",
      "          'shares': 1,\n",
      "          'screen': 1,\n",
      "          'snappy': 1,\n",
      "          'crisp': 1,\n",
      "          'character': 1,\n",
      "          'interaction': 1,\n",
      "          'nthat': 1,\n",
      "          'however': 1,\n",
      "          'happens': 1,\n",
      "          'legendary': 1,\n",
      "          'screenwriter': 1,\n",
      "          'william': 1,\n",
      "          'goldman': 1,\n",
      "          'takes': 1,\n",
      "          'pass': 1,\n",
      "          'otherwise': 1,\n",
      "          'brutally': 1,\n",
      "          'predictable': 1,\n",
      "          'conspiracy': 1,\n",
      "          'thriller': 1,\n",
      "          'punchedup': 1,\n",
      "          'punch': 1,\n",
      "          'verge': 1,\n",
      "          'convincing': 1,\n",
      "          'brain': 1,\n",
      "          'head': 1,\n",
      "          'remaining': 1,\n",
      "          '75': 1,\n",
      "          'narrative': 1,\n",
      "          'punches': 1,\n",
      "          'lack': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'nour': 1,\n",
      "          'warrant': 1,\n",
      "          'officer': 1,\n",
      "          'paul': 1,\n",
      "          'brash': 1,\n",
      "          'u': 1,\n",
      "          'armys': 1,\n",
      "          'division': 1,\n",
      "          'nhis': 1,\n",
      "          'latest': 1,\n",
      "          'murder': 1,\n",
      "          'elisabeth': 1,\n",
      "          'leslie': 1,\n",
      "          'stefanson': 1,\n",
      "          'base': 1,\n",
      "          'victim': 1,\n",
      "          'found': 1,\n",
      "          'tied': 1,\n",
      "          'ground': 1,\n",
      "          'apparent': 1,\n",
      "          'assault': 1,\n",
      "          'strangulation': 1,\n",
      "          'ncomplicating': 1,\n",
      "          'fact': 1,\n",
      "          'capt': 1,\n",
      "          'general': 1,\n",
      "          'joe': 1,\n",
      "          'cromwell': 1,\n",
      "          'war': 1,\n",
      "          'potential': 1,\n",
      "          'vicepresidential': 1,\n",
      "          'nominee': 1,\n",
      "          'ngeneral': 1,\n",
      "          'wants': 1,\n",
      "          'keep': 1,\n",
      "          'press': 1,\n",
      "          'gives': 1,\n",
      "          '36': 1,\n",
      "          'fbi': 1,\n",
      "          'steps': 1,\n",
      "          'nteamed': 1,\n",
      "          'rape': 1,\n",
      "          'sarah': 1,\n",
      "          'sunhill': 1,\n",
      "          'madeleine': 1,\n",
      "          'stowe': 1,\n",
      "          'coincidentally': 1,\n",
      "          'romantic': 1,\n",
      "          'relationship': 1,\n",
      "          'begins': 1,\n",
      "          'uncovering': 1,\n",
      "          'dark': 1,\n",
      "          'secrets': 1,\n",
      "          'late': 1,\n",
      "          'captains': 1,\n",
      "          'past': 1,\n",
      "          'sordid': 1,\n",
      "          'nif': 1,\n",
      "          'sordidness': 1,\n",
      "          'worst': 1,\n",
      "          'daughters': 1,\n",
      "          'problems': 1,\n",
      "          'nscenes': 1,\n",
      "          'degredation': 1,\n",
      "          'linger': 1,\n",
      "          'necessary': 1,\n",
      "          'negligible': 1,\n",
      "          'dramatic': 1,\n",
      "          'value': 1,\n",
      "          'overwhelmed': 1,\n",
      "          'filteredlight': 1,\n",
      "          'sleaze': 1,\n",
      "          'ndirector': 1,\n",
      "          'simon': 1,\n",
      "          'west': 1,\n",
      "          'likely': 1,\n",
      "          'thinks': 1,\n",
      "          'hes': 1,\n",
      "          'covered': 1,\n",
      "          'juxtaposing': 1,\n",
      "          'images': 1,\n",
      "          'violence': 1,\n",
      "          'sweet': 1,\n",
      "          'flowers': 1,\n",
      "          'prove': 1,\n",
      "          'dependent': 1,\n",
      "          'visual': 1,\n",
      "          'cliches': 1,\n",
      "          'films': 1,\n",
      "          'fatal': 1,\n",
      "          'flaw': 1,\n",
      "          'trend': 1,\n",
      "          'continues': 1,\n",
      "          'taking': 1,\n",
      "          'storys': 1,\n",
      "          'virtues': 1,\n",
      "          'slapping': 1,\n",
      "          'coat': 1,\n",
      "          'moronproof': 1,\n",
      "          'obviousness': 1,\n",
      "          'ncharacters': 1,\n",
      "          'may': 1,\n",
      "          'villains': 1,\n",
      "          'photographed': 1,\n",
      "          'ominous': 1,\n",
      "          'shadow': 1,\n",
      "          'cutaway': 1,\n",
      "          'inserts': 1,\n",
      "          'stillliving': 1,\n",
      "          'corpse': 1,\n",
      "          'uncovered': 1,\n",
      "          'insure': 1,\n",
      "          'fiveminute': 1,\n",
      "          'attention': 1,\n",
      "          'spans': 1,\n",
      "          'nwest': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'overdirecting': 1,\n",
      "          'every': 1,\n",
      "          'minute': 1,\n",
      "          'nhe': 1,\n",
      "          'turns': 1,\n",
      "          'footage': 1,\n",
      "          'shown': 1,\n",
      "          'cnn': 1,\n",
      "          'excuse': 1,\n",
      "          'slowfade': 1,\n",
      "          'edits': 1,\n",
      "          'nbubbling': 1,\n",
      "          'overcooked': 1,\n",
      "          'stew': 1,\n",
      "          'tasty': 1,\n",
      "          'distract': 1,\n",
      "          'smell': 1,\n",
      "          'slickest': 1,\n",
      "          'finds': 1,\n",
      "          'squaring': 1,\n",
      "          'mentor': 1,\n",
      "          'psychological': 1,\n",
      "          'warfare': 1,\n",
      "          'expert': 1,\n",
      "          'named': 1,\n",
      "          'moore': 1,\n",
      "          'woods': 1,\n",
      "          'ntheres': 1,\n",
      "          'something': 1,\n",
      "          'invigorating': 1,\n",
      "          'watching': 1,\n",
      "          'actors': 1,\n",
      "          'playing': 1,\n",
      "          'characters': 1,\n",
      "          'firing': 1,\n",
      "          'honesty': 1,\n",
      "          'another': 1,\n",
      "          'nindeed': 1,\n",
      "          'travolta': 1,\n",
      "          'gets': 1,\n",
      "          'sink': 1,\n",
      "          'teeth': 1,\n",
      "          'dozens': 1,\n",
      "          'choice': 1,\n",
      "          'based': 1,\n",
      "          'delight': 1,\n",
      "          'provoking': 1,\n",
      "          'authority': 1,\n",
      "          'figures': 1,\n",
      "          'local': 1,\n",
      "          'sheriff': 1,\n",
      "          'county': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nightsticking': 1,\n",
      "          'colored': 1,\n",
      "          'folk': 1,\n",
      "          'neven': 1,\n",
      "          'lame': 1,\n",
      "          'device': 1,\n",
      "          'sunhills': 1,\n",
      "          'history': 1,\n",
      "          'winning': 1,\n",
      "          'zingers': 1,\n",
      "          'ngoldmans': 1,\n",
      "          'serve': 1,\n",
      "          'bigger': 1,\n",
      "          'laugh': 1,\n",
      "          'youll': 1,\n",
      "          'find': 1,\n",
      "          'socalled': 1,\n",
      "          'comedies': 1,\n",
      "          'ndialogue': 1,\n",
      "          'unfortunately': 1,\n",
      "          'isnt': 1,\n",
      "          'quality': 1,\n",
      "          'difficult': 1,\n",
      "          'take': 1,\n",
      "          'movie': 1,\n",
      "          'seriously': 1,\n",
      "          'investigators': 1,\n",
      "          'solve': 1,\n",
      "          'sooner': 1,\n",
      "          'idiotic': 1,\n",
      "          'inability': 1,\n",
      "          'recognize': 1,\n",
      "          'nature': 1,\n",
      "          'crime': 1,\n",
      "          'lucky': 1,\n",
      "          'last': 1,\n",
      "          'occasions': 1,\n",
      "          'catches': 1,\n",
      "          'vital': 1,\n",
      "          'piece': 1,\n",
      "          'evidence': 1,\n",
      "          'corner': 1,\n",
      "          'eye': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'wanders': 1,\n",
      "          'towards': 1,\n",
      "          'overwrought': 1,\n",
      "          'psychointherain': 1,\n",
      "          'finale': 1,\n",
      "          'wests': 1,\n",
      "          'heavy': 1,\n",
      "          'hand': 1,\n",
      "          'obliterated': 1,\n",
      "          'made': 1,\n",
      "          'occasionally': 1,\n",
      "          'fun': 1,\n",
      "          'silly': 1,\n",
      "          'pretentious': 1,\n",
      "          'filmmaking': 1,\n",
      "          'least': 1,\n",
      "          'giggle': 1,\n",
      "          'five': 1,\n",
      "          'ngoldman': 1,\n",
      "          'tear': 1,\n",
      "          '15': 1,\n",
      "          'decent': 1,\n",
      "          'pages': 1,\n",
      "          'standup': 1,\n",
      "          'routine': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'cradle': 5,\n",
      "          'play': 5,\n",
      "          'rock': 4,\n",
      "          'robbins': 4,\n",
      "          'theater': 4,\n",
      "          'nthe': 3,\n",
      "          'story': 3,\n",
      "          'like': 3,\n",
      "          'nice': 3,\n",
      "          'john': 3,\n",
      "          'cusack': 3,\n",
      "          'latest': 2,\n",
      "          'tim': 2,\n",
      "          'may': 2,\n",
      "          'gets': 2,\n",
      "          'many': 2,\n",
      "          'subplots': 2,\n",
      "          'true': 2,\n",
      "          'federal': 2,\n",
      "          'wants': 2,\n",
      "          'together': 2,\n",
      "          'even': 2,\n",
      "          'seemed': 2,\n",
      "          'main': 2,\n",
      "          'seeing': 2,\n",
      "          'except': 2,\n",
      "          'least': 2,\n",
      "          'ntheres': 2,\n",
      "          'emily': 2,\n",
      "          'watson': 2,\n",
      "          'another': 2,\n",
      "          'involving': 2,\n",
      "          'actors': 2,\n",
      "          'moments': 2,\n",
      "          'direction': 2,\n",
      "          'effort': 1,\n",
      "          'directoractor': 1,\n",
      "          'nwhile': 1,\n",
      "          'oscar': 1,\n",
      "          'worthy': 1,\n",
      "          'back': 1,\n",
      "          '1995': 1,\n",
      "          'dead': 1,\n",
      "          'man': 1,\n",
      "          'walking': 1,\n",
      "          'little': 1,\n",
      "          'overconfident': 1,\n",
      "          'sloppy': 1,\n",
      "          'confusing': 1,\n",
      "          'filled': 1,\n",
      "          'ill': 1,\n",
      "          'try': 1,\n",
      "          'best': 1,\n",
      "          'explain': 1,\n",
      "          'simply': 1,\n",
      "          'possible': 1,\n",
      "          'based': 1,\n",
      "          'mostly': 1,\n",
      "          '1930s': 1,\n",
      "          'produced': 1,\n",
      "          'apparently': 1,\n",
      "          'offensive': 1,\n",
      "          'government': 1,\n",
      "          'shuts': 1,\n",
      "          'nits': 1,\n",
      "          'time': 1,\n",
      "          'depression': 1,\n",
      "          'entertain': 1,\n",
      "          'cheer': 1,\n",
      "          'jobs': 1,\n",
      "          'poor': 1,\n",
      "          'nbetween': 1,\n",
      "          'conflict': 1,\n",
      "          'lies': 1,\n",
      "          'seems': 1,\n",
      "          '10': 1,\n",
      "          'work': 1,\n",
      "          'associated': 1,\n",
      "          'nalso': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'messages': 1,\n",
      "          'mashed': 1,\n",
      "          'create': 1,\n",
      "          'overwhelming': 1,\n",
      "          'experience': 1,\n",
      "          'ntim': 1,\n",
      "          'keeps': 1,\n",
      "          'piling': 1,\n",
      "          'political': 1,\n",
      "          'views': 1,\n",
      "          'characters': 1,\n",
      "          'give': 1,\n",
      "          'cases': 1,\n",
      "          'walk': 1,\n",
      "          'nfor': 1,\n",
      "          'achievement': 1,\n",
      "          'friendly': 1,\n",
      "          'get': 1,\n",
      "          'slightly': 1,\n",
      "          'sophisticated': 1,\n",
      "          'dialogue': 1,\n",
      "          'fancy': 1,\n",
      "          'outfits': 1,\n",
      "          'ni': 1,\n",
      "          'thought': 1,\n",
      "          'reason': 1,\n",
      "          'would': 1,\n",
      "          'outstanding': 1,\n",
      "          'cast': 1,\n",
      "          'unfortunately': 1,\n",
      "          'uninteresting': 1,\n",
      "          'nlet': 1,\n",
      "          'recap': 1,\n",
      "          'important': 1,\n",
      "          'character': 1,\n",
      "          'please': 1,\n",
      "          'bear': 1,\n",
      "          'especially': 1,\n",
      "          'considering': 1,\n",
      "          'nill': 1,\n",
      "          'begin': 1,\n",
      "          'involved': 1,\n",
      "          'orson': 1,\n",
      "          'welles': 1,\n",
      "          'angus': 1,\n",
      "          'macfadyen': 1,\n",
      "          'course': 1,\n",
      "          'director': 1,\n",
      "          'producer': 1,\n",
      "          'houseman': 1,\n",
      "          'cary': 1,\n",
      "          'elwes': 1,\n",
      "          'marc': 1,\n",
      "          'blitzstein': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'writer': 1,\n",
      "          'woman': 1,\n",
      "          'break': 1,\n",
      "          'playing': 1,\n",
      "          'part': 1,\n",
      "          'noutside': 1,\n",
      "          'theres': 1,\n",
      "          'ventriloquist': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'relationship': 1,\n",
      "          'clerk': 1,\n",
      "          'joan': 1,\n",
      "          'subplot': 1,\n",
      "          'painter': 1,\n",
      "          'diego': 1,\n",
      "          'rivera': 1,\n",
      "          'ruben': 1,\n",
      "          'blades': 1,\n",
      "          'whos': 1,\n",
      "          'unhappy': 1,\n",
      "          'painting': 1,\n",
      "          'destroyed': 1,\n",
      "          'nelson': 1,\n",
      "          'rockefeller': 1,\n",
      "          'feels': 1,\n",
      "          'outrage': 1,\n",
      "          'actresses': 1,\n",
      "          'stories': 1,\n",
      "          'susan': 1,\n",
      "          'sarandon': 1,\n",
      "          'philip': 1,\n",
      "          'baker': 1,\n",
      "          'hall': 1,\n",
      "          'name': 1,\n",
      "          'mentioned': 1,\n",
      "          'significant': 1,\n",
      "          'nanyway': 1,\n",
      "          'talented': 1,\n",
      "          'hollywood': 1,\n",
      "          'stars': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'great': 1,\n",
      "          'job': 1,\n",
      "          'one': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'always': 1,\n",
      "          'delivers': 1,\n",
      "          'thick': 1,\n",
      "          'thin': 1,\n",
      "          'nnow': 1,\n",
      "          'although': 1,\n",
      "          'weak': 1,\n",
      "          'say': 1,\n",
      "          'subjects': 1,\n",
      "          'overblown': 1,\n",
      "          'nsure': 1,\n",
      "          'free': 1,\n",
      "          'speech': 1,\n",
      "          'segment': 1,\n",
      "          'feature': 1,\n",
      "          'becomes': 1,\n",
      "          'repetitive': 1,\n",
      "          'whole': 1,\n",
      "          'basically': 1,\n",
      "          'nothing': 1,\n",
      "          'headache': 1,\n",
      "          'non': 1,\n",
      "          'brighter': 1,\n",
      "          'side': 1,\n",
      "          'masterful': 1,\n",
      "          'nhis': 1,\n",
      "          'camera': 1,\n",
      "          'reminiscent': 1,\n",
      "          'works': 1,\n",
      "          'paul': 1,\n",
      "          'thomas': 1,\n",
      "          'andersons': 1,\n",
      "          'magnolia': 1,\n",
      "          'smoother': 1,\n",
      "          'opinion': 1,\n",
      "          'cant': 1,\n",
      "          'make': 1,\n",
      "          'movie': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'nalthough': 1,\n",
      "          'theyre': 1,\n",
      "          'stays': 1,\n",
      "          'title': 1,\n",
      "          'rocked': 1,\n",
      "          'far': 1,\n",
      "          'tipped': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 18,\n",
      "          'nthe': 7,\n",
      "          'richard': 5,\n",
      "          'things': 5,\n",
      "          'plot': 5,\n",
      "          'character': 5,\n",
      "          'story': 5,\n",
      "          'cast': 5,\n",
      "          'get': 4,\n",
      "          'nthis': 4,\n",
      "          'cinematography': 4,\n",
      "          'think': 4,\n",
      "          'better': 4,\n",
      "          'leonardo': 3,\n",
      "          'beach': 3,\n",
      "          'fran': 3,\n",
      "          'oise': 3,\n",
      "          'seems': 3,\n",
      "          'ni': 3,\n",
      "          'dont': 3,\n",
      "          'anyone': 3,\n",
      "          'go': 3,\n",
      "          'actually': 3,\n",
      "          'little': 3,\n",
      "          'see': 3,\n",
      "          'like': 3,\n",
      "          'much': 3,\n",
      "          'dicaprio': 2,\n",
      "          'sets': 2,\n",
      "          'thailand': 2,\n",
      "          'nthere': 2,\n",
      "          'secret': 2,\n",
      "          'nrichard': 2,\n",
      "          'three': 2,\n",
      "          'half': 2,\n",
      "          'two': 2,\n",
      "          'thirds': 2,\n",
      "          'aside': 2,\n",
      "          'novel': 2,\n",
      "          'beauty': 2,\n",
      "          'part': 2,\n",
      "          'nbut': 2,\n",
      "          'many': 2,\n",
      "          'quite': 2,\n",
      "          'lacking': 2,\n",
      "          'along': 2,\n",
      "          'said': 2,\n",
      "          'nnow': 2,\n",
      "          'pretty': 2,\n",
      "          'good': 2,\n",
      "          'nothing': 2,\n",
      "          'something': 2,\n",
      "          'make': 2,\n",
      "          'sense': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hoping': 2,\n",
      "          'made': 2,\n",
      "          'development': 2,\n",
      "          'attempt': 2,\n",
      "          'fails': 2,\n",
      "          'would': 2,\n",
      "          'well': 2,\n",
      "          'fact': 2,\n",
      "          'international': 2,\n",
      "          'used': 2,\n",
      "          'global': 2,\n",
      "          'liked': 2,\n",
      "          'disillusioned': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'spice': 1,\n",
      "          'life': 1,\n",
      "          'meets': 1,\n",
      "          'crazed': 1,\n",
      "          'man': 1,\n",
      "          'name': 1,\n",
      "          'daffy': 1,\n",
      "          'robert': 1,\n",
      "          'carlyle': 1,\n",
      "          'gives': 1,\n",
      "          'map': 1,\n",
      "          'utopia': 1,\n",
      "          'commits': 1,\n",
      "          'suicide': 1,\n",
      "          'neighbors': 1,\n",
      "          'hotel': 1,\n",
      "          'tienne': 1,\n",
      "          'guillaume': 1,\n",
      "          'canet': 1,\n",
      "          'virginie': 1,\n",
      "          'ledoyen': 1,\n",
      "          'nonce': 1,\n",
      "          'discover': 1,\n",
      "          'society': 1,\n",
      "          'existing': 1,\n",
      "          'falls': 1,\n",
      "          'covers': 1,\n",
      "          'romantic': 1,\n",
      "          'element': 1,\n",
      "          'solely': 1,\n",
      "          'creation': 1,\n",
      "          'hollywood': 1,\n",
      "          'hold': 1,\n",
      "          'original': 1,\n",
      "          'general': 1,\n",
      "          'breathtaking': 1,\n",
      "          'argue': 1,\n",
      "          'visually': 1,\n",
      "          'stunning': 1,\n",
      "          'wrong': 1,\n",
      "          'darius': 1,\n",
      "          'khondji': 1,\n",
      "          'totally': 1,\n",
      "          'outdone': 1,\n",
      "          'nthough': 1,\n",
      "          'script': 1,\n",
      "          'interpretation': 1,\n",
      "          'moves': 1,\n",
      "          'decent': 1,\n",
      "          'pace': 1,\n",
      "          'abouts': 1,\n",
      "          'great': 1,\n",
      "          'potential': 1,\n",
      "          'travelers': 1,\n",
      "          'island': 1,\n",
      "          'turn': 1,\n",
      "          'yes': 1,\n",
      "          'folks': 1,\n",
      "          'spectacular': 1,\n",
      "          'still': 1,\n",
      "          'promise': 1,\n",
      "          'start': 1,\n",
      "          'degenerate': 1,\n",
      "          'becomes': 1,\n",
      "          'almost': 1,\n",
      "          'unwatchable': 1,\n",
      "          'even': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'style': 1,\n",
      "          'sequence': 1,\n",
      "          'borders': 1,\n",
      "          'disgusting': 1,\n",
      "          'doesnt': 1,\n",
      "          'looks': 1,\n",
      "          'dumb': 1,\n",
      "          'opinion': 1,\n",
      "          'peoples': 1,\n",
      "          'rant': 1,\n",
      "          'ive': 1,\n",
      "          'abundantly': 1,\n",
      "          'clear': 1,\n",
      "          'seriously': 1,\n",
      "          'uneven': 1,\n",
      "          'pacing': 1,\n",
      "          'blame': 1,\n",
      "          'par': 1,\n",
      "          'either': 1,\n",
      "          'found': 1,\n",
      "          'spoiled': 1,\n",
      "          'child': 1,\n",
      "          'nalthough': 1,\n",
      "          'feeble': 1,\n",
      "          'whole': 1,\n",
      "          'profound': 1,\n",
      "          'leos': 1,\n",
      "          'comes': 1,\n",
      "          'wannabe': 1,\n",
      "          'philosopher': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'apparent': 1,\n",
      "          'reason': 1,\n",
      "          'granted': 1,\n",
      "          'people': 1,\n",
      "          'included': 1,\n",
      "          'know': 1,\n",
      "          'fairly': 1,\n",
      "          'random': 1,\n",
      "          'ever': 1,\n",
      "          'sort': 1,\n",
      "          'next': 1,\n",
      "          'point': 1,\n",
      "          'really': 1,\n",
      "          'interesting': 1,\n",
      "          'characters': 1,\n",
      "          'simply': 1,\n",
      "          'developed': 1,\n",
      "          'enough': 1,\n",
      "          'obviously': 1,\n",
      "          'obsessed': 1,\n",
      "          'early': 1,\n",
      "          'stages': 1,\n",
      "          'yet': 1,\n",
      "          'line': 1,\n",
      "          'sure': 1,\n",
      "          'contributes': 1,\n",
      "          'movies': 1,\n",
      "          'lack': 1,\n",
      "          'core': 1,\n",
      "          'unfocused': 1,\n",
      "          'shall': 1,\n",
      "          'move': 1,\n",
      "          'onto': 1,\n",
      "          'cynics': 1,\n",
      "          'acting': 1,\n",
      "          'passable': 1,\n",
      "          'least': 1,\n",
      "          'role': 1,\n",
      "          'nmind': 1,\n",
      "          'rest': 1,\n",
      "          'reasonably': 1,\n",
      "          'sized': 1,\n",
      "          'roles': 1,\n",
      "          'equally': 1,\n",
      "          'nwhich': 1,\n",
      "          'begs': 1,\n",
      "          'question': 1,\n",
      "          'paid': 1,\n",
      "          'n': 1,\n",
      "          'topic': 1,\n",
      "          'wont': 1,\n",
      "          'american': 1,\n",
      "          'horrible': 1,\n",
      "          'flavor': 1,\n",
      "          'added': 1,\n",
      "          'feel': 1,\n",
      "          'bearable': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'set': 1,\n",
      "          'makes': 1,\n",
      "          'nwhen': 1,\n",
      "          'done': 1,\n",
      "          'gaping': 1,\n",
      "          'inadequacies': 1,\n",
      "          'unforgivable': 1,\n",
      "          'recommend': 1,\n",
      "          'lot': 1,\n",
      "          'sheer': 1,\n",
      "          'nas': 1,\n",
      "          'tries': 1,\n",
      "          'philosophical': 1,\n",
      "          'nif': 1,\n",
      "          'end': 1,\n",
      "          'going': 1,\n",
      "          'forewarned': 1,\n",
      "          'shortcomings': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nick': 12,\n",
      "          'kate': 11,\n",
      "          'movie': 8,\n",
      "          'would': 5,\n",
      "          'wedding': 5,\n",
      "          'enough': 5,\n",
      "          'aniston': 4,\n",
      "          'company': 4,\n",
      "          'kevin': 4,\n",
      "          'ni': 4,\n",
      "          'jennifer': 3,\n",
      "          'problems': 3,\n",
      "          'nit': 3,\n",
      "          'nshe': 3,\n",
      "          'nher': 3,\n",
      "          'first': 3,\n",
      "          'go': 3,\n",
      "          'plan': 3,\n",
      "          'nthe': 3,\n",
      "          'sam': 3,\n",
      "          'time': 3,\n",
      "          'made': 3,\n",
      "          'sense': 3,\n",
      "          'away': 3,\n",
      "          'appears': 2,\n",
      "          'mercer': 2,\n",
      "          'status': 2,\n",
      "          'well': 2,\n",
      "          'make': 2,\n",
      "          'jay': 2,\n",
      "          'meets': 2,\n",
      "          'gets': 2,\n",
      "          'nkates': 2,\n",
      "          'darcy': 2,\n",
      "          'illeana': 2,\n",
      "          'nkate': 2,\n",
      "          'results': 2,\n",
      "          'pursues': 2,\n",
      "          'consists': 2,\n",
      "          'nat': 2,\n",
      "          'break': 2,\n",
      "          'new': 2,\n",
      "          'really': 2,\n",
      "          'nafter': 2,\n",
      "          'interested': 2,\n",
      "          'like': 2,\n",
      "          'olympia': 2,\n",
      "          'nthere': 2,\n",
      "          'scene': 2,\n",
      "          'actually': 2,\n",
      "          'one': 2,\n",
      "          'dont': 2,\n",
      "          'think': 2,\n",
      "          'job': 2,\n",
      "          'formula': 2,\n",
      "          'movies': 2,\n",
      "          'best': 2,\n",
      "          'friends': 2,\n",
      "          'ending': 2,\n",
      "          'perfect': 2,\n",
      "          'couple': 2,\n",
      "          'everything': 2,\n",
      "          'throw': 2,\n",
      "          'even': 2,\n",
      "          'liked': 2,\n",
      "          'congregation': 2,\n",
      "          'strangers': 2,\n",
      "          'twentyeight': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'happy': 1,\n",
      "          'slow': 1,\n",
      "          'progression': 1,\n",
      "          'ladder': 1,\n",
      "          'love': 1,\n",
      "          'life': 1,\n",
      "          'apparently': 1,\n",
      "          'leaves': 1,\n",
      "          'something': 1,\n",
      "          'desired': 1,\n",
      "          'learns': 1,\n",
      "          'related': 1,\n",
      "          'owner': 1,\n",
      "          'advertising': 1,\n",
      "          'agency': 1,\n",
      "          'mr': 1,\n",
      "          'dunn': 1,\n",
      "          'explains': 1,\n",
      "          'single': 1,\n",
      "          'bode': 1,\n",
      "          'freedom': 1,\n",
      "          'likely': 1,\n",
      "          'leave': 1,\n",
      "          'taking': 1,\n",
      "          'clients': 1,\n",
      "          'na': 1,\n",
      "          'solution': 1,\n",
      "          'presents': 1,\n",
      "          'mohr': 1,\n",
      "          'videographer': 1,\n",
      "          'coincidence': 1,\n",
      "          'photographed': 1,\n",
      "          'boss': 1,\n",
      "          'douglas': 1,\n",
      "          'uses': 1,\n",
      "          'photograph': 1,\n",
      "          'fabricate': 1,\n",
      "          'engagement': 1,\n",
      "          'repulsed': 1,\n",
      "          'idea': 1,\n",
      "          'getting': 1,\n",
      "          'immediate': 1,\n",
      "          'positive': 1,\n",
      "          'task': 1,\n",
      "          'convince': 1,\n",
      "          'along': 1,\n",
      "          'actual': 1,\n",
      "          'pretending': 1,\n",
      "          'fianc': 1,\n",
      "          'dinner': 1,\n",
      "          'kates': 1,\n",
      "          'bosses': 1,\n",
      "          'provoke': 1,\n",
      "          'fight': 1,\n",
      "          'propose': 1,\n",
      "          'nhe': 1,\n",
      "          'accepts': 1,\n",
      "          'brings': 1,\n",
      "          'unexpected': 1,\n",
      "          'areas': 1,\n",
      "          'office': 1,\n",
      "          'bad': 1,\n",
      "          'boy': 1,\n",
      "          'bacon': 1,\n",
      "          'wouldnt': 1,\n",
      "          'give': 1,\n",
      "          'day': 1,\n",
      "          'nnow': 1,\n",
      "          'engaged': 1,\n",
      "          'affair': 1,\n",
      "          'destroy': 1,\n",
      "          'good': 1,\n",
      "          'girl': 1,\n",
      "          'image': 1,\n",
      "          'hence': 1,\n",
      "          'sams': 1,\n",
      "          'sudden': 1,\n",
      "          'interest': 1,\n",
      "          'nthings': 1,\n",
      "          'start': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'likes': 1,\n",
      "          'wish': 1,\n",
      "          'provoking': 1,\n",
      "          'oblige': 1,\n",
      "          'continue': 1,\n",
      "          'longer': 1,\n",
      "          'available': 1,\n",
      "          'maybe': 1,\n",
      "          'reconciliation': 1,\n",
      "          'force': 1,\n",
      "          'admit': 1,\n",
      "          'lies': 1,\n",
      "          'employer': 1,\n",
      "          'nadding': 1,\n",
      "          'mess': 1,\n",
      "          'constant': 1,\n",
      "          'prying': 1,\n",
      "          'mother': 1,\n",
      "          'dukakis': 1,\n",
      "          'wants': 1,\n",
      "          'get': 1,\n",
      "          'married': 1,\n",
      "          'settle': 1,\n",
      "          'waist': 1,\n",
      "          'wearing': 1,\n",
      "          'bra': 1,\n",
      "          'chuckle': 1,\n",
      "          'wears': 1,\n",
      "          'cleavage': 1,\n",
      "          'satisfy': 1,\n",
      "          'russ': 1,\n",
      "          'meyer': 1,\n",
      "          'nits': 1,\n",
      "          'director': 1,\n",
      "          'said': 1,\n",
      "          'know': 1,\n",
      "          'story': 1,\n",
      "          'formulaic': 1,\n",
      "          'performances': 1,\n",
      "          'arent': 1,\n",
      "          'great': 1,\n",
      "          'heck': 1,\n",
      "          'lets': 1,\n",
      "          'show': 1,\n",
      "          'jennifers': 1,\n",
      "          'assets': 1,\n",
      "          'often': 1,\n",
      "          'uncovered': 1,\n",
      "          'humanly': 1,\n",
      "          'possible': 1,\n",
      "          'keep': 1,\n",
      "          'pg': 1,\n",
      "          'rating': 1,\n",
      "          'nquite': 1,\n",
      "          'frankly': 1,\n",
      "          'insulting': 1,\n",
      "          'competent': 1,\n",
      "          'actress': 1,\n",
      "          'carry': 1,\n",
      "          'decent': 1,\n",
      "          'ed': 1,\n",
      "          'burns': 1,\n",
      "          'shes': 1,\n",
      "          'smaller': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'doesnt': 1,\n",
      "          'deliver': 1,\n",
      "          'goods': 1,\n",
      "          'effectively': 1,\n",
      "          'performance': 1,\n",
      "          'convincing': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'far': 1,\n",
      "          'romantic': 1,\n",
      "          'comedies': 1,\n",
      "          'adds': 1,\n",
      "          'nothing': 1,\n",
      "          'standard': 1,\n",
      "          'types': 1,\n",
      "          'film': 1,\n",
      "          'similar': 1,\n",
      "          'leading': 1,\n",
      "          'female': 1,\n",
      "          'character': 1,\n",
      "          'quite': 1,\n",
      "          'vindictive': 1,\n",
      "          'due': 1,\n",
      "          'actions': 1,\n",
      "          'sympathy': 1,\n",
      "          'things': 1,\n",
      "          'awry': 1,\n",
      "          'didnt': 1,\n",
      "          'care': 1,\n",
      "          'quickly': 1,\n",
      "          'puts': 1,\n",
      "          'nicks': 1,\n",
      "          'profession': 1,\n",
      "          'explaining': 1,\n",
      "          'videotaping': 1,\n",
      "          'weddings': 1,\n",
      "          'wasnt': 1,\n",
      "          'glamorous': 1,\n",
      "          'coworkers': 1,\n",
      "          'least': 1,\n",
      "          'changed': 1,\n",
      "          'bit': 1,\n",
      "          'somewhat': 1,\n",
      "          'surprise': 1,\n",
      "          'nno': 1,\n",
      "          'luck': 1,\n",
      "          'picture': 1,\n",
      "          'nevery': 1,\n",
      "          'plot': 1,\n",
      "          'occurrence': 1,\n",
      "          'spotted': 1,\n",
      "          'mile': 1,\n",
      "          'including': 1,\n",
      "          'done': 1,\n",
      "          'prove': 1,\n",
      "          'loyalty': 1,\n",
      "          'blindly': 1,\n",
      "          'sure': 1,\n",
      "          'talk': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'consider': 1,\n",
      "          'relationship': 1,\n",
      "          'nwas': 1,\n",
      "          'quitting': 1,\n",
      "          'prerequisite': 1,\n",
      "          'making': 1,\n",
      "          'amends': 1,\n",
      "          'nthrow': 1,\n",
      "          'fact': 1,\n",
      "          'spent': 1,\n",
      "          'together': 1,\n",
      "          'warrant': 1,\n",
      "          'rash': 1,\n",
      "          'decision': 1,\n",
      "          'believe': 1,\n",
      "          'intensely': 1,\n",
      "          'willing': 1,\n",
      "          'career': 1,\n",
      "          'doubt': 1,\n",
      "          'nand': 1,\n",
      "          'entire': 1,\n",
      "          'feels': 1,\n",
      "          'necessary': 1,\n",
      "          'stop': 1,\n",
      "          'stare': 1,\n",
      "          'nare': 1,\n",
      "          'mass': 1,\n",
      "          'groups': 1,\n",
      "          'people': 1,\n",
      "          'simultaneously': 1,\n",
      "          'total': 1,\n",
      "          'nwell': 1,\n",
      "          'guess': 1,\n",
      "          'extras': 1,\n",
      "          'two': 1,\n",
      "          'lead': 1,\n",
      "          'stars': 1,\n",
      "          'npicture': 1,\n",
      "          'directed': 1,\n",
      "          'glenn': 1,\n",
      "          'gordon': 1,\n",
      "          'caron': 1,\n",
      "          'nmohr': 1,\n",
      "          'nbacon': 1,\n",
      "          'ndunn': 1,\n",
      "          'ndouglas': 1,\n",
      "          'rita': 1,\n",
      "          'ndukakis': 1,\n",
      "          'nwritten': 1,\n",
      "          'randy': 1,\n",
      "          'turgeon': 1,\n",
      "          'february': 1,\n",
      "          '26': 1,\n",
      "          '1998': 1,\n",
      "          'nvisit': 1,\n",
      "          'reviews': 1,\n",
      "          'nwww': 1,\n",
      "          'xtdl': 1,\n",
      "          'comcanran': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ni': 8,\n",
      "          'nthe': 7,\n",
      "          'bad': 7,\n",
      "          'demons': 6,\n",
      "          'movie': 5,\n",
      "          'film': 5,\n",
      "          'blood': 5,\n",
      "          'good': 5,\n",
      "          'story': 4,\n",
      "          'guy': 4,\n",
      "          'really': 4,\n",
      "          'wife': 4,\n",
      "          'get': 4,\n",
      "          'dumb': 4,\n",
      "          'acting': 4,\n",
      "          'one': 3,\n",
      "          'scumball': 3,\n",
      "          'nhe': 3,\n",
      "          'getting': 3,\n",
      "          'starts': 3,\n",
      "          'attic': 3,\n",
      "          'apart': 3,\n",
      "          'three': 3,\n",
      "          'nthey': 3,\n",
      "          'organ': 3,\n",
      "          'screwed': 3,\n",
      "          'nshe': 3,\n",
      "          'thing': 3,\n",
      "          'nit': 3,\n",
      "          'gets': 3,\n",
      "          'back': 3,\n",
      "          'skin': 3,\n",
      "          'see': 3,\n",
      "          'nthis': 3,\n",
      "          'n': 3,\n",
      "          'rating': 3,\n",
      "          '4': 3,\n",
      "          'review': 2,\n",
      "          'dont': 2,\n",
      "          'would': 2,\n",
      "          'slasher': 2,\n",
      "          'even': 2,\n",
      "          'type': 2,\n",
      "          'wrong': 2,\n",
      "          'difference': 2,\n",
      "          'chinese': 2,\n",
      "          'puzzle': 2,\n",
      "          'takes': 2,\n",
      "          'somehow': 2,\n",
      "          'appear': 2,\n",
      "          'theyre': 2,\n",
      "          'cleanup': 2,\n",
      "          'however': 2,\n",
      "          'guys': 2,\n",
      "          'brother': 2,\n",
      "          'scumballs': 2,\n",
      "          'around': 2,\n",
      "          'hubby': 2,\n",
      "          'grows': 2,\n",
      "          'nscumball': 2,\n",
      "          'doesnt': 2,\n",
      "          'ends': 2,\n",
      "          'like': 2,\n",
      "          'nwho': 2,\n",
      "          'frank': 2,\n",
      "          'two': 2,\n",
      "          'meathooks': 2,\n",
      "          'fun': 2,\n",
      "          'rats': 2,\n",
      "          'daughter': 2,\n",
      "          'something': 2,\n",
      "          'quite': 2,\n",
      "          'long': 2,\n",
      "          'best': 2,\n",
      "          'na': 2,\n",
      "          'far': 2,\n",
      "          'horror': 2,\n",
      "          'contains': 1,\n",
      "          'spoilers': 1,\n",
      "          'believe': 1,\n",
      "          'say': 1,\n",
      "          'anything': 1,\n",
      "          'cant': 1,\n",
      "          'guess': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          'go': 1,\n",
      "          'high': 1,\n",
      "          'expectations': 1,\n",
      "          'exposed': 1,\n",
      "          'media': 1,\n",
      "          'reports': 1,\n",
      "          'signify': 1,\n",
      "          'departure': 1,\n",
      "          'flicks': 1,\n",
      "          'sort': 1,\n",
      "          'expected': 1,\n",
      "          'another': 1,\n",
      "          'exorcist': 1,\n",
      "          'shining': 1,\n",
      "          'put': 1,\n",
      "          'aside': 1,\n",
      "          'general': 1,\n",
      "          'rule': 1,\n",
      "          'seeing': 1,\n",
      "          'nboy': 1,\n",
      "          'nanother': 1,\n",
      "          'garbage': 1,\n",
      "          'flick': 1,\n",
      "          'ask': 1,\n",
      "          'nwell': 1,\n",
      "          'buys': 1,\n",
      "          'arab': 1,\n",
      "          'souk': 1,\n",
      "          'home': 1,\n",
      "          'past': 1,\n",
      "          'customs': 1,\n",
      "          'fiddling': 1,\n",
      "          'nlo': 1,\n",
      "          'behold': 1,\n",
      "          'start': 1,\n",
      "          'taking': 1,\n",
      "          'meat': 1,\n",
      "          'hooks': 1,\n",
      "          'nwhen': 1,\n",
      "          'finished': 1,\n",
      "          'gizzards': 1,\n",
      "          'hanging': 1,\n",
      "          'ceiling': 1,\n",
      "          'botch': 1,\n",
      "          'job': 1,\n",
      "          'manage': 1,\n",
      "          'leave': 1,\n",
      "          'heart': 1,\n",
      "          'gland': 1,\n",
      "          'didnt': 1,\n",
      "          'recognize': 1,\n",
      "          'floorboard': 1,\n",
      "          'brothers': 1,\n",
      "          'door': 1,\n",
      "          'soon': 1,\n",
      "          'decide': 1,\n",
      "          'move': 1,\n",
      "          'throw': 1,\n",
      "          'away': 1,\n",
      "          'belongings': 1,\n",
      "          'set': 1,\n",
      "          'house': 1,\n",
      "          'nturns': 1,\n",
      "          'bit': 1,\n",
      "          'nympho': 1,\n",
      "          'right': 1,\n",
      "          'marriage': 1,\n",
      "          'wild': 1,\n",
      "          'hallucinations': 1,\n",
      "          'nlater': 1,\n",
      "          'spills': 1,\n",
      "          'floorboards': 1,\n",
      "          'slowmo': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'buckets': 1,\n",
      "          'hitting': 1,\n",
      "          'groundall': 1,\n",
      "          'tiny': 1,\n",
      "          'cut': 1,\n",
      "          'hand': 1,\n",
      "          'nsaid': 1,\n",
      "          'eagerly': 1,\n",
      "          'sucked': 1,\n",
      "          'requires': 1,\n",
      "          'yet': 1,\n",
      "          'order': 1,\n",
      "          'complete': 1,\n",
      "          'regeneration': 1,\n",
      "          'ugly': 1,\n",
      "          'establishes': 1,\n",
      "          'mind': 1,\n",
      "          'contact': 1,\n",
      "          'agrees': 1,\n",
      "          'help': 1,\n",
      "          'wants': 1,\n",
      "          'nso': 1,\n",
      "          'helps': 1,\n",
      "          'kill': 1,\n",
      "          'businessmen': 1,\n",
      "          'time': 1,\n",
      "          'gradually': 1,\n",
      "          'strength': 1,\n",
      "          'organs': 1,\n",
      "          'nproblem': 1,\n",
      "          'four': 1,\n",
      "          'corpses': 1,\n",
      "          'still': 1,\n",
      "          'finally': 1,\n",
      "          'though': 1,\n",
      "          'strangely': 1,\n",
      "          'enough': 1,\n",
      "          'looking': 1,\n",
      "          'nguess': 1,\n",
      "          'couldnt': 1,\n",
      "          'original': 1,\n",
      "          'actor': 1,\n",
      "          'knows': 1,\n",
      "          'whose': 1,\n",
      "          'name': 1,\n",
      "          'nice': 1,\n",
      "          'describes': 1,\n",
      "          'torture': 1,\n",
      "          'fondly': 1,\n",
      "          'ultimate': 1,\n",
      "          'pleasure': 1,\n",
      "          'pain': 1,\n",
      "          'since': 1,\n",
      "          'level': 1,\n",
      "          'nsomehow': 1,\n",
      "          'torn': 1,\n",
      "          '90': 1,\n",
      "          'fish': 1,\n",
      "          'lot': 1,\n",
      "          'cower': 1,\n",
      "          'corner': 1,\n",
      "          'fear': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'crucifies': 1,\n",
      "          'carves': 1,\n",
      "          'third': 1,\n",
      "          'nymphos': 1,\n",
      "          'horsing': 1,\n",
      "          'nanyway': 1,\n",
      "          'hubbys': 1,\n",
      "          'course': 1,\n",
      "          'wifes': 1,\n",
      "          'suspect': 1,\n",
      "          'sees': 1,\n",
      "          'going': 1,\n",
      "          'johns': 1,\n",
      "          'ensuing': 1,\n",
      "          'screams': 1,\n",
      "          'bimbo': 1,\n",
      "          'meets': 1,\n",
      "          'impressed': 1,\n",
      "          'manages': 1,\n",
      "          'escape': 1,\n",
      "          'brings': 1,\n",
      "          'nat': 1,\n",
      "          'rate': 1,\n",
      "          'pissed': 1,\n",
      "          'normally': 1,\n",
      "          'meticulous': 1,\n",
      "          'boils': 1,\n",
      "          'trying': 1,\n",
      "          'correct': 1,\n",
      "          'mistake': 1,\n",
      "          'bimbos': 1,\n",
      "          'take': 1,\n",
      "          'care': 1,\n",
      "          'also': 1,\n",
      "          'banishes': 1,\n",
      "          'hell': 1,\n",
      "          'oblivion': 1,\n",
      "          'sure': 1,\n",
      "          'nnot': 1,\n",
      "          'shabby': 1,\n",
      "          'someone': 1,\n",
      "          'singledigit': 1,\n",
      "          'iq': 1,\n",
      "          'basically': 1,\n",
      "          'jinn': 1,\n",
      "          'awful': 1,\n",
      "          'nawful': 1,\n",
      "          'focus': 1,\n",
      "          'photography': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'penetrated': 1,\n",
      "          'unrealistic': 1,\n",
      "          'looks': 1,\n",
      "          'latex': 1,\n",
      "          'ncontinuity': 1,\n",
      "          'cares': 1,\n",
      "          'nacting': 1,\n",
      "          'terrible': 1,\n",
      "          'nscript': 1,\n",
      "          'nhorrible': 1,\n",
      "          'nsounds': 1,\n",
      "          'canned': 1,\n",
      "          'nunrealistic': 1,\n",
      "          'nstory': 1,\n",
      "          'soso': 1,\n",
      "          'impact': 1,\n",
      "          'lost': 1,\n",
      "          'think': 1,\n",
      "          'rat': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'look': 1,\n",
      "          'afraid': 1,\n",
      "          'nominated': 1,\n",
      "          'award': 1,\n",
      "          'nreally': 1,\n",
      "          'envelope': 1,\n",
      "          'furry': 1,\n",
      "          'rodent': 1,\n",
      "          'please': 1,\n",
      "          'generous': 1,\n",
      "          '110': 1,\n",
      "          'system': 1,\n",
      "          'accurate': 1,\n",
      "          'people': 1,\n",
      "          'audience': 1,\n",
      "          'laughing': 1,\n",
      "          'chortling': 1,\n",
      "          'crummy': 1,\n",
      "          'dialog': 1,\n",
      "          'turning': 1,\n",
      "          'next': 1,\n",
      "          'rocky': 1,\n",
      "          'picture': 1,\n",
      "          'show': 1,\n",
      "          'npeople': 1,\n",
      "          'fed': 1,\n",
      "          'yelling': 1,\n",
      "          'warnings': 1,\n",
      "          'characters': 1,\n",
      "          'screen': 1,\n",
      "          'nhad': 1,\n",
      "          'ndumb': 1,\n",
      "          'embarrassed': 1,\n",
      "          'spent': 1,\n",
      "          'money': 1,\n",
      "          'goes': 1,\n",
      "          'without': 1,\n",
      "          'saying': 1,\n",
      "          'disagree': 1,\n",
      "          'reviews': 1,\n",
      "          'board': 1,\n",
      "          'attempt': 1,\n",
      "          'nlots': 1,\n",
      "          'slime': 1,\n",
      "          'reddyed': 1,\n",
      "          'corn': 1,\n",
      "          'syrup': 1,\n",
      "          'constitute': 1,\n",
      "          'opinion': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'film': 6,\n",
      "          'urban': 5,\n",
      "          'movie': 4,\n",
      "          'legends': 4,\n",
      "          'final': 3,\n",
      "          'another': 3,\n",
      "          'like': 3,\n",
      "          'scary': 3,\n",
      "          'films': 3,\n",
      "          'told': 3,\n",
      "          'find': 3,\n",
      "          'bad': 2,\n",
      "          'theatre': 2,\n",
      "          'columbia': 2,\n",
      "          'tristar': 2,\n",
      "          'enough': 2,\n",
      "          'installment': 2,\n",
      "          'us': 2,\n",
      "          'cut': 2,\n",
      "          'nthis': 2,\n",
      "          'scream': 2,\n",
      "          'pointless': 2,\n",
      "          'movies': 2,\n",
      "          'morrison': 2,\n",
      "          'best': 2,\n",
      "          'production': 2,\n",
      "          'takes': 2,\n",
      "          'hitchcock': 2,\n",
      "          'amy': 2,\n",
      "          'killer': 2,\n",
      "          'stupid': 2,\n",
      "          'slasher': 2,\n",
      "          'nit': 2,\n",
      "          'nin': 2,\n",
      "          'fact': 2,\n",
      "          'keeping': 2,\n",
      "          'face': 2,\n",
      "          'times': 2,\n",
      "          'tried': 2,\n",
      "          'laughing': 2,\n",
      "          'nits': 2,\n",
      "          'thing': 2,\n",
      "          'many': 2,\n",
      "          'genre': 2,\n",
      "          'since': 2,\n",
      "          'ottman': 2,\n",
      "          'achievement': 2,\n",
      "          'already': 2,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'made': 1,\n",
      "          'guy': 1,\n",
      "          'run': 1,\n",
      "          'screaming': 1,\n",
      "          'nobviously': 1,\n",
      "          'producers': 1,\n",
      "          'think': 1,\n",
      "          'suffered': 1,\n",
      "          'first': 1,\n",
      "          'finish': 1,\n",
      "          'utterly': 1,\n",
      "          'released': 1,\n",
      "          'feature': 1,\n",
      "          'consisting': 1,\n",
      "          'merely': 1,\n",
      "          'recycled': 1,\n",
      "          'materials': 1,\n",
      "          'ripoffs': 1,\n",
      "          'time': 1,\n",
      "          'namy': 1,\n",
      "          'jennifer': 1,\n",
      "          'student': 1,\n",
      "          'attending': 1,\n",
      "          'school': 1,\n",
      "          'filled': 1,\n",
      "          'uninspired': 1,\n",
      "          'students': 1,\n",
      "          'clue': 1,\n",
      "          'nbut': 1,\n",
      "          'reaches': 1,\n",
      "          'halfway': 1,\n",
      "          'mark': 1,\n",
      "          'semester': 1,\n",
      "          'prestigious': 1,\n",
      "          'universitys': 1,\n",
      "          'program': 1,\n",
      "          'years': 1,\n",
      "          'thesis': 1,\n",
      "          'coveted': 1,\n",
      "          'prize': 1,\n",
      "          'virtual': 1,\n",
      "          'oneway': 1,\n",
      "          'ticket': 1,\n",
      "          'hollywood': 1,\n",
      "          'success': 1,\n",
      "          'chance': 1,\n",
      "          'encounter': 1,\n",
      "          'campus': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'reese': 1,\n",
      "          'loretta': 1,\n",
      "          'devine': 1,\n",
      "          'whose': 1,\n",
      "          'tale': 1,\n",
      "          'series': 1,\n",
      "          'murders': 1,\n",
      "          'based': 1,\n",
      "          'university': 1,\n",
      "          'inspires': 1,\n",
      "          'try': 1,\n",
      "          'hand': 1,\n",
      "          'fictional': 1,\n",
      "          'thriller': 1,\n",
      "          'organized': 1,\n",
      "          'along': 1,\n",
      "          'similar': 1,\n",
      "          'lines': 1,\n",
      "          'nsoon': 1,\n",
      "          'fake': 1,\n",
      "          'real': 1,\n",
      "          'blood': 1,\n",
      "          'starts': 1,\n",
      "          'flow': 1,\n",
      "          'chased': 1,\n",
      "          'around': 1,\n",
      "          'cast': 1,\n",
      "          'crew': 1,\n",
      "          'get': 1,\n",
      "          'slain': 1,\n",
      "          'nis': 1,\n",
      "          'culprit': 1,\n",
      "          'original': 1,\n",
      "          'murderer': 1,\n",
      "          'random': 1,\n",
      "          'psycho': 1,\n",
      "          'na': 1,\n",
      "          'member': 1,\n",
      "          'faculty': 1,\n",
      "          'competitors': 1,\n",
      "          'something': 1,\n",
      "          'even': 1,\n",
      "          'going': 1,\n",
      "          'tiring': 1,\n",
      "          'teen': 1,\n",
      "          'flicks': 1,\n",
      "          'neither': 1,\n",
      "          'funny': 1,\n",
      "          'interesting': 1,\n",
      "          'simply': 1,\n",
      "          'lacks': 1,\n",
      "          'ability': 1,\n",
      "          'story': 1,\n",
      "          'entertain': 1,\n",
      "          'nthe': 1,\n",
      "          'body': 1,\n",
      "          'counts': 1,\n",
      "          'screams': 1,\n",
      "          'continue': 1,\n",
      "          'grow': 1,\n",
      "          'weak': 1,\n",
      "          'level': 1,\n",
      "          'intelligence': 1,\n",
      "          'sinks': 1,\n",
      "          'rapidly': 1,\n",
      "          'watching': 1,\n",
      "          'watched': 1,\n",
      "          'impossible': 1,\n",
      "          'serious': 1,\n",
      "          'nseveral': 1,\n",
      "          'prevent': 1,\n",
      "          'without': 1,\n",
      "          'succeeding': 1,\n",
      "          'nand': 1,\n",
      "          'realized': 1,\n",
      "          'practically': 1,\n",
      "          'whole': 1,\n",
      "          'revelation': 1,\n",
      "          'century': 1,\n",
      "          'nhow': 1,\n",
      "          'must': 1,\n",
      "          'tolerate': 1,\n",
      "          'clich': 1,\n",
      "          'haunted': 1,\n",
      "          'birth': 1,\n",
      "          'masked': 1,\n",
      "          'killers': 1,\n",
      "          'developed': 1,\n",
      "          'allergy': 1,\n",
      "          'nthey': 1,\n",
      "          'meaningless': 1,\n",
      "          'predictable': 1,\n",
      "          'soulless': 1,\n",
      "          'existence': 1,\n",
      "          'nhowever': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'manages': 1,\n",
      "          'make': 1,\n",
      "          'worst': 1,\n",
      "          'achievements': 1,\n",
      "          'godforsaken': 1,\n",
      "          'nwhat': 1,\n",
      "          'done': 1,\n",
      "          'sense': 1,\n",
      "          'redemption': 1,\n",
      "          'past': 1,\n",
      "          'failures': 1,\n",
      "          'irony': 1,\n",
      "          'seriously': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'alone': 1,\n",
      "          'worth': 1,\n",
      "          'look': 1,\n",
      "          'realize': 1,\n",
      "          'tough': 1,\n",
      "          'comparisons': 1,\n",
      "          'dig': 1,\n",
      "          'ancient': 1,\n",
      "          'history': 1,\n",
      "          'would': 1,\n",
      "          'match': 1,\n",
      "          'intellect': 1,\n",
      "          'neven': 1,\n",
      "          'lost': 1,\n",
      "          'space': 1,\n",
      "          'mission': 1,\n",
      "          'mars': 1,\n",
      "          'seem': 1,\n",
      "          'spectacular': 1,\n",
      "          'shadow': 1,\n",
      "          'nwe': 1,\n",
      "          'seen': 1,\n",
      "          'waste': 1,\n",
      "          'nime': 1,\n",
      "          'resources': 1,\n",
      "          'showgirls': 1,\n",
      "          '1995': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'hard': 1,\n",
      "          'positive': 1,\n",
      "          'elements': 1,\n",
      "          'called': 1,\n",
      "          'came': 1,\n",
      "          'nothing': 1,\n",
      "          'except': 1,\n",
      "          'way': 1,\n",
      "          'dressed': 1,\n",
      "          'nhere': 1,\n",
      "          'feel': 1,\n",
      "          'compliment': 1,\n",
      "          'costume': 1,\n",
      "          'designers': 1,\n",
      "          'trysha': 1,\n",
      "          'bakker': 1,\n",
      "          'mariesylvie': 1,\n",
      "          'deveu': 1,\n",
      "          'wisely': 1,\n",
      "          'replaced': 1,\n",
      "          'well': 1,\n",
      "          'known': 1,\n",
      "          'screammask': 1,\n",
      "          'elegant': 1,\n",
      "          'fencing': 1,\n",
      "          'mask': 1,\n",
      "          'njennifer': 1,\n",
      "          'stir': 1,\n",
      "          'echoes': 1,\n",
      "          'right': 1,\n",
      "          'actors': 1,\n",
      "          'straight': 1,\n",
      "          'pronouncing': 1,\n",
      "          'words': 1,\n",
      "          'script': 1,\n",
      "          'terrifying': 1,\n",
      "          'exception': 1,\n",
      "          'screenplay': 1,\n",
      "          'portray': 1,\n",
      "          'schools': 1,\n",
      "          'nif': 1,\n",
      "          'graduates': 1,\n",
      "          'directors': 1,\n",
      "          'future': 1,\n",
      "          'hollywoods': 1,\n",
      "          'golden': 1,\n",
      "          'days': 1,\n",
      "          'nrumors': 1,\n",
      "          'spreading': 1,\n",
      "          'internet': 1,\n",
      "          'developing': 1,\n",
      "          'third': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'pray': 1,\n",
      "          'legend': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 11,\n",
      "          'hole': 8,\n",
      "          'man': 5,\n",
      "          'woman': 5,\n",
      "          'virus': 4,\n",
      "          'movie': 4,\n",
      "          'nothing': 4,\n",
      "          'yang': 3,\n",
      "          'tsai': 3,\n",
      "          'people': 3,\n",
      "          'bright': 3,\n",
      "          'nthis': 3,\n",
      "          'background': 3,\n",
      "          'life': 3,\n",
      "          'apartment': 3,\n",
      "          'say': 3,\n",
      "          'songs': 2,\n",
      "          'grace': 2,\n",
      "          'chan': 2,\n",
      "          'us': 2,\n",
      "          'lee': 2,\n",
      "          'kangsheng': 2,\n",
      "          'kueimei': 2,\n",
      "          'mingliang': 2,\n",
      "          'millenium': 2,\n",
      "          'city': 2,\n",
      "          'quarantined': 2,\n",
      "          'onset': 2,\n",
      "          'like': 2,\n",
      "          'water': 2,\n",
      "          'time': 2,\n",
      "          'quick': 2,\n",
      "          'dark': 2,\n",
      "          'ninstead': 2,\n",
      "          'one': 2,\n",
      "          'lives': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'womans': 2,\n",
      "          'living': 2,\n",
      "          'room': 2,\n",
      "          'opening': 2,\n",
      "          'characters': 2,\n",
      "          'around': 2,\n",
      "          'film': 2,\n",
      "          'long': 2,\n",
      "          'noodles': 2,\n",
      "          'perhaps': 2,\n",
      "          'series': 2,\n",
      "          'fantasies': 2,\n",
      "          'book': 2,\n",
      "          'movies': 2,\n",
      "          'alienation': 2,\n",
      "          'nif': 2,\n",
      "          'challenge': 2,\n",
      "          'grateful': 1,\n",
      "          'comfort': 1,\n",
      "          'nstarring': 1,\n",
      "          'directed': 1,\n",
      "          'written': 1,\n",
      "          'pingying': 1,\n",
      "          'cinematography': 1,\n",
      "          'liao': 1,\n",
      "          'pengjung': 1,\n",
      "          'ntaiwan': 1,\n",
      "          '241299': 1,\n",
      "          'approaches': 1,\n",
      "          'nan': 1,\n",
      "          'incessant': 1,\n",
      "          'downpour': 1,\n",
      "          'batters': 1,\n",
      "          'unnamed': 1,\n",
      "          'nsectors': 1,\n",
      "          'sealed': 1,\n",
      "          'due': 1,\n",
      "          'mysterious': 1,\n",
      "          'causes': 1,\n",
      "          'act': 1,\n",
      "          'insects': 1,\n",
      "          'crawl': 1,\n",
      "          'fours': 1,\n",
      "          'hide': 1,\n",
      "          'lights': 1,\n",
      "          'huddle': 1,\n",
      "          'damp': 1,\n",
      "          'corners': 1,\n",
      "          'supply': 1,\n",
      "          'zones': 1,\n",
      "          'cut': 1,\n",
      "          'weeks': 1,\n",
      "          'nresidents': 1,\n",
      "          'advised': 1,\n",
      "          'evacuate': 1,\n",
      "          'area': 1,\n",
      "          'asap': 1,\n",
      "          'premisekafka': 1,\n",
      "          'way': 1,\n",
      "          'cronenbergis': 1,\n",
      "          'could': 1,\n",
      "          'great': 1,\n",
      "          'sadly': 1,\n",
      "          'ends': 1,\n",
      "          'waste': 1,\n",
      "          'good': 1,\n",
      "          'ideas': 1,\n",
      "          'sketch': 1,\n",
      "          'suggests': 1,\n",
      "          'absurd': 1,\n",
      "          'hallucinatory': 1,\n",
      "          'nearfuture': 1,\n",
      "          'parable': 1,\n",
      "          'late': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'execution': 1,\n",
      "          'however': 1,\n",
      "          'evacuation': 1,\n",
      "          'visual': 1,\n",
      "          'possiblities': 1,\n",
      "          'deluge': 1,\n",
      "          'relegated': 1,\n",
      "          'focuses': 1,\n",
      "          'livesfor': 1,\n",
      "          'want': 1,\n",
      "          'better': 1,\n",
      "          'wordof': 1,\n",
      "          'live': 1,\n",
      "          'building': 1,\n",
      "          'personalities': 1,\n",
      "          'entire': 1,\n",
      "          'taks': 1,\n",
      "          'place': 1,\n",
      "          'settings': 1,\n",
      "          'uniformly': 1,\n",
      "          'ugly': 1,\n",
      "          'sterile': 1,\n",
      "          'charmless': 1,\n",
      "          'rooms': 1,\n",
      "          'corridors': 1,\n",
      "          'postindustrial': 1,\n",
      "          'complex': 1,\n",
      "          'photographed': 1,\n",
      "          'look': 1,\n",
      "          'dim': 1,\n",
      "          'dingy': 1,\n",
      "          'possible': 1,\n",
      "          'nits': 1,\n",
      "          'vivid': 1,\n",
      "          'setting': 1,\n",
      "          'unappealing': 1,\n",
      "          'especially': 1,\n",
      "          'monotonous': 1,\n",
      "          'hiss': 1,\n",
      "          'falling': 1,\n",
      "          'rain': 1,\n",
      "          'gurgle': 1,\n",
      "          'drainage': 1,\n",
      "          'pipes': 1,\n",
      "          'directly': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'repairman': 1,\n",
      "          'investigating': 1,\n",
      "          'leak': 1,\n",
      "          'leaves': 1,\n",
      "          'small': 1,\n",
      "          'floor': 1,\n",
      "          'mans': 1,\n",
      "          'ceiling': 1,\n",
      "          'holesymbol': 1,\n",
      "          'solitary': 1,\n",
      "          'lonely': 1,\n",
      "          'compartmented': 1,\n",
      "          'livesallows': 1,\n",
      "          'interact': 1,\n",
      "          'unusual': 1,\n",
      "          'mostly': 1,\n",
      "          'nonverbal': 1,\n",
      "          'ways': 1,\n",
      "          'nexample': 1,\n",
      "          'suffering': 1,\n",
      "          'assumeeverything': 1,\n",
      "          'obscure': 1,\n",
      "          'vomits': 1,\n",
      "          'wandering': 1,\n",
      "          'accidentally': 1,\n",
      "          'puts': 1,\n",
      "          'hand': 1,\n",
      "          'vomit': 1,\n",
      "          'cleans': 1,\n",
      "          'passes': 1,\n",
      "          'meaningful': 1,\n",
      "          'communication': 1,\n",
      "          'nand': 1,\n",
      "          'romance': 1,\n",
      "          'dead': 1,\n",
      "          'nmuch': 1,\n",
      "          'even': 1,\n",
      "          'focus': 1,\n",
      "          'interactions': 1,\n",
      "          'nthere': 1,\n",
      "          'almost': 1,\n",
      "          'dialogue': 1,\n",
      "          'learn': 1,\n",
      "          'next': 1,\n",
      "          'nthey': 1,\n",
      "          'ciphers': 1,\n",
      "          'treated': 1,\n",
      "          'takes': 1,\n",
      "          'witness': 1,\n",
      "          'miserable': 1,\n",
      "          'watch': 1,\n",
      "          'instance': 1,\n",
      "          'boils': 1,\n",
      "          'pours': 1,\n",
      "          'onto': 1,\n",
      "          'eats': 1,\n",
      "          'n': 1,\n",
      "          'fascinating': 1,\n",
      "          'sounds': 1,\n",
      "          'noffered': 1,\n",
      "          'counterpointor': 1,\n",
      "          'reliefto': 1,\n",
      "          'dreary': 1,\n",
      "          'sequences': 1,\n",
      "          'musical': 1,\n",
      "          'numbers': 1,\n",
      "          'lipsynchs': 1,\n",
      "          'pop': 1,\n",
      "          'popular': 1,\n",
      "          'im': 1,\n",
      "          'told': 1,\n",
      "          '1950s': 1,\n",
      "          'china': 1,\n",
      "          'nshe': 1,\n",
      "          'prances': 1,\n",
      "          'grimy': 1,\n",
      "          'hallways': 1,\n",
      "          'grungy': 1,\n",
      "          'stairwells': 1,\n",
      "          'incronguously': 1,\n",
      "          'lit': 1,\n",
      "          'cheerfully': 1,\n",
      "          'spotlights': 1,\n",
      "          'nsometimes': 1,\n",
      "          'joined': 1,\n",
      "          'nthese': 1,\n",
      "          'scenes': 1,\n",
      "          'presumably': 1,\n",
      "          'intended': 1,\n",
      "          'fanciful': 1,\n",
      "          'sharply': 1,\n",
      "          'contrasting': 1,\n",
      "          'dreariness': 1,\n",
      "          'reality': 1,\n",
      "          'fail': 1,\n",
      "          'nwhen': 1,\n",
      "          'dance': 1,\n",
      "          'seems': 1,\n",
      "          'halfhearted': 1,\n",
      "          'listless': 1,\n",
      "          'nastaire': 1,\n",
      "          'rogers': 1,\n",
      "          'neven': 1,\n",
      "          'imagination': 1,\n",
      "          'numb': 1,\n",
      "          'weary': 1,\n",
      "          'boring': 1,\n",
      "          'part': 1,\n",
      "          'collection': 1,\n",
      "          '2000': 1,\n",
      "          'group': 1,\n",
      "          'films': 1,\n",
      "          'commissioned': 1,\n",
      "          'french': 1,\n",
      "          'tv': 1,\n",
      "          'station': 1,\n",
      "          'la': 1,\n",
      "          'sept': 1,\n",
      "          'arte': 1,\n",
      "          'subject': 1,\n",
      "          'nothers': 1,\n",
      "          'include': 1,\n",
      "          'canadas': 1,\n",
      "          'last': 1,\n",
      "          'night': 1,\n",
      "          'brazils': 1,\n",
      "          'midnight': 1,\n",
      "          'american': 1,\n",
      "          'hal': 1,\n",
      "          'hartleys': 1,\n",
      "          'seen': 1,\n",
      "          'infinitely': 1,\n",
      "          'superior': 1,\n",
      "          'taiwanese': 1,\n",
      "          'entry': 1,\n",
      "          'nwitty': 1,\n",
      "          'energetic': 1,\n",
      "          'humane': 1,\n",
      "          'makes': 1,\n",
      "          'seem': 1,\n",
      "          'ahem': 1,\n",
      "          'empty': 1,\n",
      "          'namerican': 1,\n",
      "          'try': 1,\n",
      "          'disguise': 1,\n",
      "          'lack': 1,\n",
      "          'content': 1,\n",
      "          'flashy': 1,\n",
      "          'movements': 1,\n",
      "          'cuts': 1,\n",
      "          'superficial': 1,\n",
      "          'emotions': 1,\n",
      "          'nforeign': 1,\n",
      "          'point': 1,\n",
      "          'camera': 1,\n",
      "          'something': 1,\n",
      "          'minimal': 1,\n",
      "          'interest': 1,\n",
      "          'unbelievably': 1,\n",
      "          'periods': 1,\n",
      "          'call': 1,\n",
      "          'art': 1,\n",
      "          'selfevidently': 1,\n",
      "          'director': 1,\n",
      "          'wants': 1,\n",
      "          'audience': 1,\n",
      "          'share': 1,\n",
      "          'succeeds': 1,\n",
      "          'nperhaps': 1,\n",
      "          'dares': 1,\n",
      "          'enjoy': 1,\n",
      "          'despite': 1,\n",
      "          'best': 1,\n",
      "          'attempts': 1,\n",
      "          'ensure': 1,\n",
      "          'dont': 1,\n",
      "          'wasnt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'lawrence': 6,\n",
      "          'martin': 5,\n",
      "          'big': 5,\n",
      "          'woman': 5,\n",
      "          'fat': 4,\n",
      "          'coma': 4,\n",
      "          'put': 3,\n",
      "          'nyou': 3,\n",
      "          'plays': 3,\n",
      "          'naughty': 3,\n",
      "          'nthe': 3,\n",
      "          'momma': 3,\n",
      "          'nfat': 3,\n",
      "          'happens': 2,\n",
      "          'suit': 2,\n",
      "          'life': 2,\n",
      "          'get': 2,\n",
      "          'mommas': 2,\n",
      "          'house': 2,\n",
      "          'fbi': 2,\n",
      "          'man': 2,\n",
      "          'jail': 2,\n",
      "          'movie': 2,\n",
      "          'large': 2,\n",
      "          'nand': 2,\n",
      "          'comedy': 2,\n",
      "          'one': 2,\n",
      "          'even': 2,\n",
      "          'board': 2,\n",
      "          'work': 2,\n",
      "          'real': 1,\n",
      "          'comedian': 1,\n",
      "          'thought': 1,\n",
      "          'getting': 1,\n",
      "          'numerous': 1,\n",
      "          'layers': 1,\n",
      "          'heavy': 1,\n",
      "          'clothing': 1,\n",
      "          'went': 1,\n",
      "          'jogging': 1,\n",
      "          '100': 1,\n",
      "          'degree': 1,\n",
      "          'heat': 1,\n",
      "          'ending': 1,\n",
      "          'nso': 1,\n",
      "          'movies': 1,\n",
      "          'audience': 1,\n",
      "          'nin': 1,\n",
      "          'agent': 1,\n",
      "          'whos': 1,\n",
      "          'master': 1,\n",
      "          'disguises': 1,\n",
      "          'nwhen': 1,\n",
      "          'escapes': 1,\n",
      "          'seeks': 1,\n",
      "          'former': 1,\n",
      "          'girlfriend': 1,\n",
      "          'sexy': 1,\n",
      "          'nia': 1,\n",
      "          'long': 1,\n",
      "          'thing': 1,\n",
      "          'worth': 1,\n",
      "          'looking': 1,\n",
      "          'flees': 1,\n",
      "          'georgia': 1,\n",
      "          'stay': 1,\n",
      "          'rather': 1,\n",
      "          'southern': 1,\n",
      "          'aunt': 1,\n",
      "          'ella': 1,\n",
      "          'mitchell': 1,\n",
      "          'follows': 1,\n",
      "          'order': 1,\n",
      "          'recover': 1,\n",
      "          'sum': 1,\n",
      "          'money': 1,\n",
      "          'stolen': 1,\n",
      "          'bank': 1,\n",
      "          'robbery': 1,\n",
      "          'sent': 1,\n",
      "          'nhowever': 1,\n",
      "          'called': 1,\n",
      "          'away': 1,\n",
      "          'emergency': 1,\n",
      "          'nsensing': 1,\n",
      "          'could': 1,\n",
      "          'lose': 1,\n",
      "          'chance': 1,\n",
      "          'capture': 1,\n",
      "          'criminal': 1,\n",
      "          'goes': 1,\n",
      "          'undercover': 1,\n",
      "          'let': 1,\n",
      "          'begin': 1,\n",
      "          'nbig': 1,\n",
      "          'definition': 1,\n",
      "          'gimmick': 1,\n",
      "          'ever': 1,\n",
      "          'plot': 1,\n",
      "          'basically': 1,\n",
      "          'summed': 1,\n",
      "          'dresses': 1,\n",
      "          'description': 1,\n",
      "          'wordy': 1,\n",
      "          'see': 1,\n",
      "          'script': 1,\n",
      "          'plotted': 1,\n",
      "          'chalkboard': 1,\n",
      "          'lawrencefat': 1,\n",
      "          'middle': 1,\n",
      "          'circle': 1,\n",
      "          'around': 1,\n",
      "          'sorts': 1,\n",
      "          'clich': 1,\n",
      "          'humorous': 1,\n",
      "          'situations': 1,\n",
      "          'pointing': 1,\n",
      "          'basketball': 1,\n",
      "          'takes': 1,\n",
      "          'dump': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'nwell': 1,\n",
      "          'left': 1,\n",
      "          'nmovie': 1,\n",
      "          'critic': 1,\n",
      "          'slips': 1,\n",
      "          'npaul': 1,\n",
      "          'giamatti': 1,\n",
      "          'private': 1,\n",
      "          'parts': 1,\n",
      "          'negotiator': 1,\n",
      "          'lawrences': 1,\n",
      "          'partner': 1,\n",
      "          'much': 1,\n",
      "          'enjoy': 1,\n",
      "          'cant': 1,\n",
      "          'inject': 1,\n",
      "          'lifeless': 1,\n",
      "          'nhell': 1,\n",
      "          'greatest': 1,\n",
      "          'performers': 1,\n",
      "          'planet': 1,\n",
      "          'couldnt': 1,\n",
      "          'make': 1,\n",
      "          'material': 1,\n",
      "          'nits': 1,\n",
      "          'awful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'food': 5,\n",
      "          'simply': 4,\n",
      "          'irresistible': 4,\n",
      "          'gellar': 4,\n",
      "          'film': 4,\n",
      "          'got': 4,\n",
      "          'like': 3,\n",
      "          'sarah': 3,\n",
      "          'michelle': 3,\n",
      "          'amanda': 3,\n",
      "          'restaurant': 3,\n",
      "          'crab': 3,\n",
      "          'certainly': 3,\n",
      "          'characters': 3,\n",
      "          'romantic': 2,\n",
      "          'often': 2,\n",
      "          'time': 2,\n",
      "          'runs': 2,\n",
      "          'struggling': 2,\n",
      "          'man': 2,\n",
      "          'tom': 2,\n",
      "          'sean': 2,\n",
      "          'patrick': 2,\n",
      "          'flanery': 2,\n",
      "          'somehow': 2,\n",
      "          'good': 2,\n",
      "          'nand': 2,\n",
      "          'magical': 2,\n",
      "          'really': 2,\n",
      "          'minutes': 2,\n",
      "          'scenes': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'point': 2,\n",
      "          'scene': 2,\n",
      "          'checked': 2,\n",
      "          'blatantly': 1,\n",
      "          'borrowing': 1,\n",
      "          'elements': 1,\n",
      "          '1993s': 1,\n",
      "          'water': 1,\n",
      "          'chocolate': 1,\n",
      "          '1991s': 1,\n",
      "          'butchers': 1,\n",
      "          'wife': 1,\n",
      "          'attempts': 1,\n",
      "          'whimsical': 1,\n",
      "          'comedy': 1,\n",
      "          'comes': 1,\n",
      "          'laughable': 1,\n",
      "          'leaving': 1,\n",
      "          'wonder': 1,\n",
      "          'rising': 1,\n",
      "          'star': 1,\n",
      "          'v': 1,\n",
      "          'buffy': 1,\n",
      "          'vampire': 1,\n",
      "          'slayer': 1,\n",
      "          'would': 1,\n",
      "          'choose': 1,\n",
      "          'obviously': 1,\n",
      "          'inept': 1,\n",
      "          'project': 1,\n",
      "          'waste': 1,\n",
      "          'nthings': 1,\n",
      "          'get': 1,\n",
      "          'bad': 1,\n",
      "          'start': 1,\n",
      "          'right': 1,\n",
      "          'onset': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'late': 1,\n",
      "          'familys': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'mystery': 1,\n",
      "          'forces': 1,\n",
      "          'bushel': 1,\n",
      "          'crabs': 1,\n",
      "          'vansihes': 1,\n",
      "          'thin': 1,\n",
      "          'air': 1,\n",
      "          'nwhile': 1,\n",
      "          'shopping': 1,\n",
      "          'also': 1,\n",
      "          'meets': 1,\n",
      "          'charming': 1,\n",
      "          'handsome': 1,\n",
      "          'happens': 1,\n",
      "          'planning': 1,\n",
      "          'ritzy': 1,\n",
      "          'department': 1,\n",
      "          'store': 1,\n",
      "          'works': 1,\n",
      "          'later': 1,\n",
      "          'decides': 1,\n",
      "          'drop': 1,\n",
      "          'dive': 1,\n",
      "          'called': 1,\n",
      "          'southern': 1,\n",
      "          'cross': 1,\n",
      "          'lunch': 1,\n",
      "          'makes': 1,\n",
      "          'delicious': 1,\n",
      "          'dish': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'known': 1,\n",
      "          'chef': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'finds': 1,\n",
      "          'edge': 1,\n",
      "          'foreclosure': 1,\n",
      "          'rejuvenate': 1,\n",
      "          'life': 1,\n",
      "          'customer': 1,\n",
      "          'begin': 1,\n",
      "          'swarm': 1,\n",
      "          'strangely': 1,\n",
      "          'causes': 1,\n",
      "          'everyone': 1,\n",
      "          'immediate': 1,\n",
      "          'jubilation': 1,\n",
      "          'hits': 1,\n",
      "          'mouths': 1,\n",
      "          'nare': 1,\n",
      "          'destined': 1,\n",
      "          'together': 1,\n",
      "          'truly': 1,\n",
      "          'exactly': 1,\n",
      "          'going': 1,\n",
      "          'making': 1,\n",
      "          'ndoes': 1,\n",
      "          'anything': 1,\n",
      "          'pesky': 1,\n",
      "          'sits': 1,\n",
      "          'shelf': 1,\n",
      "          'kitchen': 1,\n",
      "          'assisting': 1,\n",
      "          'preparation': 1,\n",
      "          'n': 1,\n",
      "          'ridiculous': 1,\n",
      "          'plain': 1,\n",
      "          'goofy': 1,\n",
      "          'fantasy': 1,\n",
      "          'thats': 1,\n",
      "          'flimsy': 1,\n",
      "          'slice': 1,\n",
      "          'bologna': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'one': 1,\n",
      "          'jokethat': 1,\n",
      "          'people': 1,\n",
      "          'eat': 1,\n",
      "          'taken': 1,\n",
      "          'aback': 1,\n",
      "          'unusual': 1,\n",
      "          'waysand': 1,\n",
      "          'recycles': 1,\n",
      "          'reached': 1,\n",
      "          'appropriate': 1,\n",
      "          'running': 1,\n",
      "          '95': 1,\n",
      "          'nadd': 1,\n",
      "          'music': 1,\n",
      "          'montage': 1,\n",
      "          'every': 1,\n",
      "          'ten': 1,\n",
      "          'actually': 1,\n",
      "          'best': 1,\n",
      "          'tells': 1,\n",
      "          'something': 1,\n",
      "          'youve': 1,\n",
      "          'utterly': 1,\n",
      "          'empty': 1,\n",
      "          'necessarily': 1,\n",
      "          'boring': 1,\n",
      "          'excursion': 1,\n",
      "          'cast': 1,\n",
      "          'fairly': 1,\n",
      "          'supporting': 1,\n",
      "          'interesting': 1,\n",
      "          'npatricia': 1,\n",
      "          'clarkson': 1,\n",
      "          '1998s': 1,\n",
      "          'high': 1,\n",
      "          'art': 1,\n",
      "          'played': 1,\n",
      "          'druggedout': 1,\n",
      "          'lesbian': 1,\n",
      "          'standout': 1,\n",
      "          'toms': 1,\n",
      "          'colleague': 1,\n",
      "          'thankfully': 1,\n",
      "          'given': 1,\n",
      "          'funny': 1,\n",
      "          'lines': 1,\n",
      "          'dialogue': 1,\n",
      "          'nalso': 1,\n",
      "          'note': 1,\n",
      "          'larry': 1,\n",
      "          'gilliard': 1,\n",
      "          'jr': 1,\n",
      "          'amandas': 1,\n",
      "          'cooking': 1,\n",
      "          'assistant': 1,\n",
      "          'buddy': 1,\n",
      "          'allowed': 1,\n",
      "          'create': 1,\n",
      "          'seemingly': 1,\n",
      "          'full': 1,\n",
      "          'character': 1,\n",
      "          'handful': 1,\n",
      "          'nof': 1,\n",
      "          'main': 1,\n",
      "          'stars': 1,\n",
      "          'fine': 1,\n",
      "          'look': 1,\n",
      "          'shes': 1,\n",
      "          'unmistakably': 1,\n",
      "          'clumsy': 1,\n",
      "          'material': 1,\n",
      "          'plans': 1,\n",
      "          'keeping': 1,\n",
      "          'career': 1,\n",
      "          'future': 1,\n",
      "          'pick': 1,\n",
      "          'better': 1,\n",
      "          'projects': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'exact': 1,\n",
      "          'opposite': 1,\n",
      "          'deprophesized': 1,\n",
      "          'title': 1,\n",
      "          'began': 1,\n",
      "          'float': 1,\n",
      "          'midair': 1,\n",
      "          'unamusing': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'repeated': 1,\n",
      "          'stupid': 1,\n",
      "          'last': 1,\n",
      "          'mind': 1,\n",
      "          'romance': 1,\n",
      "          'nwhen': 1,\n",
      "          'think': 1,\n",
      "          'hindsight': 1,\n",
      "          'first': 1,\n",
      "          'action': 1,\n",
      "          'crawl': 1,\n",
      "          'tables': 1,\n",
      "          'looking': 1,\n",
      "          'runaway': 1,\n",
      "          'mechanical': 1,\n",
      "          'nnow': 1,\n",
      "          'id': 1,\n",
      "          'call': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'alien': 15,\n",
      "          'film': 9,\n",
      "          'one': 9,\n",
      "          'ripley': 5,\n",
      "          'resurrection': 4,\n",
      "          '3': 3,\n",
      "          'ni': 3,\n",
      "          'nso': 3,\n",
      "          'bag': 3,\n",
      "          'lollies': 3,\n",
      "          'scene': 3,\n",
      "          'even': 2,\n",
      "          'seen': 2,\n",
      "          'aliens': 2,\n",
      "          'means': 2,\n",
      "          'take': 2,\n",
      "          'worth': 2,\n",
      "          'much': 2,\n",
      "          'plot': 2,\n",
      "          'minutes': 2,\n",
      "          'every': 2,\n",
      "          'attempts': 2,\n",
      "          'inside': 2,\n",
      "          'nin': 2,\n",
      "          'two': 2,\n",
      "          'able': 2,\n",
      "          'someone': 2,\n",
      "          'well': 2,\n",
      "          'would': 2,\n",
      "          'little': 2,\n",
      "          'youre': 2,\n",
      "          'bad': 2,\n",
      "          'really': 2,\n",
      "          'good': 2,\n",
      "          'putting': 2,\n",
      "          'way': 2,\n",
      "          'gore': 2,\n",
      "          'hand': 2,\n",
      "          'case': 2,\n",
      "          'movie': 2,\n",
      "          'turned': 2,\n",
      "          'wont': 1,\n",
      "          'pretend': 1,\n",
      "          'films': 1,\n",
      "          'saw': 1,\n",
      "          'glimpses': 1,\n",
      "          'fragments': 1,\n",
      "          'actually': 1,\n",
      "          'sat': 1,\n",
      "          'watched': 1,\n",
      "          'opinion': 1,\n",
      "          'unbiased': 1,\n",
      "          'impartial': 1,\n",
      "          'perspective': 1,\n",
      "          'large': 1,\n",
      "          'munching': 1,\n",
      "          'hard': 1,\n",
      "          'days': 1,\n",
      "          'work': 1,\n",
      "          'didnt': 1,\n",
      "          'dislike': 1,\n",
      "          'awful': 1,\n",
      "          'acting': 1,\n",
      "          'average': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'got': 1,\n",
      "          'tiresome': 1,\n",
      "          '5': 1,\n",
      "          'painful': 1,\n",
      "          'viewing': 1,\n",
      "          'also': 1,\n",
      "          'fact': 1,\n",
      "          'tedious': 1,\n",
      "          'ingredient': 1,\n",
      "          'thrown': 1,\n",
      "          'give': 1,\n",
      "          'pointless': 1,\n",
      "          'dribble': 1,\n",
      "          'meaning': 1,\n",
      "          'nsigourney': 1,\n",
      "          'weaver': 1,\n",
      "          'whos': 1,\n",
      "          'role': 1,\n",
      "          'earned': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'nomination': 1,\n",
      "          'plays': 1,\n",
      "          'character': 1,\n",
      "          'died': 1,\n",
      "          'fighting': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'scum': 1,\n",
      "          '200': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'scientists': 1,\n",
      "          'use': 1,\n",
      "          'sample': 1,\n",
      "          'blood': 1,\n",
      "          'found': 1,\n",
      "          'site': 1,\n",
      "          'death': 1,\n",
      "          'recreate': 1,\n",
      "          'including': 1,\n",
      "          'stuck': 1,\n",
      "          'time': 1,\n",
      "          'remove': 1,\n",
      "          'body': 1,\n",
      "          'separate': 1,\n",
      "          'yet': 1,\n",
      "          'completely': 1,\n",
      "          'human': 1,\n",
      "          'possessing': 1,\n",
      "          'strange': 1,\n",
      "          'amounts': 1,\n",
      "          'strength': 1,\n",
      "          'withhold': 1,\n",
      "          'greater': 1,\n",
      "          'pain': 1,\n",
      "          'normal': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'explain': 1,\n",
      "          'exactly': 1,\n",
      "          'ignore': 1,\n",
      "          'move': 1,\n",
      "          'nwhy': 1,\n",
      "          'ask': 1,\n",
      "          'recreated': 1,\n",
      "          'nwell': 1,\n",
      "          'smart': 1,\n",
      "          'lab': 1,\n",
      "          'researchers': 1,\n",
      "          'believed': 1,\n",
      "          'discover': 1,\n",
      "          'many': 1,\n",
      "          'advancements': 1,\n",
      "          'science': 1,\n",
      "          'studying': 1,\n",
      "          'creature': 1,\n",
      "          'nthese': 1,\n",
      "          'people': 1,\n",
      "          'said': 1,\n",
      "          'could': 1,\n",
      "          'control': 1,\n",
      "          'danger': 1,\n",
      "          'research': 1,\n",
      "          'nthey': 1,\n",
      "          'yawn': 1,\n",
      "          'wrong': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'genius': 1,\n",
      "          'figure': 1,\n",
      "          'rest': 1,\n",
      "          'continuous': 1,\n",
      "          'cat': 1,\n",
      "          'mouse': 1,\n",
      "          'chase': 1,\n",
      "          'humans': 1,\n",
      "          'die': 1,\n",
      "          'open': 1,\n",
      "          'mouths': 1,\n",
      "          'possible': 1,\n",
      "          'occasion': 1,\n",
      "          'show': 1,\n",
      "          'frightfully': 1,\n",
      "          'scary': 1,\n",
      "          'unflossed': 1,\n",
      "          'teeth': 1,\n",
      "          'ntheres': 1,\n",
      "          'saying': 1,\n",
      "          'goes': 1,\n",
      "          'something': 1,\n",
      "          'like': 1,\n",
      "          'going': 1,\n",
      "          'make': 1,\n",
      "          'plenty': 1,\n",
      "          'disappointing': 1,\n",
      "          'underachieving': 1,\n",
      "          'movies': 1,\n",
      "          'ones': 1,\n",
      "          'bother': 1,\n",
      "          'nalien': 1,\n",
      "          'example': 1,\n",
      "          'gets': 1,\n",
      "          'nose': 1,\n",
      "          'discouraging': 1,\n",
      "          'experience': 1,\n",
      "          'nthere': 1,\n",
      "          'describe': 1,\n",
      "          'australian': 1,\n",
      "          'rating': 1,\n",
      "          'given': 1,\n",
      "          'unnecessary': 1,\n",
      "          'repulsive': 1,\n",
      "          'distract': 1,\n",
      "          'us': 1,\n",
      "          'wanderingbutnotgoinganywhere': 1,\n",
      "          'stomach': 1,\n",
      "          'churned': 1,\n",
      "          'witnessed': 1,\n",
      "          'mawkish': 1,\n",
      "          'looking': 1,\n",
      "          'put': 1,\n",
      "          'characters': 1,\n",
      "          'head': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'literally': 1,\n",
      "          'ripped': 1,\n",
      "          'face': 1,\n",
      "          'nanother': 1,\n",
      "          'featured': 1,\n",
      "          'sticking': 1,\n",
      "          'knife': 1,\n",
      "          'impress': 1,\n",
      "          'talking': 1,\n",
      "          'nfair': 1,\n",
      "          'enough': 1,\n",
      "          'horror': 1,\n",
      "          'bared': 1,\n",
      "          'significance': 1,\n",
      "          'story': 1,\n",
      "          'unfortunately': 1,\n",
      "          'sort': 1,\n",
      "          'bizarre': 1,\n",
      "          'inexcusable': 1,\n",
      "          'nif': 1,\n",
      "          'think': 1,\n",
      "          'im': 1,\n",
      "          'struggling': 1,\n",
      "          'find': 1,\n",
      "          'aspect': 1,\n",
      "          'thought': 1,\n",
      "          'right': 1,\n",
      "          'none': 1,\n",
      "          'exciting': 1,\n",
      "          'credit': 1,\n",
      "          'part': 1,\n",
      "          'remotely': 1,\n",
      "          'seeing': 1,\n",
      "          'chases': 1,\n",
      "          'men': 1,\n",
      "          'cripple': 1,\n",
      "          'tall': 1,\n",
      "          'ladder': 1,\n",
      "          'interesting': 1,\n",
      "          'results': 1,\n",
      "          'nbut': 1,\n",
      "          'course': 1,\n",
      "          'thrilling': 1,\n",
      "          'problem': 1,\n",
      "          'returning': 1,\n",
      "          'pathetically': 1,\n",
      "          'low': 1,\n",
      "          'standard': 1,\n",
      "          'ends': 1,\n",
      "          'crashing': 1,\n",
      "          'shores': 1,\n",
      "          'dullness': 1,\n",
      "          'often': 1,\n",
      "          'japanese': 1,\n",
      "          'kamikaze': 1,\n",
      "          'jet': 1,\n",
      "          'fighters': 1,\n",
      "          'fall': 1,\n",
      "          'skis': 1,\n",
      "          'liners': 1,\n",
      "          'come': 1,\n",
      "          'earth': 1,\n",
      "          'man': 1,\n",
      "          'shit': 1,\n",
      "          'hole': 1,\n",
      "          'primary': 1,\n",
      "          'mans': 1,\n",
      "          'strategic': 1,\n",
      "          'attack': 1,\n",
      "          'bounce': 1,\n",
      "          'bullets': 1,\n",
      "          'walls': 1,\n",
      "          'hit': 1,\n",
      "          'opponent': 1,\n",
      "          'wonder': 1,\n",
      "          'clumsy': 1,\n",
      "          'noh': 1,\n",
      "          'wondering': 1,\n",
      "          'less': 1,\n",
      "          'enjoy': 1,\n",
      "          'eat': 1,\n",
      "          'gone': 1,\n",
      "          '15': 1,\n",
      "          'however': 1,\n",
      "          'empty': 1,\n",
      "          'still': 1,\n",
      "          'long': 1,\n",
      "          'ahead': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'pearl': 4,\n",
      "          'harbor': 4,\n",
      "          'big': 3,\n",
      "          'rafe': 2,\n",
      "          'join': 2,\n",
      "          'love': 2,\n",
      "          'japanese': 2,\n",
      "          'attack': 2,\n",
      "          'movies': 2,\n",
      "          'nit': 2,\n",
      "          'attempt': 2,\n",
      "          'setting': 2,\n",
      "          'one': 2,\n",
      "          'war': 2,\n",
      "          'viewers': 2,\n",
      "          'synopsis': 1,\n",
      "          'lifelong': 1,\n",
      "          'friends': 1,\n",
      "          'affleck': 1,\n",
      "          'danny': 1,\n",
      "          'hartnett': 1,\n",
      "          'us': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'stationed': 1,\n",
      "          'hawaii': 1,\n",
      "          'nrafe': 1,\n",
      "          'goes': 1,\n",
      "          'england': 1,\n",
      "          'fight': 1,\n",
      "          'alongside': 1,\n",
      "          'british': 1,\n",
      "          'pilots': 1,\n",
      "          'seemingly': 1,\n",
      "          'killed': 1,\n",
      "          'action': 1,\n",
      "          'ndanny': 1,\n",
      "          'falls': 1,\n",
      "          'rafes': 1,\n",
      "          'girlfriend': 1,\n",
      "          'evelyn': 1,\n",
      "          'beckinsale': 1,\n",
      "          'survives': 1,\n",
      "          'returns': 1,\n",
      "          'confront': 1,\n",
      "          'former': 1,\n",
      "          'friend': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'sneak': 1,\n",
      "          'imminent': 1,\n",
      "          'nreview': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'product': 1,\n",
      "          'rather': 1,\n",
      "          'art': 1,\n",
      "          'little': 1,\n",
      "          'crasslycalculated': 1,\n",
      "          'woo': 1,\n",
      "          'masses': 1,\n",
      "          'enticing': 1,\n",
      "          'stars': 1,\n",
      "          'effects': 1,\n",
      "          'heart': 1,\n",
      "          'difficult': 1,\n",
      "          'criticise': 1,\n",
      "          'actors': 1,\n",
      "          'everything': 1,\n",
      "          'movie': 1,\n",
      "          'demands': 1,\n",
      "          'nsadly': 1,\n",
      "          'amounts': 1,\n",
      "          'barely': 1,\n",
      "          'reciting': 1,\n",
      "          'dialogue': 1,\n",
      "          'sheer': 1,\n",
      "          'banality': 1,\n",
      "          'makes': 1,\n",
      "          'eager': 1,\n",
      "          'see': 1,\n",
      "          'script': 1,\n",
      "          'randall': 1,\n",
      "          'wallace': 1,\n",
      "          'wrote': 1,\n",
      "          'right': 1,\n",
      "          'hand': 1,\n",
      "          'time': 1,\n",
      "          'writing': 1,\n",
      "          'left': 1,\n",
      "          'nthe': 1,\n",
      "          'plot': 1,\n",
      "          'pure': 1,\n",
      "          'cliche': 1,\n",
      "          'wartime': 1,\n",
      "          'simply': 1,\n",
      "          'convenient': 1,\n",
      "          'backdrop': 1,\n",
      "          'nthere': 1,\n",
      "          'genuine': 1,\n",
      "          'exploration': 1,\n",
      "          'meant': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'insight': 1,\n",
      "          'vital': 1,\n",
      "          'role': 1,\n",
      "          'inciting': 1,\n",
      "          'country': 1,\n",
      "          'world': 1,\n",
      "          'ii': 1,\n",
      "          'ninstead': 1,\n",
      "          'assemblyline': 1,\n",
      "          'triangle': 1,\n",
      "          'empty': 1,\n",
      "          'patriotic': 1,\n",
      "          'rhetoric': 1,\n",
      "          'laughable': 1,\n",
      "          'placate': 1,\n",
      "          'via': 1,\n",
      "          'inclusion': 1,\n",
      "          'reticent': 1,\n",
      "          'imperial': 1,\n",
      "          'commanders': 1,\n",
      "          'intones': 1,\n",
      "          'fear': 1,\n",
      "          'done': 1,\n",
      "          'awaken': 1,\n",
      "          'sleeping': 1,\n",
      "          'giant': 1,\n",
      "          'nearly': 1,\n",
      "          'fell': 1,\n",
      "          'seat': 1,\n",
      "          'nto': 1,\n",
      "          'credit': 1,\n",
      "          'include': 1,\n",
      "          'fantastic': 1,\n",
      "          'portrayal': 1,\n",
      "          'exciting': 1,\n",
      "          'dizzying': 1,\n",
      "          'hour': 1,\n",
      "          'plunges': 1,\n",
      "          'nif': 1,\n",
      "          'remaining': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'crafted': 1,\n",
      "          'skill': 1,\n",
      "          'perhaps': 1,\n",
      "          'memorial': 1,\n",
      "          'day': 1,\n",
      "          'nonevent': 1,\n",
      "          'would': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'arkin': 7,\n",
      "          'film': 4,\n",
      "          'morse': 4,\n",
      "          'would': 3,\n",
      "          'teacher': 3,\n",
      "          'doesnt': 3,\n",
      "          'like': 2,\n",
      "          'outset': 2,\n",
      "          'two': 2,\n",
      "          'characters': 2,\n",
      "          'st': 2,\n",
      "          'nelsewhere': 2,\n",
      "          'ni': 2,\n",
      "          'nif': 2,\n",
      "          'plays': 2,\n",
      "          'somewhat': 2,\n",
      "          'good': 2,\n",
      "          'basketball': 2,\n",
      "          'drifter': 2,\n",
      "          'friendship': 2,\n",
      "          'morses': 2,\n",
      "          'major': 2,\n",
      "          'dialogue': 2,\n",
      "          'sure': 2,\n",
      "          'admire': 2,\n",
      "          'arkins': 2,\n",
      "          'woman': 2,\n",
      "          'nit': 2,\n",
      "          'begins': 2,\n",
      "          'attentions': 2,\n",
      "          'realize': 2,\n",
      "          'almost': 2,\n",
      "          'nthe': 2,\n",
      "          'least': 2,\n",
      "          'shallow': 2,\n",
      "          'make': 2,\n",
      "          'inclined': 1,\n",
      "          'main': 1,\n",
      "          'involved': 1,\n",
      "          'fine': 1,\n",
      "          'television': 1,\n",
      "          'drama': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'understood': 1,\n",
      "          'directorscreenwriter': 1,\n",
      "          'written': 1,\n",
      "          'show': 1,\n",
      "          'occasion': 1,\n",
      "          'also': 1,\n",
      "          'sorry': 1,\n",
      "          'report': 1,\n",
      "          'results': 1,\n",
      "          'expectations': 1,\n",
      "          'satisfactory': 1,\n",
      "          'list': 1,\n",
      "          'reason': 1,\n",
      "          'nbut': 1,\n",
      "          'getting': 1,\n",
      "          'ahead': 1,\n",
      "          'besides': 1,\n",
      "          'immediately': 1,\n",
      "          'clear': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'nadam': 1,\n",
      "          'gradeschool': 1,\n",
      "          'sardonic': 1,\n",
      "          'cynical': 1,\n",
      "          'abrasive': 1,\n",
      "          'nhe': 1,\n",
      "          'spends': 1,\n",
      "          'lunches': 1,\n",
      "          'playing': 1,\n",
      "          'nearby': 1,\n",
      "          'court': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'meets': 1,\n",
      "          'david': 1,\n",
      "          'jack': 1,\n",
      "          'morrison': 1,\n",
      "          'park': 1,\n",
      "          'inveigles': 1,\n",
      "          'game': 1,\n",
      "          'oneonone': 1,\n",
      "          'nmorse': 1,\n",
      "          'turns': 1,\n",
      "          'slowly': 1,\n",
      "          'develops': 1,\n",
      "          'respective': 1,\n",
      "          'professions': 1,\n",
      "          'progress': 1,\n",
      "          'screenarkins': 1,\n",
      "          'teaching': 1,\n",
      "          'selling': 1,\n",
      "          'paper': 1,\n",
      "          'flowers': 1,\n",
      "          'passing': 1,\n",
      "          'motorists': 1,\n",
      "          'nso': 1,\n",
      "          'far': 1,\n",
      "          'complaint': 1,\n",
      "          'lack': 1,\n",
      "          'constant': 1,\n",
      "          'intrusion': 1,\n",
      "          'musical': 1,\n",
      "          'soundtrack': 1,\n",
      "          'ngood': 1,\n",
      "          'music': 1,\n",
      "          'replace': 1,\n",
      "          'setting': 1,\n",
      "          'mood': 1,\n",
      "          'telling': 1,\n",
      "          'storyit': 1,\n",
      "          'makes': 1,\n",
      "          'minimalistic': 1,\n",
      "          'technique': 1,\n",
      "          'rarely': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'interrupted': 1,\n",
      "          'introduction': 1,\n",
      "          'fellow': 1,\n",
      "          'long': 1,\n",
      "          'admired': 1,\n",
      "          'afar': 1,\n",
      "          'reticent': 1,\n",
      "          'approach': 1,\n",
      "          'appears': 1,\n",
      "          'enjoys': 1,\n",
      "          'isnt': 1,\n",
      "          'itshe': 1,\n",
      "          'knows': 1,\n",
      "          'nothing': 1,\n",
      "          'past': 1,\n",
      "          'causes': 1,\n",
      "          'friction': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'nuntil': 1,\n",
      "          'vague': 1,\n",
      "          'dissatisfaction': 1,\n",
      "          'conclusion': 1,\n",
      "          'evolve': 1,\n",
      "          'fullfledged': 1,\n",
      "          'failure': 1,\n",
      "          'appeared': 1,\n",
      "          'fairly': 1,\n",
      "          'didnt': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'reveals': 1,\n",
      "          'trying': 1,\n",
      "          'jealous': 1,\n",
      "          'nsomehow': 1,\n",
      "          'made': 1,\n",
      "          'appear': 1,\n",
      "          'fault': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'somehow': 1,\n",
      "          'victorious': 1,\n",
      "          'hes': 1,\n",
      "          'gotten': 1,\n",
      "          'find': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nfrankly': 1,\n",
      "          'dropping': 1,\n",
      "          'spot': 1,\n",
      "          'seemed': 1,\n",
      "          'civilized': 1,\n",
      "          'action': 1,\n",
      "          'could': 1,\n",
      "          'punching': 1,\n",
      "          'mouth': 1,\n",
      "          'nafter': 1,\n",
      "          'childish': 1,\n",
      "          'confrontation': 1,\n",
      "          'end': 1,\n",
      "          'seems': 1,\n",
      "          'natural': 1,\n",
      "          'summarize': 1,\n",
      "          'gripe': 1,\n",
      "          'story': 1,\n",
      "          'spread': 1,\n",
      "          'thin': 1,\n",
      "          'creates': 1,\n",
      "          'semilikable': 1,\n",
      "          'suddenly': 1,\n",
      "          'jerks': 1,\n",
      "          '16yearolds': 1,\n",
      "          'last': 1,\n",
      "          'moment': 1,\n",
      "          'might': 1,\n",
      "          'truetolife': 1,\n",
      "          'people': 1,\n",
      "          'mean': 1,\n",
      "          'dont': 1,\n",
      "          'n': 1,\n",
      "          'navoid': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'martian': 7,\n",
      "          'favourite': 5,\n",
      "          'movie': 5,\n",
      "          'character': 4,\n",
      "          'like': 3,\n",
      "          'entertainment': 3,\n",
      "          'films': 3,\n",
      "          '1994': 3,\n",
      "          'one': 3,\n",
      "          'money': 3,\n",
      "          'never': 3,\n",
      "          'nice': 3,\n",
      "          'guy': 3,\n",
      "          'performance': 3,\n",
      "          'film': 3,\n",
      "          'comedy': 3,\n",
      "          'sidekick': 3,\n",
      "          'funny': 3,\n",
      "          'toilet': 3,\n",
      "          'movies': 2,\n",
      "          'lost': 2,\n",
      "          'comes': 2,\n",
      "          'eye': 2,\n",
      "          'neven': 2,\n",
      "          'ever': 2,\n",
      "          'disney': 2,\n",
      "          'nchristopher': 2,\n",
      "          'lloyd': 2,\n",
      "          'plays': 2,\n",
      "          'v': 2,\n",
      "          'tim': 2,\n",
      "          'ohara': 2,\n",
      "          'daniels': 2,\n",
      "          'soon': 2,\n",
      "          'fix': 2,\n",
      "          'spaceship': 2,\n",
      "          'zoot': 2,\n",
      "          'try': 2,\n",
      "          'good': 2,\n",
      "          'doesnt': 2,\n",
      "          'special': 2,\n",
      "          'seen': 2,\n",
      "          'staple': 2,\n",
      "          'role': 2,\n",
      "          'every': 2,\n",
      "          'nanother': 2,\n",
      "          'unfunny': 2,\n",
      "          'dud': 2,\n",
      "          'even': 2,\n",
      "          'nits': 2,\n",
      "          'humour': 2,\n",
      "          'characters': 2,\n",
      "          'gag': 2,\n",
      "          'fact': 2,\n",
      "          'men': 2,\n",
      "          'work': 2,\n",
      "          'end': 2,\n",
      "          'love': 1,\n",
      "          'ni': 1,\n",
      "          'really': 1,\n",
      "          'nevery': 1,\n",
      "          'time': 1,\n",
      "          'watch': 1,\n",
      "          'great': 1,\n",
      "          'goodfellas': 1,\n",
      "          '1990': 1,\n",
      "          'raiders': 1,\n",
      "          'ark': 1,\n",
      "          '1981': 1,\n",
      "          'tear': 1,\n",
      "          'due': 1,\n",
      "          'awesome': 1,\n",
      "          'talent': 1,\n",
      "          'skill': 1,\n",
      "          'display': 1,\n",
      "          'lower': 1,\n",
      "          'grade': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          '33': 1,\n",
      "          '13': 1,\n",
      "          'ghostbusters': 1,\n",
      "          'ii': 1,\n",
      "          '1988': 1,\n",
      "          'exactly': 1,\n",
      "          'brilliantly': 1,\n",
      "          'well': 1,\n",
      "          'made': 1,\n",
      "          'certainly': 1,\n",
      "          'waste': 1,\n",
      "          'celluloid': 1,\n",
      "          'present': 1,\n",
      "          'value': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'exact': 1,\n",
      "          'opposite': 1,\n",
      "          'hurried': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'acted': 1,\n",
      "          'goal': 1,\n",
      "          'make': 1,\n",
      "          'ndisney': 1,\n",
      "          'since': 1,\n",
      "          'lion': 1,\n",
      "          'king': 1,\n",
      "          'magic': 1,\n",
      "          'touch': 1,\n",
      "          'dross': 1,\n",
      "          'shows': 1,\n",
      "          'far': 1,\n",
      "          'sunk': 1,\n",
      "          'crash': 1,\n",
      "          'lands': 1,\n",
      "          'front': 1,\n",
      "          'reporters': 1,\n",
      "          'car': 1,\n",
      "          'finds': 1,\n",
      "          'home': 1,\n",
      "          'trying': 1,\n",
      "          'recover': 1,\n",
      "          'nalong': 1,\n",
      "          'spacesuit': 1,\n",
      "          'voiced': 1,\n",
      "          'wayne': 1,\n",
      "          'knight': 1,\n",
      "          'must': 1,\n",
      "          'explodes': 1,\n",
      "          'also': 1,\n",
      "          'stop': 1,\n",
      "          'identity': 1,\n",
      "          'revealed': 1,\n",
      "          'public': 1,\n",
      "          'firstly': 1,\n",
      "          'later': 1,\n",
      "          'rival': 1,\n",
      "          'presenter': 1,\n",
      "          'brace': 1,\n",
      "          'channing': 1,\n",
      "          'hurley': 1,\n",
      "          'calling': 1,\n",
      "          'tims': 1,\n",
      "          'uncle': 1,\n",
      "          'martin': 1,\n",
      "          'nlaughter': 1,\n",
      "          'supposed': 1,\n",
      "          'arise': 1,\n",
      "          'comical': 1,\n",
      "          'events': 1,\n",
      "          'nmany': 1,\n",
      "          'bad': 1,\n",
      "          'intentions': 1,\n",
      "          'appear': 1,\n",
      "          'provide': 1,\n",
      "          'nfilled': 1,\n",
      "          'brim': 1,\n",
      "          'wham': 1,\n",
      "          'bang': 1,\n",
      "          'effects': 1,\n",
      "          'offers': 1,\n",
      "          'little': 1,\n",
      "          'candy': 1,\n",
      "          'mugs': 1,\n",
      "          'way': 1,\n",
      "          'entire': 1,\n",
      "          'ive': 1,\n",
      "          'man': 1,\n",
      "          'pull': 1,\n",
      "          'face': 1,\n",
      "          '93': 1,\n",
      "          'minutes': 1,\n",
      "          'njeff': 1,\n",
      "          'useless': 1,\n",
      "          'nhis': 1,\n",
      "          'incredibly': 1,\n",
      "          'lazy': 1,\n",
      "          'although': 1,\n",
      "          'paperthin': 1,\n",
      "          'deserve': 1,\n",
      "          'gives': 1,\n",
      "          'ndarryl': 1,\n",
      "          'hannah': 1,\n",
      "          'looks': 1,\n",
      "          'pretty': 1,\n",
      "          'somewhat': 1,\n",
      "          'erm': 1,\n",
      "          'limited': 1,\n",
      "          'nhurley': 1,\n",
      "          'mistakes': 1,\n",
      "          'acting': 1,\n",
      "          'shouting': 1,\n",
      "          'looking': 1,\n",
      "          'twit': 1,\n",
      "          'wins': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'award': 1,\n",
      "          'irritating': 1,\n",
      "          'godawful': 1,\n",
      "          'moving': 1,\n",
      "          'picture': 1,\n",
      "          'nway': 1,\n",
      "          'go': 1,\n",
      "          'liz': 1,\n",
      "          'nfor': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'manage': 1,\n",
      "          'assemble': 1,\n",
      "          'actor': 1,\n",
      "          'going': 1,\n",
      "          'ah': 1,\n",
      "          'er': 1,\n",
      "          'nbefore': 1,\n",
      "          'finally': 1,\n",
      "          'giving': 1,\n",
      "          'switching': 1,\n",
      "          'major': 1,\n",
      "          'setback': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'writers': 1,\n",
      "          'sherri': 1,\n",
      "          'stoner': 1,\n",
      "          'deanna': 1,\n",
      "          'oliver': 1,\n",
      "          'anyone': 1,\n",
      "          'cares': 1,\n",
      "          'forget': 1,\n",
      "          'needs': 1,\n",
      "          'ninstead': 1,\n",
      "          'deliver': 1,\n",
      "          'martians': 1,\n",
      "          'deeply': 1,\n",
      "          'nalthough': 1,\n",
      "          'meant': 1,\n",
      "          'manic': 1,\n",
      "          'doubt': 1,\n",
      "          'line': 1,\n",
      "          'neck': 1,\n",
      "          'na': 1,\n",
      "          'real': 1,\n",
      "          'ncitizen': 1,\n",
      "          'kane': 1,\n",
      "          'delivers': 1,\n",
      "          'laughs': 1,\n",
      "          'minute': 1,\n",
      "          'hell': 1,\n",
      "          'spawn': 1,\n",
      "          'piece': 1,\n",
      "          'polyester': 1,\n",
      "          'kids': 1,\n",
      "          'audience': 1,\n",
      "          'insulted': 1,\n",
      "          'child': 1,\n",
      "          'bothered': 1,\n",
      "          'smirk': 1,\n",
      "          'effect': 1,\n",
      "          'though': 1,\n",
      "          'problems': 1,\n",
      "          'gags': 1,\n",
      "          'rather': 1,\n",
      "          'lack': 1,\n",
      "          'nmy': 1,\n",
      "          'reaches': 1,\n",
      "          'new': 1,\n",
      "          'level': 1,\n",
      "          'goes': 1,\n",
      "          'past': 1,\n",
      "          'bowl': 1,\n",
      "          'pipe': 1,\n",
      "          'sewer': 1,\n",
      "          'nnow': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'humorously': 1,\n",
      "          'showed': 1,\n",
      "          'nbut': 1,\n",
      "          'farting': 1,\n",
      "          'belching': 1,\n",
      "          'almost': 1,\n",
      "          'getting': 1,\n",
      "          'crapped': 1,\n",
      "          'literally': 1,\n",
      "          'amusing': 1,\n",
      "          'insulting': 1,\n",
      "          'ntheres': 1,\n",
      "          'right': 1,\n",
      "          'credits': 1,\n",
      "          'appears': 1,\n",
      "          'wrote': 1,\n",
      "          'tragically': 1,\n",
      "          'died': 1,\n",
      "          'twin': 1,\n",
      "          'continued': 1,\n",
      "          'neither': 1,\n",
      "          'hoping': 1,\n",
      "          'easy': 1,\n",
      "          'please': 1,\n",
      "          'six': 1,\n",
      "          'year': 1,\n",
      "          'olds': 1,\n",
      "          'wouldnt': 1,\n",
      "          'mind': 1,\n",
      "          'beaten': 1,\n",
      "          'stakes': 1,\n",
      "          'nyes': 1,\n",
      "          'nyowza': 1,\n",
      "          'nthe': 1,\n",
      "          'lot': 1,\n",
      "          'pumped': 1,\n",
      "          'actually': 1,\n",
      "          'got': 1,\n",
      "          'people': 1,\n",
      "          'agree': 1,\n",
      "          'depresses': 1,\n",
      "          'nthere': 1,\n",
      "          'thousands': 1,\n",
      "          'brilliant': 1,\n",
      "          'cant': 1,\n",
      "          'get': 1,\n",
      "          'distribution': 1,\n",
      "          'yet': 1,\n",
      "          'trash': 1,\n",
      "          'gets': 1,\n",
      "          'released': 1,\n",
      "          'nationwide': 1,\n",
      "          'ease': 1,\n",
      "          'nthankfully': 1,\n",
      "          'makes': 1,\n",
      "          'two': 1,\n",
      "          'lead': 1,\n",
      "          'near': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'earthquake': 5,\n",
      "          'big': 5,\n",
      "          'little': 5,\n",
      "          'cares': 5,\n",
      "          'disaster': 4,\n",
      "          'one': 4,\n",
      "          'theres': 4,\n",
      "          'nwho': 4,\n",
      "          'whos': 3,\n",
      "          'thing': 3,\n",
      "          'gives': 3,\n",
      "          'gardner': 3,\n",
      "          'bujold': 3,\n",
      "          'bit': 3,\n",
      "          'wires': 3,\n",
      "          'ntheres': 3,\n",
      "          'movie': 2,\n",
      "          'films': 2,\n",
      "          'thats': 2,\n",
      "          'really': 2,\n",
      "          'n': 2,\n",
      "          'theatre': 2,\n",
      "          'us': 2,\n",
      "          'characters': 2,\n",
      "          'brings': 2,\n",
      "          'single': 2,\n",
      "          'reason': 2,\n",
      "          'dont': 2,\n",
      "          'care': 2,\n",
      "          'nthe': 2,\n",
      "          'heston': 2,\n",
      "          'made': 2,\n",
      "          'married': 2,\n",
      "          'genieveve': 2,\n",
      "          'weirdest': 2,\n",
      "          'subplot': 2,\n",
      "          'richard': 2,\n",
      "          'roundtree': 2,\n",
      "          'stunt': 2,\n",
      "          'goes': 2,\n",
      "          'gets': 2,\n",
      "          'nin': 2,\n",
      "          'people': 2,\n",
      "          'adventure': 2,\n",
      "          'walter': 2,\n",
      "          'letdown': 2,\n",
      "          'none': 2,\n",
      "          'crumbling': 2,\n",
      "          'falls': 2,\n",
      "          'needed': 2,\n",
      "          'whole': 2,\n",
      "          'although': 2,\n",
      "          'kid': 2,\n",
      "          'nbut': 2,\n",
      "          'finale': 2,\n",
      "          'ended': 2,\n",
      "          'nand': 2,\n",
      "          'looked': 1,\n",
      "          'internet': 1,\n",
      "          'database': 1,\n",
      "          'awards': 1,\n",
      "          'section': 1,\n",
      "          'found': 1,\n",
      "          'nominated': 1,\n",
      "          'golden': 1,\n",
      "          'globe': 1,\n",
      "          'best': 1,\n",
      "          'picture': 1,\n",
      "          'drama': 1,\n",
      "          'nanyone': 1,\n",
      "          'seen': 1,\n",
      "          'back': 1,\n",
      "          'worst': 1,\n",
      "          'great': 1,\n",
      "          'saying': 1,\n",
      "          'lot': 1,\n",
      "          'basically': 1,\n",
      "          'notable': 1,\n",
      "          'originally': 1,\n",
      "          'included': 1,\n",
      "          'shook': 1,\n",
      "          'occured': 1,\n",
      "          'non': 1,\n",
      "          'video': 1,\n",
      "          'bland': 1,\n",
      "          'slowmoving': 1,\n",
      "          'bunch': 1,\n",
      "          'different': 1,\n",
      "          'requisite': 1,\n",
      "          'together': 1,\n",
      "          'struggle': 1,\n",
      "          'nwhile': 1,\n",
      "          'worked': 1,\n",
      "          'say': 1,\n",
      "          'towering': 1,\n",
      "          'inferno': 1,\n",
      "          'doesnt': 1,\n",
      "          'charlton': 1,\n",
      "          'many': 1,\n",
      "          'crap': 1,\n",
      "          '70s': 1,\n",
      "          'including': 1,\n",
      "          'skyjacked': 1,\n",
      "          'classic': 1,\n",
      "          'soylent': 1,\n",
      "          'green': 1,\n",
      "          'rich': 1,\n",
      "          'man': 1,\n",
      "          'ava': 1,\n",
      "          'affair': 1,\n",
      "          'young': 1,\n",
      "          'mom': 1,\n",
      "          'renegade': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'suspension': 1,\n",
      "          'george': 1,\n",
      "          'kennedy': 1,\n",
      "          'least': 1,\n",
      "          'humored': 1,\n",
      "          'performance': 1,\n",
      "          'second': 1,\n",
      "          'motorcycle': 1,\n",
      "          'stuntman': 1,\n",
      "          'right': 1,\n",
      "          'shaft': 1,\n",
      "          'whose': 1,\n",
      "          'track': 1,\n",
      "          'upside': 1,\n",
      "          'yea': 1,\n",
      "          'snore': 1,\n",
      "          'military': 1,\n",
      "          'manbag': 1,\n",
      "          'boy': 1,\n",
      "          'grocery': 1,\n",
      "          'store': 1,\n",
      "          'buxom': 1,\n",
      "          'victoria': 1,\n",
      "          'principal': 1,\n",
      "          'eventually': 1,\n",
      "          'vengeance': 1,\n",
      "          'guys': 1,\n",
      "          'fun': 1,\n",
      "          'hair': 1,\n",
      "          'smaller': 1,\n",
      "          'subplots': 1,\n",
      "          'pointless': 1,\n",
      "          'flying': 1,\n",
      "          'l': 1,\n",
      "          'city': 1,\n",
      "          'way': 1,\n",
      "          'playing': 1,\n",
      "          'cards': 1,\n",
      "          'boring': 1,\n",
      "          'nonacting': 1,\n",
      "          'husband': 1,\n",
      "          'think': 1,\n",
      "          'go': 1,\n",
      "          'nowhere': 1,\n",
      "          'nguess': 1,\n",
      "          'interested': 1,\n",
      "          'final': 1,\n",
      "          'frames': 1,\n",
      "          'bujolds': 1,\n",
      "          'moron': 1,\n",
      "          'son': 1,\n",
      "          'muchneeded': 1,\n",
      "          'comedy': 1,\n",
      "          'matthau': 1,\n",
      "          'billed': 1,\n",
      "          'mutha': 1,\n",
      "          'laugh': 1,\n",
      "          'wild': 1,\n",
      "          'drunkard': 1,\n",
      "          'moment': 1,\n",
      "          'dance': 1,\n",
      "          'critical': 1,\n",
      "          'time': 1,\n",
      "          'nas': 1,\n",
      "          'actual': 1,\n",
      "          'rather': 1,\n",
      "          'full': 1,\n",
      "          'hour': 1,\n",
      "          'charactersetups': 1,\n",
      "          'interesting': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          'shaking': 1,\n",
      "          'house': 1,\n",
      "          'almost': 1,\n",
      "          'narrowly': 1,\n",
      "          'missing': 1,\n",
      "          'nthis': 1,\n",
      "          'theatreshaking': 1,\n",
      "          'wake': 1,\n",
      "          'everybody': 1,\n",
      "          'bored': 1,\n",
      "          'suspense': 1,\n",
      "          'following': 1,\n",
      "          'quake': 1,\n",
      "          'tries': 1,\n",
      "          'highrise': 1,\n",
      "          'office': 1,\n",
      "          'building': 1,\n",
      "          'movement': 1,\n",
      "          'injured': 1,\n",
      "          'alltoo': 1,\n",
      "          'suspenseful': 1,\n",
      "          'hestongardnerbujold': 1,\n",
      "          'love': 1,\n",
      "          'triangle': 1,\n",
      "          'basic': 1,\n",
      "          'flipofthecoin': 1,\n",
      "          'real': 1,\n",
      "          'neven': 1,\n",
      "          'volcano': 1,\n",
      "          'nicely': 1,\n",
      "          'sucked': 1,\n",
      "          'nnot': 1,\n",
      "          'hokey': 1,\n",
      "          'character': 1,\n",
      "          'dies': 1,\n",
      "          'choses': 1,\n",
      "          'would': 1,\n",
      "          'chosen': 1,\n",
      "          'mainly': 1,\n",
      "          'basis': 1,\n",
      "          'actually': 1,\n",
      "          'act': 1,\n",
      "          'makes': 1,\n",
      "          'money': 1,\n",
      "          'stupid': 1,\n",
      "          'idiot': 1,\n",
      "          'death': 1,\n",
      "          'plane': 1,\n",
      "          'spiel': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'worth': 1,\n",
      "          'viewing': 1,\n",
      "          'glen': 1,\n",
      "          'glenda': 1,\n",
      "          'nis': 1,\n",
      "          'ni': 1,\n",
      "          'mean': 1,\n",
      "          'laughed': 1,\n",
      "          'bio': 1,\n",
      "          'dome': 1,\n",
      "          'another': 1,\n",
      "          'story': 1,\n",
      "          'review': 1,\n",
      "          'short': 1,\n",
      "          'pics': 1,\n",
      "          'bad': 1,\n",
      "          'name': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'films': 5,\n",
      "          'nthe': 5,\n",
      "          'monster': 4,\n",
      "          'film': 4,\n",
      "          'good': 3,\n",
      "          'part': 3,\n",
      "          'boat': 3,\n",
      "          'however': 3,\n",
      "          'may': 3,\n",
      "          'nand': 3,\n",
      "          'thieves': 3,\n",
      "          'argonauticus': 3,\n",
      "          'creature': 3,\n",
      "          'deep': 3,\n",
      "          'would': 3,\n",
      "          'rules': 3,\n",
      "          'many': 2,\n",
      "          'alien': 2,\n",
      "          'aliens': 2,\n",
      "          'nso': 2,\n",
      "          'end': 2,\n",
      "          'n': 2,\n",
      "          'particularly': 2,\n",
      "          'nperhaps': 2,\n",
      "          'simply': 2,\n",
      "          'easy': 2,\n",
      "          'ndeep': 2,\n",
      "          'rising': 2,\n",
      "          'way': 2,\n",
      "          'ntreat': 2,\n",
      "          'williams': 2,\n",
      "          'crew': 2,\n",
      "          'time': 2,\n",
      "          'far': 2,\n",
      "          'passengers': 2,\n",
      "          'wes': 2,\n",
      "          'studi': 2,\n",
      "          'high': 2,\n",
      "          'nwhy': 2,\n",
      "          'nbut': 2,\n",
      "          'something': 2,\n",
      "          'else': 2,\n",
      "          'ship': 2,\n",
      "          'killed': 2,\n",
      "          'anthony': 2,\n",
      "          'heald': 2,\n",
      "          'famke': 2,\n",
      "          'janssen': 2,\n",
      "          'happens': 2,\n",
      "          'might': 2,\n",
      "          'nits': 2,\n",
      "          'get': 2,\n",
      "          'interesting': 2,\n",
      "          'characters': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'seem': 2,\n",
      "          'first': 2,\n",
      "          'although': 2,\n",
      "          'bit': 2,\n",
      "          'set': 2,\n",
      "          'nit': 2,\n",
      "          'scenes': 2,\n",
      "          'risings': 2,\n",
      "          'formula': 1,\n",
      "          'simple': 1,\n",
      "          'ntrap': 1,\n",
      "          'varied': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'isolated': 1,\n",
      "          'location': 1,\n",
      "          'pop': 1,\n",
      "          'seemingly': 1,\n",
      "          'unstoppable': 1,\n",
      "          'kill': 1,\n",
      "          'nthese': 1,\n",
      "          'successful': 1,\n",
      "          'ingredients': 1,\n",
      "          'thing': 1,\n",
      "          'tremors': 1,\n",
      "          'name': 1,\n",
      "          'following': 1,\n",
      "          'recipe': 1,\n",
      "          'pathetically': 1,\n",
      "          'bad': 1,\n",
      "          'see': 1,\n",
      "          'relic': 1,\n",
      "          'putrid': 1,\n",
      "          'example': 1,\n",
      "          'forget': 1,\n",
      "          'necessary': 1,\n",
      "          'binding': 1,\n",
      "          'ingredient': 1,\n",
      "          'effort': 1,\n",
      "          'ideas': 1,\n",
      "          'meets': 1,\n",
      "          'two': 1,\n",
      "          'requirements': 1,\n",
      "          'enough': 1,\n",
      "          'salvage': 1,\n",
      "          'finnegan': 1,\n",
      "          'leader': 1,\n",
      "          'small': 1,\n",
      "          'hire': 1,\n",
      "          'services': 1,\n",
      "          'activity': 1,\n",
      "          'nquestions': 1,\n",
      "          'asked': 1,\n",
      "          'nthis': 1,\n",
      "          'gone': 1,\n",
      "          'ntheir': 1,\n",
      "          'led': 1,\n",
      "          'ominous': 1,\n",
      "          'type': 1,\n",
      "          'multinational': 1,\n",
      "          'terrorist': 1,\n",
      "          'squads': 1,\n",
      "          'usually': 1,\n",
      "          'seen': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'cargo': 1,\n",
      "          'lets': 1,\n",
      "          'njust': 1,\n",
      "          'say': 1,\n",
      "          'explosive': 1,\n",
      "          'potential': 1,\n",
      "          'nwhat': 1,\n",
      "          'target': 1,\n",
      "          'course': 1,\n",
      "          'tech': 1,\n",
      "          'luxury': 1,\n",
      "          'cruise': 1,\n",
      "          'yacht': 1,\n",
      "          'maiden': 1,\n",
      "          'voyage': 1,\n",
      "          'hunting': 1,\n",
      "          'nancient': 1,\n",
      "          'deadly': 1,\n",
      "          'nby': 1,\n",
      "          'arrive': 1,\n",
      "          'nearly': 1,\n",
      "          'everyone': 1,\n",
      "          'board': 1,\n",
      "          'senses': 1,\n",
      "          'fresh': 1,\n",
      "          'meat': 1,\n",
      "          'mercenary': 1,\n",
      "          'joining': 1,\n",
      "          'forces': 1,\n",
      "          'surviving': 1,\n",
      "          'including': 1,\n",
      "          'owner': 1,\n",
      "          'canton': 1,\n",
      "          'thief': 1,\n",
      "          'less': 1,\n",
      "          'lofty': 1,\n",
      "          'goals': 1,\n",
      "          'trillian': 1,\n",
      "          'terror': 1,\n",
      "          'gets': 1,\n",
      "          'pick': 1,\n",
      "          'nfortunately': 1,\n",
      "          'particular': 1,\n",
      "          'band': 1,\n",
      "          'criminals': 1,\n",
      "          'dumbest': 1,\n",
      "          'world': 1,\n",
      "          'offer': 1,\n",
      "          'indulge': 1,\n",
      "          'petty': 1,\n",
      "          'squabbling': 1,\n",
      "          'watch': 1,\n",
      "          'friends': 1,\n",
      "          'become': 1,\n",
      "          'fish': 1,\n",
      "          'food': 1,\n",
      "          'nif': 1,\n",
      "          'theres': 1,\n",
      "          'clarion': 1,\n",
      "          'call': 1,\n",
      "          'unity': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'pretty': 1,\n",
      "          'guess': 1,\n",
      "          'nthere': 1,\n",
      "          'surprises': 1,\n",
      "          'last': 1,\n",
      "          'nfor': 1,\n",
      "          'watery': 1,\n",
      "          'tentacles': 1,\n",
      "          'acting': 1,\n",
      "          'audiences': 1,\n",
      "          'impulses': 1,\n",
      "          'rid': 1,\n",
      "          'boring': 1,\n",
      "          'wonder': 1,\n",
      "          'filmmakers': 1,\n",
      "          'extended': 1,\n",
      "          'djimon': 1,\n",
      "          'hounsous': 1,\n",
      "          'life': 1,\n",
      "          'knew': 1,\n",
      "          'released': 1,\n",
      "          'soon': 1,\n",
      "          'acclaim': 1,\n",
      "          'amistad': 1,\n",
      "          'passable': 1,\n",
      "          'hero': 1,\n",
      "          'best': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'impersonation': 1,\n",
      "          'slimy': 1,\n",
      "          'little': 1,\n",
      "          'rest': 1,\n",
      "          'company': 1,\n",
      "          'stand': 1,\n",
      "          'biggest': 1,\n",
      "          'treat': 1,\n",
      "          'pantucci': 1,\n",
      "          'kevin': 1,\n",
      "          'j': 1,\n",
      "          'oconnors': 1,\n",
      "          'whining': 1,\n",
      "          'engineboy': 1,\n",
      "          'finnegans': 1,\n",
      "          'employ': 1,\n",
      "          'nhis': 1,\n",
      "          'constant': 1,\n",
      "          'quips': 1,\n",
      "          'overwritten': 1,\n",
      "          'manage': 1,\n",
      "          'capture': 1,\n",
      "          'vein': 1,\n",
      "          'nerveaddled': 1,\n",
      "          'humor': 1,\n",
      "          'bill': 1,\n",
      "          'paxton': 1,\n",
      "          'delivered': 1,\n",
      "          'hudson': 1,\n",
      "          'todd': 1,\n",
      "          'graff': 1,\n",
      "          'hippie': 1,\n",
      "          'abyss': 1,\n",
      "          'matter': 1,\n",
      "          'stock': 1,\n",
      "          'comicrelief': 1,\n",
      "          'character': 1,\n",
      "          'almost': 1,\n",
      "          'makes': 1,\n",
      "          'tired': 1,\n",
      "          'clone': 1,\n",
      "          'bearable': 1,\n",
      "          'nas': 1,\n",
      "          'goes': 1,\n",
      "          'cgi': 1,\n",
      "          'done': 1,\n",
      "          'well': 1,\n",
      "          'logical': 1,\n",
      "          'consistency': 1,\n",
      "          'nthink': 1,\n",
      "          'back': 1,\n",
      "          'great': 1,\n",
      "          'even': 1,\n",
      "          'movie': 1,\n",
      "          'monsters': 1,\n",
      "          'nthey': 1,\n",
      "          'could': 1,\n",
      "          'npart': 1,\n",
      "          'joy': 1,\n",
      "          'slowly': 1,\n",
      "          'discovering': 1,\n",
      "          'along': 1,\n",
      "          'heroes': 1,\n",
      "          'tentacle': 1,\n",
      "          'doesnt': 1,\n",
      "          'merely': 1,\n",
      "          'eats': 1,\n",
      "          'drinks': 1,\n",
      "          'case': 1,\n",
      "          'rhyme': 1,\n",
      "          'reason': 1,\n",
      "          'order': 1,\n",
      "          'never': 1,\n",
      "          'explains': 1,\n",
      "          'attacked': 1,\n",
      "          'place': 1,\n",
      "          'action': 1,\n",
      "          'decent': 1,\n",
      "          'noteworthy': 1,\n",
      "          'definitely': 1,\n",
      "          'suffer': 1,\n",
      "          'proximity': 1,\n",
      "          'titanic': 1,\n",
      "          'peril': 1,\n",
      "          'water': 1,\n",
      "          'pale': 1,\n",
      "          'next': 1,\n",
      "          'camerons': 1,\n",
      "          'really': 1,\n",
      "          'blame': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'efforts': 1,\n",
      "          'par': 1,\n",
      "          'speed': 1,\n",
      "          '2': 1,\n",
      "          'non': 1,\n",
      "          'plus': 1,\n",
      "          'side': 1,\n",
      "          'closing': 1,\n",
      "          'image': 1,\n",
      "          'shows': 1,\n",
      "          'promise': 1,\n",
      "          'potentially': 1,\n",
      "          'unlikely': 1,\n",
      "          'sequel': 1,\n",
      "          'youd': 1,\n",
      "          'better': 1,\n",
      "          'waiting': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'films': 2,\n",
      "          'one': 2,\n",
      "          'characters': 2,\n",
      "          'thirteenth': 1,\n",
      "          'floor': 1,\n",
      "          'bland': 1,\n",
      "          'obligatory': 1,\n",
      "          'exercise': 1,\n",
      "          'genre': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nif': 1,\n",
      "          'hadnt': 1,\n",
      "          'recently': 1,\n",
      "          'watched': 1,\n",
      "          'matrix': 1,\n",
      "          'open': 1,\n",
      "          'eyes': 1,\n",
      "          'similar': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'might': 1,\n",
      "          'little': 1,\n",
      "          'nicer': 1,\n",
      "          'picture': 1,\n",
      "          'ncraig': 1,\n",
      "          'bierko': 1,\n",
      "          'makes': 1,\n",
      "          'adequate': 1,\n",
      "          'hero': 1,\n",
      "          'douglas': 1,\n",
      "          'hall': 1,\n",
      "          'rich': 1,\n",
      "          'cocreator': 1,\n",
      "          'perfect': 1,\n",
      "          'human': 1,\n",
      "          'world': 1,\n",
      "          'simulation': 1,\n",
      "          'suddenly': 1,\n",
      "          'blamed': 1,\n",
      "          'murder': 1,\n",
      "          'boss': 1,\n",
      "          'armin': 1,\n",
      "          'muellerstahl': 1,\n",
      "          'neverything': 1,\n",
      "          'subtle': 1,\n",
      "          'smart': 1,\n",
      "          'previously': 1,\n",
      "          'mentioned': 1,\n",
      "          'battered': 1,\n",
      "          'heads': 1,\n",
      "          'stare': 1,\n",
      "          'maddeninglylong': 1,\n",
      "          'periods': 1,\n",
      "          'time': 1,\n",
      "          'refuse': 1,\n",
      "          'communicate': 1,\n",
      "          'realistic': 1,\n",
      "          'level': 1,\n",
      "          'nthe': 1,\n",
      "          'acting': 1,\n",
      "          'okay': 1,\n",
      "          'film': 1,\n",
      "          'suffers': 1,\n",
      "          'every': 1,\n",
      "          'logical': 1,\n",
      "          'flaw': 1,\n",
      "          'could': 1,\n",
      "          'think': 1,\n",
      "          'features': 1,\n",
      "          'script': 1,\n",
      "          'copenned': 1,\n",
      "          'director': 1,\n",
      "          'josef': 1,\n",
      "          'rusnak': 1,\n",
      "          'loaded': 1,\n",
      "          'cliches': 1,\n",
      "          'stock': 1,\n",
      "          'nthere': 1,\n",
      "          'individual': 1,\n",
      "          'scenes': 1,\n",
      "          'ideas': 1,\n",
      "          'work': 1,\n",
      "          'like': 1,\n",
      "          'thought': 1,\n",
      "          'sentient': 1,\n",
      "          'computer': 1,\n",
      "          'program': 1,\n",
      "          'none': 1,\n",
      "          'strengths': 1,\n",
      "          'recognized': 1,\n",
      "          'meaningful': 1,\n",
      "          'degree': 1,\n",
      "          'nproducer': 1,\n",
      "          'roland': 1,\n",
      "          'emmerich': 1,\n",
      "          'based': 1,\n",
      "          'previous': 1,\n",
      "          'directorial': 1,\n",
      "          'efforts': 1,\n",
      "          'seems': 1,\n",
      "          'hellbent': 1,\n",
      "          'bringing': 1,\n",
      "          'us': 1,\n",
      "          'ultimate': 1,\n",
      "          'standard': 1,\n",
      "          'mediocre': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 13,\n",
      "          'max': 9,\n",
      "          'sammy': 8,\n",
      "          'giant': 6,\n",
      "          'ni': 5,\n",
      "          'scenes': 5,\n",
      "          'muresan': 4,\n",
      "          'would': 4,\n",
      "          'could': 4,\n",
      "          'point': 3,\n",
      "          'scene': 3,\n",
      "          'believe': 3,\n",
      "          'found': 3,\n",
      "          'like': 3,\n",
      "          'sammys': 3,\n",
      "          'story': 3,\n",
      "          'funny': 2,\n",
      "          'movie': 2,\n",
      "          'romania': 2,\n",
      "          'ends': 2,\n",
      "          'nand': 2,\n",
      "          'played': 2,\n",
      "          'gheorghe': 2,\n",
      "          'two': 2,\n",
      "          'times': 2,\n",
      "          'particularly': 2,\n",
      "          'enjoyed': 2,\n",
      "          'right': 2,\n",
      "          'nat': 2,\n",
      "          'understand': 2,\n",
      "          'first': 2,\n",
      "          'required': 2,\n",
      "          'time': 2,\n",
      "          'characters': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'desperate': 2,\n",
      "          'wife': 2,\n",
      "          'character': 2,\n",
      "          'quite': 2,\n",
      "          'nthis': 2,\n",
      "          'seagal': 2,\n",
      "          'role': 2,\n",
      "          'rather': 2,\n",
      "          'audience': 2,\n",
      "          'supposed': 2,\n",
      "          'someone': 2,\n",
      "          'cast': 2,\n",
      "          'guy': 2,\n",
      "          'nin': 2,\n",
      "          'final': 2,\n",
      "          'transformation': 2,\n",
      "          'plot': 2,\n",
      "          'points': 2,\n",
      "          'lillianna': 2,\n",
      "          'justify': 2,\n",
      "          'illness': 2,\n",
      "          'focus': 2,\n",
      "          'maxs': 2,\n",
      "          'end': 2,\n",
      "          'begins': 1,\n",
      "          'monologue': 1,\n",
      "          'thats': 1,\n",
      "          'distinctive': 1,\n",
      "          'princess': 1,\n",
      "          'bride': 1,\n",
      "          'medieval': 1,\n",
      "          'fairytaleinthe': 1,\n",
      "          '90s': 1,\n",
      "          'feel': 1,\n",
      "          'pleasantly': 1,\n",
      "          'surprised': 1,\n",
      "          'sharp': 1,\n",
      "          'comedy': 1,\n",
      "          'occurring': 1,\n",
      "          'set': 1,\n",
      "          'talent': 1,\n",
      "          'agent': 1,\n",
      "          'billy': 1,\n",
      "          'crystal': 1,\n",
      "          'visiting': 1,\n",
      "          'client': 1,\n",
      "          'monastery': 1,\n",
      "          'mysteriously': 1,\n",
      "          'saved': 1,\n",
      "          'accidentally': 1,\n",
      "          'plunges': 1,\n",
      "          'car': 1,\n",
      "          'stream': 1,\n",
      "          'meets': 1,\n",
      "          'mysterious': 1,\n",
      "          'savior': 1,\n",
      "          'magic': 1,\n",
      "          'air': 1,\n",
      "          'albeit': 1,\n",
      "          'bit': 1,\n",
      "          'goofy': 1,\n",
      "          'loved': 1,\n",
      "          'every': 1,\n",
      "          'minute': 1,\n",
      "          'nthe': 1,\n",
      "          'course': 1,\n",
      "          'plays': 1,\n",
      "          'size': 1,\n",
      "          'difference': 1,\n",
      "          'almost': 1,\n",
      "          'swear': 1,\n",
      "          'must': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'shot': 1,\n",
      "          'dangling': 1,\n",
      "          'legs': 1,\n",
      "          'maxsized': 1,\n",
      "          'chair': 1,\n",
      "          'face': 1,\n",
      "          'enormous': 1,\n",
      "          'table': 1,\n",
      "          'eat': 1,\n",
      "          'oversized': 1,\n",
      "          'bowls': 1,\n",
      "          'spoons': 1,\n",
      "          'also': 1,\n",
      "          'liked': 1,\n",
      "          'jere': 1,\n",
      "          'burns': 1,\n",
      "          'tvs': 1,\n",
      "          'something': 1,\n",
      "          'performance': 1,\n",
      "          'director': 1,\n",
      "          'primary': 1,\n",
      "          'flaw': 1,\n",
      "          'incredibly': 1,\n",
      "          'hard': 1,\n",
      "          'fastpaced': 1,\n",
      "          'nit': 1,\n",
      "          'unfortunate': 1,\n",
      "          'script': 1,\n",
      "          'speak': 1,\n",
      "          'quickly': 1,\n",
      "          'gate': 1,\n",
      "          'continued': 1,\n",
      "          'became': 1,\n",
      "          'accustomed': 1,\n",
      "          'speech': 1,\n",
      "          'nhowever': 1,\n",
      "          'becomes': 1,\n",
      "          'coherent': 1,\n",
      "          'head': 1,\n",
      "          'takes': 1,\n",
      "          'dive': 1,\n",
      "          'noff': 1,\n",
      "          'high': 1,\n",
      "          'board': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'expected': 1,\n",
      "          'dowhateverittakes': 1,\n",
      "          'slime': 1,\n",
      "          'ball': 1,\n",
      "          'nup': 1,\n",
      "          'pursuing': 1,\n",
      "          'interests': 1,\n",
      "          'sure': 1,\n",
      "          'didnt': 1,\n",
      "          'come': 1,\n",
      "          'jerk': 1,\n",
      "          'nif': 1,\n",
      "          'never': 1,\n",
      "          'lighthearted': 1,\n",
      "          'magical': 1,\n",
      "          'nbut': 1,\n",
      "          'introduced': 1,\n",
      "          'neglected': 1,\n",
      "          'son': 1,\n",
      "          'enough': 1,\n",
      "          'involve': 1,\n",
      "          'disturbing': 1,\n",
      "          'vs': 1,\n",
      "          'midgets': 1,\n",
      "          'wrestling': 1,\n",
      "          'match': 1,\n",
      "          'unpleasant': 1,\n",
      "          'jarring': 1,\n",
      "          'within': 1,\n",
      "          'framework': 1,\n",
      "          'nindeed': 1,\n",
      "          'many': 1,\n",
      "          'stuck': 1,\n",
      "          'incorrectly': 1,\n",
      "          'placed': 1,\n",
      "          'puzzle': 1,\n",
      "          'pieces': 1,\n",
      "          'includes': 1,\n",
      "          'featuring': 1,\n",
      "          'steven': 1,\n",
      "          'gets': 1,\n",
      "          'big': 1,\n",
      "          'hollywood': 1,\n",
      "          'filming': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'nwhile': 1,\n",
      "          'seeing': 1,\n",
      "          'poke': 1,\n",
      "          'fun': 1,\n",
      "          'appeared': 1,\n",
      "          'exist': 1,\n",
      "          'solely': 1,\n",
      "          'participation': 1,\n",
      "          'demanded': 1,\n",
      "          'take': 1,\n",
      "          'huge': 1,\n",
      "          'leap': 1,\n",
      "          'win': 1,\n",
      "          'based': 1,\n",
      "          'quotations': 1,\n",
      "          'shakespeare': 1,\n",
      "          'thinking': 1,\n",
      "          'nthen': 1,\n",
      "          'realized': 1,\n",
      "          'watching': 1,\n",
      "          'third': 1,\n",
      "          'undergoes': 1,\n",
      "          'another': 1,\n",
      "          'unbridled': 1,\n",
      "          'sentimentality': 1,\n",
      "          'nnote': 1,\n",
      "          'major': 1,\n",
      "          'revealed': 1,\n",
      "          'paragraph': 1,\n",
      "          'nmax': 1,\n",
      "          'went': 1,\n",
      "          'america': 1,\n",
      "          'promised': 1,\n",
      "          'reunited': 1,\n",
      "          'childhood': 1,\n",
      "          'love': 1,\n",
      "          'hasnt': 1,\n",
      "          'seen': 1,\n",
      "          'since': 1,\n",
      "          'normalsized': 1,\n",
      "          'kid': 1,\n",
      "          'nher': 1,\n",
      "          'refusal': 1,\n",
      "          'see': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'leads': 1,\n",
      "          'us': 1,\n",
      "          'awkward': 1,\n",
      "          'means': 1,\n",
      "          'serena': 1,\n",
      "          'nicely': 1,\n",
      "          'kathleen': 1,\n",
      "          'quinlan': 1,\n",
      "          'poses': 1,\n",
      "          'offensive': 1,\n",
      "          'nnot': 1,\n",
      "          'rely': 1,\n",
      "          'deception': 1,\n",
      "          'induce': 1,\n",
      "          'warm': 1,\n",
      "          'fuzzy': 1,\n",
      "          'feelings': 1,\n",
      "          'reduced': 1,\n",
      "          'pity': 1,\n",
      "          'coddle': 1,\n",
      "          'thought': 1,\n",
      "          'undeserved': 1,\n",
      "          'think': 1,\n",
      "          'handled': 1,\n",
      "          'truth': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nlate': 1,\n",
      "          'learn': 1,\n",
      "          'fact': 1,\n",
      "          'giants': 1,\n",
      "          'heart': 1,\n",
      "          'condition': 1,\n",
      "          'shortens': 1,\n",
      "          'lives': 1,\n",
      "          'considerably': 1,\n",
      "          'enlightening': 1,\n",
      "          'revelation': 1,\n",
      "          'seemingly': 1,\n",
      "          'presents': 1,\n",
      "          'caring': 1,\n",
      "          'sensitive': 1,\n",
      "          'hey': 1,\n",
      "          'great': 1,\n",
      "          'dad': 1,\n",
      "          'husband': 1,\n",
      "          'nmy': 1,\n",
      "          'suffers': 1,\n",
      "          'poorly': 1,\n",
      "          'constructed': 1,\n",
      "          'line': 1,\n",
      "          'undeveloped': 1,\n",
      "          'whose': 1,\n",
      "          'actions': 1,\n",
      "          'determined': 1,\n",
      "          'internal': 1,\n",
      "          'persuasions': 1,\n",
      "          'na': 1,\n",
      "          'stronger': 1,\n",
      "          'room': 1,\n",
      "          'growth': 1,\n",
      "          'might': 1,\n",
      "          'possible': 1,\n",
      "          'struggle': 1,\n",
      "          'accepted': 1,\n",
      "          'movies': 1,\n",
      "          'instead': 1,\n",
      "          'struggles': 1,\n",
      "          'get': 1,\n",
      "          'money': 1,\n",
      "          'become': 1,\n",
      "          'better': 1,\n",
      "          'person': 1,\n",
      "          'scenario': 1,\n",
      "          'integral': 1,\n",
      "          'part': 1,\n",
      "          'motivator': 1,\n",
      "          'nsentiment': 1,\n",
      "          'emotion': 1,\n",
      "          'followed': 1,\n",
      "          'naturally': 1,\n",
      "          'ninstead': 1,\n",
      "          'apparently': 1,\n",
      "          'allowed': 1,\n",
      "          'ncrystal': 1,\n",
      "          'give': 1,\n",
      "          'adequate': 1,\n",
      "          'enjoyable': 1,\n",
      "          'performances': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'id': 1,\n",
      "          'fed': 1,\n",
      "          'gruel': 1,\n",
      "          'spoon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'action': 7,\n",
      "          'nthe': 6,\n",
      "          'musketeer': 5,\n",
      "          'may': 5,\n",
      "          'like': 5,\n",
      "          'hong': 4,\n",
      "          'kong': 4,\n",
      "          'character': 4,\n",
      "          'nit': 4,\n",
      "          'one': 4,\n",
      "          'dumas': 3,\n",
      "          'time': 3,\n",
      "          'characters': 3,\n",
      "          'well': 3,\n",
      "          'dartagnan': 3,\n",
      "          'bad': 3,\n",
      "          'horse': 3,\n",
      "          'makes': 3,\n",
      "          'looks': 3,\n",
      "          'queen': 3,\n",
      "          'dartagnans': 3,\n",
      "          'director': 2,\n",
      "          'hyams': 2,\n",
      "          'dont': 2,\n",
      "          'money': 2,\n",
      "          'effort': 2,\n",
      "          'work': 2,\n",
      "          'crouching': 2,\n",
      "          'tiger': 2,\n",
      "          'hidden': 2,\n",
      "          'dragon': 2,\n",
      "          'result': 2,\n",
      "          'three': 2,\n",
      "          'musketeers': 2,\n",
      "          'utilized': 2,\n",
      "          'flick': 2,\n",
      "          'little': 2,\n",
      "          'material': 2,\n",
      "          'matrix': 2,\n",
      "          'two': 2,\n",
      "          'good': 2,\n",
      "          'helped': 2,\n",
      "          'plays': 2,\n",
      "          'febre': 2,\n",
      "          'players': 2,\n",
      "          'could': 2,\n",
      "          'goes': 2,\n",
      "          'wire': 2,\n",
      "          'used': 2,\n",
      "          'alexandre': 1,\n",
      "          'meets': 1,\n",
      "          'newcomer': 1,\n",
      "          'justin': 1,\n",
      "          'chambers': 1,\n",
      "          'reprising': 1,\n",
      "          'oftplayed': 1,\n",
      "          'dashing': 1,\n",
      "          'swordsman': 1,\n",
      "          'dartagnon': 1,\n",
      "          'peter': 1,\n",
      "          'adventure': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'figure': 1,\n",
      "          'later': 1,\n",
      "          'know': 1,\n",
      "          'put': 1,\n",
      "          'making': 1,\n",
      "          'someone': 1,\n",
      "          'clever': 1,\n",
      "          'idea': 1,\n",
      "          'combining': 1,\n",
      "          'story': 1,\n",
      "          'current': 1,\n",
      "          'enamor': 1,\n",
      "          'imports': 1,\n",
      "          'films': 1,\n",
      "          'xinxin': 1,\n",
      "          'xiong': 1,\n",
      "          'upon': 1,\n",
      "          'china': 1,\n",
      "          'yuen': 1,\n",
      "          'wooping': 1,\n",
      "          'mix': 1,\n",
      "          'genres': 1,\n",
      "          'mesh': 1,\n",
      "          'nelements': 1,\n",
      "          'ritz': 1,\n",
      "          'brothersstyle': 1,\n",
      "          'comedy': 1,\n",
      "          'remember': 1,\n",
      "          'comedic': 1,\n",
      "          'troupe': 1,\n",
      "          '1939': 1,\n",
      "          'man': 1,\n",
      "          'name': 1,\n",
      "          'fistful': 1,\n",
      "          'dollars': 1,\n",
      "          'demands': 1,\n",
      "          'guys': 1,\n",
      "          'apologize': 1,\n",
      "          'direct': 1,\n",
      "          'ref': 1,\n",
      "          'clint': 1,\n",
      "          'eastwood': 1,\n",
      "          'spaghetti': 1,\n",
      "          'western': 1,\n",
      "          'choreography': 1,\n",
      "          'original': 1,\n",
      "          'script': 1,\n",
      "          'gene': 1,\n",
      "          'quintano': 1,\n",
      "          'bears': 1,\n",
      "          'resemblance': 1,\n",
      "          'source': 1,\n",
      "          'contemporary': 1,\n",
      "          'grab': 1,\n",
      "          'crowd': 1,\n",
      "          'nalexandre': 1,\n",
      "          'rolling': 1,\n",
      "          'grave': 1,\n",
      "          'knows': 1,\n",
      "          'done': 1,\n",
      "          'classic': 1,\n",
      "          'oeuvre': 1,\n",
      "          'real': 1,\n",
      "          'problem': 1,\n",
      "          'lies': 1,\n",
      "          'casting': 1,\n",
      "          'lead': 1,\n",
      "          'romantically': 1,\n",
      "          'intertwined': 1,\n",
      "          'francesca': 1,\n",
      "          'mena': 1,\n",
      "          'suvari': 1,\n",
      "          'nchambers': 1,\n",
      "          'boyishly': 1,\n",
      "          'handsome': 1,\n",
      "          'la': 1,\n",
      "          'chris': 1,\n",
      "          'odonnell': 1,\n",
      "          'lacks': 1,\n",
      "          'onscreen': 1,\n",
      "          'charisma': 1,\n",
      "          'nsuvari': 1,\n",
      "          'doeeyed': 1,\n",
      "          'pretty': 1,\n",
      "          'chambermaid': 1,\n",
      "          'ear': 1,\n",
      "          'chemistry': 1,\n",
      "          'command': 1,\n",
      "          'screen': 1,\n",
      "          'nif': 1,\n",
      "          'invest': 1,\n",
      "          'acting': 1,\n",
      "          'lessons': 1,\n",
      "          'nstronger': 1,\n",
      "          'performers': 1,\n",
      "          'raise': 1,\n",
      "          'bar': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'surface': 1,\n",
      "          'impressive': 1,\n",
      "          'ncatherine': 1,\n",
      "          'denueve': 1,\n",
      "          'france': 1,\n",
      "          'lends': 1,\n",
      "          'air': 1,\n",
      "          'royalty': 1,\n",
      "          'dignity': 1,\n",
      "          'humor': 1,\n",
      "          'especially': 1,\n",
      "          'mentor': 1,\n",
      "          'planchet': 1,\n",
      "          'jeanpierre': 1,\n",
      "          'castaldi': 1,\n",
      "          'reminds': 1,\n",
      "          'andre': 1,\n",
      "          'giant': 1,\n",
      "          'princess': 1,\n",
      "          'bride': 1,\n",
      "          'nstephen': 1,\n",
      "          'rea': 1,\n",
      "          'part': 1,\n",
      "          'conniving': 1,\n",
      "          'usurper': 1,\n",
      "          'cardinal': 1,\n",
      "          'richelieu': 1,\n",
      "          'given': 1,\n",
      "          'help': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'flesh': 1,\n",
      "          'ntim': 1,\n",
      "          'roth': 1,\n",
      "          'kind': 1,\n",
      "          'guy': 1,\n",
      "          'love': 1,\n",
      "          'hate': 1,\n",
      "          'cardinals': 1,\n",
      "          'chief': 1,\n",
      "          'henchman': 1,\n",
      "          'nhe': 1,\n",
      "          'simon': 1,\n",
      "          'legree': 1,\n",
      "          'look': 1,\n",
      "          'boy': 1,\n",
      "          'scout': 1,\n",
      "          'rest': 1,\n",
      "          'particularly': 1,\n",
      "          'aramis': 1,\n",
      "          'nick': 1,\n",
      "          'moran': 1,\n",
      "          'lock': 1,\n",
      "          'stock': 1,\n",
      "          'smoking': 1,\n",
      "          'barrels': 1,\n",
      "          'porthos': 1,\n",
      "          'steve': 1,\n",
      "          'spiers': 1,\n",
      "          'athos': 1,\n",
      "          'jan': 1,\n",
      "          'gregor': 1,\n",
      "          'kremp': 1,\n",
      "          'background': 1,\n",
      "          'fodder': 1,\n",
      "          'whose': 1,\n",
      "          'role': 1,\n",
      "          'come': 1,\n",
      "          'aid': 1,\n",
      "          'needed': 1,\n",
      "          'npeter': 1,\n",
      "          'double': 1,\n",
      "          'duty': 1,\n",
      "          'cinematography': 1,\n",
      "          'stretched': 1,\n",
      "          'na': 1,\n",
      "          'stronger': 1,\n",
      "          'hand': 1,\n",
      "          'helm': 1,\n",
      "          'mediocre': 1,\n",
      "          'performances': 1,\n",
      "          'leads': 1,\n",
      "          'better': 1,\n",
      "          'veteran': 1,\n",
      "          'thesps': 1,\n",
      "          'nphotography': 1,\n",
      "          'straightforward': 1,\n",
      "          'fare': 1,\n",
      "          'appropriate': 1,\n",
      "          'motions': 1,\n",
      "          'takes': 1,\n",
      "          'tavern': 1,\n",
      "          'full': 1,\n",
      "          'thugs': 1,\n",
      "          'bests': 1,\n",
      "          'singlehanded': 1,\n",
      "          'fights': 1,\n",
      "          'gang': 1,\n",
      "          'febres': 1,\n",
      "          'henchmen': 1,\n",
      "          'aboard': 1,\n",
      "          'speeding': 1,\n",
      "          'coach': 1,\n",
      "          'protect': 1,\n",
      "          'obligatory': 1,\n",
      "          'branches': 1,\n",
      "          'hanging': 1,\n",
      "          'road': 1,\n",
      "          'lifelong': 1,\n",
      "          'enemy': 1,\n",
      "          'murdered': 1,\n",
      "          'folks': 1,\n",
      "          'years': 1,\n",
      "          'routine': 1,\n",
      "          'stuff': 1,\n",
      "          'renowned': 1,\n",
      "          'developed': 1,\n",
      "          'masters': 1,\n",
      "          'artificial': 1,\n",
      "          'effect': 1,\n",
      "          'leap': 1,\n",
      "          'defying': 1,\n",
      "          'gravity': 1,\n",
      "          'walls': 1,\n",
      "          'works': 1,\n",
      "          'scifi': 1,\n",
      "          'film': 1,\n",
      "          'classical': 1,\n",
      "          'fantasy': 1,\n",
      "          'calls': 1,\n",
      "          'attention': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'swear': 1,\n",
      "          'saw': 1,\n",
      "          'stunt': 1,\n",
      "          'make': 1,\n",
      "          'believer': 1,\n",
      "          'disappointed': 1,\n",
      "          'nwith': 1,\n",
      "          'run': 1,\n",
      "          '106': 1,\n",
      "          'minutes': 1,\n",
      "          '80': 1,\n",
      "          'give': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'batman': 10,\n",
      "          'movie': 4,\n",
      "          'nnot': 3,\n",
      "          'first': 3,\n",
      "          'would': 3,\n",
      "          'robin': 3,\n",
      "          'freeze': 3,\n",
      "          'nmr': 3,\n",
      "          'might': 3,\n",
      "          'poison': 3,\n",
      "          'ivy': 3,\n",
      "          'world': 3,\n",
      "          'n': 3,\n",
      "          'think': 2,\n",
      "          'maybe': 2,\n",
      "          'two': 2,\n",
      "          'one': 2,\n",
      "          'goes': 2,\n",
      "          'installment': 2,\n",
      "          'example': 2,\n",
      "          'scene': 2,\n",
      "          'museum': 2,\n",
      "          'schwarzenegger': 2,\n",
      "          'diamond': 2,\n",
      "          'thugs': 2,\n",
      "          'hockey': 2,\n",
      "          'ni': 2,\n",
      "          'three': 2,\n",
      "          'movies': 2,\n",
      "          'actually': 2,\n",
      "          'seems': 2,\n",
      "          'road': 2,\n",
      "          'fire': 2,\n",
      "          'gotham': 2,\n",
      "          'city': 2,\n",
      "          'place': 2,\n",
      "          'plot': 2,\n",
      "          'nas': 2,\n",
      "          'villains': 2,\n",
      "          'story': 2,\n",
      "          'us': 2,\n",
      "          'ever': 2,\n",
      "          'makes': 2,\n",
      "          'time': 1,\n",
      "          'series': 1,\n",
      "          'put': 1,\n",
      "          'rest': 1,\n",
      "          'films': 1,\n",
      "          'unsettling': 1,\n",
      "          'insight': 1,\n",
      "          'really': 1,\n",
      "          'take': 1,\n",
      "          'someone': 1,\n",
      "          'make': 1,\n",
      "          'superhero': 1,\n",
      "          'abandoned': 1,\n",
      "          'throws': 1,\n",
      "          'lingering': 1,\n",
      "          'realism': 1,\n",
      "          'window': 1,\n",
      "          'allout': 1,\n",
      "          'camp': 1,\n",
      "          'traces': 1,\n",
      "          'selfmocking': 1,\n",
      "          'restraint': 1,\n",
      "          'relatively': 1,\n",
      "          'lighthearted': 1,\n",
      "          'third': 1,\n",
      "          'nlet': 1,\n",
      "          'give': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'chris': 1,\n",
      "          'odonnell': 1,\n",
      "          'summoned': 1,\n",
      "          'literally': 1,\n",
      "          'turned': 1,\n",
      "          'ice': 1,\n",
      "          'mr': 1,\n",
      "          'arnold': 1,\n",
      "          'attempt': 1,\n",
      "          'steal': 1,\n",
      "          'freezes': 1,\n",
      "          'armed': 1,\n",
      "          'none': 1,\n",
      "          'sticks': 1,\n",
      "          'problem': 1,\n",
      "          'heroes': 1,\n",
      "          'automatic': 1,\n",
      "          'skates': 1,\n",
      "          'shoot': 1,\n",
      "          'shoes': 1,\n",
      "          'point': 1,\n",
      "          'manages': 1,\n",
      "          'get': 1,\n",
      "          'hold': 1,\n",
      "          'stick': 1,\n",
      "          'grabs': 1,\n",
      "          'stickhandles': 1,\n",
      "          'expected': 1,\n",
      "          'airplanestyle': 1,\n",
      "          'farce': 1,\n",
      "          'dont': 1,\n",
      "          'thats': 1,\n",
      "          'supposed': 1,\n",
      "          'nafter': 1,\n",
      "          'previous': 1,\n",
      "          'fairly': 1,\n",
      "          'realistic': 1,\n",
      "          'standards': 1,\n",
      "          'superheroaction': 1,\n",
      "          'genre': 1,\n",
      "          'kept': 1,\n",
      "          'corny': 1,\n",
      "          'deathdefying': 1,\n",
      "          'stunts': 1,\n",
      "          'minimum': 1,\n",
      "          'playing': 1,\n",
      "          'obligatory': 1,\n",
      "          'cheesiness': 1,\n",
      "          'least': 1,\n",
      "          'amount': 1,\n",
      "          'irony': 1,\n",
      "          'list': 1,\n",
      "          'nrobin': 1,\n",
      "          'holds': 1,\n",
      "          'onto': 1,\n",
      "          'outside': 1,\n",
      "          'flying': 1,\n",
      "          'rocket': 1,\n",
      "          'ship': 1,\n",
      "          '30': 1,\n",
      "          '000': 1,\n",
      "          'feet': 1,\n",
      "          'high': 1,\n",
      "          'atmosphere': 1,\n",
      "          'climbing': 1,\n",
      "          'door': 1,\n",
      "          'save': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'leap': 1,\n",
      "          'skyscraper': 1,\n",
      "          'survive': 1,\n",
      "          'landing': 1,\n",
      "          'small': 1,\n",
      "          'pond': 1,\n",
      "          'na': 1,\n",
      "          'dominating': 1,\n",
      "          'mad': 1,\n",
      "          'scientist': 1,\n",
      "          'lives': 1,\n",
      "          'fortress': 1,\n",
      "          'stolen': 1,\n",
      "          'old': 1,\n",
      "          'heman': 1,\n",
      "          'cartoons': 1,\n",
      "          'nmy': 1,\n",
      "          'favorite': 1,\n",
      "          'batgirl': 1,\n",
      "          'alicia': 1,\n",
      "          'silverstone': 1,\n",
      "          'gets': 1,\n",
      "          'race': 1,\n",
      "          'motorcycle': 1,\n",
      "          'come': 1,\n",
      "          'clever': 1,\n",
      "          'notion': 1,\n",
      "          'dousing': 1,\n",
      "          'gasoline': 1,\n",
      "          'setting': 1,\n",
      "          'distract': 1,\n",
      "          'bad': 1,\n",
      "          'wouldnt': 1,\n",
      "          'police': 1,\n",
      "          'nnotice': 1,\n",
      "          'knew': 1,\n",
      "          'crazy': 1,\n",
      "          'anarchic': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'creators': 1,\n",
      "          'obeying': 1,\n",
      "          'unwritten': 1,\n",
      "          'rule': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'lines': 1,\n",
      "          'successive': 1,\n",
      "          'protagonists': 1,\n",
      "          'werent': 1,\n",
      "          'enough': 1,\n",
      "          'weighs': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'side': 1,\n",
      "          'failing': 1,\n",
      "          'health': 1,\n",
      "          'bruce': 1,\n",
      "          'waynes': 1,\n",
      "          'butler': 1,\n",
      "          'alfred': 1,\n",
      "          'michael': 1,\n",
      "          'gough': 1,\n",
      "          'seemed': 1,\n",
      "          'poignant': 1,\n",
      "          'wasnt': 1,\n",
      "          'surrounded': 1,\n",
      "          'much': 1,\n",
      "          'silliness': 1,\n",
      "          'well': 1,\n",
      "          'several': 1,\n",
      "          'scenes': 1,\n",
      "          'elle': 1,\n",
      "          'macpherson': 1,\n",
      "          'bruces': 1,\n",
      "          'girlfriend': 1,\n",
      "          'serve': 1,\n",
      "          'purpose': 1,\n",
      "          'remind': 1,\n",
      "          'nall': 1,\n",
      "          'semiexcusable': 1,\n",
      "          'interesting': 1,\n",
      "          'entertaining': 1,\n",
      "          'isnt': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'kind': 1,\n",
      "          'boring': 1,\n",
      "          'pale': 1,\n",
      "          'comparison': 1,\n",
      "          'past': 1,\n",
      "          'baddies': 1,\n",
      "          'jack': 1,\n",
      "          'nicholsons': 1,\n",
      "          'joker': 1,\n",
      "          'danny': 1,\n",
      "          'devitos': 1,\n",
      "          'penguin': 1,\n",
      "          'ntheir': 1,\n",
      "          'evil': 1,\n",
      "          'predictable': 1,\n",
      "          'pronounces': 1,\n",
      "          'words': 1,\n",
      "          'today': 1,\n",
      "          'tomorrow': 1,\n",
      "          'lamebrained': 1,\n",
      "          'didnt': 1,\n",
      "          'occur': 1,\n",
      "          'freezing': 1,\n",
      "          'entire': 1,\n",
      "          'kill': 1,\n",
      "          'precious': 1,\n",
      "          'plants': 1,\n",
      "          'nand': 1,\n",
      "          'robins': 1,\n",
      "          'constant': 1,\n",
      "          'challenging': 1,\n",
      "          'mostly': 1,\n",
      "          'look': 1,\n",
      "          'bullheaded': 1,\n",
      "          'stupid': 1,\n",
      "          'wonder': 1,\n",
      "          'taken': 1,\n",
      "          'partner': 1,\n",
      "          'nstrip': 1,\n",
      "          'away': 1,\n",
      "          'stars': 1,\n",
      "          'fancy': 1,\n",
      "          'set': 1,\n",
      "          'design': 1,\n",
      "          'status': 1,\n",
      "          'another': 1,\n",
      "          'barely': 1,\n",
      "          'passable': 1,\n",
      "          'summer': 1,\n",
      "          'action': 1,\n",
      "          'flick': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sagemiller': 6,\n",
      "          'movie': 5,\n",
      "          'cassie': 5,\n",
      "          'sean': 4,\n",
      "          'one': 4,\n",
      "          'nand': 4,\n",
      "          'get': 4,\n",
      "          'survivors': 3,\n",
      "          'dushku': 3,\n",
      "          'matt': 3,\n",
      "          'movies': 3,\n",
      "          'character': 3,\n",
      "          'nthe': 3,\n",
      "          'opinion': 2,\n",
      "          'explanation': 2,\n",
      "          'soul': 2,\n",
      "          'im': 2,\n",
      "          'full': 2,\n",
      "          'four': 2,\n",
      "          'friends': 2,\n",
      "          'bring': 2,\n",
      "          'dating': 2,\n",
      "          'wes': 2,\n",
      "          'bentley': 2,\n",
      "          'affleck': 2,\n",
      "          'party': 2,\n",
      "          'nas': 2,\n",
      "          'visions': 2,\n",
      "          'material': 2,\n",
      "          'nwhen': 2,\n",
      "          'ncarpenters': 2,\n",
      "          'camera': 2,\n",
      "          'recently': 2,\n",
      "          'nthis': 2,\n",
      "          'lamest': 2,\n",
      "          'second': 2,\n",
      "          'main': 2,\n",
      "          'film': 2,\n",
      "          'even': 2,\n",
      "          'together': 2,\n",
      "          'shower': 2,\n",
      "          'getting': 2,\n",
      "          'covered': 2,\n",
      "          'paint': 2,\n",
      "          'nwhy': 2,\n",
      "          'clothes': 2,\n",
      "          'would': 2,\n",
      "          'see': 2,\n",
      "          'reviewers': 1,\n",
      "          'important': 1,\n",
      "          'task': 1,\n",
      "          'offer': 1,\n",
      "          'nbut': 1,\n",
      "          'critical': 1,\n",
      "          'rage': 1,\n",
      "          'review': 1,\n",
      "          'liable': 1,\n",
      "          'turn': 1,\n",
      "          'venomous': 1,\n",
      "          'uncontrollable': 1,\n",
      "          'rant': 1,\n",
      "          'obligations': 1,\n",
      "          'damned': 1,\n",
      "          'nhowever': 1,\n",
      "          'protocol': 1,\n",
      "          'forces': 1,\n",
      "          'otherwise': 1,\n",
      "          'nsoul': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'collegebound': 1,\n",
      "          'cassandra': 1,\n",
      "          'melissa': 1,\n",
      "          'sweet': 1,\n",
      "          'innocent': 1,\n",
      "          'nparty': 1,\n",
      "          'girl': 1,\n",
      "          'annabel': 1,\n",
      "          'eliza': 1,\n",
      "          'worldweary': 1,\n",
      "          'harvard': 1,\n",
      "          'student': 1,\n",
      "          'nmatt': 1,\n",
      "          'still': 1,\n",
      "          'feelings': 1,\n",
      "          'casey': 1,\n",
      "          'ndriving': 1,\n",
      "          'back': 1,\n",
      "          'creepy': 1,\n",
      "          'gothic': 1,\n",
      "          'quartet': 1,\n",
      "          'gets': 1,\n",
      "          'horrific': 1,\n",
      "          'car': 1,\n",
      "          'crash': 1,\n",
      "          'nsean': 1,\n",
      "          'dies': 1,\n",
      "          'leaving': 1,\n",
      "          'crestfallen': 1,\n",
      "          'guilty': 1,\n",
      "          'made': 1,\n",
      "          'worse': 1,\n",
      "          'saw': 1,\n",
      "          'kiss': 1,\n",
      "          'minutes': 1,\n",
      "          'revealed': 1,\n",
      "          'love': 1,\n",
      "          'mopes': 1,\n",
      "          'classes': 1,\n",
      "          'sees': 1,\n",
      "          'ghost': 1,\n",
      "          'place': 1,\n",
      "          'urging': 1,\n",
      "          'follow': 1,\n",
      "          'nalong': 1,\n",
      "          'plagued': 1,\n",
      "          'ghastly': 1,\n",
      "          'also': 1,\n",
      "          'followed': 1,\n",
      "          'thugs': 1,\n",
      "          'strange': 1,\n",
      "          'nannabel': 1,\n",
      "          'try': 1,\n",
      "          'calming': 1,\n",
      "          'shares': 1,\n",
      "          'casss': 1,\n",
      "          'nshe': 1,\n",
      "          'figure': 1,\n",
      "          'purgatory': 1,\n",
      "          'nrarely': 1,\n",
      "          'seen': 1,\n",
      "          'director': 1,\n",
      "          'thoroughly': 1,\n",
      "          'mishandle': 1,\n",
      "          'nin': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'steve': 1,\n",
      "          'carpenter': 1,\n",
      "          'nothing': 1,\n",
      "          'provoke': 1,\n",
      "          'audience': 1,\n",
      "          'feeling': 1,\n",
      "          'emotion': 1,\n",
      "          'camerawork': 1,\n",
      "          'isnt': 1,\n",
      "          'pedestrian': 1,\n",
      "          'clich': 1,\n",
      "          'need': 1,\n",
      "          'closeups': 1,\n",
      "          'following': 1,\n",
      "          'behind': 1,\n",
      "          'drain': 1,\n",
      "          'anticipation': 1,\n",
      "          'nwe': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'look': 1,\n",
      "          'surprised': 1,\n",
      "          'sense': 1,\n",
      "          'scary': 1,\n",
      "          'atmosphere': 1,\n",
      "          'done': 1,\n",
      "          'well': 1,\n",
      "          'others': 1,\n",
      "          'nowhere': 1,\n",
      "          'found': 1,\n",
      "          'script': 1,\n",
      "          'relies': 1,\n",
      "          'random': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'minimum': 1,\n",
      "          'logic': 1,\n",
      "          'loads': 1,\n",
      "          'laziness': 1,\n",
      "          'ending': 1,\n",
      "          'features': 1,\n",
      "          'providing': 1,\n",
      "          'plot': 1,\n",
      "          'another': 1,\n",
      "          'screenwriting': 1,\n",
      "          'devices': 1,\n",
      "          'around': 1,\n",
      "          'device': 1,\n",
      "          'course': 1,\n",
      "          'oh': 1,\n",
      "          'dream': 1,\n",
      "          'resolution': 1,\n",
      "          'guess': 1,\n",
      "          'nnot': 1,\n",
      "          'body': 1,\n",
      "          'constantly': 1,\n",
      "          'running': 1,\n",
      "          'fear': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'anything': 1,\n",
      "          'worthwhile': 1,\n",
      "          'nsince': 1,\n",
      "          'theres': 1,\n",
      "          'captivating': 1,\n",
      "          'dialogue': 1,\n",
      "          'chemistry': 1,\n",
      "          'exists': 1,\n",
      "          'anywhere': 1,\n",
      "          'nthats': 1,\n",
      "          'huge': 1,\n",
      "          'problem': 1,\n",
      "          'since': 1,\n",
      "          'characters': 1,\n",
      "          'supposed': 1,\n",
      "          'couples': 1,\n",
      "          'ncarpenter': 1,\n",
      "          'cant': 1,\n",
      "          'smutty': 1,\n",
      "          'scenes': 1,\n",
      "          'right': 1,\n",
      "          'becoming': 1,\n",
      "          'prevalent': 1,\n",
      "          'pg13': 1,\n",
      "          'like': 1,\n",
      "          'recut': 1,\n",
      "          'r': 1,\n",
      "          'rating': 1,\n",
      "          'kids': 1,\n",
      "          'seats': 1,\n",
      "          'ned': 1,\n",
      "          'dance': 1,\n",
      "          'club': 1,\n",
      "          'rarely': 1,\n",
      "          'shows': 1,\n",
      "          'shot': 1,\n",
      "          'never': 1,\n",
      "          'keeps': 1,\n",
      "          'longer': 1,\n",
      "          'relating': 1,\n",
      "          'michael': 1,\n",
      "          'baystyle': 1,\n",
      "          'quick': 1,\n",
      "          'cuts': 1,\n",
      "          'take': 1,\n",
      "          'theyre': 1,\n",
      "          'fully': 1,\n",
      "          'clothed': 1,\n",
      "          'nregardless': 1,\n",
      "          'sexiness': 1,\n",
      "          'scene': 1,\n",
      "          'undercut': 1,\n",
      "          'stupidity': 1,\n",
      "          'wouldnt': 1,\n",
      "          'wash': 1,\n",
      "          'sink': 1,\n",
      "          'washing': 1,\n",
      "          'machine': 1,\n",
      "          'nwhat': 1,\n",
      "          'werent': 1,\n",
      "          'latex': 1,\n",
      "          'cast': 1,\n",
      "          'better': 1,\n",
      "          'future': 1,\n",
      "          'wise': 1,\n",
      "          'leave': 1,\n",
      "          'resumes': 1,\n",
      "          'ni': 1,\n",
      "          'felt': 1,\n",
      "          'sorry': 1,\n",
      "          'ive': 1,\n",
      "          'liked': 1,\n",
      "          'great': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'ndushku': 1,\n",
      "          'possesses': 1,\n",
      "          'alluring': 1,\n",
      "          'femme': 1,\n",
      "          'fetale': 1,\n",
      "          'quality': 1,\n",
      "          'got': 1,\n",
      "          'stop': 1,\n",
      "          'taking': 1,\n",
      "          'roles': 1,\n",
      "          'belonging': 1,\n",
      "          'rose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'star': 1,\n",
      "          'aforementioned': 1,\n",
      "          'want': 1,\n",
      "          'plays': 1,\n",
      "          'person': 1,\n",
      "          'object': 1,\n",
      "          'gawking': 1,\n",
      "          'luke': 1,\n",
      "          'wilsons': 1,\n",
      "          'role': 1,\n",
      "          'priest': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'hes': 1,\n",
      "          'anderson': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'awful': 1,\n",
      "          'feel': 1,\n",
      "          'compelled': 1,\n",
      "          'knock': 1,\n",
      "          'doors': 1,\n",
      "          'warn': 1,\n",
      "          'people': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ben': 7,\n",
      "          'analyze': 6,\n",
      "          'crystal': 6,\n",
      "          'de': 5,\n",
      "          'niro': 5,\n",
      "          'film': 5,\n",
      "          'paul': 5,\n",
      "          'first': 4,\n",
      "          'time': 4,\n",
      "          'even': 4,\n",
      "          'mostly': 4,\n",
      "          'director': 3,\n",
      "          'billy': 3,\n",
      "          'lisa': 3,\n",
      "          'ramis': 3,\n",
      "          'gets': 3,\n",
      "          'one': 3,\n",
      "          'last': 3,\n",
      "          'two': 3,\n",
      "          'kudrows': 3,\n",
      "          'cast': 2,\n",
      "          'could': 2,\n",
      "          'kudrow': 2,\n",
      "          'opposite': 2,\n",
      "          'sex': 2,\n",
      "          'well': 2,\n",
      "          'funny': 2,\n",
      "          'running': 2,\n",
      "          'away': 2,\n",
      "          'think': 2,\n",
      "          'finally': 2,\n",
      "          'life': 2,\n",
      "          'get': 2,\n",
      "          'girlfriend': 2,\n",
      "          'laura': 2,\n",
      "          'little': 2,\n",
      "          'mob': 2,\n",
      "          'mafia': 2,\n",
      "          'vitti': 2,\n",
      "          'robert': 2,\n",
      "          'help': 2,\n",
      "          'wedding': 2,\n",
      "          'become': 2,\n",
      "          'n': 2,\n",
      "          'thought': 2,\n",
      "          'writers': 2,\n",
      "          'comic': 2,\n",
      "          'movie': 2,\n",
      "          'nothing': 2,\n",
      "          'support': 2,\n",
      "          'work': 2,\n",
      "          'supporting': 2,\n",
      "          'characters': 2,\n",
      "          'role': 2,\n",
      "          'fellow': 2,\n",
      "          'aniston': 2,\n",
      "          'place': 2,\n",
      "          'character': 2,\n",
      "          'scene': 2,\n",
      "          'reading': 1,\n",
      "          'new': 1,\n",
      "          'mobster': 1,\n",
      "          'comedy': 1,\n",
      "          'asked': 1,\n",
      "          'miss': 1,\n",
      "          'nrobert': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'raging': 1,\n",
      "          'bull': 1,\n",
      "          'city': 1,\n",
      "          'slickers': 1,\n",
      "          'harold': 1,\n",
      "          'national': 1,\n",
      "          'lampoons': 1,\n",
      "          'vacation': 1,\n",
      "          'nthese': 1,\n",
      "          'usually': 1,\n",
      "          'reliable': 1,\n",
      "          'filmmakers': 1,\n",
      "          'okay': 1,\n",
      "          'sizable': 1,\n",
      "          'slump': 1,\n",
      "          'lately': 1,\n",
      "          'tellingly': 1,\n",
      "          'halfhour': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'ticked': 1,\n",
      "          'began': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'rewound': 1,\n",
      "          'replayed': 1,\n",
      "          'another': 1,\n",
      "          'twoandahalf': 1,\n",
      "          'times': 1,\n",
      "          'nthe': 1,\n",
      "          'obtained': 1,\n",
      "          'clever': 1,\n",
      "          'premise': 1,\n",
      "          'idea': 1,\n",
      "          'progressively': 1,\n",
      "          'becomes': 1,\n",
      "          'repetitive': 1,\n",
      "          'stopped': 1,\n",
      "          'enjoying': 1,\n",
      "          'caring': 1,\n",
      "          'happening': 1,\n",
      "          'screen': 1,\n",
      "          'nmiddleaged': 1,\n",
      "          'psychoanalyst': 1,\n",
      "          'sobels': 1,\n",
      "          'going': 1,\n",
      "          'nalthough': 1,\n",
      "          'never': 1,\n",
      "          'gotten': 1,\n",
      "          'along': 1,\n",
      "          'uncaring': 1,\n",
      "          'parents': 1,\n",
      "          'especially': 1,\n",
      "          'father': 1,\n",
      "          'also': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'easygoing': 1,\n",
      "          'teenage': 1,\n",
      "          'son': 1,\n",
      "          'kyle': 1,\n",
      "          'sabihy': 1,\n",
      "          'travel': 1,\n",
      "          'miami': 1,\n",
      "          'married': 1,\n",
      "          'tv': 1,\n",
      "          'news': 1,\n",
      "          'reporter': 1,\n",
      "          'nin': 1,\n",
      "          'flash': 1,\n",
      "          'however': 1,\n",
      "          'suddenly': 1,\n",
      "          'sees': 1,\n",
      "          'plans': 1,\n",
      "          'ruined': 1,\n",
      "          'accidentally': 1,\n",
      "          'hits': 1,\n",
      "          'car': 1,\n",
      "          'subsequently': 1,\n",
      "          'paid': 1,\n",
      "          'visit': 1,\n",
      "          'famed': 1,\n",
      "          'guy': 1,\n",
      "          'desperately': 1,\n",
      "          'wants': 1,\n",
      "          'counseling': 1,\n",
      "          'though': 1,\n",
      "          'wont': 1,\n",
      "          'admit': 1,\n",
      "          'anxiety': 1,\n",
      "          'attacks': 1,\n",
      "          'nben': 1,\n",
      "          'tries': 1,\n",
      "          'back': 1,\n",
      "          'plot': 1,\n",
      "          'complicated': 1,\n",
      "          'follows': 1,\n",
      "          'ends': 1,\n",
      "          'man': 1,\n",
      "          'dropping': 1,\n",
      "          'eight': 1,\n",
      "          'stories': 1,\n",
      "          'death': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'matter': 1,\n",
      "          'go': 1,\n",
      "          'involved': 1,\n",
      "          'bens': 1,\n",
      "          'potentially': 1,\n",
      "          'happy': 1,\n",
      "          'danger': 1,\n",
      "          'laughs': 1,\n",
      "          'sprinkled': 1,\n",
      "          'throughout': 1,\n",
      "          'half': 1,\n",
      "          'always': 1,\n",
      "          'nagging': 1,\n",
      "          'peter': 1,\n",
      "          'tolan': 1,\n",
      "          'kenneth': 1,\n",
      "          'lonergan': 1,\n",
      "          'done': 1,\n",
      "          'joke': 1,\n",
      "          'lightly': 1,\n",
      "          'spoofing': 1,\n",
      "          'serious': 1,\n",
      "          'past': 1,\n",
      "          'roles': 1,\n",
      "          'terrorizing': 1,\n",
      "          'becoming': 1,\n",
      "          'buddies': 1,\n",
      "          'tiresomely': 1,\n",
      "          'recycled': 1,\n",
      "          'duration': 1,\n",
      "          '106minute': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'use': 1,\n",
      "          'adjective': 1,\n",
      "          'describe': 1,\n",
      "          'topform': 1,\n",
      "          'whole': 1,\n",
      "          'weighed': 1,\n",
      "          'directly': 1,\n",
      "          'shoulders': 1,\n",
      "          'else': 1,\n",
      "          'including': 1,\n",
      "          'substantial': 1,\n",
      "          'plotline': 1,\n",
      "          'nsince': 1,\n",
      "          'bills': 1,\n",
      "          'three': 1,\n",
      "          'youd': 1,\n",
      "          'would': 1,\n",
      "          'able': 1,\n",
      "          'together': 1,\n",
      "          'fix': 1,\n",
      "          'noticably': 1,\n",
      "          'large': 1,\n",
      "          'flaws': 1,\n",
      "          'must': 1,\n",
      "          'autopilot': 1,\n",
      "          'none': 1,\n",
      "          'disappointing': 1,\n",
      "          'wasted': 1,\n",
      "          'opportunities': 1,\n",
      "          'way': 1,\n",
      "          'deals': 1,\n",
      "          'next': 1,\n",
      "          'arent': 1,\n",
      "          'given': 1,\n",
      "          'multidimensional': 1,\n",
      "          'attempt': 1,\n",
      "          'develop': 1,\n",
      "          'ncoming': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'years': 1,\n",
      "          'best': 1,\n",
      "          'films': 1,\n",
      "          'clockwatchers': 1,\n",
      "          'throwaway': 1,\n",
      "          'incredible': 1,\n",
      "          'step': 1,\n",
      "          'nsure': 1,\n",
      "          'friend': 1,\n",
      "          'jennifer': 1,\n",
      "          'thing': 1,\n",
      "          'weeks': 1,\n",
      "          'ago': 1,\n",
      "          'office': 1,\n",
      "          'space': 1,\n",
      "          'least': 1,\n",
      "          'got': 1,\n",
      "          'spend': 1,\n",
      "          'nkudrow': 1,\n",
      "          'meanwhile': 1,\n",
      "          'stands': 1,\n",
      "          'around': 1,\n",
      "          'doubt': 1,\n",
      "          'wondering': 1,\n",
      "          'agreed': 1,\n",
      "          'appear': 1,\n",
      "          'nchazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'rival': 1,\n",
      "          'gangster': 1,\n",
      "          'primo': 1,\n",
      "          'fares': 1,\n",
      "          'worse': 1,\n",
      "          'plays': 1,\n",
      "          'like': 1,\n",
      "          'afterthought': 1,\n",
      "          'actual': 1,\n",
      "          'nfinally': 1,\n",
      "          'molly': 1,\n",
      "          'shannon': 1,\n",
      "          'rising': 1,\n",
      "          'star': 1,\n",
      "          'member': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'rousingly': 1,\n",
      "          'hilarious': 1,\n",
      "          'onescene': 1,\n",
      "          'cameo': 1,\n",
      "          'right': 1,\n",
      "          'beginning': 1,\n",
      "          'crystals': 1,\n",
      "          'patients': 1,\n",
      "          'completely': 1,\n",
      "          'disappears': 1,\n",
      "          'ntoo': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'bad': 1,\n",
      "          'considering': 1,\n",
      "          'actors': 1,\n",
      "          'surely': 1,\n",
      "          'proven': 1,\n",
      "          'abilities': 1,\n",
      "          'nonce': 1,\n",
      "          'approached': 1,\n",
      "          'second': 1,\n",
      "          'leaving': 1,\n",
      "          'standing': 1,\n",
      "          'alone': 1,\n",
      "          'altar': 1,\n",
      "          'thoroughly': 1,\n",
      "          'annoyed': 1,\n",
      "          'story': 1,\n",
      "          'gone': 1,\n",
      "          'lost': 1,\n",
      "          'respect': 1,\n",
      "          'supposed': 1,\n",
      "          'sympathize': 1,\n",
      "          'nafterwards': 1,\n",
      "          'climactic': 1,\n",
      "          'posing': 1,\n",
      "          'boss': 1,\n",
      "          'depressed': 1,\n",
      "          'became': 1,\n",
      "          'real': 1,\n",
      "          'laughfree': 1,\n",
      "          'deadzone': 1,\n",
      "          'losing': 1,\n",
      "          'remaining': 1,\n",
      "          'punches': 1,\n",
      "          'proves': 1,\n",
      "          'talent': 1,\n",
      "          'certainly': 1,\n",
      "          'written': 1,\n",
      "          'material': 1,\n",
      "          'isnt': 1,\n",
      "          'level': 1,\n",
      "          'virtually': 1,\n",
      "          'left': 1,\n",
      "          'vacuum': 1,\n",
      "          'thin': 1,\n",
      "          'air': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 13,\n",
      "          'rules': 7,\n",
      "          'nthe': 7,\n",
      "          'nit': 5,\n",
      "          'hodges': 4,\n",
      "          'childers': 4,\n",
      "          'story': 4,\n",
      "          'men': 4,\n",
      "          'u': 4,\n",
      "          'plot': 4,\n",
      "          'director': 4,\n",
      "          'middle': 3,\n",
      "          'east': 3,\n",
      "          'stories': 3,\n",
      "          'nthis': 3,\n",
      "          'jones': 3,\n",
      "          'life': 3,\n",
      "          'nchilders': 3,\n",
      "          'yemen': 3,\n",
      "          'simply': 3,\n",
      "          'questions': 3,\n",
      "          'result': 3,\n",
      "          'arab': 3,\n",
      "          'ni': 3,\n",
      "          'silly': 3,\n",
      "          'charges': 3,\n",
      "          'objectivity': 3,\n",
      "          'find': 3,\n",
      "          'guilty': 3,\n",
      "          'events': 2,\n",
      "          'hollywood': 2,\n",
      "          'get': 2,\n",
      "          'telling': 2,\n",
      "          'marine': 2,\n",
      "          'jackson': 2,\n",
      "          'nthey': 2,\n",
      "          'side': 2,\n",
      "          'unarmed': 2,\n",
      "          'war': 2,\n",
      "          'make': 2,\n",
      "          'ben': 2,\n",
      "          'fire': 2,\n",
      "          'crowd': 2,\n",
      "          'yemeni': 2,\n",
      "          'immediately': 2,\n",
      "          'accused': 2,\n",
      "          'murder': 2,\n",
      "          'civilians': 2,\n",
      "          'engagement': 2,\n",
      "          'stereotypical': 2,\n",
      "          'obvious': 2,\n",
      "          'something': 2,\n",
      "          'accusations': 2,\n",
      "          'ends': 2,\n",
      "          'even': 2,\n",
      "          'happens': 2,\n",
      "          'good': 2,\n",
      "          'breaking': 2,\n",
      "          'racism': 2,\n",
      "          'william': 2,\n",
      "          'friedklin': 2,\n",
      "          'filmmaking': 2,\n",
      "          'lack': 2,\n",
      "          'order': 2,\n",
      "          'na': 2,\n",
      "          'lot': 2,\n",
      "          'one': 2,\n",
      "          'could': 2,\n",
      "          'offensive': 2,\n",
      "          'nmany': 2,\n",
      "          'never': 2,\n",
      "          'nothing': 2,\n",
      "          'neither': 2,\n",
      "          'producers': 2,\n",
      "          'screenwriter': 2,\n",
      "          'namericas': 2,\n",
      "          'think': 2,\n",
      "          'nthough': 2,\n",
      "          'scenes': 2,\n",
      "          'absolutely': 2,\n",
      "          'great': 2,\n",
      "          'outside': 2,\n",
      "          'actors': 2,\n",
      "          'like': 2,\n",
      "          'including': 2,\n",
      "          'time': 2,\n",
      "          'non': 2,\n",
      "          'see': 1,\n",
      "          'terrible': 1,\n",
      "          'unfold': 1,\n",
      "          'eyes': 1,\n",
      "          'moment': 1,\n",
      "          'doesnt': 1,\n",
      "          'loose': 1,\n",
      "          'oppertunity': 1,\n",
      "          'involved': 1,\n",
      "          'expressing': 1,\n",
      "          'opinions': 1,\n",
      "          'centers': 1,\n",
      "          'relationship': 1,\n",
      "          'forged': 1,\n",
      "          'throughout': 1,\n",
      "          'adult': 1,\n",
      "          'lifetimes': 1,\n",
      "          'two': 1,\n",
      "          'colonels': 1,\n",
      "          'hays': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'terry': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'fought': 1,\n",
      "          'vietnam': 1,\n",
      "          'saved': 1,\n",
      "          'shooting': 1,\n",
      "          'pow': 1,\n",
      "          'nthats': 1,\n",
      "          'understandable': 1,\n",
      "          'anyway': 1,\n",
      "          'specific': 1,\n",
      "          'circumstances': 1,\n",
      "          'ncertainly': 1,\n",
      "          'complaining': 1,\n",
      "          'nyears': 1,\n",
      "          'pass': 1,\n",
      "          'nhodges': 1,\n",
      "          'whose': 1,\n",
      "          'wounds': 1,\n",
      "          'unfit': 1,\n",
      "          'action': 1,\n",
      "          'gets': 1,\n",
      "          'law': 1,\n",
      "          'degree': 1,\n",
      "          'becomes': 1,\n",
      "          'lawyer': 1,\n",
      "          'respected': 1,\n",
      "          'muchdecorated': 1,\n",
      "          'hero': 1,\n",
      "          'served': 1,\n",
      "          'country': 1,\n",
      "          'sould': 1,\n",
      "          'nbecause': 1,\n",
      "          'excellent': 1,\n",
      "          'record': 1,\n",
      "          'sent': 1,\n",
      "          'rescue': 1,\n",
      "          'american': 1,\n",
      "          'ambassador': 1,\n",
      "          'kingsley': 1,\n",
      "          'cowering': 1,\n",
      "          'embassy': 1,\n",
      "          'assault': 1,\n",
      "          'violent': 1,\n",
      "          'demonstrators': 1,\n",
      "          'snipers': 1,\n",
      "          'blasting': 1,\n",
      "          'rooftops': 1,\n",
      "          'evacuate': 1,\n",
      "          'family': 1,\n",
      "          'protect': 1,\n",
      "          'command': 1,\n",
      "          'nafter': 1,\n",
      "          'three': 1,\n",
      "          'marines': 1,\n",
      "          'die': 1,\n",
      "          'colonel': 1,\n",
      "          'thinks': 1,\n",
      "          'sees': 1,\n",
      "          'ground': 1,\n",
      "          'orders': 1,\n",
      "          'troops': 1,\n",
      "          'shoot': 1,\n",
      "          'firing': 1,\n",
      "          'nmore': 1,\n",
      "          '80': 1,\n",
      "          'women': 1,\n",
      "          'children': 1,\n",
      "          'mowed': 1,\n",
      "          'ordering': 1,\n",
      "          'nhe': 1,\n",
      "          'persuades': 1,\n",
      "          'old': 1,\n",
      "          'friend': 1,\n",
      "          'represent': 1,\n",
      "          'courtroom': 1,\n",
      "          'drama': 1,\n",
      "          'occupies': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'ndid': 1,\n",
      "          'violate': 1,\n",
      "          'authorized': 1,\n",
      "          'military': 1,\n",
      "          'answers': 1,\n",
      "          'inconsistent': 1,\n",
      "          'raises': 1,\n",
      "          'sorts': 1,\n",
      "          '83': 1,\n",
      "          'innocent': 1,\n",
      "          'greater': 1,\n",
      "          'simple': 1,\n",
      "          'trial': 1,\n",
      "          'leaders': 1,\n",
      "          'nwhere': 1,\n",
      "          'n': 1,\n",
      "          'without': 1,\n",
      "          'interesting': 1,\n",
      "          'international': 1,\n",
      "          'arena': 1,\n",
      "          'way': 1,\n",
      "          'akin': 1,\n",
      "          'films': 1,\n",
      "          'already': 1,\n",
      "          'morality': 1,\n",
      "          'ethics': 1,\n",
      "          'nthese': 1,\n",
      "          'pretty': 1,\n",
      "          'heavy': 1,\n",
      "          'also': 1,\n",
      "          'unfair': 1,\n",
      "          'nwhat': 1,\n",
      "          'truly': 1,\n",
      "          'broke': 1,\n",
      "          'decent': 1,\n",
      "          'none': 1,\n",
      "          'earliest': 1,\n",
      "          'apparent': 1,\n",
      "          'problems': 1,\n",
      "          'credibility': 1,\n",
      "          'entire': 1,\n",
      "          'operation': 1,\n",
      "          'may': 1,\n",
      "          'remind': 1,\n",
      "          'us': 1,\n",
      "          'right': 1,\n",
      "          'overdone': 1,\n",
      "          'contrived': 1,\n",
      "          'unrealistic': 1,\n",
      "          'chain': 1,\n",
      "          'happen': 1,\n",
      "          'particular': 1,\n",
      "          'manner': 1,\n",
      "          'proceed': 1,\n",
      "          'cheesy': 1,\n",
      "          'possibly': 1,\n",
      "          'accept': 1,\n",
      "          'reality': 1,\n",
      "          'nthat': 1,\n",
      "          'precisely': 1,\n",
      "          'completely': 1,\n",
      "          'unobjective': 1,\n",
      "          'started': 1,\n",
      "          'finished': 1,\n",
      "          'asked': 1,\n",
      "          'answered': 1,\n",
      "          'parallels': 1,\n",
      "          'referring': 1,\n",
      "          'seems': 1,\n",
      "          'minds': 1,\n",
      "          'contents': 1,\n",
      "          'nis': 1,\n",
      "          'mentality': 1,\n",
      "          'foreign': 1,\n",
      "          'policies': 1,\n",
      "          'role': 1,\n",
      "          'world': 1,\n",
      "          'ncorruption': 1,\n",
      "          'higher': 1,\n",
      "          'circles': 1,\n",
      "          'goes': 1,\n",
      "          'consists': 1,\n",
      "          'countless': 1,\n",
      "          'definable': 1,\n",
      "          'tries': 1,\n",
      "          'everything': 1,\n",
      "          'everyone': 1,\n",
      "          'ironic': 1,\n",
      "          'friedkins': 1,\n",
      "          'probably': 1,\n",
      "          'acclaimed': 1,\n",
      "          'exorcist': 1,\n",
      "          'became': 1,\n",
      "          'rather': 1,\n",
      "          'effective': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'strong': 1,\n",
      "          'many': 1,\n",
      "          'possibilities': 1,\n",
      "          'several': 1,\n",
      "          'bare': 1,\n",
      "          'mark': 1,\n",
      "          'professionalism': 1,\n",
      "          'impressive': 1,\n",
      "          'battle': 1,\n",
      "          'latest': 1,\n",
      "          'engage': 1,\n",
      "          'believe': 1,\n",
      "          'depended': 1,\n",
      "          'scripts': 1,\n",
      "          'talented': 1,\n",
      "          'succeed': 1,\n",
      "          'nits': 1,\n",
      "          'therefore': 1,\n",
      "          'catastrophe': 1,\n",
      "          'characters': 1,\n",
      "          'feel': 1,\n",
      "          'designed': 1,\n",
      "          'unreal': 1,\n",
      "          'merely': 1,\n",
      "          'shadows': 1,\n",
      "          'conflict': 1,\n",
      "          'neven': 1,\n",
      "          'save': 1,\n",
      "          'going': 1,\n",
      "          'act': 1,\n",
      "          'admirably': 1,\n",
      "          'performances': 1,\n",
      "          'script': 1,\n",
      "          'boast': 1,\n",
      "          'roles': 1,\n",
      "          'play': 1,\n",
      "          'blindfolded': 1,\n",
      "          'hand': 1,\n",
      "          'back': 1,\n",
      "          'njackson': 1,\n",
      "          'gray': 1,\n",
      "          'uninteresting': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'kingsly': 1,\n",
      "          'blair': 1,\n",
      "          'underwood': 1,\n",
      "          'guy': 1,\n",
      "          'pearce': 1,\n",
      "          'waiting': 1,\n",
      "          'paychecks': 1,\n",
      "          'come': 1,\n",
      "          'verdict': 1,\n",
      "          'complete': 1,\n",
      "          'reasonable': 1,\n",
      "          'nbut': 1,\n",
      "          'inconclusive': 1,\n",
      "          'often': 1,\n",
      "          'lacks': 1,\n",
      "          'everywhere': 1,\n",
      "          'concerning': 1,\n",
      "          'population': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'dangerously': 1,\n",
      "          'near': 1,\n",
      "          'line': 1,\n",
      "          'racially': 1,\n",
      "          'stephen': 1,\n",
      "          'gaghan': 1,\n",
      "          'went': 1,\n",
      "          'bit': 1,\n",
      "          'far': 1,\n",
      "          'portraying': 1,\n",
      "          'people': 1,\n",
      "          'almost': 1,\n",
      "          'badguys': 1,\n",
      "          'sad': 1,\n",
      "          'since': 1,\n",
      "          'crucial': 1,\n",
      "          'lose': 1,\n",
      "          'proclaim': 1,\n",
      "          'truth': 1,\n",
      "          'nhowever': 1,\n",
      "          'necessary': 1,\n",
      "          'remember': 1,\n",
      "          'muslim': 1,\n",
      "          'terrorists': 1,\n",
      "          'responsible': 1,\n",
      "          'terrorist': 1,\n",
      "          'activity': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'nand': 1,\n",
      "          'coincidence': 1,\n",
      "          'residents': 1,\n",
      "          'constant': 1,\n",
      "          'maximum': 1,\n",
      "          'alert': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'nthe': 6,\n",
      "          'fuller': 4,\n",
      "          'border': 4,\n",
      "          'texas': 4,\n",
      "          'nits': 4,\n",
      "          'brothers': 4,\n",
      "          'store': 4,\n",
      "          'place': 4,\n",
      "          'story': 3,\n",
      "          'richie': 3,\n",
      "          'gecko': 3,\n",
      "          'hostage': 3,\n",
      "          'films': 3,\n",
      "          'way': 3,\n",
      "          'one': 3,\n",
      "          'bank': 3,\n",
      "          'get': 3,\n",
      "          'dusk': 2,\n",
      "          'dawn': 2,\n",
      "          'rodriguez': 2,\n",
      "          'quentin': 2,\n",
      "          'tarantino': 2,\n",
      "          'clooney': 2,\n",
      "          'seth': 2,\n",
      "          'lewis': 2,\n",
      "          'kate': 2,\n",
      "          'keitel': 2,\n",
      "          'jacob': 2,\n",
      "          'liu': 2,\n",
      "          'scott': 2,\n",
      "          'hayek': 2,\n",
      "          'santanico': 2,\n",
      "          'pandemonium': 2,\n",
      "          'sex': 2,\n",
      "          'cheech': 2,\n",
      "          'ranger': 2,\n",
      "          'non': 2,\n",
      "          'fun': 2,\n",
      "          'done': 2,\n",
      "          'vampires': 2,\n",
      "          'psychopath': 2,\n",
      "          'killer': 2,\n",
      "          'also': 2,\n",
      "          'nthey': 2,\n",
      "          'liquor': 2,\n",
      "          'killed': 2,\n",
      "          'motel': 2,\n",
      "          'meet': 2,\n",
      "          'carlos': 2,\n",
      "          'take': 2,\n",
      "          'car': 2,\n",
      "          'father': 2,\n",
      "          'vampire': 2,\n",
      "          'killings': 2,\n",
      "          'script': 2,\n",
      "          'till': 1,\n",
      "          'directoreditor': 1,\n",
      "          'robert': 1,\n",
      "          'screenwriters': 1,\n",
      "          'tarantinorobert': 1,\n",
      "          'kurtzman': 1,\n",
      "          'cinematographer': 1,\n",
      "          'guillermo': 1,\n",
      "          'navarro': 1,\n",
      "          'cast': 1,\n",
      "          'george': 1,\n",
      "          'juliette': 1,\n",
      "          'harvey': 1,\n",
      "          'ernest': 1,\n",
      "          'salma': 1,\n",
      "          'tom': 1,\n",
      "          'savini': 1,\n",
      "          'machine': 1,\n",
      "          'fred': 1,\n",
      "          'williamson': 1,\n",
      "          'frost': 1,\n",
      "          'marin': 1,\n",
      "          'guardchet': 1,\n",
      "          'pussycarlos': 1,\n",
      "          'michael': 1,\n",
      "          'parks': 1,\n",
      "          'brenda': 1,\n",
      "          'hillhouse': 1,\n",
      "          'gloria': 1,\n",
      "          'runtime': 1,\n",
      "          '108': 1,\n",
      "          'dimension': 1,\n",
      "          '1996': 1,\n",
      "          'nreviewed': 1,\n",
      "          'dennis': 1,\n",
      "          'schwartz': 1,\n",
      "          'love': 1,\n",
      "          'hate': 1,\n",
      "          'ni': 1,\n",
      "          'simply': 1,\n",
      "          'hated': 1,\n",
      "          'menu': 1,\n",
      "          'violent': 1,\n",
      "          'feast': 1,\n",
      "          'served': 1,\n",
      "          'charm': 1,\n",
      "          'tongueandcheek': 1,\n",
      "          'manner': 1,\n",
      "          'serial': 1,\n",
      "          'killerhorror': 1,\n",
      "          'farce': 1,\n",
      "          'nonstop': 1,\n",
      "          'overthetop': 1,\n",
      "          'action': 1,\n",
      "          'sleaze': 1,\n",
      "          'involving': 1,\n",
      "          'decapitations': 1,\n",
      "          'biker': 1,\n",
      "          'fights': 1,\n",
      "          'extended': 1,\n",
      "          'gun': 1,\n",
      "          'play': 1,\n",
      "          'array': 1,\n",
      "          'gore': 1,\n",
      "          'seen': 1,\n",
      "          'believed': 1,\n",
      "          'na': 1,\n",
      "          'regales': 1,\n",
      "          'vulgarity': 1,\n",
      "          'campiness': 1,\n",
      "          'bloodandgore': 1,\n",
      "          'goes': 1,\n",
      "          'gloss': 1,\n",
      "          'clich': 1,\n",
      "          'conventional': 1,\n",
      "          'bfilms': 1,\n",
      "          'geared': 1,\n",
      "          'cult': 1,\n",
      "          'crowd': 1,\n",
      "          'make': 1,\n",
      "          'mark': 1,\n",
      "          'plot': 1,\n",
      "          'involves': 1,\n",
      "          'two': 1,\n",
      "          'older': 1,\n",
      "          'professional': 1,\n",
      "          'robber': 1,\n",
      "          'perverted': 1,\n",
      "          'kills': 1,\n",
      "          'pleasure': 1,\n",
      "          'rapist': 1,\n",
      "          'escape': 1,\n",
      "          'jail': 1,\n",
      "          'go': 1,\n",
      "          'killing': 1,\n",
      "          'spree': 1,\n",
      "          'wichita': 1,\n",
      "          'flee': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'robbed': 1,\n",
      "          'number': 1,\n",
      "          'cops': 1,\n",
      "          'taken': 1,\n",
      "          'middleaged': 1,\n",
      "          'teller': 1,\n",
      "          'nin': 1,\n",
      "          'kill': 1,\n",
      "          'clerk': 1,\n",
      "          'burn': 1,\n",
      "          'nstopping': 1,\n",
      "          'flophouse': 1,\n",
      "          'rapes': 1,\n",
      "          'slaughters': 1,\n",
      "          'nthese': 1,\n",
      "          'scenes': 1,\n",
      "          'eye': 1,\n",
      "          'comedy': 1,\n",
      "          'parody': 1,\n",
      "          'thats': 1,\n",
      "          'possible': 1,\n",
      "          'tv': 1,\n",
      "          'news': 1,\n",
      "          'says': 1,\n",
      "          '16': 1,\n",
      "          'far': 1,\n",
      "          'rangers': 1,\n",
      "          'plan': 1,\n",
      "          'mexico': 1,\n",
      "          'give': 1,\n",
      "          'sanctuary': 1,\n",
      "          'thirty': 1,\n",
      "          'percent': 1,\n",
      "          'illegal': 1,\n",
      "          'nwith': 1,\n",
      "          'road': 1,\n",
      "          'blocks': 1,\n",
      "          'searches': 1,\n",
      "          'commandeer': 1,\n",
      "          'motor': 1,\n",
      "          'home': 1,\n",
      "          'vacationing': 1,\n",
      "          'family': 1,\n",
      "          'stopped': 1,\n",
      "          'could': 1,\n",
      "          'sleep': 1,\n",
      "          'real': 1,\n",
      "          'bed': 1,\n",
      "          'nthere': 1,\n",
      "          'resigned': 1,\n",
      "          'minister': 1,\n",
      "          'lost': 1,\n",
      "          'faith': 1,\n",
      "          'ever': 1,\n",
      "          'since': 1,\n",
      "          'wife': 1,\n",
      "          'died': 1,\n",
      "          'accident': 1,\n",
      "          'sexy': 1,\n",
      "          '20yearold': 1,\n",
      "          'innocent': 1,\n",
      "          'daughter': 1,\n",
      "          'shy': 1,\n",
      "          'brother': 1,\n",
      "          'explained': 1,\n",
      "          'happens': 1,\n",
      "          'chinese': 1,\n",
      "          'really': 1,\n",
      "          'becomes': 1,\n",
      "          'bizarre': 1,\n",
      "          'across': 1,\n",
      "          'ready': 1,\n",
      "          'barwhorehouse': 1,\n",
      "          'truckers': 1,\n",
      "          'bikers': 1,\n",
      "          'called': 1,\n",
      "          'titty': 1,\n",
      "          'twister': 1,\n",
      "          'open': 1,\n",
      "          'thus': 1,\n",
      "          'title': 1,\n",
      "          'nheres': 1,\n",
      "          'chance': 1,\n",
      "          'throw': 1,\n",
      "          'convention': 1,\n",
      "          'window': 1,\n",
      "          'absurd': 1,\n",
      "          'turns': 1,\n",
      "          'hangout': 1,\n",
      "          'nit': 1,\n",
      "          'sells': 1,\n",
      "          'patrons': 1,\n",
      "          'exotic': 1,\n",
      "          'stripper': 1,\n",
      "          'alluring': 1,\n",
      "          'strip': 1,\n",
      "          'turning': 1,\n",
      "          'hostages': 1,\n",
      "          'fight': 1,\n",
      "          'keep': 1,\n",
      "          'coming': 1,\n",
      "          'become': 1,\n",
      "          'staple': 1,\n",
      "          'nthis': 1,\n",
      "          'supposedly': 1,\n",
      "          'clever': 1,\n",
      "          'nothing': 1,\n",
      "          'turn': 1,\n",
      "          'though': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'dripping': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'spent': 1,\n",
      "          'finding': 1,\n",
      "          'novel': 1,\n",
      "          'ways': 1,\n",
      "          'showcase': 1,\n",
      "          'nill': 1,\n",
      "          'pass': 1,\n",
      "          'style': 1,\n",
      "          'characters': 1,\n",
      "          'empty': 1,\n",
      "          'easy': 1,\n",
      "          'forget': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'film': 8,\n",
      "          'didnt': 6,\n",
      "          'get': 5,\n",
      "          'hedwig': 5,\n",
      "          'whole': 5,\n",
      "          'ni': 5,\n",
      "          'also': 4,\n",
      "          'musical': 4,\n",
      "          'much': 4,\n",
      "          'films': 4,\n",
      "          '810': 4,\n",
      "          'boy': 3,\n",
      "          'sex': 3,\n",
      "          'states': 3,\n",
      "          'point': 3,\n",
      "          'hisher': 3,\n",
      "          'really': 3,\n",
      "          'man': 3,\n",
      "          'nbut': 3,\n",
      "          'audience': 3,\n",
      "          'many': 3,\n",
      "          'nwhat': 3,\n",
      "          'funny': 3,\n",
      "          'loves': 2,\n",
      "          'american': 2,\n",
      "          'music': 2,\n",
      "          'first': 2,\n",
      "          'confused': 2,\n",
      "          'turns': 2,\n",
      "          'star': 2,\n",
      "          'isnt': 2,\n",
      "          'together': 2,\n",
      "          'band': 2,\n",
      "          'via': 2,\n",
      "          'nthis': 2,\n",
      "          'story': 2,\n",
      "          'john': 2,\n",
      "          'cameron': 2,\n",
      "          'mitchell': 2,\n",
      "          'n': 2,\n",
      "          'sexuality': 2,\n",
      "          'guess': 2,\n",
      "          'expecting': 2,\n",
      "          'nthe': 2,\n",
      "          'somewhat': 2,\n",
      "          'personally': 2,\n",
      "          'left': 2,\n",
      "          'definitely': 2,\n",
      "          'show': 2,\n",
      "          'even': 2,\n",
      "          'elements': 2,\n",
      "          'likely': 2,\n",
      "          'characters': 2,\n",
      "          'care': 2,\n",
      "          'atmosphere': 2,\n",
      "          'either': 2,\n",
      "          'like': 2,\n",
      "          'said': 2,\n",
      "          'nall': 2,\n",
      "          'questions': 2,\n",
      "          'happened': 2,\n",
      "          'main': 2,\n",
      "          'see': 2,\n",
      "          'enjoyed': 2,\n",
      "          'hand': 2,\n",
      "          'joblo': 2,\n",
      "          '510': 2,\n",
      "          'plot': 1,\n",
      "          'little': 1,\n",
      "          'born': 1,\n",
      "          'east': 1,\n",
      "          'germany': 1,\n",
      "          'named': 1,\n",
      "          'hansel': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'gets': 1,\n",
      "          'opportunity': 1,\n",
      "          'meet': 1,\n",
      "          'marry': 1,\n",
      "          'g': 1,\n",
      "          'must': 1,\n",
      "          'change': 1,\n",
      "          'enter': 1,\n",
      "          'nonce': 1,\n",
      "          'married': 1,\n",
      "          'two': 1,\n",
      "          'move': 1,\n",
      "          'quickly': 1,\n",
      "          'thereafter': 1,\n",
      "          'divorce': 1,\n",
      "          'nat': 1,\n",
      "          'starts': 1,\n",
      "          'writing': 1,\n",
      "          'meets': 1,\n",
      "          'another': 1,\n",
      "          'soon': 1,\n",
      "          'nthat': 1,\n",
      "          'back': 1,\n",
      "          'long': 1,\n",
      "          'puts': 1,\n",
      "          'tours': 1,\n",
      "          'seafood': 1,\n",
      "          'restaurants': 1,\n",
      "          'life': 1,\n",
      "          'told': 1,\n",
      "          'flashbacks': 1,\n",
      "          'numbers': 1,\n",
      "          'ncritique': 1,\n",
      "          'artsyfartsy': 1,\n",
      "          'great': 1,\n",
      "          'songs': 1,\n",
      "          'superb': 1,\n",
      "          'performance': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'overthetop': 1,\n",
      "          'symbolism': 1,\n",
      "          'incoherence': 1,\n",
      "          'pretension': 1,\n",
      "          'retain': 1,\n",
      "          'interest': 1,\n",
      "          'way': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'realistic': 1,\n",
      "          'articulate': 1,\n",
      "          'behindthescenes': 1,\n",
      "          'look': 1,\n",
      "          'rise': 1,\n",
      "          'rock': 1,\n",
      "          'roll': 1,\n",
      "          'ambiguous': 1,\n",
      "          'overly': 1,\n",
      "          'poetic': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'struggle': 1,\n",
      "          'identity': 1,\n",
      "          'person': 1,\n",
      "          'planet': 1,\n",
      "          'former': 1,\n",
      "          'going': 1,\n",
      "          'interesting': 1,\n",
      "          'never': 1,\n",
      "          'able': 1,\n",
      "          'involve': 1,\n",
      "          'basic': 1,\n",
      "          'symbolic': 1,\n",
      "          'incongruent': 1,\n",
      "          'nature': 1,\n",
      "          'feeling': 1,\n",
      "          'cold': 1,\n",
      "          'distant': 1,\n",
      "          'tuned': 1,\n",
      "          'certain': 1,\n",
      "          'type': 1,\n",
      "          'nchances': 1,\n",
      "          'fan': 1,\n",
      "          'wall': 1,\n",
      "          'rocky': 1,\n",
      "          'horror': 1,\n",
      "          'picture': 1,\n",
      "          'priscilla': 1,\n",
      "          'queen': 1,\n",
      "          'desert': 1,\n",
      "          'tangled': 1,\n",
      "          'strike': 1,\n",
      "          'fancy': 1,\n",
      "          'ask': 1,\n",
      "          'sing': 1,\n",
      "          'along': 1,\n",
      "          'provide': 1,\n",
      "          'lyrics': 1,\n",
      "          'song': 1,\n",
      "          'onscreen': 1,\n",
      "          'nwell': 1,\n",
      "          'dont': 1,\n",
      "          'mightve': 1,\n",
      "          'looked': 1,\n",
      "          'literally': 1,\n",
      "          'earlier': 1,\n",
      "          'enough': 1,\n",
      "          'delve': 1,\n",
      "          'butterfly': 1,\n",
      "          'represents': 1,\n",
      "          'freedom': 1,\n",
      "          'nside': 1,\n",
      "          'things': 1,\n",
      "          'know': 1,\n",
      "          'unanswered': 1,\n",
      "          'make': 1,\n",
      "          'feel': 1,\n",
      "          'fulfilled': 1,\n",
      "          'hedwigs': 1,\n",
      "          'relationship': 1,\n",
      "          'member': 1,\n",
      "          'beard': 1,\n",
      "          'tommy': 1,\n",
      "          'gnosis': 1,\n",
      "          'end': 1,\n",
      "          'actual': 1,\n",
      "          'sequence': 1,\n",
      "          'fantasy': 1,\n",
      "          'ever': 1,\n",
      "          'lawsuit': 1,\n",
      "          'nand': 1,\n",
      "          'part': 1,\n",
      "          'interested': 1,\n",
      "          'nif': 1,\n",
      "          'idea': 1,\n",
      "          'behind': 1,\n",
      "          'character': 1,\n",
      "          'uncover': 1,\n",
      "          'thats': 1,\n",
      "          'one': 1,\n",
      "          'thing': 1,\n",
      "          'relationships': 1,\n",
      "          'situations': 1,\n",
      "          'presented': 1,\n",
      "          'wanted': 1,\n",
      "          'resolution': 1,\n",
      "          'pieces': 1,\n",
      "          'well': 1,\n",
      "          'humor': 1,\n",
      "          'tickle': 1,\n",
      "          'bone': 1,\n",
      "          'nthen': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'arthouse': 1,\n",
      "          'theatres': 1,\n",
      "          'patrons': 1,\n",
      "          'rolling': 1,\n",
      "          'aisles': 1,\n",
      "          'laughter': 1,\n",
      "          'tiny': 1,\n",
      "          'bit': 1,\n",
      "          'whimsy': 1,\n",
      "          'screen': 1,\n",
      "          'nsome': 1,\n",
      "          'better': 1,\n",
      "          'added': 1,\n",
      "          'plant': 1,\n",
      "          'called': 1,\n",
      "          'marijuana': 1,\n",
      "          'certainly': 1,\n",
      "          'ingrains': 1,\n",
      "          'within': 1,\n",
      "          'nifty': 1,\n",
      "          'visual': 1,\n",
      "          'order': 1,\n",
      "          'jazz': 1,\n",
      "          'experience': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sober': 1,\n",
      "          'coherent': 1,\n",
      "          'transsexual': 1,\n",
      "          'twist': 1,\n",
      "          'leave': 1,\n",
      "          'theater': 1,\n",
      "          'satisfied': 1,\n",
      "          'came': 1,\n",
      "          'watched': 1,\n",
      "          'existential': 1,\n",
      "          'caught': 1,\n",
      "          'lifestyle': 1,\n",
      "          'wrapped': 1,\n",
      "          'metaphors': 1,\n",
      "          'dramatics': 1,\n",
      "          'answers': 1,\n",
      "          'props': 1,\n",
      "          'lead': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'created': 1,\n",
      "          'play': 1,\n",
      "          'based': 1,\n",
      "          'tunes': 1,\n",
      "          'anyone': 1,\n",
      "          'digs': 1,\n",
      "          'pistols': 1,\n",
      "          'david': 1,\n",
      "          'bowie': 1,\n",
      "          '70s': 1,\n",
      "          'glamrock': 1,\n",
      "          'scene': 1,\n",
      "          'nnote': 1,\n",
      "          'btw': 1,\n",
      "          'seems': 1,\n",
      "          'though': 1,\n",
      "          'pretty': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'mainstream': 1,\n",
      "          'critic': 1,\n",
      "          'united': 1,\n",
      "          'loved': 1,\n",
      "          'top': 1,\n",
      "          'bottom': 1,\n",
      "          'thought': 1,\n",
      "          'boot': 1,\n",
      "          'might': 1,\n",
      "          'want': 1,\n",
      "          'take': 1,\n",
      "          'consideration': 1,\n",
      "          'reason': 1,\n",
      "          'started': 1,\n",
      "          'dinky': 1,\n",
      "          'website': 1,\n",
      "          'place': 1,\n",
      "          'would': 1,\n",
      "          'sometimes': 1,\n",
      "          'uniformly': 1,\n",
      "          'applauded': 1,\n",
      "          'official': 1,\n",
      "          'critics': 1,\n",
      "          'regular': 1,\n",
      "          'wouldnt': 1,\n",
      "          'fuss': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'continue': 1,\n",
      "          'write': 1,\n",
      "          'reviews': 1,\n",
      "          'nwheres': 1,\n",
      "          'coming': 1,\n",
      "          'nmoulin': 1,\n",
      "          'rouge': 1,\n",
      "          'grease': 1,\n",
      "          'everyone': 1,\n",
      "          'says': 1,\n",
      "          'love': 1,\n",
      "          'opposite': 1,\n",
      "          'dancer': 1,\n",
      "          'dark': 1,\n",
      "          'brother': 1,\n",
      "          'art': 1,\n",
      "          'thou': 1,\n",
      "          '710': 1,\n",
      "          'labours': 1,\n",
      "          'lost': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'girl': 4,\n",
      "          '8mm': 3,\n",
      "          'films': 3,\n",
      "          'cage': 3,\n",
      "          'nhe': 3,\n",
      "          'bizarre': 3,\n",
      "          'welles': 3,\n",
      "          'man': 3,\n",
      "          'film': 3,\n",
      "          'devil': 3,\n",
      "          'nthis': 3,\n",
      "          'schumacher': 3,\n",
      "          'going': 2,\n",
      "          'disturbing': 2,\n",
      "          'portrait': 2,\n",
      "          'underworld': 2,\n",
      "          'snuff': 2,\n",
      "          'violence': 2,\n",
      "          'lot': 2,\n",
      "          'well': 2,\n",
      "          'seems': 2,\n",
      "          'performance': 2,\n",
      "          'ncage': 2,\n",
      "          'home': 2,\n",
      "          'wife': 2,\n",
      "          'take': 2,\n",
      "          'nhis': 2,\n",
      "          'pornography': 2,\n",
      "          'masked': 2,\n",
      "          'murdered': 2,\n",
      "          'nwelles': 2,\n",
      "          'begins': 2,\n",
      "          'deeper': 2,\n",
      "          'becomes': 2,\n",
      "          'played': 2,\n",
      "          'goes': 2,\n",
      "          'nalthough': 2,\n",
      "          'director': 2,\n",
      "          'joel': 2,\n",
      "          'movie': 2,\n",
      "          'soon': 2,\n",
      "          'start': 2,\n",
      "          'flop': 2,\n",
      "          'enlighten': 1,\n",
      "          'day': 1,\n",
      "          'nits': 1,\n",
      "          'dark': 1,\n",
      "          'grimy': 1,\n",
      "          'filled': 1,\n",
      "          'excessive': 1,\n",
      "          'nnot': 1,\n",
      "          'need': 1,\n",
      "          'stomach': 1,\n",
      "          'make': 1,\n",
      "          'bloated': 1,\n",
      "          'mess': 1,\n",
      "          'youll': 1,\n",
      "          'require': 1,\n",
      "          'patience': 1,\n",
      "          'nnicolas': 1,\n",
      "          'quite': 1,\n",
      "          'bit': 1,\n",
      "          'overacting': 1,\n",
      "          'late': 1,\n",
      "          'wore': 1,\n",
      "          'getup': 1,\n",
      "          'yelling': 1,\n",
      "          'terminally': 1,\n",
      "          'awful': 1,\n",
      "          'snake': 1,\n",
      "          'eyes': 1,\n",
      "          'attempts': 1,\n",
      "          'relate': 1,\n",
      "          'someone': 1,\n",
      "          'completely': 1,\n",
      "          'losing': 1,\n",
      "          'grip': 1,\n",
      "          'reality': 1,\n",
      "          'plays': 1,\n",
      "          'private': 1,\n",
      "          'investigator': 1,\n",
      "          'tom': 1,\n",
      "          'praised': 1,\n",
      "          'secrecy': 1,\n",
      "          'reliability': 1,\n",
      "          'nat': 1,\n",
      "          'family': 1,\n",
      "          'catherine': 1,\n",
      "          'keener': 1,\n",
      "          'small': 1,\n",
      "          'daughter': 1,\n",
      "          'care': 1,\n",
      "          'new': 1,\n",
      "          'assignment': 1,\n",
      "          'one': 1,\n",
      "          'formally': 1,\n",
      "          'deceased': 1,\n",
      "          'millionaire': 1,\n",
      "          'hired': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          'regarding': 1,\n",
      "          'found': 1,\n",
      "          'husbands': 1,\n",
      "          'safe': 1,\n",
      "          'appears': 1,\n",
      "          'kind': 1,\n",
      "          'cheap': 1,\n",
      "          'involving': 1,\n",
      "          'teenage': 1,\n",
      "          'brutally': 1,\n",
      "          'course': 1,\n",
      "          'burrow': 1,\n",
      "          'uncover': 1,\n",
      "          'truth': 1,\n",
      "          'nand': 1,\n",
      "          'involved': 1,\n",
      "          'case': 1,\n",
      "          'gets': 1,\n",
      "          'head': 1,\n",
      "          'hires': 1,\n",
      "          'adult': 1,\n",
      "          'book': 1,\n",
      "          'store': 1,\n",
      "          'clerk': 1,\n",
      "          'named': 1,\n",
      "          'max': 1,\n",
      "          'california': 1,\n",
      "          'joaquin': 1,\n",
      "          'phoenix': 1,\n",
      "          'guide': 1,\n",
      "          'ugly': 1,\n",
      "          'nmax': 1,\n",
      "          'knows': 1,\n",
      "          'getting': 1,\n",
      "          'explains': 1,\n",
      "          'dance': 1,\n",
      "          'dont': 1,\n",
      "          'change': 1,\n",
      "          'changes': 1,\n",
      "          'nthese': 1,\n",
      "          'turn': 1,\n",
      "          'wise': 1,\n",
      "          'words': 1,\n",
      "          'n8mm': 1,\n",
      "          'premise': 1,\n",
      "          'begs': 1,\n",
      "          'better': 1,\n",
      "          'execution': 1,\n",
      "          'setup': 1,\n",
      "          'slick': 1,\n",
      "          'uncovers': 1,\n",
      "          'identity': 1,\n",
      "          'travels': 1,\n",
      "          'hollywood': 1,\n",
      "          'locate': 1,\n",
      "          'everything': 1,\n",
      "          'awry': 1,\n",
      "          'succeeds': 1,\n",
      "          'frightening': 1,\n",
      "          'us': 1,\n",
      "          'grotesque': 1,\n",
      "          'real': 1,\n",
      "          'world': 1,\n",
      "          'forgot': 1,\n",
      "          'inject': 1,\n",
      "          'interest': 1,\n",
      "          'excitement': 1,\n",
      "          'formula': 1,\n",
      "          'neverything': 1,\n",
      "          'dull': 1,\n",
      "          'lifeless': 1,\n",
      "          'repelling': 1,\n",
      "          'viewer': 1,\n",
      "          'like': 1,\n",
      "          'effect': 1,\n",
      "          'bug': 1,\n",
      "          'spray': 1,\n",
      "          'insects': 1,\n",
      "          'enormous': 1,\n",
      "          'potential': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'total': 1,\n",
      "          'bust': 1,\n",
      "          'leaving': 1,\n",
      "          'intrigued': 1,\n",
      "          'audiences': 1,\n",
      "          'baffling': 1,\n",
      "          'state': 1,\n",
      "          'extreme': 1,\n",
      "          'disappointment': 1,\n",
      "          'proceedings': 1,\n",
      "          'spiral': 1,\n",
      "          'control': 1,\n",
      "          'sole': 1,\n",
      "          'flame': 1,\n",
      "          'energy': 1,\n",
      "          'actually': 1,\n",
      "          'believable': 1,\n",
      "          'directors': 1,\n",
      "          'demands': 1,\n",
      "          'weigh': 1,\n",
      "          'heavily': 1,\n",
      "          'shoulder': 1,\n",
      "          'stumbling': 1,\n",
      "          'along': 1,\n",
      "          'desperation': 1,\n",
      "          'nstill': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'give': 1,\n",
      "          'credit': 1,\n",
      "          'holding': 1,\n",
      "          'project': 1,\n",
      "          'together': 1,\n",
      "          'long': 1,\n",
      "          'easy': 1,\n",
      "          'feat': 1,\n",
      "          'consider': 1,\n",
      "          'problems': 1,\n",
      "          'hand': 1,\n",
      "          'trail': 1,\n",
      "          'leads': 1,\n",
      "          'filmmaker': 1,\n",
      "          'convincingly': 1,\n",
      "          'peter': 1,\n",
      "          'stormare': 1,\n",
      "          'notorious': 1,\n",
      "          'hardesthitting': 1,\n",
      "          'industry': 1,\n",
      "          'edge': 1,\n",
      "          'serial': 1,\n",
      "          'killerlike': 1,\n",
      "          'phase': 1,\n",
      "          'must': 1,\n",
      "          'revenge': 1,\n",
      "          'innocent': 1,\n",
      "          'tracks': 1,\n",
      "          'responsible': 1,\n",
      "          'killing': 1,\n",
      "          'chris': 1,\n",
      "          'bauer': 1,\n",
      "          'bloody': 1,\n",
      "          'brawl': 1,\n",
      "          'local': 1,\n",
      "          'cemetery': 1,\n",
      "          'fight': 1,\n",
      "          'sequence': 1,\n",
      "          'would': 1,\n",
      "          'look': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'nwritten': 1,\n",
      "          'andrew': 1,\n",
      "          'kevin': 1,\n",
      "          'walker': 1,\n",
      "          'dissipates': 1,\n",
      "          'poor': 1,\n",
      "          'mans': 1,\n",
      "          'seven': 1,\n",
      "          'little': 1,\n",
      "          'effectiveness': 1,\n",
      "          'made': 1,\n",
      "          'latter': 1,\n",
      "          'chilling': 1,\n",
      "          'masterpiece': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'become': 1,\n",
      "          'recently': 1,\n",
      "          'experienced': 1,\n",
      "          'major': 1,\n",
      "          'drought': 1,\n",
      "          'slumming': 1,\n",
      "          'depths': 1,\n",
      "          'dismal': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'anyone': 1,\n",
      "          'putrid': 1,\n",
      "          'thriller': 1,\n",
      "          'certainly': 1,\n",
      "          'revive': 1,\n",
      "          'career': 1,\n",
      "          'perhaps': 1,\n",
      "          'exploring': 1,\n",
      "          'lighter': 1,\n",
      "          'side': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'park': 6,\n",
      "          'jurassic': 4,\n",
      "          'one': 3,\n",
      "          'lost': 3,\n",
      "          'world': 3,\n",
      "          'original': 2,\n",
      "          'grant': 2,\n",
      "          'neill': 2,\n",
      "          'macy': 2,\n",
      "          'leoni': 2,\n",
      "          'island': 2,\n",
      "          'dinosaurs': 2,\n",
      "          'iii': 2,\n",
      "          'nthe': 2,\n",
      "          'first': 2,\n",
      "          'film': 2,\n",
      "          'characters': 2,\n",
      "          'nat': 2,\n",
      "          'least': 2,\n",
      "          'movie': 2,\n",
      "          'even': 2,\n",
      "          'synopsis': 1,\n",
      "          'survivor': 1,\n",
      "          'alan': 1,\n",
      "          'tricked': 1,\n",
      "          'paul': 1,\n",
      "          'amanda': 1,\n",
      "          'kirby': 1,\n",
      "          'leading': 1,\n",
      "          'expedition': 1,\n",
      "          'overrun': 1,\n",
      "          'dinosaur': 1,\n",
      "          'rescue': 1,\n",
      "          'stranded': 1,\n",
      "          'son': 1,\n",
      "          'ngrants': 1,\n",
      "          'team': 1,\n",
      "          'picked': 1,\n",
      "          'encounter': 1,\n",
      "          'new': 1,\n",
      "          'familiar': 1,\n",
      "          'grows': 1,\n",
      "          'realise': 1,\n",
      "          'breeds': 1,\n",
      "          'intelligent': 1,\n",
      "          'previously': 1,\n",
      "          'thought': 1,\n",
      "          'nreview': 1,\n",
      "          'reason': 1,\n",
      "          'better': 1,\n",
      "          'immediate': 1,\n",
      "          'predecessor': 1,\n",
      "          'latter': 1,\n",
      "          'wasted': 1,\n",
      "          '129': 1,\n",
      "          'minutes': 1,\n",
      "          'life': 1,\n",
      "          'former': 1,\n",
      "          '94': 1,\n",
      "          'marvellous': 1,\n",
      "          'full': 1,\n",
      "          'aweinspiring': 1,\n",
      "          'sights': 1,\n",
      "          'interesting': 1,\n",
      "          'genuine': 1,\n",
      "          'thrills': 1,\n",
      "          'nits': 1,\n",
      "          'two': 1,\n",
      "          'successors': 1,\n",
      "          'pale': 1,\n",
      "          'imitations': 1,\n",
      "          'amounting': 1,\n",
      "          'hundredmilliondollar': 1,\n",
      "          'bgrade': 1,\n",
      "          'horror': 1,\n",
      "          'movies': 1,\n",
      "          'third': 1,\n",
      "          'entry': 1,\n",
      "          'realises': 1,\n",
      "          'whereas': 1,\n",
      "          'tried': 1,\n",
      "          'justify': 1,\n",
      "          'existence': 1,\n",
      "          'ludicrous': 1,\n",
      "          'overextended': 1,\n",
      "          'plot': 1,\n",
      "          'simply': 1,\n",
      "          'sticks': 1,\n",
      "          'bunch': 1,\n",
      "          'lets': 1,\n",
      "          'mayhem': 1,\n",
      "          'begin': 1,\n",
      "          'nthere': 1,\n",
      "          'desperate': 1,\n",
      "          'sense': 1,\n",
      "          'deja': 1,\n",
      "          'vu': 1,\n",
      "          'presiding': 1,\n",
      "          'computeranimated': 1,\n",
      "          'dinos': 1,\n",
      "          'longer': 1,\n",
      "          'novel': 1,\n",
      "          'exciting': 1,\n",
      "          'firsttime': 1,\n",
      "          'presence': 1,\n",
      "          'aerial': 1,\n",
      "          'lizards': 1,\n",
      "          'scarcely': 1,\n",
      "          'improves': 1,\n",
      "          'situation': 1,\n",
      "          'nremember': 1,\n",
      "          'wondrous': 1,\n",
      "          'trolley': 1,\n",
      "          'ride': 1,\n",
      "          'nnothing': 1,\n",
      "          'rehash': 1,\n",
      "          'comes': 1,\n",
      "          'close': 1,\n",
      "          'nadd': 1,\n",
      "          'execrable': 1,\n",
      "          'dialogue': 1,\n",
      "          'screenwriters': 1,\n",
      "          'buchman': 1,\n",
      "          'payne': 1,\n",
      "          'taylor': 1,\n",
      "          'phonedin': 1,\n",
      "          'performances': 1,\n",
      "          'normally': 1,\n",
      "          'capable': 1,\n",
      "          'difficult': 1,\n",
      "          'recommend': 1,\n",
      "          'anyone': 1,\n",
      "          'dino': 1,\n",
      "          'enthusiasts': 1,\n",
      "          'makes': 1,\n",
      "          'effort': 1,\n",
      "          'retain': 1,\n",
      "          'dignity': 1,\n",
      "          'character': 1,\n",
      "          'much': 1,\n",
      "          'less': 1,\n",
      "          'gore': 1,\n",
      "          'making': 1,\n",
      "          'installment': 1,\n",
      "          'suitable': 1,\n",
      "          'children': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'whole': 6,\n",
      "          'nine': 6,\n",
      "          'yards': 6,\n",
      "          'comedy': 6,\n",
      "          'one': 5,\n",
      "          'oz': 5,\n",
      "          'time': 4,\n",
      "          'sophie': 4,\n",
      "          'film': 4,\n",
      "          'movies': 4,\n",
      "          'around': 3,\n",
      "          'perry': 3,\n",
      "          'tulip': 3,\n",
      "          'willis': 3,\n",
      "          'killer': 3,\n",
      "          'jimmys': 3,\n",
      "          'peet': 3,\n",
      "          'got': 3,\n",
      "          'far': 3,\n",
      "          'actors': 3,\n",
      "          'characters': 2,\n",
      "          'lynns': 2,\n",
      "          'mob': 2,\n",
      "          '1999s': 2,\n",
      "          'ever': 2,\n",
      "          'written': 2,\n",
      "          'nwhen': 2,\n",
      "          'character': 2,\n",
      "          'plot': 2,\n",
      "          'nin': 2,\n",
      "          'might': 2,\n",
      "          'say': 2,\n",
      "          'every': 2,\n",
      "          'minutes': 2,\n",
      "          'matthew': 2,\n",
      "          'quebec': 2,\n",
      "          'rosanna': 2,\n",
      "          'arquette': 2,\n",
      "          'discover': 2,\n",
      "          'jimmy': 2,\n",
      "          'tudeski': 2,\n",
      "          'bruce': 2,\n",
      "          'contract': 2,\n",
      "          'know': 2,\n",
      "          'friend': 2,\n",
      "          'cynthia': 2,\n",
      "          'natasha': 2,\n",
      "          'henstridge': 2,\n",
      "          'next': 2,\n",
      "          'jill': 2,\n",
      "          'set': 2,\n",
      "          'jills': 2,\n",
      "          'movie': 2,\n",
      "          'n': 2,\n",
      "          'cast': 2,\n",
      "          'two': 2,\n",
      "          'clear': 2,\n",
      "          'screenplay': 2,\n",
      "          'become': 2,\n",
      "          'na': 2,\n",
      "          'three': 2,\n",
      "          'limited': 2,\n",
      "          'better': 2,\n",
      "          'solely': 2,\n",
      "          'purpose': 2,\n",
      "          'jonathan': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'endless': 1,\n",
      "          'recent': 1,\n",
      "          'string': 1,\n",
      "          'comedies': 1,\n",
      "          'analyze': 1,\n",
      "          'mickey': 1,\n",
      "          'blue': 1,\n",
      "          'eyes': 1,\n",
      "          '2000s': 1,\n",
      "          'gun': 1,\n",
      "          'shy': 1,\n",
      "          'rarely': 1,\n",
      "          'real': 1,\n",
      "          'people': 1,\n",
      "          'merely': 1,\n",
      "          'onedimensional': 1,\n",
      "          'caricatures': 1,\n",
      "          'added': 1,\n",
      "          'layer': 1,\n",
      "          'personalities': 1,\n",
      "          'revealed': 1,\n",
      "          'service': 1,\n",
      "          'development': 1,\n",
      "          'naturally': 1,\n",
      "          'offer': 1,\n",
      "          'instinctive': 1,\n",
      "          'characterizations': 1,\n",
      "          'accommodate': 1,\n",
      "          'convoluted': 1,\n",
      "          'lightweight': 1,\n",
      "          'required': 1,\n",
      "          'perfectly': 1,\n",
      "          'realized': 1,\n",
      "          'figures': 1,\n",
      "          'long': 1,\n",
      "          'get': 1,\n",
      "          'job': 1,\n",
      "          'done': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'work': 1,\n",
      "          'least': 1,\n",
      "          'succeed': 1,\n",
      "          'funny': 1,\n",
      "          'laughometer': 1,\n",
      "          'available': 1,\n",
      "          'id': 1,\n",
      "          'guess': 1,\n",
      "          'briefly': 1,\n",
      "          'ascended': 1,\n",
      "          '2': 1,\n",
      "          '5': 1,\n",
      "          'nsuffice': 1,\n",
      "          'works': 1,\n",
      "          'well': 1,\n",
      "          'brokendown': 1,\n",
      "          'lawnmower': 1,\n",
      "          'backyard': 1,\n",
      "          'giggle': 1,\n",
      "          'surprisingly': 1,\n",
      "          'arises': 1,\n",
      "          'twenty': 1,\n",
      "          'thirty': 1,\n",
      "          'sheer': 1,\n",
      "          'luck': 1,\n",
      "          'nnicholas': 1,\n",
      "          'oseransky': 1,\n",
      "          'amateur': 1,\n",
      "          'dentist': 1,\n",
      "          'living': 1,\n",
      "          'quiet': 1,\n",
      "          'suburbs': 1,\n",
      "          'ntrapped': 1,\n",
      "          'hateful': 1,\n",
      "          'marriage': 1,\n",
      "          'conniving': 1,\n",
      "          'delightfully': 1,\n",
      "          'hamming': 1,\n",
      "          'clearly': 1,\n",
      "          'artificial': 1,\n",
      "          'frenchcanadian': 1,\n",
      "          'accent': 1,\n",
      "          'day': 1,\n",
      "          'sees': 1,\n",
      "          'someone': 1,\n",
      "          'moving': 1,\n",
      "          'house': 1,\n",
      "          'nextdoor': 1,\n",
      "          'nwalking': 1,\n",
      "          'greet': 1,\n",
      "          'horrified': 1,\n",
      "          'former': 1,\n",
      "          'mafia': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'nonce': 1,\n",
      "          'getting': 1,\n",
      "          'becoming': 1,\n",
      "          'comfortable': 1,\n",
      "          'identity': 1,\n",
      "          'means': 1,\n",
      "          'possible': 1,\n",
      "          'hitman': 1,\n",
      "          'away': 1,\n",
      "          'scheme': 1,\n",
      "          'sends': 1,\n",
      "          'chicago': 1,\n",
      "          'cash': 1,\n",
      "          'informing': 1,\n",
      "          'old': 1,\n",
      "          'boss': 1,\n",
      "          'kevin': 1,\n",
      "          'pollak': 1,\n",
      "          'whereabouts': 1,\n",
      "          'process': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'wife': 1,\n",
      "          'held': 1,\n",
      "          'hostage': 1,\n",
      "          'nupon': 1,\n",
      "          'return': 1,\n",
      "          'contrivance': 1,\n",
      "          'ozs': 1,\n",
      "          'dental': 1,\n",
      "          'assistant': 1,\n",
      "          'amanda': 1,\n",
      "          'overjoyed': 1,\n",
      "          'lives': 1,\n",
      "          'beside': 1,\n",
      "          'forces': 1,\n",
      "          'meeting': 1,\n",
      "          'since': 1,\n",
      "          'dream': 1,\n",
      "          'life': 1,\n",
      "          'turns': 1,\n",
      "          'nhave': 1,\n",
      "          'nbecause': 1,\n",
      "          'nmuch': 1,\n",
      "          'much': 1,\n",
      "          'nand': 1,\n",
      "          'without': 1,\n",
      "          'credits': 1,\n",
      "          'little': 1,\n",
      "          '90': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'hour': 1,\n",
      "          'ultimately': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'emptyheaded': 1,\n",
      "          'excursion': 1,\n",
      "          'wellworn': 1,\n",
      "          'terrain': 1,\n",
      "          'already': 1,\n",
      "          'superior': 1,\n",
      "          'pictures': 1,\n",
      "          'nhow': 1,\n",
      "          'respectable': 1,\n",
      "          'caught': 1,\n",
      "          'cliched': 1,\n",
      "          'deficient': 1,\n",
      "          'remains': 1,\n",
      "          'mystery': 1,\n",
      "          'unless': 1,\n",
      "          'thought': 1,\n",
      "          'aspire': 1,\n",
      "          'match': 1,\n",
      "          'congenial': 1,\n",
      "          'screwball': 1,\n",
      "          'zaniness': 1,\n",
      "          'director': 1,\n",
      "          '1985': 1,\n",
      "          'classic': 1,\n",
      "          'clue': 1,\n",
      "          'ngoing': 1,\n",
      "          'theater': 1,\n",
      "          'preliminary': 1,\n",
      "          'comparisons': 1,\n",
      "          'unavoidable': 1,\n",
      "          'twentyminute': 1,\n",
      "          'mark': 1,\n",
      "          'chuckled': 1,\n",
      "          'laughed': 1,\n",
      "          'nary': 1,\n",
      "          'single': 1,\n",
      "          'production': 1,\n",
      "          'serious': 1,\n",
      "          'trouble': 1,\n",
      "          'nsince': 1,\n",
      "          'entire': 1,\n",
      "          'running': 1,\n",
      "          'depends': 1,\n",
      "          'mechanisms': 1,\n",
      "          'inauspiciously': 1,\n",
      "          'mitchell': 1,\n",
      "          'kapner': 1,\n",
      "          'collapses': 1,\n",
      "          'failing': 1,\n",
      "          'bit': 1,\n",
      "          'inevitable': 1,\n",
      "          'dead': 1,\n",
      "          'zone': 1,\n",
      "          'way': 1,\n",
      "          'substance': 1,\n",
      "          'frequently': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'neither': 1,\n",
      "          'facetious': 1,\n",
      "          'aside': 1,\n",
      "          'subplot': 1,\n",
      "          'shocking': 1,\n",
      "          'eagerness': 1,\n",
      "          'professional': 1,\n",
      "          'hitwoman': 1,\n",
      "          'inventive': 1,\n",
      "          'often': 1,\n",
      "          'lies': 1,\n",
      "          'spinning': 1,\n",
      "          'drearily': 1,\n",
      "          'projector': 1,\n",
      "          'never': 1,\n",
      "          'igniting': 1,\n",
      "          'sort': 1,\n",
      "          'spark': 1,\n",
      "          'select': 1,\n",
      "          'material': 1,\n",
      "          'others': 1,\n",
      "          'make': 1,\n",
      "          'impact': 1,\n",
      "          'non': 1,\n",
      "          'mediocre': 1,\n",
      "          'side': 1,\n",
      "          'actually': 1,\n",
      "          'playing': 1,\n",
      "          'central': 1,\n",
      "          'nperry': 1,\n",
      "          'innocuously': 1,\n",
      "          'enjoyable': 1,\n",
      "          'tvs': 1,\n",
      "          'friends': 1,\n",
      "          'plays': 1,\n",
      "          'exact': 1,\n",
      "          'sitcomstyle': 1,\n",
      "          '1997s': 1,\n",
      "          'fools': 1,\n",
      "          'rush': 1,\n",
      "          'tango': 1,\n",
      "          'crushing': 1,\n",
      "          'bore': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'makes': 1,\n",
      "          'impression': 1,\n",
      "          'guise': 1,\n",
      "          'oftentimes': 1,\n",
      "          'disappears': 1,\n",
      "          'background': 1,\n",
      "          'ntheir': 1,\n",
      "          'female': 1,\n",
      "          'counterparts': 1,\n",
      "          'fare': 1,\n",
      "          'noticeably': 1,\n",
      "          'nbest': 1,\n",
      "          'radiant': 1,\n",
      "          'exploitative': 1,\n",
      "          'species': 1,\n",
      "          'adds': 1,\n",
      "          'unanticipated': 1,\n",
      "          'depth': 1,\n",
      "          'emotion': 1,\n",
      "          'nhenstridge': 1,\n",
      "          'talent': 1,\n",
      "          'sure': 1,\n",
      "          'break': 1,\n",
      "          'countless': 1,\n",
      "          'throwaway': 1,\n",
      "          'roles': 1,\n",
      "          'first': 1,\n",
      "          'must': 1,\n",
      "          'fire': 1,\n",
      "          'agent': 1,\n",
      "          'namanda': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'quirkily': 1,\n",
      "          'straightforward': 1,\n",
      "          'giddy': 1,\n",
      "          'seems': 1,\n",
      "          'art': 1,\n",
      "          'comedic': 1,\n",
      "          'payoff': 1,\n",
      "          'even': 1,\n",
      "          'thus': 1,\n",
      "          'strived': 1,\n",
      "          'career': 1,\n",
      "          'based': 1,\n",
      "          'nit': 1,\n",
      "          'bad': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'asked': 1,\n",
      "          'disrobe': 1,\n",
      "          'climactic': 1,\n",
      "          'scene': 1,\n",
      "          'obvious': 1,\n",
      "          'sole': 1,\n",
      "          'show': 1,\n",
      "          'breasts': 1,\n",
      "          'nfinally': 1,\n",
      "          'awful': 1,\n",
      "          'something': 1,\n",
      "          'tells': 1,\n",
      "          'overacting': 1,\n",
      "          'aids': 1,\n",
      "          'brightening': 1,\n",
      "          'screen': 1,\n",
      "          'nalso': 1,\n",
      "          'popping': 1,\n",
      "          'michael': 1,\n",
      "          'clarke': 1,\n",
      "          'duncan': 1,\n",
      "          'fresh': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'role': 1,\n",
      "          'green': 1,\n",
      "          'mile': 1,\n",
      "          'largely': 1,\n",
      "          'built': 1,\n",
      "          'fellow': 1,\n",
      "          'frankie': 1,\n",
      "          'figs': 1,\n",
      "          'eventually': 1,\n",
      "          'sputters': 1,\n",
      "          'underwhelming': 1,\n",
      "          'conclusion': 1,\n",
      "          'left': 1,\n",
      "          'pondering': 1,\n",
      "          'greenlit': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'type': 1,\n",
      "          'made': 1,\n",
      "          'past': 1,\n",
      "          'nothing': 1,\n",
      "          'duplication': 1,\n",
      "          'films': 1,\n",
      "          'point': 1,\n",
      "          'nwithout': 1,\n",
      "          'passable': 1,\n",
      "          'notable': 1,\n",
      "          'technical': 1,\n",
      "          'accomplishments': 1,\n",
      "          'rests': 1,\n",
      "          'presumed': 1,\n",
      "          'charm': 1,\n",
      "          'half': 1,\n",
      "          'charming': 1,\n",
      "          'nnow': 1,\n",
      "          'tell': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dying': 4,\n",
      "          'film': 4,\n",
      "          'much': 4,\n",
      "          'one': 4,\n",
      "          'past': 4,\n",
      "          'men': 3,\n",
      "          'regrets': 3,\n",
      "          'nthe': 3,\n",
      "          'movie': 3,\n",
      "          'time': 3,\n",
      "          'us': 3,\n",
      "          'take': 2,\n",
      "          'old': 2,\n",
      "          'sins': 2,\n",
      "          'character': 2,\n",
      "          'keep': 2,\n",
      "          'anderson': 2,\n",
      "          'boogie': 2,\n",
      "          'nights': 2,\n",
      "          'stories': 2,\n",
      "          'nearl': 2,\n",
      "          'cancer': 2,\n",
      "          'nhis': 2,\n",
      "          'wife': 2,\n",
      "          'cheated': 2,\n",
      "          'jimmy': 2,\n",
      "          'also': 2,\n",
      "          'quiz': 2,\n",
      "          'stanley': 2,\n",
      "          'donnie': 2,\n",
      "          'nothing': 2,\n",
      "          'even': 2,\n",
      "          'nthis': 2,\n",
      "          'frogs': 2,\n",
      "          'seem': 2,\n",
      "          'may': 2,\n",
      "          'frog': 2,\n",
      "          'change': 2,\n",
      "          'done': 2,\n",
      "          'forgiveness': 2,\n",
      "          'thy': 2,\n",
      "          'spiritual': 2,\n",
      "          'two': 1,\n",
      "          'lifetime': 1,\n",
      "          'house': 1,\n",
      "          'full': 1,\n",
      "          'thoroughly': 1,\n",
      "          'despicable': 1,\n",
      "          'man': 1,\n",
      "          'enough': 1,\n",
      "          'lies': 1,\n",
      "          'insecurities': 1,\n",
      "          'defects': 1,\n",
      "          'team': 1,\n",
      "          'psychiatrists': 1,\n",
      "          'gainfully': 1,\n",
      "          'employed': 1,\n",
      "          'add': 1,\n",
      "          'inexplicable': 1,\n",
      "          'meteorological': 1,\n",
      "          'amphibianbased': 1,\n",
      "          'phenomenon': 1,\n",
      "          'summed': 1,\n",
      "          'magnolia': 1,\n",
      "          'newest': 1,\n",
      "          'paul': 1,\n",
      "          'thomas': 1,\n",
      "          'tells': 1,\n",
      "          'multiple': 1,\n",
      "          'weaving': 1,\n",
      "          'together': 1,\n",
      "          'overlapping': 1,\n",
      "          'course': 1,\n",
      "          'three': 1,\n",
      "          'hour': 1,\n",
      "          'running': 1,\n",
      "          'nwould': 1,\n",
      "          'worth': 1,\n",
      "          'telling': 1,\n",
      "          'partridge': 1,\n",
      "          'jason': 1,\n",
      "          'robards': 1,\n",
      "          'thousand': 1,\n",
      "          'acres': 1,\n",
      "          'nbedridden': 1,\n",
      "          'pain': 1,\n",
      "          'obvious': 1,\n",
      "          'growing': 1,\n",
      "          'short': 1,\n",
      "          'younger': 1,\n",
      "          'played': 1,\n",
      "          'julianne': 1,\n",
      "          'moore': 1,\n",
      "          'ideal': 1,\n",
      "          'husband': 1,\n",
      "          'surprised': 1,\n",
      "          'find': 1,\n",
      "          'struggling': 1,\n",
      "          'impending': 1,\n",
      "          'death': 1,\n",
      "          'nhaving': 1,\n",
      "          'married': 1,\n",
      "          'money': 1,\n",
      "          'discovers': 1,\n",
      "          'actually': 1,\n",
      "          'fallen': 1,\n",
      "          'love': 1,\n",
      "          'guy': 1,\n",
      "          'lied': 1,\n",
      "          'first': 1,\n",
      "          'estranging': 1,\n",
      "          'son': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'eyes': 1,\n",
      "          'wide': 1,\n",
      "          'shut': 1,\n",
      "          'misogynist': 1,\n",
      "          'selfhelp': 1,\n",
      "          'guru': 1,\n",
      "          'teaches': 1,\n",
      "          'seduce': 1,\n",
      "          'destroy': 1,\n",
      "          'sexual': 1,\n",
      "          'vulgar': 1,\n",
      "          'perspective': 1,\n",
      "          'malefemale': 1,\n",
      "          'relationships': 1,\n",
      "          'overthetop': 1,\n",
      "          'utterly': 1,\n",
      "          'unbelievable': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'gator': 1,\n",
      "          'philip': 1,\n",
      "          'baker': 1,\n",
      "          'hall': 1,\n",
      "          'insider': 1,\n",
      "          'nnot': 1,\n",
      "          'physically': 1,\n",
      "          'incapacitated': 1,\n",
      "          'earl': 1,\n",
      "          'still': 1,\n",
      "          'able': 1,\n",
      "          'perform': 1,\n",
      "          'duties': 1,\n",
      "          'lovable': 1,\n",
      "          'host': 1,\n",
      "          'longrunning': 1,\n",
      "          'show': 1,\n",
      "          'pits': 1,\n",
      "          'adults': 1,\n",
      "          'children': 1,\n",
      "          'current': 1,\n",
      "          'whizquizkid': 1,\n",
      "          'spector': 1,\n",
      "          'jeremy': 1,\n",
      "          'blackman': 1,\n",
      "          'debut': 1,\n",
      "          'tired': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'pressure': 1,\n",
      "          'performing': 1,\n",
      "          'willing': 1,\n",
      "          'call': 1,\n",
      "          'quits': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'kid': 1,\n",
      "          'smith': 1,\n",
      "          'william': 1,\n",
      "          'macy': 1,\n",
      "          'mystery': 1,\n",
      "          'would': 1,\n",
      "          'like': 1,\n",
      "          'return': 1,\n",
      "          'spotlight': 1,\n",
      "          'somebody': 1,\n",
      "          'pathetic': 1,\n",
      "          'life': 1,\n",
      "          'souring': 1,\n",
      "          'longer': 1,\n",
      "          'capitalize': 1,\n",
      "          'brief': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'fame': 1,\n",
      "          'eager': 1,\n",
      "          'relinquish': 1,\n",
      "          'njimmy': 1,\n",
      "          'family': 1,\n",
      "          'crisis': 1,\n",
      "          'drugaddict': 1,\n",
      "          'daughter': 1,\n",
      "          'melora': 1,\n",
      "          'walters': 1,\n",
      "          'refuses': 1,\n",
      "          'anything': 1,\n",
      "          'reasons': 1,\n",
      "          'disclosed': 1,\n",
      "          'end': 1,\n",
      "          'ngrabbing': 1,\n",
      "          'last': 1,\n",
      "          'attempt': 1,\n",
      "          'happiness': 1,\n",
      "          'reaches': 1,\n",
      "          'softhearted': 1,\n",
      "          'cop': 1,\n",
      "          'john': 1,\n",
      "          'c': 1,\n",
      "          'reilly': 1,\n",
      "          'never': 1,\n",
      "          'kissed': 1,\n",
      "          'tries': 1,\n",
      "          'push': 1,\n",
      "          'away': 1,\n",
      "          'deems': 1,\n",
      "          'worthy': 1,\n",
      "          'affection': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'group': 1,\n",
      "          'carries': 1,\n",
      "          'seems': 1,\n",
      "          'interminable': 1,\n",
      "          'twothirds': 1,\n",
      "          'nand': 1,\n",
      "          'gets': 1,\n",
      "          'worse': 1,\n",
      "          'literally': 1,\n",
      "          'raining': 1,\n",
      "          'nyes': 1,\n",
      "          'nassuming': 1,\n",
      "          'intended': 1,\n",
      "          'deusexmachina': 1,\n",
      "          'device': 1,\n",
      "          'ineffective': 1,\n",
      "          'doesnt': 1,\n",
      "          'faze': 1,\n",
      "          'characters': 1,\n",
      "          'noh': 1,\n",
      "          'step': 1,\n",
      "          'gingerly': 1,\n",
      "          'around': 1,\n",
      "          'splattered': 1,\n",
      "          'corpses': 1,\n",
      "          'littering': 1,\n",
      "          'streets': 1,\n",
      "          'otherwise': 1,\n",
      "          'shower': 1,\n",
      "          'didnt': 1,\n",
      "          'behavior': 1,\n",
      "          'pattern': 1,\n",
      "          'living': 1,\n",
      "          'nthere': 1,\n",
      "          'simply': 1,\n",
      "          'going': 1,\n",
      "          'distasteful': 1,\n",
      "          'watch': 1,\n",
      "          'nmr': 1,\n",
      "          'obscures': 1,\n",
      "          'incorporating': 1,\n",
      "          'loud': 1,\n",
      "          'intrusive': 1,\n",
      "          'sound': 1,\n",
      "          'track': 1,\n",
      "          'often': 1,\n",
      "          'drowned': 1,\n",
      "          'dialogue': 1,\n",
      "          'apparently': 1,\n",
      "          'rapped': 1,\n",
      "          'significant': 1,\n",
      "          'clue': 1,\n",
      "          'plot': 1,\n",
      "          'development': 1,\n",
      "          'completely': 1,\n",
      "          'unintelligble': 1,\n",
      "          'heavy': 1,\n",
      "          'handed': 1,\n",
      "          'segment': 1,\n",
      "          'historical': 1,\n",
      "          'occurances': 1,\n",
      "          'containing': 1,\n",
      "          'ironic': 1,\n",
      "          'twists': 1,\n",
      "          'set': 1,\n",
      "          'absolutely': 1,\n",
      "          'none': 1,\n",
      "          'recurring': 1,\n",
      "          'themes': 1,\n",
      "          'found': 1,\n",
      "          'line': 1,\n",
      "          'quotes': 1,\n",
      "          'absolute': 1,\n",
      "          'lie': 1,\n",
      "          'ngod': 1,\n",
      "          'business': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'humbly': 1,\n",
      "          'ask': 1,\n",
      "          'repent': 1,\n",
      "          'offending': 1,\n",
      "          'mindset': 1,\n",
      "          'gods': 1,\n",
      "          'word': 1,\n",
      "          'says': 1,\n",
      "          'forgives': 1,\n",
      "          'forgets': 1,\n",
      "          'n': 1,\n",
      "          'blotteth': 1,\n",
      "          'transgressions': 1,\n",
      "          'mine': 1,\n",
      "          'sake': 1,\n",
      "          'remember': 1,\n",
      "          'nisaiah': 1,\n",
      "          '43': 1,\n",
      "          '25': 1,\n",
      "          'kjv': 1,\n",
      "          'keeps': 1,\n",
      "          'bringing': 1,\n",
      "          'unrighteous': 1,\n",
      "          'wants': 1,\n",
      "          'state': 1,\n",
      "          'condemnation': 1,\n",
      "          'ndont': 1,\n",
      "          'let': 1,\n",
      "          'nnext': 1,\n",
      "          'adversary': 1,\n",
      "          'reminds': 1,\n",
      "          'great': 1,\n",
      "          'pleasure': 1,\n",
      "          'reminding': 1,\n",
      "          'future': 1,\n",
      "          'nhe': 1,\n",
      "          'hates': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'made': 6,\n",
      "          'know': 6,\n",
      "          'original': 5,\n",
      "          'last': 5,\n",
      "          'still': 5,\n",
      "          'julie': 5,\n",
      "          'sequel': 5,\n",
      "          'summer': 4,\n",
      "          'like': 4,\n",
      "          'nit': 4,\n",
      "          'horror': 3,\n",
      "          'films': 3,\n",
      "          'starting': 3,\n",
      "          'movies': 3,\n",
      "          'scream': 3,\n",
      "          'film': 3,\n",
      "          'characters': 3,\n",
      "          'one': 3,\n",
      "          'ben': 3,\n",
      "          'fisherman': 3,\n",
      "          'people': 3,\n",
      "          'movie': 3,\n",
      "          'every': 3,\n",
      "          'returns': 2,\n",
      "          'slasher': 2,\n",
      "          'urban': 2,\n",
      "          'legend': 2,\n",
      "          'exact': 2,\n",
      "          'suspense': 2,\n",
      "          'since': 2,\n",
      "          'willis': 2,\n",
      "          'friends': 2,\n",
      "          'nsince': 2,\n",
      "          'although': 2,\n",
      "          'nwhen': 2,\n",
      "          'karla': 2,\n",
      "          'brandy': 2,\n",
      "          'also': 2,\n",
      "          'boyfriend': 2,\n",
      "          'open': 2,\n",
      "          'fan': 2,\n",
      "          'nwhile': 2,\n",
      "          'story': 2,\n",
      "          'speak': 2,\n",
      "          'ideas': 2,\n",
      "          'minutes': 2,\n",
      "          'nalso': 2,\n",
      "          'character': 2,\n",
      "          'died': 2,\n",
      "          'come': 2,\n",
      "          'first': 2,\n",
      "          'everyone': 2,\n",
      "          'much': 1,\n",
      "          'sweet': 1,\n",
      "          'nafter': 1,\n",
      "          'smart': 1,\n",
      "          'exploitative': 1,\n",
      "          '80s': 1,\n",
      "          '1996s': 1,\n",
      "          'followed': 1,\n",
      "          '2': 1,\n",
      "          'bound': 1,\n",
      "          'sooner': 1,\n",
      "          'late': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'reason': 1,\n",
      "          'temporarily': 1,\n",
      "          'burned': 1,\n",
      "          'reached': 1,\n",
      "          'lowestcommondenominator': 1,\n",
      "          'filmmaking': 1,\n",
      "          'favoring': 1,\n",
      "          'nonstop': 1,\n",
      "          'deaths': 1,\n",
      "          'gore': 1,\n",
      "          'trading': 1,\n",
      "          'fleshed': 1,\n",
      "          'likable': 1,\n",
      "          'onedimensional': 1,\n",
      "          'nitwits': 1,\n",
      "          'exactly': 1,\n",
      "          'year': 1,\n",
      "          'james': 1,\n",
      "          'jennifer': 1,\n",
      "          'love': 1,\n",
      "          'hewitt': 1,\n",
      "          'suffered': 1,\n",
      "          'ordeal': 1,\n",
      "          'terrorized': 1,\n",
      "          'psychopathic': 1,\n",
      "          'accidentally': 1,\n",
      "          'hit': 1,\n",
      "          'middle': 1,\n",
      "          'road': 1,\n",
      "          'thinking': 1,\n",
      "          'dead': 1,\n",
      "          'dumped': 1,\n",
      "          'ocean': 1,\n",
      "          'relocated': 1,\n",
      "          'boston': 1,\n",
      "          'university': 1,\n",
      "          'often': 1,\n",
      "          'paranoid': 1,\n",
      "          'haunted': 1,\n",
      "          'bad': 1,\n",
      "          'dreams': 1,\n",
      "          'able': 1,\n",
      "          'put': 1,\n",
      "          'life': 1,\n",
      "          'back': 1,\n",
      "          'together': 1,\n",
      "          'julies': 1,\n",
      "          'friend': 1,\n",
      "          'called': 1,\n",
      "          'radio': 1,\n",
      "          'station': 1,\n",
      "          'answers': 1,\n",
      "          'correctly': 1,\n",
      "          'capital': 1,\n",
      "          'brazil': 1,\n",
      "          'wins': 1,\n",
      "          'vacation': 1,\n",
      "          'bahamas': 1,\n",
      "          'four': 1,\n",
      "          'includes': 1,\n",
      "          'karlas': 1,\n",
      "          'horny': 1,\n",
      "          'tyrell': 1,\n",
      "          'mekhi': 1,\n",
      "          'phifer': 1,\n",
      "          'matthew': 1,\n",
      "          'settle': 1,\n",
      "          'sets': 1,\n",
      "          'ray': 1,\n",
      "          'freddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'returning': 1,\n",
      "          'doesnt': 1,\n",
      "          'show': 1,\n",
      "          'reach': 1,\n",
      "          'secluded': 1,\n",
      "          'island': 1,\n",
      "          'discover': 1,\n",
      "          'day': 1,\n",
      "          'season': 1,\n",
      "          'stranded': 1,\n",
      "          '4th': 1,\n",
      "          'july': 1,\n",
      "          'weekend': 1,\n",
      "          'employees': 1,\n",
      "          'fend': 1,\n",
      "          'violent': 1,\n",
      "          'storm': 1,\n",
      "          'headed': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'workers': 1,\n",
      "          'arent': 1,\n",
      "          'ones': 1,\n",
      "          'murderous': 1,\n",
      "          'dressed': 1,\n",
      "          'garb': 1,\n",
      "          'seek': 1,\n",
      "          'revenge': 1,\n",
      "          'sad': 1,\n",
      "          'state': 1,\n",
      "          'affairs': 1,\n",
      "          'ni': 1,\n",
      "          'big': 1,\n",
      "          'especially': 1,\n",
      "          'disheartening': 1,\n",
      "          'find': 1,\n",
      "          'ikwydls': 1,\n",
      "          'almost': 1,\n",
      "          'replica': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'focused': 1,\n",
      "          'well': 1,\n",
      "          'genuinely': 1,\n",
      "          'suspenseful': 1,\n",
      "          'moments': 1,\n",
      "          'thanks': 1,\n",
      "          'screenplay': 1,\n",
      "          'kevin': 1,\n",
      "          'williamson': 1,\n",
      "          'didnt': 1,\n",
      "          'return': 1,\n",
      "          'write': 1,\n",
      "          'shows': 1,\n",
      "          'nhas': 1,\n",
      "          'vacuous': 1,\n",
      "          'filmmakers': 1,\n",
      "          'forced': 1,\n",
      "          'murder': 1,\n",
      "          'occur': 1,\n",
      "          'five': 1,\n",
      "          'keep': 1,\n",
      "          'audience': 1,\n",
      "          'interested': 1,\n",
      "          'gone': 1,\n",
      "          'signs': 1,\n",
      "          'development': 1,\n",
      "          'single': 1,\n",
      "          'got': 1,\n",
      "          'left': 1,\n",
      "          'stare': 1,\n",
      "          'screen': 1,\n",
      "          'indifferent': 1,\n",
      "          'going': 1,\n",
      "          'cared': 1,\n",
      "          'fates': 1,\n",
      "          'difference': 1,\n",
      "          'lived': 1,\n",
      "          'nthey': 1,\n",
      "          'paperthin': 1,\n",
      "          'pointless': 1,\n",
      "          'except': 1,\n",
      "          'become': 1,\n",
      "          'victims': 1,\n",
      "          'lethal': 1,\n",
      "          'hook': 1,\n",
      "          'nanother': 1,\n",
      "          'element': 1,\n",
      "          'memorable': 1,\n",
      "          'superbly': 1,\n",
      "          'crafted': 1,\n",
      "          'setpieces': 1,\n",
      "          'store': 1,\n",
      "          'sequence': 1,\n",
      "          'sarah': 1,\n",
      "          'michelle': 1,\n",
      "          'gellar': 1,\n",
      "          'none': 1,\n",
      "          'close': 1,\n",
      "          'moment': 1,\n",
      "          'many': 1,\n",
      "          'killed': 1,\n",
      "          'couple': 1,\n",
      "          'scares': 1,\n",
      "          'evaporated': 1,\n",
      "          'faster': 1,\n",
      "          'salt': 1,\n",
      "          'water': 1,\n",
      "          'note': 1,\n",
      "          'mystery': 1,\n",
      "          'second': 1,\n",
      "          'killer': 1,\n",
      "          'accomplice': 1,\n",
      "          'obvious': 1,\n",
      "          'frame': 1,\n",
      "          'couldnt': 1,\n",
      "          'even': 1,\n",
      "          'fun': 1,\n",
      "          'figures': 1,\n",
      "          'get': 1,\n",
      "          'recognition': 1,\n",
      "          'would': 1,\n",
      "          'along': 1,\n",
      "          'ruin': 1,\n",
      "          'else': 1,\n",
      "          'nmaybe': 1,\n",
      "          'realized': 1,\n",
      "          'order': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'must': 1,\n",
      "          'screenplayor': 1,\n",
      "          'least': 1,\n",
      "          'isnt': 1,\n",
      "          'black': 1,\n",
      "          'hole': 1,\n",
      "          'thoughts': 1,\n",
      "          'nthe': 1,\n",
      "          'ending': 1,\n",
      "          'inevitably': 1,\n",
      "          'leaves': 1,\n",
      "          'door': 1,\n",
      "          'wide': 1,\n",
      "          'third': 1,\n",
      "          'part': 1,\n",
      "          'judging': 1,\n",
      "          'amazingly': 1,\n",
      "          'lackluster': 1,\n",
      "          'involved': 1,\n",
      "          'quit': 1,\n",
      "          'ahead': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'pokemon': 9,\n",
      "          'movie': 9,\n",
      "          'film': 5,\n",
      "          'good': 5,\n",
      "          'fact': 4,\n",
      "          'even': 4,\n",
      "          'one': 4,\n",
      "          'first': 4,\n",
      "          'bad': 4,\n",
      "          'much': 4,\n",
      "          'animation': 4,\n",
      "          'wasnt': 3,\n",
      "          'big': 3,\n",
      "          'nthe': 3,\n",
      "          'end': 2,\n",
      "          'really': 2,\n",
      "          'nin': 2,\n",
      "          'million': 2,\n",
      "          'opening': 2,\n",
      "          'almost': 2,\n",
      "          'great': 2,\n",
      "          'plot': 2,\n",
      "          'ash': 2,\n",
      "          'best': 2,\n",
      "          'go': 2,\n",
      "          'friends': 2,\n",
      "          'neven': 2,\n",
      "          'thin': 2,\n",
      "          'nothing': 2,\n",
      "          'thing': 2,\n",
      "          'colors': 2,\n",
      "          'titles': 2,\n",
      "          'lame': 2,\n",
      "          'like': 2,\n",
      "          'still': 2,\n",
      "          'better': 2,\n",
      "          'around': 1,\n",
      "          '1998': 1,\n",
      "          'japanese': 1,\n",
      "          'cartoon': 1,\n",
      "          'came': 1,\n",
      "          'usa': 1,\n",
      "          'television': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'knew': 1,\n",
      "          '1999': 1,\n",
      "          'hit': 1,\n",
      "          'kids': 1,\n",
      "          'adults': 1,\n",
      "          'alike': 1,\n",
      "          'became': 1,\n",
      "          'biggest': 1,\n",
      "          'franchises': 1,\n",
      "          'merchandise': 1,\n",
      "          'seller': 1,\n",
      "          'time': 1,\n",
      "          'spawned': 1,\n",
      "          'screen': 1,\n",
      "          'adventure': 1,\n",
      "          'nit': 1,\n",
      "          'grossed': 1,\n",
      "          '31': 1,\n",
      "          'weekend': 1,\n",
      "          'went': 1,\n",
      "          'make': 1,\n",
      "          '90': 1,\n",
      "          'nfans': 1,\n",
      "          'thought': 1,\n",
      "          'second': 1,\n",
      "          'craze': 1,\n",
      "          '2000': 1,\n",
      "          'far': 1,\n",
      "          'inferior': 1,\n",
      "          'original': 1,\n",
      "          'animated': 1,\n",
      "          'nfirst': 1,\n",
      "          'isnt': 1,\n",
      "          'guy': 1,\n",
      "          'trying': 1,\n",
      "          'destroy': 1,\n",
      "          'ancient': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'lugia': 1,\n",
      "          'except': 1,\n",
      "          'kethcum': 1,\n",
      "          'worlds': 1,\n",
      "          'trainer': 1,\n",
      "          'must': 1,\n",
      "          'try': 1,\n",
      "          'stop': 1,\n",
      "          'destroys': 1,\n",
      "          'forever': 1,\n",
      "          'nwell': 1,\n",
      "          'course': 1,\n",
      "          'followed': 1,\n",
      "          'misty': 1,\n",
      "          'brock': 1,\n",
      "          'gary': 1,\n",
      "          'pikachu': 1,\n",
      "          'squirtle': 1,\n",
      "          'charizard': 1,\n",
      "          'usual': 1,\n",
      "          'though': 1,\n",
      "          'definately': 1,\n",
      "          'enjoyable': 1,\n",
      "          'wellmade': 1,\n",
      "          'actual': 1,\n",
      "          'storyline': 1,\n",
      "          'nthis': 1,\n",
      "          'new': 1,\n",
      "          'however': 1,\n",
      "          'garbage': 1,\n",
      "          'storywise': 1,\n",
      "          'comes': 1,\n",
      "          'plush': 1,\n",
      "          'ncompared': 1,\n",
      "          'awfully': 1,\n",
      "          'bland': 1,\n",
      "          'tries': 1,\n",
      "          'work': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'every': 1,\n",
      "          'corner': 1,\n",
      "          'characters': 1,\n",
      "          '1dimensional': 1,\n",
      "          'story': 1,\n",
      "          'chicken': 1,\n",
      "          'broth': 1,\n",
      "          'writing': 1,\n",
      "          'called': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'extremely': 1,\n",
      "          'falls': 1,\n",
      "          'gets': 1,\n",
      "          'chance': 1,\n",
      "          'voices': 1,\n",
      "          'arent': 1,\n",
      "          'feels': 1,\n",
      "          'stars': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'tell': 1,\n",
      "          'extremel': 1,\n",
      "          'nwhich': 1,\n",
      "          'certainly': 1,\n",
      "          'going': 1,\n",
      "          'although': 1,\n",
      "          'disney': 1,\n",
      "          'standards': 1,\n",
      "          'interesting': 1,\n",
      "          'cgis': 1,\n",
      "          'colorful': 1,\n",
      "          'jump': 1,\n",
      "          'fast': 1,\n",
      "          'seem': 1,\n",
      "          'nicely': 1,\n",
      "          'put': 1,\n",
      "          'nwhy': 1,\n",
      "          'got': 1,\n",
      "          'treatment': 1,\n",
      "          'question': 1,\n",
      "          'answered': 1,\n",
      "          'hopefully': 1,\n",
      "          '3': 1,\n",
      "          'next': 1,\n",
      "          'year': 1,\n",
      "          'trash': 1,\n",
      "          'nfor': 1,\n",
      "          'watch': 1,\n",
      "          'nits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'stone': 3,\n",
      "          'life': 3,\n",
      "          'trys': 2,\n",
      "          'allen': 2,\n",
      "          'story': 2,\n",
      "          'one': 2,\n",
      "          'z': 2,\n",
      "          'film': 2,\n",
      "          'even': 2,\n",
      "          'bugs': 2,\n",
      "          'stupid': 1,\n",
      "          'little': 1,\n",
      "          'movie': 1,\n",
      "          'clever': 1,\n",
      "          'sophisticated': 1,\n",
      "          'yet': 1,\n",
      "          'bit': 1,\n",
      "          'hard': 1,\n",
      "          'nwith': 1,\n",
      "          'voices': 1,\n",
      "          'woody': 1,\n",
      "          'gene': 1,\n",
      "          'hackman': 1,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'sharon': 1,\n",
      "          'computeranimated': 1,\n",
      "          'yakfest': 1,\n",
      "          'think': 1,\n",
      "          'toy': 1,\n",
      "          '1996': 1,\n",
      "          'filled': 1,\n",
      "          'used': 1,\n",
      "          'merchandising': 1,\n",
      "          'anteaters': 1,\n",
      "          'nthe': 1,\n",
      "          'main': 1,\n",
      "          'independence': 1,\n",
      "          'worker': 1,\n",
      "          'named': 1,\n",
      "          'nhe': 1,\n",
      "          'wants': 1,\n",
      "          'digging': 1,\n",
      "          'away': 1,\n",
      "          'underground': 1,\n",
      "          'colony': 1,\n",
      "          'nwhen': 1,\n",
      "          'finds': 1,\n",
      "          'insectopia': 1,\n",
      "          'mythical': 1,\n",
      "          'place': 1,\n",
      "          'insects': 1,\n",
      "          'run': 1,\n",
      "          'free': 1,\n",
      "          'along': 1,\n",
      "          'colonys': 1,\n",
      "          'princess': 1,\n",
      "          'journey': 1,\n",
      "          'world': 1,\n",
      "          'find': 1,\n",
      "          'meaning': 1,\n",
      "          'nabout': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'picture': 1,\n",
      "          'began': 1,\n",
      "          'wonder': 1,\n",
      "          'point': 1,\n",
      "          'nhalfway': 1,\n",
      "          'still': 1,\n",
      "          'didnt': 1,\n",
      "          'answer': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'gave': 1,\n",
      "          'ran': 1,\n",
      "          'nantz': 1,\n",
      "          'mindless': 1,\n",
      "          'mess': 1,\n",
      "          'poor': 1,\n",
      "          'writing': 1,\n",
      "          'poorer': 1,\n",
      "          'voiceovers': 1,\n",
      "          'nallen': 1,\n",
      "          'nonchalant': 1,\n",
      "          'would': 1,\n",
      "          'guessed': 1,\n",
      "          'hadnt': 1,\n",
      "          'seen': 1,\n",
      "          'mighty': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'cant': 1,\n",
      "          'act': 1,\n",
      "          'cartoon': 1,\n",
      "          'nthis': 1,\n",
      "          'unfunny': 1,\n",
      "          'extremely': 1,\n",
      "          'dull': 1,\n",
      "          'nhey': 1,\n",
      "          'may': 1,\n",
      "          'good': 1,\n",
      "          'time': 1,\n",
      "          'antz': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'godzilla': 16,\n",
      "          'one': 6,\n",
      "          'nthe': 6,\n",
      "          'n': 6,\n",
      "          'nhe': 5,\n",
      "          'new': 4,\n",
      "          'made': 4,\n",
      "          'film': 4,\n",
      "          'nhis': 4,\n",
      "          'first': 3,\n",
      "          'three': 3,\n",
      "          'nand': 3,\n",
      "          'ni': 3,\n",
      "          'good': 3,\n",
      "          'makes': 3,\n",
      "          'look': 3,\n",
      "          'never': 3,\n",
      "          'jurassic': 3,\n",
      "          'park': 3,\n",
      "          'films': 3,\n",
      "          'would': 3,\n",
      "          'city': 3,\n",
      "          'name': 3,\n",
      "          'know': 3,\n",
      "          'become': 2,\n",
      "          'long': 2,\n",
      "          'creature': 2,\n",
      "          'attack': 2,\n",
      "          'pacific': 2,\n",
      "          'islands': 2,\n",
      "          'seen': 2,\n",
      "          'broderick': 2,\n",
      "          'u': 2,\n",
      "          'military': 2,\n",
      "          'year': 2,\n",
      "          'boy': 2,\n",
      "          'use': 2,\n",
      "          'supposed': 2,\n",
      "          'really': 2,\n",
      "          'refuse': 2,\n",
      "          'said': 2,\n",
      "          'emmerich': 2,\n",
      "          'needs': 2,\n",
      "          'like': 2,\n",
      "          'american': 2,\n",
      "          'give': 2,\n",
      "          'holds': 2,\n",
      "          'anyone': 2,\n",
      "          'size': 2,\n",
      "          'looking': 2,\n",
      "          'stop': 2,\n",
      "          'na': 2,\n",
      "          'ever': 2,\n",
      "          'strikes': 2,\n",
      "          'york': 2,\n",
      "          'mayor': 2,\n",
      "          'ebert': 2,\n",
      "          'ngodzilla': 2,\n",
      "          'run': 2,\n",
      "          'raptors': 2,\n",
      "          'running': 2,\n",
      "          'oh': 2,\n",
      "          'island': 2,\n",
      "          'fish': 2,\n",
      "          'thing': 2,\n",
      "          'hollywood': 2,\n",
      "          'youd': 2,\n",
      "          'nat': 2,\n",
      "          'zucker': 2,\n",
      "          'jokes': 2,\n",
      "          'nbut': 2,\n",
      "          'nuclear': 1,\n",
      "          'freak': 1,\n",
      "          'lizard': 1,\n",
      "          'mutated': 1,\n",
      "          'years': 1,\n",
      "          'species': 1,\n",
      "          'foot': 1,\n",
      "          'bus': 1,\n",
      "          'claw': 1,\n",
      "          'sign': 1,\n",
      "          'nthis': 1,\n",
      "          'aquatic': 1,\n",
      "          'tore': 1,\n",
      "          'ship': 1,\n",
      "          'carried': 1,\n",
      "          'dozens': 1,\n",
      "          'japanese': 1,\n",
      "          'men': 1,\n",
      "          'none': 1,\n",
      "          'survived': 1,\n",
      "          'nonly': 1,\n",
      "          'left': 1,\n",
      "          'recount': 1,\n",
      "          'terror': 1,\n",
      "          'merely': 1,\n",
      "          'able': 1,\n",
      "          'repeat': 1,\n",
      "          'words': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'matthew': 1,\n",
      "          'biologist': 1,\n",
      "          'studying': 1,\n",
      "          'fascinating': 1,\n",
      "          'growth': 1,\n",
      "          'chernobyl': 1,\n",
      "          'earthworms': 1,\n",
      "          'theyre': 1,\n",
      "          '17': 1,\n",
      "          'larger': 1,\n",
      "          'used': 1,\n",
      "          'proclaims': 1,\n",
      "          'pulls': 1,\n",
      "          'project': 1,\n",
      "          'assigns': 1,\n",
      "          'figure': 1,\n",
      "          'find': 1,\n",
      "          'suck': 1,\n",
      "          'hate': 1,\n",
      "          'word': 1,\n",
      "          'review': 1,\n",
      "          'something': 1,\n",
      "          'inform': 1,\n",
      "          'audience': 1,\n",
      "          'need': 1,\n",
      "          'drive': 1,\n",
      "          'home': 1,\n",
      "          'explitives': 1,\n",
      "          'nit': 1,\n",
      "          'unbelieveable': 1,\n",
      "          'producers': 1,\n",
      "          'movie': 1,\n",
      "          'saw': 1,\n",
      "          'final': 1,\n",
      "          'cut': 1,\n",
      "          'ok': 1,\n",
      "          'nits': 1,\n",
      "          'great': 1,\n",
      "          'nlets': 1,\n",
      "          'show': 1,\n",
      "          'puppy': 1,\n",
      "          'nroland': 1,\n",
      "          'horse': 1,\n",
      "          'whipping': 1,\n",
      "          'latest': 1,\n",
      "          'piece': 1,\n",
      "          'trash': 1,\n",
      "          'id4': 1,\n",
      "          'masterpiece': 1,\n",
      "          'modern': 1,\n",
      "          'cinema': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'team': 1,\n",
      "          'talentchallenged': 1,\n",
      "          'imbeciles': 1,\n",
      "          'clue': 1,\n",
      "          'nlet': 1,\n",
      "          'examples': 1,\n",
      "          'terrible': 1,\n",
      "          'attempt': 1,\n",
      "          'filmmaking': 1,\n",
      "          'plan': 1,\n",
      "          'giving': 1,\n",
      "          'things': 1,\n",
      "          'away': 1,\n",
      "          'nbelive': 1,\n",
      "          'surprises': 1,\n",
      "          'iq': 1,\n",
      "          'higher': 1,\n",
      "          'shoe': 1,\n",
      "          'nworries': 1,\n",
      "          'nhowever': 1,\n",
      "          'time': 1,\n",
      "          'thrill': 1,\n",
      "          'let': 1,\n",
      "          'favor': 1,\n",
      "          'means': 1,\n",
      "          'reading': 1,\n",
      "          'next': 1,\n",
      "          'num': 1,\n",
      "          'map': 1,\n",
      "          'handy': 1,\n",
      "          'nb': 1,\n",
      "          'heavy': 1,\n",
      "          'set': 1,\n",
      "          'individual': 1,\n",
      "          'parted': 1,\n",
      "          'gray': 1,\n",
      "          'hair': 1,\n",
      "          'thick': 1,\n",
      "          'glasses': 1,\n",
      "          'assistant': 1,\n",
      "          'named': 1,\n",
      "          'gene': 1,\n",
      "          'ngene': 1,\n",
      "          'gives': 1,\n",
      "          'thumbs': 1,\n",
      "          'end': 1,\n",
      "          'couldnt': 1,\n",
      "          'make': 1,\n",
      "          'tried': 1,\n",
      "          'folks': 1,\n",
      "          'nc': 1,\n",
      "          'stay': 1,\n",
      "          'nok': 1,\n",
      "          'torpedoes': 1,\n",
      "          'nhank': 1,\n",
      "          'azaria': 1,\n",
      "          'babies': 1,\n",
      "          'nd': 1,\n",
      "          'upon': 1,\n",
      "          'realization': 1,\n",
      "          'disappeared': 1,\n",
      "          'rampant': 1,\n",
      "          'decides': 1,\n",
      "          'might': 1,\n",
      "          'hiding': 1,\n",
      "          'building': 1,\n",
      "          'ne': 1,\n",
      "          'yeah': 1,\n",
      "          'go': 1,\n",
      "          'way': 1,\n",
      "          'e': 1,\n",
      "          'manhattan': 1,\n",
      "          'nmanhattan': 1,\n",
      "          'approximately': 1,\n",
      "          'san': 1,\n",
      "          'francisco': 1,\n",
      "          'million': 1,\n",
      "          'people': 1,\n",
      "          'nthey': 1,\n",
      "          'evactuate': 1,\n",
      "          'jersey': 1,\n",
      "          'day': 1,\n",
      "          'nno': 1,\n",
      "          'problem': 1,\n",
      "          'nf': 1,\n",
      "          'early': 1,\n",
      "          'bait': 1,\n",
      "          'likes': 1,\n",
      "          'atlantic': 1,\n",
      "          'ocean': 1,\n",
      "          'steps': 1,\n",
      "          'east': 1,\n",
      "          'pile': 1,\n",
      "          'whole': 1,\n",
      "          'bunch': 1,\n",
      "          'grouper': 1,\n",
      "          'fifth': 1,\n",
      "          '57th': 1,\n",
      "          'nhes': 1,\n",
      "          'gon': 1,\n",
      "          'come': 1,\n",
      "          'ng': 1,\n",
      "          'nill': 1,\n",
      "          'list': 1,\n",
      "          'nalphabet': 1,\n",
      "          'isnt': 1,\n",
      "          'big': 1,\n",
      "          'enough': 1,\n",
      "          'anyway': 1,\n",
      "          'dialogue': 1,\n",
      "          'wonder': 1,\n",
      "          'producer': 1,\n",
      "          'dean': 1,\n",
      "          'devlin': 1,\n",
      "          'five': 1,\n",
      "          'old': 1,\n",
      "          'rewrite': 1,\n",
      "          'kid': 1,\n",
      "          'must': 1,\n",
      "          'nmaria': 1,\n",
      "          'pitillo': 1,\n",
      "          'starring': 1,\n",
      "          'potential': 1,\n",
      "          'blockbuster': 1,\n",
      "          'nbad': 1,\n",
      "          'move': 1,\n",
      "          'maria': 1,\n",
      "          'nacting': 1,\n",
      "          'doesnt': 1,\n",
      "          'get': 1,\n",
      "          'much': 1,\n",
      "          'worse': 1,\n",
      "          'turn': 1,\n",
      "          'brodericks': 1,\n",
      "          'exflame': 1,\n",
      "          'nmatthew': 1,\n",
      "          'actor': 1,\n",
      "          'chance': 1,\n",
      "          'njean': 1,\n",
      "          'reno': 1,\n",
      "          'pick': 1,\n",
      "          'bit': 1,\n",
      "          'carefully': 1,\n",
      "          'times': 1,\n",
      "          'seems': 1,\n",
      "          'headed': 1,\n",
      "          'toward': 1,\n",
      "          'abrahams': 1,\n",
      "          'airplane': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'indeed': 1,\n",
      "          'bad': 1,\n",
      "          'think': 1,\n",
      "          'filmmakers': 1,\n",
      "          'fun': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'nhow': 1,\n",
      "          'dare': 1,\n",
      "          'better': 1,\n",
      "          'thrown': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'visual': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'fart': 1,\n",
      "          'least': 1,\n",
      "          'laugh': 1,\n",
      "          'neach': 1,\n",
      "          'every': 1,\n",
      "          'character': 1,\n",
      "          'beyond': 1,\n",
      "          'stupid': 1,\n",
      "          'pulling': 1,\n",
      "          'beast': 1,\n",
      "          'kill': 1,\n",
      "          'nemmerich': 1,\n",
      "          'though': 1,\n",
      "          'ive': 1,\n",
      "          'idea': 1,\n",
      "          'intentional': 1,\n",
      "          'sympathize': 1,\n",
      "          'attackers': 1,\n",
      "          'damn': 1,\n",
      "          'dumb': 1,\n",
      "          'felt': 1,\n",
      "          'sorry': 1,\n",
      "          'pelted': 1,\n",
      "          'bullets': 1,\n",
      "          'missles': 1,\n",
      "          'feel': 1,\n",
      "          'even': 1,\n",
      "          'sorrier': 1,\n",
      "          'famous': 1,\n",
      "          'always': 1,\n",
      "          'attatched': 1,\n",
      "          'worst': 1,\n",
      "          'produced': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bugs': 8,\n",
      "          'life': 7,\n",
      "          'film': 5,\n",
      "          'story': 5,\n",
      "          'last': 4,\n",
      "          'animated': 3,\n",
      "          'two': 3,\n",
      "          'n': 3,\n",
      "          'toy': 3,\n",
      "          'year': 3,\n",
      "          'nthe': 3,\n",
      "          'films': 3,\n",
      "          'movie': 2,\n",
      "          'considering': 2,\n",
      "          'insect': 2,\n",
      "          'antz': 2,\n",
      "          'ni': 2,\n",
      "          'yet': 2,\n",
      "          'best': 2,\n",
      "          '1995s': 2,\n",
      "          'even': 2,\n",
      "          'nflik': 2,\n",
      "          'david': 2,\n",
      "          'ant': 2,\n",
      "          'many': 2,\n",
      "          'hopper': 2,\n",
      "          'one': 2,\n",
      "          'thing': 2,\n",
      "          'without': 2,\n",
      "          'characters': 2,\n",
      "          'disney': 2,\n",
      "          'christmas': 2,\n",
      "          'recent': 1,\n",
      "          'debacles': 1,\n",
      "          'rugrats': 1,\n",
      "          'seriously': 1,\n",
      "          'raising': 1,\n",
      "          'highly': 1,\n",
      "          'negative': 1,\n",
      "          'rating': 1,\n",
      "          'dreamworks': 1,\n",
      "          'october': 1,\n",
      "          'hated': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'latest': 1,\n",
      "          'excursions': 1,\n",
      "          'second': 1,\n",
      "          'months': 1,\n",
      "          'hoped': 1,\n",
      "          'done': 1,\n",
      "          'wonderful': 1,\n",
      "          'style': 1,\n",
      "          'pixars': 1,\n",
      "          'way': 1,\n",
      "          'remotely': 1,\n",
      "          'match': 1,\n",
      "          'foley': 1,\n",
      "          'along': 1,\n",
      "          'comrades': 1,\n",
      "          'job': 1,\n",
      "          'every': 1,\n",
      "          'gathering': 1,\n",
      "          'seasonal': 1,\n",
      "          'harvest': 1,\n",
      "          'give': 1,\n",
      "          'half': 1,\n",
      "          'away': 1,\n",
      "          'dominating': 1,\n",
      "          'grasshoppers': 1,\n",
      "          'led': 1,\n",
      "          'kevin': 1,\n",
      "          'spacey': 1,\n",
      "          'however': 1,\n",
      "          'feels': 1,\n",
      "          'alone': 1,\n",
      "          'unwanted': 1,\n",
      "          'world': 1,\n",
      "          'especially': 1,\n",
      "          'accidentally': 1,\n",
      "          'loses': 1,\n",
      "          'food': 1,\n",
      "          'ants': 1,\n",
      "          'threated': 1,\n",
      "          'gather': 1,\n",
      "          'whole': 1,\n",
      "          'seasons': 1,\n",
      "          'load': 1,\n",
      "          'time': 1,\n",
      "          'summer': 1,\n",
      "          'leaf': 1,\n",
      "          'falls': 1,\n",
      "          'trees': 1,\n",
      "          'nbanished': 1,\n",
      "          'island': 1,\n",
      "          'flik': 1,\n",
      "          'leaves': 1,\n",
      "          'colony': 1,\n",
      "          'search': 1,\n",
      "          'strong': 1,\n",
      "          'reinforcement': 1,\n",
      "          'help': 1,\n",
      "          'misunderstanding': 1,\n",
      "          'returns': 1,\n",
      "          'handful': 1,\n",
      "          'helpless': 1,\n",
      "          'circus': 1,\n",
      "          'including': 1,\n",
      "          'walking': 1,\n",
      "          'stick': 1,\n",
      "          'hyde': 1,\n",
      "          'pierce': 1,\n",
      "          'dung': 1,\n",
      "          'beetle': 1,\n",
      "          'brad': 1,\n",
      "          'garrett': 1,\n",
      "          'gypsy': 1,\n",
      "          'moth': 1,\n",
      "          'madeline': 1,\n",
      "          'kahn': 1,\n",
      "          'male': 1,\n",
      "          'ladybug': 1,\n",
      "          'denis': 1,\n",
      "          'leary': 1,\n",
      "          'caterpillar': 1,\n",
      "          'joe': 1,\n",
      "          'ranft': 1,\n",
      "          'going': 1,\n",
      "          'nonly': 1,\n",
      "          'nwith': 1,\n",
      "          'glorious': 1,\n",
      "          'bright': 1,\n",
      "          'colors': 1,\n",
      "          'computergenerated': 1,\n",
      "          'animation': 1,\n",
      "          'spectacle': 1,\n",
      "          'look': 1,\n",
      "          'unfortunately': 1,\n",
      "          'lifeless': 1,\n",
      "          'unamusing': 1,\n",
      "          'contraption': 1,\n",
      "          'flair': 1,\n",
      "          'excitement': 1,\n",
      "          'assortment': 1,\n",
      "          'either': 1,\n",
      "          'unlikable': 1,\n",
      "          'dull': 1,\n",
      "          'insects': 1,\n",
      "          'charm': 1,\n",
      "          'personality': 1,\n",
      "          'stand': 1,\n",
      "          'around': 1,\n",
      "          'recite': 1,\n",
      "          'arbitrary': 1,\n",
      "          'thoroughly': 1,\n",
      "          'unfunny': 1,\n",
      "          'oneliners': 1,\n",
      "          'thin': 1,\n",
      "          'also': 1,\n",
      "          'stretched': 1,\n",
      "          'nearly': 1,\n",
      "          'unbearable': 1,\n",
      "          '94': 1,\n",
      "          'minutes': 1,\n",
      "          'often': 1,\n",
      "          'felt': 1,\n",
      "          'ran': 1,\n",
      "          'ideas': 1,\n",
      "          'throughout': 1,\n",
      "          'made': 1,\n",
      "          'pointless': 1,\n",
      "          'scenes': 1,\n",
      "          'pass': 1,\n",
      "          'timefiller': 1,\n",
      "          'nafter': 1,\n",
      "          'giving': 1,\n",
      "          'scathing': 1,\n",
      "          'reviews': 1,\n",
      "          'beginning': 1,\n",
      "          'think': 1,\n",
      "          'simply': 1,\n",
      "          'outgrown': 1,\n",
      "          'realized': 1,\n",
      "          'still': 1,\n",
      "          'adore': 1,\n",
      "          'almost': 1,\n",
      "          'older': 1,\n",
      "          'newer': 1,\n",
      "          'ones': 1,\n",
      "          '1989s': 1,\n",
      "          'little': 1,\n",
      "          'mermaid': 1,\n",
      "          '1991s': 1,\n",
      "          'beauty': 1,\n",
      "          'beast': 1,\n",
      "          '1993s': 1,\n",
      "          'nightmare': 1,\n",
      "          'yes': 1,\n",
      "          'nmaybe': 1,\n",
      "          'bad': 1,\n",
      "          'childrens': 1,\n",
      "          'hopefully': 1,\n",
      "          'upcoming': 1,\n",
      "          'prince': 1,\n",
      "          'egypt': 1,\n",
      "          'disappointment': 1,\n",
      "          'nas': 1,\n",
      "          'enjoy': 1,\n",
      "          'anything': 1,\n",
      "          'nnot': 1,\n",
      "          'voiceover': 1,\n",
      "          'work': 1,\n",
      "          'far': 1,\n",
      "          'lively': 1,\n",
      "          'goes': 1,\n",
      "          'another': 1,\n",
      "          'failure': 1,\n",
      "          'sad': 1,\n",
      "          'state': 1,\n",
      "          'affairs': 1,\n",
      "          'years': 1,\n",
      "          'minor': 1,\n",
      "          'jonathan': 1,\n",
      "          'taylor': 1,\n",
      "          'thomas': 1,\n",
      "          'picture': 1,\n",
      "          'ill': 1,\n",
      "          'home': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'van': 8,\n",
      "          'action': 8,\n",
      "          'damme': 7,\n",
      "          'like': 4,\n",
      "          'plot': 4,\n",
      "          'time': 3,\n",
      "          'nthe': 3,\n",
      "          'movie': 3,\n",
      "          'nand': 3,\n",
      "          'nknock': 3,\n",
      "          'even': 3,\n",
      "          'nit': 3,\n",
      "          'camera': 3,\n",
      "          'ni': 3,\n",
      "          'upon': 2,\n",
      "          'hollywood': 2,\n",
      "          'mindless': 2,\n",
      "          'films': 2,\n",
      "          'watching': 2,\n",
      "          'become': 2,\n",
      "          'enjoy': 2,\n",
      "          'counterfeit': 2,\n",
      "          'jeans': 2,\n",
      "          'working': 2,\n",
      "          'annoying': 2,\n",
      "          'mole': 2,\n",
      "          'nim': 2,\n",
      "          'next': 2,\n",
      "          'really': 2,\n",
      "          'weapons': 2,\n",
      "          'nhe': 2,\n",
      "          'stoops': 2,\n",
      "          'low': 2,\n",
      "          'nif': 2,\n",
      "          'knock': 2,\n",
      "          'ridiculous': 2,\n",
      "          'could': 2,\n",
      "          'rather': 2,\n",
      "          'us': 2,\n",
      "          'suppose': 2,\n",
      "          'much': 2,\n",
      "          'say': 2,\n",
      "          'har': 2,\n",
      "          'jeanclaude': 1,\n",
      "          'decent': 1,\n",
      "          'hero': 1,\n",
      "          'muscles': 1,\n",
      "          'brussels': 1,\n",
      "          'bursted': 1,\n",
      "          'market': 1,\n",
      "          'adventure': 1,\n",
      "          'boasting': 1,\n",
      "          'spectacular': 1,\n",
      "          'martialarts': 1,\n",
      "          'ability': 1,\n",
      "          'nsome': 1,\n",
      "          'excursions': 1,\n",
      "          'fun': 1,\n",
      "          'nbut': 1,\n",
      "          'seems': 1,\n",
      "          'painful': 1,\n",
      "          'chore': 1,\n",
      "          'rewards': 1,\n",
      "          'virtually': 1,\n",
      "          'guaranteed': 1,\n",
      "          'helping': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'goes': 1,\n",
      "          'sour': 1,\n",
      "          'left': 1,\n",
      "          'nill': 1,\n",
      "          'explain': 1,\n",
      "          'pair': 1,\n",
      "          'salesmen': 1,\n",
      "          'office': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'nmarcus': 1,\n",
      "          'ray': 1,\n",
      "          'babemagnet': 1,\n",
      "          'stylish': 1,\n",
      "          'dresser': 1,\n",
      "          'heads': 1,\n",
      "          'company': 1,\n",
      "          'weasel': 1,\n",
      "          'partner': 1,\n",
      "          'rob': 1,\n",
      "          'schneider': 1,\n",
      "          'nthey': 1,\n",
      "          'part': 1,\n",
      "          'involving': 1,\n",
      "          'microbombs': 1,\n",
      "          'implanted': 1,\n",
      "          'seemingly': 1,\n",
      "          'business': 1,\n",
      "          'going': 1,\n",
      "          'reveal': 1,\n",
      "          'everything': 1,\n",
      "          'paragraph': 1,\n",
      "          'want': 1,\n",
      "          'review': 1,\n",
      "          'devoid': 1,\n",
      "          'spoilers': 1,\n",
      "          'skip': 1,\n",
      "          'onto': 1,\n",
      "          'one': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'gives': 1,\n",
      "          'crap': 1,\n",
      "          'ill': 1,\n",
      "          'issue': 1,\n",
      "          'warning': 1,\n",
      "          'anyhow': 1,\n",
      "          'ntommy': 1,\n",
      "          'cia': 1,\n",
      "          'nhis': 1,\n",
      "          'boss': 1,\n",
      "          'hammy': 1,\n",
      "          'flat': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'wants': 1,\n",
      "          'cause': 1,\n",
      "          'carnage': 1,\n",
      "          'tiny': 1,\n",
      "          'immensely': 1,\n",
      "          'powerful': 1,\n",
      "          'super': 1,\n",
      "          'put': 1,\n",
      "          'childrens': 1,\n",
      "          'toys': 1,\n",
      "          'thought': 1,\n",
      "          'outline': 1,\n",
      "          'sounded': 1,\n",
      "          'intriguing': 1,\n",
      "          'probably': 1,\n",
      "          'think': 1,\n",
      "          'setup': 1,\n",
      "          'couldnt': 1,\n",
      "          'fill': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'screen': 1,\n",
      "          'without': 1,\n",
      "          'causing': 1,\n",
      "          'roll': 1,\n",
      "          'laughing': 1,\n",
      "          'might': 1,\n",
      "          'cup': 1,\n",
      "          'tea': 1,\n",
      "          'sucks': 1,\n",
      "          'levels': 1,\n",
      "          'individuals': 1,\n",
      "          'conjure': 1,\n",
      "          'horrific': 1,\n",
      "          'nightmares': 1,\n",
      "          'amazes': 1,\n",
      "          'far': 1,\n",
      "          'producers': 1,\n",
      "          'go': 1,\n",
      "          'sell': 1,\n",
      "          'something': 1,\n",
      "          'simply': 1,\n",
      "          'star': 1,\n",
      "          'pathetic': 1,\n",
      "          'garbage': 1,\n",
      "          'strung': 1,\n",
      "          'together': 1,\n",
      "          'inane': 1,\n",
      "          'sequences': 1,\n",
      "          'baffle': 1,\n",
      "          'mind': 1,\n",
      "          'performances': 1,\n",
      "          'wooden': 1,\n",
      "          'use': 1,\n",
      "          'row': 1,\n",
      "          'canoe': 1,\n",
      "          'absolute': 1,\n",
      "          'catastrophe': 1,\n",
      "          'ndirector': 1,\n",
      "          'tsui': 1,\n",
      "          'hark': 1,\n",
      "          'teamed': 1,\n",
      "          'superior': 1,\n",
      "          'still': 1,\n",
      "          'lamebrained': 1,\n",
      "          'double': 1,\n",
      "          'team': 1,\n",
      "          'helm': 1,\n",
      "          'would': 1,\n",
      "          'attempt': 1,\n",
      "          'dazzle': 1,\n",
      "          'fantastic': 1,\n",
      "          'angles': 1,\n",
      "          'engage': 1,\n",
      "          'enjoyed': 1,\n",
      "          'work': 1,\n",
      "          'incessant': 1,\n",
      "          'desperation': 1,\n",
      "          'made': 1,\n",
      "          'nauseous': 1,\n",
      "          'picture': 1,\n",
      "          'freezes': 1,\n",
      "          'middle': 1,\n",
      "          'sequence': 1,\n",
      "          'speeds': 1,\n",
      "          'altered': 1,\n",
      "          'consistently': 1,\n",
      "          'tricks': 1,\n",
      "          'mostly': 1,\n",
      "          'apply': 1,\n",
      "          'traveling': 1,\n",
      "          'gun': 1,\n",
      "          'barrels': 1,\n",
      "          'fired': 1,\n",
      "          'sounds': 1,\n",
      "          'cool': 1,\n",
      "          'ntrust': 1,\n",
      "          'isnt': 1,\n",
      "          'nas': 1,\n",
      "          'scars': 1,\n",
      "          'terrible': 1,\n",
      "          'nsure': 1,\n",
      "          'lots': 1,\n",
      "          'fancy': 1,\n",
      "          'kickboxing': 1,\n",
      "          'moves': 1,\n",
      "          'dodges': 1,\n",
      "          'giant': 1,\n",
      "          'crates': 1,\n",
      "          'greatest': 1,\n",
      "          'ease': 1,\n",
      "          'looks': 1,\n",
      "          'hes': 1,\n",
      "          'bad': 1,\n",
      "          'impersonation': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'performance': 1,\n",
      "          'stiff': 1,\n",
      "          'tired': 1,\n",
      "          'hate': 1,\n",
      "          'perhaps': 1,\n",
      "          'mr': 1,\n",
      "          'give': 1,\n",
      "          'day': 1,\n",
      "          'job': 1,\n",
      "          'nits': 1,\n",
      "          'test': 1,\n",
      "          'endurance': 1,\n",
      "          'theres': 1,\n",
      "          'enjoyment': 1,\n",
      "          'derived': 1,\n",
      "          'schneiders': 1,\n",
      "          'character': 1,\n",
      "          'extremely': 1,\n",
      "          'provides': 1,\n",
      "          'better': 1,\n",
      "          'moments': 1,\n",
      "          'beautiful': 1,\n",
      "          'lela': 1,\n",
      "          'rochon': 1,\n",
      "          'nhopefully': 1,\n",
      "          'grabbed': 1,\n",
      "          'paycheck': 1,\n",
      "          'fled': 1,\n",
      "          'premises': 1,\n",
      "          'olympic': 1,\n",
      "          'sprinter': 1,\n",
      "          'doesnt': 1,\n",
      "          'stand': 1,\n",
      "          'strong': 1,\n",
      "          'entertaining': 1,\n",
      "          'film': 1,\n",
      "          'handful': 1,\n",
      "          'dammes': 1,\n",
      "          'others': 1,\n",
      "          'nno': 1,\n",
      "          'embarrassment': 1,\n",
      "          'entire': 1,\n",
      "          'genre': 1,\n",
      "          'modern': 1,\n",
      "          'filmmaking': 1,\n",
      "          'considering': 1,\n",
      "          'stooped': 1,\n",
      "          'late': 1,\n",
      "          'department': 1,\n",
      "          'certainly': 1,\n",
      "          'saying': 1,\n",
      "          'nnote': 1,\n",
      "          'self': 1,\n",
      "          'avoid': 1,\n",
      "          'universal': 1,\n",
      "          'soldier': 1,\n",
      "          '2': 1,\n",
      "          'return': 1,\n",
      "          'release': 1,\n",
      "          'august': 1,\n",
      "          '99': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 4,\n",
      "          'museum': 3,\n",
      "          'movie': 3,\n",
      "          'relic': 2,\n",
      "          'scream': 2,\n",
      "          'creature': 2,\n",
      "          'goes': 2,\n",
      "          'even': 2,\n",
      "          'quite': 2,\n",
      "          'hard': 2,\n",
      "          'miller': 2,\n",
      "          'oscar': 2,\n",
      "          'scene': 2,\n",
      "          'horror': 2,\n",
      "          'cliches': 2,\n",
      "          'one': 2,\n",
      "          'stall': 2,\n",
      "          'runs': 2,\n",
      "          'year': 1,\n",
      "          'barely': 1,\n",
      "          'week': 1,\n",
      "          'old': 1,\n",
      "          'already': 1,\n",
      "          'candidate': 1,\n",
      "          'worst': 1,\n",
      "          '1997the': 1,\n",
      "          'wouldbe': 1,\n",
      "          'chiller': 1,\n",
      "          'thats': 1,\n",
      "          'successful': 1,\n",
      "          'making': 1,\n",
      "          'audience': 1,\n",
      "          'laugh': 1,\n",
      "          'nin': 1,\n",
      "          'ridiculous': 1,\n",
      "          'uberhack': 1,\n",
      "          'peter': 1,\n",
      "          'hyams': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'two': 1,\n",
      "          'pictures': 1,\n",
      "          'dreadful': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'vehicles': 1,\n",
      "          'feeds': 1,\n",
      "          'hypothalamuses': 1,\n",
      "          'hypothalamii': 1,\n",
      "          'humans': 1,\n",
      "          'animals': 1,\n",
      "          'killing': 1,\n",
      "          'spree': 1,\n",
      "          'chicago': 1,\n",
      "          'nhow': 1,\n",
      "          'come': 1,\n",
      "          'existence': 1,\n",
      "          'feed': 1,\n",
      "          'hormones': 1,\n",
      "          'nthe': 1,\n",
      "          'scientific': 1,\n",
      "          'explanation': 1,\n",
      "          'cooked': 1,\n",
      "          'fouryes': 1,\n",
      "          'fourcredited': 1,\n",
      "          'screenwriters': 1,\n",
      "          'amy': 1,\n",
      "          'holden': 1,\n",
      "          'jones': 1,\n",
      "          'john': 1,\n",
      "          'raffo': 1,\n",
      "          'rick': 1,\n",
      "          'jaffa': 1,\n",
      "          'amanda': 1,\n",
      "          'silver': 1,\n",
      "          'takes': 1,\n",
      "          'suspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'new': 1,\n",
      "          'heights': 1,\n",
      "          'monster': 1,\n",
      "          'standards': 1,\n",
      "          'nbut': 1,\n",
      "          'cockamamie': 1,\n",
      "          'science': 1,\n",
      "          'isnt': 1,\n",
      "          'swallow': 1,\n",
      "          'casting': 1,\n",
      "          'clueless': 1,\n",
      "          'penelope': 1,\n",
      "          'ann': 1,\n",
      "          'brilliant': 1,\n",
      "          'molecular': 1,\n",
      "          'biologist': 1,\n",
      "          'specializes': 1,\n",
      "          'evolutionary': 1,\n",
      "          'genetics': 1,\n",
      "          'nmiller': 1,\n",
      "          'acts': 1,\n",
      "          'wants': 1,\n",
      "          'nomination': 1,\n",
      "          'turning': 1,\n",
      "          'every': 1,\n",
      "          'requires': 1,\n",
      "          'slightest': 1,\n",
      "          'display': 1,\n",
      "          'emotion': 1,\n",
      "          'overblown': 1,\n",
      "          'clip': 1,\n",
      "          'complete': 1,\n",
      "          'piercing': 1,\n",
      "          'wails': 1,\n",
      "          'glycerine': 1,\n",
      "          'tears': 1,\n",
      "          'ngive': 1,\n",
      "          'penelopeits': 1,\n",
      "          '_monster_movie_': 1,\n",
      "          'non': 1,\n",
      "          'flip': 1,\n",
      "          'side': 1,\n",
      "          'tom': 1,\n",
      "          'sizemore': 1,\n",
      "          'phones': 1,\n",
      "          'performance': 1,\n",
      "          'police': 1,\n",
      "          'lieutenant': 1,\n",
      "          'role': 1,\n",
      "          'thankless': 1,\n",
      "          'imagine': 1,\n",
      "          'played': 1,\n",
      "          'effectively': 1,\n",
      "          'nits': 1,\n",
      "          'funny': 1,\n",
      "          'see': 1,\n",
      "          'indulge': 1,\n",
      "          'straightest': 1,\n",
      "          'faces': 1,\n",
      "          'cheesy': 1,\n",
      "          'wes': 1,\n",
      "          'craven': 1,\n",
      "          'lampooned': 1,\n",
      "          'well': 1,\n",
      "          'recently': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'early': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'bathroom': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'nok': 1,\n",
      "          'know': 1,\n",
      "          'whats': 1,\n",
      "          'coming': 1,\n",
      "          'didnt': 1,\n",
      "          'need': 1,\n",
      "          'confirmation': 1,\n",
      "          'pulls': 1,\n",
      "          'joint': 1,\n",
      "          'starts': 1,\n",
      "          'puffing': 1,\n",
      "          'away': 1,\n",
      "          'neveryone': 1,\n",
      "          'knows': 1,\n",
      "          'happens': 1,\n",
      "          'people': 1,\n",
      "          'drugs': 1,\n",
      "          'scary': 1,\n",
      "          'nand': 1,\n",
      "          'later': 1,\n",
      "          'frantically': 1,\n",
      "          'exhibit': 1,\n",
      "          'hears': 1,\n",
      "          'suspicious': 1,\n",
      "          'heavy': 1,\n",
      "          'breathing': 1,\n",
      "          'ndoes': 1,\n",
      "          'make': 1,\n",
      "          'beeline': 1,\n",
      "          'front': 1,\n",
      "          'door': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'notshe': 1,\n",
      "          'ladies': 1,\n",
      "          'room': 1,\n",
      "          'cowers': 1,\n",
      "          'nwith': 1,\n",
      "          'fitting': 1,\n",
      "          'films': 1,\n",
      "          'climax': 1,\n",
      "          'offers': 1,\n",
      "          'perhaps': 1,\n",
      "          'overused': 1,\n",
      "          'recent': 1,\n",
      "          'someone': 1,\n",
      "          'outrunning': 1,\n",
      "          'fireball': 1,\n",
      "          'nif': 1,\n",
      "          'truly': 1,\n",
      "          'next': 1,\n",
      "          'evolution': 1,\n",
      "          'terror': 1,\n",
      "          'poster': 1,\n",
      "          'states': 1,\n",
      "          'filmand': 1,\n",
      "          'humanityis': 1,\n",
      "          'worse': 1,\n",
      "          'shape': 1,\n",
      "          'thought': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'two': 3,\n",
      "          'play': 2,\n",
      "          'game': 2,\n",
      "          'success': 2,\n",
      "          'romantic': 2,\n",
      "          'shante': 2,\n",
      "          'smith': 2,\n",
      "          'robinson': 2,\n",
      "          'man': 2,\n",
      "          'rules': 2,\n",
      "          'love': 2,\n",
      "          'brown': 2,\n",
      "          'day': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'screen': 1,\n",
      "          'gems': 1,\n",
      "          'nsince': 1,\n",
      "          'waiting': 1,\n",
      "          'exhale': 1,\n",
      "          'several': 1,\n",
      "          'comedies': 1,\n",
      "          'africanamerican': 1,\n",
      "          'professionals': 1,\n",
      "          'nthis': 1,\n",
      "          'female': 1,\n",
      "          'revenge': 1,\n",
      "          'fantasy': 1,\n",
      "          'vivica': 1,\n",
      "          'fox': 1,\n",
      "          'plays': 1,\n",
      "          'stunning': 1,\n",
      "          'ad': 1,\n",
      "          'exec': 1,\n",
      "          'seems': 1,\n",
      "          'reached': 1,\n",
      "          'pinnacle': 1,\n",
      "          'mansion': 1,\n",
      "          'sporty': 1,\n",
      "          'car': 1,\n",
      "          'idyllic': 1,\n",
      "          'relationship': 1,\n",
      "          'hunky': 1,\n",
      "          'hotshot': 1,\n",
      "          'lawyer': 1,\n",
      "          'morris': 1,\n",
      "          'chestnut': 1,\n",
      "          'nshes': 1,\n",
      "          'point': 1,\n",
      "          'life': 1,\n",
      "          'dispenses': 1,\n",
      "          'advice': 1,\n",
      "          'grateful': 1,\n",
      "          'girlfriends': 1,\n",
      "          'monique': 1,\n",
      "          'wendy': 1,\n",
      "          'racquel': 1,\n",
      "          'tamala': 1,\n",
      "          'jones': 1,\n",
      "          'n': 1,\n",
      "          'messes': 1,\n",
      "          'matter': 1,\n",
      "          'small': 1,\n",
      "          'smugly': 1,\n",
      "          'decrees': 1,\n",
      "          'yuh': 1,\n",
      "          'gots': 1,\n",
      "          'punish': 1,\n",
      "          'nso': 1,\n",
      "          'catches': 1,\n",
      "          'hot': 1,\n",
      "          'dancing': 1,\n",
      "          'bar': 1,\n",
      "          'smart': 1,\n",
      "          'sexy': 1,\n",
      "          'rival': 1,\n",
      "          'gabrielle': 1,\n",
      "          'union': 1,\n",
      "          'devises': 1,\n",
      "          'version': 1,\n",
      "          '10day': 1,\n",
      "          'tough': 1,\n",
      "          'emotionally': 1,\n",
      "          'punishing': 1,\n",
      "          'plan': 1,\n",
      "          'get': 1,\n",
      "          'back': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'writerdirector': 1,\n",
      "          'mark': 1,\n",
      "          'player': 1,\n",
      "          'breaks': 1,\n",
      "          'cardinal': 1,\n",
      "          'rule': 1,\n",
      "          'comedy': 1,\n",
      "          'like': 1,\n",
      "          'protagonist': 1,\n",
      "          'shrill': 1,\n",
      "          'selfcongratulatory': 1,\n",
      "          'smirking': 1,\n",
      "          'superficial': 1,\n",
      "          'spiteful': 1,\n",
      "          'shrew': 1,\n",
      "          'doesnt': 1,\n",
      "          'realize': 1,\n",
      "          'rational': 1,\n",
      "          'always': 1,\n",
      "          'applied': 1,\n",
      "          'nhaving': 1,\n",
      "          'talk': 1,\n",
      "          'directly': 1,\n",
      "          'camera': 1,\n",
      "          'gets': 1,\n",
      "          'stale': 1,\n",
      "          'quickly': 1,\n",
      "          'one': 1,\n",
      "          'titlecard': 1,\n",
      "          'device': 1,\n",
      "          'underscores': 1,\n",
      "          'tedium': 1,\n",
      "          'ncomic': 1,\n",
      "          'anthony': 1,\n",
      "          'anderson': 1,\n",
      "          'scores': 1,\n",
      "          'chestnuts': 1,\n",
      "          'boisterous': 1,\n",
      "          'bestfriend': 1,\n",
      "          'singer': 1,\n",
      "          'bobby': 1,\n",
      "          'cameo': 1,\n",
      "          'scuzzy': 1,\n",
      "          'mechanic': 1,\n",
      "          'whos': 1,\n",
      "          'given': 1,\n",
      "          'smooth': 1,\n",
      "          'makeover': 1,\n",
      "          'ms': 1,\n",
      "          'nbut': 1,\n",
      "          'outtakes': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'contain': 1,\n",
      "          'humor': 1,\n",
      "          'film': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'smarmy': 1,\n",
      "          'slick': 1,\n",
      "          '4': 1,\n",
      "          'filled': 1,\n",
      "          'misogynistic': 1,\n",
      "          'attitude': 1,\n",
      "          'blatant': 1,\n",
      "          'product': 1,\n",
      "          'placements': 1,\n",
      "          'cocacola': 1,\n",
      "          'miller': 1,\n",
      "          'genuine': 1,\n",
      "          'draft': 1,\n",
      "          'little': 1,\n",
      "          'else': 1,\n",
      "          'nin': 1,\n",
      "          'rrated': 1,\n",
      "          'explicit': 1,\n",
      "          'sexual': 1,\n",
      "          'language': 1,\n",
      "          'pseudohip': 1,\n",
      "          'battle': 1,\n",
      "          'sexes': 1,\n",
      "          'audience': 1,\n",
      "          'loses': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 3,\n",
      "          'carey': 3,\n",
      "          'glitter': 2,\n",
      "          'mariah': 2,\n",
      "          'nshe': 2,\n",
      "          'got': 2,\n",
      "          'says': 2,\n",
      "          'max': 2,\n",
      "          'beesley': 2,\n",
      "          'director': 2,\n",
      "          'wear': 2,\n",
      "          'audience': 2,\n",
      "          'ms': 2,\n",
      "          '1': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          '20th': 1,\n",
      "          'centuryfox': 1,\n",
      "          'ntheres': 1,\n",
      "          'less': 1,\n",
      "          'meets': 1,\n",
      "          'eye': 1,\n",
      "          'put': 1,\n",
      "          'way': 1,\n",
      "          'thought': 1,\n",
      "          'madonna': 1,\n",
      "          'awful': 1,\n",
      "          'shanghai': 1,\n",
      "          'surprise': 1,\n",
      "          'careys': 1,\n",
      "          'worse': 1,\n",
      "          'reworking': 1,\n",
      "          'star': 1,\n",
      "          'born': 1,\n",
      "          'plays': 1,\n",
      "          'billie': 1,\n",
      "          'frank': 1,\n",
      "          'despite': 1,\n",
      "          'abandoned': 1,\n",
      "          'singeralcoholic': 1,\n",
      "          'mother': 1,\n",
      "          'valerie': 1,\n",
      "          'pettiford': 1,\n",
      "          'believes': 1,\n",
      "          'shes': 1,\n",
      "          'destined': 1,\n",
      "          'greatness': 1,\n",
      "          'everyone': 1,\n",
      "          'tells': 1,\n",
      "          'youve': 1,\n",
      "          'amazing': 1,\n",
      "          'gift': 1,\n",
      "          'ta': 1,\n",
      "          'use': 1,\n",
      "          'roommate': 1,\n",
      "          'voice': 1,\n",
      "          'incredible': 1,\n",
      "          'another': 1,\n",
      "          'singer': 1,\n",
      "          'aint': 1,\n",
      "          'never': 1,\n",
      "          'met': 1,\n",
      "          'anyone': 1,\n",
      "          'like': 1,\n",
      "          'proclaims': 1,\n",
      "          'julian': 1,\n",
      "          'dice': 1,\n",
      "          'black': 1,\n",
      "          'hot': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'dj': 1,\n",
      "          'becomes': 1,\n",
      "          'svengalilike': 1,\n",
      "          'producerlover': 1,\n",
      "          'nproblem': 1,\n",
      "          'signature': 1,\n",
      "          'song': 1,\n",
      "          'didnt': 1,\n",
      "          'mean': 1,\n",
      "          'turn': 1,\n",
      "          'wretched': 1,\n",
      "          'nand': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'fumes': 1,\n",
      "          'filming': 1,\n",
      "          'first': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'wants': 1,\n",
      "          'exploit': 1,\n",
      "          'bikini': 1,\n",
      "          'bursts': 1,\n",
      "          'laughter': 1,\n",
      "          'nexploit': 1,\n",
      "          'chooses': 1,\n",
      "          'little': 1,\n",
      "          'law': 1,\n",
      "          'allow': 1,\n",
      "          'ncome': 1,\n",
      "          'nwriter': 1,\n",
      "          'kate': 1,\n",
      "          'laniers': 1,\n",
      "          'script': 1,\n",
      "          'fatuous': 1,\n",
      "          'vondie': 1,\n",
      "          'curtishall': 1,\n",
      "          'doesnt': 1,\n",
      "          'clue': 1,\n",
      "          'handle': 1,\n",
      "          'glitzy': 1,\n",
      "          'pop': 1,\n",
      "          'diva': 1,\n",
      "          'result': 1,\n",
      "          'incompetence': 1,\n",
      "          'whisperyvoiced': 1,\n",
      "          'seems': 1,\n",
      "          'embarrassed': 1,\n",
      "          'onscreen': 1,\n",
      "          'almost': 1,\n",
      "          'cringes': 1,\n",
      "          'camera': 1,\n",
      "          'comes': 1,\n",
      "          'closeup': 1,\n",
      "          'pursing': 1,\n",
      "          'lips': 1,\n",
      "          'averting': 1,\n",
      "          'glassy': 1,\n",
      "          'eyes': 1,\n",
      "          'ntalented': 1,\n",
      "          'british': 1,\n",
      "          'musician': 1,\n",
      "          'appears': 1,\n",
      "          'equally': 1,\n",
      "          'inept': 1,\n",
      "          'cinematographer': 1,\n",
      "          'geoffrey': 1,\n",
      "          'simpson': 1,\n",
      "          'pans': 1,\n",
      "          'around': 1,\n",
      "          'manhattan': 1,\n",
      "          'skyline': 1,\n",
      "          'theres': 1,\n",
      "          'audible': 1,\n",
      "          'groan': 1,\n",
      "          'twin': 1,\n",
      "          'towers': 1,\n",
      "          'world': 1,\n",
      "          'trade': 1,\n",
      "          'center': 1,\n",
      "          'come': 1,\n",
      "          'view': 1,\n",
      "          'nperhaps': 1,\n",
      "          'one': 1,\n",
      "          'reasons': 1,\n",
      "          'suffered': 1,\n",
      "          'highlypublicized': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'summer': 1,\n",
      "          'saw': 1,\n",
      "          'preview': 1,\n",
      "          'clunker': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '10': 1,\n",
      "          'pathetic': 1,\n",
      "          'nright': 1,\n",
      "          'tops': 1,\n",
      "          'list': 1,\n",
      "          'worst': 1,\n",
      "          '2001': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'like': 5,\n",
      "          'seem': 4,\n",
      "          'father': 4,\n",
      "          'show': 4,\n",
      "          'eve': 4,\n",
      "          'three': 3,\n",
      "          'neve': 3,\n",
      "          'lou': 3,\n",
      "          'hollywood': 3,\n",
      "          'life': 3,\n",
      "          'sisters': 3,\n",
      "          'georgia': 3,\n",
      "          'maddy': 3,\n",
      "          'business': 3,\n",
      "          'n': 3,\n",
      "          'nthe': 3,\n",
      "          'selfish': 3,\n",
      "          'mother': 3,\n",
      "          'hanging': 2,\n",
      "          'daughters': 2,\n",
      "          'movie': 2,\n",
      "          'scenes': 2,\n",
      "          'nso': 2,\n",
      "          'collaborated': 2,\n",
      "          'wife': 2,\n",
      "          'writing': 2,\n",
      "          'film': 2,\n",
      "          'senile': 2,\n",
      "          'diane': 2,\n",
      "          'keaton': 2,\n",
      "          'lisa': 2,\n",
      "          'devoted': 2,\n",
      "          'events': 2,\n",
      "          'ntheres': 2,\n",
      "          'king': 2,\n",
      "          'material': 2,\n",
      "          'ephron': 2,\n",
      "          'house': 2,\n",
      "          'looks': 2,\n",
      "          'magazine': 2,\n",
      "          'credit': 2,\n",
      "          'enough': 2,\n",
      "          'young': 2,\n",
      "          'everyone': 2,\n",
      "          'family': 2,\n",
      "          'emotionally': 2,\n",
      "          'distant': 2,\n",
      "          'better': 2,\n",
      "          'leachman': 2,\n",
      "          'ads': 1,\n",
      "          'make': 1,\n",
      "          'upbeat': 1,\n",
      "          'comedy': 1,\n",
      "          'rascally': 1,\n",
      "          'nanyone': 1,\n",
      "          'went': 1,\n",
      "          'expecting': 1,\n",
      "          'left': 1,\n",
      "          'disappointed': 1,\n",
      "          'nall': 1,\n",
      "          'movies': 1,\n",
      "          'funny': 1,\n",
      "          'included': 1,\n",
      "          'ad': 1,\n",
      "          'get': 1,\n",
      "          'marks': 1,\n",
      "          'meg': 1,\n",
      "          'ryan': 1,\n",
      "          'put': 1,\n",
      "          'mozell': 1,\n",
      "          'walter': 1,\n",
      "          'matthau': 1,\n",
      "          'hospital': 1,\n",
      "          'nonce': 1,\n",
      "          'upon': 1,\n",
      "          'time': 1,\n",
      "          'screenwriter': 1,\n",
      "          'nowestranged': 1,\n",
      "          'nhis': 1,\n",
      "          'great': 1,\n",
      "          'moment': 1,\n",
      "          'john': 1,\n",
      "          'wayne': 1,\n",
      "          'gave': 1,\n",
      "          'giant': 1,\n",
      "          'bulletshaped': 1,\n",
      "          'trophy': 1,\n",
      "          'nnow': 1,\n",
      "          'deteriorating': 1,\n",
      "          'rapidly': 1,\n",
      "          'tries': 1,\n",
      "          'convince': 1,\n",
      "          'kudrow': 1,\n",
      "          'dying': 1,\n",
      "          'needs': 1,\n",
      "          'nboth': 1,\n",
      "          'slow': 1,\n",
      "          'concern': 1,\n",
      "          'stands': 1,\n",
      "          'vigil': 1,\n",
      "          'constantly': 1,\n",
      "          'asks': 1,\n",
      "          'favorite': 1,\n",
      "          'daughter': 1,\n",
      "          'running': 1,\n",
      "          'planning': 1,\n",
      "          'special': 1,\n",
      "          'caring': 1,\n",
      "          'son': 1,\n",
      "          'jesse': 1,\n",
      "          'james': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'comes': 1,\n",
      "          'also': 1,\n",
      "          'drops': 1,\n",
      "          'ailing': 1,\n",
      "          'st': 1,\n",
      "          'bernard': 1,\n",
      "          'care': 1,\n",
      "          'tension': 1,\n",
      "          'builds': 1,\n",
      "          'finally': 1,\n",
      "          'room': 1,\n",
      "          'eves': 1,\n",
      "          'keynote': 1,\n",
      "          'speaker': 1,\n",
      "          'superficial': 1,\n",
      "          'resemblance': 1,\n",
      "          'shakespeares': 1,\n",
      "          'lear': 1,\n",
      "          'saint': 1,\n",
      "          'two': 1,\n",
      "          'bitches': 1,\n",
      "          'apparently': 1,\n",
      "          'drawn': 1,\n",
      "          'nsister': 1,\n",
      "          'screenwriters': 1,\n",
      "          'delia': 1,\n",
      "          'nora': 1,\n",
      "          'parents': 1,\n",
      "          'successful': 1,\n",
      "          'team': 1,\n",
      "          'nhenry': 1,\n",
      "          'phoebe': 1,\n",
      "          '17': 1,\n",
      "          'screenplays': 1,\n",
      "          'including': 1,\n",
      "          'desk': 1,\n",
      "          'set': 1,\n",
      "          'theres': 1,\n",
      "          'delias': 1,\n",
      "          'novel': 1,\n",
      "          'basis': 1,\n",
      "          'dedicated': 1,\n",
      "          'henry': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'script': 1,\n",
      "          'thin': 1,\n",
      "          'anorexics': 1,\n",
      "          'wet': 1,\n",
      "          'dream': 1,\n",
      "          'virtue': 1,\n",
      "          'semiautobiographical': 1,\n",
      "          'project': 1,\n",
      "          'would': 1,\n",
      "          'wealth': 1,\n",
      "          'available': 1,\n",
      "          'nyet': 1,\n",
      "          'ephrons': 1,\n",
      "          'provide': 1,\n",
      "          'barest': 1,\n",
      "          'minimum': 1,\n",
      "          'information': 1,\n",
      "          'characters': 1,\n",
      "          'nalso': 1,\n",
      "          'spaces': 1,\n",
      "          'inhabit': 1,\n",
      "          'artificial': 1,\n",
      "          'lives': 1,\n",
      "          'layout': 1,\n",
      "          'matter': 1,\n",
      "          'putupon': 1,\n",
      "          'cant': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'anyone': 1,\n",
      "          'whose': 1,\n",
      "          'pristine': 1,\n",
      "          'given': 1,\n",
      "          'day': 1,\n",
      "          'ngeorgia': 1,\n",
      "          'famous': 1,\n",
      "          'editor': 1,\n",
      "          'brief': 1,\n",
      "          'chats': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'photo': 1,\n",
      "          'spread': 1,\n",
      "          'profile': 1,\n",
      "          'nwhen': 1,\n",
      "          'first': 1,\n",
      "          'meet': 1,\n",
      "          'shes': 1,\n",
      "          'fishing': 1,\n",
      "          'picturesque': 1,\n",
      "          'mountain': 1,\n",
      "          'stream': 1,\n",
      "          'ni': 1,\n",
      "          'expected': 1,\n",
      "          'see': 1,\n",
      "          'cinematography': 1,\n",
      "          'vanity': 1,\n",
      "          'fair': 1,\n",
      "          'nand': 1,\n",
      "          'yes': 1,\n",
      "          'literally': 1,\n",
      "          'old': 1,\n",
      "          'kudrows': 1,\n",
      "          'nto': 1,\n",
      "          'though': 1,\n",
      "          'pull': 1,\n",
      "          'redeeming': 1,\n",
      "          'aspect': 1,\n",
      "          'core': 1,\n",
      "          'truth': 1,\n",
      "          'siblings': 1,\n",
      "          'always': 1,\n",
      "          'else': 1,\n",
      "          'relies': 1,\n",
      "          'freeing': 1,\n",
      "          'others': 1,\n",
      "          'nmy': 1,\n",
      "          'reliable': 1,\n",
      "          'child': 1,\n",
      "          'worse': 1,\n",
      "          'brother': 1,\n",
      "          'role': 1,\n",
      "          'mine': 1,\n",
      "          'may': 1,\n",
      "          'fulfilling': 1,\n",
      "          'lot': 1,\n",
      "          'less': 1,\n",
      "          'work': 1,\n",
      "          'nif': 1,\n",
      "          'nothing': 1,\n",
      "          'watch': 1,\n",
      "          'look': 1,\n",
      "          'powerful': 1,\n",
      "          'cameo': 1,\n",
      "          'cloris': 1,\n",
      "          'pat': 1,\n",
      "          'nin': 1,\n",
      "          'devastating': 1,\n",
      "          'scene': 1,\n",
      "          'discovers': 1,\n",
      "          'doesnt': 1,\n",
      "          'love': 1,\n",
      "          'nalthough': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'comedies': 1,\n",
      "          'frankenstein': 1,\n",
      "          'mary': 1,\n",
      "          'tyler': 1,\n",
      "          'moore': 1,\n",
      "          'performance': 1,\n",
      "          'reminded': 1,\n",
      "          'considerable': 1,\n",
      "          'dramatic': 1,\n",
      "          'talent': 1,\n",
      "          'displayed': 1,\n",
      "          'last': 1,\n",
      "          'picture': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'involved': 1,\n",
      "          'lived': 1,\n",
      "          'long': 1,\n",
      "          'dont': 1,\n",
      "          'recognize': 1,\n",
      "          'real': 1,\n",
      "          'anymore': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'batman': 9,\n",
      "          'bad': 7,\n",
      "          'scenes': 7,\n",
      "          'schumacher': 6,\n",
      "          'robin': 5,\n",
      "          'even': 5,\n",
      "          'crap': 4,\n",
      "          'dialogue': 4,\n",
      "          'mr': 4,\n",
      "          'freeze': 4,\n",
      "          'seems': 4,\n",
      "          'nand': 4,\n",
      "          'nthe': 4,\n",
      "          'nwhy': 4,\n",
      "          'way': 3,\n",
      "          'nit': 3,\n",
      "          'made': 3,\n",
      "          'nbut': 3,\n",
      "          'much': 3,\n",
      "          'nothing': 3,\n",
      "          'arnold': 3,\n",
      "          'lines': 3,\n",
      "          'series': 3,\n",
      "          'go': 3,\n",
      "          'freezes': 3,\n",
      "          'hundreds': 3,\n",
      "          'worst': 2,\n",
      "          'movie': 2,\n",
      "          'since': 2,\n",
      "          'jingle': 2,\n",
      "          'man': 2,\n",
      "          'worse': 2,\n",
      "          'nnot': 2,\n",
      "          'ever': 2,\n",
      "          'nthere': 2,\n",
      "          'wife': 2,\n",
      "          'instead': 2,\n",
      "          'sense': 2,\n",
      "          'given': 2,\n",
      "          'doesnt': 2,\n",
      "          'make': 2,\n",
      "          'get': 2,\n",
      "          'good': 2,\n",
      "          'ivy': 2,\n",
      "          'shes': 2,\n",
      "          'moment': 2,\n",
      "          'wonder': 2,\n",
      "          'silverstone': 2,\n",
      "          'batgirl': 2,\n",
      "          'looking': 2,\n",
      "          'alfred': 2,\n",
      "          'appearance': 2,\n",
      "          'fights': 2,\n",
      "          'never': 2,\n",
      "          'big': 2,\n",
      "          'know': 2,\n",
      "          'stupidity': 2,\n",
      "          'become': 2,\n",
      "          'characters': 2,\n",
      "          'lair': 2,\n",
      "          'save': 2,\n",
      "          'enough': 2,\n",
      "          'along': 2,\n",
      "          'ni': 2,\n",
      "          'feet': 2,\n",
      "          'another': 2,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'take': 2,\n",
      "          'hand': 2,\n",
      "          'could': 2,\n",
      "          'unbearable': 2,\n",
      "          'idiocy': 2,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'walked': 1,\n",
      "          'toast': 1,\n",
      "          'baked': 1,\n",
      "          'oven': 1,\n",
      "          'fueled': 1,\n",
      "          'nnothing': 1,\n",
      "          'works': 1,\n",
      "          'expected': 1,\n",
      "          'joel': 1,\n",
      "          'one': 1,\n",
      "          'watchable': 1,\n",
      "          'entire': 1,\n",
      "          'career': 1,\n",
      "          'cousins': 1,\n",
      "          'nheres': 1,\n",
      "          'admits': 1,\n",
      "          'hes': 1,\n",
      "          'medicore': 1,\n",
      "          'director': 1,\n",
      "          'rather': 1,\n",
      "          'charmingly': 1,\n",
      "          'selfeffacing': 1,\n",
      "          'statement': 1,\n",
      "          'truth': 1,\n",
      "          'told': 1,\n",
      "          'mediocre': 1,\n",
      "          'scorn': 1,\n",
      "          'heaped': 1,\n",
      "          'though': 1,\n",
      "          'akiva': 1,\n",
      "          'goldsman': 1,\n",
      "          'allowed': 1,\n",
      "          'write': 1,\n",
      "          'plot': 1,\n",
      "          'anywhere': 1,\n",
      "          'unrelentingly': 1,\n",
      "          'shallow': 1,\n",
      "          'preposterous': 1,\n",
      "          'boring': 1,\n",
      "          'nthey': 1,\n",
      "          'set': 1,\n",
      "          'tragic': 1,\n",
      "          'figure': 1,\n",
      "          'trying': 1,\n",
      "          'cure': 1,\n",
      "          'cryogenically': 1,\n",
      "          'frozen': 1,\n",
      "          'completely': 1,\n",
      "          'sabotage': 1,\n",
      "          'character': 1,\n",
      "          'giving': 1,\n",
      "          'lamest': 1,\n",
      "          'oneliners': 1,\n",
      "          'turns': 1,\n",
      "          'stock': 1,\n",
      "          'maniacal': 1,\n",
      "          'villain': 1,\n",
      "          'thoroughly': 1,\n",
      "          'enjoys': 1,\n",
      "          'villainy': 1,\n",
      "          'brooding': 1,\n",
      "          'scientist': 1,\n",
      "          'spent': 1,\n",
      "          'life': 1,\n",
      "          'bringing': 1,\n",
      "          'brink': 1,\n",
      "          'death': 1,\n",
      "          'thats': 1,\n",
      "          'par': 1,\n",
      "          'course': 1,\n",
      "          'makes': 1,\n",
      "          'including': 1,\n",
      "          'half': 1,\n",
      "          'schwarzeneggers': 1,\n",
      "          'nas': 1,\n",
      "          'spit': 1,\n",
      "          'nthis': 1,\n",
      "          'problem': 1,\n",
      "          'austrian': 1,\n",
      "          'accent': 1,\n",
      "          'getting': 1,\n",
      "          'thicker': 1,\n",
      "          'unintelligible': 1,\n",
      "          'days': 1,\n",
      "          'pass': 1,\n",
      "          'npersonally': 1,\n",
      "          'think': 1,\n",
      "          'pull': 1,\n",
      "          'directors': 1,\n",
      "          'retake': 1,\n",
      "          'understandable': 1,\n",
      "          'ncompare': 1,\n",
      "          'terminator': 1,\n",
      "          'load': 1,\n",
      "          'nonsense': 1,\n",
      "          'streams': 1,\n",
      "          'forth': 1,\n",
      "          'napparently': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'knows': 1,\n",
      "          'competent': 1,\n",
      "          'performance': 1,\n",
      "          'numa': 1,\n",
      "          'thurman': 1,\n",
      "          'resembling': 1,\n",
      "          'either': 1,\n",
      "          'nher': 1,\n",
      "          'poison': 1,\n",
      "          'vamps': 1,\n",
      "          'around': 1,\n",
      "          'terribly': 1,\n",
      "          'chewing': 1,\n",
      "          'scenery': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'pamela': 1,\n",
      "          'isley': 1,\n",
      "          'marred': 1,\n",
      "          'subsnl': 1,\n",
      "          'standard': 1,\n",
      "          'acting': 1,\n",
      "          'reading': 1,\n",
      "          'cue': 1,\n",
      "          'cards': 1,\n",
      "          'laugh': 1,\n",
      "          'ngiven': 1,\n",
      "          'script': 1,\n",
      "          'didnt': 1,\n",
      "          'happen': 1,\n",
      "          'frequently': 1,\n",
      "          'redeeming': 1,\n",
      "          'feature': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'chris': 1,\n",
      "          'odonnell': 1,\n",
      "          'alicia': 1,\n",
      "          'nmichael': 1,\n",
      "          'gough': 1,\n",
      "          'eerily': 1,\n",
      "          'sickly': 1,\n",
      "          'conceit': 1,\n",
      "          'illness': 1,\n",
      "          'prompted': 1,\n",
      "          'cadaverous': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'something': 1,\n",
      "          'unsettling': 1,\n",
      "          'accomplished': 1,\n",
      "          'without': 1,\n",
      "          'makeup': 1,\n",
      "          'tricks': 1,\n",
      "          'documentary': 1,\n",
      "          'dying': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'alfreds': 1,\n",
      "          'sickness': 1,\n",
      "          'bungled': 1,\n",
      "          'incompetence': 1,\n",
      "          'absolutely': 1,\n",
      "          'emotional': 1,\n",
      "          'resonance': 1,\n",
      "          'motions': 1,\n",
      "          'losing': 1,\n",
      "          'whatever': 1,\n",
      "          'impact': 1,\n",
      "          'supposed': 1,\n",
      "          'impart': 1,\n",
      "          'rife': 1,\n",
      "          'poorly': 1,\n",
      "          'choreographed': 1,\n",
      "          'give': 1,\n",
      "          'battle': 1,\n",
      "          'theres': 1,\n",
      "          'bunch': 1,\n",
      "          'people': 1,\n",
      "          'melee': 1,\n",
      "          'decided': 1,\n",
      "          'focus': 1,\n",
      "          'foot': 1,\n",
      "          'fist': 1,\n",
      "          'ntheres': 1,\n",
      "          'awe': 1,\n",
      "          'mayhem': 1,\n",
      "          'interesting': 1,\n",
      "          'part': 1,\n",
      "          'battles': 1,\n",
      "          'freezing': 1,\n",
      "          'effects': 1,\n",
      "          'impressive': 1,\n",
      "          'probably': 1,\n",
      "          'expensive': 1,\n",
      "          'neven': 1,\n",
      "          'full': 1,\n",
      "          'camp': 1,\n",
      "          'unwatchable': 1,\n",
      "          'hockey': 1,\n",
      "          'team': 1,\n",
      "          'hell': 1,\n",
      "          'tv': 1,\n",
      "          'got': 1,\n",
      "          'stupid': 1,\n",
      "          'least': 1,\n",
      "          'grand': 1,\n",
      "          'scale': 1,\n",
      "          'showcases': 1,\n",
      "          'nfrustrating': 1,\n",
      "          'various': 1,\n",
      "          'supporting': 1,\n",
      "          'walk': 1,\n",
      "          'say': 1,\n",
      "          'nblink': 1,\n",
      "          'youll': 1,\n",
      "          'miss': 1,\n",
      "          'elle': 1,\n",
      "          'macpherson': 1,\n",
      "          'julie': 1,\n",
      "          'madison': 1,\n",
      "          'vivica': 1,\n",
      "          'fox': 1,\n",
      "          'vamp': 1,\n",
      "          'two': 1,\n",
      "          'pat': 1,\n",
      "          'hingle': 1,\n",
      "          'ineffectual': 1,\n",
      "          'commissioner': 1,\n",
      "          'gordan': 1,\n",
      "          'almost': 1,\n",
      "          'like': 1,\n",
      "          'effort': 1,\n",
      "          'costs': 1,\n",
      "          'vendela': 1,\n",
      "          'kirsebom': 1,\n",
      "          'mrs': 1,\n",
      "          'fries': 1,\n",
      "          'isnt': 1,\n",
      "          'filmed': 1,\n",
      "          'well': 1,\n",
      "          'look': 1,\n",
      "          'trust': 1,\n",
      "          'quite': 1,\n",
      "          'attractive': 1,\n",
      "          'outside': 1,\n",
      "          'dreck': 1,\n",
      "          'werent': 1,\n",
      "          'limp': 1,\n",
      "          'direction': 1,\n",
      "          'performances': 1,\n",
      "          'fight': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'illogic': 1,\n",
      "          'galore': 1,\n",
      "          'nitpicky': 1,\n",
      "          'ask': 1,\n",
      "          'cable': 1,\n",
      "          'stored': 1,\n",
      "          'batarangs': 1,\n",
      "          'arms': 1,\n",
      "          'arent': 1,\n",
      "          'ripped': 1,\n",
      "          'sockets': 1,\n",
      "          'accomplish': 1,\n",
      "          'onearmed': 1,\n",
      "          'batarang': 1,\n",
      "          'falling': 1,\n",
      "          'holding': 1,\n",
      "          'person': 1,\n",
      "          'less': 1,\n",
      "          'moisture': 1,\n",
      "          'comes': 1,\n",
      "          'weapon': 1,\n",
      "          'creates': 1,\n",
      "          'tons': 1,\n",
      "          'ice': 1,\n",
      "          'nthats': 1,\n",
      "          'traditional': 1,\n",
      "          'stuff': 1,\n",
      "          'spring': 1,\n",
      "          'trap': 1,\n",
      "          'public': 1,\n",
      "          'charity': 1,\n",
      "          'event': 1,\n",
      "          'endanger': 1,\n",
      "          'lives': 1,\n",
      "          'bystanders': 1,\n",
      "          'switch': 1,\n",
      "          'clearly': 1,\n",
      "          'marked': 1,\n",
      "          'heat': 1,\n",
      "          'countless': 1,\n",
      "          'bumbling': 1,\n",
      "          'police': 1,\n",
      "          'officers': 1,\n",
      "          'try': 1,\n",
      "          'encourage': 1,\n",
      "          'far': 1,\n",
      "          'suit': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          'bicker': 1,\n",
      "          'leaving': 1,\n",
      "          'batcave': 1,\n",
      "          'response': 1,\n",
      "          'emergency': 1,\n",
      "          'established': 1,\n",
      "          'early': 1,\n",
      "          'using': 1,\n",
      "          'pheromones': 1,\n",
      "          'dont': 1,\n",
      "          'wear': 1,\n",
      "          'masks': 1,\n",
      "          'filter': 1,\n",
      "          'n': 1,\n",
      "          'braindead': 1,\n",
      "          'pointless': 1,\n",
      "          'garish': 1,\n",
      "          'loud': 1,\n",
      "          'still': 1,\n",
      "          'reign': 1,\n",
      "          'year': 1,\n",
      "          'time': 1,\n",
      "          '1998': 1,\n",
      "          'rolls': 1,\n",
      "          'nnote': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'please': 1,\n",
      "          'replace': 1,\n",
      "          'nearly': 1,\n",
      "          'anyone': 1,\n",
      "          'nbecause': 1,\n",
      "          'actually': 1,\n",
      "          'nwhat': 1,\n",
      "          'understand': 1,\n",
      "          'automatically': 1,\n",
      "          'equal': 1,\n",
      "          'true': 1,\n",
      "          'equation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gadget': 5,\n",
      "          'something': 4,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'would': 3,\n",
      "          'ni': 3,\n",
      "          'memories': 2,\n",
      "          'one': 2,\n",
      "          'mind': 2,\n",
      "          'watching': 2,\n",
      "          'version': 2,\n",
      "          'tune': 2,\n",
      "          'claw': 2,\n",
      "          'nostalgia': 2,\n",
      "          'even': 2,\n",
      "          'least': 2,\n",
      "          'new': 2,\n",
      "          'series': 2,\n",
      "          'feeling': 2,\n",
      "          'disney': 2,\n",
      "          'enough': 2,\n",
      "          'god': 2,\n",
      "          'left': 2,\n",
      "          'else': 2,\n",
      "          'character': 2,\n",
      "          'ponder': 1,\n",
      "          'childhood': 1,\n",
      "          'past': 1,\n",
      "          'things': 1,\n",
      "          'always': 1,\n",
      "          'springs': 1,\n",
      "          'immediately': 1,\n",
      "          'inspector': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'older': 1,\n",
      "          'brother': 1,\n",
      "          'ntruth': 1,\n",
      "          'told': 1,\n",
      "          'rabid': 1,\n",
      "          'fanatics': 1,\n",
      "          'cowboys': 1,\n",
      "          'indians': 1,\n",
      "          'chasing': 1,\n",
      "          'around': 1,\n",
      "          'coffee': 1,\n",
      "          'table': 1,\n",
      "          'theme': 1,\n",
      "          'alternating': 1,\n",
      "          'get': 1,\n",
      "          'stuck': 1,\n",
      "          'playing': 1,\n",
      "          'part': 1,\n",
      "          'dr': 1,\n",
      "          'inspectors': 1,\n",
      "          'arch': 1,\n",
      "          'nemesis': 1,\n",
      "          'never': 1,\n",
      "          'biggie': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'fond': 1,\n",
      "          'like': 1,\n",
      "          'nsometimes': 1,\n",
      "          'find': 1,\n",
      "          '4am': 1,\n",
      "          'reruns': 1,\n",
      "          'favorite': 1,\n",
      "          'episodes': 1,\n",
      "          'trying': 1,\n",
      "          'recapture': 1,\n",
      "          'sense': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wonder': 1,\n",
      "          'felt': 1,\n",
      "          'kid': 1,\n",
      "          'nat': 1,\n",
      "          'expecting': 1,\n",
      "          'classic': 1,\n",
      "          'television': 1,\n",
      "          'kind': 1,\n",
      "          'similar': 1,\n",
      "          'effect': 1,\n",
      "          'ndespite': 1,\n",
      "          'horrid': 1,\n",
      "          'may': 1,\n",
      "          'simple': 1,\n",
      "          'task': 1,\n",
      "          'rekindling': 1,\n",
      "          'slight': 1,\n",
      "          'pretty': 1,\n",
      "          'tough': 1,\n",
      "          'screw': 1,\n",
      "          'nso': 1,\n",
      "          'back': 1,\n",
      "          'sat': 1,\n",
      "          'minimum': 1,\n",
      "          'expectations': 1,\n",
      "          'deliver': 1,\n",
      "          'lets': 1,\n",
      "          'face': 1,\n",
      "          'exactly': 1,\n",
      "          'good': 1,\n",
      "          'liveaction': 1,\n",
      "          'really': 1,\n",
      "          'wise': 1,\n",
      "          'steer': 1,\n",
      "          'clear': 1,\n",
      "          'likes': 1,\n",
      "          'mr': 1,\n",
      "          'magoo': 1,\n",
      "          'george': 1,\n",
      "          'jungle': 1,\n",
      "          'two': 1,\n",
      "          'previous': 1,\n",
      "          'adaptations': 1,\n",
      "          'wish': 1,\n",
      "          'sharp': 1,\n",
      "          'skip': 1,\n",
      "          'well': 1,\n",
      "          'nrarely': 1,\n",
      "          'utter': 1,\n",
      "          'emptiness': 1,\n",
      "          'nas': 1,\n",
      "          'everyone': 1,\n",
      "          'getting': 1,\n",
      "          'exit': 1,\n",
      "          'screening': 1,\n",
      "          'room': 1,\n",
      "          'completed': 1,\n",
      "          'assault': 1,\n",
      "          'mankind': 1,\n",
      "          'sitting': 1,\n",
      "          'absolutely': 1,\n",
      "          'speechless': 1,\n",
      "          'totally': 1,\n",
      "          'dumbfounded': 1,\n",
      "          'seen': 1,\n",
      "          'ncan': 1,\n",
      "          'awful': 1,\n",
      "          'truly': 1,\n",
      "          'exist': 1,\n",
      "          'evolved': 1,\n",
      "          'world': 1,\n",
      "          'nright': 1,\n",
      "          'beginning': 1,\n",
      "          'knew': 1,\n",
      "          'trouble': 1,\n",
      "          'nin': 1,\n",
      "          'opening': 1,\n",
      "          'scenes': 1,\n",
      "          'introduced': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'simply': 1,\n",
      "          'serve': 1,\n",
      "          'reallife': 1,\n",
      "          'duplicates': 1,\n",
      "          'cartoon': 1,\n",
      "          'clones': 1,\n",
      "          'nwhen': 1,\n",
      "          'referring': 1,\n",
      "          'people': 1,\n",
      "          'almost': 1,\n",
      "          'yell': 1,\n",
      "          'fear': 1,\n",
      "          'audience': 1,\n",
      "          'catch': 1,\n",
      "          'certain': 1,\n",
      "          'supposed': 1,\n",
      "          'oh': 1,\n",
      "          'hi': 1,\n",
      "          'penny': 1,\n",
      "          'nis': 1,\n",
      "          'brain': 1,\n",
      "          'ncreating': 1,\n",
      "          'onedimensional': 1,\n",
      "          'replicas': 1,\n",
      "          'thing': 1,\n",
      "          'mere': 1,\n",
      "          'names': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'quite': 1,\n",
      "          'another': 1,\n",
      "          'nthe': 1,\n",
      "          'plot': 1,\n",
      "          'shall': 1,\n",
      "          'call': 1,\n",
      "          'stays': 1,\n",
      "          'fairly': 1,\n",
      "          'original': 1,\n",
      "          'nmatthew': 1,\n",
      "          'broderick': 1,\n",
      "          'stars': 1,\n",
      "          'john': 1,\n",
      "          'brown': 1,\n",
      "          'creative': 1,\n",
      "          'na': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'horribly': 1,\n",
      "          'injured': 1,\n",
      "          'pack': 1,\n",
      "          'ruthless': 1,\n",
      "          'businessmen': 1,\n",
      "          'headed': 1,\n",
      "          'scolex': 1,\n",
      "          'rupert': 1,\n",
      "          'everett': 1,\n",
      "          'love': 1,\n",
      "          'transformed': 1,\n",
      "          'unfortunate': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'nbrown': 1,\n",
      "          'rescued': 1,\n",
      "          'used': 1,\n",
      "          'prototype': 1,\n",
      "          'lawenforcement': 1,\n",
      "          'technology': 1,\n",
      "          'wherein': 1,\n",
      "          'hes': 1,\n",
      "          'joined': 1,\n",
      "          'various': 1,\n",
      "          'machine': 1,\n",
      "          'parts': 1,\n",
      "          'nifty': 1,\n",
      "          'gadgets': 1,\n",
      "          'form': 1,\n",
      "          'drumroll': 1,\n",
      "          'please': 1,\n",
      "          'ninspector': 1,\n",
      "          'nfrom': 1,\n",
      "          'becomes': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'stupid': 1,\n",
      "          'dialog': 1,\n",
      "          'confusing': 1,\n",
      "          'situations': 1,\n",
      "          'although': 1,\n",
      "          'fair': 1,\n",
      "          'confusion': 1,\n",
      "          'could': 1,\n",
      "          'caused': 1,\n",
      "          'virtual': 1,\n",
      "          'concussion': 1,\n",
      "          'inflicting': 1,\n",
      "          'upon': 1,\n",
      "          'fragile': 1,\n",
      "          'ntheres': 1,\n",
      "          'evil': 1,\n",
      "          'taking': 1,\n",
      "          'city': 1,\n",
      "          'first': 1,\n",
      "          'crime': 1,\n",
      "          'must': 1,\n",
      "          'swiping': 1,\n",
      "          'matt': 1,\n",
      "          'dillons': 1,\n",
      "          'dentures': 1,\n",
      "          'theres': 1,\n",
      "          'mary': 1,\n",
      "          'ends': 1,\n",
      "          'bunch': 1,\n",
      "          'postcredit': 1,\n",
      "          'nonsense': 1,\n",
      "          'cameo': 1,\n",
      "          'adams': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'wasnt': 1,\n",
      "          'much': 1,\n",
      "          'paying': 1,\n",
      "          'attention': 1,\n",
      "          'treats': 1,\n",
      "          'glad': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'like': 4,\n",
      "          'bad': 4,\n",
      "          'impostors': 3,\n",
      "          'films': 3,\n",
      "          'movie': 3,\n",
      "          'actors': 3,\n",
      "          'everyone': 3,\n",
      "          'didnt': 2,\n",
      "          'one': 2,\n",
      "          'two': 2,\n",
      "          'stanley': 2,\n",
      "          'tucci': 2,\n",
      "          'picture': 2,\n",
      "          'almost': 2,\n",
      "          'never': 2,\n",
      "          'plays': 2,\n",
      "          'oliver': 2,\n",
      "          'platt': 2,\n",
      "          'cast': 2,\n",
      "          'acting': 2,\n",
      "          'allen': 2,\n",
      "          'steve': 2,\n",
      "          'alfred': 2,\n",
      "          'molina': 2,\n",
      "          'n': 2,\n",
      "          'nwith': 2,\n",
      "          'little': 2,\n",
      "          'arthur': 2,\n",
      "          'end': 2,\n",
      "          'script': 2,\n",
      "          'good': 2,\n",
      "          'would': 2,\n",
      "          'nit': 2,\n",
      "          'perhaps': 1,\n",
      "          'much': 1,\n",
      "          'going': 1,\n",
      "          'wouldnt': 1,\n",
      "          'tremendous': 1,\n",
      "          'disappointment': 1,\n",
      "          'nwritten': 1,\n",
      "          'directed': 1,\n",
      "          'produced': 1,\n",
      "          'stars': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'indie': 1,\n",
      "          'smash': 1,\n",
      "          'hit': 1,\n",
      "          'big': 1,\n",
      "          'night': 1,\n",
      "          'catches': 1,\n",
      "          'fire': 1,\n",
      "          'nsputtering': 1,\n",
      "          'twoday': 1,\n",
      "          'old': 1,\n",
      "          'campfire': 1,\n",
      "          'story': 1,\n",
      "          'adlib': 1,\n",
      "          'sketch': 1,\n",
      "          'polished': 1,\n",
      "          'completed': 1,\n",
      "          'star': 1,\n",
      "          'hilarious': 1,\n",
      "          'senators': 1,\n",
      "          'aide': 1,\n",
      "          'bulworth': 1,\n",
      "          'bloated': 1,\n",
      "          'supporting': 1,\n",
      "          'veritable': 1,\n",
      "          'cornucopia': 1,\n",
      "          'talent': 1,\n",
      "          'including': 1,\n",
      "          'woody': 1,\n",
      "          'buscemi': 1,\n",
      "          'hope': 1,\n",
      "          'davis': 1,\n",
      "          'campbell': 1,\n",
      "          'scott': 1,\n",
      "          'lili': 1,\n",
      "          'taylor': 1,\n",
      "          'tony': 1,\n",
      "          'shalhoub': 1,\n",
      "          'nall': 1,\n",
      "          'wasted': 1,\n",
      "          'save': 1,\n",
      "          'theatrical': 1,\n",
      "          'director': 1,\n",
      "          'stares': 1,\n",
      "          'disbelief': 1,\n",
      "          'eyes': 1,\n",
      "          'audience': 1,\n",
      "          'easily': 1,\n",
      "          'identify': 1,\n",
      "          'allens': 1,\n",
      "          'sentiments': 1,\n",
      "          'exception': 1,\n",
      "          'single': 1,\n",
      "          'original': 1,\n",
      "          'joke': 1,\n",
      "          'involving': 1,\n",
      "          'mirrorimaged': 1,\n",
      "          'subtitles': 1,\n",
      "          'engenders': 1,\n",
      "          'genuine': 1,\n",
      "          'laughter': 1,\n",
      "          'stale': 1,\n",
      "          'humor': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'find': 1,\n",
      "          'laughing': 1,\n",
      "          'sporadically': 1,\n",
      "          'rather': 1,\n",
      "          'plot': 1,\n",
      "          'involves': 1,\n",
      "          'starving': 1,\n",
      "          'maurice': 1,\n",
      "          'accidentally': 1,\n",
      "          'cruise': 1,\n",
      "          'ship': 1,\n",
      "          'nin': 1,\n",
      "          'order': 1,\n",
      "          'escape': 1,\n",
      "          'angry': 1,\n",
      "          'shakespearean': 1,\n",
      "          'actor': 1,\n",
      "          'chasing': 1,\n",
      "          'dress': 1,\n",
      "          'ships': 1,\n",
      "          'stewards': 1,\n",
      "          'overthetop': 1,\n",
      "          'subtlety': 1,\n",
      "          'sledgehammer': 1,\n",
      "          'nwhen': 1,\n",
      "          'leads': 1,\n",
      "          'hide': 1,\n",
      "          'pursuers': 1,\n",
      "          'covers': 1,\n",
      "          'maurices': 1,\n",
      "          'mouth': 1,\n",
      "          'suffers': 1,\n",
      "          'unending': 1,\n",
      "          'sneeze': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'typical': 1,\n",
      "          'zany': 1,\n",
      "          'comedy': 1,\n",
      "          'routine': 1,\n",
      "          'chases': 1,\n",
      "          'else': 1,\n",
      "          'darting': 1,\n",
      "          'staterooms': 1,\n",
      "          'chapters': 1,\n",
      "          'introduced': 1,\n",
      "          'placards': 1,\n",
      "          'vaudeville': 1,\n",
      "          'stage': 1,\n",
      "          'clear': 1,\n",
      "          'wants': 1,\n",
      "          'taken': 1,\n",
      "          'farce': 1,\n",
      "          'press': 1,\n",
      "          'notes': 1,\n",
      "          'describes': 1,\n",
      "          'came': 1,\n",
      "          'set': 1,\n",
      "          'remarked': 1,\n",
      "          'time': 1,\n",
      "          'ntoo': 1,\n",
      "          'werent': 1,\n",
      "          'concerned': 1,\n",
      "          'audiences': 1,\n",
      "          'potential': 1,\n",
      "          'enjoyment': 1,\n",
      "          'jokes': 1,\n",
      "          'frequently': 1,\n",
      "          'framed': 1,\n",
      "          'silence': 1,\n",
      "          'fall': 1,\n",
      "          'stones': 1,\n",
      "          'intensity': 1,\n",
      "          'hear': 1,\n",
      "          'hitting': 1,\n",
      "          'ground': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'anyone': 1,\n",
      "          'ever': 1,\n",
      "          'viewed': 1,\n",
      "          'dailies': 1,\n",
      "          'nsurely': 1,\n",
      "          'realized': 1,\n",
      "          'leaden': 1,\n",
      "          'results': 1,\n",
      "          'producing': 1,\n",
      "          'tricky': 1,\n",
      "          'play': 1,\n",
      "          'ones': 1,\n",
      "          'couldnt': 1,\n",
      "          'pull': 1,\n",
      "          'given': 1,\n",
      "          'show': 1,\n",
      "          'fella': 1,\n",
      "          'buscemis': 1,\n",
      "          'character': 1,\n",
      "          'says': 1,\n",
      "          'towards': 1,\n",
      "          'mystery': 1,\n",
      "          'give': 1,\n",
      "          'beginning': 1,\n",
      "          'nthere': 1,\n",
      "          'must': 1,\n",
      "          'better': 1,\n",
      "          'somewhere': 1,\n",
      "          'wonderful': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '42': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'profanity': 1,\n",
      "          'fine': 1,\n",
      "          'kids': 1,\n",
      "          'around': 1,\n",
      "          '12': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carry': 5,\n",
      "          'movie': 5,\n",
      "          'kenneth': 4,\n",
      "          'emmannuelle': 4,\n",
      "          'film': 4,\n",
      "          'bed': 3,\n",
      "          'williams': 3,\n",
      "          'given': 3,\n",
      "          'script': 3,\n",
      "          'new': 2,\n",
      "          'production': 2,\n",
      "          'suzanne': 2,\n",
      "          'danielle': 2,\n",
      "          'emile': 2,\n",
      "          'ambassador': 2,\n",
      "          'seems': 2,\n",
      "          'rumours': 2,\n",
      "          'talk': 2,\n",
      "          'television': 2,\n",
      "          'set': 2,\n",
      "          'theodore': 2,\n",
      "          'valentine': 2,\n",
      "          'larry': 2,\n",
      "          'dann': 2,\n",
      "          'nhowever': 2,\n",
      "          'little': 2,\n",
      "          'worst': 2,\n",
      "          'nit': 2,\n",
      "          'embarassing': 2,\n",
      "          'jokes': 2,\n",
      "          'mrs': 2,\n",
      "          'parts': 2,\n",
      "          'douglas': 2,\n",
      "          'joan': 2,\n",
      "          'sims': 2,\n",
      "          'connor': 2,\n",
      "          'leyland': 2,\n",
      "          'peter': 2,\n",
      "          'butterworth': 2,\n",
      "          'four': 2,\n",
      "          'scene': 2,\n",
      "          'awful': 2,\n",
      "          'poor': 2,\n",
      "          'last': 1,\n",
      "          'discount': 1,\n",
      "          'columbus': 1,\n",
      "          'made': 1,\n",
      "          'company': 1,\n",
      "          'nbased': 1,\n",
      "          'central': 1,\n",
      "          'london': 1,\n",
      "          'attempts': 1,\n",
      "          'emmanuelle': 1,\n",
      "          'prevert': 1,\n",
      "          'husband': 1,\n",
      "          'french': 1,\n",
      "          'nwhen': 1,\n",
      "          'unwilling': 1,\n",
      "          'permission': 1,\n",
      "          'anyone': 1,\n",
      "          'likes': 1,\n",
      "          'prime': 1,\n",
      "          'minister': 1,\n",
      "          'u': 1,\n",
      "          'nher': 1,\n",
      "          'antics': 1,\n",
      "          'get': 1,\n",
      "          'trouble': 1,\n",
      "          'british': 1,\n",
      "          'press': 1,\n",
      "          'spread': 1,\n",
      "          'front': 1,\n",
      "          'pages': 1,\n",
      "          'nshe': 1,\n",
      "          'invited': 1,\n",
      "          'record': 1,\n",
      "          'straight': 1,\n",
      "          'confirms': 1,\n",
      "          'instead': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'love': 1,\n",
      "          'chance': 1,\n",
      "          'encounter': 1,\n",
      "          'toilet': 1,\n",
      "          'concorde': 1,\n",
      "          'determined': 1,\n",
      "          'marry': 1,\n",
      "          'interested': 1,\n",
      "          'restoring': 1,\n",
      "          'husbands': 1,\n",
      "          'ardour': 1,\n",
      "          'difficult': 1,\n",
      "          'emiles': 1,\n",
      "          'accident': 1,\n",
      "          'church': 1,\n",
      "          'spire': 1,\n",
      "          'nthis': 1,\n",
      "          'second': 1,\n",
      "          'england': 1,\n",
      "          'see': 1,\n",
      "          'remaining': 1,\n",
      "          'regulars': 1,\n",
      "          'struggle': 1,\n",
      "          'diabolical': 1,\n",
      "          'lance': 1,\n",
      "          'peters': 1,\n",
      "          'try': 1,\n",
      "          'pull': 1,\n",
      "          'crude': 1,\n",
      "          'tasteless': 1,\n",
      "          'written': 1,\n",
      "          'nnewcomers': 1,\n",
      "          'beryl': 1,\n",
      "          'reid': 1,\n",
      "          'mildly': 1,\n",
      "          'funny': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'bad': 1,\n",
      "          'nkenneth': 1,\n",
      "          'appears': 1,\n",
      "          'scenes': 1,\n",
      "          'lacklustre': 1,\n",
      "          'performance': 1,\n",
      "          'warranted': 1,\n",
      "          'nthe': 1,\n",
      "          'small': 1,\n",
      "          'jack': 1,\n",
      "          'lyons': 1,\n",
      "          'butler': 1,\n",
      "          'dangle': 1,\n",
      "          'chauffeur': 1,\n",
      "          'richmond': 1,\n",
      "          'worthless': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'surplus': 1,\n",
      "          'requirements': 1,\n",
      "          'humourous': 1,\n",
      "          'amourous': 1,\n",
      "          'escapades': 1,\n",
      "          'nan': 1,\n",
      "          'terrible': 1,\n",
      "          'collection': 1,\n",
      "          'values': 1,\n",
      "          'especially': 1,\n",
      "          'takes': 1,\n",
      "          'clothes': 1,\n",
      "          'st': 1,\n",
      "          'james': 1,\n",
      "          'palace': 1,\n",
      "          'ludicrous': 1,\n",
      "          'cringeworthy': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'nonexistent': 1,\n",
      "          'plot': 1,\n",
      "          'storyline': 1,\n",
      "          'nits': 1,\n",
      "          'succession': 1,\n",
      "          'pieces': 1,\n",
      "          'next': 1,\n",
      "          'njack': 1,\n",
      "          'annoying': 1,\n",
      "          'boring': 1,\n",
      "          'wasted': 1,\n",
      "          'put': 1,\n",
      "          'performances': 1,\n",
      "          'na': 1,\n",
      "          'complete': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'trying': 1,\n",
      "          'catch': 1,\n",
      "          'sexually': 1,\n",
      "          'permissive': 1,\n",
      "          'seventies': 1,\n",
      "          'certificate': 1,\n",
      "          '15': 1,\n",
      "          '1978': 1,\n",
      "          'interest': 1,\n",
      "          'kind': 1,\n",
      "          'flopped': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'premiere': 1,\n",
      "          'uk': 1,\n",
      "          'terrestrial': 1,\n",
      "          'april': 1,\n",
      "          '1998': 1,\n",
      "          'navoid': 1,\n",
      "          'costs': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'dwayne': 6,\n",
      "          'nthe': 5,\n",
      "          'dwaynes': 5,\n",
      "          'film': 5,\n",
      "          'see': 3,\n",
      "          'nolte': 3,\n",
      "          'midland': 3,\n",
      "          'city': 3,\n",
      "          'nnot': 3,\n",
      "          'hes': 3,\n",
      "          'nwith': 3,\n",
      "          '_breakfast_of_champions_': 2,\n",
      "          'would': 2,\n",
      "          'novel': 2,\n",
      "          'sight': 2,\n",
      "          'thats': 2,\n",
      "          'things': 2,\n",
      "          'also': 2,\n",
      "          'appears': 2,\n",
      "          'nhis': 2,\n",
      "          'goes': 2,\n",
      "          'doesnt': 2,\n",
      "          'trout': 2,\n",
      "          'often': 2,\n",
      "          'rudolph': 2,\n",
      "          'point': 2,\n",
      "          'make': 2,\n",
      "          'called': 2,\n",
      "          'ever': 2,\n",
      "          'audience': 2,\n",
      "          'youre': 1,\n",
      "          'debating': 1,\n",
      "          'whether': 1,\n",
      "          'ask': 1,\n",
      "          'simple': 1,\n",
      "          'question': 1,\n",
      "          'want': 1,\n",
      "          'nick': 1,\n",
      "          'lingerie': 1,\n",
      "          'people': 1,\n",
      "          'get': 1,\n",
      "          'much': 1,\n",
      "          'enjoyment': 1,\n",
      "          'alan': 1,\n",
      "          'rudolphs': 1,\n",
      "          'chaotic': 1,\n",
      "          'adaptation': 1,\n",
      "          'kurt': 1,\n",
      "          'vonnegut': 1,\n",
      "          'crosssection': 1,\n",
      "          'population': 1,\n",
      "          'unhealthy': 1,\n",
      "          'urge': 1,\n",
      "          'unpleasant': 1,\n",
      "          'neveryone': 1,\n",
      "          'elseand': 1,\n",
      "          'im': 1,\n",
      "          'hoping': 1,\n",
      "          'peoplewould': 1,\n",
      "          'wise': 1,\n",
      "          'steer': 1,\n",
      "          'clear': 1,\n",
      "          'excrutiatingly': 1,\n",
      "          'unfunny': 1,\n",
      "          'mess': 1,\n",
      "          'nactually': 1,\n",
      "          'though': 1,\n",
      "          'high': 1,\n",
      "          'heels': 1,\n",
      "          'amusing': 1,\n",
      "          'muddle': 1,\n",
      "          'focuses': 1,\n",
      "          'hoover': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'owner': 1,\n",
      "          'hoovers': 1,\n",
      "          'exit': 1,\n",
      "          '11': 1,\n",
      "          'motor': 1,\n",
      "          'village': 1,\n",
      "          'huge': 1,\n",
      "          'success': 1,\n",
      "          'businessman': 1,\n",
      "          'something': 1,\n",
      "          'celebrity': 1,\n",
      "          'face': 1,\n",
      "          'made': 1,\n",
      "          'recognizable': 1,\n",
      "          'ongoing': 1,\n",
      "          'series': 1,\n",
      "          'television': 1,\n",
      "          'commercials': 1,\n",
      "          'nice': 1,\n",
      "          'home': 1,\n",
      "          'family': 1,\n",
      "          'boot': 1,\n",
      "          'ingredients': 1,\n",
      "          'happyyet': 1,\n",
      "          'wife': 1,\n",
      "          'celia': 1,\n",
      "          'barbara': 1,\n",
      "          'hershey': 1,\n",
      "          'perpetually': 1,\n",
      "          'pillinduced': 1,\n",
      "          'haze': 1,\n",
      "          'son': 1,\n",
      "          'george': 1,\n",
      "          'lukas': 1,\n",
      "          'haas': 1,\n",
      "          'flamboyant': 1,\n",
      "          'lounge': 1,\n",
      "          'singer': 1,\n",
      "          'stage': 1,\n",
      "          'name': 1,\n",
      "          'bunny': 1,\n",
      "          'environmental': 1,\n",
      "          'protection': 1,\n",
      "          'agency': 1,\n",
      "          'ass': 1,\n",
      "          'building': 1,\n",
      "          'development': 1,\n",
      "          'project': 1,\n",
      "          'nits': 1,\n",
      "          'enough': 1,\n",
      "          'send': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdownthat': 1,\n",
      "          'succeed': 1,\n",
      "          'blowing': 1,\n",
      "          'brains': 1,\n",
      "          'first': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'host': 1,\n",
      "          'fine': 1,\n",
      "          'arts': 1,\n",
      "          'festival': 1,\n",
      "          'guest': 1,\n",
      "          'honor': 1,\n",
      "          'kilgore': 1,\n",
      "          'albert': 1,\n",
      "          'finney': 1,\n",
      "          'writer': 1,\n",
      "          'far': 1,\n",
      "          'renowned': 1,\n",
      "          'author': 1,\n",
      "          'festivals': 1,\n",
      "          'organizer': 1,\n",
      "          'buck': 1,\n",
      "          'henry': 1,\n",
      "          'led': 1,\n",
      "          'believein': 1,\n",
      "          'fact': 1,\n",
      "          'penniless': 1,\n",
      "          'hack': 1,\n",
      "          'writes': 1,\n",
      "          'secondrate': 1,\n",
      "          'scifi': 1,\n",
      "          'porn': 1,\n",
      "          'magazines': 1,\n",
      "          'trek': 1,\n",
      "          'spiritual': 1,\n",
      "          'journey': 1,\n",
      "          'reaches': 1,\n",
      "          'apex': 1,\n",
      "          'meeting': 1,\n",
      "          'reason': 1,\n",
      "          'thinks': 1,\n",
      "          'hold': 1,\n",
      "          'lifes': 1,\n",
      "          'answers': 1,\n",
      "          'already': 1,\n",
      "          'longer': 1,\n",
      "          'plot': 1,\n",
      "          'synopsis': 1,\n",
      "          'usually': 1,\n",
      "          'give': 1,\n",
      "          'reviews': 1,\n",
      "          'ironically': 1,\n",
      "          'barely': 1,\n",
      "          'scratched': 1,\n",
      "          'surface': 1,\n",
      "          'ni': 1,\n",
      "          'havent': 1,\n",
      "          'yet': 1,\n",
      "          'mentioned': 1,\n",
      "          'wayne': 1,\n",
      "          'hoobler': 1,\n",
      "          'omar': 1,\n",
      "          'epps': 1,\n",
      "          'excon': 1,\n",
      "          'obsessive': 1,\n",
      "          'admiration': 1,\n",
      "          'similarlynamed': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'matter': 1,\n",
      "          'francine': 1,\n",
      "          'glenne': 1,\n",
      "          'headly': 1,\n",
      "          'devoted': 1,\n",
      "          'secretary': 1,\n",
      "          'mention': 1,\n",
      "          'employee': 1,\n",
      "          'old': 1,\n",
      "          'friend': 1,\n",
      "          'harry': 1,\n",
      "          'lesabre': 1,\n",
      "          'secret': 1,\n",
      "          'penchant': 1,\n",
      "          'crossdressing': 1,\n",
      "          'nand': 1,\n",
      "          'essentially': 1,\n",
      "          'story': 1,\n",
      "          'distracting': 1,\n",
      "          'tangents': 1,\n",
      "          'eccentric': 1,\n",
      "          'peripheral': 1,\n",
      "          'players': 1,\n",
      "          'wonders': 1,\n",
      "          'nrudolph': 1,\n",
      "          'arrive': 1,\n",
      "          'later': 1,\n",
      "          'blunted': 1,\n",
      "          'obscured': 1,\n",
      "          'hyperactive': 1,\n",
      "          'approach': 1,\n",
      "          'material': 1,\n",
      "          'surreal': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'complete': 1,\n",
      "          'printed': 1,\n",
      "          'words': 1,\n",
      "          'flying': 1,\n",
      "          'air': 1,\n",
      "          'ears': 1,\n",
      "          'obviously': 1,\n",
      "          'meant': 1,\n",
      "          'convey': 1,\n",
      "          'sense': 1,\n",
      "          'madness': 1,\n",
      "          'bludgeoning': 1,\n",
      "          'nature': 1,\n",
      "          'likely': 1,\n",
      "          'viewers': 1,\n",
      "          'mad': 1,\n",
      "          'actors': 1,\n",
      "          'act': 1,\n",
      "          'accordingly': 1,\n",
      "          'resulting': 1,\n",
      "          'worst': 1,\n",
      "          'overdone': 1,\n",
      "          'work': 1,\n",
      "          'turned': 1,\n",
      "          'nwillis': 1,\n",
      "          'fares': 1,\n",
      "          'best': 1,\n",
      "          'allbut': 1,\n",
      "          'frozen': 1,\n",
      "          'expression': 1,\n",
      "          'befuddled': 1,\n",
      "          'bewilderment': 1,\n",
      "          'mirrors': 1,\n",
      "          'aggressively': 1,\n",
      "          'outrageous': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nearly': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'comes': 1,\n",
      "          'shock': 1,\n",
      "          'suddenly': 1,\n",
      "          'turn': 1,\n",
      "          'serious': 1,\n",
      "          'tries': 1,\n",
      "          'statement': 1,\n",
      "          'nunlike': 1,\n",
      "          '_american_beauty_': 1,\n",
      "          '_breakfast_': 1,\n",
      "          'resembles': 1,\n",
      "          'ways': 1,\n",
      "          'great': 1,\n",
      "          'detriment': 1,\n",
      "          'isnt': 1,\n",
      "          'palpably': 1,\n",
      "          'earnest': 1,\n",
      "          'undercurrent': 1,\n",
      "          'prepare': 1,\n",
      "          'big': 1,\n",
      "          'shift': 1,\n",
      "          'nas': 1,\n",
      "          'cartoony': 1,\n",
      "          'characters': 1,\n",
      "          'fail': 1,\n",
      "          'win': 1,\n",
      "          'sympathy': 1,\n",
      "          'needs': 1,\n",
      "          'earned': 1,\n",
      "          'attempts': 1,\n",
      "          'avail': 1,\n",
      "          'reach': 1,\n",
      "          'profundity': 1,\n",
      "          'deserve': 1,\n",
      "          'nvonneguts': 1,\n",
      "          'original': 1,\n",
      "          'considered': 1,\n",
      "          'classic': 1,\n",
      "          'unfilmablethe': 1,\n",
      "          'said': 1,\n",
      "          'hunter': 1,\n",
      "          'thompsons': 1,\n",
      "          '_fear_and_loathing_in_las_vegas_': 1,\n",
      "          'disastrously': 1,\n",
      "          'committed': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'terry': 1,\n",
      "          'gilliam': 1,\n",
      "          'similar': 1,\n",
      "          'failure': 1,\n",
      "          'hollywood': 1,\n",
      "          'learn': 1,\n",
      "          'books': 1,\n",
      "          'labeled': 1,\n",
      "          'unfilmable': 1,\n",
      "          'inevitably': 1,\n",
      "          'results': 1,\n",
      "          'unwatchable': 1,\n",
      "          'nlikely': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'virgin': 5,\n",
      "          'suicides': 5,\n",
      "          'suicide': 4,\n",
      "          'film': 4,\n",
      "          'movie': 3,\n",
      "          'nthe': 3,\n",
      "          'lisbon': 3,\n",
      "          'doesnt': 3,\n",
      "          'pointless': 2,\n",
      "          'know': 2,\n",
      "          'nso': 2,\n",
      "          'lives': 2,\n",
      "          'youngest': 2,\n",
      "          'people': 2,\n",
      "          'say': 2,\n",
      "          'nwell': 2,\n",
      "          'scene': 2,\n",
      "          'daughter': 2,\n",
      "          'girls': 2,\n",
      "          'family': 2,\n",
      "          'come': 2,\n",
      "          'nis': 2,\n",
      "          'way': 2,\n",
      "          'would': 2,\n",
      "          'well': 2,\n",
      "          'role': 2,\n",
      "          'eddie': 2,\n",
      "          'cruisers': 2,\n",
      "          'since': 2,\n",
      "          'feeling': 2,\n",
      "          'nwith': 2,\n",
      "          'business': 2,\n",
      "          'share': 2,\n",
      "          'everyone': 1,\n",
      "          'whats': 1,\n",
      "          'like': 1,\n",
      "          'nyou': 1,\n",
      "          'guessed': 1,\n",
      "          'npointless': 1,\n",
      "          'focuses': 1,\n",
      "          'five': 1,\n",
      "          'sisters': 1,\n",
      "          'perspective': 1,\n",
      "          'teenage': 1,\n",
      "          'boys': 1,\n",
      "          'fascinated': 1,\n",
      "          'nwhen': 1,\n",
      "          'sister': 1,\n",
      "          'commits': 1,\n",
      "          'sets': 1,\n",
      "          'motion': 1,\n",
      "          'series': 1,\n",
      "          'events': 1,\n",
      "          'change': 1,\n",
      "          'many': 1,\n",
      "          'forever': 1,\n",
      "          'nthats': 1,\n",
      "          'press': 1,\n",
      "          'materials': 1,\n",
      "          'probably': 1,\n",
      "          'nnow': 1,\n",
      "          'heres': 1,\n",
      "          'huge': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'nboring': 1,\n",
      "          'arty': 1,\n",
      "          'pretentious': 1,\n",
      "          'junk': 1,\n",
      "          'entertaining': 1,\n",
      "          'committing': 1,\n",
      "          'lost': 1,\n",
      "          'early': 1,\n",
      "          'immediately': 1,\n",
      "          'following': 1,\n",
      "          'younger': 1,\n",
      "          'jumps': 1,\n",
      "          'death': 1,\n",
      "          'bedroom': 1,\n",
      "          'window': 1,\n",
      "          'father': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'holds': 1,\n",
      "          'lifeless': 1,\n",
      "          'body': 1,\n",
      "          'arms': 1,\n",
      "          'horrified': 1,\n",
      "          'looks': 1,\n",
      "          'nthen': 1,\n",
      "          'ends': 1,\n",
      "          'lawn': 1,\n",
      "          'sprinklers': 1,\n",
      "          'joke': 1,\n",
      "          'supposed': 1,\n",
      "          'amusing': 1,\n",
      "          'nfrom': 1,\n",
      "          'failed': 1,\n",
      "          'draw': 1,\n",
      "          'back': 1,\n",
      "          'nperformances': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'nwoods': 1,\n",
      "          'plays': 1,\n",
      "          'character': 1,\n",
      "          'actually': 1,\n",
      "          'interest': 1,\n",
      "          'came': 1,\n",
      "          'onscreen': 1,\n",
      "          'performance': 1,\n",
      "          'kirsten': 1,\n",
      "          'dunst': 1,\n",
      "          'next': 1,\n",
      "          'lux': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'ndunst': 1,\n",
      "          'potential': 1,\n",
      "          'big': 1,\n",
      "          'star': 1,\n",
      "          'chooses': 1,\n",
      "          'projects': 1,\n",
      "          'nand': 1,\n",
      "          'awful': 1,\n",
      "          'manages': 1,\n",
      "          'away': 1,\n",
      "          'virtually': 1,\n",
      "          'unscathed': 1,\n",
      "          'nthere': 1,\n",
      "          'also': 1,\n",
      "          'cameos': 1,\n",
      "          'frustrate': 1,\n",
      "          'audience': 1,\n",
      "          'leave': 1,\n",
      "          'wanting': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'seem': 1,\n",
      "          'rather': 1,\n",
      "          'although': 1,\n",
      "          'theres': 1,\n",
      "          'brief': 1,\n",
      "          'given': 1,\n",
      "          'michael': 1,\n",
      "          'pare': 1,\n",
      "          'turns': 1,\n",
      "          'best': 1,\n",
      "          'nperhaps': 1,\n",
      "          'worked': 1,\n",
      "          'story': 1,\n",
      "          'told': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'little': 1,\n",
      "          'access': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'get': 1,\n",
      "          'significant': 1,\n",
      "          'insight': 1,\n",
      "          'might': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'theyre': 1,\n",
      "          'nall': 1,\n",
      "          'really': 1,\n",
      "          'mrs': 1,\n",
      "          'kathleen': 1,\n",
      "          'turner': 1,\n",
      "          'strict': 1,\n",
      "          'keeps': 1,\n",
      "          'short': 1,\n",
      "          'leash': 1,\n",
      "          'nwhat': 1,\n",
      "          'mother': 1,\n",
      "          'nits': 1,\n",
      "          'certainly': 1,\n",
      "          'reason': 1,\n",
      "          'commit': 1,\n",
      "          'godfather': 1,\n",
      "          'part': 1,\n",
      "          'iii': 1,\n",
      "          'sofia': 1,\n",
      "          'coppola': 1,\n",
      "          'proved': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'proves': 1,\n",
      "          'behind': 1,\n",
      "          'either': 1,\n",
      "          'nhaving': 1,\n",
      "          'connections': 1,\n",
      "          'entitle': 1,\n",
      "          'allowed': 1,\n",
      "          'make': 1,\n",
      "          'movies': 1,\n",
      "          'attention': 1,\n",
      "          'directors': 1,\n",
      "          'nstop': 1,\n",
      "          'letting': 1,\n",
      "          'daughters': 1,\n",
      "          'pout': 1,\n",
      "          'industry': 1,\n",
      "          'njust': 1,\n",
      "          'dna': 1,\n",
      "          'mean': 1,\n",
      "          'talent': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 20,\n",
      "          'film': 13,\n",
      "          'mars': 10,\n",
      "          'mission': 8,\n",
      "          'team': 6,\n",
      "          'space': 5,\n",
      "          'luc': 5,\n",
      "          'jim': 4,\n",
      "          'nbut': 4,\n",
      "          'planet': 4,\n",
      "          'almost': 4,\n",
      "          'ship': 4,\n",
      "          'science': 3,\n",
      "          'fiction': 3,\n",
      "          'tales': 3,\n",
      "          'scifi': 3,\n",
      "          'ideas': 3,\n",
      "          'surface': 3,\n",
      "          'martian': 3,\n",
      "          'nand': 3,\n",
      "          'characters': 3,\n",
      "          'good': 3,\n",
      "          'look': 3,\n",
      "          'one': 3,\n",
      "          'character': 3,\n",
      "          'scenes': 3,\n",
      "          'sequence': 3,\n",
      "          'minutes': 3,\n",
      "          'genre': 2,\n",
      "          'deal': 2,\n",
      "          'struggle': 2,\n",
      "          'strange': 2,\n",
      "          'land': 2,\n",
      "          'robert': 2,\n",
      "          'worth': 2,\n",
      "          'message': 2,\n",
      "          'since': 2,\n",
      "          'films': 2,\n",
      "          'thought': 2,\n",
      "          'crafted': 2,\n",
      "          'national': 2,\n",
      "          'enquirer': 2,\n",
      "          'phil': 2,\n",
      "          'ohlmyer': 2,\n",
      "          'jerry': 2,\n",
      "          'oconnell': 2,\n",
      "          'tim': 2,\n",
      "          'robbins': 2,\n",
      "          'wife': 2,\n",
      "          'cheadle': 2,\n",
      "          'consoles': 2,\n",
      "          'sinise': 2,\n",
      "          'men': 2,\n",
      "          'fine': 2,\n",
      "          'still': 2,\n",
      "          'set': 2,\n",
      "          'red': 2,\n",
      "          'investigate': 2,\n",
      "          'famed': 2,\n",
      "          'face': 2,\n",
      "          'na': 2,\n",
      "          'rock': 2,\n",
      "          'earth': 2,\n",
      "          'second': 2,\n",
      "          'world': 2,\n",
      "          'come': 2,\n",
      "          'play': 2,\n",
      "          'heroes': 2,\n",
      "          'question': 2,\n",
      "          'news': 2,\n",
      "          'plot': 2,\n",
      "          'becomes': 2,\n",
      "          '2001': 2,\n",
      "          'odyssey': 2,\n",
      "          'sequences': 2,\n",
      "          'wonderfully': 2,\n",
      "          'much': 2,\n",
      "          'like': 2,\n",
      "          'comic': 2,\n",
      "          'meteorite': 2,\n",
      "          'shower': 2,\n",
      "          'rescue': 2,\n",
      "          'score': 2,\n",
      "          'extravagant': 2,\n",
      "          'opening': 2,\n",
      "          'another': 2,\n",
      "          'design': 2,\n",
      "          'visual': 2,\n",
      "          'effects': 2,\n",
      "          'something': 2,\n",
      "          'ndirector': 2,\n",
      "          'de': 2,\n",
      "          'palma': 2,\n",
      "          'might': 2,\n",
      "          'realm': 1,\n",
      "          'always': 1,\n",
      "          'allegory': 1,\n",
      "          'political': 1,\n",
      "          'moral': 1,\n",
      "          'sensibilities': 1,\n",
      "          'best': 1,\n",
      "          'mankinds': 1,\n",
      "          'survival': 1,\n",
      "          'knowledge': 1,\n",
      "          'nsuch': 1,\n",
      "          'popular': 1,\n",
      "          'noteworthy': 1,\n",
      "          'tomes': 1,\n",
      "          'stranger': 1,\n",
      "          'heinlein': 1,\n",
      "          'childhoods': 1,\n",
      "          'end': 1,\n",
      "          'arthur': 1,\n",
      "          'c': 1,\n",
      "          'clarke': 1,\n",
      "          'man': 1,\n",
      "          'high': 1,\n",
      "          'castle': 1,\n",
      "          'androids': 1,\n",
      "          'dream': 1,\n",
      "          'electric': 1,\n",
      "          'sheep': 1,\n",
      "          'philip': 1,\n",
      "          'k': 1,\n",
      "          'dick': 1,\n",
      "          'mans': 1,\n",
      "          'need': 1,\n",
      "          'identity': 1,\n",
      "          'self': 1,\n",
      "          'nhollywood': 1,\n",
      "          'regularly': 1,\n",
      "          'adapted': 1,\n",
      "          'milieu': 1,\n",
      "          'beginnings': 1,\n",
      "          'nmost': 1,\n",
      "          'created': 1,\n",
      "          'fancy': 1,\n",
      "          'pulp': 1,\n",
      "          'escapism': 1,\n",
      "          'achieved': 1,\n",
      "          'nit': 1,\n",
      "          'really': 1,\n",
      "          'wasnt': 1,\n",
      "          'producer': 1,\n",
      "          'george': 1,\n",
      "          'pal': 1,\n",
      "          'took': 1,\n",
      "          'charge': 1,\n",
      "          'heinleins': 1,\n",
      "          'novel': 1,\n",
      "          'rocketship': 1,\n",
      "          'galileo': 1,\n",
      "          'destination': 1,\n",
      "          'moon': 1,\n",
      "          'commonly': 1,\n",
      "          'referred': 1,\n",
      "          'came': 1,\n",
      "          'nfrom': 1,\n",
      "          'diverse': 1,\n",
      "          'filmmakers': 1,\n",
      "          'roger': 1,\n",
      "          'corman': 1,\n",
      "          'stanley': 1,\n",
      "          'kubrick': 1,\n",
      "          'sought': 1,\n",
      "          'express': 1,\n",
      "          'medium': 1,\n",
      "          'nwith': 1,\n",
      "          'release': 1,\n",
      "          'touchstone': 1,\n",
      "          'pictures': 1,\n",
      "          'unabashedly': 1,\n",
      "          'nonchalant': 1,\n",
      "          'read': 1,\n",
      "          'globe': 1,\n",
      "          'opens': 1,\n",
      "          'summer': 1,\n",
      "          'barbecue': 1,\n",
      "          'woos': 1,\n",
      "          'young': 1,\n",
      "          'female': 1,\n",
      "          'glory': 1,\n",
      "          'upcoming': 1,\n",
      "          'nwoody': 1,\n",
      "          'blake': 1,\n",
      "          'terri': 1,\n",
      "          'connie': 1,\n",
      "          'nielsen': 1,\n",
      "          'commit': 1,\n",
      "          'coming': 1,\n",
      "          'authority': 1,\n",
      "          'goddard': 1,\n",
      "          'son': 1,\n",
      "          'nentering': 1,\n",
      "          'party': 1,\n",
      "          'mcconnell': 1,\n",
      "          'gary': 1,\n",
      "          'gave': 1,\n",
      "          'command': 1,\n",
      "          'due': 1,\n",
      "          'untimely': 1,\n",
      "          'death': 1,\n",
      "          'maggie': 1,\n",
      "          'kim': 1,\n",
      "          'delaney': 1,\n",
      "          'nluc': 1,\n",
      "          'woodys': 1,\n",
      "          'assistance': 1,\n",
      "          'three': 1,\n",
      "          'friends': 1,\n",
      "          'carry': 1,\n",
      "          'bond': 1,\n",
      "          'trust': 1,\n",
      "          'caring': 1,\n",
      "          'longs': 1,\n",
      "          'foot': 1,\n",
      "          'earnest': 1,\n",
      "          'cydonia': 1,\n",
      "          'region': 1,\n",
      "          'nthey': 1,\n",
      "          'send': 1,\n",
      "          'rover': 1,\n",
      "          'area': 1,\n",
      "          'discover': 1,\n",
      "          'seems': 1,\n",
      "          'water': 1,\n",
      "          'ice': 1,\n",
      "          'ngoing': 1,\n",
      "          'approach': 1,\n",
      "          'noise': 1,\n",
      "          'emanates': 1,\n",
      "          'nas': 1,\n",
      "          'tries': 1,\n",
      "          'scan': 1,\n",
      "          'radar': 1,\n",
      "          'violent': 1,\n",
      "          'wind': 1,\n",
      "          'storm': 1,\n",
      "          'erupts': 1,\n",
      "          'creating': 1,\n",
      "          'vortex': 1,\n",
      "          'kills': 1,\n",
      "          'members': 1,\n",
      "          'save': 1,\n",
      "          'nback': 1,\n",
      "          'station': 1,\n",
      "          'orbiting': 1,\n",
      "          'woody': 1,\n",
      "          'receive': 1,\n",
      "          'information': 1,\n",
      "          'landing': 1,\n",
      "          'missing': 1,\n",
      "          'nlucs': 1,\n",
      "          'interference': 1,\n",
      "          'laden': 1,\n",
      "          'emergency': 1,\n",
      "          'urges': 1,\n",
      "          'two': 1,\n",
      "          'attempt': 1,\n",
      "          'hopes': 1,\n",
      "          'rescuing': 1,\n",
      "          'previous': 1,\n",
      "          'journey': 1,\n",
      "          'fraught': 1,\n",
      "          'danger': 1,\n",
      "          'nmeteorite': 1,\n",
      "          'showers': 1,\n",
      "          'explosions': 1,\n",
      "          'rescues': 1,\n",
      "          'intrepid': 1,\n",
      "          'make': 1,\n",
      "          'way': 1,\n",
      "          'planets': 1,\n",
      "          'big': 1,\n",
      "          'ever': 1,\n",
      "          'intelligent': 1,\n",
      "          'life': 1,\n",
      "          'relationship': 1,\n",
      "          'us': 1,\n",
      "          'nnow': 1,\n",
      "          'bad': 1,\n",
      "          'entire': 1,\n",
      "          'based': 1,\n",
      "          'wholeheartedly': 1,\n",
      "          'outdated': 1,\n",
      "          'preposterous': 1,\n",
      "          'type': 1,\n",
      "          'civilization': 1,\n",
      "          'tripe': 1,\n",
      "          'centerpiece': 1,\n",
      "          'revealing': 1,\n",
      "          'harebrained': 1,\n",
      "          'pabulum': 1,\n",
      "          'screen': 1,\n",
      "          'witnessed': 1,\n",
      "          'nborrowing': 1,\n",
      "          'robinson': 1,\n",
      "          'crusoe': 1,\n",
      "          '1964': 1,\n",
      "          'quatermass': 1,\n",
      "          'pit': 1,\n",
      "          '1967': 1,\n",
      "          'even': 1,\n",
      "          'mario': 1,\n",
      "          'bavas': 1,\n",
      "          'vampires': 1,\n",
      "          'terrore': 1,\n",
      "          'nello': 1,\n",
      "          'spazio': 1,\n",
      "          '1965': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'dont': 1,\n",
      "          'add': 1,\n",
      "          'satisfying': 1,\n",
      "          'whole': 1,\n",
      "          'nwhile': 1,\n",
      "          'handled': 1,\n",
      "          'executed': 1,\n",
      "          'remains': 1,\n",
      "          'flat': 1,\n",
      "          'uninvolving': 1,\n",
      "          'nso': 1,\n",
      "          'time': 1,\n",
      "          'giving': 1,\n",
      "          'establishing': 1,\n",
      "          'lead': 1,\n",
      "          'use': 1,\n",
      "          'performances': 1,\n",
      "          'workmen': 1,\n",
      "          'carrying': 1,\n",
      "          'sort': 1,\n",
      "          'real': 1,\n",
      "          'chemistry': 1,\n",
      "          'ngary': 1,\n",
      "          'wasted': 1,\n",
      "          'role': 1,\n",
      "          'requires': 1,\n",
      "          'experiencing': 1,\n",
      "          'sleep': 1,\n",
      "          'depravation': 1,\n",
      "          'mistaken': 1,\n",
      "          'idea': 1,\n",
      "          'part': 1,\n",
      "          'relief': 1,\n",
      "          'painful': 1,\n",
      "          'excuse': 1,\n",
      "          'less': 1,\n",
      "          'said': 1,\n",
      "          'called': 1,\n",
      "          'home': 1,\n",
      "          'performance': 1,\n",
      "          'better': 1,\n",
      "          'nhes': 1,\n",
      "          'fun': 1,\n",
      "          'give': 1,\n",
      "          'damn': 1,\n",
      "          'script': 1,\n",
      "          'lapses': 1,\n",
      "          'namely': 1,\n",
      "          'discovering': 1,\n",
      "          'several': 1,\n",
      "          'breaches': 1,\n",
      "          'hull': 1,\n",
      "          'caused': 1,\n",
      "          'thinks': 1,\n",
      "          'checking': 1,\n",
      "          'fuel': 1,\n",
      "          'tanks': 1,\n",
      "          'remainder': 1,\n",
      "          'damage': 1,\n",
      "          'nthis': 1,\n",
      "          'course': 1,\n",
      "          'leads': 1,\n",
      "          'abandon': 1,\n",
      "          'nalso': 1,\n",
      "          'sacrifices': 1,\n",
      "          'takes': 1,\n",
      "          'religious': 1,\n",
      "          'demeanor': 1,\n",
      "          'completely': 1,\n",
      "          'odds': 1,\n",
      "          'situation': 1,\n",
      "          'biggest': 1,\n",
      "          'offence': 1,\n",
      "          'horrid': 1,\n",
      "          'intrusive': 1,\n",
      "          'ennio': 1,\n",
      "          'morricone': 1,\n",
      "          'nsubtlety': 1,\n",
      "          'nonexistent': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'music': 1,\n",
      "          'dialogue': 1,\n",
      "          'drowned': 1,\n",
      "          'works': 1,\n",
      "          'protracted': 1,\n",
      "          'pacing': 1,\n",
      "          'leisurely': 1,\n",
      "          'nafter': 1,\n",
      "          'introduction': 1,\n",
      "          'lasts': 1,\n",
      "          'full': 1,\n",
      "          '22': 1,\n",
      "          'finally': 1,\n",
      "          'dropped': 1,\n",
      "          'onto': 1,\n",
      "          'nthen': 1,\n",
      "          'long': 1,\n",
      "          'pause': 1,\n",
      "          'development': 1,\n",
      "          'including': 1,\n",
      "          'elaborate': 1,\n",
      "          'dance': 1,\n",
      "          'zero': 1,\n",
      "          'gravity': 1,\n",
      "          'could': 1,\n",
      "          'lose': 1,\n",
      "          '30': 1,\n",
      "          'actually': 1,\n",
      "          'gain': 1,\n",
      "          'momentum': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'talking': 1,\n",
      "          'heads': 1,\n",
      "          'discussing': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'drags': 1,\n",
      "          'dead': 1,\n",
      "          'stop': 1,\n",
      "          'absolutely': 1,\n",
      "          'sumptuous': 1,\n",
      "          'vistas': 1,\n",
      "          'majestic': 1,\n",
      "          'awe': 1,\n",
      "          'inspiring': 1,\n",
      "          'numerous': 1,\n",
      "          'spacecraft': 1,\n",
      "          'suits': 1,\n",
      "          'expertly': 1,\n",
      "          'drafted': 1,\n",
      "          'level': 1,\n",
      "          'realism': 1,\n",
      "          'hasnt': 1,\n",
      "          'seen': 1,\n",
      "          'stunning': 1,\n",
      "          'walk': 1,\n",
      "          'visualization': 1,\n",
      "          'evolution': 1,\n",
      "          'fault': 1,\n",
      "          'martians': 1,\n",
      "          'plastic': 1,\n",
      "          'model': 1,\n",
      "          'kit': 1,\n",
      "          'stages': 1,\n",
      "          'creative': 1,\n",
      "          'alone': 1,\n",
      "          'seemingly': 1,\n",
      "          'uninterrupted': 1,\n",
      "          'cut': 1,\n",
      "          'lasting': 1,\n",
      "          '15': 1,\n",
      "          'homage': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'rope': 1,\n",
      "          'introduced': 1,\n",
      "          'nscenes': 1,\n",
      "          'rotating': 1,\n",
      "          'centrifuge': 1,\n",
      "          'amazing': 1,\n",
      "          'execution': 1,\n",
      "          'nagging': 1,\n",
      "          'final': 1,\n",
      "          'explanation': 1,\n",
      "          'sturm': 1,\n",
      "          'und': 1,\n",
      "          'drang': 1,\n",
      "          'nsadly': 1,\n",
      "          'brian': 1,\n",
      "          'production': 1,\n",
      "          'arresting': 1,\n",
      "          'strip': 1,\n",
      "          'denouncement': 1,\n",
      "          'ruin': 1,\n",
      "          'return': 1,\n",
      "          'adventurous': 1,\n",
      "          'provoking': 1,\n",
      "          'disappointing': 1,\n",
      "          'entertain': 1,\n",
      "          'settle': 1,\n",
      "          'visuals': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'lost': 7,\n",
      "          'space': 6,\n",
      "          'like': 5,\n",
      "          'film': 4,\n",
      "          'hopkins': 4,\n",
      "          'nthey': 4,\n",
      "          'one': 4,\n",
      "          'effects': 4,\n",
      "          'convention': 3,\n",
      "          'oldman': 3,\n",
      "          'made': 3,\n",
      "          'nbut': 3,\n",
      "          'goldsman': 3,\n",
      "          'ship': 3,\n",
      "          'shot': 3,\n",
      "          'blawp': 3,\n",
      "          'line': 2,\n",
      "          'presentation': 2,\n",
      "          'inperson': 2,\n",
      "          'rogers': 2,\n",
      "          'leblanc': 2,\n",
      "          'chabert': 2,\n",
      "          'johnson': 2,\n",
      "          'even': 2,\n",
      "          'time': 2,\n",
      "          'years': 2,\n",
      "          'nyou': 2,\n",
      "          'find': 2,\n",
      "          'series': 2,\n",
      "          'see': 2,\n",
      "          'narrative': 2,\n",
      "          'looking': 2,\n",
      "          'judy': 2,\n",
      "          'penny': 2,\n",
      "          'solo': 2,\n",
      "          'every': 2,\n",
      "          'becomes': 2,\n",
      "          'nthe': 2,\n",
      "          'look': 2,\n",
      "          'nin': 2,\n",
      "          'composite': 2,\n",
      "          'shots': 2,\n",
      "          'much': 2,\n",
      "          'back': 1,\n",
      "          'february': 1,\n",
      "          'monthly': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'new': 1,\n",
      "          'cinema': 1,\n",
      "          'put': 1,\n",
      "          'lavish': 1,\n",
      "          'bigscreen': 1,\n",
      "          'update': 1,\n",
      "          'cult': 1,\n",
      "          '1960s': 1,\n",
      "          'scifi': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'complete': 1,\n",
      "          'appearances': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'mimi': 1,\n",
      "          'matt': 1,\n",
      "          'lacey': 1,\n",
      "          'jack': 1,\n",
      "          'gary': 1,\n",
      "          'nthat': 1,\n",
      "          'set': 1,\n",
      "          'warning': 1,\n",
      "          'alarmsthe': 1,\n",
      "          'last': 1,\n",
      "          'extravagant': 1,\n",
      "          'took': 1,\n",
      "          'place': 1,\n",
      "          'nearly': 1,\n",
      "          'five': 1,\n",
      "          'ago': 1,\n",
      "          'none': 1,\n",
      "          'arnold': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'cameo': 1,\n",
      "          'peddle': 1,\n",
      "          'nlast': 1,\n",
      "          'action': 1,\n",
      "          'hero': 1,\n",
      "          'millions': 1,\n",
      "          'others': 1,\n",
      "          'bought': 1,\n",
      "          'hype': 1,\n",
      "          'got': 1,\n",
      "          'nif': 1,\n",
      "          'gotten': 1,\n",
      "          'lostliterallyon': 1,\n",
      "          'way': 1,\n",
      "          'theatre': 1,\n",
      "          'spared': 1,\n",
      "          'tedium': 1,\n",
      "          'sloppily': 1,\n",
      "          'slappedtogether': 1,\n",
      "          'blockbuster': 1,\n",
      "          'wannabe': 1,\n",
      "          'may': 1,\n",
      "          'wondering': 1,\n",
      "          'director': 1,\n",
      "          'stephen': 1,\n",
      "          'screenwriter': 1,\n",
      "          'akiva': 1,\n",
      "          'nat': 1,\n",
      "          'claimed': 1,\n",
      "          'rabid': 1,\n",
      "          'fan': 1,\n",
      "          'original': 1,\n",
      "          'television': 1,\n",
      "          'really': 1,\n",
      "          'case': 1,\n",
      "          'id': 1,\n",
      "          'hate': 1,\n",
      "          'concepts': 1,\n",
      "          'mild': 1,\n",
      "          'interest': 1,\n",
      "          'nto': 1,\n",
      "          'say': 1,\n",
      "          'script': 1,\n",
      "          'lacks': 1,\n",
      "          'cohesion': 1,\n",
      "          'imply': 1,\n",
      "          'begin': 1,\n",
      "          'withwhich': 1,\n",
      "          'certainly': 1,\n",
      "          'nafter': 1,\n",
      "          'setup': 1,\n",
      "          'robinson': 1,\n",
      "          'familyfather': 1,\n",
      "          'john': 1,\n",
      "          'william': 1,\n",
      "          'hurt': 1,\n",
      "          'sounding': 1,\n",
      "          'spaced': 1,\n",
      "          'interviews': 1,\n",
      "          'mother': 1,\n",
      "          'maureen': 1,\n",
      "          'wasted': 1,\n",
      "          'daughters': 1,\n",
      "          'heather': 1,\n",
      "          'graham': 1,\n",
      "          'ditto': 1,\n",
      "          'heavily': 1,\n",
      "          'madeup': 1,\n",
      "          'junior': 1,\n",
      "          'version': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'wild': 1,\n",
      "          'things': 1,\n",
      "          'son': 1,\n",
      "          'young': 1,\n",
      "          'newcomer': 1,\n",
      "          'making': 1,\n",
      "          'best': 1,\n",
      "          'pilot': 1,\n",
      "          'west': 1,\n",
      "          'bad': 1,\n",
      "          'han': 1,\n",
      "          'impression': 1,\n",
      "          'sabotaged': 1,\n",
      "          'evil': 1,\n",
      "          'stowaway': 1,\n",
      "          'dr': 1,\n",
      "          'smith': 1,\n",
      "          'watereddown': 1,\n",
      "          'stilllively': 1,\n",
      "          'cashing': 1,\n",
      "          'paycheck': 1,\n",
      "          'loving': 1,\n",
      "          'minute': 1,\n",
      "          'scripts': 1,\n",
      "          'stream': 1,\n",
      "          'events': 1,\n",
      "          'fragmented': 1,\n",
      "          'random': 1,\n",
      "          'seems': 1,\n",
      "          'goes': 1,\n",
      "          'alongand': 1,\n",
      "          'little': 1,\n",
      "          'make': 1,\n",
      "          'go': 1,\n",
      "          'slightest': 1,\n",
      "          'bit': 1,\n",
      "          'interesting': 1,\n",
      "          'encounter': 1,\n",
      "          'another': 1,\n",
      "          'board': 1,\n",
      "          'nalien': 1,\n",
      "          'spiders': 1,\n",
      "          'attack': 1,\n",
      "          'return': 1,\n",
      "          'explodes': 1,\n",
      "          'land': 1,\n",
      "          'deserted': 1,\n",
      "          'planet': 1,\n",
      "          'nand': 1,\n",
      "          'nan': 1,\n",
      "          'attempt': 1,\n",
      "          'plot': 1,\n",
      "          'involving': 1,\n",
      "          'travel': 1,\n",
      "          'occurs': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'understand': 1,\n",
      "          'rules': 1,\n",
      "          'come': 1,\n",
      "          'using': 1,\n",
      "          'story': 1,\n",
      "          'device': 1,\n",
      "          'characters': 1,\n",
      "          'past': 1,\n",
      "          'self': 1,\n",
      "          'dies': 1,\n",
      "          'future': 1,\n",
      "          'incarnation': 1,\n",
      "          'inexplicably': 1,\n",
      "          'lives': 1,\n",
      "          'spaces': 1,\n",
      "          'aceinthehole': 1,\n",
      "          'manages': 1,\n",
      "          'botch': 1,\n",
      "          'nfor': 1,\n",
      "          'bigbudget': 1,\n",
      "          'visual': 1,\n",
      "          'incredibly': 1,\n",
      "          'shoddy': 1,\n",
      "          'background': 1,\n",
      "          'could': 1,\n",
      "          'blue': 1,\n",
      "          'outline': 1,\n",
      "          'around': 1,\n",
      "          'various': 1,\n",
      "          'digital': 1,\n",
      "          'battle': 1,\n",
      "          'scenes': 1,\n",
      "          'ndigital': 1,\n",
      "          'nothing': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'jawdroppingly': 1,\n",
      "          'unconvincing': 1,\n",
      "          'monkeylike': 1,\n",
      "          'creature': 1,\n",
      "          'pennys': 1,\n",
      "          'pet': 1,\n",
      "          'nentirely': 1,\n",
      "          'computergenerated': 1,\n",
      "          'inch': 1,\n",
      "          'showing': 1,\n",
      "          'looks': 1,\n",
      "          'lifted': 1,\n",
      "          'directly': 1,\n",
      "          'sony': 1,\n",
      "          'playstation': 1,\n",
      "          'game': 1,\n",
      "          'napparently': 1,\n",
      "          'thought': 1,\n",
      "          'tried': 1,\n",
      "          'desperately': 1,\n",
      "          'hide': 1,\n",
      "          'else': 1,\n",
      "          'explain': 1,\n",
      "          'graininess': 1,\n",
      "          'blawps': 1,\n",
      "          'human': 1,\n",
      "          'actors': 1,\n",
      "          'seams': 1,\n",
      "          'obvious': 1,\n",
      "          'severely': 1,\n",
      "          'visually': 1,\n",
      "          'impaired': 1,\n",
      "          'distracted': 1,\n",
      "          'grainy': 1,\n",
      "          'immediately': 1,\n",
      "          'followed': 1,\n",
      "          'crystalclear': 1,\n",
      "          'reaction': 1,\n",
      "          'nnew': 1,\n",
      "          'hoping': 1,\n",
      "          'become': 1,\n",
      "          'big': 1,\n",
      "          'franchise': 1,\n",
      "          'longrunning': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'cash': 1,\n",
      "          'cow': 1,\n",
      "          'paramount': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'movie': 1,\n",
      "          'likely': 1,\n",
      "          'live': 1,\n",
      "          'obscure': 1,\n",
      "          'answer': 1,\n",
      "          'trivia': 1,\n",
      "          'question': 1,\n",
      "          'ended': 1,\n",
      "          'titanics': 1,\n",
      "          '15week': 1,\n",
      "          'reign': 1,\n",
      "          'top': 1,\n",
      "          'weekend': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'burns': 10,\n",
      "          'back': 6,\n",
      "          'film': 6,\n",
      "          'looking': 5,\n",
      "          'one': 5,\n",
      "          'characters': 4,\n",
      "          'would': 4,\n",
      "          'time': 3,\n",
      "          'movie': 3,\n",
      "          'two': 3,\n",
      "          'life': 3,\n",
      "          'little': 3,\n",
      "          'nno': 3,\n",
      "          'three': 3,\n",
      "          'nthe': 3,\n",
      "          'years': 3,\n",
      "          'claudia': 3,\n",
      "          'long': 2,\n",
      "          'new': 2,\n",
      "          'minutes': 2,\n",
      "          'edward': 2,\n",
      "          'storyline': 2,\n",
      "          'anyone': 2,\n",
      "          'spent': 2,\n",
      "          'ending': 2,\n",
      "          'case': 2,\n",
      "          'entire': 2,\n",
      "          'nand': 2,\n",
      "          'far': 2,\n",
      "          'charlie': 2,\n",
      "          'girlfriend': 2,\n",
      "          'lauren': 2,\n",
      "          'holly': 2,\n",
      "          'charlies': 2,\n",
      "          'mike': 2,\n",
      "          'bon': 2,\n",
      "          'jovi': 2,\n",
      "          'even': 2,\n",
      "          'theyre': 2,\n",
      "          'nso': 2,\n",
      "          'especially': 2,\n",
      "          'nthey': 2,\n",
      "          'claudias': 2,\n",
      "          'shes': 2,\n",
      "          'brothers': 2,\n",
      "          'like': 2,\n",
      "          'working': 1,\n",
      "          'title': 1,\n",
      "          'nothing': 1,\n",
      "          'rarely': 1,\n",
      "          'apt': 1,\n",
      "          'name': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'clocks': 1,\n",
      "          'relatively': 1,\n",
      "          'skinny': 1,\n",
      "          '96': 1,\n",
      "          'seems': 1,\n",
      "          'run': 1,\n",
      "          'enough': 1,\n",
      "          'engulf': 1,\n",
      "          'titanics': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'trotted': 1,\n",
      "          'hackneyed': 1,\n",
      "          'trajectory': 1,\n",
      "          'instantly': 1,\n",
      "          'recognizable': 1,\n",
      "          'hasnt': 1,\n",
      "          'seclusion': 1,\n",
      "          'ninstead': 1,\n",
      "          'tweaking': 1,\n",
      "          'formula': 1,\n",
      "          'invigorate': 1,\n",
      "          'proceedings': 1,\n",
      "          'content': 1,\n",
      "          'allow': 1,\n",
      "          'ramble': 1,\n",
      "          'aimlessly': 1,\n",
      "          'towards': 1,\n",
      "          'irritatingly': 1,\n",
      "          'predictable': 1,\n",
      "          'conclusion': 1,\n",
      "          'offering': 1,\n",
      "          'precious': 1,\n",
      "          'momentary': 1,\n",
      "          'pleasures': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'dominated': 1,\n",
      "          'dislikable': 1,\n",
      "          'whose': 1,\n",
      "          'constant': 1,\n",
      "          'presence': 1,\n",
      "          'screen': 1,\n",
      "          'painful': 1,\n",
      "          'appropriate': 1,\n",
      "          'triple': 1,\n",
      "          'suicide': 1,\n",
      "          'sooner': 1,\n",
      "          'better': 1,\n",
      "          'nalas': 1,\n",
      "          'thats': 1,\n",
      "          'stick': 1,\n",
      "          'length': 1,\n",
      "          'forced': 1,\n",
      "          'endure': 1,\n",
      "          'prolonged': 1,\n",
      "          'company': 1,\n",
      "          'wretched': 1,\n",
      "          'trio': 1,\n",
      "          'depress': 1,\n",
      "          'audiences': 1,\n",
      "          'shot': 1,\n",
      "          'cold': 1,\n",
      "          'rainy': 1,\n",
      "          'days': 1,\n",
      "          'gray': 1,\n",
      "          'york': 1,\n",
      "          'state': 1,\n",
      "          'beach': 1,\n",
      "          'town': 1,\n",
      "          'npeeks': 1,\n",
      "          'sunshine': 1,\n",
      "          'wonder': 1,\n",
      "          'miserable': 1,\n",
      "          'nfirst': 1,\n",
      "          'generation': 1,\n",
      "          'x': 1,\n",
      "          'slacker': 1,\n",
      "          'abandoned': 1,\n",
      "          'ago': 1,\n",
      "          'abortion': 1,\n",
      "          'bumming': 1,\n",
      "          'around': 1,\n",
      "          'california': 1,\n",
      "          'deciding': 1,\n",
      "          'come': 1,\n",
      "          'home': 1,\n",
      "          'nthat': 1,\n",
      "          'picking': 1,\n",
      "          'pieces': 1,\n",
      "          'following': 1,\n",
      "          'departure': 1,\n",
      "          'moved': 1,\n",
      "          'shacking': 1,\n",
      "          'old': 1,\n",
      "          'school': 1,\n",
      "          'buddies': 1,\n",
      "          'jon': 1,\n",
      "          'comfortable': 1,\n",
      "          'relationship': 1,\n",
      "          'apparent': 1,\n",
      "          'blind': 1,\n",
      "          'person': 1,\n",
      "          'right': 1,\n",
      "          'nclaudia': 1,\n",
      "          'spice': 1,\n",
      "          'wants': 1,\n",
      "          'settle': 1,\n",
      "          'children': 1,\n",
      "          'nthen': 1,\n",
      "          'reenters': 1,\n",
      "          'mix': 1,\n",
      "          'end': 1,\n",
      "          'nwho': 1,\n",
      "          'cares': 1,\n",
      "          'goes': 1,\n",
      "          'extraordinary': 1,\n",
      "          'lengths': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'interested': 1,\n",
      "          'outcome': 1,\n",
      "          'romantic': 1,\n",
      "          'triangle': 1,\n",
      "          'finds': 1,\n",
      "          'happiness': 1,\n",
      "          'dont': 1,\n",
      "          'deserve': 1,\n",
      "          'anyway': 1,\n",
      "          'wasting': 1,\n",
      "          '90': 1,\n",
      "          'arent': 1,\n",
      "          'real': 1,\n",
      "          'people': 1,\n",
      "          'writers': 1,\n",
      "          'construct': 1,\n",
      "          'stumbling': 1,\n",
      "          'tooobvious': 1,\n",
      "          'know': 1,\n",
      "          'well': 1,\n",
      "          'given': 1,\n",
      "          'audience': 1,\n",
      "          'credit': 1,\n",
      "          'presented': 1,\n",
      "          'plot': 1,\n",
      "          'least': 1,\n",
      "          'offered': 1,\n",
      "          'surprise': 1,\n",
      "          'nanother': 1,\n",
      "          'frustrating': 1,\n",
      "          'thing': 1,\n",
      "          'populated': 1,\n",
      "          'group': 1,\n",
      "          'potentiallyinteresting': 1,\n",
      "          'supporting': 1,\n",
      "          'nblythe': 1,\n",
      "          'danner': 1,\n",
      "          'solid': 1,\n",
      "          'housebound': 1,\n",
      "          'mother': 1,\n",
      "          'connie': 1,\n",
      "          'britton': 1,\n",
      "          'suitably': 1,\n",
      "          'highstrung': 1,\n",
      "          'neurotic': 1,\n",
      "          'sister': 1,\n",
      "          'jennifer': 1,\n",
      "          'esposito': 1,\n",
      "          'eyecatching': 1,\n",
      "          'bartender': 1,\n",
      "          'search': 1,\n",
      "          'romance': 1,\n",
      "          'nsadly': 1,\n",
      "          'get': 1,\n",
      "          'quick': 1,\n",
      "          'glimpses': 1,\n",
      "          'lives': 1,\n",
      "          'although': 1,\n",
      "          'intriguing': 1,\n",
      "          'story': 1,\n",
      "          'chosen': 1,\n",
      "          'tell': 1,\n",
      "          'nnone': 1,\n",
      "          'lead': 1,\n",
      "          'performers': 1,\n",
      "          'going': 1,\n",
      "          'wow': 1,\n",
      "          'critics': 1,\n",
      "          'thespian': 1,\n",
      "          'attributes': 1,\n",
      "          'nedward': 1,\n",
      "          'pushing': 1,\n",
      "          'edge': 1,\n",
      "          'limited': 1,\n",
      "          'range': 1,\n",
      "          'njon': 1,\n",
      "          'shows': 1,\n",
      "          'acting': 1,\n",
      "          'ability': 1,\n",
      "          'might': 1,\n",
      "          'reasonably': 1,\n",
      "          'expect': 1,\n",
      "          'singer': 1,\n",
      "          'branching': 1,\n",
      "          'different': 1,\n",
      "          'career': 1,\n",
      "          'could': 1,\n",
      "          'still': 1,\n",
      "          'use': 1,\n",
      "          'polish': 1,\n",
      "          'worst': 1,\n",
      "          'presents': 1,\n",
      "          'completely': 1,\n",
      "          'bland': 1,\n",
      "          'nas': 1,\n",
      "          'portrayed': 1,\n",
      "          'hardly': 1,\n",
      "          'kind': 1,\n",
      "          'woman': 1,\n",
      "          'inspire': 1,\n",
      "          'moments': 1,\n",
      "          'interest': 1,\n",
      "          'mention': 1,\n",
      "          'undying': 1,\n",
      "          'love': 1,\n",
      "          'nburns': 1,\n",
      "          'ex': 1,\n",
      "          'monumentally': 1,\n",
      "          'untalented': 1,\n",
      "          'maxine': 1,\n",
      "          'bahns': 1,\n",
      "          'hardpressed': 1,\n",
      "          'less': 1,\n",
      "          'inspired': 1,\n",
      "          'job': 1,\n",
      "          'nwhen': 1,\n",
      "          'released': 1,\n",
      "          'mcmullen': 1,\n",
      "          'revered': 1,\n",
      "          'wunderkind': 1,\n",
      "          '1995': 1,\n",
      "          'sundance': 1,\n",
      "          'festival': 1,\n",
      "          'robert': 1,\n",
      "          'redford': 1,\n",
      "          'apparently': 1,\n",
      "          'stuck': 1,\n",
      "          'aging': 1,\n",
      "          'actordirector': 1,\n",
      "          'executive': 1,\n",
      "          'produced': 1,\n",
      "          'mess': 1,\n",
      "          'ntwo': 1,\n",
      "          'films': 1,\n",
      "          'short': 1,\n",
      "          'later': 1,\n",
      "          'luster': 1,\n",
      "          'faded': 1,\n",
      "          'nsome': 1,\n",
      "          'makers': 1,\n",
      "          'good': 1,\n",
      "          'nwith': 1,\n",
      "          'toback': 1,\n",
      "          'duds': 1,\n",
      "          'follow': 1,\n",
      "          'delightful': 1,\n",
      "          'beginning': 1,\n",
      "          'look': 1,\n",
      "          'member': 1,\n",
      "          'undistinguished': 1,\n",
      "          'club': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 8,\n",
      "          'carter': 7,\n",
      "          'movie': 5,\n",
      "          'get': 5,\n",
      "          'know': 5,\n",
      "          'characters': 5,\n",
      "          'really': 4,\n",
      "          'could': 4,\n",
      "          'nthe': 4,\n",
      "          'like': 4,\n",
      "          'good': 3,\n",
      "          'bad': 3,\n",
      "          'ni': 3,\n",
      "          'nyou': 3,\n",
      "          'plot': 3,\n",
      "          'didnt': 3,\n",
      "          'another': 3,\n",
      "          'would': 3,\n",
      "          'every': 3,\n",
      "          'dont': 3,\n",
      "          'job': 2,\n",
      "          'film': 2,\n",
      "          'feel': 2,\n",
      "          'tell': 2,\n",
      "          'n': 2,\n",
      "          'car': 2,\n",
      "          'character': 2,\n",
      "          'running': 2,\n",
      "          'chase': 2,\n",
      "          'jack': 2,\n",
      "          'brother': 2,\n",
      "          'cliche': 2,\n",
      "          'pretty': 2,\n",
      "          'scenes': 2,\n",
      "          'doesnt': 2,\n",
      "          'story': 2,\n",
      "          'carters': 2,\n",
      "          'richies': 2,\n",
      "          'something': 2,\n",
      "          'involving': 2,\n",
      "          'way': 2,\n",
      "          'screenplay': 2,\n",
      "          'nearly': 2,\n",
      "          'scene': 2,\n",
      "          'since': 2,\n",
      "          'everything': 2,\n",
      "          'critic': 1,\n",
      "          'see': 1,\n",
      "          'write': 1,\n",
      "          'review': 1,\n",
      "          'tells': 1,\n",
      "          'kind': 1,\n",
      "          'embarrassed': 1,\n",
      "          'admit': 1,\n",
      "          'seen': 1,\n",
      "          'cant': 1,\n",
      "          'although': 1,\n",
      "          'go': 1,\n",
      "          'falls': 1,\n",
      "          'category': 1,\n",
      "          'movies': 1,\n",
      "          'continue': 1,\n",
      "          'made': 1,\n",
      "          'reasons': 1,\n",
      "          'unknown': 1,\n",
      "          'anyone': 1,\n",
      "          'outside': 1,\n",
      "          'hollywood': 1,\n",
      "          'executive': 1,\n",
      "          'board': 1,\n",
      "          'room': 1,\n",
      "          'might': 1,\n",
      "          'call': 1,\n",
      "          'steven': 1,\n",
      "          'seagalmickey': 1,\n",
      "          'rourkejeanclaude': 1,\n",
      "          'van': 1,\n",
      "          'dammewesley': 1,\n",
      "          'snipes': 1,\n",
      "          'school': 1,\n",
      "          'mediocre': 1,\n",
      "          'actioncrime': 1,\n",
      "          'thrillers': 1,\n",
      "          'potboilers': 1,\n",
      "          'heavy': 1,\n",
      "          'fistfights': 1,\n",
      "          'shootouts': 1,\n",
      "          'chases': 1,\n",
      "          'light': 1,\n",
      "          'development': 1,\n",
      "          'nthey': 1,\n",
      "          'stories': 1,\n",
      "          'socalled': 1,\n",
      "          'hero': 1,\n",
      "          'keeps': 1,\n",
      "          'connection': 1,\n",
      "          'antagonists': 1,\n",
      "          'without': 1,\n",
      "          'reason': 1,\n",
      "          'give': 1,\n",
      "          'protagonist': 1,\n",
      "          'someone': 1,\n",
      "          'fight': 1,\n",
      "          'shoot': 1,\n",
      "          'nsylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'stars': 1,\n",
      "          'las': 1,\n",
      "          'vegasbased': 1,\n",
      "          'mob': 1,\n",
      "          'enforcer': 1,\n",
      "          'returns': 1,\n",
      "          'home': 1,\n",
      "          'brothers': 1,\n",
      "          'funeral': 1,\n",
      "          'nhe': 1,\n",
      "          'believes': 1,\n",
      "          'richie': 1,\n",
      "          'taken': 1,\n",
      "          'die': 1,\n",
      "          'dwi': 1,\n",
      "          'accident': 1,\n",
      "          'ncarters': 1,\n",
      "          'badasses': 1,\n",
      "          'ever': 1,\n",
      "          'captured': 1,\n",
      "          'celluloid': 1,\n",
      "          'nhis': 1,\n",
      "          'face': 1,\n",
      "          'alone': 1,\n",
      "          'intimidating': 1,\n",
      "          'theres': 1,\n",
      "          'quite': 1,\n",
      "          'leans': 1,\n",
      "          'regular': 1,\n",
      "          'citizens': 1,\n",
      "          'criminal': 1,\n",
      "          'lowlives': 1,\n",
      "          'simply': 1,\n",
      "          'staring': 1,\n",
      "          'speaking': 1,\n",
      "          'confidence': 1,\n",
      "          'ramboontestosteronetherapy': 1,\n",
      "          'voice': 1,\n",
      "          'nstallones': 1,\n",
      "          'performance': 1,\n",
      "          'forced': 1,\n",
      "          'unnatural': 1,\n",
      "          'realize': 1,\n",
      "          'hes': 1,\n",
      "          'mocking': 1,\n",
      "          'actual': 1,\n",
      "          'involves': 1,\n",
      "          'investigation': 1,\n",
      "          'death': 1,\n",
      "          'nhes': 1,\n",
      "          'town': 1,\n",
      "          'thats': 1,\n",
      "          'somehow': 1,\n",
      "          'local': 1,\n",
      "          'top': 1,\n",
      "          'dogs': 1,\n",
      "          'well': 1,\n",
      "          'nmickey': 1,\n",
      "          'rourke': 1,\n",
      "          'costars': 1,\n",
      "          'sort': 1,\n",
      "          'crime': 1,\n",
      "          'boss': 1,\n",
      "          'porno': 1,\n",
      "          'web': 1,\n",
      "          'site': 1,\n",
      "          'blackmailing': 1,\n",
      "          'young': 1,\n",
      "          'internet': 1,\n",
      "          'tycoon': 1,\n",
      "          'played': 1,\n",
      "          'alan': 1,\n",
      "          'cummings': 1,\n",
      "          'looking': 1,\n",
      "          'acting': 1,\n",
      "          'lot': 1,\n",
      "          'pee': 1,\n",
      "          'wee': 1,\n",
      "          'herman': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'mistress': 1,\n",
      "          'secret': 1,\n",
      "          'cdrom': 1,\n",
      "          'convicting': 1,\n",
      "          'disturbing': 1,\n",
      "          'evidence': 1,\n",
      "          'terrible': 1,\n",
      "          'stillliving': 1,\n",
      "          'relatives': 1,\n",
      "          'nim': 1,\n",
      "          'rolling': 1,\n",
      "          'eyes': 1,\n",
      "          'thinking': 1,\n",
      "          'trying': 1,\n",
      "          'critique': 1,\n",
      "          'remotely': 1,\n",
      "          'comprehendible': 1,\n",
      "          'rip': 1,\n",
      "          'shreds': 1,\n",
      "          'plus': 1,\n",
      "          'direction': 1,\n",
      "          'editing': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'require': 1,\n",
      "          'discussion': 1,\n",
      "          'order': 1,\n",
      "          'explain': 1,\n",
      "          'put': 1,\n",
      "          'spoliers': 1,\n",
      "          'reviews': 1,\n",
      "          'either': 1,\n",
      "          'intentionally': 1,\n",
      "          'accidentally': 1,\n",
      "          'nyes': 1,\n",
      "          'complicated': 1,\n",
      "          'complex': 1,\n",
      "          'nand': 1,\n",
      "          'whats': 1,\n",
      "          'worse': 1,\n",
      "          'intricate': 1,\n",
      "          'make': 1,\n",
      "          'seem': 1,\n",
      "          'smart': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'example': 1,\n",
      "          'opposite': 1,\n",
      "          'feeling': 1,\n",
      "          'whoever': 1,\n",
      "          'wrote': 1,\n",
      "          'script': 1,\n",
      "          'short': 1,\n",
      "          'intervals': 1,\n",
      "          'spaced': 1,\n",
      "          'far': 1,\n",
      "          'apart': 1,\n",
      "          'probably': 1,\n",
      "          'remember': 1,\n",
      "          'already': 1,\n",
      "          'happened': 1,\n",
      "          'figure': 1,\n",
      "          'lead': 1,\n",
      "          'next': 1,\n",
      "          'major': 1,\n",
      "          'points': 1,\n",
      "          'work': 1,\n",
      "          'towards': 1,\n",
      "          'climax': 1,\n",
      "          'nall': 1,\n",
      "          'need': 1,\n",
      "          'tracking': 1,\n",
      "          'scumbag': 1,\n",
      "          'supposed': 1,\n",
      "          'witness': 1,\n",
      "          'asking': 1,\n",
      "          'getting': 1,\n",
      "          'information': 1,\n",
      "          'realizing': 1,\n",
      "          'wasnt': 1,\n",
      "          'complete': 1,\n",
      "          'idiot': 1,\n",
      "          'figured': 1,\n",
      "          'first': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'nalthough': 1,\n",
      "          'supporting': 1,\n",
      "          'equally': 1,\n",
      "          'stupid': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'haunt': 1,\n",
      "          'violent': 1,\n",
      "          'nmaking': 1,\n",
      "          'entirely': 1,\n",
      "          'criminals': 1,\n",
      "          'necessarily': 1,\n",
      "          'mean': 1,\n",
      "          'unlikable': 1,\n",
      "          'cutout': 1,\n",
      "          'nmel': 1,\n",
      "          'gibson': 1,\n",
      "          'starred': 1,\n",
      "          'payback': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'unlike': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'guy': 1,\n",
      "          'nso': 1,\n",
      "          'ultimately': 1,\n",
      "          'fails': 1,\n",
      "          'much': 1,\n",
      "          'selling': 1,\n",
      "          'point': 1,\n",
      "          'ncarter': 1,\n",
      "          'likable': 1,\n",
      "          'care': 1,\n",
      "          'gets': 1,\n",
      "          'revenge': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'exciting': 1,\n",
      "          'original': 1,\n",
      "          'enemies': 1,\n",
      "          'massive': 1,\n",
      "          'conspiracy': 1,\n",
      "          'threatening': 1,\n",
      "          'cmon': 1,\n",
      "          'whos': 1,\n",
      "          'going': 1,\n",
      "          'win': 1,\n",
      "          'brawl': 1,\n",
      "          'shootout': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'satisfied': 1,\n",
      "          'results': 1,\n",
      "          'filmmakers': 1,\n",
      "          'unoriginal': 1,\n",
      "          'possible': 1,\n",
      "          'city': 1,\n",
      "          'never': 1,\n",
      "          'mentioned': 1,\n",
      "          'name': 1,\n",
      "          'assume': 1,\n",
      "          'seattle': 1,\n",
      "          'cars': 1,\n",
      "          'washington': 1,\n",
      "          'license': 1,\n",
      "          'plates': 1,\n",
      "          'always': 1,\n",
      "          'raining': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ace': 9,\n",
      "          'ventura': 8,\n",
      "          'first': 6,\n",
      "          'carrey': 5,\n",
      "          'movie': 4,\n",
      "          'one': 4,\n",
      "          'carreys': 4,\n",
      "          'funny': 4,\n",
      "          'dumb': 2,\n",
      "          'even': 2,\n",
      "          'people': 2,\n",
      "          '2': 2,\n",
      "          'find': 2,\n",
      "          'annoying': 2,\n",
      "          'nthe': 2,\n",
      "          'detective': 2,\n",
      "          'save': 2,\n",
      "          'disappointed': 2,\n",
      "          'may': 2,\n",
      "          'original': 2,\n",
      "          'nbut': 2,\n",
      "          'made': 2,\n",
      "          'definitely': 2,\n",
      "          'ive': 1,\n",
      "          'got': 1,\n",
      "          'admit': 1,\n",
      "          'nim': 1,\n",
      "          'huge': 1,\n",
      "          'jim': 1,\n",
      "          'fan': 1,\n",
      "          'ni': 1,\n",
      "          'loved': 1,\n",
      "          'well': 1,\n",
      "          'mask': 1,\n",
      "          'dumberand': 1,\n",
      "          'batman': 1,\n",
      "          'forever': 1,\n",
      "          'pretty': 1,\n",
      "          'awful': 1,\n",
      "          'come': 1,\n",
      "          'looking': 1,\n",
      "          'reasonably': 1,\n",
      "          'good': 1,\n",
      "          'nuntil': 1,\n",
      "          'saw': 1,\n",
      "          'idea': 1,\n",
      "          'could': 1,\n",
      "          'guy': 1,\n",
      "          'nsadly': 1,\n",
      "          'shows': 1,\n",
      "          'irritating': 1,\n",
      "          'ncarrey': 1,\n",
      "          'goes': 1,\n",
      "          'schtick': 1,\n",
      "          'went': 1,\n",
      "          'time': 1,\n",
      "          'longer': 1,\n",
      "          'funnyit': 1,\n",
      "          'rehash': 1,\n",
      "          'many': 1,\n",
      "          'jokes': 1,\n",
      "          'used': 1,\n",
      "          'plot': 1,\n",
      "          'sees': 1,\n",
      "          'pet': 1,\n",
      "          'retiring': 1,\n",
      "          'failing': 1,\n",
      "          'raccoon': 1,\n",
      "          'reasonable': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'spoof': 1,\n",
      "          'nsoon': 1,\n",
      "          'called': 1,\n",
      "          'retirement': 1,\n",
      "          'bat': 1,\n",
      "          'kidnapped': 1,\n",
      "          'returned': 1,\n",
      "          'four': 1,\n",
      "          'days': 1,\n",
      "          'cause': 1,\n",
      "          'two': 1,\n",
      "          'warring': 1,\n",
      "          'african': 1,\n",
      "          'tribes': 1,\n",
      "          'destroy': 1,\n",
      "          'nonce': 1,\n",
      "          'day': 1,\n",
      "          'using': 1,\n",
      "          'uncanny': 1,\n",
      "          'skills': 1,\n",
      "          'nthose': 1,\n",
      "          'restrained': 1,\n",
      "          'roles': 1,\n",
      "          'films': 1,\n",
      "          'following': 1,\n",
      "          'glad': 1,\n",
      "          'see': 1,\n",
      "          'overacting': 1,\n",
      "          'best': 1,\n",
      "          'ability': 1,\n",
      "          'fact': 1,\n",
      "          'sequel': 1,\n",
      "          'doesnt': 1,\n",
      "          'capture': 1,\n",
      "          'feel': 1,\n",
      "          'benefited': 1,\n",
      "          'looked': 1,\n",
      "          'constant': 1,\n",
      "          'hypedup': 1,\n",
      "          'improv': 1,\n",
      "          'sequences': 1,\n",
      "          'hysterically': 1,\n",
      "          'nhere': 1,\n",
      "          'however': 1,\n",
      "          'tighter': 1,\n",
      "          'script': 1,\n",
      "          'reminiscent': 1,\n",
      "          'old': 1,\n",
      "          'disney': 1,\n",
      "          'telemovies': 1,\n",
      "          'takes': 1,\n",
      "          'improvised': 1,\n",
      "          'material': 1,\n",
      "          'shamelessly': 1,\n",
      "          'recycles': 1,\n",
      "          'new': 1,\n",
      "          'giving': 1,\n",
      "          'little': 1,\n",
      "          'chance': 1,\n",
      "          'improvise': 1,\n",
      "          'ninstead': 1,\n",
      "          'extremely': 1,\n",
      "          'manner': 1,\n",
      "          'reduced': 1,\n",
      "          'walking': 1,\n",
      "          'around': 1,\n",
      "          'stupidly': 1,\n",
      "          'biggest': 1,\n",
      "          'problems': 1,\n",
      "          'character': 1,\n",
      "          'nin': 1,\n",
      "          'always': 1,\n",
      "          'cool': 1,\n",
      "          'step': 1,\n",
      "          'ahead': 1,\n",
      "          'every': 1,\n",
      "          'elseperfect': 1,\n",
      "          'offthewall': 1,\n",
      "          'approach': 1,\n",
      "          'look': 1,\n",
      "          'lot': 1,\n",
      "          'stupider': 1,\n",
      "          'often': 1,\n",
      "          'straight': 1,\n",
      "          'guya': 1,\n",
      "          'role': 1,\n",
      "          'style': 1,\n",
      "          'nthere': 1,\n",
      "          'moments': 1,\n",
      "          'far': 1,\n",
      "          'nthey': 1,\n",
      "          'also': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'anything': 1,\n",
      "          'dumber': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cruise': 14,\n",
      "          'woo': 10,\n",
      "          'one': 9,\n",
      "          'nthe': 9,\n",
      "          'plot': 7,\n",
      "          'way': 6,\n",
      "          'gun': 6,\n",
      "          'film': 6,\n",
      "          'action': 5,\n",
      "          'see': 5,\n",
      "          'john': 4,\n",
      "          'face': 4,\n",
      "          'kind': 4,\n",
      "          'bad': 4,\n",
      "          'really': 4,\n",
      "          'eyes': 4,\n",
      "          'ni': 4,\n",
      "          'character': 4,\n",
      "          'hes': 4,\n",
      "          'turns': 4,\n",
      "          'director': 3,\n",
      "          'hero': 3,\n",
      "          'bear': 3,\n",
      "          'us': 3,\n",
      "          'give': 3,\n",
      "          'much': 3,\n",
      "          'mo': 3,\n",
      "          'set': 3,\n",
      "          'guys': 3,\n",
      "          'seem': 3,\n",
      "          'tom': 3,\n",
      "          'cruises': 3,\n",
      "          'cool': 3,\n",
      "          'nearly': 3,\n",
      "          'ethan': 3,\n",
      "          'hunt': 3,\n",
      "          'newton': 3,\n",
      "          'nin': 3,\n",
      "          'even': 3,\n",
      "          'mi2': 3,\n",
      "          'first': 3,\n",
      "          'less': 3,\n",
      "          'every': 3,\n",
      "          'moment': 3,\n",
      "          'mission': 2,\n",
      "          'hard': 2,\n",
      "          'made': 2,\n",
      "          'charming': 2,\n",
      "          'drop': 2,\n",
      "          'kick': 2,\n",
      "          'villains': 2,\n",
      "          'nsadly': 2,\n",
      "          'picture': 2,\n",
      "          'progresses': 2,\n",
      "          'product': 2,\n",
      "          'begins': 2,\n",
      "          'long': 2,\n",
      "          'episode': 2,\n",
      "          'good': 2,\n",
      "          'nwhat': 2,\n",
      "          'nmi2': 2,\n",
      "          'initial': 2,\n",
      "          'flash': 2,\n",
      "          'soon': 2,\n",
      "          'something': 2,\n",
      "          'slo': 2,\n",
      "          'pieces': 2,\n",
      "          'leap': 2,\n",
      "          'firing': 2,\n",
      "          'though': 2,\n",
      "          'sequence': 2,\n",
      "          'ever': 2,\n",
      "          'climbing': 2,\n",
      "          'could': 2,\n",
      "          'become': 2,\n",
      "          'summer': 2,\n",
      "          'movie': 2,\n",
      "          'gravity': 2,\n",
      "          'defying': 2,\n",
      "          'effects': 2,\n",
      "          'story': 2,\n",
      "          'nits': 2,\n",
      "          'course': 2,\n",
      "          'never': 2,\n",
      "          'make': 2,\n",
      "          'eye': 2,\n",
      "          'ncruise': 2,\n",
      "          'meet': 2,\n",
      "          '1': 2,\n",
      "          'two': 2,\n",
      "          'attractive': 2,\n",
      "          'camera': 2,\n",
      "          'scene': 2,\n",
      "          'little': 2,\n",
      "          'video': 2,\n",
      "          'style': 2,\n",
      "          'smoke': 2,\n",
      "          'mirrors': 2,\n",
      "          'particular': 2,\n",
      "          'half': 2,\n",
      "          'nhes': 2,\n",
      "          'im': 2,\n",
      "          'battle': 2,\n",
      "          'fight': 2,\n",
      "          'isnt': 2,\n",
      "          'nothing': 2,\n",
      "          'sure': 2,\n",
      "          'gunfight': 2,\n",
      "          'woos': 2,\n",
      "          'like': 2,\n",
      "          'directly': 2,\n",
      "          'mid': 2,\n",
      "          'air': 2,\n",
      "          'guy': 2,\n",
      "          'hug': 2,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'impossible': 1,\n",
      "          '2': 1,\n",
      "          'killer': 1,\n",
      "          'boiled': 1,\n",
      "          'appears': 1,\n",
      "          'exciting': 1,\n",
      "          'elegant': 1,\n",
      "          'spy': 1,\n",
      "          'thriller': 1,\n",
      "          'post': 1,\n",
      "          'millennium': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'adventure': 1,\n",
      "          'strapping': 1,\n",
      "          'american': 1,\n",
      "          'read': 1,\n",
      "          'unsophisticated': 1,\n",
      "          'willing': 1,\n",
      "          'fox': 1,\n",
      "          'final': 1,\n",
      "          'closer': 1,\n",
      "          'resemblance': 1,\n",
      "          'souped': 1,\n",
      "          'twohour': 1,\n",
      "          'magyuver': 1,\n",
      "          'nand': 1,\n",
      "          'particularly': 1,\n",
      "          'went': 1,\n",
      "          'wrong': 1,\n",
      "          'flashily': 1,\n",
      "          'enough': 1,\n",
      "          'leading': 1,\n",
      "          'believe': 1,\n",
      "          'itll': 1,\n",
      "          'gives': 1,\n",
      "          'digresses': 1,\n",
      "          'presumably': 1,\n",
      "          'unintentional': 1,\n",
      "          'parody': 1,\n",
      "          'posturing': 1,\n",
      "          'countless': 1,\n",
      "          'wherein': 1,\n",
      "          'deliberately': 1,\n",
      "          'die': 1,\n",
      "          'car': 1,\n",
      "          'chase': 1,\n",
      "          'lovers': 1,\n",
      "          'nyah': 1,\n",
      "          'nordoffhall': 1,\n",
      "          'thandie': 1,\n",
      "          'works': 1,\n",
      "          'trademark': 1,\n",
      "          'magic': 1,\n",
      "          'hypnotic': 1,\n",
      "          'completely': 1,\n",
      "          'inexplicable': 1,\n",
      "          'slows': 1,\n",
      "          'languid': 1,\n",
      "          'semistall': 1,\n",
      "          'stunning': 1,\n",
      "          'opponent': 1,\n",
      "          'stare': 1,\n",
      "          'others': 1,\n",
      "          'come': 1,\n",
      "          'hither': 1,\n",
      "          'sexuality': 1,\n",
      "          'respective': 1,\n",
      "          'cars': 1,\n",
      "          'smash': 1,\n",
      "          'spin': 1,\n",
      "          'accordance': 1,\n",
      "          'coming': 1,\n",
      "          'close': 1,\n",
      "          'toppling': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'neighboring': 1,\n",
      "          'cliff': 1,\n",
      "          'nprior': 1,\n",
      "          'famed': 1,\n",
      "          'trailer': 1,\n",
      "          'opener': 1,\n",
      "          'steep': 1,\n",
      "          'mountain': 1,\n",
      "          'sans': 1,\n",
      "          'scaffolding': 1,\n",
      "          'leaping': 1,\n",
      "          'jagged': 1,\n",
      "          'rock': 1,\n",
      "          'formation': 1,\n",
      "          'another': 1,\n",
      "          'nwhy': 1,\n",
      "          'havent': 1,\n",
      "          'foggiest': 1,\n",
      "          'doubt': 1,\n",
      "          'provide': 1,\n",
      "          'logical': 1,\n",
      "          'reply': 1,\n",
      "          'nwith': 1,\n",
      "          'slave': 1,\n",
      "          'machine': 1,\n",
      "          'jettisons': 1,\n",
      "          'logic': 1,\n",
      "          'possible': 1,\n",
      "          'spies': 1,\n",
      "          'adrenaline': 1,\n",
      "          'junkies': 1,\n",
      "          'mountains': 1,\n",
      "          'crashing': 1,\n",
      "          'means': 1,\n",
      "          'get': 1,\n",
      "          'explored': 1,\n",
      "          'scenes': 1,\n",
      "          'ive': 1,\n",
      "          'described': 1,\n",
      "          'included': 1,\n",
      "          'titillate': 1,\n",
      "          'insight': 1,\n",
      "          'ngod': 1,\n",
      "          'forbid': 1,\n",
      "          'nwoo': 1,\n",
      "          'certainly': 1,\n",
      "          'knows': 1,\n",
      "          'piece': 1,\n",
      "          'energetic': 1,\n",
      "          'remain': 1,\n",
      "          'individual': 1,\n",
      "          'connecting': 1,\n",
      "          'form': 1,\n",
      "          'anything': 1,\n",
      "          'splices': 1,\n",
      "          'beer': 1,\n",
      "          'commerciallike': 1,\n",
      "          'visuals': 1,\n",
      "          'nstill': 1,\n",
      "          'terms': 1,\n",
      "          'crackerjack': 1,\n",
      "          'candy': 1,\n",
      "          'opening': 1,\n",
      "          'cherish': 1,\n",
      "          'vigorous': 1,\n",
      "          'flamenco': 1,\n",
      "          'dance': 1,\n",
      "          'featuring': 1,\n",
      "          'several': 1,\n",
      "          'welcome': 1,\n",
      "          'devices': 1,\n",
      "          'graceful': 1,\n",
      "          'slow': 1,\n",
      "          'artistry': 1,\n",
      "          'synchronized': 1,\n",
      "          'movement': 1,\n",
      "          'juxtaposed': 1,\n",
      "          'stage': 1,\n",
      "          'romance': 1,\n",
      "          'individuals': 1,\n",
      "          'discovering': 1,\n",
      "          'nbetween': 1,\n",
      "          'frantic': 1,\n",
      "          'dancing': 1,\n",
      "          'trains': 1,\n",
      "          'sensuous': 1,\n",
      "          'contact': 1,\n",
      "          'top': 1,\n",
      "          'bon': 1,\n",
      "          'jovi': 1,\n",
      "          'music': 1,\n",
      "          'circa': 1,\n",
      "          '1988': 1,\n",
      "          'yet': 1,\n",
      "          'soul': 1,\n",
      "          'casts': 1,\n",
      "          'bit': 1,\n",
      "          'spell': 1,\n",
      "          'nsure': 1,\n",
      "          'happens': 1,\n",
      "          'talented': 1,\n",
      "          'maestro': 1,\n",
      "          'behind': 1,\n",
      "          'nthandie': 1,\n",
      "          'later': 1,\n",
      "          'bathtub': 1,\n",
      "          'thats': 1,\n",
      "          'playfully': 1,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'george': 1,\n",
      "          'cloony': 1,\n",
      "          'trunk': 1,\n",
      "          'meeting': 1,\n",
      "          'sight': 1,\n",
      "          'nthey': 1,\n",
      "          'flirt': 1,\n",
      "          'exchange': 1,\n",
      "          'obvious': 1,\n",
      "          'double': 1,\n",
      "          'entendres': 1,\n",
      "          'nnewton': 1,\n",
      "          'bats': 1,\n",
      "          'flirtatiously': 1,\n",
      "          'grins': 1,\n",
      "          'slyly': 1,\n",
      "          'drastically': 1,\n",
      "          'altered': 1,\n",
      "          'since': 1,\n",
      "          'nhere': 1,\n",
      "          'plays': 1,\n",
      "          'hip': 1,\n",
      "          'sexual': 1,\n",
      "          'dynamo': 1,\n",
      "          'square': 1,\n",
      "          'jawed': 1,\n",
      "          'robot': 1,\n",
      "          'impersonated': 1,\n",
      "          'part': 1,\n",
      "          'dashing': 1,\n",
      "          'precisely': 1,\n",
      "          'role': 1,\n",
      "          'want': 1,\n",
      "          'watching': 1,\n",
      "          'sleep': 1,\n",
      "          'walk': 1,\n",
      "          'wide': 1,\n",
      "          'shut': 1,\n",
      "          'might': 1,\n",
      "          'longest': 1,\n",
      "          'red': 1,\n",
      "          'show': 1,\n",
      "          'diaries': 1,\n",
      "          'committed': 1,\n",
      "          'blustered': 1,\n",
      "          'magnolia': 1,\n",
      "          'quite': 1,\n",
      "          'possibly': 1,\n",
      "          'overrated': 1,\n",
      "          'performance': 1,\n",
      "          '90s': 1,\n",
      "          'man': 1,\n",
      "          'ncharm': 1,\n",
      "          'slomo': 1,\n",
      "          'closeups': 1,\n",
      "          'preening': 1,\n",
      "          'mug': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'level': 1,\n",
      "          'repetitious': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'essentially': 1,\n",
      "          'hour': 1,\n",
      "          'wont': 1,\n",
      "          'stop': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'commences': 1,\n",
      "          'utterly': 1,\n",
      "          'generic': 1,\n",
      "          'unheard': 1,\n",
      "          'alas': 1,\n",
      "          'couldve': 1,\n",
      "          'staged': 1,\n",
      "          'anyone': 1,\n",
      "          'renny': 1,\n",
      "          'harlin': 1,\n",
      "          'joseph': 1,\n",
      "          'merhi': 1,\n",
      "          'excepting': 1,\n",
      "          'symbolic': 1,\n",
      "          'pigeons': 1,\n",
      "          'find': 1,\n",
      "          'nweve': 1,\n",
      "          'seen': 1,\n",
      "          'slide': 1,\n",
      "          'across': 1,\n",
      "          'floor': 1,\n",
      "          'hand': 1,\n",
      "          'nit': 1,\n",
      "          'done': 1,\n",
      "          'differently': 1,\n",
      "          'pure': 1,\n",
      "          'target': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'theatrics': 1,\n",
      "          'propel': 1,\n",
      "          'apparent': 1,\n",
      "          'need': 1,\n",
      "          'hair': 1,\n",
      "          'whips': 1,\n",
      "          'stylishly': 1,\n",
      "          'wind': 1,\n",
      "          'empty': 1,\n",
      "          'actor': 1,\n",
      "          'used': 1,\n",
      "          'boyish': 1,\n",
      "          'appeal': 1,\n",
      "          'chiseled': 1,\n",
      "          'looks': 1,\n",
      "          'smiles': 1,\n",
      "          'narcissistically': 1,\n",
      "          'literally': 1,\n",
      "          'nwhen': 1,\n",
      "          'beaming': 1,\n",
      "          'away': 1,\n",
      "          'staring': 1,\n",
      "          'lens': 1,\n",
      "          'cold': 1,\n",
      "          'trying': 1,\n",
      "          'look': 1,\n",
      "          'mad': 1,\n",
      "          'hell': 1,\n",
      "          'editing': 1,\n",
      "          'seriously': 1,\n",
      "          'undermines': 1,\n",
      "          'effort': 1,\n",
      "          'nhe': 1,\n",
      "          'fetishizes': 1,\n",
      "          'angular': 1,\n",
      "          'glee': 1,\n",
      "          'naked': 1,\n",
      "          'spoof': 1,\n",
      "          'expected': 1,\n",
      "          'peel': 1,\n",
      "          'facemask': 1,\n",
      "          'reveal': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'classic': 1,\n",
      "          'struts': 1,\n",
      "          'past': 1,\n",
      "          'fiery': 1,\n",
      "          'doorway': 1,\n",
      "          'glaring': 1,\n",
      "          'baddies': 1,\n",
      "          'within': 1,\n",
      "          'frame': 1,\n",
      "          'pinup': 1,\n",
      "          'boy': 1,\n",
      "          'angel': 1,\n",
      "          'death': 1,\n",
      "          'daring': 1,\n",
      "          'escape': 1,\n",
      "          'reckless': 1,\n",
      "          'motorcycle': 1,\n",
      "          'attack': 1,\n",
      "          'angle': 1,\n",
      "          'kill': 1,\n",
      "          'mass': 1,\n",
      "          'suicide': 1,\n",
      "          'ritual': 1,\n",
      "          'dumb': 1,\n",
      "          'bastard': 1,\n",
      "          'jumps': 1,\n",
      "          'bike': 1,\n",
      "          'toting': 1,\n",
      "          'basically': 1,\n",
      "          'inviting': 1,\n",
      "          'handsome': 1,\n",
      "          'shoot': 1,\n",
      "          'lead': 1,\n",
      "          'played': 1,\n",
      "          'appropriately': 1,\n",
      "          'british': 1,\n",
      "          'dougray': 1,\n",
      "          'scott': 1,\n",
      "          'mentally': 1,\n",
      "          'deficient': 1,\n",
      "          'game': 1,\n",
      "          'chicken': 1,\n",
      "          'motorcycles': 1,\n",
      "          'nthough': 1,\n",
      "          'instead': 1,\n",
      "          'jumping': 1,\n",
      "          'side': 1,\n",
      "          'last': 1,\n",
      "          'grown': 1,\n",
      "          'men': 1,\n",
      "          'giving': 1,\n",
      "          'fly': 1,\n",
      "          'hundred': 1,\n",
      "          'feet': 1,\n",
      "          'still': 1,\n",
      "          'position': 1,\n",
      "          'land': 1,\n",
      "          'beach': 1,\n",
      "          'begin': 1,\n",
      "          'manoemano': 1,\n",
      "          'fist': 1,\n",
      "          'ends': 1,\n",
      "          'pulling': 1,\n",
      "          'thought': 1,\n",
      "          'dead': 1,\n",
      "          'nnot': 1,\n",
      "          'worry': 1,\n",
      "          'takes': 1,\n",
      "          'care': 1,\n",
      "          'problem': 1,\n",
      "          'without': 1,\n",
      "          'breaking': 1,\n",
      "          'sweat': 1,\n",
      "          'nyou': 1,\n",
      "          'may': 1,\n",
      "          'noticed': 1,\n",
      "          'opted': 1,\n",
      "          'describe': 1,\n",
      "          'iota': 1,\n",
      "          'mi2s': 1,\n",
      "          'nmy': 1,\n",
      "          'reasoning': 1,\n",
      "          'simple': 1,\n",
      "          'would': 1,\n",
      "          'absolutely': 1,\n",
      "          'concern': 1,\n",
      "          'hurtling': 1,\n",
      "          'forth': 1,\n",
      "          'next': 1,\n",
      "          'special': 1,\n",
      "          'effect': 1,\n",
      "          'wasnt': 1,\n",
      "          'kidding': 1,\n",
      "          'told': 1,\n",
      "          'friend': 1,\n",
      "          'mine': 1,\n",
      "          'average': 1,\n",
      "          'aerosmith': 1,\n",
      "          'nnobody': 1,\n",
      "          'go': 1,\n",
      "          'theyll': 1,\n",
      "          'surely': 1,\n",
      "          'regret': 1,\n",
      "          'nas': 1,\n",
      "          'movies': 1,\n",
      "          'evolve': 1,\n",
      "          'devolve': 1,\n",
      "          'increasingly': 1,\n",
      "          'whittled': 1,\n",
      "          'mi': 1,\n",
      "          'seemed': 1,\n",
      "          'built': 1,\n",
      "          'around': 1,\n",
      "          'brian': 1,\n",
      "          'de': 1,\n",
      "          'palmas': 1,\n",
      "          'films': 1,\n",
      "          'stylistic': 1,\n",
      "          'flourishes': 1,\n",
      "          'serves': 1,\n",
      "          'intermittent': 1,\n",
      "          'breather': 1,\n",
      "          'nonstop': 1,\n",
      "          'masturbatory': 1,\n",
      "          'pandemonium': 1,\n",
      "          'irrelevant': 1,\n",
      "          'sense': 1,\n",
      "          'nall': 1,\n",
      "          'ultimately': 1,\n",
      "          'matters': 1,\n",
      "          'pesky': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'rather': 4,\n",
      "          'nthe': 4,\n",
      "          'plot': 4,\n",
      "          'film': 3,\n",
      "          'two': 3,\n",
      "          'romantic': 3,\n",
      "          'reviewers': 2,\n",
      "          'films': 2,\n",
      "          'hard': 2,\n",
      "          'time': 2,\n",
      "          'happens': 2,\n",
      "          'overwhelming': 2,\n",
      "          'end': 2,\n",
      "          'feelings': 2,\n",
      "          'happen': 2,\n",
      "          'trouble': 2,\n",
      "          'author': 2,\n",
      "          'impression': 2,\n",
      "          'wasnt': 2,\n",
      "          'real': 2,\n",
      "          'movie': 2,\n",
      "          'show': 2,\n",
      "          'probably': 2,\n",
      "          'old': 2,\n",
      "          'nick': 2,\n",
      "          'nolte': 2,\n",
      "          'young': 2,\n",
      "          'julia': 2,\n",
      "          'roberts': 2,\n",
      "          'soon': 2,\n",
      "          'pairing': 2,\n",
      "          'screwball': 2,\n",
      "          'director': 2,\n",
      "          'fails': 2,\n",
      "          'every': 1,\n",
      "          'faced': 1,\n",
      "          'properly': 1,\n",
      "          'reviewed': 1,\n",
      "          'nmost': 1,\n",
      "          'leave': 1,\n",
      "          'impact': 1,\n",
      "          'either': 1,\n",
      "          'good': 1,\n",
      "          'bad': 1,\n",
      "          'must': 1,\n",
      "          'work': 1,\n",
      "          'express': 1,\n",
      "          'thoughts': 1,\n",
      "          'nbut': 1,\n",
      "          'sometimes': 1,\n",
      "          'trivial': 1,\n",
      "          'reasons': 1,\n",
      "          'ni': 1,\n",
      "          'love': 1,\n",
      "          'happened': 1,\n",
      "          'one': 1,\n",
      "          'occasions': 1,\n",
      "          'review': 1,\n",
      "          'left': 1,\n",
      "          'contrary': 1,\n",
      "          'hardly': 1,\n",
      "          'since': 1,\n",
      "          'keeping': 1,\n",
      "          'awake': 1,\n",
      "          'watching': 1,\n",
      "          'nwhich': 1,\n",
      "          'surprise': 1,\n",
      "          'day': 1,\n",
      "          'theatre': 1,\n",
      "          'full': 1,\n",
      "          'close': 1,\n",
      "          'sound': 1,\n",
      "          'speakers': 1,\n",
      "          'late': 1,\n",
      "          'didnt': 1,\n",
      "          'lack': 1,\n",
      "          'sleep': 1,\n",
      "          'nsuch': 1,\n",
      "          'things': 1,\n",
      "          'rarely': 1,\n",
      "          'many': 1,\n",
      "          'years': 1,\n",
      "          'closest': 1,\n",
      "          'thing': 1,\n",
      "          'solution': 1,\n",
      "          'mystery': 1,\n",
      "          'quality': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'rival': 1,\n",
      "          'chicago': 1,\n",
      "          'reporters': 1,\n",
      "          'peter': 1,\n",
      "          'brackett': 1,\n",
      "          'aspiring': 1,\n",
      "          'sabrina': 1,\n",
      "          'peterson': 1,\n",
      "          'ntwo': 1,\n",
      "          'assigned': 1,\n",
      "          'cover': 1,\n",
      "          'train': 1,\n",
      "          'collision': 1,\n",
      "          'nas': 1,\n",
      "          'meet': 1,\n",
      "          'start': 1,\n",
      "          'scooping': 1,\n",
      "          'process': 1,\n",
      "          'discover': 1,\n",
      "          'sinister': 1,\n",
      "          'involving': 1,\n",
      "          'cancerogenic': 1,\n",
      "          'milk': 1,\n",
      "          'also': 1,\n",
      "          'secondary': 1,\n",
      "          'raison': 1,\n",
      "          'tre': 1,\n",
      "          'reminiscent': 1,\n",
      "          'classical': 1,\n",
      "          'comedies': 1,\n",
      "          'starring': 1,\n",
      "          'spencer': 1,\n",
      "          'tracy': 1,\n",
      "          'katharine': 1,\n",
      "          'hepburn': 1,\n",
      "          'nmovie': 1,\n",
      "          'screenwriter': 1,\n",
      "          'charles': 1,\n",
      "          'shyer': 1,\n",
      "          'experiences': 1,\n",
      "          'turning': 1,\n",
      "          'spirit': 1,\n",
      "          'modern': 1,\n",
      "          'setting': 1,\n",
      "          'father': 1,\n",
      "          'bride': 1,\n",
      "          'tries': 1,\n",
      "          'nhowever': 1,\n",
      "          'although': 1,\n",
      "          'chemistry': 1,\n",
      "          'stops': 1,\n",
      "          'arouse': 1,\n",
      "          'interest': 1,\n",
      "          'nit': 1,\n",
      "          'due': 1,\n",
      "          'poorly': 1,\n",
      "          'executed': 1,\n",
      "          'genre': 1,\n",
      "          'mix': 1,\n",
      "          'collides': 1,\n",
      "          'lighthearted': 1,\n",
      "          'comedy': 1,\n",
      "          'uninteresting': 1,\n",
      "          'suitable': 1,\n",
      "          'pure': 1,\n",
      "          'action': 1,\n",
      "          'thrillers': 1,\n",
      "          'nshyer': 1,\n",
      "          'make': 1,\n",
      "          'proper': 1,\n",
      "          'transition': 1,\n",
      "          'areas': 1,\n",
      "          'making': 1,\n",
      "          'story': 1,\n",
      "          'cliched': 1,\n",
      "          'predictable': 1,\n",
      "          'result': 1,\n",
      "          'forgettable': 1,\n",
      "          'effort': 1,\n",
      "          'convinced': 1,\n",
      "          'watch': 1,\n",
      "          'nill': 1,\n",
      "          'give': 1,\n",
      "          'benefit': 1,\n",
      "          'doubt': 1,\n",
      "          'though': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jane': 6,\n",
      "          'city': 5,\n",
      "          'africa': 5,\n",
      "          'tarzan': 4,\n",
      "          'lost': 4,\n",
      "          'movie': 4,\n",
      "          'like': 4,\n",
      "          'nthe': 4,\n",
      "          'bad': 4,\n",
      "          'film': 4,\n",
      "          'special': 4,\n",
      "          'effects': 4,\n",
      "          'march': 3,\n",
      "          'away': 3,\n",
      "          'acting': 3,\n",
      "          'better': 3,\n",
      "          'looked': 3,\n",
      "          'two': 2,\n",
      "          'really': 2,\n",
      "          'figured': 2,\n",
      "          'plot': 2,\n",
      "          'ntarzan': 2,\n",
      "          'casper': 2,\n",
      "          'van': 2,\n",
      "          'dien': 2,\n",
      "          'jungle': 2,\n",
      "          'nhe': 2,\n",
      "          'n': 2,\n",
      "          'actually': 2,\n",
      "          'old': 2,\n",
      "          'guys': 2,\n",
      "          'course': 2,\n",
      "          'ape': 2,\n",
      "          'wasnt': 2,\n",
      "          'scenery': 2,\n",
      "          'nbut': 2,\n",
      "          'story': 2,\n",
      "          'nothing': 2,\n",
      "          'good': 1,\n",
      "          'things': 1,\n",
      "          'say': 1,\n",
      "          'follows': 1,\n",
      "          'cute': 1,\n",
      "          'thankfully': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'length': 1,\n",
      "          'nif': 1,\n",
      "          'havent': 1,\n",
      "          'already': 1,\n",
      "          'didnt': 1,\n",
      "          'much': 1,\n",
      "          'boring': 1,\n",
      "          'contrived': 1,\n",
      "          'extreme': 1,\n",
      "          'left': 1,\n",
      "          'living': 1,\n",
      "          'civilized': 1,\n",
      "          'society': 1,\n",
      "          'days': 1,\n",
      "          'impending': 1,\n",
      "          'marriage': 1,\n",
      "          'played': 1,\n",
      "          'aptly': 1,\n",
      "          'named': 1,\n",
      "          'nback': 1,\n",
      "          'former': 1,\n",
      "          'home': 1,\n",
      "          'group': 1,\n",
      "          'looters': 1,\n",
      "          'found': 1,\n",
      "          'key': 1,\n",
      "          'locating': 1,\n",
      "          'mind': 1,\n",
      "          'never': 1,\n",
      "          'wanted': 1,\n",
      "          'find': 1,\n",
      "          'nanyway': 1,\n",
      "          'tarzans': 1,\n",
      "          'friend': 1,\n",
      "          'appears': 1,\n",
      "          'vision': 1,\n",
      "          'realizes': 1,\n",
      "          'must': 1,\n",
      "          'return': 1,\n",
      "          'help': 1,\n",
      "          'stop': 1,\n",
      "          'finding': 1,\n",
      "          'leaves': 1,\n",
      "          'first': 1,\n",
      "          'mistake': 1,\n",
      "          'opinion': 1,\n",
      "          'travels': 1,\n",
      "          'nof': 1,\n",
      "          'hot': 1,\n",
      "          'mans': 1,\n",
      "          'heals': 1,\n",
      "          'reunited': 1,\n",
      "          'battle': 1,\n",
      "          'nsound': 1,\n",
      "          'dumb': 1,\n",
      "          'explanation': 1,\n",
      "          'nits': 1,\n",
      "          'improvement': 1,\n",
      "          'real': 1,\n",
      "          'thing': 1,\n",
      "          'plain': 1,\n",
      "          'awful': 1,\n",
      "          'nim': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'njane': 1,\n",
      "          'heck': 1,\n",
      "          'lot': 1,\n",
      "          'least': 1,\n",
      "          'easy': 1,\n",
      "          'eyes': 1,\n",
      "          'ncompounding': 1,\n",
      "          'fact': 1,\n",
      "          'many': 1,\n",
      "          'places': 1,\n",
      "          'dialogue': 1,\n",
      "          'obviously': 1,\n",
      "          'rerecorded': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'dubbing': 1,\n",
      "          'bruce': 1,\n",
      "          'lee': 1,\n",
      "          'movies': 1,\n",
      "          'nadded': 1,\n",
      "          'sound': 1,\n",
      "          'problems': 1,\n",
      "          'cinematography': 1,\n",
      "          'nthis': 1,\n",
      "          'filled': 1,\n",
      "          'beautiful': 1,\n",
      "          'african': 1,\n",
      "          'panoramic': 1,\n",
      "          'shots': 1,\n",
      "          'overexposed': 1,\n",
      "          'nquite': 1,\n",
      "          'frankly': 1,\n",
      "          'think': 1,\n",
      "          'could': 1,\n",
      "          'probably': 1,\n",
      "          'job': 1,\n",
      "          'capturing': 1,\n",
      "          'beauty': 1,\n",
      "          'camcorder': 1,\n",
      "          'bunch': 1,\n",
      "          'professional': 1,\n",
      "          'equipment': 1,\n",
      "          'nthen': 1,\n",
      "          'nyou': 1,\n",
      "          'doubt': 1,\n",
      "          'asking': 1,\n",
      "          'nyes': 1,\n",
      "          'friends': 1,\n",
      "          'writers': 1,\n",
      "          'injected': 1,\n",
      "          'place': 1,\n",
      "          'supernatural': 1,\n",
      "          'elements': 1,\n",
      "          'nprobably': 1,\n",
      "          'sake': 1,\n",
      "          'using': 1,\n",
      "          'cgi': 1,\n",
      "          'since': 1,\n",
      "          'hurt': 1,\n",
      "          'nin': 1,\n",
      "          'parts': 1,\n",
      "          'werent': 1,\n",
      "          'little': 1,\n",
      "          'hokey': 1,\n",
      "          'side': 1,\n",
      "          'nexcept': 1,\n",
      "          'got': 1,\n",
      "          'ridiculous': 1,\n",
      "          'climax': 1,\n",
      "          'grand': 1,\n",
      "          'finales': 1,\n",
      "          'went': 1,\n",
      "          'right': 1,\n",
      "          'toilet': 1,\n",
      "          'point': 1,\n",
      "          'nit': 1,\n",
      "          'almost': 1,\n",
      "          'run': 1,\n",
      "          'money': 1,\n",
      "          'nthese': 1,\n",
      "          'noticeably': 1,\n",
      "          'lower': 1,\n",
      "          'quality': 1,\n",
      "          'rest': 1,\n",
      "          'something': 1,\n",
      "          'amateur': 1,\n",
      "          'video': 1,\n",
      "          'production': 1,\n",
      "          'ni': 1,\n",
      "          'took': 1,\n",
      "          'one': 1,\n",
      "          'lesson': 1,\n",
      "          'watching': 1,\n",
      "          'men': 1,\n",
      "          'bones': 1,\n",
      "          'morph': 1,\n",
      "          'skeletal': 1,\n",
      "          'warriors': 1,\n",
      "          'dont': 1,\n",
      "          'mix': 1,\n",
      "          'nstay': 1,\n",
      "          'far': 1,\n",
      "          'version': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 4,\n",
      "          'nthe': 3,\n",
      "          'dvd': 3,\n",
      "          '1': 3,\n",
      "          'group': 2,\n",
      "          'stranded': 2,\n",
      "          'last': 2,\n",
      "          'stop': 2,\n",
      "          'beach': 2,\n",
      "          'full': 2,\n",
      "          'bank': 2,\n",
      "          'choice': 2,\n",
      "          'enough': 2,\n",
      "          'performance': 2,\n",
      "          'sterling': 2,\n",
      "          'usual': 2,\n",
      "          'extra': 2,\n",
      "          'features': 2,\n",
      "          'original': 2,\n",
      "          'dolby': 2,\n",
      "          'surround': 2,\n",
      "          'sound': 2,\n",
      "          'cast': 2,\n",
      "          'crew': 2,\n",
      "          'silly': 1,\n",
      "          'performances': 1,\n",
      "          'huge': 1,\n",
      "          'gaps': 1,\n",
      "          'logic': 1,\n",
      "          'mar': 1,\n",
      "          'otherwise': 1,\n",
      "          'interesting': 1,\n",
      "          'tale': 1,\n",
      "          'eclectic': 1,\n",
      "          'people': 1,\n",
      "          'cafe': 1,\n",
      "          'motel': 1,\n",
      "          'due': 1,\n",
      "          'heavy': 1,\n",
      "          'snowfall': 1,\n",
      "          'none': 1,\n",
      "          'colorado': 1,\n",
      "          'state': 1,\n",
      "          'highway': 1,\n",
      "          'patrolman': 1,\n",
      "          'adam': 1,\n",
      "          'discovers': 1,\n",
      "          'murder': 1,\n",
      "          'scene': 1,\n",
      "          'bag': 1,\n",
      "          'cash': 1,\n",
      "          'recent': 1,\n",
      "          'robbery': 1,\n",
      "          'nsomeone': 1,\n",
      "          'amongst': 1,\n",
      "          'strangers': 1,\n",
      "          'robber': 1,\n",
      "          'murderer': 1,\n",
      "          'person': 1,\n",
      "          'multiple': 1,\n",
      "          'criminals': 1,\n",
      "          'nadam': 1,\n",
      "          'unfortunately': 1,\n",
      "          'wrong': 1,\n",
      "          'lead': 1,\n",
      "          'nhe': 1,\n",
      "          'doesnt': 1,\n",
      "          'play': 1,\n",
      "          'role': 1,\n",
      "          'seriousness': 1,\n",
      "          'believable': 1,\n",
      "          'goofiness': 1,\n",
      "          'funny': 1,\n",
      "          'nhis': 1,\n",
      "          'stuck': 1,\n",
      "          'somewhere': 1,\n",
      "          'middle': 1,\n",
      "          'really': 1,\n",
      "          'needed': 1,\n",
      "          'one': 1,\n",
      "          'side': 1,\n",
      "          'nrose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'cold': 1,\n",
      "          'unpleasant': 1,\n",
      "          'eye': 1,\n",
      "          'always': 1,\n",
      "          'jurgen': 1,\n",
      "          'prochnow': 1,\n",
      "          'nwhat': 1,\n",
      "          'earth': 1,\n",
      "          'nbest': 1,\n",
      "          'comes': 1,\n",
      "          'william': 1,\n",
      "          'taylor': 1,\n",
      "          'cheesy': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'somehow': 1,\n",
      "          'cool': 1,\n",
      "          'confident': 1,\n",
      "          'wayne': 1,\n",
      "          'newton': 1,\n",
      "          'drifter': 1,\n",
      "          'type': 1,\n",
      "          'available': 1,\n",
      "          'home': 1,\n",
      "          'entertainment': 1,\n",
      "          'nas': 1,\n",
      "          'theyve': 1,\n",
      "          'filled': 1,\n",
      "          'disc': 1,\n",
      "          'contains': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          '2': 1,\n",
      "          '0': 1,\n",
      "          '5': 1,\n",
      "          'digital': 1,\n",
      "          'length': 1,\n",
      "          'audio': 1,\n",
      "          'commentary': 1,\n",
      "          'track': 1,\n",
      "          'director': 1,\n",
      "          'mark': 1,\n",
      "          'malone': 1,\n",
      "          'interviews': 1,\n",
      "          'trailer': 1,\n",
      "          'biographies': 1,\n",
      "          'might': 1,\n",
      "          'greatest': 1,\n",
      "          'sterlings': 1,\n",
      "          'effort': 1,\n",
      "          'adding': 1,\n",
      "          'decent': 1,\n",
      "          'keeping': 1,\n",
      "          'price': 1,\n",
      "          'affordable': 1,\n",
      "          'suggested': 1,\n",
      "          'retail': 1,\n",
      "          '19': 1,\n",
      "          '95': 1,\n",
      "          'makes': 1,\n",
      "          'worth': 1,\n",
      "          'money': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'earth': 5,\n",
      "          'effects': 4,\n",
      "          'bad': 3,\n",
      "          'say': 3,\n",
      "          'looks': 3,\n",
      "          'fact': 3,\n",
      "          'quite': 3,\n",
      "          'nthe': 3,\n",
      "          'terrible': 3,\n",
      "          'psychlo': 3,\n",
      "          'played': 3,\n",
      "          'battlefield': 2,\n",
      "          'never': 2,\n",
      "          'interested': 2,\n",
      "          'really': 2,\n",
      "          'watch': 2,\n",
      "          'worst': 2,\n",
      "          'direction': 2,\n",
      "          'great': 2,\n",
      "          'films': 2,\n",
      "          'times': 2,\n",
      "          'sound': 2,\n",
      "          'acting': 2,\n",
      "          'makeup': 2,\n",
      "          'aliens': 2,\n",
      "          'planet': 2,\n",
      "          'destined': 2,\n",
      "          'end': 2,\n",
      "          'course': 2,\n",
      "          'barry': 2,\n",
      "          'pepper': 2,\n",
      "          'green': 2,\n",
      "          'go': 2,\n",
      "          'terl': 2,\n",
      "          'like': 2,\n",
      "          'good': 2,\n",
      "          'looking': 2,\n",
      "          'nin': 2,\n",
      "          'part': 2,\n",
      "          'entire': 2,\n",
      "          'movie': 2,\n",
      "          'time': 2,\n",
      "          'new': 2,\n",
      "          'went': 1,\n",
      "          'saw': 1,\n",
      "          'right': 1,\n",
      "          'called': 1,\n",
      "          'previews': 1,\n",
      "          'terribly': 1,\n",
      "          'book': 1,\n",
      "          'find': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'scientology': 1,\n",
      "          'interesting': 1,\n",
      "          'reading': 1,\n",
      "          'advanced': 1,\n",
      "          'reviews': 1,\n",
      "          'weird': 1,\n",
      "          'urge': 1,\n",
      "          'nwell': 1,\n",
      "          'let': 1,\n",
      "          'first': 1,\n",
      "          'far': 1,\n",
      "          'view': 1,\n",
      "          'safe': 1,\n",
      "          'might': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'yes': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'mr': 1,\n",
      "          'magoo': 1,\n",
      "          'blue': 1,\n",
      "          'face': 1,\n",
      "          'jaws': 1,\n",
      "          'revenge': 1,\n",
      "          'nroger': 1,\n",
      "          'christianson': 1,\n",
      "          'whos': 1,\n",
      "          'credits': 1,\n",
      "          'include': 1,\n",
      "          'set': 1,\n",
      "          'art': 1,\n",
      "          'alien': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'directs': 1,\n",
      "          'amateurism': 1,\n",
      "          'feels': 1,\n",
      "          'sounds': 1,\n",
      "          'dumb': 1,\n",
      "          'depressing': 1,\n",
      "          'look': 1,\n",
      "          'dark': 1,\n",
      "          'drabby': 1,\n",
      "          'bright': 1,\n",
      "          'happy': 1,\n",
      "          'surround': 1,\n",
      "          'ive': 1,\n",
      "          'heard': 1,\n",
      "          'nothing': 1,\n",
      "          'dialogue': 1,\n",
      "          'poor': 1,\n",
      "          'hideous': 1,\n",
      "          'nheres': 1,\n",
      "          'socalled': 1,\n",
      "          'plot': 1,\n",
      "          '3000': 1,\n",
      "          'man': 1,\n",
      "          'endangered': 1,\n",
      "          'species': 1,\n",
      "          'named': 1,\n",
      "          'nwonder': 1,\n",
      "          'invading': 1,\n",
      "          'put': 1,\n",
      "          'mananimals': 1,\n",
      "          'destroy': 1,\n",
      "          'typical': 1,\n",
      "          'hero': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          '1999s': 1,\n",
      "          'mile': 1,\n",
      "          'save': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'chief': 1,\n",
      "          'security': 1,\n",
      "          'frankly': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'dreadlocks': 1,\n",
      "          'big': 1,\n",
      "          'head': 1,\n",
      "          'eyes': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'nof': 1,\n",
      "          'sidekick': 1,\n",
      "          'lol': 1,\n",
      "          'nforest': 1,\n",
      "          'whitaker': 1,\n",
      "          'deformed': 1,\n",
      "          'werewolf': 1,\n",
      "          'kind': 1,\n",
      "          'nour': 1,\n",
      "          'friendly': 1,\n",
      "          'human': 1,\n",
      "          'johnny': 1,\n",
      "          'well': 1,\n",
      "          'long': 1,\n",
      "          'scraggly': 1,\n",
      "          'hair': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'explain': 1,\n",
      "          'badness': 1,\n",
      "          'except': 1,\n",
      "          'neverything': 1,\n",
      "          'imcomprehinsable': 1,\n",
      "          'way': 1,\n",
      "          'arent': 1,\n",
      "          'phony': 1,\n",
      "          'special': 1,\n",
      "          'everything': 1,\n",
      "          'faulted': 1,\n",
      "          'dont': 1,\n",
      "          'remember': 1,\n",
      "          'one': 1,\n",
      "          'enjoying': 1,\n",
      "          'liked': 1,\n",
      "          'enjoyed': 1,\n",
      "          'nthroughout': 1,\n",
      "          '127': 1,\n",
      "          'minute': 1,\n",
      "          'running': 1,\n",
      "          'dying': 1,\n",
      "          'constantly': 1,\n",
      "          'hoping': 1,\n",
      "          'maybe': 1,\n",
      "          'projectioner': 1,\n",
      "          'would': 1,\n",
      "          'blow': 1,\n",
      "          'bulb': 1,\n",
      "          'something': 1,\n",
      "          'sadly': 1,\n",
      "          'didnt': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'hollywood': 1,\n",
      "          'get': 1,\n",
      "          'scripts': 1,\n",
      "          'classes': 1,\n",
      "          'better': 1,\n",
      "          'directors': 1,\n",
      "          'damnit': 1,\n",
      "          'make': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'see': 4,\n",
      "          'madonna': 3,\n",
      "          'evita': 3,\n",
      "          'nnow': 3,\n",
      "          'wonderful': 3,\n",
      "          'price': 2,\n",
      "          'film': 2,\n",
      "          'admit': 2,\n",
      "          'almost': 2,\n",
      "          'nthe': 2,\n",
      "          'story': 2,\n",
      "          'eva': 2,\n",
      "          'duarte': 2,\n",
      "          'thats': 2,\n",
      "          'goes': 2,\n",
      "          'argentina': 2,\n",
      "          'nthey': 2,\n",
      "          'understood': 2,\n",
      "          'ni': 2,\n",
      "          'going': 2,\n",
      "          'right': 2,\n",
      "          'nas': 2,\n",
      "          'nbut': 2,\n",
      "          'chance': 2,\n",
      "          'grade': 2,\n",
      "          'big': 2,\n",
      "          'fan': 2,\n",
      "          'youre': 2,\n",
      "          'pay': 2,\n",
      "          'critic': 2,\n",
      "          'phil': 1,\n",
      "          'curtolo': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'jonathan': 1,\n",
      "          'alan': 1,\n",
      "          'parker': 1,\n",
      "          'music': 1,\n",
      "          'andrew': 1,\n",
      "          'lloyd': 1,\n",
      "          'weber': 1,\n",
      "          'lyrics': 1,\n",
      "          'tim': 1,\n",
      "          'rice': 1,\n",
      "          'trailer': 1,\n",
      "          'rockoperaturnedmajor': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'breathtaking': 1,\n",
      "          'soundtrack': 1,\n",
      "          'listen': 1,\n",
      "          'nso': 1,\n",
      "          'wouldnt': 1,\n",
      "          'nsimple': 1,\n",
      "          'little': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'constant': 1,\n",
      "          'singing': 1,\n",
      "          'drive': 1,\n",
      "          'insane': 1,\n",
      "          'full': 1,\n",
      "          'drama': 1,\n",
      "          'trapped': 1,\n",
      "          'inside': 1,\n",
      "          'notes': 1,\n",
      "          'chords': 1,\n",
      "          'nshe': 1,\n",
      "          'orphaned': 1,\n",
      "          'child': 1,\n",
      "          'ends': 1,\n",
      "          'becoming': 1,\n",
      "          'hooker': 1,\n",
      "          'field': 1,\n",
      "          'acting': 1,\n",
      "          'finally': 1,\n",
      "          'meets': 1,\n",
      "          'juan': 1,\n",
      "          'peron': 1,\n",
      "          'soontobe': 1,\n",
      "          'first': 1,\n",
      "          'president': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'eventually': 1,\n",
      "          'marry': 1,\n",
      "          'nsounds': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'doesnt': 1,\n",
      "          'nwell': 1,\n",
      "          'gets': 1,\n",
      "          'better': 1,\n",
      "          'rainbow': 1,\n",
      "          'tour': 1,\n",
      "          'across': 1,\n",
      "          'europe': 1,\n",
      "          'trying': 1,\n",
      "          'win': 1,\n",
      "          'respect': 1,\n",
      "          'neva': 1,\n",
      "          'lady': 1,\n",
      "          'nhowever': 1,\n",
      "          'dramapacked': 1,\n",
      "          'moments': 1,\n",
      "          'never': 1,\n",
      "          'actors': 1,\n",
      "          'actresses': 1,\n",
      "          'sang': 1,\n",
      "          'fast': 1,\n",
      "          'went': 1,\n",
      "          'theater': 1,\n",
      "          '4': 1,\n",
      "          'magic': 1,\n",
      "          'cinemas': 1,\n",
      "          'attitude': 1,\n",
      "          'terribly': 1,\n",
      "          'boring': 1,\n",
      "          'left': 1,\n",
      "          'happy': 1,\n",
      "          'thing': 1,\n",
      "          'kept': 1,\n",
      "          'awake': 1,\n",
      "          'loud': 1,\n",
      "          'bangs': 1,\n",
      "          'drums': 1,\n",
      "          'strums': 1,\n",
      "          'guitar': 1,\n",
      "          'nalthough': 1,\n",
      "          'come': 1,\n",
      "          'dull': 1,\n",
      "          'beautiful': 1,\n",
      "          'cinematography': 1,\n",
      "          'eyecatching': 1,\n",
      "          'madonnas': 1,\n",
      "          'performance': 1,\n",
      "          'spiritual': 1,\n",
      "          'leader': 1,\n",
      "          'would': 1,\n",
      "          'definitely': 1,\n",
      "          'oscarcontender': 1,\n",
      "          'spoken': 1,\n",
      "          'single': 1,\n",
      "          'line': 1,\n",
      "          'taken': 1,\n",
      "          'away': 1,\n",
      "          'stubbornness': 1,\n",
      "          'making': 1,\n",
      "          'exact': 1,\n",
      "          'replica': 1,\n",
      "          'broadway': 1,\n",
      "          'musical': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'dont': 1,\n",
      "          'look': 1,\n",
      "          'musicals': 1,\n",
      "          'screen': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'lot': 1,\n",
      "          'cheaper': 1,\n",
      "          '5': 1,\n",
      "          '200': 1,\n",
      "          'plus': 1,\n",
      "          'play': 1,\n",
      "          'nall': 1,\n",
      "          'review': 1,\n",
      "          'contains': 1,\n",
      "          'opinion': 1,\n",
      "          'set': 1,\n",
      "          'even': 1,\n",
      "          'saw': 1,\n",
      "          'may': 1,\n",
      "          'saying': 1,\n",
      "          'kind': 1,\n",
      "          'nand': 1,\n",
      "          'given': 1,\n",
      "          '17year': 1,\n",
      "          'old': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantino': 1,\n",
      "          'way': 1,\n",
      "          'hard': 1,\n",
      "          'n': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 5,\n",
      "          'menace': 4,\n",
      "          'like': 4,\n",
      "          'sw': 4,\n",
      "          'lucas': 3,\n",
      "          'phantom': 3,\n",
      "          'ni': 3,\n",
      "          'nwith': 2,\n",
      "          'star': 2,\n",
      "          'wars': 2,\n",
      "          'films': 2,\n",
      "          'head': 2,\n",
      "          'toy': 2,\n",
      "          'new': 2,\n",
      "          'product': 2,\n",
      "          'nthe': 2,\n",
      "          'money': 2,\n",
      "          'rather': 2,\n",
      "          'movie': 2,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'man': 1,\n",
      "          'love': 1,\n",
      "          'george': 1,\n",
      "          'overt': 1,\n",
      "          'success': 1,\n",
      "          'three': 1,\n",
      "          'original': 1,\n",
      "          'become': 1,\n",
      "          'necessarily': 1,\n",
      "          'filmmaker': 1,\n",
      "          'cheeze': 1,\n",
      "          'huge': 1,\n",
      "          'company': 1,\n",
      "          'shelve': 1,\n",
      "          'nonly': 1,\n",
      "          'made': 1,\n",
      "          '115': 1,\n",
      "          'million': 1,\n",
      "          'every': 1,\n",
      "          'kid': 1,\n",
      "          'wants': 1,\n",
      "          'expensive': 1,\n",
      "          'toys': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'within': 1,\n",
      "          'hour': 1,\n",
      "          'playing': 1,\n",
      "          'question': 1,\n",
      "          'episode': 1,\n",
      "          '1': 1,\n",
      "          'jeez': 1,\n",
      "          'pure': 1,\n",
      "          'simple': 1,\n",
      "          'baby': 1,\n",
      "          'nno': 1,\n",
      "          'right': 1,\n",
      "          'mind': 1,\n",
      "          'would': 1,\n",
      "          'create': 1,\n",
      "          'fiasco': 1,\n",
      "          'knew': 1,\n",
      "          'wouldnt': 1,\n",
      "          'make': 1,\n",
      "          'ton': 1,\n",
      "          'fourth': 1,\n",
      "          'week': 1,\n",
      "          'release': 1,\n",
      "          'come': 1,\n",
      "          'franchise': 1,\n",
      "          'stranger': 1,\n",
      "          'since': 1,\n",
      "          'absolutely': 1,\n",
      "          'idea': 1,\n",
      "          'movies': 1,\n",
      "          'popular': 1,\n",
      "          'find': 1,\n",
      "          'boring': 1,\n",
      "          'full': 1,\n",
      "          'nothing': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'nphantom': 1,\n",
      "          'first': 1,\n",
      "          'minus': 1,\n",
      "          '10': 1,\n",
      "          'nnothing': 1,\n",
      "          'whole': 1,\n",
      "          'concept': 1,\n",
      "          'remotely': 1,\n",
      "          'enjoyable': 1,\n",
      "          'neven': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'seem': 1,\n",
      "          'bland': 1,\n",
      "          'story': 1,\n",
      "          'mindless': 1,\n",
      "          'mess': 1,\n",
      "          'nacting': 1,\n",
      "          'wooden': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'something': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'nsw': 1,\n",
      "          'worst': 1,\n",
      "          'year': 1,\n",
      "          'far': 1,\n",
      "          'title': 1,\n",
      "          'e1': 1,\n",
      "          'tpm': 1,\n",
      "          'big': 1,\n",
      "          'shoulders': 1,\n",
      "          'thought': 1,\n",
      "          'chris': 1,\n",
      "          'carter': 1,\n",
      "          'releasing': 1,\n",
      "          'xfiles': 1,\n",
      "          'although': 1,\n",
      "          'adaptation': 1,\n",
      "          'excellent': 1,\n",
      "          'way': 1,\n",
      "          'spend': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'npm': 1,\n",
      "          'long': 1,\n",
      "          'headache': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 16,\n",
      "          'story': 7,\n",
      "          'well': 5,\n",
      "          'interesting': 5,\n",
      "          'enough': 5,\n",
      "          'played': 5,\n",
      "          'nthe': 4,\n",
      "          'character': 4,\n",
      "          'one': 3,\n",
      "          'quite': 3,\n",
      "          'acting': 3,\n",
      "          'found': 3,\n",
      "          'good': 3,\n",
      "          'didnt': 3,\n",
      "          'touch': 3,\n",
      "          'horse': 2,\n",
      "          'comes': 2,\n",
      "          'haunt': 2,\n",
      "          'coverup': 2,\n",
      "          'much': 2,\n",
      "          'say': 2,\n",
      "          'boring': 2,\n",
      "          'slow': 2,\n",
      "          'aside': 2,\n",
      "          'sharon': 2,\n",
      "          'stone': 2,\n",
      "          'end': 2,\n",
      "          'utilized': 2,\n",
      "          'catherine': 2,\n",
      "          'keener': 2,\n",
      "          'merits': 2,\n",
      "          'pacing': 2,\n",
      "          'nall': 2,\n",
      "          'part': 2,\n",
      "          'comment': 2,\n",
      "          'see': 2,\n",
      "          'director': 2,\n",
      "          'flavor': 2,\n",
      "          'opinion': 2,\n",
      "          'think': 2,\n",
      "          'subject': 2,\n",
      "          'wouldnt': 2,\n",
      "          'make': 2,\n",
      "          'wasnt': 2,\n",
      "          'ni': 2,\n",
      "          'even': 2,\n",
      "          'fanatic': 2,\n",
      "          'affluent': 1,\n",
      "          'breeders': 1,\n",
      "          'past': 1,\n",
      "          'ages': 1,\n",
      "          'old': 1,\n",
      "          'blackmail': 1,\n",
      "          'back': 1,\n",
      "          'hands': 1,\n",
      "          'accomplices': 1,\n",
      "          'nthats': 1,\n",
      "          'pretty': 1,\n",
      "          'essence': 1,\n",
      "          'becomes': 1,\n",
      "          'times': 1,\n",
      "          'nthat': 1,\n",
      "          'presented': 1,\n",
      "          'probably': 1,\n",
      "          'close': 1,\n",
      "          'representative': 1,\n",
      "          'source': 1,\n",
      "          'particular': 1,\n",
      "          'development': 1,\n",
      "          'also': 1,\n",
      "          'alas': 1,\n",
      "          'simply': 1,\n",
      "          'hold': 1,\n",
      "          'interest': 1,\n",
      "          'get': 1,\n",
      "          'na': 1,\n",
      "          'things': 1,\n",
      "          'sit': 1,\n",
      "          'example': 1,\n",
      "          'original': 1,\n",
      "          'scam': 1,\n",
      "          'heavily': 1,\n",
      "          'involved': 1,\n",
      "          'yet': 1,\n",
      "          'relatively': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'seems': 1,\n",
      "          'along': 1,\n",
      "          'better': 1,\n",
      "          'non': 1,\n",
      "          'flip': 1,\n",
      "          'side': 1,\n",
      "          'thought': 1,\n",
      "          'developed': 1,\n",
      "          'helped': 1,\n",
      "          'lot': 1,\n",
      "          'characters': 1,\n",
      "          'lacked': 1,\n",
      "          'nas': 1,\n",
      "          'far': 1,\n",
      "          'casting': 1,\n",
      "          'concerned': 1,\n",
      "          'choices': 1,\n",
      "          'nick': 1,\n",
      "          'nolte': 1,\n",
      "          'jeff': 1,\n",
      "          'bridges': 1,\n",
      "          'great': 1,\n",
      "          'people': 1,\n",
      "          'acted': 1,\n",
      "          'parts': 1,\n",
      "          'admirably': 1,\n",
      "          'directing': 1,\n",
      "          'something': 1,\n",
      "          'long': 1,\n",
      "          'actually': 1,\n",
      "          'add': 1,\n",
      "          'distinctive': 1,\n",
      "          'occasions': 1,\n",
      "          'nmatthew': 1,\n",
      "          'warchus': 1,\n",
      "          'added': 1,\n",
      "          'spin': 1,\n",
      "          'tackled': 1,\n",
      "          'able': 1,\n",
      "          'look': 1,\n",
      "          'horseracing': 1,\n",
      "          'nthere': 1,\n",
      "          'certain': 1,\n",
      "          'direction': 1,\n",
      "          'reason': 1,\n",
      "          'flaw': 1,\n",
      "          'matter': 1,\n",
      "          'kind': 1,\n",
      "          'flavoring': 1,\n",
      "          'directorial': 1,\n",
      "          'certainly': 1,\n",
      "          'hope': 1,\n",
      "          'makes': 1,\n",
      "          'movies': 1,\n",
      "          'show': 1,\n",
      "          'promise': 1,\n",
      "          'dont': 1,\n",
      "          'like': 1,\n",
      "          'evolve': 1,\n",
      "          'captivating': 1,\n",
      "          'simpatico': 1,\n",
      "          'enjoyable': 1,\n",
      "          'watch': 1,\n",
      "          'nalthough': 1,\n",
      "          'going': 1,\n",
      "          'find': 1,\n",
      "          'though': 1,\n",
      "          'style': 1,\n",
      "          'used': 1,\n",
      "          'compliment': 1,\n",
      "          'recommend': 1,\n",
      "          'anyone': 1,\n",
      "          'racing': 1,\n",
      "          'likely': 1,\n",
      "          'enjoy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'book': 7,\n",
      "          'written': 4,\n",
      "          'duke': 4,\n",
      "          'movie': 4,\n",
      "          'one': 4,\n",
      "          'characters': 4,\n",
      "          'thompsons': 3,\n",
      "          'fear': 3,\n",
      "          'loathing': 3,\n",
      "          'las': 3,\n",
      "          'vegas': 3,\n",
      "          'nthe': 3,\n",
      "          'drug': 3,\n",
      "          'use': 3,\n",
      "          'still': 3,\n",
      "          'dr': 3,\n",
      "          'raoul': 3,\n",
      "          'nhunter': 2,\n",
      "          'also': 2,\n",
      "          'form': 2,\n",
      "          'known': 2,\n",
      "          'gonzo': 2,\n",
      "          'hunter': 2,\n",
      "          'thomspon': 2,\n",
      "          'nand': 2,\n",
      "          'problem': 2,\n",
      "          'although': 2,\n",
      "          'adventures': 2,\n",
      "          'around': 2,\n",
      "          'ndespite': 2,\n",
      "          'name': 2,\n",
      "          'get': 2,\n",
      "          'johnny': 2,\n",
      "          'personalities': 2,\n",
      "          'depp': 2,\n",
      "          'samoan': 2,\n",
      "          'lawyer': 2,\n",
      "          'stoned': 2,\n",
      "          'set': 2,\n",
      "          'good': 2,\n",
      "          'fullyloaded': 1,\n",
      "          'entertainment': 1,\n",
      "          'review': 1,\n",
      "          'website': 1,\n",
      "          'coming': 1,\n",
      "          'soon': 1,\n",
      "          '1971': 1,\n",
      "          'already': 1,\n",
      "          'american': 1,\n",
      "          'classic': 1,\n",
      "          'merely': 1,\n",
      "          'unadulterated': 1,\n",
      "          'journey': 1,\n",
      "          'postpsychedelia': 1,\n",
      "          '1960s': 1,\n",
      "          'ushered': 1,\n",
      "          'new': 1,\n",
      "          'journalism': 1,\n",
      "          'nsoon': 1,\n",
      "          'became': 1,\n",
      "          'basis': 1,\n",
      "          'character': 1,\n",
      "          'doonesbury': 1,\n",
      "          'uncle': 1,\n",
      "          'nalthough': 1,\n",
      "          'favorites': 1,\n",
      "          'agree': 1,\n",
      "          'assessment': 1,\n",
      "          'novel': 1,\n",
      "          'unfilmable': 1,\n",
      "          'main': 1,\n",
      "          'detailing': 1,\n",
      "          'wild': 1,\n",
      "          'trippedout': 1,\n",
      "          'road': 1,\n",
      "          'nit': 1,\n",
      "          'edited': 1,\n",
      "          'thomspons': 1,\n",
      "          'relatively': 1,\n",
      "          'sober': 1,\n",
      "          'home': 1,\n",
      "          'nso': 1,\n",
      "          'depicts': 1,\n",
      "          'told': 1,\n",
      "          'sense': 1,\n",
      "          'aloofness': 1,\n",
      "          'humor': 1,\n",
      "          'narrator': 1,\n",
      "          'always': 1,\n",
      "          'drugged': 1,\n",
      "          'grip': 1,\n",
      "          'reality': 1,\n",
      "          'tell': 1,\n",
      "          'journalistic': 1,\n",
      "          'ability': 1,\n",
      "          'going': 1,\n",
      "          'nnot': 1,\n",
      "          'changes': 1,\n",
      "          'minor': 1,\n",
      "          'scene': 1,\n",
      "          'dropped': 1,\n",
      "          'exact': 1,\n",
      "          'duplicate': 1,\n",
      "          'terms': 1,\n",
      "          'dialouge': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'annoying': 1,\n",
      "          'depps': 1,\n",
      "          'plays': 1,\n",
      "          'thompson': 1,\n",
      "          'excessive': 1,\n",
      "          'narration': 1,\n",
      "          'vivid': 1,\n",
      "          'played': 1,\n",
      "          '2d': 1,\n",
      "          'characers': 1,\n",
      "          'screen': 1,\n",
      "          'alias': 1,\n",
      "          'riding': 1,\n",
      "          'companion': 1,\n",
      "          'benicio': 1,\n",
      "          'del': 1,\n",
      "          'toro': 1,\n",
      "          'large': 1,\n",
      "          'emotions': 1,\n",
      "          'save': 1,\n",
      "          'film': 1,\n",
      "          'faithful': 1,\n",
      "          'plot': 1,\n",
      "          'sent': 1,\n",
      "          'sports': 1,\n",
      "          'illustrated': 1,\n",
      "          'cover': 1,\n",
      "          'mint': 1,\n",
      "          '400': 1,\n",
      "          'takes': 1,\n",
      "          'along': 1,\n",
      "          'car': 1,\n",
      "          'trunk': 1,\n",
      "          'full': 1,\n",
      "          'drugs': 1,\n",
      "          'nfrom': 1,\n",
      "          'another': 1,\n",
      "          'happens': 1,\n",
      "          'including': 1,\n",
      "          'scenes': 1,\n",
      "          'high': 1,\n",
      "          'acid': 1,\n",
      "          'watches': 1,\n",
      "          'people': 1,\n",
      "          'bar': 1,\n",
      "          'turn': 1,\n",
      "          'literally': 1,\n",
      "          'lounge': 1,\n",
      "          'lizards': 1,\n",
      "          'nwhile': 1,\n",
      "          'moments': 1,\n",
      "          'almost': 1,\n",
      "          'unwatchable': 1,\n",
      "          'parts': 1,\n",
      "          'especially': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'lot': 1,\n",
      "          'celebrity': 1,\n",
      "          'cameos': 1,\n",
      "          'stars': 1,\n",
      "          'never': 1,\n",
      "          'ground': 1,\n",
      "          'decoration': 1,\n",
      "          'costumes': 1,\n",
      "          'great': 1,\n",
      "          'probably': 1,\n",
      "          'deserve': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'nhowever': 1,\n",
      "          'know': 1,\n",
      "          'sets': 1,\n",
      "          'effects': 1,\n",
      "          'make': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'drug': 8,\n",
      "          'movie': 5,\n",
      "          'story': 5,\n",
      "          'go': 4,\n",
      "          'nin': 3,\n",
      "          'three': 3,\n",
      "          'nthe': 3,\n",
      "          'stories': 3,\n",
      "          'time': 3,\n",
      "          'deals': 3,\n",
      "          'people': 3,\n",
      "          'liman': 2,\n",
      "          'director': 2,\n",
      "          'viewers': 2,\n",
      "          'points': 2,\n",
      "          'audience': 2,\n",
      "          'fails': 2,\n",
      "          'come': 2,\n",
      "          'much': 2,\n",
      "          'thread': 2,\n",
      "          'deal': 2,\n",
      "          'ronna': 2,\n",
      "          'polley': 2,\n",
      "          'askew': 2,\n",
      "          'vegas': 2,\n",
      "          'mohr': 2,\n",
      "          'wolf': 2,\n",
      "          'n': 2,\n",
      "          'fact': 2,\n",
      "          'movies': 2,\n",
      "          'far': 2,\n",
      "          'like': 2,\n",
      "          'dont': 2,\n",
      "          'success': 2,\n",
      "          'almost': 2,\n",
      "          'common': 2,\n",
      "          'night': 2,\n",
      "          'filmmakers': 1,\n",
      "          'use': 1,\n",
      "          'manner': 1,\n",
      "          'tricks': 1,\n",
      "          'flesh': 1,\n",
      "          'brighten': 1,\n",
      "          'dull': 1,\n",
      "          'dreary': 1,\n",
      "          'overused': 1,\n",
      "          'idea': 1,\n",
      "          'ndoug': 1,\n",
      "          'swingers': 1,\n",
      "          'ultrahip': 1,\n",
      "          'severely': 1,\n",
      "          'dark': 1,\n",
      "          'comedy': 1,\n",
      "          'example': 1,\n",
      "          'filmmaker': 1,\n",
      "          'latest': 1,\n",
      "          'gives': 1,\n",
      "          'raucous': 1,\n",
      "          'neonlit': 1,\n",
      "          'backdrop': 1,\n",
      "          'cinematographer': 1,\n",
      "          'druginfested': 1,\n",
      "          'path': 1,\n",
      "          'misadventure': 1,\n",
      "          'nbut': 1,\n",
      "          'parallel': 1,\n",
      "          'structure': 1,\n",
      "          'multitiered': 1,\n",
      "          'connect': 1,\n",
      "          'level': 1,\n",
      "          'bringing': 1,\n",
      "          'worth': 1,\n",
      "          'efforts': 1,\n",
      "          'nil': 1,\n",
      "          'value': 1,\n",
      "          'nhis': 1,\n",
      "          'produced': 1,\n",
      "          'anthologystyle': 1,\n",
      "          'telling': 1,\n",
      "          'multiple': 1,\n",
      "          'view': 1,\n",
      "          'author': 1,\n",
      "          'might': 1,\n",
      "          'write': 1,\n",
      "          'serial': 1,\n",
      "          'novel': 1,\n",
      "          'nconsistent': 1,\n",
      "          'ethic': 1,\n",
      "          'screenwriter': 1,\n",
      "          'john': 1,\n",
      "          'august': 1,\n",
      "          'provide': 1,\n",
      "          'bit': 1,\n",
      "          'overlap': 1,\n",
      "          'beginning': 1,\n",
      "          'narrative': 1,\n",
      "          'insert': 1,\n",
      "          'brief': 1,\n",
      "          'connections': 1,\n",
      "          'narratives': 1,\n",
      "          'laces': 1,\n",
      "          'together': 1,\n",
      "          'events': 1,\n",
      "          'thereafter': 1,\n",
      "          'checkout': 1,\n",
      "          'clerk': 1,\n",
      "          'sarah': 1,\n",
      "          'looking': 1,\n",
      "          'score': 1,\n",
      "          'rent': 1,\n",
      "          'money': 1,\n",
      "          'turning': 1,\n",
      "          'trafficking': 1,\n",
      "          'b': 1,\n",
      "          'regular': 1,\n",
      "          'dealer': 1,\n",
      "          'simon': 1,\n",
      "          'desmond': 1,\n",
      "          'gone': 1,\n",
      "          'las': 1,\n",
      "          'giving': 1,\n",
      "          'opportunity': 1,\n",
      "          'c': 1,\n",
      "          'gay': 1,\n",
      "          'soap': 1,\n",
      "          'actors': 1,\n",
      "          'zack': 1,\n",
      "          'jay': 1,\n",
      "          'adam': 1,\n",
      "          'scott': 1,\n",
      "          'working': 1,\n",
      "          'undercover': 1,\n",
      "          'police': 1,\n",
      "          'bust': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'said': 1,\n",
      "          'nneither': 1,\n",
      "          'substance': 1,\n",
      "          'feel': 1,\n",
      "          'campfire': 1,\n",
      "          'albeit': 1,\n",
      "          'rather': 1,\n",
      "          'strange': 1,\n",
      "          'one': 1,\n",
      "          'could': 1,\n",
      "          'told': 1,\n",
      "          'five': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'originally': 1,\n",
      "          'short': 1,\n",
      "          'film': 1,\n",
      "          'entitled': 1,\n",
      "          'x': 1,\n",
      "          'expanded': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'early': 1,\n",
      "          'april': 1,\n",
      "          'release': 1,\n",
      "          'date': 1,\n",
      "          'mistimed': 1,\n",
      "          'capitalize': 1,\n",
      "          'christmas': 1,\n",
      "          'setting': 1,\n",
      "          'los': 1,\n",
      "          'angeleslas': 1,\n",
      "          'nightlife': 1,\n",
      "          'something': 1,\n",
      "          'mainstream': 1,\n",
      "          'theatergoers': 1,\n",
      "          'attach': 1,\n",
      "          'characters': 1,\n",
      "          'shallow': 1,\n",
      "          'point': 1,\n",
      "          'prerequisite': 1,\n",
      "          'performances': 1,\n",
      "          'littleknown': 1,\n",
      "          'players': 1,\n",
      "          'taye': 1,\n",
      "          'diggs': 1,\n",
      "          'help': 1,\n",
      "          'hurt': 1,\n",
      "          'roles': 1,\n",
      "          'even': 1,\n",
      "          'bigger': 1,\n",
      "          'names': 1,\n",
      "          'katie': 1,\n",
      "          'holmes': 1,\n",
      "          'enough': 1,\n",
      "          'make': 1,\n",
      "          'substantial': 1,\n",
      "          'nalthough': 1,\n",
      "          'thats': 1,\n",
      "          'expected': 1,\n",
      "          'lack': 1,\n",
      "          'continuous': 1,\n",
      "          'screen': 1,\n",
      "          'picture': 1,\n",
      "          'binds': 1,\n",
      "          'ngo': 1,\n",
      "          'doesnt': 1,\n",
      "          'suffers': 1,\n",
      "          'nas': 1,\n",
      "          'teen': 1,\n",
      "          'concerned': 1,\n",
      "          'represents': 1,\n",
      "          'absolute': 1,\n",
      "          'bottom': 1,\n",
      "          'constant': 1,\n",
      "          'stream': 1,\n",
      "          'indecipherable': 1,\n",
      "          'light': 1,\n",
      "          'sound': 1,\n",
      "          'mean': 1,\n",
      "          'nothing': 1,\n",
      "          'without': 1,\n",
      "          'sort': 1,\n",
      "          'theme': 1,\n",
      "          'following': 1,\n",
      "          'count': 1,\n",
      "          'themes': 1,\n",
      "          'attempting': 1,\n",
      "          'romantic': 1,\n",
      "          'interludes': 1,\n",
      "          'dealers': 1,\n",
      "          'resorting': 1,\n",
      "          'alterior': 1,\n",
      "          'motives': 1,\n",
      "          'involved': 1,\n",
      "          'stumbling': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'humor': 1,\n",
      "          'sickly': 1,\n",
      "          'funny': 1,\n",
      "          'low': 1,\n",
      "          'watchable': 1,\n",
      "          'majority': 1,\n",
      "          'running': 1,\n",
      "          'best': 1,\n",
      "          'left': 1,\n",
      "          'teens': 1,\n",
      "          'blockbuster': 1,\n",
      "          'saturday': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'story': 5,\n",
      "          'get': 4,\n",
      "          'make': 4,\n",
      "          'enola': 4,\n",
      "          'film': 3,\n",
      "          'plot': 3,\n",
      "          'nhe': 3,\n",
      "          'completely': 3,\n",
      "          'mariner': 3,\n",
      "          'good': 3,\n",
      "          'people': 3,\n",
      "          'long': 3,\n",
      "          'sorry': 2,\n",
      "          'waterworld': 2,\n",
      "          'supposedly': 2,\n",
      "          'made': 2,\n",
      "          'also': 2,\n",
      "          'one': 2,\n",
      "          'really': 2,\n",
      "          'movie': 2,\n",
      "          'together': 2,\n",
      "          'costner': 2,\n",
      "          'covered': 2,\n",
      "          'water': 2,\n",
      "          'hes': 2,\n",
      "          'sorts': 2,\n",
      "          'us': 2,\n",
      "          'child': 2,\n",
      "          'prodigy': 2,\n",
      "          'primitive': 2,\n",
      "          'technology': 2,\n",
      "          'nit': 2,\n",
      "          'doesnt': 2,\n",
      "          'like': 2,\n",
      "          'airplanes': 2,\n",
      "          'things': 2,\n",
      "          'nthere': 2,\n",
      "          'never': 2,\n",
      "          'time': 2,\n",
      "          'nthe': 2,\n",
      "          'tattoo': 2,\n",
      "          'dryland': 2,\n",
      "          'stupid': 2,\n",
      "          'action': 2,\n",
      "          'boring': 2,\n",
      "          'plain': 2,\n",
      "          'hopper': 2,\n",
      "          'adventure': 2,\n",
      "          'original': 2,\n",
      "          'rips': 2,\n",
      "          'feel': 1,\n",
      "          'financial': 1,\n",
      "          'backers': 1,\n",
      "          'expensive': 1,\n",
      "          'ever': 1,\n",
      "          '172': 1,\n",
      "          'million': 1,\n",
      "          'stupidest': 1,\n",
      "          'boy': 1,\n",
      "          'ripped': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'ride': 1,\n",
      "          'nits': 1,\n",
      "          'even': 1,\n",
      "          'another': 1,\n",
      "          'case': 1,\n",
      "          'cliches': 1,\n",
      "          'strung': 1,\n",
      "          'well': 1,\n",
      "          'something': 1,\n",
      "          'thats': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'relishes': 1,\n",
      "          'flaws': 1,\n",
      "          'nkevin': 1,\n",
      "          'stars': 1,\n",
      "          'man': 1,\n",
      "          'kind': 1,\n",
      "          'mutant': 1,\n",
      "          'half': 1,\n",
      "          'manhalf': 1,\n",
      "          'fish': 1,\n",
      "          'explorermariner': 1,\n",
      "          'alternate': 1,\n",
      "          'earth': 1,\n",
      "          'polar': 1,\n",
      "          'ice': 1,\n",
      "          'caps': 1,\n",
      "          'melted': 1,\n",
      "          'nhes': 1,\n",
      "          'referred': 1,\n",
      "          'meaner': 1,\n",
      "          'would': 1,\n",
      "          'appropriate': 1,\n",
      "          'title': 1,\n",
      "          'cold': 1,\n",
      "          'rigid': 1,\n",
      "          'strict': 1,\n",
      "          'supposed': 1,\n",
      "          'guy': 1,\n",
      "          'docks': 1,\n",
      "          'small': 1,\n",
      "          'floating': 1,\n",
      "          'village': 1,\n",
      "          'trades': 1,\n",
      "          'dirt': 1,\n",
      "          'money': 1,\n",
      "          'introduces': 1,\n",
      "          'important': 1,\n",
      "          'characters': 1,\n",
      "          'nfirst': 1,\n",
      "          'meet': 1,\n",
      "          'villains': 1,\n",
      "          'soontobe': 1,\n",
      "          'heroine': 1,\n",
      "          'wacky': 1,\n",
      "          'inventor': 1,\n",
      "          'group': 1,\n",
      "          'somehow': 1,\n",
      "          'today': 1,\n",
      "          'lowtech': 1,\n",
      "          'tools': 1,\n",
      "          'used': 1,\n",
      "          'pirates': 1,\n",
      "          'vikings': 1,\n",
      "          'nimmediately': 1,\n",
      "          'films': 1,\n",
      "          'biggest': 1,\n",
      "          'flaw': 1,\n",
      "          'apparent': 1,\n",
      "          'highly': 1,\n",
      "          'advanced': 1,\n",
      "          'seem': 1,\n",
      "          'anyone': 1,\n",
      "          'read': 1,\n",
      "          'yet': 1,\n",
      "          'skidoos': 1,\n",
      "          'nhow': 1,\n",
      "          'powered': 1,\n",
      "          'nand': 1,\n",
      "          'couldnt': 1,\n",
      "          'keep': 1,\n",
      "          'flying': 1,\n",
      "          'reached': 1,\n",
      "          'dry': 1,\n",
      "          'land': 1,\n",
      "          'nalso': 1,\n",
      "          'planet': 1,\n",
      "          'materials': 1,\n",
      "          'nim': 1,\n",
      "          'im': 1,\n",
      "          'checking': 1,\n",
      "          'brain': 1,\n",
      "          'door': 1,\n",
      "          'going': 1,\n",
      "          'movies': 1,\n",
      "          'elements': 1,\n",
      "          'go': 1,\n",
      "          'unnoticed': 1,\n",
      "          'draw': 1,\n",
      "          'attention': 1,\n",
      "          'away': 1,\n",
      "          'confuse': 1,\n",
      "          'potential': 1,\n",
      "          'pirate': 1,\n",
      "          'set': 1,\n",
      "          'medieval': 1,\n",
      "          'times': 1,\n",
      "          'modern': 1,\n",
      "          'mix': 1,\n",
      "          'two': 1,\n",
      "          'sense': 1,\n",
      "          'isnt': 1,\n",
      "          'much': 1,\n",
      "          'moves': 1,\n",
      "          'quickly': 1,\n",
      "          'takes': 1,\n",
      "          'explain': 1,\n",
      "          'anything': 1,\n",
      "          'thing': 1,\n",
      "          'learn': 1,\n",
      "          'mojorino': 1,\n",
      "          'back': 1,\n",
      "          'map': 1,\n",
      "          'nwho': 1,\n",
      "          'put': 1,\n",
      "          'come': 1,\n",
      "          'taken': 1,\n",
      "          'figure': 1,\n",
      "          'nwe': 1,\n",
      "          'answer': 1,\n",
      "          'whoever': 1,\n",
      "          'girl': 1,\n",
      "          'victor': 1,\n",
      "          'reach': 1,\n",
      "          'nto': 1,\n",
      "          'bad': 1,\n",
      "          'short': 1,\n",
      "          'escapes': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'helen': 1,\n",
      "          'tripplehorn': 1,\n",
      "          'nthey': 1,\n",
      "          'sail': 1,\n",
      "          'encountering': 1,\n",
      "          'strange': 1,\n",
      "          'process': 1,\n",
      "          'fight': 1,\n",
      "          'smokers': 1,\n",
      "          'lead': 1,\n",
      "          'idiot': 1,\n",
      "          'villain': 1,\n",
      "          'deacon': 1,\n",
      "          'kidnaps': 1,\n",
      "          'becomes': 1,\n",
      "          'overly': 1,\n",
      "          'grand': 1,\n",
      "          'taking': 1,\n",
      "          'army': 1,\n",
      "          'goons': 1,\n",
      "          'rescuing': 1,\n",
      "          'bringing': 1,\n",
      "          'salvation': 1,\n",
      "          'neven': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nnot': 1,\n",
      "          'single': 1,\n",
      "          'character': 1,\n",
      "          'likable': 1,\n",
      "          'therefore': 1,\n",
      "          'neither': 1,\n",
      "          'ndennis': 1,\n",
      "          'jack': 1,\n",
      "          'nicholsons': 1,\n",
      "          'joker': 1,\n",
      "          'nstill': 1,\n",
      "          'professionally': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'idea': 1,\n",
      "          'substance': 1,\n",
      "          'ni': 1,\n",
      "          'hope': 1,\n",
      "          'dont': 1,\n",
      "          'sequel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthis': 5,\n",
      "          'battlefield': 4,\n",
      "          'earth': 4,\n",
      "          'nthe': 4,\n",
      "          'terl': 4,\n",
      "          'nbut': 4,\n",
      "          'film': 4,\n",
      "          'nit': 3,\n",
      "          'one': 3,\n",
      "          'story': 3,\n",
      "          'nin': 3,\n",
      "          'called': 3,\n",
      "          'mining': 3,\n",
      "          'psychlo': 3,\n",
      "          'audience': 3,\n",
      "          'told': 2,\n",
      "          'theres': 2,\n",
      "          'films': 2,\n",
      "          'go': 2,\n",
      "          'scifi': 2,\n",
      "          'species': 2,\n",
      "          'aliens': 2,\n",
      "          'mine': 2,\n",
      "          'rest': 2,\n",
      "          'tall': 2,\n",
      "          'power': 2,\n",
      "          'star': 2,\n",
      "          'movie': 2,\n",
      "          'nhe': 2,\n",
      "          'home': 2,\n",
      "          'planet': 2,\n",
      "          'slaves': 2,\n",
      "          'leader': 2,\n",
      "          'machine': 2,\n",
      "          'also': 2,\n",
      "          'made': 2,\n",
      "          'would': 2,\n",
      "          'travolta': 2,\n",
      "          'scientologist': 2,\n",
      "          'subliminal': 2,\n",
      "          'message': 2,\n",
      "          'watch': 1,\n",
      "          'wallow': 1,\n",
      "          'misery': 1,\n",
      "          'ludicrously': 1,\n",
      "          'conceived': 1,\n",
      "          'efforts': 1,\n",
      "          'recent': 1,\n",
      "          'history': 1,\n",
      "          'clumsily': 1,\n",
      "          'insipid': 1,\n",
      "          'dialogue': 1,\n",
      "          'shallow': 1,\n",
      "          'characterizations': 1,\n",
      "          'ugly': 1,\n",
      "          'scene': 1,\n",
      "          'transitions': 1,\n",
      "          'evidence': 1,\n",
      "          'dramatic': 1,\n",
      "          'arc': 1,\n",
      "          'headacheinducing': 1,\n",
      "          'sound': 1,\n",
      "          'effects': 1,\n",
      "          'resolution': 1,\n",
      "          'completely': 1,\n",
      "          'implausible': 1,\n",
      "          'nworse': 1,\n",
      "          'promise': 1,\n",
      "          'sequel': 1,\n",
      "          'nwhy': 1,\n",
      "          'nsave': 1,\n",
      "          'money': 1,\n",
      "          'nsome': 1,\n",
      "          'quickly': 1,\n",
      "          'video': 1,\n",
      "          'however': 1,\n",
      "          'straight': 1,\n",
      "          'channels': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theatre': 1,\n",
      "          'year': 1,\n",
      "          '3000': 1,\n",
      "          'man': 1,\n",
      "          'become': 1,\n",
      "          'endangered': 1,\n",
      "          'nmost': 1,\n",
      "          'humanity': 1,\n",
      "          'mananimals': 1,\n",
      "          'destroyed': 1,\n",
      "          'generations': 1,\n",
      "          'ago': 1,\n",
      "          'battle': 1,\n",
      "          'race': 1,\n",
      "          'plundering': 1,\n",
      "          'psychlos': 1,\n",
      "          'nsurvivors': 1,\n",
      "          'either': 1,\n",
      "          'taken': 1,\n",
      "          'shelter': 1,\n",
      "          'caves': 1,\n",
      "          'enslaved': 1,\n",
      "          'earths': 1,\n",
      "          'resources': 1,\n",
      "          'lives': 1,\n",
      "          'menacing': 1,\n",
      "          'looking': 1,\n",
      "          'humanoid': 1,\n",
      "          'stand': 1,\n",
      "          'ninefeet': 1,\n",
      "          'resemble': 1,\n",
      "          'inbred': 1,\n",
      "          'klingons': 1,\n",
      "          'ndimwitted': 1,\n",
      "          'culture': 1,\n",
      "          'predicated': 1,\n",
      "          'extortion': 1,\n",
      "          'getting': 1,\n",
      "          'leverage': 1,\n",
      "          'ntravolta': 1,\n",
      "          'leverageusing': 1,\n",
      "          'plays': 1,\n",
      "          'conniving': 1,\n",
      "          'security': 1,\n",
      "          'chief': 1,\n",
      "          'oversees': 1,\n",
      "          'facility': 1,\n",
      "          'nmuch': 1,\n",
      "          'spent': 1,\n",
      "          'showing': 1,\n",
      "          'us': 1,\n",
      "          'examples': 1,\n",
      "          'terls': 1,\n",
      "          'petty': 1,\n",
      "          'machinations': 1,\n",
      "          'routinely': 1,\n",
      "          'employs': 1,\n",
      "          'deception': 1,\n",
      "          'punctuates': 1,\n",
      "          'statements': 1,\n",
      "          'maniacal': 1,\n",
      "          'laughter': 1,\n",
      "          'thing': 1,\n",
      "          'certain': 1,\n",
      "          'hates': 1,\n",
      "          'stationed': 1,\n",
      "          'nwhen': 1,\n",
      "          'informs': 1,\n",
      "          'spending': 1,\n",
      "          'life': 1,\n",
      "          'begins': 1,\n",
      "          'devise': 1,\n",
      "          'latest': 1,\n",
      "          'plan': 1,\n",
      "          'select': 1,\n",
      "          'group': 1,\n",
      "          'secretly': 1,\n",
      "          'gold': 1,\n",
      "          'ore': 1,\n",
      "          'site': 1,\n",
      "          'nits': 1,\n",
      "          'clear': 1,\n",
      "          'benefits': 1,\n",
      "          'except': 1,\n",
      "          'makes': 1,\n",
      "          'richer': 1,\n",
      "          'place': 1,\n",
      "          'use': 1,\n",
      "          'scrappy': 1,\n",
      "          'jonnie': 1,\n",
      "          'goodboy': 1,\n",
      "          'tyler': 1,\n",
      "          'barry': 1,\n",
      "          'peppers': 1,\n",
      "          'selected': 1,\n",
      "          'slave': 1,\n",
      "          'groups': 1,\n",
      "          'na': 1,\n",
      "          'knowledge': 1,\n",
      "          'gives': 1,\n",
      "          'knowhow': 1,\n",
      "          'teaches': 1,\n",
      "          'things': 1,\n",
      "          'language': 1,\n",
      "          'principles': 1,\n",
      "          'founding': 1,\n",
      "          'fathers': 1,\n",
      "          'euclidean': 1,\n",
      "          'geometry': 1,\n",
      "          'location': 1,\n",
      "          'fort': 1,\n",
      "          'knox': 1,\n",
      "          'enlightenment': 1,\n",
      "          'doesnt': 1,\n",
      "          'prepare': 1,\n",
      "          'assignment': 1,\n",
      "          'prepares': 1,\n",
      "          'organize': 1,\n",
      "          'stage': 1,\n",
      "          'massive': 1,\n",
      "          'revolt': 1,\n",
      "          'captors': 1,\n",
      "          'nwere': 1,\n",
      "          'going': 1,\n",
      "          'blow': 1,\n",
      "          'world': 1,\n",
      "          'says': 1,\n",
      "          'first': 1,\n",
      "          'need': 1,\n",
      "          'supplies': 1,\n",
      "          'days': 1,\n",
      "          'comrades': 1,\n",
      "          'evolve': 1,\n",
      "          'cave': 1,\n",
      "          'dwelling': 1,\n",
      "          'loincloth': 1,\n",
      "          'wearing': 1,\n",
      "          'rat': 1,\n",
      "          'eating': 1,\n",
      "          'fighter': 1,\n",
      "          'pilots': 1,\n",
      "          'nuclear': 1,\n",
      "          'weapons': 1,\n",
      "          'experts': 1,\n",
      "          'nby': 1,\n",
      "          'laughing': 1,\n",
      "          'maniacally': 1,\n",
      "          'media': 1,\n",
      "          'working': 1,\n",
      "          'overtime': 1,\n",
      "          'let': 1,\n",
      "          'public': 1,\n",
      "          'know': 1,\n",
      "          'john': 1,\n",
      "          'travoltas': 1,\n",
      "          'labor': 1,\n",
      "          'love': 1,\n",
      "          'piece': 1,\n",
      "          'drivel': 1,\n",
      "          'nnumerous': 1,\n",
      "          'journals': 1,\n",
      "          'illconceived': 1,\n",
      "          'idea': 1,\n",
      "          'stemming': 1,\n",
      "          'blind': 1,\n",
      "          'hubris': 1,\n",
      "          'arrogance': 1,\n",
      "          'poor': 1,\n",
      "          'planning': 1,\n",
      "          'nand': 1,\n",
      "          'watching': 1,\n",
      "          'youll': 1,\n",
      "          'wholeheartedly': 1,\n",
      "          'agree': 1,\n",
      "          'terrible': 1,\n",
      "          'illogically': 1,\n",
      "          'constructed': 1,\n",
      "          'tediously': 1,\n",
      "          'acted': 1,\n",
      "          'frequently': 1,\n",
      "          'begs': 1,\n",
      "          'question': 1,\n",
      "          'ever': 1,\n",
      "          'nat': 1,\n",
      "          'price': 1,\n",
      "          'tag': 1,\n",
      "          '90': 1,\n",
      "          'million': 1,\n",
      "          'remembered': 1,\n",
      "          'gigantic': 1,\n",
      "          'folly': 1,\n",
      "          'assuredly': 1,\n",
      "          'becoming': 1,\n",
      "          'avengers': 1,\n",
      "          'summer': 1,\n",
      "          'nboth': 1,\n",
      "          'unforgivable': 1,\n",
      "          'promises': 1,\n",
      "          'suffer': 1,\n",
      "          'speedy': 1,\n",
      "          'fate': 1,\n",
      "          'subsequent': 1,\n",
      "          'indignity': 1,\n",
      "          'addition': 1,\n",
      "          'universally': 1,\n",
      "          'pejorative': 1,\n",
      "          'reviews': 1,\n",
      "          'another': 1,\n",
      "          'bizarre': 1,\n",
      "          'element': 1,\n",
      "          'saga': 1,\n",
      "          'never': 1,\n",
      "          'decade': 1,\n",
      "          'trying': 1,\n",
      "          'persuade': 1,\n",
      "          'studios': 1,\n",
      "          'bring': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'controversy': 1,\n",
      "          'based': 1,\n",
      "          '1982': 1,\n",
      "          'novel': 1,\n",
      "          'l': 1,\n",
      "          'ron': 1,\n",
      "          'hubbard': 1,\n",
      "          'religions': 1,\n",
      "          'late': 1,\n",
      "          'founder': 1,\n",
      "          'led': 1,\n",
      "          'believe': 1,\n",
      "          'amount': 1,\n",
      "          'dogma': 1,\n",
      "          'laden': 1,\n",
      "          'messages': 1,\n",
      "          'poorly': 1,\n",
      "          'otherwise': 1,\n",
      "          'totally': 1,\n",
      "          'undetectable': 1,\n",
      "          'nif': 1,\n",
      "          'got': 1,\n",
      "          'anything': 1,\n",
      "          'unlike': 1,\n",
      "          'nlike': 1,\n",
      "          'felt': 1,\n",
      "          'imprisoned': 1,\n",
      "          'dreaded': 1,\n",
      "          'situation': 1,\n",
      "          'looked': 1,\n",
      "          'opportunity': 1,\n",
      "          'leave': 1,\n",
      "          'ncould': 1,\n",
      "          'scientology': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'like': 8,\n",
      "          'presence': 7,\n",
      "          'nthe': 7,\n",
      "          'one': 6,\n",
      "          'abraham': 6,\n",
      "          'new': 5,\n",
      "          'realm': 5,\n",
      "          'would': 5,\n",
      "          'see': 5,\n",
      "          'two': 5,\n",
      "          'dana': 4,\n",
      "          'nwhen': 4,\n",
      "          'ice': 4,\n",
      "          'images': 4,\n",
      "          'sequence': 4,\n",
      "          'starts': 4,\n",
      "          'priest': 3,\n",
      "          'chicken': 3,\n",
      "          'angela': 3,\n",
      "          'looks': 3,\n",
      "          'evil': 3,\n",
      "          'dimension': 3,\n",
      "          'angels': 3,\n",
      "          'demons': 3,\n",
      "          'likes': 3,\n",
      "          'five': 3,\n",
      "          'recent': 3,\n",
      "          'alison': 3,\n",
      "          'amblyn': 3,\n",
      "          'also': 3,\n",
      "          'take': 3,\n",
      "          'show': 3,\n",
      "          'humans': 3,\n",
      "          'minutes': 3,\n",
      "          'get': 3,\n",
      "          'credits': 3,\n",
      "          'music': 3,\n",
      "          'cast': 3,\n",
      "          'decent': 3,\n",
      "          'people': 3,\n",
      "          'cant': 2,\n",
      "          'fried': 2,\n",
      "          'zimmerly': 2,\n",
      "          'named': 2,\n",
      "          'nfor': 2,\n",
      "          'human': 2,\n",
      "          'friends': 2,\n",
      "          'something': 2,\n",
      "          'presences': 2,\n",
      "          'ramona': 2,\n",
      "          'midgett': 2,\n",
      "          'follow': 2,\n",
      "          'six': 2,\n",
      "          'away': 2,\n",
      "          'allow': 2,\n",
      "          'lost': 2,\n",
      "          'job': 2,\n",
      "          'killed': 2,\n",
      "          'decided': 2,\n",
      "          'master': 2,\n",
      "          'true': 2,\n",
      "          'allowed': 2,\n",
      "          'able': 2,\n",
      "          'nas': 2,\n",
      "          'worst': 2,\n",
      "          'nif': 2,\n",
      "          'theres': 2,\n",
      "          'pretentious': 2,\n",
      "          'arty': 2,\n",
      "          'sun': 2,\n",
      "          'following': 2,\n",
      "          'life': 2,\n",
      "          'almost': 2,\n",
      "          'strange': 2,\n",
      "          'shots': 2,\n",
      "          'time': 2,\n",
      "          'opening': 2,\n",
      "          'video': 2,\n",
      "          'industrial': 2,\n",
      "          'random': 2,\n",
      "          'run': 2,\n",
      "          'entire': 2,\n",
      "          'song': 2,\n",
      "          'doesnt': 2,\n",
      "          'nat': 2,\n",
      "          'least': 2,\n",
      "          'pretty': 2,\n",
      "          'powers': 2,\n",
      "          'front': 2,\n",
      "          'though': 2,\n",
      "          'inbred': 2,\n",
      "          'naked': 2,\n",
      "          'exactly': 2,\n",
      "          'ni': 2,\n",
      "          'walks': 2,\n",
      "          'large': 2,\n",
      "          'platter': 2,\n",
      "          'either': 2,\n",
      "          'creature': 2,\n",
      "          'covered': 2,\n",
      "          'nudity': 2,\n",
      "          'nbesides': 2,\n",
      "          'body': 2,\n",
      "          'www': 2,\n",
      "          'bmovie': 2,\n",
      "          'com': 2,\n",
      "          'available': 2,\n",
      "          'called': 2,\n",
      "          'set': 2,\n",
      "          'director': 2,\n",
      "          'nits': 1,\n",
      "          'mine': 1,\n",
      "          'n': 1,\n",
      "          'twisted': 1,\n",
      "          'charles': 1,\n",
      "          'huevelman': 1,\n",
      "          'hordes': 1,\n",
      "          'tasty': 1,\n",
      "          'uninterested': 1,\n",
      "          'nan': 1,\n",
      "          'appropriately': 1,\n",
      "          'dj': 1,\n",
      "          'vivona': 1,\n",
      "          'rules': 1,\n",
      "          'alternate': 1,\n",
      "          'neither': 1,\n",
      "          'touch': 1,\n",
      "          'kicks': 1,\n",
      "          'trick': 1,\n",
      "          'rounding': 1,\n",
      "          'sent': 1,\n",
      "          'systematically': 1,\n",
      "          'slaughtered': 1,\n",
      "          'goes': 1,\n",
      "          'wrong': 1,\n",
      "          'victims': 1,\n",
      "          'escapes': 1,\n",
      "          'alerted': 1,\n",
      "          'existence': 1,\n",
      "          'feel': 1,\n",
      "          'threat': 1,\n",
      "          'needs': 1,\n",
      "          'stopped': 1,\n",
      "          'nthey': 1,\n",
      "          'enlist': 1,\n",
      "          'help': 1,\n",
      "          'suicide': 1,\n",
      "          'victim': 1,\n",
      "          'return': 1,\n",
      "          'flesh': 1,\n",
      "          'enlistees': 1,\n",
      "          'wall': 1,\n",
      "          'surrounds': 1,\n",
      "          'netherrealm': 1,\n",
      "          'nher': 1,\n",
      "          'mission': 1,\n",
      "          'melt': 1,\n",
      "          'barrier': 1,\n",
      "          'access': 1,\n",
      "          'reminding': 1,\n",
      "          'ancient': 1,\n",
      "          'court': 1,\n",
      "          'jester': 1,\n",
      "          'king': 1,\n",
      "          'queen': 1,\n",
      "          'kings': 1,\n",
      "          'sorcerer': 1,\n",
      "          'wing': 1,\n",
      "          'apprentice': 1,\n",
      "          'nduring': 1,\n",
      "          'downtime': 1,\n",
      "          'unemployment': 1,\n",
      "          'create': 1,\n",
      "          'sorcery': 1,\n",
      "          'torture': 1,\n",
      "          'ruled': 1,\n",
      "          'nabraham': 1,\n",
      "          'wished': 1,\n",
      "          'asked': 1,\n",
      "          'devotion': 1,\n",
      "          'wizard': 1,\n",
      "          'murdering': 1,\n",
      "          'love': 1,\n",
      "          'nin': 1,\n",
      "          'pursue': 1,\n",
      "          'sport': 1,\n",
      "          'hunting': 1,\n",
      "          'destroying': 1,\n",
      "          'brought': 1,\n",
      "          'nafter': 1,\n",
      "          'murder': 1,\n",
      "          'become': 1,\n",
      "          'stronger': 1,\n",
      "          'power': 1,\n",
      "          'surpassed': 1,\n",
      "          'amblyns': 1,\n",
      "          'nbecause': 1,\n",
      "          'screwup': 1,\n",
      "          'escape': 1,\n",
      "          'destroy': 1,\n",
      "          'control': 1,\n",
      "          'quests': 1,\n",
      "          'find': 1,\n",
      "          'errors': 1,\n",
      "          'ways': 1,\n",
      "          'hapless': 1,\n",
      "          'live': 1,\n",
      "          'nightmares': 1,\n",
      "          'brutally': 1,\n",
      "          'murdered': 1,\n",
      "          'thing': 1,\n",
      "          'stand': 1,\n",
      "          'sake': 1,\n",
      "          'nfilms': 1,\n",
      "          'eraserhead': 1,\n",
      "          'begotten': 1,\n",
      "          'examples': 1,\n",
      "          'added': 1,\n",
      "          'list': 1,\n",
      "          'nthis': 1,\n",
      "          'essentially': 1,\n",
      "          '80': 1,\n",
      "          'minute': 1,\n",
      "          'stalkandslash': 1,\n",
      "          'dantes': 1,\n",
      "          'inferno': 1,\n",
      "          'idea': 1,\n",
      "          'hell': 1,\n",
      "          'corresponds': 1,\n",
      "          'lived': 1,\n",
      "          'plots': 1,\n",
      "          'nightmare': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          '3': 1,\n",
      "          '6': 1,\n",
      "          'intercut': 1,\n",
      "          '40': 1,\n",
      "          'supposedly': 1,\n",
      "          'haunting': 1,\n",
      "          'many': 1,\n",
      "          'serve': 1,\n",
      "          'confuse': 1,\n",
      "          'plot': 1,\n",
      "          'arent': 1,\n",
      "          'bizarre': 1,\n",
      "          'floating': 1,\n",
      "          'past': 1,\n",
      "          'screen': 1,\n",
      "          'pointless': 1,\n",
      "          'suicidal': 1,\n",
      "          'staring': 1,\n",
      "          'breakfast': 1,\n",
      "          'contemplating': 1,\n",
      "          'whether': 1,\n",
      "          'answer': 1,\n",
      "          'phone': 1,\n",
      "          'ncompelling': 1,\n",
      "          'ultimately': 1,\n",
      "          'designed': 1,\n",
      "          'unknown': 1,\n",
      "          'band': 1,\n",
      "          'featuring': 1,\n",
      "          'various': 1,\n",
      "          'interspersed': 1,\n",
      "          'length': 1,\n",
      "          'actual': 1,\n",
      "          'listing': 1,\n",
      "          'credit': 1,\n",
      "          'information': 1,\n",
      "          'pop': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'began': 1,\n",
      "          'thought': 1,\n",
      "          'vcr': 1,\n",
      "          'accidentally': 1,\n",
      "          'cut': 1,\n",
      "          'interstitial': 1,\n",
      "          'mtv2': 1,\n",
      "          'found': 1,\n",
      "          'way': 1,\n",
      "          'tv': 1,\n",
      "          'made': 1,\n",
      "          'mostly': 1,\n",
      "          'hard': 1,\n",
      "          'rock': 1,\n",
      "          'even': 1,\n",
      "          'features': 1,\n",
      "          'beginning': 1,\n",
      "          'established': 1,\n",
      "          'possesses': 1,\n",
      "          'supernatural': 1,\n",
      "          'shooting': 1,\n",
      "          'bullets': 1,\n",
      "          'palms': 1,\n",
      "          'hands': 1,\n",
      "          'decapitating': 1,\n",
      "          'waving': 1,\n",
      "          'hand': 1,\n",
      "          'talks': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'clone': 1,\n",
      "          'without': 1,\n",
      "          'heavy': 1,\n",
      "          'breathing': 1,\n",
      "          'reason': 1,\n",
      "          'delegates': 1,\n",
      "          'main': 1,\n",
      "          'stalkings': 1,\n",
      "          'seems': 1,\n",
      "          'supporting': 1,\n",
      "          'deliverance': 1,\n",
      "          'none': 1,\n",
      "          'overalled': 1,\n",
      "          'cretin': 1,\n",
      "          'handles': 1,\n",
      "          'gravedigging': 1,\n",
      "          'chop': 1,\n",
      "          'peoples': 1,\n",
      "          'heads': 1,\n",
      "          'shovel': 1,\n",
      "          'father': 1,\n",
      "          'dwight': 1,\n",
      "          'spurgin': 1,\n",
      "          'children': 1,\n",
      "          'mark': 1,\n",
      "          'kettler': 1,\n",
      "          'jennifer': 1,\n",
      "          'poirrierwallace': 1,\n",
      "          'care': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'transformed': 1,\n",
      "          'half': 1,\n",
      "          'doghalf': 1,\n",
      "          'mix': 1,\n",
      "          'shotgun': 1,\n",
      "          'course': 1,\n",
      "          'big': 1,\n",
      "          'truck': 1,\n",
      "          'driving': 1,\n",
      "          'guy': 1,\n",
      "          'tie': 1,\n",
      "          'back': 1,\n",
      "          'vehicle': 1,\n",
      "          'drag': 1,\n",
      "          'across': 1,\n",
      "          'stone': 1,\n",
      "          'roads': 1,\n",
      "          'pouring': 1,\n",
      "          'salt': 1,\n",
      "          'wounds': 1,\n",
      "          'nwhy': 1,\n",
      "          'want': 1,\n",
      "          'give': 1,\n",
      "          'responsibilities': 1,\n",
      "          'bunch': 1,\n",
      "          'rednecks': 1,\n",
      "          'cool': 1,\n",
      "          'nand': 1,\n",
      "          'fellow': 1,\n",
      "          'screws': 1,\n",
      "          'buddies': 1,\n",
      "          'round': 1,\n",
      "          'complete': 1,\n",
      "          'number': 1,\n",
      "          'required': 1,\n",
      "          'enter': 1,\n",
      "          'barely': 1,\n",
      "          'together': 1,\n",
      "          'given': 1,\n",
      "          'moment': 1,\n",
      "          'ridiculous': 1,\n",
      "          'segment': 1,\n",
      "          'comes': 1,\n",
      "          'right': 1,\n",
      "          'aforementioned': 1,\n",
      "          'draggingsalting': 1,\n",
      "          'character': 1,\n",
      "          'question': 1,\n",
      "          'zimmely': 1,\n",
      "          'turn': 1,\n",
      "          'standing': 1,\n",
      "          'movie': 1,\n",
      "          'theater': 1,\n",
      "          'seated': 1,\n",
      "          'na': 1,\n",
      "          'holding': 1,\n",
      "          'dirty': 1,\n",
      "          'leashes': 1,\n",
      "          'sits': 1,\n",
      "          'next': 1,\n",
      "          'nhe': 1,\n",
      "          'picks': 1,\n",
      "          'enjoy': 1,\n",
      "          'taunting': 1,\n",
      "          'interest': 1,\n",
      "          'whatsoever': 1,\n",
      "          'leave': 1,\n",
      "          'chides': 1,\n",
      "          'going': 1,\n",
      "          'performance': 1,\n",
      "          'gwar': 1,\n",
      "          'terry': 1,\n",
      "          'gilliam': 1,\n",
      "          'animation': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'come': 1,\n",
      "          'makes': 1,\n",
      "          'wants': 1,\n",
      "          'crucified': 1,\n",
      "          'clap': 1,\n",
      "          'annoyingly': 1,\n",
      "          'continues': 1,\n",
      "          'rest': 1,\n",
      "          'takes': 1,\n",
      "          'finally': 1,\n",
      "          'catches': 1,\n",
      "          'stabs': 1,\n",
      "          'giant': 1,\n",
      "          'eyeball': 1,\n",
      "          'slimy': 1,\n",
      "          'glop': 1,\n",
      "          'spurts': 1,\n",
      "          'ruptured': 1,\n",
      "          'organ': 1,\n",
      "          'box': 1,\n",
      "          'claims': 1,\n",
      "          'horrifying': 1,\n",
      "          'nature': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'parental': 1,\n",
      "          'discretion': 1,\n",
      "          'advised': 1,\n",
      "          'persons': 1,\n",
      "          'age': 1,\n",
      "          '18': 1,\n",
      "          'ncontains': 1,\n",
      "          'graphic': 1,\n",
      "          'violence': 1,\n",
      "          'nwhile': 1,\n",
      "          'certainly': 1,\n",
      "          'seem': 1,\n",
      "          'much': 1,\n",
      "          'amounts': 1,\n",
      "          'loving': 1,\n",
      "          'close': 1,\n",
      "          'spurting': 1,\n",
      "          'neck': 1,\n",
      "          'stump': 1,\n",
      "          'semigraphic': 1,\n",
      "          'selfsurgery': 1,\n",
      "          'scene': 1,\n",
      "          'instances': 1,\n",
      "          'head': 1,\n",
      "          'trauma': 1,\n",
      "          'melting': 1,\n",
      "          'gore': 1,\n",
      "          'spraying': 1,\n",
      "          'blood': 1,\n",
      "          'bloody': 1,\n",
      "          'wound': 1,\n",
      "          'variety': 1,\n",
      "          'sparse': 1,\n",
      "          'far': 1,\n",
      "          'attractive': 1,\n",
      "          'member': 1,\n",
      "          'bruised': 1,\n",
      "          'torn': 1,\n",
      "          'bloodied': 1,\n",
      "          'dragging': 1,\n",
      "          'incident': 1,\n",
      "          'nice': 1,\n",
      "          'released': 1,\n",
      "          'vhs': 1,\n",
      "          'nit': 1,\n",
      "          'presented': 1,\n",
      "          'fullframe': 1,\n",
      "          'transfer': 1,\n",
      "          'shot': 1,\n",
      "          'good': 1,\n",
      "          'deal': 1,\n",
      "          '8mm': 1,\n",
      "          'soundtrack': 1,\n",
      "          'makingof': 1,\n",
      "          'thin': 1,\n",
      "          'havent': 1,\n",
      "          'opportunity': 1,\n",
      "          'documentary': 1,\n",
      "          'actually': 1,\n",
      "          'interested': 1,\n",
      "          'filmed': 1,\n",
      "          'eric': 1,\n",
      "          'stanze': 1,\n",
      "          'similar': 1,\n",
      "          'cult': 1,\n",
      "          'savage': 1,\n",
      "          'harvest': 1,\n",
      "          'conducted': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wrestling': 8,\n",
      "          'rumble': 6,\n",
      "          'ready': 5,\n",
      "          'something': 4,\n",
      "          'king': 4,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'comedy': 3,\n",
      "          'jokes': 3,\n",
      "          'like': 3,\n",
      "          'even': 3,\n",
      "          'professional': 3,\n",
      "          'nbut': 3,\n",
      "          'sean': 3,\n",
      "          'wcw': 3,\n",
      "          'nitro': 3,\n",
      "          'gordie': 3,\n",
      "          'wrestler': 2,\n",
      "          'calling': 2,\n",
      "          'raw': 2,\n",
      "          'sewage': 2,\n",
      "          'fact': 2,\n",
      "          'champion': 2,\n",
      "          'thing': 2,\n",
      "          'hair': 2,\n",
      "          'theres': 2,\n",
      "          'dedicated': 2,\n",
      "          'robbins': 2,\n",
      "          'humor': 2,\n",
      "          'memories': 2,\n",
      "          'ngordie': 2,\n",
      "          'david': 2,\n",
      "          'take': 2,\n",
      "          'nby': 2,\n",
      "          'particularly': 2,\n",
      "          'platt': 2,\n",
      "          'fans': 2,\n",
      "          'lot': 2,\n",
      "          'lowbrow': 2,\n",
      "          'ni': 2,\n",
      "          'nthe': 2,\n",
      "          'action': 2,\n",
      "          'ring': 2,\n",
      "          'brings': 2,\n",
      "          'one': 2,\n",
      "          'wrestlers': 2,\n",
      "          'blow': 2,\n",
      "          'arquettes': 2,\n",
      "          '80year': 1,\n",
      "          'old': 1,\n",
      "          'woman': 1,\n",
      "          'jumps': 1,\n",
      "          'enthusiastically': 1,\n",
      "          'couch': 1,\n",
      "          'wearing': 1,\n",
      "          'tightfitting': 1,\n",
      "          'leather': 1,\n",
      "          'cheers': 1,\n",
      "          'favorite': 1,\n",
      "          'tv': 1,\n",
      "          'opponent': 1,\n",
      "          'pumpbitch': 1,\n",
      "          'ntwo': 1,\n",
      "          'men': 1,\n",
      "          'messily': 1,\n",
      "          'eat': 1,\n",
      "          'fast': 1,\n",
      "          'food': 1,\n",
      "          'septic': 1,\n",
      "          'truck': 1,\n",
      "          'leaks': 1,\n",
      "          'directly': 1,\n",
      "          'behind': 1,\n",
      "          'nand': 1,\n",
      "          'roughly': 1,\n",
      "          '17': 1,\n",
      "          'people': 1,\n",
      "          'booted': 1,\n",
      "          'crotch': 1,\n",
      "          'nwelcome': 1,\n",
      "          'njudging': 1,\n",
      "          'pottymouth': 1,\n",
      "          'adam': 1,\n",
      "          'sandler': 1,\n",
      "          'reigning': 1,\n",
      "          'boxoffice': 1,\n",
      "          'realize': 1,\n",
      "          'albeit': 1,\n",
      "          'shaking': 1,\n",
      "          'head': 1,\n",
      "          'yes': 1,\n",
      "          'audience': 1,\n",
      "          'sort': 1,\n",
      "          'nladies': 1,\n",
      "          'gentlemen': 1,\n",
      "          'weep': 1,\n",
      "          'society': 1,\n",
      "          'nmind': 1,\n",
      "          'executed': 1,\n",
      "          'style': 1,\n",
      "          'comic': 1,\n",
      "          'ingenuity': 1,\n",
      "          'alarming': 1,\n",
      "          'bodily': 1,\n",
      "          'fluid': 1,\n",
      "          'mistaken': 1,\n",
      "          'gel': 1,\n",
      "          'mary': 1,\n",
      "          'laxativeinduced': 1,\n",
      "          'attack': 1,\n",
      "          'explosive': 1,\n",
      "          'diarrhea': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'extremely': 1,\n",
      "          'funny': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'helmed': 1,\n",
      "          'farrelly': 1,\n",
      "          'brothers': 1,\n",
      "          'bolstered': 1,\n",
      "          'script': 1,\n",
      "          'accommodates': 1,\n",
      "          'viewer': 1,\n",
      "          'anything': 1,\n",
      "          'remotely': 1,\n",
      "          'clever': 1,\n",
      "          'inspired': 1,\n",
      "          'nready': 1,\n",
      "          'built': 1,\n",
      "          'around': 1,\n",
      "          'fanbase': 1,\n",
      "          'nwhich': 1,\n",
      "          'sounded': 1,\n",
      "          'fine': 1,\n",
      "          'concept': 1,\n",
      "          'goofball': 1,\n",
      "          'director': 1,\n",
      "          'brian': 1,\n",
      "          'screenwriter': 1,\n",
      "          'steven': 1,\n",
      "          'brill': 1,\n",
      "          'handcuff': 1,\n",
      "          'limited': 1,\n",
      "          'stampede': 1,\n",
      "          'asinine': 1,\n",
      "          'humdrum': 1,\n",
      "          'bathroom': 1,\n",
      "          'basically': 1,\n",
      "          'manage': 1,\n",
      "          'evoke': 1,\n",
      "          'pauly': 1,\n",
      "          'shore': 1,\n",
      "          'bio': 1,\n",
      "          'dome': 1,\n",
      "          'boggs': 1,\n",
      "          'arquette': 1,\n",
      "          'dawkins': 1,\n",
      "          'scott': 1,\n",
      "          'caan': 1,\n",
      "          'pride': 1,\n",
      "          'hardcore': 1,\n",
      "          'fanatics': 1,\n",
      "          'day': 1,\n",
      "          'transport': 1,\n",
      "          'night': 1,\n",
      "          'monday': 1,\n",
      "          'pay': 1,\n",
      "          'homage': 1,\n",
      "          'personal': 1,\n",
      "          'hero': 1,\n",
      "          'savior': 1,\n",
      "          'jimmy': 1,\n",
      "          'oliver': 1,\n",
      "          'undisputed': 1,\n",
      "          'leader': 1,\n",
      "          'community': 1,\n",
      "          'nwith': 1,\n",
      "          'two': 1,\n",
      "          'tickets': 1,\n",
      "          'upcoming': 1,\n",
      "          'performance': 1,\n",
      "          'psyched': 1,\n",
      "          'witnessing': 1,\n",
      "          'defend': 1,\n",
      "          'title': 1,\n",
      "          'firsthand': 1,\n",
      "          'unscrupulous': 1,\n",
      "          'boxing': 1,\n",
      "          'kingpin': 1,\n",
      "          'titus': 1,\n",
      "          'sinclair': 1,\n",
      "          'joe': 1,\n",
      "          'pantoliano': 1,\n",
      "          'sporting': 1,\n",
      "          'long': 1,\n",
      "          'cowboy': 1,\n",
      "          'boots': 1,\n",
      "          'plans': 1,\n",
      "          'nsinclair': 1,\n",
      "          'plotting': 1,\n",
      "          'diamond': 1,\n",
      "          'dallas': 1,\n",
      "          'page': 1,\n",
      "          'playing': 1,\n",
      "          'pummel': 1,\n",
      "          'tarp': 1,\n",
      "          'thereby': 1,\n",
      "          'dethroning': 1,\n",
      "          'dignified': 1,\n",
      "          'embarrassing': 1,\n",
      "          'front': 1,\n",
      "          'bewildered': 1,\n",
      "          'auditorium': 1,\n",
      "          'full': 1,\n",
      "          'shocked': 1,\n",
      "          'rioting': 1,\n",
      "          'madly': 1,\n",
      "          'arguing': 1,\n",
      "          'isnt': 1,\n",
      "          'payper': 1,\n",
      "          'view': 1,\n",
      "          'event': 1,\n",
      "          'nthey': 1,\n",
      "          'upon': 1,\n",
      "          'track': 1,\n",
      "          'supply': 1,\n",
      "          'encouragement': 1,\n",
      "          'essential': 1,\n",
      "          'fallen': 1,\n",
      "          'idol': 1,\n",
      "          'make': 1,\n",
      "          'comeback': 1,\n",
      "          'attempt': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'expect': 1,\n",
      "          'sh': 1,\n",
      "          'well': 1,\n",
      "          'nyou': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'rasslin': 1,\n",
      "          'aficionado': 1,\n",
      "          'b': 1,\n",
      "          'fan': 1,\n",
      "          'lowest': 1,\n",
      "          'comedies': 1,\n",
      "          'welcome': 1,\n",
      "          'open': 1,\n",
      "          'arms': 1,\n",
      "          'fresh': 1,\n",
      "          'resourceful': 1,\n",
      "          'nrumble': 1,\n",
      "          'nothing': 1,\n",
      "          'sloppy': 1,\n",
      "          'frightfully': 1,\n",
      "          'unfunny': 1,\n",
      "          'swamp': 1,\n",
      "          'land': 1,\n",
      "          'misbegotten': 1,\n",
      "          'retardation': 1,\n",
      "          'first': 1,\n",
      "          'halfhour': 1,\n",
      "          'ultimate': 1,\n",
      "          'test': 1,\n",
      "          'patience': 1,\n",
      "          'nluckily': 1,\n",
      "          'simpleminded': 1,\n",
      "          'events': 1,\n",
      "          'pick': 1,\n",
      "          'steam': 1,\n",
      "          'wellchoreographed': 1,\n",
      "          'ndirector': 1,\n",
      "          'showed': 1,\n",
      "          'knack': 1,\n",
      "          'capturing': 1,\n",
      "          'brutality': 1,\n",
      "          'excitement': 1,\n",
      "          'football': 1,\n",
      "          'varsity': 1,\n",
      "          'blues': 1,\n",
      "          'work': 1,\n",
      "          'violence': 1,\n",
      "          'excessive': 1,\n",
      "          'nhaving': 1,\n",
      "          'fake': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'turn': 1,\n",
      "          'bloody': 1,\n",
      "          'skirmish': 1,\n",
      "          'back': 1,\n",
      "          'unfortunate': 1,\n",
      "          'owen': 1,\n",
      "          'harts': 1,\n",
      "          'tragic': 1,\n",
      "          'accident': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'especially': 1,\n",
      "          'characters': 1,\n",
      "          'dive': 1,\n",
      "          'cage': 1,\n",
      "          'match': 1,\n",
      "          'nthis': 1,\n",
      "          'want': 1,\n",
      "          'reminiscent': 1,\n",
      "          'noutside': 1,\n",
      "          'lewd': 1,\n",
      "          'puerile': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'bring': 1,\n",
      "          'new': 1,\n",
      "          'meaning': 1,\n",
      "          'term': 1,\n",
      "          'scattershot': 1,\n",
      "          'dialogue': 1,\n",
      "          'fluctuates': 1,\n",
      "          'vulgarity': 1,\n",
      "          'scale': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'brills': 1,\n",
      "          'extensive': 1,\n",
      "          'vocabulary': 1,\n",
      "          'ranging': 1,\n",
      "          'diddly': 1,\n",
      "          'boob': 1,\n",
      "          'final': 1,\n",
      "          'tally': 1,\n",
      "          'chuckled': 1,\n",
      "          'times': 1,\n",
      "          'groaned': 1,\n",
      "          'indulged': 1,\n",
      "          'spirited': 1,\n",
      "          'belly': 1,\n",
      "          'laugh': 1,\n",
      "          'involving': 1,\n",
      "          'martin': 1,\n",
      "          'landau': 1,\n",
      "          'geriatric': 1,\n",
      "          'coach': 1,\n",
      "          'fights': 1,\n",
      "          'pretty': 1,\n",
      "          'impressively': 1,\n",
      "          '105': 1,\n",
      "          'ncastingwise': 1,\n",
      "          'odd': 1,\n",
      "          'duck': 1,\n",
      "          'noliver': 1,\n",
      "          'figure': 1,\n",
      "          'nhes': 1,\n",
      "          'perhaps': 1,\n",
      "          'bit': 1,\n",
      "          'chunky': 1,\n",
      "          'fellow': 1,\n",
      "          'acknowledge': 1,\n",
      "          'fatty': 1,\n",
      "          'dampens': 1,\n",
      "          'suppose': 1,\n",
      "          'nrose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'fully': 1,\n",
      "          'disposable': 1,\n",
      "          'sultry': 1,\n",
      "          'cheerleader': 1,\n",
      "          'nirtoest': 1,\n",
      "          'girls': 1,\n",
      "          'proclaims': 1,\n",
      "          'extra': 1,\n",
      "          'pep': 1,\n",
      "          'added': 1,\n",
      "          'appearances': 1,\n",
      "          'goldberg': 1,\n",
      "          'macho': 1,\n",
      "          'man': 1,\n",
      "          'randy': 1,\n",
      "          'savage': 1,\n",
      "          'sting': 1,\n",
      "          'among': 1,\n",
      "          'others': 1,\n",
      "          'nwcw': 1,\n",
      "          'sure': 1,\n",
      "          'appreciate': 1,\n",
      "          'nothers': 1,\n",
      "          'nwell': 1,\n",
      "          'wont': 1,\n",
      "          'found': 1,\n",
      "          'merit': 1,\n",
      "          'bountiful': 1,\n",
      "          'energy': 1,\n",
      "          'finishing': 1,\n",
      "          'nahhh': 1,\n",
      "          'npraise': 1,\n",
      "          'film': 1,\n",
      "          'discovered': 1,\n",
      "          'annoying': 1,\n",
      "          'att': 1,\n",
      "          'television': 1,\n",
      "          'commercials': 1,\n",
      "          'nnow': 1,\n",
      "          'low': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'nthe': 5,\n",
      "          'like': 3,\n",
      "          'theater': 2,\n",
      "          'best': 2,\n",
      "          'sheedy': 2,\n",
      "          'henrikson': 2,\n",
      "          'nsheedy': 2,\n",
      "          'emax': 2,\n",
      "          'finds': 2,\n",
      "          'unleashes': 2,\n",
      "          'dog': 2,\n",
      "          'max': 2,\n",
      "          'animal': 2,\n",
      "          'take': 2,\n",
      "          'upon': 2,\n",
      "          'offers': 2,\n",
      "          'etc': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'rare': 1,\n",
      "          'treat': 1,\n",
      "          'quality': 1,\n",
      "          'horror': 1,\n",
      "          'released': 1,\n",
      "          'nand': 1,\n",
      "          'unfortunately': 1,\n",
      "          'mans': 1,\n",
      "          'friend': 1,\n",
      "          'well': 1,\n",
      "          'waiting': 1,\n",
      "          'longer': 1,\n",
      "          'stars': 1,\n",
      "          'ally': 1,\n",
      "          'lance': 1,\n",
      "          'tale': 1,\n",
      "          'biogenetics': 1,\n",
      "          'gone': 1,\n",
      "          'wrong': 1,\n",
      "          'plays': 1,\n",
      "          'nosy': 1,\n",
      "          'reporter': 1,\n",
      "          'whose': 1,\n",
      "          'need': 1,\n",
      "          'good': 1,\n",
      "          'story': 1,\n",
      "          'provokes': 1,\n",
      "          'snoop': 1,\n",
      "          'inside': 1,\n",
      "          'poorly': 1,\n",
      "          'guarded': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'biolab': 1,\n",
      "          'effortlessly': 1,\n",
      "          'intruding': 1,\n",
      "          'result': 1,\n",
      "          'experimental': 1,\n",
      "          'wonder': 1,\n",
      "          'named': 1,\n",
      "          'german': 1,\n",
      "          'shepherd': 1,\n",
      "          'genetic': 1,\n",
      "          'recombination': 1,\n",
      "          'allowing': 1,\n",
      "          'swallow': 1,\n",
      "          'snake': 1,\n",
      "          'camouflage': 1,\n",
      "          'chameleon': 1,\n",
      "          'climb': 1,\n",
      "          'trees': 1,\n",
      "          'leopard': 1,\n",
      "          'attack': 1,\n",
      "          'strength': 1,\n",
      "          'tiger': 1,\n",
      "          'nmax': 1,\n",
      "          'takes': 1,\n",
      "          'liking': 1,\n",
      "          'protecting': 1,\n",
      "          'cruel': 1,\n",
      "          'technological': 1,\n",
      "          'realm': 1,\n",
      "          'owned': 1,\n",
      "          'nwell': 1,\n",
      "          'doesnt': 1,\n",
      "          'long': 1,\n",
      "          'hormonally': 1,\n",
      "          'unstable': 1,\n",
      "          'biohazard': 1,\n",
      "          'jowls': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'suburban': 1,\n",
      "          'landscape': 1,\n",
      "          'juicy': 1,\n",
      "          'leg': 1,\n",
      "          'mailman': 1,\n",
      "          'boring': 1,\n",
      "          'nonpresence': 1,\n",
      "          'screen': 1,\n",
      "          'tripping': 1,\n",
      "          'enormous': 1,\n",
      "          'plot': 1,\n",
      "          'chasms': 1,\n",
      "          'neglected': 1,\n",
      "          'writerdirector': 1,\n",
      "          'apologize': 1,\n",
      "          'lack': 1,\n",
      "          'credits': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'eager': 1,\n",
      "          'leave': 1,\n",
      "          'rush': 1,\n",
      "          'forgot': 1,\n",
      "          'note': 1,\n",
      "          'director': 1,\n",
      "          'writer': 1,\n",
      "          'producer': 1,\n",
      "          'nhenrikson': 1,\n",
      "          'offered': 1,\n",
      "          'relief': 1,\n",
      "          'contrived': 1,\n",
      "          'narration': 1,\n",
      "          'script': 1,\n",
      "          'giving': 1,\n",
      "          'character': 1,\n",
      "          'much': 1,\n",
      "          'development': 1,\n",
      "          'could': 1,\n",
      "          'considering': 1,\n",
      "          'flat': 1,\n",
      "          'dialogue': 1,\n",
      "          'plaguing': 1,\n",
      "          'movie': 1,\n",
      "          'depends': 1,\n",
      "          'ability': 1,\n",
      "          'impress': 1,\n",
      "          'audience': 1,\n",
      "          'presents': 1,\n",
      "          'growl': 1,\n",
      "          'open': 1,\n",
      "          'door': 1,\n",
      "          'handles': 1,\n",
      "          'paw': 1,\n",
      "          'sit': 1,\n",
      "          'roll': 1,\n",
      "          'play': 1,\n",
      "          'dead': 1,\n",
      "          'sick': 1,\n",
      "          'rest': 1,\n",
      "          'poor': 1,\n",
      "          'found': 1,\n",
      "          'offensive': 1,\n",
      "          'attains': 1,\n",
      "          'submediocrity': 1,\n",
      "          'unambitious': 1,\n",
      "          'nhorror': 1,\n",
      "          'fans': 1,\n",
      "          'might': 1,\n",
      "          'find': 1,\n",
      "          'cujo': 1,\n",
      "          'better': 1,\n",
      "          'bite': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'joe': 18,\n",
      "          'meg': 9,\n",
      "          'ryan': 9,\n",
      "          'island': 7,\n",
      "          'volcano': 6,\n",
      "          'one': 6,\n",
      "          'movie': 6,\n",
      "          'boat': 6,\n",
      "          'nthe': 5,\n",
      "          'nbut': 4,\n",
      "          'also': 4,\n",
      "          'thing': 3,\n",
      "          'go': 3,\n",
      "          'nit': 3,\n",
      "          'cast': 3,\n",
      "          'tom': 3,\n",
      "          'hanks': 3,\n",
      "          'nthis': 3,\n",
      "          'like': 3,\n",
      "          'njoe': 3,\n",
      "          'brain': 3,\n",
      "          'cloud': 3,\n",
      "          'natives': 3,\n",
      "          'nby': 3,\n",
      "          'goes': 3,\n",
      "          'nthey': 3,\n",
      "          'soda': 3,\n",
      "          'really': 2,\n",
      "          'made': 2,\n",
      "          'would': 2,\n",
      "          'roles': 2,\n",
      "          'stupid': 2,\n",
      "          'sequence': 2,\n",
      "          'office': 2,\n",
      "          'na': 2,\n",
      "          'takes': 2,\n",
      "          'job': 2,\n",
      "          'doctor': 2,\n",
      "          'months': 2,\n",
      "          'nwhen': 2,\n",
      "          'meets': 2,\n",
      "          'graynamore': 2,\n",
      "          'ngraynamore': 2,\n",
      "          'tells': 2,\n",
      "          'get': 2,\n",
      "          'trip': 2,\n",
      "          'everything': 2,\n",
      "          'day': 2,\n",
      "          'graynamores': 2,\n",
      "          'daughters': 2,\n",
      "          'gets': 2,\n",
      "          'another': 2,\n",
      "          'nand': 2,\n",
      "          'sail': 2,\n",
      "          'orange': 2,\n",
      "          'cheap': 2,\n",
      "          'shark': 2,\n",
      "          'luggage': 2,\n",
      "          'versus': 1,\n",
      "          'worse': 1,\n",
      "          'movies': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'strangest': 1,\n",
      "          'think': 1,\n",
      "          'nothing': 1,\n",
      "          'wrong': 1,\n",
      "          'solid': 1,\n",
      "          'lead': 1,\n",
      "          'never': 1,\n",
      "          'judge': 1,\n",
      "          'nif': 1,\n",
      "          'good': 1,\n",
      "          'vs': 1,\n",
      "          'plot': 1,\n",
      "          'original': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'incredibly': 1,\n",
      "          'begins': 1,\n",
      "          'going': 1,\n",
      "          'work': 1,\n",
      "          'opening': 1,\n",
      "          'boring': 1,\n",
      "          'slow': 1,\n",
      "          'shows': 1,\n",
      "          'walking': 1,\n",
      "          'way': 1,\n",
      "          'wait': 1,\n",
      "          'long': 1,\n",
      "          'line': 1,\n",
      "          'passing': 1,\n",
      "          'strange': 1,\n",
      "          'slightly': 1,\n",
      "          'depressing': 1,\n",
      "          'scenery': 1,\n",
      "          'obnoxious': 1,\n",
      "          'lighting': 1,\n",
      "          'take': 1,\n",
      "          '2': 1,\n",
      "          'minutes': 1,\n",
      "          'nhere': 1,\n",
      "          '5': 1,\n",
      "          'obvious': 1,\n",
      "          'hates': 1,\n",
      "          'nat': 1,\n",
      "          'coworkers': 1,\n",
      "          'noddly': 1,\n",
      "          'enough': 1,\n",
      "          'plays': 1,\n",
      "          '3': 1,\n",
      "          'different': 1,\n",
      "          'leaves': 1,\n",
      "          'doctors': 1,\n",
      "          'appointment': 1,\n",
      "          'nhis': 1,\n",
      "          'informs': 1,\n",
      "          'means': 1,\n",
      "          'die': 1,\n",
      "          'nso': 1,\n",
      "          'nquit': 1,\n",
      "          'course': 1,\n",
      "          'arrives': 1,\n",
      "          'home': 1,\n",
      "          'old': 1,\n",
      "          'man': 1,\n",
      "          'named': 1,\n",
      "          'lloyd': 1,\n",
      "          'bridges': 1,\n",
      "          'order': 1,\n",
      "          'important': 1,\n",
      "          'mineral': 1,\n",
      "          'company': 1,\n",
      "          'need': 1,\n",
      "          'someone': 1,\n",
      "          'sacrifice': 1,\n",
      "          'please': 1,\n",
      "          'fire': 1,\n",
      "          'god': 1,\n",
      "          'startling': 1,\n",
      "          'coincidence': 1,\n",
      "          'time': 1,\n",
      "          'reaches': 1,\n",
      "          'almost': 1,\n",
      "          'dead': 1,\n",
      "          'anyway': 1,\n",
      "          'agrees': 1,\n",
      "          'gives': 1,\n",
      "          'credit': 1,\n",
      "          'card': 1,\n",
      "          'buy': 1,\n",
      "          'needs': 1,\n",
      "          'great': 1,\n",
      "          'adventure': 1,\n",
      "          'date': 1,\n",
      "          'coworker': 1,\n",
      "          'nshe': 1,\n",
      "          'surprise': 1,\n",
      "          'nexcept': 1,\n",
      "          'looks': 1,\n",
      "          'hippyish': 1,\n",
      "          'dinner': 1,\n",
      "          'next': 1,\n",
      "          'driven': 1,\n",
      "          'lady': 1,\n",
      "          'sails': 1,\n",
      "          'wonder': 1,\n",
      "          'wonders': 1,\n",
      "          'played': 1,\n",
      "          'nas': 1,\n",
      "          'craving': 1,\n",
      "          'nafter': 1,\n",
      "          'talking': 1,\n",
      "          'scenes': 1,\n",
      "          'deduce': 1,\n",
      "          'went': 1,\n",
      "          'plently': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'voyage': 1,\n",
      "          'fishing': 1,\n",
      "          'catches': 1,\n",
      "          'hammerhead': 1,\n",
      "          'gag': 1,\n",
      "          'pulled': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'top': 1,\n",
      "          'obviously': 1,\n",
      "          'rubber': 1,\n",
      "          'fake': 1,\n",
      "          'none': 1,\n",
      "          'night': 1,\n",
      "          'storm': 1,\n",
      "          'cheaplooking': 1,\n",
      "          'lightning': 1,\n",
      "          'bolt': 1,\n",
      "          'strikes': 1,\n",
      "          'overboard': 1,\n",
      "          'nfortunately': 1,\n",
      "          'manage': 1,\n",
      "          'find': 1,\n",
      "          'brought': 1,\n",
      "          'pure': 1,\n",
      "          'luck': 1,\n",
      "          'nsince': 1,\n",
      "          'wear': 1,\n",
      "          'cans': 1,\n",
      "          'attire': 1,\n",
      "          'nstupid': 1,\n",
      "          'n': 1,\n",
      "          'leaps': 1,\n",
      "          'fed': 1,\n",
      "          'nright': 1,\n",
      "          'jumps': 1,\n",
      "          'pleads': 1,\n",
      "          'decides': 1,\n",
      "          'loves': 1,\n",
      "          'nnow': 1,\n",
      "          'end': 1,\n",
      "          'unfortunately': 1,\n",
      "          'cheesy': 1,\n",
      "          'ending': 1,\n",
      "          'bug': 1,\n",
      "          'comes': 1,\n",
      "          'blows': 1,\n",
      "          'couple': 1,\n",
      "          'ocean': 1,\n",
      "          'land': 1,\n",
      "          'joes': 1,\n",
      "          'float': 1,\n",
      "          'part': 1,\n",
      "          'watch': 1,\n",
      "          'lava': 1,\n",
      "          'pouring': 1,\n",
      "          'towards': 1,\n",
      "          'villagers': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'nsee': 1,\n",
      "          'youre': 1,\n",
      "          'film': 1,\n",
      "          'buff': 1,\n",
      "          'enjoys': 1,\n",
      "          'bad': 1,\n",
      "          'every': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 5,\n",
      "          'willis': 4,\n",
      "          'funny': 4,\n",
      "          'career': 4,\n",
      "          'perrys': 4,\n",
      "          'perry': 3,\n",
      "          'whole': 3,\n",
      "          'nine': 3,\n",
      "          'yards': 3,\n",
      "          'characters': 3,\n",
      "          'unflattering': 3,\n",
      "          'natasha': 2,\n",
      "          'henstridge': 2,\n",
      "          'matthew': 2,\n",
      "          'made': 2,\n",
      "          'married': 2,\n",
      "          'nif': 2,\n",
      "          'comedy': 2,\n",
      "          'simply': 2,\n",
      "          'certainly': 2,\n",
      "          'film': 2,\n",
      "          'much': 2,\n",
      "          'type': 2,\n",
      "          'next': 2,\n",
      "          'doesnt': 2,\n",
      "          'offensive': 2,\n",
      "          'might': 2,\n",
      "          'sight': 2,\n",
      "          'films': 2,\n",
      "          'nwhen': 2,\n",
      "          'wonder': 2,\n",
      "          'arquette': 2,\n",
      "          'plays': 2,\n",
      "          'bruce': 2,\n",
      "          'gentle': 1,\n",
      "          'urges': 1,\n",
      "          'havent': 1,\n",
      "          'love': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'neither': 1,\n",
      "          'rebuts': 1,\n",
      "          'im': 1,\n",
      "          'jonathan': 1,\n",
      "          'lynns': 1,\n",
      "          'latest': 1,\n",
      "          'relied': 1,\n",
      "          'jokes': 1,\n",
      "          'caliberand': 1,\n",
      "          'triesthen': 1,\n",
      "          'itd': 1,\n",
      "          'innocuous': 1,\n",
      "          'rather': 1,\n",
      "          'obvious': 1,\n",
      "          'little': 1,\n",
      "          'ninstead': 1,\n",
      "          'failings': 1,\n",
      "          'go': 1,\n",
      "          'deeper': 1,\n",
      "          'nfirst': 1,\n",
      "          'hasnt': 1,\n",
      "          'enough': 1,\n",
      "          'tough': 1,\n",
      "          'wiseguy': 1,\n",
      "          'intimidates': 1,\n",
      "          'timid': 1,\n",
      "          'wise': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'guy': 1,\n",
      "          'genre': 1,\n",
      "          'want': 1,\n",
      "          'make': 1,\n",
      "          'pretty': 1,\n",
      "          'penny': 1,\n",
      "          'two': 1,\n",
      "          'hollywood': 1,\n",
      "          'nowadays': 1,\n",
      "          'write': 1,\n",
      "          'pairs': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'nirojames': 1,\n",
      "          'caanbruce': 1,\n",
      "          'billy': 1,\n",
      "          'crystalhugh': 1,\n",
      "          'grantmatthew': 1,\n",
      "          'wait': 1,\n",
      "          'royalties': 1,\n",
      "          'roll': 1,\n",
      "          'nwhos': 1,\n",
      "          'njack': 1,\n",
      "          'nicholson': 1,\n",
      "          'martin': 1,\n",
      "          'short': 1,\n",
      "          'nit': 1,\n",
      "          'particularly': 1,\n",
      "          'borderline': 1,\n",
      "          'noffensive': 1,\n",
      "          'way': 1,\n",
      "          'continues': 1,\n",
      "          'trend': 1,\n",
      "          'poking': 1,\n",
      "          'fun': 1,\n",
      "          'criminals': 1,\n",
      "          'wouldnt': 1,\n",
      "          'think': 1,\n",
      "          'twice': 1,\n",
      "          'pushing': 1,\n",
      "          'motherinlaw': 1,\n",
      "          'brooklyn': 1,\n",
      "          'bridge': 1,\n",
      "          'feet': 1,\n",
      "          'encased': 1,\n",
      "          'concrete': 1,\n",
      "          'nthat': 1,\n",
      "          'sound': 1,\n",
      "          'like': 1,\n",
      "          'gag': 1,\n",
      "          'problem': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'lost': 1,\n",
      "          'fact': 1,\n",
      "          'taking': 1,\n",
      "          'human': 1,\n",
      "          'life': 1,\n",
      "          'isnt': 1,\n",
      "          'begin': 1,\n",
      "          'corpse': 1,\n",
      "          'placed': 1,\n",
      "          'car': 1,\n",
      "          'doused': 1,\n",
      "          'gasoline': 1,\n",
      "          'set': 1,\n",
      "          'ablaze': 1,\n",
      "          'referred': 1,\n",
      "          'barbecue': 1,\n",
      "          'makes': 1,\n",
      "          'playing': 1,\n",
      "          'killing': 1,\n",
      "          'laughs': 1,\n",
      "          'going': 1,\n",
      "          'end': 1,\n",
      "          'also': 1,\n",
      "          'three': 1,\n",
      "          'central': 1,\n",
      "          'female': 1,\n",
      "          'portrayed': 1,\n",
      "          'nothing': 1,\n",
      "          'sex': 1,\n",
      "          'objects': 1,\n",
      "          'nrosanna': 1,\n",
      "          'slutty': 1,\n",
      "          'chainsmoking': 1,\n",
      "          'french': 1,\n",
      "          'canadian': 1,\n",
      "          'whos': 1,\n",
      "          'nonetoosuccessful': 1,\n",
      "          'dentist': 1,\n",
      "          'nits': 1,\n",
      "          'role': 1,\n",
      "          'outfitsand': 1,\n",
      "          'situationsinto': 1,\n",
      "          'thrust': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'species': 1,\n",
      "          'ii': 1,\n",
      "          'welltodo': 1,\n",
      "          'wife': 1,\n",
      "          'contract': 1,\n",
      "          'killer': 1,\n",
      "          'nshe': 1,\n",
      "          'gets': 1,\n",
      "          'involved': 1,\n",
      "          'character': 1,\n",
      "          'comes': 1,\n",
      "          'chicago': 1,\n",
      "          'hoping': 1,\n",
      "          'negotiate': 1,\n",
      "          'finders': 1,\n",
      "          'fee': 1,\n",
      "          'mob': 1,\n",
      "          'boss': 1,\n",
      "          'yanni': 1,\n",
      "          'gogolack': 1,\n",
      "          'kevin': 1,\n",
      "          'pollack': 1,\n",
      "          'transposing': 1,\n",
      "          'vs': 1,\n",
      "          'ws': 1,\n",
      "          'jimmy': 1,\n",
      "          'tulip': 1,\n",
      "          'tudeski': 1,\n",
      "          'moves': 1,\n",
      "          'door': 1,\n",
      "          'nhenstridge': 1,\n",
      "          'hitting': 1,\n",
      "          'likely': 1,\n",
      "          'demi': 1,\n",
      "          'getting': 1,\n",
      "          'back': 1,\n",
      "          'together': 1,\n",
      "          'nperry': 1,\n",
      "          'charm': 1,\n",
      "          'physical': 1,\n",
      "          'attributes': 1,\n",
      "          'traditional': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'especially': 1,\n",
      "          'closeup': 1,\n",
      "          'nmost': 1,\n",
      "          'objectified': 1,\n",
      "          'bunch': 1,\n",
      "          'amanda': 1,\n",
      "          'peet': 1,\n",
      "          'turns': 1,\n",
      "          'sexuallyripe': 1,\n",
      "          'performance': 1,\n",
      "          'dental': 1,\n",
      "          'assistant': 1,\n",
      "          'transpires': 1,\n",
      "          'questionable': 1,\n",
      "          'goals': 1,\n",
      "          'npeets': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nude': 1,\n",
      "          'scene': 1,\n",
      "          'proves': 1,\n",
      "          'low': 1,\n",
      "          'movie': 1,\n",
      "          'stoop': 1,\n",
      "          'keep': 1,\n",
      "          'audience': 1,\n",
      "          'dropping': 1,\n",
      "          'cousin': 1,\n",
      "          'vinny': 1,\n",
      "          'highpoint': 1,\n",
      "          'directorial': 1,\n",
      "          'including': 1,\n",
      "          'forgettable': 1,\n",
      "          'clue': 1,\n",
      "          'greedy': 1,\n",
      "          'sgt': 1,\n",
      "          'nbilko': 1,\n",
      "          'lynn': 1,\n",
      "          'chose': 1,\n",
      "          'wrong': 1,\n",
      "          'path': 1,\n",
      "          'nperrys': 1,\n",
      "          'pratfalling': 1,\n",
      "          'goofiness': 1,\n",
      "          'coupled': 1,\n",
      "          'likable': 1,\n",
      "          'hardness': 1,\n",
      "          'could': 1,\n",
      "          'potential': 1,\n",
      "          'script': 1,\n",
      "          'work': 1,\n",
      "          'director': 1,\n",
      "          'seems': 1,\n",
      "          'watching': 1,\n",
      "          'wings': 1,\n",
      "          'run': 1,\n",
      "          'gas': 1,\n",
      "          'quickly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 14,\n",
      "          'flubber': 8,\n",
      "          'like': 6,\n",
      "          'disney': 5,\n",
      "          'really': 5,\n",
      "          'absent': 4,\n",
      "          'minded': 4,\n",
      "          'college': 4,\n",
      "          'hes': 4,\n",
      "          'jungle': 4,\n",
      "          'something': 4,\n",
      "          'enough': 3,\n",
      "          'else': 3,\n",
      "          'could': 3,\n",
      "          'great': 3,\n",
      "          'n': 3,\n",
      "          'probably': 3,\n",
      "          'professor': 3,\n",
      "          'played': 3,\n",
      "          'flying': 3,\n",
      "          'plot': 3,\n",
      "          'forgotten': 3,\n",
      "          'wedding': 3,\n",
      "          'times': 3,\n",
      "          'philips': 3,\n",
      "          'bad': 3,\n",
      "          'even': 3,\n",
      "          'films': 3,\n",
      "          'second': 2,\n",
      "          'remake': 2,\n",
      "          'adaptation': 2,\n",
      "          'hysterically': 2,\n",
      "          'kind': 2,\n",
      "          'entertaining': 2,\n",
      "          'nwhat': 2,\n",
      "          'magic': 2,\n",
      "          'instead': 2,\n",
      "          'dead': 2,\n",
      "          'water': 2,\n",
      "          'know': 2,\n",
      "          'saw': 2,\n",
      "          'nthe': 2,\n",
      "          'new': 2,\n",
      "          'one': 2,\n",
      "          'basic': 2,\n",
      "          'elaborate': 2,\n",
      "          'make': 2,\n",
      "          'worse': 2,\n",
      "          'around': 2,\n",
      "          'philip': 2,\n",
      "          'robin': 2,\n",
      "          'williams': 2,\n",
      "          'lots': 2,\n",
      "          'sadly': 2,\n",
      "          'nin': 2,\n",
      "          'sara': 2,\n",
      "          'shape': 2,\n",
      "          'nphilip': 2,\n",
      "          'save': 2,\n",
      "          'hoenicker': 2,\n",
      "          'ha': 2,\n",
      "          'cause': 2,\n",
      "          'subplot': 2,\n",
      "          'attempts': 2,\n",
      "          'whos': 2,\n",
      "          'good': 2,\n",
      "          'nand': 2,\n",
      "          'another': 2,\n",
      "          'nwhats': 2,\n",
      "          'pathetic': 2,\n",
      "          'need': 2,\n",
      "          'right': 2,\n",
      "          'essentially': 2,\n",
      "          'distribution': 2,\n",
      "          'general': 2,\n",
      "          '2': 2,\n",
      "          'much': 2,\n",
      "          'little': 2,\n",
      "          'laugh': 2,\n",
      "          'ni': 2,\n",
      "          'think': 2,\n",
      "          'respectable': 2,\n",
      "          'man': 2,\n",
      "          'brilliant': 2,\n",
      "          'actor': 2,\n",
      "          'live': 2,\n",
      "          'action': 2,\n",
      "          'best': 1,\n",
      "          'example': 1,\n",
      "          'take': 1,\n",
      "          'life': 1,\n",
      "          'distributed': 1,\n",
      "          'nits': 1,\n",
      "          'may': 1,\n",
      "          'slightly': 1,\n",
      "          'tiny': 1,\n",
      "          'kids': 1,\n",
      "          'anyone': 1,\n",
      "          'feel': 1,\n",
      "          'left': 1,\n",
      "          'boring': 1,\n",
      "          'slow': 1,\n",
      "          'incredibly': 1,\n",
      "          'lifeless': 1,\n",
      "          'cinematic': 1,\n",
      "          'shame': 1,\n",
      "          'nhypothetically': 1,\n",
      "          'mean': 1,\n",
      "          'classic': 1,\n",
      "          'never': 1,\n",
      "          'well': 1,\n",
      "          'fred': 1,\n",
      "          'mcmurray': 1,\n",
      "          'created': 1,\n",
      "          'erratic': 1,\n",
      "          'substance': 1,\n",
      "          'known': 1,\n",
      "          'rubber': 1,\n",
      "          'keeps': 1,\n",
      "          'appears': 1,\n",
      "          'added': 1,\n",
      "          'lot': 1,\n",
      "          'absentmindedness': 1,\n",
      "          'part': 1,\n",
      "          'proffessor': 1,\n",
      "          'villains': 1,\n",
      "          'several': 1,\n",
      "          'showstopping': 1,\n",
      "          'moments': 1,\n",
      "          'big': 1,\n",
      "          'rumba': 1,\n",
      "          'setups': 1,\n",
      "          'none': 1,\n",
      "          'better': 1,\n",
      "          'revolves': 1,\n",
      "          'brainerd': 1,\n",
      "          'creates': 1,\n",
      "          'inventions': 1,\n",
      "          'fact': 1,\n",
      "          'colleges': 1,\n",
      "          'president': 1,\n",
      "          'jean': 1,\n",
      "          'reynolds': 1,\n",
      "          'indie': 1,\n",
      "          'actress': 1,\n",
      "          'marcia': 1,\n",
      "          'gay': 1,\n",
      "          'harden': 1,\n",
      "          'two': 1,\n",
      "          'forgets': 1,\n",
      "          'beginning': 1,\n",
      "          'ndoesnt': 1,\n",
      "          'warrant': 1,\n",
      "          'mental': 1,\n",
      "          'treatment': 1,\n",
      "          'nanyway': 1,\n",
      "          'day': 1,\n",
      "          'third': 1,\n",
      "          'invents': 1,\n",
      "          'bounces': 1,\n",
      "          'everything': 1,\n",
      "          'super': 1,\n",
      "          'ball': 1,\n",
      "          'speed': 1,\n",
      "          'also': 1,\n",
      "          'change': 1,\n",
      "          'aliens': 1,\n",
      "          'form': 1,\n",
      "          'abyss': 1,\n",
      "          'believes': 1,\n",
      "          'invention': 1,\n",
      "          'fully': 1,\n",
      "          'realized': 1,\n",
      "          'threat': 1,\n",
      "          'shut': 1,\n",
      "          'millionaire': 1,\n",
      "          'tycoonvillain': 1,\n",
      "          'chester': 1,\n",
      "          'raymond': 1,\n",
      "          'j': 1,\n",
      "          'barry': 1,\n",
      "          'ironically': 1,\n",
      "          'brat': 1,\n",
      "          'son': 1,\n",
      "          'wheaton': 1,\n",
      "          'thought': 1,\n",
      "          'goes': 1,\n",
      "          'nthrough': 1,\n",
      "          'twist': 1,\n",
      "          'hoenickers': 1,\n",
      "          'goons': 1,\n",
      "          'named': 1,\n",
      "          'smith': 1,\n",
      "          'wesson': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'clancy': 1,\n",
      "          'brown': 1,\n",
      "          'ted': 1,\n",
      "          'levine': 1,\n",
      "          'needed': 1,\n",
      "          'pay': 1,\n",
      "          'check': 1,\n",
      "          'discover': 1,\n",
      "          'hard': 1,\n",
      "          'way': 1,\n",
      "          'try': 1,\n",
      "          'steal': 1,\n",
      "          'wants': 1,\n",
      "          'evil': 1,\n",
      "          'na': 1,\n",
      "          'involves': 1,\n",
      "          'win': 1,\n",
      "          'back': 1,\n",
      "          'angry': 1,\n",
      "          'reason': 1,\n",
      "          'seduced': 1,\n",
      "          'basically': 1,\n",
      "          'belloq': 1,\n",
      "          'wilson': 1,\n",
      "          'croft': 1,\n",
      "          'christopher': 1,\n",
      "          'mcdonald': 1,\n",
      "          'playing': 1,\n",
      "          'suaveyetunsuave': 1,\n",
      "          'asswhole': 1,\n",
      "          'daytimer': 1,\n",
      "          'robot': 1,\n",
      "          'weebo': 1,\n",
      "          'voiced': 1,\n",
      "          'oneandonly': 1,\n",
      "          'jodi': 1,\n",
      "          'benson': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'nyuckityyuck': 1,\n",
      "          'dull': 1,\n",
      "          'nyou': 1,\n",
      "          'dont': 1,\n",
      "          'cynical': 1,\n",
      "          'student': 1,\n",
      "          'able': 1,\n",
      "          'see': 1,\n",
      "          'long': 1,\n",
      "          'line': 1,\n",
      "          'cheap': 1,\n",
      "          'making': 1,\n",
      "          'quick': 1,\n",
      "          'buck': 1,\n",
      "          'become': 1,\n",
      "          'puff': 1,\n",
      "          'daddy': 1,\n",
      "          'industry': 1,\n",
      "          'halfassedly': 1,\n",
      "          'remixing': 1,\n",
      "          'classics': 1,\n",
      "          'nonclassics': 1,\n",
      "          'public': 1,\n",
      "          'eats': 1,\n",
      "          'nearlier': 1,\n",
      "          '97': 1,\n",
      "          'released': 1,\n",
      "          'awful': 1,\n",
      "          'french': 1,\n",
      "          'un': 1,\n",
      "          'indien': 1,\n",
      "          'dans': 1,\n",
      "          'la': 1,\n",
      "          'ville': 1,\n",
      "          'yeah': 1,\n",
      "          'improved': 1,\n",
      "          'original': 1,\n",
      "          'ndisneys': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'creatively': 1,\n",
      "          'rush': 1,\n",
      "          'ship': 1,\n",
      "          'give': 1,\n",
      "          'thing': 1,\n",
      "          'called': 1,\n",
      "          'nsuch': 1,\n",
      "          'scenes': 1,\n",
      "          'dancing': 1,\n",
      "          'car': 1,\n",
      "          'basketball': 1,\n",
      "          'team': 1,\n",
      "          'pretty': 1,\n",
      "          'sucks': 1,\n",
      "          'thanks': 1,\n",
      "          'carefully': 1,\n",
      "          'placed': 1,\n",
      "          'ending': 1,\n",
      "          'fail': 1,\n",
      "          'amaze': 1,\n",
      "          'delight': 1,\n",
      "          'people': 1,\n",
      "          'sat': 1,\n",
      "          'entire': 1,\n",
      "          'stone': 1,\n",
      "          'faced': 1,\n",
      "          'chuckling': 1,\n",
      "          'perhaps': 1,\n",
      "          'twice': 1,\n",
      "          'shaking': 1,\n",
      "          'head': 1,\n",
      "          'jokes': 1,\n",
      "          'nwho': 1,\n",
      "          'scene': 1,\n",
      "          'enters': 1,\n",
      "          'wrong': 1,\n",
      "          'classroom': 1,\n",
      "          'starts': 1,\n",
      "          'teaching': 1,\n",
      "          'chemistry': 1,\n",
      "          'ndidnt': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'help': 1,\n",
      "          'protagonist': 1,\n",
      "          'unfunny': 1,\n",
      "          'lovable': 1,\n",
      "          'professory': 1,\n",
      "          'dumb': 1,\n",
      "          'nwilliams': 1,\n",
      "          'comic': 1,\n",
      "          'okay': 1,\n",
      "          'given': 1,\n",
      "          'occasionally': 1,\n",
      "          'get': 1,\n",
      "          'hyper': 1,\n",
      "          'act': 1,\n",
      "          'sad': 1,\n",
      "          'nthose': 1,\n",
      "          'nbut': 1,\n",
      "          'supposed': 1,\n",
      "          'thrice': 1,\n",
      "          'nmaybe': 1,\n",
      "          'funny': 1,\n",
      "          'andor': 1,\n",
      "          '60s': 1,\n",
      "          'usually': 1,\n",
      "          'enjoy': 1,\n",
      "          'animated': 1,\n",
      "          'recent': 1,\n",
      "          'hercules': 1,\n",
      "          'lackluster': 1,\n",
      "          'theyve': 1,\n",
      "          'worst': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'nperhaps': 1,\n",
      "          'create': 1,\n",
      "          'nget': 1,\n",
      "          'writers': 1,\n",
      "          'write': 1,\n",
      "          'thats': 1,\n",
      "          'universally': 1,\n",
      "          'nfilms': 1,\n",
      "          'parent': 1,\n",
      "          'trap': 1,\n",
      "          'mary': 1,\n",
      "          'poppins': 1,\n",
      "          'latter': 1,\n",
      "          'case': 1,\n",
      "          'mix': 1,\n",
      "          'still': 1,\n",
      "          'watch': 1,\n",
      "          'theyre': 1,\n",
      "          'written': 1,\n",
      "          'magical': 1,\n",
      "          'children': 1,\n",
      "          'fun': 1,\n",
      "          'adults': 1,\n",
      "          'torturous': 1,\n",
      "          'taking': 1,\n",
      "          'child': 1,\n",
      "          'insults': 1,\n",
      "          'annoys': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'god': 1,\n",
      "          'couldnt': 1,\n",
      "          'done': 1,\n",
      "          'edie': 1,\n",
      "          'mcclurg': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'window': 5,\n",
      "          'going': 4,\n",
      "          'nhe': 4,\n",
      "          'away': 4,\n",
      "          'road': 4,\n",
      "          'nthe': 4,\n",
      "          'would': 4,\n",
      "          'main': 3,\n",
      "          'even': 3,\n",
      "          'far': 3,\n",
      "          'texas': 3,\n",
      "          'chainsaw': 3,\n",
      "          'massacre': 3,\n",
      "          'next': 3,\n",
      "          'generation': 3,\n",
      "          'family': 3,\n",
      "          'one': 3,\n",
      "          'little': 3,\n",
      "          'start': 2,\n",
      "          'review': 2,\n",
      "          'hypothetical': 2,\n",
      "          'question': 2,\n",
      "          'say': 2,\n",
      "          'driver': 2,\n",
      "          'unconscious': 2,\n",
      "          'go': 2,\n",
      "          'get': 2,\n",
      "          'help': 2,\n",
      "          'youre': 2,\n",
      "          'see': 2,\n",
      "          'victim': 2,\n",
      "          'na': 2,\n",
      "          'comes': 2,\n",
      "          'truck': 2,\n",
      "          'ndo': 2,\n",
      "          'run': 2,\n",
      "          'staying': 2,\n",
      "          'answered': 2,\n",
      "          'film': 2,\n",
      "          'really': 2,\n",
      "          'remake': 2,\n",
      "          'original': 2,\n",
      "          'ntheres': 2,\n",
      "          'scene': 2,\n",
      "          'nowhere': 2,\n",
      "          'leatherface': 2,\n",
      "          'nin': 2,\n",
      "          'wheel': 2,\n",
      "          'people': 2,\n",
      "          'stunt': 2,\n",
      "          'double': 2,\n",
      "          'many': 2,\n",
      "          'fact': 2,\n",
      "          'instead': 2,\n",
      "          'shows': 2,\n",
      "          'contains': 2,\n",
      "          'im': 1,\n",
      "          'nlets': 1,\n",
      "          'youve': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'vehicle': 1,\n",
      "          'nyour': 1,\n",
      "          'friends': 1,\n",
      "          'left': 1,\n",
      "          'waiting': 1,\n",
      "          'wakes': 1,\n",
      "          'towtruck': 1,\n",
      "          'along': 1,\n",
      "          'hops': 1,\n",
      "          'whats': 1,\n",
      "          'proceeds': 1,\n",
      "          'kill': 1,\n",
      "          'snapping': 1,\n",
      "          'neck': 1,\n",
      "          'screaming': 1,\n",
      "          'life': 1,\n",
      "          'nb': 1,\n",
      "          'fast': 1,\n",
      "          'stay': 1,\n",
      "          'madman': 1,\n",
      "          'starts': 1,\n",
      "          'following': 1,\n",
      "          'stop': 1,\n",
      "          'catch': 1,\n",
      "          'breath': 1,\n",
      "          'try': 1,\n",
      "          'negotiate': 1,\n",
      "          'psycho': 1,\n",
      "          'fails': 1,\n",
      "          'running': 1,\n",
      "          'nif': 1,\n",
      "          'intelligent': 1,\n",
      "          'screenwriter': 1,\n",
      "          'likely': 1,\n",
      "          'hate': 1,\n",
      "          'nhowever': 1,\n",
      "          'b': 1,\n",
      "          'prepare': 1,\n",
      "          'enjoy': 1,\n",
      "          'made': 1,\n",
      "          'idiots': 1,\n",
      "          'like': 1,\n",
      "          'mind': 1,\n",
      "          'n': 1,\n",
      "          'called': 1,\n",
      "          'sequel': 1,\n",
      "          'changes': 1,\n",
      "          'essentially': 1,\n",
      "          'infamous': 1,\n",
      "          'meathook': 1,\n",
      "          'recreated': 1,\n",
      "          'story': 1,\n",
      "          'opens': 1,\n",
      "          'four': 1,\n",
      "          'teenagers': 1,\n",
      "          'hitting': 1,\n",
      "          'night': 1,\n",
      "          'prom': 1,\n",
      "          'somehow': 1,\n",
      "          'ending': 1,\n",
      "          'middle': 1,\n",
      "          'nneedless': 1,\n",
      "          'soon': 1,\n",
      "          'encounter': 1,\n",
      "          'nutty': 1,\n",
      "          'nmuch': 1,\n",
      "          'carnage': 1,\n",
      "          'ensues': 1,\n",
      "          'nto': 1,\n",
      "          'call': 1,\n",
      "          'inept': 1,\n",
      "          'putting': 1,\n",
      "          'mildly': 1,\n",
      "          'addition': 1,\n",
      "          'laughably': 1,\n",
      "          'idiotic': 1,\n",
      "          'situation': 1,\n",
      "          'mentioned': 1,\n",
      "          'moment': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'baddies': 1,\n",
      "          'killed': 1,\n",
      "          'airplane': 1,\n",
      "          'literally': 1,\n",
      "          'nit': 1,\n",
      "          'swoops': 1,\n",
      "          'kills': 1,\n",
      "          'nno': 1,\n",
      "          'explantion': 1,\n",
      "          'given': 1,\n",
      "          'flying': 1,\n",
      "          'heshe': 1,\n",
      "          'around': 1,\n",
      "          'killing': 1,\n",
      "          'planes': 1,\n",
      "          'dialogue': 1,\n",
      "          'atrocious': 1,\n",
      "          'nzellwegger': 1,\n",
      "          'kidnapped': 1,\n",
      "          'early': 1,\n",
      "          'keeps': 1,\n",
      "          'trying': 1,\n",
      "          'normal': 1,\n",
      "          'conversations': 1,\n",
      "          'nwhen': 1,\n",
      "          'surrounded': 1,\n",
      "          'maniacs': 1,\n",
      "          'wielding': 1,\n",
      "          'chainsaws': 1,\n",
      "          'dead': 1,\n",
      "          'corpses': 1,\n",
      "          'think': 1,\n",
      "          'rationality': 1,\n",
      "          'nspeaking': 1,\n",
      "          'zellwegger': 1,\n",
      "          'jumps': 1,\n",
      "          'napparently': 1,\n",
      "          'trouble': 1,\n",
      "          'visibly': 1,\n",
      "          'gets': 1,\n",
      "          'stuck': 1,\n",
      "          'director': 1,\n",
      "          'quickly': 1,\n",
      "          'cuts': 1,\n",
      "          'wide': 1,\n",
      "          'shot': 1,\n",
      "          'doesnt': 1,\n",
      "          'caught': 1,\n",
      "          'nthis': 1,\n",
      "          'glaring': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'nthere': 1,\n",
      "          'name': 1,\n",
      "          'several': 1,\n",
      "          'pages': 1,\n",
      "          'long': 1,\n",
      "          'reason': 1,\n",
      "          'giving': 1,\n",
      "          'star': 1,\n",
      "          'stars': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'plays': 1,\n",
      "          'member': 1,\n",
      "          'hydraulic': 1,\n",
      "          'leg': 1,\n",
      "          'homemade': 1,\n",
      "          'might': 1,\n",
      "          'add': 1,\n",
      "          'completely': 1,\n",
      "          'overthetop': 1,\n",
      "          'cant': 1,\n",
      "          'amazed': 1,\n",
      "          'performance': 1,\n",
      "          'obviously': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'part': 1,\n",
      "          'makes': 1,\n",
      "          'jack': 1,\n",
      "          'nicholsons': 1,\n",
      "          'portrayal': 1,\n",
      "          'psychotic': 1,\n",
      "          'inn': 1,\n",
      "          'keeper': 1,\n",
      "          'shining': 1,\n",
      "          'look': 1,\n",
      "          'restrained': 1,\n",
      "          'comparison': 1,\n",
      "          'nfor': 1,\n",
      "          'horror': 1,\n",
      "          'surprisingly': 1,\n",
      "          'gore': 1,\n",
      "          'none': 1,\n",
      "          'blood': 1,\n",
      "          'thats': 1,\n",
      "          'goes': 1,\n",
      "          'nwhich': 1,\n",
      "          'leads': 1,\n",
      "          'believe': 1,\n",
      "          'budget': 1,\n",
      "          'must': 1,\n",
      "          'astonishingly': 1,\n",
      "          'low': 1,\n",
      "          'neverything': 1,\n",
      "          'looks': 1,\n",
      "          'cheap': 1,\n",
      "          'sets': 1,\n",
      "          'costumes': 1,\n",
      "          'nespecially': 1,\n",
      "          'nonce': 1,\n",
      "          'frightening': 1,\n",
      "          'nightmare': 1,\n",
      "          'inducing': 1,\n",
      "          'hes': 1,\n",
      "          'terrifying': 1,\n",
      "          'dame': 1,\n",
      "          'edna': 1,\n",
      "          'favor': 1,\n",
      "          'take': 1,\n",
      "          'pass': 1,\n",
      "          'ncheck': 1,\n",
      "          'superior': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'session': 3,\n",
      "          '9': 3,\n",
      "          'danvers': 3,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'films': 2,\n",
      "          'hospital': 2,\n",
      "          'structure': 2,\n",
      "          'time': 2,\n",
      "          'anderson': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'usa': 1,\n",
      "          'nsometimes': 1,\n",
      "          'get': 1,\n",
      "          'bargained': 1,\n",
      "          'like': 1,\n",
      "          'bostonbased': 1,\n",
      "          'hazmat': 1,\n",
      "          'elimination': 1,\n",
      "          'run': 1,\n",
      "          'scottish': 1,\n",
      "          'actor': 1,\n",
      "          'peter': 1,\n",
      "          'mullan': 1,\n",
      "          'trusty': 1,\n",
      "          'assistant': 1,\n",
      "          'david': 1,\n",
      "          'caruso': 1,\n",
      "          'assures': 1,\n",
      "          'town': 1,\n",
      "          'engineer': 1,\n",
      "          'paul': 1,\n",
      "          'guilifoyle': 1,\n",
      "          'remove': 1,\n",
      "          'insidious': 1,\n",
      "          'asbestos': 1,\n",
      "          'fibers': 1,\n",
      "          'victorian': 1,\n",
      "          'facility': 1,\n",
      "          'week': 1,\n",
      "          'nerected': 1,\n",
      "          '1871': 1,\n",
      "          'deserted': 1,\n",
      "          'decomposing': 1,\n",
      "          'since': 1,\n",
      "          '1985': 1,\n",
      "          'mental': 1,\n",
      "          'malevolent': 1,\n",
      "          'locations': 1,\n",
      "          'ever': 1,\n",
      "          'chosen': 1,\n",
      "          'film': 1,\n",
      "          'massive': 1,\n",
      "          'labyrinth': 1,\n",
      "          'rubblestrewn': 1,\n",
      "          'corridors': 1,\n",
      "          'collapsing': 1,\n",
      "          'floors': 1,\n",
      "          'stagnant': 1,\n",
      "          'pools': 1,\n",
      "          'water': 1,\n",
      "          'isolation': 1,\n",
      "          'cells': 1,\n",
      "          'ominous': 1,\n",
      "          'surgical': 1,\n",
      "          'chambers': 1,\n",
      "          'experimental': 1,\n",
      "          'prefrontal': 1,\n",
      "          'lobotomies': 1,\n",
      "          'performed': 1,\n",
      "          'task': 1,\n",
      "          'seems': 1,\n",
      "          'impossible': 1,\n",
      "          'within': 1,\n",
      "          'frame': 1,\n",
      "          'nand': 1,\n",
      "          'member': 1,\n",
      "          'inexperienced': 1,\n",
      "          'crew': 1,\n",
      "          'stephan': 1,\n",
      "          'gevedon': 1,\n",
      "          'brandon': 1,\n",
      "          'sexton': 1,\n",
      "          'iii': 1,\n",
      "          'josh': 1,\n",
      "          'lucas': 1,\n",
      "          'coping': 1,\n",
      "          'personal': 1,\n",
      "          'demons': 1,\n",
      "          'minds': 1,\n",
      "          'seem': 1,\n",
      "          'affected': 1,\n",
      "          'grim': 1,\n",
      "          'areas': 1,\n",
      "          'theyre': 1,\n",
      "          'working': 1,\n",
      "          'title': 1,\n",
      "          'derived': 1,\n",
      "          'salvaged': 1,\n",
      "          'reeltoreel': 1,\n",
      "          'audiorecorded': 1,\n",
      "          'sessions': 1,\n",
      "          'involving': 1,\n",
      "          'demonic': 1,\n",
      "          'possession': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'suffering': 1,\n",
      "          'multiple': 1,\n",
      "          'personalities': 1,\n",
      "          'nby': 1,\n",
      "          'occurs': 1,\n",
      "          'dreadful': 1,\n",
      "          'disasters': 1,\n",
      "          'nfilmmaker': 1,\n",
      "          'brad': 1,\n",
      "          'obviously': 1,\n",
      "          'envisioned': 1,\n",
      "          'gruesome': 1,\n",
      "          'chainsawmassacretype': 1,\n",
      "          'ghost': 1,\n",
      "          'story': 1,\n",
      "          'script': 1,\n",
      "          'lacks': 1,\n",
      "          'isnt': 1,\n",
      "          'particularly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'scary': 1,\n",
      "          'conclusion': 1,\n",
      "          'ludicrous': 1,\n",
      "          'convincing': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'dark': 1,\n",
      "          'gloomy': 1,\n",
      "          '4': 1,\n",
      "          'silly': 1,\n",
      "          'nfirst': 1,\n",
      "          'thought': 1,\n",
      "          'original': 1,\n",
      "          'name': 1,\n",
      "          'lunatic': 1,\n",
      "          'asylum': 1,\n",
      "          'bore': 1,\n",
      "          'reference': 1,\n",
      "          'mrs': 1,\n",
      "          'creepy': 1,\n",
      "          'housekeeper': 1,\n",
      "          'played': 1,\n",
      "          'judith': 1,\n",
      "          'alfred': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'truly': 1,\n",
      "          'terrifying': 1,\n",
      "          'rebecca': 1,\n",
      "          'also': 1,\n",
      "          'involved': 1,\n",
      "          'cavernous': 1,\n",
      "          'mansion': 1,\n",
      "          'called': 1,\n",
      "          'manderley': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'switchback': 5,\n",
      "          'olmstead': 5,\n",
      "          'one': 5,\n",
      "          'quaid': 4,\n",
      "          'stuart': 4,\n",
      "          'good': 4,\n",
      "          'lacrosse': 4,\n",
      "          'time': 3,\n",
      "          'two': 3,\n",
      "          'leto': 3,\n",
      "          'glover': 3,\n",
      "          'work': 3,\n",
      "          'determined': 3,\n",
      "          'man': 3,\n",
      "          'like': 3,\n",
      "          'film': 3,\n",
      "          'dennis': 2,\n",
      "          'star': 2,\n",
      "          'first': 2,\n",
      "          'story': 2,\n",
      "          'nthe': 2,\n",
      "          'amarillo': 2,\n",
      "          'texas': 2,\n",
      "          'sheriff': 2,\n",
      "          'r': 2,\n",
      "          'lee': 2,\n",
      "          'ermey': 2,\n",
      "          'place': 2,\n",
      "          'struggle': 2,\n",
      "          'becomes': 2,\n",
      "          'grimly': 2,\n",
      "          'fbi': 2,\n",
      "          'agent': 2,\n",
      "          'nlacrosse': 2,\n",
      "          'killer': 2,\n",
      "          'tracking': 2,\n",
      "          'reason': 2,\n",
      "          'knows': 2,\n",
      "          'killers': 2,\n",
      "          'game': 2,\n",
      "          'tell': 2,\n",
      "          'hes': 2,\n",
      "          'na': 2,\n",
      "          'character': 2,\n",
      "          'looks': 2,\n",
      "          'nits': 2,\n",
      "          'would': 2,\n",
      "          'early': 2,\n",
      "          'far': 2,\n",
      "          'stale': 2,\n",
      "          'predictable': 2,\n",
      "          'willing': 2,\n",
      "          'away': 2,\n",
      "          'ostensible': 1,\n",
      "          'makes': 1,\n",
      "          'appearance': 1,\n",
      "          '22minute': 1,\n",
      "          'mark': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'wondering': 1,\n",
      "          'bothered': 1,\n",
      "          'nafter': 1,\n",
      "          'writerdirector': 1,\n",
      "          'jeb': 1,\n",
      "          'already': 1,\n",
      "          'set': 1,\n",
      "          'fairly': 1,\n",
      "          'promising': 1,\n",
      "          'pair': 1,\n",
      "          'parallel': 1,\n",
      "          'lines': 1,\n",
      "          'finds': 1,\n",
      "          'buck': 1,\n",
      "          'facing': 1,\n",
      "          'hotlycontested': 1,\n",
      "          'election': 1,\n",
      "          'battle': 1,\n",
      "          'brutal': 1,\n",
      "          'double': 1,\n",
      "          'homicide': 1,\n",
      "          'discovered': 1,\n",
      "          'motel': 1,\n",
      "          'jurisdiction': 1,\n",
      "          'nas': 1,\n",
      "          'begins': 1,\n",
      "          'investigation': 1,\n",
      "          'also': 1,\n",
      "          'meet': 1,\n",
      "          'men': 1,\n",
      "          'come': 1,\n",
      "          'prime': 1,\n",
      "          'suspects': 1,\n",
      "          'nlane': 1,\n",
      "          'dixon': 1,\n",
      "          'jared': 1,\n",
      "          'enigmatic': 1,\n",
      "          'young': 1,\n",
      "          'hitchhiker': 1,\n",
      "          'bob': 1,\n",
      "          'goodall': 1,\n",
      "          'danny': 1,\n",
      "          'jovial': 1,\n",
      "          'motorist': 1,\n",
      "          'offers': 1,\n",
      "          'lane': 1,\n",
      "          'ride': 1,\n",
      "          'utah': 1,\n",
      "          'destination': 1,\n",
      "          'nall': 1,\n",
      "          'necessary': 1,\n",
      "          'conflicts': 1,\n",
      "          'seem': 1,\n",
      "          'internal': 1,\n",
      "          'clash': 1,\n",
      "          'politics': 1,\n",
      "          'police': 1,\n",
      "          'external': 1,\n",
      "          'travelers': 1,\n",
      "          'eventually': 1,\n",
      "          'villain': 1,\n",
      "          'others': 1,\n",
      "          'protagonist': 1,\n",
      "          'nbut': 1,\n",
      "          'shows': 1,\n",
      "          'frank': 1,\n",
      "          'certain': 1,\n",
      "          'murders': 1,\n",
      "          'serial': 1,\n",
      "          'nearly': 1,\n",
      "          'years': 1,\n",
      "          'nhes': 1,\n",
      "          'supposed': 1,\n",
      "          'according': 1,\n",
      "          'bureau': 1,\n",
      "          'theyve': 1,\n",
      "          'got': 1,\n",
      "          'important': 1,\n",
      "          'believing': 1,\n",
      "          'otherwise': 1,\n",
      "          'ntwo': 1,\n",
      "          'months': 1,\n",
      "          'earlier': 1,\n",
      "          'lacrosses': 1,\n",
      "          'son': 1,\n",
      "          'kidnapped': 1,\n",
      "          'boy': 1,\n",
      "          'yet': 1,\n",
      "          'turn': 1,\n",
      "          'anywhere': 1,\n",
      "          'still': 1,\n",
      "          'somewhere': 1,\n",
      "          'trying': 1,\n",
      "          'continue': 1,\n",
      "          'nit': 1,\n",
      "          'wouldnt': 1,\n",
      "          'fair': 1,\n",
      "          'reduce': 1,\n",
      "          'everything': 1,\n",
      "          'thats': 1,\n",
      "          'wrong': 1,\n",
      "          'quaids': 1,\n",
      "          'presence': 1,\n",
      "          'pretty': 1,\n",
      "          'start': 1,\n",
      "          'ntheres': 1,\n",
      "          'feels': 1,\n",
      "          'intruder': 1,\n",
      "          'narrative': 1,\n",
      "          'instead': 1,\n",
      "          'vital': 1,\n",
      "          'center': 1,\n",
      "          'dramatic': 1,\n",
      "          'actor': 1,\n",
      "          'possesses': 1,\n",
      "          'exactly': 1,\n",
      "          'facial': 1,\n",
      "          'expression': 1,\n",
      "          'vocal': 1,\n",
      "          'intonation': 1,\n",
      "          'nwe': 1,\n",
      "          'face': 1,\n",
      "          'perpetual': 1,\n",
      "          'tightjawed': 1,\n",
      "          'sourpuss': 1,\n",
      "          'pucker': 1,\n",
      "          'grim': 1,\n",
      "          'every': 1,\n",
      "          'word': 1,\n",
      "          'comes': 1,\n",
      "          'eastwoodesque': 1,\n",
      "          'rasp': 1,\n",
      "          'flexible': 1,\n",
      "          'performer': 1,\n",
      "          'might': 1,\n",
      "          'given': 1,\n",
      "          'weight': 1,\n",
      "          'pulling': 1,\n",
      "          'audience': 1,\n",
      "          'haunted': 1,\n",
      "          'intensity': 1,\n",
      "          'making': 1,\n",
      "          '_his_': 1,\n",
      "          'nquaid': 1,\n",
      "          'merely': 1,\n",
      "          'annoyed': 1,\n",
      "          'slightly': 1,\n",
      "          'constipated': 1,\n",
      "          'tough': 1,\n",
      "          'become': 1,\n",
      "          'emotionally': 1,\n",
      "          'invested': 1,\n",
      "          'characters': 1,\n",
      "          'turmoil': 1,\n",
      "          'really': 1,\n",
      "          'needs': 1,\n",
      "          'big': 1,\n",
      "          'bowl': 1,\n",
      "          'bran': 1,\n",
      "          'flakes': 1,\n",
      "          'neven': 1,\n",
      "          'without': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'stayed': 1,\n",
      "          'course': 1,\n",
      "          'scenes': 1,\n",
      "          'lively': 1,\n",
      "          'energy': 1,\n",
      "          'building': 1,\n",
      "          'curiosity': 1,\n",
      "          'taciturn': 1,\n",
      "          'kid': 1,\n",
      "          'gregarious': 1,\n",
      "          'benefactor': 1,\n",
      "          'real': 1,\n",
      "          'threat': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'tips': 1,\n",
      "          'hand': 1,\n",
      "          'pitch': 1,\n",
      "          'individual': 1,\n",
      "          'performances': 1,\n",
      "          'facts': 1,\n",
      "          'chooses': 1,\n",
      "          'reveal': 1,\n",
      "          'nonce': 1,\n",
      "          'mystery': 1,\n",
      "          'identity': 1,\n",
      "          'dispatched': 1,\n",
      "          'interaction': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'describes': 1,\n",
      "          'direction': 1,\n",
      "          'takes': 1,\n",
      "          'general': 1,\n",
      "          'falling': 1,\n",
      "          'back': 1,\n",
      "          'fartoocommon': 1,\n",
      "          'hollywood': 1,\n",
      "          'devices': 1,\n",
      "          'cats': 1,\n",
      "          'jumping': 1,\n",
      "          'nowhere': 1,\n",
      "          'climactic': 1,\n",
      "          'fistfight': 1,\n",
      "          'board': 1,\n",
      "          'freight': 1,\n",
      "          'train': 1,\n",
      "          'edgy': 1,\n",
      "          'law': 1,\n",
      "          'enforcement': 1,\n",
      "          'agents': 1,\n",
      "          'bad': 1,\n",
      "          'wasnt': 1,\n",
      "          'spend': 1,\n",
      "          'interesting': 1,\n",
      "          'appealing': 1,\n",
      "          'nplayed': 1,\n",
      "          'atypical': 1,\n",
      "          'restraint': 1,\n",
      "          'wonderful': 1,\n",
      "          'unconventional': 1,\n",
      "          'hero': 1,\n",
      "          'seems': 1,\n",
      "          'genuinely': 1,\n",
      "          'comfortable': 1,\n",
      "          'accepting': 1,\n",
      "          'consequences': 1,\n",
      "          'acting': 1,\n",
      "          'convictions': 1,\n",
      "          'focusing': 1,\n",
      "          'signaled': 1,\n",
      "          'filmmaker': 1,\n",
      "          'take': 1,\n",
      "          'risks': 1,\n",
      "          'casting': 1,\n",
      "          'storytelling': 1,\n",
      "          'ninstead': 1,\n",
      "          'places': 1,\n",
      "          'trust': 1,\n",
      "          'name': 1,\n",
      "          'cant': 1,\n",
      "          'carry': 1,\n",
      "          'material': 1,\n",
      "          'nmaybe': 1,\n",
      "          'next': 1,\n",
      "          'hell': 1,\n",
      "          'throw': 1,\n",
      "          'crucial': 1,\n",
      "          'page': 1,\n",
      "          'script': 1,\n",
      "          'wanders': 1,\n",
      "          'onto': 1,\n",
      "          'scene': 1,\n",
      "          'muck': 1,\n",
      "          'perfectly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'arraki': 6,\n",
      "          'doom': 4,\n",
      "          'generation': 4,\n",
      "          'film': 4,\n",
      "          'tv': 4,\n",
      "          'nthe': 3,\n",
      "          'doesnt': 3,\n",
      "          'make': 3,\n",
      "          'lassez': 3,\n",
      "          'nmaybe': 3,\n",
      "          'ever': 2,\n",
      "          'see': 2,\n",
      "          'teen': 2,\n",
      "          'cameos': 2,\n",
      "          'wanted': 2,\n",
      "          'chance': 2,\n",
      "          'ni': 2,\n",
      "          'guy': 2,\n",
      "          'character': 2,\n",
      "          'dark': 2,\n",
      "          'movie': 2,\n",
      "          'around': 2,\n",
      "          'star': 2,\n",
      "          'nhe': 2,\n",
      "          'care': 2,\n",
      "          'time': 2,\n",
      "          'performance': 2,\n",
      "          'better': 2,\n",
      "          'like': 2,\n",
      "          'us': 2,\n",
      "          'im': 2,\n",
      "          'nif': 2,\n",
      "          'prefer': 2,\n",
      "          'gregg': 1,\n",
      "          'arakis': 1,\n",
      "          'possibly': 1,\n",
      "          'worst': 1,\n",
      "          'made': 1,\n",
      "          'nso': 1,\n",
      "          'latest': 1,\n",
      "          'bisexual': 1,\n",
      "          'angst': 1,\n",
      "          'opus': 1,\n",
      "          'nfirst': 1,\n",
      "          'reviews': 1,\n",
      "          'fairly': 1,\n",
      "          'positive': 1,\n",
      "          'nalso': 1,\n",
      "          'cast': 1,\n",
      "          'consisting': 1,\n",
      "          'dozens': 1,\n",
      "          'washed': 1,\n",
      "          'ex': 1,\n",
      "          'stars': 1,\n",
      "          'including': 1,\n",
      "          'christopher': 1,\n",
      "          'knight': 1,\n",
      "          'eve': 1,\n",
      "          'plumb': 1,\n",
      "          'shannen': 1,\n",
      "          'doherty': 1,\n",
      "          'david': 1,\n",
      "          'leisure': 1,\n",
      "          'promising': 1,\n",
      "          'nlast': 1,\n",
      "          'give': 1,\n",
      "          'one': 1,\n",
      "          'mean': 1,\n",
      "          'cant': 1,\n",
      "          'untalented': 1,\n",
      "          'answer': 1,\n",
      "          'question': 1,\n",
      "          'three': 1,\n",
      "          'letters': 1,\n",
      "          'long': 1,\n",
      "          'nnowhere': 1,\n",
      "          'follows': 1,\n",
      "          'wild': 1,\n",
      "          'odd': 1,\n",
      "          'journey': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'nsince': 1,\n",
      "          'know': 1,\n",
      "          'anything': 1,\n",
      "          'coherent': 1,\n",
      "          'hard': 1,\n",
      "          'describe': 1,\n",
      "          'plot': 1,\n",
      "          'nlets': 1,\n",
      "          'say': 1,\n",
      "          'spends': 1,\n",
      "          'bulk': 1,\n",
      "          'whining': 1,\n",
      "          'girlfriend': 1,\n",
      "          'wont': 1,\n",
      "          'commitment': 1,\n",
      "          'jealous': 1,\n",
      "          'sleeps': 1,\n",
      "          'guys': 1,\n",
      "          'girls': 1,\n",
      "          'remotely': 1,\n",
      "          'compelling': 1,\n",
      "          'storyline': 1,\n",
      "          'involves': 1,\n",
      "          'sarah': 1,\n",
      "          'encounter': 1,\n",
      "          'famous': 1,\n",
      "          'turns': 1,\n",
      "          'nice': 1,\n",
      "          'fame': 1,\n",
      "          'wishes': 1,\n",
      "          'could': 1,\n",
      "          'walk': 1,\n",
      "          'street': 1,\n",
      "          'without': 1,\n",
      "          'mobbed': 1,\n",
      "          'fans': 1,\n",
      "          'nthis': 1,\n",
      "          'story': 1,\n",
      "          'shocking': 1,\n",
      "          'twist': 1,\n",
      "          'tragic': 1,\n",
      "          'end': 1,\n",
      "          'coming': 1,\n",
      "          'nit': 1,\n",
      "          'first': 1,\n",
      "          'felt': 1,\n",
      "          'compassion': 1,\n",
      "          'created': 1,\n",
      "          'attributed': 1,\n",
      "          'appealing': 1,\n",
      "          'thought': 1,\n",
      "          'maybe': 1,\n",
      "          'improving': 1,\n",
      "          'craft': 1,\n",
      "          'works': 1,\n",
      "          'camera': 1,\n",
      "          'especially': 1,\n",
      "          'early': 1,\n",
      "          'scenes': 1,\n",
      "          'nhalfway': 1,\n",
      "          'didnt': 1,\n",
      "          'necessarily': 1,\n",
      "          'find': 1,\n",
      "          'enjoying': 1,\n",
      "          'seemed': 1,\n",
      "          'considerable': 1,\n",
      "          'improvement': 1,\n",
      "          'nthen': 1,\n",
      "          'went': 1,\n",
      "          'loses': 1,\n",
      "          'sensibility': 1,\n",
      "          'introduces': 1,\n",
      "          'exploding': 1,\n",
      "          'heads': 1,\n",
      "          'twisted': 1,\n",
      "          'sex': 1,\n",
      "          'games': 1,\n",
      "          'alien': 1,\n",
      "          'abductions': 1,\n",
      "          'nits': 1,\n",
      "          'sad': 1,\n",
      "          'almost': 1,\n",
      "          'actually': 1,\n",
      "          'decent': 1,\n",
      "          'material': 1,\n",
      "          'ruined': 1,\n",
      "          'usual': 1,\n",
      "          'face': 1,\n",
      "          'renegade': 1,\n",
      "          'maverick': 1,\n",
      "          'filmmaker': 1,\n",
      "          'look': 1,\n",
      "          'attitude': 1,\n",
      "          'performances': 1,\n",
      "          'generally': 1,\n",
      "          'isnt': 1,\n",
      "          'saying': 1,\n",
      "          'much': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'dont': 1,\n",
      "          'suffer': 1,\n",
      "          'jonathan': 1,\n",
      "          'hideous': 1,\n",
      "          'man': 1,\n",
      "          'america': 1,\n",
      "          'schaech': 1,\n",
      "          'nwe': 1,\n",
      "          'however': 1,\n",
      "          'treated': 1,\n",
      "          'another': 1,\n",
      "          'round': 1,\n",
      "          'james': 1,\n",
      "          'wooden': 1,\n",
      "          'keanu': 1,\n",
      "          'duval': 1,\n",
      "          'nsarah': 1,\n",
      "          'gives': 1,\n",
      "          'best': 1,\n",
      "          'kathleen': 1,\n",
      "          'robertson': 1,\n",
      "          'formerly': 1,\n",
      "          '90210': 1,\n",
      "          'arrakis': 1,\n",
      "          'wife': 1,\n",
      "          'rachel': 1,\n",
      "          'true': 1,\n",
      "          'talented': 1,\n",
      "          'actresses': 1,\n",
      "          'caught': 1,\n",
      "          'mess': 1,\n",
      "          'nof': 1,\n",
      "          'john': 1,\n",
      "          'ritter': 1,\n",
      "          'interesting': 1,\n",
      "          'deranged': 1,\n",
      "          'right': 1,\n",
      "          'wing': 1,\n",
      "          'evangelist': 1,\n",
      "          'nowhere': 1,\n",
      "          'way': 1,\n",
      "          'would': 1,\n",
      "          'assassinated': 1,\n",
      "          'receive': 1,\n",
      "          'constant': 1,\n",
      "          'physical': 1,\n",
      "          'torture': 1,\n",
      "          'greg': 1,\n",
      "          'want': 1,\n",
      "          'characters': 1,\n",
      "          'wants': 1,\n",
      "          'laugh': 1,\n",
      "          'fun': 1,\n",
      "          'try': 1,\n",
      "          'piss': 1,\n",
      "          'successful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 12,\n",
      "          'one': 8,\n",
      "          'school': 7,\n",
      "          'even': 6,\n",
      "          'nits': 6,\n",
      "          'behavior': 5,\n",
      "          'nthe': 5,\n",
      "          'good': 5,\n",
      "          'make': 5,\n",
      "          'high': 5,\n",
      "          'story': 4,\n",
      "          'like': 4,\n",
      "          'steve': 4,\n",
      "          'title': 3,\n",
      "          'go': 3,\n",
      "          'seems': 3,\n",
      "          'thought': 3,\n",
      "          'sequence': 3,\n",
      "          'ndisturbing': 3,\n",
      "          'interesting': 3,\n",
      "          'small': 3,\n",
      "          'town': 3,\n",
      "          'nhe': 3,\n",
      "          'last': 3,\n",
      "          'social': 3,\n",
      "          'group': 3,\n",
      "          'jocks': 3,\n",
      "          'actually': 3,\n",
      "          'things': 3,\n",
      "          'sense': 3,\n",
      "          'rosenberg': 3,\n",
      "          'script': 3,\n",
      "          'films': 3,\n",
      "          'never': 3,\n",
      "          'scene': 3,\n",
      "          'scenes': 3,\n",
      "          'write': 2,\n",
      "          'short': 2,\n",
      "          'think': 2,\n",
      "          'nit': 2,\n",
      "          'ni': 2,\n",
      "          'surprised': 2,\n",
      "          'got': 2,\n",
      "          'opening': 2,\n",
      "          'credits': 2,\n",
      "          'picture': 2,\n",
      "          'began': 2,\n",
      "          'course': 2,\n",
      "          'starts': 2,\n",
      "          'ends': 2,\n",
      "          'violence': 2,\n",
      "          'suspense': 2,\n",
      "          'disaster': 2,\n",
      "          'uninspired': 2,\n",
      "          'time': 2,\n",
      "          'played': 2,\n",
      "          'brother': 2,\n",
      "          'learn': 2,\n",
      "          'new': 2,\n",
      "          'nmarsden': 2,\n",
      "          'reject': 2,\n",
      "          'gavin': 2,\n",
      "          'holmes': 2,\n",
      "          'nso': 2,\n",
      "          'something': 2,\n",
      "          'explained': 2,\n",
      "          'comes': 2,\n",
      "          'however': 2,\n",
      "          'complete': 2,\n",
      "          'take': 2,\n",
      "          'pretty': 2,\n",
      "          'also': 2,\n",
      "          'lot': 2,\n",
      "          'nthere': 2,\n",
      "          'element': 2,\n",
      "          'see': 2,\n",
      "          'happening': 2,\n",
      "          'explains': 2,\n",
      "          'get': 2,\n",
      "          'greenwood': 2,\n",
      "          'way': 2,\n",
      "          'bad': 2,\n",
      "          'cafeteria': 2,\n",
      "          'points': 2,\n",
      "          'forced': 2,\n",
      "          'talent': 2,\n",
      "          'isnt': 2,\n",
      "          'wreck': 2,\n",
      "          'would': 2,\n",
      "          'sometimes': 1,\n",
      "          'decide': 1,\n",
      "          'poem': 1,\n",
      "          'first': 1,\n",
      "          'subject': 1,\n",
      "          'makers': 1,\n",
      "          'disturbing': 1,\n",
      "          'similar': 1,\n",
      "          'train': 1,\n",
      "          'came': 1,\n",
      "          'wouldnt': 1,\n",
      "          'couple': 1,\n",
      "          'guys': 1,\n",
      "          'together': 1,\n",
      "          'created': 1,\n",
      "          'someone': 1,\n",
      "          'saw': 1,\n",
      "          'made': 1,\n",
      "          'along': 1,\n",
      "          'ominous': 1,\n",
      "          'original': 1,\n",
      "          'engrossed': 1,\n",
      "          'nof': 1,\n",
      "          'attention': 1,\n",
      "          'dwindled': 1,\n",
      "          'shortly': 1,\n",
      "          'many': 1,\n",
      "          'thrillers': 1,\n",
      "          'laughably': 1,\n",
      "          'ridiculous': 1,\n",
      "          'teen': 1,\n",
      "          'horror': 1,\n",
      "          'sex': 1,\n",
      "          'evil': 1,\n",
      "          'speak': 1,\n",
      "          'listless': 1,\n",
      "          'barely': 1,\n",
      "          'misses': 1,\n",
      "          'onestardom': 1,\n",
      "          'sequences': 1,\n",
      "          'mercifully': 1,\n",
      "          'running': 1,\n",
      "          'terrific': 1,\n",
      "          'set': 1,\n",
      "          'nour': 1,\n",
      "          'main': 1,\n",
      "          'man': 1,\n",
      "          'fellow': 1,\n",
      "          'named': 1,\n",
      "          'clark': 1,\n",
      "          'blandly': 1,\n",
      "          'jimmy': 1,\n",
      "          'marsden': 1,\n",
      "          'moves': 1,\n",
      "          'family': 1,\n",
      "          'tragically': 1,\n",
      "          'shoots': 1,\n",
      "          'nsteve': 1,\n",
      "          'upset': 1,\n",
      "          'untimely': 1,\n",
      "          'death': 1,\n",
      "          'strange': 1,\n",
      "          'homevideo': 1,\n",
      "          'nightmares': 1,\n",
      "          'occasionally': 1,\n",
      "          'big': 1,\n",
      "          'trial': 1,\n",
      "          'fit': 1,\n",
      "          'friends': 1,\n",
      "          'looks': 1,\n",
      "          'stereotypical': 1,\n",
      "          'jock': 1,\n",
      "          'detail': 1,\n",
      "          'poor': 1,\n",
      "          'casting': 1,\n",
      "          'choice': 1,\n",
      "          'nas': 1,\n",
      "          'falls': 1,\n",
      "          'pretentious': 1,\n",
      "          'dopesmoking': 1,\n",
      "          'philosophers': 1,\n",
      "          'nick': 1,\n",
      "          'stahl': 1,\n",
      "          'rachel': 1,\n",
      "          'katie': 1,\n",
      "          'ngavin': 1,\n",
      "          'informs': 1,\n",
      "          'local': 1,\n",
      "          'known': 1,\n",
      "          'blue': 1,\n",
      "          'ribboners': 1,\n",
      "          'bunch': 1,\n",
      "          'zombies': 1,\n",
      "          'assimilating': 1,\n",
      "          'members': 1,\n",
      "          'sporadically': 1,\n",
      "          'killing': 1,\n",
      "          'innocent': 1,\n",
      "          'people': 1,\n",
      "          'mismatched': 1,\n",
      "          'protagonists': 1,\n",
      "          '1': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          '2': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'happened': 1,\n",
      "          'still': 1,\n",
      "          'doesnt': 1,\n",
      "          'written': 1,\n",
      "          'scott': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'name': 1,\n",
      "          'around': 1,\n",
      "          'recently': 1,\n",
      "          'toucheruppers': 1,\n",
      "          'armageddon': 1,\n",
      "          'imagine': 1,\n",
      "          'part': 1,\n",
      "          'knows': 1,\n",
      "          'hes': 1,\n",
      "          'screenwriting': 1,\n",
      "          'lapse': 1,\n",
      "          'judgement': 1,\n",
      "          'idea': 1,\n",
      "          'decided': 1,\n",
      "          'nevil': 1,\n",
      "          'common': 1,\n",
      "          'phantoms': 1,\n",
      "          'dismal': 1,\n",
      "          'failure': 1,\n",
      "          'takes': 1,\n",
      "          'skill': 1,\n",
      "          'formula': 1,\n",
      "          'work': 1,\n",
      "          'nrosenbergs': 1,\n",
      "          'mess': 1,\n",
      "          'lacking': 1,\n",
      "          'basic': 1,\n",
      "          'attempts': 1,\n",
      "          'characterization': 1,\n",
      "          'nand': 1,\n",
      "          'makes': 1,\n",
      "          'purpose': 1,\n",
      "          'finally': 1,\n",
      "          'supposed': 1,\n",
      "          'surprise': 1,\n",
      "          'exactly': 1,\n",
      "          'nthey': 1,\n",
      "          'strapped': 1,\n",
      "          'chairs': 1,\n",
      "          'microchip': 1,\n",
      "          'inserted': 1,\n",
      "          'eyes': 1,\n",
      "          'poof': 1,\n",
      "          'become': 1,\n",
      "          'sexcrazed': 1,\n",
      "          'superviolent': 1,\n",
      "          'machinelike': 1,\n",
      "          'creatures': 1,\n",
      "          'doctor': 1,\n",
      "          'responsible': 1,\n",
      "          'dr': 1,\n",
      "          'caldicott': 1,\n",
      "          'bruce': 1,\n",
      "          'must': 1,\n",
      "          'nuts': 1,\n",
      "          'thinking': 1,\n",
      "          'kind': 1,\n",
      "          'step': 1,\n",
      "          'behave': 1,\n",
      "          'perhaps': 1,\n",
      "          'realistic': 1,\n",
      "          'nmuch': 1,\n",
      "          'writing': 1,\n",
      "          'simply': 1,\n",
      "          'intuition': 1,\n",
      "          'kids': 1,\n",
      "          'act': 1,\n",
      "          'nin': 1,\n",
      "          'terrible': 1,\n",
      "          'cliques': 1,\n",
      "          'pointing': 1,\n",
      "          'nup': 1,\n",
      "          'front': 1,\n",
      "          'say': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'eat': 1,\n",
      "          'nthat': 1,\n",
      "          'aside': 1,\n",
      "          'various': 1,\n",
      "          'groups': 1,\n",
      "          'general': 1,\n",
      "          'uninteresting': 1,\n",
      "          'poorlyshown': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'nerds': 1,\n",
      "          'wearing': 1,\n",
      "          'glasses': 1,\n",
      "          'playing': 1,\n",
      "          'laptops': 1,\n",
      "          'obvious': 1,\n",
      "          'cliche': 1,\n",
      "          'cant': 1,\n",
      "          'believe': 1,\n",
      "          'bothered': 1,\n",
      "          'nmost': 1,\n",
      "          'dialogue': 1,\n",
      "          'says': 1,\n",
      "          'bite': 1,\n",
      "          'nanymore': 1,\n",
      "          'none': 1,\n",
      "          'degree': 1,\n",
      "          'wit': 1,\n",
      "          'nthis': 1,\n",
      "          'inspired': 1,\n",
      "          'flop': 1,\n",
      "          'momentum': 1,\n",
      "          'energy': 1,\n",
      "          'blame': 1,\n",
      "          'placed': 1,\n",
      "          'director': 1,\n",
      "          'david': 1,\n",
      "          'nutter': 1,\n",
      "          'apparently': 1,\n",
      "          'likes': 1,\n",
      "          'dry': 1,\n",
      "          'nhorror': 1,\n",
      "          'least': 1,\n",
      "          'exploit': 1,\n",
      "          'shockingly': 1,\n",
      "          'timid': 1,\n",
      "          'though': 1,\n",
      "          'trip': 1,\n",
      "          'insane': 1,\n",
      "          'asylum': 1,\n",
      "          'heroes': 1,\n",
      "          'bother': 1,\n",
      "          'liked': 1,\n",
      "          'janitor': 1,\n",
      "          'character': 1,\n",
      "          'william': 1,\n",
      "          'sadler': 1,\n",
      "          'lines': 1,\n",
      "          'surprisingly': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'acting': 1,\n",
      "          'largely': 1,\n",
      "          'waste': 1,\n",
      "          'said': 1,\n",
      "          'bland': 1,\n",
      "          'particularly': 1,\n",
      "          'nbruce': 1,\n",
      "          'shamelessly': 1,\n",
      "          'wasted': 1,\n",
      "          'nstahl': 1,\n",
      "          'show': 1,\n",
      "          'direction': 1,\n",
      "          'enough': 1,\n",
      "          'hone': 1,\n",
      "          'skills': 1,\n",
      "          'stahls': 1,\n",
      "          'performance': 1,\n",
      "          'parody': 1,\n",
      "          'potheads': 1,\n",
      "          'nnone': 1,\n",
      "          'characters': 1,\n",
      "          'expand': 1,\n",
      "          'beyond': 1,\n",
      "          'dimension': 1,\n",
      "          'frankly': 1,\n",
      "          'watching': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutouts': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'run': 1,\n",
      "          'hallways': 1,\n",
      "          'screaming': 1,\n",
      "          'cool': 1,\n",
      "          'started': 1,\n",
      "          'shooting': 1,\n",
      "          'nim': 1,\n",
      "          'producers': 1,\n",
      "          'read': 1,\n",
      "          'money': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'boring': 1,\n",
      "          'blatantly': 1,\n",
      "          'awful': 1,\n",
      "          'lump': 1,\n",
      "          'sure': 1,\n",
      "          'nicely': 1,\n",
      "          'regression': 1,\n",
      "          'total': 1,\n",
      "          'absurdity': 1,\n",
      "          'consistent': 1,\n",
      "          'outright': 1,\n",
      "          'laughable': 1,\n",
      "          'advice': 1,\n",
      "          'appreciate': 1,\n",
      "          'credit': 1,\n",
      "          'pray': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'crow': 6,\n",
      "          'lee': 5,\n",
      "          'n': 4,\n",
      "          'better': 4,\n",
      "          'book': 3,\n",
      "          'brandon': 3,\n",
      "          'hudson': 3,\n",
      "          'good': 3,\n",
      "          'film': 3,\n",
      "          'nthe': 3,\n",
      "          'one': 3,\n",
      "          'films': 3,\n",
      "          'david': 2,\n",
      "          'comic': 2,\n",
      "          'ernie': 2,\n",
      "          'michael': 2,\n",
      "          'wincott': 2,\n",
      "          'patrick': 2,\n",
      "          'rochelle': 2,\n",
      "          'davis': 2,\n",
      "          'polito': 2,\n",
      "          'like': 2,\n",
      "          'police': 2,\n",
      "          'death': 2,\n",
      "          'ndespite': 2,\n",
      "          'lees': 2,\n",
      "          'known': 2,\n",
      "          'draven': 2,\n",
      "          'also': 2,\n",
      "          'whose': 2,\n",
      "          'even': 2,\n",
      "          'gunshot': 2,\n",
      "          'batman': 2,\n",
      "          'nbut': 2,\n",
      "          'seem': 2,\n",
      "          'darkman': 2,\n",
      "          'though': 2,\n",
      "          'well': 2,\n",
      "          'makes': 2,\n",
      "          'written': 1,\n",
      "          'j': 1,\n",
      "          'schow': 1,\n",
      "          'john': 1,\n",
      "          'shirley': 1,\n",
      "          'based': 1,\n",
      "          'series': 1,\n",
      "          'strip': 1,\n",
      "          'james': 1,\n",
      "          'obarr': 1,\n",
      "          'ncast': 1,\n",
      "          'kelly': 1,\n",
      "          'jon': 1,\n",
      "          'nmpaa': 1,\n",
      "          'rating': 1,\n",
      "          'r': 1,\n",
      "          'presumably': 1,\n",
      "          'rape': 1,\n",
      "          'language': 1,\n",
      "          'violence': 1,\n",
      "          'nrunning': 1,\n",
      "          'time': 1,\n",
      "          '100': 1,\n",
      "          'minutes': 1,\n",
      "          'looks': 1,\n",
      "          'zigged': 1,\n",
      "          'shouldve': 1,\n",
      "          'zagged': 1,\n",
      "          'officer': 1,\n",
      "          'commenting': 1,\n",
      "          'suspicious': 1,\n",
      "          'ncomic': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'translations': 1,\n",
      "          'notorious': 1,\n",
      "          'tricky': 1,\n",
      "          'anyone': 1,\n",
      "          'doublebill': 1,\n",
      "          'punisher': 1,\n",
      "          'captain': 1,\n",
      "          'america': 1,\n",
      "          'proves': 1,\n",
      "          'exception': 1,\n",
      "          'gross': 1,\n",
      "          'intentions': 1,\n",
      "          'final': 1,\n",
      "          'doesnt': 1,\n",
      "          'fly': 1,\n",
      "          'high': 1,\n",
      "          'story': 1,\n",
      "          'opens': 1,\n",
      "          'halloween': 1,\n",
      "          'eve': 1,\n",
      "          'devils': 1,\n",
      "          'night': 1,\n",
      "          'nwilmingtonasdetroit': 1,\n",
      "          'flames': 1,\n",
      "          'tending': 1,\n",
      "          'least': 1,\n",
      "          'murder': 1,\n",
      "          'young': 1,\n",
      "          'rockmusicianturnedpavementartist': 1,\n",
      "          'eric': 1,\n",
      "          'found': 1,\n",
      "          'sidewalk': 1,\n",
      "          'sixstories': 1,\n",
      "          'apartment': 1,\n",
      "          'thrown': 1,\n",
      "          'cops': 1,\n",
      "          'upstairs': 1,\n",
      "          'administering': 1,\n",
      "          'aid': 1,\n",
      "          'fiance': 1,\n",
      "          'assaulted': 1,\n",
      "          'raped': 1,\n",
      "          'necessarily': 1,\n",
      "          'order': 1,\n",
      "          'nshe': 1,\n",
      "          'dies': 1,\n",
      "          'perps': 1,\n",
      "          'nescape': 1,\n",
      "          'exactly': 1,\n",
      "          'year': 1,\n",
      "          'later': 1,\n",
      "          'rises': 1,\n",
      "          'grave': 1,\n",
      "          'wreak': 1,\n",
      "          'revenge': 1,\n",
      "          'nsound': 1,\n",
      "          'familiar': 1,\n",
      "          'nunlike': 1,\n",
      "          'charles': 1,\n",
      "          'bronson': 1,\n",
      "          'superpower': 1,\n",
      "          'involves': 1,\n",
      "          'inability': 1,\n",
      "          'refrain': 1,\n",
      "          'filming': 1,\n",
      "          'wish': 1,\n",
      "          'sequels': 1,\n",
      "          'character': 1,\n",
      "          'supernatural': 1,\n",
      "          'strength': 1,\n",
      "          'amazing': 1,\n",
      "          'agility': 1,\n",
      "          'reheal': 1,\n",
      "          'wounds': 1,\n",
      "          'faster': 1,\n",
      "          'robert': 1,\n",
      "          'terminator': 1,\n",
      "          '2': 1,\n",
      "          'side': 1,\n",
      "          'presumable': 1,\n",
      "          'source': 1,\n",
      "          'powers': 1,\n",
      "          'related': 1,\n",
      "          'narration': 1,\n",
      "          'nwearing': 1,\n",
      "          'appears': 1,\n",
      "          'alice': 1,\n",
      "          'coopers': 1,\n",
      "          'leftover': 1,\n",
      "          'makeup': 1,\n",
      "          'plopped': 1,\n",
      "          'underlit': 1,\n",
      "          'urban': 1,\n",
      "          'landscape': 1,\n",
      "          'obviously': 1,\n",
      "          'modeled': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'number': 1,\n",
      "          'redlit': 1,\n",
      "          'rainsoaked': 1,\n",
      "          'streets': 1,\n",
      "          'compensate': 1,\n",
      "          'cheap': 1,\n",
      "          'fx': 1,\n",
      "          'make': 1,\n",
      "          'closer': 1,\n",
      "          'glaring': 1,\n",
      "          'miniatures': 1,\n",
      "          'show': 1,\n",
      "          'video': 1,\n",
      "          'na': 1,\n",
      "          'nod': 1,\n",
      "          'insult': 1,\n",
      "          'sam': 1,\n",
      "          'raimi': 1,\n",
      "          'alex': 1,\n",
      "          'proyas': 1,\n",
      "          'cant': 1,\n",
      "          'decent': 1,\n",
      "          'action': 1,\n",
      "          'scene': 1,\n",
      "          'save': 1,\n",
      "          'life': 1,\n",
      "          'nhis': 1,\n",
      "          'two': 1,\n",
      "          'best': 1,\n",
      "          'setpieces': 1,\n",
      "          'banzai': 1,\n",
      "          'boardroom': 1,\n",
      "          'butchery': 1,\n",
      "          'cool': 1,\n",
      "          'church': 1,\n",
      "          'roof': 1,\n",
      "          'sword': 1,\n",
      "          'fight': 1,\n",
      "          'undercut': 1,\n",
      "          'awful': 1,\n",
      "          'editing': 1,\n",
      "          'dov': 1,\n",
      "          'hoenig': 1,\n",
      "          'scott': 1,\n",
      "          'smith': 1,\n",
      "          'nblame': 1,\n",
      "          'said': 1,\n",
      "          'editors': 1,\n",
      "          'frightful': 1,\n",
      "          'flashbacks': 1,\n",
      "          'pace': 1,\n",
      "          'quick': 1,\n",
      "          'thank': 1,\n",
      "          'god': 1,\n",
      "          'every': 1,\n",
      "          'goodideaturnedbad': 1,\n",
      "          'begins': 1,\n",
      "          'cast': 1,\n",
      "          'nernie': 1,\n",
      "          'choice': 1,\n",
      "          'friendly': 1,\n",
      "          'policeman': 1,\n",
      "          'gets': 1,\n",
      "          'funnier': 1,\n",
      "          'lines': 1,\n",
      "          'nnewcomer': 1,\n",
      "          'narrator': 1,\n",
      "          'dravens': 1,\n",
      "          'scrappy': 1,\n",
      "          'ward': 1,\n",
      "          'njon': 1,\n",
      "          'small': 1,\n",
      "          'succulent': 1,\n",
      "          'role': 1,\n",
      "          'pungent': 1,\n",
      "          'pawnbroker': 1,\n",
      "          'nand': 1,\n",
      "          'distinct': 1,\n",
      "          'impression': 1,\n",
      "          'longhaired': 1,\n",
      "          'mr': 1,\n",
      "          'big': 1,\n",
      "          'collection': 1,\n",
      "          'ancientswords': 1,\n",
      "          'walked': 1,\n",
      "          'trailer': 1,\n",
      "          'highlander': 1,\n",
      "          'iii': 1,\n",
      "          'nthere': 1,\n",
      "          'nfinally': 1,\n",
      "          'theres': 1,\n",
      "          'son': 1,\n",
      "          'bruce': 1,\n",
      "          '28yearold': 1,\n",
      "          'risingstar': 1,\n",
      "          'fatally': 1,\n",
      "          'shot': 1,\n",
      "          'shooting': 1,\n",
      "          'nlee': 1,\n",
      "          'four': 1,\n",
      "          'name': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'movie': 1,\n",
      "          'laser': 1,\n",
      "          'mission': 1,\n",
      "          'showdown': 1,\n",
      "          'little': 1,\n",
      "          'toyko': 1,\n",
      "          'rapid': 1,\n",
      "          'fire': 1,\n",
      "          'wouldve': 1,\n",
      "          'nice': 1,\n",
      "          'feather': 1,\n",
      "          'belt': 1,\n",
      "          'thats': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'great': 1,\n",
      "          'performance': 1,\n",
      "          'owes': 1,\n",
      "          'much': 1,\n",
      "          'presence': 1,\n",
      "          'ability': 1,\n",
      "          'nwhen': 1,\n",
      "          'echo': 1,\n",
      "          'finally': 1,\n",
      "          'fades': 1,\n",
      "          'watching': 1,\n",
      "          'prove': 1,\n",
      "          'less': 1,\n",
      "          'remarkable': 1,\n",
      "          'experience': 1,\n",
      "          'healthy': 1,\n",
      "          'dose': 1,\n",
      "          'humor': 1,\n",
      "          'surprising': 1,\n",
      "          'sincerity': 1,\n",
      "          'still': 1,\n",
      "          'couple': 1,\n",
      "          'notches': 1,\n",
      "          'straighttovideo': 1,\n",
      "          'brethren': 1,\n",
      "          'nfor': 1,\n",
      "          'maybe': 1,\n",
      "          'appropriate': 1,\n",
      "          'eulogy': 1,\n",
      "          'actor': 1,\n",
      "          'could': 1,\n",
      "          'get': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'know': 9,\n",
      "          'ni': 9,\n",
      "          'hewitt': 9,\n",
      "          'horror': 8,\n",
      "          'still': 7,\n",
      "          'last': 6,\n",
      "          'brandy': 6,\n",
      "          'audience': 6,\n",
      "          'summer': 5,\n",
      "          'slasher': 5,\n",
      "          'scream': 5,\n",
      "          'scenes': 5,\n",
      "          'like': 5,\n",
      "          'around': 4,\n",
      "          'however': 4,\n",
      "          'original': 4,\n",
      "          'nthis': 4,\n",
      "          'one': 4,\n",
      "          'movie': 4,\n",
      "          'films': 4,\n",
      "          'characters': 4,\n",
      "          'theater': 4,\n",
      "          'huge': 3,\n",
      "          'tv': 3,\n",
      "          'n': 3,\n",
      "          'actresses': 3,\n",
      "          'campbell': 3,\n",
      "          'love': 3,\n",
      "          'sequel': 3,\n",
      "          'young': 3,\n",
      "          'annoying': 3,\n",
      "          'time': 3,\n",
      "          'seem': 3,\n",
      "          'knows': 3,\n",
      "          'scene': 3,\n",
      "          'julie': 2,\n",
      "          'nightmares': 2,\n",
      "          'ben': 2,\n",
      "          'willis': 2,\n",
      "          'karla': 2,\n",
      "          'wins': 2,\n",
      "          'trip': 2,\n",
      "          'bahamas': 2,\n",
      "          'hook': 2,\n",
      "          'may': 2,\n",
      "          'party': 2,\n",
      "          'five': 2,\n",
      "          'seems': 2,\n",
      "          'teen': 2,\n",
      "          'genre': 2,\n",
      "          'star': 2,\n",
      "          'nso': 2,\n",
      "          'jennifer': 2,\n",
      "          'nthough': 2,\n",
      "          'released': 2,\n",
      "          'enough': 2,\n",
      "          'nshe': 2,\n",
      "          'many': 2,\n",
      "          'character': 2,\n",
      "          'yet': 2,\n",
      "          'another': 2,\n",
      "          'get': 2,\n",
      "          'two': 2,\n",
      "          'makes': 2,\n",
      "          'works': 2,\n",
      "          'heavily': 2,\n",
      "          'lots': 2,\n",
      "          'nthe': 2,\n",
      "          'secondary': 2,\n",
      "          'supposed': 2,\n",
      "          'guy': 2,\n",
      "          'uncomfortable': 2,\n",
      "          'watch': 2,\n",
      "          'go': 2,\n",
      "          'thats': 2,\n",
      "          'really': 2,\n",
      "          'talk': 2,\n",
      "          'revealing': 2,\n",
      "          'nhewitt': 2,\n",
      "          'saw': 2,\n",
      "          'bad': 2,\n",
      "          'several': 2,\n",
      "          'sitting': 2,\n",
      "          'wouldnt': 2,\n",
      "          'act': 2,\n",
      "          'synopsis': 1,\n",
      "          'sullen': 1,\n",
      "          'james': 1,\n",
      "          'haunted': 1,\n",
      "          'killer': 1,\n",
      "          'perks': 1,\n",
      "          'new': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'wilson': 1,\n",
      "          'four': 1,\n",
      "          'narriving': 1,\n",
      "          'start': 1,\n",
      "          'hurricane': 1,\n",
      "          'season': 1,\n",
      "          'run': 1,\n",
      "          'tight': 1,\n",
      "          'clothing': 1,\n",
      "          'realize': 1,\n",
      "          'theyve': 1,\n",
      "          'walked': 1,\n",
      "          'trap': 1,\n",
      "          'set': 1,\n",
      "          'rainslickered': 1,\n",
      "          'hand': 1,\n",
      "          'ncomments': 1,\n",
      "          'showing': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'illiteracy': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'episode': 1,\n",
      "          'fox': 1,\n",
      "          'series': 1,\n",
      "          'vaguely': 1,\n",
      "          'aware': 1,\n",
      "          'shows': 1,\n",
      "          'premise': 1,\n",
      "          'knowledge': 1,\n",
      "          'comes': 1,\n",
      "          'brief': 1,\n",
      "          'commercials': 1,\n",
      "          'halfpaid': 1,\n",
      "          'attention': 1,\n",
      "          'watching': 1,\n",
      "          'tube': 1,\n",
      "          'starting': 1,\n",
      "          'ground': 1,\n",
      "          'nneve': 1,\n",
      "          'queen': 1,\n",
      "          '90s': 1,\n",
      "          '2': 1,\n",
      "          'craft': 1,\n",
      "          'regular': 1,\n",
      "          'show': 1,\n",
      "          'nlo': 1,\n",
      "          'behold': 1,\n",
      "          'following': 1,\n",
      "          'footsteps': 1,\n",
      "          'franchise': 1,\n",
      "          'line': 1,\n",
      "          'year': 1,\n",
      "          'watchable': 1,\n",
      "          'insipid': 1,\n",
      "          'looking': 1,\n",
      "          'theaters': 1,\n",
      "          'glowing': 1,\n",
      "          'red': 1,\n",
      "          'exit': 1,\n",
      "          'sign': 1,\n",
      "          'longingly': 1,\n",
      "          'throughout': 1,\n",
      "          'njennifer': 1,\n",
      "          'goodlooking': 1,\n",
      "          'leading': 1,\n",
      "          'lady': 1,\n",
      "          'unlike': 1,\n",
      "          'neve': 1,\n",
      "          'struggles': 1,\n",
      "          'acting': 1,\n",
      "          'isnt': 1,\n",
      "          'convincing': 1,\n",
      "          'wasnt': 1,\n",
      "          'either': 1,\n",
      "          'puts': 1,\n",
      "          'males': 1,\n",
      "          'including': 1,\n",
      "          'paradoxical': 1,\n",
      "          'quandary': 1,\n",
      "          'shes': 1,\n",
      "          'attractive': 1,\n",
      "          'spoiled': 1,\n",
      "          'valley': 1,\n",
      "          'girltype': 1,\n",
      "          'tries': 1,\n",
      "          'play': 1,\n",
      "          'extreme': 1,\n",
      "          'ruins': 1,\n",
      "          'emphasize': 1,\n",
      "          'exploitatively': 1,\n",
      "          'figure': 1,\n",
      "          'nadd': 1,\n",
      "          'mix': 1,\n",
      "          'equally': 1,\n",
      "          'pleasant': 1,\n",
      "          'irritating': 1,\n",
      "          'rising': 1,\n",
      "          'frustrated': 1,\n",
      "          'male': 1,\n",
      "          'nive': 1,\n",
      "          'spent': 1,\n",
      "          'much': 1,\n",
      "          'reason': 1,\n",
      "          'though': 1,\n",
      "          'cashing': 1,\n",
      "          'success': 1,\n",
      "          'ultimately': 1,\n",
      "          'serves': 1,\n",
      "          'vehicle': 1,\n",
      "          'nnothing': 1,\n",
      "          'else': 1,\n",
      "          'interesting': 1,\n",
      "          'fact': 1,\n",
      "          'recent': 1,\n",
      "          'soso': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'john': 1,\n",
      "          'carpenters': 1,\n",
      "          'vampires': 1,\n",
      "          'stunning': 1,\n",
      "          'high': 1,\n",
      "          'art': 1,\n",
      "          'relies': 1,\n",
      "          'tired': 1,\n",
      "          'cliches': 1,\n",
      "          'isolated': 1,\n",
      "          'location': 1,\n",
      "          'storm': 1,\n",
      "          'parentless': 1,\n",
      "          'teenagers': 1,\n",
      "          'false': 1,\n",
      "          'alarm': 1,\n",
      "          'bluelighted': 1,\n",
      "          'darkness': 1,\n",
      "          'garbed': 1,\n",
      "          'walks': 1,\n",
      "          'background': 1,\n",
      "          'without': 1,\n",
      "          'seeing': 1,\n",
      "          'knives': 1,\n",
      "          'sharp': 1,\n",
      "          'instruments': 1,\n",
      "          'lying': 1,\n",
      "          'everywhere': 1,\n",
      "          'etc': 1,\n",
      "          'picture': 1,\n",
      "          'entire': 1,\n",
      "          'introduced': 1,\n",
      "          'going': 1,\n",
      "          'receive': 1,\n",
      "          'business': 1,\n",
      "          'end': 1,\n",
      "          'killers': 1,\n",
      "          'nthey': 1,\n",
      "          'well': 1,\n",
      "          'targets': 1,\n",
      "          'painted': 1,\n",
      "          'nlike': 1,\n",
      "          'numerous': 1,\n",
      "          'knockoffs': 1,\n",
      "          'serve': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'arent': 1,\n",
      "          'funny': 1,\n",
      "          'nin': 1,\n",
      "          'particular': 1,\n",
      "          'chainweedsmoking': 1,\n",
      "          'obnoxiously': 1,\n",
      "          'certainly': 1,\n",
      "          'doesnt': 1,\n",
      "          'die': 1,\n",
      "          'soon': 1,\n",
      "          'death': 1,\n",
      "          'way': 1,\n",
      "          'relatively': 1,\n",
      "          'violent': 1,\n",
      "          'theatrically': 1,\n",
      "          'nseveral': 1,\n",
      "          'reminded': 1,\n",
      "          'sickening': 1,\n",
      "          'gore': 1,\n",
      "          'hellraiser': 1,\n",
      "          'bloodline': 1,\n",
      "          'truly': 1,\n",
      "          'sadistic': 1,\n",
      "          'help': 1,\n",
      "          'humor': 1,\n",
      "          'shooting': 1,\n",
      "          'nand': 1,\n",
      "          'deal': 1,\n",
      "          'particularly': 1,\n",
      "          'intelligent': 1,\n",
      "          'got': 1,\n",
      "          'silly': 1,\n",
      "          'slashers': 1,\n",
      "          'mainstream': 1,\n",
      "          'ncome': 1,\n",
      "          'looks': 1,\n",
      "          'gortons': 1,\n",
      "          'fisherman': 1,\n",
      "          'gruff': 1,\n",
      "          'voice': 1,\n",
      "          'sound': 1,\n",
      "          'disney': 1,\n",
      "          'pirate': 1,\n",
      "          'lightninglit': 1,\n",
      "          'appearances': 1,\n",
      "          'ellicited': 1,\n",
      "          'muchneeded': 1,\n",
      "          'laughter': 1,\n",
      "          'appearance': 1,\n",
      "          'borders': 1,\n",
      "          'absurd': 1,\n",
      "          'saying': 1,\n",
      "          'something': 1,\n",
      "          'left': 1,\n",
      "          'nboth': 1,\n",
      "          'prance': 1,\n",
      "          'tightfitting': 1,\n",
      "          'outfits': 1,\n",
      "          'various': 1,\n",
      "          'states': 1,\n",
      "          'undress': 1,\n",
      "          'neither': 1,\n",
      "          'ever': 1,\n",
      "          'actually': 1,\n",
      "          'nude': 1,\n",
      "          'postshower': 1,\n",
      "          'thin': 1,\n",
      "          'bathrobe': 1,\n",
      "          'quite': 1,\n",
      "          'titillating': 1,\n",
      "          'alone': 1,\n",
      "          'made': 1,\n",
      "          'onestar': 1,\n",
      "          'turkey': 1,\n",
      "          'earn': 1,\n",
      "          'stars': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'notherwise': 1,\n",
      "          'grate': 1,\n",
      "          'nerves': 1,\n",
      "          'nearly': 1,\n",
      "          'instance': 1,\n",
      "          'jump': 1,\n",
      "          'screech': 1,\n",
      "          'forever': 1,\n",
      "          'needed': 1,\n",
      "          'extrastrength': 1,\n",
      "          'tylenol': 1,\n",
      "          'part': 1,\n",
      "          'noh': 1,\n",
      "          'conclusion': 1,\n",
      "          'repetitive': 1,\n",
      "          'npeople': 1,\n",
      "          'predict': 1,\n",
      "          'ending': 1,\n",
      "          'least': 1,\n",
      "          '5': 1,\n",
      "          'minutes': 1,\n",
      "          'happens': 1,\n",
      "          'nboring': 1,\n",
      "          'brother': 1,\n",
      "          'local': 1,\n",
      "          'downtown': 1,\n",
      "          'nadmission': 1,\n",
      "          'dollar': 1,\n",
      "          'wednesdays': 1,\n",
      "          'often': 1,\n",
      "          'see': 1,\n",
      "          'movies': 1,\n",
      "          'days': 1,\n",
      "          'ridicule': 1,\n",
      "          'nits': 1,\n",
      "          'usually': 1,\n",
      "          'fun': 1,\n",
      "          'thing': 1,\n",
      "          'along': 1,\n",
      "          'rest': 1,\n",
      "          'dont': 1,\n",
      "          'mind': 1,\n",
      "          'participating': 1,\n",
      "          'mass': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          '3000': 1,\n",
      "          'type': 1,\n",
      "          'viewing': 1,\n",
      "          'produced': 1,\n",
      "          'lengthy': 1,\n",
      "          'silences': 1,\n",
      "          'underscoring': 1,\n",
      "          'nif': 1,\n",
      "          'werent': 1,\n",
      "          'main': 1,\n",
      "          'wardrobes': 1,\n",
      "          'id': 1,\n",
      "          'hard': 1,\n",
      "          'lame': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'trying': 1,\n",
      "          'video': 1,\n",
      "          '10': 1,\n",
      "          'times': 1,\n",
      "          'better': 1,\n",
      "          'rely': 1,\n",
      "          'participation': 1,\n",
      "          'recommend': 1,\n",
      "          'people': 1,\n",
      "          'unless': 1,\n",
      "          'theyre': 1,\n",
      "          'fanatics': 1,\n",
      "          'fans': 1,\n",
      "          'read': 1,\n",
      "          'website': 1,\n",
      "          'somewhere': 1,\n",
      "          'already': 1,\n",
      "          'nwhat': 1,\n",
      "          'depressing': 1,\n",
      "          'thought': 1,\n",
      "          'apparently': 1,\n",
      "          'needs': 1,\n",
      "          'spend': 1,\n",
      "          'figuring': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'contains': 1,\n",
      "          'violence': 1,\n",
      "          'gory': 1,\n",
      "          'couple': 1,\n",
      "          'nubile': 1,\n",
      "          'horny': 1,\n",
      "          'teenagersthough': 1,\n",
      "          'sex': 1,\n",
      "          'always': 1,\n",
      "          'thwarted': 1,\n",
      "          'nid': 1,\n",
      "          'say': 1,\n",
      "          'unsuitable': 1,\n",
      "          'kids': 1,\n",
      "          'teens': 1,\n",
      "          'problem': 1,\n",
      "          'especially': 1,\n",
      "          'since': 1,\n",
      "          'obviously': 1,\n",
      "          'compose': 1,\n",
      "          'target': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 15,\n",
      "          'winner': 12,\n",
      "          'would': 7,\n",
      "          'nit': 6,\n",
      "          'mr': 5,\n",
      "          'nthe': 4,\n",
      "          'philip': 4,\n",
      "          'nto': 3,\n",
      "          'entirely': 3,\n",
      "          'upon': 3,\n",
      "          'philips': 3,\n",
      "          'one': 3,\n",
      "          'alex': 2,\n",
      "          'wouldbe': 2,\n",
      "          'tedious': 2,\n",
      "          'characters': 2,\n",
      "          'appears': 2,\n",
      "          'fact': 2,\n",
      "          'remotely': 2,\n",
      "          'essentially': 2,\n",
      "          'donofrio': 2,\n",
      "          'gift': 2,\n",
      "          'virtually': 2,\n",
      "          'talent': 2,\n",
      "          'fortunes': 2,\n",
      "          'taking': 2,\n",
      "          'becomes': 2,\n",
      "          'advantage': 2,\n",
      "          'demornay': 2,\n",
      "          'johnny': 2,\n",
      "          'madsen': 2,\n",
      "          'also': 2,\n",
      "          'whaley': 2,\n",
      "          'every': 2,\n",
      "          'casino': 2,\n",
      "          'lindo': 2,\n",
      "          'could': 2,\n",
      "          'even': 2,\n",
      "          'done': 2,\n",
      "          'cox': 2,\n",
      "          'credit': 2,\n",
      "          'thing': 2,\n",
      "          'note': 1,\n",
      "          'may': 1,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'assess': 1,\n",
      "          'coxs': 1,\n",
      "          'loser': 1,\n",
      "          'indolent': 1,\n",
      "          'derisive': 1,\n",
      "          'glib': 1,\n",
      "          'dismissive': 1,\n",
      "          'accurate': 1,\n",
      "          'nrarely': 1,\n",
      "          'seen': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'annoying': 1,\n",
      "          'comedy': 1,\n",
      "          'quickly': 1,\n",
      "          'proves': 1,\n",
      "          'unfunny': 1,\n",
      "          'unengaging': 1,\n",
      "          'attempts': 1,\n",
      "          'fresh': 1,\n",
      "          'quirky': 1,\n",
      "          'utilising': 1,\n",
      "          'myriad': 1,\n",
      "          'colourful': 1,\n",
      "          'weave': 1,\n",
      "          'absurd': 1,\n",
      "          'tale': 1,\n",
      "          'overlook': 1,\n",
      "          'nobody': 1,\n",
      "          'interesting': 1,\n",
      "          'preposterous': 1,\n",
      "          'set': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'focus': 1,\n",
      "          'vincent': 1,\n",
      "          'aloof': 1,\n",
      "          'naive': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n",
      "          'blessed': 1,\n",
      "          'odd': 1,\n",
      "          'luck': 1,\n",
      "          'lose': 1,\n",
      "          'tables': 1,\n",
      "          'ndespite': 1,\n",
      "          'prodigious': 1,\n",
      "          'perpetually': 1,\n",
      "          'mournful': 1,\n",
      "          'quite': 1,\n",
      "          'indifferent': 1,\n",
      "          'gambling': 1,\n",
      "          'neither': 1,\n",
      "          'joy': 1,\n",
      "          'winnings': 1,\n",
      "          'foresight': 1,\n",
      "          'mask': 1,\n",
      "          'abilities': 1,\n",
      "          'nconsequently': 1,\n",
      "          'easy': 1,\n",
      "          'target': 1,\n",
      "          'ride': 1,\n",
      "          'coattails': 1,\n",
      "          'take': 1,\n",
      "          'nlouise': 1,\n",
      "          'rebecca': 1,\n",
      "          'sultry': 1,\n",
      "          'lounge': 1,\n",
      "          'singer': 1,\n",
      "          'insinuates': 1,\n",
      "          'life': 1,\n",
      "          'purpose': 1,\n",
      "          'swindling': 1,\n",
      "          'estranged': 1,\n",
      "          'brother': 1,\n",
      "          'conveniently': 1,\n",
      "          'louises': 1,\n",
      "          'exbeau': 1,\n",
      "          'michael': 1,\n",
      "          'arrives': 1,\n",
      "          'scene': 1,\n",
      "          'n': 1,\n",
      "          'add': 1,\n",
      "          'colour': 1,\n",
      "          'happens': 1,\n",
      "          'toting': 1,\n",
      "          'fathers': 1,\n",
      "          'corpse': 1,\n",
      "          'sans': 1,\n",
      "          'hand': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'befriended': 1,\n",
      "          'trio': 1,\n",
      "          'lowrent': 1,\n",
      "          'opportunists': 1,\n",
      "          'frank': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'thornton': 1,\n",
      "          'richard': 1,\n",
      "          'edson': 1,\n",
      "          'intention': 1,\n",
      "          'new': 1,\n",
      "          'buddys': 1,\n",
      "          'dice': 1,\n",
      "          'nserenely': 1,\n",
      "          'overlooking': 1,\n",
      "          'chaos': 1,\n",
      "          'behind': 1,\n",
      "          'scenes': 1,\n",
      "          'owner': 1,\n",
      "          'delroy': 1,\n",
      "          'probably': 1,\n",
      "          'giving': 1,\n",
      "          'away': 1,\n",
      "          'much': 1,\n",
      "          'reveal': 1,\n",
      "          'role': 1,\n",
      "          'alluded': 1,\n",
      "          'end': 1,\n",
      "          'flashy': 1,\n",
      "          'sequence': 1,\n",
      "          'martin': 1,\n",
      "          'scorseses': 1,\n",
      "          'details': 1,\n",
      "          'organization': 1,\n",
      "          'hierarchy': 1,\n",
      "          'casinos': 1,\n",
      "          'operations': 1,\n",
      "          'eye': 1,\n",
      "          'sky': 1,\n",
      "          'maddening': 1,\n",
      "          'endure': 1,\n",
      "          'whose': 1,\n",
      "          'central': 1,\n",
      "          'protagonist': 1,\n",
      "          'oblivious': 1,\n",
      "          'ongoing': 1,\n",
      "          'blatant': 1,\n",
      "          'manipulation': 1,\n",
      "          'fortunately': 1,\n",
      "          'case': 1,\n",
      "          'sadsack': 1,\n",
      "          'hero': 1,\n",
      "          'sap': 1,\n",
      "          'sympathetic': 1,\n",
      "          'compelling': 1,\n",
      "          'impossible': 1,\n",
      "          'root': 1,\n",
      "          'care': 1,\n",
      "          'fate': 1,\n",
      "          'swindlers': 1,\n",
      "          'drawn': 1,\n",
      "          'ludicrous': 1,\n",
      "          'transparent': 1,\n",
      "          'buffoons': 1,\n",
      "          'unimaginative': 1,\n",
      "          'uninteresting': 1,\n",
      "          'schemes': 1,\n",
      "          'watches': 1,\n",
      "          'complete': 1,\n",
      "          'sense': 1,\n",
      "          'disinterest': 1,\n",
      "          'shame': 1,\n",
      "          'features': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'underrated': 1,\n",
      "          'gifted': 1,\n",
      "          'actor': 1,\n",
      "          'huge': 1,\n",
      "          'range': 1,\n",
      "          'remarkable': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'infiltrates': 1,\n",
      "          'ms': 1,\n",
      "          'good': 1,\n",
      "          'work': 1,\n",
      "          'past': 1,\n",
      "          'nnone': 1,\n",
      "          'actors': 1,\n",
      "          'top': 1,\n",
      "          'form': 1,\n",
      "          'wont': 1,\n",
      "          'likely': 1,\n",
      "          'prized': 1,\n",
      "          'addition': 1,\n",
      "          'respective': 1,\n",
      "          'resumes': 1,\n",
      "          'ndirector': 1,\n",
      "          'wendy': 1,\n",
      "          'riss': 1,\n",
      "          'screenplay': 1,\n",
      "          'point': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'adaptation': 1,\n",
      "          'stage': 1,\n",
      "          'play': 1,\n",
      "          'startled': 1,\n",
      "          'learn': 1,\n",
      "          'based': 1,\n",
      "          'nwhile': 1,\n",
      "          'wellpaced': 1,\n",
      "          'meander': 1,\n",
      "          'nearimpossible': 1,\n",
      "          'task': 1,\n",
      "          'matter': 1,\n",
      "          'director': 1,\n",
      "          'comes': 1,\n",
      "          'mind': 1,\n",
      "          'overcome': 1,\n",
      "          'films': 1,\n",
      "          'widespread': 1,\n",
      "          'shortcomings': 1,\n",
      "          'plot': 1,\n",
      "          'characterization': 1,\n",
      "          'understanding': 1,\n",
      "          'chosen': 1,\n",
      "          'distance': 1,\n",
      "          'project': 1,\n",
      "          'acknowledgement': 1,\n",
      "          'deficiencies': 1,\n",
      "          'ni': 1,\n",
      "          'caught': 1,\n",
      "          'world': 1,\n",
      "          'premiere': 1,\n",
      "          'toronto': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'september': 1,\n",
      "          '1996': 1,\n",
      "          'fairness': 1,\n",
      "          'possible': 1,\n",
      "          'extensively': 1,\n",
      "          'revamped': 1,\n",
      "          'since': 1,\n",
      "          'due': 1,\n",
      "          'lacklustre': 1,\n",
      "          'audience': 1,\n",
      "          'reaction': 1,\n",
      "          'generated': 1,\n",
      "          'walkouts': 1,\n",
      "          'others': 1,\n",
      "          'screened': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'honest': 1,\n",
      "          'though': 1,\n",
      "          'couldnt': 1,\n",
      "          'begin': 1,\n",
      "          'isolate': 1,\n",
      "          'improve': 1,\n",
      "          'assume': 1,\n",
      "          'throwing': 1,\n",
      "          'whole': 1,\n",
      "          'starting': 1,\n",
      "          'question': 1,\n",
      "          'apparently': 1,\n",
      "          'played': 1,\n",
      "          'cable': 1,\n",
      "          'television': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'beginning': 1,\n",
      "          'limited': 1,\n",
      "          'theatrical': 1,\n",
      "          'release': 1,\n",
      "          'time': 1,\n",
      "          'writing': 1,\n",
      "          'nice': 1,\n",
      "          'upbeat': 1,\n",
      "          'score': 1,\n",
      "          'pray': 1,\n",
      "          'rain': 1,\n",
      "          'honestly': 1,\n",
      "          'facetious': 1,\n",
      "          'state': 1,\n",
      "          'treasured': 1,\n",
      "          'screening': 1,\n",
      "          'bag': 1,\n",
      "          'popcorn': 1,\n",
      "          'munching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 13,\n",
      "          'schumacher': 11,\n",
      "          'doesnt': 10,\n",
      "          'nthe': 8,\n",
      "          'good': 8,\n",
      "          'welles': 8,\n",
      "          '8mm': 7,\n",
      "          'like': 6,\n",
      "          'films': 6,\n",
      "          'see': 6,\n",
      "          'money': 6,\n",
      "          'nhe': 6,\n",
      "          'snuff': 5,\n",
      "          'right': 5,\n",
      "          'make': 5,\n",
      "          'bad': 5,\n",
      "          'dont': 5,\n",
      "          'violent': 4,\n",
      "          'time': 4,\n",
      "          'even': 4,\n",
      "          'joel': 4,\n",
      "          'movie': 4,\n",
      "          'think': 4,\n",
      "          'young': 4,\n",
      "          'girl': 4,\n",
      "          'sick': 4,\n",
      "          'movies': 4,\n",
      "          'making': 4,\n",
      "          'vigilante': 4,\n",
      "          'batman': 4,\n",
      "          'much': 4,\n",
      "          'walker': 4,\n",
      "          'script': 4,\n",
      "          'trash': 3,\n",
      "          'nwell': 3,\n",
      "          'one': 3,\n",
      "          'acting': 3,\n",
      "          'far': 3,\n",
      "          'nits': 3,\n",
      "          'watch': 3,\n",
      "          'didnt': 3,\n",
      "          'ha': 3,\n",
      "          'cage': 3,\n",
      "          'find': 3,\n",
      "          'would': 3,\n",
      "          'better': 3,\n",
      "          'want': 3,\n",
      "          'ahead': 3,\n",
      "          'nthis': 3,\n",
      "          'nit': 3,\n",
      "          'kill': 3,\n",
      "          'us': 3,\n",
      "          'believe': 3,\n",
      "          'look': 3,\n",
      "          'ever': 3,\n",
      "          'world': 2,\n",
      "          'garbage': 2,\n",
      "          'hollywood': 2,\n",
      "          'ntheres': 2,\n",
      "          'interested': 2,\n",
      "          'nno': 2,\n",
      "          'going': 2,\n",
      "          'watching': 2,\n",
      "          'filmmaking': 2,\n",
      "          'technical': 2,\n",
      "          'stands': 2,\n",
      "          'nbut': 2,\n",
      "          'nlike': 2,\n",
      "          'moments': 2,\n",
      "          'crap': 2,\n",
      "          'pay': 2,\n",
      "          'nwhy': 2,\n",
      "          'review': 2,\n",
      "          'crud': 2,\n",
      "          'ni': 2,\n",
      "          'know': 2,\n",
      "          'around': 2,\n",
      "          'na': 2,\n",
      "          'woman': 2,\n",
      "          'try': 2,\n",
      "          'murdered': 2,\n",
      "          'really': 2,\n",
      "          'dead': 2,\n",
      "          'without': 2,\n",
      "          'nsee': 2,\n",
      "          'end': 2,\n",
      "          'nhowever': 2,\n",
      "          'often': 2,\n",
      "          'thought': 2,\n",
      "          'industry': 2,\n",
      "          'ill': 2,\n",
      "          'clues': 2,\n",
      "          'porn': 2,\n",
      "          'way': 2,\n",
      "          'nafter': 2,\n",
      "          'skip': 2,\n",
      "          'peter': 2,\n",
      "          'stormare': 2,\n",
      "          'away': 2,\n",
      "          'mind': 2,\n",
      "          'get': 2,\n",
      "          'se7en': 2,\n",
      "          'restraint': 2,\n",
      "          'im': 2,\n",
      "          'gets': 2,\n",
      "          'rather': 2,\n",
      "          'andrew': 2,\n",
      "          'kevin': 2,\n",
      "          'directors': 2,\n",
      "          'must': 2,\n",
      "          'supposed': 2,\n",
      "          'go': 2,\n",
      "          'need': 2,\n",
      "          'nis': 2,\n",
      "          'though': 2,\n",
      "          'nif': 2,\n",
      "          'action': 2,\n",
      "          'wells': 2,\n",
      "          'daughter': 2,\n",
      "          'whose': 2,\n",
      "          'indeed': 2,\n",
      "          'depraved': 2,\n",
      "          'nyes': 2,\n",
      "          'mr': 2,\n",
      "          'said': 2,\n",
      "          'whats': 1,\n",
      "          'extremely': 1,\n",
      "          'pornographyie': 1,\n",
      "          'known': 1,\n",
      "          'nnothing': 1,\n",
      "          'nwhats': 1,\n",
      "          'chronicling': 1,\n",
      "          'pornography': 1,\n",
      "          'nothing': 1,\n",
      "          'nso': 1,\n",
      "          'reason': 1,\n",
      "          'average': 1,\n",
      "          'sane': 1,\n",
      "          'moviegoer': 1,\n",
      "          'topic': 1,\n",
      "          'enrich': 1,\n",
      "          'life': 1,\n",
      "          'material': 1,\n",
      "          'lack': 1,\n",
      "          'quality': 1,\n",
      "          'consider': 1,\n",
      "          'star': 1,\n",
      "          'writer': 1,\n",
      "          'supporting': 1,\n",
      "          'castall': 1,\n",
      "          'reputable': 1,\n",
      "          'brand': 1,\n",
      "          'unlikable': 1,\n",
      "          'strikes': 1,\n",
      "          'paul': 1,\n",
      "          'schrader': 1,\n",
      "          'theyre': 1,\n",
      "          'nbetween': 1,\n",
      "          'nbasically': 1,\n",
      "          'picture': 1,\n",
      "          'walk': 1,\n",
      "          'wouldnt': 1,\n",
      "          'thorough': 1,\n",
      "          'thoroughly': 1,\n",
      "          'nheres': 1,\n",
      "          'spend': 1,\n",
      "          'dog': 1,\n",
      "          'food': 1,\n",
      "          'gum': 1,\n",
      "          'instead': 1,\n",
      "          'nfirst': 1,\n",
      "          'thingif': 1,\n",
      "          'heed': 1,\n",
      "          'advice': 1,\n",
      "          'understand': 1,\n",
      "          'youre': 1,\n",
      "          'paying': 1,\n",
      "          'easy': 1,\n",
      "          'details': 1,\n",
      "          'story': 1,\n",
      "          'beforehand': 1,\n",
      "          'least': 1,\n",
      "          'ignorance': 1,\n",
      "          'help': 1,\n",
      "          'others': 1,\n",
      "          'plot': 1,\n",
      "          'revolves': 1,\n",
      "          'tom': 1,\n",
      "          'nicolas': 1,\n",
      "          'surveillance': 1,\n",
      "          'expert': 1,\n",
      "          'private': 1,\n",
      "          'investigator': 1,\n",
      "          'rich': 1,\n",
      "          'old': 1,\n",
      "          'discovers': 1,\n",
      "          'late': 1,\n",
      "          'husbands': 1,\n",
      "          'safe': 1,\n",
      "          'nshe': 1,\n",
      "          'calls': 1,\n",
      "          'hires': 1,\n",
      "          'appears': 1,\n",
      "          'nshes': 1,\n",
      "          'horrified': 1,\n",
      "          'husband': 1,\n",
      "          'owned': 1,\n",
      "          'course': 1,\n",
      "          'wants': 1,\n",
      "          'snoop': 1,\n",
      "          'police': 1,\n",
      "          'interference': 1,\n",
      "          'nfamilyman': 1,\n",
      "          'agrees': 1,\n",
      "          'judgement': 1,\n",
      "          'concrete': 1,\n",
      "          'leads': 1,\n",
      "          'cringing': 1,\n",
      "          'grimacing': 1,\n",
      "          'sight': 1,\n",
      "          'grotesque': 1,\n",
      "          'murder': 1,\n",
      "          'nlet': 1,\n",
      "          'backtrack': 1,\n",
      "          'moment': 1,\n",
      "          'pornos': 1,\n",
      "          'twistpeople': 1,\n",
      "          'tortured': 1,\n",
      "          'ways': 1,\n",
      "          'deaths': 1,\n",
      "          'staged': 1,\n",
      "          'cases': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'difference': 1,\n",
      "          'nvery': 1,\n",
      "          'people': 1,\n",
      "          'enjoy': 1,\n",
      "          'top': 1,\n",
      "          'dollar': 1,\n",
      "          'hardtofind': 1,\n",
      "          'makes': 1,\n",
      "          'throw': 1,\n",
      "          'computer': 1,\n",
      "          'window': 1,\n",
      "          'stop': 1,\n",
      "          'swallow': 1,\n",
      "          'bile': 1,\n",
      "          'move': 1,\n",
      "          'nwelles': 1,\n",
      "          'follows': 1,\n",
      "          'nyoud': 1,\n",
      "          'hes': 1,\n",
      "          'sherlock': 1,\n",
      "          'holmes': 1,\n",
      "          'drop': 1,\n",
      "          'easily': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'smut': 1,\n",
      "          'clerk': 1,\n",
      "          'max': 1,\n",
      "          'joaquin': 1,\n",
      "          'phoenix': 1,\n",
      "          'knows': 1,\n",
      "          'everyone': 1,\n",
      "          'everything': 1,\n",
      "          'underground': 1,\n",
      "          'business': 1,\n",
      "          'sleaze': 1,\n",
      "          'lot': 1,\n",
      "          'digging': 1,\n",
      "          'bribing': 1,\n",
      "          'finds': 1,\n",
      "          'men': 1,\n",
      "          'responsible': 1,\n",
      "          'nskip': 1,\n",
      "          'nled': 1,\n",
      "          'dino': 1,\n",
      "          'velvet': 1,\n",
      "          'uncharacteristically': 1,\n",
      "          'terrible': 1,\n",
      "          'performance': 1,\n",
      "          'startorturer': 1,\n",
      "          'machine': 1,\n",
      "          'christopher': 1,\n",
      "          'bauer': 1,\n",
      "          'big': 1,\n",
      "          'showdown': 1,\n",
      "          'death': 1,\n",
      "          'mayhem': 1,\n",
      "          'ensue': 1,\n",
      "          'unfortunately': 1,\n",
      "          'heroes': 1,\n",
      "          'dobecome': 1,\n",
      "          'draw': 1,\n",
      "          'keeps': 1,\n",
      "          '700': 1,\n",
      "          'miles': 1,\n",
      "          'close': 1,\n",
      "          'possible': 1,\n",
      "          'focuses': 1,\n",
      "          'grime': 1,\n",
      "          'behaviour': 1,\n",
      "          'ie': 1,\n",
      "          'n': 1,\n",
      "          'takes': 1,\n",
      "          'large': 1,\n",
      "          'measure': 1,\n",
      "          'none': 1,\n",
      "          'larger': 1,\n",
      "          'amount': 1,\n",
      "          'talent': 1,\n",
      "          'little': 1,\n",
      "          'nby': 1,\n",
      "          'jabs': 1,\n",
      "          'referring': 1,\n",
      "          'stylish': 1,\n",
      "          'destruction': 1,\n",
      "          'franchise': 1,\n",
      "          'immensely': 1,\n",
      "          'overrated': 1,\n",
      "          'disappointment': 1,\n",
      "          'nfor': 1,\n",
      "          'guy': 1,\n",
      "          'studio': 1,\n",
      "          'track': 1,\n",
      "          'record': 1,\n",
      "          'unparalleled': 1,\n",
      "          'screenwriter': 1,\n",
      "          'director': 1,\n",
      "          'hypnotically': 1,\n",
      "          'disgusting': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'nwriter': 1,\n",
      "          'recapture': 1,\n",
      "          'smarts': 1,\n",
      "          'fascinating': 1,\n",
      "          'authored': 1,\n",
      "          '95s': 1,\n",
      "          'twisted': 1,\n",
      "          'thriller': 1,\n",
      "          'ndirector': 1,\n",
      "          'innate': 1,\n",
      "          'ability': 1,\n",
      "          'things': 1,\n",
      "          'capable': 1,\n",
      "          'believed': 1,\n",
      "          'hitchcock': 1,\n",
      "          'espoused': 1,\n",
      "          'theory': 1,\n",
      "          'frightening': 1,\n",
      "          'especially': 1,\n",
      "          'scene': 1,\n",
      "          'gratuitous': 1,\n",
      "          'joels': 1,\n",
      "          'middle': 1,\n",
      "          'name': 1,\n",
      "          'flaunting': 1,\n",
      "          'hardcore': 1,\n",
      "          'act': 1,\n",
      "          'sex': 1,\n",
      "          'showing': 1,\n",
      "          'plenty': 1,\n",
      "          'tactful': 1,\n",
      "          'enough': 1,\n",
      "          'unpleasantness': 1,\n",
      "          'leave': 1,\n",
      "          'imagination': 1,\n",
      "          'manipulating': 1,\n",
      "          'hurt': 1,\n",
      "          'girls': 1,\n",
      "          'audience': 1,\n",
      "          'side': 1,\n",
      "          'murderous': 1,\n",
      "          'characters': 1,\n",
      "          'yet': 1,\n",
      "          'subtlety': 1,\n",
      "          'ncraft': 1,\n",
      "          'ncase': 1,\n",
      "          'point': 1,\n",
      "          'shot': 1,\n",
      "          'christian': 1,\n",
      "          'fellowship': 1,\n",
      "          'bus': 1,\n",
      "          'ndrives': 1,\n",
      "          'reveal': 1,\n",
      "          'villains': 1,\n",
      "          'nsubtlety': 1,\n",
      "          'ndoes': 1,\n",
      "          'stupid': 1,\n",
      "          'held': 1,\n",
      "          'hand': 1,\n",
      "          'comprehend': 1,\n",
      "          'contrasting': 1,\n",
      "          'imagery': 1,\n",
      "          'nwho': 1,\n",
      "          'root': 1,\n",
      "          'mess': 1,\n",
      "          'anybody': 1,\n",
      "          'fault': 1,\n",
      "          'actors': 1,\n",
      "          'sign': 1,\n",
      "          'nnicolas': 1,\n",
      "          'oscarwinner': 1,\n",
      "          'cryin': 1,\n",
      "          'loud': 1,\n",
      "          'claims': 1,\n",
      "          'challenge': 1,\n",
      "          'artistic': 1,\n",
      "          'merit': 1,\n",
      "          'smoking': 1,\n",
      "          'dropped': 1,\n",
      "          'veranda': 1,\n",
      "          'nwhat': 1,\n",
      "          'moviea': 1,\n",
      "          'whispering': 1,\n",
      "          'charisma': 1,\n",
      "          'pointed': 1,\n",
      "          'ears': 1,\n",
      "          'nvillainous': 1,\n",
      "          'five': 1,\n",
      "          'steps': 1,\n",
      "          'past': 1,\n",
      "          'hammy': 1,\n",
      "          'nand': 1,\n",
      "          'james': 1,\n",
      "          'gandolfini': 1,\n",
      "          'solid': 1,\n",
      "          'concerned': 1,\n",
      "          'father': 1,\n",
      "          'civil': 1,\n",
      "          'guess': 1,\n",
      "          'ol': 1,\n",
      "          'nic': 1,\n",
      "          'pete': 1,\n",
      "          'jim': 1,\n",
      "          'promised': 1,\n",
      "          'mountain': 1,\n",
      "          'ntheyre': 1,\n",
      "          'suckers': 1,\n",
      "          'care': 1,\n",
      "          'nthere': 1,\n",
      "          'albeit': 1,\n",
      "          'brief': 1,\n",
      "          'ones': 1,\n",
      "          'rises': 1,\n",
      "          'wasteland': 1,\n",
      "          'ncatherine': 1,\n",
      "          'keener': 1,\n",
      "          'although': 1,\n",
      "          'quick': 1,\n",
      "          'threaten': 1,\n",
      "          'divorce': 1,\n",
      "          'mrs': 1,\n",
      "          'nbaby': 1,\n",
      "          'cindy': 1,\n",
      "          'obviously': 1,\n",
      "          'cute': 1,\n",
      "          'devout': 1,\n",
      "          'love': 1,\n",
      "          'sweet': 1,\n",
      "          'mother': 1,\n",
      "          'amy': 1,\n",
      "          'norton': 1,\n",
      "          'infamous': 1,\n",
      "          'dealing': 1,\n",
      "          'uncertain': 1,\n",
      "          'loss': 1,\n",
      "          'runaway': 1,\n",
      "          'appropriate': 1,\n",
      "          'bluetoned': 1,\n",
      "          'washedout': 1,\n",
      "          'payback': 1,\n",
      "          'editing': 1,\n",
      "          'okay': 1,\n",
      "          'scenes': 1,\n",
      "          'dialogue': 1,\n",
      "          'times': 1,\n",
      "          'rough': 1,\n",
      "          'nduring': 1,\n",
      "          'conversations': 1,\n",
      "          'closeups': 1,\n",
      "          'wide': 1,\n",
      "          'shots': 1,\n",
      "          'cut': 1,\n",
      "          'well': 1,\n",
      "          'editted': 1,\n",
      "          'someone': 1,\n",
      "          'instincts': 1,\n",
      "          'arent': 1,\n",
      "          'timing': 1,\n",
      "          'halfsecond': 1,\n",
      "          'nsuch': 1,\n",
      "          'error': 1,\n",
      "          'nspeaking': 1,\n",
      "          'standing': 1,\n",
      "          'misleading': 1,\n",
      "          'trailers': 1,\n",
      "          'noccasionally': 1,\n",
      "          'yes': 1,\n",
      "          'tv': 1,\n",
      "          'seeing': 1,\n",
      "          'may': 1,\n",
      "          'kind': 1,\n",
      "          'positive': 1,\n",
      "          'almost': 1,\n",
      "          'glimpsing': 1,\n",
      "          'dirty': 1,\n",
      "          'motive': 1,\n",
      "          'theyve': 1,\n",
      "          'done': 1,\n",
      "          'swell': 1,\n",
      "          'job': 1,\n",
      "          'nitll': 1,\n",
      "          'long': 1,\n",
      "          'give': 1,\n",
      "          'another': 1,\n",
      "          'chanceunless': 1,\n",
      "          'lose': 1,\n",
      "          'become': 1,\n",
      "          'seriously': 1,\n",
      "          'today': 1,\n",
      "          'ask': 1,\n",
      "          'preach': 1,\n",
      "          'society': 1,\n",
      "          'worried': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'somewhere': 1,\n",
      "          'theres': 1,\n",
      "          'pretty': 1,\n",
      "          'mean': 1,\n",
      "          'tells': 1,\n",
      "          'screwedup': 1,\n",
      "          'folks': 1,\n",
      "          'proverbial': 1,\n",
      "          'monster': 1,\n",
      "          'expect': 1,\n",
      "          'nyou': 1,\n",
      "          '1995': 1,\n",
      "          'nmove': 1,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'entertain': 1,\n",
      "          'teach': 1,\n",
      "          'anything': 1,\n",
      "          'statement': 1,\n",
      "          'beyond': 1,\n",
      "          'obvious': 1,\n",
      "          'stuff': 1,\n",
      "          'approach': 1,\n",
      "          'nonly': 1,\n",
      "          'awakens': 1,\n",
      "          'authorities': 1,\n",
      "          'abolish': 1,\n",
      "          'types': 1,\n",
      "          'horrors': 1,\n",
      "          'someting': 1,\n",
      "          'truly': 1,\n",
      "          'worthwhile': 1,\n",
      "          'nthats': 1,\n",
      "          'likely': 1,\n",
      "          'happen': 1,\n",
      "          'scummy': 1,\n",
      "          'waste': 1,\n",
      "          'norson': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'tribute': 1,\n",
      "          'ngood': 1,\n",
      "          'producers': 1,\n",
      "          'listened': 1,\n",
      "          'told': 1,\n",
      "          'bury': 1,\n",
      "          'deep': 1,\n",
      "          'hole': 1,\n",
      "          'never': 1,\n",
      "          'made': 1,\n",
      "          'nnow': 1,\n",
      "          'excuse': 1,\n",
      "          'forget': 1,\n",
      "          'saw': 1,\n",
      "          'nuseless': 1,\n",
      "          'triviajoel': 1,\n",
      "          'loves': 1,\n",
      "          'theme': 1,\n",
      "          'used': 1,\n",
      "          'forever': 1,\n",
      "          'robin': 1,\n",
      "          'falling': 1,\n",
      "          'rumoured': 1,\n",
      "          'play': 1,\n",
      "          'breakfast': 1,\n",
      "          'table': 1,\n",
      "          'tomorrow': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'plays': 8,\n",
      "          'uninteresting': 7,\n",
      "          'blonde': 6,\n",
      "          'film': 5,\n",
      "          'real': 5,\n",
      "          'really': 4,\n",
      "          'nthe': 4,\n",
      "          'soap': 4,\n",
      "          'nshe': 3,\n",
      "          'collars': 2,\n",
      "          'cuffs': 2,\n",
      "          'match': 2,\n",
      "          'supposedly': 2,\n",
      "          'operas': 2,\n",
      "          'business': 2,\n",
      "          'nit': 2,\n",
      "          'dicillo': 2,\n",
      "          'modine': 2,\n",
      "          'joe': 2,\n",
      "          'agent': 2,\n",
      "          'take': 2,\n",
      "          'thats': 2,\n",
      "          'acting': 2,\n",
      "          'keener': 2,\n",
      "          'nbut': 2,\n",
      "          'madonna': 2,\n",
      "          'video': 2,\n",
      "          'one': 2,\n",
      "          'interesting': 2,\n",
      "          'single': 2,\n",
      "          'whos': 2,\n",
      "          'entire': 2,\n",
      "          'bob': 2,\n",
      "          'nwhy': 2,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'diamonds': 1,\n",
      "          'forever': 1,\n",
      "          'tiffany': 1,\n",
      "          'case': 1,\n",
      "          'asks': 1,\n",
      "          '007': 1,\n",
      "          'whether': 1,\n",
      "          'prefers': 1,\n",
      "          'brunettes': 1,\n",
      "          'redheads': 1,\n",
      "          'nbonds': 1,\n",
      "          'response': 1,\n",
      "          'doesnt': 1,\n",
      "          'matter': 1,\n",
      "          'long': 1,\n",
      "          'nwell': 1,\n",
      "          'dont': 1,\n",
      "          'nwhat': 1,\n",
      "          'might': 1,\n",
      "          'sounded': 1,\n",
      "          'good': 1,\n",
      "          'paper': 1,\n",
      "          'ends': 1,\n",
      "          'largely': 1,\n",
      "          'unfunny': 1,\n",
      "          'meandering': 1,\n",
      "          'comedy': 1,\n",
      "          'screen': 1,\n",
      "          'satire': 1,\n",
      "          'superficiality': 1,\n",
      "          'modeling': 1,\n",
      "          'wafer': 1,\n",
      "          'thin': 1,\n",
      "          'like': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'episode': 1,\n",
      "          'dragged': 1,\n",
      "          'nth': 1,\n",
      "          'degree': 1,\n",
      "          'replete': 1,\n",
      "          'unnecessary': 1,\n",
      "          'fantasy': 1,\n",
      "          'sequences': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'tom': 1,\n",
      "          'manages': 1,\n",
      "          'material': 1,\n",
      "          'poking': 1,\n",
      "          'fun': 1,\n",
      "          'daytime': 1,\n",
      "          'dramas': 1,\n",
      "          'fresh': 1,\n",
      "          'idea': 1,\n",
      "          'isnt': 1,\n",
      "          'surprise': 1,\n",
      "          'talented': 1,\n",
      "          'could': 1,\n",
      "          'make': 1,\n",
      "          'familiar': 1,\n",
      "          'terrain': 1,\n",
      "          'dreary': 1,\n",
      "          'nmatthew': 1,\n",
      "          'struggling': 1,\n",
      "          'actor': 1,\n",
      "          'waiting': 1,\n",
      "          'tables': 1,\n",
      "          'order': 1,\n",
      "          'pay': 1,\n",
      "          'rent': 1,\n",
      "          'nhes': 1,\n",
      "          '35': 1,\n",
      "          'credits': 1,\n",
      "          'since': 1,\n",
      "          'hes': 1,\n",
      "          'proud': 1,\n",
      "          'roles': 1,\n",
      "          'commercials': 1,\n",
      "          'n': 1,\n",
      "          'tells': 1,\n",
      "          'girlfriend': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'mary': 1,\n",
      "          'catherine': 1,\n",
      "          'bickers': 1,\n",
      "          'constantly': 1,\n",
      "          'sex': 1,\n",
      "          'need': 1,\n",
      "          'money': 1,\n",
      "          'finally': 1,\n",
      "          'agrees': 1,\n",
      "          'part': 1,\n",
      "          'starring': 1,\n",
      "          'lookalike': 1,\n",
      "          'played': 1,\n",
      "          'elizabeth': 1,\n",
      "          'berkley': 1,\n",
      "          'still': 1,\n",
      "          'trying': 1,\n",
      "          'jumpstart': 1,\n",
      "          'career': 1,\n",
      "          'showgirls': 1,\n",
      "          'nthis': 1,\n",
      "          'points': 1,\n",
      "          'artificial': 1,\n",
      "          'whole': 1,\n",
      "          'supposes': 1,\n",
      "          'ndicillo': 1,\n",
      "          'referred': 1,\n",
      "          'offkilter': 1,\n",
      "          'combination': 1,\n",
      "          'sorts': 1,\n",
      "          'stuff': 1,\n",
      "          'wanders': 1,\n",
      "          'place': 1,\n",
      "          'without': 1,\n",
      "          'getting': 1,\n",
      "          'anywhere': 1,\n",
      "          'remarkably': 1,\n",
      "          'kilter': 1,\n",
      "          'perhaps': 1,\n",
      "          'exception': 1,\n",
      "          'alwayslikable': 1,\n",
      "          'afraid': 1,\n",
      "          'stand': 1,\n",
      "          'around': 1,\n",
      "          'unattractive': 1,\n",
      "          'bathing': 1,\n",
      "          'suit': 1,\n",
      "          'surrounded': 1,\n",
      "          'hunks': 1,\n",
      "          'cast': 1,\n",
      "          'vague': 1,\n",
      "          'ncatherine': 1,\n",
      "          'appeared': 1,\n",
      "          'dicillos': 1,\n",
      "          'previous': 1,\n",
      "          'three': 1,\n",
      "          'films': 1,\n",
      "          'including': 1,\n",
      "          'brilliant': 1,\n",
      "          'living': 1,\n",
      "          'oblivion': 1,\n",
      "          'annoying': 1,\n",
      "          'nlook': 1,\n",
      "          'closely': 1,\n",
      "          'cant': 1,\n",
      "          'act': 1,\n",
      "          'nher': 1,\n",
      "          'reactions': 1,\n",
      "          'wrong': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'sync': 1,\n",
      "          'costars': 1,\n",
      "          'reacts': 1,\n",
      "          'soon': 1,\n",
      "          'late': 1,\n",
      "          'lines': 1,\n",
      "          'situations': 1,\n",
      "          'moves': 1,\n",
      "          'eyes': 1,\n",
      "          'mouth': 1,\n",
      "          'far': 1,\n",
      "          'much': 1,\n",
      "          'frowns': 1,\n",
      "          'yells': 1,\n",
      "          'babblesshe': 1,\n",
      "          'blows': 1,\n",
      "          'chunks': 1,\n",
      "          'nmaxwell': 1,\n",
      "          'caulfield': 1,\n",
      "          'joes': 1,\n",
      "          'actorwaiter': 1,\n",
      "          'buddy': 1,\n",
      "          'obsessed': 1,\n",
      "          'dating': 1,\n",
      "          'natural': 1,\n",
      "          'nbobs': 1,\n",
      "          'personality': 1,\n",
      "          'mention': 1,\n",
      "          'caulfields': 1,\n",
      "          'ability': 1,\n",
      "          'parallels': 1,\n",
      "          'character': 1,\n",
      "          'opera': 1,\n",
      "          'passion': 1,\n",
      "          'crest': 1,\n",
      "          'stiff': 1,\n",
      "          'nmaybe': 1,\n",
      "          'point': 1,\n",
      "          'ndaryl': 1,\n",
      "          'hannah': 1,\n",
      "          'dim': 1,\n",
      "          'title': 1,\n",
      "          'dish': 1,\n",
      "          'beds': 1,\n",
      "          'offcamera': 1,\n",
      "          'nhannah': 1,\n",
      "          'looks': 1,\n",
      "          'fifty': 1,\n",
      "          'movie': 1,\n",
      "          'shes': 1,\n",
      "          '37': 1,\n",
      "          'nalmost': 1,\n",
      "          'women': 1,\n",
      "          'wear': 1,\n",
      "          'tops': 1,\n",
      "          'show': 1,\n",
      "          'nipples': 1,\n",
      "          'nmarlo': 1,\n",
      "          'thomas': 1,\n",
      "          'fashion': 1,\n",
      "          'photographer': 1,\n",
      "          'nkathleen': 1,\n",
      "          'turner': 1,\n",
      "          'talent': 1,\n",
      "          'nbuck': 1,\n",
      "          'henry': 1,\n",
      "          'shrink': 1,\n",
      "          'nchristopher': 1,\n",
      "          'lloyd': 1,\n",
      "          'caterer': 1,\n",
      "          'nand': 1,\n",
      "          'best': 1,\n",
      "          'parts': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'brief': 1,\n",
      "          'scenes': 1,\n",
      "          'elderly': 1,\n",
      "          'woman': 1,\n",
      "          'losing': 1,\n",
      "          'finding': 1,\n",
      "          'dog': 1,\n",
      "          'ntheres': 1,\n",
      "          'depth': 1,\n",
      "          'sincerity': 1,\n",
      "          'closeup': 1,\n",
      "          'expressive': 1,\n",
      "          'face': 1,\n",
      "          'nwhile': 1,\n",
      "          'contrast': 1,\n",
      "          'meant': 1,\n",
      "          'highlight': 1,\n",
      "          'shallowness': 1,\n",
      "          'characters': 1,\n",
      "          'lives': 1,\n",
      "          'thing': 1,\n",
      "          'makes': 1,\n",
      "          'shallow': 1,\n",
      "          'superficial': 1,\n",
      "          'funny': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'armageddon': 7,\n",
      "          'impact': 6,\n",
      "          'harry': 6,\n",
      "          'meteor': 5,\n",
      "          'movies': 4,\n",
      "          'see': 4,\n",
      "          'n': 4,\n",
      "          'probably': 3,\n",
      "          'team': 3,\n",
      "          'deep': 3,\n",
      "          'people': 3,\n",
      "          'j': 3,\n",
      "          'grace': 3,\n",
      "          'nif': 3,\n",
      "          'plot': 2,\n",
      "          'graph': 2,\n",
      "          'hollywood': 2,\n",
      "          'line': 2,\n",
      "          'michael': 2,\n",
      "          'rock': 2,\n",
      "          'better': 2,\n",
      "          'much': 2,\n",
      "          'like': 2,\n",
      "          'earth': 2,\n",
      "          'didnt': 2,\n",
      "          '18': 2,\n",
      "          'days': 2,\n",
      "          'ndeep': 2,\n",
      "          'size': 2,\n",
      "          'new': 2,\n",
      "          'idea': 2,\n",
      "          'drill': 2,\n",
      "          'sounds': 2,\n",
      "          'bruce': 2,\n",
      "          'willis': 2,\n",
      "          'tagline': 2,\n",
      "          'harrys': 2,\n",
      "          '2': 2,\n",
      "          'space': 2,\n",
      "          'relationship': 2,\n",
      "          'nand': 2,\n",
      "          'daughter': 2,\n",
      "          'place': 2,\n",
      "          'movie': 2,\n",
      "          'human': 2,\n",
      "          'proves': 2,\n",
      "          'nothing': 2,\n",
      "          'still': 2,\n",
      "          'know': 2,\n",
      "          'screen': 2,\n",
      "          'music': 2,\n",
      "          'even': 2,\n",
      "          'believe': 2,\n",
      "          'makers': 2,\n",
      "          'please': 2,\n",
      "          'worth': 2,\n",
      "          'time': 2,\n",
      "          'year': 1,\n",
      "          'movieplotridiculity': 1,\n",
      "          'youll': 1,\n",
      "          'constant': 1,\n",
      "          'gradient': 1,\n",
      "          'bayjerry': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'made': 1,\n",
      "          'last': 1,\n",
      "          '4': 1,\n",
      "          'years': 1,\n",
      "          'would': 1,\n",
      "          'exponential': 1,\n",
      "          'growth': 1,\n",
      "          'started': 1,\n",
      "          'smith': 1,\n",
      "          'vehicle': 1,\n",
      "          'bad': 1,\n",
      "          'boys': 1,\n",
      "          '2hr': 1,\n",
      "          'long': 1,\n",
      "          'actionmusicvideo': 1,\n",
      "          'nevertheless': 1,\n",
      "          'entertaining': 1,\n",
      "          'nthen': 1,\n",
      "          'came': 1,\n",
      "          'audiences': 1,\n",
      "          'flocked': 1,\n",
      "          'nicholas': 1,\n",
      "          'cage': 1,\n",
      "          'sean': 1,\n",
      "          'connery': 1,\n",
      "          'terrorizing': 1,\n",
      "          'general': 1,\n",
      "          'fighting': 1,\n",
      "          'stupid': 1,\n",
      "          'cause': 1,\n",
      "          'nconair': 1,\n",
      "          'ridiculousy': 1,\n",
      "          'dumb': 1,\n",
      "          'premise': 1,\n",
      "          'fun': 1,\n",
      "          'moments': 1,\n",
      "          'forget': 1,\n",
      "          'nursery': 1,\n",
      "          'rhyme': 1,\n",
      "          'sang': 1,\n",
      "          'psycho': 1,\n",
      "          'killer': 1,\n",
      "          'played': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'nwhile': 1,\n",
      "          'worked': 1,\n",
      "          'something': 1,\n",
      "          'coverup': 1,\n",
      "          'dirt': 1,\n",
      "          'nvery': 1,\n",
      "          'heading': 1,\n",
      "          'towards': 1,\n",
      "          'realize': 1,\n",
      "          'settled': 1,\n",
      "          'modest': 1,\n",
      "          'large': 1,\n",
      "          'city': 1,\n",
      "          'york': 1,\n",
      "          'bigger': 1,\n",
      "          'well': 1,\n",
      "          'nabout': 1,\n",
      "          'texas': 1,\n",
      "          'kinda': 1,\n",
      "          'whould': 1,\n",
      "          'knock': 1,\n",
      "          'orbit': 1,\n",
      "          'panic': 1,\n",
      "          'sighting': 1,\n",
      "          'spurs': 1,\n",
      "          'landing': 1,\n",
      "          'nuke': 1,\n",
      "          'familiar': 1,\n",
      "          'job': 1,\n",
      "          'stamper': 1,\n",
      "          'oildriller': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'extraordinaire': 1,\n",
      "          'machomisfits': 1,\n",
      "          'nursing': 1,\n",
      "          'aint': 1,\n",
      "          'nothin': 1,\n",
      "          'planet': 1,\n",
      "          'cant': 1,\n",
      "          'nin': 1,\n",
      "          'group': 1,\n",
      "          'split': 1,\n",
      "          'teams': 1,\n",
      "          'trained': 1,\n",
      "          'deepspace': 1,\n",
      "          'flight': 1,\n",
      "          'finally': 1,\n",
      "          'blasted': 1,\n",
      "          'special': 1,\n",
      "          'drilling': 1,\n",
      "          'vehicles': 1,\n",
      "          'shuttles': 1,\n",
      "          'main': 1,\n",
      "          'drama': 1,\n",
      "          'formed': 1,\n",
      "          'within': 1,\n",
      "          'nto': 1,\n",
      "          'give': 1,\n",
      "          'nworks': 1,\n",
      "          'loves': 1,\n",
      "          'problem': 1,\n",
      "          'hates': 1,\n",
      "          'hanging': 1,\n",
      "          'around': 1,\n",
      "          'scruffy': 1,\n",
      "          'grunt': 1,\n",
      "          'rest': 1,\n",
      "          'life': 1,\n",
      "          'nso': 1,\n",
      "          'struts': 1,\n",
      "          'position': 1,\n",
      "          'unable': 1,\n",
      "          'take': 1,\n",
      "          'sides': 1,\n",
      "          'remains': 1,\n",
      "          'seated': 1,\n",
      "          'nasa': 1,\n",
      "          'control': 1,\n",
      "          'tower': 1,\n",
      "          'crying': 1,\n",
      "          '80': 1,\n",
      "          'elements': 1,\n",
      "          'tries': 1,\n",
      "          'inject': 1,\n",
      "          'excuse': 1,\n",
      "          'slowmos': 1,\n",
      "          'goldtinted': 1,\n",
      "          'photography': 1,\n",
      "          'anguish': 1,\n",
      "          'world': 1,\n",
      "          'potrayed': 1,\n",
      "          'scenes': 1,\n",
      "          'praying': 1,\n",
      "          'running': 1,\n",
      "          'lives': 1,\n",
      "          'sitting': 1,\n",
      "          'staring': 1,\n",
      "          'sky': 1,\n",
      "          'fine': 1,\n",
      "          'right': 1,\n",
      "          'ni': 1,\n",
      "          'looks': 1,\n",
      "          'staged': 1,\n",
      "          'ask': 1,\n",
      "          'whats': 1,\n",
      "          'difference': 1,\n",
      "          'rb': 1,\n",
      "          'video': 1,\n",
      "          'nyoud': 1,\n",
      "          'said': 1,\n",
      "          'nnot': 1,\n",
      "          'surprising': 1,\n",
      "          'since': 1,\n",
      "          'bay': 1,\n",
      "          'child': 1,\n",
      "          'industry': 1,\n",
      "          'actually': 1,\n",
      "          'managed': 1,\n",
      "          'transpose': 1,\n",
      "          'mtv': 1,\n",
      "          'skills': 1,\n",
      "          'successfully': 1,\n",
      "          'nhis': 1,\n",
      "          'foray': 1,\n",
      "          'doesnt': 1,\n",
      "          'stop': 1,\n",
      "          'nwell': 1,\n",
      "          'theres': 1,\n",
      "          'really': 1,\n",
      "          'sum': 1,\n",
      "          'stockaitkenwaterman': 1,\n",
      "          'projected': 1,\n",
      "          'artform': 1,\n",
      "          'ridiculity': 1,\n",
      "          'beyond': 1,\n",
      "          'plane': 1,\n",
      "          'believability': 1,\n",
      "          'accept': 1,\n",
      "          'ridiculous': 1,\n",
      "          'aspects': 1,\n",
      "          'thing': 1,\n",
      "          'decided': 1,\n",
      "          'shroud': 1,\n",
      "          'myth': 1,\n",
      "          'fantasy': 1,\n",
      "          'purely': 1,\n",
      "          'believable': 1,\n",
      "          'tale': 1,\n",
      "          'suffering': 1,\n",
      "          'coming': 1,\n",
      "          'terms': 1,\n",
      "          'ones': 1,\n",
      "          'problems': 1,\n",
      "          'ultimately': 1,\n",
      "          'brought': 1,\n",
      "          'ashes': 1,\n",
      "          'initially': 1,\n",
      "          'put': 1,\n",
      "          'overcrowded': 1,\n",
      "          'loud': 1,\n",
      "          'messy': 1,\n",
      "          'preposterously': 1,\n",
      "          'manipulative': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'deserves': 1,\n",
      "          'remain': 1,\n",
      "          'pile': 1,\n",
      "          'ash': 1,\n",
      "          '20': 1,\n",
      "          'planned': 1,\n",
      "          'watched': 1,\n",
      "          'liv': 1,\n",
      "          'tyler': 1,\n",
      "          'catch': 1,\n",
      "          'finishes': 1,\n",
      "          'run': 1,\n",
      "          'may': 1,\n",
      "          'watching': 1,\n",
      "          'longlong': 1,\n",
      "          'bring': 1,\n",
      "          'earplugs': 1,\n",
      "          'aspirins': 1,\n",
      "          'vertigo': 1,\n",
      "          'nexpect': 1,\n",
      "          'lds': 1,\n",
      "          'retail': 1,\n",
      "          's19': 1,\n",
      "          '90': 1,\n",
      "          'carrefour': 1,\n",
      "          'come': 1,\n",
      "          'release': 1,\n",
      "          'ngee': 1,\n",
      "          'thats': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'films': 6,\n",
      "          'mommie': 5,\n",
      "          'dearest': 5,\n",
      "          'crawford': 4,\n",
      "          'daughter': 4,\n",
      "          'office': 3,\n",
      "          'performance': 3,\n",
      "          'see': 3,\n",
      "          'joan': 3,\n",
      "          'nin': 3,\n",
      "          'late': 3,\n",
      "          'dunaways': 3,\n",
      "          'christina': 3,\n",
      "          'doesnt': 3,\n",
      "          'tina': 2,\n",
      "          'axe': 2,\n",
      "          'back': 2,\n",
      "          'paramount': 2,\n",
      "          'soon': 2,\n",
      "          'problem': 2,\n",
      "          'hands': 2,\n",
      "          'box': 2,\n",
      "          'two': 2,\n",
      "          'times': 2,\n",
      "          'events': 2,\n",
      "          'outrageous': 2,\n",
      "          'camp': 2,\n",
      "          'series': 2,\n",
      "          'life': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'kids': 2,\n",
      "          'thats': 2,\n",
      "          'writers': 2,\n",
      "          'perrys': 2,\n",
      "          'home': 2,\n",
      "          'nand': 2,\n",
      "          'piece': 2,\n",
      "          'proceeds': 2,\n",
      "          'like': 2,\n",
      "          'wire': 2,\n",
      "          'hangers': 2,\n",
      "          'noh': 2,\n",
      "          'another': 2,\n",
      "          'classic': 2,\n",
      "          'great': 2,\n",
      "          'fetch': 1,\n",
      "          'na': 1,\n",
      "          'favourite': 1,\n",
      "          'book': 1,\n",
      "          'mine': 1,\n",
      "          'called': 1,\n",
      "          'golden': 1,\n",
      "          'turkey': 1,\n",
      "          'awards': 1,\n",
      "          'relates': 1,\n",
      "          'story': 1,\n",
      "          'unleashed': 1,\n",
      "          'upon': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'audiences': 1,\n",
      "          '1981': 1,\n",
      "          'realised': 1,\n",
      "          'nit': 1,\n",
      "          'wasnt': 1,\n",
      "          'disappointing': 1,\n",
      "          'nindeed': 1,\n",
      "          'coming': 1,\n",
      "          'years': 1,\n",
      "          'people': 1,\n",
      "          'would': 1,\n",
      "          'going': 1,\n",
      "          'three': 1,\n",
      "          'even': 1,\n",
      "          'six': 1,\n",
      "          'nno': 1,\n",
      "          'main': 1,\n",
      "          'intended': 1,\n",
      "          'serious': 1,\n",
      "          'biopic': 1,\n",
      "          'screen': 1,\n",
      "          'queen': 1,\n",
      "          'turning': 1,\n",
      "          'laugh': 1,\n",
      "          'riot': 1,\n",
      "          'year': 1,\n",
      "          'desperate': 1,\n",
      "          'attempt': 1,\n",
      "          'capitalise': 1,\n",
      "          'unexpected': 1,\n",
      "          'turn': 1,\n",
      "          'publicity': 1,\n",
      "          'hacks': 1,\n",
      "          'dreamed': 1,\n",
      "          'print': 1,\n",
      "          'advertisements': 1,\n",
      "          'screaming': 1,\n",
      "          'biggest': 1,\n",
      "          'nexecutives': 1,\n",
      "          'appalled': 1,\n",
      "          'ads': 1,\n",
      "          'withdrawn': 1,\n",
      "          'nmommie': 1,\n",
      "          'already': 1,\n",
      "          'cementing': 1,\n",
      "          'place': 1,\n",
      "          'cinema': 1,\n",
      "          'history': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'faye': 1,\n",
      "          'energetic': 1,\n",
      "          'ridiculously': 1,\n",
      "          'overthetop': 1,\n",
      "          'redeeming': 1,\n",
      "          'feature': 1,\n",
      "          'nbased': 1,\n",
      "          'crawfords': 1,\n",
      "          'trashy': 1,\n",
      "          'biography': 1,\n",
      "          'chronicles': 1,\n",
      "          'mainly': 1,\n",
      "          'private': 1,\n",
      "          'moviestar': 1,\n",
      "          'mother': 1,\n",
      "          'nif': 1,\n",
      "          'believe': 1,\n",
      "          'movie': 1,\n",
      "          'racked': 1,\n",
      "          'obsession': 1,\n",
      "          'lonliness': 1,\n",
      "          'child': 1,\n",
      "          'abuse': 1,\n",
      "          'rampant': 1,\n",
      "          'egomania': 1,\n",
      "          'begins': 1,\n",
      "          'adopting': 1,\n",
      "          'children': 1,\n",
      "          'concludes': 1,\n",
      "          'lawyer': 1,\n",
      "          'grownup': 1,\n",
      "          'son': 1,\n",
      "          'find': 1,\n",
      "          'left': 1,\n",
      "          'mothers': 1,\n",
      "          'njoan': 1,\n",
      "          'always': 1,\n",
      "          'wanted': 1,\n",
      "          'able': 1,\n",
      "          'fend': 1,\n",
      "          'nbut': 1,\n",
      "          'thread': 1,\n",
      "          'narrative': 1,\n",
      "          'manages': 1,\n",
      "          'survive': 1,\n",
      "          'end': 1,\n",
      "          'script': 1,\n",
      "          'laboured': 1,\n",
      "          'four': 1,\n",
      "          'bad': 1,\n",
      "          'sign': 1,\n",
      "          'poorly': 1,\n",
      "          'connected': 1,\n",
      "          'episodes': 1,\n",
      "          'builds': 1,\n",
      "          'little': 1,\n",
      "          'dramatic': 1,\n",
      "          'momentum': 1,\n",
      "          'nfrank': 1,\n",
      "          'direction': 1,\n",
      "          'competent': 1,\n",
      "          'bitchy': 1,\n",
      "          'lines': 1,\n",
      "          'aside': 1,\n",
      "          'dialogue': 1,\n",
      "          'flat': 1,\n",
      "          'uninvolving': 1,\n",
      "          'fairness': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'ditches': 1,\n",
      "          'cartoon': 1,\n",
      "          'hysterics': 1,\n",
      "          'develop': 1,\n",
      "          'degree': 1,\n",
      "          'empathy': 1,\n",
      "          'characters': 1,\n",
      "          'nwhen': 1,\n",
      "          'adult': 1,\n",
      "          'moves': 1,\n",
      "          'modest': 1,\n",
      "          'dwelling': 1,\n",
      "          'visits': 1,\n",
      "          'keeps': 1,\n",
      "          'touch': 1,\n",
      "          'helping': 1,\n",
      "          'financially': 1,\n",
      "          'encouraging': 1,\n",
      "          'christinas': 1,\n",
      "          'acting': 1,\n",
      "          'career': 1,\n",
      "          'ambitions': 1,\n",
      "          'ncrawford': 1,\n",
      "          'seem': 1,\n",
      "          'care': 1,\n",
      "          'sense': 1,\n",
      "          'emotional': 1,\n",
      "          'distance': 1,\n",
      "          'feel': 1,\n",
      "          'pain': 1,\n",
      "          'nyou': 1,\n",
      "          'also': 1,\n",
      "          'get': 1,\n",
      "          'glimpses': 1,\n",
      "          'could': 1,\n",
      "          'better': 1,\n",
      "          'nah': 1,\n",
      "          'delicious': 1,\n",
      "          'campery': 1,\n",
      "          'often': 1,\n",
      "          'nhaving': 1,\n",
      "          'sacked': 1,\n",
      "          'studio': 1,\n",
      "          'run': 1,\n",
      "          'duds': 1,\n",
      "          'storms': 1,\n",
      "          'night': 1,\n",
      "          'go': 1,\n",
      "          'ballistic': 1,\n",
      "          'garden': 1,\n",
      "          'nshe': 1,\n",
      "          'maid': 1,\n",
      "          'drag': 1,\n",
      "          'bed': 1,\n",
      "          'come': 1,\n",
      "          'clean': 1,\n",
      "          'mess': 1,\n",
      "          'shes': 1,\n",
      "          'making': 1,\n",
      "          'nspotting': 1,\n",
      "          'young': 1,\n",
      "          'tree': 1,\n",
      "          'look': 1,\n",
      "          'turns': 1,\n",
      "          'trembling': 1,\n",
      "          'utters': 1,\n",
      "          'immortal': 1,\n",
      "          'line': 1,\n",
      "          'nfetch': 1,\n",
      "          'nwith': 1,\n",
      "          'enthusiastically': 1,\n",
      "          'dismember': 1,\n",
      "          'poor': 1,\n",
      "          'sapling': 1,\n",
      "          'scene': 1,\n",
      "          'realises': 1,\n",
      "          'daughters': 1,\n",
      "          'clothes': 1,\n",
      "          'hanging': 1,\n",
      "          'coat': 1,\n",
      "          'dear': 1,\n",
      "          'nsounds': 1,\n",
      "          'perfect': 1,\n",
      "          'excuse': 1,\n",
      "          'temper': 1,\n",
      "          'tantrum': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'gives': 1,\n",
      "          'horrible': 1,\n",
      "          'beating': 1,\n",
      "          'delivering': 1,\n",
      "          'outburst': 1,\n",
      "          'ever': 1,\n",
      "          'later': 1,\n",
      "          'board': 1,\n",
      "          'husbands': 1,\n",
      "          'company': 1,\n",
      "          'pepsi': 1,\n",
      "          'cola': 1,\n",
      "          'tries': 1,\n",
      "          'divest': 1,\n",
      "          'directorship': 1,\n",
      "          'displays': 1,\n",
      "          'superb': 1,\n",
      "          'grasp': 1,\n",
      "          'business': 1,\n",
      "          'etiquette': 1,\n",
      "          'jumping': 1,\n",
      "          'feet': 1,\n",
      "          'roaring': 1,\n",
      "          'dont': 1,\n",
      "          'fuck': 1,\n",
      "          'fellas': 1,\n",
      "          'joy': 1,\n",
      "          'nsomething': 1,\n",
      "          'youre': 1,\n",
      "          'cup': 1,\n",
      "          'tea': 1,\n",
      "          'much': 1,\n",
      "          'recommend': 1,\n",
      "          'nbetter': 1,\n",
      "          'real': 1,\n",
      "          'women': 1,\n",
      "          '1939': 1,\n",
      "          'mildred': 1,\n",
      "          'pierce': 1,\n",
      "          '1945': 1,\n",
      "          'whatever': 1,\n",
      "          'happened': 1,\n",
      "          'baby': 1,\n",
      "          'jane': 1,\n",
      "          '1962': 1,\n",
      "          'ngreat': 1,\n",
      "          'distinguished': 1,\n",
      "          'performances': 1,\n",
      "          'far': 1,\n",
      "          'eloquent': 1,\n",
      "          'testament': 1,\n",
      "          'woman': 1,\n",
      "          'frank': 1,\n",
      "          'shrieking': 1,\n",
      "          'tabloid': 1,\n",
      "          'froth': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'phil': 3,\n",
      "          'movie': 3,\n",
      "          'almost': 3,\n",
      "          'problem': 2,\n",
      "          'author': 2,\n",
      "          'werewolfism': 2,\n",
      "          'enough': 2,\n",
      "          'nand': 2,\n",
      "          'fangs': 2,\n",
      "          'film': 2,\n",
      "          'nas': 2,\n",
      "          'plays': 2,\n",
      "          'husband': 2,\n",
      "          'sex': 2,\n",
      "          'nthe': 2,\n",
      "          'blonde': 2,\n",
      "          'radmar': 1,\n",
      "          'jao': 1,\n",
      "          'hairy': 1,\n",
      "          'nhis': 1,\n",
      "          'beard': 1,\n",
      "          'growing': 1,\n",
      "          'rapidly': 1,\n",
      "          'shave': 1,\n",
      "          'every': 1,\n",
      "          'hour': 1,\n",
      "          'nhe': 1,\n",
      "          'recently': 1,\n",
      "          'met': 1,\n",
      "          'nonfiction': 1,\n",
      "          'book': 1,\n",
      "          'lycanthropy': 1,\n",
      "          'also': 1,\n",
      "          'referred': 1,\n",
      "          'believes': 1,\n",
      "          'become': 1,\n",
      "          'werewolf': 1,\n",
      "          'nusing': 1,\n",
      "          'chains': 1,\n",
      "          'handcuffs': 1,\n",
      "          'hit': 1,\n",
      "          'sadomasochists': 1,\n",
      "          'convention': 1,\n",
      "          'ties': 1,\n",
      "          'night': 1,\n",
      "          'lest': 1,\n",
      "          'urges': 1,\n",
      "          'overcome': 1,\n",
      "          'one': 1,\n",
      "          'many': 1,\n",
      "          'quirky': 1,\n",
      "          'characters': 1,\n",
      "          'inhabit': 1,\n",
      "          'shopping': 1,\n",
      "          'nmade': 1,\n",
      "          'pittance': 1,\n",
      "          'features': 1,\n",
      "          'exclusively': 1,\n",
      "          'asianamerican': 1,\n",
      "          'cast': 1,\n",
      "          'directed': 1,\n",
      "          'quentin': 1,\n",
      "          'lee': 1,\n",
      "          'justin': 1,\n",
      "          'lin': 1,\n",
      "          'amateurishly': 1,\n",
      "          'bad': 1,\n",
      "          'could': 1,\n",
      "          'parody': 1,\n",
      "          'indie': 1,\n",
      "          'films': 1,\n",
      "          'njeanne': 1,\n",
      "          'chin': 1,\n",
      "          'katherine': 1,\n",
      "          'meek': 1,\n",
      "          'softspoken': 1,\n",
      "          'wife': 1,\n",
      "          'worries': 1,\n",
      "          'unhappy': 1,\n",
      "          'giving': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'endless': 1,\n",
      "          'scenes': 1,\n",
      "          'confessing': 1,\n",
      "          'sins': 1,\n",
      "          'real': 1,\n",
      "          'imagined': 1,\n",
      "          'therapist': 1,\n",
      "          'jim': 1,\n",
      "          'clint': 1,\n",
      "          'jung': 1,\n",
      "          'muscle': 1,\n",
      "          'man': 1,\n",
      "          'macho': 1,\n",
      "          'crudeness': 1,\n",
      "          'picture': 1,\n",
      "          'filled': 1,\n",
      "          'stereotypes': 1,\n",
      "          'ntheres': 1,\n",
      "          'mysterious': 1,\n",
      "          'loudmouthed': 1,\n",
      "          'waitress': 1,\n",
      "          'big': 1,\n",
      "          'platinum': 1,\n",
      "          'wig': 1,\n",
      "          'brags': 1,\n",
      "          'everyone': 1,\n",
      "          'meets': 1,\n",
      "          'shes': 1,\n",
      "          'lesbian': 1,\n",
      "          'nshe': 1,\n",
      "          'spends': 1,\n",
      "          'putting': 1,\n",
      "          'moves': 1,\n",
      "          'favorite': 1,\n",
      "          'customer': 1,\n",
      "          'gay': 1,\n",
      "          'guy': 1,\n",
      "          'lone': 1,\n",
      "          'white': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'wildly': 1,\n",
      "          'unkempt': 1,\n",
      "          'orangey': 1,\n",
      "          'curly': 1,\n",
      "          'hair': 1,\n",
      "          'nfrom': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'attempted': 1,\n",
      "          'rape': 1,\n",
      "          'knifepoint': 1,\n",
      "          'easy': 1,\n",
      "          'guess': 1,\n",
      "          'ending': 1,\n",
      "          'twist': 1,\n",
      "          'script': 1,\n",
      "          'rarely': 1,\n",
      "          'anything': 1,\n",
      "          'offer': 1,\n",
      "          'story': 1,\n",
      "          'minimally': 1,\n",
      "          'developed': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'actors': 1,\n",
      "          'adlibbing': 1,\n",
      "          'none': 1,\n",
      "          'hope': 1,\n",
      "          'directors': 1,\n",
      "          'next': 1,\n",
      "          'substance': 1,\n",
      "          'credible': 1,\n",
      "          'acting': 1,\n",
      "          'nshopping': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '30': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'profanity': 1,\n",
      "          'would': 1,\n",
      "          'fine': 1,\n",
      "          'older': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 13,\n",
      "          'one': 6,\n",
      "          'movie': 6,\n",
      "          'nit': 4,\n",
      "          'drab': 4,\n",
      "          'known': 4,\n",
      "          'lawrence': 3,\n",
      "          'kasdan': 3,\n",
      "          'right': 3,\n",
      "          'lost': 3,\n",
      "          'ark': 3,\n",
      "          'back': 3,\n",
      "          '810': 3,\n",
      "          'nand': 3,\n",
      "          'nhe': 3,\n",
      "          'problems': 3,\n",
      "          'patients': 3,\n",
      "          'drama': 3,\n",
      "          'boring': 3,\n",
      "          'extremely': 3,\n",
      "          'good': 3,\n",
      "          'actor': 3,\n",
      "          'part': 3,\n",
      "          'actually': 3,\n",
      "          'different': 3,\n",
      "          'also': 3,\n",
      "          'played': 3,\n",
      "          'writerdirector': 2,\n",
      "          'thats': 2,\n",
      "          'cowrote': 2,\n",
      "          'raiders': 2,\n",
      "          '910': 2,\n",
      "          '8': 2,\n",
      "          '510': 2,\n",
      "          'nnow': 2,\n",
      "          'looks': 2,\n",
      "          'guess': 2,\n",
      "          'past': 2,\n",
      "          'away': 2,\n",
      "          'small': 2,\n",
      "          'psychologist': 2,\n",
      "          'comedy': 2,\n",
      "          'ni': 2,\n",
      "          'say': 2,\n",
      "          'would': 2,\n",
      "          'think': 2,\n",
      "          'us': 2,\n",
      "          'witty': 2,\n",
      "          'nthis': 2,\n",
      "          'sucks': 2,\n",
      "          'uninteresting': 2,\n",
      "          'left': 2,\n",
      "          'best': 2,\n",
      "          'trying': 2,\n",
      "          'name': 2,\n",
      "          'made': 2,\n",
      "          'day': 2,\n",
      "          'four': 2,\n",
      "          'shallow': 2,\n",
      "          'help': 2,\n",
      "          'loren': 2,\n",
      "          'dean': 2,\n",
      "          'like': 2,\n",
      "          'even': 2,\n",
      "          'dry': 2,\n",
      "          'watching': 2,\n",
      "          'least': 2,\n",
      "          'real': 2,\n",
      "          'fans': 2,\n",
      "          'see': 2,\n",
      "          'person': 2,\n",
      "          'scene': 2,\n",
      "          'lee': 2,\n",
      "          'skateboarding': 2,\n",
      "          'company': 2,\n",
      "          'actress': 2,\n",
      "          'plays': 2,\n",
      "          'born': 2,\n",
      "          'hand': 1,\n",
      "          'penning': 1,\n",
      "          'biggest': 1,\n",
      "          'successes': 1,\n",
      "          '1980s': 1,\n",
      "          'nyes': 1,\n",
      "          'empire': 1,\n",
      "          'strikes': 1,\n",
      "          'return': 1,\n",
      "          'jedi': 1,\n",
      "          'though': 1,\n",
      "          'decided': 1,\n",
      "          'test': 1,\n",
      "          'skills': 1,\n",
      "          'mediocre': 1,\n",
      "          'screenwriting': 1,\n",
      "          'bland': 1,\n",
      "          'directing': 1,\n",
      "          'succeeds': 1,\n",
      "          'nplot': 1,\n",
      "          'man': 1,\n",
      "          'shady': 1,\n",
      "          'regrettable': 1,\n",
      "          'decides': 1,\n",
      "          'run': 1,\n",
      "          'american': 1,\n",
      "          'town': 1,\n",
      "          'pretends': 1,\n",
      "          'licensed': 1,\n",
      "          'openarmed': 1,\n",
      "          'swarm': 1,\n",
      "          'people': 1,\n",
      "          'isnt': 1,\n",
      "          'long': 1,\n",
      "          'befriends': 1,\n",
      "          'smalltown': 1,\n",
      "          'billionaire': 1,\n",
      "          'folks': 1,\n",
      "          'become': 1,\n",
      "          'suspicious': 1,\n",
      "          'falls': 1,\n",
      "          'ncritique': 1,\n",
      "          'front': 1,\n",
      "          'trailer': 1,\n",
      "          'secures': 1,\n",
      "          'base': 1,\n",
      "          'humor': 1,\n",
      "          'unfortunately': 1,\n",
      "          'serious': 1,\n",
      "          'seriously': 1,\n",
      "          'flawed': 1,\n",
      "          'ask': 1,\n",
      "          'digress': 1,\n",
      "          'offers': 1,\n",
      "          'couple': 1,\n",
      "          'quips': 1,\n",
      "          'keep': 1,\n",
      "          'awake': 1,\n",
      "          'overall': 1,\n",
      "          'sits': 1,\n",
      "          'review': 1,\n",
      "          'slow': 1,\n",
      "          'starred': 1,\n",
      "          'protagonist': 1,\n",
      "          'unbelievable': 1,\n",
      "          'included': 1,\n",
      "          'dull': 1,\n",
      "          'whose': 1,\n",
      "          'indifferent': 1,\n",
      "          'pissed': 1,\n",
      "          'worst': 1,\n",
      "          'certified': 1,\n",
      "          'many': 1,\n",
      "          'predictable': 1,\n",
      "          'ending': 1,\n",
      "          'idea': 1,\n",
      "          'accomplish': 1,\n",
      "          'picture': 1,\n",
      "          'whatever': 1,\n",
      "          'nmissed': 1,\n",
      "          'nanyone': 1,\n",
      "          'without': 1,\n",
      "          'could': 1,\n",
      "          'never': 1,\n",
      "          'generic': 1,\n",
      "          'puffpiece': 1,\n",
      "          'might': 1,\n",
      "          'described': 1,\n",
      "          'predictably': 1,\n",
      "          'digestible': 1,\n",
      "          'nits': 1,\n",
      "          'wonder': 1,\n",
      "          'studio': 1,\n",
      "          'sell': 1,\n",
      "          'bored': 1,\n",
      "          'cohort': 1,\n",
      "          'sleep': 1,\n",
      "          'nive': 1,\n",
      "          'given': 1,\n",
      "          'points': 1,\n",
      "          'yet': 1,\n",
      "          'distinguishable': 1,\n",
      "          'marks': 1,\n",
      "          'nfirst': 1,\n",
      "          'couldnt': 1,\n",
      "          'much': 1,\n",
      "          'lead': 1,\n",
      "          'looked': 1,\n",
      "          'young': 1,\n",
      "          'charles': 1,\n",
      "          'grodin': 1,\n",
      "          'acted': 1,\n",
      "          'save': 1,\n",
      "          'sardonic': 1,\n",
      "          'wit': 1,\n",
      "          'kept': 1,\n",
      "          'interested': 1,\n",
      "          'nnumber': 1,\n",
      "          'two': 1,\n",
      "          'really': 1,\n",
      "          'seemed': 1,\n",
      "          'geared': 1,\n",
      "          'way': 1,\n",
      "          'well': 1,\n",
      "          'quite': 1,\n",
      "          'titshots': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'god': 1,\n",
      "          'cant': 1,\n",
      "          'get': 1,\n",
      "          'enough': 1,\n",
      "          'aimless': 1,\n",
      "          'three': 1,\n",
      "          'surprised': 1,\n",
      "          'ted': 1,\n",
      "          'dansons': 1,\n",
      "          'cameo': 1,\n",
      "          'yes': 1,\n",
      "          'always': 1,\n",
      "          'sam': 1,\n",
      "          'malone': 1,\n",
      "          'na': 1,\n",
      "          'asshole': 1,\n",
      "          'nonetheless': 1,\n",
      "          'nif': 1,\n",
      "          'ever': 1,\n",
      "          'rent': 1,\n",
      "          'promise': 1,\n",
      "          'wont': 1,\n",
      "          'throw': 1,\n",
      "          'hardearned': 1,\n",
      "          'money': 1,\n",
      "          'theaters': 1,\n",
      "          'nwait': 1,\n",
      "          'pretty': 1,\n",
      "          'nother': 1,\n",
      "          'neven': 1,\n",
      "          'jason': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'mine': 1,\n",
      "          'lame': 1,\n",
      "          'dialogue': 1,\n",
      "          'phoniest': 1,\n",
      "          'romances': 1,\n",
      "          'hit': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'nwell': 1,\n",
      "          'finally': 1,\n",
      "          'came': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'fourth': 1,\n",
      "          'point': 1,\n",
      "          'rating': 1,\n",
      "          'nanyway': 1,\n",
      "          'enjoy': 1,\n",
      "          'babble': 1,\n",
      "          'nfilms': 1,\n",
      "          'bag': 1,\n",
      "          'notherwise': 1,\n",
      "          'skip': 1,\n",
      "          'analyze': 1,\n",
      "          'ntheres': 1,\n",
      "          'great': 1,\n",
      "          'shrink': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'threes': 1,\n",
      "          'alert': 1,\n",
      "          'nterri': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'priscilla': 1,\n",
      "          'barnes': 1,\n",
      "          'pivotal': 1,\n",
      "          'landlady': 1,\n",
      "          'nthe': 1,\n",
      "          'fantasy': 1,\n",
      "          'sequence': 1,\n",
      "          'feature': 1,\n",
      "          'cleavage': 1,\n",
      "          'stay': 1,\n",
      "          'tuned': 1,\n",
      "          'kids': 1,\n",
      "          'nalso': 1,\n",
      "          'note': 1,\n",
      "          'named': 1,\n",
      "          'penthouse': 1,\n",
      "          'pet': 1,\n",
      "          'month': 1,\n",
      "          'march': 1,\n",
      "          '1976': 1,\n",
      "          'nshe': 1,\n",
      "          'joann': 1,\n",
      "          'nshes': 1,\n",
      "          'originally': 1,\n",
      "          'jersey': 1,\n",
      "          'nwho': 1,\n",
      "          'hell': 1,\n",
      "          'dude': 1,\n",
      "          'mumford': 1,\n",
      "          'nyou': 1,\n",
      "          'got': 1,\n",
      "          'know': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          '1969': 1,\n",
      "          'character': 1,\n",
      "          'billy': 1,\n",
      "          'bathgate': 1,\n",
      "          '1991': 1,\n",
      "          'njason': 1,\n",
      "          'state': 1,\n",
      "          'california': 1,\n",
      "          'year': 1,\n",
      "          '1971': 1,\n",
      "          'professional': 1,\n",
      "          'skateboarder': 1,\n",
      "          'acting': 1,\n",
      "          'career': 1,\n",
      "          'took': 1,\n",
      "          'mallrats': 1,\n",
      "          '610': 1,\n",
      "          'owns': 1,\n",
      "          'called': 1,\n",
      "          'stereo': 1,\n",
      "          'manufacturing': 1,\n",
      "          'corp': 1,\n",
      "          'hes': 1,\n",
      "          'every': 1,\n",
      "          'kevin': 1,\n",
      "          'smith': 1,\n",
      "          'except': 1,\n",
      "          'clerks': 1,\n",
      "          'nlisten': 1,\n",
      "          'closely': 1,\n",
      "          'hear': 1,\n",
      "          'pharmacist': 1,\n",
      "          'ballooning': 1,\n",
      "          'formerly': 1,\n",
      "          'pruit': 1,\n",
      "          'taylor': 1,\n",
      "          'vince': 1,\n",
      "          'make': 1,\n",
      "          'reference': 1,\n",
      "          'obviously': 1,\n",
      "          'injoke': 1,\n",
      "          'considering': 1,\n",
      "          'nkasdan': 1,\n",
      "          'dr': 1,\n",
      "          'green': 1,\n",
      "          '1997s': 1,\n",
      "          'gets': 1,\n",
      "          'nted': 1,\n",
      "          'danson': 1,\n",
      "          'role': 1,\n",
      "          'lawyer': 1,\n",
      "          'peter': 1,\n",
      "          'lowenstein': 1,\n",
      "          'kasdans': 1,\n",
      "          '1981': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'body': 1,\n",
      "          'heat': 1,\n",
      "          'starring': 1,\n",
      "          'sexy': 1,\n",
      "          'kathleen': 1,\n",
      "          'turner': 1,\n",
      "          'william': 1,\n",
      "          'hurt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'porter': 5,\n",
      "          'nthe': 4,\n",
      "          'n': 3,\n",
      "          'movie': 3,\n",
      "          'payback': 2,\n",
      "          'dead': 2,\n",
      "          'porters': 2,\n",
      "          'back': 2,\n",
      "          'without': 2,\n",
      "          '000': 2,\n",
      "          'like': 2,\n",
      "          'millionaire': 2,\n",
      "          'film': 2,\n",
      "          'mel': 2,\n",
      "          'us': 2,\n",
      "          'npayback': 2,\n",
      "          'nanonymous': 2,\n",
      "          'villain': 2,\n",
      "          'nmel': 2,\n",
      "          'bello': 2,\n",
      "          'character': 2,\n",
      "          'look': 2,\n",
      "          'conventions': 2,\n",
      "          'etc': 2,\n",
      "          'ladies': 1,\n",
      "          'gentlemen': 1,\n",
      "          'expensive': 1,\n",
      "          'episode': 1,\n",
      "          'equalizer': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'ngibson': 1,\n",
      "          'plays': 1,\n",
      "          'burglar': 1,\n",
      "          'shot': 1,\n",
      "          'left': 1,\n",
      "          'wife': 1,\n",
      "          'deborah': 1,\n",
      "          'kara': 1,\n",
      "          'unger': 1,\n",
      "          'alltoobrief': 1,\n",
      "          'cameo': 1,\n",
      "          'partner': 1,\n",
      "          'henry': 1,\n",
      "          'successful': 1,\n",
      "          'heist': 1,\n",
      "          'nas': 1,\n",
      "          'morgue': 1,\n",
      "          'attendant': 1,\n",
      "          'sets': 1,\n",
      "          'removing': 1,\n",
      "          'bullets': 1,\n",
      "          'miraculously': 1,\n",
      "          'springs': 1,\n",
      "          'life': 1,\n",
      "          'nhe': 1,\n",
      "          'makes': 1,\n",
      "          'mission': 1,\n",
      "          'walking': 1,\n",
      "          'man': 1,\n",
      "          'conscience': 1,\n",
      "          'exact': 1,\n",
      "          'revenge': 1,\n",
      "          'screwed': 1,\n",
      "          'reclaim': 1,\n",
      "          'share': 1,\n",
      "          'loot': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'demands': 1,\n",
      "          '70': 1,\n",
      "          'everybody': 1,\n",
      "          'mishears': 1,\n",
      "          'assumes': 1,\n",
      "          'hes': 1,\n",
      "          'entire': 1,\n",
      "          '130': 1,\n",
      "          'haul': 1,\n",
      "          'nin': 1,\n",
      "          'travels': 1,\n",
      "          'travails': 1,\n",
      "          'encounters': 1,\n",
      "          'several': 1,\n",
      "          'onenamed': 1,\n",
      "          'villainous': 1,\n",
      "          'cretins': 1,\n",
      "          'fairfax': 1,\n",
      "          'james': 1,\n",
      "          'coburn': 1,\n",
      "          'whitehaired': 1,\n",
      "          'thief': 1,\n",
      "          'carter': 1,\n",
      "          'kristofferson': 1,\n",
      "          'brownhaired': 1,\n",
      "          'thiefthe': 1,\n",
      "          'kingpin': 1,\n",
      "          'obligatory': 1,\n",
      "          'operation': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nhelgelands': 1,\n",
      "          'recut': 1,\n",
      "          'producer': 1,\n",
      "          'devoid': 1,\n",
      "          'imperative': 1,\n",
      "          'dime': 1,\n",
      "          'store': 1,\n",
      "          'charm': 1,\n",
      "          'novelty': 1,\n",
      "          'seeing': 1,\n",
      "          'big': 1,\n",
      "          'star': 1,\n",
      "          'mercilessly': 1,\n",
      "          'dispatching': 1,\n",
      "          'criminals': 1,\n",
      "          'wears': 1,\n",
      "          'quickly': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'differentiated': 1,\n",
      "          'coifs': 1,\n",
      "          'b': 1,\n",
      "          'mels': 1,\n",
      "          'schtick': 1,\n",
      "          'doesnt': 1,\n",
      "          'evolve': 1,\n",
      "          'act': 1,\n",
      "          'onehes': 1,\n",
      "          'terminator': 1,\n",
      "          'stranded': 1,\n",
      "          'plot': 1,\n",
      "          'scifi': 1,\n",
      "          'hook': 1,\n",
      "          'keep': 1,\n",
      "          'interested': 1,\n",
      "          'initial': 1,\n",
      "          'sadistic': 1,\n",
      "          'thrill': 1,\n",
      "          'gone': 1,\n",
      "          'called': 1,\n",
      "          'playback': 1,\n",
      "          '102minute': 1,\n",
      "          'loop': 1,\n",
      "          'short': 1,\n",
      "          'sequence': 1,\n",
      "          'want': 1,\n",
      "          'money': 1,\n",
      "          'shoots': 1,\n",
      "          'gun': 1,\n",
      "          'dies': 1,\n",
      "          'meets': 1,\n",
      "          'hooker': 1,\n",
      "          'friend': 1,\n",
      "          'nsecond': 1,\n",
      "          'verse': 1,\n",
      "          'first': 1,\n",
      "          'nits': 1,\n",
      "          'singlemindedness': 1,\n",
      "          'robs': 1,\n",
      "          'snap': 1,\n",
      "          'crackle': 1,\n",
      "          'pop': 1,\n",
      "          'already': 1,\n",
      "          'died': 1,\n",
      "          'nothing': 1,\n",
      "          'lose': 1,\n",
      "          'much': 1,\n",
      "          'gain': 1,\n",
      "          'lacks': 1,\n",
      "          'danger': 1,\n",
      "          'thing': 1,\n",
      "          'jeopardy': 1,\n",
      "          'putting': 1,\n",
      "          'audience': 1,\n",
      "          'sleep': 1,\n",
      "          'gritty': 1,\n",
      "          'metallic': 1,\n",
      "          'also': 1,\n",
      "          'becomes': 1,\n",
      "          'monotonous': 1,\n",
      "          'cinematography': 1,\n",
      "          'would': 1,\n",
      "          'appropriate': 1,\n",
      "          'one': 1,\n",
      "          'bleak': 1,\n",
      "          'urban': 1,\n",
      "          'psychodramas': 1,\n",
      "          'come': 1,\n",
      "          'england': 1,\n",
      "          'every': 1,\n",
      "          'couple': 1,\n",
      "          'months': 1,\n",
      "          'director': 1,\n",
      "          'photography': 1,\n",
      "          'ericson': 1,\n",
      "          'core': 1,\n",
      "          'fired': 1,\n",
      "          'early': 1,\n",
      "          'lighting': 1,\n",
      "          'vavavavoom': 1,\n",
      "          'permanant': 1,\n",
      "          'midnight': 1,\n",
      "          'potato': 1,\n",
      "          'gregg': 1,\n",
      "          'allman': 1,\n",
      "          'wig': 1,\n",
      "          'nto': 1,\n",
      "          'analyze': 1,\n",
      "          'mediocrity': 1,\n",
      "          'grant': 1,\n",
      "          'far': 1,\n",
      "          'attention': 1,\n",
      "          'deserves': 1,\n",
      "          'nperhaps': 1,\n",
      "          'someone': 1,\n",
      "          'experienced': 1,\n",
      "          'antagonistsasprotagonists': 1,\n",
      "          'tarantinolook': 1,\n",
      "          'similar': 1,\n",
      "          'heroless': 1,\n",
      "          'botchedrobbery': 1,\n",
      "          'tale': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogscould': 1,\n",
      "          'pulled': 1,\n",
      "          'material': 1,\n",
      "          'loose': 1,\n",
      "          'remake': 1,\n",
      "          'john': 1,\n",
      "          'boormans': 1,\n",
      "          'point': 1,\n",
      "          'blank': 1,\n",
      "          'presents': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'women': 1,\n",
      "          'femme': 1,\n",
      "          'fatales': 1,\n",
      "          'even': 1,\n",
      "          'cops': 1,\n",
      "          'crosses': 1,\n",
      "          'cheesy': 1,\n",
      "          'tv': 1,\n",
      "          'crime': 1,\n",
      "          'melodramas': 1,\n",
      "          'death': 1,\n",
      "          'never': 1,\n",
      "          'cards': 1,\n",
      "          'main': 1,\n",
      "          'transcends': 1,\n",
      "          'neither': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 10,\n",
      "          'good': 7,\n",
      "          'nthe': 6,\n",
      "          'bad': 5,\n",
      "          'movie': 4,\n",
      "          'guys': 4,\n",
      "          'fight': 4,\n",
      "          'really': 4,\n",
      "          'mortal': 3,\n",
      "          'film': 3,\n",
      "          'evil': 3,\n",
      "          'rayden': 3,\n",
      "          'nhow': 3,\n",
      "          'get': 3,\n",
      "          'fast': 3,\n",
      "          'jax': 3,\n",
      "          'medical': 3,\n",
      "          'ntheres': 3,\n",
      "          'toward': 3,\n",
      "          'shows': 2,\n",
      "          'movies': 2,\n",
      "          'guess': 2,\n",
      "          'video': 2,\n",
      "          'nwhy': 2,\n",
      "          'kombat': 2,\n",
      "          'annihilation': 2,\n",
      "          'fighting': 2,\n",
      "          'effects': 2,\n",
      "          'acting': 2,\n",
      "          'plot': 2,\n",
      "          'portal': 2,\n",
      "          'outworld': 2,\n",
      "          'allowing': 2,\n",
      "          'kahn': 2,\n",
      "          'thompson': 2,\n",
      "          'human': 2,\n",
      "          'liu': 2,\n",
      "          'kang': 2,\n",
      "          'shou': 2,\n",
      "          'must': 2,\n",
      "          'take': 2,\n",
      "          'catch': 2,\n",
      "          'katana': 2,\n",
      "          'whos': 2,\n",
      "          'side': 2,\n",
      "          'love': 2,\n",
      "          'another': 2,\n",
      "          'knew': 2,\n",
      "          'would': 2,\n",
      "          'keep': 2,\n",
      "          'since': 2,\n",
      "          'seriously': 2,\n",
      "          'nyou': 2,\n",
      "          'metal': 2,\n",
      "          'nas': 2,\n",
      "          'says': 2,\n",
      "          'moving': 2,\n",
      "          'sonya': 2,\n",
      "          'williams': 2,\n",
      "          'tvs': 2,\n",
      "          'research': 2,\n",
      "          'facility': 2,\n",
      "          'oahu': 2,\n",
      "          'sign': 2,\n",
      "          'ni': 2,\n",
      "          'first': 2,\n",
      "          'ndo': 2,\n",
      "          'land': 2,\n",
      "          'nno': 2,\n",
      "          'apparently': 2,\n",
      "          'could': 2,\n",
      "          'point': 2,\n",
      "          'scenes': 2,\n",
      "          'pretty': 2,\n",
      "          'although': 2,\n",
      "          'tell': 2,\n",
      "          'mud': 2,\n",
      "          'thing': 2,\n",
      "          'youve': 1,\n",
      "          'run': 1,\n",
      "          'old': 1,\n",
      "          'tv': 1,\n",
      "          'turn': 1,\n",
      "          'try': 1,\n",
      "          'games': 1,\n",
      "          'go': 1,\n",
      "          'see': 1,\n",
      "          'quest': 1,\n",
      "          'seek': 1,\n",
      "          'answer': 1,\n",
      "          'query': 1,\n",
      "          'may': 1,\n",
      "          'prove': 1,\n",
      "          'better': 1,\n",
      "          'saw': 1,\n",
      "          'nthis': 1,\n",
      "          'bunch': 1,\n",
      "          'yelling': 1,\n",
      "          'special': 1,\n",
      "          'set': 1,\n",
      "          'oppressive': 1,\n",
      "          'techno': 1,\n",
      "          'music': 1,\n",
      "          'soundtrack': 1,\n",
      "          'fairly': 1,\n",
      "          'simple': 1,\n",
      "          'opened': 1,\n",
      "          'world': 1,\n",
      "          'forces': 1,\n",
      "          'commanded': 1,\n",
      "          'shao': 1,\n",
      "          'brian': 1,\n",
      "          'wreak': 1,\n",
      "          'havoc': 1,\n",
      "          'attempt': 1,\n",
      "          'destroy': 1,\n",
      "          'humanity': 1,\n",
      "          'led': 1,\n",
      "          'sorcerer': 1,\n",
      "          'james': 1,\n",
      "          'remar': 1,\n",
      "          'robin': 1,\n",
      "          'fate': 1,\n",
      "          'worlds': 1,\n",
      "          'determined': 1,\n",
      "          'nheres': 1,\n",
      "          'reunite': 1,\n",
      "          'princess': 1,\n",
      "          'talia': 1,\n",
      "          'soto': 1,\n",
      "          'resurrected': 1,\n",
      "          'mother': 1,\n",
      "          'queen': 1,\n",
      "          'sindel': 1,\n",
      "          'musetta': 1,\n",
      "          'vander': 1,\n",
      "          'close': 1,\n",
      "          'ensure': 1,\n",
      "          'humanitys': 1,\n",
      "          'safety': 1,\n",
      "          'generation': 1,\n",
      "          'supposed': 1,\n",
      "          'work': 1,\n",
      "          'still': 1,\n",
      "          'idea': 1,\n",
      "          'liked': 1,\n",
      "          'katanas': 1,\n",
      "          'line': 1,\n",
      "          'us': 1,\n",
      "          'together': 1,\n",
      "          'captain': 1,\n",
      "          'tennille': 1,\n",
      "          'song': 1,\n",
      "          'ran': 1,\n",
      "          'head': 1,\n",
      "          'got': 1,\n",
      "          'laugh': 1,\n",
      "          'nthere': 1,\n",
      "          'stupid': 1,\n",
      "          'things': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'transportation': 1,\n",
      "          'system': 1,\n",
      "          'utilizes': 1,\n",
      "          'inner': 1,\n",
      "          'winds': 1,\n",
      "          'generated': 1,\n",
      "          'earths': 1,\n",
      "          'magma': 1,\n",
      "          'flows': 1,\n",
      "          'ball': 1,\n",
      "          'transports': 1,\n",
      "          'underground': 1,\n",
      "          'tunnels': 1,\n",
      "          'nwhat': 1,\n",
      "          'nlater': 1,\n",
      "          'blade': 1,\n",
      "          'sandra': 1,\n",
      "          'hess': 1,\n",
      "          'goes': 1,\n",
      "          'find': 1,\n",
      "          'lynn': 1,\n",
      "          'red': 1,\n",
      "          'otherwise': 1,\n",
      "          'known': 1,\n",
      "          'saber': 1,\n",
      "          'american': 1,\n",
      "          'gladiators': 1,\n",
      "          'island': 1,\n",
      "          'know': 1,\n",
      "          'went': 1,\n",
      "          'facilitys': 1,\n",
      "          'perimeter': 1,\n",
      "          'fence': 1,\n",
      "          'reads': 1,\n",
      "          'hawaii': 1,\n",
      "          'nremember': 1,\n",
      "          'caption': 1,\n",
      "          'actual': 1,\n",
      "          'location': 1,\n",
      "          'researchers': 1,\n",
      "          'forgetting': 1,\n",
      "          'lot': 1,\n",
      "          'major': 1,\n",
      "          'flipping': 1,\n",
      "          'action': 1,\n",
      "          'encounter': 1,\n",
      "          'swiftly': 1,\n",
      "          'arching': 1,\n",
      "          'though': 1,\n",
      "          'air': 1,\n",
      "          'immediately': 1,\n",
      "          'ndoes': 1,\n",
      "          'guard': 1,\n",
      "          'collide': 1,\n",
      "          'midair': 1,\n",
      "          'flip': 1,\n",
      "          'talk': 1,\n",
      "          'without': 1,\n",
      "          'yell': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'need': 1,\n",
      "          'balls': 1,\n",
      "          'travel': 1,\n",
      "          'neveryone': 1,\n",
      "          'flipped': 1,\n",
      "          'b': 1,\n",
      "          'admit': 1,\n",
      "          'heavily': 1,\n",
      "          'enhanced': 1,\n",
      "          'digital': 1,\n",
      "          'fly': 1,\n",
      "          'wires': 1,\n",
      "          'characters': 1,\n",
      "          'surpass': 1,\n",
      "          'limits': 1,\n",
      "          'body': 1,\n",
      "          'laws': 1,\n",
      "          'physics': 1,\n",
      "          'thrills': 1,\n",
      "          'derived': 1,\n",
      "          'audience': 1,\n",
      "          'responses': 1,\n",
      "          'visceral': 1,\n",
      "          'level': 1,\n",
      "          'someone': 1,\n",
      "          'gets': 1,\n",
      "          'trashed': 1,\n",
      "          'badly': 1,\n",
      "          'n': 1,\n",
      "          'ouch': 1,\n",
      "          'common': 1,\n",
      "          'expletive': 1,\n",
      "          'heard': 1,\n",
      "          'screened': 1,\n",
      "          'filmmakers': 1,\n",
      "          'advance': 1,\n",
      "          'fights': 1,\n",
      "          'main': 1,\n",
      "          'draw': 1,\n",
      "          'dialog': 1,\n",
      "          'next': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'thats': 1,\n",
      "          'nmaybe': 1,\n",
      "          'mentioned': 1,\n",
      "          'solid': 1,\n",
      "          'performance': 1,\n",
      "          'funny': 1,\n",
      "          'nafter': 1,\n",
      "          'degenerates': 1,\n",
      "          'female': 1,\n",
      "          'wrestling': 1,\n",
      "          'look': 1,\n",
      "          'nremar': 1,\n",
      "          'plays': 1,\n",
      "          'inconsistency': 1,\n",
      "          'makes': 1,\n",
      "          'hard': 1,\n",
      "          'character': 1,\n",
      "          'relatively': 1,\n",
      "          'emotionless': 1,\n",
      "          'nbrian': 1,\n",
      "          'played': 1,\n",
      "          'even': 1,\n",
      "          'alien': 1,\n",
      "          'xfiles': 1,\n",
      "          'always': 1,\n",
      "          'musclebound': 1,\n",
      "          'behemoth': 1,\n",
      "          'average': 1,\n",
      "          'demigod': 1,\n",
      "          'scripts': 1,\n",
      "          'fault': 1,\n",
      "          'doesnt': 1,\n",
      "          'anything': 1,\n",
      "          'original': 1,\n",
      "          'say': 1,\n",
      "          'impressive': 1,\n",
      "          'swear': 1,\n",
      "          'word': 1,\n",
      "          'whole': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'nanother': 1,\n",
      "          'noted': 1,\n",
      "          'punching': 1,\n",
      "          'kicking': 1,\n",
      "          'blood': 1,\n",
      "          'appears': 1,\n",
      "          'scene': 1,\n",
      "          'nall': 1,\n",
      "          'loud': 1,\n",
      "          'violent': 1,\n",
      "          'shallow': 1,\n",
      "          'marketed': 1,\n",
      "          'kids': 1,\n",
      "          'nhey': 1,\n",
      "          'like': 1,\n",
      "          'game': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'story': 4,\n",
      "          'roberts': 3,\n",
      "          'frears': 3,\n",
      "          'gets': 3,\n",
      "          'nthe': 3,\n",
      "          'n': 3,\n",
      "          'movie': 2,\n",
      "          'film': 2,\n",
      "          'julia': 2,\n",
      "          'mr': 2,\n",
      "          'ms': 2,\n",
      "          'nher': 2,\n",
      "          'also': 2,\n",
      "          'roles': 2,\n",
      "          'close': 2,\n",
      "          'reilly': 2,\n",
      "          'several': 2,\n",
      "          'swooping': 1,\n",
      "          'shots': 1,\n",
      "          'across': 1,\n",
      "          'darkened': 1,\n",
      "          'rooftops': 1,\n",
      "          'suggest': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'alas': 1,\n",
      "          'caped': 1,\n",
      "          'crusader': 1,\n",
      "          'descends': 1,\n",
      "          'save': 1,\n",
      "          'ninstead': 1,\n",
      "          'skeletal': 1,\n",
      "          'housemaid': 1,\n",
      "          'must': 1,\n",
      "          'bear': 1,\n",
      "          'witness': 1,\n",
      "          'unfortunate': 1,\n",
      "          'retelling': 1,\n",
      "          'dr': 1,\n",
      "          'njekyll': 1,\n",
      "          'hyde': 1,\n",
      "          'nfor': 1,\n",
      "          'fleeting': 1,\n",
      "          'maddening': 1,\n",
      "          'moments': 1,\n",
      "          'director': 1,\n",
      "          'stephen': 1,\n",
      "          'dangerous': 1,\n",
      "          'liaisons': 1,\n",
      "          'everything': 1,\n",
      "          'right': 1,\n",
      "          'tone': 1,\n",
      "          'colors': 1,\n",
      "          'characters': 1,\n",
      "          'ingredients': 1,\n",
      "          'make': 1,\n",
      "          'mostpowerful': 1,\n",
      "          'potion': 1,\n",
      "          'valerie': 1,\n",
      "          'martins': 1,\n",
      "          'bestselling': 1,\n",
      "          'novel': 1,\n",
      "          'nyet': 1,\n",
      "          'fizzles': 1,\n",
      "          'quickly': 1,\n",
      "          'volatile': 1,\n",
      "          'mixture': 1,\n",
      "          'losing': 1,\n",
      "          'potency': 1,\n",
      "          'first': 1,\n",
      "          'scene': 1,\n",
      "          'ncasting': 1,\n",
      "          'large': 1,\n",
      "          'part': 1,\n",
      "          'problem': 1,\n",
      "          'collap': 1,\n",
      "          'ses': 1,\n",
      "          'around': 1,\n",
      "          'doesnt': 1,\n",
      "          'range': 1,\n",
      "          'kind': 1,\n",
      "          'drama': 1,\n",
      "          'accent': 1,\n",
      "          'comes': 1,\n",
      "          'goes': 1,\n",
      "          'though': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'glaring': 1,\n",
      "          'total': 1,\n",
      "          'lack': 1,\n",
      "          'chemistry': 1,\n",
      "          'costar': 1,\n",
      "          'john': 1,\n",
      "          'malkovich': 1,\n",
      "          'looks': 1,\n",
      "          'incredible': 1,\n",
      "          'fact': 1,\n",
      "          'thats': 1,\n",
      "          'missed': 1,\n",
      "          'everyone': 1,\n",
      "          'british': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'michael': 1,\n",
      "          'gambon': 1,\n",
      "          'george': 1,\n",
      "          'cole': 1,\n",
      "          'gives': 1,\n",
      "          'credibility': 1,\n",
      "          'smaller': 1,\n",
      "          'parts': 1,\n",
      "          'nglenn': 1,\n",
      "          'appears': 1,\n",
      "          'madam': 1,\n",
      "          'good': 1,\n",
      "          'doctor': 1,\n",
      "          'calls': 1,\n",
      "          'upon': 1,\n",
      "          'performance': 1,\n",
      "          'intentional': 1,\n",
      "          'camp': 1,\n",
      "          'ever': 1,\n",
      "          'bonus': 1,\n",
      "          'offers': 1,\n",
      "          'likely': 1,\n",
      "          'peek': 1,\n",
      "          'upcoming': 1,\n",
      "          'cruella': 1,\n",
      "          'de': 1,\n",
      "          'ville': 1,\n",
      "          'liveaction': 1,\n",
      "          '101': 1,\n",
      "          'dalmantions': 1,\n",
      "          'biggest': 1,\n",
      "          'botch': 1,\n",
      "          'mary': 1,\n",
      "          'suspense': 1,\n",
      "          'none': 1,\n",
      "          'nno': 1,\n",
      "          'terror': 1,\n",
      "          'tension': 1,\n",
      "          'nothing': 1,\n",
      "          'nwithout': 1,\n",
      "          'weight': 1,\n",
      "          'wit': 1,\n",
      "          'wonder': 1,\n",
      "          'propel': 1,\n",
      "          'viewer': 1,\n",
      "          'left': 1,\n",
      "          'little': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'period': 1,\n",
      "          'detail': 1,\n",
      "          'buckets': 1,\n",
      "          'blood': 1,\n",
      "          'stuart': 1,\n",
      "          'craigs': 1,\n",
      "          'fabulously': 1,\n",
      "          'dreary': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'nall': 1,\n",
      "          'old': 1,\n",
      "          'hour': 1,\n",
      "          'point': 1,\n",
      "          'recommend': 1,\n",
      "          'leaving': 1,\n",
      "          'pacing': 1,\n",
      "          'secondhalf': 1,\n",
      "          'especially': 1,\n",
      "          'abominable': 1,\n",
      "          'nif': 1,\n",
      "          'stick': 1,\n",
      "          'sole': 1,\n",
      "          'reward': 1,\n",
      "          'halfhokey': 1,\n",
      "          'special': 1,\n",
      "          'effect': 1,\n",
      "          'depicting': 1,\n",
      "          'infamous': 1,\n",
      "          'transformation': 1,\n",
      "          'nmr': 1,\n",
      "          'reportedly': 1,\n",
      "          'recut': 1,\n",
      "          'times': 1,\n",
      "          'missing': 1,\n",
      "          'release': 1,\n",
      "          'dates': 1,\n",
      "          'process': 1,\n",
      "          'obviously': 1,\n",
      "          'one': 1,\n",
      "          'advised': 1,\n",
      "          'throw': 1,\n",
      "          'hands': 1,\n",
      "          'turn': 1,\n",
      "          'whole': 1,\n",
      "          'damned': 1,\n",
      "          'thing': 1,\n",
      "          'mel': 1,\n",
      "          'brooks': 1,\n",
      "          'nblucher': 1,\n",
      "          'nmary': 1,\n",
      "          'second': 1,\n",
      "          'robert': 1,\n",
      "          'louis': 1,\n",
      "          'stevenson': 1,\n",
      "          'month': 1,\n",
      "          'muppet': 1,\n",
      "          'treasure': 1,\n",
      "          'island': 1,\n",
      "          'nperhaps': 1,\n",
      "          'consult': 1,\n",
      "          'brian': 1,\n",
      "          'henson': 1,\n",
      "          'future': 1,\n",
      "          'projects': 1,\n",
      "          'ni': 1,\n",
      "          'daresay': 1,\n",
      "          'even': 1,\n",
      "          'piggy': 1,\n",
      "          'better': 1,\n",
      "          'choice': 1,\n",
      "          'certain': 1,\n",
      "          'nand': 1,\n",
      "          'great': 1,\n",
      "          'chop': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'troopers': 6,\n",
      "          'starship': 5,\n",
      "          'nthe': 5,\n",
      "          'made': 4,\n",
      "          'verhoeven': 4,\n",
      "          'guilt': 3,\n",
      "          'film': 3,\n",
      "          'even': 3,\n",
      "          'like': 3,\n",
      "          'felt': 2,\n",
      "          'basic': 2,\n",
      "          'instinct': 2,\n",
      "          'last': 2,\n",
      "          'years': 2,\n",
      "          'nbut': 2,\n",
      "          'know': 2,\n",
      "          'terrible': 2,\n",
      "          'make': 2,\n",
      "          'see': 2,\n",
      "          'year': 2,\n",
      "          'white': 2,\n",
      "          'movie': 2,\n",
      "          'military': 2,\n",
      "          'planet': 2,\n",
      "          'story': 2,\n",
      "          'future': 2,\n",
      "          'funny': 2,\n",
      "          'least': 2,\n",
      "          'sex': 2,\n",
      "          'sickening': 2,\n",
      "          'van': 2,\n",
      "          'dien': 2,\n",
      "          'im': 2,\n",
      "          'ten': 2,\n",
      "          'something': 1,\n",
      "          'watching': 1,\n",
      "          'ninth': 1,\n",
      "          'time': 1,\n",
      "          'penultimate': 1,\n",
      "          'thriller': 1,\n",
      "          'teenage': 1,\n",
      "          'worth': 1,\n",
      "          'living': 1,\n",
      "          'well': 1,\n",
      "          'director': 1,\n",
      "          'incapable': 1,\n",
      "          'feeling': 1,\n",
      "          'nverhoeven': 1,\n",
      "          'went': 1,\n",
      "          'offensive': 1,\n",
      "          'showgirls': 1,\n",
      "          'november': 1,\n",
      "          'seventh': 1,\n",
      "          '1997': 1,\n",
      "          'unleashed': 1,\n",
      "          'innocent': 1,\n",
      "          'moviegoers': 1,\n",
      "          'control': 1,\n",
      "          'urge': 1,\n",
      "          'giant': 1,\n",
      "          'bug': 1,\n",
      "          'movies': 1,\n",
      "          'pic': 1,\n",
      "          'begins': 1,\n",
      "          'unintentional': 1,\n",
      "          'laugh': 1,\n",
      "          'na': 1,\n",
      "          'simple': 1,\n",
      "          'black': 1,\n",
      "          'title': 1,\n",
      "          'card': 1,\n",
      "          'reads': 1,\n",
      "          'friends': 1,\n",
      "          'speculated': 1,\n",
      "          'night': 1,\n",
      "          'prints': 1,\n",
      "          'shipped': 1,\n",
      "          'realized': 1,\n",
      "          'forgot': 1,\n",
      "          'credits': 1,\n",
      "          'nis': 1,\n",
      "          'hundred': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'open': 1,\n",
      "          'nwere': 1,\n",
      "          'rest': 1,\n",
      "          'subdued': 1,\n",
      "          'nstarship': 1,\n",
      "          'group': 1,\n",
      "          'blondhaired': 1,\n",
      "          'himbos': 1,\n",
      "          'bimbos': 1,\n",
      "          'spanish': 1,\n",
      "          'names': 1,\n",
      "          'nthey': 1,\n",
      "          'graduate': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'join': 1,\n",
      "          'rather': 1,\n",
      "          'curiously': 1,\n",
      "          'decide': 1,\n",
      "          'travel': 1,\n",
      "          'alien': 1,\n",
      "          'destroy': 1,\n",
      "          'lifeforms': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'told': 1,\n",
      "          'bombastically': 1,\n",
      "          'akin': 1,\n",
      "          '129': 1,\n",
      "          'minutes': 1,\n",
      "          'someone': 1,\n",
      "          'screaming': 1,\n",
      "          'punishments': 1,\n",
      "          'foreign': 1,\n",
      "          'tongue': 1,\n",
      "          'n': 1,\n",
      "          'aside': 1,\n",
      "          'club': 1,\n",
      "          'lovers': 1,\n",
      "          'happy': 1,\n",
      "          'dance': 1,\n",
      "          'music': 1,\n",
      "          'hasnt': 1,\n",
      "          'changed': 1,\n",
      "          'none': 1,\n",
      "          'plus': 1,\n",
      "          'contains': 1,\n",
      "          'sequences': 1,\n",
      "          'specifically': 1,\n",
      "          'newsreels': 1,\n",
      "          'nhysterically': 1,\n",
      "          'actually': 1,\n",
      "          'cynicism': 1,\n",
      "          'reports': 1,\n",
      "          'left': 1,\n",
      "          'curious': 1,\n",
      "          'whether': 1,\n",
      "          'pessimistic': 1,\n",
      "          'storytelling': 1,\n",
      "          'lacks': 1,\n",
      "          'focus': 1,\n",
      "          'say': 1,\n",
      "          'politics': 1,\n",
      "          'scary': 1,\n",
      "          'actions': 1,\n",
      "          'major': 1,\n",
      "          'female': 1,\n",
      "          'characters': 1,\n",
      "          'dictated': 1,\n",
      "          'outofcontrol': 1,\n",
      "          'libidos': 1,\n",
      "          'ntheres': 1,\n",
      "          'creepy': 1,\n",
      "          'scene': 1,\n",
      "          'lovely': 1,\n",
      "          'dina': 1,\n",
      "          'meyer': 1,\n",
      "          'makes': 1,\n",
      "          'nude': 1,\n",
      "          'half': 1,\n",
      "          'face': 1,\n",
      "          'covered': 1,\n",
      "          'opaque': 1,\n",
      "          'sweater': 1,\n",
      "          'way': 1,\n",
      "          'seems': 1,\n",
      "          'ni': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'appealing': 1,\n",
      "          'actor': 1,\n",
      "          'ive': 1,\n",
      "          'encountered': 1,\n",
      "          'big': 1,\n",
      "          'budget': 1,\n",
      "          'picture': 1,\n",
      "          'chiseled': 1,\n",
      "          'features': 1,\n",
      "          'machismo': 1,\n",
      "          'barks': 1,\n",
      "          'eulogy': 1,\n",
      "          'funeral': 1,\n",
      "          'orders': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'verhoevens': 1,\n",
      "          'probably': 1,\n",
      "          'one': 1,\n",
      "          'blame': 1,\n",
      "          'perhaps': 1,\n",
      "          'jealous': 1,\n",
      "          'disgusting': 1,\n",
      "          'nat': 1,\n",
      "          'rate': 1,\n",
      "          'called': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nexactly': 1,\n",
      "          'ago': 1,\n",
      "          'robocop': 1,\n",
      "          'nothing': 1,\n",
      "          'skillfully': 1,\n",
      "          'oddly': 1,\n",
      "          'moving': 1,\n",
      "          'nand': 1,\n",
      "          'rrated': 1,\n",
      "          'despite': 1,\n",
      "          'goofy': 1,\n",
      "          'premise': 1,\n",
      "          'nmaybe': 1,\n",
      "          'asking': 1,\n",
      "          'much': 1,\n",
      "          'pgmovie': 1,\n",
      "          'thenhes': 1,\n",
      "          'master': 1,\n",
      "          'insipid': 1,\n",
      "          'violence': 1,\n",
      "          'nhowever': 1,\n",
      "          'old': 1,\n",
      "          'boys': 1,\n",
      "          'would': 1,\n",
      "          'adore': 1,\n",
      "          'could': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'guy': 4,\n",
      "          'girl': 4,\n",
      "          'gets': 4,\n",
      "          'jonathan': 4,\n",
      "          'around': 4,\n",
      "          'beckinsale': 3,\n",
      "          'serendipity': 3,\n",
      "          'film': 3,\n",
      "          'sara': 3,\n",
      "          'go': 3,\n",
      "          'going': 3,\n",
      "          'number': 3,\n",
      "          'nboth': 3,\n",
      "          'whats': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'n': 2,\n",
      "          'john': 2,\n",
      "          'cusack': 2,\n",
      "          'kate': 2,\n",
      "          'eugene': 2,\n",
      "          'levy': 2,\n",
      "          'ntheres': 2,\n",
      "          'romantic': 2,\n",
      "          'wants': 2,\n",
      "          'pointless': 2,\n",
      "          'plot': 2,\n",
      "          'contrivances': 2,\n",
      "          'describe': 2,\n",
      "          'bloomingdales': 2,\n",
      "          'njonathan': 2,\n",
      "          'gloves': 2,\n",
      "          'two': 2,\n",
      "          'ice': 2,\n",
      "          'nwhen': 2,\n",
      "          'name': 2,\n",
      "          'fate': 2,\n",
      "          'together': 2,\n",
      "          'nto': 2,\n",
      "          'write': 2,\n",
      "          'bill': 2,\n",
      "          'book': 2,\n",
      "          'love': 2,\n",
      "          'nthe': 2,\n",
      "          'incredible': 2,\n",
      "          'movie': 2,\n",
      "          'happen': 2,\n",
      "          'meet': 2,\n",
      "          'nserendipity': 2,\n",
      "          'favorite': 1,\n",
      "          'moment': 1,\n",
      "          'ones': 1,\n",
      "          'climbing': 1,\n",
      "          'charts': 1,\n",
      "          'nstarring': 1,\n",
      "          'molly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'shannon': 1,\n",
      "          'ndirected': 1,\n",
      "          'peter': 1,\n",
      "          'chelsom': 1,\n",
      "          'nrated': 1,\n",
      "          'pg13': 1,\n",
      "          'doubt': 1,\n",
      "          '95': 1,\n",
      "          'comedies': 1,\n",
      "          'follow': 1,\n",
      "          'distinct': 1,\n",
      "          'pattern': 1,\n",
      "          'sees': 1,\n",
      "          'goes': 1,\n",
      "          'unreasonable': 1,\n",
      "          'obstacles': 1,\n",
      "          'get': 1,\n",
      "          'nin': 1,\n",
      "          'rare': 1,\n",
      "          'cases': 1,\n",
      "          'genders': 1,\n",
      "          'flipped': 1,\n",
      "          'npredictability': 1,\n",
      "          'given': 1,\n",
      "          'nrarely': 1,\n",
      "          'though': 1,\n",
      "          'comedy': 1,\n",
      "          'cheap': 1,\n",
      "          'obvious': 1,\n",
      "          'uses': 1,\n",
      "          'theme': 1,\n",
      "          'excuse': 1,\n",
      "          'lightweight': 1,\n",
      "          'doesnt': 1,\n",
      "          'begin': 1,\n",
      "          'nthis': 1,\n",
      "          'like': 1,\n",
      "          'antigravity': 1,\n",
      "          'nit': 1,\n",
      "          'begins': 1,\n",
      "          'city': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'rivals': 1,\n",
      "          'cast': 1,\n",
      "          'aways': 1,\n",
      "          'fedex': 1,\n",
      "          'sheer': 1,\n",
      "          'blatancy': 1,\n",
      "          'trager': 1,\n",
      "          'thomas': 1,\n",
      "          'pair': 1,\n",
      "          'nafter': 1,\n",
      "          'perfunctory': 1,\n",
      "          'motions': 1,\n",
      "          'keep': 1,\n",
      "          'cream': 1,\n",
      "          'followed': 1,\n",
      "          'skating': 1,\n",
      "          'falls': 1,\n",
      "          'hard': 1,\n",
      "          'charmed': 1,\n",
      "          'writes': 1,\n",
      "          'piece': 1,\n",
      "          'paper': 1,\n",
      "          'truck': 1,\n",
      "          'rumbles': 1,\n",
      "          'blows': 1,\n",
      "          'hand': 1,\n",
      "          'nshe': 1,\n",
      "          'takes': 1,\n",
      "          'sign': 1,\n",
      "          'shouldnt': 1,\n",
      "          'flabbergasted': 1,\n",
      "          'pacify': 1,\n",
      "          'comes': 1,\n",
      "          'idea': 1,\n",
      "          '5': 1,\n",
      "          'dollar': 1,\n",
      "          'promptly': 1,\n",
      "          'spend': 1,\n",
      "          'home': 1,\n",
      "          'inside': 1,\n",
      "          'time': 1,\n",
      "          'cholera': 1,\n",
      "          'sell': 1,\n",
      "          'used': 1,\n",
      "          'bookstore': 1,\n",
      "          'nif': 1,\n",
      "          'back': 1,\n",
      "          'mean': 1,\n",
      "          'meant': 1,\n",
      "          'nthree': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'engaged': 1,\n",
      "          'interests': 1,\n",
      "          'realize': 1,\n",
      "          'arent': 1,\n",
      "          'content': 1,\n",
      "          'looking': 1,\n",
      "          'nwhat': 1,\n",
      "          'happens': 1,\n",
      "          'absurd': 1,\n",
      "          'im': 1,\n",
      "          'almost': 1,\n",
      "          'tempted': 1,\n",
      "          'recommend': 1,\n",
      "          'sake': 1,\n",
      "          'seeing': 1,\n",
      "          'run': 1,\n",
      "          'circles': 1,\n",
      "          'set': 1,\n",
      "          'coincidences': 1,\n",
      "          'would': 1,\n",
      "          'werent': 1,\n",
      "          'ohsocleverly': 1,\n",
      "          'dismissing': 1,\n",
      "          'criticism': 1,\n",
      "          'building': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'since': 1,\n",
      "          'screenwriter': 1,\n",
      "          'anything': 1,\n",
      "          'damn': 1,\n",
      "          'well': 1,\n",
      "          'pleases': 1,\n",
      "          'nim': 1,\n",
      "          'buying': 1,\n",
      "          'suspense': 1,\n",
      "          'know': 1,\n",
      "          'exactly': 1,\n",
      "          'insists': 1,\n",
      "          'drilling': 1,\n",
      "          'purportedly': 1,\n",
      "          'adorable': 1,\n",
      "          'nonstory': 1,\n",
      "          'heads': 1,\n",
      "          'ninstead': 1,\n",
      "          'question': 1,\n",
      "          'asking': 1,\n",
      "          'already': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'every': 1,\n",
      "          'coincidence': 1,\n",
      "          'telegraphed': 1,\n",
      "          'mile': 1,\n",
      "          'away': 1,\n",
      "          'last': 1,\n",
      "          'reel': 1,\n",
      "          'bored': 1,\n",
      "          'enough': 1,\n",
      "          'actively': 1,\n",
      "          'look': 1,\n",
      "          'signs': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'ncusack': 1,\n",
      "          'fine': 1,\n",
      "          'least': 1,\n",
      "          'isnt': 1,\n",
      "          'saddled': 1,\n",
      "          'another': 1,\n",
      "          'lumbering': 1,\n",
      "          'clunky': 1,\n",
      "          'screenplay': 1,\n",
      "          'shes': 1,\n",
      "          'bad': 1,\n",
      "          'luck': 1,\n",
      "          'brokedown': 1,\n",
      "          'palace': 1,\n",
      "          'pearl': 1,\n",
      "          'harbor': 1,\n",
      "          'resume': 1,\n",
      "          'inanely': 1,\n",
      "          'one': 1,\n",
      "          'also': 1,\n",
      "          'relieves': 1,\n",
      "          'tedium': 1,\n",
      "          'amazing': 1,\n",
      "          'plays': 1,\n",
      "          'snarky': 1,\n",
      "          'salesman': 1,\n",
      "          'nwhats': 1,\n",
      "          'interest': 1,\n",
      "          'watching': 1,\n",
      "          'spirals': 1,\n",
      "          'predestined': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'conclusion': 1,\n",
      "          'tug': 1,\n",
      "          'heartstrings': 1,\n",
      "          'tests': 1,\n",
      "          'patience': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'angels': 6,\n",
      "          'movie': 6,\n",
      "          'angel': 6,\n",
      "          'seth': 6,\n",
      "          'film': 6,\n",
      "          'maggie': 5,\n",
      "          'feel': 5,\n",
      "          'plot': 4,\n",
      "          'love': 4,\n",
      "          'cant': 4,\n",
      "          'city': 3,\n",
      "          'based': 3,\n",
      "          'ryan': 3,\n",
      "          'must': 3,\n",
      "          'make': 3,\n",
      "          'human': 3,\n",
      "          'world': 3,\n",
      "          'ni': 3,\n",
      "          'come': 2,\n",
      "          'seen': 2,\n",
      "          'desire': 2,\n",
      "          'upon': 2,\n",
      "          'little': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'around': 2,\n",
      "          'creepy': 2,\n",
      "          'intensity': 2,\n",
      "          'cage': 2,\n",
      "          'angelic': 2,\n",
      "          'heart': 2,\n",
      "          'surgeon': 2,\n",
      "          'meg': 2,\n",
      "          'much': 2,\n",
      "          'except': 2,\n",
      "          'random': 2,\n",
      "          'become': 2,\n",
      "          'attempts': 2,\n",
      "          'philosophical': 2,\n",
      "          'doesnt': 2,\n",
      "          'getting': 2,\n",
      "          'despite': 2,\n",
      "          'across': 2,\n",
      "          'lost': 2,\n",
      "          'beauty': 2,\n",
      "          'camera': 2,\n",
      "          'get': 2,\n",
      "          'audience': 2,\n",
      "          'like': 2,\n",
      "          'though': 2,\n",
      "          'focus': 2,\n",
      "          'whats': 2,\n",
      "          'romantic': 2,\n",
      "          'nits': 2,\n",
      "          'robbed': 2,\n",
      "          'could': 2,\n",
      "          'didnt': 1,\n",
      "          'expecting': 1,\n",
      "          'greatness': 1,\n",
      "          'nive': 1,\n",
      "          'never': 1,\n",
      "          'wim': 1,\n",
      "          'wenders': 1,\n",
      "          'wings': 1,\n",
      "          'classic': 1,\n",
      "          'loosely': 1,\n",
      "          'nthen': 1,\n",
      "          'enough': 1,\n",
      "          'stories': 1,\n",
      "          'similar': 1,\n",
      "          'device': 1,\n",
      "          'mermaid': 1,\n",
      "          'disney': 1,\n",
      "          'version': 1,\n",
      "          'original': 1,\n",
      "          'folktale': 1,\n",
      "          'among': 1,\n",
      "          'high': 1,\n",
      "          'expectations': 1,\n",
      "          'possible': 1,\n",
      "          'power': 1,\n",
      "          'story': 1,\n",
      "          'impossible': 1,\n",
      "          'hold': 1,\n",
      "          'ended': 1,\n",
      "          'fulfilling': 1,\n",
      "          'couldnt': 1,\n",
      "          'tell': 1,\n",
      "          'previews': 1,\n",
      "          'revolves': 1,\n",
      "          'played': 1,\n",
      "          'almost': 1,\n",
      "          'nicolas': 1,\n",
      "          'midst': 1,\n",
      "          'duties': 1,\n",
      "          'falls': 1,\n",
      "          'named': 1,\n",
      "          'endearing': 1,\n",
      "          'performance': 1,\n",
      "          'since': 1,\n",
      "          'harry': 1,\n",
      "          'met': 1,\n",
      "          'sally': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'prevents': 1,\n",
      "          'appearing': 1,\n",
      "          'times': 1,\n",
      "          'talk': 1,\n",
      "          'watch': 1,\n",
      "          'buy': 1,\n",
      "          'groceries': 1,\n",
      "          'disappear': 1,\n",
      "          'blink': 1,\n",
      "          'eye': 1,\n",
      "          'ntheir': 1,\n",
      "          'remain': 1,\n",
      "          'unrequited': 1,\n",
      "          'unless': 1,\n",
      "          'decides': 1,\n",
      "          'ultimate': 1,\n",
      "          'sacrifice': 1,\n",
      "          'nusing': 1,\n",
      "          'framework': 1,\n",
      "          'jumpingoff': 1,\n",
      "          'point': 1,\n",
      "          'veer': 1,\n",
      "          'heavy': 1,\n",
      "          'ruminations': 1,\n",
      "          'nature': 1,\n",
      "          'joys': 1,\n",
      "          'definition': 1,\n",
      "          'perfection': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'succeeds': 1,\n",
      "          'points': 1,\n",
      "          'ncage': 1,\n",
      "          'excellently': 1,\n",
      "          'plays': 1,\n",
      "          'eminently': 1,\n",
      "          'difficult': 1,\n",
      "          'role': 1,\n",
      "          'know': 1,\n",
      "          'feelings': 1,\n",
      "          'really': 1,\n",
      "          'express': 1,\n",
      "          'preventing': 1,\n",
      "          'character': 1,\n",
      "          'boring': 1,\n",
      "          'limited': 1,\n",
      "          'repertoire': 1,\n",
      "          'intent': 1,\n",
      "          'looks': 1,\n",
      "          'hangdog': 1,\n",
      "          'expressions': 1,\n",
      "          'takes': 1,\n",
      "          'far': 1,\n",
      "          'sometimes': 1,\n",
      "          'comes': 1,\n",
      "          'sensitive': 1,\n",
      "          'nas': 1,\n",
      "          'manages': 1,\n",
      "          'convincing': 1,\n",
      "          'trouble': 1,\n",
      "          'coming': 1,\n",
      "          'terms': 1,\n",
      "          'patient': 1,\n",
      "          'operating': 1,\n",
      "          'table': 1,\n",
      "          'done': 1,\n",
      "          'everything': 1,\n",
      "          'right': 1,\n",
      "          'nher': 1,\n",
      "          'unlike': 1,\n",
      "          'unbearable': 1,\n",
      "          'cuteness': 1,\n",
      "          'french': 1,\n",
      "          'kiss': 1,\n",
      "          'mature': 1,\n",
      "          'intelligent': 1,\n",
      "          'winning': 1,\n",
      "          'nlikewise': 1,\n",
      "          'interesting': 1,\n",
      "          'ideas': 1,\n",
      "          'float': 1,\n",
      "          'beginning': 1,\n",
      "          'nwhen': 1,\n",
      "          'pans': 1,\n",
      "          'traffic': 1,\n",
      "          'jams': 1,\n",
      "          'libraries': 1,\n",
      "          'hear': 1,\n",
      "          'thoughts': 1,\n",
      "          'people': 1,\n",
      "          'flash': 1,\n",
      "          'screen': 1,\n",
      "          'experiences': 1,\n",
      "          'beautiful': 1,\n",
      "          'work': 1,\n",
      "          'shooting': 1,\n",
      "          'onto': 1,\n",
      "          'hectic': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'improbable': 1,\n",
      "          'perches': 1,\n",
      "          'also': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'sense': 1,\n",
      "          'unique': 1,\n",
      "          'wonder': 1,\n",
      "          'begins': 1,\n",
      "          'lose': 1,\n",
      "          'way': 1,\n",
      "          'tightens': 1,\n",
      "          'grand': 1,\n",
      "          'perspective': 1,\n",
      "          'gets': 1,\n",
      "          'idly': 1,\n",
      "          'tossed': 1,\n",
      "          'lines': 1,\n",
      "          'incredible': 1,\n",
      "          'eyes': 1,\n",
      "          'devolves': 1,\n",
      "          'examination': 1,\n",
      "          'importantly': 1,\n",
      "          'smell': 1,\n",
      "          'hair': 1,\n",
      "          'touch': 1,\n",
      "          'taste': 1,\n",
      "          'pears': 1,\n",
      "          'eats': 1,\n",
      "          'nthis': 1,\n",
      "          'change': 1,\n",
      "          'capture': 1,\n",
      "          'seths': 1,\n",
      "          'intense': 1,\n",
      "          'longing': 1,\n",
      "          'conflict': 1,\n",
      "          'disappears': 1,\n",
      "          'nif': 1,\n",
      "          'wants': 1,\n",
      "          'badly': 1,\n",
      "          'leap': 1,\n",
      "          'nafter': 1,\n",
      "          'great': 1,\n",
      "          'nsure': 1,\n",
      "          'sit': 1,\n",
      "          'marlboro': 1,\n",
      "          'signs': 1,\n",
      "          'compared': 1,\n",
      "          'nand': 1,\n",
      "          'yearning': 1,\n",
      "          'established': 1,\n",
      "          'denouement': 1,\n",
      "          'occur': 1,\n",
      "          'downhill': 1,\n",
      "          'philosophy': 1,\n",
      "          'becomes': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'dialogue': 1,\n",
      "          'pedestrian': 1,\n",
      "          'tries': 1,\n",
      "          'deep': 1,\n",
      "          'twists': 1,\n",
      "          'simply': 1,\n",
      "          'attempt': 1,\n",
      "          'yank': 1,\n",
      "          'tears': 1,\n",
      "          'audiences': 1,\n",
      "          'hankie': 1,\n",
      "          'last': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'wrecks': 1,\n",
      "          'writer': 1,\n",
      "          'pulling': 1,\n",
      "          'melodramatic': 1,\n",
      "          'stops': 1,\n",
      "          'genuinely': 1,\n",
      "          'powerful': 1,\n",
      "          'experience': 1,\n",
      "          'level': 1,\n",
      "          'came': 1,\n",
      "          'feeling': 1,\n",
      "          'seeing': 1,\n",
      "          'possibility': 1,\n",
      "          'becoming': 1,\n",
      "          'nothing': 1,\n",
      "          'go': 1,\n",
      "          'longer': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'ruin': 1,\n",
      "          'end': 1,\n",
      "          'revealing': 1,\n",
      "          'cheap': 1,\n",
      "          'devices': 1,\n",
      "          'relies': 1,\n",
      "          'ncity': 1,\n",
      "          'paradox': 1,\n",
      "          'wellacted': 1,\n",
      "          'particularly': 1,\n",
      "          'look': 1,\n",
      "          'dennis': 1,\n",
      "          'franz': 1,\n",
      "          'cutting': 1,\n",
      "          'typecasting': 1,\n",
      "          'happygolucky': 1,\n",
      "          'fallen': 1,\n",
      "          'wellfilmed': 1,\n",
      "          'wonderful': 1,\n",
      "          'idea': 1,\n",
      "          'nall': 1,\n",
      "          'possibilities': 1,\n",
      "          'unredeemable': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'connor': 11,\n",
      "          'nthe': 8,\n",
      "          'film': 7,\n",
      "          'highlander': 6,\n",
      "          'one': 5,\n",
      "          'assassins': 5,\n",
      "          'zeist': 5,\n",
      "          'like': 5,\n",
      "          'ni': 5,\n",
      "          'plot': 4,\n",
      "          'shield': 4,\n",
      "          'sent': 4,\n",
      "          'back': 4,\n",
      "          'connery': 4,\n",
      "          'nconnor': 3,\n",
      "          'find': 3,\n",
      "          'ramirez': 3,\n",
      "          'kill': 3,\n",
      "          'mr': 3,\n",
      "          'could': 3,\n",
      "          'see': 3,\n",
      "          'else': 3,\n",
      "          'bad': 3,\n",
      "          'time': 3,\n",
      "          'first': 3,\n",
      "          'must': 3,\n",
      "          'still': 3,\n",
      "          'believe': 3,\n",
      "          'laser': 3,\n",
      "          'killing': 3,\n",
      "          'seems': 3,\n",
      "          'best': 3,\n",
      "          'gone': 2,\n",
      "          'earth': 2,\n",
      "          'mccleod': 2,\n",
      "          'made': 2,\n",
      "          'man': 2,\n",
      "          'given': 2,\n",
      "          'leader': 2,\n",
      "          'nthey': 2,\n",
      "          'tried': 2,\n",
      "          'company': 2,\n",
      "          'two': 2,\n",
      "          'katana': 2,\n",
      "          'becomes': 2,\n",
      "          'immortal': 2,\n",
      "          'nhe': 2,\n",
      "          'return': 2,\n",
      "          'new': 2,\n",
      "          'nkatana': 2,\n",
      "          'never': 2,\n",
      "          'wish': 2,\n",
      "          'feel': 2,\n",
      "          'music': 2,\n",
      "          'plain': 2,\n",
      "          'much': 2,\n",
      "          'needs': 2,\n",
      "          'characters': 2,\n",
      "          'love': 2,\n",
      "          'powers': 2,\n",
      "          'annoying': 2,\n",
      "          'know': 2,\n",
      "          'nwe': 2,\n",
      "          'nwhy': 2,\n",
      "          'least': 2,\n",
      "          'worst': 2,\n",
      "          'rebellion': 2,\n",
      "          'crushed': 2,\n",
      "          'nhas': 2,\n",
      "          'nmichael': 2,\n",
      "          'ironside': 2,\n",
      "          'unconvincing': 2,\n",
      "          'stupid': 2,\n",
      "          'nso': 2,\n",
      "          'nit': 2,\n",
      "          'queen': 2,\n",
      "          'whole': 2,\n",
      "          'summary': 1,\n",
      "          'year': 1,\n",
      "          '2024': 1,\n",
      "          'ozone': 1,\n",
      "          'layer': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'protected': 1,\n",
      "          'radiation': 1,\n",
      "          'invented': 1,\n",
      "          'although': 1,\n",
      "          'saving': 1,\n",
      "          'lives': 1,\n",
      "          'atmosphere': 1,\n",
      "          'hot': 1,\n",
      "          'humid': 1,\n",
      "          'mortal': 1,\n",
      "          'tired': 1,\n",
      "          'old': 1,\n",
      "          'hope': 1,\n",
      "          'non': 1,\n",
      "          'returning': 1,\n",
      "          'opera': 1,\n",
      "          'night': 1,\n",
      "          'accosted': 1,\n",
      "          'terrorist': 1,\n",
      "          'organisation': 1,\n",
      "          'runs': 1,\n",
      "          'unit': 1,\n",
      "          'covering': 1,\n",
      "          'attacked': 1,\n",
      "          'planet': 1,\n",
      "          'zeitget': 1,\n",
      "          'fail': 1,\n",
      "          'chopping': 1,\n",
      "          'heads': 1,\n",
      "          'brings': 1,\n",
      "          'life': 1,\n",
      "          'glencoe': 1,\n",
      "          'scotland': 1,\n",
      "          'nboth': 1,\n",
      "          'rebel': 1,\n",
      "          'leaders': 1,\n",
      "          'punishment': 1,\n",
      "          'option': 1,\n",
      "          'last': 1,\n",
      "          'opts': 1,\n",
      "          'stay': 1,\n",
      "          'found': 1,\n",
      "          'immortality': 1,\n",
      "          'fight': 1,\n",
      "          'meanwhile': 1,\n",
      "          'fearing': 1,\n",
      "          'would': 1,\n",
      "          'sets': 1,\n",
      "          'nif': 1,\n",
      "          'seen': 1,\n",
      "          'nbeing': 1,\n",
      "          'fan': 1,\n",
      "          'cinema': 1,\n",
      "          'soon': 1,\n",
      "          'ii': 1,\n",
      "          'quickening': 1,\n",
      "          'quicker': 1,\n",
      "          'whatever': 1,\n",
      "          'say': 1,\n",
      "          'script': 1,\n",
      "          'etc': 1,\n",
      "          'sit': 1,\n",
      "          'bored': 1,\n",
      "          'nothing': 1,\n",
      "          'said': 1,\n",
      "          'short': 1,\n",
      "          'opinion': 1,\n",
      "          'twelve': 1,\n",
      "          'minutes': 1,\n",
      "          'screen': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'sounds': 1,\n",
      "          'little': 1,\n",
      "          'ridiculous': 1,\n",
      "          'willing': 1,\n",
      "          'give': 1,\n",
      "          'chance': 1,\n",
      "          'nmaybe': 1,\n",
      "          'pull': 1,\n",
      "          'ninstead': 1,\n",
      "          'completely': 1,\n",
      "          'changed': 1,\n",
      "          'nits': 1,\n",
      "          'different': 1,\n",
      "          'people': 1,\n",
      "          'names': 1,\n",
      "          'nwitness': 1,\n",
      "          'jumping': 1,\n",
      "          'bed': 1,\n",
      "          'resistance': 1,\n",
      "          'attitude': 1,\n",
      "          'wants': 1,\n",
      "          'live': 1,\n",
      "          'forever': 1,\n",
      "          'die': 1,\n",
      "          'subplot': 1,\n",
      "          'footage': 1,\n",
      "          'cut': 1,\n",
      "          'seemed': 1,\n",
      "          'aware': 1,\n",
      "          'mentioned': 1,\n",
      "          'nputting': 1,\n",
      "          'heroes': 1,\n",
      "          'deadly': 1,\n",
      "          'situations': 1,\n",
      "          'walk': 1,\n",
      "          'away': 1,\n",
      "          'power': 1,\n",
      "          'want': 1,\n",
      "          'connors': 1,\n",
      "          'coat': 1,\n",
      "          'flame': 1,\n",
      "          'proof': 1,\n",
      "          'enough': 1,\n",
      "          'told': 1,\n",
      "          'advanced': 1,\n",
      "          'aliens': 1,\n",
      "          'use': 1,\n",
      "          'swords': 1,\n",
      "          'dynamite': 1,\n",
      "          'saws': 1,\n",
      "          'bullets': 1,\n",
      "          'followed': 1,\n",
      "          'quick': 1,\n",
      "          'chop': 1,\n",
      "          'neck': 1,\n",
      "          'head': 1,\n",
      "          'come': 1,\n",
      "          'immobilise': 1,\n",
      "          'opponent': 1,\n",
      "          'rifles': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'assassin': 1,\n",
      "          'worlds': 1,\n",
      "          'shot': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'develops': 1,\n",
      "          'lukeskywalkerlike': 1,\n",
      "          'beam': 1,\n",
      "          'deflection': 1,\n",
      "          'nas': 1,\n",
      "          'guys': 1,\n",
      "          'easier': 1,\n",
      "          'grape': 1,\n",
      "          'rest': 1,\n",
      "          'depends': 1,\n",
      "          'obsessed': 1,\n",
      "          'case': 1,\n",
      "          'returns': 1,\n",
      "          'ntwo': 1,\n",
      "          'presumably': 1,\n",
      "          'meant': 1,\n",
      "          'good': 1,\n",
      "          'aged': 1,\n",
      "          'kills': 1,\n",
      "          'problems': 1,\n",
      "          'nno': 1,\n",
      "          'supposedly': 1,\n",
      "          'powerful': 1,\n",
      "          'goes': 1,\n",
      "          'better': 1,\n",
      "          'easily': 1,\n",
      "          'totally': 1,\n",
      "          'bring': 1,\n",
      "          'kurgan': 1,\n",
      "          'cartoon': 1,\n",
      "          'character': 1,\n",
      "          'really': 1,\n",
      "          'isnt': 1,\n",
      "          'evil': 1,\n",
      "          'violent': 1,\n",
      "          'hollywood': 1,\n",
      "          'trick': 1,\n",
      "          'chief': 1,\n",
      "          'nasty': 1,\n",
      "          'threatening': 1,\n",
      "          'child': 1,\n",
      "          'lots': 1,\n",
      "          'innocents': 1,\n",
      "          'nyet': 1,\n",
      "          'threat': 1,\n",
      "          'perhaps': 1,\n",
      "          'threaten': 1,\n",
      "          'maybe': 1,\n",
      "          'wouldnt': 1,\n",
      "          'amiss': 1,\n",
      "          'larry': 1,\n",
      "          'curly': 1,\n",
      "          'mo': 1,\n",
      "          'atrocious': 1,\n",
      "          'intrusive': 1,\n",
      "          'nbring': 1,\n",
      "          'nthere': 1,\n",
      "          'audible': 1,\n",
      "          'sigh': 1,\n",
      "          'relief': 1,\n",
      "          'nwhen': 1,\n",
      "          'played': 1,\n",
      "          'track': 1,\n",
      "          'juke': 1,\n",
      "          'box': 1,\n",
      "          'corrected': 1,\n",
      "          'american': 1,\n",
      "          'release': 1,\n",
      "          'acting': 1,\n",
      "          'flat': 1,\n",
      "          'except': 1,\n",
      "          'nlambert': 1,\n",
      "          'uninteresting': 1,\n",
      "          'delivered': 1,\n",
      "          'around': 1,\n",
      "          'sorry': 1,\n",
      "          'michael': 1,\n",
      "          'usually': 1,\n",
      "          'everyone': 1,\n",
      "          'incredibly': 1,\n",
      "          'forgetable': 1,\n",
      "          '210': 1,\n",
      "          'nvisually': 1,\n",
      "          'interesting': 1,\n",
      "          'times': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'quite': 1,\n",
      "          'stunning': 1,\n",
      "          'nadd': 1,\n",
      "          'irrepressible': 1,\n",
      "          'sean': 1,\n",
      "          'smiles': 1,\n",
      "          'throughout': 1,\n",
      "          'smirking': 1,\n",
      "          'nhis': 1,\n",
      "          'lines': 1,\n",
      "          'delivery': 1,\n",
      "          'might': 1,\n",
      "          'make': 1,\n",
      "          'worthwhile': 1,\n",
      "          'obvious': 1,\n",
      "          'take': 1,\n",
      "          'thing': 1,\n",
      "          'seriously': 1,\n",
      "          'hey': 1,\n",
      "          'id': 1,\n",
      "          'done': 1,\n",
      "          '12': 1,\n",
      "          'million': 1,\n",
      "          'noh': 1,\n",
      "          'agree': 1,\n",
      "          'previous': 1,\n",
      "          'reviewer': 1,\n",
      "          'look': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'nincidentally': 1,\n",
      "          'line': 1,\n",
      "          'producer': 1,\n",
      "          'credited': 1,\n",
      "          'hear': 1,\n",
      "          'rumours': 1,\n",
      "          'iii': 1,\n",
      "          'wizard': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'film': 8,\n",
      "          'played': 7,\n",
      "          'party': 7,\n",
      "          'subplot': 7,\n",
      "          'movie': 7,\n",
      "          'nthis': 6,\n",
      "          'good': 6,\n",
      "          'performance': 5,\n",
      "          'two': 4,\n",
      "          'affleck': 4,\n",
      "          'girls': 4,\n",
      "          'doesnt': 4,\n",
      "          'trying': 3,\n",
      "          'get': 3,\n",
      "          'characters': 3,\n",
      "          'kevin': 3,\n",
      "          'extremely': 3,\n",
      "          'like': 3,\n",
      "          'nshe': 3,\n",
      "          'plays': 3,\n",
      "          'lucy': 3,\n",
      "          'acting': 3,\n",
      "          'ricci': 3,\n",
      "          'going': 3,\n",
      "          'one': 3,\n",
      "          'funny': 3,\n",
      "          'could': 3,\n",
      "          '200': 2,\n",
      "          'cigarettes': 2,\n",
      "          'new': 2,\n",
      "          'years': 2,\n",
      "          '1981': 2,\n",
      "          'plimpton': 2,\n",
      "          'huge': 2,\n",
      "          'things': 2,\n",
      "          'plot': 2,\n",
      "          'meet': 2,\n",
      "          'many': 2,\n",
      "          'subplots': 2,\n",
      "          'people': 2,\n",
      "          'courtney': 2,\n",
      "          'love': 2,\n",
      "          'paul': 2,\n",
      "          'relationship': 2,\n",
      "          'boring': 2,\n",
      "          'quite': 2,\n",
      "          'garofalo': 2,\n",
      "          'another': 2,\n",
      "          'nthere': 2,\n",
      "          'point': 2,\n",
      "          'even': 2,\n",
      "          'runs': 2,\n",
      "          'bartender': 2,\n",
      "          'ben': 2,\n",
      "          'parker': 2,\n",
      "          'due': 2,\n",
      "          'terrible': 2,\n",
      "          'actor': 2,\n",
      "          'much': 2,\n",
      "          'time': 2,\n",
      "          'reason': 2,\n",
      "          'bad': 2,\n",
      "          'gaby': 2,\n",
      "          'hoffman': 2,\n",
      "          'nthey': 2,\n",
      "          'night': 2,\n",
      "          'alright': 2,\n",
      "          'annoying': 2,\n",
      "          'okay': 2,\n",
      "          'mohr': 2,\n",
      "          'care': 2,\n",
      "          'parts': 2,\n",
      "          'entire': 2,\n",
      "          'hudsons': 2,\n",
      "          'wasnt': 2,\n",
      "          'performances': 2,\n",
      "          'christina': 2,\n",
      "          'soundtrack': 2,\n",
      "          'original': 2,\n",
      "          'feel': 2,\n",
      "          '1980s': 2,\n",
      "          'nis': 2,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'eve': 1,\n",
      "          'nmonica': 1,\n",
      "          'martha': 1,\n",
      "          'neveryone': 1,\n",
      "          'town': 1,\n",
      "          'caught': 1,\n",
      "          'basic': 1,\n",
      "          'nas': 1,\n",
      "          'headed': 1,\n",
      "          'towards': 1,\n",
      "          'sent': 1,\n",
      "          'unoriginal': 1,\n",
      "          'interesting': 1,\n",
      "          'disappointed': 1,\n",
      "          'greatly': 1,\n",
      "          'opinion': 1,\n",
      "          'nlucy': 1,\n",
      "          'rudd': 1,\n",
      "          'friendship': 1,\n",
      "          'starts': 1,\n",
      "          'blossom': 1,\n",
      "          'something': 1,\n",
      "          'dull': 1,\n",
      "          'getting': 1,\n",
      "          'sick': 1,\n",
      "          'plots': 1,\n",
      "          'njaneane': 1,\n",
      "          'involved': 1,\n",
      "          'dealing': 1,\n",
      "          'ellie': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'kevins': 1,\n",
      "          'completely': 1,\n",
      "          'waste': 1,\n",
      "          'garofalos': 1,\n",
      "          'talent': 1,\n",
      "          'hardly': 1,\n",
      "          'nwhen': 1,\n",
      "          'formed': 1,\n",
      "          'invited': 1,\n",
      "          'come': 1,\n",
      "          'monicas': 1,\n",
      "          'nat': 1,\n",
      "          'bar': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'nicole': 1,\n",
      "          'unfortunately': 1,\n",
      "          'dont': 1,\n",
      "          'remember': 1,\n",
      "          'names': 1,\n",
      "          'nben': 1,\n",
      "          'character': 1,\n",
      "          'go': 1,\n",
      "          'anywhere': 1,\n",
      "          'screen': 1,\n",
      "          'give': 1,\n",
      "          'nfeatherstone': 1,\n",
      "          'horrible': 1,\n",
      "          'roles': 1,\n",
      "          'part': 1,\n",
      "          'nchristina': 1,\n",
      "          'val': 1,\n",
      "          'stephie': 1,\n",
      "          'lost': 1,\n",
      "          'guys': 1,\n",
      "          'end': 1,\n",
      "          'around': 1,\n",
      "          'stephies': 1,\n",
      "          'accent': 1,\n",
      "          'nhoffman': 1,\n",
      "          'job': 1,\n",
      "          'underused': 1,\n",
      "          'considering': 1,\n",
      "          'wonderful': 1,\n",
      "          'actress': 1,\n",
      "          'nanother': 1,\n",
      "          'cindy': 1,\n",
      "          'goldie': 1,\n",
      "          'hawns': 1,\n",
      "          'daughter': 1,\n",
      "          'jack': 1,\n",
      "          'jay': 1,\n",
      "          'njack': 1,\n",
      "          'goes': 1,\n",
      "          'likes': 1,\n",
      "          'dates': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'nkate': 1,\n",
      "          'hudson': 1,\n",
      "          'klutz': 1,\n",
      "          'gets': 1,\n",
      "          'situations': 1,\n",
      "          'funniest': 1,\n",
      "          'probably': 1,\n",
      "          'well': 1,\n",
      "          'used': 1,\n",
      "          'mainly': 1,\n",
      "          'nmohr': 1,\n",
      "          'nhe': 1,\n",
      "          'didnt': 1,\n",
      "          'find': 1,\n",
      "          'acceptable': 1,\n",
      "          'say': 1,\n",
      "          'nnone': 1,\n",
      "          'developed': 1,\n",
      "          'shown': 1,\n",
      "          'enough': 1,\n",
      "          'really': 1,\n",
      "          'tell': 1,\n",
      "          'judge': 1,\n",
      "          'riccis': 1,\n",
      "          'always': 1,\n",
      "          'kate': 1,\n",
      "          'role': 1,\n",
      "          'loves': 1,\n",
      "          'mediocre': 1,\n",
      "          'rudds': 1,\n",
      "          'overused': 1,\n",
      "          'ni': 1,\n",
      "          'hoping': 1,\n",
      "          'little': 1,\n",
      "          'jaw': 1,\n",
      "          'casey': 1,\n",
      "          'dave': 1,\n",
      "          'chapelle': 1,\n",
      "          'especially': 1,\n",
      "          'janeane': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'strongest': 1,\n",
      "          'great': 1,\n",
      "          'costumes': 1,\n",
      "          'nmartha': 1,\n",
      "          'different': 1,\n",
      "          'outfits': 1,\n",
      "          'made': 1,\n",
      "          'year': 1,\n",
      "          'full': 1,\n",
      "          'tunes': 1,\n",
      "          'ranging': 1,\n",
      "          'want': 1,\n",
      "          'candy': 1,\n",
      "          'tainted': 1,\n",
      "          'songs': 1,\n",
      "          'also': 1,\n",
      "          'helped': 1,\n",
      "          'create': 1,\n",
      "          'back': 1,\n",
      "          'nduring': 1,\n",
      "          'often': 1,\n",
      "          'found': 1,\n",
      "          'asking': 1,\n",
      "          'questions': 1,\n",
      "          'moral': 1,\n",
      "          'story': 1,\n",
      "          'nare': 1,\n",
      "          'events': 1,\n",
      "          'necessary': 1,\n",
      "          'ndo': 1,\n",
      "          'reached': 1,\n",
      "          'elevenoclock': 1,\n",
      "          'hour': 1,\n",
      "          'midnight': 1,\n",
      "          'wait': 1,\n",
      "          'make': 1,\n",
      "          'nmaybe': 1,\n",
      "          'lot': 1,\n",
      "          'better': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'slasher': 1,\n",
      "          '80s': 1,\n",
      "          'comedy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 7,\n",
      "          'nwhy': 6,\n",
      "          'earp': 5,\n",
      "          'movie': 5,\n",
      "          'postman': 5,\n",
      "          'film': 5,\n",
      "          'movies': 4,\n",
      "          'like': 4,\n",
      "          'ni': 4,\n",
      "          'love': 3,\n",
      "          'could': 3,\n",
      "          'nyou': 3,\n",
      "          'world': 3,\n",
      "          'three': 3,\n",
      "          'hour': 3,\n",
      "          'wyatt': 3,\n",
      "          'know': 3,\n",
      "          'nwhat': 3,\n",
      "          'another': 3,\n",
      "          'brown': 3,\n",
      "          'look': 3,\n",
      "          'didnt': 3,\n",
      "          'cast': 3,\n",
      "          'youre': 2,\n",
      "          'always': 2,\n",
      "          'enough': 2,\n",
      "          'years': 2,\n",
      "          'star': 2,\n",
      "          'burns': 2,\n",
      "          'twice': 2,\n",
      "          'youll': 2,\n",
      "          'going': 2,\n",
      "          'wolves': 2,\n",
      "          'died': 2,\n",
      "          'yet': 2,\n",
      "          'nthe': 2,\n",
      "          'worst': 2,\n",
      "          'howard': 2,\n",
      "          'line': 2,\n",
      "          'two': 2,\n",
      "          'appropriate': 2,\n",
      "          'running': 2,\n",
      "          'anyway': 2,\n",
      "          'terrorists': 2,\n",
      "          'america': 2,\n",
      "          'nwas': 2,\n",
      "          'deliver': 2,\n",
      "          'scenes': 2,\n",
      "          'americanized': 2,\n",
      "          'nif': 2,\n",
      "          'bad': 2,\n",
      "          'nbecause': 2,\n",
      "          'hes': 2,\n",
      "          'creepy': 2,\n",
      "          'everything': 2,\n",
      "          'space': 2,\n",
      "          'tom': 2,\n",
      "          'petty': 2,\n",
      "          'ill': 1,\n",
      "          'bet': 1,\n",
      "          'right': 1,\n",
      "          'lounging': 1,\n",
      "          'pool': 1,\n",
      "          'humming': 1,\n",
      "          'wistfully': 1,\n",
      "          'recalling': 1,\n",
      "          'candlelight': 1,\n",
      "          'dinners': 1,\n",
      "          'success': 1,\n",
      "          'nit': 1,\n",
      "          'isnt': 1,\n",
      "          'necessarily': 1,\n",
      "          'say': 1,\n",
      "          'still': 1,\n",
      "          'charm': 1,\n",
      "          'avoid': 1,\n",
      "          'starring': 1,\n",
      "          'kevin': 1,\n",
      "          'nfor': 1,\n",
      "          'least': 1,\n",
      "          'nbegin': 1,\n",
      "          'scribbling': 1,\n",
      "          'bright': 1,\n",
      "          'half': 1,\n",
      "          'long': 1,\n",
      "          'somewhere': 1,\n",
      "          'see': 1,\n",
      "          'perhaps': 1,\n",
      "          'fridge': 1,\n",
      "          'door': 1,\n",
      "          'bedroom': 1,\n",
      "          'mirror': 1,\n",
      "          'lipstick': 1,\n",
      "          'heck': 1,\n",
      "          'thing': 1,\n",
      "          'agreed': 1,\n",
      "          'robin': 1,\n",
      "          'hood': 1,\n",
      "          'prince': 1,\n",
      "          'thieves': 1,\n",
      "          'upstaged': 1,\n",
      "          'powerhouses': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'alan': 1,\n",
      "          'rickman': 1,\n",
      "          'christian': 1,\n",
      "          'slater': 1,\n",
      "          'several': 1,\n",
      "          'dozen': 1,\n",
      "          'tall': 1,\n",
      "          'trees': 1,\n",
      "          'bows': 1,\n",
      "          'arrows': 1,\n",
      "          'canoe': 1,\n",
      "          'nafter': 1,\n",
      "          'dances': 1,\n",
      "          'jfk': 1,\n",
      "          'decided': 1,\n",
      "          'needed': 1,\n",
      "          'expensive': 1,\n",
      "          'starred': 1,\n",
      "          'produced': 1,\n",
      "          'man': 1,\n",
      "          'boring': 1,\n",
      "          'idiot': 1,\n",
      "          'made': 1,\n",
      "          'history': 1,\n",
      "          'books': 1,\n",
      "          'solely': 1,\n",
      "          'due': 1,\n",
      "          'general': 1,\n",
      "          'lack': 1,\n",
      "          'famous': 1,\n",
      "          'wyatts': 1,\n",
      "          'nwyatt': 1,\n",
      "          'dull': 1,\n",
      "          'cowboy': 1,\n",
      "          'natural': 1,\n",
      "          'causes': 1,\n",
      "          'ntombstone': 1,\n",
      "          'vastly': 1,\n",
      "          'superior': 1,\n",
      "          'based': 1,\n",
      "          'legend': 1,\n",
      "          'featured': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'dana': 1,\n",
      "          'delaney': 1,\n",
      "          'girlfriend': 1,\n",
      "          'played': 1,\n",
      "          'joanna': 1,\n",
      "          'movieyou': 1,\n",
      "          'character': 1,\n",
      "          'known': 1,\n",
      "          'best': 1,\n",
      "          'jew': 1,\n",
      "          'whore': 1,\n",
      "          'lawrence': 1,\n",
      "          'kasdan': 1,\n",
      "          'thinking': 1,\n",
      "          'nnow': 1,\n",
      "          'suffering': 1,\n",
      "          'demise': 1,\n",
      "          'epics': 1,\n",
      "          'financially': 1,\n",
      "          'disastrous': 1,\n",
      "          'eradicated': 1,\n",
      "          'memory': 1,\n",
      "          'waterworlds': 1,\n",
      "          'tin': 1,\n",
      "          'cups': 1,\n",
      "          'mildly': 1,\n",
      "          'lucrative': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'takes': 1,\n",
      "          'ever': 1,\n",
      "          'madepeople': 1,\n",
      "          'hollywood': 1,\n",
      "          'quick': 1,\n",
      "          'forget': 1,\n",
      "          'duck': 1,\n",
      "          'whenever': 1,\n",
      "          'next': 1,\n",
      "          'bomb': 1,\n",
      "          'comes': 1,\n",
      "          'along': 1,\n",
      "          'nyet': 1,\n",
      "          'ridiculous': 1,\n",
      "          'suspect': 1,\n",
      "          'thought': 1,\n",
      "          'braveheart': 1,\n",
      "          'handswhy': 1,\n",
      "          'else': 1,\n",
      "          'armies': 1,\n",
      "          'horesback': 1,\n",
      "          'prepared': 1,\n",
      "          'battle': 1,\n",
      "          'climax': 1,\n",
      "          'mailheart': 1,\n",
      "          'think': 1,\n",
      "          'alternate': 1,\n",
      "          'titles': 1,\n",
      "          'post': 1,\n",
      "          'encounters': 1,\n",
      "          'kind': 1,\n",
      "          'farewell': 1,\n",
      "          'salary': 1,\n",
      "          'postmans': 1,\n",
      "          'never': 1,\n",
      "          'watched': 1,\n",
      "          'hate': 1,\n",
      "          'ndances': 1,\n",
      "          'golden': 1,\n",
      "          'brownit': 1,\n",
      "          'looked': 1,\n",
      "          'eggo': 1,\n",
      "          'commercial': 1,\n",
      "          'glass': 1,\n",
      "          'water': 1,\n",
      "          'every': 1,\n",
      "          'minutes': 1,\n",
      "          'would': 1,\n",
      "          'postapocalyptic': 1,\n",
      "          'maddeningly': 1,\n",
      "          'bland': 1,\n",
      "          'dry': 1,\n",
      "          'exactly': 1,\n",
      "          'happened': 1,\n",
      "          'desert': 1,\n",
      "          'ndid': 1,\n",
      "          'become': 1,\n",
      "          'stupid': 1,\n",
      "          'immediately': 1,\n",
      "          'begin': 1,\n",
      "          'rebuilding': 1,\n",
      "          'homes': 1,\n",
      "          'restaurants': 1,\n",
      "          'importantly': 1,\n",
      "          'shopping': 1,\n",
      "          'malls': 1,\n",
      "          'war': 1,\n",
      "          'choose': 1,\n",
      "          'drive': 1,\n",
      "          'plot': 1,\n",
      "          'dumb': 1,\n",
      "          'group': 1,\n",
      "          'well': 1,\n",
      "          'terrorize': 1,\n",
      "          'townfolk': 1,\n",
      "          'across': 1,\n",
      "          'ammunition': 1,\n",
      "          'really': 1,\n",
      "          'daughter': 1,\n",
      "          'girl': 1,\n",
      "          'sweet': 1,\n",
      "          'crush': 1,\n",
      "          'driftercumpostman': 1,\n",
      "          'english': 1,\n",
      "          'actress': 1,\n",
      "          'olivia': 1,\n",
      "          'williams': 1,\n",
      "          'american': 1,\n",
      "          'ndont': 1,\n",
      "          'realize': 1,\n",
      "          'european': 1,\n",
      "          'women': 1,\n",
      "          'big': 1,\n",
      "          'emotional': 1,\n",
      "          'native': 1,\n",
      "          'accent': 1,\n",
      "          'take': 1,\n",
      "          'lessthanstellar': 1,\n",
      "          'performances': 1,\n",
      "          'nicole': 1,\n",
      "          'kidman': 1,\n",
      "          'minnie': 1,\n",
      "          'driver': 1,\n",
      "          'nwho': 1,\n",
      "          'give': 1,\n",
      "          'damn': 1,\n",
      "          'whether': 1,\n",
      "          'lived': 1,\n",
      "          'end': 1,\n",
      "          'came': 1,\n",
      "          'fight': 1,\n",
      "          'leadership': 1,\n",
      "          'leader': 1,\n",
      "          'halfway': 1,\n",
      "          'save': 1,\n",
      "          'us': 1,\n",
      "          'lot': 1,\n",
      "          'headaches': 1,\n",
      "          'patton': 1,\n",
      "          'guy': 1,\n",
      "          'worked': 1,\n",
      "          'way': 1,\n",
      "          'nsure': 1,\n",
      "          'suitably': 1,\n",
      "          'villain': 1,\n",
      "          'including': 1,\n",
      "          'armageddon': 1,\n",
      "          'plays': 1,\n",
      "          'heroic': 1,\n",
      "          'astronaut': 1,\n",
      "          'practically': 1,\n",
      "          'slithers': 1,\n",
      "          'suit': 1,\n",
      "          'heroize': 1,\n",
      "          'demonic': 1,\n",
      "          'institution': 1,\n",
      "          'u': 1,\n",
      "          'postal': 1,\n",
      "          'system': 1,\n",
      "          'supposed': 1,\n",
      "          'playing': 1,\n",
      "          'skeletal': 1,\n",
      "          'around': 1,\n",
      "          '70': 1,\n",
      "          'old': 1,\n",
      "          'oh': 1,\n",
      "          'many': 1,\n",
      "          'questions': 1,\n",
      "          'ask': 1,\n",
      "          'plenty': 1,\n",
      "          'nshouldnt': 1,\n",
      "          'time': 1,\n",
      "          'provided': 1,\n",
      "          'answer': 1,\n",
      "          'one': 1,\n",
      "          'great': 1,\n",
      "          'mule': 1,\n",
      "          'things': 1,\n",
      "          'ass': 1,\n",
      "          'wonder': 1,\n",
      "          'nactually': 1,\n",
      "          'enjoyed': 1,\n",
      "          'tone': 1,\n",
      "          'opening': 1,\n",
      "          'relaxed': 1,\n",
      "          'cynicism': 1,\n",
      "          'accept': 1,\n",
      "          'clunky': 1,\n",
      "          'phrasingtoo': 1,\n",
      "          'couldnt': 1,\n",
      "          'resist': 1,\n",
      "          'temptation': 1,\n",
      "          'letter': 1,\n",
      "          'country': 1,\n",
      "          'nultimately': 1,\n",
      "          'im': 1,\n",
      "          'saying': 1,\n",
      "          'relax': 1,\n",
      "          'nthere': 1,\n",
      "          'quota': 1,\n",
      "          'need': 1,\n",
      "          'make': 1,\n",
      "          'picture': 1,\n",
      "          'year': 1,\n",
      "          'nsettle': 1,\n",
      "          'nreally': 1,\n",
      "          'question': 1,\n",
      "          'future': 1,\n",
      "          'screenplays': 1,\n",
      "          'commit': 1,\n",
      "          'nfeel': 1,\n",
      "          'free': 1,\n",
      "          'write': 1,\n",
      "          'back': 1,\n",
      "          'much': 1,\n",
      "          'letters': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'pie': 7,\n",
      "          'american': 6,\n",
      "          'still': 5,\n",
      "          '2': 4,\n",
      "          'sex': 4,\n",
      "          'thomas': 3,\n",
      "          'much': 3,\n",
      "          'movie': 3,\n",
      "          'original': 3,\n",
      "          'nits': 3,\n",
      "          'comedy': 3,\n",
      "          'one': 3,\n",
      "          'jim': 3,\n",
      "          'jason': 2,\n",
      "          'biggs': 2,\n",
      "          'seann': 2,\n",
      "          'william': 2,\n",
      "          'scott': 2,\n",
      "          'chris': 2,\n",
      "          'klein': 2,\n",
      "          'ian': 2,\n",
      "          'nichols': 2,\n",
      "          'eugene': 2,\n",
      "          'levy': 2,\n",
      "          'j': 2,\n",
      "          'b': 2,\n",
      "          'looking': 2,\n",
      "          'score': 2,\n",
      "          'first': 2,\n",
      "          'performance': 2,\n",
      "          'oz': 2,\n",
      "          'kevin': 2,\n",
      "          'finch': 2,\n",
      "          'nthis': 2,\n",
      "          'even': 2,\n",
      "          'isnt': 2,\n",
      "          'films': 2,\n",
      "          'think': 2,\n",
      "          'nhere': 2,\n",
      "          'like': 2,\n",
      "          'say': 2,\n",
      "          'make': 2,\n",
      "          'permeated': 2,\n",
      "          'characters': 2,\n",
      "          'nand': 2,\n",
      "          'theres': 2,\n",
      "          'ni': 2,\n",
      "          'watching': 2,\n",
      "          'nif': 2,\n",
      "          'get': 2,\n",
      "          'nthe': 2,\n",
      "          'genre': 2,\n",
      "          'seem': 1,\n",
      "          'glued': 1,\n",
      "          'nto': 1,\n",
      "          'nstarring': 1,\n",
      "          'allyson': 1,\n",
      "          'hannigan': 1,\n",
      "          'shannon': 1,\n",
      "          'elizabeth': 1,\n",
      "          'natasha': 1,\n",
      "          'lyonne': 1,\n",
      "          'tara': 1,\n",
      "          'reid': 1,\n",
      "          'mena': 1,\n",
      "          'suvari': 1,\n",
      "          'jennifer': 1,\n",
      "          'coolidge': 1,\n",
      "          'ndirected': 1,\n",
      "          'rogers': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'namerican': 1,\n",
      "          'reunites': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'different': 1,\n",
      "          'setting': 1,\n",
      "          'instead': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'seniors': 1,\n",
      "          'graduate': 1,\n",
      "          'past': 1,\n",
      "          'year': 1,\n",
      "          'college': 1,\n",
      "          'gathered': 1,\n",
      "          'beach': 1,\n",
      "          'house': 1,\n",
      "          'enjoy': 1,\n",
      "          'summer': 1,\n",
      "          'lives': 1,\n",
      "          'njim': 1,\n",
      "          'insecure': 1,\n",
      "          'geek': 1,\n",
      "          'improve': 1,\n",
      "          'sweetest': 1,\n",
      "          'guy': 1,\n",
      "          'block': 1,\n",
      "          'sickeningly': 1,\n",
      "          'saccharine': 1,\n",
      "          'phone': 1,\n",
      "          'conversations': 1,\n",
      "          'studyingabroad': 1,\n",
      "          'girlfriend': 1,\n",
      "          'stifler': 1,\n",
      "          'horny': 1,\n",
      "          'stoner': 1,\n",
      "          'personality': 1,\n",
      "          'eddie': 1,\n",
      "          'kaye': 1,\n",
      "          'longs': 1,\n",
      "          'stiflers': 1,\n",
      "          'mom': 1,\n",
      "          'nhave': 1,\n",
      "          'missed': 1,\n",
      "          'anyone': 1,\n",
      "          'nso': 1,\n",
      "          'obviously': 1,\n",
      "          'changed': 1,\n",
      "          'problem': 1,\n",
      "          'provided': 1,\n",
      "          'boasts': 1,\n",
      "          'rapidfire': 1,\n",
      "          'hilarity': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'true': 1,\n",
      "          'sentiment': 1,\n",
      "          'nbut': 1,\n",
      "          'definition': 1,\n",
      "          'sequelitis': 1,\n",
      "          'coarser': 1,\n",
      "          'yes': 1,\n",
      "          'pushes': 1,\n",
      "          'envelope': 1,\n",
      "          'heart': 1,\n",
      "          'easy': 1,\n",
      "          'cash': 1,\n",
      "          'capitalize': 1,\n",
      "          'success': 1,\n",
      "          'would': 1,\n",
      "          'worthier': 1,\n",
      "          'investment': 1,\n",
      "          'prolong': 1,\n",
      "          'franchise': 1,\n",
      "          'coming': 1,\n",
      "          'something': 1,\n",
      "          'npart': 1,\n",
      "          'reason': 1,\n",
      "          'film': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'kids': 1,\n",
      "          'quest': 1,\n",
      "          'comingofage': 1,\n",
      "          'stepping': 1,\n",
      "          'stone': 1,\n",
      "          'outlet': 1,\n",
      "          'horniness': 1,\n",
      "          'everything': 1,\n",
      "          'cheapened': 1,\n",
      "          'nthey': 1,\n",
      "          'behave': 1,\n",
      "          'idiot': 1,\n",
      "          'frat': 1,\n",
      "          'boys': 1,\n",
      "          'kill': 1,\n",
      "          'drinking': 1,\n",
      "          'motivation': 1,\n",
      "          'except': 1,\n",
      "          'beer': 1,\n",
      "          'nthats': 1,\n",
      "          'cant': 1,\n",
      "          'decent': 1,\n",
      "          'premise': 1,\n",
      "          '2s': 1,\n",
      "          'undoings': 1,\n",
      "          'nmissing': 1,\n",
      "          'sweetness': 1,\n",
      "          'thiscouldbeyou': 1,\n",
      "          'quality': 1,\n",
      "          'main': 1,\n",
      "          'players': 1,\n",
      "          'aware': 1,\n",
      "          'popculture': 1,\n",
      "          'icons': 1,\n",
      "          'theyre': 1,\n",
      "          'onenote': 1,\n",
      "          'nstifler': 1,\n",
      "          'caricatures': 1,\n",
      "          'forced': 1,\n",
      "          'awkward': 1,\n",
      "          'selfdiscoveries': 1,\n",
      "          'arbitrary': 1,\n",
      "          'moments': 1,\n",
      "          'none': 1,\n",
      "          'betraying': 1,\n",
      "          'writers': 1,\n",
      "          'audiences': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'soontobenotorious': 1,\n",
      "          'scene': 1,\n",
      "          'superglues': 1,\n",
      "          'perfectly': 1,\n",
      "          'demonstrates': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'ailments': 1,\n",
      "          'also': 1,\n",
      "          'director': 1,\n",
      "          'rodgers': 1,\n",
      "          'debut': 1,\n",
      "          'ntheres': 1,\n",
      "          'fine': 1,\n",
      "          'line': 1,\n",
      "          'abject': 1,\n",
      "          'humiliation': 1,\n",
      "          'wrong': 1,\n",
      "          'side': 1,\n",
      "          'hard': 1,\n",
      "          'laugh': 1,\n",
      "          'profoundly': 1,\n",
      "          'embarrassed': 1,\n",
      "          'shielded': 1,\n",
      "          'eyes': 1,\n",
      "          'horror': 1,\n",
      "          'redeeming': 1,\n",
      "          'factor': 1,\n",
      "          'inimitable': 1,\n",
      "          'jims': 1,\n",
      "          'dad': 1,\n",
      "          'pops': 1,\n",
      "          'hes': 1,\n",
      "          'utters': 1,\n",
      "          'lines': 1,\n",
      "          'mother': 1,\n",
      "          'known': 1,\n",
      "          'frisky': 1,\n",
      "          'nnot': 1,\n",
      "          'anymore': 1,\n",
      "          'girls': 1,\n",
      "          'parents': 1,\n",
      "          'walk': 1,\n",
      "          'blurts': 1,\n",
      "          'must': 1,\n",
      "          'daughter': 1,\n",
      "          'didnt': 1,\n",
      "          'name': 1,\n",
      "          'hopefully': 1,\n",
      "          'son': 1,\n",
      "          'rest': 1,\n",
      "          'wit': 1,\n",
      "          'wisdom': 1,\n",
      "          'levys': 1,\n",
      "          'unworthy': 1,\n",
      "          'sequel': 1,\n",
      "          'grossfest': 1,\n",
      "          'brought': 1,\n",
      "          'back': 1,\n",
      "          'raunchy': 1,\n",
      "          'teen': 1,\n",
      "          'boxoffice': 1,\n",
      "          'onw': 1,\n",
      "          'keep': 1,\n",
      "          'going': 1,\n",
      "          'strong': 1,\n",
      "          'disappointing': 1,\n",
      "          'needs': 1,\n",
      "          'hiatus': 1,\n",
      "          'filmmakers': 1,\n",
      "          'getting': 1,\n",
      "          'lazy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'finn': 8,\n",
      "          'estella': 6,\n",
      "          'character': 5,\n",
      "          'book': 4,\n",
      "          'two': 4,\n",
      "          'great': 3,\n",
      "          'expectations': 3,\n",
      "          'one': 3,\n",
      "          'adult': 3,\n",
      "          'joe': 3,\n",
      "          'plot': 3,\n",
      "          'dinsmoor': 3,\n",
      "          'nin': 3,\n",
      "          'work': 3,\n",
      "          'ill': 2,\n",
      "          'first': 2,\n",
      "          'pip': 2,\n",
      "          'young': 2,\n",
      "          'ethan': 2,\n",
      "          'hawke': 2,\n",
      "          'tell': 2,\n",
      "          'way': 2,\n",
      "          'nanyway': 2,\n",
      "          'get': 2,\n",
      "          'classics': 2,\n",
      "          'time': 2,\n",
      "          'nfinn': 2,\n",
      "          'nthe': 2,\n",
      "          'setting': 2,\n",
      "          'artist': 2,\n",
      "          'spends': 2,\n",
      "          'upon': 2,\n",
      "          'criminal': 2,\n",
      "          'deniro': 2,\n",
      "          'maybe': 2,\n",
      "          'scenes': 2,\n",
      "          'nand': 2,\n",
      "          'nothing': 2,\n",
      "          'finns': 2,\n",
      "          'good': 2,\n",
      "          'show': 2,\n",
      "          'anne': 2,\n",
      "          'bancroft': 2,\n",
      "          'ms': 2,\n",
      "          'nalthough': 2,\n",
      "          'ends': 2,\n",
      "          'girl': 2,\n",
      "          'gwyneth': 2,\n",
      "          'paltrow': 2,\n",
      "          'apparent': 2,\n",
      "          'main': 2,\n",
      "          'simply': 2,\n",
      "          'never': 2,\n",
      "          'fact': 2,\n",
      "          'fails': 2,\n",
      "          'obviously': 2,\n",
      "          'watching': 2,\n",
      "          'strong': 2,\n",
      "          'would': 2,\n",
      "          'nfinns': 2,\n",
      "          'bit': 2,\n",
      "          'much': 2,\n",
      "          'art': 2,\n",
      "          'see': 2,\n",
      "          'nas': 2,\n",
      "          'modern': 2,\n",
      "          'admit': 1,\n",
      "          'nwhen': 1,\n",
      "          'mention': 1,\n",
      "          'immediately': 1,\n",
      "          'begin': 1,\n",
      "          'experiencing': 1,\n",
      "          'flashbacks': 1,\n",
      "          'junior': 1,\n",
      "          'high': 1,\n",
      "          'english': 1,\n",
      "          'class': 1,\n",
      "          'confronted': 1,\n",
      "          'torturously': 1,\n",
      "          'boring': 1,\n",
      "          'filled': 1,\n",
      "          'people': 1,\n",
      "          'nonsensical': 1,\n",
      "          'names': 1,\n",
      "          'magwitch': 1,\n",
      "          'nyes': 1,\n",
      "          'classic': 1,\n",
      "          'literature': 1,\n",
      "          'rather': 1,\n",
      "          'dry': 1,\n",
      "          'shoved': 1,\n",
      "          'throat': 1,\n",
      "          'like': 1,\n",
      "          'spoonful': 1,\n",
      "          'bitter': 1,\n",
      "          'medicine': 1,\n",
      "          'ncertainly': 1,\n",
      "          'experience': 1,\n",
      "          'wasnt': 1,\n",
      "          'truly': 1,\n",
      "          'bad': 1,\n",
      "          'quote': 1,\n",
      "          'latest': 1,\n",
      "          'movie': 1,\n",
      "          'adaptation': 1,\n",
      "          'said': 1,\n",
      "          'im': 1,\n",
      "          'going': 1,\n",
      "          'story': 1,\n",
      "          'happened': 1,\n",
      "          'ngonna': 1,\n",
      "          'remember': 1,\n",
      "          'return': 1,\n",
      "          'nostalgia': 1,\n",
      "          'lane': 1,\n",
      "          'back': 1,\n",
      "          'present': 1,\n",
      "          'hollywood': 1,\n",
      "          'trendy': 1,\n",
      "          'attempt': 1,\n",
      "          'modernize': 1,\n",
      "          'presents': 1,\n",
      "          'updated': 1,\n",
      "          'version': 1,\n",
      "          'ninstead': 1,\n",
      "          'central': 1,\n",
      "          'named': 1,\n",
      "          'played': 1,\n",
      "          'boy': 1,\n",
      "          'jeremy': 1,\n",
      "          'kissner': 1,\n",
      "          'orphan': 1,\n",
      "          'raised': 1,\n",
      "          'unfaithful': 1,\n",
      "          'sister': 1,\n",
      "          'maggie': 1,\n",
      "          'mrs': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'boorish': 1,\n",
      "          'fisherman': 1,\n",
      "          'husband': 1,\n",
      "          'chris': 1,\n",
      "          'cooper': 1,\n",
      "          'florida': 1,\n",
      "          'coast': 1,\n",
      "          'mid70s': 1,\n",
      "          'blooming': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'beach': 1,\n",
      "          'drawing': 1,\n",
      "          'fish': 1,\n",
      "          'favorite': 1,\n",
      "          'subjects': 1,\n",
      "          'nduring': 1,\n",
      "          'escapades': 1,\n",
      "          'literally': 1,\n",
      "          'stumbles': 1,\n",
      "          'escaped': 1,\n",
      "          'robert': 1,\n",
      "          'nborrowing': 1,\n",
      "          'page': 1,\n",
      "          'superhuman': 1,\n",
      "          'max': 1,\n",
      "          'cady': 1,\n",
      "          'deniros': 1,\n",
      "          'seemingly': 1,\n",
      "          'limitless': 1,\n",
      "          'lung': 1,\n",
      "          'capacity': 1,\n",
      "          'favors': 1,\n",
      "          'hiding': 1,\n",
      "          'ocean': 1,\n",
      "          'floor': 1,\n",
      "          'nok': 1,\n",
      "          'nthats': 1,\n",
      "          'exaggeration': 1,\n",
      "          'certainly': 1,\n",
      "          'beats': 1,\n",
      "          'houdinis': 1,\n",
      "          'records': 1,\n",
      "          'opening': 1,\n",
      "          'thats': 1,\n",
      "          'next': 1,\n",
      "          'fuel': 1,\n",
      "          'efficiency': 1,\n",
      "          'motorboat': 1,\n",
      "          'digress': 1,\n",
      "          'convict': 1,\n",
      "          'deed': 1,\n",
      "          'hes': 1,\n",
      "          'really': 1,\n",
      "          'swell': 1,\n",
      "          'guy': 1,\n",
      "          'moves': 1,\n",
      "          'nenter': 1,\n",
      "          'miss': 1,\n",
      "          'havisham': 1,\n",
      "          'nms': 1,\n",
      "          'nabandoned': 1,\n",
      "          'altar': 1,\n",
      "          '26': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'epitome': 1,\n",
      "          'crazy': 1,\n",
      "          'rich': 1,\n",
      "          'old': 1,\n",
      "          'maid': 1,\n",
      "          'nwith': 1,\n",
      "          'bizarre': 1,\n",
      "          'clothing': 1,\n",
      "          'eccentric': 1,\n",
      "          'mannerisms': 1,\n",
      "          'pounds': 1,\n",
      "          'makeup': 1,\n",
      "          'seriously': 1,\n",
      "          'overacts': 1,\n",
      "          'role': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'believable': 1,\n",
      "          'add': 1,\n",
      "          'humor': 1,\n",
      "          'njoe': 1,\n",
      "          'hired': 1,\n",
      "          'help': 1,\n",
      "          'gardening': 1,\n",
      "          'unkempt': 1,\n",
      "          'manner': 1,\n",
      "          'insane': 1,\n",
      "          'soon': 1,\n",
      "          'hires': 1,\n",
      "          'plaything': 1,\n",
      "          'niece': 1,\n",
      "          'raquel': 1,\n",
      "          'beaudene': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'provide': 1,\n",
      "          'instantly': 1,\n",
      "          'stricken': 1,\n",
      "          'nperhaps': 1,\n",
      "          'snooty': 1,\n",
      "          'attitude': 1,\n",
      "          'utter': 1,\n",
      "          'disdain': 1,\n",
      "          'person': 1,\n",
      "          'met': 1,\n",
      "          'case': 1,\n",
      "          'neither': 1,\n",
      "          'children': 1,\n",
      "          'adults': 1,\n",
      "          'chemistry': 1,\n",
      "          'doesnt': 1,\n",
      "          'exist': 1,\n",
      "          'yet': 1,\n",
      "          'remainder': 1,\n",
      "          'pining': 1,\n",
      "          'neven': 1,\n",
      "          'arrives': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'behest': 1,\n",
      "          'mysterious': 1,\n",
      "          'benefactor': 1,\n",
      "          'reacquaints': 1,\n",
      "          'draws': 1,\n",
      "          'portrait': 1,\n",
      "          'nude': 1,\n",
      "          'theres': 1,\n",
      "          'sexual': 1,\n",
      "          'tension': 1,\n",
      "          'helen': 1,\n",
      "          'hunt': 1,\n",
      "          'greg': 1,\n",
      "          'kinnears': 1,\n",
      "          'gay': 1,\n",
      "          'similar': 1,\n",
      "          'scene': 1,\n",
      "          'gets': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'audience': 1,\n",
      "          'grown': 1,\n",
      "          'cold': 1,\n",
      "          'detached': 1,\n",
      "          'estellas': 1,\n",
      "          'couldnt': 1,\n",
      "          'care': 1,\n",
      "          'less': 1,\n",
      "          'characters': 1,\n",
      "          'bulk': 1,\n",
      "          'blame': 1,\n",
      "          'falls': 1,\n",
      "          'nshe': 1,\n",
      "          'imbue': 1,\n",
      "          'remote': 1,\n",
      "          'even': 1,\n",
      "          'vaguest': 1,\n",
      "          'traces': 1,\n",
      "          'humanity': 1,\n",
      "          'ntheres': 1,\n",
      "          'something': 1,\n",
      "          'wrong': 1,\n",
      "          'youre': 1,\n",
      "          'interested': 1,\n",
      "          'big': 1,\n",
      "          'nose': 1,\n",
      "          'looks': 1,\n",
      "          'silhouette': 1,\n",
      "          'nwithout': 1,\n",
      "          'obsession': 1,\n",
      "          'seems': 1,\n",
      "          'baseless': 1,\n",
      "          'nyou': 1,\n",
      "          'wish': 1,\n",
      "          'stop': 1,\n",
      "          'whining': 1,\n",
      "          'let': 1,\n",
      "          'marry': 1,\n",
      "          'rival': 1,\n",
      "          'walter': 1,\n",
      "          'plane': 1,\n",
      "          'oddly': 1,\n",
      "          'subdued': 1,\n",
      "          'hank': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'azaria': 1,\n",
      "          'life': 1,\n",
      "          'relationships': 1,\n",
      "          'purely': 1,\n",
      "          'tangential': 1,\n",
      "          'relationship': 1,\n",
      "          'brotherinlaw': 1,\n",
      "          'interesting': 1,\n",
      "          'stereotypical': 1,\n",
      "          'nwhats': 1,\n",
      "          'fascinating': 1,\n",
      "          'interactions': 1,\n",
      "          'part': 1,\n",
      "          'goes': 1,\n",
      "          'vitality': 1,\n",
      "          'actor': 1,\n",
      "          'create': 1,\n",
      "          'nit': 1,\n",
      "          'director': 1,\n",
      "          'alfonso': 1,\n",
      "          'cuarsn': 1,\n",
      "          'put': 1,\n",
      "          'lot': 1,\n",
      "          'creating': 1,\n",
      "          'imagery': 1,\n",
      "          'nsome': 1,\n",
      "          'shots': 1,\n",
      "          'others': 1,\n",
      "          'staged': 1,\n",
      "          'example': 1,\n",
      "          'water': 1,\n",
      "          'fountain': 1,\n",
      "          'impact': 1,\n",
      "          'actually': 1,\n",
      "          'creations': 1,\n",
      "          'italian': 1,\n",
      "          'painter': 1,\n",
      "          'francesco': 1,\n",
      "          'clemente': 1,\n",
      "          'used': 1,\n",
      "          'throughout': 1,\n",
      "          'mostly': 1,\n",
      "          'intended': 1,\n",
      "          'effect': 1,\n",
      "          'nwe': 1,\n",
      "          'generate': 1,\n",
      "          'style': 1,\n",
      "          'simultaneously': 1,\n",
      "          'crude': 1,\n",
      "          'insightful': 1,\n",
      "          'result': 1,\n",
      "          'distant': 1,\n",
      "          'rest': 1,\n",
      "          'nmodernizing': 1,\n",
      "          'currently': 1,\n",
      "          'vogue': 1,\n",
      "          'william': 1,\n",
      "          'shakespeares': 1,\n",
      "          'romeojuliet': 1,\n",
      "          'nsimply': 1,\n",
      "          'update': 1,\n",
      "          'action': 1,\n",
      "          'apply': 1,\n",
      "          'plenty': 1,\n",
      "          'rock': 1,\n",
      "          'nbut': 1,\n",
      "          'adornments': 1,\n",
      "          'little': 1,\n",
      "          'perk': 1,\n",
      "          'dreaded': 1,\n",
      "          'novel': 1,\n",
      "          'read': 1,\n",
      "          'youd': 1,\n",
      "          'probably': 1,\n",
      "          'better': 1,\n",
      "          'suffering': 1,\n",
      "          'though': 1,\n",
      "          'reading': 1,\n",
      "          'romanceless': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'apes': 11,\n",
      "          'planet': 9,\n",
      "          'heston': 5,\n",
      "          'ape': 5,\n",
      "          'nthe': 4,\n",
      "          'one': 3,\n",
      "          'time': 3,\n",
      "          'humans': 3,\n",
      "          'movies': 3,\n",
      "          'damn': 2,\n",
      "          'taken': 2,\n",
      "          'acting': 2,\n",
      "          'actually': 2,\n",
      "          'like': 2,\n",
      "          'beneath': 2,\n",
      "          'escape': 2,\n",
      "          'return': 2,\n",
      "          'years': 2,\n",
      "          'companions': 2,\n",
      "          'thing': 2,\n",
      "          'masks': 2,\n",
      "          'dominant': 2,\n",
      "          'species': 2,\n",
      "          'two': 2,\n",
      "          'movie': 2,\n",
      "          'good': 2,\n",
      "          'god': 2,\n",
      "          'nbut': 2,\n",
      "          'ability': 2,\n",
      "          'speak': 2,\n",
      "          'nand': 2,\n",
      "          'doll': 2,\n",
      "          'yelling': 2,\n",
      "          'account': 2,\n",
      "          'dirty': 1,\n",
      "          'nthats': 1,\n",
      "          'inadvertenty': 1,\n",
      "          'hilarious': 1,\n",
      "          'lines': 1,\n",
      "          'thats': 1,\n",
      "          'comedic': 1,\n",
      "          'context': 1,\n",
      "          'nno': 1,\n",
      "          'back': 1,\n",
      "          'seemed': 1,\n",
      "          'realize': 1,\n",
      "          'overthe': 1,\n",
      "          'top': 1,\n",
      "          'charlton': 1,\n",
      "          'hestons': 1,\n",
      "          'style': 1,\n",
      "          'shows': 1,\n",
      "          'particularly': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theater': 1,\n",
      "          '3000': 1,\n",
      "          'wannabe': 1,\n",
      "          'film': 1,\n",
      "          'masterpiece': 1,\n",
      "          'winning': 1,\n",
      "          'oscar': 1,\n",
      "          'makeup': 1,\n",
      "          'less': 1,\n",
      "          'nominated': 1,\n",
      "          'couple': 1,\n",
      "          'others': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'spawned': 1,\n",
      "          'multiple': 1,\n",
      "          'sequels': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          'list': 1,\n",
      "          'goes': 1,\n",
      "          'nheston': 1,\n",
      "          'american': 1,\n",
      "          'astronaut': 1,\n",
      "          'spends': 1,\n",
      "          'thousand': 1,\n",
      "          'light': 1,\n",
      "          'space': 1,\n",
      "          'three': 1,\n",
      "          'ends': 1,\n",
      "          'dissimilar': 1,\n",
      "          'earth': 1,\n",
      "          'cant': 1,\n",
      "          'talk': 1,\n",
      "          'think': 1,\n",
      "          'guys': 1,\n",
      "          'gorilla': 1,\n",
      "          'nhestons': 1,\n",
      "          'killed': 1,\n",
      "          'turned': 1,\n",
      "          'vegetables': 1,\n",
      "          'apon': 1,\n",
      "          'imprisoned': 1,\n",
      "          'nhe': 1,\n",
      "          'surprises': 1,\n",
      "          'gift': 1,\n",
      "          'speech': 1,\n",
      "          'making': 1,\n",
      "          'primate': 1,\n",
      "          'scientists': 1,\n",
      "          'roddy': 1,\n",
      "          'mcdowall': 1,\n",
      "          'kim': 1,\n",
      "          'hunter': 1,\n",
      "          'believe': 1,\n",
      "          'missing': 1,\n",
      "          'link': 1,\n",
      "          'man': 1,\n",
      "          'nbelieve': 1,\n",
      "          'critics': 1,\n",
      "          'thinking': 1,\n",
      "          'nwhen': 1,\n",
      "          'present': 1,\n",
      "          'idea': 1,\n",
      "          'judicial': 1,\n",
      "          'counsel': 1,\n",
      "          'head': 1,\n",
      "          'shakespearean': 1,\n",
      "          'actor': 1,\n",
      "          'maurice': 1,\n",
      "          'evans': 1,\n",
      "          'received': 1,\n",
      "          'heresy': 1,\n",
      "          'monkeys': 1,\n",
      "          'know': 1,\n",
      "          'created': 1,\n",
      "          'image': 1,\n",
      "          'already': 1,\n",
      "          'seen': 1,\n",
      "          'cave': 1,\n",
      "          'contains': 1,\n",
      "          'evidence': 1,\n",
      "          'originally': 1,\n",
      "          'ever': 1,\n",
      "          'gained': 1,\n",
      "          'run': 1,\n",
      "          'president': 1,\n",
      "          'takes': 1,\n",
      "          'holding': 1,\n",
      "          'baby': 1,\n",
      "          'couldnt': 1,\n",
      "          'talking': 1,\n",
      "          'mr': 1,\n",
      "          'absolute': 1,\n",
      "          'laughable': 1,\n",
      "          'scene': 1,\n",
      "          'comes': 1,\n",
      "          'surprise': 1,\n",
      "          'conclusion': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'reveal': 1,\n",
      "          'details': 1,\n",
      "          'except': 1,\n",
      "          'say': 1,\n",
      "          'involves': 1,\n",
      "          'falling': 1,\n",
      "          'knees': 1,\n",
      "          'beach': 1,\n",
      "          'hell': 1,\n",
      "          'nseveral': 1,\n",
      "          'times': 1,\n",
      "          'succession': 1,\n",
      "          'atrocious': 1,\n",
      "          'viewed': 1,\n",
      "          'members': 1,\n",
      "          'society': 1,\n",
      "          'watch': 1,\n",
      "          'bad': 1,\n",
      "          'laugh': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'even': 1,\n",
      "          'amusing': 1,\n",
      "          'supposed': 1,\n",
      "          'function': 1,\n",
      "          'sort': 1,\n",
      "          'social': 1,\n",
      "          'irony': 1,\n",
      "          'condemnation': 1,\n",
      "          'fundamentals': 1,\n",
      "          'reject': 1,\n",
      "          'theories': 1,\n",
      "          'evolution': 1,\n",
      "          'let': 1,\n",
      "          'tell': 1,\n",
      "          'darwin': 1,\n",
      "          'could': 1,\n",
      "          'see': 1,\n",
      "          'hear': 1,\n",
      "          'rotten': 1,\n",
      "          'dialogue': 1,\n",
      "          'exchanges': 1,\n",
      "          'female': 1,\n",
      "          'may': 1,\n",
      "          'kiss': 1,\n",
      "          'go': 1,\n",
      "          'nape': 1,\n",
      "          'nyoure': 1,\n",
      "          'nugly': 1,\n",
      "          'hed': 1,\n",
      "          'convert': 1,\n",
      "          'creationism': 1,\n",
      "          'spot': 1,\n",
      "          'nluckily': 1,\n",
      "          'us': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'evolved': 1,\n",
      "          'point': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'movie': 6,\n",
      "          'affleck': 5,\n",
      "          'like': 5,\n",
      "          'space': 5,\n",
      "          'one': 5,\n",
      "          'nthey': 4,\n",
      "          'n': 4,\n",
      "          'nasa': 4,\n",
      "          'willis': 3,\n",
      "          'tyler': 3,\n",
      "          'bay': 3,\n",
      "          'nit': 3,\n",
      "          'asteroid': 3,\n",
      "          'someone': 3,\n",
      "          'sequence': 3,\n",
      "          'almost': 3,\n",
      "          'bunch': 3,\n",
      "          'guy': 3,\n",
      "          'called': 3,\n",
      "          'little': 3,\n",
      "          'liv': 2,\n",
      "          'ben': 2,\n",
      "          'written': 2,\n",
      "          'j': 2,\n",
      "          'michael': 2,\n",
      "          'rocks': 2,\n",
      "          'us': 2,\n",
      "          'kind': 2,\n",
      "          'damage': 2,\n",
      "          'armageddon': 2,\n",
      "          'deep': 2,\n",
      "          'impact': 2,\n",
      "          'harry': 2,\n",
      "          'oil': 2,\n",
      "          'driller': 2,\n",
      "          'deepcore': 2,\n",
      "          'build': 2,\n",
      "          'obligatory': 2,\n",
      "          'daughter': 2,\n",
      "          'something': 2,\n",
      "          'care': 2,\n",
      "          'ni': 2,\n",
      "          'scenes': 2,\n",
      "          'last': 2,\n",
      "          'often': 2,\n",
      "          'world': 2,\n",
      "          'songs': 2,\n",
      "          'eventually': 2,\n",
      "          'dead': 2,\n",
      "          'could': 2,\n",
      "          'believe': 2,\n",
      "          'story': 2,\n",
      "          'nthe': 2,\n",
      "          'perhaps': 2,\n",
      "          'jaws': 2,\n",
      "          'men': 2,\n",
      "          'respect': 2,\n",
      "          'another': 2,\n",
      "          'characters': 2,\n",
      "          'get': 2,\n",
      "          'feeling': 2,\n",
      "          'even': 2,\n",
      "          'team': 2,\n",
      "          'new': 1,\n",
      "          'address': 1,\n",
      "          'nsame': 1,\n",
      "          'old': 1,\n",
      "          'attitude': 1,\n",
      "          'ndont': 1,\n",
      "          'forget': 1,\n",
      "          'recommend': 1,\n",
      "          'read': 1,\n",
      "          'journal': 1,\n",
      "          'send': 1,\n",
      "          'nasty': 1,\n",
      "          'hate': 1,\n",
      "          'mail': 1,\n",
      "          'nstarring': 1,\n",
      "          'bruce': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'thornton': 1,\n",
      "          'jonathan': 1,\n",
      "          'hensleigh': 1,\n",
      "          'nabrams': 1,\n",
      "          'directed': 1,\n",
      "          'rocksactually': 1,\n",
      "          'lots': 1,\n",
      "          'fly': 1,\n",
      "          'slow': 1,\n",
      "          'fast': 1,\n",
      "          'motion': 1,\n",
      "          'several': 1,\n",
      "          'points': 1,\n",
      "          'seem': 1,\n",
      "          'dangerous': 1,\n",
      "          'twirl': 1,\n",
      "          'air': 1,\n",
      "          'instead': 1,\n",
      "          'propelling': 1,\n",
      "          'forward': 1,\n",
      "          'landonce': 1,\n",
      "          'need': 1,\n",
      "          'break': 1,\n",
      "          'sequencesthey': 1,\n",
      "          'cause': 1,\n",
      "          'enough': 1,\n",
      "          'destroy': 1,\n",
      "          'chrysler': 1,\n",
      "          'building': 1,\n",
      "          'nary': 1,\n",
      "          'mention': 1,\n",
      "          'apocalyptic': 1,\n",
      "          'events': 1,\n",
      "          'made': 1,\n",
      "          'occur': 1,\n",
      "          'also': 1,\n",
      "          'might': 1,\n",
      "          'interesting': 1,\n",
      "          'element': 1,\n",
      "          'steroid': 1,\n",
      "          'users': 1,\n",
      "          'answer': 1,\n",
      "          'nbruce': 1,\n",
      "          'stars': 1,\n",
      "          'stamper': 1,\n",
      "          'famed': 1,\n",
      "          'oildriller': 1,\n",
      "          'commissioned': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'stop': 1,\n",
      "          'giant': 1,\n",
      "          'travels': 1,\n",
      "          'beyond': 1,\n",
      "          'zero': 1,\n",
      "          'barrier': 1,\n",
      "          'destroys': 1,\n",
      "          'planet': 1,\n",
      "          'nwhy': 1,\n",
      "          'require': 1,\n",
      "          'experienced': 1,\n",
      "          'mining': 1,\n",
      "          'plant': 1,\n",
      "          'nuclear': 1,\n",
      "          'missile': 1,\n",
      "          'said': 1,\n",
      "          'unintentionally': 1,\n",
      "          'nhilarious': 1,\n",
      "          'asks': 1,\n",
      "          'inspect': 1,\n",
      "          'built': 1,\n",
      "          'based': 1,\n",
      "          'blueprints': 1,\n",
      "          'poorly': 1,\n",
      "          'constructedharry': 1,\n",
      "          'criticizes': 1,\n",
      "          'every': 1,\n",
      "          'aspect': 1,\n",
      "          'nwe': 1,\n",
      "          'trust': 1,\n",
      "          'shuttles': 1,\n",
      "          'land': 1,\n",
      "          'twirling': 1,\n",
      "          'asteroids': 1,\n",
      "          'nharry': 1,\n",
      "          'assembles': 1,\n",
      "          'ragtag': 1,\n",
      "          'cowboys': 1,\n",
      "          'including': 1,\n",
      "          'blond': 1,\n",
      "          'fat': 1,\n",
      "          'black': 1,\n",
      "          'wiseass': 1,\n",
      "          'man': 1,\n",
      "          'sleeping': 1,\n",
      "          'nonce': 1,\n",
      "          'reach': 1,\n",
      "          'experience': 1,\n",
      "          'going': 1,\n",
      "          'wrongperhaps': 1,\n",
      "          'fact': 1,\n",
      "          'sent': 1,\n",
      "          'nincompoops': 1,\n",
      "          'outer': 1,\n",
      "          'count': 1,\n",
      "          'number': 1,\n",
      "          'times': 1,\n",
      "          'fail': 1,\n",
      "          'mission': 1,\n",
      "          'fingers': 1,\n",
      "          'toes': 1,\n",
      "          'nwhether': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'reveal': 1,\n",
      "          'nnor': 1,\n",
      "          'say': 1,\n",
      "          'know': 1,\n",
      "          'youre': 1,\n",
      "          'trouble': 1,\n",
      "          'dwarfs': 1,\n",
      "          'terms': 1,\n",
      "          'emotion': 1,\n",
      "          'scope': 1,\n",
      "          'nwillis': 1,\n",
      "          'barely': 1,\n",
      "          'chance': 1,\n",
      "          'come': 1,\n",
      "          'alive': 1,\n",
      "          'ditto': 1,\n",
      "          'ntheir': 1,\n",
      "          'big': 1,\n",
      "          'mostly': 1,\n",
      "          'reserved': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'minuteand': 1,\n",
      "          'futileattempt': 1,\n",
      "          'inject': 1,\n",
      "          'warmth': 1,\n",
      "          'material': 1,\n",
      "          'nsteve': 1,\n",
      "          'buscemis': 1,\n",
      "          'characterthe': 1,\n",
      "          'wiseassis': 1,\n",
      "          'exceptionally': 1,\n",
      "          'problematic': 1,\n",
      "          'rockhound': 1,\n",
      "          'hes': 1,\n",
      "          'sarcastic': 1,\n",
      "          'foolish': 1,\n",
      "          'tape': 1,\n",
      "          'chair': 1,\n",
      "          'spends': 1,\n",
      "          'nso': 1,\n",
      "          'bring': 1,\n",
      "          'begin': 1,\n",
      "          'nrather': 1,\n",
      "          'write': 1,\n",
      "          'give': 1,\n",
      "          'nhis': 1,\n",
      "          'almostwitty': 1,\n",
      "          'oneliners': 1,\n",
      "          'serious': 1,\n",
      "          'scowls': 1,\n",
      "          'mopes': 1,\n",
      "          'demonstrates': 1,\n",
      "          'psychotic': 1,\n",
      "          'tendencies': 1,\n",
      "          'point': 1,\n",
      "          'chases': 1,\n",
      "          'shotgun': 1,\n",
      "          'screwing': 1,\n",
      "          'firing': 1,\n",
      "          'causing': 1,\n",
      "          'significant': 1,\n",
      "          'rig': 1,\n",
      "          'nim': 1,\n",
      "          'guessing': 1,\n",
      "          'qualifies': 1,\n",
      "          'guidelines': 1,\n",
      "          'unfit': 1,\n",
      "          'travel': 1,\n",
      "          'least': 1,\n",
      "          'sky': 1,\n",
      "          'blue': 1,\n",
      "          'nliv': 1,\n",
      "          'pretty': 1,\n",
      "          'humourless': 1,\n",
      "          'always': 1,\n",
      "          'suspiciously': 1,\n",
      "          'four': 1,\n",
      "          'fathers': 1,\n",
      "          'bands': 1,\n",
      "          'aerosmith': 1,\n",
      "          'grace': 1,\n",
      "          'soundtrack': 1,\n",
      "          'ndirector': 1,\n",
      "          'lays': 1,\n",
      "          'visual': 1,\n",
      "          'sound': 1,\n",
      "          'effects': 1,\n",
      "          'thick': 1,\n",
      "          'ketchup': 1,\n",
      "          'drowning': 1,\n",
      "          'onscreen': 1,\n",
      "          'middle': 1,\n",
      "          'hour': 1,\n",
      "          'nonsensical': 1,\n",
      "          'pyrotechnic': 1,\n",
      "          'assault': 1,\n",
      "          'average': 1,\n",
      "          'primates': 1,\n",
      "          'brain': 1,\n",
      "          'nwhenever': 1,\n",
      "          'dies': 1,\n",
      "          'crew': 1,\n",
      "          'member': 1,\n",
      "          'inevitably': 1,\n",
      "          'yells': 1,\n",
      "          'lost': 1,\n",
      "          'insert': 1,\n",
      "          'persons': 1,\n",
      "          'name': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'distinguish': 1,\n",
      "          'oilguycumastronaut': 1,\n",
      "          'live': 1,\n",
      "          'closeups': 1,\n",
      "          'corpses': 1,\n",
      "          'faces': 1,\n",
      "          'beneath': 1,\n",
      "          'cracked': 1,\n",
      "          'helmets': 1,\n",
      "          'provided': 1,\n",
      "          'assistance': 1,\n",
      "          'skin': 1,\n",
      "          'covered': 1,\n",
      "          'fake': 1,\n",
      "          'blood': 1,\n",
      "          'narmageddon': 1,\n",
      "          'terrible': 1,\n",
      "          'godzilla': 1,\n",
      "          'looks': 1,\n",
      "          'nicer': 1,\n",
      "          'fewer': 1,\n",
      "          'plotholes': 1,\n",
      "          'within': 1,\n",
      "          'equally': 1,\n",
      "          'ludicrous': 1,\n",
      "          'framework': 1,\n",
      "          'vivid': 1,\n",
      "          'soundmix': 1,\n",
      "          'nbut': 1,\n",
      "          'twoandahalf': 1,\n",
      "          'hours': 1,\n",
      "          'actually': 1,\n",
      "          'happened': 1,\n",
      "          'course': 1,\n",
      "          'love': 1,\n",
      "          'played': 1,\n",
      "          'ads': 1,\n",
      "          'hoping': 1,\n",
      "          'catch': 1,\n",
      "          'people': 1,\n",
      "          'recover': 1,\n",
      "          'titanicfever': 1,\n",
      "          'nbollocks': 1,\n",
      "          'lovers': 1,\n",
      "          'miles': 1,\n",
      "          'apart': 1,\n",
      "          'throughouterase': 1,\n",
      "          'thoughts': 1,\n",
      "          'nude': 1,\n",
      "          'sketching': 1,\n",
      "          'carsex': 1,\n",
      "          'replace': 1,\n",
      "          'shots': 1,\n",
      "          'tearing': 1,\n",
      "          'dicks': 1,\n",
      "          'around': 1,\n",
      "          'mooncrawler': 1,\n",
      "          'nremember': 1,\n",
      "          'nin': 1,\n",
      "          'three': 1,\n",
      "          'independentminded': 1,\n",
      "          'suddenly': 1,\n",
      "          'found': 1,\n",
      "          'fishing': 1,\n",
      "          'boat': 1,\n",
      "          'pursuit': 1,\n",
      "          'deadly': 1,\n",
      "          'shark': 1,\n",
      "          'didnt': 1,\n",
      "          'much': 1,\n",
      "          'first': 1,\n",
      "          'started': 1,\n",
      "          'none': 1,\n",
      "          'great': 1,\n",
      "          'involved': 1,\n",
      "          'wouldbeahabs': 1,\n",
      "          'drinking': 1,\n",
      "          'singing': 1,\n",
      "          'telling': 1,\n",
      "          'stories': 1,\n",
      "          'nthis': 1,\n",
      "          'sort': 1,\n",
      "          'malebonding': 1,\n",
      "          'foreign': 1,\n",
      "          'producer': 1,\n",
      "          'jerry': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'throw': 1,\n",
      "          'many': 1,\n",
      "          'mix': 1,\n",
      "          'expect': 1,\n",
      "          'well': 1,\n",
      "          'grounds': 1,\n",
      "          'end': 1,\n",
      "          'nnot': 1,\n",
      "          'acquaintancesid': 1,\n",
      "          'surprised': 1,\n",
      "          'actors': 1,\n",
      "          'bothered': 1,\n",
      "          'introduce': 1,\n",
      "          'action': 1,\n",
      "          'na': 1,\n",
      "          'male': 1,\n",
      "          'friend': 1,\n",
      "          'loved': 1,\n",
      "          'suggested': 1,\n",
      "          'relate': 1,\n",
      "          'dont': 1,\n",
      "          'bare': 1,\n",
      "          'souls': 1,\n",
      "          'dying': 1,\n",
      "          'macho': 1,\n",
      "          'concepts': 1,\n",
      "          'heroism': 1,\n",
      "          'chestbeating': 1,\n",
      "          'bravery': 1,\n",
      "          'nto': 1,\n",
      "          'respond': 1,\n",
      "          'boys': 1,\n",
      "          'neither': 1,\n",
      "          'heroic': 1,\n",
      "          'brave': 1,\n",
      "          'smart': 1,\n",
      "          'couldnt': 1,\n",
      "          'birdhouse': 1,\n",
      "          'nand': 1,\n",
      "          'disliking': 1,\n",
      "          'synthetic': 1,\n",
      "          'trailera': 1,\n",
      "          'trailer': 1,\n",
      "          'bodybuilders': 1,\n",
      "          'greeting': 1,\n",
      "          'card': 1,\n",
      "          'authorsive': 1,\n",
      "          'never': 1,\n",
      "          'prouder': 1,\n",
      "          'wimp': 1,\n",
      "          'whole': 1,\n",
      "          'life': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'corky': 10,\n",
      "          'one': 3,\n",
      "          'romano': 3,\n",
      "          'much': 3,\n",
      "          'chris': 3,\n",
      "          'agent': 3,\n",
      "          'nthe': 3,\n",
      "          'nand': 3,\n",
      "          'throwaway': 2,\n",
      "          'turn': 2,\n",
      "          'tv': 2,\n",
      "          'getting': 2,\n",
      "          'kattan': 2,\n",
      "          'ads': 2,\n",
      "          'career': 2,\n",
      "          'good': 2,\n",
      "          'even': 2,\n",
      "          'plays': 2,\n",
      "          'work': 2,\n",
      "          'peter': 2,\n",
      "          'brothers': 2,\n",
      "          'berg': 2,\n",
      "          'fbi': 2,\n",
      "          'named': 2,\n",
      "          'something': 2,\n",
      "          'sitcom': 2,\n",
      "          'gives': 2,\n",
      "          'question': 1,\n",
      "          'eats': 1,\n",
      "          'seeing': 1,\n",
      "          'touchstone': 1,\n",
      "          'spent': 1,\n",
      "          'money': 1,\n",
      "          'marketing': 1,\n",
      "          'film': 1,\n",
      "          'nsince': 1,\n",
      "          'june': 1,\n",
      "          'havent': 1,\n",
      "          'able': 1,\n",
      "          'go': 1,\n",
      "          'movies': 1,\n",
      "          'without': 1,\n",
      "          'hit': 1,\n",
      "          'ad': 1,\n",
      "          'depicting': 1,\n",
      "          'spastic': 1,\n",
      "          'shrieking': 1,\n",
      "          'ahas': 1,\n",
      "          'take': 1,\n",
      "          'yellow': 1,\n",
      "          'miata': 1,\n",
      "          'nwhy': 1,\n",
      "          'would': 1,\n",
      "          'disney': 1,\n",
      "          'sink': 1,\n",
      "          'cash': 1,\n",
      "          'hype': 1,\n",
      "          'machine': 1,\n",
      "          'nhonestly': 1,\n",
      "          'hoping': 1,\n",
      "          'goofball': 1,\n",
      "          'actually': 1,\n",
      "          'front': 1,\n",
      "          'decently': 1,\n",
      "          'funny': 1,\n",
      "          'movie': 1,\n",
      "          'nman': 1,\n",
      "          'wrong': 1,\n",
      "          'ncorky': 1,\n",
      "          'clich': 1,\n",
      "          'ridden': 1,\n",
      "          'tvstartofilm': 1,\n",
      "          'vehicles': 1,\n",
      "          'built': 1,\n",
      "          'upon': 1,\n",
      "          'rickety': 1,\n",
      "          'plots': 1,\n",
      "          'nfortunately': 1,\n",
      "          'kattans': 1,\n",
      "          'precariously': 1,\n",
      "          'positioned': 1,\n",
      "          'laughs': 1,\n",
      "          'lowestbrow': 1,\n",
      "          'variety': 1,\n",
      "          'nkattan': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'unsinkable': 1,\n",
      "          'assistant': 1,\n",
      "          'veterinarian': 1,\n",
      "          'penchant': 1,\n",
      "          'sunshiny': 1,\n",
      "          '80s': 1,\n",
      "          'tunes': 1,\n",
      "          'bright': 1,\n",
      "          'ties': 1,\n",
      "          'banal': 1,\n",
      "          'coffee': 1,\n",
      "          'mug': 1,\n",
      "          'slogans': 1,\n",
      "          'dont': 1,\n",
      "          'crazy': 1,\n",
      "          'sure': 1,\n",
      "          'helps': 1,\n",
      "          'nwhen': 1,\n",
      "          'mob': 1,\n",
      "          'boss': 1,\n",
      "          'dad': 1,\n",
      "          'falk': 1,\n",
      "          'put': 1,\n",
      "          'away': 1,\n",
      "          'murder': 1,\n",
      "          'charges': 1,\n",
      "          'bungling': 1,\n",
      "          'lughead': 1,\n",
      "          'penn': 1,\n",
      "          'rope': 1,\n",
      "          'innocent': 1,\n",
      "          'black': 1,\n",
      "          'sheep': 1,\n",
      "          'infiltrate': 1,\n",
      "          'steal': 1,\n",
      "          'evidence': 1,\n",
      "          'npredictably': 1,\n",
      "          'hijinks': 1,\n",
      "          'ensue': 1,\n",
      "          'nif': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'sounds': 1,\n",
      "          'bad': 1,\n",
      "          'wait': 1,\n",
      "          'get': 1,\n",
      "          'innerworkings': 1,\n",
      "          'clunker': 1,\n",
      "          'writers': 1,\n",
      "          'amaze': 1,\n",
      "          'depth': 1,\n",
      "          'inanity': 1,\n",
      "          'ncorkys': 1,\n",
      "          'identity': 1,\n",
      "          'pissant': 1,\n",
      "          'thats': 1,\n",
      "          'pronounced': 1,\n",
      "          'peesahn': 1,\n",
      "          'nits': 1,\n",
      "          'french': 1,\n",
      "          'nhe': 1,\n",
      "          'becomes': 1,\n",
      "          'firstrate': 1,\n",
      "          'accidentally': 1,\n",
      "          'stumbling': 1,\n",
      "          'mr': 1,\n",
      "          'magoostyle': 1,\n",
      "          'onto': 1,\n",
      "          'proper': 1,\n",
      "          'clues': 1,\n",
      "          'talking': 1,\n",
      "          'way': 1,\n",
      "          'situations': 1,\n",
      "          'like': 1,\n",
      "          'mean': 1,\n",
      "          'family': 1,\n",
      "          'insult': 1,\n",
      "          'farting': 1,\n",
      "          'others': 1,\n",
      "          'face': 1,\n",
      "          'scene': 1,\n",
      "          'taken': 1,\n",
      "          'straight': 1,\n",
      "          'theres': 1,\n",
      "          'mary': 1,\n",
      "          'dachshund': 1,\n",
      "          'mouthtomouth': 1,\n",
      "          'resuscitation': 1,\n",
      "          'nbut': 1,\n",
      "          'complete': 1,\n",
      "          'disaster': 1,\n",
      "          'manic': 1,\n",
      "          'occasionally': 1,\n",
      "          'rescue': 1,\n",
      "          'comic': 1,\n",
      "          'moments': 1,\n",
      "          'including': 1,\n",
      "          'bit': 1,\n",
      "          'featuring': 1,\n",
      "          'cat': 1,\n",
      "          'fat': 1,\n",
      "          'suit': 1,\n",
      "          'jesus': 1,\n",
      "          'another': 1,\n",
      "          'involving': 1,\n",
      "          'schoolchildren': 1,\n",
      "          'german': 1,\n",
      "          'shephard': 1,\n",
      "          'kilo': 1,\n",
      "          'cocaine': 1,\n",
      "          'nplus': 1,\n",
      "          'whose': 1,\n",
      "          'obviously': 1,\n",
      "          'gone': 1,\n",
      "          'downhill': 1,\n",
      "          'since': 1,\n",
      "          'last': 1,\n",
      "          'seduction': 1,\n",
      "          'chicago': 1,\n",
      "          'hope': 1,\n",
      "          'great': 1,\n",
      "          'illiterate': 1,\n",
      "          'brother': 1,\n",
      "          'paulie': 1,\n",
      "          'nice': 1,\n",
      "          'see': 1,\n",
      "          'richard': 1,\n",
      "          'roundtree': 1,\n",
      "          'shaft': 1,\n",
      "          'fame': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'cant': 1,\n",
      "          'truly': 1,\n",
      "          'appreciate': 1,\n",
      "          'animal': 1,\n",
      "          'fart': 1,\n",
      "          'jokes': 1,\n",
      "          'wont': 1,\n",
      "          'offer': 1,\n",
      "          'nso': 1,\n",
      "          'next': 1,\n",
      "          'time': 1,\n",
      "          'pesky': 1,\n",
      "          'appears': 1,\n",
      "          'asking': 1,\n",
      "          'nyou': 1,\n",
      "          'simply': 1,\n",
      "          'reply': 1,\n",
      "          'cares': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'catch': 5,\n",
      "          'hand': 5,\n",
      "          'summer': 4,\n",
      "          'give': 4,\n",
      "          'freddie': 3,\n",
      "          'prinze': 3,\n",
      "          'playing': 3,\n",
      "          'baseball': 3,\n",
      "          'better': 3,\n",
      "          'league': 3,\n",
      "          'play': 3,\n",
      "          'big': 3,\n",
      "          'ryan': 3,\n",
      "          'film': 3,\n",
      "          'nfor': 3,\n",
      "          'movie': 3,\n",
      "          'character': 3,\n",
      "          'dont': 2,\n",
      "          'want': 2,\n",
      "          'see': 2,\n",
      "          'jr': 2,\n",
      "          'loving': 2,\n",
      "          'major': 2,\n",
      "          'nits': 2,\n",
      "          'time': 2,\n",
      "          'ask': 2,\n",
      "          'real': 2,\n",
      "          'townie': 2,\n",
      "          'make': 2,\n",
      "          'neither': 2,\n",
      "          'tenley': 2,\n",
      "          'jessica': 2,\n",
      "          'biel': 2,\n",
      "          'far': 2,\n",
      "          'makes': 2,\n",
      "          'also': 2,\n",
      "          'fellow': 2,\n",
      "          'dee': 2,\n",
      "          'best': 2,\n",
      "          'friend': 2,\n",
      "          'fat': 2,\n",
      "          'fetish': 2,\n",
      "          'much': 2,\n",
      "          'done': 2,\n",
      "          'fact': 2,\n",
      "          'romance': 2,\n",
      "          'nthe': 2,\n",
      "          'part': 2,\n",
      "          'guy': 2,\n",
      "          'screen': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nryans': 2,\n",
      "          'long': 2,\n",
      "          'one': 2,\n",
      "          'nwhen': 2,\n",
      "          'shes': 2,\n",
      "          'almost': 2,\n",
      "          'two': 2,\n",
      "          'teen': 2,\n",
      "          'kids': 1,\n",
      "          'today': 1,\n",
      "          'heartthrob': 1,\n",
      "          'master': 1,\n",
      "          'thespian': 1,\n",
      "          'ladies': 1,\n",
      "          'nno': 1,\n",
      "          'something': 1,\n",
      "          'takes': 1,\n",
      "          'little': 1,\n",
      "          'acting': 1,\n",
      "          'department': 1,\n",
      "          'namely': 1,\n",
      "          'nthrough': 1,\n",
      "          'series': 1,\n",
      "          'drippy': 1,\n",
      "          'voiceovers': 1,\n",
      "          'informed': 1,\n",
      "          'theres': 1,\n",
      "          'proving': 1,\n",
      "          'ground': 1,\n",
      "          'cape': 1,\n",
      "          'cod': 1,\n",
      "          'leagues': 1,\n",
      "          'college': 1,\n",
      "          'alsorans': 1,\n",
      "          'hopeful': 1,\n",
      "          'dropouts': 1,\n",
      "          'go': 1,\n",
      "          'hopes': 1,\n",
      "          'attracting': 1,\n",
      "          'attention': 1,\n",
      "          'nour': 1,\n",
      "          'man': 1,\n",
      "          'landed': 1,\n",
      "          'spot': 1,\n",
      "          'pitcher': 1,\n",
      "          'prestigious': 1,\n",
      "          'chatham': 1,\n",
      "          'hoping': 1,\n",
      "          'break': 1,\n",
      "          'given': 1,\n",
      "          'ample': 1,\n",
      "          'show': 1,\n",
      "          'abs': 1,\n",
      "          'scamper': 1,\n",
      "          'womans': 1,\n",
      "          'thong': 1,\n",
      "          'learn': 1,\n",
      "          'story': 1,\n",
      "          'poor': 1,\n",
      "          'named': 1,\n",
      "          'dunne': 1,\n",
      "          'struggling': 1,\n",
      "          'name': 1,\n",
      "          'father': 1,\n",
      "          'fred': 1,\n",
      "          'ward': 1,\n",
      "          'brother': 1,\n",
      "          'jason': 1,\n",
      "          'gedrick': 1,\n",
      "          'pulled': 1,\n",
      "          'blue': 1,\n",
      "          'collar': 1,\n",
      "          'jobs': 1,\n",
      "          'resent': 1,\n",
      "          'anyone': 1,\n",
      "          'tries': 1,\n",
      "          'local': 1,\n",
      "          'beauty': 1,\n",
      "          'n': 1,\n",
      "          'probably': 1,\n",
      "          'shouldnt': 1,\n",
      "          'even': 1,\n",
      "          'bother': 1,\n",
      "          'nbut': 1,\n",
      "          'course': 1,\n",
      "          'nsummer': 1,\n",
      "          'abortive': 1,\n",
      "          'stab': 1,\n",
      "          'another': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'subplots': 1,\n",
      "          'jealousy': 1,\n",
      "          'brazen': 1,\n",
      "          'slut': 1,\n",
      "          'brittany': 1,\n",
      "          'murphy': 1,\n",
      "          'alienation': 1,\n",
      "          'felt': 1,\n",
      "          'ryans': 1,\n",
      "          'nonbaseball': 1,\n",
      "          'gabriel': 1,\n",
      "          'mann': 1,\n",
      "          'chick': 1,\n",
      "          'player': 1,\n",
      "          'miles': 1,\n",
      "          'marc': 1,\n",
      "          'blucas': 1,\n",
      "          'nworst': 1,\n",
      "          'ludicrous': 1,\n",
      "          'bit': 1,\n",
      "          'involving': 1,\n",
      "          '70s': 1,\n",
      "          'shows': 1,\n",
      "          'wilmer': 1,\n",
      "          'valderrama': 1,\n",
      "          'beverly': 1,\n",
      "          'dangelo': 1,\n",
      "          'appear': 1,\n",
      "          'simply': 1,\n",
      "          'provide': 1,\n",
      "          'nutty': 1,\n",
      "          'mrs': 1,\n",
      "          'robinsonlike': 1,\n",
      "          'substory': 1,\n",
      "          'remind': 1,\n",
      "          'bull': 1,\n",
      "          'durham': 1,\n",
      "          'nin': 1,\n",
      "          'virtually': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'somewhere': 1,\n",
      "          'else': 1,\n",
      "          'starters': 1,\n",
      "          'question': 1,\n",
      "          'identity': 1,\n",
      "          'definitely': 1,\n",
      "          'sports': 1,\n",
      "          'fails': 1,\n",
      "          'pretty': 1,\n",
      "          'miserably': 1,\n",
      "          'worst': 1,\n",
      "          'amateurish': 1,\n",
      "          'script': 1,\n",
      "          'cowritten': 1,\n",
      "          'arli': 1,\n",
      "          'writing': 1,\n",
      "          'alumnus': 1,\n",
      "          'starred': 1,\n",
      "          'leprechaun': 1,\n",
      "          '3': 1,\n",
      "          'chockfull': 1,\n",
      "          'phony': 1,\n",
      "          'emotion': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'becomes': 1,\n",
      "          'platform': 1,\n",
      "          'deliver': 1,\n",
      "          'soliloquy': 1,\n",
      "          'must': 1,\n",
      "          'take': 1,\n",
      "          'heart': 1,\n",
      "          'ndad': 1,\n",
      "          'fatherly': 1,\n",
      "          'yet': 1,\n",
      "          'drunken': 1,\n",
      "          'advice': 1,\n",
      "          'ncoach': 1,\n",
      "          'brian': 1,\n",
      "          'dennehy': 1,\n",
      "          'hes': 1,\n",
      "          'got': 1,\n",
      "          'work': 1,\n",
      "          'curmudgeonly': 1,\n",
      "          'counterpoint': 1,\n",
      "          'catcher': 1,\n",
      "          'matthew': 1,\n",
      "          'lillard': 1,\n",
      "          'tell': 1,\n",
      "          'fun': 1,\n",
      "          'stoner': 1,\n",
      "          'gogetemtigerwerebehindyou': 1,\n",
      "          'talk': 1,\n",
      "          'nand': 1,\n",
      "          'girlfriend': 1,\n",
      "          'heartwarmingnuzzlyfollowyourdreams': 1,\n",
      "          'counsel': 1,\n",
      "          'nbefore': 1,\n",
      "          'start': 1,\n",
      "          'wonder': 1,\n",
      "          'freddy': 1,\n",
      "          'capable': 1,\n",
      "          'thought': 1,\n",
      "          'ndont': 1,\n",
      "          'answer': 1,\n",
      "          'joy': 1,\n",
      "          'found': 1,\n",
      "          'biels': 1,\n",
      "          'skimpy': 1,\n",
      "          'outfits': 1,\n",
      "          'usually': 1,\n",
      "          'wet': 1,\n",
      "          'nshes': 1,\n",
      "          'able': 1,\n",
      "          'role': 1,\n",
      "          'taking': 1,\n",
      "          'rebellingagainstdaddy': 1,\n",
      "          'least': 1,\n",
      "          'passing': 1,\n",
      "          'grade': 1,\n",
      "          'flies': 1,\n",
      "          'realize': 1,\n",
      "          'ungodly': 1,\n",
      "          'reason': 1,\n",
      "          'hours': 1,\n",
      "          'pg13': 1,\n",
      "          'despite': 1,\n",
      "          'nearconstant': 1,\n",
      "          'sexual': 1,\n",
      "          'innuendo': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'thinking': 1,\n",
      "          'fallen': 1,\n",
      "          '7th': 1,\n",
      "          'heaven': 1,\n",
      "          'roots': 1,\n",
      "          'become': 1,\n",
      "          'denise': 1,\n",
      "          'richards': 1,\n",
      "          'nhollywood': 1,\n",
      "          'either': 1,\n",
      "          'eat': 1,\n",
      "          'alive': 1,\n",
      "          'vice': 1,\n",
      "          'versa': 1,\n",
      "          'way': 1,\n",
      "          'good': 1,\n",
      "          'luck': 1,\n",
      "          'nas': 1,\n",
      "          'keeps': 1,\n",
      "          'pumping': 1,\n",
      "          'romances': 1,\n",
      "          'rate': 1,\n",
      "          'year': 1,\n",
      "          'prinzes': 1,\n",
      "          'next': 1,\n",
      "          'liable': 1,\n",
      "          'venereal': 1,\n",
      "          'disease': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'romance': 4,\n",
      "          'plot': 3,\n",
      "          'one': 3,\n",
      "          'life': 2,\n",
      "          'witch': 2,\n",
      "          'movie': 2,\n",
      "          'cause': 2,\n",
      "          'magic': 2,\n",
      "          'matter': 2,\n",
      "          'drama': 2,\n",
      "          'known': 2,\n",
      "          'two': 1,\n",
      "          'sister': 1,\n",
      "          'witches': 1,\n",
      "          'live': 1,\n",
      "          'curse': 1,\n",
      "          'placed': 1,\n",
      "          'upon': 1,\n",
      "          'family': 1,\n",
      "          'prevents': 1,\n",
      "          'ever': 1,\n",
      "          'enjoying': 1,\n",
      "          'full': 1,\n",
      "          'lover': 1,\n",
      "          'nthe': 1,\n",
      "          'hex': 1,\n",
      "          'invokes': 1,\n",
      "          'eventual': 1,\n",
      "          'demise': 1,\n",
      "          'loved': 1,\n",
      "          'nwhen': 1,\n",
      "          'past': 1,\n",
      "          'loves': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'haunt': 1,\n",
      "          'figure': 1,\n",
      "          'way': 1,\n",
      "          'eternal': 1,\n",
      "          'dilemma': 1,\n",
      "          'ncritique': 1,\n",
      "          'ive': 1,\n",
      "          'waiting': 1,\n",
      "          'good': 1,\n",
      "          'hold': 1,\n",
      "          'brooms': 1,\n",
      "          'incantations': 1,\n",
      "          'puppy': 1,\n",
      "          'far': 1,\n",
      "          'nfor': 1,\n",
      "          'word': 1,\n",
      "          'title': 1,\n",
      "          'contains': 1,\n",
      "          'moments': 1,\n",
      "          'nhumor': 1,\n",
      "          'suspense': 1,\n",
      "          'nwell': 1,\n",
      "          'actually': 1,\n",
      "          'manufactured': 1,\n",
      "          'within': 1,\n",
      "          'muddled': 1,\n",
      "          'never': 1,\n",
      "          'lets': 1,\n",
      "          'whether': 1,\n",
      "          'comedy': 1,\n",
      "          'horror': 1,\n",
      "          'show': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'maybe': 1,\n",
      "          'eh': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'characters': 1,\n",
      "          'boring': 1,\n",
      "          'uninteresting': 1,\n",
      "          'absolutely': 1,\n",
      "          'basis': 1,\n",
      "          'care': 1,\n",
      "          'whole': 1,\n",
      "          'nif': 1,\n",
      "          'filmmakers': 1,\n",
      "          'spent': 1,\n",
      "          'much': 1,\n",
      "          'time': 1,\n",
      "          'sinfully': 1,\n",
      "          'obvious': 1,\n",
      "          'soundtrack': 1,\n",
      "          'mightve': 1,\n",
      "          'chance': 1,\n",
      "          'nwhich': 1,\n",
      "          'unentertaining': 1,\n",
      "          'crappy': 1,\n",
      "          'uses': 1,\n",
      "          'angle': 1,\n",
      "          'diversionary': 1,\n",
      "          'tactic': 1,\n",
      "          'weave': 1,\n",
      "          'us': 1,\n",
      "          'away': 1,\n",
      "          'grabbag': 1,\n",
      "          'stupid': 1,\n",
      "          'voiceovers': 1,\n",
      "          'overdone': 1,\n",
      "          'songs': 1,\n",
      "          'melodramatic': 1,\n",
      "          'undeveloped': 1,\n",
      "          'story': 1,\n",
      "          'uneven': 1,\n",
      "          'acting': 1,\n",
      "          'ni': 1,\n",
      "          'wish': 1,\n",
      "          'could': 1,\n",
      "          'make': 1,\n",
      "          'hour': 1,\n",
      "          'fortyfive': 1,\n",
      "          'minutes': 1,\n",
      "          'reappear': 1,\n",
      "          'alas': 1,\n",
      "          'lost': 1,\n",
      "          'spiritual': 1,\n",
      "          'world': 1,\n",
      "          'interesting': 1,\n",
      "          'ideas': 1,\n",
      "          'gone': 1,\n",
      "          'wildly': 1,\n",
      "          'awry': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'written': 1,\n",
      "          'alice': 1,\n",
      "          'hoffman': 1,\n",
      "          'ncoscreenwriter': 1,\n",
      "          'akiva': 1,\n",
      "          'goldsman': 1,\n",
      "          'also': 1,\n",
      "          'wrote': 1,\n",
      "          'screenplay': 1,\n",
      "          '1997s': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'ndirector': 1,\n",
      "          'griffin': 1,\n",
      "          'dunne': 1,\n",
      "          'mainly': 1,\n",
      "          'actor': 1,\n",
      "          'films': 1,\n",
      "          'american': 1,\n",
      "          'werewolf': 1,\n",
      "          'london': 1,\n",
      "          'hours': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'nthe': 6,\n",
      "          'courtney': 6,\n",
      "          'liz': 6,\n",
      "          'julie': 5,\n",
      "          'jawbreaker': 5,\n",
      "          'teen': 4,\n",
      "          'high': 4,\n",
      "          'audience': 4,\n",
      "          'look': 4,\n",
      "          'stud': 4,\n",
      "          'mcgowan': 3,\n",
      "          'gayheart': 3,\n",
      "          'way': 3,\n",
      "          'fern': 3,\n",
      "          'girls': 3,\n",
      "          'death': 3,\n",
      "          'lizs': 3,\n",
      "          'like': 3,\n",
      "          'ndirector': 2,\n",
      "          'darren': 2,\n",
      "          'stein': 2,\n",
      "          'rose': 2,\n",
      "          'rebecca': 2,\n",
      "          'judy': 2,\n",
      "          'greer': 2,\n",
      "          'benz': 2,\n",
      "          'chad': 2,\n",
      "          'christ': 2,\n",
      "          'ethan': 2,\n",
      "          'erickson': 2,\n",
      "          'carol': 2,\n",
      "          'kane': 2,\n",
      "          'pam': 2,\n",
      "          'grier': 2,\n",
      "          'tatyana': 2,\n",
      "          'ali': 2,\n",
      "          'carrie': 2,\n",
      "          '1995': 2,\n",
      "          'movie': 2,\n",
      "          'geeky': 2,\n",
      "          'good': 2,\n",
      "          'marcie': 2,\n",
      "          'nliz': 2,\n",
      "          'turn': 2,\n",
      "          'help': 2,\n",
      "          'nin': 2,\n",
      "          'order': 2,\n",
      "          'keep': 2,\n",
      "          'making': 2,\n",
      "          'nthey': 2,\n",
      "          'courtneys': 2,\n",
      "          'camera': 2,\n",
      "          'never': 2,\n",
      "          'get': 2,\n",
      "          'plan': 2,\n",
      "          'also': 2,\n",
      "          'students': 2,\n",
      "          'begins': 2,\n",
      "          'role': 2,\n",
      "          'characters': 2,\n",
      "          'develop': 2,\n",
      "          'plot': 2,\n",
      "          'lame': 2,\n",
      "          'apparently': 2,\n",
      "          'make': 2,\n",
      "          'best': 2,\n",
      "          'scene': 2,\n",
      "          'aspect': 2,\n",
      "          'design': 2,\n",
      "          'work': 2,\n",
      "          'color': 2,\n",
      "          'impression': 2,\n",
      "          'school': 2,\n",
      "          'male': 2,\n",
      "          'tristar': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'language': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          'violence': 1,\n",
      "          '87': 1,\n",
      "          'minutes': 1,\n",
      "          'writer': 1,\n",
      "          'ncast': 1,\n",
      "          'nreview': 1,\n",
      "          'geoff': 1,\n",
      "          'berkshire': 1,\n",
      "          'njawbreaker': 1,\n",
      "          'definition': 1,\n",
      "          'ripoff': 1,\n",
      "          'nthis': 1,\n",
      "          'uninspired': 1,\n",
      "          'comedy': 1,\n",
      "          'takes': 1,\n",
      "          'equal': 1,\n",
      "          'parts': 1,\n",
      "          '1976': 1,\n",
      "          'heathers': 1,\n",
      "          '1989': 1,\n",
      "          'clueless': 1,\n",
      "          'mixes': 1,\n",
      "          'necessary': 1,\n",
      "          'clich': 1,\n",
      "          'nalong': 1,\n",
      "          'writerdirector': 1,\n",
      "          'forgets': 1,\n",
      "          'give': 1,\n",
      "          'life': 1,\n",
      "          'opens': 1,\n",
      "          'voice': 1,\n",
      "          'mayo': 1,\n",
      "          'four': 1,\n",
      "          'popular': 1,\n",
      "          'reagan': 1,\n",
      "          'shayne': 1,\n",
      "          'basically': 1,\n",
      "          'summed': 1,\n",
      "          'satan': 1,\n",
      "          'heels': 1,\n",
      "          'freeman': 1,\n",
      "          'girl': 1,\n",
      "          'face': 1,\n",
      "          'supermodel': 1,\n",
      "          'fox': 1,\n",
      "          'dimwitted': 1,\n",
      "          'blonde': 1,\n",
      "          'demands': 1,\n",
      "          'people': 1,\n",
      "          'call': 1,\n",
      "          'foxy': 1,\n",
      "          'purr': 1,\n",
      "          'charlotte': 1,\n",
      "          'roldan': 1,\n",
      "          'angel': 1,\n",
      "          'disguise': 1,\n",
      "          'everyones': 1,\n",
      "          'favorite': 1,\n",
      "          'shes': 1,\n",
      "          'beautiful': 1,\n",
      "          'kind': 1,\n",
      "          '17': 1,\n",
      "          'prank': 1,\n",
      "          'convinces': 1,\n",
      "          'kidnapping': 1,\n",
      "          'birthday': 1,\n",
      "          'morning': 1,\n",
      "          'noise': 1,\n",
      "          'stuffs': 1,\n",
      "          'mouth': 1,\n",
      "          'gag': 1,\n",
      "          'stuff': 1,\n",
      "          'trunk': 1,\n",
      "          'car': 1,\n",
      "          'open': 1,\n",
      "          'later': 1,\n",
      "          'polaroid': 1,\n",
      "          'waiting': 1,\n",
      "          'capture': 1,\n",
      "          'moment': 1,\n",
      "          'lives': 1,\n",
      "          'poor': 1,\n",
      "          'swallowed': 1,\n",
      "          'choked': 1,\n",
      "          'lodged': 1,\n",
      "          'throat': 1,\n",
      "          'treated': 1,\n",
      "          'many': 1,\n",
      "          'graphic': 1,\n",
      "          'looks': 1,\n",
      "          'dead': 1,\n",
      "          'body': 1,\n",
      "          'ncourtney': 1,\n",
      "          'thinking': 1,\n",
      "          'fast': 1,\n",
      "          'decides': 1,\n",
      "          'pass': 1,\n",
      "          'rapemurder': 1,\n",
      "          'reluctant': 1,\n",
      "          'assist': 1,\n",
      "          'nthings': 1,\n",
      "          'complicated': 1,\n",
      "          'discovers': 1,\n",
      "          'three': 1,\n",
      "          'quiet': 1,\n",
      "          'comes': 1,\n",
      "          'another': 1,\n",
      "          'transforms': 1,\n",
      "          'vylette': 1,\n",
      "          'hoping': 1,\n",
      "          'replace': 1,\n",
      "          'minds': 1,\n",
      "          'devastated': 1,\n",
      "          'nup': 1,\n",
      "          'point': 1,\n",
      "          'effective': 1,\n",
      "          'enough': 1,\n",
      "          'nhowever': 1,\n",
      "          'investigation': 1,\n",
      "          'becomes': 1,\n",
      "          'excessively': 1,\n",
      "          'dull': 1,\n",
      "          'recently': 1,\n",
      "          'rediscovered': 1,\n",
      "          'talents': 1,\n",
      "          'thoroughly': 1,\n",
      "          'wasted': 1,\n",
      "          'detective': 1,\n",
      "          'vera': 1,\n",
      "          'cruz': 1,\n",
      "          'downright': 1,\n",
      "          'insipid': 1,\n",
      "          'treatment': 1,\n",
      "          'long': 1,\n",
      "          'middle': 1,\n",
      "          'stretch': 1,\n",
      "          'ncourtneys': 1,\n",
      "          'frame': 1,\n",
      "          'sleazy': 1,\n",
      "          'guy': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'brief': 1,\n",
      "          'cameo': 1,\n",
      "          'believable': 1,\n",
      "          'second': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'stuck': 1,\n",
      "          'watching': 1,\n",
      "          'string': 1,\n",
      "          'random': 1,\n",
      "          'events': 1,\n",
      "          'fail': 1,\n",
      "          'add': 1,\n",
      "          'anything': 1,\n",
      "          'interest': 1,\n",
      "          'njulie': 1,\n",
      "          'leaves': 1,\n",
      "          'group': 1,\n",
      "          'romance': 1,\n",
      "          'aspiring': 1,\n",
      "          'actor': 1,\n",
      "          'zack': 1,\n",
      "          'nhe': 1,\n",
      "          'gives': 1,\n",
      "          'courage': 1,\n",
      "          'things': 1,\n",
      "          'stupid': 1,\n",
      "          'nferns': 1,\n",
      "          'rise': 1,\n",
      "          'popularity': 1,\n",
      "          'equally': 1,\n",
      "          'nwe': 1,\n",
      "          'one': 1,\n",
      "          'spark': 1,\n",
      "          'originality': 1,\n",
      "          'section': 1,\n",
      "          'nits': 1,\n",
      "          'smart': 1,\n",
      "          'subversive': 1,\n",
      "          'bit': 1,\n",
      "          'gets': 1,\n",
      "          'schools': 1,\n",
      "          'resident': 1,\n",
      "          'jock': 1,\n",
      "          'dane': 1,\n",
      "          'demonstrate': 1,\n",
      "          'using': 1,\n",
      "          'popsicle': 1,\n",
      "          'exactly': 1,\n",
      "          'would': 1,\n",
      "          'nit': 1,\n",
      "          'least': 1,\n",
      "          'provides': 1,\n",
      "          'us': 1,\n",
      "          'personality': 1,\n",
      "          'finishes': 1,\n",
      "          'doesnt': 1,\n",
      "          'sense': 1,\n",
      "          'nstein': 1,\n",
      "          'conscious': 1,\n",
      "          'tradition': 1,\n",
      "          'working': 1,\n",
      "          'freely': 1,\n",
      "          'borrows': 1,\n",
      "          'major': 1,\n",
      "          'elements': 1,\n",
      "          'includes': 1,\n",
      "          'direct': 1,\n",
      "          'acknowledgment': 1,\n",
      "          'stunt': 1,\n",
      "          'casting': 1,\n",
      "          'nwilliam': 1,\n",
      "          'katt': 1,\n",
      "          'p': 1,\n",
      "          'j': 1,\n",
      "          'soles': 1,\n",
      "          'distraught': 1,\n",
      "          'parents': 1,\n",
      "          'jeff': 1,\n",
      "          'conaway': 1,\n",
      "          'grease': 1,\n",
      "          '1978': 1,\n",
      "          'julies': 1,\n",
      "          'creepy': 1,\n",
      "          'single': 1,\n",
      "          'dad': 1,\n",
      "          'frightened': 1,\n",
      "          'babysitter': 1,\n",
      "          'stranger': 1,\n",
      "          'calls': 1,\n",
      "          '1979': 1,\n",
      "          'camps': 1,\n",
      "          'principal': 1,\n",
      "          'miss': 1,\n",
      "          'sherman': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'feels': 1,\n",
      "          'simply': 1,\n",
      "          'cinemas': 1,\n",
      "          'greatest': 1,\n",
      "          'hits': 1,\n",
      "          'cheated': 1,\n",
      "          'watered': 1,\n",
      "          'interpretations': 1,\n",
      "          'genre': 1,\n",
      "          'offer': 1,\n",
      "          'notable': 1,\n",
      "          'incredibly': 1,\n",
      "          'stylish': 1,\n",
      "          'costume': 1,\n",
      "          'vickie': 1,\n",
      "          'brinkford': 1,\n",
      "          'production': 1,\n",
      "          'jerry': 1,\n",
      "          'fleming': 1,\n",
      "          'bright': 1,\n",
      "          'vivid': 1,\n",
      "          'instructed': 1,\n",
      "          'palette': 1,\n",
      "          'screen': 1,\n",
      "          'always': 1,\n",
      "          'splashed': 1,\n",
      "          'bits': 1,\n",
      "          'vibrant': 1,\n",
      "          'photography': 1,\n",
      "          'amy': 1,\n",
      "          'vicent': 1,\n",
      "          'beautifully': 1,\n",
      "          'lensed': 1,\n",
      "          'eves': 1,\n",
      "          'bayou': 1,\n",
      "          '1997': 1,\n",
      "          'remarkable': 1,\n",
      "          'job': 1,\n",
      "          'well': 1,\n",
      "          'nshot': 1,\n",
      "          'composition': 1,\n",
      "          'movement': 1,\n",
      "          'consistently': 1,\n",
      "          'impressive': 1,\n",
      "          'nperformances': 1,\n",
      "          'mostly': 1,\n",
      "          'subpar': 1,\n",
      "          'providing': 1,\n",
      "          'moments': 1,\n",
      "          'compared': 1,\n",
      "          'excellent': 1,\n",
      "          'doom': 1,\n",
      "          'generation': 1,\n",
      "          'scream': 1,\n",
      "          '1996': 1,\n",
      "          'biggest': 1,\n",
      "          'due': 1,\n",
      "          'sweet': 1,\n",
      "          'nature': 1,\n",
      "          'character': 1,\n",
      "          'obvious': 1,\n",
      "          'beauty': 1,\n",
      "          'nnone': 1,\n",
      "          'actors': 1,\n",
      "          'set': 1,\n",
      "          'foot': 1,\n",
      "          'inside': 1,\n",
      "          'within': 1,\n",
      "          'last': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'exception': 1,\n",
      "          'actresssinger': 1,\n",
      "          'small': 1,\n",
      "          'cheerleader': 1,\n",
      "          'cast': 1,\n",
      "          'resemble': 1,\n",
      "          'models': 1,\n",
      "          'credited': 1,\n",
      "          'names': 1,\n",
      "          'auto': 1,\n",
      "          'college': 1,\n",
      "          '2': 1,\n",
      "          'soundtrack': 1,\n",
      "          'decent': 1,\n",
      "          'imperial': 1,\n",
      "          'teens': 1,\n",
      "          'catchy': 1,\n",
      "          'yoo': 1,\n",
      "          'hoo': 1,\n",
      "          'makes': 1,\n",
      "          'bigger': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'day': 8,\n",
      "          'film': 7,\n",
      "          'yang': 6,\n",
      "          'us': 6,\n",
      "          'nit': 6,\n",
      "          'new': 5,\n",
      "          'first': 5,\n",
      "          'taiwan': 5,\n",
      "          'wrong': 5,\n",
      "          'jiali': 5,\n",
      "          'nthe': 5,\n",
      "          'young': 4,\n",
      "          'one': 4,\n",
      "          'seems': 4,\n",
      "          'chang': 3,\n",
      "          'others': 3,\n",
      "          'directors': 3,\n",
      "          'long': 3,\n",
      "          'career': 3,\n",
      "          'brother': 3,\n",
      "          'college': 3,\n",
      "          'welei': 3,\n",
      "          'time': 3,\n",
      "          'marriage': 3,\n",
      "          'woman': 3,\n",
      "          'seem': 3,\n",
      "          'may': 3,\n",
      "          'know': 2,\n",
      "          'sylvia': 2,\n",
      "          'teresa': 2,\n",
      "          'hu': 2,\n",
      "          'edward': 2,\n",
      "          'christopher': 2,\n",
      "          'wave': 2,\n",
      "          'longer': 2,\n",
      "          'work': 2,\n",
      "          'like': 2,\n",
      "          'language': 2,\n",
      "          'nthat': 2,\n",
      "          'find': 2,\n",
      "          'modern': 2,\n",
      "          'antonioni': 2,\n",
      "          'feel': 2,\n",
      "          'njiali': 2,\n",
      "          'focus': 2,\n",
      "          'husband': 2,\n",
      "          'married': 2,\n",
      "          'nat': 2,\n",
      "          'jialis': 2,\n",
      "          'nbut': 2,\n",
      "          'clich': 2,\n",
      "          'made': 2,\n",
      "          'never': 2,\n",
      "          'experience': 2,\n",
      "          'much': 2,\n",
      "          'rather': 2,\n",
      "          'man': 2,\n",
      "          'problem': 2,\n",
      "          'marry': 2,\n",
      "          'would': 2,\n",
      "          'controversy': 2,\n",
      "          'enough': 2,\n",
      "          'terribly': 2,\n",
      "          'methods': 2,\n",
      "          'moments': 2,\n",
      "          'two': 2,\n",
      "          'moment': 2,\n",
      "          'nin': 2,\n",
      "          'none': 2,\n",
      "          'education': 1,\n",
      "          'happiness': 1,\n",
      "          'nstarring': 1,\n",
      "          'hsu': 1,\n",
      "          'ming': 1,\n",
      "          'li': 1,\n",
      "          'lieh': 1,\n",
      "          'mao': 1,\n",
      "          'hsuehwei': 1,\n",
      "          'directed': 1,\n",
      "          'written': 1,\n",
      "          'wu': 1,\n",
      "          'nienchen': 1,\n",
      "          'cinematography': 1,\n",
      "          'doyle': 1,\n",
      "          'huikung': 1,\n",
      "          'nevery': 1,\n",
      "          'country': 1,\n",
      "          'eventually': 1,\n",
      "          'nfrance': 1,\n",
      "          'nouvelle': 1,\n",
      "          'vague': 1,\n",
      "          'brazil': 1,\n",
      "          'cinema': 1,\n",
      "          'novo': 1,\n",
      "          'china': 1,\n",
      "          'fifth': 1,\n",
      "          'generation': 1,\n",
      "          'nsome': 1,\n",
      "          'waves': 1,\n",
      "          'take': 1,\n",
      "          'wash': 1,\n",
      "          'cleansing': 1,\n",
      "          'balm': 1,\n",
      "          'discovery': 1,\n",
      "          'ntaiwans': 1,\n",
      "          'came': 1,\n",
      "          '1980s': 1,\n",
      "          'hou': 1,\n",
      "          'hsiaohsien': 1,\n",
      "          'wan': 1,\n",
      "          'jen': 1,\n",
      "          'beachyangs': 1,\n",
      "          'featureis': 1,\n",
      "          'central': 1,\n",
      "          'created': 1,\n",
      "          'taiwanese': 1,\n",
      "          'even': 1,\n",
      "          'attempts': 1,\n",
      "          'speak': 1,\n",
      "          'hesitant': 1,\n",
      "          'faltering': 1,\n",
      "          'nlater': 1,\n",
      "          'works': 1,\n",
      "          'refined': 1,\n",
      "          'techniques': 1,\n",
      "          'explored': 1,\n",
      "          'giving': 1,\n",
      "          'distinctive': 1,\n",
      "          'international': 1,\n",
      "          'presence': 1,\n",
      "          'frustrating': 1,\n",
      "          'document': 1,\n",
      "          'nations': 1,\n",
      "          'attempt': 1,\n",
      "          'voice': 1,\n",
      "          'lack': 1,\n",
      "          'ambition': 1,\n",
      "          'anatomizes': 1,\n",
      "          'urban': 1,\n",
      "          'life': 1,\n",
      "          'manner': 1,\n",
      "          'elaborating': 1,\n",
      "          'alienation': 1,\n",
      "          'westernized': 1,\n",
      "          'whitecollar': 1,\n",
      "          'middleclass': 1,\n",
      "          'lives': 1,\n",
      "          'shaped': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'rolesdedicated': 1,\n",
      "          'men': 1,\n",
      "          'loyal': 1,\n",
      "          'housewivesthat': 1,\n",
      "          'unfulfilling': 1,\n",
      "          'brings': 1,\n",
      "          'compassher': 1,\n",
      "          'friends': 1,\n",
      "          'daysas': 1,\n",
      "          'charts': 1,\n",
      "          'discontents': 1,\n",
      "          'nno': 1,\n",
      "          'happy': 1,\n",
      "          'age': 1,\n",
      "          'urged': 1,\n",
      "          'arranged': 1,\n",
      "          'despite': 1,\n",
      "          'affection': 1,\n",
      "          'another': 1,\n",
      "          'seemed': 1,\n",
      "          'comparison': 1,\n",
      "          'good': 1,\n",
      "          'chose': 1,\n",
      "          'free': 1,\n",
      "          'loved': 1,\n",
      "          'goes': 1,\n",
      "          'dutifully': 1,\n",
      "          'presents': 1,\n",
      "          'becomes': 1,\n",
      "          'absorbed': 1,\n",
      "          'indulges': 1,\n",
      "          'affair': 1,\n",
      "          'coworker': 1,\n",
      "          'feels': 1,\n",
      "          'restless': 1,\n",
      "          'trapped': 1,\n",
      "          'bound': 1,\n",
      "          'choice': 1,\n",
      "          'wise': 1,\n",
      "          'redeems': 1,\n",
      "          'conveying': 1,\n",
      "          'authentic': 1,\n",
      "          'intensity': 1,\n",
      "          'lived': 1,\n",
      "          'pain': 1,\n",
      "          'trite': 1,\n",
      "          'belaboured': 1,\n",
      "          'unfolds': 1,\n",
      "          'awkwardly': 1,\n",
      "          'series': 1,\n",
      "          'flashbacks': 1,\n",
      "          'told': 1,\n",
      "          'luncheon': 1,\n",
      "          'vienna': 1,\n",
      "          'meets': 1,\n",
      "          'brothers': 1,\n",
      "          'old': 1,\n",
      "          'flame': 1,\n",
      "          'concert': 1,\n",
      "          'pianist': 1,\n",
      "          'seen': 1,\n",
      "          'since': 1,\n",
      "          'nboth': 1,\n",
      "          'women': 1,\n",
      "          'sad': 1,\n",
      "          'resigned': 1,\n",
      "          'sadness': 1,\n",
      "          'ntheir': 1,\n",
      "          'circumstances': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'friend': 1,\n",
      "          'suggest': 1,\n",
      "          'choicesmarried': 1,\n",
      "          'chosen': 1,\n",
      "          'path': 1,\n",
      "          'etc': 1,\n",
      "          'choices': 1,\n",
      "          'available': 1,\n",
      "          'inadequate': 1,\n",
      "          'didnt': 1,\n",
      "          'needed': 1,\n",
      "          'alland': 1,\n",
      "          'still': 1,\n",
      "          'unhappy': 1,\n",
      "          'nfor': 1,\n",
      "          'tells': 1,\n",
      "          'cards': 1,\n",
      "          'stacked': 1,\n",
      "          'dice': 1,\n",
      "          'loaded': 1,\n",
      "          'play': 1,\n",
      "          'game': 1,\n",
      "          'house': 1,\n",
      "          'always': 1,\n",
      "          'wins': 1,\n",
      "          'films': 1,\n",
      "          'sympathetic': 1,\n",
      "          'feminist': 1,\n",
      "          'implications': 1,\n",
      "          'presumably': 1,\n",
      "          'reason': 1,\n",
      "          'caused': 1,\n",
      "          'upon': 1,\n",
      "          'release': 1,\n",
      "          'nseen': 1,\n",
      "          'provocative': 1,\n",
      "          'nindeed': 1,\n",
      "          'hard': 1,\n",
      "          'imagine': 1,\n",
      "          'anyone': 1,\n",
      "          'felt': 1,\n",
      "          'passionate': 1,\n",
      "          'generate': 1,\n",
      "          'ambitious': 1,\n",
      "          'innovative': 1,\n",
      "          'also': 1,\n",
      "          'dull': 1,\n",
      "          'nand': 1,\n",
      "          'necessarily': 1,\n",
      "          'rest': 1,\n",
      "          'adopts': 1,\n",
      "          'established': 1,\n",
      "          'years': 1,\n",
      "          'use': 1,\n",
      "          'fumbling': 1,\n",
      "          'uncertain': 1,\n",
      "          'undisciplined': 1,\n",
      "          'nnor': 1,\n",
      "          'bring': 1,\n",
      "          'anything': 1,\n",
      "          'newother': 1,\n",
      "          'localeto': 1,\n",
      "          'material': 1,\n",
      "          'nthere': 1,\n",
      "          'takes': 1,\n",
      "          'emotional': 1,\n",
      "          'richness': 1,\n",
      "          'strives': 1,\n",
      "          'forin': 1,\n",
      "          'couples': 1,\n",
      "          'kiss': 1,\n",
      "          'awkward': 1,\n",
      "          'meeting': 1,\n",
      "          'husbands': 1,\n",
      "          'mistressbut': 1,\n",
      "          'brief': 1,\n",
      "          'ntoo': 1,\n",
      "          'often': 1,\n",
      "          'devotes': 1,\n",
      "          'needless': 1,\n",
      "          'mundane': 1,\n",
      "          'scenesgrocery': 1,\n",
      "          'shopping': 1,\n",
      "          'flowerarrangingin': 1,\n",
      "          'nothing': 1,\n",
      "          'happens': 1,\n",
      "          'little': 1,\n",
      "          'said': 1,\n",
      "          'emotion': 1,\n",
      "          'imparted': 1,\n",
      "          'nperhaps': 1,\n",
      "          'content': 1,\n",
      "          'reflective': 1,\n",
      "          'inward': 1,\n",
      "          'leaving': 1,\n",
      "          'guess': 1,\n",
      "          'thoughts': 1,\n",
      "          'feelings': 1,\n",
      "          'might': 1,\n",
      "          'ambiguous': 1,\n",
      "          'suggestive': 1,\n",
      "          'insinuating': 1,\n",
      "          'disaffected': 1,\n",
      "          'companions': 1,\n",
      "          'brood': 1,\n",
      "          'silence': 1,\n",
      "          'talk': 1,\n",
      "          'problems': 1,\n",
      "          'length': 1,\n",
      "          'detail': 1,\n",
      "          'redundantly': 1,\n",
      "          'eliminate': 1,\n",
      "          'subtleties': 1,\n",
      "          'hours': 1,\n",
      "          'fortyfive': 1,\n",
      "          'minutes': 1,\n",
      "          'exorbitantly': 1,\n",
      "          'indulgently': 1,\n",
      "          'longwinded': 1,\n",
      "          'nconsider': 1,\n",
      "          'defining': 1,\n",
      "          'titular': 1,\n",
      "          'beach': 1,\n",
      "          'thrust': 1,\n",
      "          'whole': 1,\n",
      "          'explains': 1,\n",
      "          'easily': 1,\n",
      "          'think': 1,\n",
      "          'means': 1,\n",
      "          'walks': 1,\n",
      "          'away': 1,\n",
      "          'particular': 1,\n",
      "          'situation': 1,\n",
      "          'neven': 1,\n",
      "          'characters': 1,\n",
      "          'explain': 1,\n",
      "          'verbally': 1,\n",
      "          'case': 1,\n",
      "          'missed': 1,\n",
      "          'point': 1,\n",
      "          'nneedless': 1,\n",
      "          'devoted': 1,\n",
      "          'expressing': 1,\n",
      "          'remained': 1,\n",
      "          'unexpressed': 1,\n",
      "          'throughout': 1,\n",
      "          'look': 1,\n",
      "          'tedious': 1,\n",
      "          'drawnout': 1,\n",
      "          'narrative': 1,\n",
      "          'feature': 1,\n",
      "          'shot': 1,\n",
      "          'doyleat': 1,\n",
      "          'least': 1,\n",
      "          'name': 1,\n",
      "          'creditswho': 1,\n",
      "          'rightly': 1,\n",
      "          'regarded': 1,\n",
      "          'worlds': 1,\n",
      "          'leading': 1,\n",
      "          'cinematographers': 1,\n",
      "          'freewheeling': 1,\n",
      "          'expressionism': 1,\n",
      "          'chen': 1,\n",
      "          'kaige': 1,\n",
      "          'wong': 1,\n",
      "          'karwai': 1,\n",
      "          'incapable': 1,\n",
      "          'fashioning': 1,\n",
      "          'boring': 1,\n",
      "          'image': 1,\n",
      "          'nyou': 1,\n",
      "          'watching': 1,\n",
      "          'due': 1,\n",
      "          'either': 1,\n",
      "          'doyles': 1,\n",
      "          'inexperience': 1,\n",
      "          'yangs': 1,\n",
      "          'humdrum': 1,\n",
      "          'direction': 1,\n",
      "          'almost': 1,\n",
      "          'perverse': 1,\n",
      "          'insistence': 1,\n",
      "          'making': 1,\n",
      "          'physical': 1,\n",
      "          'environment': 1,\n",
      "          'drab': 1,\n",
      "          'banal': 1,\n",
      "          'possible': 1,\n",
      "          'scrutinizing': 1,\n",
      "          'decay': 1,\n",
      "          'manages': 1,\n",
      "          'capture': 1,\n",
      "          'ennui': 1,\n",
      "          'damage': 1,\n",
      "          'heartbreak': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'one': 8,\n",
      "          'first': 6,\n",
      "          'still': 6,\n",
      "          'film': 6,\n",
      "          'know': 5,\n",
      "          'ni': 4,\n",
      "          'nthe': 4,\n",
      "          'julie': 4,\n",
      "          'time': 4,\n",
      "          'last': 3,\n",
      "          'two': 3,\n",
      "          'even': 3,\n",
      "          'guess': 3,\n",
      "          'kind': 3,\n",
      "          'trying': 3,\n",
      "          'booth': 3,\n",
      "          'really': 3,\n",
      "          'summer': 2,\n",
      "          'nif': 2,\n",
      "          'five': 2,\n",
      "          'said': 2,\n",
      "          'hey': 2,\n",
      "          'minute': 2,\n",
      "          'hold': 2,\n",
      "          'fact': 2,\n",
      "          'slasher': 2,\n",
      "          'good': 2,\n",
      "          'least': 2,\n",
      "          'didnt': 2,\n",
      "          'like': 2,\n",
      "          'sequel': 2,\n",
      "          'hard': 2,\n",
      "          'start': 2,\n",
      "          'setting': 2,\n",
      "          'reason': 2,\n",
      "          'fisherman': 2,\n",
      "          'go': 2,\n",
      "          'get': 2,\n",
      "          'nin': 2,\n",
      "          'scene': 2,\n",
      "          'slicker': 2,\n",
      "          'tries': 2,\n",
      "          'friends': 2,\n",
      "          'thing': 2,\n",
      "          'minutes': 2,\n",
      "          'another': 2,\n",
      "          'characters': 2,\n",
      "          'best': 2,\n",
      "          'films': 2,\n",
      "          'cool': 2,\n",
      "          'jeffrey': 2,\n",
      "          'kevin': 2,\n",
      "          'williamson': 2,\n",
      "          'scream': 2,\n",
      "          'horror': 2,\n",
      "          'think': 2,\n",
      "          'movies': 2,\n",
      "          'long': 1,\n",
      "          'list': 1,\n",
      "          'things': 1,\n",
      "          'wrong': 1,\n",
      "          'title': 1,\n",
      "          'nthink': 1,\n",
      "          'second': 1,\n",
      "          'called': 1,\n",
      "          'wouldnt': 1,\n",
      "          'next': 1,\n",
      "          'summers': 1,\n",
      "          'ago': 1,\n",
      "          'anyone': 1,\n",
      "          'working': 1,\n",
      "          'q': 1,\n",
      "          'ngreater': 1,\n",
      "          'would': 1,\n",
      "          'thought': 1,\n",
      "          'logically': 1,\n",
      "          'nwait': 1,\n",
      "          'nbut': 1,\n",
      "          'alas': 1,\n",
      "          'people': 1,\n",
      "          'behind': 1,\n",
      "          'obviously': 1,\n",
      "          'idiots': 1,\n",
      "          'wont': 1,\n",
      "          'nwhat': 1,\n",
      "          'pretty': 1,\n",
      "          'bad': 1,\n",
      "          'hands': 1,\n",
      "          'teenage': 1,\n",
      "          'flick': 1,\n",
      "          'im': 1,\n",
      "          'critics': 1,\n",
      "          'actually': 1,\n",
      "          'liked': 1,\n",
      "          'original': 1,\n",
      "          'emphasis': 1,\n",
      "          'nit': 1,\n",
      "          'wasnt': 1,\n",
      "          'great': 1,\n",
      "          'anything': 1,\n",
      "          'maybe': 1,\n",
      "          'necessarily': 1,\n",
      "          'glancing': 1,\n",
      "          'watch': 1,\n",
      "          'every': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'figure': 1,\n",
      "          'nfirst': 1,\n",
      "          'offers': 1,\n",
      "          'rational': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'bahamas': 1,\n",
      "          'producers': 1,\n",
      "          'wanted': 1,\n",
      "          'seaside': 1,\n",
      "          'nexactly': 1,\n",
      "          'want': 1,\n",
      "          'trouble': 1,\n",
      "          'faking': 1,\n",
      "          'radio': 1,\n",
      "          'contest': 1,\n",
      "          'james': 1,\n",
      "          'jennifer': 1,\n",
      "          'love': 1,\n",
      "          'hewitt': 1,\n",
      "          'survivors': 1,\n",
      "          'new': 1,\n",
      "          'college': 1,\n",
      "          'buddies': 1,\n",
      "          'islands': 1,\n",
      "          'hacks': 1,\n",
      "          'suffers': 1,\n",
      "          'logic': 1,\n",
      "          'way': 1,\n",
      "          'tanning': 1,\n",
      "          'deserted': 1,\n",
      "          'gym': 1,\n",
      "          'hooked': 1,\n",
      "          'comes': 1,\n",
      "          'seals': 1,\n",
      "          'damsel': 1,\n",
      "          'distress': 1,\n",
      "          'cant': 1,\n",
      "          'matter': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'shes': 1,\n",
      "          'going': 1,\n",
      "          'slowly': 1,\n",
      "          'fry': 1,\n",
      "          'death': 1,\n",
      "          'screams': 1,\n",
      "          'help': 1,\n",
      "          'come': 1,\n",
      "          'rescue': 1,\n",
      "          'nnow': 1,\n",
      "          'fine': 1,\n",
      "          'dandy': 1,\n",
      "          'except': 1,\n",
      "          'instead': 1,\n",
      "          'spending': 1,\n",
      "          'bust': 1,\n",
      "          'open': 1,\n",
      "          'turn': 1,\n",
      "          'freakin': 1,\n",
      "          'significant': 1,\n",
      "          'decapitated': 1,\n",
      "          'man': 1,\n",
      "          'says': 1,\n",
      "          'dont': 1,\n",
      "          'tell': 1,\n",
      "          'anybody': 1,\n",
      "          'rained': 1,\n",
      "          'whole': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'ive': 1,\n",
      "          'terrorized': 1,\n",
      "          'hook': 1,\n",
      "          'wielding': 1,\n",
      "          'sociopath': 1,\n",
      "          'gruesomely': 1,\n",
      "          'slaughtered': 1,\n",
      "          'ill': 1,\n",
      "          'crack': 1,\n",
      "          'jokes': 1,\n",
      "          'anyway': 1,\n",
      "          'nafter': 1,\n",
      "          'script': 1,\n",
      "          'saving': 1,\n",
      "          'graces': 1,\n",
      "          'wellexecuted': 1,\n",
      "          'suspense': 1,\n",
      "          'sequences': 1,\n",
      "          'cameo': 1,\n",
      "          'reanimator': 1,\n",
      "          'combs': 1,\n",
      "          'nhe': 1,\n",
      "          'brings': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'life': 1,\n",
      "          'otherwise': 1,\n",
      "          'limp': 1,\n",
      "          'nway': 1,\n",
      "          'hunch': 1,\n",
      "          'fizzles': 1,\n",
      "          'kept': 1,\n",
      "          'head': 1,\n",
      "          'water': 1,\n",
      "          'recent': 1,\n",
      "          'absence': 1,\n",
      "          'writer': 1,\n",
      "          'nwith': 1,\n",
      "          'displayed': 1,\n",
      "          'real': 1,\n",
      "          'talent': 1,\n",
      "          'screenwriter': 1,\n",
      "          'nhis': 1,\n",
      "          'ear': 1,\n",
      "          'dialogue': 1,\n",
      "          'terrific': 1,\n",
      "          'endings': 1,\n",
      "          'puts': 1,\n",
      "          'make': 1,\n",
      "          'standout': 1,\n",
      "          'rest': 1,\n",
      "          'writers': 1,\n",
      "          'suffered': 1,\n",
      "          'board': 1,\n",
      "          'atmosphere': 1,\n",
      "          'around': 1,\n",
      "          'writing': 1,\n",
      "          'much': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'doesnt': 1,\n",
      "          'hacky': 1,\n",
      "          'ending': 1,\n",
      "          'may': 1,\n",
      "          'consider': 1,\n",
      "          'spoiler': 1,\n",
      "          'seen': 1,\n",
      "          'whatsoever': 1,\n",
      "          'able': 1,\n",
      "          'identity': 1,\n",
      "          'madman': 1,\n",
      "          'within': 1,\n",
      "          'twenty': 1,\n",
      "          'killers': 1,\n",
      "          'family': 1,\n",
      "          'member': 1,\n",
      "          'someone': 1,\n",
      "          'audience': 1,\n",
      "          'put': 1,\n",
      "          'ended': 1,\n",
      "          'killer': 1,\n",
      "          'back': 1,\n",
      "          'ncliffhanger': 1,\n",
      "          'grandma': 1,\n",
      "          'nall': 1,\n",
      "          'successful': 1,\n",
      "          'fails': 1,\n",
      "          'attempt': 1,\n",
      "          'mean': 1,\n",
      "          'okay': 1,\n",
      "          'ripoff': 1,\n",
      "          'copying': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'film': 6,\n",
      "          'school': 6,\n",
      "          'original': 5,\n",
      "          'time': 5,\n",
      "          'doesnt': 4,\n",
      "          'high': 4,\n",
      "          'carrie': 4,\n",
      "          'theres': 3,\n",
      "          'story': 3,\n",
      "          'mother': 3,\n",
      "          'none': 3,\n",
      "          'sue': 3,\n",
      "          'one': 3,\n",
      "          'nthere': 2,\n",
      "          'need': 2,\n",
      "          'even': 2,\n",
      "          'word': 2,\n",
      "          'minor': 2,\n",
      "          'changes': 2,\n",
      "          'nthis': 2,\n",
      "          'nrachel': 2,\n",
      "          'beginning': 2,\n",
      "          'around': 2,\n",
      "          'mental': 2,\n",
      "          'problems': 2,\n",
      "          'points': 2,\n",
      "          'casting': 2,\n",
      "          'counselor': 2,\n",
      "          'rachel': 2,\n",
      "          'history': 2,\n",
      "          'disease': 2,\n",
      "          'powers': 2,\n",
      "          'red': 2,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'sun': 1,\n",
      "          'phrase': 1,\n",
      "          'often': 1,\n",
      "          'used': 1,\n",
      "          'speaker': 1,\n",
      "          'actually': 1,\n",
      "          'means': 1,\n",
      "          'lets': 1,\n",
      "          'find': 1,\n",
      "          'something': 1,\n",
      "          'copy': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'completely': 1,\n",
      "          'ideas': 1,\n",
      "          'neven': 1,\n",
      "          'earthshattering': 1,\n",
      "          'concepts': 1,\n",
      "          'built': 1,\n",
      "          'upon': 1,\n",
      "          'vast': 1,\n",
      "          'body': 1,\n",
      "          'human': 1,\n",
      "          'experience': 1,\n",
      "          'reinvent': 1,\n",
      "          'wheel': 1,\n",
      "          'nrecently': 1,\n",
      "          'seems': 1,\n",
      "          'hollywood': 1,\n",
      "          'feel': 1,\n",
      "          'rewrite': 1,\n",
      "          'script': 1,\n",
      "          'nmy': 1,\n",
      "          'understanding': 1,\n",
      "          'sequel': 1,\n",
      "          'continuation': 1,\n",
      "          'industry': 1,\n",
      "          'defined': 1,\n",
      "          'mean': 1,\n",
      "          'reshooting': 1,\n",
      "          'nhave': 1,\n",
      "          'overwhelming': 1,\n",
      "          'desire': 1,\n",
      "          'see': 1,\n",
      "          'inferior': 1,\n",
      "          'version': 1,\n",
      "          'brian': 1,\n",
      "          'depalmas': 1,\n",
      "          'adaptation': 1,\n",
      "          'steven': 1,\n",
      "          'king': 1,\n",
      "          'novel': 1,\n",
      "          'dream': 1,\n",
      "          'come': 1,\n",
      "          'true': 1,\n",
      "          'emily': 1,\n",
      "          'bergl': 1,\n",
      "          'outcast': 1,\n",
      "          'notice': 1,\n",
      "          'weird': 1,\n",
      "          'things': 1,\n",
      "          'happening': 1,\n",
      "          'ndoors': 1,\n",
      "          'slam': 1,\n",
      "          'shut': 1,\n",
      "          'nglass': 1,\n",
      "          'globes': 1,\n",
      "          'blow': 1,\n",
      "          'nher': 1,\n",
      "          'severe': 1,\n",
      "          'father': 1,\n",
      "          'absent': 1,\n",
      "          'na': 1,\n",
      "          'popular': 1,\n",
      "          'boy': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'asks': 1,\n",
      "          'incrowd': 1,\n",
      "          'conspires': 1,\n",
      "          'embarrass': 1,\n",
      "          'public': 1,\n",
      "          'event': 1,\n",
      "          'nany': 1,\n",
      "          'sound': 1,\n",
      "          'familiar': 1,\n",
      "          'nonce': 1,\n",
      "          'audience': 1,\n",
      "          'catches': 1,\n",
      "          'little': 1,\n",
      "          'wait': 1,\n",
      "          'inevitable': 1,\n",
      "          'ending': 1,\n",
      "          'effects': 1,\n",
      "          'bit': 1,\n",
      "          'better': 1,\n",
      "          'work': 1,\n",
      "          'nearly': 1,\n",
      "          'well': 1,\n",
      "          'couple': 1,\n",
      "          'plot': 1,\n",
      "          'differences': 1,\n",
      "          'lives': 1,\n",
      "          'foster': 1,\n",
      "          'parents': 1,\n",
      "          'institutionalized': 1,\n",
      "          'boys': 1,\n",
      "          'portrayed': 1,\n",
      "          'evil': 1,\n",
      "          'nthey': 1,\n",
      "          'keep': 1,\n",
      "          'score': 1,\n",
      "          'scoring': 1,\n",
      "          'given': 1,\n",
      "          'conquest': 1,\n",
      "          'nand': 1,\n",
      "          'uh': 1,\n",
      "          'must': 1,\n",
      "          'stand': 1,\n",
      "          'nice': 1,\n",
      "          'touch': 1,\n",
      "          'amy': 1,\n",
      "          'irving': 1,\n",
      "          'snell': 1,\n",
      "          'nover': 1,\n",
      "          '20': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'girl': 1,\n",
      "          'tried': 1,\n",
      "          'help': 1,\n",
      "          'nnow': 1,\n",
      "          'befriends': 1,\n",
      "          'characters': 1,\n",
      "          'potential': 1,\n",
      "          'squandered': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'nafter': 1,\n",
      "          'slaughter': 1,\n",
      "          'kills': 1,\n",
      "          'classmates': 1,\n",
      "          'driven': 1,\n",
      "          'mad': 1,\n",
      "          'spends': 1,\n",
      "          'institution': 1,\n",
      "          'rachels': 1,\n",
      "          'nstill': 1,\n",
      "          'living': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'woman': 1,\n",
      "          'wellknown': 1,\n",
      "          'hired': 1,\n",
      "          'nsue': 1,\n",
      "          'tells': 1,\n",
      "          'telekinesis': 1,\n",
      "          'genetic': 1,\n",
      "          'may': 1,\n",
      "          'idea': 1,\n",
      "          'reasoning': 1,\n",
      "          'behind': 1,\n",
      "          'describing': 1,\n",
      "          'psychic': 1,\n",
      "          'never': 1,\n",
      "          'explained': 1,\n",
      "          'nsues': 1,\n",
      "          'eventual': 1,\n",
      "          'fate': 1,\n",
      "          'admission': 1,\n",
      "          'director': 1,\n",
      "          'katt': 1,\n",
      "          'shea': 1,\n",
      "          'writer': 1,\n",
      "          'rafael': 1,\n",
      "          'moreu': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'couldnt': 1,\n",
      "          'figure': 1,\n",
      "          'nblink': 1,\n",
      "          'youll': 1,\n",
      "          'miss': 1,\n",
      "          'nsome': 1,\n",
      "          'events': 1,\n",
      "          'filmed': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'rationale': 1,\n",
      "          'unknown': 1,\n",
      "          'nit': 1,\n",
      "          'add': 1,\n",
      "          'anything': 1,\n",
      "          'choice': 1,\n",
      "          'scenes': 1,\n",
      "          'appears': 1,\n",
      "          'somewhat': 1,\n",
      "          'random': 1,\n",
      "          'n': 1,\n",
      "          'rage': 1,\n",
      "          'retains': 1,\n",
      "          'trappings': 1,\n",
      "          'without': 1,\n",
      "          'meaning': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'color': 1,\n",
      "          'motif': 1,\n",
      "          'connected': 1,\n",
      "          'carries': 1,\n",
      "          'onset': 1,\n",
      "          'began': 1,\n",
      "          'menstruating': 1,\n",
      "          'nhere': 1,\n",
      "          'abundance': 1,\n",
      "          'apparent': 1,\n",
      "          'purpose': 1,\n",
      "          'jocks': 1,\n",
      "          'cheerleaders': 1,\n",
      "          'villains': 1,\n",
      "          'wear': 1,\n",
      "          'thin': 1,\n",
      "          'might': 1,\n",
      "          'lead': 1,\n",
      "          'suspect': 1,\n",
      "          'filmmakers': 1,\n",
      "          'unpopular': 1,\n",
      "          'teenage': 1,\n",
      "          'films': 1,\n",
      "          'extended': 1,\n",
      "          'cinematic': 1,\n",
      "          'revenge': 1,\n",
      "          'nerds': 1,\n",
      "          'biggest': 1,\n",
      "          'mistake': 1,\n",
      "          'makes': 1,\n",
      "          'including': 1,\n",
      "          'clips': 1,\n",
      "          'nseeing': 1,\n",
      "          'sissy': 1,\n",
      "          'spacek': 1,\n",
      "          'screen': 1,\n",
      "          'quality': 1,\n",
      "          'flaws': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 4,\n",
      "          'nthe': 4,\n",
      "          'jazz': 3,\n",
      "          'mack': 3,\n",
      "          'race': 3,\n",
      "          'wendys': 3,\n",
      "          'may': 3,\n",
      "          'story': 3,\n",
      "          'two': 3,\n",
      "          'script': 3,\n",
      "          'away': 3,\n",
      "          'samantha': 2,\n",
      "          'press': 2,\n",
      "          'singer': 2,\n",
      "          'hugo': 2,\n",
      "          'criminal': 2,\n",
      "          'rock': 2,\n",
      "          'cops': 2,\n",
      "          'sweeney': 2,\n",
      "          'john': 2,\n",
      "          'flaus': 2,\n",
      "          'corruption': 2,\n",
      "          'elmaloglou': 2,\n",
      "          'night': 2,\n",
      "          'love': 2,\n",
      "          'main': 2,\n",
      "          'problem': 2,\n",
      "          'really': 2,\n",
      "          'work': 2,\n",
      "          'cast': 2,\n",
      "          'sexy': 2,\n",
      "          'hell': 2,\n",
      "          'rest': 2,\n",
      "          'ultimately': 2,\n",
      "          'scenes': 2,\n",
      "          'doubt': 2,\n",
      "          'isnt': 2,\n",
      "          'either': 2,\n",
      "          'idea': 2,\n",
      "          'could': 2,\n",
      "          'seems': 2,\n",
      "          'good': 2,\n",
      "          'least': 2,\n",
      "          'final': 2,\n",
      "          'deep': 2,\n",
      "          'like': 2,\n",
      "          'doesnt': 2,\n",
      "          'reason': 2,\n",
      "          'nit': 2,\n",
      "          'plot': 1,\n",
      "          'outline': 1,\n",
      "          'wendy': 1,\n",
      "          'loves': 1,\n",
      "          'wan': 1,\n",
      "          'na': 1,\n",
      "          'whos': 1,\n",
      "          'planning': 1,\n",
      "          'bank': 1,\n",
      "          'heist': 1,\n",
      "          'nmack': 1,\n",
      "          'also': 1,\n",
      "          'tailed': 1,\n",
      "          'couple': 1,\n",
      "          'inexperienced': 1,\n",
      "          'rookie': 1,\n",
      "          'dominic': 1,\n",
      "          'worn': 1,\n",
      "          'veteran': 1,\n",
      "          'frequents': 1,\n",
      "          'club': 1,\n",
      "          'ntheyre': 1,\n",
      "          'tailing': 1,\n",
      "          'audiotape': 1,\n",
      "          'show': 1,\n",
      "          'evidence': 1,\n",
      "          'governmental': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'sexually': 1,\n",
      "          'awakener': 1,\n",
      "          'fifteen': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'sister': 1,\n",
      "          'rebecca': 1,\n",
      "          'moved': 1,\n",
      "          'secretly': 1,\n",
      "          'watching': 1,\n",
      "          'late': 1,\n",
      "          'trysts': 1,\n",
      "          'much': 1,\n",
      "          'zaniness': 1,\n",
      "          'ensues': 1,\n",
      "          'review': 1,\n",
      "          'first': 1,\n",
      "          '2': 1,\n",
      "          'rood': 1,\n",
      "          'star': 1,\n",
      "          'actor': 1,\n",
      "          'conversions': 1,\n",
      "          'filmdom': 1,\n",
      "          'ever': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'trying': 1,\n",
      "          'violent': 1,\n",
      "          'falls': 1,\n",
      "          'thinking': 1,\n",
      "          'category': 1,\n",
      "          'takes': 1,\n",
      "          '98': 1,\n",
      "          'nbut': 1,\n",
      "          'hes': 1,\n",
      "          'wellintentioned': 1,\n",
      "          'average': 1,\n",
      "          'aussie': 1,\n",
      "          'thriller': 1,\n",
      "          'nleads': 1,\n",
      "          'wooden': 1,\n",
      "          'dull': 1,\n",
      "          'hampered': 1,\n",
      "          'unfortunate': 1,\n",
      "          'attempts': 1,\n",
      "          'dialogue': 1,\n",
      "          'early': 1,\n",
      "          'nthough': 1,\n",
      "          'manage': 1,\n",
      "          'heat': 1,\n",
      "          'later': 1,\n",
      "          'helped': 1,\n",
      "          'keeping': 1,\n",
      "          'mouths': 1,\n",
      "          'shut': 1,\n",
      "          'film': 1,\n",
      "          'suffers': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'shifts': 1,\n",
      "          'back': 1,\n",
      "          'nwhich': 1,\n",
      "          'unfortunately': 1,\n",
      "          'great': 1,\n",
      "          'shakes': 1,\n",
      "          'second': 1,\n",
      "          'part': 1,\n",
      "          'concerning': 1,\n",
      "          'political': 1,\n",
      "          'elusive': 1,\n",
      "          'tape': 1,\n",
      "          'incredibly': 1,\n",
      "          'muddled': 1,\n",
      "          'nat': 1,\n",
      "          'many': 1,\n",
      "          'points': 1,\n",
      "          'movie': 1,\n",
      "          'going': 1,\n",
      "          'situation': 1,\n",
      "          'didnt': 1,\n",
      "          'improve': 1,\n",
      "          'repeated': 1,\n",
      "          'viewing': 1,\n",
      "          'nthere': 1,\n",
      "          'films': 1,\n",
      "          'achilles': 1,\n",
      "          'heel': 1,\n",
      "          'nas': 1,\n",
      "          'mixed': 1,\n",
      "          'bag': 1,\n",
      "          'njohn': 1,\n",
      "          'australias': 1,\n",
      "          'criminally': 1,\n",
      "          'underused': 1,\n",
      "          'actors': 1,\n",
      "          'top': 1,\n",
      "          'form': 1,\n",
      "          'withering': 1,\n",
      "          'alcoholic': 1,\n",
      "          'fan': 1,\n",
      "          'cop': 1,\n",
      "          'sold': 1,\n",
      "          'highest': 1,\n",
      "          'bidder': 1,\n",
      "          'nalthough': 1,\n",
      "          'falters': 1,\n",
      "          'point': 1,\n",
      "          'calls': 1,\n",
      "          'get': 1,\n",
      "          'stage': 1,\n",
      "          'deliver': 1,\n",
      "          'drunken': 1,\n",
      "          'beat': 1,\n",
      "          'sermon': 1,\n",
      "          'believe': 1,\n",
      "          'way': 1,\n",
      "          'written': 1,\n",
      "          'pulled': 1,\n",
      "          'ndominic': 1,\n",
      "          'fine': 1,\n",
      "          'though': 1,\n",
      "          'uneasy': 1,\n",
      "          'front': 1,\n",
      "          'lens': 1,\n",
      "          'given': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'npre': 1,\n",
      "          'home': 1,\n",
      "          'pretty': 1,\n",
      "          'inquisitive': 1,\n",
      "          'jojo': 1,\n",
      "          'character': 1,\n",
      "          'extraneous': 1,\n",
      "          'well': 1,\n",
      "          'ni': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'impressive': 1,\n",
      "          'qualities': 1,\n",
      "          'visual': 1,\n",
      "          'element': 1,\n",
      "          'ncinematographers': 1,\n",
      "          'mark': 1,\n",
      "          'gilfedder': 1,\n",
      "          'peter': 1,\n",
      "          'zakharov': 1,\n",
      "          'achieved': 1,\n",
      "          'almost': 1,\n",
      "          'impossible': 1,\n",
      "          'making': 1,\n",
      "          'melbourne': 1,\n",
      "          'look': 1,\n",
      "          'sweat': 1,\n",
      "          'drenched': 1,\n",
      "          'tropic': 1,\n",
      "          'city': 1,\n",
      "          'akin': 1,\n",
      "          'turning': 1,\n",
      "          'london': 1,\n",
      "          'san': 1,\n",
      "          'paolo': 1,\n",
      "          'bar': 1,\n",
      "          'oppressive': 1,\n",
      "          'red': 1,\n",
      "          'patrons': 1,\n",
      "          'baked': 1,\n",
      "          'drink': 1,\n",
      "          'outside': 1,\n",
      "          'hazy': 1,\n",
      "          'orange': 1,\n",
      "          'day': 1,\n",
      "          'cool': 1,\n",
      "          'blue': 1,\n",
      "          'nif': 1,\n",
      "          'deborah': 1,\n",
      "          'parsons': 1,\n",
      "          'supported': 1,\n",
      "          'better': 1,\n",
      "          'nhaving': 1,\n",
      "          'directors': 1,\n",
      "          'colin': 1,\n",
      "          'south': 1,\n",
      "          'tatoulis': 1,\n",
      "          'help': 1,\n",
      "          'glaring': 1,\n",
      "          'example': 1,\n",
      "          'retributionfight': 1,\n",
      "          'scene': 1,\n",
      "          'camera': 1,\n",
      "          'pulls': 1,\n",
      "          'onscreen': 1,\n",
      "          'action': 1,\n",
      "          'importantly': 1,\n",
      "          'pull': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'stays': 1,\n",
      "          'static': 1,\n",
      "          'fight': 1,\n",
      "          'happens': 1,\n",
      "          'distance': 1,\n",
      "          'bad': 1,\n",
      "          'direction': 1,\n",
      "          'nand': 1,\n",
      "          'sums': 1,\n",
      "          'tries': 1,\n",
      "          'want': 1,\n",
      "          'lacking': 1,\n",
      "          'talent': 1,\n",
      "          'behind': 1,\n",
      "          'needs': 1,\n",
      "          'succeed': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'patch': 8,\n",
      "          'film': 5,\n",
      "          'school': 5,\n",
      "          'adams': 4,\n",
      "          'medical': 4,\n",
      "          'end': 3,\n",
      "          'williams': 3,\n",
      "          'court': 3,\n",
      "          'people': 3,\n",
      "          'much': 3,\n",
      "          'takes': 3,\n",
      "          'movie': 3,\n",
      "          'scene': 2,\n",
      "          'robin': 2,\n",
      "          'captain': 2,\n",
      "          'room': 2,\n",
      "          'near': 2,\n",
      "          'nits': 2,\n",
      "          'finds': 2,\n",
      "          'helping': 2,\n",
      "          'hospital': 2,\n",
      "          'scenes': 2,\n",
      "          'start': 2,\n",
      "          'dean': 2,\n",
      "          'clinic': 2,\n",
      "          'like': 2,\n",
      "          '1989s': 1,\n",
      "          'dead': 1,\n",
      "          'poets': 1,\n",
      "          'society': 1,\n",
      "          'english': 1,\n",
      "          'students': 1,\n",
      "          'stand': 1,\n",
      "          'desk': 1,\n",
      "          'say': 1,\n",
      "          'gets': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'robins': 1,\n",
      "          'newest': 1,\n",
      "          'doesnt': 1,\n",
      "          'anywhere': 1,\n",
      "          'impact': 1,\n",
      "          'nfrom': 1,\n",
      "          'surface': 1,\n",
      "          'looks': 1,\n",
      "          'promising': 1,\n",
      "          'story': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'meaning': 1,\n",
      "          'life': 1,\n",
      "          'sick': 1,\n",
      "          'nwhen': 1,\n",
      "          'opens': 1,\n",
      "          'find': 1,\n",
      "          'depressed': 1,\n",
      "          'suicidal': 1,\n",
      "          'checking': 1,\n",
      "          'mental': 1,\n",
      "          'nin': 1,\n",
      "          'strongly': 1,\n",
      "          'reminiscent': 1,\n",
      "          'one': 1,\n",
      "          'flew': 1,\n",
      "          'cuckoos': 1,\n",
      "          'nest': 1,\n",
      "          'ends': 1,\n",
      "          'patients': 1,\n",
      "          'problems': 1,\n",
      "          'loves': 1,\n",
      "          'working': 1,\n",
      "          'nso': 1,\n",
      "          'checks': 1,\n",
      "          'heads': 1,\n",
      "          'straight': 1,\n",
      "          'nright': 1,\n",
      "          'uses': 1,\n",
      "          'comedy': 1,\n",
      "          'help': 1,\n",
      "          'make': 1,\n",
      "          'patient': 1,\n",
      "          'comfortable': 1,\n",
      "          'nhe': 1,\n",
      "          'continuously': 1,\n",
      "          'breaks': 1,\n",
      "          'tradition': 1,\n",
      "          'makes': 1,\n",
      "          'angry': 1,\n",
      "          'nshortly': 1,\n",
      "          'joining': 1,\n",
      "          'meets': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'carin': 1,\n",
      "          'monica': 1,\n",
      "          'potter': 1,\n",
      "          'nthey': 1,\n",
      "          'along': 1,\n",
      "          'patchs': 1,\n",
      "          'dork': 1,\n",
      "          'friend': 1,\n",
      "          'truman': 1,\n",
      "          'daniel': 1,\n",
      "          'london': 1,\n",
      "          'uninsured': 1,\n",
      "          'nonce': 1,\n",
      "          'catches': 1,\n",
      "          'wind': 1,\n",
      "          'tells': 1,\n",
      "          'cant': 1,\n",
      "          'graduate': 1,\n",
      "          'kicks': 1,\n",
      "          'npatch': 1,\n",
      "          'true': 1,\n",
      "          'american': 1,\n",
      "          'would': 1,\n",
      "          'climatic': 1,\n",
      "          'battle': 1,\n",
      "          'place': 1,\n",
      "          'whether': 1,\n",
      "          'become': 1,\n",
      "          'real': 1,\n",
      "          'doctor': 1,\n",
      "          'ni': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'potential': 1,\n",
      "          'completely': 1,\n",
      "          'blow': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'series': 1,\n",
      "          'short': 1,\n",
      "          'sketches': 1,\n",
      "          'rather': 1,\n",
      "          'fulllength': 1,\n",
      "          'nconsidering': 1,\n",
      "          'runs': 1,\n",
      "          'almost': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'long': 1,\n",
      "          'light': 1,\n",
      "          'could': 1,\n",
      "          'flowed': 1,\n",
      "          'smoother': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'fact': 1,\n",
      "          'serious': 1,\n",
      "          'manages': 1,\n",
      "          'cover': 1,\n",
      "          'cliches': 1,\n",
      "          'bad': 1,\n",
      "          'melodrama': 1,\n",
      "          'nrobin': 1,\n",
      "          'saves': 1,\n",
      "          'abysmal': 1,\n",
      "          'several': 1,\n",
      "          'comic': 1,\n",
      "          'elevate': 1,\n",
      "          'entertaining': 1,\n",
      "          'worthwhile': 1,\n",
      "          'levels': 1,\n",
      "          'nbut': 1,\n",
      "          'moments': 1,\n",
      "          'rare': 1,\n",
      "          'barely': 1,\n",
      "          'average': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'blonde': 8,\n",
      "          'real': 6,\n",
      "          'soap': 4,\n",
      "          'actor': 3,\n",
      "          'bob': 3,\n",
      "          'another': 3,\n",
      "          'face': 2,\n",
      "          'nas': 2,\n",
      "          'woman': 2,\n",
      "          'head': 2,\n",
      "          'nif': 2,\n",
      "          'njoe': 2,\n",
      "          'relationship': 2,\n",
      "          'mary': 2,\n",
      "          'keener': 2,\n",
      "          'nthe': 2,\n",
      "          'bottle': 2,\n",
      "          'caulfield': 2,\n",
      "          'characters': 2,\n",
      "          'henry': 2,\n",
      "          'leary': 2,\n",
      "          'joes': 2,\n",
      "          'lloyd': 2,\n",
      "          'dicillo': 2,\n",
      "          'nand': 2,\n",
      "          'point': 2,\n",
      "          'going': 2,\n",
      "          'gets': 2,\n",
      "          'unsatisfied': 2,\n",
      "          'digressions': 2,\n",
      "          'r': 1,\n",
      "          'womans': 1,\n",
      "          'arm': 1,\n",
      "          'pumpedup': 1,\n",
      "          'pectorals': 1,\n",
      "          'blond': 1,\n",
      "          'hair': 1,\n",
      "          'mans': 1,\n",
      "          'sad': 1,\n",
      "          'slender': 1,\n",
      "          'legs': 1,\n",
      "          'random': 1,\n",
      "          'hand': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'tom': 1,\n",
      "          'dicillos': 1,\n",
      "          'unfold': 1,\n",
      "          'scattered': 1,\n",
      "          'fractured': 1,\n",
      "          'glimpses': 1,\n",
      "          'eventually': 1,\n",
      "          'come': 1,\n",
      "          'together': 1,\n",
      "          'form': 1,\n",
      "          'image': 1,\n",
      "          'bikini': 1,\n",
      "          'briefclad': 1,\n",
      "          'man': 1,\n",
      "          'knees': 1,\n",
      "          'clinging': 1,\n",
      "          'nurturing': 1,\n",
      "          'concealing': 1,\n",
      "          'unclothed': 1,\n",
      "          'breasts': 1,\n",
      "          'rest': 1,\n",
      "          'formless': 1,\n",
      "          'aimless': 1,\n",
      "          'ensemble': 1,\n",
      "          'comedy': 1,\n",
      "          'assembled': 1,\n",
      "          'coherently': 1,\n",
      "          'matthew': 1,\n",
      "          'modine': 1,\n",
      "          'waiterstruggling': 1,\n",
      "          'proud': 1,\n",
      "          'take': 1,\n",
      "          'gigs': 1,\n",
      "          'commercials': 1,\n",
      "          'operas': 1,\n",
      "          'nhes': 1,\n",
      "          'feeling': 1,\n",
      "          'somewhat': 1,\n",
      "          'dissatisfied': 1,\n",
      "          'livein': 1,\n",
      "          'love': 1,\n",
      "          'catherine': 1,\n",
      "          'holds': 1,\n",
      "          'subconscious': 1,\n",
      "          'hostility': 1,\n",
      "          'toward': 1,\n",
      "          'male': 1,\n",
      "          'gender': 1,\n",
      "          'nmary': 1,\n",
      "          'makeup': 1,\n",
      "          'artist': 1,\n",
      "          'regularly': 1,\n",
      "          'works': 1,\n",
      "          'model': 1,\n",
      "          'sahara': 1,\n",
      "          'bridgette': 1,\n",
      "          'wilson': 1,\n",
      "          'obsessed': 1,\n",
      "          'underlying': 1,\n",
      "          'messages': 1,\n",
      "          'disneys': 1,\n",
      "          'little': 1,\n",
      "          'mermaid': 1,\n",
      "          'turbulent': 1,\n",
      "          'onagain': 1,\n",
      "          'offagain': 1,\n",
      "          'maxwell': 1,\n",
      "          'yearns': 1,\n",
      "          'taste': 1,\n",
      "          'finds': 1,\n",
      "          'costar': 1,\n",
      "          'kelly': 1,\n",
      "          'daryl': 1,\n",
      "          'hannah': 1,\n",
      "          'film': 1,\n",
      "          'unspools': 1,\n",
      "          'variety': 1,\n",
      "          'pass': 1,\n",
      "          'fashion': 1,\n",
      "          'photographer': 1,\n",
      "          'blair': 1,\n",
      "          'marlo': 1,\n",
      "          'thomas': 1,\n",
      "          'marys': 1,\n",
      "          'shrink': 1,\n",
      "          'buck': 1,\n",
      "          'selfdefense': 1,\n",
      "          'instructor': 1,\n",
      "          'denis': 1,\n",
      "          'casting': 1,\n",
      "          'agent': 1,\n",
      "          'kathleen': 1,\n",
      "          'turner': 1,\n",
      "          'hardass': 1,\n",
      "          'boss': 1,\n",
      "          'christopher': 1,\n",
      "          'mystery': 1,\n",
      "          'elizabeth': 1,\n",
      "          'berkley': 1,\n",
      "          'keeps': 1,\n",
      "          'crossing': 1,\n",
      "          'path': 1,\n",
      "          'nwhere': 1,\n",
      "          'exactly': 1,\n",
      "          'go': 1,\n",
      "          'nthats': 1,\n",
      "          'question': 1,\n",
      "          'best': 1,\n",
      "          'posed': 1,\n",
      "          'writerdirector': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'slightest': 1,\n",
      "          'clue': 1,\n",
      "          'nhis': 1,\n",
      "          'meandering': 1,\n",
      "          'largely': 1,\n",
      "          'unfunny': 1,\n",
      "          'script': 1,\n",
      "          'direction': 1,\n",
      "          'like': 1,\n",
      "          'hopelessly': 1,\n",
      "          'lost': 1,\n",
      "          'drivers': 1,\n",
      "          'turning': 1,\n",
      "          'deadend': 1,\n",
      "          'narrative': 1,\n",
      "          'streets': 1,\n",
      "          'reverse': 1,\n",
      "          'course': 1,\n",
      "          'hit': 1,\n",
      "          'creative': 1,\n",
      "          'culdesac': 1,\n",
      "          'nat': 1,\n",
      "          'one': 1,\n",
      "          'frustrated': 1,\n",
      "          'scripts': 1,\n",
      "          'complains': 1,\n",
      "          'writer': 1,\n",
      "          'jim': 1,\n",
      "          'fyfe': 1,\n",
      "          'kellys': 1,\n",
      "          'keep': 1,\n",
      "          'circles': 1,\n",
      "          'hint': 1,\n",
      "          'development': 1,\n",
      "          'growth': 1,\n",
      "          'nthat': 1,\n",
      "          'certainly': 1,\n",
      "          'case': 1,\n",
      "          'job': 1,\n",
      "          'ultimately': 1,\n",
      "          'botches': 1,\n",
      "          'things': 1,\n",
      "          'bicker': 1,\n",
      "          'make': 1,\n",
      "          'pattern': 1,\n",
      "          'repeat': 1,\n",
      "          'nunhappy': 1,\n",
      "          'returns': 1,\n",
      "          'faux': 1,\n",
      "          'still': 1,\n",
      "          'dances': 1,\n",
      "          'around': 1,\n",
      "          'spending': 1,\n",
      "          'time': 1,\n",
      "          'apparent': 1,\n",
      "          'turns': 1,\n",
      "          'arent': 1,\n",
      "          'without': 1,\n",
      "          'amusements': 1,\n",
      "          'nit': 1,\n",
      "          'occasional': 1,\n",
      "          'funny': 1,\n",
      "          'line': 1,\n",
      "          'situation': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'dave': 1,\n",
      "          'chappelle': 1,\n",
      "          'shine': 1,\n",
      "          'small': 1,\n",
      "          'roles': 1,\n",
      "          'likable': 1,\n",
      "          'refreshingly': 1,\n",
      "          'earthy': 1,\n",
      "          'lead': 1,\n",
      "          'berkleys': 1,\n",
      "          'appearance': 1,\n",
      "          'mercifully': 1,\n",
      "          'brief': 1,\n",
      "          'receives': 1,\n",
      "          'outrageously': 1,\n",
      "          'prominent': 1,\n",
      "          'billing': 1,\n",
      "          'ad': 1,\n",
      "          'placement': 1,\n",
      "          'tenminute': 1,\n",
      "          'role': 1,\n",
      "          'irony': 1,\n",
      "          'play': 1,\n",
      "          'wildly': 1,\n",
      "          'popular': 1,\n",
      "          'star': 1,\n",
      "          'makes': 1,\n",
      "          'ratings': 1,\n",
      "          'skyrocket': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'fired': 1,\n",
      "          'daytime': 1,\n",
      "          'drama': 1,\n",
      "          'children': 1,\n",
      "          'scant': 1,\n",
      "          'six': 1,\n",
      "          'monthsdue': 1,\n",
      "          'lack': 1,\n",
      "          'viewer': 1,\n",
      "          'interest': 1,\n",
      "          'nbut': 1,\n",
      "          'whole': 1,\n",
      "          'frustrating': 1,\n",
      "          'sit': 1,\n",
      "          'lives': 1,\n",
      "          'stereotypes': 1,\n",
      "          'titleit': 1,\n",
      "          'may': 1,\n",
      "          'glossy': 1,\n",
      "          'surface': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'inside': 1,\n",
      "          'n': 1,\n",
      "          'opens': 1,\n",
      "          'february': 1,\n",
      "          '27': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'snowman': 9,\n",
      "          'jack': 8,\n",
      "          'film': 8,\n",
      "          'frost': 7,\n",
      "          'charlie': 6,\n",
      "          'christmas': 5,\n",
      "          'one': 4,\n",
      "          'son': 4,\n",
      "          'time': 4,\n",
      "          'would': 4,\n",
      "          'family': 3,\n",
      "          'since': 3,\n",
      "          'play': 3,\n",
      "          'home': 3,\n",
      "          'year': 3,\n",
      "          'father': 3,\n",
      "          'n': 3,\n",
      "          'better': 3,\n",
      "          'least': 2,\n",
      "          'nthis': 2,\n",
      "          'come': 2,\n",
      "          'njack': 2,\n",
      "          'keaton': 2,\n",
      "          'gabby': 2,\n",
      "          'kelly': 2,\n",
      "          'preston': 2,\n",
      "          'cross': 2,\n",
      "          'doesnt': 2,\n",
      "          'spend': 2,\n",
      "          'enough': 2,\n",
      "          'nwhen': 2,\n",
      "          'wants': 2,\n",
      "          'way': 2,\n",
      "          'still': 2,\n",
      "          'difficult': 2,\n",
      "          'coming': 2,\n",
      "          'jacks': 2,\n",
      "          'death': 2,\n",
      "          'tries': 2,\n",
      "          'works': 2,\n",
      "          'work': 2,\n",
      "          'nsince': 2,\n",
      "          'think': 2,\n",
      "          'watch': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'like': 2,\n",
      "          'ni': 2,\n",
      "          'life': 2,\n",
      "          'parent': 2,\n",
      "          'becomes': 2,\n",
      "          'story': 2,\n",
      "          'da': 2,\n",
      "          'dumb': 1,\n",
      "          'corny': 1,\n",
      "          'concoctions': 1,\n",
      "          'attempts': 1,\n",
      "          'heartwarming': 1,\n",
      "          'muddled': 1,\n",
      "          'cliches': 1,\n",
      "          'predictability': 1,\n",
      "          'bit': 1,\n",
      "          'touching': 1,\n",
      "          'surprise': 1,\n",
      "          'studio': 1,\n",
      "          'made': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'current': 1,\n",
      "          'streak': 1,\n",
      "          'bad': 1,\n",
      "          'michael': 1,\n",
      "          'struggling': 1,\n",
      "          'middleaged': 1,\n",
      "          'rock': 1,\n",
      "          'musician': 1,\n",
      "          'loves': 1,\n",
      "          'wife': 1,\n",
      "          '11yearold': 1,\n",
      "          'joseph': 1,\n",
      "          'nearly': 1,\n",
      "          'receives': 1,\n",
      "          'call': 1,\n",
      "          'music': 1,\n",
      "          'label': 1,\n",
      "          'hear': 1,\n",
      "          'cancel': 1,\n",
      "          'planned': 1,\n",
      "          'outing': 1,\n",
      "          'mountains': 1,\n",
      "          'nhalfway': 1,\n",
      "          'second': 1,\n",
      "          'thoughts': 1,\n",
      "          'back': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'dies': 1,\n",
      "          'nswitch': 1,\n",
      "          'forward': 1,\n",
      "          'approaching': 1,\n",
      "          'terms': 1,\n",
      "          'begins': 1,\n",
      "          'harmonica': 1,\n",
      "          'gave': 1,\n",
      "          'night': 1,\n",
      "          'died': 1,\n",
      "          'outside': 1,\n",
      "          'house': 1,\n",
      "          'taken': 1,\n",
      "          'spirit': 1,\n",
      "          'upcoming': 1,\n",
      "          'warm': 1,\n",
      "          'front': 1,\n",
      "          'melts': 1,\n",
      "          'desperately': 1,\n",
      "          'prevent': 1,\n",
      "          'melting': 1,\n",
      "          'demise': 1,\n",
      "          'frosty': 1,\n",
      "          'classic': 1,\n",
      "          'cartoon': 1,\n",
      "          'idea': 1,\n",
      "          'alive': 1,\n",
      "          'splendidly': 1,\n",
      "          'animated': 1,\n",
      "          'liveaction': 1,\n",
      "          'nafter': 1,\n",
      "          'somewhat': 1,\n",
      "          'promising': 1,\n",
      "          'prologue': 1,\n",
      "          'established': 1,\n",
      "          'quickly': 1,\n",
      "          'goes': 1,\n",
      "          'downhill': 1,\n",
      "          'especially': 1,\n",
      "          'comes': 1,\n",
      "          'deceased': 1,\n",
      "          'whole': 1,\n",
      "          'many': 1,\n",
      "          'questions': 1,\n",
      "          'ask': 1,\n",
      "          'happens': 1,\n",
      "          'die': 1,\n",
      "          'feel': 1,\n",
      "          'nbut': 1,\n",
      "          'instead': 1,\n",
      "          'focuses': 1,\n",
      "          'snowball': 1,\n",
      "          'fight': 1,\n",
      "          'subplot': 1,\n",
      "          'inevitably': 1,\n",
      "          'oversentimental': 1,\n",
      "          'climax': 1,\n",
      "          'could': 1,\n",
      "          'telegraphed': 1,\n",
      "          'even': 1,\n",
      "          'sat': 1,\n",
      "          'performances': 1,\n",
      "          'respectable': 1,\n",
      "          'deserves': 1,\n",
      "          'punished': 1,\n",
      "          'appearing': 1,\n",
      "          'silly': 1,\n",
      "          'nmichael': 1,\n",
      "          'got': 1,\n",
      "          'easy': 1,\n",
      "          'disappears': 1,\n",
      "          'first': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'exactly': 1,\n",
      "          'career': 1,\n",
      "          'always': 1,\n",
      "          'liked': 1,\n",
      "          'nshe': 1,\n",
      "          'clearly': 1,\n",
      "          'talented': 1,\n",
      "          'charismatic': 1,\n",
      "          'actress': 1,\n",
      "          'never': 1,\n",
      "          'given': 1,\n",
      "          'good': 1,\n",
      "          'role': 1,\n",
      "          'usually': 1,\n",
      "          'settle': 1,\n",
      "          'onedimensional': 1,\n",
      "          'supporting': 1,\n",
      "          'character': 1,\n",
      "          '1997s': 1,\n",
      "          'nothing': 1,\n",
      "          'lose': 1,\n",
      "          'addicted': 1,\n",
      "          'love': 1,\n",
      "          'njoseph': 1,\n",
      "          'probably': 1,\n",
      "          'highlight': 1,\n",
      "          'cast': 1,\n",
      "          'believably': 1,\n",
      "          'portrayed': 1,\n",
      "          'boy': 1,\n",
      "          'suffering': 1,\n",
      "          'loss': 1,\n",
      "          'nin': 1,\n",
      "          'subplots': 1,\n",
      "          'actually': 1,\n",
      "          'due': 1,\n",
      "          'wittiness': 1,\n",
      "          'henry': 1,\n",
      "          'rollins': 1,\n",
      "          'highly': 1,\n",
      "          'amusing': 1,\n",
      "          'hockey': 1,\n",
      "          'coach': 1,\n",
      "          'terrified': 1,\n",
      "          'paranoid': 1,\n",
      "          'seeing': 1,\n",
      "          'live': 1,\n",
      "          'brief': 1,\n",
      "          'hint': 1,\n",
      "          'cleverness': 1,\n",
      "          'pushed': 1,\n",
      "          'side': 1,\n",
      "          'however': 1,\n",
      "          'triedandtrue': 1,\n",
      "          'main': 1,\n",
      "          'plot': 1,\n",
      "          'hand': 1,\n",
      "          'sappy': 1,\n",
      "          'knew': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'conclusion': 1,\n",
      "          'came': 1,\n",
      "          'around': 1,\n",
      "          'choice': 1,\n",
      "          'sit': 1,\n",
      "          'listen': 1,\n",
      "          'painfully': 1,\n",
      "          'insipid': 1,\n",
      "          'cringeinducing': 1,\n",
      "          'lines': 1,\n",
      "          'dialogue': 1,\n",
      "          'nsome': 1,\n",
      "          'favorites': 1,\n",
      "          'interaction': 1,\n",
      "          'man': 1,\n",
      "          'says': 1,\n",
      "          'replies': 1,\n",
      "          'little': 1,\n",
      "          'zinger': 1,\n",
      "          'school': 1,\n",
      "          'bully': 1,\n",
      "          'miraculously': 1,\n",
      "          'friendly': 1,\n",
      "          'towards': 1,\n",
      "          'help': 1,\n",
      "          'snowdad': 1,\n",
      "          'dad': 1,\n",
      "          'ndo': 1,\n",
      "          'people': 1,\n",
      "          'really': 1,\n",
      "          'get': 1,\n",
      "          'paid': 1,\n",
      "          'hollywood': 1,\n",
      "          'writing': 1,\n",
      "          'pieces': 1,\n",
      "          'trash': 1,\n",
      "          'created': 1,\n",
      "          'john': 1,\n",
      "          'hensons': 1,\n",
      "          'creature': 1,\n",
      "          'shop': 1,\n",
      "          'believable': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'unintentionally': 1,\n",
      "          'hilarious': 1,\n",
      "          'directtovideo': 1,\n",
      "          'horror': 1,\n",
      "          'flick': 1,\n",
      "          'also': 1,\n",
      "          'called': 1,\n",
      "          'tell': 1,\n",
      "          'person': 1,\n",
      "          'suit': 1,\n",
      "          'computer': 1,\n",
      "          'effects': 1,\n",
      "          'neither': 1,\n",
      "          'awful': 1,\n",
      "          'lot': 1,\n",
      "          'go': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'featherbrained': 1,\n",
      "          'project': 1,\n",
      "          'nas': 1,\n",
      "          'seasonal': 1,\n",
      "          'holiday': 1,\n",
      "          'picture': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'clunker': 1,\n",
      "          'na': 1,\n",
      "          'ill': 1,\n",
      "          'nbetter': 1,\n",
      "          'yet': 1,\n",
      "          'suggestion': 1,\n",
      "          'stay': 1,\n",
      "          'quality': 1,\n",
      "          'wonderful': 1,\n",
      "          'prancer': 1,\n",
      "          'earnest': 1,\n",
      "          'severely': 1,\n",
      "          'misguided': 1,\n",
      "          'children': 1,\n",
      "          'well': 1,\n",
      "          'adults': 1,\n",
      "          'deserve': 1,\n",
      "          'doubt': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'anyway': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mccoy': 7,\n",
      "          'karen': 7,\n",
      "          'real': 6,\n",
      "          'parole': 4,\n",
      "          'nthere': 4,\n",
      "          'one': 4,\n",
      "          'might': 3,\n",
      "          'middle': 3,\n",
      "          'j': 3,\n",
      "          'also': 3,\n",
      "          'karens': 3,\n",
      "          'son': 3,\n",
      "          'would': 3,\n",
      "          'end': 3,\n",
      "          'movies': 2,\n",
      "          'require': 2,\n",
      "          'nthen': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'atlanta': 2,\n",
      "          'well': 2,\n",
      "          'basinger': 2,\n",
      "          'years': 2,\n",
      "          'later': 2,\n",
      "          'kilmer': 2,\n",
      "          'jack': 2,\n",
      "          'schmidt': 2,\n",
      "          'nschmidt': 2,\n",
      "          'officer': 2,\n",
      "          'fast': 2,\n",
      "          'character': 2,\n",
      "          'reason': 2,\n",
      "          'breakin': 2,\n",
      "          'day': 2,\n",
      "          'bad': 2,\n",
      "          'goes': 2,\n",
      "          'william': 2,\n",
      "          'interesting': 2,\n",
      "          'room': 2,\n",
      "          'reasonably': 2,\n",
      "          'scene': 2,\n",
      "          'good': 2,\n",
      "          'im': 2,\n",
      "          'nlike': 2,\n",
      "          'turn': 1,\n",
      "          'brain': 1,\n",
      "          'order': 1,\n",
      "          'watch': 1,\n",
      "          'accept': 1,\n",
      "          'everyone': 1,\n",
      "          'movie': 1,\n",
      "          'turned': 1,\n",
      "          'brains': 1,\n",
      "          'nits': 1,\n",
      "          'charmless': 1,\n",
      "          'molassesslow': 1,\n",
      "          'full': 1,\n",
      "          'genuinely': 1,\n",
      "          'stupid': 1,\n",
      "          'people': 1,\n",
      "          'commission': 1,\n",
      "          'set': 1,\n",
      "          'consider': 1,\n",
      "          'sort': 1,\n",
      "          'ritual': 1,\n",
      "          'suicide': 1,\n",
      "          'complicity': 1,\n",
      "          'humiliation': 1,\n",
      "          'opens': 1,\n",
      "          'bank': 1,\n",
      "          'robber': 1,\n",
      "          'kim': 1,\n",
      "          'arrested': 1,\n",
      "          'job': 1,\n",
      "          'nsix': 1,\n",
      "          'looking': 1,\n",
      "          'stay': 1,\n",
      "          'straight': 1,\n",
      "          'nshe': 1,\n",
      "          'soon': 1,\n",
      "          'bumps': 1,\n",
      "          'barker': 1,\n",
      "          'val': 1,\n",
      "          'hapless': 1,\n",
      "          'wouldbe': 1,\n",
      "          'thief': 1,\n",
      "          'idolizes': 1,\n",
      "          'nj': 1,\n",
      "          'ties': 1,\n",
      "          'terence': 1,\n",
      "          'stamp': 1,\n",
      "          'man': 1,\n",
      "          'blew': 1,\n",
      "          'whistle': 1,\n",
      "          'six': 1,\n",
      "          'earlier': 1,\n",
      "          'refusing': 1,\n",
      "          'work': 1,\n",
      "          'cahoots': 1,\n",
      "          'sleazy': 1,\n",
      "          'gailard': 1,\n",
      "          'sartain': 1,\n",
      "          'wants': 1,\n",
      "          'help': 1,\n",
      "          'stage': 1,\n",
      "          'robbery': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'leverage': 1,\n",
      "          'kidnapped': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'keep': 1,\n",
      "          'pulling': 1,\n",
      "          'back': 1,\n",
      "          'ncontrivances': 1,\n",
      "          'sloppy': 1,\n",
      "          'plotting': 1,\n",
      "          'fly': 1,\n",
      "          'screen': 1,\n",
      "          'furiously': 1,\n",
      "          'duck': 1,\n",
      "          'avoid': 1,\n",
      "          'hit': 1,\n",
      "          'nleading': 1,\n",
      "          'list': 1,\n",
      "          'unexplained': 1,\n",
      "          'presumably': 1,\n",
      "          'foul': 1,\n",
      "          'mains': 1,\n",
      "          'already': 1,\n",
      "          'extremely': 1,\n",
      "          'wealthy': 1,\n",
      "          'story': 1,\n",
      "          'begins': 1,\n",
      "          'given': 1,\n",
      "          'need': 1,\n",
      "          'want': 1,\n",
      "          'get': 1,\n",
      "          'involved': 1,\n",
      "          'another': 1,\n",
      "          'crime': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'actually': 1,\n",
      "          'participate': 1,\n",
      "          'nkarens': 1,\n",
      "          'initial': 1,\n",
      "          'encounter': 1,\n",
      "          'botched': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'holdup': 1,\n",
      "          'strains': 1,\n",
      "          'limits': 1,\n",
      "          'credibility': 1,\n",
      "          'nit': 1,\n",
      "          'simple': 1,\n",
      "          'enough': 1,\n",
      "          'somehow': 1,\n",
      "          'entangled': 1,\n",
      "          'point': 1,\n",
      "          'instead': 1,\n",
      "          'run': 1,\n",
      "          'next': 1,\n",
      "          'theyre': 1,\n",
      "          'leaving': 1,\n",
      "          'officers': 1,\n",
      "          'exactly': 1,\n",
      "          'moment': 1,\n",
      "          'nsmall': 1,\n",
      "          'world': 1,\n",
      "          'eh': 1,\n",
      "          'theres': 1,\n",
      "          'convenient': 1,\n",
      "          'car': 1,\n",
      "          'trouble': 1,\n",
      "          'attempted': 1,\n",
      "          'escape': 1,\n",
      "          'pet': 1,\n",
      "          'tigers': 1,\n",
      "          'power': 1,\n",
      "          'laws': 1,\n",
      "          'cinema': 1,\n",
      "          'must': 1,\n",
      "          'inevitably': 1,\n",
      "          'confront': 1,\n",
      "          'someone': 1,\n",
      "          'blundered': 1,\n",
      "          'cage': 1,\n",
      "          'nhowever': 1,\n",
      "          'buffoon': 1,\n",
      "          'prize': 1,\n",
      "          'police': 1,\n",
      "          'come': 1,\n",
      "          'like': 1,\n",
      "          'keystone': 1,\n",
      "          'kops': 1,\n",
      "          'nbut': 1,\n",
      "          'fun': 1,\n",
      "          'doesnt': 1,\n",
      "          'shambles': 1,\n",
      "          'script': 1,\n",
      "          'davies': 1,\n",
      "          'osborne': 1,\n",
      "          'absence': 1,\n",
      "          'single': 1,\n",
      "          'solitary': 1,\n",
      "          'nkaren': 1,\n",
      "          'earnest': 1,\n",
      "          'singleminded': 1,\n",
      "          'motherly': 1,\n",
      "          'devotion': 1,\n",
      "          'lacking': 1,\n",
      "          'kind': 1,\n",
      "          'edge': 1,\n",
      "          'make': 1,\n",
      "          'convincing': 1,\n",
      "          'criminal': 1,\n",
      "          'thespian': 1,\n",
      "          'adept': 1,\n",
      "          'fleshing': 1,\n",
      "          'flimsy': 1,\n",
      "          'material': 1,\n",
      "          'flaccid': 1,\n",
      "          'villain': 1,\n",
      "          'complete': 1,\n",
      "          'blank': 1,\n",
      "          'exhusband': 1,\n",
      "          'furniture': 1,\n",
      "          'nonly': 1,\n",
      "          'kilmers': 1,\n",
      "          'remotely': 1,\n",
      "          'appealing': 1,\n",
      "          'potentially': 1,\n",
      "          'intriguing': 1,\n",
      "          'quality': 1,\n",
      "          'ineptitude': 1,\n",
      "          'never': 1,\n",
      "          'developed': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'disappears': 1,\n",
      "          'admiration': 1,\n",
      "          'could': 1,\n",
      "          'made': 1,\n",
      "          'subplot': 1,\n",
      "          'ni': 1,\n",
      "          'forgiving': 1,\n",
      "          'pacing': 1,\n",
      "          'appropriate': 1,\n",
      "          'caper': 1,\n",
      "          'comedy': 1,\n",
      "          'nowhere': 1,\n",
      "          'nvarious': 1,\n",
      "          'scenes': 1,\n",
      "          'sneaking': 1,\n",
      "          'skulking': 1,\n",
      "          'seem': 1,\n",
      "          'take': 1,\n",
      "          'forever': 1,\n",
      "          'evident': 1,\n",
      "          'didnt': 1,\n",
      "          'cutting': 1,\n",
      "          'floor': 1,\n",
      "          'neven': 1,\n",
      "          'clever': 1,\n",
      "          'climactic': 1,\n",
      "          'falls': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'victim': 1,\n",
      "          'syndrome': 1,\n",
      "          'including': 1,\n",
      "          'thieves': 1,\n",
      "          'drilling': 1,\n",
      "          'open': 1,\n",
      "          'vault': 1,\n",
      "          'lasts': 1,\n",
      "          'kid': 1,\n",
      "          'four': 1,\n",
      "          'minutes': 1,\n",
      "          'tension': 1,\n",
      "          'tedium': 1,\n",
      "          'nrussell': 1,\n",
      "          'mulcahy': 1,\n",
      "          'highlander': 1,\n",
      "          'director': 1,\n",
      "          'style': 1,\n",
      "          'indeed': 1,\n",
      "          'looks': 1,\n",
      "          'completely': 1,\n",
      "          'stumbles': 1,\n",
      "          'editing': 1,\n",
      "          'many': 1,\n",
      "          'big': 1,\n",
      "          'problems': 1,\n",
      "          'tempted': 1,\n",
      "          'overlook': 1,\n",
      "          'little': 1,\n",
      "          'ones': 1,\n",
      "          'disarming': 1,\n",
      "          'schmidts': 1,\n",
      "          'henchmen': 1,\n",
      "          'throwing': 1,\n",
      "          'gun': 1,\n",
      "          'park': 1,\n",
      "          'playing': 1,\n",
      "          'fountain': 1,\n",
      "          'crushed': 1,\n",
      "          'van': 1,\n",
      "          'runs': 1,\n",
      "          'reappearing': 1,\n",
      "          'piece': 1,\n",
      "          'moments': 1,\n",
      "          'ntempted': 1,\n",
      "          'pretty': 1,\n",
      "          'resisting': 1,\n",
      "          'temptation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jerry': 8,\n",
      "          'film': 8,\n",
      "          'conspiracy': 7,\n",
      "          'theory': 7,\n",
      "          'government': 6,\n",
      "          'seems': 6,\n",
      "          'alice': 6,\n",
      "          'goes': 5,\n",
      "          'forced': 5,\n",
      "          'people': 4,\n",
      "          'guy': 4,\n",
      "          'even': 4,\n",
      "          'theories': 4,\n",
      "          'time': 4,\n",
      "          'would': 4,\n",
      "          'black': 4,\n",
      "          'donner': 4,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'real': 3,\n",
      "          'gibson': 3,\n",
      "          'nhe': 3,\n",
      "          'scenes': 3,\n",
      "          'know': 3,\n",
      "          'jerrys': 3,\n",
      "          'interest': 3,\n",
      "          'action': 3,\n",
      "          'set': 3,\n",
      "          'two': 3,\n",
      "          'like': 3,\n",
      "          'believe': 3,\n",
      "          'nyou': 3,\n",
      "          'also': 3,\n",
      "          'whats': 3,\n",
      "          'station': 3,\n",
      "          'nthis': 3,\n",
      "          'movies': 2,\n",
      "          'life': 2,\n",
      "          'ni': 2,\n",
      "          'could': 2,\n",
      "          'sat': 2,\n",
      "          'man': 2,\n",
      "          'known': 2,\n",
      "          'ideas': 2,\n",
      "          'work': 2,\n",
      "          'na': 2,\n",
      "          'little': 2,\n",
      "          'imagination': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'president': 2,\n",
      "          'us': 2,\n",
      "          'tries': 2,\n",
      "          'roberts': 2,\n",
      "          'couple': 2,\n",
      "          'far': 2,\n",
      "          'well': 2,\n",
      "          'great': 2,\n",
      "          'take': 2,\n",
      "          'lot': 2,\n",
      "          'number': 2,\n",
      "          'forever': 2,\n",
      "          'relationship': 2,\n",
      "          'every': 2,\n",
      "          'break': 2,\n",
      "          'reason': 2,\n",
      "          'bunch': 2,\n",
      "          'took': 2,\n",
      "          'noh': 2,\n",
      "          'helgeland': 2,\n",
      "          'end': 2,\n",
      "          'main': 2,\n",
      "          'hes': 2,\n",
      "          'point': 2,\n",
      "          'extraneous': 2,\n",
      "          'never': 2,\n",
      "          'nfor': 2,\n",
      "          'found': 2,\n",
      "          'actually': 2,\n",
      "          'subway': 2,\n",
      "          'water': 2,\n",
      "          'nokay': 2,\n",
      "          'heres': 2,\n",
      "          'copies': 2,\n",
      "          'salinger': 2,\n",
      "          'bookstore': 2,\n",
      "          'question': 2,\n",
      "          'assassin': 2,\n",
      "          'make': 2,\n",
      "          'plays': 2,\n",
      "          'may': 2,\n",
      "          'really': 2,\n",
      "          'think': 1,\n",
      "          'exist': 1,\n",
      "          'trust': 1,\n",
      "          'theyre': 1,\n",
      "          'talked': 1,\n",
      "          'thought': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'putting': 1,\n",
      "          'satellites': 1,\n",
      "          'orbit': 1,\n",
      "          'fry': 1,\n",
      "          'individual': 1,\n",
      "          'persons': 1,\n",
      "          'brain': 1,\n",
      "          'microwaves': 1,\n",
      "          'nthen': 1,\n",
      "          'room': 1,\n",
      "          'full': 1,\n",
      "          'believed': 1,\n",
      "          'rigged': 1,\n",
      "          'state': 1,\n",
      "          'elections': 1,\n",
      "          'listened': 1,\n",
      "          'swore': 1,\n",
      "          'nicotine': 1,\n",
      "          'additive': 1,\n",
      "          'cigarette': 1,\n",
      "          'companies': 1,\n",
      "          'put': 1,\n",
      "          'products': 1,\n",
      "          'specific': 1,\n",
      "          'goal': 1,\n",
      "          'getting': 1,\n",
      "          'addicted': 1,\n",
      "          'nthese': 1,\n",
      "          'unseen': 1,\n",
      "          'forces': 1,\n",
      "          'deceive': 1,\n",
      "          'control': 1,\n",
      "          'public': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'nin': 1,\n",
      "          'richard': 1,\n",
      "          'donners': 1,\n",
      "          'fletcher': 1,\n",
      "          'mel': 1,\n",
      "          'city': 1,\n",
      "          'cab': 1,\n",
      "          'driver': 1,\n",
      "          'everything': 1,\n",
      "          'nhis': 1,\n",
      "          'latest': 1,\n",
      "          'nasa': 1,\n",
      "          'trying': 1,\n",
      "          'kill': 1,\n",
      "          'causing': 1,\n",
      "          'earthquake': 1,\n",
      "          'space': 1,\n",
      "          'shuttle': 1,\n",
      "          'might': 1,\n",
      "          'sound': 1,\n",
      "          'outrageous': 1,\n",
      "          'days': 1,\n",
      "          'combs': 1,\n",
      "          'newspaper': 1,\n",
      "          'looking': 1,\n",
      "          'tidbits': 1,\n",
      "          'leave': 1,\n",
      "          'telltale': 1,\n",
      "          'warnings': 1,\n",
      "          'goingson': 1,\n",
      "          'behind': 1,\n",
      "          'draws': 1,\n",
      "          'conclusions': 1,\n",
      "          'nupstanding': 1,\n",
      "          'citizen': 1,\n",
      "          'convince': 1,\n",
      "          'sutton': 1,\n",
      "          'julia': 1,\n",
      "          'justice': 1,\n",
      "          'department': 1,\n",
      "          'must': 1,\n",
      "          'warned': 1,\n",
      "          'nlucky': 1,\n",
      "          'gal': 1,\n",
      "          'met': 1,\n",
      "          'saved': 1,\n",
      "          'muggers': 1,\n",
      "          'listen': 1,\n",
      "          'six': 1,\n",
      "          'months': 1,\n",
      "          'since': 1,\n",
      "          'nwhat': 1,\n",
      "          'doesnt': 1,\n",
      "          'professional': 1,\n",
      "          'lengths': 1,\n",
      "          'follow': 1,\n",
      "          'around': 1,\n",
      "          'watch': 1,\n",
      "          'apartment': 1,\n",
      "          'nbut': 1,\n",
      "          'secret': 1,\n",
      "          'types': 1,\n",
      "          'seem': 1,\n",
      "          'limitedcirculation': 1,\n",
      "          'newsletter': 1,\n",
      "          'finds': 1,\n",
      "          'danger': 1,\n",
      "          'need': 1,\n",
      "          'alices': 1,\n",
      "          'help': 1,\n",
      "          'none': 1,\n",
      "          'problems': 1,\n",
      "          'pass': 1,\n",
      "          'actionthriller': 1,\n",
      "          'neither': 1,\n",
      "          'whole': 1,\n",
      "          'significant': 1,\n",
      "          'thrills': 1,\n",
      "          'npart': 1,\n",
      "          'result': 1,\n",
      "          'films': 1,\n",
      "          'slow': 1,\n",
      "          'pace': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'rest': 1,\n",
      "          'boredom': 1,\n",
      "          'stops': 1,\n",
      "          'excitement': 1,\n",
      "          'nat': 1,\n",
      "          'hours': 1,\n",
      "          'significantly': 1,\n",
      "          'condensed': 1,\n",
      "          'running': 1,\n",
      "          'shortened': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'able': 1,\n",
      "          'save': 1,\n",
      "          'ninstead': 1,\n",
      "          'truly': 1,\n",
      "          'exciting': 1,\n",
      "          'engaging': 1,\n",
      "          'pieces': 1,\n",
      "          'treated': 1,\n",
      "          'generic': 1,\n",
      "          'requisite': 1,\n",
      "          'elements': 1,\n",
      "          'helicopter': 1,\n",
      "          'men': 1,\n",
      "          'suits': 1,\n",
      "          'body': 1,\n",
      "          'armor': 1,\n",
      "          'vehicles': 1,\n",
      "          'drill': 1,\n",
      "          'nthey': 1,\n",
      "          'come': 1,\n",
      "          'kinds': 1,\n",
      "          'neat': 1,\n",
      "          'gadgets': 1,\n",
      "          'weapons': 1,\n",
      "          'chick': 1,\n",
      "          'training': 1,\n",
      "          'somehow': 1,\n",
      "          'manage': 1,\n",
      "          'elude': 1,\n",
      "          'nbig': 1,\n",
      "          'deal': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'nwatching': 1,\n",
      "          'wished': 1,\n",
      "          'least': 1,\n",
      "          'tried': 1,\n",
      "          'use': 1,\n",
      "          'luck': 1,\n",
      "          'nnow': 1,\n",
      "          'say': 1,\n",
      "          'completely': 1,\n",
      "          'mean': 1,\n",
      "          'person': 1,\n",
      "          'relative': 1,\n",
      "          'romantic': 1,\n",
      "          'involvement': 1,\n",
      "          'screenwriter': 1,\n",
      "          'brian': 1,\n",
      "          'movie': 1,\n",
      "          'characters': 1,\n",
      "          'falling': 1,\n",
      "          'hopelessly': 1,\n",
      "          'love': 1,\n",
      "          'evidence': 1,\n",
      "          'ever': 1,\n",
      "          'occurring': 1,\n",
      "          'see': 1,\n",
      "          'sparks': 1,\n",
      "          'danny': 1,\n",
      "          'glover': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'directed': 1,\n",
      "          'dont': 1,\n",
      "          'click': 1,\n",
      "          'throw': 1,\n",
      "          'happenings': 1,\n",
      "          'cause': 1,\n",
      "          'reject': 1,\n",
      "          'altogether': 1,\n",
      "          'finding': 1,\n",
      "          'stalking': 1,\n",
      "          'subsequent': 1,\n",
      "          'attraction': 1,\n",
      "          'absolutely': 1,\n",
      "          'script': 1,\n",
      "          'general': 1,\n",
      "          'someone': 1,\n",
      "          'write': 1,\n",
      "          'upon': 1,\n",
      "          'ndialog': 1,\n",
      "          'undistinguished': 1,\n",
      "          'rather': 1,\n",
      "          'unmemorable': 1,\n",
      "          'almost': 1,\n",
      "          'stopped': 1,\n",
      "          'listening': 1,\n",
      "          'neven': 1,\n",
      "          'gibsons': 1,\n",
      "          'usual': 1,\n",
      "          'gift': 1,\n",
      "          'ad': 1,\n",
      "          'lib': 1,\n",
      "          'couldnt': 1,\n",
      "          'punch': 1,\n",
      "          'sufficiently': 1,\n",
      "          'raise': 1,\n",
      "          'although': 1,\n",
      "          'oliver': 1,\n",
      "          'stone': 1,\n",
      "          'mildly': 1,\n",
      "          'amusing': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'much': 1,\n",
      "          'discussed': 1,\n",
      "          'inherently': 1,\n",
      "          'important': 1,\n",
      "          'going': 1,\n",
      "          'instead': 1,\n",
      "          'filler': 1,\n",
      "          'starts': 1,\n",
      "          'potential': 1,\n",
      "          'ends': 1,\n",
      "          'followed': 1,\n",
      "          'example': 1,\n",
      "          'professes': 1,\n",
      "          'drowned': 1,\n",
      "          'swimming': 1,\n",
      "          'pool': 1,\n",
      "          'murdered': 1,\n",
      "          'explain': 1,\n",
      "          'flooded': 1,\n",
      "          'due': 1,\n",
      "          'hence': 1,\n",
      "          'coroner': 1,\n",
      "          'check': 1,\n",
      "          'mans': 1,\n",
      "          'lungs': 1,\n",
      "          'chlorine': 1,\n",
      "          'convincing': 1,\n",
      "          'enough': 1,\n",
      "          'happens': 1,\n",
      "          'nnothing': 1,\n",
      "          'zip': 1,\n",
      "          'nada': 1,\n",
      "          'nno': 1,\n",
      "          'followup': 1,\n",
      "          'whatsoever': 1,\n",
      "          'significance': 1,\n",
      "          'another': 1,\n",
      "          'assassins': 1,\n",
      "          'possessed': 1,\n",
      "          'j': 1,\n",
      "          'novel': 1,\n",
      "          'catcher': 1,\n",
      "          'rye': 1,\n",
      "          'njerry': 1,\n",
      "          'nwhenever': 1,\n",
      "          'buy': 1,\n",
      "          'nleaving': 1,\n",
      "          'whether': 1,\n",
      "          'makes': 1,\n",
      "          'given': 1,\n",
      "          'nnot': 1,\n",
      "          'find': 1,\n",
      "          'collection': 1,\n",
      "          'later': 1,\n",
      "          'get': 1,\n",
      "          'answer': 1,\n",
      "          'first': 1,\n",
      "          'becomes': 1,\n",
      "          'totally': 1,\n",
      "          'mention': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'nyeah': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'named': 1,\n",
      "          'dr': 1,\n",
      "          'jonas': 1,\n",
      "          'bad': 1,\n",
      "          'nthats': 1,\n",
      "          'presence': 1,\n",
      "          'usually': 1,\n",
      "          'marvelous': 1,\n",
      "          'actor': 1,\n",
      "          'nearly': 1,\n",
      "          'forgettable': 1,\n",
      "          'lump': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'exception': 1,\n",
      "          'cylk': 1,\n",
      "          'cozart': 1,\n",
      "          'agent': 1,\n",
      "          'lowry': 1,\n",
      "          'fbi': 1,\n",
      "          'likable': 1,\n",
      "          'wish': 1,\n",
      "          'character': 1,\n",
      "          'gotten': 1,\n",
      "          'screen': 1,\n",
      "          'started': 1,\n",
      "          'jokes': 1,\n",
      "          'true': 1,\n",
      "          'came': 1,\n",
      "          'edits': 1,\n",
      "          'sake': 1,\n",
      "          'national': 1,\n",
      "          'security': 1,\n",
      "          'left': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'bad': 4,\n",
      "          'nthe': 4,\n",
      "          'ni': 3,\n",
      "          'skills': 3,\n",
      "          'nothing': 3,\n",
      "          'amused': 2,\n",
      "          'entertained': 2,\n",
      "          'usually': 2,\n",
      "          'remember': 2,\n",
      "          'hand': 2,\n",
      "          'brought': 2,\n",
      "          'fact': 2,\n",
      "          'producers': 2,\n",
      "          'director': 2,\n",
      "          'knew': 2,\n",
      "          'good': 2,\n",
      "          'made': 2,\n",
      "          'young': 2,\n",
      "          'alien': 2,\n",
      "          'autopsy': 2,\n",
      "          'saw': 2,\n",
      "          'say': 2,\n",
      "          'nin': 2,\n",
      "          'never': 2,\n",
      "          'lazard': 2,\n",
      "          'son': 1,\n",
      "          'share': 1,\n",
      "          'perverse': 1,\n",
      "          'predilection': 1,\n",
      "          'movies': 1,\n",
      "          'nwe': 1,\n",
      "          'cheap': 1,\n",
      "          'thrills': 1,\n",
      "          'corny': 1,\n",
      "          'dialog': 1,\n",
      "          'ludicrous': 1,\n",
      "          'premises': 1,\n",
      "          'acting': 1,\n",
      "          'nsince': 1,\n",
      "          'family': 1,\n",
      "          'members': 1,\n",
      "          'aspire': 1,\n",
      "          'higher': 1,\n",
      "          'forms': 1,\n",
      "          'entertainment': 1,\n",
      "          'wind': 1,\n",
      "          'indulging': 1,\n",
      "          'proclivity': 1,\n",
      "          'together': 1,\n",
      "          'cant': 1,\n",
      "          'disagreed': 1,\n",
      "          'relative': 1,\n",
      "          'merits': 1,\n",
      "          'clunker': 1,\n",
      "          'species': 1,\n",
      "          '2': 1,\n",
      "          'came': 1,\n",
      "          'along': 1,\n",
      "          'nhe': 1,\n",
      "          'able': 1,\n",
      "          'easily': 1,\n",
      "          'suspend': 1,\n",
      "          'applicable': 1,\n",
      "          'requirements': 1,\n",
      "          'usual': 1,\n",
      "          'manner': 1,\n",
      "          'declare': 1,\n",
      "          'suitably': 1,\n",
      "          'nperhaps': 1,\n",
      "          'evident': 1,\n",
      "          'process': 1,\n",
      "          'producing': 1,\n",
      "          'product': 1,\n",
      "          'prevented': 1,\n",
      "          'extracting': 1,\n",
      "          'fun': 1,\n",
      "          'mediocrity': 1,\n",
      "          'appreciated': 1,\n",
      "          'exactly': 1,\n",
      "          'insulting': 1,\n",
      "          'intelligence': 1,\n",
      "          'adequate': 1,\n",
      "          'moviemaking': 1,\n",
      "          'project': 1,\n",
      "          'well': 1,\n",
      "          'least': 1,\n",
      "          'terms': 1,\n",
      "          'craft': 1,\n",
      "          'could': 1,\n",
      "          'better': 1,\n",
      "          'brusque': 1,\n",
      "          'nthis': 1,\n",
      "          'slaps': 1,\n",
      "          'conception': 1,\n",
      "          'pregnancy': 1,\n",
      "          'delivery': 1,\n",
      "          'childhood': 1,\n",
      "          'consecutive': 1,\n",
      "          'frames': 1,\n",
      "          'without': 1,\n",
      "          'pausing': 1,\n",
      "          'infancy': 1,\n",
      "          'nescafe': 1,\n",
      "          'race': 1,\n",
      "          'womans': 1,\n",
      "          'womb': 1,\n",
      "          'balloons': 1,\n",
      "          'immediately': 1,\n",
      "          'male': 1,\n",
      "          'orgasm': 1,\n",
      "          'seconds': 1,\n",
      "          'later': 1,\n",
      "          'child': 1,\n",
      "          'tears': 1,\n",
      "          'way': 1,\n",
      "          'abdomen': 1,\n",
      "          'sloppy': 1,\n",
      "          'gory': 1,\n",
      "          'version': 1,\n",
      "          'insideout': 1,\n",
      "          'cesarean': 1,\n",
      "          'nan': 1,\n",
      "          'scene': 1,\n",
      "          'buzz': 1,\n",
      "          'cuts': 1,\n",
      "          'cranium': 1,\n",
      "          'kind': 1,\n",
      "          'indulgence': 1,\n",
      "          'condone': 1,\n",
      "          'scientifically': 1,\n",
      "          'incorrect': 1,\n",
      "          'real': 1,\n",
      "          'cut': 1,\n",
      "          'scalp': 1,\n",
      "          'used': 1,\n",
      "          'skull': 1,\n",
      "          'exposed': 1,\n",
      "          'opening': 1,\n",
      "          'sequences': 1,\n",
      "          'exploration': 1,\n",
      "          'mars': 1,\n",
      "          'writers': 1,\n",
      "          'showed': 1,\n",
      "          'excellent': 1,\n",
      "          'ceremonial': 1,\n",
      "          'speech': 1,\n",
      "          'writing': 1,\n",
      "          'spontaneous': 1,\n",
      "          'dialogue': 1,\n",
      "          'would': 1,\n",
      "          'qualify': 1,\n",
      "          'subtitle': 1,\n",
      "          'gets': 1,\n",
      "          'nas': 1,\n",
      "          'progressed': 1,\n",
      "          'vowed': 1,\n",
      "          'lines': 1,\n",
      "          'cringe': 1,\n",
      "          'one': 1,\n",
      "          'stuck': 1,\n",
      "          'neve': 1,\n",
      "          'natasha': 1,\n",
      "          'henstridge': 1,\n",
      "          'cloned': 1,\n",
      "          'sil': 1,\n",
      "          'original': 1,\n",
      "          'sexual': 1,\n",
      "          'predator': 1,\n",
      "          'mating': 1,\n",
      "          'instinct': 1,\n",
      "          'artificially': 1,\n",
      "          'attenuated': 1,\n",
      "          'needed': 1,\n",
      "          'turn': 1,\n",
      "          'noble': 1,\n",
      "          'cooperative': 1,\n",
      "          'prisoner': 1,\n",
      "          'wistful': 1,\n",
      "          'display': 1,\n",
      "          'resignation': 1,\n",
      "          'understanding': 1,\n",
      "          'tells': 1,\n",
      "          'friend': 1,\n",
      "          'jailer': 1,\n",
      "          'marg': 1,\n",
      "          'helgenberger': 1,\n",
      "          'think': 1,\n",
      "          'places': 1,\n",
      "          'see': 1,\n",
      "          'people': 1,\n",
      "          'meet': 1,\n",
      "          'nits': 1,\n",
      "          'enough': 1,\n",
      "          'melt': 1,\n",
      "          'callous': 1,\n",
      "          'heart': 1,\n",
      "          'nat': 1,\n",
      "          'another': 1,\n",
      "          'point': 1,\n",
      "          'protests': 1,\n",
      "          'im': 1,\n",
      "          'human': 1,\n",
      "          'know': 1,\n",
      "          'nshe': 1,\n",
      "          'half': 1,\n",
      "          'right': 1,\n",
      "          'npeter': 1,\n",
      "          'medak': 1,\n",
      "          'knows': 1,\n",
      "          'business': 1,\n",
      "          'njustin': 1,\n",
      "          'doomed': 1,\n",
      "          'astronaut': 1,\n",
      "          'enhance': 1,\n",
      "          'hollywood': 1,\n",
      "          'credentials': 1,\n",
      "          'njames': 1,\n",
      "          'cromwell': 1,\n",
      "          'father': 1,\n",
      "          'perfect': 1,\n",
      "          'short': 1,\n",
      "          'role': 1,\n",
      "          'nmarg': 1,\n",
      "          'heldenberger': 1,\n",
      "          'dna': 1,\n",
      "          'scientist': 1,\n",
      "          'pleasant': 1,\n",
      "          'beautiful': 1,\n",
      "          'nnatasha': 1,\n",
      "          'exquisite': 1,\n",
      "          'ornament': 1,\n",
      "          'ngeorge': 1,\n",
      "          'dzunza': 1,\n",
      "          'delivered': 1,\n",
      "          'expected': 1,\n",
      "          'dumb': 1,\n",
      "          'general': 1,\n",
      "          'messes': 1,\n",
      "          'things': 1,\n",
      "          'nmichael': 1,\n",
      "          'madsen': 1,\n",
      "          'nblack': 1,\n",
      "          'buddies': 1,\n",
      "          'survive': 1,\n",
      "          'type': 1,\n",
      "          'mykelti': 1,\n",
      "          'williamson': 1,\n",
      "          'manages': 1,\n",
      "          'stay': 1,\n",
      "          'around': 1,\n",
      "          'final': 1,\n",
      "          'credits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'irene': 11,\n",
      "          'farrellys': 10,\n",
      "          'nthe': 9,\n",
      "          'brothers': 7,\n",
      "          'film': 7,\n",
      "          'like': 6,\n",
      "          'entirely': 6,\n",
      "          'mary': 6,\n",
      "          'funny': 5,\n",
      "          'carrey': 5,\n",
      "          'doesnt': 5,\n",
      "          'farrelly': 4,\n",
      "          'personality': 4,\n",
      "          'charlie': 4,\n",
      "          'charlies': 4,\n",
      "          'plot': 4,\n",
      "          'work': 4,\n",
      "          'n': 4,\n",
      "          'pull': 4,\n",
      "          'nothing': 4,\n",
      "          'seemed': 3,\n",
      "          'better': 3,\n",
      "          'movie': 3,\n",
      "          'nits': 3,\n",
      "          'thing': 3,\n",
      "          'even': 3,\n",
      "          'new': 3,\n",
      "          'would': 3,\n",
      "          'course': 3,\n",
      "          'people': 3,\n",
      "          'comedy': 3,\n",
      "          'one': 3,\n",
      "          'isnt': 3,\n",
      "          'ever': 3,\n",
      "          'nthis': 3,\n",
      "          'actions': 3,\n",
      "          'humor': 3,\n",
      "          'outrageous': 3,\n",
      "          'way': 3,\n",
      "          'made': 3,\n",
      "          'nbut': 3,\n",
      "          'still': 3,\n",
      "          'dont': 3,\n",
      "          'perfect': 2,\n",
      "          'offensive': 2,\n",
      "          'matter': 2,\n",
      "          'make': 2,\n",
      "          'guy': 2,\n",
      "          'split': 2,\n",
      "          'exactly': 2,\n",
      "          'sort': 2,\n",
      "          'something': 2,\n",
      "          'mental': 2,\n",
      "          'illness': 2,\n",
      "          'throwing': 2,\n",
      "          'wind': 2,\n",
      "          'get': 2,\n",
      "          'njim': 2,\n",
      "          'neven': 2,\n",
      "          'ill': 2,\n",
      "          'condition': 2,\n",
      "          'take': 2,\n",
      "          'another': 2,\n",
      "          'wrong': 2,\n",
      "          'never': 2,\n",
      "          'taking': 2,\n",
      "          'hes': 2,\n",
      "          'stop': 2,\n",
      "          'runs': 2,\n",
      "          'problem': 2,\n",
      "          'kind': 2,\n",
      "          'earlier': 2,\n",
      "          'merely': 2,\n",
      "          'gags': 2,\n",
      "          'believe': 2,\n",
      "          'unexpected': 2,\n",
      "          'surprising': 2,\n",
      "          'seems': 2,\n",
      "          'really': 2,\n",
      "          'manner': 2,\n",
      "          'jokes': 2,\n",
      "          'havent': 2,\n",
      "          'adolescent': 2,\n",
      "          'think': 2,\n",
      "          'none': 2,\n",
      "          'anything': 2,\n",
      "          'involving': 2,\n",
      "          'three': 2,\n",
      "          'black': 2,\n",
      "          'language': 2,\n",
      "          'hasnt': 2,\n",
      "          'supporting': 2,\n",
      "          'character': 2,\n",
      "          'script': 2,\n",
      "          'roleshifting': 2,\n",
      "          'whether': 2,\n",
      "          'stuck': 2,\n",
      "          'audiences': 2,\n",
      "          'good': 2,\n",
      "          'filmmakers': 2,\n",
      "          'concept': 1,\n",
      "          'nwhat': 1,\n",
      "          'famous': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'comedies': 1,\n",
      "          'subject': 1,\n",
      "          'relish': 1,\n",
      "          'poking': 1,\n",
      "          'fun': 1,\n",
      "          'serious': 1,\n",
      "          'case': 1,\n",
      "          'care': 1,\n",
      "          'laugh': 1,\n",
      "          'carreys': 1,\n",
      "          'signed': 1,\n",
      "          'national': 1,\n",
      "          'alliance': 1,\n",
      "          'mentally': 1,\n",
      "          'helped': 1,\n",
      "          'levying': 1,\n",
      "          'complaints': 1,\n",
      "          'opening': 1,\n",
      "          'claiming': 1,\n",
      "          'misrepresenting': 1,\n",
      "          'labeling': 1,\n",
      "          'incorrectly': 1,\n",
      "          'schizophrenia': 1,\n",
      "          'forth': 1,\n",
      "          'nsuch': 1,\n",
      "          'protest': 1,\n",
      "          'add': 1,\n",
      "          'fuel': 1,\n",
      "          'fire': 1,\n",
      "          'proving': 1,\n",
      "          'couldnt': 1,\n",
      "          'joke': 1,\n",
      "          'helping': 1,\n",
      "          'enlightened': 1,\n",
      "          'viewers': 1,\n",
      "          'yet': 1,\n",
      "          'dose': 1,\n",
      "          'brilliantly': 1,\n",
      "          'subversive': 1,\n",
      "          'nyes': 1,\n",
      "          'went': 1,\n",
      "          'lack': 1,\n",
      "          'trying': 1,\n",
      "          'utilize': 1,\n",
      "          'highconcept': 1,\n",
      "          'premise': 1,\n",
      "          'plays': 1,\n",
      "          'baileygaites': 1,\n",
      "          'man': 1,\n",
      "          'dumped': 1,\n",
      "          'wife': 1,\n",
      "          'midget': 1,\n",
      "          'limo': 1,\n",
      "          'driver': 1,\n",
      "          'decides': 1,\n",
      "          'bury': 1,\n",
      "          'aggressive': 1,\n",
      "          'feelings': 1,\n",
      "          'deep': 1,\n",
      "          'inside': 1,\n",
      "          'release': 1,\n",
      "          'means': 1,\n",
      "          'neighbors': 1,\n",
      "          'exploit': 1,\n",
      "          'tooforgiving': 1,\n",
      "          'nature': 1,\n",
      "          'making': 1,\n",
      "          'job': 1,\n",
      "          'rhode': 1,\n",
      "          'island': 1,\n",
      "          'state': 1,\n",
      "          'trooper': 1,\n",
      "          'increasingly': 1,\n",
      "          'difficult': 1,\n",
      "          'nsoon': 1,\n",
      "          'enough': 1,\n",
      "          'repressed': 1,\n",
      "          'aggression': 1,\n",
      "          'manifests': 1,\n",
      "          'second': 1,\n",
      "          'independent': 1,\n",
      "          'named': 1,\n",
      "          'hank': 1,\n",
      "          'deepvoiced': 1,\n",
      "          'boorish': 1,\n",
      "          'ogre': 1,\n",
      "          'unafraid': 1,\n",
      "          'assertive': 1,\n",
      "          'predecessor': 1,\n",
      "          'unable': 1,\n",
      "          'muster': 1,\n",
      "          'crashing': 1,\n",
      "          'car': 1,\n",
      "          'wall': 1,\n",
      "          'barber': 1,\n",
      "          'shop': 1,\n",
      "          'insulted': 1,\n",
      "          'holding': 1,\n",
      "          'little': 1,\n",
      "          'girls': 1,\n",
      "          'head': 1,\n",
      "          'underwater': 1,\n",
      "          'refused': 1,\n",
      "          'jumproping': 1,\n",
      "          'street': 1,\n",
      "          'nthen': 1,\n",
      "          'things': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'start': 1,\n",
      "          'getting': 1,\n",
      "          'lost': 1,\n",
      "          'complicated': 1,\n",
      "          'attempted': 1,\n",
      "          'tracks': 1,\n",
      "          'nsome': 1,\n",
      "          'suggested': 1,\n",
      "          'brand': 1,\n",
      "          'require': 1,\n",
      "          'ntheyre': 1,\n",
      "          'greatly': 1,\n",
      "          'instrumental': 1,\n",
      "          'building': 1,\n",
      "          'rollicking': 1,\n",
      "          'comic': 1,\n",
      "          'energy': 1,\n",
      "          'infused': 1,\n",
      "          'last': 1,\n",
      "          'effort': 1,\n",
      "          '1996s': 1,\n",
      "          'theres': 1,\n",
      "          '1999s': 1,\n",
      "          'outside': 1,\n",
      "          'providence': 1,\n",
      "          'technically': 1,\n",
      "          'project': 1,\n",
      "          'wasnt': 1,\n",
      "          'contained': 1,\n",
      "          'despite': 1,\n",
      "          'newsmagazine': 1,\n",
      "          'articles': 1,\n",
      "          'rather': 1,\n",
      "          'nin': 1,\n",
      "          'managed': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'neat': 1,\n",
      "          'sleightofhand': 1,\n",
      "          'trick': 1,\n",
      "          'theyd': 1,\n",
      "          'thinking': 1,\n",
      "          'story': 1,\n",
      "          'going': 1,\n",
      "          'reveal': 1,\n",
      "          'real': 1,\n",
      "          'direction': 1,\n",
      "          'delightfully': 1,\n",
      "          'fashion': 1,\n",
      "          'contrast': 1,\n",
      "          'folks': 1,\n",
      "          'looked': 1,\n",
      "          'saw': 1,\n",
      "          'surface': 1,\n",
      "          'grossness': 1,\n",
      "          'missing': 1,\n",
      "          'subtle': 1,\n",
      "          'machinations': 1,\n",
      "          'nhaving': 1,\n",
      "          'produced': 1,\n",
      "          'guys': 1,\n",
      "          'bigger': 1,\n",
      "          'disappointment': 1,\n",
      "          'pile': 1,\n",
      "          'shots': 1,\n",
      "          'race': 1,\n",
      "          'midgets': 1,\n",
      "          'albinos': 1,\n",
      "          'bathroom': 1,\n",
      "          'come': 1,\n",
      "          'fresh': 1,\n",
      "          'comes': 1,\n",
      "          'rote': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'forced': 1,\n",
      "          'drive': 1,\n",
      "          'alleged': 1,\n",
      "          'fugitive': 1,\n",
      "          'p': 1,\n",
      "          'waters': 1,\n",
      "          'renee': 1,\n",
      "          'zellweger': 1,\n",
      "          'whos': 1,\n",
      "          'trouble': 1,\n",
      "          'anyone': 1,\n",
      "          'knows': 1,\n",
      "          'back': 1,\n",
      "          'york': 1,\n",
      "          'ending': 1,\n",
      "          'thats': 1,\n",
      "          'predictable': 1,\n",
      "          'getgo': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'nyeah': 1,\n",
      "          'introduce': 1,\n",
      "          'scores': 1,\n",
      "          'different': 1,\n",
      "          'characters': 1,\n",
      "          'manage': 1,\n",
      "          'already': 1,\n",
      "          'expected': 1,\n",
      "          'might': 1,\n",
      "          'ncompared': 1,\n",
      "          'curveballs': 1,\n",
      "          'used': 1,\n",
      "          'stuff': 1,\n",
      "          'almost': 1,\n",
      "          'softtossed': 1,\n",
      "          'presenting': 1,\n",
      "          'obvious': 1,\n",
      "          'grossout': 1,\n",
      "          'loses': 1,\n",
      "          'shock': 1,\n",
      "          'value': 1,\n",
      "          'longer': 1,\n",
      "          'gross': 1,\n",
      "          'milked': 1,\n",
      "          'effectiveness': 1,\n",
      "          'dry': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'subplot': 1,\n",
      "          'sons': 1,\n",
      "          'anthony': 1,\n",
      "          'anderson': 1,\n",
      "          'mongo': 1,\n",
      "          'brownlee': 1,\n",
      "          'jerod': 1,\n",
      "          'mixon': 1,\n",
      "          'incongruity': 1,\n",
      "          'burly': 1,\n",
      "          'men': 1,\n",
      "          'discussing': 1,\n",
      "          'higher': 1,\n",
      "          'math': 1,\n",
      "          'ghetto': 1,\n",
      "          'whitebread': 1,\n",
      "          'mouthing': 1,\n",
      "          'said': 1,\n",
      "          'toopleasant': 1,\n",
      "          'smile': 1,\n",
      "          'face': 1,\n",
      "          'end': 1,\n",
      "          'theyre': 1,\n",
      "          'schitck': 1,\n",
      "          'elevated': 1,\n",
      "          'funnier': 1,\n",
      "          'level': 1,\n",
      "          'dropped': 1,\n",
      "          'either': 1,\n",
      "          'nthats': 1,\n",
      "          'bad': 1,\n",
      "          'ceases': 1,\n",
      "          'amusing': 1,\n",
      "          'halfway': 1,\n",
      "          'reeks': 1,\n",
      "          'wasted': 1,\n",
      "          'opportunities': 1,\n",
      "          'nthere': 1,\n",
      "          'ought': 1,\n",
      "          'focus': 1,\n",
      "          'react': 1,\n",
      "          'deals': 1,\n",
      "          'consequences': 1,\n",
      "          'hanks': 1,\n",
      "          'happen': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'learns': 1,\n",
      "          'early': 1,\n",
      "          'opportunity': 1,\n",
      "          'surprised': 1,\n",
      "          'throws': 1,\n",
      "          'looks': 1,\n",
      "          'patented': 1,\n",
      "          'curve': 1,\n",
      "          'scene': 1,\n",
      "          'towards': 1,\n",
      "          'midway': 1,\n",
      "          'point': 1,\n",
      "          'albino': 1,\n",
      "          'companion': 1,\n",
      "          'pick': 1,\n",
      "          'called': 1,\n",
      "          'appropriately': 1,\n",
      "          'whitey': 1,\n",
      "          'go': 1,\n",
      "          'anywhere': 1,\n",
      "          'instead': 1,\n",
      "          'leaving': 1,\n",
      "          'thread': 1,\n",
      "          'twisting': 1,\n",
      "          'awkwardly': 1,\n",
      "          'tying': 1,\n",
      "          'climax': 1,\n",
      "          'gifted': 1,\n",
      "          'comedian': 1,\n",
      "          'physically': 1,\n",
      "          'vocally': 1,\n",
      "          'left': 1,\n",
      "          'much': 1,\n",
      "          'except': 1,\n",
      "          'contort': 1,\n",
      "          'similar': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'great': 1,\n",
      "          'showcase': 1,\n",
      "          'flexibility': 1,\n",
      "          'splitsecond': 1,\n",
      "          'terribly': 1,\n",
      "          'ncarrey': 1,\n",
      "          'stunts': 1,\n",
      "          'expect': 1,\n",
      "          'give': 1,\n",
      "          'else': 1,\n",
      "          'situations': 1,\n",
      "          'must': 1,\n",
      "          'perform': 1,\n",
      "          'arent': 1,\n",
      "          'set': 1,\n",
      "          'meaningful': 1,\n",
      "          'nperhaps': 1,\n",
      "          'solace': 1,\n",
      "          'fact': 1,\n",
      "          'actors': 1,\n",
      "          'fare': 1,\n",
      "          'nzellwegers': 1,\n",
      "          'strong': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'may': 1,\n",
      "          'part': 1,\n",
      "          'fantasy': 1,\n",
      "          'also': 1,\n",
      "          'intelligent': 1,\n",
      "          'strongwilled': 1,\n",
      "          'nirene': 1,\n",
      "          'particular': 1,\n",
      "          'makes': 1,\n",
      "          'clear': 1,\n",
      "          'shes': 1,\n",
      "          'ditzy': 1,\n",
      "          'clever': 1,\n",
      "          'neither': 1,\n",
      "          'nas': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'latch': 1,\n",
      "          'onto': 1,\n",
      "          'sane': 1,\n",
      "          'person': 1,\n",
      "          'nchris': 1,\n",
      "          'cooper': 1,\n",
      "          'playing': 1,\n",
      "          'note': 1,\n",
      "          'corrupt': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'straightlaced': 1,\n",
      "          'nhe': 1,\n",
      "          'others': 1,\n",
      "          'absolutely': 1,\n",
      "          'nafter': 1,\n",
      "          'viewing': 1,\n",
      "          'shapeless': 1,\n",
      "          'mess': 1,\n",
      "          'eventually': 1,\n",
      "          'dissolved': 1,\n",
      "          'wondering': 1,\n",
      "          'outsmarted': 1,\n",
      "          'nmaybe': 1,\n",
      "          'long': 1,\n",
      "          'wise': 1,\n",
      "          'shocked': 1,\n",
      "          'find': 1,\n",
      "          'ways': 1,\n",
      "          'grown': 1,\n",
      "          'attuned': 1,\n",
      "          'style': 1,\n",
      "          'nif': 1,\n",
      "          'indeed': 1,\n",
      "          'smart': 1,\n",
      "          'theyll': 1,\n",
      "          'rebound': 1,\n",
      "          'fine': 1,\n",
      "          'happens': 1,\n",
      "          'though': 1,\n",
      "          'consider': 1,\n",
      "          'highcaliber': 1,\n",
      "          'misfire': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chinese': 7,\n",
      "          'snipes': 6,\n",
      "          'action': 6,\n",
      "          'film': 5,\n",
      "          'wesley': 3,\n",
      "          'nthe': 3,\n",
      "          'ni': 3,\n",
      "          'also': 3,\n",
      "          'stone': 3,\n",
      "          'bad': 2,\n",
      "          'roles': 2,\n",
      "          'another': 2,\n",
      "          'ugly': 2,\n",
      "          'terrible': 2,\n",
      "          'like': 2,\n",
      "          'rising': 2,\n",
      "          'sun': 2,\n",
      "          'un': 2,\n",
      "          'conspiracy': 2,\n",
      "          'ends': 2,\n",
      "          'films': 2,\n",
      "          'one': 2,\n",
      "          'script': 2,\n",
      "          'violent': 2,\n",
      "          'angle': 2,\n",
      "          'else': 2,\n",
      "          'new': 2,\n",
      "          'couple': 2,\n",
      "          'master': 1,\n",
      "          'selecting': 1,\n",
      "          'nmurder': 1,\n",
      "          '1600': 1,\n",
      "          'u': 1,\n",
      "          'marshals': 1,\n",
      "          'money': 1,\n",
      "          'train': 1,\n",
      "          'drop': 1,\n",
      "          'zone': 1,\n",
      "          'boiling': 1,\n",
      "          'point': 1,\n",
      "          'ultimate': 1,\n",
      "          'camp': 1,\n",
      "          'passenger': 1,\n",
      "          '57': 1,\n",
      "          'art': 1,\n",
      "          'war': 1,\n",
      "          'entry': 1,\n",
      "          'unique': 1,\n",
      "          'category': 1,\n",
      "          'nultimately': 1,\n",
      "          'little': 1,\n",
      "          'ridiculous': 1,\n",
      "          'plot': 1,\n",
      "          'believable': 1,\n",
      "          'warren': 1,\n",
      "          'report': 1,\n",
      "          'violence': 1,\n",
      "          'would': 1,\n",
      "          'made': 1,\n",
      "          'peckinpah': 1,\n",
      "          'cringe': 1,\n",
      "          'acting': 1,\n",
      "          'blist': 1,\n",
      "          'actors': 1,\n",
      "          'michael': 1,\n",
      "          'biehn': 1,\n",
      "          'anne': 1,\n",
      "          'archer': 1,\n",
      "          'noddly': 1,\n",
      "          'feels': 1,\n",
      "          'undiscovered': 1,\n",
      "          'sequel': 1,\n",
      "          'masterpiece': 1,\n",
      "          'movie': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'convenient': 1,\n",
      "          'story': 1,\n",
      "          'special': 1,\n",
      "          'operative': 1,\n",
      "          'caught': 1,\n",
      "          'secret': 1,\n",
      "          'murder': 1,\n",
      "          'involving': 1,\n",
      "          'ambassador': 1,\n",
      "          'triad': 1,\n",
      "          'brotherhood': 1,\n",
      "          'rich': 1,\n",
      "          'businessman': 1,\n",
      "          'played': 1,\n",
      "          'guy': 1,\n",
      "          'caryhiroyuki': 1,\n",
      "          'tagawa': 1,\n",
      "          'interpreter': 1,\n",
      "          'inexplicably': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'confusion': 1,\n",
      "          'boatload': 1,\n",
      "          'immigrants': 1,\n",
      "          'trying': 1,\n",
      "          'register': 1,\n",
      "          'ellis': 1,\n",
      "          'island': 1,\n",
      "          'say': 1,\n",
      "          'blatant': 1,\n",
      "          'ripoff': 1,\n",
      "          'matrix': 1,\n",
      "          'john': 1,\n",
      "          'woos': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'combined': 1,\n",
      "          'really': 1,\n",
      "          'loss': 1,\n",
      "          'figure': 1,\n",
      "          'gumption': 1,\n",
      "          'star': 1,\n",
      "          'dud': 1,\n",
      "          'act': 1,\n",
      "          'producers': 1,\n",
      "          'usually': 1,\n",
      "          'enjoy': 1,\n",
      "          'movies': 1,\n",
      "          'though': 1,\n",
      "          'dramatic': 1,\n",
      "          'better': 1,\n",
      "          'show': 1,\n",
      "          'creativity': 1,\n",
      "          'actor': 1,\n",
      "          'flashiness': 1,\n",
      "          'nsimply': 1,\n",
      "          'amazed': 1,\n",
      "          'inane': 1,\n",
      "          'filled': 1,\n",
      "          'cliches': 1,\n",
      "          'extremely': 1,\n",
      "          'sequences': 1,\n",
      "          'ndirector': 1,\n",
      "          'christian': 1,\n",
      "          'duguay': 1,\n",
      "          'screamers': 1,\n",
      "          'strange': 1,\n",
      "          'attraction': 1,\n",
      "          'viciousness': 1,\n",
      "          'acts': 1,\n",
      "          'showing': 1,\n",
      "          'splattering': 1,\n",
      "          'brains': 1,\n",
      "          'people': 1,\n",
      "          'impaled': 1,\n",
      "          'broken': 1,\n",
      "          'shards': 1,\n",
      "          'glass': 1,\n",
      "          'lots': 1,\n",
      "          'gargling': 1,\n",
      "          'gagging': 1,\n",
      "          'blood': 1,\n",
      "          'sprays': 1,\n",
      "          'everywhere': 1,\n",
      "          'nit': 1,\n",
      "          'sickens': 1,\n",
      "          'know': 1,\n",
      "          'oliver': 1,\n",
      "          'greatest': 1,\n",
      "          'directors': 1,\n",
      "          'working': 1,\n",
      "          'today': 1,\n",
      "          'hand': 1,\n",
      "          'producing': 1,\n",
      "          'monstrosity': 1,\n",
      "          'guess': 1,\n",
      "          'sold': 1,\n",
      "          'chose': 1,\n",
      "          'read': 1,\n",
      "          'watch': 1,\n",
      "          'dailies': 1,\n",
      "          'involved': 1,\n",
      "          'casting': 1,\n",
      "          'anything': 1,\n",
      "          'hed': 1,\n",
      "          'filing': 1,\n",
      "          'court': 1,\n",
      "          'order': 1,\n",
      "          'remove': 1,\n",
      "          'name': 1,\n",
      "          'credits': 1,\n",
      "          'nits': 1,\n",
      "          'seems': 1,\n",
      "          'evident': 1,\n",
      "          'russkies': 1,\n",
      "          'bosom': 1,\n",
      "          'buddies': 1,\n",
      "          'middle': 1,\n",
      "          'eastern': 1,\n",
      "          'terrorist': 1,\n",
      "          'beaten': 1,\n",
      "          'death': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'international': 1,\n",
      "          'enemies': 1,\n",
      "          'hollywood': 1,\n",
      "          'communist': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'next': 1,\n",
      "          'months': 1,\n",
      "          'even': 1,\n",
      "          'conspiracymartialarts': 1,\n",
      "          'flicks': 1,\n",
      "          'going': 1,\n",
      "          'popping': 1,\n",
      "          'local': 1,\n",
      "          'multiplex': 1,\n",
      "          'nhopefully': 1,\n",
      "          'wont': 1,\n",
      "          'include': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'job': 5,\n",
      "          'darryl': 4,\n",
      "          'film': 4,\n",
      "          'senseless': 3,\n",
      "          'wayans': 3,\n",
      "          'nthe': 3,\n",
      "          'one': 3,\n",
      "          'anything': 3,\n",
      "          'try': 2,\n",
      "          'nin': 2,\n",
      "          'simply': 2,\n",
      "          'may': 2,\n",
      "          'nas': 2,\n",
      "          'senses': 2,\n",
      "          'marlon': 2,\n",
      "          'humor': 2,\n",
      "          'theres': 2,\n",
      "          'much': 2,\n",
      "          'plot': 2,\n",
      "          'entire': 2,\n",
      "          'completely': 2,\n",
      "          'nand': 2,\n",
      "          'darryls': 2,\n",
      "          'get': 2,\n",
      "          'ground': 2,\n",
      "          'prime': 1,\n",
      "          'example': 1,\n",
      "          'happen': 1,\n",
      "          'push': 1,\n",
      "          'onejoke': 1,\n",
      "          'concept': 1,\n",
      "          'bit': 1,\n",
      "          'far': 1,\n",
      "          'ndirector': 1,\n",
      "          'penelope': 1,\n",
      "          'spheeris': 1,\n",
      "          'stranger': 1,\n",
      "          'subjected': 1,\n",
      "          'audiences': 1,\n",
      "          'tortures': 1,\n",
      "          'beverly': 1,\n",
      "          'hillbillies': 1,\n",
      "          'nmarlon': 1,\n",
      "          'stars': 1,\n",
      "          'witherspoon': 1,\n",
      "          'college': 1,\n",
      "          'senior': 1,\n",
      "          'vying': 1,\n",
      "          'lucrative': 1,\n",
      "          'prominent': 1,\n",
      "          'brokerage': 1,\n",
      "          'nhowever': 1,\n",
      "          'lacks': 1,\n",
      "          'advantages': 1,\n",
      "          'chief': 1,\n",
      "          'opposition': 1,\n",
      "          'scott': 1,\n",
      "          'thorpe': 1,\n",
      "          'david': 1,\n",
      "          'spade': 1,\n",
      "          'smarmy': 1,\n",
      "          'sort': 1,\n",
      "          'role': 1,\n",
      "          'deliver': 1,\n",
      "          'sleep': 1,\n",
      "          'athletic': 1,\n",
      "          'record': 1,\n",
      "          'sponsorship': 1,\n",
      "          'fraternity': 1,\n",
      "          'wealthy': 1,\n",
      "          'family': 1,\n",
      "          'back': 1,\n",
      "          'fact': 1,\n",
      "          'work': 1,\n",
      "          'four': 1,\n",
      "          'jobs': 1,\n",
      "          'make': 1,\n",
      "          'ends': 1,\n",
      "          'meet': 1,\n",
      "          'nbut': 1,\n",
      "          'light': 1,\n",
      "          'end': 1,\n",
      "          'tunnel': 1,\n",
      "          'nhe': 1,\n",
      "          'signs': 1,\n",
      "          'human': 1,\n",
      "          'guinea': 1,\n",
      "          'pig': 1,\n",
      "          'neurological': 1,\n",
      "          'experiment': 1,\n",
      "          'run': 1,\n",
      "          'universitys': 1,\n",
      "          'dr': 1,\n",
      "          'wheedon': 1,\n",
      "          'brad': 1,\n",
      "          'dourif': 1,\n",
      "          'result': 1,\n",
      "          'magnified': 1,\n",
      "          'tenfold': 1,\n",
      "          'nusing': 1,\n",
      "          'newfound': 1,\n",
      "          'abilities': 1,\n",
      "          'sets': 1,\n",
      "          'complete': 1,\n",
      "          'pursuit': 1,\n",
      "          'unaware': 1,\n",
      "          'disadvantageous': 1,\n",
      "          'sideeffects': 1,\n",
      "          'super': 1,\n",
      "          'nnaturally': 1,\n",
      "          'plays': 1,\n",
      "          'comedy': 1,\n",
      "          'full': 1,\n",
      "          'throttle': 1,\n",
      "          'giving': 1,\n",
      "          'jim': 1,\n",
      "          'carreyish': 1,\n",
      "          'amounts': 1,\n",
      "          'physical': 1,\n",
      "          'problem': 1,\n",
      "          'aside': 1,\n",
      "          'genuinely': 1,\n",
      "          'inspired': 1,\n",
      "          'bits': 1,\n",
      "          'thats': 1,\n",
      "          'funny': 1,\n",
      "          'central': 1,\n",
      "          'gag': 1,\n",
      "          'pads': 1,\n",
      "          'rest': 1,\n",
      "          'length': 1,\n",
      "          'rather': 1,\n",
      "          'obvious': 1,\n",
      "          'lowbrow': 1,\n",
      "          'nthere': 1,\n",
      "          'obviously': 1,\n",
      "          'wasnt': 1,\n",
      "          'thought': 1,\n",
      "          'put': 1,\n",
      "          'selection': 1,\n",
      "          'process': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ni': 1,\n",
      "          'mean': 1,\n",
      "          'emphasis': 1,\n",
      "          'extracurricular': 1,\n",
      "          'activities': 1,\n",
      "          'going': 1,\n",
      "          'come': 1,\n",
      "          'singleelimination': 1,\n",
      "          'quiz': 1,\n",
      "          'anyhow': 1,\n",
      "          'offered': 1,\n",
      "          'economics': 1,\n",
      "          'majors': 1,\n",
      "          'semester': 1,\n",
      "          'nto': 1,\n",
      "          'give': 1,\n",
      "          'credit': 1,\n",
      "          'create': 1,\n",
      "          'secondary': 1,\n",
      "          'joke': 1,\n",
      "          'roommate': 1,\n",
      "          'tim': 1,\n",
      "          'laflour': 1,\n",
      "          'matthew': 1,\n",
      "          'lillard': 1,\n",
      "          'napparently': 1,\n",
      "          'supposed': 1,\n",
      "          'faddish': 1,\n",
      "          'never': 1,\n",
      "          'leaving': 1,\n",
      "          'piercing': 1,\n",
      "          'phase': 1,\n",
      "          'throughout': 1,\n",
      "          'movie': 1,\n",
      "          'nhis': 1,\n",
      "          'intervention': 1,\n",
      "          'scenes': 1,\n",
      "          'however': 1,\n",
      "          'provide': 1,\n",
      "          'rare': 1,\n",
      "          'welcome': 1,\n",
      "          'laugh': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'always': 1,\n",
      "          'pathetically': 1,\n",
      "          'tacked': 1,\n",
      "          'onto': 1,\n",
      "          'comedies': 1,\n",
      "          'like': 1,\n",
      "          'case': 1,\n",
      "          'object': 1,\n",
      "          'amor': 1,\n",
      "          'janice': 1,\n",
      "          'tamara': 1,\n",
      "          'taylor': 1,\n",
      "          'fellow': 1,\n",
      "          'student': 1,\n",
      "          'wont': 1,\n",
      "          'gains': 1,\n",
      "          'supersenses': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'romance': 1,\n",
      "          'extraneous': 1,\n",
      "          'adds': 1,\n",
      "          'little': 1,\n",
      "          'nthis': 1,\n",
      "          'desperately': 1,\n",
      "          'needed': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'nbe': 1,\n",
      "          'good': 1,\n",
      "          'jokes': 1,\n",
      "          'funnier': 1,\n",
      "          'ones': 1,\n",
      "          'strong': 1,\n",
      "          'character': 1,\n",
      "          'two': 1,\n",
      "          'would': 1,\n",
      "          'helped': 1,\n",
      "          'manic': 1,\n",
      "          'exuberant': 1,\n",
      "          'mugging': 1,\n",
      "          'world': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jimmy': 8,\n",
      "          'bachelor': 5,\n",
      "          'nits': 5,\n",
      "          'nthe': 5,\n",
      "          'anne': 5,\n",
      "          'get': 4,\n",
      "          'attractive': 4,\n",
      "          'pleasant': 4,\n",
      "          'even': 4,\n",
      "          'watching': 3,\n",
      "          'romantic': 3,\n",
      "          'one': 3,\n",
      "          'thats': 3,\n",
      "          'many': 3,\n",
      "          'films': 3,\n",
      "          'guy': 3,\n",
      "          'married': 3,\n",
      "          'like': 3,\n",
      "          'problem': 3,\n",
      "          'comedy': 2,\n",
      "          'film': 2,\n",
      "          'would': 2,\n",
      "          'wrong': 2,\n",
      "          'circa': 2,\n",
      "          '1999': 2,\n",
      "          'nin': 2,\n",
      "          'point': 2,\n",
      "          'story': 2,\n",
      "          'theyre': 2,\n",
      "          'case': 2,\n",
      "          'exhibit': 2,\n",
      "          'odonnell': 2,\n",
      "          'years': 2,\n",
      "          'leaves': 2,\n",
      "          'stands': 2,\n",
      "          '30th': 2,\n",
      "          'birthday': 2,\n",
      "          'couple': 2,\n",
      "          'jimmys': 2,\n",
      "          'among': 2,\n",
      "          'better': 2,\n",
      "          'kind': 2,\n",
      "          'standard': 2,\n",
      "          'nand': 2,\n",
      "          'never': 2,\n",
      "          'theres': 2,\n",
      "          'anything': 2,\n",
      "          'dont': 2,\n",
      "          'potential': 2,\n",
      "          'set': 2,\n",
      "          'pieces': 2,\n",
      "          'conclusion': 2,\n",
      "          'real': 2,\n",
      "          'warmnfuzzy': 2,\n",
      "          'came': 1,\n",
      "          'epiphany': 1,\n",
      "          'innocuousenoughonthesurface': 1,\n",
      "          'sort': 1,\n",
      "          'expect': 1,\n",
      "          'achieve': 1,\n",
      "          'moment': 1,\n",
      "          'clarity': 1,\n",
      "          'nonetheless': 1,\n",
      "          'ni': 1,\n",
      "          'sat': 1,\n",
      "          'marshmallow': 1,\n",
      "          'movie': 1,\n",
      "          'unfold': 1,\n",
      "          'suddenly': 1,\n",
      "          'realized': 1,\n",
      "          'ridiculously': 1,\n",
      "          'entire': 1,\n",
      "          'genre': 1,\n",
      "          'word': 1,\n",
      "          'thing': 1,\n",
      "          'movies': 1,\n",
      "          'writing': 1,\n",
      "          'nmore': 1,\n",
      "          'refusal': 1,\n",
      "          'acknowledge': 1,\n",
      "          'characterizations': 1,\n",
      "          'matter': 1,\n",
      "          'youre': 1,\n",
      "          'telling': 1,\n",
      "          'relationship': 1,\n",
      "          'merely': 1,\n",
      "          'latest': 1,\n",
      "          'long': 1,\n",
      "          'line': 1,\n",
      "          'expected': 1,\n",
      "          'dewyeyed': 1,\n",
      "          'pairing': 1,\n",
      "          'people': 1,\n",
      "          'particular': 1,\n",
      "          'shannon': 1,\n",
      "          'chris': 1,\n",
      "          'single': 1,\n",
      "          'friends': 1,\n",
      "          'slowly': 1,\n",
      "          'surely': 1,\n",
      "          'sucked': 1,\n",
      "          'marriage': 1,\n",
      "          'scary': 1,\n",
      "          'notion': 1,\n",
      "          'though': 1,\n",
      "          'dearly': 1,\n",
      "          'loves': 1,\n",
      "          'b': 1,\n",
      "          'renee': 1,\n",
      "          'zellweger': 1,\n",
      "          'girlfriend': 1,\n",
      "          'three': 1,\n",
      "          'nconvinced': 1,\n",
      "          'despite': 1,\n",
      "          'reservations': 1,\n",
      "          'time': 1,\n",
      "          'sh': 1,\n",
      "          'pot': 1,\n",
      "          'proposes': 1,\n",
      "          'badly': 1,\n",
      "          'nanne': 1,\n",
      "          'refuses': 1,\n",
      "          'odd': 1,\n",
      "          'position': 1,\n",
      "          'eccentric': 1,\n",
      "          'grandfather': 1,\n",
      "          'peter': 1,\n",
      "          'ustinov': 1,\n",
      "          'dies': 1,\n",
      "          'specific': 1,\n",
      "          'video': 1,\n",
      "          'njimmy': 1,\n",
      "          'inhereit': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          '6': 1,\n",
      "          '05': 1,\n",
      "          'p': 1,\n",
      "          'stays': 1,\n",
      "          '10': 1,\n",
      "          'produces': 1,\n",
      "          'child': 1,\n",
      "          'nthere': 1,\n",
      "          'minor': 1,\n",
      "          'problems': 1,\n",
      "          '1': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          '2': 1,\n",
      "          'nowhere': 1,\n",
      "          'found': 1,\n",
      "          'meaning': 1,\n",
      "          'find': 1,\n",
      "          'another': 1,\n",
      "          'willing': 1,\n",
      "          'bride': 1,\n",
      "          'exgirlfriends': 1,\n",
      "          'wacky': 1,\n",
      "          'brewsters': 1,\n",
      "          'millionsesque': 1,\n",
      "          'premise': 1,\n",
      "          'acknowledged': 1,\n",
      "          'selfaware': 1,\n",
      "          'lines': 1,\n",
      "          'dialogue': 1,\n",
      "          'shallow': 1,\n",
      "          'materialistic': 1,\n",
      "          'learns': 1,\n",
      "          'really': 1,\n",
      "          'matters': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'werent': 1,\n",
      "          'already': 1,\n",
      "          'worldclass': 1,\n",
      "          'altruist': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'steve': 1,\n",
      "          'cohen': 1,\n",
      "          'slides': 1,\n",
      "          'draconian': 1,\n",
      "          'condition': 1,\n",
      "          'doesnt': 1,\n",
      "          'lose': 1,\n",
      "          'money': 1,\n",
      "          'family': 1,\n",
      "          'billiard': 1,\n",
      "          'table': 1,\n",
      "          'buisness': 1,\n",
      "          'sold': 1,\n",
      "          'costing': 1,\n",
      "          'hudreds': 1,\n",
      "          'jobs': 1,\n",
      "          'nfrom': 1,\n",
      "          'outset': 1,\n",
      "          'motivation': 1,\n",
      "          'isnt': 1,\n",
      "          'cash': 1,\n",
      "          'livelihoods': 1,\n",
      "          'devoted': 1,\n",
      "          'employees': 1,\n",
      "          'almost': 1,\n",
      "          'embarrassing': 1,\n",
      "          'marital': 1,\n",
      "          'misgivings': 1,\n",
      "          'play': 1,\n",
      "          'role': 1,\n",
      "          'bachelors': 1,\n",
      "          'plot': 1,\n",
      "          'development': 1,\n",
      "          'nby': 1,\n",
      "          'human': 1,\n",
      "          'impossibly': 1,\n",
      "          'selfless': 1,\n",
      "          'essence': 1,\n",
      "          'gutlessness': 1,\n",
      "          'endemic': 1,\n",
      "          'fear': 1,\n",
      "          'giving': 1,\n",
      "          'characters': 1,\n",
      "          'flaws': 1,\n",
      "          'overcome': 1,\n",
      "          'way': 1,\n",
      "          'happiness': 1,\n",
      "          'ntheres': 1,\n",
      "          'tension': 1,\n",
      "          'two': 1,\n",
      "          'starcrossed': 1,\n",
      "          'lovers': 1,\n",
      "          'sense': 1,\n",
      "          'remotely': 1,\n",
      "          'significant': 1,\n",
      "          'stake': 1,\n",
      "          'blandly': 1,\n",
      "          'nice': 1,\n",
      "          'couldnt': 1,\n",
      "          'pull': 1,\n",
      "          'randy': 1,\n",
      "          'cad': 1,\n",
      "          'tried': 1,\n",
      "          'filmmakers': 1,\n",
      "          'let': 1,\n",
      "          'zellwegers': 1,\n",
      "          'may': 1,\n",
      "          'issues': 1,\n",
      "          'sickeningly': 1,\n",
      "          'affectionate': 1,\n",
      "          'parents': 1,\n",
      "          'impossible': 1,\n",
      "          'live': 1,\n",
      "          'dares': 1,\n",
      "          'make': 1,\n",
      "          'woman': 1,\n",
      "          'lightly': 1,\n",
      "          'wronged': 1,\n",
      "          'forget': 1,\n",
      "          'seeing': 1,\n",
      "          'enough': 1,\n",
      "          'together': 1,\n",
      "          'feel': 1,\n",
      "          'invested': 1,\n",
      "          'reconciliation': 1,\n",
      "          'parade': 1,\n",
      "          'sitcom': 1,\n",
      "          'damned': 1,\n",
      "          'funny': 1,\n",
      "          'since': 1,\n",
      "          'us': 1,\n",
      "          'blissfully': 1,\n",
      "          'sweet': 1,\n",
      "          'foregone': 1,\n",
      "          'nill': 1,\n",
      "          'admit': 1,\n",
      "          'amusing': 1,\n",
      "          'including': 1,\n",
      "          'ustinovs': 1,\n",
      "          'rantings': 1,\n",
      "          'procreation': 1,\n",
      "          'restaurant': 1,\n",
      "          'fulltobursting': 1,\n",
      "          'men': 1,\n",
      "          'popping': 1,\n",
      "          'questions': 1,\n",
      "          'champagne': 1,\n",
      "          'corks': 1,\n",
      "          'nfar': 1,\n",
      "          'either': 1,\n",
      "          'tedious': 1,\n",
      "          'downright': 1,\n",
      "          'ghastly': 1,\n",
      "          'shudderinducing': 1,\n",
      "          'sight': 1,\n",
      "          'brooke': 1,\n",
      "          'shields': 1,\n",
      "          'icy': 1,\n",
      "          'fortunehunter': 1,\n",
      "          'hideous': 1,\n",
      "          'collection': 1,\n",
      "          'stereotypes': 1,\n",
      "          'hundreds': 1,\n",
      "          'brides': 1,\n",
      "          'gather': 1,\n",
      "          'church': 1,\n",
      "          'nyoure': 1,\n",
      "          'going': 1,\n",
      "          'raucous': 1,\n",
      "          'belly': 1,\n",
      "          'laughs': 1,\n",
      "          'nnor': 1,\n",
      "          'know': 1,\n",
      "          'exactly': 1,\n",
      "          'leading': 1,\n",
      "          'beginning': 1,\n",
      "          'middle': 1,\n",
      "          'equally': 1,\n",
      "          'spark': 1,\n",
      "          'energy': 1,\n",
      "          'humanity': 1,\n",
      "          'emotional': 1,\n",
      "          'pudding': 1,\n",
      "          'guaranteed': 1,\n",
      "          'offend': 1,\n",
      "          'consumers': 1,\n",
      "          'digestions': 1,\n",
      "          'nweve': 1,\n",
      "          'reached': 1,\n",
      "          'proxies': 1,\n",
      "          'cinematic': 1,\n",
      "          'wish': 1,\n",
      "          'fulfillment': 1,\n",
      "          'pulse': 1,\n",
      "          'love': 1,\n",
      "          'mannequins': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'movie': 6,\n",
      "          'phone': 4,\n",
      "          'emotional': 4,\n",
      "          'one': 4,\n",
      "          'like': 3,\n",
      "          'basically': 3,\n",
      "          'features': 3,\n",
      "          'three': 3,\n",
      "          'sisters': 3,\n",
      "          'acting': 3,\n",
      "          'meg': 3,\n",
      "          'lot': 3,\n",
      "          'every': 3,\n",
      "          'get': 2,\n",
      "          'people': 2,\n",
      "          'loud': 2,\n",
      "          'around': 2,\n",
      "          'rating': 2,\n",
      "          'annoying': 2,\n",
      "          'ladies': 2,\n",
      "          'lines': 2,\n",
      "          'old': 2,\n",
      "          'dad': 2,\n",
      "          'sharing': 2,\n",
      "          'conversations': 2,\n",
      "          'provides': 2,\n",
      "          'nand': 2,\n",
      "          'im': 2,\n",
      "          'ephron': 2,\n",
      "          'finally': 2,\n",
      "          'level': 2,\n",
      "          'nthe': 2,\n",
      "          'moment': 2,\n",
      "          'character': 2,\n",
      "          'christmas': 2,\n",
      "          'thats': 2,\n",
      "          'characters': 2,\n",
      "          'stars': 2,\n",
      "          'mess': 2,\n",
      "          'something': 2,\n",
      "          'put': 2,\n",
      "          'please': 2,\n",
      "          'cause': 2,\n",
      "          'best': 2,\n",
      "          'unless': 2,\n",
      "          'ndo': 1,\n",
      "          'annoyed': 1,\n",
      "          'seeing': 1,\n",
      "          'talk': 1,\n",
      "          'cellulars': 1,\n",
      "          'public': 1,\n",
      "          'places': 1,\n",
      "          'shouting': 1,\n",
      "          'giving': 1,\n",
      "          'ratts': 1,\n",
      "          'ass': 1,\n",
      "          'anyone': 1,\n",
      "          'wallowing': 1,\n",
      "          'selfimportance': 1,\n",
      "          'nwell': 1,\n",
      "          'likely': 1,\n",
      "          'agree': 1,\n",
      "          'since': 1,\n",
      "          'trio': 1,\n",
      "          'bickering': 1,\n",
      "          'away': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'make': 1,\n",
      "          'hug': 1,\n",
      "          'end': 1,\n",
      "          'naaaaaaaahhhh': 1,\n",
      "          'nplot': 1,\n",
      "          'grownup': 1,\n",
      "          'living': 1,\n",
      "          'separate': 1,\n",
      "          'lives': 1,\n",
      "          'begin': 1,\n",
      "          'reestablish': 1,\n",
      "          'communication': 1,\n",
      "          'dear': 1,\n",
      "          'falls': 1,\n",
      "          'ill': 1,\n",
      "          'ncritique': 1,\n",
      "          'would': 1,\n",
      "          'good': 1,\n",
      "          'wasnt': 1,\n",
      "          'fact': 1,\n",
      "          'got': 1,\n",
      "          'little': 1,\n",
      "          'say': 1,\n",
      "          'uncaring': 1,\n",
      "          'chockfull': 1,\n",
      "          'bad': 1,\n",
      "          'moments': 1,\n",
      "          'less': 1,\n",
      "          'satisfaction': 1,\n",
      "          'thirdrate': 1,\n",
      "          'afterschool': 1,\n",
      "          'special': 1,\n",
      "          'nice': 1,\n",
      "          'nhow': 1,\n",
      "          'junk': 1,\n",
      "          'gets': 1,\n",
      "          'made': 1,\n",
      "          'beyond': 1,\n",
      "          'happy': 1,\n",
      "          'dealt': 1,\n",
      "          'professional': 1,\n",
      "          'blow': 1,\n",
      "          'considering': 1,\n",
      "          'regurgitation': 1,\n",
      "          'material': 1,\n",
      "          'reached': 1,\n",
      "          'limit': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'true': 1,\n",
      "          'demonstrated': 1,\n",
      "          'ryans': 1,\n",
      "          'hugs': 1,\n",
      "          'swings': 1,\n",
      "          'tree': 1,\n",
      "          'nwow': 1,\n",
      "          'ndeep': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'tune': 1,\n",
      "          'played': 1,\n",
      "          'flick': 1,\n",
      "          'chimes': 1,\n",
      "          'background': 1,\n",
      "          'continue': 1,\n",
      "          'build': 1,\n",
      "          'bonds': 1,\n",
      "          'among': 1,\n",
      "          'another': 1,\n",
      "          'making': 1,\n",
      "          'reference': 1,\n",
      "          'quaint': 1,\n",
      "          'movies': 1,\n",
      "          'nstop': 1,\n",
      "          'ngonna': 1,\n",
      "          'cry': 1,\n",
      "          'nthis': 1,\n",
      "          'boring': 1,\n",
      "          'irritating': 1,\n",
      "          'watch': 1,\n",
      "          'plot': 1,\n",
      "          'selfish': 1,\n",
      "          'talking': 1,\n",
      "          'whole': 1,\n",
      "          'kind': 1,\n",
      "          'liking': 1,\n",
      "          'father': 1,\n",
      "          'really': 1,\n",
      "          'realizing': 1,\n",
      "          'error': 1,\n",
      "          'ways': 1,\n",
      "          '50s': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'expecting': 1,\n",
      "          'much': 1,\n",
      "          'whose': 1,\n",
      "          'television': 1,\n",
      "          'trailer': 1,\n",
      "          'ryan': 1,\n",
      "          'screaming': 1,\n",
      "          'two': 1,\n",
      "          'seconds': 1,\n",
      "          'big': 1,\n",
      "          'dog': 1,\n",
      "          'rolling': 1,\n",
      "          'eyes': 1,\n",
      "          'even': 1,\n",
      "          'surprised': 1,\n",
      "          'ineptitude': 1,\n",
      "          'came': 1,\n",
      "          'efforts': 1,\n",
      "          'forth': 1,\n",
      "          'nmeg': 1,\n",
      "          'fine': 1,\n",
      "          'sister': 1,\n",
      "          'cries': 1,\n",
      "          'looking': 1,\n",
      "          'adorable': 1,\n",
      "          'ever': 1,\n",
      "          'someone': 1,\n",
      "          'lisa': 1,\n",
      "          'kudrow': 1,\n",
      "          'inside': 1,\n",
      "          'permanent': 1,\n",
      "          'home': 1,\n",
      "          'limited': 1,\n",
      "          'range': 1,\n",
      "          'woman': 1,\n",
      "          'plays': 1,\n",
      "          'single': 1,\n",
      "          'movietv': 1,\n",
      "          'show': 1,\n",
      "          'shes': 1,\n",
      "          'nenough': 1,\n",
      "          'already': 1,\n",
      "          'diane': 1,\n",
      "          'keaton': 1,\n",
      "          'mustve': 1,\n",
      "          'spent': 1,\n",
      "          'time': 1,\n",
      "          'thinking': 1,\n",
      "          'role': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'amateurish': 1,\n",
      "          'nneither': 1,\n",
      "          'convinced': 1,\n",
      "          'scenes': 1,\n",
      "          'ngranted': 1,\n",
      "          'gave': 1,\n",
      "          'walter': 1,\n",
      "          'matthau': 1,\n",
      "          'probably': 1,\n",
      "          'points': 1,\n",
      "          'comes': 1,\n",
      "          'nall': 1,\n",
      "          'funny': 1,\n",
      "          'youre': 1,\n",
      "          'chuckle': 1,\n",
      "          'train': 1,\n",
      "          'wrecks': 1,\n",
      "          'zero': 1,\n",
      "          'drama': 1,\n",
      "          'consider': 1,\n",
      "          'moving': 1,\n",
      "          'generates': 1,\n",
      "          'absolutely': 1,\n",
      "          'emotion': 1,\n",
      "          'although': 1,\n",
      "          'tear': 1,\n",
      "          'hugged': 1,\n",
      "          'coffee': 1,\n",
      "          'machine': 1,\n",
      "          'ends': 1,\n",
      "          'perfectly': 1,\n",
      "          'pretentious': 1,\n",
      "          'note': 1,\n",
      "          'oh': 1,\n",
      "          'dont': 1,\n",
      "          'flour': 1,\n",
      "          'donna': 1,\n",
      "          'karan': 1,\n",
      "          'dress': 1,\n",
      "          'nugh': 1,\n",
      "          'ni': 1,\n",
      "          'suggest': 1,\n",
      "          'take': 1,\n",
      "          'husbandsboyfriends': 1,\n",
      "          'see': 1,\n",
      "          'pissed': 1,\n",
      "          'nthatll': 1,\n",
      "          'teach': 1,\n",
      "          'em': 1,\n",
      "          'noh': 1,\n",
      "          'incidentally': 1,\n",
      "          'mrs': 1,\n",
      "          'joblo': 1,\n",
      "          'also': 1,\n",
      "          'likened': 1,\n",
      "          'piece': 1,\n",
      "          'cow': 1,\n",
      "          'dung': 1,\n",
      "          'flailing': 1,\n",
      "          'wind': 1,\n",
      "          'nthen': 1,\n",
      "          'maybe': 1,\n",
      "          'nyoull': 1,\n",
      "          'n': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'godzilla': 8,\n",
      "          'movie': 5,\n",
      "          'plot': 4,\n",
      "          'nthe': 4,\n",
      "          '2000': 3,\n",
      "          'see': 3,\n",
      "          'ni': 3,\n",
      "          'good': 3,\n",
      "          'nits': 3,\n",
      "          'like': 3,\n",
      "          'blah': 3,\n",
      "          'though': 2,\n",
      "          'saw': 2,\n",
      "          'franchise': 2,\n",
      "          'nthis': 2,\n",
      "          'time': 2,\n",
      "          'bad': 2,\n",
      "          'dubbing': 2,\n",
      "          'line': 2,\n",
      "          'kids': 2,\n",
      "          'many': 2,\n",
      "          'murata': 2,\n",
      "          'confession': 1,\n",
      "          'neven': 1,\n",
      "          'junkiei': 1,\n",
      "          'eye': 1,\n",
      "          'beholder': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'watch': 1,\n",
      "          'moviesive': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'original': 1,\n",
      "          'godzillas': 1,\n",
      "          'n': 1,\n",
      "          'note': 1,\n",
      "          'sequel': 1,\n",
      "          'u': 1,\n",
      "          'released': 1,\n",
      "          '1998': 1,\n",
      "          'american': 1,\n",
      "          'release': 1,\n",
      "          '1999': 1,\n",
      "          'flick': 1,\n",
      "          'called': 1,\n",
      "          'gojira': 1,\n",
      "          'nisen': 1,\n",
      "          'mireniamu': 1,\n",
      "          'nso': 1,\n",
      "          'part': 1,\n",
      "          'excited': 1,\n",
      "          'drove': 1,\n",
      "          'local': 1,\n",
      "          'multiplex': 1,\n",
      "          '2000the': 1,\n",
      "          'latest': 1,\n",
      "          'entry': 1,\n",
      "          'almost': 1,\n",
      "          '50year': 1,\n",
      "          'old': 1,\n",
      "          'longawaited': 1,\n",
      "          'treat': 1,\n",
      "          'expecting': 1,\n",
      "          'goofy': 1,\n",
      "          'complete': 1,\n",
      "          'science': 1,\n",
      "          'fair': 1,\n",
      "          'level': 1,\n",
      "          'sets': 1,\n",
      "          'ludicrous': 1,\n",
      "          'last': 1,\n",
      "          'thing': 1,\n",
      "          'expected': 1,\n",
      "          'boring': 1,\n",
      "          'imagine': 1,\n",
      "          'theatre': 1,\n",
      "          'full': 1,\n",
      "          'felt': 1,\n",
      "          'nyou': 1,\n",
      "          'get': 1,\n",
      "          'theyre': 1,\n",
      "          'traits': 1,\n",
      "          'normally': 1,\n",
      "          'associated': 1,\n",
      "          'nbut': 1,\n",
      "          'sit': 1,\n",
      "          'snoozer': 1,\n",
      "          'organization': 1,\n",
      "          'rorschach': 1,\n",
      "          'blot': 1,\n",
      "          'deal': 1,\n",
      "          'wasnt': 1,\n",
      "          'willing': 1,\n",
      "          'accept': 1,\n",
      "          'nhiroshi': 1,\n",
      "          'kashiwabara': 1,\n",
      "          'waturu': 1,\n",
      "          'mimuras': 1,\n",
      "          'script': 1,\n",
      "          'crams': 1,\n",
      "          'way': 1,\n",
      "          'details': 1,\n",
      "          'cases': 1,\n",
      "          'fails': 1,\n",
      "          'follow': 1,\n",
      "          'maneuver': 1,\n",
      "          'disconcerting': 1,\n",
      "          'gives': 1,\n",
      "          'permanent': 1,\n",
      "          'logy': 1,\n",
      "          'weighty': 1,\n",
      "          'feel': 1,\n",
      "          'ngodzilla': 1,\n",
      "          'starts': 1,\n",
      "          'destroying': 1,\n",
      "          'power': 1,\n",
      "          'plants': 1,\n",
      "          'stops': 1,\n",
      "          'nwas': 1,\n",
      "          'whim': 1,\n",
      "          'na': 1,\n",
      "          'bold': 1,\n",
      "          'political': 1,\n",
      "          'statement': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'foe': 1,\n",
      "          'ancient': 1,\n",
      "          'meteor': 1,\n",
      "          'looks': 1,\n",
      "          'prudentials': 1,\n",
      "          'logo': 1,\n",
      "          'doesnt': 1,\n",
      "          'fight': 1,\n",
      "          'beast': 1,\n",
      "          'far': 1,\n",
      "          'east': 1,\n",
      "          'nno': 1,\n",
      "          'got': 1,\n",
      "          'lifesaving': 1,\n",
      "          'powers': 1,\n",
      "          'erase': 1,\n",
      "          'data': 1,\n",
      "          'japan': 1,\n",
      "          'desire': 1,\n",
      "          'clone': 1,\n",
      "          'ability': 1,\n",
      "          'become': 1,\n",
      "          'spaceship': 1,\n",
      "          'kind': 1,\n",
      "          'tentacled': 1,\n",
      "          'space': 1,\n",
      "          'creature': 1,\n",
      "          'ntheres': 1,\n",
      "          'battle': 1,\n",
      "          'head': 1,\n",
      "          'prediction': 1,\n",
      "          'unit': 1,\n",
      "          'takehiro': 1,\n",
      "          'slimy': 1,\n",
      "          'government': 1,\n",
      "          'official': 1,\n",
      "          'hiroshi': 1,\n",
      "          'abe': 1,\n",
      "          'handling': 1,\n",
      "          'personal': 1,\n",
      "          'issues': 1,\n",
      "          'nand': 1,\n",
      "          'theres': 1,\n",
      "          'plucky': 1,\n",
      "          'news': 1,\n",
      "          'photographer': 1,\n",
      "          'watching': 1,\n",
      "          'magnolia': 1,\n",
      "          'againexcept': 1,\n",
      "          'without': 1,\n",
      "          'writing': 1,\n",
      "          'keen': 1,\n",
      "          'sociological': 1,\n",
      "          'insight': 1,\n",
      "          'aimee': 1,\n",
      "          'mann': 1,\n",
      "          'songs': 1,\n",
      "          'nwhat': 1,\n",
      "          'waste': 1,\n",
      "          'nwhen': 1,\n",
      "          'talking': 1,\n",
      "          'points': 1,\n",
      "          'stop': 1,\n",
      "          'hurtling': 1,\n",
      "          'jobits': 1,\n",
      "          'entertaining': 1,\n",
      "          'goes': 1,\n",
      "          'easy': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'cheesy': 1,\n",
      "          'grandeur': 1,\n",
      "          'little': 1,\n",
      "          'sluggish': 1,\n",
      "          'nice': 1,\n",
      "          'awful': 1,\n",
      "          'sounding': 1,\n",
      "          'hes': 1,\n",
      "          'constant': 1,\n",
      "          'need': 1,\n",
      "          'cough': 1,\n",
      "          'drop': 1,\n",
      "          'nas': 1,\n",
      "          'dialogue': 1,\n",
      "          'one': 1,\n",
      "          'summarizes': 1,\n",
      "          'goofiness': 1,\n",
      "          'factor': 1,\n",
      "          'anyone': 1,\n",
      "          'flying': 1,\n",
      "          'rock': 1,\n",
      "          'go': 1,\n",
      "          'also': 1,\n",
      "          'marked': 1,\n",
      "          'first': 1,\n",
      "          'since': 1,\n",
      "          'three': 1,\n",
      "          'stooges': 1,\n",
      "          'ive': 1,\n",
      "          'heard': 1,\n",
      "          'word': 1,\n",
      "          'imbecile': 1,\n",
      "          'used': 1,\n",
      "          'casual': 1,\n",
      "          'conversation': 1,\n",
      "          'nthough': 1,\n",
      "          'summer': 1,\n",
      "          'season': 1,\n",
      "          'drying': 1,\n",
      "          'moments': 1,\n",
      "          'wouldnt': 1,\n",
      "          'take': 1,\n",
      "          'ntheyll': 1,\n",
      "          'probably': 1,\n",
      "          'end': 1,\n",
      "          'asking': 1,\n",
      "          'questions': 1,\n",
      "          'charlie': 1,\n",
      "          'rose': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 12,\n",
      "          'one': 4,\n",
      "          'several': 3,\n",
      "          'innocent': 3,\n",
      "          'people': 3,\n",
      "          'strange': 3,\n",
      "          'five': 2,\n",
      "          'friends': 2,\n",
      "          'stag': 2,\n",
      "          'party': 2,\n",
      "          'prostitute': 2,\n",
      "          'nthe': 2,\n",
      "          'real': 2,\n",
      "          '4': 2,\n",
      "          'buddies': 2,\n",
      "          'moral': 2,\n",
      "          'nthey': 2,\n",
      "          'person': 2,\n",
      "          'daniel': 2,\n",
      "          'stern': 2,\n",
      "          'amoral': 2,\n",
      "          'film': 2,\n",
      "          'funny': 2,\n",
      "          'satire': 2,\n",
      "          'crime': 2,\n",
      "          'deeper': 2,\n",
      "          'nif': 2,\n",
      "          'popular': 2,\n",
      "          'like': 2,\n",
      "          'capsule': 1,\n",
      "          'involved': 1,\n",
      "          'accidental': 1,\n",
      "          'killing': 1,\n",
      "          'coverup': 1,\n",
      "          'attempt': 1,\n",
      "          'becomes': 1,\n",
      "          'monster': 1,\n",
      "          'eats': 1,\n",
      "          'two': 1,\n",
      "          'wives': 1,\n",
      "          'bystanders': 1,\n",
      "          'nthis': 1,\n",
      "          'audience': 1,\n",
      "          'pleaser': 1,\n",
      "          'toronto': 1,\n",
      "          'much': 1,\n",
      "          'low': 1,\n",
      "          '0': 1,\n",
      "          'directed': 1,\n",
      "          'peter': 1,\n",
      "          'berg': 1,\n",
      "          'acted': 1,\n",
      "          'last': 1,\n",
      "          'seduction': 1,\n",
      "          'copland': 1,\n",
      "          'go': 1,\n",
      "          'outing': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'cameron': 1,\n",
      "          'diaz': 1,\n",
      "          'works': 1,\n",
      "          'logistics': 1,\n",
      "          'upcoming': 1,\n",
      "          'wedding': 1,\n",
      "          'none': 1,\n",
      "          'accidentally': 1,\n",
      "          'kills': 1,\n",
      "          'compass': 1,\n",
      "          'started': 1,\n",
      "          'simple': 1,\n",
      "          'little': 1,\n",
      "          'cocaine': 1,\n",
      "          'accident': 1,\n",
      "          'look': 1,\n",
      "          'happened': 1,\n",
      "          'among': 1,\n",
      "          'totally': 1,\n",
      "          'christian': 1,\n",
      "          'slater': 1,\n",
      "          'nit': 1,\n",
      "          'selfish': 1,\n",
      "          'let': 1,\n",
      "          'lead': 1,\n",
      "          'really': 1,\n",
      "          'biting': 1,\n",
      "          'nblack': 1,\n",
      "          'comedy': 1,\n",
      "          'actually': 1,\n",
      "          'well': 1,\n",
      "          'nthere': 1,\n",
      "          'element': 1,\n",
      "          'missing': 1,\n",
      "          'ni': 1,\n",
      "          'find': 1,\n",
      "          'laughing': 1,\n",
      "          'either': 1,\n",
      "          'nwhat': 1,\n",
      "          'tale': 1,\n",
      "          'care': 1,\n",
      "          'happens': 1,\n",
      "          'idea': 1,\n",
      "          'getting': 1,\n",
      "          'done': 1,\n",
      "          'frequently': 1,\n",
      "          'bringing': 1,\n",
      "          'familiar': 1,\n",
      "          'plot': 1,\n",
      "          'new': 1,\n",
      "          'generation': 1,\n",
      "          'begins': 1,\n",
      "          'diner': 1,\n",
      "          'particularly': 1,\n",
      "          'ends': 1,\n",
      "          'extended': 1,\n",
      "          'horrorcrime': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'logical': 1,\n",
      "          'holes': 1,\n",
      "          'script': 1,\n",
      "          'security': 1,\n",
      "          'man': 1,\n",
      "          'goes': 1,\n",
      "          'investigate': 1,\n",
      "          'complaint': 1,\n",
      "          'disappears': 1,\n",
      "          'wouldnt': 1,\n",
      "          'guests': 1,\n",
      "          'investigating': 1,\n",
      "          'first': 1,\n",
      "          'suspects': 1,\n",
      "          'nsomeone': 1,\n",
      "          'framed': 1,\n",
      "          'way': 1,\n",
      "          'shown': 1,\n",
      "          'would': 1,\n",
      "          'judged': 1,\n",
      "          'minimal': 1,\n",
      "          'forensic': 1,\n",
      "          'detective': 1,\n",
      "          'work': 1,\n",
      "          'desperately': 1,\n",
      "          'trying': 1,\n",
      "          'avoid': 1,\n",
      "          'making': 1,\n",
      "          'spoiler': 1,\n",
      "          'situation': 1,\n",
      "          'ethics': 1,\n",
      "          'get': 1,\n",
      "          'slamming': 1,\n",
      "          'acting': 1,\n",
      "          'grief': 1,\n",
      "          'hammy': 1,\n",
      "          'overdone': 1,\n",
      "          'nmore': 1,\n",
      "          'yelling': 1,\n",
      "          'humor': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'williamson': 4,\n",
      "          'nthe': 4,\n",
      "          'also': 4,\n",
      "          '_scream_': 3,\n",
      "          'films': 3,\n",
      "          'horta': 3,\n",
      "          'pendleton': 3,\n",
      "          'killer': 3,\n",
      "          'way': 3,\n",
      "          'witt': 3,\n",
      "          'genre': 3,\n",
      "          'kevin': 2,\n",
      "          'horror': 2,\n",
      "          'efforts': 2,\n",
      "          '_urban_legend_': 2,\n",
      "          'takes': 2,\n",
      "          'premise': 2,\n",
      "          'predictable': 2,\n",
      "          'opening': 2,\n",
      "          'sequence': 2,\n",
      "          'like': 2,\n",
      "          'large': 2,\n",
      "          '_i_know': 2,\n",
      "          'urban': 2,\n",
      "          'person': 2,\n",
      "          'group': 2,\n",
      "          'year': 2,\n",
      "          'true': 2,\n",
      "          'link': 2,\n",
      "          'well': 2,\n",
      "          'round': 2,\n",
      "          'many': 2,\n",
      "          'cliches': 2,\n",
      "          'door': 2,\n",
      "          'revealed': 2,\n",
      "          'film': 2,\n",
      "          'attempts': 2,\n",
      "          'humor': 2,\n",
      "          'jackson': 2,\n",
      "          'gayheart': 2,\n",
      "          'filmmakers': 2,\n",
      "          'hath': 1,\n",
      "          'wrought': 1,\n",
      "          'nwhile': 1,\n",
      "          'movie': 1,\n",
      "          'revival': 1,\n",
      "          'spurred': 1,\n",
      "          'yielded': 1,\n",
      "          'decent': 1,\n",
      "          'entries': 1,\n",
      "          'genre_i_know_what_you_did_last_summer_': 1,\n",
      "          '_halloween': 1,\n",
      "          '_h20_': 1,\n",
      "          '_scream_2_': 1,\n",
      "          'must': 1,\n",
      "          'noted': 1,\n",
      "          'hand': 1,\n",
      "          'writing': 1,\n",
      "          'nthose': 1,\n",
      "          'williamsonless': 1,\n",
      "          'post_scream_': 1,\n",
      "          'among': 1,\n",
      "          '_wishmaster_': 1,\n",
      "          'recent': 1,\n",
      "          '_disturbing_behavior_': 1,\n",
      "          'frightening': 1,\n",
      "          'rightfrighteningly': 1,\n",
      "          'insultingly': 1,\n",
      "          '_bad_': 1,\n",
      "          'nadd': 1,\n",
      "          'list': 1,\n",
      "          'promising': 1,\n",
      "          'runs': 1,\n",
      "          'meat': 1,\n",
      "          'grinder': 1,\n",
      "          'idiocy': 1,\n",
      "          'influence': 1,\n",
      "          'screenwriter': 1,\n",
      "          'silvio': 1,\n",
      "          'clear': 1,\n",
      "          'two': 1,\n",
      "          'key': 1,\n",
      "          'areas': 1,\n",
      "          'nfirst': 1,\n",
      "          'extended': 1,\n",
      "          'set': 1,\n",
      "          'piece': 1,\n",
      "          'detailing': 1,\n",
      "          'singular': 1,\n",
      "          'murder': 1,\n",
      "          'gets': 1,\n",
      "          'proverbial': 1,\n",
      "          'ball': 1,\n",
      "          'rolling': 1,\n",
      "          'nthis': 1,\n",
      "          'college': 1,\n",
      "          'coed': 1,\n",
      "          'michelle': 1,\n",
      "          'mancini': 1,\n",
      "          'natasha': 1,\n",
      "          'gregson': 1,\n",
      "          'wagner': 1,\n",
      "          'decapitated': 1,\n",
      "          'driving': 1,\n",
      "          'reveals': 1,\n",
      "          'obviously': 1,\n",
      "          'williamsonesque': 1,\n",
      "          'touch': 1,\n",
      "          'killers': 1,\n",
      "          'look': 1,\n",
      "          'ndressed': 1,\n",
      "          'hooded': 1,\n",
      "          'parka': 1,\n",
      "          'wielding': 1,\n",
      "          'axe': 1,\n",
      "          'bears': 1,\n",
      "          'passing': 1,\n",
      "          'resemblance': 1,\n",
      "          '_fisherman': 1,\n",
      "          'nsans': 1,\n",
      "          'hook': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'borrow': 1,\n",
      "          'however': 1,\n",
      "          'intriguing': 1,\n",
      "          'nstudents': 1,\n",
      "          'killed': 1,\n",
      "          'legendsthose': 1,\n",
      "          'contemporary': 1,\n",
      "          'bits': 1,\n",
      "          'mythology': 1,\n",
      "          'passed': 1,\n",
      "          'become': 1,\n",
      "          'embedded': 1,\n",
      "          'social': 1,\n",
      "          'consciousness': 1,\n",
      "          'nit': 1,\n",
      "          'hardly': 1,\n",
      "          'matters': 1,\n",
      "          'tall': 1,\n",
      "          'tale': 1,\n",
      "          'mikey': 1,\n",
      "          'life': 1,\n",
      "          'cereal': 1,\n",
      "          'commercials': 1,\n",
      "          'died': 1,\n",
      "          'fatal': 1,\n",
      "          'combination': 1,\n",
      "          'pop': 1,\n",
      "          'rocks': 1,\n",
      "          'pepsi': 1,\n",
      "          'didnt': 1,\n",
      "          'nmichelle': 1,\n",
      "          'slain': 1,\n",
      "          'lurking': 1,\n",
      "          'backseat': 1,\n",
      "          'lore': 1,\n",
      "          'first': 1,\n",
      "          'fall': 1,\n",
      "          'prey': 1,\n",
      "          'legend': 1,\n",
      "          'come': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'rises': 1,\n",
      "          'fellow': 1,\n",
      "          'student': 1,\n",
      "          'natalie': 1,\n",
      "          'alicia': 1,\n",
      "          'suspects': 1,\n",
      "          'murders': 1,\n",
      "          'personal': 1,\n",
      "          'past': 1,\n",
      "          'setup': 1,\n",
      "          'shows': 1,\n",
      "          'promise': 1,\n",
      "          'story': 1,\n",
      "          'never': 1,\n",
      "          'due': 1,\n",
      "          'part': 1,\n",
      "          'director': 1,\n",
      "          'aptly': 1,\n",
      "          'named': 1,\n",
      "          'jamie': 1,\n",
      "          'blanks': 1,\n",
      "          'fires': 1,\n",
      "          'afer': 1,\n",
      "          'namesake': 1,\n",
      "          'terms': 1,\n",
      "          'suspense': 1,\n",
      "          'scares': 1,\n",
      "          'ntoo': 1,\n",
      "          'wouldbe': 1,\n",
      "          'shocks': 1,\n",
      "          'fakeouts': 1,\n",
      "          'reliant': 1,\n",
      "          'bombastic': 1,\n",
      "          'music': 1,\n",
      "          'cues': 1,\n",
      "          'chase': 1,\n",
      "          'scenes': 1,\n",
      "          'riddled': 1,\n",
      "          'tried': 1,\n",
      "          'subvert': 1,\n",
      "          'screaming': 1,\n",
      "          'damsels': 1,\n",
      "          'knowingly': 1,\n",
      "          'running': 1,\n",
      "          'dead': 1,\n",
      "          'ends': 1,\n",
      "          'shouldand': 1,\n",
      "          'couldrun': 1,\n",
      "          'front': 1,\n",
      "          'nbut': 1,\n",
      "          'tip': 1,\n",
      "          'iceberg': 1,\n",
      "          'comes': 1,\n",
      "          'theres': 1,\n",
      "          'climactic': 1,\n",
      "          'villain': 1,\n",
      "          'confession': 1,\n",
      "          'contrived': 1,\n",
      "          'waytooconvenient': 1,\n",
      "          'motive': 1,\n",
      "          'mention': 1,\n",
      "          'credit': 1,\n",
      "          'card': 1,\n",
      "          'locked': 1,\n",
      "          'trick': 1,\n",
      "          'cliche': 1,\n",
      "          'nbanks': 1,\n",
      "          'hortas': 1,\n",
      "          'intentional': 1,\n",
      "          'lame': 1,\n",
      "          'fact': 1,\n",
      "          'best': 1,\n",
      "          'gags': 1,\n",
      "          'lazy': 1,\n",
      "          'injokey': 1,\n",
      "          'references': 1,\n",
      "          'credits': 1,\n",
      "          'costars': 1,\n",
      "          'joshua': 1,\n",
      "          'rebecca': 1,\n",
      "          'says': 1,\n",
      "          'lot': 1,\n",
      "          'imagination': 1,\n",
      "          'nsome': 1,\n",
      "          'laughs': 1,\n",
      "          'rather': 1,\n",
      "          'identity': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'hilarious': 1,\n",
      "          'things': 1,\n",
      "          'meant': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'much': 1,\n",
      "          'help': 1,\n",
      "          'onscreen': 1,\n",
      "          'talent': 1,\n",
      "          'ni': 1,\n",
      "          'far': 1,\n",
      "          'fan': 1,\n",
      "          'bland': 1,\n",
      "          '_': 1,\n",
      "          'nstarlet': 1,\n",
      "          'jennifer': 1,\n",
      "          'love': 1,\n",
      "          'hewitt': 1,\n",
      "          'id': 1,\n",
      "          'talke': 1,\n",
      "          'day': 1,\n",
      "          'ove': 1,\n",
      "          'dreadfully': 1,\n",
      "          'stiff': 1,\n",
      "          'uncharismatic': 1,\n",
      "          'whose': 1,\n",
      "          'inept': 1,\n",
      "          'emoting': 1,\n",
      "          'often': 1,\n",
      "          'met': 1,\n",
      "          'laughter': 1,\n",
      "          'pefect': 1,\n",
      "          'foil': 1,\n",
      "          'equally': 1,\n",
      "          'pesencechallenged': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'jared': 1,\n",
      "          'leto': 1,\n",
      "          'n_dawsons_creek_': 1,\n",
      "          'star': 1,\n",
      "          'mugs': 1,\n",
      "          'thorugh': 1,\n",
      "          'glorified': 1,\n",
      "          'cameo': 1,\n",
      "          'displays': 1,\n",
      "          'depth': 1,\n",
      "          'range': 1,\n",
      "          'noxzema': 1,\n",
      "          'spokeswoman': 1,\n",
      "          'robert': 1,\n",
      "          'englund': 1,\n",
      "          'lends': 1,\n",
      "          'little': 1,\n",
      "          'freddy': 1,\n",
      "          'krueger': 1,\n",
      "          'pedigree': 1,\n",
      "          'folklore': 1,\n",
      "          'professor': 1,\n",
      "          'ngranted': 1,\n",
      "          'cast': 1,\n",
      "          'hampered': 1,\n",
      "          'material': 1,\n",
      "          'nloretta': 1,\n",
      "          'devine': 1,\n",
      "          'done': 1,\n",
      "          'fine': 1,\n",
      "          'work': 1,\n",
      "          '_waiting_to_exhale_': 1,\n",
      "          'saddled': 1,\n",
      "          'ridiculous': 1,\n",
      "          'role': 1,\n",
      "          'pam': 1,\n",
      "          'grierworshiping': 1,\n",
      "          'campus': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'recently': 1,\n",
      "          'resuscitated': 1,\n",
      "          'rely': 1,\n",
      "          'one': 1,\n",
      "          'mannamely': 1,\n",
      "          'williamsonto': 1,\n",
      "          'stay': 1,\n",
      "          'alive': 1,\n",
      "          'nif': 1,\n",
      "          'continue': 1,\n",
      "          'make': 1,\n",
      "          'shoddy': 1,\n",
      "          'product': 1,\n",
      "          'looks': 1,\n",
      "          'go': 1,\n",
      "          'screen': 1,\n",
      "          'slashers': 1,\n",
      "          'victims': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'ace': 5,\n",
      "          'carrey': 5,\n",
      "          'ventura': 3,\n",
      "          'warner': 2,\n",
      "          'release': 2,\n",
      "          'batman': 2,\n",
      "          'forever': 2,\n",
      "          'bat': 2,\n",
      "          'carreys': 2,\n",
      "          'nature': 2,\n",
      "          'calls': 2,\n",
      "          'quickly': 2,\n",
      "          'brothers': 1,\n",
      "          'scored': 1,\n",
      "          'another': 1,\n",
      "          'marketing': 1,\n",
      "          'coup': 1,\n",
      "          'onetwo': 1,\n",
      "          'punch': 1,\n",
      "          'started': 1,\n",
      "          'summer': 1,\n",
      "          'ntrailers': 1,\n",
      "          '2': 1,\n",
      "          'bundled': 1,\n",
      "          'ensuring': 1,\n",
      "          'every': 1,\n",
      "          'jim': 1,\n",
      "          'fan': 1,\n",
      "          'free': 1,\n",
      "          'world': 1,\n",
      "          'would': 1,\n",
      "          'know': 1,\n",
      "          'impending': 1,\n",
      "          'sequel': 1,\n",
      "          'ncarrey': 1,\n",
      "          'went': 1,\n",
      "          'win': 1,\n",
      "          'raves': 1,\n",
      "          'riddler': 1,\n",
      "          'everwise': 1,\n",
      "          'chose': 1,\n",
      "          'halloween': 1,\n",
      "          'date': 1,\n",
      "          'video': 1,\n",
      "          '11': 1,\n",
      "          '99': 1,\n",
      "          'walmart': 1,\n",
      "          'mere': 1,\n",
      "          'two': 1,\n",
      "          'weeks': 1,\n",
      "          'return': 1,\n",
      "          'marketwise': 1,\n",
      "          'misfired': 1,\n",
      "          'comedy': 1,\n",
      "          'nace': 1,\n",
      "          'painful': 1,\n",
      "          'reminder': 1,\n",
      "          'grating': 1,\n",
      "          'rubberfaced': 1,\n",
      "          'comic': 1,\n",
      "          'allowed': 1,\n",
      "          'perform': 1,\n",
      "          'within': 1,\n",
      "          'uncontrolled': 1,\n",
      "          'environment': 1,\n",
      "          'nhe': 1,\n",
      "          'may': 1,\n",
      "          'brilliant': 1,\n",
      "          'direction': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'left': 1,\n",
      "          'devices': 1,\n",
      "          'wears': 1,\n",
      "          'welcome': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'far': 1,\n",
      "          'bestan': 1,\n",
      "          'amusing': 1,\n",
      "          'spoof': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'performing': 1,\n",
      "          'mountain': 1,\n",
      "          'rescue': 1,\n",
      "          'stranded': 1,\n",
      "          'raccoon': 1,\n",
      "          'n': 1,\n",
      "          'guess': 1,\n",
      "          'happens': 1,\n",
      "          'mr': 1,\n",
      "          'paws': 1,\n",
      "          'nhint': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'splat': 1,\n",
      "          'plot': 1,\n",
      "          'shifts': 1,\n",
      "          'temple': 1,\n",
      "          'himalayas': 1,\n",
      "          'notsodarkest': 1,\n",
      "          'africa': 1,\n",
      "          'case': 1,\n",
      "          'missing': 1,\n",
      "          'white': 1,\n",
      "          'nwith': 1,\n",
      "          'hair': 1,\n",
      "          'limbs': 1,\n",
      "          'wildly': 1,\n",
      "          'askew': 1,\n",
      "          'flies': 1,\n",
      "          'routine': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'rest': 1,\n",
      "          'film': 1,\n",
      "          'nsure': 1,\n",
      "          'plots': 1,\n",
      "          'linear': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'solid': 1,\n",
      "          'scripted': 1,\n",
      "          'humor': 1,\n",
      "          'support': 1,\n",
      "          'sloppy': 1,\n",
      "          'slathering': 1,\n",
      "          'nwriter': 1,\n",
      "          'director': 1,\n",
      "          'steve': 1,\n",
      "          'oderkerk': 1,\n",
      "          'provides': 1,\n",
      "          'precious': 1,\n",
      "          'setups': 1,\n",
      "          'ninstead': 1,\n",
      "          'mugs': 1,\n",
      "          'away': 1,\n",
      "          'playing': 1,\n",
      "          'camera': 1,\n",
      "          'even': 1,\n",
      "          'isnt': 1,\n",
      "          'funny': 1,\n",
      "          'better': 1,\n",
      "          'gags': 1,\n",
      "          'shown': 1,\n",
      "          'ads': 1,\n",
      "          'though': 1,\n",
      "          'bit': 1,\n",
      "          'emerging': 1,\n",
      "          'bucknaked': 1,\n",
      "          'backside': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'mechanical': 1,\n",
      "          'rhino': 1,\n",
      "          'something': 1,\n",
      "          'see': 1,\n",
      "          'nthough': 1,\n",
      "          'arguable': 1,\n",
      "          'improvement': 1,\n",
      "          'original': 1,\n",
      "          'still': 1,\n",
      "          'snooze': 1,\n",
      "          'anyone': 1,\n",
      "          'age': 1,\n",
      "          'ten': 1,\n",
      "          'script': 1,\n",
      "          'virtually': 1,\n",
      "          'devoid': 1,\n",
      "          'wit': 1,\n",
      "          'ntribal': 1,\n",
      "          'mask': 1,\n",
      "          'jokes': 1,\n",
      "          'njerry': 1,\n",
      "          'lewis': 1,\n",
      "          'cameos': 1,\n",
      "          'nforget': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'inexplicable': 1,\n",
      "          'presence': 1,\n",
      "          'simon': 1,\n",
      "          'callow': 1,\n",
      "          'four': 1,\n",
      "          'weddings': 1,\n",
      "          'funeral': 1,\n",
      "          'bob': 1,\n",
      "          'gunton': 1,\n",
      "          'shawshank': 1,\n",
      "          'redemption': 1,\n",
      "          'suggests': 1,\n",
      "          'working': 1,\n",
      "          'classical': 1,\n",
      "          'actors': 1,\n",
      "          'ultimate': 1,\n",
      "          'challenge': 1,\n",
      "          'njust': 1,\n",
      "          'long': 1,\n",
      "          'keep': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jolie': 4,\n",
      "          'luis': 3,\n",
      "          'banderas': 3,\n",
      "          'heart': 3,\n",
      "          'cuban': 2,\n",
      "          'away': 2,\n",
      "          'wife': 2,\n",
      "          'julia': 2,\n",
      "          'given': 2,\n",
      "          'original': 2,\n",
      "          'sin': 2,\n",
      "          'could': 2,\n",
      "          'junk': 2,\n",
      "          'said': 2,\n",
      "          'least': 2,\n",
      "          'nthe': 2,\n",
      "          'crosses': 2,\n",
      "          'manage': 2,\n",
      "          'synopsis': 1,\n",
      "          'wealthy': 1,\n",
      "          'landowner': 1,\n",
      "          'gets': 1,\n",
      "          'bargained': 1,\n",
      "          'sends': 1,\n",
      "          'american': 1,\n",
      "          'bride': 1,\n",
      "          'nnot': 1,\n",
      "          'new': 1,\n",
      "          'turn': 1,\n",
      "          'beautiful': 1,\n",
      "          'also': 1,\n",
      "          'harbours': 1,\n",
      "          'secret': 1,\n",
      "          'past': 1,\n",
      "          'dubious': 1,\n",
      "          'merit': 1,\n",
      "          'nsoon': 1,\n",
      "          'absconded': 1,\n",
      "          'fortune': 1,\n",
      "          'pursues': 1,\n",
      "          'underworld': 1,\n",
      "          'begins': 1,\n",
      "          'realise': 1,\n",
      "          'turning': 1,\n",
      "          'back': 1,\n",
      "          'nreview': 1,\n",
      "          'absurdism': 1,\n",
      "          'wouldbe': 1,\n",
      "          'plot': 1,\n",
      "          'unlikely': 1,\n",
      "          'turned': 1,\n",
      "          'reputable': 1,\n",
      "          'piece': 1,\n",
      "          'filmmaking': 1,\n",
      "          'regardless': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'stars': 1,\n",
      "          'nthis': 1,\n",
      "          'bmovie': 1,\n",
      "          'lurid': 1,\n",
      "          'melodrama': 1,\n",
      "          'appeals': 1,\n",
      "          'neither': 1,\n",
      "          'brain': 1,\n",
      "          'nether': 1,\n",
      "          'regions': 1,\n",
      "          'nthat': 1,\n",
      "          'become': 1,\n",
      "          'enjoyable': 1,\n",
      "          'filmmakers': 1,\n",
      "          'embraced': 1,\n",
      "          'trashiness': 1,\n",
      "          'indulged': 1,\n",
      "          'ninstead': 1,\n",
      "          'cristofer': 1,\n",
      "          'seems': 1,\n",
      "          'mistaken': 1,\n",
      "          'serious': 1,\n",
      "          'production': 1,\n",
      "          'directs': 1,\n",
      "          'result': 1,\n",
      "          'vapid': 1,\n",
      "          'uninteresting': 1,\n",
      "          'morass': 1,\n",
      "          'obvious': 1,\n",
      "          'double': 1,\n",
      "          'likely': 1,\n",
      "          'incite': 1,\n",
      "          'yawn': 1,\n",
      "          'thrill': 1,\n",
      "          'nconsider': 1,\n",
      "          'initial': 1,\n",
      "          'sex': 1,\n",
      "          'scene': 1,\n",
      "          'brightlylit': 1,\n",
      "          'mostly': 1,\n",
      "          'filmed': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'excerpt': 1,\n",
      "          'amateur': 1,\n",
      "          'soft': 1,\n",
      "          'porn': 1,\n",
      "          'show': 1,\n",
      "          'ncristofer': 1,\n",
      "          'doesnt': 1,\n",
      "          'even': 1,\n",
      "          'capture': 1,\n",
      "          'allure': 1,\n",
      "          'cuba': 1,\n",
      "          'instead': 1,\n",
      "          'portraying': 1,\n",
      "          'setting': 1,\n",
      "          'steamy': 1,\n",
      "          'sensuous': 1,\n",
      "          'island': 1,\n",
      "          'paradise': 1,\n",
      "          'appears': 1,\n",
      "          'bland': 1,\n",
      "          'lifeless': 1,\n",
      "          'nat': 1,\n",
      "          'inspire': 1,\n",
      "          'interest': 1,\n",
      "          'hints': 1,\n",
      "          'times': 1,\n",
      "          'want': 1,\n",
      "          'fun': 1,\n",
      "          'script': 1,\n",
      "          'arent': 1,\n",
      "          'chance': 1,\n",
      "          'jane': 1,\n",
      "          'whose': 1,\n",
      "          'billy': 1,\n",
      "          'nebbish': 1,\n",
      "          'transparent': 1,\n",
      "          'nalso': 1,\n",
      "          'unwise': 1,\n",
      "          'framing': 1,\n",
      "          'sequence': 1,\n",
      "          'practically': 1,\n",
      "          'gives': 1,\n",
      "          'films': 1,\n",
      "          'denouement': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'thirteenth': 4,\n",
      "          'warrior': 4,\n",
      "          'mctiernan': 3,\n",
      "          'gets': 2,\n",
      "          'apart': 2,\n",
      "          'nthe': 2,\n",
      "          'good': 2,\n",
      "          'dont': 2,\n",
      "          'crichton': 2,\n",
      "          'theres': 2,\n",
      "          'hard': 2,\n",
      "          'youll': 2,\n",
      "          'pair': 1,\n",
      "          'films': 1,\n",
      "          'director': 1,\n",
      "          'released': 1,\n",
      "          'three': 1,\n",
      "          'weeks': 1,\n",
      "          'could': 1,\n",
      "          'mean': 1,\n",
      "          'one': 1,\n",
      "          'two': 1,\n",
      "          'things': 1,\n",
      "          'recently': 1,\n",
      "          'overworked': 1,\n",
      "          'individual': 1,\n",
      "          'due': 1,\n",
      "          'welldeserved': 1,\n",
      "          'rest': 1,\n",
      "          'either': 1,\n",
      "          'movies': 1,\n",
      "          'sitting': 1,\n",
      "          'studio': 1,\n",
      "          'safe': 1,\n",
      "          'timing': 1,\n",
      "          'merely': 1,\n",
      "          'coincidence': 1,\n",
      "          'latters': 1,\n",
      "          'case': 1,\n",
      "          'john': 1,\n",
      "          'finally': 1,\n",
      "          'hits': 1,\n",
      "          'theatres': 1,\n",
      "          'year': 1,\n",
      "          'counting': 1,\n",
      "          'original': 1,\n",
      "          'spring': 1,\n",
      "          '98': 1,\n",
      "          'opening': 1,\n",
      "          'fast': 1,\n",
      "          'heels': 1,\n",
      "          'mctiernans': 1,\n",
      "          'thomas': 1,\n",
      "          'crown': 1,\n",
      "          'affair': 1,\n",
      "          'remake': 1,\n",
      "          'flick': 1,\n",
      "          'got': 1,\n",
      "          'reviews': 1,\n",
      "          'nyou': 1,\n",
      "          'believe': 1,\n",
      "          'superstitions': 1,\n",
      "          'wager': 1,\n",
      "          'guess': 1,\n",
      "          'wont': 1,\n",
      "          'lucky': 1,\n",
      "          'nreportedly': 1,\n",
      "          'shelved': 1,\n",
      "          'following': 1,\n",
      "          'skirmishes': 1,\n",
      "          'producer': 1,\n",
      "          'michael': 1,\n",
      "          'whose': 1,\n",
      "          'eaters': 1,\n",
      "          'dead': 1,\n",
      "          'novel': 1,\n",
      "          'provides': 1,\n",
      "          'source': 1,\n",
      "          'initial': 1,\n",
      "          'title': 1,\n",
      "          'messy': 1,\n",
      "          'melange': 1,\n",
      "          'cultureclash': 1,\n",
      "          'drama': 1,\n",
      "          'brutal': 1,\n",
      "          'warfare': 1,\n",
      "          'feels': 1,\n",
      "          'empty': 1,\n",
      "          'sluggish': 1,\n",
      "          'sorta': 1,\n",
      "          'like': 1,\n",
      "          'braveheart': 1,\n",
      "          'without': 1,\n",
      "          'passion': 1,\n",
      "          'nbut': 1,\n",
      "          'bloodshed': 1,\n",
      "          'certainly': 1,\n",
      "          'remains': 1,\n",
      "          'enough': 1,\n",
      "          'carnage': 1,\n",
      "          'display': 1,\n",
      "          'satisfy': 1,\n",
      "          'search': 1,\n",
      "          'purely': 1,\n",
      "          'visceral': 1,\n",
      "          'thrills': 1,\n",
      "          'though': 1,\n",
      "          'please': 1,\n",
      "          'note': 1,\n",
      "          'admittedly': 1,\n",
      "          'pungent': 1,\n",
      "          'battle': 1,\n",
      "          'sequences': 1,\n",
      "          'containing': 1,\n",
      "          'death': 1,\n",
      "          'dismemberment': 1,\n",
      "          'alternate': 1,\n",
      "          'talky': 1,\n",
      "          'passages': 1,\n",
      "          'interminable': 1,\n",
      "          'dullness': 1,\n",
      "          'nthese': 1,\n",
      "          'circa10th': 1,\n",
      "          'century': 1,\n",
      "          'clashes': 1,\n",
      "          'involve': 1,\n",
      "          'roving': 1,\n",
      "          'band': 1,\n",
      "          'cannibalistic': 1,\n",
      "          'creatures': 1,\n",
      "          'capable': 1,\n",
      "          'decapitating': 1,\n",
      "          'opponents': 1,\n",
      "          'bare': 1,\n",
      "          'hands': 1,\n",
      "          'dozen': 1,\n",
      "          'norse': 1,\n",
      "          'soldiers': 1,\n",
      "          'stop': 1,\n",
      "          'terrorizing': 1,\n",
      "          'viking': 1,\n",
      "          'countryside': 1,\n",
      "          'guys': 1,\n",
      "          'loud': 1,\n",
      "          'crude': 1,\n",
      "          'often': 1,\n",
      "          'unintelligible': 1,\n",
      "          'judging': 1,\n",
      "          'highly': 1,\n",
      "          'icky': 1,\n",
      "          'hygiene': 1,\n",
      "          'habits': 1,\n",
      "          'pretty': 1,\n",
      "          'smelly': 1,\n",
      "          'boot': 1,\n",
      "          'makes': 1,\n",
      "          'perfect': 1,\n",
      "          'foils': 1,\n",
      "          'dignified': 1,\n",
      "          'arab': 1,\n",
      "          'ambassador': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'tags': 1,\n",
      "          'along': 1,\n",
      "          'quite': 1,\n",
      "          'reluctantly': 1,\n",
      "          'ntheyre': 1,\n",
      "          'also': 1,\n",
      "          'tell': 1,\n",
      "          'hardly': 1,\n",
      "          'matters': 1,\n",
      "          'meet': 1,\n",
      "          'violent': 1,\n",
      "          'demises': 1,\n",
      "          'nyoull': 1,\n",
      "          'wince': 1,\n",
      "          'groan': 1,\n",
      "          'grouse': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'guy': 1,\n",
      "          'killed': 1,\n",
      "          'twice': 1,\n",
      "          'nbanderas': 1,\n",
      "          'stands': 1,\n",
      "          'confused': 1,\n",
      "          'amidst': 1,\n",
      "          'chaos': 1,\n",
      "          'partaking': 1,\n",
      "          'mostly': 1,\n",
      "          'distance': 1,\n",
      "          'savages': 1,\n",
      "          'darth': 1,\n",
      "          'maul': 1,\n",
      "          'facepaint': 1,\n",
      "          'draped': 1,\n",
      "          'latest': 1,\n",
      "          'animalskin': 1,\n",
      "          'fashion': 1,\n",
      "          'run': 1,\n",
      "          'amok': 1,\n",
      "          'nhes': 1,\n",
      "          'hero': 1,\n",
      "          'soulful': 1,\n",
      "          'eyes': 1,\n",
      "          'lean': 1,\n",
      "          'build': 1,\n",
      "          'exactly': 1,\n",
      "          'herald': 1,\n",
      "          'champion': 1,\n",
      "          'shwarzenegger': 1,\n",
      "          'proportions': 1,\n",
      "          'wisely': 1,\n",
      "          'doesnt': 1,\n",
      "          'pretend': 1,\n",
      "          'allowing': 1,\n",
      "          'foreign': 1,\n",
      "          'physically': 1,\n",
      "          'imposing': 1,\n",
      "          'costars': 1,\n",
      "          'step': 1,\n",
      "          'spotlight': 1,\n",
      "          'going': 1,\n",
      "          'rough': 1,\n",
      "          'nlet': 1,\n",
      "          'characters': 1,\n",
      "          'interaction': 1,\n",
      "          'sans': 1,\n",
      "          'swords': 1,\n",
      "          'shields': 1,\n",
      "          'however': 1,\n",
      "          'still': 1,\n",
      "          'struggle': 1,\n",
      "          'audience': 1,\n",
      "          'follow': 1,\n",
      "          'even': 1,\n",
      "          'care': 1,\n",
      "          'story': 1,\n",
      "          'nit': 1,\n",
      "          'isnt': 1,\n",
      "          'end': 1,\n",
      "          'audiences': 1,\n",
      "          'witnessed': 1,\n",
      "          'halfbaked': 1,\n",
      "          'romance': 1,\n",
      "          'murky': 1,\n",
      "          'political': 1,\n",
      "          'intrigue': 1,\n",
      "          'veteran': 1,\n",
      "          'actor': 1,\n",
      "          'omar': 1,\n",
      "          'sharif': 1,\n",
      "          'funny': 1,\n",
      "          'girl': 1,\n",
      "          'dropping': 1,\n",
      "          'cameo': 1,\n",
      "          'role': 1,\n",
      "          'climactic': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'temple': 1,\n",
      "          'doom': 1,\n",
      "          'esque': 1,\n",
      "          'chase': 1,\n",
      "          'villains': 1,\n",
      "          'underground': 1,\n",
      "          'lair': 1,\n",
      "          'nall': 1,\n",
      "          'clutter': 1,\n",
      "          'receives': 1,\n",
      "          'stunning': 1,\n",
      "          'visual': 1,\n",
      "          'treatment': 1,\n",
      "          'courtesy': 1,\n",
      "          'cinematographer': 1,\n",
      "          'peter': 1,\n",
      "          'menzies': 1,\n",
      "          'jr': 1,\n",
      "          'collaboration': 1,\n",
      "          'die': 1,\n",
      "          'helmer': 1,\n",
      "          'jurrasic': 1,\n",
      "          'park': 1,\n",
      "          'creator': 1,\n",
      "          'yielded': 1,\n",
      "          'sumptuous': 1,\n",
      "          'sights': 1,\n",
      "          'graphic': 1,\n",
      "          'action': 1,\n",
      "          'unintentionally': 1,\n",
      "          'telling': 1,\n",
      "          'moments': 1,\n",
      "          'nheard': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'dog': 1,\n",
      "          'whimpering': 1,\n",
      "          'nhow': 1,\n",
      "          'appropriate': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'violin': 9,\n",
      "          'story': 4,\n",
      "          'red': 3,\n",
      "          'nits': 3,\n",
      "          'instrument': 3,\n",
      "          'tragedy': 2,\n",
      "          'strikes': 2,\n",
      "          'becomes': 2,\n",
      "          'child': 2,\n",
      "          'nwe': 2,\n",
      "          'nthe': 2,\n",
      "          'n': 2,\n",
      "          'could': 2,\n",
      "          'girard': 2,\n",
      "          'make': 2,\n",
      "          'camera': 2,\n",
      "          'cold': 1,\n",
      "          'sterile': 1,\n",
      "          'feature': 1,\n",
      "          'leaves': 1,\n",
      "          'uninvolved': 1,\n",
      "          'detached': 1,\n",
      "          'movie': 1,\n",
      "          'seems': 1,\n",
      "          'almost': 1,\n",
      "          'clinical': 1,\n",
      "          'traces': 1,\n",
      "          '300plusyears': 1,\n",
      "          'history': 1,\n",
      "          'legendary': 1,\n",
      "          'musical': 1,\n",
      "          'title': 1,\n",
      "          'nopening': 1,\n",
      "          '17th': 1,\n",
      "          'century': 1,\n",
      "          'shows': 1,\n",
      "          'violinmaker': 1,\n",
      "          'nicolo': 1,\n",
      "          'bussotti': 1,\n",
      "          'created': 1,\n",
      "          'gift': 1,\n",
      "          'unborn': 1,\n",
      "          'son': 1,\n",
      "          'nbut': 1,\n",
      "          'personification': 1,\n",
      "          'makers': 1,\n",
      "          'grief': 1,\n",
      "          'nfrom': 1,\n",
      "          'comes': 1,\n",
      "          'hands': 1,\n",
      "          'orphaned': 1,\n",
      "          'prodigy': 1,\n",
      "          'austrian': 1,\n",
      "          'monastery': 1,\n",
      "          'nagain': 1,\n",
      "          'struck': 1,\n",
      "          'moment': 1,\n",
      "          'triumph': 1,\n",
      "          'follow': 1,\n",
      "          'centuries': 1,\n",
      "          'finds': 1,\n",
      "          'home': 1,\n",
      "          'england': 1,\n",
      "          'maos': 1,\n",
      "          'communist': 1,\n",
      "          'china': 1,\n",
      "          'discovered': 1,\n",
      "          'expert': 1,\n",
      "          'charles': 1,\n",
      "          'morritz': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'mounts': 1,\n",
      "          'painstaking': 1,\n",
      "          'investigation': 1,\n",
      "          'prove': 1,\n",
      "          'authenticity': 1,\n",
      "          'morritzs': 1,\n",
      "          'obsession': 1,\n",
      "          'converge': 1,\n",
      "          'montreal': 1,\n",
      "          'auction': 1,\n",
      "          'house': 1,\n",
      "          'bid': 1,\n",
      "          'nmorritz': 1,\n",
      "          'however': 1,\n",
      "          'one': 1,\n",
      "          'knows': 1,\n",
      "          'secret': 1,\n",
      "          'understand': 1,\n",
      "          'appreciate': 1,\n",
      "          'creators': 1,\n",
      "          'intention': 1,\n",
      "          'touching': 1,\n",
      "          'inspirational': 1,\n",
      "          'soaring': 1,\n",
      "          'beethoven': 1,\n",
      "          'symphony': 1,\n",
      "          'nhowever': 1,\n",
      "          'director': 1,\n",
      "          'francois': 1,\n",
      "          'fails': 1,\n",
      "          'emotional': 1,\n",
      "          'connection': 1,\n",
      "          'viewer': 1,\n",
      "          'nhere': 1,\n",
      "          'made': 1,\n",
      "          'use': 1,\n",
      "          'various': 1,\n",
      "          'angles': 1,\n",
      "          'lighting': 1,\n",
      "          'heighten': 1,\n",
      "          'impact': 1,\n",
      "          'ngirard': 1,\n",
      "          'unknown': 1,\n",
      "          'reason': 1,\n",
      "          'uses': 1,\n",
      "          'mostly': 1,\n",
      "          'master': 1,\n",
      "          'shots': 1,\n",
      "          'keeping': 1,\n",
      "          'thus': 1,\n",
      "          'us': 1,\n",
      "          'distance': 1,\n",
      "          'get': 1,\n",
      "          'feel': 1,\n",
      "          'miracle': 1,\n",
      "          'resonance': 1,\n",
      "          'purity': 1,\n",
      "          'sound': 1,\n",
      "          'emphasized': 1,\n",
      "          'enough': 1,\n",
      "          'impression': 1,\n",
      "          'nnor': 1,\n",
      "          'performances': 1,\n",
      "          'memorable': 1,\n",
      "          'wanted': 1,\n",
      "          'actors': 1,\n",
      "          'play': 1,\n",
      "          'second': 1,\n",
      "          'fiddle': 1,\n",
      "          'promises': 1,\n",
      "          'much': 1,\n",
      "          'delivers': 1,\n",
      "          'little': 1,\n",
      "          'nit': 1,\n",
      "          'dull': 1,\n",
      "          'times': 1,\n",
      "          'bit': 1,\n",
      "          'pretentious': 1,\n",
      "          'might': 1,\n",
      "          'murky': 1,\n",
      "          'movies': 1,\n",
      "          'music': 1,\n",
      "          'soars': 1,\n",
      "          'performers': 1,\n",
      "          'nand': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mod': 4,\n",
      "          'squad': 4,\n",
      "          'one': 4,\n",
      "          'epps': 4,\n",
      "          'nthey': 3,\n",
      "          'teen': 2,\n",
      "          'take': 2,\n",
      "          'show': 2,\n",
      "          'waiting': 2,\n",
      "          'film': 2,\n",
      "          'people': 2,\n",
      "          'working': 2,\n",
      "          'put': 2,\n",
      "          'youre': 2,\n",
      "          'danes': 2,\n",
      "          'ribisi': 2,\n",
      "          'things': 2,\n",
      "          'would': 2,\n",
      "          'supposed': 2,\n",
      "          'socalled': 2,\n",
      "          'nall': 2,\n",
      "          'think': 2,\n",
      "          'really': 2,\n",
      "          'merchantivory': 1,\n",
      "          'costume': 1,\n",
      "          'dramas': 1,\n",
      "          'pulse': 1,\n",
      "          'selfconsciously': 1,\n",
      "          'hip': 1,\n",
      "          'cinematic': 1,\n",
      "          'rendering': 1,\n",
      "          'old': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'still': 1,\n",
      "          'looked': 1,\n",
      "          'upon': 1,\n",
      "          'fondly': 1,\n",
      "          'many': 1,\n",
      "          'babyboomers': 1,\n",
      "          'nwell': 1,\n",
      "          'said': 1,\n",
      "          'certainly': 1,\n",
      "          'wont': 1,\n",
      "          'pleasant': 1,\n",
      "          'viewing': 1,\n",
      "          'experience': 1,\n",
      "          'anybody': 1,\n",
      "          'else': 1,\n",
      "          'maybe': 1,\n",
      "          'even': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'movie': 1,\n",
      "          'geared': 1,\n",
      "          'towards': 1,\n",
      "          'na': 1,\n",
      "          'contemporary': 1,\n",
      "          'decidedly': 1,\n",
      "          '70s': 1,\n",
      "          'doesnt': 1,\n",
      "          'exactly': 1,\n",
      "          'seem': 1,\n",
      "          'unwarranted': 1,\n",
      "          'wonders': 1,\n",
      "          'mold': 1,\n",
      "          'accumulated': 1,\n",
      "          'shelf': 1,\n",
      "          'didnt': 1,\n",
      "          'transform': 1,\n",
      "          'fullblown': 1,\n",
      "          'case': 1,\n",
      "          'botulism': 1,\n",
      "          'nhow': 1,\n",
      "          'curious': 1,\n",
      "          'begins': 1,\n",
      "          'defining': 1,\n",
      "          'insisting': 1,\n",
      "          'latter': 1,\n",
      "          'group': 1,\n",
      "          'together': 1,\n",
      "          'contradicting': 1,\n",
      "          'definition': 1,\n",
      "          'keeping': 1,\n",
      "          'titular': 1,\n",
      "          'trio': 1,\n",
      "          'apart': 1,\n",
      "          'sizeable': 1,\n",
      "          'chunk': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'julie': 1,\n",
      "          'pete': 1,\n",
      "          'linc': 1,\n",
      "          'reformed': 1,\n",
      "          'delinquents': 1,\n",
      "          'undercover': 1,\n",
      "          'lapd': 1,\n",
      "          'exposition': 1,\n",
      "          'way': 1,\n",
      "          'fast': 1,\n",
      "          'likely': 1,\n",
      "          'lost': 1,\n",
      "          'opening': 1,\n",
      "          'moments': 1,\n",
      "          'respectively': 1,\n",
      "          'played': 1,\n",
      "          'claire': 1,\n",
      "          'giovanni': 1,\n",
      "          'omar': 1,\n",
      "          'talented': 1,\n",
      "          'actors': 1,\n",
      "          'deserving': 1,\n",
      "          'better': 1,\n",
      "          'ntheir': 1,\n",
      "          'plight': 1,\n",
      "          'involves': 1,\n",
      "          'standard': 1,\n",
      "          'copcorruption': 1,\n",
      "          'stuff': 1,\n",
      "          'wouldbe': 1,\n",
      "          'protagonists': 1,\n",
      "          'catch': 1,\n",
      "          'wind': 1,\n",
      "          'internal': 1,\n",
      "          'coverup': 1,\n",
      "          'superior': 1,\n",
      "          'reliable': 1,\n",
      "          'dennis': 1,\n",
      "          'farina': 1,\n",
      "          'best': 1,\n",
      "          'gone': 1,\n",
      "          'quickly': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'framed': 1,\n",
      "          'drug': 1,\n",
      "          'trafficking': 1,\n",
      "          'pout': 1,\n",
      "          'lot': 1,\n",
      "          'eventually': 1,\n",
      "          'get': 1,\n",
      "          'cracking': 1,\n",
      "          'expose': 1,\n",
      "          'convoluted': 1,\n",
      "          'conspiracy': 1,\n",
      "          'using': 1,\n",
      "          'surveillance': 1,\n",
      "          'tactics': 1,\n",
      "          'impress': 1,\n",
      "          'hardy': 1,\n",
      "          'boys': 1,\n",
      "          'linda': 1,\n",
      "          'tripp': 1,\n",
      "          'others': 1,\n",
      "          'nwhen': 1,\n",
      "          'asking': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'next': 1,\n",
      "          'nyoull': 1,\n",
      "          'instead': 1,\n",
      "          'entertain': 1,\n",
      "          'thoughts': 1,\n",
      "          'like': 1,\n",
      "          'care': 1,\n",
      "          'arent': 1,\n",
      "          'thrillers': 1,\n",
      "          'contain': 1,\n",
      "          'thrills': 1,\n",
      "          'nnot': 1,\n",
      "          'dont': 1,\n",
      "          'give': 1,\n",
      "          'shot': 1,\n",
      "          'ndanes': 1,\n",
      "          'troubled': 1,\n",
      "          'thing': 1,\n",
      "          'sleep': 1,\n",
      "          'evidenced': 1,\n",
      "          'life': 1,\n",
      "          'shes': 1,\n",
      "          'saddled': 1,\n",
      "          'mysteriousboyfriend': 1,\n",
      "          'josh': 1,\n",
      "          'brolin': 1,\n",
      "          'subplot': 1,\n",
      "          'seethrough': 1,\n",
      "          'begin': 1,\n",
      "          'seriously': 1,\n",
      "          'question': 1,\n",
      "          'intelligence': 1,\n",
      "          'nditto': 1,\n",
      "          'ribisis': 1,\n",
      "          'saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'looney': 1,\n",
      "          'loose': 1,\n",
      "          'cannon': 1,\n",
      "          'though': 1,\n",
      "          'least': 1,\n",
      "          'performs': 1,\n",
      "          'wildandcrazy': 1,\n",
      "          'vigor': 1,\n",
      "          'occasionally': 1,\n",
      "          'demands': 1,\n",
      "          'attention': 1,\n",
      "          'nbut': 1,\n",
      "          'poor': 1,\n",
      "          'nepps': 1,\n",
      "          'higher': 1,\n",
      "          'learning': 1,\n",
      "          'shortchanged': 1,\n",
      "          'hes': 1,\n",
      "          'reduced': 1,\n",
      "          'literally': 1,\n",
      "          'around': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'chase': 1,\n",
      "          'sloppiness': 1,\n",
      "          'attributed': 1,\n",
      "          'screenwriters': 1,\n",
      "          'scott': 1,\n",
      "          'silver': 1,\n",
      "          'also': 1,\n",
      "          'director': 1,\n",
      "          'must': 1,\n",
      "          'dress': 1,\n",
      "          'stupid': 1,\n",
      "          'story': 1,\n",
      "          'spiffy': 1,\n",
      "          'trappings': 1,\n",
      "          'look': 1,\n",
      "          'quite': 1,\n",
      "          'impressive': 1,\n",
      "          'itll': 1,\n",
      "          'somehow': 1,\n",
      "          'pay': 1,\n",
      "          'plods': 1,\n",
      "          'anyway': 1,\n",
      "          'ncharacters': 1,\n",
      "          'nonexistent': 1,\n",
      "          'present': 1,\n",
      "          'goodlooking': 1,\n",
      "          'young': 1,\n",
      "          'modeling': 1,\n",
      "          'cool': 1,\n",
      "          'levis': 1,\n",
      "          'cooler': 1,\n",
      "          'attitudes': 1,\n",
      "          'nplot': 1,\n",
      "          'hardly': 1,\n",
      "          'escapes': 1,\n",
      "          'confusing': 1,\n",
      "          'convention': 1,\n",
      "          'nand': 1,\n",
      "          'genre': 1,\n",
      "          'element': 1,\n",
      "          'youd': 1,\n",
      "          'generous': 1,\n",
      "          'portions': 1,\n",
      "          'nifty': 1,\n",
      "          'explosions': 1,\n",
      "          'fights': 1,\n",
      "          'kind': 1,\n",
      "          'action': 1,\n",
      "          'whatsoever': 1,\n",
      "          'rarely': 1,\n",
      "          'makes': 1,\n",
      "          'dull': 1,\n",
      "          'gabfest': 1,\n",
      "          'quick': 1,\n",
      "          'last': 1,\n",
      "          'months': 1,\n",
      "          'inept': 1,\n",
      "          'serviceable': 1,\n",
      "          'favorite': 1,\n",
      "          'martian': 1,\n",
      "          'update': 1,\n",
      "          'need': 1,\n",
      "          'step': 1,\n",
      "          'back': 1,\n",
      "          'nheres': 1,\n",
      "          'smalltobigscreen': 1,\n",
      "          'translation': 1,\n",
      "          'shouldve': 1,\n",
      "          'stayed': 1,\n",
      "          'former': 1,\n",
      "          'incarnation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 21,\n",
      "          'film': 14,\n",
      "          'movie': 13,\n",
      "          'wrestling': 11,\n",
      "          'funny': 9,\n",
      "          'wrestlers': 8,\n",
      "          'arquette': 7,\n",
      "          'watch': 7,\n",
      "          'wcw': 6,\n",
      "          'like': 6,\n",
      "          'fans': 6,\n",
      "          'would': 5,\n",
      "          'nits': 4,\n",
      "          'back': 4,\n",
      "          'ni': 4,\n",
      "          'made': 4,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'even': 3,\n",
      "          'two': 3,\n",
      "          'go': 3,\n",
      "          'fun': 3,\n",
      "          'great': 3,\n",
      "          'many': 3,\n",
      "          'humor': 3,\n",
      "          'work': 3,\n",
      "          'make': 3,\n",
      "          'laugh': 3,\n",
      "          'especially': 3,\n",
      "          'good': 3,\n",
      "          'characters': 3,\n",
      "          'fan': 3,\n",
      "          'featured': 3,\n",
      "          'money': 3,\n",
      "          'show': 2,\n",
      "          'big': 2,\n",
      "          'commercial': 2,\n",
      "          'nthere': 2,\n",
      "          'gordy': 2,\n",
      "          'sean': 2,\n",
      "          'nthey': 2,\n",
      "          'match': 2,\n",
      "          'wrestler': 2,\n",
      "          'jimmy': 2,\n",
      "          'king': 2,\n",
      "          'mean': 2,\n",
      "          'titus': 2,\n",
      "          'way': 2,\n",
      "          'people': 2,\n",
      "          'well': 2,\n",
      "          'jokes': 2,\n",
      "          'cashier': 2,\n",
      "          'get': 2,\n",
      "          'one': 2,\n",
      "          'wrestle': 2,\n",
      "          'nnow': 2,\n",
      "          'nthat': 2,\n",
      "          'pathetic': 2,\n",
      "          'homage': 2,\n",
      "          'actually': 2,\n",
      "          '2': 2,\n",
      "          'continuously': 2,\n",
      "          'na': 2,\n",
      "          'crap': 2,\n",
      "          'nat': 2,\n",
      "          'pay': 2,\n",
      "          'see': 2,\n",
      "          'ready': 1,\n",
      "          'rumble': 1,\n",
      "          'masterpiece': 1,\n",
      "          'problem': 1,\n",
      "          'regarding': 1,\n",
      "          'ted': 1,\n",
      "          'turners': 1,\n",
      "          'world': 1,\n",
      "          'championship': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'fully': 1,\n",
      "          'showcases': 1,\n",
      "          'diamond': 1,\n",
      "          'dallas': 1,\n",
      "          'page': 1,\n",
      "          'goldberg': 1,\n",
      "          'sting': 1,\n",
      "          'story': 1,\n",
      "          'minimal': 1,\n",
      "          'basic': 1,\n",
      "          'guys': 1,\n",
      "          'david': 1,\n",
      "          'scott': 1,\n",
      "          'caan': 1,\n",
      "          'twentysomething': 1,\n",
      "          'wyoming': 1,\n",
      "          'nwhen': 1,\n",
      "          'live': 1,\n",
      "          'event': 1,\n",
      "          'favorite': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'defeated': 1,\n",
      "          'career': 1,\n",
      "          'announced': 1,\n",
      "          'commissioner': 1,\n",
      "          'joe': 1,\n",
      "          'pantoliano': 1,\n",
      "          'ngordy': 1,\n",
      "          'decide': 1,\n",
      "          'quest': 1,\n",
      "          'find': 1,\n",
      "          'bring': 1,\n",
      "          'top': 1,\n",
      "          'defeat': 1,\n",
      "          'evil': 1,\n",
      "          'plans': 1,\n",
      "          'non': 1,\n",
      "          'meet': 1,\n",
      "          'clean': 1,\n",
      "          'portopotties': 1,\n",
      "          'nsounds': 1,\n",
      "          'huh': 1,\n",
      "          'makes': 1,\n",
      "          'attempts': 1,\n",
      "          'however': 1,\n",
      "          'outnumber': 1,\n",
      "          'films': 1,\n",
      "          'duds': 1,\n",
      "          'repertoire': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'played': 1,\n",
      "          'ahmet': 1,\n",
      "          'zappa': 1,\n",
      "          'dreams': 1,\n",
      "          'ways': 1,\n",
      "          'enjoyed': 1,\n",
      "          'version': 1,\n",
      "          'arquettes': 1,\n",
      "          'tag': 1,\n",
      "          'team': 1,\n",
      "          'partner': 1,\n",
      "          'macho': 1,\n",
      "          'man': 1,\n",
      "          'randy': 1,\n",
      "          'savage': 1,\n",
      "          'aisles': 1,\n",
      "          'knocking': 1,\n",
      "          'cans': 1,\n",
      "          'getting': 1,\n",
      "          'body': 1,\n",
      "          'slammed': 1,\n",
      "          'floor': 1,\n",
      "          'part': 1,\n",
      "          'sexual': 1,\n",
      "          'confrontation': 1,\n",
      "          'rose': 1,\n",
      "          'mcgowan': 1,\n",
      "          'nmcgowan': 1,\n",
      "          'plays': 1,\n",
      "          'sasha': 1,\n",
      "          'head': 1,\n",
      "          'nitro': 1,\n",
      "          'girl': 1,\n",
      "          'cheerleaders': 1,\n",
      "          'nshe': 1,\n",
      "          'becomes': 1,\n",
      "          'attracted': 1,\n",
      "          'nice': 1,\n",
      "          'scenes': 1,\n",
      "          'together': 1,\n",
      "          'scene': 1,\n",
      "          'calls': 1,\n",
      "          'mcgowans': 1,\n",
      "          'breasts': 1,\n",
      "          'foreign': 1,\n",
      "          'objects': 1,\n",
      "          'punches': 1,\n",
      "          'directly': 1,\n",
      "          'face': 1,\n",
      "          'didnt': 1,\n",
      "          'rest': 1,\n",
      "          'flick': 1,\n",
      "          'filled': 1,\n",
      "          'stupid': 1,\n",
      "          'potty': 1,\n",
      "          'farts': 1,\n",
      "          'toilets': 1,\n",
      "          'lead': 1,\n",
      "          'portopotty': 1,\n",
      "          'cleaning': 1,\n",
      "          'company': 1,\n",
      "          'crash': 1,\n",
      "          'truck': 1,\n",
      "          'excrements': 1,\n",
      "          'spill': 1,\n",
      "          'road': 1,\n",
      "          'brainless': 1,\n",
      "          'giving': 1,\n",
      "          'blindly': 1,\n",
      "          'faithful': 1,\n",
      "          'entertainment': 1,\n",
      "          'think': 1,\n",
      "          'take': 1,\n",
      "          'offense': 1,\n",
      "          'said': 1,\n",
      "          'throughout': 1,\n",
      "          'main': 1,\n",
      "          'happen': 1,\n",
      "          'stalk': 1,\n",
      "          'sneak': 1,\n",
      "          'onto': 1,\n",
      "          'set': 1,\n",
      "          'nalso': 1,\n",
      "          'wondered': 1,\n",
      "          'got': 1,\n",
      "          'backstage': 1,\n",
      "          'easily': 1,\n",
      "          'walked': 1,\n",
      "          'right': 1,\n",
      "          'home': 1,\n",
      "          'otherwise': 1,\n",
      "          'wouldnt': 1,\n",
      "          'nthis': 1,\n",
      "          'wasnt': 1,\n",
      "          'tv': 1,\n",
      "          'pointing': 1,\n",
      "          'knew': 1,\n",
      "          'thing': 1,\n",
      "          'saturn': 1,\n",
      "          'chris': 1,\n",
      "          'benoit': 1,\n",
      "          'left': 1,\n",
      "          'still': 1,\n",
      "          'prominently': 1,\n",
      "          'dimwitted': 1,\n",
      "          'nit': 1,\n",
      "          'possibly': 1,\n",
      "          'useless': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'ever': 1,\n",
      "          'recent': 1,\n",
      "          'genre': 1,\n",
      "          'kiss': 1,\n",
      "          'detroit': 1,\n",
      "          'rock': 1,\n",
      "          'city': 1,\n",
      "          'interesting': 1,\n",
      "          'done': 1,\n",
      "          'unlike': 1,\n",
      "          'acting': 1,\n",
      "          'plus': 1,\n",
      "          'scream': 1,\n",
      "          'trilogy': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'spokesman': 1,\n",
      "          'dumb': 1,\n",
      "          '1800callatt': 1,\n",
      "          'ads': 1,\n",
      "          'least': 1,\n",
      "          'hot': 1,\n",
      "          'wife': 1,\n",
      "          'courtney': 1,\n",
      "          'cox': 1,\n",
      "          'nhes': 1,\n",
      "          'parts': 1,\n",
      "          'arent': 1,\n",
      "          'enough': 1,\n",
      "          'look': 1,\n",
      "          'music': 1,\n",
      "          'bad': 1,\n",
      "          'also': 1,\n",
      "          'feature': 1,\n",
      "          'overplayed': 1,\n",
      "          'tunes': 1,\n",
      "          'kid': 1,\n",
      "          'rocks': 1,\n",
      "          'bawitdaba': 1,\n",
      "          'cowboy': 1,\n",
      "          'nmartin': 1,\n",
      "          'landau': 1,\n",
      "          'cameo': 1,\n",
      "          'classic': 1,\n",
      "          'hardnosed': 1,\n",
      "          'trainer': 1,\n",
      "          'named': 1,\n",
      "          'sal': 1,\n",
      "          'whips': 1,\n",
      "          'shape': 1,\n",
      "          'regain': 1,\n",
      "          'throne': 1,\n",
      "          'nscript': 1,\n",
      "          'important': 1,\n",
      "          'piece': 1,\n",
      "          'could': 1,\n",
      "          'couple': 1,\n",
      "          'scribblings': 1,\n",
      "          'napkin': 1,\n",
      "          'probably': 1,\n",
      "          'wrote': 1,\n",
      "          'times': 1,\n",
      "          'tries': 1,\n",
      "          'real': 1,\n",
      "          'form': 1,\n",
      "          'alliances': 1,\n",
      "          'peoples': 1,\n",
      "          'houses': 1,\n",
      "          'beat': 1,\n",
      "          'utterly': 1,\n",
      "          'ridiculous': 1,\n",
      "          'whole': 1,\n",
      "          'wasteful': 1,\n",
      "          'dumfounding': 1,\n",
      "          'experience': 1,\n",
      "          'telling': 1,\n",
      "          'things': 1,\n",
      "          'making': 1,\n",
      "          'thank': 1,\n",
      "          'begin': 1,\n",
      "          'paying': 1,\n",
      "          '5': 1,\n",
      "          'dollars': 1,\n",
      "          'pottyhumor': 1,\n",
      "          'sucks': 1,\n",
      "          'twohour': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'wwf': 1,\n",
      "          'entertaining': 1,\n",
      "          'betters': 1,\n",
      "          'theyre': 1,\n",
      "          'funnier': 1,\n",
      "          'diverse': 1,\n",
      "          'better': 1,\n",
      "          'entrance': 1,\n",
      "          'themes': 1,\n",
      "          'noh': 1,\n",
      "          'girls': 1,\n",
      "          'hotter': 1,\n",
      "          'nis': 1,\n",
      "          'movies': 1,\n",
      "          'become': 1,\n",
      "          'hourlong': 1,\n",
      "          'commercials': 1,\n",
      "          'ndont': 1,\n",
      "          'waste': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'wyatts': 5,\n",
      "          'nthe': 5,\n",
      "          'wife': 5,\n",
      "          'n': 4,\n",
      "          'years': 3,\n",
      "          'seeing': 3,\n",
      "          'boring': 3,\n",
      "          'like': 3,\n",
      "          'looks': 3,\n",
      "          'see': 3,\n",
      "          'good': 3,\n",
      "          'life': 2,\n",
      "          'nthis': 2,\n",
      "          'slow': 2,\n",
      "          'scenes': 2,\n",
      "          'tried': 2,\n",
      "          'great': 2,\n",
      "          'script': 2,\n",
      "          'also': 2,\n",
      "          'nsure': 2,\n",
      "          'dialogue': 2,\n",
      "          'third': 2,\n",
      "          'chins': 2,\n",
      "          'costner': 2,\n",
      "          'nhe': 2,\n",
      "          'dennis': 2,\n",
      "          'quaid': 2,\n",
      "          'performance': 2,\n",
      "          'mark': 2,\n",
      "          'quaids': 2,\n",
      "          'ni': 2,\n",
      "          'name': 2,\n",
      "          'first': 2,\n",
      "          'nshe': 2,\n",
      "          'seems': 2,\n",
      "          'way': 2,\n",
      "          'old': 2,\n",
      "          'wyatt': 1,\n",
      "          'earp': 1,\n",
      "          'details': 1,\n",
      "          'thirtyfive': 1,\n",
      "          'around': 1,\n",
      "          '1865': 1,\n",
      "          '1900': 1,\n",
      "          'nafter': 1,\n",
      "          'speed': 1,\n",
      "          'twice': 1,\n",
      "          'recently': 1,\n",
      "          'kept': 1,\n",
      "          'thinking': 1,\n",
      "          'pass': 1,\n",
      "          'eyes': 1,\n",
      "          'real': 1,\n",
      "          'time': 1,\n",
      "          'nthere': 1,\n",
      "          'hard': 1,\n",
      "          'fell': 1,\n",
      "          'flat': 1,\n",
      "          'happily': 1,\n",
      "          'womanbashes': 1,\n",
      "          'tries': 1,\n",
      "          'sound': 1,\n",
      "          '80s': 1,\n",
      "          'nthey': 1,\n",
      "          'ways': 1,\n",
      "          'pronounce': 1,\n",
      "          'husband': 1,\n",
      "          'said': 1,\n",
      "          '1800s': 1,\n",
      "          'entrepreneur': 1,\n",
      "          'nevery': 1,\n",
      "          'bit': 1,\n",
      "          'maleegostroking': 1,\n",
      "          'speaks': 1,\n",
      "          'made': 1,\n",
      "          'sick': 1,\n",
      "          'listen': 1,\n",
      "          'oh': 1,\n",
      "          'written': 1,\n",
      "          'two': 1,\n",
      "          'men': 1,\n",
      "          'kidding': 1,\n",
      "          'torture': 1,\n",
      "          'sit': 1,\n",
      "          'scenery': 1,\n",
      "          'fades': 1,\n",
      "          'either': 1,\n",
      "          'awkward': 1,\n",
      "          'cliche': 1,\n",
      "          'self': 1,\n",
      "          'important': 1,\n",
      "          'ncan': 1,\n",
      "          'say': 1,\n",
      "          'poor': 1,\n",
      "          'editing': 1,\n",
      "          'neveryone': 1,\n",
      "          'ugly': 1,\n",
      "          'nwhen': 1,\n",
      "          'shoot': 1,\n",
      "          'people': 1,\n",
      "          'look': 1,\n",
      "          'double': 1,\n",
      "          'nkevin': 1,\n",
      "          'never': 1,\n",
      "          'looked': 1,\n",
      "          'worse': 1,\n",
      "          'sue': 1,\n",
      "          'gained': 1,\n",
      "          '43': 1,\n",
      "          'pounds': 1,\n",
      "          'lost': 1,\n",
      "          'ndennis': 1,\n",
      "          'marvelous': 1,\n",
      "          'nif': 1,\n",
      "          'go': 1,\n",
      "          'theatre': 1,\n",
      "          'movies': 1,\n",
      "          'halfway': 1,\n",
      "          'ndoc': 1,\n",
      "          'holliday': 1,\n",
      "          'character': 1,\n",
      "          'shows': 1,\n",
      "          '90minute': 1,\n",
      "          'ngene': 1,\n",
      "          'hackman': 1,\n",
      "          'nis': 1,\n",
      "          'credits': 1,\n",
      "          'dont': 1,\n",
      "          'remember': 1,\n",
      "          'nmare': 1,\n",
      "          'winningham': 1,\n",
      "          'makes': 1,\n",
      "          'best': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'second': 1,\n",
      "          'nannabeth': 1,\n",
      "          'gish': 1,\n",
      "          'though': 1,\n",
      "          'jamie': 1,\n",
      "          'gertz': 1,\n",
      "          'played': 1,\n",
      "          'later': 1,\n",
      "          'heard': 1,\n",
      "          'joanna': 1,\n",
      "          'going': 1,\n",
      "          'sucks': 1,\n",
      "          'young': 1,\n",
      "          'ncostner': 1,\n",
      "          '90': 1,\n",
      "          'nin': 1,\n",
      "          'scene': 1,\n",
      "          'supposed': 1,\n",
      "          '19': 1,\n",
      "          'nyeah': 1,\n",
      "          'right': 1,\n",
      "          'ncatherine': 1,\n",
      "          'ohara': 1,\n",
      "          'jobeth': 1,\n",
      "          'williams': 1,\n",
      "          'always': 1,\n",
      "          'totally': 1,\n",
      "          'wasted': 1,\n",
      "          'worst': 1,\n",
      "          'seen': 1,\n",
      "          'last': 1,\n",
      "          'action': 1,\n",
      "          'hero': 1,\n",
      "          'better': 1,\n",
      "          'ngo': 1,\n",
      "          'maverick': 1,\n",
      "          'want': 1,\n",
      "          'western': 1,\n",
      "          'nbullets': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'schwimmer': 2,\n",
      "          'classmate': 2,\n",
      "          'david': 1,\n",
      "          'television': 1,\n",
      "          'series': 1,\n",
      "          'friends': 1,\n",
      "          'stars': 1,\n",
      "          'sensitive': 1,\n",
      "          'slightly': 1,\n",
      "          'neurotic': 1,\n",
      "          'single': 1,\n",
      "          'guy': 1,\n",
      "          'gets': 1,\n",
      "          'expected': 1,\n",
      "          'grieving': 1,\n",
      "          'mother': 1,\n",
      "          'barbara': 1,\n",
      "          'hershey': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'nhello': 1,\n",
      "          'mrs': 1,\n",
      "          'robinson': 1,\n",
      "          'nthough': 1,\n",
      "          'quite': 1,\n",
      "          'cute': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'pallbearer': 1,\n",
      "          'paced': 1,\n",
      "          'like': 1,\n",
      "          'funeral': 1,\n",
      "          'march': 1,\n",
      "          'nthe': 1,\n",
      "          'characters': 1,\n",
      "          'act': 1,\n",
      "          'react': 1,\n",
      "          'interact': 1,\n",
      "          'halfspeed': 1,\n",
      "          'making': 1,\n",
      "          'one': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'long': 1,\n",
      "          'sit': 1,\n",
      "          'n': 1,\n",
      "          'whats': 1,\n",
      "          'dreary': 1,\n",
      "          'lighting': 1,\n",
      "          'ncowriterdirector': 1,\n",
      "          'matt': 1,\n",
      "          'reeves': 1,\n",
      "          'brings': 1,\n",
      "          'snap': 1,\n",
      "          'storys': 1,\n",
      "          'midsection': 1,\n",
      "          'film': 1,\n",
      "          'briefly': 1,\n",
      "          'comes': 1,\n",
      "          'life': 1,\n",
      "          'hero': 1,\n",
      "          'attempts': 1,\n",
      "          'resolve': 1,\n",
      "          'feelings': 1,\n",
      "          'another': 1,\n",
      "          'appealing': 1,\n",
      "          'gwyneth': 1,\n",
      "          'paltrow': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'though': 1,\n",
      "          'viewers': 1,\n",
      "          'either': 1,\n",
      "          'fled': 1,\n",
      "          'fallen': 1,\n",
      "          'asleep': 1,\n",
      "          'nthose': 1,\n",
      "          'tough': 1,\n",
      "          'souls': 1,\n",
      "          'stay': 1,\n",
      "          'marvel': 1,\n",
      "          'sleepyeyed': 1,\n",
      "          'hound': 1,\n",
      "          'dog': 1,\n",
      "          'head': 1,\n",
      "          'cold': 1,\n",
      "          'go': 1,\n",
      "          'hour': 1,\n",
      "          'without': 1,\n",
      "          'ever': 1,\n",
      "          'changing': 1,\n",
      "          'expression': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 11,\n",
      "          'silverman': 7,\n",
      "          'good': 6,\n",
      "          'bad': 6,\n",
      "          'script': 5,\n",
      "          'saving': 4,\n",
      "          'j': 4,\n",
      "          'comedy': 3,\n",
      "          'nthe': 3,\n",
      "          'funny': 3,\n",
      "          'lefessier': 3,\n",
      "          'black': 3,\n",
      "          'darren': 3,\n",
      "          'neil': 3,\n",
      "          'diamond': 3,\n",
      "          'judith': 3,\n",
      "          'right': 3,\n",
      "          'love': 2,\n",
      "          'story': 2,\n",
      "          'however': 2,\n",
      "          'falls': 2,\n",
      "          'flat': 2,\n",
      "          'think': 2,\n",
      "          'times': 2,\n",
      "          'doesnt': 2,\n",
      "          'make': 2,\n",
      "          'great': 2,\n",
      "          'nwayne': 2,\n",
      "          'zahn': 2,\n",
      "          'jack': 2,\n",
      "          'biggs': 2,\n",
      "          'together': 2,\n",
      "          'friends': 2,\n",
      "          'end': 2,\n",
      "          'peet': 2,\n",
      "          'wayne': 2,\n",
      "          'performances': 2,\n",
      "          'job': 2,\n",
      "          'even': 2,\n",
      "          'isnt': 2,\n",
      "          'plays': 2,\n",
      "          'example': 1,\n",
      "          'gone': 1,\n",
      "          'nas': 1,\n",
      "          'face': 1,\n",
      "          'ni': 1,\n",
      "          'throughout': 1,\n",
      "          'short': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'laughed': 1,\n",
      "          'total': 1,\n",
      "          'seven': 1,\n",
      "          'nthose': 1,\n",
      "          'chuckles': 1,\n",
      "          'oomph': 1,\n",
      "          'steven': 1,\n",
      "          'mcnugent': 1,\n",
      "          'jason': 1,\n",
      "          'grown': 1,\n",
      "          'lives': 1,\n",
      "          'best': 1,\n",
      "          'forever': 1,\n",
      "          'vow': 1,\n",
      "          'stay': 1,\n",
      "          'close': 1,\n",
      "          'till': 1,\n",
      "          'nwhile': 1,\n",
      "          'bar': 1,\n",
      "          'show': 1,\n",
      "          'band': 1,\n",
      "          'based': 1,\n",
      "          'meets': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'amanda': 1,\n",
      "          'instantly': 1,\n",
      "          'differently': 1,\n",
      "          'tells': 1,\n",
      "          'never': 1,\n",
      "          'see': 1,\n",
      "          'try': 1,\n",
      "          'begin': 1,\n",
      "          'topnotch': 1,\n",
      "          'surprisingly': 1,\n",
      "          'keep': 1,\n",
      "          'afloat': 1,\n",
      "          'njason': 1,\n",
      "          'flop': 1,\n",
      "          'loser': 1,\n",
      "          'ok': 1,\n",
      "          'playing': 1,\n",
      "          'stale': 1,\n",
      "          'nsteve': 1,\n",
      "          'perfect': 1,\n",
      "          'role': 1,\n",
      "          'though': 1,\n",
      "          'really': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'narrator': 1,\n",
      "          'njack': 1,\n",
      "          'well': 1,\n",
      "          'past': 1,\n",
      "          'namanda': 1,\n",
      "          'ultimate': 1,\n",
      "          'bitch': 1,\n",
      "          'hes': 1,\n",
      "          'better': 1,\n",
      "          'singing': 1,\n",
      "          'acting': 1,\n",
      "          'nanyway': 1,\n",
      "          'film': 1,\n",
      "          'nspeaking': 1,\n",
      "          'hank': 1,\n",
      "          'nelkans': 1,\n",
      "          'choppy': 1,\n",
      "          'badly': 1,\n",
      "          'written': 1,\n",
      "          'enough': 1,\n",
      "          'episode': 1,\n",
      "          'sesame': 1,\n",
      "          'street': 1,\n",
      "          'trailer': 1,\n",
      "          'movies': 1,\n",
      "          'gives': 1,\n",
      "          'away': 1,\n",
      "          'everything': 1,\n",
      "          'happens': 1,\n",
      "          'especially': 1,\n",
      "          'funniest': 1,\n",
      "          'parts': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'meant': 1,\n",
      "          'could': 1,\n",
      "          'alas': 1,\n",
      "          'wasnt': 1,\n",
      "          'ndennis': 1,\n",
      "          'dugans': 1,\n",
      "          'direction': 1,\n",
      "          'adds': 1,\n",
      "          'directorial': 1,\n",
      "          'touches': 1,\n",
      "          'nothing': 1,\n",
      "          'special': 1,\n",
      "          'simple': 1,\n",
      "          'n': 1,\n",
      "          'perfectly': 1,\n",
      "          'ways': 1,\n",
      "          'one': 1,\n",
      "          'nit': 1,\n",
      "          'cast': 1,\n",
      "          'director': 1,\n",
      "          'sweet': 1,\n",
      "          'njust': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gone': 7,\n",
      "          'memphis': 4,\n",
      "          'cage': 4,\n",
      "          'kip': 4,\n",
      "          'enough': 4,\n",
      "          'one': 3,\n",
      "          'seconds': 3,\n",
      "          'cars': 3,\n",
      "          'doesnt': 3,\n",
      "          'nin': 3,\n",
      "          'waste': 3,\n",
      "          'brothers': 2,\n",
      "          'movies': 2,\n",
      "          'sixty': 2,\n",
      "          'tire': 2,\n",
      "          'squeals': 2,\n",
      "          'dialogue': 2,\n",
      "          'weak': 2,\n",
      "          'car': 2,\n",
      "          'thief': 2,\n",
      "          'take': 2,\n",
      "          'big': 2,\n",
      "          'fifty': 2,\n",
      "          'gangster': 2,\n",
      "          'calitri': 2,\n",
      "          'old': 2,\n",
      "          'scott': 2,\n",
      "          'bad': 2,\n",
      "          'stealing': 2,\n",
      "          'n': 2,\n",
      "          'plot': 2,\n",
      "          'two': 2,\n",
      "          'seriously': 2,\n",
      "          'nits': 2,\n",
      "          'better': 2,\n",
      "          'nthe': 2,\n",
      "          'like': 2,\n",
      "          'favorite': 1,\n",
      "          'h': 1,\n",
      "          'b': 1,\n",
      "          'halickis': 1,\n",
      "          '1974': 1,\n",
      "          'cult': 1,\n",
      "          'flick': 1,\n",
      "          'best': 1,\n",
      "          'products': 1,\n",
      "          'carchase': 1,\n",
      "          'genre': 1,\n",
      "          'provided': 1,\n",
      "          'drivein': 1,\n",
      "          'fare': 1,\n",
      "          '1970s': 1,\n",
      "          'nchase': 1,\n",
      "          'pics': 1,\n",
      "          'strong': 1,\n",
      "          'visceral': 1,\n",
      "          'appeal': 1,\n",
      "          'nalthough': 1,\n",
      "          'boasts': 1,\n",
      "          'bigger': 1,\n",
      "          'budget': 1,\n",
      "          'familiar': 1,\n",
      "          'stars': 1,\n",
      "          'remake': 1,\n",
      "          'relatively': 1,\n",
      "          'dull': 1,\n",
      "          'nrandall': 1,\n",
      "          'raines': 1,\n",
      "          'nicolas': 1,\n",
      "          'retired': 1,\n",
      "          'runs': 1,\n",
      "          'gocart': 1,\n",
      "          'track': 1,\n",
      "          'nhe': 1,\n",
      "          'got': 1,\n",
      "          'crime': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'giovanni': 1,\n",
      "          'ribisi': 1,\n",
      "          'would': 1,\n",
      "          'boosting': 1,\n",
      "          'nhowever': 1,\n",
      "          'became': 1,\n",
      "          'anyway': 1,\n",
      "          'hes': 1,\n",
      "          'trouble': 1,\n",
      "          'nkip': 1,\n",
      "          'promised': 1,\n",
      "          'deliver': 1,\n",
      "          'luxury': 1,\n",
      "          'sports': 1,\n",
      "          'raymond': 1,\n",
      "          'christopher': 1,\n",
      "          'eccleston': 1,\n",
      "          'end': 1,\n",
      "          'week': 1,\n",
      "          'ncalitri': 1,\n",
      "          'expects': 1,\n",
      "          'fulfill': 1,\n",
      "          'kips': 1,\n",
      "          'bargain': 1,\n",
      "          'come': 1,\n",
      "          'dies': 1,\n",
      "          'nmemphis': 1,\n",
      "          'gathers': 1,\n",
      "          'crew': 1,\n",
      "          'angelina': 1,\n",
      "          'jolie': 1,\n",
      "          'robert': 1,\n",
      "          'duvall': 1,\n",
      "          'patton': 1,\n",
      "          'chi': 1,\n",
      "          'mcbride': 1,\n",
      "          'vinnie': 1,\n",
      "          'jones': 1,\n",
      "          'brings': 1,\n",
      "          'boys': 1,\n",
      "          'j': 1,\n",
      "          'ncross': 1,\n",
      "          'william': 1,\n",
      "          'lee': 1,\n",
      "          'caan': 1,\n",
      "          'james': 1,\n",
      "          'duval': 1,\n",
      "          'nas': 1,\n",
      "          'breathing': 1,\n",
      "          'necks': 1,\n",
      "          'wasnt': 1,\n",
      "          'team': 1,\n",
      "          'pursued': 1,\n",
      "          'cop': 1,\n",
      "          'delroy': 1,\n",
      "          'lindo': 1,\n",
      "          'whos': 1,\n",
      "          'still': 1,\n",
      "          'ticked': 1,\n",
      "          'never': 1,\n",
      "          'busted': 1,\n",
      "          'rival': 1,\n",
      "          'rap': 1,\n",
      "          'star': 1,\n",
      "          'master': 1,\n",
      "          'p': 1,\n",
      "          'wants': 1,\n",
      "          'calitris': 1,\n",
      "          'clients': 1,\n",
      "          'nwatching': 1,\n",
      "          'discovered': 1,\n",
      "          'interesting': 1,\n",
      "          'nmaybe': 1,\n",
      "          'thats': 1,\n",
      "          'first': 1,\n",
      "          'fortynine': 1,\n",
      "          'fairly': 1,\n",
      "          'easy': 1,\n",
      "          'thrills': 1,\n",
      "          'saved': 1,\n",
      "          'eleanor': 1,\n",
      "          '1967': 1,\n",
      "          'shelby': 1,\n",
      "          'gto': 1,\n",
      "          'model': 1,\n",
      "          'always': 1,\n",
      "          'eluded': 1,\n",
      "          'nbut': 1,\n",
      "          'chase': 1,\n",
      "          'live': 1,\n",
      "          'long': 1,\n",
      "          'wait': 1,\n",
      "          'ni': 1,\n",
      "          'high': 1,\n",
      "          'hopes': 1,\n",
      "          'director': 1,\n",
      "          'dominic': 1,\n",
      "          'senas': 1,\n",
      "          'second': 1,\n",
      "          'film': 1,\n",
      "          'kalifornia': 1,\n",
      "          '1993': 1,\n",
      "          'debut': 1,\n",
      "          'brilliant': 1,\n",
      "          'study': 1,\n",
      "          'relationship': 1,\n",
      "          'violence': 1,\n",
      "          'audience': 1,\n",
      "          'movie': 1,\n",
      "          'sena': 1,\n",
      "          'took': 1,\n",
      "          'simple': 1,\n",
      "          'thriller': 1,\n",
      "          'couple': 1,\n",
      "          'gives': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'ride': 1,\n",
      "          'successfully': 1,\n",
      "          'endowed': 1,\n",
      "          'deeper': 1,\n",
      "          'significance': 1,\n",
      "          'seems': 1,\n",
      "          'aiming': 1,\n",
      "          'drama': 1,\n",
      "          'cant': 1,\n",
      "          'communicate': 1,\n",
      "          'goal': 1,\n",
      "          'mesh': 1,\n",
      "          'either': 1,\n",
      "          'takes': 1,\n",
      "          'light': 1,\n",
      "          'fun': 1,\n",
      "          'mean': 1,\n",
      "          'intense': 1,\n",
      "          'nthis': 1,\n",
      "          'chaser': 1,\n",
      "          'none': 1,\n",
      "          'lack': 1,\n",
      "          'action': 1,\n",
      "          'premise': 1,\n",
      "          'challenged': 1,\n",
      "          'filmmakers': 1,\n",
      "          'create': 1,\n",
      "          'spectacular': 1,\n",
      "          'chases': 1,\n",
      "          'ever': 1,\n",
      "          'script': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'newsweek': 1,\n",
      "          'interview': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'sean': 1,\n",
      "          'penn': 1,\n",
      "          'blasted': 1,\n",
      "          'pal': 1,\n",
      "          'nic': 1,\n",
      "          'making': 1,\n",
      "          'nmuch': 1,\n",
      "          'every': 1,\n",
      "          'good': 1,\n",
      "          'picture': 1,\n",
      "          'leaving': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'bringing': 1,\n",
      "          'dead': 1,\n",
      "          'major': 1,\n",
      "          'stinkers': 1,\n",
      "          'snake': 1,\n",
      "          'eyes': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          '8mm': 1,\n",
      "          'city': 1,\n",
      "          'angels': 1,\n",
      "          'nthat': 1,\n",
      "          'ratio': 1,\n",
      "          'probably': 1,\n",
      "          'lot': 1,\n",
      "          'peers': 1,\n",
      "          'boast': 1,\n",
      "          'real': 1,\n",
      "          'talent': 1,\n",
      "          'shame': 1,\n",
      "          'glitzy': 1,\n",
      "          'superficial': 1,\n",
      "          'tripe': 1,\n",
      "          '60': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 3,\n",
      "          'nthe': 3,\n",
      "          'men': 2,\n",
      "          'film': 2,\n",
      "          'nmartin': 2,\n",
      "          'movie': 2,\n",
      "          'old': 2,\n",
      "          'television': 2,\n",
      "          'series': 2,\n",
      "          'nit': 2,\n",
      "          'looks': 2,\n",
      "          'phil': 2,\n",
      "          'hartman': 2,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'funniest': 1,\n",
      "          'alive': 1,\n",
      "          'nif': 1,\n",
      "          'take': 1,\n",
      "          'true': 1,\n",
      "          'statement': 1,\n",
      "          'disappointment': 1,\n",
      "          'equal': 1,\n",
      "          'mine': 1,\n",
      "          'hilarious': 1,\n",
      "          'creating': 1,\n",
      "          'best': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'experiences': 1,\n",
      "          'ever': 1,\n",
      "          'taken': 1,\n",
      "          'place': 1,\n",
      "          'theaters': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'find': 1,\n",
      "          'based': 1,\n",
      "          'moments': 1,\n",
      "          'humor': 1,\n",
      "          'wit': 1,\n",
      "          'nbilko': 1,\n",
      "          'name': 1,\n",
      "          'isnt': 1,\n",
      "          'accident': 1,\n",
      "          'head': 1,\n",
      "          'army': 1,\n",
      "          'motor': 1,\n",
      "          'pool': 1,\n",
      "          'group': 1,\n",
      "          'passion': 1,\n",
      "          'schemes': 1,\n",
      "          'nevery': 1,\n",
      "          'episode': 1,\n",
      "          'involves': 1,\n",
      "          'sergeant': 1,\n",
      "          'another': 1,\n",
      "          'hairbrained': 1,\n",
      "          'plan': 1,\n",
      "          'get': 1,\n",
      "          'rich': 1,\n",
      "          'quick': 1,\n",
      "          'outwitting': 1,\n",
      "          'officers': 1,\n",
      "          'base': 1,\n",
      "          'n': 1,\n",
      "          'mchales': 1,\n",
      "          'navy': 1,\n",
      "          'granddaddy': 1,\n",
      "          'nthats': 1,\n",
      "          'idea': 1,\n",
      "          'behind': 1,\n",
      "          'difference': 1,\n",
      "          'farfetched': 1,\n",
      "          'usually': 1,\n",
      "          'goofy': 1,\n",
      "          'funny': 1,\n",
      "          'nthere': 1,\n",
      "          'laugh': 1,\n",
      "          'remake': 1,\n",
      "          'retains': 1,\n",
      "          'goofiness': 1,\n",
      "          'entertainment': 1,\n",
      "          'neverything': 1,\n",
      "          'clean': 1,\n",
      "          'obviously': 1,\n",
      "          'made': 1,\n",
      "          'hollywood': 1,\n",
      "          'back': 1,\n",
      "          'lot': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'like': 1,\n",
      "          'brand': 1,\n",
      "          'new': 1,\n",
      "          'even': 1,\n",
      "          'beatup': 1,\n",
      "          'stuff': 1,\n",
      "          'remarkably': 1,\n",
      "          'small': 1,\n",
      "          'bigger': 1,\n",
      "          'life': 1,\n",
      "          'role': 1,\n",
      "          'nin': 1,\n",
      "          'original': 1,\n",
      "          'silvers': 1,\n",
      "          'played': 1,\n",
      "          'huckster': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'touch': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sleaziness': 1,\n",
      "          'nmartins': 1,\n",
      "          'bilko': 1,\n",
      "          'pale': 1,\n",
      "          'imitation': 1,\n",
      "          'semibright': 1,\n",
      "          'spot': 1,\n",
      "          'bilkos': 1,\n",
      "          'archenemy': 1,\n",
      "          'nits': 1,\n",
      "          'saying': 1,\n",
      "          'much': 1,\n",
      "          'considering': 1,\n",
      "          'martins': 1,\n",
      "          'lackluster': 1,\n",
      "          'character': 1,\n",
      "          'leaves': 1,\n",
      "          'dust': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'eye': 8,\n",
      "          'nthe': 6,\n",
      "          'woman': 4,\n",
      "          'away': 3,\n",
      "          'car': 3,\n",
      "          'us': 3,\n",
      "          'movie': 3,\n",
      "          'nhe': 3,\n",
      "          'daughter': 3,\n",
      "          'ever': 2,\n",
      "          'miraculously': 2,\n",
      "          'walked': 2,\n",
      "          'nbut': 2,\n",
      "          'beholder': 2,\n",
      "          'opening': 2,\n",
      "          'called': 2,\n",
      "          'lawyer': 2,\n",
      "          'office': 2,\n",
      "          'screens': 2,\n",
      "          'get': 2,\n",
      "          'good': 2,\n",
      "          'chuckle': 2,\n",
      "          'ashley': 2,\n",
      "          'judd': 2,\n",
      "          'nafter': 2,\n",
      "          'murders': 2,\n",
      "          'little': 2,\n",
      "          'different': 2,\n",
      "          'witnessed': 2,\n",
      "          'loss': 2,\n",
      "          'also': 2,\n",
      "          'nhis': 2,\n",
      "          'every': 2,\n",
      "          'life': 2,\n",
      "          'one': 2,\n",
      "          'help': 2,\n",
      "          'find': 2,\n",
      "          'doesnt': 2,\n",
      "          'matter': 2,\n",
      "          'keep': 2,\n",
      "          'nwhen': 2,\n",
      "          'ni': 2,\n",
      "          'look': 2,\n",
      "          'film': 2,\n",
      "          'nif': 2,\n",
      "          'dissolves': 2,\n",
      "          'automobile': 1,\n",
      "          'accident': 1,\n",
      "          'youve': 1,\n",
      "          'scratches': 1,\n",
      "          'yet': 1,\n",
      "          'obliterated': 1,\n",
      "          'unrecognizable': 1,\n",
      "          'mangled': 1,\n",
      "          'wreck': 1,\n",
      "          'nwell': 1,\n",
      "          'never': 1,\n",
      "          'actually': 1,\n",
      "          'happened': 1,\n",
      "          'hope': 1,\n",
      "          'none': 1,\n",
      "          'experience': 1,\n",
      "          'situation': 1,\n",
      "          'watching': 1,\n",
      "          'inane': 1,\n",
      "          'exercise': 1,\n",
      "          'certainly': 1,\n",
      "          'feel': 1,\n",
      "          'ive': 1,\n",
      "          'unscathed': 1,\n",
      "          'twohour': 1,\n",
      "          'ride': 1,\n",
      "          'mercilessly': 1,\n",
      "          'careens': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'finally': 1,\n",
      "          'plummeting': 1,\n",
      "          'icy': 1,\n",
      "          'pond': 1,\n",
      "          'noddly': 1,\n",
      "          'psychologicalromancethriller': 1,\n",
      "          'starts': 1,\n",
      "          'promisingly': 1,\n",
      "          'enough': 1,\n",
      "          'sequence': 1,\n",
      "          'introduces': 1,\n",
      "          'british': 1,\n",
      "          'intelligence': 1,\n",
      "          'agent': 1,\n",
      "          'ewan': 1,\n",
      "          'mcgregor': 1,\n",
      "          'working': 1,\n",
      "          'washington': 1,\n",
      "          'dc': 1,\n",
      "          'nin': 1,\n",
      "          'humorous': 1,\n",
      "          'scene': 1,\n",
      "          'eyes': 1,\n",
      "          'top': 1,\n",
      "          'across': 1,\n",
      "          'street': 1,\n",
      "          'pants': 1,\n",
      "          'nusing': 1,\n",
      "          'array': 1,\n",
      "          'hightech': 1,\n",
      "          'surveillance': 1,\n",
      "          'communications': 1,\n",
      "          'equipment': 1,\n",
      "          'proceeds': 1,\n",
      "          'transmit': 1,\n",
      "          'pictures': 1,\n",
      "          'bared': 1,\n",
      "          'pc': 1,\n",
      "          'fax': 1,\n",
      "          'machines': 1,\n",
      "          'law': 1,\n",
      "          'firms': 1,\n",
      "          'employees': 1,\n",
      "          'audience': 1,\n",
      "          'gets': 1,\n",
      "          'later': 1,\n",
      "          'given': 1,\n",
      "          'assignment': 1,\n",
      "          'encounters': 1,\n",
      "          'beautiful': 1,\n",
      "          'nthere': 1,\n",
      "          'something': 1,\n",
      "          'compelling': 1,\n",
      "          'mysterious': 1,\n",
      "          'ndespite': 1,\n",
      "          'glamorous': 1,\n",
      "          'looks': 1,\n",
      "          'however': 1,\n",
      "          'learn': 1,\n",
      "          'psychopath': 1,\n",
      "          'propensity': 1,\n",
      "          'kill': 1,\n",
      "          'men': 1,\n",
      "          'close': 1,\n",
      "          'sobs': 1,\n",
      "          'singing': 1,\n",
      "          'christmas': 1,\n",
      "          'tune': 1,\n",
      "          'bluebirds': 1,\n",
      "          'laments': 1,\n",
      "          'abandoned': 1,\n",
      "          'father': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'killing': 1,\n",
      "          'puts': 1,\n",
      "          'wig': 1,\n",
      "          'assumes': 1,\n",
      "          'new': 1,\n",
      "          'name': 1,\n",
      "          'makes': 1,\n",
      "          'way': 1,\n",
      "          'another': 1,\n",
      "          'state': 1,\n",
      "          'murderous': 1,\n",
      "          'transgressions': 1,\n",
      "          'alert': 1,\n",
      "          'authorities': 1,\n",
      "          'somehow': 1,\n",
      "          'empathizes': 1,\n",
      "          'sense': 1,\n",
      "          'turns': 1,\n",
      "          'haunted': 1,\n",
      "          'past': 1,\n",
      "          'taken': 1,\n",
      "          'anguishes': 1,\n",
      "          'day': 1,\n",
      "          'tormented': 1,\n",
      "          'psyche': 1,\n",
      "          'creates': 1,\n",
      "          'ghostlike': 1,\n",
      "          'image': 1,\n",
      "          'engages': 1,\n",
      "          'conversation': 1,\n",
      "          'nshe': 1,\n",
      "          'becomes': 1,\n",
      "          'sort': 1,\n",
      "          'spectral': 1,\n",
      "          'adviser': 1,\n",
      "          'thing': 1,\n",
      "          'ghostly': 1,\n",
      "          'says': 1,\n",
      "          'must': 1,\n",
      "          'diverts': 1,\n",
      "          'energies': 1,\n",
      "          'trying': 1,\n",
      "          'kind': 1,\n",
      "          'salvation': 1,\n",
      "          'nit': 1,\n",
      "          'nand': 1,\n",
      "          'abnormally': 1,\n",
      "          'reticent': 1,\n",
      "          'hiding': 1,\n",
      "          'entire': 1,\n",
      "          'behind': 1,\n",
      "          'computer': 1,\n",
      "          'follows': 1,\n",
      "          'dozen': 1,\n",
      "          'locales': 1,\n",
      "          'shadows': 1,\n",
      "          'move': 1,\n",
      "          'trouble': 1,\n",
      "          'crazed': 1,\n",
      "          'druggie': 1,\n",
      "          'jason': 1,\n",
      "          'priestley': 1,\n",
      "          'attacks': 1,\n",
      "          'shows': 1,\n",
      "          'quick': 1,\n",
      "          'butt': 1,\n",
      "          'kicking': 1,\n",
      "          'police': 1,\n",
      "          'closing': 1,\n",
      "          'arrest': 1,\n",
      "          'provides': 1,\n",
      "          'distraction': 1,\n",
      "          'escape': 1,\n",
      "          'nall': 1,\n",
      "          'idea': 1,\n",
      "          'guardian': 1,\n",
      "          'angel': 1,\n",
      "          'stays': 1,\n",
      "          'sight': 1,\n",
      "          'npeculiar': 1,\n",
      "          'nhow': 1,\n",
      "          'bad': 1,\n",
      "          'refer': 1,\n",
      "          'review': 1,\n",
      "          'quote': 1,\n",
      "          'source': 1,\n",
      "          'litmus': 1,\n",
      "          'test': 1,\n",
      "          'njust': 1,\n",
      "          'take': 1,\n",
      "          'fullpage': 1,\n",
      "          'ad': 1,\n",
      "          'newspaper': 1,\n",
      "          'see': 1,\n",
      "          'pulling': 1,\n",
      "          'quotes': 1,\n",
      "          'nfor': 1,\n",
      "          'magazines': 1,\n",
      "          'flaunt': 1,\n",
      "          'mirabella': 1,\n",
      "          'nno': 1,\n",
      "          'doubt': 1,\n",
      "          'impressed': 1,\n",
      "          'judds': 1,\n",
      "          'series': 1,\n",
      "          'catwalks': 1,\n",
      "          'disguise': 1,\n",
      "          'changes': 1,\n",
      "          'major': 1,\n",
      "          'problem': 1,\n",
      "          'jerks': 1,\n",
      "          'forward': 1,\n",
      "          'always': 1,\n",
      "          'unsure': 1,\n",
      "          'ultimate': 1,\n",
      "          'destination': 1,\n",
      "          'thriller': 1,\n",
      "          'entranced': 1,\n",
      "          'love': 1,\n",
      "          'story': 1,\n",
      "          'absolutely': 1,\n",
      "          'emotional': 1,\n",
      "          'pull': 1,\n",
      "          'ncompletely': 1,\n",
      "          'disjointed': 1,\n",
      "          'structure': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'stylish': 1,\n",
      "          'reminded': 1,\n",
      "          'favorite': 1,\n",
      "          'commercial': 1,\n",
      "          '6': 1,\n",
      "          'tachometer': 1,\n",
      "          'winding': 1,\n",
      "          'road': 1,\n",
      "          'passenger': 1,\n",
      "          'rail': 1,\n",
      "          'small': 1,\n",
      "          'miniature': 1,\n",
      "          'childs': 1,\n",
      "          'train': 1,\n",
      "          'set': 1,\n",
      "          'still': 1,\n",
      "          'hopeful': 1,\n",
      "          'serious': 1,\n",
      "          'role': 1,\n",
      "          'showcase': 1,\n",
      "          'potential': 1,\n",
      "          'talents': 1,\n",
      "          'nbeyond': 1,\n",
      "          'hopelessly': 1,\n",
      "          'outofcontrol': 1,\n",
      "          'need': 1,\n",
      "          'seriously': 1,\n",
      "          'better': 1,\n",
      "          'traction': 1,\n",
      "          'handling': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 17,\n",
      "          'bad': 7,\n",
      "          'one': 7,\n",
      "          'writing': 6,\n",
      "          'nthis': 5,\n",
      "          'nand': 5,\n",
      "          'scene': 5,\n",
      "          'big': 5,\n",
      "          'much': 4,\n",
      "          'even': 4,\n",
      "          'film': 4,\n",
      "          'ni': 4,\n",
      "          'band': 4,\n",
      "          'along': 4,\n",
      "          'pretty': 3,\n",
      "          'ta': 3,\n",
      "          'got': 3,\n",
      "          'russ': 3,\n",
      "          'really': 3,\n",
      "          'ebert': 3,\n",
      "          'nbut': 3,\n",
      "          'almost': 3,\n",
      "          'im': 3,\n",
      "          'opening': 3,\n",
      "          'actually': 3,\n",
      "          'get': 3,\n",
      "          'goes': 3,\n",
      "          'go': 3,\n",
      "          'meyer': 3,\n",
      "          'dialogue': 3,\n",
      "          'like': 3,\n",
      "          'acting': 3,\n",
      "          'well': 3,\n",
      "          'better': 3,\n",
      "          'cynthia': 3,\n",
      "          'myers': 3,\n",
      "          'nthat': 2,\n",
      "          'sums': 2,\n",
      "          'beyond': 2,\n",
      "          'valley': 2,\n",
      "          'dolls': 2,\n",
      "          'nif': 2,\n",
      "          'point': 2,\n",
      "          'nother': 2,\n",
      "          'attractive': 2,\n",
      "          'large': 2,\n",
      "          'breasted': 2,\n",
      "          'reason': 2,\n",
      "          'look': 2,\n",
      "          'fact': 2,\n",
      "          'critic': 2,\n",
      "          'roger': 2,\n",
      "          'also': 2,\n",
      "          'never': 2,\n",
      "          'able': 2,\n",
      "          'sit': 2,\n",
      "          'parts': 2,\n",
      "          'funny': 2,\n",
      "          'nso': 2,\n",
      "          'credits': 2,\n",
      "          'first': 2,\n",
      "          'see': 2,\n",
      "          'guy': 2,\n",
      "          'idea': 2,\n",
      "          'happening': 2,\n",
      "          'explained': 2,\n",
      "          'later': 2,\n",
      "          'incredibly': 2,\n",
      "          'place': 2,\n",
      "          'quality': 2,\n",
      "          'rest': 2,\n",
      "          'wouldnt': 2,\n",
      "          'ask': 2,\n",
      "          'kelly': 2,\n",
      "          'reed': 2,\n",
      "          'hollywood': 2,\n",
      "          'music': 2,\n",
      "          'else': 2,\n",
      "          'worse': 2,\n",
      "          'fame': 2,\n",
      "          'idiotic': 2,\n",
      "          'thrown': 2,\n",
      "          'good': 2,\n",
      "          'thing': 2,\n",
      "          'nthe': 2,\n",
      "          'hey': 2,\n",
      "          'time': 2,\n",
      "          'words': 2,\n",
      "          'make': 2,\n",
      "          'wretched': 2,\n",
      "          'managed': 2,\n",
      "          'turkey': 2,\n",
      "          'sound': 2,\n",
      "          'nthen': 2,\n",
      "          'cast': 2,\n",
      "          'nsadly': 2,\n",
      "          'surprise': 2,\n",
      "          'fairly': 2,\n",
      "          'talents': 2,\n",
      "          'sexist': 2,\n",
      "          'review': 2,\n",
      "          'playmate': 2,\n",
      "          'thinking': 2,\n",
      "          'nude': 2,\n",
      "          'disappointment': 2,\n",
      "          'life': 2,\n",
      "          'nbad': 1,\n",
      "          'word': 1,\n",
      "          'seems': 1,\n",
      "          'summary': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'nstill': 1,\n",
      "          'havent': 1,\n",
      "          'director': 1,\n",
      "          'meyers': 1,\n",
      "          'predilection': 1,\n",
      "          'casting': 1,\n",
      "          'women': 1,\n",
      "          'ultimately': 1,\n",
      "          'expose': 1,\n",
      "          'aforementioned': 1,\n",
      "          'anatomical': 1,\n",
      "          'areas': 1,\n",
      "          'recommend': 1,\n",
      "          'taking': 1,\n",
      "          'cowritten': 1,\n",
      "          'famed': 1,\n",
      "          'responsible': 1,\n",
      "          'screenplay': 1,\n",
      "          'nafter': 1,\n",
      "          'watching': 1,\n",
      "          'another': 1,\n",
      "          'reviews': 1,\n",
      "          'gives': 1,\n",
      "          'thumbs': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'stinks': 1,\n",
      "          'loud': 1,\n",
      "          'nquite': 1,\n",
      "          'frankly': 1,\n",
      "          'deserves': 1,\n",
      "          'giving': 1,\n",
      "          'maybe': 1,\n",
      "          'generous': 1,\n",
      "          'nright': 1,\n",
      "          'knew': 1,\n",
      "          'classa': 1,\n",
      "          'bomb': 1,\n",
      "          'hands': 1,\n",
      "          'nnot': 1,\n",
      "          'way': 1,\n",
      "          'shot': 1,\n",
      "          'distracting': 1,\n",
      "          'includes': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'chased': 1,\n",
      "          'nazi': 1,\n",
      "          'uniform': 1,\n",
      "          'absolutely': 1,\n",
      "          'hell': 1,\n",
      "          'soon': 1,\n",
      "          'cut': 1,\n",
      "          'completely': 1,\n",
      "          'unrelated': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'sat': 1,\n",
      "          'mesmerized': 1,\n",
      "          'awful': 1,\n",
      "          'forgot': 1,\n",
      "          'seemingly': 1,\n",
      "          'popped': 1,\n",
      "          'nwith': 1,\n",
      "          'surprised': 1,\n",
      "          'nyou': 1,\n",
      "          'nlike': 1,\n",
      "          'matters': 1,\n",
      "          'nok': 1,\n",
      "          'allgirl': 1,\n",
      "          'headed': 1,\n",
      "          'macnamara': 1,\n",
      "          'dolly': 1,\n",
      "          'friends': 1,\n",
      "          'try': 1,\n",
      "          'gain': 1,\n",
      "          'foothold': 1,\n",
      "          'industry': 1,\n",
      "          'nonce': 1,\n",
      "          'manage': 1,\n",
      "          'find': 1,\n",
      "          'success': 1,\n",
      "          'due': 1,\n",
      "          'hooters': 1,\n",
      "          'anything': 1,\n",
      "          'sure': 1,\n",
      "          'wasnt': 1,\n",
      "          'brutally': 1,\n",
      "          'singing': 1,\n",
      "          'voices': 1,\n",
      "          'chronicles': 1,\n",
      "          'lives': 1,\n",
      "          'change': 1,\n",
      "          'pressures': 1,\n",
      "          'neverything': 1,\n",
      "          'egos': 1,\n",
      "          'booze': 1,\n",
      "          'drugs': 1,\n",
      "          'free': 1,\n",
      "          'flowing': 1,\n",
      "          'sex': 1,\n",
      "          'sends': 1,\n",
      "          'downward': 1,\n",
      "          'spiral': 1,\n",
      "          'nthere': 1,\n",
      "          'couple': 1,\n",
      "          'subplots': 1,\n",
      "          'measure': 1,\n",
      "          'nfrom': 1,\n",
      "          'creative': 1,\n",
      "          'standpoint': 1,\n",
      "          'nothing': 1,\n",
      "          'redeeming': 1,\n",
      "          'abovementioned': 1,\n",
      "          'obsession': 1,\n",
      "          'knockers': 1,\n",
      "          'seemed': 1,\n",
      "          'literally': 1,\n",
      "          'nmr': 1,\n",
      "          'generously': 1,\n",
      "          'helpings': 1,\n",
      "          'man': 1,\n",
      "          'dig': 1,\n",
      "          'favorite': 1,\n",
      "          'freaks': 1,\n",
      "          'nnow': 1,\n",
      "          'lines': 1,\n",
      "          'wrong': 1,\n",
      "          'nebert': 1,\n",
      "          'tried': 1,\n",
      "          'inject': 1,\n",
      "          'many': 1,\n",
      "          'possible': 1,\n",
      "          'nmaybe': 1,\n",
      "          'thought': 1,\n",
      "          'would': 1,\n",
      "          'seem': 1,\n",
      "          'smarter': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'world': 1,\n",
      "          'disguise': 1,\n",
      "          'everything': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'home': 1,\n",
      "          'movies': 1,\n",
      "          'directed': 1,\n",
      "          'nin': 1,\n",
      "          'van': 1,\n",
      "          'driving': 1,\n",
      "          'fortunes': 1,\n",
      "          'question': 1,\n",
      "          'editors': 1,\n",
      "          'suffered': 1,\n",
      "          'serious': 1,\n",
      "          'head': 1,\n",
      "          'injuries': 1,\n",
      "          'nadd': 1,\n",
      "          'directing': 1,\n",
      "          'check': 1,\n",
      "          'system': 1,\n",
      "          'broken': 1,\n",
      "          'pile': 1,\n",
      "          'crap': 1,\n",
      "          'emanating': 1,\n",
      "          'speakers': 1,\n",
      "          'nfirst': 1,\n",
      "          'lets': 1,\n",
      "          'start': 1,\n",
      "          'david': 1,\n",
      "          'gurian': 1,\n",
      "          'played': 1,\n",
      "          'harris': 1,\n",
      "          'manager': 1,\n",
      "          'goofiest': 1,\n",
      "          'looking': 1,\n",
      "          'ever': 1,\n",
      "          'set': 1,\n",
      "          'foot': 1,\n",
      "          'front': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'camera': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'making': 1,\n",
      "          'looks': 1,\n",
      "          'following': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nmeyers': 1,\n",
      "          'stable': 1,\n",
      "          'endowed': 1,\n",
      "          'girls': 1,\n",
      "          'benefit': 1,\n",
      "          'assets': 1,\n",
      "          'ndolly': 1,\n",
      "          'plays': 1,\n",
      "          'leader': 1,\n",
      "          'cup': 1,\n",
      "          'size': 1,\n",
      "          'yes': 1,\n",
      "          'loose': 1,\n",
      "          'shirt': 1,\n",
      "          'times': 1,\n",
      "          'display': 1,\n",
      "          'impressive': 1,\n",
      "          'ass': 1,\n",
      "          'chest': 1,\n",
      "          'nhey': 1,\n",
      "          'former': 1,\n",
      "          'playboy': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'casey': 1,\n",
      "          'members': 1,\n",
      "          'nmeyer': 1,\n",
      "          'casts': 1,\n",
      "          'gorgeous': 1,\n",
      "          'rack': 1,\n",
      "          'kill': 1,\n",
      "          'obviously': 1,\n",
      "          'talent': 1,\n",
      "          'scenes': 1,\n",
      "          'biggest': 1,\n",
      "          'nsure': 1,\n",
      "          'artsy': 1,\n",
      "          'throw': 1,\n",
      "          'placed': 1,\n",
      "          'shadows': 1,\n",
      "          'non': 1,\n",
      "          'side': 1,\n",
      "          'fun': 1,\n",
      "          'lesbo': 1,\n",
      "          'porn': 1,\n",
      "          'magazine': 1,\n",
      "          'ill': 1,\n",
      "          'admit': 1,\n",
      "          'damn': 1,\n",
      "          'catch': 1,\n",
      "          'naked': 1,\n",
      "          'since': 1,\n",
      "          'huge': 1,\n",
      "          'wasted': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'say': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'nunless': 1,\n",
      "          'course': 1,\n",
      "          'want': 1,\n",
      "          'feel': 1,\n",
      "          'knowing': 1,\n",
      "          'pulitzer': 1,\n",
      "          'prize': 1,\n",
      "          'winning': 1,\n",
      "          'screwed': 1,\n",
      "          'least': 1,\n",
      "          'checking': 1,\n",
      "          'double': 1,\n",
      "          'ds': 1,\n",
      "          'downloading': 1,\n",
      "          'pictures': 1,\n",
      "          'internet': 1,\n",
      "          'avoided': 1,\n",
      "          'costs': 1,\n",
      "          'nan': 1,\n",
      "          'might': 1,\n",
      "          'require': 1,\n",
      "          'video': 1,\n",
      "          'stores': 1,\n",
      "          'warning': 1,\n",
      "          'box': 1,\n",
      "          'beware': 1,\n",
      "          'extremely': 1,\n",
      "          'hazardous': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'nproceed': 1,\n",
      "          'extreme': 1,\n",
      "          'caution': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'travolta': 6,\n",
      "          'john': 5,\n",
      "          'one': 4,\n",
      "          'nits': 4,\n",
      "          'two': 4,\n",
      "          'woods': 4,\n",
      "          'much': 4,\n",
      "          'na': 3,\n",
      "          'army': 3,\n",
      "          'see': 3,\n",
      "          'big': 3,\n",
      "          'scene': 3,\n",
      "          'james': 3,\n",
      "          'like': 3,\n",
      "          'director': 3,\n",
      "          'simon': 3,\n",
      "          '510': 3,\n",
      "          'characters': 2,\n",
      "          'seen': 2,\n",
      "          'films': 2,\n",
      "          'predictability': 2,\n",
      "          'little': 2,\n",
      "          'tension': 2,\n",
      "          'suspense': 2,\n",
      "          'interest': 2,\n",
      "          'part': 2,\n",
      "          'rape': 2,\n",
      "          'inside': 2,\n",
      "          'general': 2,\n",
      "          'murder': 2,\n",
      "          'figure': 2,\n",
      "          'nit': 2,\n",
      "          'screen': 2,\n",
      "          'away': 2,\n",
      "          'even': 2,\n",
      "          'man': 2,\n",
      "          'plot': 2,\n",
      "          'points': 2,\n",
      "          'bad': 2,\n",
      "          'friend': 2,\n",
      "          'completed': 2,\n",
      "          'scored': 2,\n",
      "          'scenes': 2,\n",
      "          'cromwell': 2,\n",
      "          'plays': 2,\n",
      "          'nand': 2,\n",
      "          'good': 2,\n",
      "          'every': 2,\n",
      "          'character': 2,\n",
      "          'eventually': 2,\n",
      "          'lead': 2,\n",
      "          'best': 2,\n",
      "          'poor': 2,\n",
      "          'mans': 2,\n",
      "          'tony': 2,\n",
      "          'better': 2,\n",
      "          'officer': 2,\n",
      "          'gentleman': 2,\n",
      "          'known': 2,\n",
      "          'role': 2,\n",
      "          'reports': 2,\n",
      "          'apparently': 2,\n",
      "          'tv': 2,\n",
      "          'frankenheimer': 2,\n",
      "          'nthe': 2,\n",
      "          'bythenumbers': 1,\n",
      "          'introduces': 1,\n",
      "          'situations': 1,\n",
      "          'dilemmas': 1,\n",
      "          'developments': 1,\n",
      "          'weve': 1,\n",
      "          'parade': 1,\n",
      "          'easily': 1,\n",
      "          'guessed': 1,\n",
      "          'end': 1,\n",
      "          'frame': 1,\n",
      "          'number': 1,\n",
      "          'packed': 1,\n",
      "          'cap': 1,\n",
      "          'leading': 1,\n",
      "          'excitement': 1,\n",
      "          'paying': 1,\n",
      "          'audience': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'clich': 1,\n",
      "          'ridden': 1,\n",
      "          'formula': 1,\n",
      "          'nwelcome': 1,\n",
      "          'review': 1,\n",
      "          'generals': 1,\n",
      "          'daughter': 1,\n",
      "          'nplot': 1,\n",
      "          'undercover': 1,\n",
      "          'detective': 1,\n",
      "          'counselor': 1,\n",
      "          'find': 1,\n",
      "          'locked': 1,\n",
      "          'investigation': 1,\n",
      "          'bigwig': 1,\n",
      "          'daughters': 1,\n",
      "          'torture': 1,\n",
      "          'nthey': 1,\n",
      "          'must': 1,\n",
      "          'delve': 1,\n",
      "          'unspoken': 1,\n",
      "          'rules': 1,\n",
      "          'hushhushes': 1,\n",
      "          'conspiracy': 1,\n",
      "          'behind': 1,\n",
      "          'shocking': 1,\n",
      "          'ncritique': 1,\n",
      "          'numbers': 1,\n",
      "          'nthis': 1,\n",
      "          'sits': 1,\n",
      "          'couple': 1,\n",
      "          'hours': 1,\n",
      "          'floats': 1,\n",
      "          'around': 1,\n",
      "          'goes': 1,\n",
      "          'hopefully': 1,\n",
      "          'never': 1,\n",
      "          'heard': 1,\n",
      "          'predictable': 1,\n",
      "          'blind': 1,\n",
      "          'could': 1,\n",
      "          'coming': 1,\n",
      "          'mile': 1,\n",
      "          'suspenseful': 1,\n",
      "          'leaf': 1,\n",
      "          'dropping': 1,\n",
      "          'tree': 1,\n",
      "          'actionpacked': 1,\n",
      "          'canadian': 1,\n",
      "          'curling': 1,\n",
      "          'tournament': 1,\n",
      "          'nget': 1,\n",
      "          'picture': 1,\n",
      "          'ni': 1,\n",
      "          'sure': 1,\n",
      "          'ntoo': 1,\n",
      "          'took': 1,\n",
      "          'less': 1,\n",
      "          'minutes': 1,\n",
      "          'entire': 1,\n",
      "          'break': 1,\n",
      "          'neasy': 1,\n",
      "          'pie': 1,\n",
      "          'unfortunate': 1,\n",
      "          'actually': 1,\n",
      "          'extremely': 1,\n",
      "          'enjoyable': 1,\n",
      "          'together': 1,\n",
      "          'near': 1,\n",
      "          'beginning': 1,\n",
      "          'alas': 1,\n",
      "          'twas': 1,\n",
      "          'alone': 1,\n",
      "          'four': 1,\n",
      "          'allotted': 1,\n",
      "          'nwoods': 1,\n",
      "          'chews': 1,\n",
      "          'hes': 1,\n",
      "          'passes': 1,\n",
      "          'test': 1,\n",
      "          'well': 1,\n",
      "          'stowe': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'smile': 1,\n",
      "          'mia': 1,\n",
      "          'since': 1,\n",
      "          '12': 1,\n",
      "          'monkeys': 1,\n",
      "          '810': 1,\n",
      "          'seems': 1,\n",
      "          'isnt': 1,\n",
      "          'reserved': 1,\n",
      "          'courage': 1,\n",
      "          'fire': 1,\n",
      "          'men': 1,\n",
      "          'runs': 1,\n",
      "          'deep': 1,\n",
      "          'us': 1,\n",
      "          'knows': 1,\n",
      "          'suspect': 1,\n",
      "          'someone': 1,\n",
      "          'soon': 1,\n",
      "          'obvious': 1,\n",
      "          'guilty': 1,\n",
      "          'mug': 1,\n",
      "          'riding': 1,\n",
      "          'bike': 1,\n",
      "          'nother': 1,\n",
      "          'scenarios': 1,\n",
      "          'sponge': 1,\n",
      "          'include': 1,\n",
      "          'single': 1,\n",
      "          'breaking': 1,\n",
      "          'investigators': 1,\n",
      "          'without': 1,\n",
      "          'reason': 1,\n",
      "          'given': 1,\n",
      "          'ridiculously': 1,\n",
      "          'placed': 1,\n",
      "          'background': 1,\n",
      "          'relationship': 1,\n",
      "          'action': 1,\n",
      "          'grandparents': 1,\n",
      "          'bedroom': 1,\n",
      "          'nightly': 1,\n",
      "          'directorial': 1,\n",
      "          'style': 1,\n",
      "          'reward': 1,\n",
      "          'west': 1,\n",
      "          'solid': 1,\n",
      "          'nomination': 1,\n",
      "          'michael': 1,\n",
      "          'bay': 1,\n",
      "          'impression': 1,\n",
      "          'scott': 1,\n",
      "          'add': 1,\n",
      "          'sunlight': 1,\n",
      "          'shining': 1,\n",
      "          'halfopen': 1,\n",
      "          'shades': 1,\n",
      "          'grit': 1,\n",
      "          'integrity': 1,\n",
      "          'allout': 1,\n",
      "          'rainfall': 1,\n",
      "          'finale': 1,\n",
      "          'chaos': 1,\n",
      "          'youre': 1,\n",
      "          'great': 1,\n",
      "          'nyawn': 1,\n",
      "          'nyeah': 1,\n",
      "          'whatever': 1,\n",
      "          'nmean': 1,\n",
      "          'arent': 1,\n",
      "          'sick': 1,\n",
      "          'hearing': 1,\n",
      "          'boys': 1,\n",
      "          'overdone': 1,\n",
      "          'code': 1,\n",
      "          'silence': 1,\n",
      "          'nenough': 1,\n",
      "          'already': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nnext': 1,\n",
      "          'subject': 1,\n",
      "          'please': 1,\n",
      "          'nsee': 1,\n",
      "          'video': 1,\n",
      "          'wan': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'seeing': 1,\n",
      "          'movie': 1,\n",
      "          '8': 1,\n",
      "          'notherwise': 1,\n",
      "          'save': 1,\n",
      "          'trouble': 1,\n",
      "          'go': 1,\n",
      "          'take': 1,\n",
      "          'crap': 1,\n",
      "          'instead': 1,\n",
      "          'nyoull': 1,\n",
      "          'feel': 1,\n",
      "          'afterwards': 1,\n",
      "          'ntrust': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'ironically': 1,\n",
      "          'turned': 1,\n",
      "          'went': 1,\n",
      "          'dickie': 1,\n",
      "          'gere': 1,\n",
      "          'nironically': 1,\n",
      "          'earliest': 1,\n",
      "          'acting': 1,\n",
      "          'roles': 1,\n",
      "          'tvs': 1,\n",
      "          'welcome': 1,\n",
      "          'back': 1,\n",
      "          'kotter': 1,\n",
      "          'starring': 1,\n",
      "          'none': 1,\n",
      "          'nactor': 1,\n",
      "          'recently': 1,\n",
      "          'confirmed': 1,\n",
      "          'dick': 1,\n",
      "          'howard': 1,\n",
      "          'sterns': 1,\n",
      "          'radio': 1,\n",
      "          'program': 1,\n",
      "          'nunlike': 1,\n",
      "          'rocker': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'also': 1,\n",
      "          'alleged': 1,\n",
      "          'iq': 1,\n",
      "          '180': 1,\n",
      "          'nhe': 1,\n",
      "          'perfect': 1,\n",
      "          '800': 1,\n",
      "          'verbal': 1,\n",
      "          'sats': 1,\n",
      "          '779': 1,\n",
      "          'math': 1,\n",
      "          'section': 1,\n",
      "          'nwhat': 1,\n",
      "          'njohn': 1,\n",
      "          'married': 1,\n",
      "          'actress': 1,\n",
      "          'kelly': 1,\n",
      "          'preston': 1,\n",
      "          'son': 1,\n",
      "          'named': 1,\n",
      "          'jett': 1,\n",
      "          'loves': 1,\n",
      "          'planes': 1,\n",
      "          'nword': 1,\n",
      "          'street': 1,\n",
      "          'kid': 1,\n",
      "          'conceived': 1,\n",
      "          'weekend': 1,\n",
      "          'demi': 1,\n",
      "          'moore': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'home': 1,\n",
      "          'ndirector': 1,\n",
      "          'wests': 1,\n",
      "          'first': 1,\n",
      "          'jerry': 1,\n",
      "          'bruckheimer': 1,\n",
      "          'produced': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          '6': 1,\n",
      "          'nbefore': 1,\n",
      "          'directed': 1,\n",
      "          'commercials': 1,\n",
      "          'including': 1,\n",
      "          'budweiser': 1,\n",
      "          'ad': 1,\n",
      "          'dancing': 1,\n",
      "          'ants': 1,\n",
      "          'nyippee': 1,\n",
      "          'nveteran': 1,\n",
      "          'ronin': 1,\n",
      "          '7': 1,\n",
      "          'manchurian': 1,\n",
      "          'candidate': 1,\n",
      "          'portrays': 1,\n",
      "          'sonnenberg': 1,\n",
      "          'imdb': 1,\n",
      "          'senator': 1,\n",
      "          'robert': 1,\n",
      "          'kennedy': 1,\n",
      "          'shot': 1,\n",
      "          'ambassador': 1,\n",
      "          'hotel': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'june': 1,\n",
      "          '5': 1,\n",
      "          '1968': 1,\n",
      "          'personally': 1,\n",
      "          'driven': 1,\n",
      "          'day': 1,\n",
      "          'nclarence': 1,\n",
      "          'williams': 1,\n",
      "          'iii': 1,\n",
      "          'colonel': 1,\n",
      "          'fowler': 1,\n",
      "          'linc': 1,\n",
      "          'original': 1,\n",
      "          'mod': 1,\n",
      "          'squad': 1,\n",
      "          'series': 1,\n",
      "          'nyounger': 1,\n",
      "          'folk': 1,\n",
      "          'may': 1,\n",
      "          'remember': 1,\n",
      "          'princes': 1,\n",
      "          'father': 1,\n",
      "          'purple': 1,\n",
      "          'rain': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'murphy': 4,\n",
      "          'g': 3,\n",
      "          'made': 2,\n",
      "          'nthe': 2,\n",
      "          'ricky': 2,\n",
      "          'director': 2,\n",
      "          'home': 2,\n",
      "          'shopping': 2,\n",
      "          'rickys': 2,\n",
      "          'spiritual': 2,\n",
      "          'ideas': 2,\n",
      "          'much': 2,\n",
      "          'knew': 1,\n",
      "          '16': 1,\n",
      "          'years': 1,\n",
      "          'eddie': 1,\n",
      "          'brash': 1,\n",
      "          'raucous': 1,\n",
      "          'bigscreen': 1,\n",
      "          'splash': 1,\n",
      "          '_48_hrs': 1,\n",
      "          '_': 1,\n",
      "          'nwould': 1,\n",
      "          'become': 1,\n",
      "          'ncuddly': 1,\n",
      "          'disconcerting': 1,\n",
      "          'trend': 1,\n",
      "          'begun': 1,\n",
      "          'summers': 1,\n",
      "          'cutesy': 1,\n",
      "          'largely': 1,\n",
      "          'laughfree': 1,\n",
      "          '_doctor_dolittle_': 1,\n",
      "          'continues': 1,\n",
      "          'earnesttoafault': 1,\n",
      "          'dramedy': 1,\n",
      "          'nalthough': 1,\n",
      "          'topbilled': 1,\n",
      "          'merely': 1,\n",
      "          'support': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'plays': 1,\n",
      "          'hayman': 1,\n",
      "          'programming': 1,\n",
      "          'network': 1,\n",
      "          'nsales': 1,\n",
      "          'way': 1,\n",
      "          'job': 1,\n",
      "          'hangs': 1,\n",
      "          'thread': 1,\n",
      "          'meets': 1,\n",
      "          'mysterious': 1,\n",
      "          'guru': 1,\n",
      "          'desperate': 1,\n",
      "          'puts': 1,\n",
      "          'air': 1,\n",
      "          'nwhile': 1,\n",
      "          'sales': 1,\n",
      "          'skyrocket': 1,\n",
      "          'becomes': 1,\n",
      "          'overnight': 1,\n",
      "          'sensation': 1,\n",
      "          'reinvigorated': 1,\n",
      "          'greed': 1,\n",
      "          'grows': 1,\n",
      "          'endangering': 1,\n",
      "          'budding': 1,\n",
      "          'romance': 1,\n",
      "          'goodhearted': 1,\n",
      "          'media': 1,\n",
      "          'research': 1,\n",
      "          'consultant': 1,\n",
      "          'kelly': 1,\n",
      "          'preston': 1,\n",
      "          'nwriter': 1,\n",
      "          'tom': 1,\n",
      "          'schulman': 1,\n",
      "          'promising': 1,\n",
      "          'satirizing': 1,\n",
      "          'infomercials': 1,\n",
      "          'nature': 1,\n",
      "          'instant': 1,\n",
      "          'celebrity': 1,\n",
      "          'nbut': 1,\n",
      "          'would': 1,\n",
      "          'bite': 1,\n",
      "          'stephen': 1,\n",
      "          'herek': 1,\n",
      "          'invested': 1,\n",
      "          'energy': 1,\n",
      "          'direction': 1,\n",
      "          'film': 1,\n",
      "          'sluggishly': 1,\n",
      "          'paced': 1,\n",
      "          '_holy_man_': 1,\n",
      "          'slow': 1,\n",
      "          'overlong': 1,\n",
      "          '113': 1,\n",
      "          'minutes': 1,\n",
      "          'unfunny': 1,\n",
      "          'bore': 1,\n",
      "          'little': 1,\n",
      "          'juice': 1,\n",
      "          'proceedings': 1,\n",
      "          'cleansed': 1,\n",
      "          'attitude': 1,\n",
      "          '_and_': 1,\n",
      "          'comic': 1,\n",
      "          'sensibility': 1,\n",
      "          'star': 1,\n",
      "          'part': 1,\n",
      "          'straight': 1,\n",
      "          'man': 1,\n",
      "          'curiously': 1,\n",
      "          'lifeless': 1,\n",
      "          'presence': 1,\n",
      "          'ngoldblum': 1,\n",
      "          'actually': 1,\n",
      "          'quite': 1,\n",
      "          'good': 1,\n",
      "          'hard': 1,\n",
      "          'audience': 1,\n",
      "          'sustain': 1,\n",
      "          'interest': 1,\n",
      "          'character': 1,\n",
      "          'journey': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'interested': 1,\n",
      "          'either': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'pokemon': 11,\n",
      "          'movie': 8,\n",
      "          'bad': 6,\n",
      "          'little': 3,\n",
      "          '3': 2,\n",
      "          'animation': 2,\n",
      "          'nthe': 2,\n",
      "          'first': 2,\n",
      "          'film': 2,\n",
      "          'end': 2,\n",
      "          'almost': 2,\n",
      "          'million': 2,\n",
      "          'third': 2,\n",
      "          'time': 2,\n",
      "          'ash': 2,\n",
      "          'friends': 2,\n",
      "          'johto': 2,\n",
      "          'brother': 2,\n",
      "          'young': 2,\n",
      "          'unown': 2,\n",
      "          'powerful': 2,\n",
      "          'psychic': 2,\n",
      "          'abilities': 2,\n",
      "          'bring': 2,\n",
      "          'entei': 2,\n",
      "          'every': 2,\n",
      "          'good': 2,\n",
      "          'one': 2,\n",
      "          'second': 2,\n",
      "          'qualities': 2,\n",
      "          'big': 2,\n",
      "          'lot': 1,\n",
      "          'things': 1,\n",
      "          'nfirst': 1,\n",
      "          'plot': 1,\n",
      "          'heavy': 1,\n",
      "          'mess': 1,\n",
      "          'voice': 1,\n",
      "          'talents': 1,\n",
      "          'badly': 1,\n",
      "          'written': 1,\n",
      "          'script': 1,\n",
      "          'fantastic': 1,\n",
      "          'came': 1,\n",
      "          '1999': 1,\n",
      "          'huge': 1,\n",
      "          'hit': 1,\n",
      "          'grossing': 1,\n",
      "          '90': 1,\n",
      "          'domestically': 1,\n",
      "          'na': 1,\n",
      "          'sequel': 1,\n",
      "          'soon': 1,\n",
      "          'followed': 1,\n",
      "          'even': 1,\n",
      "          'made': 1,\n",
      "          '45': 1,\n",
      "          'nwarner': 1,\n",
      "          'released': 1,\n",
      "          'based': 1,\n",
      "          'immensely': 1,\n",
      "          'popular': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'waste': 1,\n",
      "          'celluloid': 1,\n",
      "          'nthis': 1,\n",
      "          'ketchum': 1,\n",
      "          'way': 1,\n",
      "          'battles': 1,\n",
      "          'told': 1,\n",
      "          'new': 1,\n",
      "          'spinoff': 1,\n",
      "          'journeys': 1,\n",
      "          'go': 1,\n",
      "          'figure': 1,\n",
      "          'anyway': 1,\n",
      "          'comes': 1,\n",
      "          'contact': 1,\n",
      "          'girl': 1,\n",
      "          'whos': 1,\n",
      "          'father': 1,\n",
      "          'disappeared': 1,\n",
      "          'trying': 1,\n",
      "          'discover': 1,\n",
      "          'nthey': 1,\n",
      "          'small': 1,\n",
      "          'punch': 1,\n",
      "          'great': 1,\n",
      "          'together': 1,\n",
      "          'create': 1,\n",
      "          'legendary': 1,\n",
      "          'barriers': 1,\n",
      "          'mollys': 1,\n",
      "          'house': 1,\n",
      "          'creates': 1,\n",
      "          'wish': 1,\n",
      "          'wants': 1,\n",
      "          'nnow': 1,\n",
      "          'stop': 1,\n",
      "          'show': 1,\n",
      "          'rather': 1,\n",
      "          'ntoo': 1,\n",
      "          'really': 1,\n",
      "          'surprisingly': 1,\n",
      "          'entertaining': 1,\n",
      "          'somewhat': 1,\n",
      "          'absorbing': 1,\n",
      "          'piece': 1,\n",
      "          'trash': 1,\n",
      "          'nit': 1,\n",
      "          'message': 1,\n",
      "          'flaws': 1,\n",
      "          'seem': 1,\n",
      "          'overpower': 1,\n",
      "          'goods': 1,\n",
      "          'nim': 1,\n",
      "          'still': 1,\n",
      "          'sure': 1,\n",
      "          'thing': 1,\n",
      "          'ugly': 1,\n",
      "          'animals': 1,\n",
      "          'speak': 1,\n",
      "          'name': 1,\n",
      "          'language': 1,\n",
      "          'besides': 1,\n",
      "          'meowth': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'dont': 1,\n",
      "          'understand': 1,\n",
      "          'saying': 1,\n",
      "          'nmy': 1,\n",
      "          'thought': 1,\n",
      "          'amazing': 1,\n",
      "          'kept': 1,\n",
      "          'leaning': 1,\n",
      "          'asking': 1,\n",
      "          'happened': 1,\n",
      "          'nhis': 1,\n",
      "          'response': 1,\n",
      "          'lecture': 1,\n",
      "          'nsure': 1,\n",
      "          'put': 1,\n",
      "          'place': 1,\n",
      "          'nwith': 1,\n",
      "          'feeling': 1,\n",
      "          '4': 1,\n",
      "          'might': 1,\n",
      "          'total': 1,\n",
      "          'bust': 1,\n",
      "          'well': 1,\n",
      "          'n': 1,\n",
      "          'redeeming': 1,\n",
      "          'kids': 1,\n",
      "          'fans': 1,\n",
      "          'dig': 1,\n",
      "          'minute': 1,\n",
      "          'nfor': 1,\n",
      "          'parents': 1,\n",
      "          'andor': 1,\n",
      "          'brothers': 1,\n",
      "          'sisters': 1,\n",
      "          'sit': 1,\n",
      "          'pillow': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hero': 6,\n",
      "          'big': 6,\n",
      "          'burly': 6,\n",
      "          'bad': 5,\n",
      "          'doesnt': 4,\n",
      "          'good': 4,\n",
      "          'long': 4,\n",
      "          'guy': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 4,\n",
      "          'fire': 4,\n",
      "          'must': 4,\n",
      "          'really': 4,\n",
      "          'nunfortunately': 3,\n",
      "          'hes': 3,\n",
      "          'nas': 3,\n",
      "          'save': 3,\n",
      "          'movie': 3,\n",
      "          'film': 3,\n",
      "          'forest': 3,\n",
      "          'sadistic': 3,\n",
      "          'creep': 3,\n",
      "          'killed': 3,\n",
      "          'twice': 3,\n",
      "          'die': 3,\n",
      "          'always': 2,\n",
      "          'former': 2,\n",
      "          'turned': 2,\n",
      "          'fox': 2,\n",
      "          'actor': 2,\n",
      "          'first': 2,\n",
      "          'star': 2,\n",
      "          'firestorm': 2,\n",
      "          'jesse': 2,\n",
      "          'action': 2,\n",
      "          'rescue': 2,\n",
      "          'director': 2,\n",
      "          'dean': 2,\n",
      "          'semler': 2,\n",
      "          'work': 2,\n",
      "          'boring': 2,\n",
      "          'set': 2,\n",
      "          'something': 2,\n",
      "          'reason': 2,\n",
      "          'sequences': 2,\n",
      "          'group': 2,\n",
      "          'dog': 2,\n",
      "          'year': 2,\n",
      "          'scott': 2,\n",
      "          'glenn': 2,\n",
      "          'isnt': 2,\n",
      "          'going': 2,\n",
      "          'william': 2,\n",
      "          'forsythe': 2,\n",
      "          'damsel': 2,\n",
      "          'distress': 2,\n",
      "          'suzy': 2,\n",
      "          'amis': 2,\n",
      "          'end': 2,\n",
      "          'worse': 2,\n",
      "          'generic': 2,\n",
      "          '10': 2,\n",
      "          'key': 2,\n",
      "          '1': 1,\n",
      "          'hardtodecipher': 1,\n",
      "          'accent': 1,\n",
      "          '2': 1,\n",
      "          'speak': 1,\n",
      "          'monotone': 1,\n",
      "          '3': 1,\n",
      "          'nhis': 1,\n",
      "          'face': 1,\n",
      "          'wear': 1,\n",
      "          'impassive': 1,\n",
      "          'expression': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'nfl': 1,\n",
      "          'player': 1,\n",
      "          'sportscaster': 1,\n",
      "          'said': 1,\n",
      "          'vehicle': 1,\n",
      "          'plain': 1,\n",
      "          'awful': 1,\n",
      "          'none': 1,\n",
      "          'glaring': 1,\n",
      "          'problems': 1,\n",
      "          'made': 1,\n",
      "          'acting': 1,\n",
      "          'debut': 1,\n",
      "          'john': 1,\n",
      "          'woos': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'mediocre': 1,\n",
      "          'often': 1,\n",
      "          'blends': 1,\n",
      "          'scenery': 1,\n",
      "          'ace': 1,\n",
      "          'firefighter': 1,\n",
      "          'graves': 1,\n",
      "          'supposed': 1,\n",
      "          'playing': 1,\n",
      "          'biggerthanlife': 1,\n",
      "          'kind': 1,\n",
      "          'man': 1,\n",
      "          'crash': 1,\n",
      "          'flaming': 1,\n",
      "          'door': 1,\n",
      "          'child': 1,\n",
      "          'parachute': 1,\n",
      "          'burning': 1,\n",
      "          'clearing': 1,\n",
      "          'stupid': 1,\n",
      "          'campers': 1,\n",
      "          'despite': 1,\n",
      "          'best': 1,\n",
      "          'efforts': 1,\n",
      "          'firsttime': 1,\n",
      "          'photograph': 1,\n",
      "          'using': 1,\n",
      "          'heroic': 1,\n",
      "          'shots': 1,\n",
      "          'make': 1,\n",
      "          'kevin': 1,\n",
      "          'costners': 1,\n",
      "          'postman': 1,\n",
      "          'look': 1,\n",
      "          'stark': 1,\n",
      "          'turns': 1,\n",
      "          'pretty': 1,\n",
      "          'nto': 1,\n",
      "          'put': 1,\n",
      "          'kindly': 1,\n",
      "          'wellwritten': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nfirestorm': 1,\n",
      "          'collection': 1,\n",
      "          'howlingly': 1,\n",
      "          'lines': 1,\n",
      "          'backdrop': 1,\n",
      "          'disaster': 1,\n",
      "          'clich': 1,\n",
      "          'taken': 1,\n",
      "          'together': 1,\n",
      "          'form': 1,\n",
      "          'requires': 1,\n",
      "          'level': 1,\n",
      "          'viewer': 1,\n",
      "          'inebriation': 1,\n",
      "          'recognized': 1,\n",
      "          'plot': 1,\n",
      "          'getting': 1,\n",
      "          'instead': 1,\n",
      "          'lower': 1,\n",
      "          'realistic': 1,\n",
      "          'fascinated': 1,\n",
      "          'meticulous': 1,\n",
      "          'planning': 1,\n",
      "          'necessary': 1,\n",
      "          'stage': 1,\n",
      "          'effectively': 1,\n",
      "          'nwere': 1,\n",
      "          'introduced': 1,\n",
      "          'afternoon': 1,\n",
      "          'colleagues': 1,\n",
      "          'jump': 1,\n",
      "          'midst': 1,\n",
      "          'people': 1,\n",
      "          'nduring': 1,\n",
      "          'sequence': 1,\n",
      "          'proves': 1,\n",
      "          'also': 1,\n",
      "          'sensitive': 1,\n",
      "          'risking': 1,\n",
      "          'life': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'yes': 1,\n",
      "          'lives': 1,\n",
      "          'broiled': 1,\n",
      "          'alive': 1,\n",
      "          'nflashforward': 1,\n",
      "          'nnow': 1,\n",
      "          'taking': 1,\n",
      "          'chief': 1,\n",
      "          'smokejumpers': 1,\n",
      "          'association': 1,\n",
      "          'replacing': 1,\n",
      "          'outgoing': 1,\n",
      "          'honcho': 1,\n",
      "          'wynt': 1,\n",
      "          'perkins': 1,\n",
      "          'real': 1,\n",
      "          'nbut': 1,\n",
      "          'day': 1,\n",
      "          'heros': 1,\n",
      "          'charge': 1,\n",
      "          'businessasusual': 1,\n",
      "          'na': 1,\n",
      "          'nasty': 1,\n",
      "          'escaped': 1,\n",
      "          'criminals': 1,\n",
      "          'wyoming': 1,\n",
      "          'alight': 1,\n",
      "          'aid': 1,\n",
      "          'flight': 1,\n",
      "          'freedom': 1,\n",
      "          'nled': 1,\n",
      "          'randy': 1,\n",
      "          'earl': 1,\n",
      "          'shaye': 1,\n",
      "          'pose': 1,\n",
      "          'canadian': 1,\n",
      "          'firefighters': 1,\n",
      "          'somehow': 1,\n",
      "          'got': 1,\n",
      "          'lost': 1,\n",
      "          'across': 1,\n",
      "          'border': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'meet': 1,\n",
      "          'take': 1,\n",
      "          'hostage': 1,\n",
      "          'neventually': 1,\n",
      "          'placed': 1,\n",
      "          'position': 1,\n",
      "          'fight': 1,\n",
      "          'defeat': 1,\n",
      "          'restore': 1,\n",
      "          'order': 1,\n",
      "          'galaxy': 1,\n",
      "          'nfirestorms': 1,\n",
      "          'cinematographer': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'dances': 1,\n",
      "          'wolves': 1,\n",
      "          'surprise': 1,\n",
      "          'looks': 1,\n",
      "          'thats': 1,\n",
      "          'firestorms': 1,\n",
      "          'lone': 1,\n",
      "          'asset': 1,\n",
      "          'falters': 1,\n",
      "          'near': 1,\n",
      "          'computergenerated': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'fill': 1,\n",
      "          'screen': 1,\n",
      "          'nthese': 1,\n",
      "          'equal': 1,\n",
      "          'quality': 1,\n",
      "          'might': 1,\n",
      "          'observe': 1,\n",
      "          'nintendo': 1,\n",
      "          '64': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'include': 1,\n",
      "          'variety': 1,\n",
      "          'chases': 1,\n",
      "          'occasionally': 1,\n",
      "          'interesting': 1,\n",
      "          'never': 1,\n",
      "          'invigorating': 1,\n",
      "          'neveryone': 1,\n",
      "          'including': 1,\n",
      "          'appears': 1,\n",
      "          'motions': 1,\n",
      "          'nthere': 1,\n",
      "          'memorable': 1,\n",
      "          'performance': 1,\n",
      "          'found': 1,\n",
      "          'beginning': 1,\n",
      "          'unless': 1,\n",
      "          'count': 1,\n",
      "          'generates': 1,\n",
      "          'heat': 1,\n",
      "          'lacks': 1,\n",
      "          'panache': 1,\n",
      "          'nhes': 1,\n",
      "          'snappy': 1,\n",
      "          'oneliners': 1,\n",
      "          'hurl': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'absolute': 1,\n",
      "          'power': 1,\n",
      "          'titanic': 1,\n",
      "          'accidentally': 1,\n",
      "          'forget': 1,\n",
      "          'next': 1,\n",
      "          'time': 1,\n",
      "          'theyre': 1,\n",
      "          'making': 1,\n",
      "          'resume': 1,\n",
      "          'ntheres': 1,\n",
      "          'small': 1,\n",
      "          'comfort': 1,\n",
      "          'knowing': 1,\n",
      "          'early': 1,\n",
      "          'already': 1,\n",
      "          'entry': 1,\n",
      "          'bottom': 1,\n",
      "          'list': 1,\n",
      "          'n': 1,\n",
      "          'least': 1,\n",
      "          'hope': 1,\n",
      "          'arent': 1,\n",
      "          'films': 1,\n",
      "          'nand': 1,\n",
      "          'know': 1,\n",
      "          'wasnt': 1,\n",
      "          'disliked': 1,\n",
      "          'audience': 1,\n",
      "          'filing': 1,\n",
      "          'screening': 1,\n",
      "          'loitered': 1,\n",
      "          'theater': 1,\n",
      "          'lobby': 1,\n",
      "          'catch': 1,\n",
      "          'comments': 1,\n",
      "          'general': 1,\n",
      "          'consensus': 1,\n",
      "          'seemed': 1,\n",
      "          'although': 1,\n",
      "          'sucked': 1,\n",
      "          'promotional': 1,\n",
      "          'ring': 1,\n",
      "          'cool': 1,\n",
      "          'problem': 1,\n",
      "          'wont': 1,\n",
      "          'giving': 1,\n",
      "          'rings': 1,\n",
      "          'regular': 1,\n",
      "          'moviegoers': 1,\n",
      "          'nixes': 1,\n",
      "          'see': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'bad': 6,\n",
      "          'characters': 5,\n",
      "          'nthe': 5,\n",
      "          'plot': 4,\n",
      "          'brain': 4,\n",
      "          'film': 4,\n",
      "          'verhoevens': 3,\n",
      "          'allow': 3,\n",
      "          'troopers': 3,\n",
      "          'bugs': 3,\n",
      "          'planet': 3,\n",
      "          'carnage': 3,\n",
      "          'ensues': 3,\n",
      "          'bug': 3,\n",
      "          'battle': 3,\n",
      "          'robocop': 3,\n",
      "          'people': 3,\n",
      "          'pasadena': 2,\n",
      "          'script': 2,\n",
      "          'acting': 2,\n",
      "          'use': 2,\n",
      "          'lots': 2,\n",
      "          'nit': 2,\n",
      "          'violence': 2,\n",
      "          'gore': 2,\n",
      "          'brief': 2,\n",
      "          'nsome': 2,\n",
      "          'sign': 2,\n",
      "          'federal': 2,\n",
      "          'sending': 2,\n",
      "          'nafter': 2,\n",
      "          'one': 2,\n",
      "          'nthis': 2,\n",
      "          'rico': 2,\n",
      "          'dizzy': 2,\n",
      "          'plans': 2,\n",
      "          'ok': 2,\n",
      "          'picture': 2,\n",
      "          'ads': 2,\n",
      "          'much': 2,\n",
      "          'like': 2,\n",
      "          'starship': 2,\n",
      "          'ability': 2,\n",
      "          'early': 2,\n",
      "          'appears': 2,\n",
      "          'almost': 2,\n",
      "          'good': 2,\n",
      "          'scenes': 2,\n",
      "          'quite': 2,\n",
      "          'limbs': 2,\n",
      "          'graphic': 2,\n",
      "          'us': 2,\n",
      "          'seen': 1,\n",
      "          'amc': 1,\n",
      "          'old': 1,\n",
      "          '8': 1,\n",
      "          'ca': 1,\n",
      "          'sdds': 1,\n",
      "          'npaul': 1,\n",
      "          'last': 1,\n",
      "          'showgirls': 1,\n",
      "          'word': 1,\n",
      "          'loosest': 1,\n",
      "          'possible': 1,\n",
      "          'sense': 1,\n",
      "          'served': 1,\n",
      "          'sex': 1,\n",
      "          'nudity': 1,\n",
      "          'stank': 1,\n",
      "          'nstarship': 1,\n",
      "          'serves': 1,\n",
      "          'stinks': 1,\n",
      "          'nnobody': 1,\n",
      "          'watch': 1,\n",
      "          'heres': 1,\n",
      "          'synopsis': 1,\n",
      "          'anyway': 1,\n",
      "          'friends': 1,\n",
      "          'straight': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'reserve': 1,\n",
      "          'armed': 1,\n",
      "          'forces': 1,\n",
      "          'time': 1,\n",
      "          'evil': 1,\n",
      "          'klendathu': 1,\n",
      "          'meteors': 1,\n",
      "          'towards': 1,\n",
      "          'earth': 1,\n",
      "          'side': 1,\n",
      "          'galaxy': 1,\n",
      "          'slips': 1,\n",
      "          'defences': 1,\n",
      "          'destroys': 1,\n",
      "          'buenos': 1,\n",
      "          'aires': 1,\n",
      "          'home': 1,\n",
      "          'city': 1,\n",
      "          'main': 1,\n",
      "          'war': 1,\n",
      "          'declared': 1,\n",
      "          'involves': 1,\n",
      "          'grunts': 1,\n",
      "          'include': 1,\n",
      "          'johnny': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'meyer': 1,\n",
      "          'surface': 1,\n",
      "          'nmuch': 1,\n",
      "          'troops': 1,\n",
      "          'withdrawn': 1,\n",
      "          'sent': 1,\n",
      "          'another': 1,\n",
      "          'answer': 1,\n",
      "          'distress': 1,\n",
      "          'call': 1,\n",
      "          'nmore': 1,\n",
      "          'rescued': 1,\n",
      "          'changed': 1,\n",
      "          'capture': 1,\n",
      "          'believed': 1,\n",
      "          'controlling': 1,\n",
      "          'aliens': 1,\n",
      "          'look': 1,\n",
      "          'didnt': 1,\n",
      "          'write': 1,\n",
      "          'nyet': 1,\n",
      "          'nget': 1,\n",
      "          'ninterspersed': 1,\n",
      "          'throughout': 1,\n",
      "          'network': 1,\n",
      "          'present': 1,\n",
      "          'neofascist': 1,\n",
      "          'state': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'exists': 1,\n",
      "          'drive': 1,\n",
      "          'onwards': 1,\n",
      "          'silly': 1,\n",
      "          'nharris': 1,\n",
      "          'star': 1,\n",
      "          'tvs': 1,\n",
      "          'doogie': 1,\n",
      "          'howser': 1,\n",
      "          'md': 1,\n",
      "          'presented': 1,\n",
      "          'psychic': 1,\n",
      "          'talk': 1,\n",
      "          'ferret': 1,\n",
      "          'apparently': 1,\n",
      "          'accept': 1,\n",
      "          'mindmeld': 1,\n",
      "          'later': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'first': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'service': 1,\n",
      "          'drag': 1,\n",
      "          'episode': 1,\n",
      "          'beverly': 1,\n",
      "          'hills': 1,\n",
      "          '90210': 1,\n",
      "          'onedimensional': 1,\n",
      "          'killed': 1,\n",
      "          'says': 1,\n",
      "          'got': 1,\n",
      "          'sleep': 1,\n",
      "          'ni': 1,\n",
      "          'hoped': 1,\n",
      "          'noname': 1,\n",
      "          'cast': 1,\n",
      "          'would': 1,\n",
      "          'kill': 1,\n",
      "          'several': 1,\n",
      "          'lead': 1,\n",
      "          'surprise': 1,\n",
      "          'audience': 1,\n",
      "          'idea': 1,\n",
      "          'escaped': 1,\n",
      "          'dialogue': 1,\n",
      "          'embarassing': 1,\n",
      "          'isnt': 1,\n",
      "          'helped': 1,\n",
      "          'frequently': 1,\n",
      "          'terrible': 1,\n",
      "          'delivery': 1,\n",
      "          'burst': 1,\n",
      "          'laughing': 1,\n",
      "          'harris': 1,\n",
      "          'delivered': 1,\n",
      "          'speech': 1,\n",
      "          'need': 1,\n",
      "          'sacrifice': 1,\n",
      "          'hundred': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'species': 1,\n",
      "          'nfinally': 1,\n",
      "          'fake': 1,\n",
      "          'become': 1,\n",
      "          'nuisance': 1,\n",
      "          'nalthough': 1,\n",
      "          'evoke': 1,\n",
      "          'propaganda': 1,\n",
      "          'wwiiera': 1,\n",
      "          'movietone': 1,\n",
      "          'reels': 1,\n",
      "          'presumably': 1,\n",
      "          'meant': 1,\n",
      "          'complete': 1,\n",
      "          'lack': 1,\n",
      "          'subtlety': 1,\n",
      "          'blunts': 1,\n",
      "          'effect': 1,\n",
      "          'say': 1,\n",
      "          'thats': 1,\n",
      "          'irrelevant': 1,\n",
      "          'hinges': 1,\n",
      "          'nso': 1,\n",
      "          'nwell': 1,\n",
      "          'admit': 1,\n",
      "          'effects': 1,\n",
      "          'move': 1,\n",
      "          'convincingly': 1,\n",
      "          'especially': 1,\n",
      "          'deprived': 1,\n",
      "          'nand': 1,\n",
      "          'brains': 1,\n",
      "          'blown': 1,\n",
      "          'cut': 1,\n",
      "          'bodies': 1,\n",
      "          'ripped': 1,\n",
      "          'two': 1,\n",
      "          'impressive': 1,\n",
      "          'ways': 1,\n",
      "          'nbut': 1,\n",
      "          'problem': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'rests': 1,\n",
      "          'entirely': 1,\n",
      "          'portrayal': 1,\n",
      "          'continous': 1,\n",
      "          'attempt': 1,\n",
      "          'gross': 1,\n",
      "          'starting': 1,\n",
      "          'richards': 1,\n",
      "          'character': 1,\n",
      "          'vomits': 1,\n",
      "          'onscreen': 1,\n",
      "          'nverhoeven': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'employing': 1,\n",
      "          'elements': 1,\n",
      "          'made': 1,\n",
      "          'success': 1,\n",
      "          'fails': 1,\n",
      "          'spectacularly': 1,\n",
      "          'nwhile': 1,\n",
      "          'message': 1,\n",
      "          'importance': 1,\n",
      "          'human': 1,\n",
      "          'gave': 1,\n",
      "          'guys': 1,\n",
      "          'motivation': 1,\n",
      "          'lacks': 1,\n",
      "          'even': 1,\n",
      "          'simple': 1,\n",
      "          'features': 1,\n",
      "          'nwhen': 1,\n",
      "          'sucks': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'merely': 1,\n",
      "          'analogy': 1,\n",
      "          'done': 1,\n",
      "          'full': 1,\n",
      "          'suitable': 1,\n",
      "          'children': 1,\n",
      "          '16': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 8,\n",
      "          'seems': 5,\n",
      "          'nit': 5,\n",
      "          'day': 4,\n",
      "          'one': 4,\n",
      "          'cinema': 4,\n",
      "          'often': 3,\n",
      "          'park': 3,\n",
      "          'oboe': 3,\n",
      "          'astray': 3,\n",
      "          'director': 3,\n",
      "          'musician': 3,\n",
      "          'little': 2,\n",
      "          'boy': 2,\n",
      "          'solid': 2,\n",
      "          'potential': 2,\n",
      "          'simply': 2,\n",
      "          'becomes': 2,\n",
      "          'community': 2,\n",
      "          'dull': 2,\n",
      "          'time': 2,\n",
      "          'people': 2,\n",
      "          'town': 2,\n",
      "          'tourist': 2,\n",
      "          'years': 2,\n",
      "          'grave': 2,\n",
      "          'happens': 2,\n",
      "          'first': 2,\n",
      "          'woman': 2,\n",
      "          'inspector': 2,\n",
      "          'plot': 2,\n",
      "          'freak': 2,\n",
      "          'show': 2,\n",
      "          'character': 2,\n",
      "          'music': 2,\n",
      "          'best': 2,\n",
      "          'subtitles': 2,\n",
      "          'words': 2,\n",
      "          'pace': 2,\n",
      "          'end': 2,\n",
      "          'two': 2,\n",
      "          'piece': 2,\n",
      "          'beauty': 2,\n",
      "          'similar': 1,\n",
      "          'lost': 1,\n",
      "          'right': 1,\n",
      "          'venturing': 1,\n",
      "          'call': 1,\n",
      "          'toque': 1,\n",
      "          'disappointing': 1,\n",
      "          'wandered': 1,\n",
      "          'nmany': 1,\n",
      "          'elements': 1,\n",
      "          'far': 1,\n",
      "          'greater': 1,\n",
      "          'claudio': 1,\n",
      "          'macdowell': 1,\n",
      "          'ever': 1,\n",
      "          'know': 1,\n",
      "          'dont': 1,\n",
      "          'convert': 1,\n",
      "          'work': 1,\n",
      "          'nalthough': 1,\n",
      "          'setting': 1,\n",
      "          'never': 1,\n",
      "          'established': 1,\n",
      "          'apparent': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'somewhere': 1,\n",
      "          'latin': 1,\n",
      "          'american': 1,\n",
      "          'village': 1,\n",
      "          'present': 1,\n",
      "          'every': 1,\n",
      "          'downhill': 1,\n",
      "          'slide': 1,\n",
      "          'last': 1,\n",
      "          'nover': 1,\n",
      "          'taken': 1,\n",
      "          'closed': 1,\n",
      "          'passed': 1,\n",
      "          'daily': 1,\n",
      "          'funeral': 1,\n",
      "          'processions': 1,\n",
      "          'accompanied': 1,\n",
      "          'digger': 1,\n",
      "          'nso': 1,\n",
      "          'paolo': 1,\n",
      "          'betti': 1,\n",
      "          'arrive': 1,\n",
      "          'nhe': 1,\n",
      "          'sends': 1,\n",
      "          'routine': 1,\n",
      "          'mayhem': 1,\n",
      "          'shock': 1,\n",
      "          'revealed': 1,\n",
      "          'plays': 1,\n",
      "          'hobby': 1,\n",
      "          'nwhen': 1,\n",
      "          'sits': 1,\n",
      "          'give': 1,\n",
      "          'solo': 1,\n",
      "          'performance': 1,\n",
      "          'entire': 1,\n",
      "          'gathers': 1,\n",
      "          'around': 1,\n",
      "          'bit': 1,\n",
      "          'entertainment': 1,\n",
      "          'countless': 1,\n",
      "          'meets': 1,\n",
      "          'villagers': 1,\n",
      "          'agrees': 1,\n",
      "          'play': 1,\n",
      "          'local': 1,\n",
      "          'accompaniment': 1,\n",
      "          'silent': 1,\n",
      "          'thus': 1,\n",
      "          'opening': 1,\n",
      "          'theatre': 1,\n",
      "          'ages': 1,\n",
      "          'talks': 1,\n",
      "          'witty': 1,\n",
      "          'task': 1,\n",
      "          'owner': 1,\n",
      "          'leticia': 1,\n",
      "          'vota': 1,\n",
      "          'also': 1,\n",
      "          'engaged': 1,\n",
      "          'towns': 1,\n",
      "          'police': 1,\n",
      "          'figure': 1,\n",
      "          'soon': 1,\n",
      "          'suspicious': 1,\n",
      "          'fiances': 1,\n",
      "          'involvement': 1,\n",
      "          'rest': 1,\n",
      "          'closely': 1,\n",
      "          'resembles': 1,\n",
      "          'gone': 1,\n",
      "          'horribly': 1,\n",
      "          'features': 1,\n",
      "          'literally': 1,\n",
      "          'rises': 1,\n",
      "          'phone': 1,\n",
      "          'conversation': 1,\n",
      "          'god': 1,\n",
      "          'aforementioned': 1,\n",
      "          'goes': 1,\n",
      "          'intriguing': 1,\n",
      "          'serious': 1,\n",
      "          'almost': 1,\n",
      "          'humorous': 1,\n",
      "          'drunk': 1,\n",
      "          'ntechnically': 1,\n",
      "          'nightmare': 1,\n",
      "          'score': 1,\n",
      "          'poorly': 1,\n",
      "          'edited': 1,\n",
      "          'choppy': 1,\n",
      "          'rough': 1,\n",
      "          'abrupt': 1,\n",
      "          'lighting': 1,\n",
      "          'poor': 1,\n",
      "          'makes': 1,\n",
      "          'increasingly': 1,\n",
      "          'difficult': 1,\n",
      "          'focus': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'english': 1,\n",
      "          'full': 1,\n",
      "          'misspelled': 1,\n",
      "          'absent': 1,\n",
      "          'presumably': 1,\n",
      "          'assumption': 1,\n",
      "          'audience': 1,\n",
      "          'able': 1,\n",
      "          'understand': 1,\n",
      "          'simple': 1,\n",
      "          'portuguese': 1,\n",
      "          'spanish': 1,\n",
      "          'phrases': 1,\n",
      "          'nthis': 1,\n",
      "          'translation': 1,\n",
      "          'flaw': 1,\n",
      "          'highlighted': 1,\n",
      "          'beginning': 1,\n",
      "          'relevant': 1,\n",
      "          'fight': 1,\n",
      "          'filled': 1,\n",
      "          'dialogue': 1,\n",
      "          'limited': 1,\n",
      "          'fewer': 1,\n",
      "          '25': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'uneven': 1,\n",
      "          'opens': 1,\n",
      "          'series': 1,\n",
      "          'long': 1,\n",
      "          'panoramic': 1,\n",
      "          'shots': 1,\n",
      "          'alone': 1,\n",
      "          'test': 1,\n",
      "          'ones': 1,\n",
      "          'patience': 1,\n",
      "          'moves': 1,\n",
      "          'faster': 1,\n",
      "          'slows': 1,\n",
      "          'towards': 1,\n",
      "          'determined': 1,\n",
      "          'reach': 1,\n",
      "          'hour': 1,\n",
      "          'mark': 1,\n",
      "          'nthere': 1,\n",
      "          'however': 1,\n",
      "          'exploring': 1,\n",
      "          'reunification': 1,\n",
      "          'nthese': 1,\n",
      "          'topics': 1,\n",
      "          'could': 1,\n",
      "          'easily': 1,\n",
      "          'fill': 1,\n",
      "          'movie': 1,\n",
      "          'nperhaps': 1,\n",
      "          'technical': 1,\n",
      "          'aspects': 1,\n",
      "          'improve': 1,\n",
      "          'might': 1,\n",
      "          'thing': 1,\n",
      "          'nmost': 1,\n",
      "          'importantly': 1,\n",
      "          'though': 1,\n",
      "          'would': 1,\n",
      "          'patch': 1,\n",
      "          'make': 1,\n",
      "          'flow': 1,\n",
      "          'better': 1,\n",
      "          'hours': 1,\n",
      "          'arent': 1,\n",
      "          'bore': 1,\n",
      "          'nuntil': 1,\n",
      "          'hope': 1,\n",
      "          'crying': 1,\n",
      "          'mommy': 1,\n",
      "          'wanders': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'birdy': 5,\n",
      "          'costume': 5,\n",
      "          'nwhen': 5,\n",
      "          'movie': 4,\n",
      "          'daughter': 4,\n",
      "          'played': 4,\n",
      "          'scenes': 4,\n",
      "          'would': 3,\n",
      "          'father': 3,\n",
      "          'one': 3,\n",
      "          'nit': 3,\n",
      "          'nbut': 3,\n",
      "          'eccentric': 3,\n",
      "          'nwhat': 3,\n",
      "          'ntheres': 3,\n",
      "          'scene': 3,\n",
      "          'friend': 2,\n",
      "          'nthe': 2,\n",
      "          'plot': 2,\n",
      "          'get': 2,\n",
      "          'stars': 2,\n",
      "          'good': 2,\n",
      "          'better': 2,\n",
      "          'nyou': 2,\n",
      "          'poor': 2,\n",
      "          'floats_': 2,\n",
      "          'nwhy': 2,\n",
      "          'nearly': 2,\n",
      "          'script': 2,\n",
      "          'could': 2,\n",
      "          'best': 2,\n",
      "          'less': 2,\n",
      "          'back': 2,\n",
      "          'rowlands': 2,\n",
      "          'films': 2,\n",
      "          'many': 2,\n",
      "          'failed': 2,\n",
      "          'point': 2,\n",
      "          'supposed': 2,\n",
      "          'family': 2,\n",
      "          'nthere': 2,\n",
      "          'job': 2,\n",
      "          'nand': 2,\n",
      "          'connick': 2,\n",
      "          'jr': 2,\n",
      "          'sort': 2,\n",
      "          'go': 2,\n",
      "          'great': 2,\n",
      "          'warped': 2,\n",
      "          'almost': 2,\n",
      "          'someone': 2,\n",
      "          'like': 2,\n",
      "          'debacle': 2,\n",
      "          'cant': 2,\n",
      "          'shes': 2,\n",
      "          'recurring': 2,\n",
      "          'wrong': 2,\n",
      "          'appear': 2,\n",
      "          'image': 2,\n",
      "          'destroyed': 2,\n",
      "          'invites': 1,\n",
      "          'nthis': 1,\n",
      "          'evade': 1,\n",
      "          'explosions': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'standard': 1,\n",
      "          'summer': 1,\n",
      "          'fare': 1,\n",
      "          'grounded': 1,\n",
      "          'reality': 1,\n",
      "          'follows': 1,\n",
      "          'terrifying': 1,\n",
      "          'incident': 1,\n",
      "          'mother': 1,\n",
      "          'independent': 1,\n",
      "          'separate': 1,\n",
      "          'move': 1,\n",
      "          'away': 1,\n",
      "          'city': 1,\n",
      "          'nthey': 1,\n",
      "          'need': 1,\n",
      "          'fresh': 1,\n",
      "          'air': 1,\n",
      "          'perspective': 1,\n",
      "          'maybe': 1,\n",
      "          'start': 1,\n",
      "          'nromance': 1,\n",
      "          'begins': 1,\n",
      "          'brew': 1,\n",
      "          'however': 1,\n",
      "          'locals': 1,\n",
      "          'international': 1,\n",
      "          'superstar': 1,\n",
      "          'rugged': 1,\n",
      "          'clothing': 1,\n",
      "          'sparks': 1,\n",
      "          'things': 1,\n",
      "          'especially': 1,\n",
      "          'countrywestern': 1,\n",
      "          'slow': 1,\n",
      "          'dance': 1,\n",
      "          'rising': 1,\n",
      "          'young': 1,\n",
      "          'starlet': 1,\n",
      "          'helms': 1,\n",
      "          'cast': 1,\n",
      "          'directed': 1,\n",
      "          'actorturneddirectors': 1,\n",
      "          'hollywood': 1,\n",
      "          'accept': 1,\n",
      "          'jump': 1,\n",
      "          'opportunity': 1,\n",
      "          'see': 1,\n",
      "          'believe': 1,\n",
      "          '_the': 1,\n",
      "          'horse': 1,\n",
      "          'whisperer_': 1,\n",
      "          'moviegoer': 1,\n",
      "          'conned': 1,\n",
      "          'nalas': 1,\n",
      "          'find': 1,\n",
      "          'watching': 1,\n",
      "          'incredulously': 1,\n",
      "          '_hope': 1,\n",
      "          'noh': 1,\n",
      "          'woe': 1,\n",
      "          'nyour': 1,\n",
      "          'hope': 1,\n",
      "          'sunk': 1,\n",
      "          'made': 1,\n",
      "          'released': 1,\n",
      "          'travesty': 1,\n",
      "          'every': 1,\n",
      "          'level': 1,\n",
      "          'authority': 1,\n",
      "          'sink': 1,\n",
      "          'careers': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'nat': 1,\n",
      "          'hands': 1,\n",
      "          'gem': 1,\n",
      "          'clueless': 1,\n",
      "          'succeeds': 1,\n",
      "          'transferring': 1,\n",
      "          'cluelessness': 1,\n",
      "          'us': 1,\n",
      "          'viewers': 1,\n",
      "          'n_hope': 1,\n",
      "          'sandra': 1,\n",
      "          'bullock': 1,\n",
      "          'discovering': 1,\n",
      "          'husband': 1,\n",
      "          'cheating': 1,\n",
      "          'national': 1,\n",
      "          'television': 1,\n",
      "          'takes': 1,\n",
      "          'drives': 1,\n",
      "          'home': 1,\n",
      "          'helmed': 1,\n",
      "          'countryish': 1,\n",
      "          'bumpkin': 1,\n",
      "          'gena': 1,\n",
      "          'decorates': 1,\n",
      "          'stuffed': 1,\n",
      "          'wildlife': 1,\n",
      "          'nbirdys': 1,\n",
      "          'nephew': 1,\n",
      "          'travis': 1,\n",
      "          '_leave': 1,\n",
      "          'beaver_s': 1,\n",
      "          'cameron': 1,\n",
      "          'finley': 1,\n",
      "          'custody': 1,\n",
      "          'injokes': 1,\n",
      "          'always': 1,\n",
      "          'seen': 1,\n",
      "          'wearing': 1,\n",
      "          'different': 1,\n",
      "          'halloween': 1,\n",
      "          'ndoes': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'nis': 1,\n",
      "          'funny': 1,\n",
      "          'show': 1,\n",
      "          'convinced': 1,\n",
      "          'grandma': 1,\n",
      "          'locked': 1,\n",
      "          'endangering': 1,\n",
      "          'mental': 1,\n",
      "          'welfare': 1,\n",
      "          'child': 1,\n",
      "          'nall': 1,\n",
      "          'undercuts': 1,\n",
      "          'none': 1,\n",
      "          'register': 1,\n",
      "          'emotion': 1,\n",
      "          'used': 1,\n",
      "          'prom': 1,\n",
      "          'queen': 1,\n",
      "          'humbled': 1,\n",
      "          'approaching': 1,\n",
      "          'peer': 1,\n",
      "          'mocked': 1,\n",
      "          'dances': 1,\n",
      "          'hospital': 1,\n",
      "          'alzheimers': 1,\n",
      "          'theres': 1,\n",
      "          'sentimental': 1,\n",
      "          'justin': 1,\n",
      "          'harry': 1,\n",
      "          'taking': 1,\n",
      "          'liking': 1,\n",
      "          'showing': 1,\n",
      "          'beautiful': 1,\n",
      "          'pad': 1,\n",
      "          'built': 1,\n",
      "          'scratch': 1,\n",
      "          'sidetracked': 1,\n",
      "          'earlier': 1,\n",
      "          'question': 1,\n",
      "          'grandmother': 1,\n",
      "          'pains': 1,\n",
      "          'provide': 1,\n",
      "          'dog': 1,\n",
      "          'kermit': 1,\n",
      "          'cowboy': 1,\n",
      "          'whip': 1,\n",
      "          'full': 1,\n",
      "          'furred': 1,\n",
      "          'barney': 1,\n",
      "          'grandson': 1,\n",
      "          'wear': 1,\n",
      "          'dinner': 1,\n",
      "          'ramifications': 1,\n",
      "          'lead': 1,\n",
      "          'rest': 1,\n",
      "          'life': 1,\n",
      "          'noutside': 1,\n",
      "          'sure': 1,\n",
      "          'signs': 1,\n",
      "          'screenwriters': 1,\n",
      "          'block': 1,\n",
      "          'stands': 1,\n",
      "          'bully': 1,\n",
      "          'school': 1,\n",
      "          'loses': 1,\n",
      "          'pulls': 1,\n",
      "          'goofy': 1,\n",
      "          'lipsynch': 1,\n",
      "          'cheer': 1,\n",
      "          'dies': 1,\n",
      "          'cries': 1,\n",
      "          'wails': 1,\n",
      "          'exasperation': 1,\n",
      "          'coming': 1,\n",
      "          'nin': 1,\n",
      "          'notice': 1,\n",
      "          'strings': 1,\n",
      "          'pushed': 1,\n",
      "          'sit': 1,\n",
      "          'comatose': 1,\n",
      "          'hoping': 1,\n",
      "          'end': 1,\n",
      "          'nwho': 1,\n",
      "          'survive': 1,\n",
      "          'ni': 1,\n",
      "          'worry': 1,\n",
      "          'bullocks': 1,\n",
      "          'career': 1,\n",
      "          'running': 1,\n",
      "          'autopilot': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'nshe': 1,\n",
      "          'attitude': 1,\n",
      "          'solid': 1,\n",
      "          'perkiness': 1,\n",
      "          'drive': 1,\n",
      "          'busbut': 1,\n",
      "          'handle': 1,\n",
      "          'emotional': 1,\n",
      "          'much': 1,\n",
      "          'hold': 1,\n",
      "          'southern': 1,\n",
      "          'accent': 1,\n",
      "          'nharry': 1,\n",
      "          'worsestick': 1,\n",
      "          'singing': 1,\n",
      "          'acting': 1,\n",
      "          'lessons': 1,\n",
      "          'please': 1,\n",
      "          'ngena': 1,\n",
      "          'part': 1,\n",
      "          'actress': 1,\n",
      "          'staggers': 1,\n",
      "          'mind': 1,\n",
      "          'weighed': 1,\n",
      "          'lukewarm': 1,\n",
      "          'material': 1,\n",
      "          'severe': 1,\n",
      "          'tragedy': 1,\n",
      "          'star': 1,\n",
      "          'john': 1,\n",
      "          'cassavettes': 1,\n",
      "          'known': 1,\n",
      "          'ntwo': 1,\n",
      "          'notes': 1,\n",
      "          'forest': 1,\n",
      "          'whittaker': 1,\n",
      "          '1': 1,\n",
      "          'cut': 1,\n",
      "          'slowmotion': 1,\n",
      "          'sequences': 1,\n",
      "          'twelve': 1,\n",
      "          'times': 1,\n",
      "          'undercut': 1,\n",
      "          'direction': 1,\n",
      "          'trick': 1,\n",
      "          'nhave': 1,\n",
      "          'done': 1,\n",
      "          'shaved': 1,\n",
      "          'tenminutes': 1,\n",
      "          'unbearable': 1,\n",
      "          'n': 1,\n",
      "          '2': 1,\n",
      "          'youve': 1,\n",
      "          'know': 1,\n",
      "          'something': 1,\n",
      "          'cinematographers': 1,\n",
      "          'filter': 1,\n",
      "          'makes': 1,\n",
      "          'candlelight': 1,\n",
      "          'little': 1,\n",
      "          'x': 1,\n",
      "          'nyoure': 1,\n",
      "          'bad': 1,\n",
      "          'director': 1,\n",
      "          'change': 1,\n",
      "          'terrible': 1,\n",
      "          'working': 1,\n",
      "          'neighborhood': 1,\n",
      "          'fotomat': 1,\n",
      "          'finds': 1,\n",
      "          'machine': 1,\n",
      "          'dark': 1,\n",
      "          'nthink': 1,\n",
      "          'na': 1,\n",
      "          'succession': 1,\n",
      "          'images': 1,\n",
      "          'may': 1,\n",
      "          'entertaining': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'murder': 9,\n",
      "          'perfect': 6,\n",
      "          'david': 6,\n",
      "          'isnt': 4,\n",
      "          'best': 3,\n",
      "          'dial': 3,\n",
      "          'almost': 3,\n",
      "          'nthe': 3,\n",
      "          'characters': 3,\n",
      "          'wife': 3,\n",
      "          'steven': 3,\n",
      "          'emily': 3,\n",
      "          'get': 3,\n",
      "          'remake': 2,\n",
      "          'hitchcock': 2,\n",
      "          'film': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'script': 2,\n",
      "          'faults': 2,\n",
      "          'little': 2,\n",
      "          'behind': 2,\n",
      "          'suspense': 2,\n",
      "          'plot': 2,\n",
      "          'thrillers': 2,\n",
      "          'involved': 2,\n",
      "          'going': 2,\n",
      "          'become': 2,\n",
      "          'theyre': 2,\n",
      "          'bad': 2,\n",
      "          'nnot': 2,\n",
      "          'course': 2,\n",
      "          'case': 2,\n",
      "          'least': 2,\n",
      "          'something': 2,\n",
      "          'na': 2,\n",
      "          'well': 2,\n",
      "          'hayes': 2,\n",
      "          'paltrow': 2,\n",
      "          'douglas': 2,\n",
      "          'stevens': 2,\n",
      "          'affair': 2,\n",
      "          'viggo': 2,\n",
      "          'mortensen': 2,\n",
      "          'husband': 2,\n",
      "          'good': 2,\n",
      "          '000': 2,\n",
      "          'rest': 2,\n",
      "          'n': 2,\n",
      "          'getting': 2,\n",
      "          'hes': 2,\n",
      "          'supposed': 2,\n",
      "          'interesting': 2,\n",
      "          'see': 2,\n",
      "          'nits': 2,\n",
      "          'alfred': 1,\n",
      "          'uncertain': 1,\n",
      "          'project': 1,\n",
      "          'illustrates': 1,\n",
      "          'nfrankly': 1,\n",
      "          'one': 1,\n",
      "          'master': 1,\n",
      "          'directors': 1,\n",
      "          'greatest': 1,\n",
      "          'efforts': 1,\n",
      "          'ample': 1,\n",
      "          'room': 1,\n",
      "          'improvement': 1,\n",
      "          'instead': 1,\n",
      "          'updating': 1,\n",
      "          'ironing': 1,\n",
      "          'speeding': 1,\n",
      "          'pace': 1,\n",
      "          'inexplicably': 1,\n",
      "          'managed': 1,\n",
      "          'eliminate': 1,\n",
      "          'everything': 1,\n",
      "          'worthwhile': 1,\n",
      "          'leaving': 1,\n",
      "          'nearly': 1,\n",
      "          'unwatchable': 1,\n",
      "          'wreckage': 1,\n",
      "          'wouldbe': 1,\n",
      "          '90s': 1,\n",
      "          'thriller': 1,\n",
      "          'nalmost': 1,\n",
      "          'films': 1,\n",
      "          'loaded': 1,\n",
      "          'implausibilities': 1,\n",
      "          'keep': 1,\n",
      "          'viewers': 1,\n",
      "          'enough': 1,\n",
      "          'whats': 1,\n",
      "          'flaws': 1,\n",
      "          'logic': 1,\n",
      "          'dont': 1,\n",
      "          'apparent': 1,\n",
      "          'long': 1,\n",
      "          'final': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'often': 1,\n",
      "          'overt': 1,\n",
      "          'aware': 1,\n",
      "          'happening': 1,\n",
      "          'nthis': 1,\n",
      "          'sign': 1,\n",
      "          'occurrences': 1,\n",
      "          'shatter': 1,\n",
      "          'suspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'astute': 1,\n",
      "          'viewer': 1,\n",
      "          'looking': 1,\n",
      "          'next': 1,\n",
      "          'blunder': 1,\n",
      "          'nof': 1,\n",
      "          'gives': 1,\n",
      "          'audience': 1,\n",
      "          'member': 1,\n",
      "          'besides': 1,\n",
      "          'concentrating': 1,\n",
      "          'inane': 1,\n",
      "          'lifeless': 1,\n",
      "          'cardboard': 1,\n",
      "          'strict': 1,\n",
      "          'borrow': 1,\n",
      "          'heavily': 1,\n",
      "          'frederick': 1,\n",
      "          'knotts': 1,\n",
      "          'play': 1,\n",
      "          'also': 1,\n",
      "          'source': 1,\n",
      "          'material': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'version': 1,\n",
      "          '1981': 1,\n",
      "          'madefortv': 1,\n",
      "          'retelling': 1,\n",
      "          'nemily': 1,\n",
      "          'gwyneth': 1,\n",
      "          'wealthy': 1,\n",
      "          'powerful': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'moverandshaker': 1,\n",
      "          'michael': 1,\n",
      "          'ntheir': 1,\n",
      "          'marriage': 1,\n",
      "          'resents': 1,\n",
      "          'controlling': 1,\n",
      "          'instincts': 1,\n",
      "          'form': 1,\n",
      "          'rebellion': 1,\n",
      "          'penniless': 1,\n",
      "          'painter': 1,\n",
      "          'shaw': 1,\n",
      "          'nwhen': 1,\n",
      "          'learns': 1,\n",
      "          'relationship': 1,\n",
      "          'decides': 1,\n",
      "          'confront': 1,\n",
      "          'approach': 1,\n",
      "          'typical': 1,\n",
      "          'cuckolded': 1,\n",
      "          'ninstead': 1,\n",
      "          'yelling': 1,\n",
      "          'threatening': 1,\n",
      "          'offers': 1,\n",
      "          'proposal': 1,\n",
      "          'thats': 1,\n",
      "          'resist': 1,\n",
      "          '500': 1,\n",
      "          'cash': 1,\n",
      "          '100': 1,\n",
      "          'break': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'apartment': 1,\n",
      "          'kill': 1,\n",
      "          'first': 1,\n",
      "          'payment': 1,\n",
      "          'never': 1,\n",
      "          'bothers': 1,\n",
      "          'ask': 1,\n",
      "          'nultimately': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'three': 1,\n",
      "          'main': 1,\n",
      "          'sympathetic': 1,\n",
      "          'coldhearted': 1,\n",
      "          'wants': 1,\n",
      "          'dead': 1,\n",
      "          'hands': 1,\n",
      "          'fortune': 1,\n",
      "          'mercenary': 1,\n",
      "          'lover': 1,\n",
      "          'willing': 1,\n",
      "          'deed': 1,\n",
      "          'halfamillion': 1,\n",
      "          'woman': 1,\n",
      "          'happily': 1,\n",
      "          'carrying': 1,\n",
      "          'extramarital': 1,\n",
      "          'individuals': 1,\n",
      "          'profoundly': 1,\n",
      "          'dislikable': 1,\n",
      "          'possible': 1,\n",
      "          'make': 1,\n",
      "          'movie': 1,\n",
      "          'detestable': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogs': 1,\n",
      "          'compelling': 1,\n",
      "          'nsteven': 1,\n",
      "          'lifted': 1,\n",
      "          'directly': 1,\n",
      "          'screenwriting': 1,\n",
      "          '101': 1,\n",
      "          'text': 1,\n",
      "          'book': 1,\n",
      "          'stereotypes': 1,\n",
      "          'actors': 1,\n",
      "          'obviously': 1,\n",
      "          'hand': 1,\n",
      "          'paychecks': 1,\n",
      "          'nmichael': 1,\n",
      "          'playing': 1,\n",
      "          'kind': 1,\n",
      "          'heartless': 1,\n",
      "          'tycoon': 1,\n",
      "          'sleep': 1,\n",
      "          'gordon': 1,\n",
      "          'gekko': 1,\n",
      "          'unfaithful': 1,\n",
      "          'ngwyneth': 1,\n",
      "          'recently': 1,\n",
      "          'delightful': 1,\n",
      "          'appealing': 1,\n",
      "          'sliding': 1,\n",
      "          'doors': 1,\n",
      "          'simply': 1,\n",
      "          'awful': 1,\n",
      "          'nshe': 1,\n",
      "          'dubious': 1,\n",
      "          'distinction': 1,\n",
      "          'starred': 1,\n",
      "          'two': 1,\n",
      "          '1998s': 1,\n",
      "          'worst': 1,\n",
      "          'hush': 1,\n",
      "          'nat': 1,\n",
      "          'g': 1,\n",
      "          'njane': 1,\n",
      "          'fun': 1,\n",
      "          'part': 1,\n",
      "          'usually': 1,\n",
      "          'things': 1,\n",
      "          'even': 1,\n",
      "          'movies': 1,\n",
      "          'thin': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'includes': 1,\n",
      "          'suchet': 1,\n",
      "          'star': 1,\n",
      "          'poirot': 1,\n",
      "          'police': 1,\n",
      "          'inspector': 1,\n",
      "          'sarita': 1,\n",
      "          'choudhury': 1,\n",
      "          'kama': 1,\n",
      "          'sutra': 1,\n",
      "          'emilys': 1,\n",
      "          'friend': 1,\n",
      "          'plodding': 1,\n",
      "          'production': 1,\n",
      "          'generates': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'nthere': 1,\n",
      "          'arent': 1,\n",
      "          'many': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'linear': 1,\n",
      "          'makes': 1,\n",
      "          'ending': 1,\n",
      "          'inevitable': 1,\n",
      "          'start': 1,\n",
      "          'surprising': 1,\n",
      "          'director': 1,\n",
      "          'andrew': 1,\n",
      "          'davis': 1,\n",
      "          'man': 1,\n",
      "          'fugitive': 1,\n",
      "          'mess': 1,\n",
      "          'like': 1,\n",
      "          'stars': 1,\n",
      "          'needs': 1,\n",
      "          'earn': 1,\n",
      "          'living': 1,\n",
      "          'remaking': 1,\n",
      "          'badly': 1,\n",
      "          'hardly': 1,\n",
      "          'seems': 1,\n",
      "          'honorable': 1,\n",
      "          'way': 1,\n",
      "          'go': 1,\n",
      "          'dough': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nbilko': 7,\n",
      "          'sgt': 6,\n",
      "          'bilko': 5,\n",
      "          'steve': 4,\n",
      "          'movie': 4,\n",
      "          'fort': 4,\n",
      "          'martin': 3,\n",
      "          'us': 3,\n",
      "          'really': 3,\n",
      "          'nsgt': 3,\n",
      "          'sitcom': 2,\n",
      "          'brady': 2,\n",
      "          'bunch': 2,\n",
      "          'hillbillies': 2,\n",
      "          'hollywood': 2,\n",
      "          'running': 2,\n",
      "          'ideas': 2,\n",
      "          'mixed': 2,\n",
      "          'entertain': 2,\n",
      "          'baxter': 2,\n",
      "          'nthough': 2,\n",
      "          'within': 2,\n",
      "          'love': 2,\n",
      "          'state': 2,\n",
      "          'managed': 2,\n",
      "          'major': 2,\n",
      "          'thorn': 2,\n",
      "          'army': 2,\n",
      "          'around': 2,\n",
      "          'least': 2,\n",
      "          'shines': 1,\n",
      "          'nfails': 1,\n",
      "          'impress': 1,\n",
      "          'nbased': 1,\n",
      "          'popular': 1,\n",
      "          '50s': 1,\n",
      "          'follows': 1,\n",
      "          'string': 1,\n",
      "          'oldsitcomstomovie': 1,\n",
      "          'conversion': 1,\n",
      "          'fever': 1,\n",
      "          'nremember': 1,\n",
      "          'beverly': 1,\n",
      "          'released': 1,\n",
      "          'sometime': 1,\n",
      "          'back': 1,\n",
      "          'n': 1,\n",
      "          'moderate': 1,\n",
      "          'hit': 1,\n",
      "          'flopped': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'whether': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'minds': 1,\n",
      "          'good': 1,\n",
      "          'plain': 1,\n",
      "          'lazy': 1,\n",
      "          'tvconversionmovies': 1,\n",
      "          'hitting': 1,\n",
      "          'screens': 1,\n",
      "          'like': 1,\n",
      "          'wildfire': 1,\n",
      "          'sad': 1,\n",
      "          'say': 1,\n",
      "          'success': 1,\n",
      "          'nsuch': 1,\n",
      "          'movies': 1,\n",
      "          'mostly': 1,\n",
      "          'targeted': 1,\n",
      "          'viewers': 1,\n",
      "          'since': 1,\n",
      "          'usually': 1,\n",
      "          'followings': 1,\n",
      "          'series': 1,\n",
      "          'larger': 1,\n",
      "          'following': 1,\n",
      "          'likely': 1,\n",
      "          'made': 1,\n",
      "          'frankly': 1,\n",
      "          'seen': 1,\n",
      "          'original': 1,\n",
      "          'tv': 1,\n",
      "          'version': 1,\n",
      "          'even': 1,\n",
      "          'charm': 1,\n",
      "          'wild': 1,\n",
      "          'antics': 1,\n",
      "          'funnymen': 1,\n",
      "          'dan': 1,\n",
      "          'akroyd': 1,\n",
      "          'failed': 1,\n",
      "          'ernest': 1,\n",
      "          'man': 1,\n",
      "          'behind': 1,\n",
      "          'motor': 1,\n",
      "          'pool': 1,\n",
      "          'place': 1,\n",
      "          'vehicle': 1,\n",
      "          'storage': 1,\n",
      "          'repair': 1,\n",
      "          'totally': 1,\n",
      "          'unskilled': 1,\n",
      "          'field': 1,\n",
      "          'work': 1,\n",
      "          'supposed': 1,\n",
      "          'charge': 1,\n",
      "          'almost': 1,\n",
      "          'superhuman': 1,\n",
      "          'ability': 1,\n",
      "          'zeal': 1,\n",
      "          'sniff': 1,\n",
      "          'moneymaking': 1,\n",
      "          'opportunities': 1,\n",
      "          'gambling': 1,\n",
      "          'den': 1,\n",
      "          'military': 1,\n",
      "          'garage': 1,\n",
      "          '4d': 1,\n",
      "          'pools': 1,\n",
      "          'materialistic': 1,\n",
      "          'mind': 1,\n",
      "          'bilkos': 1,\n",
      "          'methods': 1,\n",
      "          'thoughtfully': 1,\n",
      "          'enriched': 1,\n",
      "          'lives': 1,\n",
      "          'men': 1,\n",
      "          'providing': 1,\n",
      "          'form': 1,\n",
      "          'real': 1,\n",
      "          'recreation': 1,\n",
      "          'camp': 1,\n",
      "          'people': 1,\n",
      "          'ncolonel': 1,\n",
      "          'hall': 1,\n",
      "          'runs': 1,\n",
      "          'entire': 1,\n",
      "          'thanks': 1,\n",
      "          'inborn': 1,\n",
      "          'blissfullyconfused': 1,\n",
      "          'hide': 1,\n",
      "          'operation': 1,\n",
      "          'though': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'living': 1,\n",
      "          'person': 1,\n",
      "          'knows': 1,\n",
      "          'nbilkos': 1,\n",
      "          'ascent': 1,\n",
      "          'suddenly': 1,\n",
      "          'underfire': 1,\n",
      "          'pentagon': 1,\n",
      "          'sends': 1,\n",
      "          'tough': 1,\n",
      "          'cookie': 1,\n",
      "          'regulations': 1,\n",
      "          'check': 1,\n",
      "          'progress': 1,\n",
      "          '70': 1,\n",
      "          'million': 1,\n",
      "          'hovertank': 1,\n",
      "          'project': 1,\n",
      "          'new': 1,\n",
      "          'weapon': 1,\n",
      "          'development': 1,\n",
      "          'forts': 1,\n",
      "          'grounds': 1,\n",
      "          'nto': 1,\n",
      "          'add': 1,\n",
      "          'problems': 1,\n",
      "          'determined': 1,\n",
      "          'bring': 1,\n",
      "          'retalliation': 1,\n",
      "          'sabo': 1,\n",
      "          'done': 1,\n",
      "          'younger': 1,\n",
      "          'days': 1,\n",
      "          'ndirector': 1,\n",
      "          'jonathan': 1,\n",
      "          'lynn': 1,\n",
      "          'directed': 1,\n",
      "          'cousin': 1,\n",
      "          'vinny': 1,\n",
      "          'marisa': 1,\n",
      "          'tomei': 1,\n",
      "          'oscar': 1,\n",
      "          'bestsupporting': 1,\n",
      "          'actress': 1,\n",
      "          'pull': 1,\n",
      "          'suitable': 1,\n",
      "          'pacing': 1,\n",
      "          'exceptional': 1,\n",
      "          'moments': 1,\n",
      "          'laughter': 1,\n",
      "          'nthere': 1,\n",
      "          'enough': 1,\n",
      "          'laughterpackedmoments': 1,\n",
      "          'fully': 1,\n",
      "          'average': 1,\n",
      "          'moviegoer': 1,\n",
      "          'nstill': 1,\n",
      "          'martins': 1,\n",
      "          'played': 1,\n",
      "          'finesse': 1,\n",
      "          'fullforce': 1,\n",
      "          'renowned': 1,\n",
      "          'comedian': 1,\n",
      "          'nwithout': 1,\n",
      "          'would': 1,\n",
      "          'fell': 1,\n",
      "          'flat': 1,\n",
      "          'face': 1,\n",
      "          'moderately': 1,\n",
      "          'well': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'early': 1,\n",
      "          'year': 1,\n",
      "          'doubt': 1,\n",
      "          'earn': 1,\n",
      "          'much': 1,\n",
      "          'elsewhere': 1,\n",
      "          'world': 1,\n",
      "          'nthe': 1,\n",
      "          'current': 1,\n",
      "          'trend': 1,\n",
      "          'successes': 1,\n",
      "          'tvconversions': 1,\n",
      "          'may': 1,\n",
      "          'blessing': 1,\n",
      "          'disguise': 1,\n",
      "          'force': 1,\n",
      "          'rethink': 1,\n",
      "          'initial': 1,\n",
      "          'intentions': 1,\n",
      "          'turn': 1,\n",
      "          'another': 1,\n",
      "          'tvidea': 1,\n",
      "          'approach': 1,\n",
      "          'creativity': 1,\n",
      "          'nunless': 1,\n",
      "          'fan': 1,\n",
      "          'tvseries': 1,\n",
      "          'watch': 1,\n",
      "          'action': 1,\n",
      "          'skip': 1,\n",
      "          'one': 1,\n",
      "          'deciding': 1,\n",
      "          'catch': 1,\n",
      "          'local': 1,\n",
      "          'theatres': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'better': 1,\n",
      "          'ones': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'psycho': 5,\n",
      "          'sant': 5,\n",
      "          'best': 5,\n",
      "          'original': 4,\n",
      "          'new': 3,\n",
      "          'end': 3,\n",
      "          'van': 3,\n",
      "          'though': 3,\n",
      "          'said': 3,\n",
      "          'nvan': 3,\n",
      "          'many': 3,\n",
      "          'good': 3,\n",
      "          'nthe': 3,\n",
      "          'moore': 3,\n",
      "          'least': 3,\n",
      "          'world': 2,\n",
      "          'didnt': 2,\n",
      "          'gus': 2,\n",
      "          'know': 2,\n",
      "          'hitchcocks': 2,\n",
      "          '1960': 2,\n",
      "          'even': 2,\n",
      "          'suck': 2,\n",
      "          'took': 2,\n",
      "          'hitchcock': 2,\n",
      "          'exact': 2,\n",
      "          'audience': 2,\n",
      "          'exactly': 2,\n",
      "          'time': 2,\n",
      "          'could': 2,\n",
      "          'something': 2,\n",
      "          'nin': 2,\n",
      "          'would': 2,\n",
      "          'cast': 2,\n",
      "          'scully': 2,\n",
      "          'nmortensen': 2,\n",
      "          'nice': 2,\n",
      "          'point': 2,\n",
      "          'heche': 2,\n",
      "          'things': 2,\n",
      "          'nat': 2,\n",
      "          'rest': 2,\n",
      "          'vaughn': 2,\n",
      "          'norman': 2,\n",
      "          'make': 2,\n",
      "          'nthere': 2,\n",
      "          'images': 2,\n",
      "          'famous': 2,\n",
      "          'scenes': 2,\n",
      "          'look': 1,\n",
      "          'version': 1,\n",
      "          'came': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'really': 1,\n",
      "          'isnt': 1,\n",
      "          'bringer': 1,\n",
      "          'apocalypse': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'thing': 1,\n",
      "          'sants': 1,\n",
      "          'controversial': 1,\n",
      "          'retelling': 1,\n",
      "          'alfred': 1,\n",
      "          'classic': 1,\n",
      "          'polarized': 1,\n",
      "          'filmgoers': 1,\n",
      "          'everywhere': 1,\n",
      "          'premiered': 1,\n",
      "          'nwithout': 1,\n",
      "          'benefit': 1,\n",
      "          'actual': 1,\n",
      "          'viewing': 1,\n",
      "          'nbeing': 1,\n",
      "          'almost': 1,\n",
      "          'critic': 1,\n",
      "          'waited': 1,\n",
      "          'actually': 1,\n",
      "          'saw': 1,\n",
      "          'decide': 1,\n",
      "          'sucked': 1,\n",
      "          'concludes': 1,\n",
      "          'use': 1,\n",
      "          'word': 1,\n",
      "          'hopefully': 1,\n",
      "          'thoughts': 1,\n",
      "          'braindead': 1,\n",
      "          'orangutan': 1,\n",
      "          'ndirector': 1,\n",
      "          'refilmed': 1,\n",
      "          'shotforshot': 1,\n",
      "          'using': 1,\n",
      "          'script': 1,\n",
      "          'minor': 1,\n",
      "          'alterations': 1,\n",
      "          'inherent': 1,\n",
      "          'challenge': 1,\n",
      "          'making': 1,\n",
      "          'suspenseful': 1,\n",
      "          'scary': 1,\n",
      "          'large': 1,\n",
      "          'group': 1,\n",
      "          'happen': 1,\n",
      "          'nsuspense': 1,\n",
      "          'probably': 1,\n",
      "          'attained': 1,\n",
      "          'actors': 1,\n",
      "          'able': 1,\n",
      "          'create': 1,\n",
      "          'different': 1,\n",
      "          'nsadly': 1,\n",
      "          'occur': 1,\n",
      "          'nit': 1,\n",
      "          'hard': 1,\n",
      "          'overshadowed': 1,\n",
      "          'vera': 1,\n",
      "          'miles': 1,\n",
      "          'john': 1,\n",
      "          'gavin': 1,\n",
      "          'happened': 1,\n",
      "          'julianne': 1,\n",
      "          'viggo': 1,\n",
      "          'mortensen': 1,\n",
      "          'moores': 1,\n",
      "          'case': 1,\n",
      "          'helped': 1,\n",
      "          'x': 1,\n",
      "          'files': 1,\n",
      "          'gillian': 1,\n",
      "          'anderson': 1,\n",
      "          'instead': 1,\n",
      "          'especially': 1,\n",
      "          'since': 1,\n",
      "          'goes': 1,\n",
      "          'entire': 1,\n",
      "          'impression': 1,\n",
      "          'nfrom': 1,\n",
      "          'cold': 1,\n",
      "          'demeanor': 1,\n",
      "          'expressions': 1,\n",
      "          'rigid': 1,\n",
      "          'way': 1,\n",
      "          'forming': 1,\n",
      "          'sentence': 1,\n",
      "          'liked': 1,\n",
      "          'g': 1,\n",
      "          'njane': 1,\n",
      "          'opts': 1,\n",
      "          'play': 1,\n",
      "          'sam': 1,\n",
      "          'loomis': 1,\n",
      "          'cowboyhick': 1,\n",
      "          'gone': 1,\n",
      "          'past': 1,\n",
      "          'starting': 1,\n",
      "          'nsam': 1,\n",
      "          'twang': 1,\n",
      "          'cowboy': 1,\n",
      "          'hat': 1,\n",
      "          'thats': 1,\n",
      "          'turns': 1,\n",
      "          'one': 1,\n",
      "          'uptight': 1,\n",
      "          'performance': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'nanne': 1,\n",
      "          'janet': 1,\n",
      "          'leigh': 1,\n",
      "          'role': 1,\n",
      "          'brief': 1,\n",
      "          'screen': 1,\n",
      "          'marion': 1,\n",
      "          'crane': 1,\n",
      "          'little': 1,\n",
      "          'life': 1,\n",
      "          'cant': 1,\n",
      "          'work': 1,\n",
      "          'comes': 1,\n",
      "          'vince': 1,\n",
      "          'demented': 1,\n",
      "          'mamas': 1,\n",
      "          'boy': 1,\n",
      "          'bates': 1,\n",
      "          'nhes': 1,\n",
      "          'going': 1,\n",
      "          'anyone': 1,\n",
      "          'forget': 1,\n",
      "          'anthony': 1,\n",
      "          'perkins': 1,\n",
      "          'effective': 1,\n",
      "          'naughty': 1,\n",
      "          'part': 1,\n",
      "          'dinner': 1,\n",
      "          'scene': 1,\n",
      "          'simply': 1,\n",
      "          'talk': 1,\n",
      "          'solid': 1,\n",
      "          'acting': 1,\n",
      "          'carried': 1,\n",
      "          'made': 1,\n",
      "          'boring': 1,\n",
      "          'nall': 1,\n",
      "          'camera': 1,\n",
      "          'tricks': 1,\n",
      "          'eloquently': 1,\n",
      "          'used': 1,\n",
      "          'arent': 1,\n",
      "          'eyecatching': 1,\n",
      "          'nwhat': 1,\n",
      "          'passed': 1,\n",
      "          'brilliance': 1,\n",
      "          'copied': 1,\n",
      "          'times': 1,\n",
      "          'directors': 1,\n",
      "          'dont': 1,\n",
      "          'impress': 1,\n",
      "          'excite': 1,\n",
      "          'assume': 1,\n",
      "          'grasp': 1,\n",
      "          'originality': 1,\n",
      "          'decided': 1,\n",
      "          'put': 1,\n",
      "          'streamofconsciousness': 1,\n",
      "          'lamb': 1,\n",
      "          'middle': 1,\n",
      "          'road': 1,\n",
      "          'nthese': 1,\n",
      "          'included': 1,\n",
      "          'questionable': 1,\n",
      "          'editing': 1,\n",
      "          'choices': 1,\n",
      "          'away': 1,\n",
      "          'caused': 1,\n",
      "          'first': 1,\n",
      "          'bewilderment': 1,\n",
      "          'later': 1,\n",
      "          'laughter': 1,\n",
      "          'ndefinitely': 1,\n",
      "          'intention': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'sense': 1,\n",
      "          'mess': 1,\n",
      "          'bernard': 1,\n",
      "          'herrmanns': 1,\n",
      "          'terrific': 1,\n",
      "          'score': 1,\n",
      "          'nif': 1,\n",
      "          'like': 1,\n",
      "          'frighten': 1,\n",
      "          'whats': 1,\n",
      "          'naside': 1,\n",
      "          'characters': 1,\n",
      "          'thinly': 1,\n",
      "          'drawn': 1,\n",
      "          'people': 1,\n",
      "          'leave': 1,\n",
      "          'connection': 1,\n",
      "          'company': 1,\n",
      "          'done': 1,\n",
      "          'recreation': 1,\n",
      "          'interesting': 1,\n",
      "          'however': 1,\n",
      "          'noble': 1,\n",
      "          'attempt': 1,\n",
      "          'alas': 1,\n",
      "          'dismal': 1,\n",
      "          'failure': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'werewolf': 8,\n",
      "          'film': 5,\n",
      "          'nthe': 4,\n",
      "          'impressive': 4,\n",
      "          'scary': 4,\n",
      "          'american': 3,\n",
      "          'john': 3,\n",
      "          'part': 3,\n",
      "          'effects': 3,\n",
      "          'good': 3,\n",
      "          'dont': 3,\n",
      "          'actually': 3,\n",
      "          'horror': 3,\n",
      "          'nbut': 3,\n",
      "          'know': 3,\n",
      "          'ni': 3,\n",
      "          'intended': 3,\n",
      "          'thing': 3,\n",
      "          'since': 3,\n",
      "          'landis': 2,\n",
      "          'groundbreaking': 2,\n",
      "          'special': 2,\n",
      "          'makeup': 2,\n",
      "          'used': 2,\n",
      "          'transformation': 2,\n",
      "          'still': 2,\n",
      "          'would': 2,\n",
      "          'really': 2,\n",
      "          'thrown': 2,\n",
      "          'nand': 2,\n",
      "          'reason': 2,\n",
      "          'isnt': 2,\n",
      "          'great': 2,\n",
      "          'things': 2,\n",
      "          'one': 2,\n",
      "          'going': 2,\n",
      "          'happen': 2,\n",
      "          'even': 2,\n",
      "          'give': 2,\n",
      "          'best': 2,\n",
      "          'films': 2,\n",
      "          'didnt': 2,\n",
      "          'sort': 2,\n",
      "          'whole': 2,\n",
      "          'get': 2,\n",
      "          'nactually': 2,\n",
      "          'pretty': 2,\n",
      "          'boy': 2,\n",
      "          'david': 2,\n",
      "          'naughton': 2,\n",
      "          'hospital': 2,\n",
      "          'strange': 2,\n",
      "          'buddy': 2,\n",
      "          'enough': 2,\n",
      "          'london': 1,\n",
      "          'feature': 1,\n",
      "          'tourist': 1,\n",
      "          'gets': 1,\n",
      "          'bitten': 1,\n",
      "          'jolly': 1,\n",
      "          'old': 1,\n",
      "          'england': 1,\n",
      "          'nmore': 1,\n",
      "          'specifically': 1,\n",
      "          'man': 1,\n",
      "          'ghosts': 1,\n",
      "          'haunt': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'neven': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'release': 1,\n",
      "          'nalthough': 1,\n",
      "          'say': 1,\n",
      "          'could': 1,\n",
      "          'considered': 1,\n",
      "          'rest': 1,\n",
      "          'run': 1,\n",
      "          'mill': 1,\n",
      "          'flick': 1,\n",
      "          'extra': 1,\n",
      "          'gore': 1,\n",
      "          'measure': 1,\n",
      "          'nif': 1,\n",
      "          'werent': 1,\n",
      "          'cutting': 1,\n",
      "          'edge': 1,\n",
      "          'likely': 1,\n",
      "          'gone': 1,\n",
      "          'largely': 1,\n",
      "          'unnoticed': 1,\n",
      "          'released': 1,\n",
      "          'back': 1,\n",
      "          '1980': 1,\n",
      "          'acting': 1,\n",
      "          'neither': 1,\n",
      "          'writing': 1,\n",
      "          'nwell': 1,\n",
      "          'ok': 1,\n",
      "          'expect': 1,\n",
      "          'either': 1,\n",
      "          'important': 1,\n",
      "          'element': 1,\n",
      "          'lacking': 1,\n",
      "          'nwith': 1,\n",
      "          'exception': 1,\n",
      "          'happens': 1,\n",
      "          'nyou': 1,\n",
      "          'need': 1,\n",
      "          'obligatory': 1,\n",
      "          'music': 1,\n",
      "          'hint': 1,\n",
      "          'director': 1,\n",
      "          'credit': 1,\n",
      "          'looking': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'wasnt': 1,\n",
      "          'romantic': 1,\n",
      "          'drama': 1,\n",
      "          'people': 1,\n",
      "          'come': 1,\n",
      "          'theater': 1,\n",
      "          'see': 1,\n",
      "          'work': 1,\n",
      "          'spoof': 1,\n",
      "          'mix': 1,\n",
      "          'comedic': 1,\n",
      "          'moments': 1,\n",
      "          'melodrama': 1,\n",
      "          'bad': 1,\n",
      "          'humor': 1,\n",
      "          'lost': 1,\n",
      "          'nits': 1,\n",
      "          'never': 1,\n",
      "          'sign': 1,\n",
      "          'realize': 1,\n",
      "          'supposed': 1,\n",
      "          'funny': 1,\n",
      "          'long': 1,\n",
      "          'read': 1,\n",
      "          'background': 1,\n",
      "          'material': 1,\n",
      "          'ncall': 1,\n",
      "          'crazy': 1,\n",
      "          'shouldnt': 1,\n",
      "          'research': 1,\n",
      "          'enjoy': 1,\n",
      "          'nim': 1,\n",
      "          'plot': 1,\n",
      "          'much': 1,\n",
      "          'title': 1,\n",
      "          'well': 1,\n",
      "          'sums': 1,\n",
      "          'nwerewolf': 1,\n",
      "          'bites': 1,\n",
      "          'nboy': 1,\n",
      "          'ends': 1,\n",
      "          'tended': 1,\n",
      "          'eventually': 1,\n",
      "          'falls': 1,\n",
      "          'nurse': 1,\n",
      "          'jenny': 1,\n",
      "          'agutter': 1,\n",
      "          'begin': 1,\n",
      "          'nincluding': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'nice': 1,\n",
      "          'touch': 1,\n",
      "          'visits': 1,\n",
      "          'friend': 1,\n",
      "          'killed': 1,\n",
      "          'attack': 1,\n",
      "          'ended': 1,\n",
      "          'neat': 1,\n",
      "          'rapidly': 1,\n",
      "          'deteriorating': 1,\n",
      "          'corpse': 1,\n",
      "          'sounds': 1,\n",
      "          'works': 1,\n",
      "          'scenes': 1,\n",
      "          'dead': 1,\n",
      "          'griffin': 1,\n",
      "          'dunne': 1,\n",
      "          'parts': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'probably': 1,\n",
      "          'hit': 1,\n",
      "          'nwhile': 1,\n",
      "          'today': 1,\n",
      "          'arent': 1,\n",
      "          'plentiful': 1,\n",
      "          'warrant': 1,\n",
      "          'watching': 1,\n",
      "          'less': 1,\n",
      "          'highlight': 1,\n",
      "          'far': 1,\n",
      "          'better': 1,\n",
      "          'choices': 1,\n",
      "          'want': 1,\n",
      "          'curl': 1,\n",
      "          'sweetheart': 1,\n",
      "          'watch': 1,\n",
      "          '1998': 1,\n",
      "          'sequel': 1,\n",
      "          'paris': 1,\n",
      "          'entertaining': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'provides': 1,\n",
      "          'laughs': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nand': 10,\n",
      "          'movie': 8,\n",
      "          'ni': 6,\n",
      "          'seen': 4,\n",
      "          'know': 4,\n",
      "          'theyre': 4,\n",
      "          'bad': 4,\n",
      "          'guy': 4,\n",
      "          'could': 4,\n",
      "          'even': 3,\n",
      "          'really': 3,\n",
      "          'like': 3,\n",
      "          'cop': 3,\n",
      "          'nthe': 3,\n",
      "          'smith': 3,\n",
      "          'martin': 3,\n",
      "          'lawrence': 3,\n",
      "          'money': 3,\n",
      "          'boys': 3,\n",
      "          'see': 3,\n",
      "          'write': 3,\n",
      "          'people': 3,\n",
      "          'none': 2,\n",
      "          'already': 2,\n",
      "          'said': 2,\n",
      "          'way': 2,\n",
      "          'two': 2,\n",
      "          'cops': 2,\n",
      "          'lot': 2,\n",
      "          'day': 2,\n",
      "          'badges': 2,\n",
      "          'yet': 2,\n",
      "          'man': 2,\n",
      "          'back': 2,\n",
      "          'funny': 2,\n",
      "          'nbad': 2,\n",
      "          'felt': 2,\n",
      "          'nmany': 2,\n",
      "          'capsule': 1,\n",
      "          'annoyingly': 1,\n",
      "          'unentertaining': 1,\n",
      "          'obvious': 1,\n",
      "          'paperthin': 1,\n",
      "          'buddycopdrugsexywitness': 1,\n",
      "          'npresence': 1,\n",
      "          'director': 1,\n",
      "          'michael': 1,\n",
      "          'bay': 1,\n",
      "          'shows': 1,\n",
      "          'talent': 1,\n",
      "          'demonstrated': 1,\n",
      "          'rock': 1,\n",
      "          'nive': 1,\n",
      "          'looked': 1,\n",
      "          'box': 1,\n",
      "          'art': 1,\n",
      "          'nno': 1,\n",
      "          'havent': 1,\n",
      "          'trailer': 1,\n",
      "          'dont': 1,\n",
      "          'look': 1,\n",
      "          'promoting': 1,\n",
      "          'ive': 1,\n",
      "          'thought': 1,\n",
      "          'buddies': 1,\n",
      "          'sort': 1,\n",
      "          'ntheyre': 1,\n",
      "          'others': 1,\n",
      "          'throats': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'department': 1,\n",
      "          'hates': 1,\n",
      "          'cause': 1,\n",
      "          'hotshots': 1,\n",
      "          'kind': 1,\n",
      "          'diametric': 1,\n",
      "          'opposition': 1,\n",
      "          'relationship': 1,\n",
      "          'one': 1,\n",
      "          'middle': 1,\n",
      "          'business': 1,\n",
      "          'usual': 1,\n",
      "          'get': 1,\n",
      "          'mixed': 1,\n",
      "          'plot': 1,\n",
      "          'involves': 1,\n",
      "          'sadistic': 1,\n",
      "          'lots': 1,\n",
      "          'henchmen': 1,\n",
      "          'never': 1,\n",
      "          'hit': 1,\n",
      "          'anything': 1,\n",
      "          'billions': 1,\n",
      "          'rounds': 1,\n",
      "          'ammo': 1,\n",
      "          'always': 1,\n",
      "          'carrying': 1,\n",
      "          'drug': 1,\n",
      "          'lord': 1,\n",
      "          'theres': 1,\n",
      "          'witness': 1,\n",
      "          'shes': 1,\n",
      "          'sexy': 1,\n",
      "          'thing': 1,\n",
      "          'rubs': 1,\n",
      "          'wrong': 1,\n",
      "          'supervisor': 1,\n",
      "          'wants': 1,\n",
      "          'breakfast': 1,\n",
      "          'blow': 1,\n",
      "          'half': 1,\n",
      "          'town': 1,\n",
      "          'bringing': 1,\n",
      "          'missed': 1,\n",
      "          'bit': 1,\n",
      "          'rest': 1,\n",
      "          'got': 1,\n",
      "          'deadon': 1,\n",
      "          'hadnt': 1,\n",
      "          'left': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'immensely': 1,\n",
      "          'underutilized': 1,\n",
      "          'tcheky': 1,\n",
      "          'karyo': 1,\n",
      "          'nsmith': 1,\n",
      "          'plays': 1,\n",
      "          'trust': 1,\n",
      "          'fund': 1,\n",
      "          'thus': 1,\n",
      "          'l': 1,\n",
      "          'family': 1,\n",
      "          'shades': 1,\n",
      "          'nowtired': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'dynamic': 1,\n",
      "          'whose': 1,\n",
      "          'wife': 1,\n",
      "          'total': 1,\n",
      "          'odds': 1,\n",
      "          'nthis': 1,\n",
      "          'leads': 1,\n",
      "          'strained': 1,\n",
      "          'scenes': 1,\n",
      "          'lawrences': 1,\n",
      "          'getting': 1,\n",
      "          'totally': 1,\n",
      "          'unneccesary': 1,\n",
      "          'bits': 1,\n",
      "          'skulking': 1,\n",
      "          'around': 1,\n",
      "          'house': 1,\n",
      "          'thinking': 1,\n",
      "          'partner': 1,\n",
      "          'wifes': 1,\n",
      "          'door': 1,\n",
      "          'nnot': 1,\n",
      "          'tiresome': 1,\n",
      "          'gets': 1,\n",
      "          'incredibly': 1,\n",
      "          'meager': 1,\n",
      "          'selling': 1,\n",
      "          'points': 1,\n",
      "          'presence': 1,\n",
      "          'nwill': 1,\n",
      "          'natural': 1,\n",
      "          'im': 1,\n",
      "          'happy': 1,\n",
      "          'movies': 1,\n",
      "          'six': 1,\n",
      "          'degrees': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'nhes': 1,\n",
      "          'charming': 1,\n",
      "          'without': 1,\n",
      "          'trying': 1,\n",
      "          'seem': 1,\n",
      "          'enjoying': 1,\n",
      "          'nmartin': 1,\n",
      "          'different': 1,\n",
      "          'story': 1,\n",
      "          'hes': 1,\n",
      "          'uptight': 1,\n",
      "          'verbally': 1,\n",
      "          'constipated': 1,\n",
      "          'sitting': 1,\n",
      "          'improvised': 1,\n",
      "          'riffs': 1,\n",
      "          'trial': 1,\n",
      "          'nmovies': 1,\n",
      "          'originality': 1,\n",
      "          'nthey': 1,\n",
      "          'style': 1,\n",
      "          'energy': 1,\n",
      "          'synergy': 1,\n",
      "          'actors': 1,\n",
      "          'watching': 1,\n",
      "          'glamorous': 1,\n",
      "          'photography': 1,\n",
      "          'impossibly': 1,\n",
      "          'exact': 1,\n",
      "          'stunt': 1,\n",
      "          'choreography': 1,\n",
      "          'fed': 1,\n",
      "          'nid': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'despite': 1,\n",
      "          'completely': 1,\n",
      "          'implausible': 1,\n",
      "          'still': 1,\n",
      "          'great': 1,\n",
      "          'fun': 1,\n",
      "          'tried': 1,\n",
      "          'however': 1,\n",
      "          'feebly': 1,\n",
      "          'put': 1,\n",
      "          'new': 1,\n",
      "          'life': 1,\n",
      "          'mix': 1,\n",
      "          'dry': 1,\n",
      "          'run': 1,\n",
      "          'overlong': 1,\n",
      "          'clocking': 1,\n",
      "          'hours': 1,\n",
      "          'byplay': 1,\n",
      "          'justified': 1,\n",
      "          'nyou': 1,\n",
      "          'continue': 1,\n",
      "          'nother': 1,\n",
      "          'buy': 1,\n",
      "          'make': 1,\n",
      "          'pay': 1,\n",
      "          'nmore': 1,\n",
      "          'fools': 1,\n",
      "          'nin': 1,\n",
      "          'terrifyingly': 1,\n",
      "          'prescient': 1,\n",
      "          'line': 1,\n",
      "          'book': 1,\n",
      "          'scanner': 1,\n",
      "          'darkly': 1,\n",
      "          'phil': 1,\n",
      "          'k': 1,\n",
      "          'dick': 1,\n",
      "          'mused': 1,\n",
      "          'mcdonaldburger': 1,\n",
      "          'called': 1,\n",
      "          'would': 1,\n",
      "          'eventually': 1,\n",
      "          'eclipse': 1,\n",
      "          'token': 1,\n",
      "          'cultural': 1,\n",
      "          'financial': 1,\n",
      "          'exchange': 1,\n",
      "          'sit': 1,\n",
      "          'living': 1,\n",
      "          'rooms': 1,\n",
      "          'sell': 1,\n",
      "          'burger': 1,\n",
      "          'forth': 1,\n",
      "          'sinking': 1,\n",
      "          'feeling': 1,\n",
      "          'going': 1,\n",
      "          'nsoon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'kersey': 8,\n",
      "          'death': 7,\n",
      "          'movie': 6,\n",
      "          'wish': 5,\n",
      "          'daughter': 3,\n",
      "          'war': 3,\n",
      "          'nhowever': 3,\n",
      "          'still': 3,\n",
      "          'attempts': 3,\n",
      "          'new': 2,\n",
      "          'paul': 2,\n",
      "          'played': 2,\n",
      "          'charles': 2,\n",
      "          'bronson': 2,\n",
      "          'avenging': 2,\n",
      "          'nin': 2,\n",
      "          'small': 2,\n",
      "          'avenge': 2,\n",
      "          'old': 2,\n",
      "          'nfourth': 2,\n",
      "          'hand': 2,\n",
      "          'begins': 2,\n",
      "          'kay': 2,\n",
      "          'drug': 2,\n",
      "          'like': 2,\n",
      "          'plan': 2,\n",
      "          'two': 2,\n",
      "          'nthe': 2,\n",
      "          'although': 2,\n",
      "          'one': 2,\n",
      "          'potentially': 2,\n",
      "          '1970s': 2,\n",
      "          'script': 2,\n",
      "          'scenes': 2,\n",
      "          'nthere': 2,\n",
      "          'plot': 2,\n",
      "          'even': 2,\n",
      "          'first': 1,\n",
      "          'mildmannered': 1,\n",
      "          'york': 1,\n",
      "          'architect': 1,\n",
      "          'wife': 1,\n",
      "          'second': 1,\n",
      "          'third': 1,\n",
      "          'instigated': 1,\n",
      "          'order': 1,\n",
      "          'friend': 1,\n",
      "          'doubting': 1,\n",
      "          'point': 1,\n",
      "          'violent': 1,\n",
      "          'crusades': 1,\n",
      "          'living': 1,\n",
      "          'quiet': 1,\n",
      "          'life': 1,\n",
      "          'girlfriend': 1,\n",
      "          'karen': 1,\n",
      "          'lenz': 1,\n",
      "          'since': 1,\n",
      "          'know': 1,\n",
      "          'sooner': 1,\n",
      "          'later': 1,\n",
      "          'something': 1,\n",
      "          'bad': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'people': 1,\n",
      "          'cares': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'karens': 1,\n",
      "          'teenage': 1,\n",
      "          'dies': 1,\n",
      "          'crack': 1,\n",
      "          'overdose': 1,\n",
      "          'forced': 1,\n",
      "          'return': 1,\n",
      "          'vigilante': 1,\n",
      "          'ways': 1,\n",
      "          'nkerseys': 1,\n",
      "          'targets': 1,\n",
      "          'unlike': 1,\n",
      "          'previous': 1,\n",
      "          'movies': 1,\n",
      "          'arent': 1,\n",
      "          'ordinary': 1,\n",
      "          'street': 1,\n",
      "          'punks': 1,\n",
      "          'rich': 1,\n",
      "          'heavily': 1,\n",
      "          'armed': 1,\n",
      "          'wellconnected': 1,\n",
      "          'dealers': 1,\n",
      "          'neven': 1,\n",
      "          'unstoppable': 1,\n",
      "          'killing': 1,\n",
      "          'machine': 1,\n",
      "          'needs': 1,\n",
      "          'support': 1,\n",
      "          'comes': 1,\n",
      "          'publisher': 1,\n",
      "          'nathan': 1,\n",
      "          'white': 1,\n",
      "          'john': 1,\n",
      "          'p': 1,\n",
      "          'ryan': 1,\n",
      "          'determined': 1,\n",
      "          'drugrelated': 1,\n",
      "          'nwhites': 1,\n",
      "          'make': 1,\n",
      "          'kill': 1,\n",
      "          'major': 1,\n",
      "          'players': 1,\n",
      "          'rival': 1,\n",
      "          'dealing': 1,\n",
      "          'organisations': 1,\n",
      "          'thus': 1,\n",
      "          'instigate': 1,\n",
      "          'take': 1,\n",
      "          'shape': 1,\n",
      "          'kerseys': 1,\n",
      "          'actions': 1,\n",
      "          'bring': 1,\n",
      "          'attention': 1,\n",
      "          'police': 1,\n",
      "          'detectives': 1,\n",
      "          'reiner': 1,\n",
      "          'george': 1,\n",
      "          'dickerson': 1,\n",
      "          'nozaki': 1,\n",
      "          'soon': 1,\n",
      "          'teckoh': 1,\n",
      "          'unfortunately': 1,\n",
      "          'final': 1,\n",
      "          'installment': 1,\n",
      "          'series': 1,\n",
      "          'probably': 1,\n",
      "          'remembered': 1,\n",
      "          'typical': 1,\n",
      "          'cannon': 1,\n",
      "          'group': 1,\n",
      "          'production': 1,\n",
      "          'company': 1,\n",
      "          'responsible': 1,\n",
      "          'worst': 1,\n",
      "          'cinematic': 1,\n",
      "          'trash': 1,\n",
      "          'last': 1,\n",
      "          'decade': 1,\n",
      "          'critics': 1,\n",
      "          'might': 1,\n",
      "          'argue': 1,\n",
      "          '4': 1,\n",
      "          'crackdown': 1,\n",
      "          'represents': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'slight': 1,\n",
      "          'improvement': 1,\n",
      "          '3': 1,\n",
      "          'intriguing': 1,\n",
      "          'controversial': 1,\n",
      "          'characters': 1,\n",
      "          'dumbed': 1,\n",
      "          'mediocre': 1,\n",
      "          'really': 1,\n",
      "          'doesnt': 1,\n",
      "          'feel': 1,\n",
      "          'need': 1,\n",
      "          'put': 1,\n",
      "          'much': 1,\n",
      "          'effort': 1,\n",
      "          'acting': 1,\n",
      "          'veteran': 1,\n",
      "          'director': 1,\n",
      "          'j': 1,\n",
      "          'lee': 1,\n",
      "          'thompson': 1,\n",
      "          'seems': 1,\n",
      "          'capable': 1,\n",
      "          'michael': 1,\n",
      "          'winners': 1,\n",
      "          'action': 1,\n",
      "          'seem': 1,\n",
      "          'slightly': 1,\n",
      "          'less': 1,\n",
      "          'surreal': 1,\n",
      "          'look': 1,\n",
      "          'cheap': 1,\n",
      "          'repetitive': 1,\n",
      "          'downright': 1,\n",
      "          'boring': 1,\n",
      "          'numerous': 1,\n",
      "          'violence': 1,\n",
      "          'interesting': 1,\n",
      "          'twist': 1,\n",
      "          'end': 1,\n",
      "          'tries': 1,\n",
      "          'fake': 1,\n",
      "          'social': 1,\n",
      "          'conscience': 1,\n",
      "          'criminally': 1,\n",
      "          'underused': 1,\n",
      "          'lenzs': 1,\n",
      "          'character': 1,\n",
      "          'predates': 1,\n",
      "          'drugs': 1,\n",
      "          'campaign': 1,\n",
      "          'would': 1,\n",
      "          'inspire': 1,\n",
      "          'many': 1,\n",
      "          'hollywood': 1,\n",
      "          'products': 1,\n",
      "          'next': 1,\n",
      "          'years': 1,\n",
      "          'halfhearted': 1,\n",
      "          'humour': 1,\n",
      "          'intentional': 1,\n",
      "          'unintentional': 1,\n",
      "          'scene': 1,\n",
      "          'assassinates': 1,\n",
      "          'mob': 1,\n",
      "          'figures': 1,\n",
      "          'wine': 1,\n",
      "          'bottle': 1,\n",
      "          'quality': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'bronsons': 1,\n",
      "          'classics': 1,\n",
      "          'n': 1,\n",
      "          'special': 1,\n",
      "          'note': 1,\n",
      "          'xphiles': 1,\n",
      "          'mith': 1,\n",
      "          'pilleggi': 1,\n",
      "          'actor': 1,\n",
      "          'plays': 1,\n",
      "          'ad': 1,\n",
      "          'skinner': 1,\n",
      "          'x': 1,\n",
      "          'files': 1,\n",
      "          'could': 1,\n",
      "          'seen': 1,\n",
      "          'role': 1,\n",
      "          'cannery': 1,\n",
      "          'lab': 1,\n",
      "          'foreman': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 14,\n",
      "          'powder': 11,\n",
      "          'first': 10,\n",
      "          'hes': 10,\n",
      "          'one': 8,\n",
      "          'know': 8,\n",
      "          'com': 8,\n",
      "          'movies': 7,\n",
      "          'arts': 7,\n",
      "          'never': 6,\n",
      "          'review': 6,\n",
      "          'ni': 6,\n",
      "          'house': 6,\n",
      "          'would': 6,\n",
      "          'nso': 6,\n",
      "          'nbut': 6,\n",
      "          'saw': 6,\n",
      "          'find': 6,\n",
      "          'room': 6,\n",
      "          'rec': 5,\n",
      "          'reviews': 5,\n",
      "          'minutes': 4,\n",
      "          'got': 4,\n",
      "          'sure': 4,\n",
      "          'bad': 4,\n",
      "          'enough': 4,\n",
      "          'nwhen': 4,\n",
      "          'middle': 4,\n",
      "          'state': 4,\n",
      "          'home': 4,\n",
      "          'different': 4,\n",
      "          'kids': 4,\n",
      "          'ever': 4,\n",
      "          'father': 4,\n",
      "          'pillsbury': 4,\n",
      "          'dough': 4,\n",
      "          'boy': 4,\n",
      "          'nine': 4,\n",
      "          'months': 4,\n",
      "          'wear': 4,\n",
      "          'character': 4,\n",
      "          'nand': 4,\n",
      "          'two': 4,\n",
      "          'shows': 4,\n",
      "          'high': 4,\n",
      "          'school': 4,\n",
      "          'already': 4,\n",
      "          'current': 4,\n",
      "          'instead': 4,\n",
      "          'guess': 4,\n",
      "          'people': 4,\n",
      "          'att': 4,\n",
      "          'andrew': 4,\n",
      "          'hicks': 4,\n",
      "          'noraruthaol': 3,\n",
      "          '1996': 3,\n",
      "          'n': 3,\n",
      "          'sf': 3,\n",
      "          'written': 2,\n",
      "          'havent': 2,\n",
      "          'watched': 2,\n",
      "          'way': 2,\n",
      "          'make': 2,\n",
      "          'exception': 2,\n",
      "          'fortyfive': 2,\n",
      "          'friends': 2,\n",
      "          'brother': 2,\n",
      "          'huge': 2,\n",
      "          'shouting': 2,\n",
      "          'match': 2,\n",
      "          'ended': 2,\n",
      "          'violence': 2,\n",
      "          'left': 2,\n",
      "          'finish': 2,\n",
      "          'im': 2,\n",
      "          'hell': 2,\n",
      "          'going': 2,\n",
      "          'pay': 2,\n",
      "          'three': 2,\n",
      "          'bucks': 2,\n",
      "          'watch': 2,\n",
      "          'half': 2,\n",
      "          'least': 2,\n",
      "          'get': 2,\n",
      "          'partial': 2,\n",
      "          'wasnt': 2,\n",
      "          'worth': 2,\n",
      "          'finishing': 2,\n",
      "          'place': 2,\n",
      "          'nthe': 2,\n",
      "          'centers': 2,\n",
      "          'around': 2,\n",
      "          'freaky': 2,\n",
      "          'teenager': 2,\n",
      "          'whos': 2,\n",
      "          'spent': 2,\n",
      "          'entire': 2,\n",
      "          'life': 2,\n",
      "          'living': 2,\n",
      "          'cellar': 2,\n",
      "          'grandparents': 2,\n",
      "          'grandpa': 2,\n",
      "          'dies': 2,\n",
      "          'taking': 2,\n",
      "          'department': 2,\n",
      "          'store': 2,\n",
      "          'social': 2,\n",
      "          'worker': 2,\n",
      "          'mary': 2,\n",
      "          'steenburgen': 2,\n",
      "          'take': 2,\n",
      "          'names': 2,\n",
      "          'ngold': 2,\n",
      "          'bond': 2,\n",
      "          'nactually': 2,\n",
      "          'see': 2,\n",
      "          'pale': 2,\n",
      "          'individual': 2,\n",
      "          'weve': 2,\n",
      "          'seen': 2,\n",
      "          'moreover': 2,\n",
      "          'body': 2,\n",
      "          'hair': 2,\n",
      "          'whatsoever': 2,\n",
      "          'born': 2,\n",
      "          'opening': 2,\n",
      "          'takes': 2,\n",
      "          'look': 2,\n",
      "          'says': 2,\n",
      "          'son': 2,\n",
      "          'nobviously': 2,\n",
      "          'nall': 2,\n",
      "          'want': 2,\n",
      "          'ago': 2,\n",
      "          'whitefaced': 2,\n",
      "          'freak': 2,\n",
      "          'leaves': 2,\n",
      "          'neverland': 2,\n",
      "          'ranch': 2,\n",
      "          'faces': 2,\n",
      "          'ridicule': 2,\n",
      "          'nthat': 2,\n",
      "          'try': 2,\n",
      "          'haze': 2,\n",
      "          'cafeteria': 2,\n",
      "          'lunch': 2,\n",
      "          'making': 2,\n",
      "          'spoon': 2,\n",
      "          'either': 2,\n",
      "          'nose': 2,\n",
      "          'ass': 2,\n",
      "          'ndecisions': 2,\n",
      "          'decisions': 2,\n",
      "          'uses': 2,\n",
      "          'telepathic': 2,\n",
      "          'powers': 2,\n",
      "          'draw': 2,\n",
      "          'silverware': 2,\n",
      "          'giant': 2,\n",
      "          'pile': 2,\n",
      "          'table': 2,\n",
      "          'mother': 2,\n",
      "          'must': 2,\n",
      "          'sissy': 2,\n",
      "          'spaceks': 2,\n",
      "          'carrie': 2,\n",
      "          'factor': 2,\n",
      "          'things': 2,\n",
      "          'subsequent': 2,\n",
      "          'scenes': 2,\n",
      "          'sort': 2,\n",
      "          'superintelligence': 2,\n",
      "          'q': 2,\n",
      "          'ntest': 2,\n",
      "          'went': 2,\n",
      "          'straight': 2,\n",
      "          'chart': 2,\n",
      "          'attracts': 2,\n",
      "          'electrical': 2,\n",
      "          'power': 2,\n",
      "          'nthis': 2,\n",
      "          'visits': 2,\n",
      "          'world': 2,\n",
      "          'genius': 2,\n",
      "          'need': 2,\n",
      "          'education': 2,\n",
      "          'sits': 2,\n",
      "          'demonstration': 2,\n",
      "          'jeff': 2,\n",
      "          'goldblums': 2,\n",
      "          'science': 2,\n",
      "          'class': 2,\n",
      "          'ngoldblum': 2,\n",
      "          'plugs': 2,\n",
      "          'jacobs': 2,\n",
      "          'ladder': 2,\n",
      "          'device': 2,\n",
      "          'running': 2,\n",
      "          'wires': 2,\n",
      "          'immediately': 2,\n",
      "          'flows': 2,\n",
      "          'across': 2,\n",
      "          'powders': 2,\n",
      "          'chest': 2,\n",
      "          'goldblum': 2,\n",
      "          'stands': 2,\n",
      "          'thirty': 2,\n",
      "          'seconds': 2,\n",
      "          'watching': 2,\n",
      "          'unplugging': 2,\n",
      "          'damn': 2,\n",
      "          'thing': 2,\n",
      "          'busy': 2,\n",
      "          'contemplating': 2,\n",
      "          'appearing': 2,\n",
      "          'third': 2,\n",
      "          'row': 2,\n",
      "          'following': 2,\n",
      "          'hideaway': 2,\n",
      "          'nthats': 2,\n",
      "          'big': 2,\n",
      "          'fight': 2,\n",
      "          'began': 2,\n",
      "          'let': 2,\n",
      "          'tell': 2,\n",
      "          'twice': 2,\n",
      "          'interesting': 2,\n",
      "          'like': 2,\n",
      "          'said': 2,\n",
      "          'terrible': 2,\n",
      "          'melodramas': 2,\n",
      "          'isolation': 2,\n",
      "          'superior': 2,\n",
      "          'abilities': 2,\n",
      "          'hard': 2,\n",
      "          'assimilate': 2,\n",
      "          'mainstream': 2,\n",
      "          'civilization': 2,\n",
      "          'nnone': 2,\n",
      "          'handle': 2,\n",
      "          'subject': 2,\n",
      "          'properly': 2,\n",
      "          'introducing': 2,\n",
      "          'feeble': 2,\n",
      "          'beauty': 2,\n",
      "          'beast': 2,\n",
      "          'copout': 2,\n",
      "          'beautiful': 2,\n",
      "          'woman': 2,\n",
      "          'fall': 2,\n",
      "          'love': 2,\n",
      "          'guys': 2,\n",
      "          'personality': 2,\n",
      "          'overlooking': 2,\n",
      "          'personal': 2,\n",
      "          'appearance': 2,\n",
      "          'female': 2,\n",
      "          'picked': 2,\n",
      "          'girl': 2,\n",
      "          'sitting': 2,\n",
      "          'next': 2,\n",
      "          'back': 2,\n",
      "          'electrocution': 2,\n",
      "          'scene': 2,\n",
      "          'ill': 2,\n",
      "          'happened': 2,\n",
      "          'nfrom': 2,\n",
      "          'jun': 2,\n",
      "          '10': 2,\n",
      "          '03': 2,\n",
      "          '3654': 2,\n",
      "          'nntphub': 2,\n",
      "          'cb': 2,\n",
      "          'eclmtcts1': 2,\n",
      "          'r': 2,\n",
      "          'nrec': 2,\n",
      "          'ive': 1,\n",
      "          'nmon': 1,\n",
      "          '15': 1,\n",
      "          '04': 1,\n",
      "          'edt': 1,\n",
      "          'article': 1,\n",
      "          'npath': 1,\n",
      "          'notformail': 1,\n",
      "          'newsgroups': 1,\n",
      "          'nsubject': 1,\n",
      "          '1995': 1,\n",
      "          'followupto': 1,\n",
      "          'currentfilms': 1,\n",
      "          'ndate': 1,\n",
      "          '18': 1,\n",
      "          '16': 1,\n",
      "          'gmt': 1,\n",
      "          'organization': 1,\n",
      "          'university': 1,\n",
      "          'missouri': 1,\n",
      "          'columbia': 1,\n",
      "          'lines': 1,\n",
      "          '70': 1,\n",
      "          'sender': 1,\n",
      "          'evelyn': 1,\n",
      "          'c': 1,\n",
      "          'leeper': 1,\n",
      "          'approved': 1,\n",
      "          'nmessageid': 1,\n",
      "          'replyto': 1,\n",
      "          'nntppostinghost': 1,\n",
      "          'mtcts2': 1,\n",
      "          'mt': 1,\n",
      "          'lucent': 1,\n",
      "          'nsummary': 1,\n",
      "          'n05425': 1,\n",
      "          'keywords': 1,\n",
      "          'authorhicks': 1,\n",
      "          'originator': 1,\n",
      "          'eclmtcts2': 1,\n",
      "          'xref': 1,\n",
      "          '710': 1,\n",
      "          'nstatus': 1,\n",
      "          'ro': 1,\n",
      "          'npowder': 1,\n",
      "          'film': 1,\n",
      "          'copyright': 1,\n",
      "          'fatboy': 1,\n",
      "          'productions': 1,\n",
      "          'nive': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'crawford': 11,\n",
      "          'know': 8,\n",
      "          'movie': 7,\n",
      "          'baldwin': 6,\n",
      "          'fair': 5,\n",
      "          'game': 5,\n",
      "          'every': 5,\n",
      "          'one': 4,\n",
      "          'bad': 4,\n",
      "          'line': 4,\n",
      "          'nits': 3,\n",
      "          'see': 3,\n",
      "          'lawyer': 3,\n",
      "          'make': 3,\n",
      "          'two': 3,\n",
      "          'get': 3,\n",
      "          'body': 3,\n",
      "          'russians': 3,\n",
      "          'going': 3,\n",
      "          'really': 3,\n",
      "          'computer': 3,\n",
      "          'dialogue': 3,\n",
      "          'laugh': 3,\n",
      "          'could': 2,\n",
      "          'singlehandedly': 2,\n",
      "          'movies': 2,\n",
      "          'absolutely': 2,\n",
      "          'big': 2,\n",
      "          'nif': 2,\n",
      "          'thing': 2,\n",
      "          'thought': 2,\n",
      "          'would': 2,\n",
      "          'nin': 2,\n",
      "          'course': 2,\n",
      "          'ever': 2,\n",
      "          'anyone': 2,\n",
      "          'wears': 2,\n",
      "          'nand': 2,\n",
      "          'think': 2,\n",
      "          'double': 2,\n",
      "          'isnt': 2,\n",
      "          'life': 2,\n",
      "          'time': 2,\n",
      "          'chase': 2,\n",
      "          'explosion': 2,\n",
      "          'action': 2,\n",
      "          'crap': 2,\n",
      "          'acting': 2,\n",
      "          'end': 2,\n",
      "          'villains': 2,\n",
      "          'scene': 2,\n",
      "          'nthe': 2,\n",
      "          'n': 2,\n",
      "          'america': 2,\n",
      "          'ni': 2,\n",
      "          'plenty': 2,\n",
      "          'terrible': 2,\n",
      "          'places': 2,\n",
      "          'supposed': 2,\n",
      "          'nerd': 2,\n",
      "          'im': 2,\n",
      "          'floating': 2,\n",
      "          'lords': 2,\n",
      "          'final': 2,\n",
      "          'boat': 2,\n",
      "          'nim': 2,\n",
      "          'bring': 1,\n",
      "          'mystery': 1,\n",
      "          'science': 1,\n",
      "          'theater': 1,\n",
      "          '3000': 1,\n",
      "          'cancellation': 1,\n",
      "          'thats': 1,\n",
      "          'hilarious': 1,\n",
      "          'due': 1,\n",
      "          'small': 1,\n",
      "          'part': 1,\n",
      "          'star': 1,\n",
      "          'supermodel': 1,\n",
      "          'cindy': 1,\n",
      "          'remember': 1,\n",
      "          'proves': 1,\n",
      "          'stick': 1,\n",
      "          'sports': 1,\n",
      "          'illustrated': 1,\n",
      "          'swimsuit': 1,\n",
      "          'issues': 1,\n",
      "          'kathy': 1,\n",
      "          'ireland': 1,\n",
      "          'laughable': 1,\n",
      "          'alien': 1,\n",
      "          'l': 1,\n",
      "          'youll': 1,\n",
      "          'change': 1,\n",
      "          'mind': 1,\n",
      "          'nireland': 1,\n",
      "          'win': 1,\n",
      "          'handfuls': 1,\n",
      "          'oscars': 1,\n",
      "          'competition': 1,\n",
      "          'real': 1,\n",
      "          'casting': 1,\n",
      "          'coup': 1,\n",
      "          'plays': 1,\n",
      "          'superintelligent': 1,\n",
      "          'jogging': 1,\n",
      "          'bra': 1,\n",
      "          'nwe': 1,\n",
      "          'stretch': 1,\n",
      "          'legal': 1,\n",
      "          'opinion': 1,\n",
      "          'put': 1,\n",
      "          'forth': 1,\n",
      "          'favors': 1,\n",
      "          'death': 1,\n",
      "          'penalty': 1,\n",
      "          'white': 1,\n",
      "          'labor': 1,\n",
      "          'day': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'someone': 1,\n",
      "          'shed': 1,\n",
      "          'good': 1,\n",
      "          'reminded': 1,\n",
      "          'true': 1,\n",
      "          'function': 1,\n",
      "          'takes': 1,\n",
      "          'showers': 1,\n",
      "          'period': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'horny': 1,\n",
      "          'teenage': 1,\n",
      "          'boys': 1,\n",
      "          'actually': 1,\n",
      "          'topless': 1,\n",
      "          'seconds': 1,\n",
      "          'dark': 1,\n",
      "          'ncome': 1,\n",
      "          'may': 1,\n",
      "          'ncindy': 1,\n",
      "          'black': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'bunch': 1,\n",
      "          'nbilly': 1,\n",
      "          'stephen': 1,\n",
      "          'nalec': 1,\n",
      "          'nadam': 1,\n",
      "          'nkim': 1,\n",
      "          'basinger': 1,\n",
      "          'police': 1,\n",
      "          'detective': 1,\n",
      "          'save': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'original': 1,\n",
      "          'cop': 1,\n",
      "          'show': 1,\n",
      "          '70s': 1,\n",
      "          'mixed': 1,\n",
      "          'thriller': 1,\n",
      "          '80s': 1,\n",
      "          'technology': 1,\n",
      "          'exploitation': 1,\n",
      "          '90s': 1,\n",
      "          'nthree': 1,\n",
      "          'decades': 1,\n",
      "          'place': 1,\n",
      "          'driven': 1,\n",
      "          'ground': 1,\n",
      "          'crawfords': 1,\n",
      "          'complete': 1,\n",
      "          'lack': 1,\n",
      "          'talent': 1,\n",
      "          'completely': 1,\n",
      "          'predictable': 1,\n",
      "          'nyou': 1,\n",
      "          'mistakes': 1,\n",
      "          'sexual': 1,\n",
      "          'tension': 1,\n",
      "          'finally': 1,\n",
      "          'consummating': 1,\n",
      "          'relationship': 1,\n",
      "          'capture': 1,\n",
      "          'rescue': 1,\n",
      "          'climax': 1,\n",
      "          'suck': 1,\n",
      "          'first': 1,\n",
      "          'plot': 1,\n",
      "          'explained': 1,\n",
      "          'nall': 1,\n",
      "          'detail': 1,\n",
      "          'words': 1,\n",
      "          'even': 1,\n",
      "          'size': 1,\n",
      "          'pantyhose': 1,\n",
      "          'yeah': 1,\n",
      "          '14yearold': 1,\n",
      "          'boy': 1,\n",
      "          'nhe': 1,\n",
      "          'goes': 1,\n",
      "          'add': 1,\n",
      "          '_that_': 1,\n",
      "          'find': 1,\n",
      "          'easy': 1,\n",
      "          'believe': 1,\n",
      "          'hope': 1,\n",
      "          'enjoyed': 1,\n",
      "          'sample': 1,\n",
      "          'quotes': 1,\n",
      "          'wrote': 1,\n",
      "          'ones': 1,\n",
      "          'werent': 1,\n",
      "          'youd': 1,\n",
      "          'still': 1,\n",
      "          'pulling': 1,\n",
      "          'bananas': 1,\n",
      "          'ass': 1,\n",
      "          'cuba': 1,\n",
      "          'nbecause': 1,\n",
      "          'showcase': 1,\n",
      "          'recycled': 1,\n",
      "          'cliches': 1,\n",
      "          'also': 1,\n",
      "          'seriously': 1,\n",
      "          'nit': 1,\n",
      "          'adds': 1,\n",
      "          'made': 1,\n",
      "          'wasnt': 1,\n",
      "          'grimace': 1,\n",
      "          'none': 1,\n",
      "          'awful': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'nwould': 1,\n",
      "          'tortures': 1,\n",
      "          'entendres': 1,\n",
      "          'like': 1,\n",
      "          'interested': 1,\n",
      "          '_hard_ware': 1,\n",
      "          'playing': 1,\n",
      "          'joystick': 1,\n",
      "          'wouldnt': 1,\n",
      "          'funny': 1,\n",
      "          'ncrawfords': 1,\n",
      "          'contribution': 1,\n",
      "          'information': 1,\n",
      "          'age': 1,\n",
      "          'gif': 1,\n",
      "          'files': 1,\n",
      "          'around': 1,\n",
      "          'head': 1,\n",
      "          'nude': 1,\n",
      "          'traci': 1,\n",
      "          'jack': 1,\n",
      "          'nill': 1,\n",
      "          'leave': 1,\n",
      "          'blown': 1,\n",
      "          'raft': 1,\n",
      "          'ncrawford': 1,\n",
      "          'says': 1,\n",
      "          'woodenly': 1,\n",
      "          'clients': 1,\n",
      "          'blew': 1,\n",
      "          'filing': 1,\n",
      "          'lawsuit': 1,\n",
      "          'nyoure': 1,\n",
      "          'trouble': 1,\n",
      "          'something': 1,\n",
      "          'effect': 1,\n",
      "          'replies': 1,\n",
      "          'smugly': 1,\n",
      "          'nthey': 1,\n",
      "          'begin': 1,\n",
      "          'making': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'talk': 1,\n",
      "          'stupid': 1,\n",
      "          'theyd': 1,\n",
      "          'wanted': 1,\n",
      "          'go': 1,\n",
      "          'closing': 1,\n",
      "          'say': 1,\n",
      "          'settle': 1,\n",
      "          'court': 1,\n",
      "          'nbut': 1,\n",
      "          'tell': 1,\n",
      "          'suggests': 1,\n",
      "          'watch': 1,\n",
      "          'quote': 1,\n",
      "          'person': 1,\n",
      "          'nserving': 1,\n",
      "          '150th': 1,\n",
      "          'century': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'people': 6,\n",
      "          'cigarettes': 4,\n",
      "          'nthe': 4,\n",
      "          'lucy': 4,\n",
      "          'characters': 3,\n",
      "          'one': 3,\n",
      "          'like': 3,\n",
      "          'love': 3,\n",
      "          'kevin': 3,\n",
      "          'film': 2,\n",
      "          'features': 2,\n",
      "          'stars': 2,\n",
      "          'magazine': 2,\n",
      "          'others': 2,\n",
      "          'affleck': 2,\n",
      "          'courtney': 2,\n",
      "          'jay': 2,\n",
      "          'mohr': 2,\n",
      "          'martha': 2,\n",
      "          'plimpton': 2,\n",
      "          'paul': 2,\n",
      "          'rudd': 2,\n",
      "          'new': 2,\n",
      "          'years': 2,\n",
      "          'eve': 2,\n",
      "          'party': 2,\n",
      "          'guests': 2,\n",
      "          'sexual': 2,\n",
      "          'sex': 2,\n",
      "          'tells': 2,\n",
      "          'beds': 2,\n",
      "          'lot': 2,\n",
      "          'attention': 1,\n",
      "          'moviegoers': 1,\n",
      "          'enter': 1,\n",
      "          'meaningfree': 1,\n",
      "          'zone': 1,\n",
      "          'nshould': 1,\n",
      "          'sound': 1,\n",
      "          'system': 1,\n",
      "          'malfunction': 1,\n",
      "          'viewing': 1,\n",
      "          '200': 1,\n",
      "          'panic': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'silent': 1,\n",
      "          'nchronicling': 1,\n",
      "          'meaningless': 1,\n",
      "          'lives': 1,\n",
      "          'vain': 1,\n",
      "          'yuppie': 1,\n",
      "          'types': 1,\n",
      "          'covers': 1,\n",
      "          'ground': 1,\n",
      "          'wilt': 1,\n",
      "          'stillman': 1,\n",
      "          'films': 1,\n",
      "          'last': 1,\n",
      "          'days': 1,\n",
      "          'disco': 1,\n",
      "          'barcelona': 1,\n",
      "          'metropolitan': 1,\n",
      "          'without': 1,\n",
      "          'acerbic': 1,\n",
      "          'wit': 1,\n",
      "          'inviting': 1,\n",
      "          'style': 1,\n",
      "          'writing': 1,\n",
      "          'nfirsttime': 1,\n",
      "          'writer': 1,\n",
      "          'shana': 1,\n",
      "          'larsen': 1,\n",
      "          'makes': 1,\n",
      "          'mistake': 1,\n",
      "          'creating': 1,\n",
      "          'couple': 1,\n",
      "          'dozen': 1,\n",
      "          'giving': 1,\n",
      "          'depth': 1,\n",
      "          'nthere': 1,\n",
      "          'isnt': 1,\n",
      "          'worth': 1,\n",
      "          'caring': 1,\n",
      "          'cornucopia': 1,\n",
      "          'hot': 1,\n",
      "          'young': 1,\n",
      "          'looks': 1,\n",
      "          'celluloid': 1,\n",
      "          'version': 1,\n",
      "          'namong': 1,\n",
      "          'ben': 1,\n",
      "          'casey': 1,\n",
      "          'david': 1,\n",
      "          'chappelle': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'gaby': 1,\n",
      "          'hoffmann': 1,\n",
      "          'catherine': 1,\n",
      "          'kellner': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'nand': 1,\n",
      "          'unlike': 1,\n",
      "          'speak': 1,\n",
      "          'anything': 1,\n",
      "          'interesting': 1,\n",
      "          'say': 1,\n",
      "          'nits': 1,\n",
      "          '1981': 1,\n",
      "          'monica': 1,\n",
      "          'preparing': 1,\n",
      "          'big': 1,\n",
      "          'nstructured': 1,\n",
      "          'series': 1,\n",
      "          'relatively': 1,\n",
      "          'unrelated': 1,\n",
      "          'stories': 1,\n",
      "          'way': 1,\n",
      "          'director': 1,\n",
      "          'risa': 1,\n",
      "          'bramon': 1,\n",
      "          'garcia': 1,\n",
      "          'flits': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'among': 1,\n",
      "          'nmonicas': 1,\n",
      "          'apartment': 1,\n",
      "          'noho': 1,\n",
      "          'area': 1,\n",
      "          'describes': 1,\n",
      "          'cool': 1,\n",
      "          'poor': 1,\n",
      "          'live': 1,\n",
      "          'ntypical': 1,\n",
      "          'shallow': 1,\n",
      "          'couples': 1,\n",
      "          'friend': 1,\n",
      "          'wouldbe': 1,\n",
      "          'partner': 1,\n",
      "          'nthey': 1,\n",
      "          'argue': 1,\n",
      "          'whether': 1,\n",
      "          'slut': 1,\n",
      "          'since': 1,\n",
      "          'sleeps': 1,\n",
      "          'everyone': 1,\n",
      "          'except': 1,\n",
      "          'course': 1,\n",
      "          'nshe': 1,\n",
      "          'dares': 1,\n",
      "          'go': 1,\n",
      "          'immediately': 1,\n",
      "          'bathroom': 1,\n",
      "          'stall': 1,\n",
      "          'turns': 1,\n",
      "          'neither': 1,\n",
      "          'erotic': 1,\n",
      "          'funny': 1,\n",
      "          'successful': 1,\n",
      "          'rather': 1,\n",
      "          'rest': 1,\n",
      "          'story': 1,\n",
      "          'gets': 1,\n",
      "          'title': 1,\n",
      "          'carton': 1,\n",
      "          'gives': 1,\n",
      "          'birthday': 1,\n",
      "          'n': 1,\n",
      "          'shield': 1,\n",
      "          'emotional': 1,\n",
      "          'interaction': 1,\n",
      "          'later': 1,\n",
      "          'snippet': 1,\n",
      "          'dialog': 1,\n",
      "          'sounds': 1,\n",
      "          'profound': 1,\n",
      "          'outside': 1,\n",
      "          'context': 1,\n",
      "          'nanother': 1,\n",
      "          'character': 1,\n",
      "          'played': 1,\n",
      "          'problem': 1,\n",
      "          'triumphs': 1,\n",
      "          'nevery': 1,\n",
      "          'woman': 1,\n",
      "          'falls': 1,\n",
      "          'deeply': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'nwhen': 1,\n",
      "          'latest': 1,\n",
      "          'conquest': 1,\n",
      "          'affection': 1,\n",
      "          'response': 1,\n",
      "          'nas': 1,\n",
      "          'finally': 1,\n",
      "          'draws': 1,\n",
      "          'close': 1,\n",
      "          'awaken': 1,\n",
      "          'postparty': 1,\n",
      "          'game': 1,\n",
      "          'musical': 1,\n",
      "          'nsome': 1,\n",
      "          'passed': 1,\n",
      "          'early': 1,\n",
      "          'alcohol': 1,\n",
      "          'abuse': 1,\n",
      "          'remember': 1,\n",
      "          'little': 1,\n",
      "          'actually': 1,\n",
      "          'clue': 1,\n",
      "          'happened': 1,\n",
      "          'forgettable': 1,\n",
      "          'time': 1,\n",
      "          'reach': 1,\n",
      "          'car': 1,\n",
      "          'parking': 1,\n",
      "          'trace': 1,\n",
      "          'vanished': 1,\n",
      "          'mind': 1,\n",
      "          'probably': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'said': 1,\n",
      "          'n200': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '40': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'profanity': 1,\n",
      "          'dope': 1,\n",
      "          'smoking': 1,\n",
      "          'scene': 1,\n",
      "          'would': 1,\n",
      "          'acceptable': 1,\n",
      "          'older': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'seattle': 5,\n",
      "          'life': 4,\n",
      "          'annie': 4,\n",
      "          'show': 4,\n",
      "          'nbut': 3,\n",
      "          'sleepless': 3,\n",
      "          'ryan': 3,\n",
      "          'sam': 3,\n",
      "          'seems': 3,\n",
      "          'nits': 3,\n",
      "          'romantic': 2,\n",
      "          'least': 2,\n",
      "          'ephron': 2,\n",
      "          'romance': 2,\n",
      "          'willing': 2,\n",
      "          'hanks': 2,\n",
      "          'meg': 2,\n",
      "          'two': 2,\n",
      "          'stars': 2,\n",
      "          'reed': 2,\n",
      "          'son': 2,\n",
      "          'radio': 2,\n",
      "          'walter': 2,\n",
      "          'movie': 2,\n",
      "          'people': 2,\n",
      "          'real': 2,\n",
      "          'minutes': 2,\n",
      "          'exist': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'script': 2,\n",
      "          'even': 2,\n",
      "          'nothing': 1,\n",
      "          'unabashedly': 1,\n",
      "          'films': 1,\n",
      "          'nwhen': 1,\n",
      "          'done': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'right': 1,\n",
      "          'slightly': 1,\n",
      "          'evident': 1,\n",
      "          'restraint': 1,\n",
      "          'engaging': 1,\n",
      "          'sweeping': 1,\n",
      "          'appealing': 1,\n",
      "          'hell': 1,\n",
      "          'shame': 1,\n",
      "          'someone': 1,\n",
      "          'botches': 1,\n",
      "          'badly': 1,\n",
      "          'nora': 1,\n",
      "          'botched': 1,\n",
      "          'hollow': 1,\n",
      "          'boring': 1,\n",
      "          'appeal': 1,\n",
      "          'gullible': 1,\n",
      "          'viewers': 1,\n",
      "          'ones': 1,\n",
      "          'buy': 1,\n",
      "          'ephrons': 1,\n",
      "          'whiny': 1,\n",
      "          'views': 1,\n",
      "          'ntom': 1,\n",
      "          'hollywoods': 1,\n",
      "          'likeable': 1,\n",
      "          'play': 1,\n",
      "          'baldwin': 1,\n",
      "          'repectively': 1,\n",
      "          'nbaldwins': 1,\n",
      "          'wife': 1,\n",
      "          'recently': 1,\n",
      "          'died': 1,\n",
      "          'moved': 1,\n",
      "          'jonah': 1,\n",
      "          'seeking': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'familiar': 1,\n",
      "          'surroundings': 1,\n",
      "          'remind': 1,\n",
      "          'late': 1,\n",
      "          'spouse': 1,\n",
      "          'njonah': 1,\n",
      "          'senses': 1,\n",
      "          'tension': 1,\n",
      "          'calls': 1,\n",
      "          'talk': 1,\n",
      "          'tell': 1,\n",
      "          'world': 1,\n",
      "          'problems': 1,\n",
      "          'nsam': 1,\n",
      "          'ready': 1,\n",
      "          'strangle': 1,\n",
      "          'calling': 1,\n",
      "          'gets': 1,\n",
      "          'phone': 1,\n",
      "          'begins': 1,\n",
      "          'pouring': 1,\n",
      "          'heart': 1,\n",
      "          'nephron': 1,\n",
      "          'hear': 1,\n",
      "          'nannie': 1,\n",
      "          'happy': 1,\n",
      "          'woman': 1,\n",
      "          'nshe': 1,\n",
      "          'engaged': 1,\n",
      "          'allergyprone': 1,\n",
      "          'working': 1,\n",
      "          'man': 1,\n",
      "          'perfectly': 1,\n",
      "          'content': 1,\n",
      "          'hearing': 1,\n",
      "          'widower': 1,\n",
      "          'becomes': 1,\n",
      "          'convinced': 1,\n",
      "          'destiny': 1,\n",
      "          'risk': 1,\n",
      "          'engagement': 1,\n",
      "          'nfive': 1,\n",
      "          'years': 1,\n",
      "          'hit': 1,\n",
      "          'theaters': 1,\n",
      "          'would': 1,\n",
      "          'team': 1,\n",
      "          'far': 1,\n",
      "          'better': 1,\n",
      "          'although': 1,\n",
      "          'still': 1,\n",
      "          'subpar': 1,\n",
      "          'comedy': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'mail': 1,\n",
      "          'hate': 1,\n",
      "          'falling': 1,\n",
      "          'love': 1,\n",
      "          'internet': 1,\n",
      "          'nat': 1,\n",
      "          'sense': 1,\n",
      "          'spontaneity': 1,\n",
      "          'nhere': 1,\n",
      "          'first': 1,\n",
      "          'one': 1,\n",
      "          'hundred': 1,\n",
      "          'solely': 1,\n",
      "          'set': 1,\n",
      "          'last': 1,\n",
      "          'five': 1,\n",
      "          'fact': 1,\n",
      "          'finally': 1,\n",
      "          'meet': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'obvious': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'perfunctory': 1,\n",
      "          'nsleepless': 1,\n",
      "          'full': 1,\n",
      "          'wonderful': 1,\n",
      "          'performers': 1,\n",
      "          'leads': 1,\n",
      "          'supporting': 1,\n",
      "          'like': 1,\n",
      "          'bill': 1,\n",
      "          'pullman': 1,\n",
      "          'rosie': 1,\n",
      "          'odonnell': 1,\n",
      "          'none': 1,\n",
      "          'save': 1,\n",
      "          'bore': 1,\n",
      "          'characters': 1,\n",
      "          'dull': 1,\n",
      "          'empty': 1,\n",
      "          'isnt': 1,\n",
      "          'funny': 1,\n",
      "          'particularly': 1,\n",
      "          'charming': 1,\n",
      "          'fundamental': 1,\n",
      "          'problem': 1,\n",
      "          'gives': 1,\n",
      "          'little': 1,\n",
      "          'reason': 1,\n",
      "          'pursue': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'kind': 1,\n",
      "          'decision': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'major': 1,\n",
      "          'unforgivable': 1,\n",
      "          'plausibility': 1,\n",
      "          'sacrifice': 1,\n",
      "          'nin': 1,\n",
      "          'essence': 1,\n",
      "          'movies': 1,\n",
      "          'purpose': 1,\n",
      "          'head': 1,\n",
      "          'towards': 1,\n",
      "          'goal': 1,\n",
      "          'shouldnt': 1,\n",
      "          'ten': 1,\n",
      "          'minute': 1,\n",
      "          'short': 1,\n",
      "          'ninetyfive': 1,\n",
      "          'filler': 1,\n",
      "          'nif': 1,\n",
      "          'didnt': 1,\n",
      "          'review': 1,\n",
      "          'could': 1,\n",
      "          'call': 1,\n",
      "          'asleep': 1,\n",
      "          'philadelphia': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'future': 3,\n",
      "          'rather': 2,\n",
      "          'figure': 2,\n",
      "          'nwell': 2,\n",
      "          'tell': 2,\n",
      "          'nbruce': 2,\n",
      "          'willis': 2,\n",
      "          'nthe': 2,\n",
      "          'worlds': 2,\n",
      "          'population': 2,\n",
      "          'mere': 2,\n",
      "          'humans': 2,\n",
      "          'reason': 2,\n",
      "          'army': 2,\n",
      "          '12': 2,\n",
      "          'monkeys': 2,\n",
      "          'world': 2,\n",
      "          'one': 2,\n",
      "          'find': 2,\n",
      "          'easy': 2,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'trailers': 1,\n",
      "          'commercials': 1,\n",
      "          'difficult': 1,\n",
      "          'really': 1,\n",
      "          'store': 1,\n",
      "          'hard': 1,\n",
      "          'watching': 1,\n",
      "          'well': 1,\n",
      "          'resident': 1,\n",
      "          'bleak': 1,\n",
      "          'disintigrated': 1,\n",
      "          '200': 1,\n",
      "          '000': 1,\n",
      "          'longer': 1,\n",
      "          'ruled': 1,\n",
      "          'animals': 1,\n",
      "          'nin': 1,\n",
      "          '1995': 1,\n",
      "          'organization': 1,\n",
      "          'called': 1,\n",
      "          'contaminated': 1,\n",
      "          'pure': 1,\n",
      "          'virus': 1,\n",
      "          'thus': 1,\n",
      "          'wiping': 1,\n",
      "          'practically': 1,\n",
      "          'month': 1,\n",
      "          'character': 1,\n",
      "          'surviving': 1,\n",
      "          'enslaved': 1,\n",
      "          'scientists': 1,\n",
      "          'last': 1,\n",
      "          'living': 1,\n",
      "          'nthey': 1,\n",
      "          'barter': 1,\n",
      "          'freedom': 1,\n",
      "          'sending': 1,\n",
      "          'assignment': 1,\n",
      "          'ultimate': 1,\n",
      "          'task': 1,\n",
      "          'go': 1,\n",
      "          'past': 1,\n",
      "          'leader': 1,\n",
      "          'kill': 1,\n",
      "          'explanation': 1,\n",
      "          'didnt': 1,\n",
      "          'come': 1,\n",
      "          'nalthough': 1,\n",
      "          'thought': 1,\n",
      "          'provoking': 1,\n",
      "          'us': 1,\n",
      "          'people': 1,\n",
      "          'evilo': 1,\n",
      "          'story': 1,\n",
      "          'confusing': 1,\n",
      "          'nand': 1,\n",
      "          'dragging': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'isnt': 1,\n",
      "          'keeping': 1,\n",
      "          'interest': 1,\n",
      "          'fidget': 1,\n",
      "          'seat': 1,\n",
      "          'feel': 1,\n",
      "          'need': 1,\n",
      "          'look': 1,\n",
      "          'watch': 1,\n",
      "          'hour': 1,\n",
      "          'passed': 1,\n",
      "          'nterry': 1,\n",
      "          'gilliam': 1,\n",
      "          'certain': 1,\n",
      "          'style': 1,\n",
      "          'realize': 1,\n",
      "          'many': 1,\n",
      "          'appreciate': 1,\n",
      "          'havent': 1,\n",
      "          'watched': 1,\n",
      "          'previous': 1,\n",
      "          'work': 1,\n",
      "          'brazil': 1,\n",
      "          'felt': 1,\n",
      "          'like': 1,\n",
      "          'took': 1,\n",
      "          'long': 1,\n",
      "          'yet': 1,\n",
      "          'realizes': 1,\n",
      "          'end': 1,\n",
      "          'near': 1,\n",
      "          'wish': 1,\n",
      "          'complex': 1,\n",
      "          'mention': 1,\n",
      "          'depressing': 1,\n",
      "          'invoke': 1,\n",
      "          'emotion': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 9,\n",
      "          'house': 8,\n",
      "          'haunted': 6,\n",
      "          'hill': 5,\n",
      "          'rush': 4,\n",
      "          'characters': 4,\n",
      "          'character': 4,\n",
      "          'geoffrey': 3,\n",
      "          'n': 3,\n",
      "          'audience': 3,\n",
      "          'completely': 3,\n",
      "          'price': 3,\n",
      "          'taye': 2,\n",
      "          'diggs': 2,\n",
      "          'ali': 2,\n",
      "          'larter': 2,\n",
      "          'famke': 2,\n",
      "          'janssen': 2,\n",
      "          'chris': 2,\n",
      "          'involving': 2,\n",
      "          'killed': 2,\n",
      "          'presented': 2,\n",
      "          'films': 2,\n",
      "          'blood': 2,\n",
      "          'plot': 2,\n",
      "          'nhowever': 2,\n",
      "          'scary': 2,\n",
      "          'five': 2,\n",
      "          'problem': 2,\n",
      "          'every': 2,\n",
      "          'annoying': 2,\n",
      "          'pritchett': 2,\n",
      "          'actor': 2,\n",
      "          'wasted': 2,\n",
      "          '1999': 1,\n",
      "          'starring': 1,\n",
      "          'peter': 1,\n",
      "          'gallagher': 1,\n",
      "          'bridgette': 1,\n",
      "          'wilson': 1,\n",
      "          'max': 1,\n",
      "          'perlich': 1,\n",
      "          'lisa': 1,\n",
      "          'loeb': 1,\n",
      "          'james': 1,\n",
      "          'marsters': 1,\n",
      "          'kattan': 1,\n",
      "          'ndirected': 1,\n",
      "          'william': 1,\n",
      "          'malone': 1,\n",
      "          'written': 1,\n",
      "          'dick': 1,\n",
      "          'beebe': 1,\n",
      "          'initializes': 1,\n",
      "          'scene': 1,\n",
      "          'zombielike': 1,\n",
      "          'mental': 1,\n",
      "          'patients': 1,\n",
      "          'attacking': 1,\n",
      "          'murdering': 1,\n",
      "          'doctors': 1,\n",
      "          'goriest': 1,\n",
      "          'ways': 1,\n",
      "          'possible': 1,\n",
      "          'none': 1,\n",
      "          'doctor': 1,\n",
      "          'instantly': 1,\n",
      "          'pencil': 1,\n",
      "          'rammed': 1,\n",
      "          'neck': 1,\n",
      "          'na': 1,\n",
      "          'nurse': 1,\n",
      "          'head': 1,\n",
      "          'forced': 1,\n",
      "          'barrel': 1,\n",
      "          'water': 1,\n",
      "          'nthese': 1,\n",
      "          'mobs': 1,\n",
      "          'zombies': 1,\n",
      "          'like': 1,\n",
      "          'previous': 1,\n",
      "          'bhorror': 1,\n",
      "          'flicks': 1,\n",
      "          'grunting': 1,\n",
      "          'noises': 1,\n",
      "          'cadaverous': 1,\n",
      "          'movements': 1,\n",
      "          'nexcept': 1,\n",
      "          'time': 1,\n",
      "          'end': 1,\n",
      "          'millenium': 1,\n",
      "          'given': 1,\n",
      "          'power': 1,\n",
      "          'show': 1,\n",
      "          'exactly': 1,\n",
      "          'horrific': 1,\n",
      "          'creatures': 1,\n",
      "          'nin': 1,\n",
      "          'past': 1,\n",
      "          'horror': 1,\n",
      "          'actual': 1,\n",
      "          'murder': 1,\n",
      "          'scenes': 1,\n",
      "          'left': 1,\n",
      "          'shown': 1,\n",
      "          'forcing': 1,\n",
      "          'viewer': 1,\n",
      "          'assume': 1,\n",
      "          'nasty': 1,\n",
      "          'bloody': 1,\n",
      "          'deaths': 1,\n",
      "          'hapless': 1,\n",
      "          'victims': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'imagination': 1,\n",
      "          'everything': 1,\n",
      "          'provided': 1,\n",
      "          'watch': 1,\n",
      "          'squirm': 1,\n",
      "          'think': 1,\n",
      "          'nthis': 1,\n",
      "          'nonsense': 1,\n",
      "          'violence': 1,\n",
      "          'thrown': 1,\n",
      "          'nowhere': 1,\n",
      "          'unfortunately': 1,\n",
      "          'refreshing': 1,\n",
      "          'part': 1,\n",
      "          'based': 1,\n",
      "          '1958': 1,\n",
      "          'title': 1,\n",
      "          'introduces': 1,\n",
      "          'handful': 1,\n",
      "          'quickly': 1,\n",
      "          'following': 1,\n",
      "          'opening': 1,\n",
      "          'fest': 1,\n",
      "          'intention': 1,\n",
      "          'providing': 1,\n",
      "          'development': 1,\n",
      "          'laudable': 1,\n",
      "          'aim': 1,\n",
      "          'scare': 1,\n",
      "          'chilling': 1,\n",
      "          'unexpected': 1,\n",
      "          'shots': 1,\n",
      "          'guts': 1,\n",
      "          'mayhem': 1,\n",
      "          'neither': 1,\n",
      "          'unpredictable': 1,\n",
      "          'involves': 1,\n",
      "          'people': 1,\n",
      "          'dared': 1,\n",
      "          'spend': 1,\n",
      "          'night': 1,\n",
      "          'one': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'owner': 1,\n",
      "          'neach': 1,\n",
      "          'failure': 1,\n",
      "          'external': 1,\n",
      "          'world': 1,\n",
      "          'acknowledges': 1,\n",
      "          'would': 1,\n",
      "          'anything': 1,\n",
      "          'money': 1,\n",
      "          'nsince': 1,\n",
      "          'immediately': 1,\n",
      "          'generalized': 1,\n",
      "          'either': 1,\n",
      "          'greedy': 1,\n",
      "          'caring': 1,\n",
      "          'expectations': 1,\n",
      "          'survive': 1,\n",
      "          'minutes': 1,\n",
      "          'meet': 1,\n",
      "          'likable': 1,\n",
      "          'two': 1,\n",
      "          'come': 1,\n",
      "          'closest': 1,\n",
      "          'civilized': 1,\n",
      "          'womanizer': 1,\n",
      "          'lot': 1,\n",
      "          'better': 1,\n",
      "          'talent': 1,\n",
      "          'businesswoman': 1,\n",
      "          'accepts': 1,\n",
      "          'womanized': 1,\n",
      "          'pathetic': 1,\n",
      "          'hard': 1,\n",
      "          'cheer': 1,\n",
      "          'scream': 1,\n",
      "          'worst': 1,\n",
      "          'maybe': 1,\n",
      "          'released': 1,\n",
      "          'year': 1,\n",
      "          'kattans': 1,\n",
      "          'watson': 1,\n",
      "          'nhe': 1,\n",
      "          'spends': 1,\n",
      "          'whole': 1,\n",
      "          'whining': 1,\n",
      "          'spooky': 1,\n",
      "          'tone': 1,\n",
      "          'irritating': 1,\n",
      "          'inappropriate': 1,\n",
      "          'unintentionally': 1,\n",
      "          'begins': 1,\n",
      "          'seem': 1,\n",
      "          'evil': 1,\n",
      "          'nwaiting': 1,\n",
      "          'die': 1,\n",
      "          'strenuously': 1,\n",
      "          'difficult': 1,\n",
      "          'act': 1,\n",
      "          'sit': 1,\n",
      "          'humorous': 1,\n",
      "          'bunch': 1,\n",
      "          'playing': 1,\n",
      "          'steven': 1,\n",
      "          'homage': 1,\n",
      "          'victor': 1,\n",
      "          'starred': 1,\n",
      "          'original': 1,\n",
      "          'nplaying': 1,\n",
      "          'rich': 1,\n",
      "          'man': 1,\n",
      "          'supposedly': 1,\n",
      "          'organized': 1,\n",
      "          'party': 1,\n",
      "          'plays': 1,\n",
      "          'role': 1,\n",
      "          'perfectly': 1,\n",
      "          'twisted': 1,\n",
      "          'way': 1,\n",
      "          'obvious': 1,\n",
      "          'something': 1,\n",
      "          'expressions': 1,\n",
      "          'face': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'confusing': 1,\n",
      "          'subplot': 1,\n",
      "          'hateful': 1,\n",
      "          'marriage': 1,\n",
      "          'evelyn': 1,\n",
      "          'played': 1,\n",
      "          'main': 1,\n",
      "          'nto': 1,\n",
      "          'top': 1,\n",
      "          'huge': 1,\n",
      "          'disappointment': 1,\n",
      "          'script': 1,\n",
      "          'ludicrous': 1,\n",
      "          'nif': 1,\n",
      "          'hilariously': 1,\n",
      "          'bad': 1,\n",
      "          'dialogue': 1,\n",
      "          'intentionally': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'similar': 1,\n",
      "          'deep': 1,\n",
      "          'blue': 1,\n",
      "          'sea': 1,\n",
      "          'goal': 1,\n",
      "          'creating': 1,\n",
      "          'creepy': 1,\n",
      "          'suspenseful': 1,\n",
      "          'action': 1,\n",
      "          'missed': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'girl': 5,\n",
      "          'breillat': 5,\n",
      "          'fat': 3,\n",
      "          'boy': 3,\n",
      "          'might': 3,\n",
      "          'nthis': 3,\n",
      "          'children': 3,\n",
      "          'like': 3,\n",
      "          'better': 3,\n",
      "          'ana': 3,\n",
      "          'teenage': 2,\n",
      "          'nfor': 2,\n",
      "          'least': 2,\n",
      "          'master': 2,\n",
      "          'writerdirector': 2,\n",
      "          'catherine': 2,\n",
      "          'breillats': 2,\n",
      "          'show': 2,\n",
      "          'romance': 2,\n",
      "          'hour': 2,\n",
      "          'pain': 2,\n",
      "          'cheap': 2,\n",
      "          'dont': 2,\n",
      "          'scenes': 2,\n",
      "          'may': 2,\n",
      "          'get': 2,\n",
      "          'nthe': 2,\n",
      "          'sequence': 2,\n",
      "          'misguided': 2,\n",
      "          'old': 2,\n",
      "          'named': 2,\n",
      "          'finds': 2,\n",
      "          'elena': 2,\n",
      "          'home': 2,\n",
      "          'love': 2,\n",
      "          'theres': 2,\n",
      "          'young': 2,\n",
      "          'something': 2,\n",
      "          'fit': 1,\n",
      "          'ghouls': 1,\n",
      "          'night': 1,\n",
      "          'stands': 1,\n",
      "          'cast': 1,\n",
      "          'iron': 1,\n",
      "          'firm': 1,\n",
      "          'simplistic': 1,\n",
      "          'fatuous': 1,\n",
      "          'builtin': 1,\n",
      "          'excuse': 1,\n",
      "          'woman': 1,\n",
      "          'director': 1,\n",
      "          'baring': 1,\n",
      "          'harsh': 1,\n",
      "          'sexual': 1,\n",
      "          'realities': 1,\n",
      "          'adolescent': 1,\n",
      "          'girls': 1,\n",
      "          'nbeing': 1,\n",
      "          'understand': 1,\n",
      "          'female': 1,\n",
      "          'behavior': 1,\n",
      "          'unequipped': 1,\n",
      "          'analyze': 1,\n",
      "          'particular': 1,\n",
      "          'pseudofeminist': 1,\n",
      "          'comingofage': 1,\n",
      "          'story': 1,\n",
      "          'nfair': 1,\n",
      "          'enough': 1,\n",
      "          'nill': 1,\n",
      "          'pretend': 1,\n",
      "          'ignore': 1,\n",
      "          'mannered': 1,\n",
      "          'posturing': 1,\n",
      "          'health': 1,\n",
      "          'class': 1,\n",
      "          '101': 1,\n",
      "          'nono': 1,\n",
      "          'dialogue': 1,\n",
      "          'older': 1,\n",
      "          'coaxes': 1,\n",
      "          'younger': 1,\n",
      "          'let': 1,\n",
      "          'fuck': 1,\n",
      "          'ass': 1,\n",
      "          'speaking': 1,\n",
      "          'variations': 1,\n",
      "          'wont': 1,\n",
      "          'hurt': 1,\n",
      "          'scene': 1,\n",
      "          'seems': 1,\n",
      "          'last': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'done': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'unbroken': 1,\n",
      "          'shot': 1,\n",
      "          'suggests': 1,\n",
      "          'unimaginative': 1,\n",
      "          'camerawork': 1,\n",
      "          'unblinking': 1,\n",
      "          'voyeurism': 1,\n",
      "          'nthey': 1,\n",
      "          'dare': 1,\n",
      "          'look': 1,\n",
      "          'away': 1,\n",
      "          'without': 1,\n",
      "          'possessing': 1,\n",
      "          'courage': 1,\n",
      "          'allowing': 1,\n",
      "          'actually': 1,\n",
      "          'sound': 1,\n",
      "          'theyre': 1,\n",
      "          'mouthpieces': 1,\n",
      "          'onenote': 1,\n",
      "          'clinical': 1,\n",
      "          'politics': 1,\n",
      "          'nrather': 1,\n",
      "          'evenhanded': 1,\n",
      "          'evaluation': 1,\n",
      "          'rigors': 1,\n",
      "          'hormonal': 1,\n",
      "          'change': 1,\n",
      "          'previously': 1,\n",
      "          'responsible': 1,\n",
      "          'unwatchable': 1,\n",
      "          'wants': 1,\n",
      "          'indulge': 1,\n",
      "          'hate': 1,\n",
      "          'nlife': 1,\n",
      "          'highness': 1,\n",
      "          'nget': 1,\n",
      "          'used': 1,\n",
      "          'nshed': 1,\n",
      "          'find': 1,\n",
      "          'keen': 1,\n",
      "          'bedfellows': 1,\n",
      "          'neil': 1,\n",
      "          'labute': 1,\n",
      "          'todd': 1,\n",
      "          'solondz': 1,\n",
      "          'sultans': 1,\n",
      "          'misanthropy': 1,\n",
      "          'lack': 1,\n",
      "          'balls': 1,\n",
      "          'earnest': 1,\n",
      "          'honest': 1,\n",
      "          'dealing': 1,\n",
      "          'trauma': 1,\n",
      "          'complicated': 1,\n",
      "          'nto': 1,\n",
      "          'bury': 1,\n",
      "          'sarcasm': 1,\n",
      "          'academic': 1,\n",
      "          'theory': 1,\n",
      "          'feels': 1,\n",
      "          'nthese': 1,\n",
      "          'wouldbe': 1,\n",
      "          'auteurs': 1,\n",
      "          'hauteurs': 1,\n",
      "          'havent': 1,\n",
      "          'earned': 1,\n",
      "          'right': 1,\n",
      "          'display': 1,\n",
      "          'suffering': 1,\n",
      "          'layer': 1,\n",
      "          'emotional': 1,\n",
      "          'truth': 1,\n",
      "          'mike': 1,\n",
      "          'leigh': 1,\n",
      "          'throughout': 1,\n",
      "          'naked': 1,\n",
      "          'david': 1,\n",
      "          'lynch': 1,\n",
      "          'several': 1,\n",
      "          'key': 1,\n",
      "          'blue': 1,\n",
      "          'velvet': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'go': 1,\n",
      "          'comparing': 1,\n",
      "          'male': 1,\n",
      "          'directors': 1,\n",
      "          'ni': 1,\n",
      "          'care': 1,\n",
      "          'ngender': 1,\n",
      "          'damned': 1,\n",
      "          'shes': 1,\n",
      "          'borderline': 1,\n",
      "          'inept': 1,\n",
      "          'nbraced': 1,\n",
      "          'kneejerk': 1,\n",
      "          'reaction': 1,\n",
      "          'art': 1,\n",
      "          'house': 1,\n",
      "          'crowd': 1,\n",
      "          'mortified': 1,\n",
      "          'shock': 1,\n",
      "          'compulsory': 1,\n",
      "          'applause': 1,\n",
      "          'suffice': 1,\n",
      "          'well': 1,\n",
      "          'accomplish': 1,\n",
      "          'mission': 1,\n",
      "          'rise': 1,\n",
      "          'people': 1,\n",
      "          'ndont': 1,\n",
      "          'fooled': 1,\n",
      "          'grotesque': 1,\n",
      "          'oversimplification': 1,\n",
      "          'awkward': 1,\n",
      "          'forays': 1,\n",
      "          'passion': 1,\n",
      "          'quickly': 1,\n",
      "          'forgotten': 1,\n",
      "          'remembered': 1,\n",
      "          'cold': 1,\n",
      "          'boring': 1,\n",
      "          'philosophically': 1,\n",
      "          'arid': 1,\n",
      "          'incompetently': 1,\n",
      "          'photographed': 1,\n",
      "          'hyperviolent': 1,\n",
      "          'climactic': 1,\n",
      "          'proves': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'honestly': 1,\n",
      "          'wondered': 1,\n",
      "          'whether': 1,\n",
      "          'thrown': 1,\n",
      "          'impromptu': 1,\n",
      "          'dream': 1,\n",
      "          'ntwelve': 1,\n",
      "          'years': 1,\n",
      "          'bundle': 1,\n",
      "          'dough': 1,\n",
      "          'sour': 1,\n",
      "          'pout': 1,\n",
      "          'superb': 1,\n",
      "          'reboux': 1,\n",
      "          'plays': 1,\n",
      "          'titular': 1,\n",
      "          'thousand': 1,\n",
      "          'yard': 1,\n",
      "          'stare': 1,\n",
      "          'frumpy': 1,\n",
      "          'insouciance': 1,\n",
      "          'n': 1,\n",
      "          'character': 1,\n",
      "          'also': 1,\n",
      "          'nsitting': 1,\n",
      "          'table': 1,\n",
      "          'morosely': 1,\n",
      "          'slurping': 1,\n",
      "          'banana': 1,\n",
      "          'split': 1,\n",
      "          'presence': 1,\n",
      "          'grounded': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'nits': 1,\n",
      "          'pity': 1,\n",
      "          'never': 1,\n",
      "          'anything': 1,\n",
      "          'defensive': 1,\n",
      "          'evil': 1,\n",
      "          'storybook': 1,\n",
      "          'sister': 1,\n",
      "          '15year': 1,\n",
      "          'roxane': 1,\n",
      "          'mesquida': 1,\n",
      "          'bringing': 1,\n",
      "          'transitory': 1,\n",
      "          'boyfriend': 1,\n",
      "          'shared': 1,\n",
      "          'room': 1,\n",
      "          'nin': 1,\n",
      "          'summer': 1,\n",
      "          'cottage': 1,\n",
      "          'escape': 1,\n",
      "          'position': 1,\n",
      "          'stoic': 1,\n",
      "          'bedside': 1,\n",
      "          'observer': 1,\n",
      "          'elenas': 1,\n",
      "          'depressing': 1,\n",
      "          'confusion': 1,\n",
      "          'sex': 1,\n",
      "          'question': 1,\n",
      "          'smug': 1,\n",
      "          'italian': 1,\n",
      "          'college': 1,\n",
      "          'kid': 1,\n",
      "          'fernando': 1,\n",
      "          'libero': 1,\n",
      "          'de': 1,\n",
      "          'rienzo': 1,\n",
      "          'real': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'claiming': 1,\n",
      "          'experience': 1,\n",
      "          'declaration': 1,\n",
      "          'begging': 1,\n",
      "          'blowjob': 1,\n",
      "          'nana': 1,\n",
      "          'doesnt': 1,\n",
      "          'receive': 1,\n",
      "          'warmth': 1,\n",
      "          'largely': 1,\n",
      "          'absent': 1,\n",
      "          'parents': 1,\n",
      "          'join': 1,\n",
      "          'making': 1,\n",
      "          'fun': 1,\n",
      "          'hefty': 1,\n",
      "          'girth': 1,\n",
      "          'nshe': 1,\n",
      "          'pleasure': 1,\n",
      "          'wandering': 1,\n",
      "          'beach': 1,\n",
      "          'alone': 1,\n",
      "          'singing': 1,\n",
      "          'songs': 1,\n",
      "          'swimming': 1,\n",
      "          'pool': 1,\n",
      "          'kissing': 1,\n",
      "          'metal': 1,\n",
      "          'railing': 1,\n",
      "          'pretending': 1,\n",
      "          'paramour': 1,\n",
      "          'nreboux': 1,\n",
      "          'commands': 1,\n",
      "          'screen': 1,\n",
      "          'much': 1,\n",
      "          'child': 1,\n",
      "          'actress': 1,\n",
      "          'recounting': 1,\n",
      "          'pretentious': 1,\n",
      "          'monologues': 1,\n",
      "          'nif': 1,\n",
      "          'one': 1,\n",
      "          'inspired': 1,\n",
      "          'rescue': 1,\n",
      "          'performer': 1,\n",
      "          'place': 1,\n",
      "          'movie': 1,\n",
      "          'fares': 1,\n",
      "          'talent': 1,\n",
      "          'asked': 1,\n",
      "          'perform': 1,\n",
      "          'intense': 1,\n",
      "          'feel': 1,\n",
      "          'justified': 1,\n",
      "          'werent': 1,\n",
      "          'dramatically': 1,\n",
      "          '83minute': 1,\n",
      "          'vignette': 1,\n",
      "          'horror': 1,\n",
      "          'saves': 1,\n",
      "          'nastiest': 1,\n",
      "          'poison': 1,\n",
      "          'end': 1,\n",
      "          'non': 1,\n",
      "          'long': 1,\n",
      "          'ride': 1,\n",
      "          'punctuated': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'silence': 1,\n",
      "          'family': 1,\n",
      "          'members': 1,\n",
      "          'gigantic': 1,\n",
      "          'trucks': 1,\n",
      "          'swerve': 1,\n",
      "          'grows': 1,\n",
      "          'late': 1,\n",
      "          'nwill': 1,\n",
      "          'mommy': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'wheel': 1,\n",
      "          'nperhaps': 1,\n",
      "          'maybe': 1,\n",
      "          'deadlier': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'lying': 1,\n",
      "          'wait': 1,\n",
      "          'pounce': 1,\n",
      "          'upon': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'nwhats': 1,\n",
      "          'even': 1,\n",
      "          'nwith': 1,\n",
      "          'intent': 1,\n",
      "          'unfair': 1,\n",
      "          'unpredictable': 1,\n",
      "          'placing': 1,\n",
      "          'heroine': 1,\n",
      "          'diabolical': 1,\n",
      "          'corners': 1,\n",
      "          'order': 1,\n",
      "          'face': 1,\n",
      "          'impending': 1,\n",
      "          'adulthood': 1,\n",
      "          'extreme': 1,\n",
      "          'flourish': 1,\n",
      "          'sadistic': 1,\n",
      "          'tawdriness': 1,\n",
      "          'reveals': 1,\n",
      "          'purveyor': 1,\n",
      "          'contempt': 1,\n",
      "          'nfat': 1,\n",
      "          'bitter': 1,\n",
      "          'pill': 1,\n",
      "          'indeed': 1,\n",
      "          'naka': 1,\n",
      "          'soeur': 1,\n",
      "          'nscreened': 1,\n",
      "          '2001': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'film': 1,\n",
      "          'festival': 1,\n",
      "          'feature': 1,\n",
      "          'coming': 1,\n",
      "          'soon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'paulie': 11,\n",
      "          'movie': 7,\n",
      "          'n': 5,\n",
      "          'bird': 5,\n",
      "          'nwhen': 4,\n",
      "          'nthe': 4,\n",
      "          'marie': 3,\n",
      "          'couldnt': 3,\n",
      "          'parrot': 3,\n",
      "          'nand': 3,\n",
      "          'npaulie': 3,\n",
      "          'mohr': 3,\n",
      "          'character': 3,\n",
      "          'small': 3,\n",
      "          'humor': 3,\n",
      "          'misha': 3,\n",
      "          'long': 3,\n",
      "          'played': 3,\n",
      "          'good': 3,\n",
      "          'thought': 3,\n",
      "          'family': 2,\n",
      "          'role': 2,\n",
      "          'voice': 2,\n",
      "          'like': 2,\n",
      "          'john': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'subtle': 2,\n",
      "          'kids': 2,\n",
      "          'material': 2,\n",
      "          'show': 2,\n",
      "          'story': 2,\n",
      "          'russian': 2,\n",
      "          'gets': 2,\n",
      "          'im': 2,\n",
      "          'nhis': 2,\n",
      "          'part': 2,\n",
      "          'parts': 2,\n",
      "          'picture': 2,\n",
      "          'best': 2,\n",
      "          'maries': 2,\n",
      "          'cat': 2,\n",
      "          'takes': 2,\n",
      "          'runs': 2,\n",
      "          'quite': 2,\n",
      "          '9': 2,\n",
      "          'gave': 2,\n",
      "          'nhe': 2,\n",
      "          'talk': 1,\n",
      "          'star': 1,\n",
      "          'tells': 1,\n",
      "          'us': 1,\n",
      "          'daughter': 1,\n",
      "          'original': 1,\n",
      "          'dad': 1,\n",
      "          'listen': 1,\n",
      "          'mom': 1,\n",
      "          'cope': 1,\n",
      "          'got': 1,\n",
      "          'rid': 1,\n",
      "          'autobiography': 1,\n",
      "          'talking': 1,\n",
      "          'merely': 1,\n",
      "          'mimicking': 1,\n",
      "          'jay': 1,\n",
      "          'lead': 1,\n",
      "          'body': 1,\n",
      "          'minor': 1,\n",
      "          'benny': 1,\n",
      "          'smalltime': 1,\n",
      "          'crook': 1,\n",
      "          'uses': 1,\n",
      "          'pull': 1,\n",
      "          'scams': 1,\n",
      "          'stealing': 1,\n",
      "          'twenties': 1,\n",
      "          'atms': 1,\n",
      "          'nas': 1,\n",
      "          'delightful': 1,\n",
      "          'director': 1,\n",
      "          'roberts': 1,\n",
      "          'allows': 1,\n",
      "          'cut': 1,\n",
      "          'nbenny': 1,\n",
      "          'hand': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'thousand': 1,\n",
      "          'times': 1,\n",
      "          'brings': 1,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'nrobertss': 1,\n",
      "          'deliberately': 1,\n",
      "          'slow': 1,\n",
      "          'pacing': 1,\n",
      "          'laurie': 1,\n",
      "          'craigs': 1,\n",
      "          'script': 1,\n",
      "          'lends': 1,\n",
      "          'sweetness': 1,\n",
      "          'creates': 1,\n",
      "          'definite': 1,\n",
      "          'problems': 1,\n",
      "          'wants': 1,\n",
      "          'mosey': 1,\n",
      "          'along': 1,\n",
      "          'watch': 1,\n",
      "          'nif': 1,\n",
      "          'crisp': 1,\n",
      "          'perfectly': 1,\n",
      "          'composed': 1,\n",
      "          'beauty': 1,\n",
      "          'sometimes': 1,\n",
      "          'dissolve': 1,\n",
      "          'tedium': 1,\n",
      "          'nso': 1,\n",
      "          'let': 1,\n",
      "          'standup': 1,\n",
      "          'comedy': 1,\n",
      "          'routines': 1,\n",
      "          'hums': 1,\n",
      "          'audience': 1,\n",
      "          'roars': 1,\n",
      "          'ntoo': 1,\n",
      "          'often': 1,\n",
      "          'however': 1,\n",
      "          'sleepy': 1,\n",
      "          'silence': 1,\n",
      "          'ensues': 1,\n",
      "          'among': 1,\n",
      "          'viewers': 1,\n",
      "          'wait': 1,\n",
      "          'pickup': 1,\n",
      "          'ntony': 1,\n",
      "          'shalhoub': 1,\n",
      "          'smartmouthed': 1,\n",
      "          'chef': 1,\n",
      "          'big': 1,\n",
      "          'night': 1,\n",
      "          'plays': 1,\n",
      "          'recent': 1,\n",
      "          'immigrant': 1,\n",
      "          'u': 1,\n",
      "          'teacher': 1,\n",
      "          'literature': 1,\n",
      "          'home': 1,\n",
      "          'makes': 1,\n",
      "          'living': 1,\n",
      "          'janitor': 1,\n",
      "          'animal': 1,\n",
      "          'research': 1,\n",
      "          'lab': 1,\n",
      "          'taken': 1,\n",
      "          'study': 1,\n",
      "          'nalthough': 1,\n",
      "          'nice': 1,\n",
      "          'lines': 1,\n",
      "          'ni': 1,\n",
      "          'stories': 1,\n",
      "          'somber': 1,\n",
      "          'seems': 1,\n",
      "          'designed': 1,\n",
      "          'elicit': 1,\n",
      "          'sympathy': 1,\n",
      "          'nbesides': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          '2': 1,\n",
      "          'cute': 1,\n",
      "          'cheech': 1,\n",
      "          'marin': 1,\n",
      "          'gina': 1,\n",
      "          'rowlands': 1,\n",
      "          'speechimpaired': 1,\n",
      "          'precious': 1,\n",
      "          'performance': 1,\n",
      "          'cinematic': 1,\n",
      "          'newcomer': 1,\n",
      "          '5yearold': 1,\n",
      "          'hallie': 1,\n",
      "          'kate': 1,\n",
      "          'eisenberg': 1,\n",
      "          'nnaturally': 1,\n",
      "          'enchanting': 1,\n",
      "          'gives': 1,\n",
      "          'genuine': 1,\n",
      "          'heart': 1,\n",
      "          'bad': 1,\n",
      "          'news': 1,\n",
      "          'confined': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'scenes': 1,\n",
      "          'dancing': 1,\n",
      "          'strutting': 1,\n",
      "          'comedic': 1,\n",
      "          'skills': 1,\n",
      "          'example': 1,\n",
      "          'hasnt': 1,\n",
      "          'wanted': 1,\n",
      "          'learn': 1,\n",
      "          'fly': 1,\n",
      "          'instant': 1,\n",
      "          'interest': 1,\n",
      "          'soaring': 1,\n",
      "          'ntricking': 1,\n",
      "          'insulting': 1,\n",
      "          'time': 1,\n",
      "          'calls': 1,\n",
      "          'stupid': 1,\n",
      "          'hairball': 1,\n",
      "          'ntheir': 1,\n",
      "          'rapid': 1,\n",
      "          'physical': 1,\n",
      "          'antics': 1,\n",
      "          'add': 1,\n",
      "          'situation': 1,\n",
      "          'nits': 1,\n",
      "          'quality': 1,\n",
      "          'sitcom': 1,\n",
      "          'performed': 1,\n",
      "          'animals': 1,\n",
      "          'one': 1,\n",
      "          'humans': 1,\n",
      "          'without': 1,\n",
      "          'much': 1,\n",
      "          'begins': 1,\n",
      "          'sing': 1,\n",
      "          'cringes': 1,\n",
      "          'explains': 1,\n",
      "          'frequently': 1,\n",
      "          'brain': 1,\n",
      "          'explode': 1,\n",
      "          'contains': 1,\n",
      "          'rich': 1,\n",
      "          'doses': 1,\n",
      "          'debneys': 1,\n",
      "          'dreamy': 1,\n",
      "          'music': 1,\n",
      "          'nwith': 1,\n",
      "          'heavy': 1,\n",
      "          'use': 1,\n",
      "          'solo': 1,\n",
      "          'violin': 1,\n",
      "          'keeps': 1,\n",
      "          'reinforcing': 1,\n",
      "          'films': 1,\n",
      "          'heartwarming': 1,\n",
      "          'themes': 1,\n",
      "          'finally': 1,\n",
      "          'flight': 1,\n",
      "          'orchestra': 1,\n",
      "          'comes': 1,\n",
      "          'loud': 1,\n",
      "          'strong': 1,\n",
      "          'cymbals': 1,\n",
      "          'clashing': 1,\n",
      "          'says': 1,\n",
      "          'kind': 1,\n",
      "          'knows': 1,\n",
      "          'reflects': 1,\n",
      "          'motion': 1,\n",
      "          'standard': 1,\n",
      "          'length': 1,\n",
      "          'still': 1,\n",
      "          'feels': 1,\n",
      "          'enthralling': 1,\n",
      "          'dead': 1,\n",
      "          'spots': 1,\n",
      "          'inbetween': 1,\n",
      "          'never': 1,\n",
      "          'lives': 1,\n",
      "          'promise': 1,\n",
      "          'manages': 1,\n",
      "          'charm': 1,\n",
      "          'nevertheless': 1,\n",
      "          '1': 1,\n",
      "          '32': 1,\n",
      "          'nit': 1,\n",
      "          'raged': 1,\n",
      "          'pg': 1,\n",
      "          'mild': 1,\n",
      "          'profanities': 1,\n",
      "          'would': 1,\n",
      "          'fine': 1,\n",
      "          'ages': 1,\n",
      "          'nmy': 1,\n",
      "          'son': 1,\n",
      "          'jeffrey': 1,\n",
      "          'age': 1,\n",
      "          'biggest': 1,\n",
      "          'complaint': 1,\n",
      "          'wasnt': 1,\n",
      "          'enough': 1,\n",
      "          'action': 1,\n",
      "          'funny': 1,\n",
      "          'actress': 1,\n",
      "          'friend': 1,\n",
      "          'sam': 1,\n",
      "          'almost': 1,\n",
      "          'awesome': 1,\n",
      "          'excellent': 1,\n",
      "          'didnt': 1,\n",
      "          'believe': 1,\n",
      "          'way': 1,\n",
      "          'speech': 1,\n",
      "          'impediment': 1,\n",
      "          'acted': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'porkys': 9,\n",
      "          'actually': 5,\n",
      "          'would': 5,\n",
      "          'even': 5,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'things': 3,\n",
      "          'four': 3,\n",
      "          'teenage': 3,\n",
      "          'nas': 3,\n",
      "          'comedy': 3,\n",
      "          'nthe': 3,\n",
      "          'characters': 3,\n",
      "          'one': 3,\n",
      "          'well': 2,\n",
      "          'time': 2,\n",
      "          'nafter': 2,\n",
      "          'n': 2,\n",
      "          'story': 2,\n",
      "          'high': 2,\n",
      "          'want': 2,\n",
      "          'get': 2,\n",
      "          'nfor': 2,\n",
      "          'people': 2,\n",
      "          'nand': 2,\n",
      "          'teenagers': 2,\n",
      "          'sure': 2,\n",
      "          'worse': 2,\n",
      "          'screenplay': 2,\n",
      "          'bob': 2,\n",
      "          'clark': 2,\n",
      "          'balbricker': 2,\n",
      "          'parsons': 2,\n",
      "          'honeywell': 2,\n",
      "          'cattrall': 2,\n",
      "          'made': 2,\n",
      "          'sex': 2,\n",
      "          'serious': 2,\n",
      "          'films': 2,\n",
      "          'funnier': 2,\n",
      "          '1982s': 2,\n",
      "          'fact': 2,\n",
      "          'heres': 1,\n",
      "          'distasteful': 1,\n",
      "          'thoroughly': 1,\n",
      "          'amateurish': 1,\n",
      "          'item': 1,\n",
      "          'surprisingly': 1,\n",
      "          'boxoffice': 1,\n",
      "          'hit': 1,\n",
      "          'release': 1,\n",
      "          'viewing': 1,\n",
      "          'first': 1,\n",
      "          'primary': 1,\n",
      "          'question': 1,\n",
      "          'anyone': 1,\n",
      "          'iq': 1,\n",
      "          'north': 1,\n",
      "          '35': 1,\n",
      "          'enjoy': 1,\n",
      "          'nit': 1,\n",
      "          'cheap': 1,\n",
      "          'idiotic': 1,\n",
      "          'unfunny': 1,\n",
      "          'nearly': 1,\n",
      "          'raunchy': 1,\n",
      "          'heard': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'smut': 1,\n",
      "          'livened': 1,\n",
      "          'bit': 1,\n",
      "          'tells': 1,\n",
      "          'call': 1,\n",
      "          'clueless': 1,\n",
      "          'school': 1,\n",
      "          'buddies': 1,\n",
      "          'pee': 1,\n",
      "          'wee': 1,\n",
      "          'dan': 1,\n",
      "          'monahan': 1,\n",
      "          'billy': 1,\n",
      "          'mark': 1,\n",
      "          'herrier': 1,\n",
      "          'tommy': 1,\n",
      "          'wyatt': 1,\n",
      "          'knight': 1,\n",
      "          'mickey': 1,\n",
      "          'roger': 1,\n",
      "          'wilson': 1,\n",
      "          'desperately': 1,\n",
      "          'laid': 1,\n",
      "          'nwomen': 1,\n",
      "          'part': 1,\n",
      "          'mystery': 1,\n",
      "          'audience': 1,\n",
      "          'since': 1,\n",
      "          'written': 1,\n",
      "          'acted': 1,\n",
      "          'aliens': 1,\n",
      "          'different': 1,\n",
      "          'planet': 1,\n",
      "          'ntheir': 1,\n",
      "          'plan': 1,\n",
      "          'sidetracked': 1,\n",
      "          'however': 1,\n",
      "          'venture': 1,\n",
      "          'smarmy': 1,\n",
      "          'strip': 1,\n",
      "          'bar': 1,\n",
      "          'named': 1,\n",
      "          'able': 1,\n",
      "          'using': 1,\n",
      "          'fake': 1,\n",
      "          'ids': 1,\n",
      "          'pay': 1,\n",
      "          'manager': 1,\n",
      "          'onehundred': 1,\n",
      "          'bucks': 1,\n",
      "          'three': 1,\n",
      "          'hookers': 1,\n",
      "          'played': 1,\n",
      "          'trick': 1,\n",
      "          'find': 1,\n",
      "          'dumped': 1,\n",
      "          'swamp': 1,\n",
      "          'building': 1,\n",
      "          'guys': 1,\n",
      "          'means': 1,\n",
      "          'war': 1,\n",
      "          'ultimately': 1,\n",
      "          'manages': 1,\n",
      "          'fail': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'possible': 1,\n",
      "          'level': 1,\n",
      "          'sexromp': 1,\n",
      "          'wild': 1,\n",
      "          'amusing': 1,\n",
      "          'enough': 1,\n",
      "          'jokes': 1,\n",
      "          'predictable': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'look': 1,\n",
      "          'back': 1,\n",
      "          '1950s': 1,\n",
      "          'something': 1,\n",
      "          'suspect': 1,\n",
      "          'era': 1,\n",
      "          'bury': 1,\n",
      "          'deep': 1,\n",
      "          'grave': 1,\n",
      "          'revenge': 1,\n",
      "          'crushing': 1,\n",
      "          'bore': 1,\n",
      "          'none': 1,\n",
      "          'offensive': 1,\n",
      "          'jawdroppingly': 1,\n",
      "          'inaccurate': 1,\n",
      "          'main': 1,\n",
      "          'attempted': 1,\n",
      "          'developed': 1,\n",
      "          'learn': 1,\n",
      "          'little': 1,\n",
      "          'except': 1,\n",
      "          'horny': 1,\n",
      "          'probably': 1,\n",
      "          'feel': 1,\n",
      "          'comfortable': 1,\n",
      "          'preschool': 1,\n",
      "          'nthat': 1,\n",
      "          'revealing': 1,\n",
      "          'information': 1,\n",
      "          'female': 1,\n",
      "          'fare': 1,\n",
      "          'inaudacious': 1,\n",
      "          'direction': 1,\n",
      "          'women': 1,\n",
      "          'treated': 1,\n",
      "          'objects': 1,\n",
      "          'props': 1,\n",
      "          'rather': 1,\n",
      "          'real': 1,\n",
      "          'example': 1,\n",
      "          'two': 1,\n",
      "          'gym': 1,\n",
      "          'teachers': 1,\n",
      "          'mrs': 1,\n",
      "          'nancy': 1,\n",
      "          'kim': 1,\n",
      "          'purpose': 1,\n",
      "          'fun': 1,\n",
      "          'nmrs': 1,\n",
      "          'gruff': 1,\n",
      "          'noholdsbarred': 1,\n",
      "          'overwight': 1,\n",
      "          'woman': 1,\n",
      "          'stand': 1,\n",
      "          'foolishness': 1,\n",
      "          'particularly': 1,\n",
      "          'embarrassing': 1,\n",
      "          'scene': 1,\n",
      "          'involved': 1,\n",
      "          'coach': 1,\n",
      "          'barks': 1,\n",
      "          'like': 1,\n",
      "          'dog': 1,\n",
      "          'nthere': 1,\n",
      "          'way': 1,\n",
      "          'tell': 1,\n",
      "          'servicable': 1,\n",
      "          'actresses': 1,\n",
      "          'though': 1,\n",
      "          'suspicion': 1,\n",
      "          'thing': 1,\n",
      "          'asked': 1,\n",
      "          'funny': 1,\n",
      "          'humiliating': 1,\n",
      "          'nto': 1,\n",
      "          'prove': 1,\n",
      "          'outoftouch': 1,\n",
      "          'socalled': 1,\n",
      "          'compare': 1,\n",
      "          '80s': 1,\n",
      "          'looks': 1,\n",
      "          'comaprison': 1,\n",
      "          'nany': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          'pictures': 1,\n",
      "          '1984s': 1,\n",
      "          'sixteen': 1,\n",
      "          'candles': 1,\n",
      "          '1985s': 1,\n",
      "          'breakfast': 1,\n",
      "          'club': 1,\n",
      "          'put': 1,\n",
      "          'greater': 1,\n",
      "          'shame': 1,\n",
      "          'nthose': 1,\n",
      "          'dealt': 1,\n",
      "          'teen': 1,\n",
      "          'matters': 1,\n",
      "          'remained': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'thanks': 1,\n",
      "          'bright': 1,\n",
      "          'truthful': 1,\n",
      "          'writing': 1,\n",
      "          'heck': 1,\n",
      "          'wanted': 1,\n",
      "          'id': 1,\n",
      "          'take': 1,\n",
      "          'fast': 1,\n",
      "          'times': 1,\n",
      "          'ridgemont': 1,\n",
      "          'last': 1,\n",
      "          'american': 1,\n",
      "          'virgin': 1,\n",
      "          'day': 1,\n",
      "          'week': 1,\n",
      "          'ndirector': 1,\n",
      "          'bad': 1,\n",
      "          'director': 1,\n",
      "          'ntwo': 1,\n",
      "          'years': 1,\n",
      "          'directed': 1,\n",
      "          'nostalgic': 1,\n",
      "          'holiday': 1,\n",
      "          'classic': 1,\n",
      "          'christmas': 1,\n",
      "          'ni': 1,\n",
      "          'forgive': 1,\n",
      "          'misfire': 1,\n",
      "          'wasnt': 1,\n",
      "          'also': 1,\n",
      "          'wrote': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'someone': 1,\n",
      "          'sit': 1,\n",
      "          'write': 1,\n",
      "          'piece': 1,\n",
      "          'garbage': 1,\n",
      "          'think': 1,\n",
      "          'worth': 1,\n",
      "          'releasing': 1,\n",
      "          'unto': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'world': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'anything': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 5,\n",
      "          'ni': 4,\n",
      "          'even': 4,\n",
      "          'french': 4,\n",
      "          'plot': 4,\n",
      "          'son': 4,\n",
      "          'island': 4,\n",
      "          'joke': 4,\n",
      "          'actors': 3,\n",
      "          'make': 3,\n",
      "          'good': 3,\n",
      "          'nthe': 3,\n",
      "          'goes': 3,\n",
      "          'one': 3,\n",
      "          'okay': 2,\n",
      "          'reallife': 2,\n",
      "          'movies': 2,\n",
      "          'nwell': 2,\n",
      "          'tim': 2,\n",
      "          'allen': 2,\n",
      "          'couldnt': 2,\n",
      "          'n': 2,\n",
      "          'like': 2,\n",
      "          'story': 2,\n",
      "          'remake': 2,\n",
      "          'american': 2,\n",
      "          'films': 2,\n",
      "          'prom': 2,\n",
      "          'person': 2,\n",
      "          'went': 2,\n",
      "          'least': 2,\n",
      "          'wasnt': 2,\n",
      "          'film': 2,\n",
      "          'city': 2,\n",
      "          'nbut': 2,\n",
      "          'learns': 2,\n",
      "          'years': 2,\n",
      "          'nhe': 2,\n",
      "          'get': 2,\n",
      "          'think': 2,\n",
      "          'jokes': 2,\n",
      "          'complicates': 2,\n",
      "          'ntim': 2,\n",
      "          'mob': 2,\n",
      "          'hokey': 2,\n",
      "          'really': 2,\n",
      "          'time': 2,\n",
      "          'grown': 2,\n",
      "          'made': 2,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'seem': 1,\n",
      "          'getting': 1,\n",
      "          'diversion': 1,\n",
      "          'disneymade': 1,\n",
      "          'acting': 1,\n",
      "          'santa': 1,\n",
      "          'clause': 1,\n",
      "          'see': 1,\n",
      "          'idle': 1,\n",
      "          'point': 1,\n",
      "          'toy': 1,\n",
      "          'also': 1,\n",
      "          'aversion': 1,\n",
      "          'farces': 1,\n",
      "          'excuse': 1,\n",
      "          'night': 1,\n",
      "          'im': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'impulsively': 1,\n",
      "          'driveins': 1,\n",
      "          'playing': 1,\n",
      "          'grosse': 1,\n",
      "          'pointe': 1,\n",
      "          'blank': 1,\n",
      "          'wouldnt': 1,\n",
      "          'mind': 1,\n",
      "          'seeing': 1,\n",
      "          'suffer': 1,\n",
      "          'first': 1,\n",
      "          'agreed': 1,\n",
      "          'go': 1,\n",
      "          'nugh': 1,\n",
      "          'nin': 1,\n",
      "          'fairness': 1,\n",
      "          'say': 1,\n",
      "          'inane': 1,\n",
      "          'dreamed': 1,\n",
      "          'nit': 1,\n",
      "          'originally': 1,\n",
      "          'released': 1,\n",
      "          'america': 1,\n",
      "          'pseudonym': 1,\n",
      "          'little': 1,\n",
      "          'indian': 1,\n",
      "          'big': 1,\n",
      "          'title': 1,\n",
      "          'un': 1,\n",
      "          'indien': 1,\n",
      "          'dans': 1,\n",
      "          'la': 1,\n",
      "          'ville': 1,\n",
      "          'stayed': 1,\n",
      "          'away': 1,\n",
      "          'limburgher': 1,\n",
      "          'according': 1,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'idea': 1,\n",
      "          'imagine': 1,\n",
      "          'must': 1,\n",
      "          'improvement': 1,\n",
      "          'stupid': 1,\n",
      "          'concerns': 1,\n",
      "          'father': 1,\n",
      "          'current': 1,\n",
      "          'marriage': 1,\n",
      "          'nlet': 1,\n",
      "          'clarify': 1,\n",
      "          'wife': 1,\n",
      "          'jobeth': 1,\n",
      "          'williams': 1,\n",
      "          'left': 1,\n",
      "          'ago': 1,\n",
      "          'mean': 1,\n",
      "          'around': 1,\n",
      "          '13': 1,\n",
      "          'carribean': 1,\n",
      "          'something': 1,\n",
      "          'finally': 1,\n",
      "          'divorce': 1,\n",
      "          'papers': 1,\n",
      "          'signed': 1,\n",
      "          'remarry': 1,\n",
      "          'thing': 1,\n",
      "          'played': 1,\n",
      "          'emphasis': 1,\n",
      "          'overdone': 1,\n",
      "          'lolita': 1,\n",
      "          'davidovitch': 1,\n",
      "          'usually': 1,\n",
      "          'nshe': 1,\n",
      "          'tells': 1,\n",
      "          'boatman': 1,\n",
      "          'meets': 1,\n",
      "          'weird': 1,\n",
      "          'name': 1,\n",
      "          'mimi': 1,\n",
      "          'seku': 1,\n",
      "          'nas': 1,\n",
      "          'mitsubishi': 1,\n",
      "          'laugh': 1,\n",
      "          'track': 1,\n",
      "          'cue': 1,\n",
      "          'knows': 1,\n",
      "          'english': 1,\n",
      "          'fish': 1,\n",
      "          'pirhanna': 1,\n",
      "          'kid': 1,\n",
      "          'pet': 1,\n",
      "          'spider': 1,\n",
      "          'makes': 1,\n",
      "          'promise': 1,\n",
      "          'take': 1,\n",
      "          'statue': 1,\n",
      "          'liberty': 1,\n",
      "          'nknow': 1,\n",
      "          'drill': 1,\n",
      "          'nnow': 1,\n",
      "          'well': 1,\n",
      "          'fishoutofwater': 1,\n",
      "          'switches': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'stock': 1,\n",
      "          'broker': 1,\n",
      "          'coffee': 1,\n",
      "          'profits': 1,\n",
      "          'plunging': 1,\n",
      "          'laptop': 1,\n",
      "          'died': 1,\n",
      "          'able': 1,\n",
      "          'communicate': 1,\n",
      "          'assistant': 1,\n",
      "          'whatever': 1,\n",
      "          'martin': 1,\n",
      "          'short': 1,\n",
      "          'na': 1,\n",
      "          'russian': 1,\n",
      "          'tossed': 1,\n",
      "          'somewhere': 1,\n",
      "          'come': 1,\n",
      "          'every': 1,\n",
      "          'import': 1,\n",
      "          'lesson': 1,\n",
      "          'life': 1,\n",
      "          'discover': 1,\n",
      "          'cellular': 1,\n",
      "          'phones': 1,\n",
      "          'operate': 1,\n",
      "          'though': 1,\n",
      "          'sockets': 1,\n",
      "          'recharge': 1,\n",
      "          'batteries': 1,\n",
      "          'crap': 1,\n",
      "          'funny': 1,\n",
      "          'struggle': 1,\n",
      "          'interesting': 1,\n",
      "          'material': 1,\n",
      "          'fowl': 1,\n",
      "          'rewrite': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantino': 1,\n",
      "          'help': 1,\n",
      "          'whole': 1,\n",
      "          'kept': 1,\n",
      "          'thinking': 1,\n",
      "          'several': 1,\n",
      "          'people': 1,\n",
      "          'nat': 1,\n",
      "          'end': 1,\n",
      "          'filming': 1,\n",
      "          'scream': 1,\n",
      "          'weve': 1,\n",
      "          'great': 1,\n",
      "          'movie': 1,\n",
      "          'guys': 1,\n",
      "          'sure': 1,\n",
      "          'hope': 1,\n",
      "          'nbig': 1,\n",
      "          'question': 1,\n",
      "          'would': 1,\n",
      "          'someone': 1,\n",
      "          'want': 1,\n",
      "          'billed': 1,\n",
      "          'worst': 1,\n",
      "          'theyre': 1,\n",
      "          'going': 1,\n",
      "          'exact': 1,\n",
      "          'way': 1,\n",
      "          'nhuh': 1,\n",
      "          'nmy': 1,\n",
      "          'names': 1,\n",
      "          'two': 1,\n",
      "          'chuckle': 1,\n",
      "          'guess': 1,\n",
      "          'nso': 1,\n",
      "          'feel': 1,\n",
      "          'gave': 1,\n",
      "          'star': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'beach': 4,\n",
      "          'mood': 4,\n",
      "          'time': 4,\n",
      "          'richard': 4,\n",
      "          'becomes': 3,\n",
      "          'island': 3,\n",
      "          'paradise': 3,\n",
      "          'nhe': 3,\n",
      "          'looking': 3,\n",
      "          'francoise': 3,\n",
      "          'angle': 3,\n",
      "          'minutes': 2,\n",
      "          'new': 2,\n",
      "          'act': 2,\n",
      "          'man': 2,\n",
      "          'environment': 2,\n",
      "          'nbut': 2,\n",
      "          'changes': 2,\n",
      "          'story': 2,\n",
      "          'love': 2,\n",
      "          'triangle': 2,\n",
      "          'lagoon': 2,\n",
      "          'community': 2,\n",
      "          'audience': 2,\n",
      "          'come': 2,\n",
      "          'life': 2,\n",
      "          'one': 2,\n",
      "          'way': 2,\n",
      "          'nthis': 2,\n",
      "          'hotel': 2,\n",
      "          'high': 2,\n",
      "          'etienne': 2,\n",
      "          'richards': 2,\n",
      "          'mind': 2,\n",
      "          'nand': 2,\n",
      "          'hidden': 2,\n",
      "          'trying': 2,\n",
      "          'structurally': 1,\n",
      "          'confusing': 1,\n",
      "          'describe': 1,\n",
      "          'multiple': 1,\n",
      "          'personality': 1,\n",
      "          'disorder': 1,\n",
      "          'nevery': 1,\n",
      "          'forty': 1,\n",
      "          'twohour': 1,\n",
      "          'begins': 1,\n",
      "          'theme': 1,\n",
      "          'virtually': 1,\n",
      "          'discarding': 1,\n",
      "          'set': 1,\n",
      "          'preceding': 1,\n",
      "          'nit': 1,\n",
      "          'starts': 1,\n",
      "          'purposefully': 1,\n",
      "          'innocent': 1,\n",
      "          'seeking': 1,\n",
      "          'thrills': 1,\n",
      "          'dangerous': 1,\n",
      "          'second': 1,\n",
      "          'abruptly': 1,\n",
      "          'idyllic': 1,\n",
      "          'evokes': 1,\n",
      "          'visions': 1,\n",
      "          'blue': 1,\n",
      "          'nforty': 1,\n",
      "          'later': 1,\n",
      "          'dumbed': 1,\n",
      "          'version': 1,\n",
      "          'lord': 1,\n",
      "          'flies': 1,\n",
      "          'isolated': 1,\n",
      "          'discovered': 1,\n",
      "          'moral': 1,\n",
      "          'code': 1,\n",
      "          'touts': 1,\n",
      "          'maintaining': 1,\n",
      "          'sense': 1,\n",
      "          'bliss': 1,\n",
      "          'costs': 1,\n",
      "          'nby': 1,\n",
      "          'scratch': 1,\n",
      "          'head': 1,\n",
      "          'wonder': 1,\n",
      "          'really': 1,\n",
      "          'meant': 1,\n",
      "          'nthe': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'angstridden': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'travels': 1,\n",
      "          'netherworld': 1,\n",
      "          'bangkok': 1,\n",
      "          'back': 1,\n",
      "          'alley': 1,\n",
      "          'merchants': 1,\n",
      "          'push': 1,\n",
      "          'wares': 1,\n",
      "          'upon': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'tourists': 1,\n",
      "          'scantily': 1,\n",
      "          'clad': 1,\n",
      "          'women': 1,\n",
      "          'brazenly': 1,\n",
      "          'ask': 1,\n",
      "          'youre': 1,\n",
      "          'good': 1,\n",
      "          'nrichards': 1,\n",
      "          'voiceover': 1,\n",
      "          'tells': 1,\n",
      "          'place': 1,\n",
      "          'bored': 1,\n",
      "          'feels': 1,\n",
      "          'reinvigorate': 1,\n",
      "          'let': 1,\n",
      "          'go': 1,\n",
      "          'familiar': 1,\n",
      "          'enter': 1,\n",
      "          'world': 1,\n",
      "          'unknown': 1,\n",
      "          'seedy': 1,\n",
      "          'checks': 1,\n",
      "          'fleabag': 1,\n",
      "          'meets': 1,\n",
      "          'crazed': 1,\n",
      "          'daffy': 1,\n",
      "          'robert': 1,\n",
      "          'carlisle': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'raving': 1,\n",
      "          'lunatic': 1,\n",
      "          'obviously': 1,\n",
      "          'heavy': 1,\n",
      "          'drug': 1,\n",
      "          'use': 1,\n",
      "          'afflicted': 1,\n",
      "          'sort': 1,\n",
      "          'psychosis': 1,\n",
      "          'nthough': 1,\n",
      "          'jagged': 1,\n",
      "          'behavior': 1,\n",
      "          'would': 1,\n",
      "          'distress': 1,\n",
      "          'us': 1,\n",
      "          'listens': 1,\n",
      "          'speaks': 1,\n",
      "          'mysterious': 1,\n",
      "          'contains': 1,\n",
      "          'perfect': 1,\n",
      "          'anyone': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'nmoreover': 1,\n",
      "          'flourishes': 1,\n",
      "          'enough': 1,\n",
      "          'hemp': 1,\n",
      "          'plants': 1,\n",
      "          'make': 1,\n",
      "          'small': 1,\n",
      "          'city': 1,\n",
      "          'ncaptivated': 1,\n",
      "          'idea': 1,\n",
      "          'asks': 1,\n",
      "          'two': 1,\n",
      "          'guests': 1,\n",
      "          'join': 1,\n",
      "          'journey': 1,\n",
      "          'nthey': 1,\n",
      "          'worldly': 1,\n",
      "          'alluring': 1,\n",
      "          'also': 1,\n",
      "          'thailand': 1,\n",
      "          'reasons': 1,\n",
      "          'similar': 1,\n",
      "          'nonce': 1,\n",
      "          'finally': 1,\n",
      "          'arrive': 1,\n",
      "          'however': 1,\n",
      "          'shifts': 1,\n",
      "          'growing': 1,\n",
      "          'desire': 1,\n",
      "          'particular': 1,\n",
      "          'plot': 1,\n",
      "          'point': 1,\n",
      "          'weak': 1,\n",
      "          'best': 1,\n",
      "          'absolutely': 1,\n",
      "          'question': 1,\n",
      "          'wind': 1,\n",
      "          'netienne': 1,\n",
      "          'exciting': 1,\n",
      "          'fluffy': 1,\n",
      "          'white': 1,\n",
      "          'sand': 1,\n",
      "          'nits': 1,\n",
      "          'odd': 1,\n",
      "          'never': 1,\n",
      "          'sees': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'coming': 1,\n",
      "          'hiding': 1,\n",
      "          'potential': 1,\n",
      "          'threats': 1,\n",
      "          'view': 1,\n",
      "          'three': 1,\n",
      "          'stumble': 1,\n",
      "          'across': 1,\n",
      "          'shift': 1,\n",
      "          'imminent': 1,\n",
      "          'events': 1,\n",
      "          'transpire': 1,\n",
      "          'depict': 1,\n",
      "          'dangers': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'marijuana': 1,\n",
      "          'fields': 1,\n",
      "          'close': 1,\n",
      "          'patrolled': 1,\n",
      "          'armed': 1,\n",
      "          'guards': 1,\n",
      "          'swim': 1,\n",
      "          'invites': 1,\n",
      "          'occasional': 1,\n",
      "          'shark': 1,\n",
      "          'nthere': 1,\n",
      "          'several': 1,\n",
      "          'ideas': 1,\n",
      "          'introduced': 1,\n",
      "          'could': 1,\n",
      "          'merit': 1,\n",
      "          'featurelength': 1,\n",
      "          'ntheres': 1,\n",
      "          'vs': 1,\n",
      "          'nature': 1,\n",
      "          'utopiagoneawry': 1,\n",
      "          'meanders': 1,\n",
      "          'tremendously': 1,\n",
      "          'entire': 1,\n",
      "          'purpose': 1,\n",
      "          'blurred': 1,\n",
      "          'ndicaprio': 1,\n",
      "          'result': 1,\n",
      "          'almost': 1,\n",
      "          'impossible': 1,\n",
      "          'embody': 1,\n",
      "          'different': 1,\n",
      "          'states': 1,\n",
      "          'goes': 1,\n",
      "          'nconsequently': 1,\n",
      "          'equally': 1,\n",
      "          'difficult': 1,\n",
      "          'keep': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'joe': 11,\n",
      "          'young': 7,\n",
      "          'n': 6,\n",
      "          'jill': 5,\n",
      "          'mighty': 4,\n",
      "          'movie': 4,\n",
      "          'joes': 4,\n",
      "          'ape': 3,\n",
      "          'poachers': 3,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'nits': 2,\n",
      "          'new': 2,\n",
      "          'picture': 2,\n",
      "          'rko': 2,\n",
      "          'computergenerated': 2,\n",
      "          'quick': 2,\n",
      "          'ntheron': 2,\n",
      "          'baby': 2,\n",
      "          'gorilla': 2,\n",
      "          'time': 2,\n",
      "          'paxton': 2,\n",
      "          'good': 2,\n",
      "          'fine': 2,\n",
      "          'especially': 2,\n",
      "          'look': 2,\n",
      "          'headed': 2,\n",
      "          'scenes': 2,\n",
      "          'sure': 2,\n",
      "          'act': 2,\n",
      "          'long': 2,\n",
      "          'ni': 2,\n",
      "          'may': 2,\n",
      "          'absurd': 1,\n",
      "          'remake': 1,\n",
      "          '1998': 1,\n",
      "          'toss': 1,\n",
      "          'gus': 1,\n",
      "          'van': 1,\n",
      "          'sants': 1,\n",
      "          'psycho': 1,\n",
      "          'disney': 1,\n",
      "          'based': 1,\n",
      "          'old': 1,\n",
      "          'knew': 1,\n",
      "          'trouble': 1,\n",
      "          'polished': 1,\n",
      "          'version': 1,\n",
      "          'famous': 1,\n",
      "          'logo': 1,\n",
      "          'appeared': 1,\n",
      "          'head': 1,\n",
      "          'credits': 1,\n",
      "          'nthere': 1,\n",
      "          'great': 1,\n",
      "          'demand': 1,\n",
      "          'another': 1,\n",
      "          'giant': 1,\n",
      "          'moviemake': 1,\n",
      "          'period': 1,\n",
      "          'witness': 1,\n",
      "          'deaths': 1,\n",
      "          'buddy': 1,\n",
      "          'born': 1,\n",
      "          'wild': 1,\n",
      "          'congo': 1,\n",
      "          'nand': 1,\n",
      "          'latest': 1,\n",
      "          'entry': 1,\n",
      "          'inoffensive': 1,\n",
      "          'watchable': 1,\n",
      "          'also': 1,\n",
      "          'assembly': 1,\n",
      "          'line': 1,\n",
      "          'product': 1,\n",
      "          'lacking': 1,\n",
      "          'charm': 1,\n",
      "          'unpredictability': 1,\n",
      "          'jungle': 1,\n",
      "          'serials': 1,\n",
      "          'partly': 1,\n",
      "          'inspired': 1,\n",
      "          'girl': 1,\n",
      "          'wilds': 1,\n",
      "          'africa': 1,\n",
      "          'befriended': 1,\n",
      "          'mothers': 1,\n",
      "          'slain': 1,\n",
      "          'nthat': 1,\n",
      "          'nicknamed': 1,\n",
      "          'grows': 1,\n",
      "          'immense': 1,\n",
      "          'proportions': 1,\n",
      "          'adult': 1,\n",
      "          'basically': 1,\n",
      "          'bides': 1,\n",
      "          'looking': 1,\n",
      "          'playing': 1,\n",
      "          'hide': 1,\n",
      "          'seek': 1,\n",
      "          'guarding': 1,\n",
      "          'nenter': 1,\n",
      "          'conservationist': 1,\n",
      "          'greg': 1,\n",
      "          'convinces': 1,\n",
      "          'move': 1,\n",
      "          'california': 1,\n",
      "          'protect': 1,\n",
      "          'better': 1,\n",
      "          'controlled': 1,\n",
      "          'environment': 1,\n",
      "          'njoe': 1,\n",
      "          'restless': 1,\n",
      "          'first': 1,\n",
      "          'sooner': 1,\n",
      "          'finally': 1,\n",
      "          'settle': 1,\n",
      "          'place': 1,\n",
      "          'nasty': 1,\n",
      "          'show': 1,\n",
      "          'l': 1,\n",
      "          'plotting': 1,\n",
      "          'demise': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'could': 1,\n",
      "          'called': 1,\n",
      "          'city': 1,\n",
      "          'devils': 1,\n",
      "          'advocate': 1,\n",
      "          'recent': 1,\n",
      "          'simple': 1,\n",
      "          'plan': 1,\n",
      "          'actors': 1,\n",
      "          'enough': 1,\n",
      "          'transcend': 1,\n",
      "          'material': 1,\n",
      "          'paintbynumbers': 1,\n",
      "          'script': 1,\n",
      "          'hack': 1,\n",
      "          'writers': 1,\n",
      "          'superman': 1,\n",
      "          'iv': 1,\n",
      "          'mercury': 1,\n",
      "          'rising': 1,\n",
      "          'plot': 1,\n",
      "          'arguably': 1,\n",
      "          'borrows': 1,\n",
      "          'steven': 1,\n",
      "          'spielbergs': 1,\n",
      "          'lost': 1,\n",
      "          'world': 1,\n",
      "          '1949': 1,\n",
      "          'original': 1,\n",
      "          'trexi': 1,\n",
      "          'mean': 1,\n",
      "          'joewreaking': 1,\n",
      "          'havoc': 1,\n",
      "          'busy': 1,\n",
      "          'streets': 1,\n",
      "          'encore': 1,\n",
      "          'storytelling': 1,\n",
      "          'becomes': 1,\n",
      "          'lazy': 1,\n",
      "          'final': 1,\n",
      "          'third': 1,\n",
      "          'shouting': 1,\n",
      "          'theatre': 1,\n",
      "          'nfollowed': 1,\n",
      "          'shot': 1,\n",
      "          'scaling': 1,\n",
      "          'manns': 1,\n",
      "          'chinese': 1,\n",
      "          'theater': 1,\n",
      "          'moment': 1,\n",
      "          'later': 1,\n",
      "          'shouts': 1,\n",
      "          'something': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'know': 1,\n",
      "          'theres': 1,\n",
      "          'pallisades': 1,\n",
      "          'carnival': 1,\n",
      "          'scaring': 1,\n",
      "          'bejesus': 1,\n",
      "          'innocent': 1,\n",
      "          'thrillseekers': 1,\n",
      "          'seams': 1,\n",
      "          'lastminute': 1,\n",
      "          'edits': 1,\n",
      "          'showunrelated': 1,\n",
      "          'patched': 1,\n",
      "          'together': 1,\n",
      "          'dissolves': 1,\n",
      "          'feels': 1,\n",
      "          'uneven': 1,\n",
      "          'regardless': 1,\n",
      "          'two': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'little': 1,\n",
      "          'smashing': 1,\n",
      "          'cars': 1,\n",
      "          'three': 1,\n",
      "          'goes': 1,\n",
      "          'way': 1,\n",
      "          'nunderwood': 1,\n",
      "          'tremors': 1,\n",
      "          'speechless': 1,\n",
      "          'perhaps': 1,\n",
      "          'director': 1,\n",
      "          'job': 1,\n",
      "          'even': 1,\n",
      "          'plentiful': 1,\n",
      "          'untamed': 1,\n",
      "          'landscape': 1,\n",
      "          'looks': 1,\n",
      "          'dull': 1,\n",
      "          'hands': 1,\n",
      "          'capturing': 1,\n",
      "          'beauty': 1,\n",
      "          'nature': 1,\n",
      "          'requires': 1,\n",
      "          'point': 1,\n",
      "          'shoot': 1,\n",
      "          'style': 1,\n",
      "          'enjoy': 1,\n",
      "          'certain': 1,\n",
      "          'sequences': 1,\n",
      "          'demoliton': 1,\n",
      "          'blacktie': 1,\n",
      "          'dinner': 1,\n",
      "          'sequence': 1,\n",
      "          'prologue': 1,\n",
      "          'however': 1,\n",
      "          'implausible': 1,\n",
      "          'touching': 1,\n",
      "          'tyke': 1,\n",
      "          'acts': 1,\n",
      "          'e': 1,\n",
      "          'rick': 1,\n",
      "          'bakers': 1,\n",
      "          'makeup': 1,\n",
      "          'effects': 1,\n",
      "          'puppetry': 1,\n",
      "          'outstanding': 1,\n",
      "          'real': 1,\n",
      "          'star': 1,\n",
      "          'showyet': 1,\n",
      "          'technical': 1,\n",
      "          'flawlessness': 1,\n",
      "          'creature': 1,\n",
      "          'remains': 1,\n",
      "          'grumpy': 1,\n",
      "          'homicidal': 1,\n",
      "          'love': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'variations': 1,\n",
      "          'scowl': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'saw': 1,\n",
      "          'cinema': 1,\n",
      "          'packed': 1,\n",
      "          'wailing': 1,\n",
      "          'childrenits': 1,\n",
      "          'wonder': 1,\n",
      "          'able': 1,\n",
      "          'decipher': 1,\n",
      "          'dialogue': 1,\n",
      "          'certainly': 1,\n",
      "          'film': 1,\n",
      "          'kidsintense': 1,\n",
      "          'fighting': 1,\n",
      "          'scare': 1,\n",
      "          'camera': 1,\n",
      "          'bore': 1,\n",
      "          'tears': 1,\n",
      "          'note': 1,\n",
      "          'older': 1,\n",
      "          'boys': 1,\n",
      "          'likely': 1,\n",
      "          'dazzled': 1,\n",
      "          'therons': 1,\n",
      "          'colourful': 1,\n",
      "          'array': 1,\n",
      "          'tank': 1,\n",
      "          'tops': 1,\n",
      "          'suspect': 1,\n",
      "          'bland': 1,\n",
      "          'passable': 1,\n",
      "          'entertainment': 1,\n",
      "          'family': 1,\n",
      "          'outing': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'em': 1,\n",
      "          'used': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'swayze': 4,\n",
      "          'black': 3,\n",
      "          'dog': 3,\n",
      "          'jack': 3,\n",
      "          'little': 2,\n",
      "          'careers': 2,\n",
      "          'moore': 2,\n",
      "          'video': 2,\n",
      "          'drive': 2,\n",
      "          'cargo': 2,\n",
      "          'crew': 2,\n",
      "          'highway': 2,\n",
      "          'track': 2,\n",
      "          'big': 2,\n",
      "          'rig': 2,\n",
      "          'ni': 2,\n",
      "          'could': 2,\n",
      "          'point': 2,\n",
      "          'youve': 2,\n",
      "          'seen': 2,\n",
      "          'time': 2,\n",
      "          'far': 2,\n",
      "          '1990': 1,\n",
      "          'surprise': 1,\n",
      "          'success': 1,\n",
      "          'unheralded': 1,\n",
      "          'movie': 1,\n",
      "          'called': 1,\n",
      "          'ghost': 1,\n",
      "          'instantly': 1,\n",
      "          'rescued': 1,\n",
      "          'moribund': 1,\n",
      "          'trio': 1,\n",
      "          'abovethetitle': 1,\n",
      "          'stars': 1,\n",
      "          'patrick': 1,\n",
      "          'demi': 1,\n",
      "          'whoopi': 1,\n",
      "          'goldberg': 1,\n",
      "          'neight': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'goldbergs': 1,\n",
      "          'arent': 1,\n",
      "          'exactly': 1,\n",
      "          'thriving': 1,\n",
      "          'share': 1,\n",
      "          'screen': 1,\n",
      "          'successes': 1,\n",
      "          'since': 1,\n",
      "          'cant': 1,\n",
      "          'said': 1,\n",
      "          'added': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'turkey': 1,\n",
      "          'resume': 1,\n",
      "          'aptly': 1,\n",
      "          'named': 1,\n",
      "          'nforget': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          'moviesthis': 1,\n",
      "          'trucksploitation': 1,\n",
      "          'flick': 1,\n",
      "          'closest': 1,\n",
      "          'movies': 1,\n",
      "          'come': 1,\n",
      "          'games': 1,\n",
      "          'ngood': 1,\n",
      "          'truck': 1,\n",
      "          'driver': 1,\n",
      "          'crews': 1,\n",
      "          'must': 1,\n",
      "          'illegal': 1,\n",
      "          'firearms': 1,\n",
      "          'atlanta': 1,\n",
      "          'new': 1,\n",
      "          'jersey': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'three': 1,\n",
      "          'run': 1,\n",
      "          'number': 1,\n",
      "          'obstaclessuch': 1,\n",
      "          'weigh': 1,\n",
      "          'station': 1,\n",
      "          'evil': 1,\n",
      "          'truckers': 1,\n",
      "          'deadly': 1,\n",
      "          'uzifiring': 1,\n",
      "          'motorcyclists': 1,\n",
      "          'nevery': 1,\n",
      "          'often': 1,\n",
      "          'like': 1,\n",
      "          'end': 1,\n",
      "          'game': 1,\n",
      "          'level': 1,\n",
      "          'stage': 1,\n",
      "          'main': 1,\n",
      "          'baddie': 1,\n",
      "          'pops': 1,\n",
      "          'red': 1,\n",
      "          'meat': 1,\n",
      "          'loaf': 1,\n",
      "          'fresh': 1,\n",
      "          'triumph': 1,\n",
      "          'spice': 1,\n",
      "          'world': 1,\n",
      "          'wants': 1,\n",
      "          'steal': 1,\n",
      "          'cache': 1,\n",
      "          'guns': 1,\n",
      "          'njust': 1,\n",
      "          'case': 1,\n",
      "          'forget': 1,\n",
      "          'name': 1,\n",
      "          'trouble': 1,\n",
      "          'keeping': 1,\n",
      "          'whos': 1,\n",
      "          'driving': 1,\n",
      "          'reds': 1,\n",
      "          'vehicles': 1,\n",
      "          'pickup': 1,\n",
      "          'paintedyou': 1,\n",
      "          'guessed': 1,\n",
      "          'itred': 1,\n",
      "          'go': 1,\n",
      "          'plot': 1,\n",
      "          'specifics': 1,\n",
      "          'jacks': 1,\n",
      "          'dream': 1,\n",
      "          'nice': 1,\n",
      "          'home': 1,\n",
      "          'family': 1,\n",
      "          'past': 1,\n",
      "          'trauma': 1,\n",
      "          'sent': 1,\n",
      "          'prison': 1,\n",
      "          'cost': 1,\n",
      "          'trucking': 1,\n",
      "          'license': 1,\n",
      "          'fbiatf': 1,\n",
      "          'tracking': 1,\n",
      "          'importance': 1,\n",
      "          'nall': 1,\n",
      "          'matters': 1,\n",
      "          'director': 1,\n",
      "          'kevin': 1,\n",
      "          'hooks': 1,\n",
      "          'writers': 1,\n",
      "          'william': 1,\n",
      "          'mickelberry': 1,\n",
      "          'dan': 1,\n",
      "          'vining': 1,\n",
      "          'obstacles': 1,\n",
      "          'confronts': 1,\n",
      "          'b': 1,\n",
      "          'fail': 1,\n",
      "          'even': 1,\n",
      "          'modest': 1,\n",
      "          'goal': 1,\n",
      "          'none': 1,\n",
      "          'chaos': 1,\n",
      "          'credibly': 1,\n",
      "          'staged': 1,\n",
      "          'terribly': 1,\n",
      "          'interesting': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'exciting': 1,\n",
      "          'nonce': 1,\n",
      "          'couple': 1,\n",
      "          'trucks': 1,\n",
      "          'bang': 1,\n",
      "          'explode': 1,\n",
      "          'first': 1,\n",
      "          'every': 1,\n",
      "          'nas': 1,\n",
      "          'dreary': 1,\n",
      "          'entertainment': 1,\n",
      "          'saddest': 1,\n",
      "          'part': 1,\n",
      "          'film': 1,\n",
      "          'nothing': 1,\n",
      "          'shows': 1,\n",
      "          'onscreen': 1,\n",
      "          'reduce': 1,\n",
      "          'work': 1,\n",
      "          'nwhile': 1,\n",
      "          'best': 1,\n",
      "          'actors': 1,\n",
      "          'certainly': 1,\n",
      "          'horrible': 1,\n",
      "          'charismatic': 1,\n",
      "          'presence': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'judgment': 1,\n",
      "          'dearth': 1,\n",
      "          'quality': 1,\n",
      "          'job': 1,\n",
      "          'offers': 1,\n",
      "          'leads': 1,\n",
      "          'involve': 1,\n",
      "          'bombs': 1,\n",
      "          'nregardless': 1,\n",
      "          'continues': 1,\n",
      "          'career': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'behind': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'fans': 4,\n",
      "          'plot': 4,\n",
      "          'film': 4,\n",
      "          'nbut': 3,\n",
      "          'flintstones': 3,\n",
      "          'animated': 3,\n",
      "          'stone': 3,\n",
      "          'barney': 3,\n",
      "          'fred': 3,\n",
      "          'elizabeth': 3,\n",
      "          'based': 2,\n",
      "          'shows': 2,\n",
      "          'hollywood': 2,\n",
      "          'six': 2,\n",
      "          'werent': 2,\n",
      "          'many': 2,\n",
      "          'like': 2,\n",
      "          'series': 2,\n",
      "          'age': 2,\n",
      "          'family': 2,\n",
      "          'nafter': 2,\n",
      "          'effects': 2,\n",
      "          'one': 2,\n",
      "          'rick': 2,\n",
      "          'moranis': 2,\n",
      "          'wife': 2,\n",
      "          'betty': 2,\n",
      "          'rosie': 2,\n",
      "          'odonnell': 2,\n",
      "          'job': 2,\n",
      "          'embezzlement': 2,\n",
      "          'wilma': 2,\n",
      "          'perkins': 2,\n",
      "          'excellent': 2,\n",
      "          'show': 2,\n",
      "          'days': 1,\n",
      "          'witnessing': 1,\n",
      "          'deluge': 1,\n",
      "          'films': 1,\n",
      "          'old': 1,\n",
      "          'cult': 1,\n",
      "          'tv': 1,\n",
      "          'nmost': 1,\n",
      "          'times': 1,\n",
      "          'shudder': 1,\n",
      "          'thinking': 1,\n",
      "          'could': 1,\n",
      "          'hacks': 1,\n",
      "          'present': 1,\n",
      "          'memories': 1,\n",
      "          'past': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'movies': 1,\n",
      "          'trend': 1,\n",
      "          'didnt': 1,\n",
      "          'look': 1,\n",
      "          'depressing': 1,\n",
      "          'nso': 1,\n",
      "          'people': 1,\n",
      "          'author': 1,\n",
      "          'review': 1,\n",
      "          'grew': 1,\n",
      "          'watching': 1,\n",
      "          'popular': 1,\n",
      "          '1960s': 1,\n",
      "          'modern': 1,\n",
      "          'particularly': 1,\n",
      "          'worried': 1,\n",
      "          'word': 1,\n",
      "          'came': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'remake': 1,\n",
      "          'producer': 1,\n",
      "          'behind': 1,\n",
      "          'project': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'least': 1,\n",
      "          'special': 1,\n",
      "          'would': 1,\n",
      "          'good': 1,\n",
      "          'nthe': 1,\n",
      "          'revolves': 1,\n",
      "          'set': 1,\n",
      "          'fictious': 1,\n",
      "          'town': 1,\n",
      "          'bedrock': 1,\n",
      "          'whose': 1,\n",
      "          'members': 1,\n",
      "          'enjoy': 1,\n",
      "          'lifestyle': 1,\n",
      "          '1950s': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'america': 1,\n",
      "          'nfred': 1,\n",
      "          'flinstone': 1,\n",
      "          'john': 1,\n",
      "          'goodman': 1,\n",
      "          'works': 1,\n",
      "          'quarry': 1,\n",
      "          'day': 1,\n",
      "          'helps': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'neighbour': 1,\n",
      "          'rubble': 1,\n",
      "          'adopt': 1,\n",
      "          'baby': 1,\n",
      "          'nto': 1,\n",
      "          'return': 1,\n",
      "          'favour': 1,\n",
      "          'switches': 1,\n",
      "          'results': 1,\n",
      "          'aptitude': 1,\n",
      "          'test': 1,\n",
      "          'gets': 1,\n",
      "          'wellpaid': 1,\n",
      "          'management': 1,\n",
      "          'course': 1,\n",
      "          'sham': 1,\n",
      "          'corrupt': 1,\n",
      "          'official': 1,\n",
      "          'cliff': 1,\n",
      "          'vandercave': 1,\n",
      "          'kyle': 1,\n",
      "          'maclachlan': 1,\n",
      "          'sultry': 1,\n",
      "          'secretary': 1,\n",
      "          'sharon': 1,\n",
      "          'halle': 1,\n",
      "          'berry': 1,\n",
      "          'need': 1,\n",
      "          'scapegoat': 1,\n",
      "          'scheme': 1,\n",
      "          'nin': 1,\n",
      "          'meantime': 1,\n",
      "          'freds': 1,\n",
      "          'must': 1,\n",
      "          'face': 1,\n",
      "          'mother': 1,\n",
      "          'taylor': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'non': 1,\n",
      "          'superficial': 1,\n",
      "          'level': 1,\n",
      "          'bringing': 1,\n",
      "          'life': 1,\n",
      "          'ncomputer': 1,\n",
      "          'flawless': 1,\n",
      "          'costumes': 1,\n",
      "          'settings': 1,\n",
      "          'details': 1,\n",
      "          'authentic': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'problems': 1,\n",
      "          'start': 1,\n",
      "          'inadequate': 1,\n",
      "          'casting': 1,\n",
      "          'thin': 1,\n",
      "          'role': 1,\n",
      "          'cartoon': 1,\n",
      "          'used': 1,\n",
      "          'much': 1,\n",
      "          'skinnier': 1,\n",
      "          'greatest': 1,\n",
      "          'problem': 1,\n",
      "          'precise': 1,\n",
      "          'lack': 1,\n",
      "          'nsome': 1,\n",
      "          'thirty': 1,\n",
      "          'screenwriters': 1,\n",
      "          'made': 1,\n",
      "          'sure': 1,\n",
      "          'lame': 1,\n",
      "          'original': 1,\n",
      "          'characters': 1,\n",
      "          'onedimensional': 1,\n",
      "          'elements': 1,\n",
      "          'story': 1,\n",
      "          'interoffice': 1,\n",
      "          'politics': 1,\n",
      "          'totally': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'little': 1,\n",
      "          'children': 1,\n",
      "          'main': 1,\n",
      "          'targeted': 1,\n",
      "          'audience': 1,\n",
      "          'nresult': 1,\n",
      "          'almost': 1,\n",
      "          'unwatchable': 1,\n",
      "          'mess': 1,\n",
      "          'occasionally': 1,\n",
      "          'saved': 1,\n",
      "          'mostly': 1,\n",
      "          'acting': 1,\n",
      "          'right': 1,\n",
      "          'mark': 1,\n",
      "          'classic': 1,\n",
      "          'example': 1,\n",
      "          'mortal': 1,\n",
      "          'disease': 1,\n",
      "          'known': 1,\n",
      "          'high': 1,\n",
      "          'concept': 1,\n",
      "          'great': 1,\n",
      "          'hype': 1,\n",
      "          'movie': 1,\n",
      "          'quickly': 1,\n",
      "          'sank': 1,\n",
      "          'oblivion': 1,\n",
      "          'returned': 1,\n",
      "          'version': 1,\n",
      "          'nall': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'hard': 1,\n",
      "          'core': 1,\n",
      "          'nostalgics': 1,\n",
      "          'find': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tom': 9,\n",
      "          '8mm': 6,\n",
      "          'porn': 4,\n",
      "          'devil': 4,\n",
      "          'n': 4,\n",
      "          'nthe': 3,\n",
      "          'snuff': 3,\n",
      "          'max': 3,\n",
      "          'much': 3,\n",
      "          'two': 2,\n",
      "          'batman': 2,\n",
      "          'movies': 2,\n",
      "          'schumachers': 2,\n",
      "          'nit': 2,\n",
      "          'plot': 2,\n",
      "          'goes': 2,\n",
      "          'like': 2,\n",
      "          'private': 2,\n",
      "          'eye': 2,\n",
      "          'mrs': 2,\n",
      "          'christian': 2,\n",
      "          'movie': 2,\n",
      "          'film': 2,\n",
      "          'girl': 2,\n",
      "          'discover': 2,\n",
      "          'missing': 2,\n",
      "          'name': 2,\n",
      "          'another': 2,\n",
      "          'obvious': 2,\n",
      "          'hardcore': 2,\n",
      "          'father': 2,\n",
      "          'deeper': 2,\n",
      "          'films': 2,\n",
      "          'promise': 2,\n",
      "          'nin': 2,\n",
      "          'better': 2,\n",
      "          'first': 2,\n",
      "          'cold': 2,\n",
      "          'blood': 2,\n",
      "          'theme': 2,\n",
      "          'far': 2,\n",
      "          '1993s': 1,\n",
      "          'falling': 1,\n",
      "          'hoped': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'would': 1,\n",
      "          'mature': 1,\n",
      "          'great': 1,\n",
      "          'director': 1,\n",
      "          'nsince': 1,\n",
      "          'offered': 1,\n",
      "          'us': 1,\n",
      "          'soso': 1,\n",
      "          'adaptations': 1,\n",
      "          'john': 1,\n",
      "          'grisham': 1,\n",
      "          'novels': 1,\n",
      "          'client': 1,\n",
      "          'time': 1,\n",
      "          'kill': 1,\n",
      "          'lowered': 1,\n",
      "          'standards': 1,\n",
      "          'franchise': 1,\n",
      "          'nalthough': 1,\n",
      "          'disappointments': 1,\n",
      "          'dampened': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'potential': 1,\n",
      "          'publicity': 1,\n",
      "          'latest': 1,\n",
      "          'release': 1,\n",
      "          'raised': 1,\n",
      "          'new': 1,\n",
      "          'hope': 1,\n",
      "          'promised': 1,\n",
      "          'something': 1,\n",
      "          'unusual': 1,\n",
      "          'wasnt': 1,\n",
      "          'welles': 1,\n",
      "          'nicolas': 1,\n",
      "          'cage': 1,\n",
      "          'hired': 1,\n",
      "          'wealthy': 1,\n",
      "          'woman': 1,\n",
      "          'allegorically': 1,\n",
      "          'named': 1,\n",
      "          'myra': 1,\n",
      "          'carter': 1,\n",
      "          'investigate': 1,\n",
      "          'found': 1,\n",
      "          'among': 1,\n",
      "          'late': 1,\n",
      "          'husbands': 1,\n",
      "          'belongings': 1,\n",
      "          'appears': 1,\n",
      "          'teenage': 1,\n",
      "          'raped': 1,\n",
      "          'murdered': 1,\n",
      "          'man': 1,\n",
      "          'leather': 1,\n",
      "          'mask': 1,\n",
      "          'reminds': 1,\n",
      "          'bane': 1,\n",
      "          'robin': 1,\n",
      "          'nbecause': 1,\n",
      "          'murders': 1,\n",
      "          'realistically': 1,\n",
      "          'simulated': 1,\n",
      "          'wants': 1,\n",
      "          'alive': 1,\n",
      "          'dead': 1,\n",
      "          'nby': 1,\n",
      "          'combing': 1,\n",
      "          'persons': 1,\n",
      "          'reports': 1,\n",
      "          'finds': 1,\n",
      "          'girls': 1,\n",
      "          'tracks': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'nwith': 1,\n",
      "          'aid': 1,\n",
      "          'california': 1,\n",
      "          'joaquin': 1,\n",
      "          'phoenix': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'clerk': 1,\n",
      "          'symbolic': 1,\n",
      "          'wanders': 1,\n",
      "          'underworld': 1,\n",
      "          'pornography': 1,\n",
      "          'search': 1,\n",
      "          'bears': 1,\n",
      "          'resemblance': 1,\n",
      "          'paul': 1,\n",
      "          'schraders': 1,\n",
      "          'industries': 1,\n",
      "          'sex': 1,\n",
      "          'find': 1,\n",
      "          'daughter': 1,\n",
      "          'nboth': 1,\n",
      "          'modeled': 1,\n",
      "          'dantes': 1,\n",
      "          'inferno': 1,\n",
      "          'course': 1,\n",
      "          'makes': 1,\n",
      "          'connection': 1,\n",
      "          'overly': 1,\n",
      "          'casting': 1,\n",
      "          'virgil': 1,\n",
      "          'constantly': 1,\n",
      "          'tell': 1,\n",
      "          'heading': 1,\n",
      "          'toward': 1,\n",
      "          'meeting': 1,\n",
      "          'subtle': 1,\n",
      "          'meaningful': 1,\n",
      "          'lot': 1,\n",
      "          'moments': 1,\n",
      "          'examination': 1,\n",
      "          'violence': 1,\n",
      "          'entertainment': 1,\n",
      "          'beast': 1,\n",
      "          'within': 1,\n",
      "          'even': 1,\n",
      "          'nice': 1,\n",
      "          'guy': 1,\n",
      "          'none': 1,\n",
      "          'moment': 1,\n",
      "          'sort': 1,\n",
      "          'meet': 1,\n",
      "          'hes': 1,\n",
      "          'reading': 1,\n",
      "          'truman': 1,\n",
      "          'capotes': 1,\n",
      "          'underneath': 1,\n",
      "          'cover': 1,\n",
      "          'novel': 1,\n",
      "          'truecrime': 1,\n",
      "          'genre': 1,\n",
      "          'literary': 1,\n",
      "          'equivalent': 1,\n",
      "          'nmax': 1,\n",
      "          'promises': 1,\n",
      "          'see': 1,\n",
      "          'examples': 1,\n",
      "          'second': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'tells': 1,\n",
      "          'dance': 1,\n",
      "          'dont': 1,\n",
      "          'change': 1,\n",
      "          'changes': 1,\n",
      "          'ntom': 1,\n",
      "          'changeill': 1,\n",
      "          'let': 1,\n",
      "          'specifics': 1,\n",
      "          'yourselfbut': 1,\n",
      "          'permanently': 1,\n",
      "          'nschumacher': 1,\n",
      "          'screenwriter': 1,\n",
      "          'andrew': 1,\n",
      "          'kevin': 1,\n",
      "          'walker': 1,\n",
      "          'didnt': 1,\n",
      "          'guts': 1,\n",
      "          'take': 1,\n",
      "          'dark': 1,\n",
      "          'tunnel': 1,\n",
      "          'couldnt': 1,\n",
      "          'come': 1,\n",
      "          'back': 1,\n",
      "          'walkers': 1,\n",
      "          'seven': 1,\n",
      "          'job': 1,\n",
      "          'refusing': 1,\n",
      "          'compromise': 1,\n",
      "          'ncage': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'pull': 1,\n",
      "          'script': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'enough': 1,\n",
      "          'work': 1,\n",
      "          'nphoenix': 1,\n",
      "          'walks': 1,\n",
      "          'away': 1,\n",
      "          'moviehes': 1,\n",
      "          'smart': 1,\n",
      "          'charming': 1,\n",
      "          'funny': 1,\n",
      "          'nother': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'include': 1,\n",
      "          'fargo': 1,\n",
      "          'peter': 1,\n",
      "          'stormare': 1,\n",
      "          'camping': 1,\n",
      "          'auteur': 1,\n",
      "          'dino': 1,\n",
      "          'velvet': 1,\n",
      "          'sopranos': 1,\n",
      "          'james': 1,\n",
      "          'gandolfini': 1,\n",
      "          'soulless': 1,\n",
      "          'merchant': 1,\n",
      "          'pushes': 1,\n",
      "          'last': 1,\n",
      "          'analysis': 1,\n",
      "          'since': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'pretensions': 1,\n",
      "          'story': 1,\n",
      "          'raymond': 1,\n",
      "          'chandlerross': 1,\n",
      "          'macdonald': 1,\n",
      "          'tradition': 1,\n",
      "          'detective': 1,\n",
      "          'uncover': 1,\n",
      "          'depravity': 1,\n",
      "          'behind': 1,\n",
      "          'glossy': 1,\n",
      "          'facade': 1,\n",
      "          'wealth': 1,\n",
      "          'privilege': 1,\n",
      "          'nhowever': 1,\n",
      "          'unlike': 1,\n",
      "          'predictable': 1,\n",
      "          'fare': 1,\n",
      "          'genrelast': 1,\n",
      "          'years': 1,\n",
      "          'twilight': 1,\n",
      "          'example': 1,\n",
      "          'especially': 1,\n",
      "          'disappointing': 1,\n",
      "          'could': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 6,\n",
      "          'male': 4,\n",
      "          'know': 3,\n",
      "          'last': 3,\n",
      "          'summer': 3,\n",
      "          'movie': 3,\n",
      "          'scream': 3,\n",
      "          'female': 3,\n",
      "          'woodenly': 3,\n",
      "          'played': 3,\n",
      "          'brunette': 3,\n",
      "          'protagonists': 3,\n",
      "          'main': 3,\n",
      "          'though': 2,\n",
      "          'without': 2,\n",
      "          'see': 2,\n",
      "          'begins': 2,\n",
      "          'angsty': 2,\n",
      "          'cliff': 2,\n",
      "          'ocean': 2,\n",
      "          'nthe': 2,\n",
      "          'town': 2,\n",
      "          'blond': 2,\n",
      "          'getting': 2,\n",
      "          'pair': 2,\n",
      "          'party': 2,\n",
      "          'one': 2,\n",
      "          'college': 2,\n",
      "          'nblond': 2,\n",
      "          'acting': 2,\n",
      "          'plot': 2,\n",
      "          'actors': 2,\n",
      "          'climactic': 2,\n",
      "          'lines': 2,\n",
      "          'think': 1,\n",
      "          '2': 1,\n",
      "          'could': 1,\n",
      "          'nmind': 1,\n",
      "          'mean': 1,\n",
      "          'worst': 1,\n",
      "          'possible': 1,\n",
      "          'way': 1,\n",
      "          'ni': 1,\n",
      "          'typical': 1,\n",
      "          'slasher': 1,\n",
      "          'flic': 1,\n",
      "          'smarts': 1,\n",
      "          'screams': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'even': 1,\n",
      "          'worse': 1,\n",
      "          'better': 1,\n",
      "          'campy': 1,\n",
      "          'horror': 1,\n",
      "          'pictures': 1,\n",
      "          'nightmare': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          'thinks': 1,\n",
      "          'thirty': 1,\n",
      "          'times': 1,\n",
      "          'smarter': 1,\n",
      "          'nbased': 1,\n",
      "          'teen': 1,\n",
      "          'book': 1,\n",
      "          'name': 1,\n",
      "          'disappointingly': 1,\n",
      "          'adapted': 1,\n",
      "          'scribe': 1,\n",
      "          'kevin': 1,\n",
      "          'williamson': 1,\n",
      "          'appropriately': 1,\n",
      "          'modern': 1,\n",
      "          'rock': 1,\n",
      "          'music': 1,\n",
      "          'combined': 1,\n",
      "          'startling': 1,\n",
      "          'cinematography': 1,\n",
      "          'along': 1,\n",
      "          'sort': 1,\n",
      "          'sitting': 1,\n",
      "          'top': 1,\n",
      "          'appropriate': 1,\n",
      "          'mood': 1,\n",
      "          'set': 1,\n",
      "          'angsthorror': 1,\n",
      "          '90s': 1,\n",
      "          'cut': 1,\n",
      "          'july': 1,\n",
      "          '4th': 1,\n",
      "          'parade': 1,\n",
      "          'small': 1,\n",
      "          'north': 1,\n",
      "          'carolina': 1,\n",
      "          'nfrom': 1,\n",
      "          'protagonist': 1,\n",
      "          'helen': 1,\n",
      "          'shivers': 1,\n",
      "          'sarah': 1,\n",
      "          'michelle': 1,\n",
      "          'geller': 1,\n",
      "          'crowned': 1,\n",
      "          'croaker': 1,\n",
      "          'queen': 1,\n",
      "          'hero': 1,\n",
      "          'barry': 1,\n",
      "          'cox': 1,\n",
      "          'ryan': 1,\n",
      "          'phillipe': 1,\n",
      "          'matched': 1,\n",
      "          'julie': 1,\n",
      "          'james': 1,\n",
      "          'ray': 1,\n",
      "          'bronson': 1,\n",
      "          'fives': 1,\n",
      "          'jennifer': 1,\n",
      "          'love': 1,\n",
      "          'hewitt': 1,\n",
      "          'freddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'respectively': 1,\n",
      "          'cheer': 1,\n",
      "          'nafter': 1,\n",
      "          'drunk': 1,\n",
      "          'going': 1,\n",
      "          'beach': 1,\n",
      "          'wittily': 1,\n",
      "          'discuss': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'indulge': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'meaningful': 1,\n",
      "          'sex': 1,\n",
      "          'believe': 1,\n",
      "          'characters': 1,\n",
      "          'say': 1,\n",
      "          'four': 1,\n",
      "          'run': 1,\n",
      "          'guy': 1,\n",
      "          'crossing': 1,\n",
      "          'windy': 1,\n",
      "          'road': 1,\n",
      "          'night': 1,\n",
      "          'nhis': 1,\n",
      "          'face': 1,\n",
      "          'mangled': 1,\n",
      "          'cant': 1,\n",
      "          'tell': 1,\n",
      "          'come': 1,\n",
      "          'decision': 1,\n",
      "          'dump': 1,\n",
      "          'ruin': 1,\n",
      "          'future': 1,\n",
      "          'chances': 1,\n",
      "          'success': 1,\n",
      "          'world': 1,\n",
      "          'ncut': 1,\n",
      "          'year': 1,\n",
      "          'later': 1,\n",
      "          'lives': 1,\n",
      "          'gone': 1,\n",
      "          'annoying': 1,\n",
      "          'nmain': 1,\n",
      "          'bright': 1,\n",
      "          'bunch': 1,\n",
      "          'plagued': 1,\n",
      "          'guilt': 1,\n",
      "          'almost': 1,\n",
      "          'failed': 1,\n",
      "          'forfeited': 1,\n",
      "          'dreams': 1,\n",
      "          'starring': 1,\n",
      "          'guiding': 1,\n",
      "          'light': 1,\n",
      "          'works': 1,\n",
      "          'family': 1,\n",
      "          'store': 1,\n",
      "          'nbrunette': 1,\n",
      "          'fisherman': 1,\n",
      "          'living': 1,\n",
      "          'land': 1,\n",
      "          'become': 1,\n",
      "          'complete': 1,\n",
      "          'jerk': 1,\n",
      "          'quarterback': 1,\n",
      "          'football': 1,\n",
      "          'team': 1,\n",
      "          'nthen': 1,\n",
      "          'predictably': 1,\n",
      "          'past': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'haunt': 1,\n",
      "          'nit': 1,\n",
      "          'irrational': 1,\n",
      "          'murder': 1,\n",
      "          'followed': 1,\n",
      "          'taunting': 1,\n",
      "          'mysterious': 1,\n",
      "          'killer': 1,\n",
      "          'good': 1,\n",
      "          'actress': 1,\n",
      "          'anne': 1,\n",
      "          'heche': 1,\n",
      "          'improbable': 1,\n",
      "          'killing': 1,\n",
      "          'concluding': 1,\n",
      "          'scene': 1,\n",
      "          'mostly': 1,\n",
      "          'relief': 1,\n",
      "          'end': 1,\n",
      "          'nall': 1,\n",
      "          'actresses': 1,\n",
      "          'spout': 1,\n",
      "          'best': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'imitation': 1,\n",
      "          'nnot': 1,\n",
      "          'pleasure': 1,\n",
      "          'ncount': 1,\n",
      "          'illogical': 1,\n",
      "          'twists': 1,\n",
      "          'fun': 1,\n",
      "          'nmostly': 1,\n",
      "          'note': 1,\n",
      "          'costumes': 1,\n",
      "          'females': 1,\n",
      "          'trendily': 1,\n",
      "          'unattractive': 1,\n",
      "          'make': 1,\n",
      "          'otherwise': 1,\n",
      "          'eyecatching': 1,\n",
      "          'look': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'one': 6,\n",
      "          'acting': 4,\n",
      "          'nits': 4,\n",
      "          'porn': 3,\n",
      "          'nit': 3,\n",
      "          'story': 3,\n",
      "          'script': 3,\n",
      "          'point': 3,\n",
      "          'naked': 3,\n",
      "          'even': 3,\n",
      "          'eszterhas': 3,\n",
      "          'n': 3,\n",
      "          'see': 3,\n",
      "          'lacks': 3,\n",
      "          'nothing': 2,\n",
      "          'high': 2,\n",
      "          'budget': 2,\n",
      "          'nyou': 2,\n",
      "          'films': 2,\n",
      "          'end': 2,\n",
      "          'video': 2,\n",
      "          'nthere': 2,\n",
      "          'nomi': 2,\n",
      "          'show': 2,\n",
      "          'dancer': 2,\n",
      "          'nno': 2,\n",
      "          'nand': 2,\n",
      "          'nwhats': 2,\n",
      "          'could': 2,\n",
      "          'level': 2,\n",
      "          'line': 2,\n",
      "          'intelligence': 2,\n",
      "          'youll': 2,\n",
      "          'start': 2,\n",
      "          'bad': 2,\n",
      "          'nher': 2,\n",
      "          'character': 2,\n",
      "          'half': 2,\n",
      "          'fact': 2,\n",
      "          'whore': 2,\n",
      "          'ni': 2,\n",
      "          'showgirls': 2,\n",
      "          'nnot': 2,\n",
      "          'single': 2,\n",
      "          'total': 2,\n",
      "          'waste': 2,\n",
      "          'time': 2,\n",
      "          'dialogue': 2,\n",
      "          'attempt': 2,\n",
      "          'excuse': 2,\n",
      "          'las': 2,\n",
      "          'vegas': 2,\n",
      "          'masturbation': 1,\n",
      "          'fantasy': 1,\n",
      "          'nshowgirls': 1,\n",
      "          'nc17': 1,\n",
      "          'contains': 1,\n",
      "          'graphic': 1,\n",
      "          'nudity': 1,\n",
      "          'profanity': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          'violence': 1,\n",
      "          'nsome': 1,\n",
      "          'people': 1,\n",
      "          'however': 1,\n",
      "          'keep': 1,\n",
      "          'clothes': 1,\n",
      "          'watch': 1,\n",
      "          'intellectual': 1,\n",
      "          'values': 1,\n",
      "          'write': 1,\n",
      "          'reviews': 1,\n",
      "          'nthats': 1,\n",
      "          'review': 1,\n",
      "          'short': 1,\n",
      "          'seems': 1,\n",
      "          'section': 1,\n",
      "          'hits': 1,\n",
      "          'stores': 1,\n",
      "          'nonly': 1,\n",
      "          'bodies': 1,\n",
      "          'exactly': 1,\n",
      "          'nhere': 1,\n",
      "          'called': 1,\n",
      "          'plot': 1,\n",
      "          '23yearold': 1,\n",
      "          'dark': 1,\n",
      "          'past': 1,\n",
      "          'hooker': 1,\n",
      "          'hitchhiked': 1,\n",
      "          'somewhere': 1,\n",
      "          'back': 1,\n",
      "          'east': 1,\n",
      "          'perform': 1,\n",
      "          'doesnt': 1,\n",
      "          'wear': 1,\n",
      "          'much': 1,\n",
      "          'light': 1,\n",
      "          'coating': 1,\n",
      "          'powder': 1,\n",
      "          'big': 1,\n",
      "          'fake': 1,\n",
      "          'smile': 1,\n",
      "          'twisting': 1,\n",
      "          'nomis': 1,\n",
      "          'arm': 1,\n",
      "          'holding': 1,\n",
      "          'grandmother': 1,\n",
      "          'hostage': 1,\n",
      "          'nshe': 1,\n",
      "          'wants': 1,\n",
      "          'till': 1,\n",
      "          'credits': 1,\n",
      "          'nso': 1,\n",
      "          'whats': 1,\n",
      "          'problem': 1,\n",
      "          'nis': 1,\n",
      "          'anyone': 1,\n",
      "          'whose': 1,\n",
      "          'aspirations': 1,\n",
      "          'inspire': 1,\n",
      "          'less': 1,\n",
      "          'sympathy': 1,\n",
      "          'nthis': 1,\n",
      "          'described': 1,\n",
      "          'sentence': 1,\n",
      "          'obscene': 1,\n",
      "          'incompetence': 1,\n",
      "          'excessive': 1,\n",
      "          'stupidity': 1,\n",
      "          'gross': 1,\n",
      "          'negligence': 1,\n",
      "          'viewers': 1,\n",
      "          'prurient': 1,\n",
      "          'interest': 1,\n",
      "          'quick': 1,\n",
      "          'buck': 1,\n",
      "          'nbelieve': 1,\n",
      "          'hour': 1,\n",
      "          'characters': 1,\n",
      "          'hoping': 1,\n",
      "          'someone': 1,\n",
      "          'kill': 1,\n",
      "          'somebody': 1,\n",
      "          'nelizabeth': 1,\n",
      "          'berkley': 1,\n",
      "          'makes': 1,\n",
      "          'laughable': 1,\n",
      "          'try': 1,\n",
      "          'heroine': 1,\n",
      "          'least': 1,\n",
      "          'written': 1,\n",
      "          'really': 1,\n",
      "          'done': 1,\n",
      "          'better': 1,\n",
      "          'denies': 1,\n",
      "          'industry': 1,\n",
      "          'selling': 1,\n",
      "          'body': 1,\n",
      "          'hungry': 1,\n",
      "          'eyes': 1,\n",
      "          'horny': 1,\n",
      "          'public': 1,\n",
      "          'screams': 1,\n",
      "          'dramatized': 1,\n",
      "          'way': 1,\n",
      "          'laughing': 1,\n",
      "          'nin': 1,\n",
      "          'brings': 1,\n",
      "          'terrible': 1,\n",
      "          'new': 1,\n",
      "          'previously': 1,\n",
      "          'unknown': 1,\n",
      "          'achievement': 1,\n",
      "          'besides': 1,\n",
      "          'conventional': 1,\n",
      "          'cinematography': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'money': 1,\n",
      "          'moment': 1,\n",
      "          'might': 1,\n",
      "          'call': 1,\n",
      "          'nthe': 1,\n",
      "          'structured': 1,\n",
      "          'ancient': 1,\n",
      "          'stereotypes': 1,\n",
      "          'cliches': 1,\n",
      "          'lined': 1,\n",
      "          'another': 1,\n",
      "          'imagine': 1,\n",
      "          'brain': 1,\n",
      "          'results': 1,\n",
      "          'catastrophe': 1,\n",
      "          'writes': 1,\n",
      "          'director': 1,\n",
      "          'paul': 1,\n",
      "          'verhoeven': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'recall': 1,\n",
      "          'hold': 1,\n",
      "          'mirror': 1,\n",
      "          'life': 1,\n",
      "          'nwell': 1,\n",
      "          'nhis': 1,\n",
      "          'go': 1,\n",
      "          'behind': 1,\n",
      "          'scenes': 1,\n",
      "          'put': 1,\n",
      "          'truth': 1,\n",
      "          'simplified': 1,\n",
      "          'unreal': 1,\n",
      "          'noccasionally': 1,\n",
      "          'collection': 1,\n",
      "          'mistakes': 1,\n",
      "          'logical': 1,\n",
      "          'irrationalities': 1,\n",
      "          'screenwriter': 1,\n",
      "          'joe': 1,\n",
      "          'creator': 1,\n",
      "          'worst': 1,\n",
      "          'screenplays': 1,\n",
      "          'hollywood': 1,\n",
      "          'history': 1,\n",
      "          'inserts': 1,\n",
      "          'lines': 1,\n",
      "          'deep': 1,\n",
      "          'morality': 1,\n",
      "          'sound': 1,\n",
      "          'something': 1,\n",
      "          'like': 1,\n",
      "          'hey': 1,\n",
      "          'youre': 1,\n",
      "          'hiding': 1,\n",
      "          'nyes': 1,\n",
      "          'decent': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'going': 1,\n",
      "          'strange': 1,\n",
      "          'phenomena': 1,\n",
      "          'erotic': 1,\n",
      "          'sensuality': 1,\n",
      "          'dramatic': 1,\n",
      "          'intelligent': 1,\n",
      "          'simply': 1,\n",
      "          'verhovens': 1,\n",
      "          'making': 1,\n",
      "          'pornography': 1,\n",
      "          'want': 1,\n",
      "          'women': 1,\n",
      "          'nbare': 1,\n",
      "          'breasts': 1,\n",
      "          'nfull': 1,\n",
      "          'frontals': 1,\n",
      "          'wrong': 1,\n",
      "          'nbut': 1,\n",
      "          'case': 1,\n",
      "          'suggest': 1,\n",
      "          'rent': 1,\n",
      "          'local': 1,\n",
      "          'store': 1,\n",
      "          'surviving': 1,\n",
      "          'pathetic': 1,\n",
      "          'nb': 1,\n",
      "          'qualities': 1,\n",
      "          'pornfilm': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hell': 7,\n",
      "          'martha': 5,\n",
      "          'film': 5,\n",
      "          'character': 4,\n",
      "          'much': 4,\n",
      "          'even': 3,\n",
      "          'nbut': 3,\n",
      "          'characters': 3,\n",
      "          'one': 2,\n",
      "          'hush': 2,\n",
      "          'old': 2,\n",
      "          'motherinlaw': 2,\n",
      "          'nthe': 2,\n",
      "          'question': 2,\n",
      "          'nshe': 2,\n",
      "          'kilronan': 2,\n",
      "          'johnathon': 2,\n",
      "          'schaech': 2,\n",
      "          'helen': 2,\n",
      "          'paltrow': 2,\n",
      "          'nyou': 2,\n",
      "          'breed': 2,\n",
      "          'audience': 2,\n",
      "          'like': 2,\n",
      "          'doesnt': 2,\n",
      "          'nstill': 2,\n",
      "          '90s': 1,\n",
      "          'unwelcome': 1,\n",
      "          'thriller': 1,\n",
      "          'trends': 1,\n",
      "          'returns': 1,\n",
      "          'grave': 1,\n",
      "          '___': 1,\n",
      "          'movie': 1,\n",
      "          'nstarting': 1,\n",
      "          'early': 1,\n",
      "          'nineties': 1,\n",
      "          'subjected': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'conceivable': 1,\n",
      "          'combination': 1,\n",
      "          'relationshipsfromhell': 1,\n",
      "          'nthere': 1,\n",
      "          'boyfriends': 1,\n",
      "          'friendly': 1,\n",
      "          'neighborhood': 1,\n",
      "          'cops': 1,\n",
      "          'nannies': 1,\n",
      "          'secretaries': 1,\n",
      "          'found': 1,\n",
      "          'standby': 1,\n",
      "          'somehow': 1,\n",
      "          'forgotten': 1,\n",
      "          'rush': 1,\n",
      "          'played': 1,\n",
      "          'jessica': 1,\n",
      "          'lange': 1,\n",
      "          'singlehandedly': 1,\n",
      "          'running': 1,\n",
      "          'family': 1,\n",
      "          'horse': 1,\n",
      "          'farm': 1,\n",
      "          'nher': 1,\n",
      "          'son': 1,\n",
      "          'jackson': 1,\n",
      "          'girlfriend': 1,\n",
      "          'gwyneth': 1,\n",
      "          'live': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'intention': 1,\n",
      "          'move': 1,\n",
      "          'back': 1,\n",
      "          'south': 1,\n",
      "          'rural': 1,\n",
      "          'intentions': 1,\n",
      "          'change': 1,\n",
      "          'see': 1,\n",
      "          'lives': 1,\n",
      "          'manipulation': 1,\n",
      "          'used': 1,\n",
      "          'years': 1,\n",
      "          'past': 1,\n",
      "          'many': 1,\n",
      "          'championship': 1,\n",
      "          'horses': 1,\n",
      "          'nnow': 1,\n",
      "          'believes': 1,\n",
      "          'use': 1,\n",
      "          'grandson': 1,\n",
      "          'nthough': 1,\n",
      "          'first': 1,\n",
      "          'finds': 1,\n",
      "          'charming': 1,\n",
      "          'soon': 1,\n",
      "          'caught': 1,\n",
      "          'domineering': 1,\n",
      "          'marthas': 1,\n",
      "          'web': 1,\n",
      "          'deception': 1,\n",
      "          'nits': 1,\n",
      "          'hard': 1,\n",
      "          'understand': 1,\n",
      "          'nobody': 1,\n",
      "          'ever': 1,\n",
      "          'wises': 1,\n",
      "          'schemes': 1,\n",
      "          'nas': 1,\n",
      "          'written': 1,\n",
      "          'must': 1,\n",
      "          'slow': 1,\n",
      "          'witted': 1,\n",
      "          'treats': 1,\n",
      "          'idiots': 1,\n",
      "          'nit': 1,\n",
      "          'tries': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'things': 1,\n",
      "          'leaving': 1,\n",
      "          'critical': 1,\n",
      "          'piece': 1,\n",
      "          'evidence': 1,\n",
      "          'rather': 1,\n",
      "          'unlikely': 1,\n",
      "          'place': 1,\n",
      "          'without': 1,\n",
      "          'batting': 1,\n",
      "          'eye': 1,\n",
      "          'nthen': 1,\n",
      "          'accepts': 1,\n",
      "          'shallow': 1,\n",
      "          'isnt': 1,\n",
      "          'thats': 1,\n",
      "          'likely': 1,\n",
      "          'details': 1,\n",
      "          'njessica': 1,\n",
      "          'langes': 1,\n",
      "          'semideveloped': 1,\n",
      "          'applies': 1,\n",
      "          'talents': 1,\n",
      "          'redeem': 1,\n",
      "          'na': 1,\n",
      "          'could': 1,\n",
      "          'simply': 1,\n",
      "          'awful': 1,\n",
      "          'merely': 1,\n",
      "          'groanworthy': 1,\n",
      "          'ngwyneth': 1,\n",
      "          'build': 1,\n",
      "          'upon': 1,\n",
      "          'helens': 1,\n",
      "          'trait': 1,\n",
      "          'seems': 1,\n",
      "          'daughterinlaw': 1,\n",
      "          'fares': 1,\n",
      "          'better': 1,\n",
      "          'whose': 1,\n",
      "          'nonexistent': 1,\n",
      "          'hes': 1,\n",
      "          'inexplicably': 1,\n",
      "          'missing': 1,\n",
      "          'worse': 1,\n",
      "          '____': 1,\n",
      "          'films': 1,\n",
      "          'neven': 1,\n",
      "          'paperthin': 1,\n",
      "          'ludicrous': 1,\n",
      "          'setups': 1,\n",
      "          'manages': 1,\n",
      "          'create': 1,\n",
      "          'thrills': 1,\n",
      "          'colorbynumbers': 1,\n",
      "          'fashion': 1,\n",
      "          'know': 1,\n",
      "          'whats': 1,\n",
      "          'coming': 1,\n",
      "          'occasionally': 1,\n",
      "          'deliver': 1,\n",
      "          'shock': 1,\n",
      "          'two': 1,\n",
      "          'formulas': 1,\n",
      "          'around': 1,\n",
      "          'reason': 1,\n",
      "          'mean': 1,\n",
      "          'taste': 1,\n",
      "          'fresh': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'story': 4,\n",
      "          'black': 4,\n",
      "          'photographer': 4,\n",
      "          'rumor': 3,\n",
      "          'robert': 3,\n",
      "          'mugging': 3,\n",
      "          'nit': 3,\n",
      "          'looks': 3,\n",
      "          'nthe': 3,\n",
      "          'victim': 3,\n",
      "          'one': 3,\n",
      "          'mahurin': 2,\n",
      "          'belinda': 2,\n",
      "          'becker': 2,\n",
      "          'stella': 2,\n",
      "          'michael': 2,\n",
      "          'williams': 2,\n",
      "          'knepper': 2,\n",
      "          'brother': 2,\n",
      "          'mother': 2,\n",
      "          'na': 2,\n",
      "          'visually': 2,\n",
      "          'stylish': 2,\n",
      "          'shock': 2,\n",
      "          'tell': 2,\n",
      "          'like': 2,\n",
      "          'white': 2,\n",
      "          'together': 2,\n",
      "          'still': 2,\n",
      "          'telling': 2,\n",
      "          'gang': 2,\n",
      "          'hes': 2,\n",
      "          'harlem': 2,\n",
      "          'nhe': 2,\n",
      "          'becomes': 2,\n",
      "          'scrapbook': 2,\n",
      "          'apartment': 2,\n",
      "          'could': 2,\n",
      "          'mugshot': 1,\n",
      "          'directorwritercinematographereditor': 1,\n",
      "          'matt': 1,\n",
      "          'cast': 1,\n",
      "          'joechris': 1,\n",
      "          'walker': 1,\n",
      "          'random': 1,\n",
      "          'willie': 1,\n",
      "          'lassic': 1,\n",
      "          'young': 1,\n",
      "          'maxine': 1,\n",
      "          'joiner': 1,\n",
      "          'rumors': 1,\n",
      "          'runtime': 1,\n",
      "          '87': 1,\n",
      "          'mortal': 1,\n",
      "          'films': 1,\n",
      "          '1995': 1,\n",
      "          'nreviewed': 1,\n",
      "          'dennis': 1,\n",
      "          'schwartz': 1,\n",
      "          'bleak': 1,\n",
      "          'indie': 1,\n",
      "          'stolen': 1,\n",
      "          'identity': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'meets': 1,\n",
      "          'eye': 1,\n",
      "          'relies': 1,\n",
      "          'prolonged': 1,\n",
      "          'vicious': 1,\n",
      "          'falls': 1,\n",
      "          'category': 1,\n",
      "          'pretentious': 1,\n",
      "          'arthouse': 1,\n",
      "          'leaving': 1,\n",
      "          'bitter': 1,\n",
      "          'taste': 1,\n",
      "          'ones': 1,\n",
      "          'mouth': 1,\n",
      "          'stereotypes': 1,\n",
      "          'characters': 1,\n",
      "          'unintentionally': 1,\n",
      "          'inflames': 1,\n",
      "          'racial': 1,\n",
      "          'issues': 1,\n",
      "          'tries': 1,\n",
      "          'make': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'point': 1,\n",
      "          'disenfranchised': 1,\n",
      "          'youths': 1,\n",
      "          'trapped': 1,\n",
      "          'environment': 1,\n",
      "          'way': 1,\n",
      "          'crime': 1,\n",
      "          'nbut': 1,\n",
      "          'filled': 1,\n",
      "          'violence': 1,\n",
      "          'nyc': 1,\n",
      "          'setting': 1,\n",
      "          'hell': 1,\n",
      "          'hard': 1,\n",
      "          'enjoy': 1,\n",
      "          'follow': 1,\n",
      "          'logic': 1,\n",
      "          'supposed': 1,\n",
      "          'mean': 1,\n",
      "          'relationship': 1,\n",
      "          'mugger': 1,\n",
      "          'cloudy': 1,\n",
      "          'never': 1,\n",
      "          'determines': 1,\n",
      "          'wants': 1,\n",
      "          'say': 1,\n",
      "          'nmatt': 1,\n",
      "          'virtual': 1,\n",
      "          'oneman': 1,\n",
      "          'crew': 1,\n",
      "          'putting': 1,\n",
      "          'directorwriter': 1,\n",
      "          'cinematographereditor': 1,\n",
      "          'day': 1,\n",
      "          'job': 1,\n",
      "          'works': 1,\n",
      "          'best': 1,\n",
      "          'challenging': 1,\n",
      "          'piece': 1,\n",
      "          'shot': 1,\n",
      "          'photograph': 1,\n",
      "          'carefully': 1,\n",
      "          'unfolding': 1,\n",
      "          'mugged': 1,\n",
      "          'freelance': 1,\n",
      "          'assignment': 1,\n",
      "          'take': 1,\n",
      "          'photo': 1,\n",
      "          'shoot': 1,\n",
      "          'night': 1,\n",
      "          'amnesia': 1,\n",
      "          'head': 1,\n",
      "          'bloodied': 1,\n",
      "          'left': 1,\n",
      "          'deserted': 1,\n",
      "          'building': 1,\n",
      "          'leaves': 1,\n",
      "          'dead': 1,\n",
      "          'muggers': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'pretends': 1,\n",
      "          'help': 1,\n",
      "          'nhes': 1,\n",
      "          'wouldbe': 1,\n",
      "          'keeps': 1,\n",
      "          'entitled': 1,\n",
      "          'mugshots': 1,\n",
      "          'project': 1,\n",
      "          'shares': 1,\n",
      "          'younger': 1,\n",
      "          'nkeeping': 1,\n",
      "          'dark': 1,\n",
      "          'calling': 1,\n",
      "          'joe': 1,\n",
      "          'whats': 1,\n",
      "          'happening': 1,\n",
      "          'days': 1,\n",
      "          'enters': 1,\n",
      "          'photographers': 1,\n",
      "          'greenwich': 1,\n",
      "          'village': 1,\n",
      "          'steals': 1,\n",
      "          'expensive': 1,\n",
      "          'camera': 1,\n",
      "          'decides': 1,\n",
      "          'hold': 1,\n",
      "          'vic': 1,\n",
      "          'ransom': 1,\n",
      "          'finds': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nshes': 1,\n",
      "          'act': 1,\n",
      "          'stuck': 1,\n",
      "          'clumsy': 1,\n",
      "          'dialogue': 1,\n",
      "          'overuse': 1,\n",
      "          'symbolism': 1,\n",
      "          'ends': 1,\n",
      "          'nothing': 1,\n",
      "          'violent': 1,\n",
      "          'situation': 1,\n",
      "          'created': 1,\n",
      "          'except': 1,\n",
      "          'beat': 1,\n",
      "          'ground': 1,\n",
      "          'commended': 1,\n",
      "          'appealing': 1,\n",
      "          'photos': 1,\n",
      "          'put': 1,\n",
      "          'celebrate': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 14,\n",
      "          'tribe': 8,\n",
      "          'dreyfuss': 7,\n",
      "          'ni': 7,\n",
      "          'krippendorf': 6,\n",
      "          'funny': 6,\n",
      "          'good': 5,\n",
      "          'nand': 5,\n",
      "          'like': 5,\n",
      "          'would': 5,\n",
      "          'krippendorfs': 4,\n",
      "          'actors': 4,\n",
      "          'bad': 4,\n",
      "          'truly': 4,\n",
      "          'nit': 3,\n",
      "          'great': 3,\n",
      "          'nin': 3,\n",
      "          'fact': 3,\n",
      "          'script': 3,\n",
      "          'could': 3,\n",
      "          'able': 3,\n",
      "          'ndreyfuss': 3,\n",
      "          'plays': 3,\n",
      "          'never': 3,\n",
      "          'nhe': 3,\n",
      "          'really': 3,\n",
      "          'story': 3,\n",
      "          'scene': 3,\n",
      "          'nthey': 3,\n",
      "          'audience': 3,\n",
      "          'scenes': 3,\n",
      "          'insult': 3,\n",
      "          'kids': 3,\n",
      "          'imagine': 2,\n",
      "          'talented': 2,\n",
      "          'led': 2,\n",
      "          'far': 2,\n",
      "          'away': 2,\n",
      "          'actor': 2,\n",
      "          'less': 2,\n",
      "          'anthropologist': 2,\n",
      "          'find': 2,\n",
      "          'apparently': 2,\n",
      "          'dies': 2,\n",
      "          'established': 2,\n",
      "          'grant': 2,\n",
      "          'money': 2,\n",
      "          'lie': 2,\n",
      "          'makes': 2,\n",
      "          'simply': 2,\n",
      "          'shelmickedmu': 2,\n",
      "          'family': 2,\n",
      "          'single': 2,\n",
      "          'community': 2,\n",
      "          'man': 2,\n",
      "          'people': 2,\n",
      "          'nthis': 2,\n",
      "          'also': 2,\n",
      "          'requires': 2,\n",
      "          'elfman': 2,\n",
      "          'veronica': 2,\n",
      "          'work': 2,\n",
      "          'well': 2,\n",
      "          'nbut': 2,\n",
      "          'disbelief': 2,\n",
      "          'takes': 2,\n",
      "          'easily': 2,\n",
      "          'nno': 2,\n",
      "          'many': 2,\n",
      "          'clueless': 2,\n",
      "          'material': 2,\n",
      "          'shameless': 2,\n",
      "          'get': 2,\n",
      "          'saw': 2,\n",
      "          'didnt': 2,\n",
      "          'members': 2,\n",
      "          'admit': 2,\n",
      "          'entertaining': 2,\n",
      "          'see': 2,\n",
      "          'themes': 2,\n",
      "          'kind': 2,\n",
      "          'suppose': 2,\n",
      "          'tells': 2,\n",
      "          'must': 1,\n",
      "          'looked': 1,\n",
      "          'paper': 1,\n",
      "          'surprise': 1,\n",
      "          'least': 1,\n",
      "          'group': 1,\n",
      "          'extremely': 1,\n",
      "          'richard': 1,\n",
      "          'director': 1,\n",
      "          'todd': 1,\n",
      "          'holland': 1,\n",
      "          'wanted': 1,\n",
      "          'make': 1,\n",
      "          'expertise': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'executed': 1,\n",
      "          'keeps': 1,\n",
      "          'suggesting': 1,\n",
      "          'stay': 1,\n",
      "          'possible': 1,\n",
      "          'retrospect': 1,\n",
      "          'shudder': 1,\n",
      "          'possibilities': 1,\n",
      "          'awfulness': 1,\n",
      "          'starred': 1,\n",
      "          'james': 1,\n",
      "          'granted': 1,\n",
      "          '100': 1,\n",
      "          '000': 1,\n",
      "          'university': 1,\n",
      "          'undiscovered': 1,\n",
      "          'new': 1,\n",
      "          'guinea': 1,\n",
      "          'nhalfway': 1,\n",
      "          'twoyear': 1,\n",
      "          'expedition': 1,\n",
      "          'wife': 1,\n",
      "          'say': 1,\n",
      "          'nlater': 1,\n",
      "          'much': 1,\n",
      "          'spent': 1,\n",
      "          'bigscreen': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'tvs': 1,\n",
      "          'pleasures': 1,\n",
      "          'nso': 1,\n",
      "          'finds': 1,\n",
      "          'happens': 1,\n",
      "          'professors': 1,\n",
      "          'use': 1,\n",
      "          'wisely': 1,\n",
      "          'decides': 1,\n",
      "          'construct': 1,\n",
      "          'elaborate': 1,\n",
      "          'using': 1,\n",
      "          'three': 1,\n",
      "          'children': 1,\n",
      "          'video': 1,\n",
      "          'certain': 1,\n",
      "          'incredible': 1,\n",
      "          'facts': 1,\n",
      "          'calls': 1,\n",
      "          'naudiences': 1,\n",
      "          'lectures': 1,\n",
      "          'amazed': 1,\n",
      "          'findings': 1,\n",
      "          'practice': 1,\n",
      "          'circumcision': 1,\n",
      "          'proof': 1,\n",
      "          'typical': 1,\n",
      "          'unit': 1,\n",
      "          'father': 1,\n",
      "          'amazing': 1,\n",
      "          'anthropological': 1,\n",
      "          'nlike': 1,\n",
      "          'films': 1,\n",
      "          'becomes': 1,\n",
      "          'complex': 1,\n",
      "          'suspense': 1,\n",
      "          'generated': 1,\n",
      "          'us': 1,\n",
      "          'wondering': 1,\n",
      "          'point': 1,\n",
      "          'going': 1,\n",
      "          'fall': 1,\n",
      "          'hero': 1,\n",
      "          'lots': 1,\n",
      "          'positive': 1,\n",
      "          'energy': 1,\n",
      "          'unlike': 1,\n",
      "          'comical': 1,\n",
      "          'manages': 1,\n",
      "          'play': 1,\n",
      "          'realistically': 1,\n",
      "          'lot': 1,\n",
      "          'physical': 1,\n",
      "          'humor': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'perform': 1,\n",
      "          'job': 1,\n",
      "          'njenna': 1,\n",
      "          'mecilli': 1,\n",
      "          'scientist': 1,\n",
      "          'wants': 1,\n",
      "          'appealing': 1,\n",
      "          'kid': 1,\n",
      "          'talking': 1,\n",
      "          'hell': 1,\n",
      "          'one': 1,\n",
      "          'stories': 1,\n",
      "          'extreme': 1,\n",
      "          'suspension': 1,\n",
      "          'might': 1,\n",
      "          'place': 1,\n",
      "          'alternate': 1,\n",
      "          'universe': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'ridiculousness': 1,\n",
      "          'nall': 1,\n",
      "          'cliches': 1,\n",
      "          'irritating': 1,\n",
      "          'plot': 1,\n",
      "          'devices': 1,\n",
      "          'overcome': 1,\n",
      "          'crew': 1,\n",
      "          'plagued': 1,\n",
      "          'stereotypes': 1,\n",
      "          'meanspirited': 1,\n",
      "          'characters': 1,\n",
      "          'watched': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'manor': 1,\n",
      "          'covered': 1,\n",
      "          'ntake': 1,\n",
      "          'instance': 1,\n",
      "          'gets': 1,\n",
      "          'drunk': 1,\n",
      "          'tape': 1,\n",
      "          'sex': 1,\n",
      "          'decked': 1,\n",
      "          'getup': 1,\n",
      "          'complete': 1,\n",
      "          'paint': 1,\n",
      "          'darken': 1,\n",
      "          'skin': 1,\n",
      "          'nkrippendorf': 1,\n",
      "          'needs': 1,\n",
      "          'footage': 1,\n",
      "          'mating': 1,\n",
      "          'rituals': 1,\n",
      "          'nnow': 1,\n",
      "          'coming': 1,\n",
      "          'mile': 1,\n",
      "          'said': 1,\n",
      "          'tasteless': 1,\n",
      "          'ntheres': 1,\n",
      "          'way': 1,\n",
      "          'theyll': 1,\n",
      "          'oh': 1,\n",
      "          'ngod': 1,\n",
      "          'nits': 1,\n",
      "          'almost': 1,\n",
      "          'appalled': 1,\n",
      "          'bother': 1,\n",
      "          'found': 1,\n",
      "          'deplorable': 1,\n",
      "          'forced': 1,\n",
      "          'apologizes': 1,\n",
      "          'without': 1,\n",
      "          'slightest': 1,\n",
      "          'hint': 1,\n",
      "          'conviction': 1,\n",
      "          'voice': 1,\n",
      "          'nthe': 1,\n",
      "          'filled': 1,\n",
      "          'types': 1,\n",
      "          'portrays': 1,\n",
      "          'take': 1,\n",
      "          'professional': 1,\n",
      "          'create': 1,\n",
      "          'videos': 1,\n",
      "          'convincing': 1,\n",
      "          'enough': 1,\n",
      "          'fool': 1,\n",
      "          'entire': 1,\n",
      "          'scientists': 1,\n",
      "          'yet': 1,\n",
      "          'afternoon': 1,\n",
      "          'watching': 1,\n",
      "          'stumble': 1,\n",
      "          'completely': 1,\n",
      "          'unprepared': 1,\n",
      "          'speech': 1,\n",
      "          'think': 1,\n",
      "          'onscreen': 1,\n",
      "          'making': 1,\n",
      "          'everything': 1,\n",
      "          'goes': 1,\n",
      "          'nif': 1,\n",
      "          'immensely': 1,\n",
      "          'nmoving': 1,\n",
      "          'right': 1,\n",
      "          'along': 1,\n",
      "          'every': 1,\n",
      "          'stereotype': 1,\n",
      "          'culture': 1,\n",
      "          'ever': 1,\n",
      "          'learned': 1,\n",
      "          'regarding': 1,\n",
      "          'african': 1,\n",
      "          'tribes': 1,\n",
      "          'nsure': 1,\n",
      "          'dressing': 1,\n",
      "          'chief': 1,\n",
      "          'allows': 1,\n",
      "          'heart': 1,\n",
      "          'deeply': 1,\n",
      "          'thoughts': 1,\n",
      "          'provokes': 1,\n",
      "          'watch': 1,\n",
      "          'nhis': 1,\n",
      "          'character': 1,\n",
      "          'subject': 1,\n",
      "          'liar': 1,\n",
      "          'show': 1,\n",
      "          'penance': 1,\n",
      "          'interesting': 1,\n",
      "          'formula': 1,\n",
      "          'defied': 1,\n",
      "          'case': 1,\n",
      "          'purposes': 1,\n",
      "          'taste': 1,\n",
      "          'expected': 1,\n",
      "          'something': 1,\n",
      "          'sets': 1,\n",
      "          'terrible': 1,\n",
      "          'example': 1,\n",
      "          'colleagues': 1,\n",
      "          'writer': 1,\n",
      "          'charlie': 1,\n",
      "          'peters': 1,\n",
      "          'include': 1,\n",
      "          'aside': 1,\n",
      "          'eldest': 1,\n",
      "          'daughter': 1,\n",
      "          'frequently': 1,\n",
      "          'wrong': 1,\n",
      "          'thing': 1,\n",
      "          'continually': 1,\n",
      "          'shrugs': 1,\n",
      "          'warnings': 1,\n",
      "          'important': 1,\n",
      "          'contrived': 1,\n",
      "          'insulting': 1,\n",
      "          'add': 1,\n",
      "          'picture': 1,\n",
      "          'anything': 1,\n",
      "          'boring': 1,\n",
      "          'youre': 1,\n",
      "          'serious': 1,\n",
      "          'probably': 1,\n",
      "          'enjoy': 1,\n",
      "          'however': 1,\n",
      "          'cant': 1,\n",
      "          'past': 1,\n",
      "          'elements': 1,\n",
      "          'nkrippendorfs': 1,\n",
      "          'marketed': 1,\n",
      "          'comedy': 1,\n",
      "          'teaches': 1,\n",
      "          'society': 1,\n",
      "          'faulty': 1,\n",
      "          'lessons': 1,\n",
      "          'shouldnt': 1,\n",
      "          'learning': 1,\n",
      "          'nwith': 1,\n",
      "          'little': 1,\n",
      "          'insight': 1,\n",
      "          'movie': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mars': 7,\n",
      "          'film': 6,\n",
      "          'nthe': 6,\n",
      "          'mcconnell': 4,\n",
      "          'mission': 3,\n",
      "          'nthere': 3,\n",
      "          'astronauts': 3,\n",
      "          'movie': 3,\n",
      "          'crew': 3,\n",
      "          'ni': 3,\n",
      "          'explain': 3,\n",
      "          'visuals': 2,\n",
      "          'depalma': 2,\n",
      "          'close': 2,\n",
      "          'kind': 2,\n",
      "          'space': 2,\n",
      "          'components': 2,\n",
      "          'right': 2,\n",
      "          'even': 2,\n",
      "          'nmission': 2,\n",
      "          'first': 2,\n",
      "          'characters': 2,\n",
      "          'wife': 2,\n",
      "          'nits': 2,\n",
      "          'rest': 2,\n",
      "          'time': 2,\n",
      "          'personality': 2,\n",
      "          'earth': 2,\n",
      "          'team': 2,\n",
      "          'fisher': 2,\n",
      "          'crews': 2,\n",
      "          'solving': 2,\n",
      "          'come': 2,\n",
      "          'serve': 2,\n",
      "          'films': 2,\n",
      "          'marketing': 1,\n",
      "          'windup': 1,\n",
      "          'striking': 1,\n",
      "          'promise': 1,\n",
      "          'star': 1,\n",
      "          'caliber': 1,\n",
      "          'actors': 1,\n",
      "          'ends': 1,\n",
      "          'throwing': 1,\n",
      "          'whiffleball': 1,\n",
      "          'nfiercely': 1,\n",
      "          'unoriginal': 1,\n",
      "          'director': 1,\n",
      "          'cobbles': 1,\n",
      "          'together': 1,\n",
      "          'borrowing': 1,\n",
      "          'heavily': 1,\n",
      "          'gone': 1,\n",
      "          'aliens': 1,\n",
      "          'similar': 1,\n",
      "          'encounters': 1,\n",
      "          'third': 1,\n",
      "          'stranded': 1,\n",
      "          'astronaut': 1,\n",
      "          'theme': 1,\n",
      "          'reminiscent': 1,\n",
      "          'robinson': 1,\n",
      "          'crusoe': 1,\n",
      "          'encounter': 1,\n",
      "          'flight': 1,\n",
      "          'difficulties': 1,\n",
      "          'smack': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'ninterior': 1,\n",
      "          'spacecraft': 1,\n",
      "          'redolent': 1,\n",
      "          '2001': 1,\n",
      "          'odyssey': 1,\n",
      "          'ninstead': 1,\n",
      "          'using': 1,\n",
      "          'launching': 1,\n",
      "          'pad': 1,\n",
      "          'create': 1,\n",
      "          'de': 1,\n",
      "          'palma': 1,\n",
      "          'stops': 1,\n",
      "          'refusing': 1,\n",
      "          'infuse': 1,\n",
      "          'anything': 1,\n",
      "          'remotely': 1,\n",
      "          'resembling': 1,\n",
      "          'cleverness': 1,\n",
      "          'heart': 1,\n",
      "          'takes': 1,\n",
      "          'wobbly': 1,\n",
      "          'steps': 1,\n",
      "          'prelaunch': 1,\n",
      "          'barbeque': 1,\n",
      "          'perfunctory': 1,\n",
      "          'character': 1,\n",
      "          'introductions': 1,\n",
      "          'done': 1,\n",
      "          'nduring': 1,\n",
      "          'surface': 1,\n",
      "          'scans': 1,\n",
      "          'learn': 1,\n",
      "          'jim': 1,\n",
      "          'sinise': 1,\n",
      "          'lost': 1,\n",
      "          'plot': 1,\n",
      "          'point': 1,\n",
      "          'revisted': 1,\n",
      "          'throughout': 1,\n",
      "          'jackhammer': 1,\n",
      "          'subtlety': 1,\n",
      "          'exhibit': 1,\n",
      "          'bland': 1,\n",
      "          'affability': 1,\n",
      "          'contentiousness': 1,\n",
      "          'friction': 1,\n",
      "          'add': 1,\n",
      "          'dramatic': 1,\n",
      "          'tension': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'confined': 1,\n",
      "          'quarters': 1,\n",
      "          'extended': 1,\n",
      "          'length': 1,\n",
      "          'nmaybe': 1,\n",
      "          'going': 1,\n",
      "          'comraderie': 1,\n",
      "          'stuff': 1,\n",
      "          'embers': 1,\n",
      "          'warm': 1,\n",
      "          'us': 1,\n",
      "          'technical': 1,\n",
      "          'aspects': 1,\n",
      "          'year': 1,\n",
      "          '2020': 1,\n",
      "          'nasas': 1,\n",
      "          'manned': 1,\n",
      "          'excursion': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'na': 1,\n",
      "          'led': 1,\n",
      "          'luke': 1,\n",
      "          'graham': 1,\n",
      "          'cheadle': 1,\n",
      "          'arrives': 1,\n",
      "          'quickly': 1,\n",
      "          'discovers': 1,\n",
      "          'anomaly': 1,\n",
      "          'investigate': 1,\n",
      "          'tragic': 1,\n",
      "          'results': 1,\n",
      "          'ngraham': 1,\n",
      "          'able': 1,\n",
      "          'transmit': 1,\n",
      "          'garbled': 1,\n",
      "          'distress': 1,\n",
      "          'call': 1,\n",
      "          'back': 1,\n",
      "          'nin': 1,\n",
      "          'response': 1,\n",
      "          'sends': 1,\n",
      "          'rescue': 1,\n",
      "          'comprised': 1,\n",
      "          'woody': 1,\n",
      "          'blake': 1,\n",
      "          'robbins': 1,\n",
      "          'terri': 1,\n",
      "          'nielsen': 1,\n",
      "          'phil': 1,\n",
      "          'ohlmyer': 1,\n",
      "          'oconnell': 1,\n",
      "          'nobstacles': 1,\n",
      "          'put': 1,\n",
      "          'way': 1,\n",
      "          'matterof': 1,\n",
      "          'factly': 1,\n",
      "          'go': 1,\n",
      "          'say': 1,\n",
      "          'goes': 1,\n",
      "          'ntime': 1,\n",
      "          'presented': 1,\n",
      "          'wunderkind': 1,\n",
      "          'wouldnt': 1,\n",
      "          'bad': 1,\n",
      "          'didnt': 1,\n",
      "          'across': 1,\n",
      "          'aggressivelly': 1,\n",
      "          'unremarkable': 1,\n",
      "          'n': 1,\n",
      "          'mention': 1,\n",
      "          'made': 1,\n",
      "          'misogynistic': 1,\n",
      "          'handling': 1,\n",
      "          'situation': 1,\n",
      "          'entire': 1,\n",
      "          'life': 1,\n",
      "          'mortal': 1,\n",
      "          'danger': 1,\n",
      "          'non': 1,\n",
      "          'professionals': 1,\n",
      "          'portrayed': 1,\n",
      "          'emotion': 1,\n",
      "          'directed': 1,\n",
      "          'weak': 1,\n",
      "          'link': 1,\n",
      "          'nwomen': 1,\n",
      "          'purpose': 1,\n",
      "          'reflection': 1,\n",
      "          'male': 1,\n",
      "          'trait': 1,\n",
      "          'nby': 1,\n",
      "          'land': 1,\n",
      "          'try': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          'occurred': 1,\n",
      "          'starts': 1,\n",
      "          'laying': 1,\n",
      "          'cliches': 1,\n",
      "          'stilted': 1,\n",
      "          'dialogue': 1,\n",
      "          'heavy': 1,\n",
      "          'brush': 1,\n",
      "          'adage': 1,\n",
      "          'show': 1,\n",
      "          'dont': 1,\n",
      "          'tell': 1,\n",
      "          'nrepeatedly': 1,\n",
      "          'ncharacters': 1,\n",
      "          'obsessively': 1,\n",
      "          'obvious': 1,\n",
      "          'actions': 1,\n",
      "          'fellow': 1,\n",
      "          'facts': 1,\n",
      "          'fundamental': 1,\n",
      "          'knowledge': 1,\n",
      "          'conclusion': 1,\n",
      "          'momumentally': 1,\n",
      "          'derivative': 1,\n",
      "          'anticlimatic': 1,\n",
      "          'unsatisying': 1,\n",
      "          'nas': 1,\n",
      "          'walked': 1,\n",
      "          'wondered': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'might': 1,\n",
      "          'best': 1,\n",
      "          'could': 1,\n",
      "          'preteen': 1,\n",
      "          'age': 1,\n",
      "          'boys': 1,\n",
      "          'media': 1,\n",
      "          'saturated': 1,\n",
      "          'era': 1,\n",
      "          'would': 1,\n",
      "          'old': 1,\n",
      "          'hat': 1,\n",
      "          'think': 1,\n",
      "          'attracted': 1,\n",
      "          'talent': 1,\n",
      "          'lure': 1,\n",
      "          'making': 1,\n",
      "          'good': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'bmovie': 1,\n",
      "          'key': 1,\n",
      "          'venture': 1,\n",
      "          'certain': 1,\n",
      "          'depth': 1,\n",
      "          'sincerity': 1,\n",
      "          'towards': 1,\n",
      "          'material': 1,\n",
      "          'felt': 1,\n",
      "          'earnestness': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 9,\n",
      "          'movies': 7,\n",
      "          'guy': 7,\n",
      "          'time': 6,\n",
      "          'like': 6,\n",
      "          'hero': 6,\n",
      "          'good': 4,\n",
      "          'one': 4,\n",
      "          'movie': 4,\n",
      "          'look': 4,\n",
      "          'shotgun': 4,\n",
      "          'guys': 4,\n",
      "          'ask': 3,\n",
      "          'door': 3,\n",
      "          'really': 3,\n",
      "          'could': 3,\n",
      "          'better': 3,\n",
      "          'nthis': 3,\n",
      "          'nfor': 3,\n",
      "          'make': 3,\n",
      "          'get': 3,\n",
      "          'go': 3,\n",
      "          'nhe': 3,\n",
      "          'back': 3,\n",
      "          'come': 3,\n",
      "          'brain': 2,\n",
      "          'believe': 2,\n",
      "          'god': 2,\n",
      "          'fully': 2,\n",
      "          'steps': 2,\n",
      "          'several': 2,\n",
      "          'two': 2,\n",
      "          'nsome': 2,\n",
      "          'see': 2,\n",
      "          'thought': 2,\n",
      "          'director': 2,\n",
      "          'satisfied': 2,\n",
      "          'need': 2,\n",
      "          'every': 2,\n",
      "          'example': 2,\n",
      "          'guns': 2,\n",
      "          'hear': 2,\n",
      "          'ntwo': 2,\n",
      "          'nand': 2,\n",
      "          'effort': 2,\n",
      "          'take': 2,\n",
      "          'something': 2,\n",
      "          'timothy': 2,\n",
      "          'hutton': 2,\n",
      "          'suffer': 2,\n",
      "          'stupid': 2,\n",
      "          'syndrome': 2,\n",
      "          'little': 2,\n",
      "          'heroes': 2,\n",
      "          'duchovny': 2,\n",
      "          'stoned': 2,\n",
      "          'common': 2,\n",
      "          'sense': 2,\n",
      "          'seems': 2,\n",
      "          'actually': 2,\n",
      "          'trigger': 2,\n",
      "          'never': 2,\n",
      "          'life': 2,\n",
      "          'would': 2,\n",
      "          'hell': 2,\n",
      "          'fbi': 2,\n",
      "          'shot': 2,\n",
      "          'along': 2,\n",
      "          'might': 2,\n",
      "          'much': 2,\n",
      "          'nour': 2,\n",
      "          'room': 2,\n",
      "          'people': 2,\n",
      "          'getting': 2,\n",
      "          'sit': 2,\n",
      "          'gun': 2,\n",
      "          'clean': 2,\n",
      "          'leave': 1,\n",
      "          'impossible': 1,\n",
      "          'nplaying': 1,\n",
      "          'asks': 1,\n",
      "          'simple': 1,\n",
      "          'eensy': 1,\n",
      "          'teensy': 1,\n",
      "          'thing': 1,\n",
      "          'entertain': 1,\n",
      "          'accomplished': 1,\n",
      "          'four': 1,\n",
      "          'easy': 1,\n",
      "          'follow': 1,\n",
      "          'crack': 1,\n",
      "          'open': 1,\n",
      "          'skull': 1,\n",
      "          'scoop': 1,\n",
      "          'squish': 1,\n",
      "          'foot': 1,\n",
      "          'times': 1,\n",
      "          'reverse': 1,\n",
      "          'ncongratulations': 1,\n",
      "          'necessary': 1,\n",
      "          'requirements': 1,\n",
      "          'enjoy': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'nothing': 1,\n",
      "          'fail': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'manage': 1,\n",
      "          'producers': 1,\n",
      "          'others': 1,\n",
      "          'simply': 1,\n",
      "          'ideas': 1,\n",
      "          'badly': 1,\n",
      "          'executed': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'playing': 1,\n",
      "          'enters': 1,\n",
      "          'esteemed': 1,\n",
      "          'category': 1,\n",
      "          'seem': 1,\n",
      "          'grown': 1,\n",
      "          'union': 1,\n",
      "          'drunk': 1,\n",
      "          'actors': 1,\n",
      "          'knowledge': 1,\n",
      "          'horrible': 1,\n",
      "          'flick': 1,\n",
      "          'lasting': 1,\n",
      "          'impact': 1,\n",
      "          'careers': 1,\n",
      "          'bunch': 1,\n",
      "          'ripoffs': 1,\n",
      "          'homages': 1,\n",
      "          'call': 1,\n",
      "          'end': 1,\n",
      "          'looking': 1,\n",
      "          'unflushed': 1,\n",
      "          'toilet': 1,\n",
      "          'nharsh': 1,\n",
      "          'maybe': 1,\n",
      "          'njustified': 1,\n",
      "          'nhell': 1,\n",
      "          'yes': 1,\n",
      "          'ripping': 1,\n",
      "          'feels': 1,\n",
      "          'remind': 1,\n",
      "          'us': 1,\n",
      "          'fact': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'gunman': 1,\n",
      "          'bursts': 1,\n",
      "          'garden': 1,\n",
      "          'hands': 1,\n",
      "          'firing': 1,\n",
      "          'away': 1,\n",
      "          'moderately': 1,\n",
      "          'kool': 1,\n",
      "          'camera': 1,\n",
      "          'lingers': 1,\n",
      "          'actor': 1,\n",
      "          'long': 1,\n",
      "          'almost': 1,\n",
      "          'yelling': 1,\n",
      "          'oooh': 1,\n",
      "          'njohn': 1,\n",
      "          'woo': 1,\n",
      "          'blazing': 1,\n",
      "          'nslooooow': 1,\n",
      "          'motion': 1,\n",
      "          'wasnt': 1,\n",
      "          'enough': 1,\n",
      "          'also': 1,\n",
      "          'script': 1,\n",
      "          'grunting': 1,\n",
      "          'must': 1,\n",
      "          'try': 1,\n",
      "          'single': 1,\n",
      "          'line': 1,\n",
      "          'dialogue': 1,\n",
      "          'sound': 1,\n",
      "          'deep': 1,\n",
      "          'meaningful': 1,\n",
      "          'tarantino': 1,\n",
      "          'npoor': 1,\n",
      "          'gets': 1,\n",
      "          'deliver': 1,\n",
      "          'corny': 1,\n",
      "          'lines': 1,\n",
      "          'admire': 1,\n",
      "          'puts': 1,\n",
      "          'deserves': 1,\n",
      "          'nunlike': 1,\n",
      "          'things': 1,\n",
      "          'different': 1,\n",
      "          'nexample': 1,\n",
      "          'manages': 1,\n",
      "          'distract': 1,\n",
      "          'making': 1,\n",
      "          'bathroom': 1,\n",
      "          'bandages': 1,\n",
      "          'nnow': 1,\n",
      "          'man': 1,\n",
      "          'leaves': 1,\n",
      "          'next': 1,\n",
      "          'n': 1,\n",
      "          'term': 1,\n",
      "          'used': 1,\n",
      "          'loosely': 1,\n",
      "          'possible': 1,\n",
      "          'nsurvival': 1,\n",
      "          'instincts': 1,\n",
      "          'dose': 1,\n",
      "          'suggest': 1,\n",
      "          'grabbing': 1,\n",
      "          'contemplating': 1,\n",
      "          'thirty': 1,\n",
      "          'seconds': 1,\n",
      "          'neven': 1,\n",
      "          'grab': 1,\n",
      "          'unsure': 1,\n",
      "          'hold': 1,\n",
      "          'going': 1,\n",
      "          'far': 1,\n",
      "          'wonder': 1,\n",
      "          'place': 1,\n",
      "          'finger': 1,\n",
      "          'near': 1,\n",
      "          'nmind': 1,\n",
      "          'ive': 1,\n",
      "          'fired': 1,\n",
      "          'missing': 1,\n",
      "          'vital': 1,\n",
      "          'organs': 1,\n",
      "          'argue': 1,\n",
      "          'killer': 1,\n",
      "          'instinct': 1,\n",
      "          'front': 1,\n",
      "          'looks': 1,\n",
      "          'ballistic': 1,\n",
      "          'second': 1,\n",
      "          'nsolution': 1,\n",
      "          'nboom': 1,\n",
      "          'nill': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'later': 1,\n",
      "          'thank': 1,\n",
      "          'nanother': 1,\n",
      "          'prime': 1,\n",
      "          'idiot': 1,\n",
      "          'boy': 1,\n",
      "          'needs': 1,\n",
      "          'reach': 1,\n",
      "          'girl': 1,\n",
      "          'happens': 1,\n",
      "          'knows': 1,\n",
      "          'head': 1,\n",
      "          'tenth': 1,\n",
      "          'floor': 1,\n",
      "          'building': 1,\n",
      "          'running': 1,\n",
      "          'full': 1,\n",
      "          'itchy': 1,\n",
      "          'fingers': 1,\n",
      "          'still': 1,\n",
      "          'bring': 1,\n",
      "          'say': 1,\n",
      "          'nno': 1,\n",
      "          'thanks': 1,\n",
      "          'ill': 1,\n",
      "          'ditch': 1,\n",
      "          'car': 1,\n",
      "          'real': 1,\n",
      "          'kicker': 1,\n",
      "          'reaches': 1,\n",
      "          'start': 1,\n",
      "          'shooting': 1,\n",
      "          'nerve': 1,\n",
      "          'surprised': 1,\n",
      "          'nwhile': 1,\n",
      "          'subject': 1,\n",
      "          'hades': 1,\n",
      "          'sitting': 1,\n",
      "          'backs': 1,\n",
      "          'nive': 1,\n",
      "          'got': 1,\n",
      "          'formal': 1,\n",
      "          'training': 1,\n",
      "          'even': 1,\n",
      "          'know': 1,\n",
      "          'nask': 1,\n",
      "          'mr': 1,\n",
      "          'wild': 1,\n",
      "          'bill': 1,\n",
      "          'first': 1,\n",
      "          'wall': 1,\n",
      "          'cost': 1,\n",
      "          'major': 1,\n",
      "          'problem': 1,\n",
      "          'mook': 1,\n",
      "          'hundred': 1,\n",
      "          'ways': 1,\n",
      "          'nis': 1,\n",
      "          'hollywood': 1,\n",
      "          'put': 1,\n",
      "          'characters': 1,\n",
      "          'instance': 1,\n",
      "          'hide': 1,\n",
      "          'duchovnys': 1,\n",
      "          'summer': 1,\n",
      "          'home': 1,\n",
      "          'knocking': 1,\n",
      "          'moment': 1,\n",
      "          'nok': 1,\n",
      "          'side': 1,\n",
      "          'nbut': 1,\n",
      "          'drug': 1,\n",
      "          'addict': 1,\n",
      "          'guess': 1,\n",
      "          'chooses': 1,\n",
      "          'dt': 1,\n",
      "          'noh': 1,\n",
      "          'sure': 1,\n",
      "          'impressive': 1,\n",
      "          'calling': 1,\n",
      "          'ngoing': 1,\n",
      "          'honorable': 1,\n",
      "          'waited': 1,\n",
      "          'conscious': 1,\n",
      "          'able': 1,\n",
      "          'fire': 1,\n",
      "          'enjoyable': 1,\n",
      "          'performance': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'size': 1,\n",
      "          'godzilla': 1,\n",
      "          'intelligence': 1,\n",
      "          'insulted': 1,\n",
      "          'oh': 1,\n",
      "          'nmoments': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'character': 6,\n",
      "          'code': 4,\n",
      "          'nthe': 4,\n",
      "          'documentary': 4,\n",
      "          'world': 3,\n",
      "          'plays': 3,\n",
      "          'ironside': 3,\n",
      "          'despite': 3,\n",
      "          'michael': 3,\n",
      "          'see': 3,\n",
      "          'one': 3,\n",
      "          'crew': 3,\n",
      "          'actually': 3,\n",
      "          'interviewed': 3,\n",
      "          'bible': 2,\n",
      "          'doomsday': 2,\n",
      "          'ever': 2,\n",
      "          'nmichael': 2,\n",
      "          'earth': 2,\n",
      "          'great': 2,\n",
      "          'silly': 2,\n",
      "          'man': 2,\n",
      "          'yorks': 2,\n",
      "          'ironsides': 2,\n",
      "          'filmmakers': 2,\n",
      "          'arent': 2,\n",
      "          'even': 2,\n",
      "          'nit': 2,\n",
      "          'sense': 2,\n",
      "          'made': 2,\n",
      "          'movie': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          '1': 2,\n",
      "          'cast': 2,\n",
      "          'job': 2,\n",
      "          'lindsey': 2,\n",
      "          'preposterous': 1,\n",
      "          'religious': 1,\n",
      "          'action': 1,\n",
      "          'produced': 1,\n",
      "          'trinity': 1,\n",
      "          'broadcasting': 1,\n",
      "          'network': 1,\n",
      "          'hidden': 1,\n",
      "          'within': 1,\n",
      "          'text': 1,\n",
      "          'deciphered': 1,\n",
      "          'lead': 1,\n",
      "          'end': 1,\n",
      "          'nice': 1,\n",
      "          'authors': 1,\n",
      "          'put': 1,\n",
      "          'read': 1,\n",
      "          'book': 1,\n",
      "          'eh': 1,\n",
      "          'york': 1,\n",
      "          'millionaire': 1,\n",
      "          'diplomat': 1,\n",
      "          'breaks': 1,\n",
      "          'sets': 1,\n",
      "          'become': 1,\n",
      "          'god': 1,\n",
      "          'fulfill': 1,\n",
      "          'prophecies': 1,\n",
      "          'casper': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'terribly': 1,\n",
      "          'miscast': 1,\n",
      "          'giving': 1,\n",
      "          'awful': 1,\n",
      "          'performance': 1,\n",
      "          'result': 1,\n",
      "          'atheist': 1,\n",
      "          'motivational': 1,\n",
      "          'speaker': 1,\n",
      "          'must': 1,\n",
      "          'stop': 1,\n",
      "          'always': 1,\n",
      "          'surrounding': 1,\n",
      "          'fallen': 1,\n",
      "          'priest': 1,\n",
      "          'right': 1,\n",
      "          'hand': 1,\n",
      "          'nheres': 1,\n",
      "          'subtle': 1,\n",
      "          'development': 1,\n",
      "          'may': 1,\n",
      "          'missed': 1,\n",
      "          'pertaining': 1,\n",
      "          'nnow': 1,\n",
      "          'fact': 1,\n",
      "          'murder': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'audience': 1,\n",
      "          'understand': 1,\n",
      "          'evil': 1,\n",
      "          'nhow': 1,\n",
      "          'fix': 1,\n",
      "          'nmake': 1,\n",
      "          'specific': 1,\n",
      "          'efforts': 1,\n",
      "          'show': 1,\n",
      "          'smokes': 1,\n",
      "          'nthere': 1,\n",
      "          'lots': 1,\n",
      "          'ominous': 1,\n",
      "          'shots': 1,\n",
      "          'smoking': 1,\n",
      "          'noooooo': 1,\n",
      "          'scary': 1,\n",
      "          'nbut': 1,\n",
      "          'wasnt': 1,\n",
      "          'enough': 1,\n",
      "          'apparently': 1,\n",
      "          'later': 1,\n",
      "          'infer': 1,\n",
      "          'gay': 1,\n",
      "          'comes': 1,\n",
      "          'nowhere': 1,\n",
      "          'makes': 1,\n",
      "          'nmy': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'story': 1,\n",
      "          'could': 1,\n",
      "          'pulled': 1,\n",
      "          'nanything': 1,\n",
      "          'believable': 1,\n",
      "          'executed': 1,\n",
      "          'correctly': 1,\n",
      "          'events': 1,\n",
      "          'shown': 1,\n",
      "          'urgency': 1,\n",
      "          'importance': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'point': 1,\n",
      "          'declared': 1,\n",
      "          'chancellor': 1,\n",
      "          'something': 1,\n",
      "          'brief': 1,\n",
      "          'cheesy': 1,\n",
      "          'news': 1,\n",
      "          'report': 1,\n",
      "          'keeps': 1,\n",
      "          'telling': 1,\n",
      "          'us': 1,\n",
      "          'apocalypse': 1,\n",
      "          'coming': 1,\n",
      "          'never': 1,\n",
      "          'seems': 1,\n",
      "          'way': 1,\n",
      "          'ntheres': 1,\n",
      "          'reaction': 1,\n",
      "          'anything': 1,\n",
      "          'omega': 1,\n",
      "          'available': 1,\n",
      "          'dvd': 1,\n",
      "          'goodtimes': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'contains': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          'includes': 1,\n",
      "          'trailer': 1,\n",
      "          'making': 1,\n",
      "          'production': 1,\n",
      "          'notes': 1,\n",
      "          'information': 1,\n",
      "          'runs': 1,\n",
      "          '25': 1,\n",
      "          'minutes': 1,\n",
      "          'surprisingly': 1,\n",
      "          'good': 1,\n",
      "          'looks': 1,\n",
      "          'though': 1,\n",
      "          'broadcast': 1,\n",
      "          'tbn': 1,\n",
      "          'comprehensive': 1,\n",
      "          'interviewing': 1,\n",
      "          'practically': 1,\n",
      "          'everyone': 1,\n",
      "          'exception': 1,\n",
      "          'unfortunately': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'whenever': 1,\n",
      "          'members': 1,\n",
      "          'excellent': 1,\n",
      "          'explaining': 1,\n",
      "          'profession': 1,\n",
      "          'exactly': 1,\n",
      "          'set': 1,\n",
      "          'nmost': 1,\n",
      "          'documentaries': 1,\n",
      "          'tend': 1,\n",
      "          'overlook': 1,\n",
      "          'ndoomsday': 1,\n",
      "          'expert': 1,\n",
      "          'hal': 1,\n",
      "          'youll': 1,\n",
      "          'remember': 1,\n",
      "          '1970s': 1,\n",
      "          'called': 1,\n",
      "          'late': 1,\n",
      "          'planet': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'speculated': 1,\n",
      "          'jimmy': 1,\n",
      "          'carter': 1,\n",
      "          'might': 1,\n",
      "          'antichrist': 1,\n",
      "          'nhowever': 1,\n",
      "          'beginning': 1,\n",
      "          'producers': 1,\n",
      "          'managed': 1,\n",
      "          'get': 1,\n",
      "          'bad': 1,\n",
      "          'side': 1,\n",
      "          'nwhen': 1,\n",
      "          'nerve': 1,\n",
      "          'say': 1,\n",
      "          'raiders': 1,\n",
      "          'lost': 1,\n",
      "          'ark': 1,\n",
      "          'nwell': 1,\n",
      "          'like': 1,\n",
      "          'nno': 1,\n",
      "          'isnt': 1,\n",
      "          'nnot': 1,\n",
      "          'long': 1,\n",
      "          'shot': 1,\n",
      "          'npg13': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'studio': 7,\n",
      "          'eddie': 6,\n",
      "          'movie': 5,\n",
      "          'americas': 4,\n",
      "          'sweethearts': 4,\n",
      "          'cast': 4,\n",
      "          'billy': 4,\n",
      "          'crystal': 4,\n",
      "          'reporters': 4,\n",
      "          'gwen': 4,\n",
      "          'nthe': 4,\n",
      "          'premise': 3,\n",
      "          'screenplay': 3,\n",
      "          'work': 3,\n",
      "          'press': 3,\n",
      "          'junket': 3,\n",
      "          'journalists': 3,\n",
      "          'director': 3,\n",
      "          'lee': 3,\n",
      "          'publicist': 3,\n",
      "          'hotel': 3,\n",
      "          'writers': 3,\n",
      "          'minutes': 3,\n",
      "          'best': 3,\n",
      "          'publicity': 3,\n",
      "          'good': 3,\n",
      "          'isnt': 2,\n",
      "          'back': 2,\n",
      "          'writer': 2,\n",
      "          'shows': 2,\n",
      "          'comic': 2,\n",
      "          'relief': 2,\n",
      "          'two': 2,\n",
      "          'comedy': 2,\n",
      "          'must': 2,\n",
      "          'setting': 2,\n",
      "          'place': 2,\n",
      "          'front': 2,\n",
      "          'setup': 2,\n",
      "          'thus': 2,\n",
      "          'situation': 2,\n",
      "          'nby': 2,\n",
      "          'room': 2,\n",
      "          'outbursts': 2,\n",
      "          'amusing': 2,\n",
      "          'cusack': 2,\n",
      "          'zetajones': 2,\n",
      "          'play': 2,\n",
      "          'hank': 2,\n",
      "          'azaria': 2,\n",
      "          'spanish': 2,\n",
      "          'actor': 2,\n",
      "          'films': 2,\n",
      "          'six': 2,\n",
      "          'time': 2,\n",
      "          'gwens': 2,\n",
      "          'make': 2,\n",
      "          'matter': 2,\n",
      "          'christopher': 2,\n",
      "          'walken': 2,\n",
      "          'moved': 2,\n",
      "          'screening': 2,\n",
      "          'nlee': 2,\n",
      "          'convincing': 2,\n",
      "          'kiki': 2,\n",
      "          'roberts': 2,\n",
      "          'doesnt': 2,\n",
      "          'fact': 2,\n",
      "          'could': 2,\n",
      "          'junkets': 2,\n",
      "          'around': 2,\n",
      "          'plush': 2,\n",
      "          'five': 2,\n",
      "          'questions': 2,\n",
      "          'one': 2,\n",
      "          'tv': 2,\n",
      "          'even': 2,\n",
      "          'roughly': 2,\n",
      "          'tossing': 2,\n",
      "          'stars': 2,\n",
      "          'safe': 2,\n",
      "          'actors': 2,\n",
      "          'behavior': 2,\n",
      "          'without': 2,\n",
      "          'makes': 2,\n",
      "          'much': 2,\n",
      "          'broad': 2,\n",
      "          'would': 2,\n",
      "          'little': 2,\n",
      "          'nas': 2,\n",
      "          'intriguing': 1,\n",
      "          'great': 1,\n",
      "          'nearly': 1,\n",
      "          'edgy': 1,\n",
      "          'funny': 1,\n",
      "          'nalmost': 1,\n",
      "          'problems': 1,\n",
      "          'project': 1,\n",
      "          'traced': 1,\n",
      "          'coscript': 1,\n",
      "          'lack': 1,\n",
      "          'discipline': 1,\n",
      "          'typically': 1,\n",
      "          'displays': 1,\n",
      "          'cohosting': 1,\n",
      "          'charity': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'whoopi': 1,\n",
      "          'goldberg': 1,\n",
      "          'paragons': 1,\n",
      "          'selfindulgence': 1,\n",
      "          'ncrystal': 1,\n",
      "          'ignores': 1,\n",
      "          'simple': 1,\n",
      "          'crucial': 1,\n",
      "          'rule': 1,\n",
      "          'screwball': 1,\n",
      "          'characters': 1,\n",
      "          'placed': 1,\n",
      "          'rigid': 1,\n",
      "          'social': 1,\n",
      "          'context': 1,\n",
      "          'unorthodox': 1,\n",
      "          'antics': 1,\n",
      "          'humorous': 1,\n",
      "          'n': 1,\n",
      "          'takes': 1,\n",
      "          'decorum': 1,\n",
      "          'maintained': 1,\n",
      "          'nits': 1,\n",
      "          'promising': 1,\n",
      "          'quickly': 1,\n",
      "          'blows': 1,\n",
      "          'rules': 1,\n",
      "          'dissipating': 1,\n",
      "          'tension': 1,\n",
      "          'end': 1,\n",
      "          'lead': 1,\n",
      "          'performers': 1,\n",
      "          'participate': 1,\n",
      "          'huge': 1,\n",
      "          'fight': 1,\n",
      "          'full': 1,\n",
      "          'looking': 1,\n",
      "          'mildly': 1,\n",
      "          'structure': 1,\n",
      "          'destroyed': 1,\n",
      "          'njohn': 1,\n",
      "          'catherine': 1,\n",
      "          'thomas': 1,\n",
      "          'harrison': 1,\n",
      "          'beloved': 1,\n",
      "          'acting': 1,\n",
      "          'duo': 1,\n",
      "          'whose': 1,\n",
      "          'marriage': 1,\n",
      "          'hit': 1,\n",
      "          'skids': 1,\n",
      "          'began': 1,\n",
      "          'seeing': 1,\n",
      "          'hector': 1,\n",
      "          'ego': 1,\n",
      "          'almost': 1,\n",
      "          'pronounced': 1,\n",
      "          'lisp': 1,\n",
      "          'nof': 1,\n",
      "          'last': 1,\n",
      "          'nine': 1,\n",
      "          'made': 1,\n",
      "          'together': 1,\n",
      "          'crossed': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'mark': 1,\n",
      "          'prospects': 1,\n",
      "          'final': 1,\n",
      "          'effort': 1,\n",
      "          'space': 1,\n",
      "          'opus': 1,\n",
      "          'titled': 1,\n",
      "          'far': 1,\n",
      "          'rosy': 1,\n",
      "          'nwhile': 1,\n",
      "          'spent': 1,\n",
      "          'many': 1,\n",
      "          'months': 1,\n",
      "          'new': 1,\n",
      "          'age': 1,\n",
      "          'rest': 1,\n",
      "          'clinic': 1,\n",
      "          'fretting': 1,\n",
      "          'breakup': 1,\n",
      "          'solo': 1,\n",
      "          'tanked': 1,\n",
      "          'nto': 1,\n",
      "          'worse': 1,\n",
      "          'visionary': 1,\n",
      "          'purchased': 1,\n",
      "          'unabombers': 1,\n",
      "          'cabin': 1,\n",
      "          'backyard': 1,\n",
      "          'withholding': 1,\n",
      "          'insisting': 1,\n",
      "          'first': 1,\n",
      "          'held': 1,\n",
      "          'ndesperate': 1,\n",
      "          'win': 1,\n",
      "          'elects': 1,\n",
      "          'hire': 1,\n",
      "          'recently': 1,\n",
      "          'fired': 1,\n",
      "          'salvage': 1,\n",
      "          'hopes': 1,\n",
      "          'turn': 1,\n",
      "          'lemons': 1,\n",
      "          'lemonade': 1,\n",
      "          'pretend': 1,\n",
      "          'road': 1,\n",
      "          'reconciliation': 1,\n",
      "          'nhe': 1,\n",
      "          'enlists': 1,\n",
      "          'help': 1,\n",
      "          'julia': 1,\n",
      "          'sister': 1,\n",
      "          'personal': 1,\n",
      "          'assistant': 1,\n",
      "          'whipping': 1,\n",
      "          'girl': 1,\n",
      "          'nwhat': 1,\n",
      "          'know': 1,\n",
      "          'love': 1,\n",
      "          'temper': 1,\n",
      "          'effectiveness': 1,\n",
      "          'npress': 1,\n",
      "          'control': 1,\n",
      "          'freaks': 1,\n",
      "          'nstudios': 1,\n",
      "          'fly': 1,\n",
      "          'world': 1,\n",
      "          'put': 1,\n",
      "          'food': 1,\n",
      "          'drink': 1,\n",
      "          'always': 1,\n",
      "          'hand': 1,\n",
      "          'ngenerally': 1,\n",
      "          'evening': 1,\n",
      "          'arrival': 1,\n",
      "          'bussed': 1,\n",
      "          'see': 1,\n",
      "          'featured': 1,\n",
      "          'ferreted': 1,\n",
      "          'straight': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'go': 1,\n",
      "          'suites': 1,\n",
      "          'assemble': 1,\n",
      "          'groups': 1,\n",
      "          'roundtable': 1,\n",
      "          'interviews': 1,\n",
      "          'nevery': 1,\n",
      "          '30': 1,\n",
      "          'producer': 1,\n",
      "          'brought': 1,\n",
      "          'hovering': 1,\n",
      "          'corner': 1,\n",
      "          'keep': 1,\n",
      "          'eye': 1,\n",
      "          'things': 1,\n",
      "          'atmosphere': 1,\n",
      "          'cordial': 1,\n",
      "          'oppression': 1,\n",
      "          'free': 1,\n",
      "          'ask': 1,\n",
      "          'want': 1,\n",
      "          'understand': 1,\n",
      "          'dislikes': 1,\n",
      "          'question': 1,\n",
      "          'may': 1,\n",
      "          'invited': 1,\n",
      "          'future': 1,\n",
      "          'nrepresentatives': 1,\n",
      "          'stations': 1,\n",
      "          'face': 1,\n",
      "          'restrictions': 1,\n",
      "          'nthey': 1,\n",
      "          'get': 1,\n",
      "          'interview': 1,\n",
      "          'member': 1,\n",
      "          'crew': 1,\n",
      "          'filming': 1,\n",
      "          'exchanges': 1,\n",
      "          'notorious': 1,\n",
      "          'softball': 1,\n",
      "          'suck': 1,\n",
      "          'studios': 1,\n",
      "          'stand': 1,\n",
      "          'ready': 1,\n",
      "          'erase': 1,\n",
      "          'tapes': 1,\n",
      "          'anything': 1,\n",
      "          'unpleasant': 1,\n",
      "          'occurs': 1,\n",
      "          'nplacing': 1,\n",
      "          'spoiled': 1,\n",
      "          'image': 1,\n",
      "          'everything': 1,\n",
      "          'inspired': 1,\n",
      "          'undermines': 1,\n",
      "          'conceit': 1,\n",
      "          'handsome': 1,\n",
      "          'highly': 1,\n",
      "          'confining': 1,\n",
      "          'four': 1,\n",
      "          'seasons': 1,\n",
      "          'resort': 1,\n",
      "          'near': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'nfor': 1,\n",
      "          'run': 1,\n",
      "          'sprawling': 1,\n",
      "          'grounds': 1,\n",
      "          'completely': 1,\n",
      "          'eyes': 1,\n",
      "          'nwhen': 1,\n",
      "          'deal': 1,\n",
      "          'imperative': 1,\n",
      "          'declawed': 1,\n",
      "          'ngwen': 1,\n",
      "          'insult': 1,\n",
      "          'cameras': 1,\n",
      "          'roll': 1,\n",
      "          'scream': 1,\n",
      "          'restaurant': 1,\n",
      "          'filled': 1,\n",
      "          'media': 1,\n",
      "          'everyone': 1,\n",
      "          'connected': 1,\n",
      "          'goes': 1,\n",
      "          'nuts': 1,\n",
      "          'repercussions': 1,\n",
      "          'certainly': 1,\n",
      "          'bothered': 1,\n",
      "          'infantile': 1,\n",
      "          'arrangements': 1,\n",
      "          'footage': 1,\n",
      "          'inappropriate': 1,\n",
      "          'delivered': 1,\n",
      "          'tabloids': 1,\n",
      "          'nis': 1,\n",
      "          'angry': 1,\n",
      "          'handling': 1,\n",
      "          'combative': 1,\n",
      "          'nhell': 1,\n",
      "          'feel': 1,\n",
      "          'genius': 1,\n",
      "          'garnering': 1,\n",
      "          'nall': 1,\n",
      "          'underscores': 1,\n",
      "          'cowriter': 1,\n",
      "          'peter': 1,\n",
      "          'tolan': 1,\n",
      "          'screwed': 1,\n",
      "          'based': 1,\n",
      "          'barelyincontrol': 1,\n",
      "          'people': 1,\n",
      "          'trying': 1,\n",
      "          'contain': 1,\n",
      "          'presence': 1,\n",
      "          'except': 1,\n",
      "          'nand': 1,\n",
      "          'implodes': 1,\n",
      "          'leaving': 1,\n",
      "          'smoke': 1,\n",
      "          'dust': 1,\n",
      "          'laughter': 1,\n",
      "          'nso': 1,\n",
      "          'njulia': 1,\n",
      "          'playing': 1,\n",
      "          'underdog': 1,\n",
      "          'utterly': 1,\n",
      "          'charming': 1,\n",
      "          'although': 1,\n",
      "          'lived': 1,\n",
      "          'flashbacks': 1,\n",
      "          'exist': 1,\n",
      "          'solely': 1,\n",
      "          'excuse': 1,\n",
      "          'show': 1,\n",
      "          'fat': 1,\n",
      "          'suit': 1,\n",
      "          'way': 1,\n",
      "          'ncatherine': 1,\n",
      "          'believable': 1,\n",
      "          'brat': 1,\n",
      "          'john': 1,\n",
      "          'fleshes': 1,\n",
      "          'obsessed': 1,\n",
      "          'character': 1,\n",
      "          'enough': 1,\n",
      "          'vaguely': 1,\n",
      "          'sympathetic': 1,\n",
      "          'casting': 1,\n",
      "          'allows': 1,\n",
      "          'thing': 1,\n",
      "          'stay': 1,\n",
      "          'sidelines': 1,\n",
      "          'action': 1,\n",
      "          'cornball': 1,\n",
      "          'jokes': 1,\n",
      "          'snarky': 1,\n",
      "          'remarks': 1,\n",
      "          'nin': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'wears': 1,\n",
      "          'welcome': 1,\n",
      "          'fast': 1,\n",
      "          'gestures': 1,\n",
      "          'accent': 1,\n",
      "          'speedy': 1,\n",
      "          'gonzales': 1,\n",
      "          'deemed': 1,\n",
      "          'nseth': 1,\n",
      "          'green': 1,\n",
      "          'toadie': 1,\n",
      "          'stanley': 1,\n",
      "          'tucci': 1,\n",
      "          'ruthless': 1,\n",
      "          'head': 1,\n",
      "          'plays': 1,\n",
      "          'eccentric': 1,\n",
      "          'suitable': 1,\n",
      "          'flair': 1,\n",
      "          'though': 1,\n",
      "          'ncome': 1,\n",
      "          'think': 1,\n",
      "          'operative': 1,\n",
      "          'phrase': 1,\n",
      "          'hollywood': 1,\n",
      "          'satire': 1,\n",
      "          'toothless': 1,\n",
      "          'romance': 1,\n",
      "          'minor': 1,\n",
      "          'pleasure': 1,\n",
      "          'nsuch': 1,\n",
      "          'waste': 1,\n",
      "          'efforts': 1,\n",
      "          'nhad': 1,\n",
      "          'taken': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'better': 1,\n",
      "          'title': 1,\n",
      "          'ado': 1,\n",
      "          'nothing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'claw': 6,\n",
      "          'nthe': 5,\n",
      "          'gadget': 4,\n",
      "          'dr': 4,\n",
      "          'cartoon': 3,\n",
      "          'action': 3,\n",
      "          'movie': 3,\n",
      "          'nas': 3,\n",
      "          'first': 3,\n",
      "          'nin': 3,\n",
      "          'everett': 3,\n",
      "          'one': 3,\n",
      "          'nhe': 3,\n",
      "          'nand': 3,\n",
      "          'disney': 2,\n",
      "          'turned': 2,\n",
      "          'live': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'people': 2,\n",
      "          'would': 2,\n",
      "          'adult': 2,\n",
      "          'wave': 2,\n",
      "          'animated': 2,\n",
      "          'show': 2,\n",
      "          'villain': 2,\n",
      "          'face': 2,\n",
      "          'simply': 2,\n",
      "          'watching': 2,\n",
      "          'cat': 2,\n",
      "          'many': 2,\n",
      "          'like': 2,\n",
      "          'far': 2,\n",
      "          'role': 2,\n",
      "          'wisecracking': 2,\n",
      "          'attempts': 2,\n",
      "          'lost': 2,\n",
      "          'doesnt': 2,\n",
      "          'take': 2,\n",
      "          'character': 2,\n",
      "          'nbroderick': 2,\n",
      "          'human': 2,\n",
      "          'scene': 2,\n",
      "          'crime': 2,\n",
      "          'work': 2,\n",
      "          'bad': 2,\n",
      "          'robo': 2,\n",
      "          'even': 2,\n",
      "          'additions': 2,\n",
      "          'zoot': 2,\n",
      "          'folks': 1,\n",
      "          'common': 1,\n",
      "          'decency': 1,\n",
      "          'nthey': 1,\n",
      "          'resurrected': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'expensive': 1,\n",
      "          'embarrassing': 1,\n",
      "          'writing': 1,\n",
      "          'kidfriendly': 1,\n",
      "          'slapstick': 1,\n",
      "          'nwasnt': 1,\n",
      "          'mr': 1,\n",
      "          'magoo': 1,\n",
      "          'enough': 1,\n",
      "          'nobviously': 1,\n",
      "          'ninspector': 1,\n",
      "          'call': 1,\n",
      "          'ideal': 1,\n",
      "          'family': 1,\n",
      "          'entertainment': 1,\n",
      "          'nyounger': 1,\n",
      "          'viewers': 1,\n",
      "          'likely': 1,\n",
      "          'taken': 1,\n",
      "          'abounding': 1,\n",
      "          'goofiness': 1,\n",
      "          'companions': 1,\n",
      "          'may': 1,\n",
      "          'feel': 1,\n",
      "          'nausea': 1,\n",
      "          'sweeping': 1,\n",
      "          'attempt': 1,\n",
      "          'endure': 1,\n",
      "          'appalling': 1,\n",
      "          '80minute': 1,\n",
      "          'exercise': 1,\n",
      "          'glaring': 1,\n",
      "          'stupidity': 1,\n",
      "          'poorly': 1,\n",
      "          'edited': 1,\n",
      "          'grossly': 1,\n",
      "          'manipulative': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'resembles': 1,\n",
      "          'somewhat': 1,\n",
      "          'failed': 1,\n",
      "          'jigsaw': 1,\n",
      "          'puzzle': 1,\n",
      "          'nall': 1,\n",
      "          'elements': 1,\n",
      "          'manner': 1,\n",
      "          'director': 1,\n",
      "          'david': 1,\n",
      "          'kellogg': 1,\n",
      "          'pieces': 1,\n",
      "          'together': 1,\n",
      "          'laughable': 1,\n",
      "          'trite': 1,\n",
      "          'huge': 1,\n",
      "          'fan': 1,\n",
      "          '80s': 1,\n",
      "          'tv': 1,\n",
      "          'thing': 1,\n",
      "          'must': 1,\n",
      "          'express': 1,\n",
      "          'anger': 1,\n",
      "          'toward': 1,\n",
      "          'treatment': 1,\n",
      "          'main': 1,\n",
      "          'frightening': 1,\n",
      "          'raspyvoiced': 1,\n",
      "          'presence': 1,\n",
      "          'remained': 1,\n",
      "          'total': 1,\n",
      "          'mystery': 1,\n",
      "          'viewer': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'saw': 1,\n",
      "          'sat': 1,\n",
      "          'back': 1,\n",
      "          'armchair': 1,\n",
      "          'surveillance': 1,\n",
      "          'cameras': 1,\n",
      "          'gently': 1,\n",
      "          'stroking': 1,\n",
      "          'loyal': 1,\n",
      "          'child': 1,\n",
      "          'always': 1,\n",
      "          'imagined': 1,\n",
      "          'appear': 1,\n",
      "          'curiosity': 1,\n",
      "          'kept': 1,\n",
      "          'years': 1,\n",
      "          'nwith': 1,\n",
      "          'release': 1,\n",
      "          'liveaction': 1,\n",
      "          'intriguing': 1,\n",
      "          'unrightfully': 1,\n",
      "          'exposed': 1,\n",
      "          'nrupert': 1,\n",
      "          'nonly': 1,\n",
      "          'known': 1,\n",
      "          'word': 1,\n",
      "          'explains': 1,\n",
      "          'madonna': 1,\n",
      "          'sports': 1,\n",
      "          'shiny': 1,\n",
      "          'clamp': 1,\n",
      "          'instead': 1,\n",
      "          'steel': 1,\n",
      "          'glove': 1,\n",
      "          'seems': 1,\n",
      "          'less': 1,\n",
      "          'interesting': 1,\n",
      "          'version': 1,\n",
      "          'nit': 1,\n",
      "          'helps': 1,\n",
      "          'dashing': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'overplays': 1,\n",
      "          'entirely': 1,\n",
      "          'nwhen': 1,\n",
      "          'said': 1,\n",
      "          'done': 1,\n",
      "          'wasnt': 1,\n",
      "          'wise': 1,\n",
      "          'move': 1,\n",
      "          'part': 1,\n",
      "          'screenwriters': 1,\n",
      "          'infamous': 1,\n",
      "          'game': 1,\n",
      "          'host': 1,\n",
      "          'makes': 1,\n",
      "          'cheap': 1,\n",
      "          'suave': 1,\n",
      "          'cool': 1,\n",
      "          'still': 1,\n",
      "          'though': 1,\n",
      "          'title': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'looks': 1,\n",
      "          'actor': 1,\n",
      "          'usually': 1,\n",
      "          'downright': 1,\n",
      "          'charming': 1,\n",
      "          'know': 1,\n",
      "          'exactly': 1,\n",
      "          'fault': 1,\n",
      "          'blamed': 1,\n",
      "          'hapless': 1,\n",
      "          'writers': 1,\n",
      "          'plays': 1,\n",
      "          'friendly': 1,\n",
      "          'naive': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'named': 1,\n",
      "          'john': 1,\n",
      "          'brown': 1,\n",
      "          'dreams': 1,\n",
      "          'becoming': 1,\n",
      "          'cop': 1,\n",
      "          'upholding': 1,\n",
      "          'law': 1,\n",
      "          'good': 1,\n",
      "          'mad': 1,\n",
      "          'crush': 1,\n",
      "          'pretty': 1,\n",
      "          'scientist': 1,\n",
      "          'brenda': 1,\n",
      "          'joely': 1,\n",
      "          'fisher': 1,\n",
      "          'stumbled': 1,\n",
      "          'upon': 1,\n",
      "          'new': 1,\n",
      "          'technology': 1,\n",
      "          'involving': 1,\n",
      "          'interaction': 1,\n",
      "          'tissue': 1,\n",
      "          'electronics': 1,\n",
      "          'nbut': 1,\n",
      "          'fateful': 1,\n",
      "          'night': 1,\n",
      "          'lab': 1,\n",
      "          'destroyed': 1,\n",
      "          'experiment': 1,\n",
      "          'stolen': 1,\n",
      "          'fiendish': 1,\n",
      "          'millionaire': 1,\n",
      "          'wants': 1,\n",
      "          'world': 1,\n",
      "          'njohn': 1,\n",
      "          'courageously': 1,\n",
      "          'pursues': 1,\n",
      "          'limousine': 1,\n",
      "          'loses': 1,\n",
      "          'chase': 1,\n",
      "          'vehicle': 1,\n",
      "          'bursts': 1,\n",
      "          'flames': 1,\n",
      "          'full': 1,\n",
      "          'body': 1,\n",
      "          'cast': 1,\n",
      "          'chosen': 1,\n",
      "          'prototype': 1,\n",
      "          'brendas': 1,\n",
      "          'revolutionary': 1,\n",
      "          'fighting': 1,\n",
      "          'tool': 1,\n",
      "          'numerous': 1,\n",
      "          'fancy': 1,\n",
      "          'gadgets': 1,\n",
      "          'dispatch': 1,\n",
      "          'guys': 1,\n",
      "          'born': 1,\n",
      "          'inspector': 1,\n",
      "          'certain': 1,\n",
      "          'charm': 1,\n",
      "          'isolated': 1,\n",
      "          'scenes': 1,\n",
      "          'actually': 1,\n",
      "          'fares': 1,\n",
      "          'better': 1,\n",
      "          'playing': 1,\n",
      "          'evil': 1,\n",
      "          'destructive': 1,\n",
      "          'clone': 1,\n",
      "          'set': 1,\n",
      "          'loose': 1,\n",
      "          'city': 1,\n",
      "          'two': 1,\n",
      "          'three': 1,\n",
      "          'amusing': 1,\n",
      "          'punch': 1,\n",
      "          'lines': 1,\n",
      "          'funniest': 1,\n",
      "          'impersonates': 1,\n",
      "          'rampaging': 1,\n",
      "          'monster': 1,\n",
      "          'shadow': 1,\n",
      "          'puppets': 1,\n",
      "          'brick': 1,\n",
      "          'wall': 1,\n",
      "          'japanese': 1,\n",
      "          'man': 1,\n",
      "          'flees': 1,\n",
      "          'screaming': 1,\n",
      "          'left': 1,\n",
      "          'tokyo': 1,\n",
      "          'nalas': 1,\n",
      "          'hit': 1,\n",
      "          'ratio': 1,\n",
      "          'ongoing': 1,\n",
      "          'gags': 1,\n",
      "          '20': 1,\n",
      "          '1': 1,\n",
      "          'favor': 1,\n",
      "          'cracking': 1,\n",
      "          'slight': 1,\n",
      "          'giggle': 1,\n",
      "          'nthere': 1,\n",
      "          'tired': 1,\n",
      "          'plot': 1,\n",
      "          'ngadgets': 1,\n",
      "          'talking': 1,\n",
      "          'car': 1,\n",
      "          'voiced': 1,\n",
      "          'l': 1,\n",
      "          'nhughley': 1,\n",
      "          'type': 1,\n",
      "          'suit': 1,\n",
      "          'favorite': 1,\n",
      "          'martian': 1,\n",
      "          'nboth': 1,\n",
      "          'nonhuman': 1,\n",
      "          'designed': 1,\n",
      "          'coax': 1,\n",
      "          'laughter': 1,\n",
      "          'smaller': 1,\n",
      "          'children': 1,\n",
      "          'nwell': 1,\n",
      "          'fact': 1,\n",
      "          'functioned': 1,\n",
      "          'marvelously': 1,\n",
      "          'comparison': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'started': 1,\n",
      "          'villains': 1,\n",
      "          'ni': 1,\n",
      "          'didnt': 1,\n",
      "          'mind': 1,\n",
      "          'everetts': 1,\n",
      "          'performance': 1,\n",
      "          'bumbling': 1,\n",
      "          'assistants': 1,\n",
      "          'make': 1,\n",
      "          'every': 1,\n",
      "          'cringe': 1,\n",
      "          'disgust': 1,\n",
      "          'characters': 1,\n",
      "          'reduced': 1,\n",
      "          'thankless': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'npenny': 1,\n",
      "          'michelle': 1,\n",
      "          'trachtenberg': 1,\n",
      "          'brain': 1,\n",
      "          'dog': 1,\n",
      "          'little': 1,\n",
      "          'chief': 1,\n",
      "          'quimby': 1,\n",
      "          'dabney': 1,\n",
      "          'coleman': 1,\n",
      "          'considerable': 1,\n",
      "          'appeal': 1,\n",
      "          'transition': 1,\n",
      "          'animation': 1,\n",
      "          'everywhere': 1,\n",
      "          'annoying': 1,\n",
      "          'cause': 1,\n",
      "          'eyes': 1,\n",
      "          'peel': 1,\n",
      "          'problem': 1,\n",
      "          'lies': 1,\n",
      "          'solely': 1,\n",
      "          'script': 1,\n",
      "          'nperhaps': 1,\n",
      "          'next': 1,\n",
      "          'time': 1,\n",
      "          'remake': 1,\n",
      "          'invest': 1,\n",
      "          'screenplay': 1,\n",
      "          'fancyschmancy': 1,\n",
      "          'visuals': 1,\n",
      "          'nhere': 1,\n",
      "          'critic': 1,\n",
      "          'crossing': 1,\n",
      "          'fingers': 1,\n",
      "          'anyway': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'smith': 9,\n",
      "          'wild': 6,\n",
      "          'film': 6,\n",
      "          'west': 5,\n",
      "          'nin': 4,\n",
      "          'scene': 4,\n",
      "          'thing': 4,\n",
      "          'summer': 3,\n",
      "          'ni': 3,\n",
      "          'nthe': 3,\n",
      "          'naction': 3,\n",
      "          'money': 2,\n",
      "          'disappointment': 2,\n",
      "          'characters': 2,\n",
      "          'back': 2,\n",
      "          'seat': 2,\n",
      "          'story': 2,\n",
      "          'still': 2,\n",
      "          'found': 2,\n",
      "          'extras': 2,\n",
      "          'look': 2,\n",
      "          'like': 2,\n",
      "          'mechanical': 2,\n",
      "          'tarantula': 2,\n",
      "          'gordon': 2,\n",
      "          'breasts': 2,\n",
      "          'must': 2,\n",
      "          'another': 2,\n",
      "          'act': 2,\n",
      "          'example': 2,\n",
      "          'reserved': 2,\n",
      "          'filled': 2,\n",
      "          'rather': 2,\n",
      "          'n': 2,\n",
      "          'director': 2,\n",
      "          'nthere': 2,\n",
      "          'imagination': 2,\n",
      "          'havent': 1,\n",
      "          'plunked': 1,\n",
      "          'hardearned': 1,\n",
      "          'yet': 1,\n",
      "          'latest': 1,\n",
      "          'holiday': 1,\n",
      "          'offering': 1,\n",
      "          'let': 1,\n",
      "          'say': 1,\n",
      "          'right': 1,\n",
      "          'better': 1,\n",
      "          'spent': 1,\n",
      "          'starbucks': 1,\n",
      "          'frappacino': 1,\n",
      "          'ben': 1,\n",
      "          'jerrys': 1,\n",
      "          'sundae': 1,\n",
      "          'nthese': 1,\n",
      "          'treats': 1,\n",
      "          'great': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'relief': 1,\n",
      "          'heat': 1,\n",
      "          'contrast': 1,\n",
      "          'made': 1,\n",
      "          'simmer': 1,\n",
      "          'accept': 1,\n",
      "          'fact': 1,\n",
      "          'movies': 1,\n",
      "          'tend': 1,\n",
      "          'put': 1,\n",
      "          'weight': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'good': 1,\n",
      "          'stories': 1,\n",
      "          'flavorful': 1,\n",
      "          'usually': 1,\n",
      "          'take': 1,\n",
      "          'nthis': 1,\n",
      "          'true': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'episode': 1,\n",
      "          'least': 1,\n",
      "          'nwhat': 1,\n",
      "          'remains': 1,\n",
      "          'hundreds': 1,\n",
      "          'male': 1,\n",
      "          'costumed': 1,\n",
      "          'gunslingers': 1,\n",
      "          'foppish': 1,\n",
      "          'aristocrats': 1,\n",
      "          'lots': 1,\n",
      "          'female': 1,\n",
      "          'cancan': 1,\n",
      "          'dancers': 1,\n",
      "          'clunky': 1,\n",
      "          '80foot': 1,\n",
      "          'tall': 1,\n",
      "          'instrument': 1,\n",
      "          'destruction': 1,\n",
      "          'resembles': 1,\n",
      "          'ntwo': 1,\n",
      "          'men': 1,\n",
      "          'asked': 1,\n",
      "          'stop': 1,\n",
      "          'threat': 1,\n",
      "          'none': 1,\n",
      "          'artemus': 1,\n",
      "          'kevin': 1,\n",
      "          'kline': 1,\n",
      "          'inventor': 1,\n",
      "          'uses': 1,\n",
      "          'intellect': 1,\n",
      "          'array': 1,\n",
      "          'disguises': 1,\n",
      "          'best': 1,\n",
      "          'opponents': 1,\n",
      "          'namong': 1,\n",
      "          'creations': 1,\n",
      "          'false': 1,\n",
      "          'bulletproof': 1,\n",
      "          'vest': 1,\n",
      "          'man': 1,\n",
      "          'jim': 1,\n",
      "          'prefers': 1,\n",
      "          'shootfirstthenshootsomemore': 1,\n",
      "          'method': 1,\n",
      "          'investigating': 1,\n",
      "          'nalthough': 1,\n",
      "          'individual': 1,\n",
      "          'talents': 1,\n",
      "          'combined': 1,\n",
      "          'achieve': 1,\n",
      "          'success': 1,\n",
      "          'interaction': 1,\n",
      "          'one': 1,\n",
      "          'merely': 1,\n",
      "          'seemed': 1,\n",
      "          'second': 1,\n",
      "          'rate': 1,\n",
      "          'twoman': 1,\n",
      "          'vaudevillian': 1,\n",
      "          'nfor': 1,\n",
      "          'debonair': 1,\n",
      "          'notes': 1,\n",
      "          'fake': 1,\n",
      "          'water': 1,\n",
      "          'buckwheat': 1,\n",
      "          'currently': 1,\n",
      "          'touch': 1,\n",
      "          'breast': 1,\n",
      "          'says': 1,\n",
      "          'ngordon': 1,\n",
      "          'softly': 1,\n",
      "          'coos': 1,\n",
      "          'approval': 1,\n",
      "          'groaning': 1,\n",
      "          'kind': 1,\n",
      "          'silliness': 1,\n",
      "          'script': 1,\n",
      "          'fails': 1,\n",
      "          'generate': 1,\n",
      "          'sense': 1,\n",
      "          'drama': 1,\n",
      "          'humor': 1,\n",
      "          'fun': 1,\n",
      "          'matter': 1,\n",
      "          'enjoy': 1,\n",
      "          'klines': 1,\n",
      "          'performance': 1,\n",
      "          'surprised': 1,\n",
      "          'much': 1,\n",
      "          'latitude': 1,\n",
      "          'gave': 1,\n",
      "          'ncould': 1,\n",
      "          'bankable': 1,\n",
      "          'hes': 1,\n",
      "          'even': 1,\n",
      "          'required': 1,\n",
      "          'nit': 1,\n",
      "          'yelling': 1,\n",
      "          'nheres': 1,\n",
      "          'hanged': 1,\n",
      "          'group': 1,\n",
      "          'angry': 1,\n",
      "          'white': 1,\n",
      "          'people': 1,\n",
      "          'nhe': 1,\n",
      "          'endear': 1,\n",
      "          'crowd': 1,\n",
      "          'escape': 1,\n",
      "          'yells': 1,\n",
      "          'masquerade': 1,\n",
      "          'belly': 1,\n",
      "          'dancer': 1,\n",
      "          'order': 1,\n",
      "          'save': 1,\n",
      "          'comrades': 1,\n",
      "          'nworse': 1,\n",
      "          'final': 1,\n",
      "          'battle': 1,\n",
      "          'aboard': 1,\n",
      "          'horrid': 1,\n",
      "          'mess': 1,\n",
      "          'cogs': 1,\n",
      "          'spinning': 1,\n",
      "          'pulleys': 1,\n",
      "          'pulling': 1,\n",
      "          'levers': 1,\n",
      "          'going': 1,\n",
      "          'everywhere': 1,\n",
      "          'ntheres': 1,\n",
      "          'actually': 1,\n",
      "          'lot': 1,\n",
      "          'work': 1,\n",
      "          'genuinely': 1,\n",
      "          'clever': 1,\n",
      "          'inventions': 1,\n",
      "          'gizmos': 1,\n",
      "          'introduced': 1,\n",
      "          'wasted': 1,\n",
      "          'visually': 1,\n",
      "          'cluttered': 1,\n",
      "          'dramatically': 1,\n",
      "          'flat': 1,\n",
      "          'nand': 1,\n",
      "          'thats': 1,\n",
      "          'bad': 1,\n",
      "          'focus': 1,\n",
      "          'might': 1,\n",
      "          'palatable': 1,\n",
      "          'nas': 1,\n",
      "          'turns': 1,\n",
      "          'worst': 1,\n",
      "          'receives': 1,\n",
      "          'vote': 1,\n",
      "          'biggest': 1,\n",
      "          'year': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'harry': 8,\n",
      "          'harrys': 3,\n",
      "          'palmetto': 3,\n",
      "          'two': 2,\n",
      "          'con': 2,\n",
      "          'woody': 2,\n",
      "          'harrelson': 2,\n",
      "          'inept': 2,\n",
      "          'trips': 2,\n",
      "          'post': 2,\n",
      "          'girl': 2,\n",
      "          'point': 2,\n",
      "          'nharry': 2,\n",
      "          'always': 2,\n",
      "          'carries': 2,\n",
      "          'around': 2,\n",
      "          'swears': 2,\n",
      "          'doesnt': 2,\n",
      "          'scheme': 2,\n",
      "          'involving': 2,\n",
      "          'odette': 2,\n",
      "          'impersonators': 2,\n",
      "          'hero': 2,\n",
      "          'detective': 2,\n",
      "          'movie': 2,\n",
      "          'synopsis': 1,\n",
      "          'artists': 1,\n",
      "          'find': 1,\n",
      "          'perfect': 1,\n",
      "          'patsy': 1,\n",
      "          'former': 1,\n",
      "          'journalist': 1,\n",
      "          'bumps': 1,\n",
      "          'head': 1,\n",
      "          'tries': 1,\n",
      "          'slap': 1,\n",
      "          'gets': 1,\n",
      "          'poked': 1,\n",
      "          'eye': 1,\n",
      "          'illtimed': 1,\n",
      "          'fits': 1,\n",
      "          'coughing': 1,\n",
      "          'fails': 1,\n",
      "          'everything': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'told': 1,\n",
      "          'view': 1,\n",
      "          'shot': 1,\n",
      "          'whiskey': 1,\n",
      "          'although': 1,\n",
      "          'drink': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'approached': 1,\n",
      "          'rhea': 1,\n",
      "          'elisabeth': 1,\n",
      "          'shue': 1,\n",
      "          'similar': 1,\n",
      "          'cigarette': 1,\n",
      "          'smoke': 1,\n",
      "          'nseduced': 1,\n",
      "          'agrees': 1,\n",
      "          'participate': 1,\n",
      "          'moneymaking': 1,\n",
      "          'faking': 1,\n",
      "          'kidnapping': 1,\n",
      "          'chloe': 1,\n",
      "          'sevigny': 1,\n",
      "          'teenage': 1,\n",
      "          'daughter': 1,\n",
      "          'rich': 1,\n",
      "          'man': 1,\n",
      "          'nturns': 1,\n",
      "          'part': 1,\n",
      "          'needless': 1,\n",
      "          'puzzling': 1,\n",
      "          'extremely': 1,\n",
      "          'elaborate': 1,\n",
      "          'convoluted': 1,\n",
      "          'involves': 1,\n",
      "          'hiring': 1,\n",
      "          'special': 1,\n",
      "          'cons': 1,\n",
      "          'order': 1,\n",
      "          'fool': 1,\n",
      "          'barely': 1,\n",
      "          'intellectual': 1,\n",
      "          'capacity': 1,\n",
      "          'wooden': 1,\n",
      "          'nwhen': 1,\n",
      "          'kidnapped': 1,\n",
      "          'found': 1,\n",
      "          'dead': 1,\n",
      "          'clues': 1,\n",
      "          'kidnappermurderer': 1,\n",
      "          'police': 1,\n",
      "          'hot': 1,\n",
      "          'trail': 1,\n",
      "          'suddenly': 1,\n",
      "          'realizes': 1,\n",
      "          'framed': 1,\n",
      "          'others': 1,\n",
      "          'taken': 1,\n",
      "          'ransom': 1,\n",
      "          'money': 1,\n",
      "          'ncan': 1,\n",
      "          'get': 1,\n",
      "          'mess': 1,\n",
      "          'nopinion': 1,\n",
      "          'long': 1,\n",
      "          'uninteresting': 1,\n",
      "          'film': 1,\n",
      "          'wrong': 1,\n",
      "          'feel': 1,\n",
      "          'nhero': 1,\n",
      "          'bungler': 1,\n",
      "          'often': 1,\n",
      "          'consistently': 1,\n",
      "          'overestimates': 1,\n",
      "          'intelligence': 1,\n",
      "          'nthis': 1,\n",
      "          'farcical': 1,\n",
      "          'kind': 1,\n",
      "          'character': 1,\n",
      "          'works': 1,\n",
      "          'best': 1,\n",
      "          'entertaining': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'action': 1,\n",
      "          'comedy': 1,\n",
      "          'dragnet': 1,\n",
      "          'spoof': 1,\n",
      "          'nbut': 1,\n",
      "          'played': 1,\n",
      "          'like': 1,\n",
      "          'dark': 1,\n",
      "          'serious': 1,\n",
      "          'noir': 1,\n",
      "          'drama': 1,\n",
      "          'watching': 1,\n",
      "          'bumbling': 1,\n",
      "          'confidence': 1,\n",
      "          'amounts': 1,\n",
      "          'irritating': 1,\n",
      "          'distraction': 1,\n",
      "          'ntheres': 1,\n",
      "          'lapse': 1,\n",
      "          'concentration': 1,\n",
      "          'middle': 1,\n",
      "          'camera': 1,\n",
      "          'goes': 1,\n",
      "          'wild': 1,\n",
      "          'breasts': 1,\n",
      "          'buttocks': 1,\n",
      "          'short': 1,\n",
      "          'skirts': 1,\n",
      "          'colored': 1,\n",
      "          'painted': 1,\n",
      "          'nails': 1,\n",
      "          'womens': 1,\n",
      "          'legs': 1,\n",
      "          'neven': 1,\n",
      "          'focus': 1,\n",
      "          'supposedly': 1,\n",
      "          'dilema': 1,\n",
      "          'notice': 1,\n",
      "          'side': 1,\n",
      "          'elizabeth': 1,\n",
      "          'shues': 1,\n",
      "          'breast': 1,\n",
      "          'forming': 1,\n",
      "          'prominent': 1,\n",
      "          'foreground': 1,\n",
      "          'ntowards': 1,\n",
      "          'end': 1,\n",
      "          'refocuses': 1,\n",
      "          'plot': 1,\n",
      "          'grand': 1,\n",
      "          'finale': 1,\n",
      "          'confusing': 1,\n",
      "          'explanation': 1,\n",
      "          'handcuffed': 1,\n",
      "          'suspended': 1,\n",
      "          'tub': 1,\n",
      "          'acid': 1,\n",
      "          'hears': 1,\n",
      "          'criminals': 1,\n",
      "          'confession': 1,\n",
      "          'nif': 1,\n",
      "          'imagine': 1,\n",
      "          'shemp': 1,\n",
      "          'three': 1,\n",
      "          'stooges': 1,\n",
      "          'playing': 1,\n",
      "          'hbo': 1,\n",
      "          'lingerie': 1,\n",
      "          'suspense': 1,\n",
      "          'thriller': 1,\n",
      "          'thats': 1,\n",
      "          'synch': 1,\n",
      "          'feels': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'schwarzenegger': 9,\n",
      "          'devito': 7,\n",
      "          'arnold': 5,\n",
      "          'drug': 5,\n",
      "          'film': 5,\n",
      "          'thompson': 4,\n",
      "          'funny': 4,\n",
      "          'twins': 4,\n",
      "          'danny': 3,\n",
      "          'reitman': 3,\n",
      "          'nso': 3,\n",
      "          'would': 3,\n",
      "          'nschwarzenegger': 3,\n",
      "          'hesse': 3,\n",
      "          'wasted': 3,\n",
      "          'movie': 3,\n",
      "          'emma': 2,\n",
      "          'frank': 2,\n",
      "          'langella': 2,\n",
      "          'junior': 2,\n",
      "          'one': 2,\n",
      "          'ivan': 2,\n",
      "          'come': 2,\n",
      "          'close': 2,\n",
      "          'two': 2,\n",
      "          'new': 2,\n",
      "          'pregnancy': 2,\n",
      "          'test': 2,\n",
      "          'work': 2,\n",
      "          'pregnant': 2,\n",
      "          'comedic': 2,\n",
      "          'talent': 2,\n",
      "          'best': 2,\n",
      "          'ni': 2,\n",
      "          'time': 2,\n",
      "          'making': 2,\n",
      "          'could': 2,\n",
      "          'didnt': 2,\n",
      "          'make': 2,\n",
      "          'pulled': 2,\n",
      "          'street': 2,\n",
      "          'well': 2,\n",
      "          'bad': 2,\n",
      "          'hard': 2,\n",
      "          'starring': 1,\n",
      "          'thing': 1,\n",
      "          'say': 1,\n",
      "          'disappointment': 1,\n",
      "          'big': 1,\n",
      "          'njunior': 1,\n",
      "          'brings': 1,\n",
      "          'together': 1,\n",
      "          'director': 1,\n",
      "          'nthese': 1,\n",
      "          'men': 1,\n",
      "          'brought': 1,\n",
      "          'us': 1,\n",
      "          'foolish': 1,\n",
      "          'hoping': 1,\n",
      "          'something': 1,\n",
      "          'least': 1,\n",
      "          'level': 1,\n",
      "          'quality': 1,\n",
      "          'much': 1,\n",
      "          'hopes': 1,\n",
      "          'play': 1,\n",
      "          'scientists': 1,\n",
      "          'doctors': 1,\n",
      "          'arbogast': 1,\n",
      "          'working': 1,\n",
      "          'reduce': 1,\n",
      "          'possibility': 1,\n",
      "          'miscarriage': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'due': 1,\n",
      "          'circumstances': 1,\n",
      "          'beyond': 1,\n",
      "          'control': 1,\n",
      "          'denied': 1,\n",
      "          'permission': 1,\n",
      "          'humans': 1,\n",
      "          'subsequently': 1,\n",
      "          'lose': 1,\n",
      "          'funding': 1,\n",
      "          'nstill': 1,\n",
      "          'believing': 1,\n",
      "          'decide': 1,\n",
      "          'anyway': 1,\n",
      "          'dr': 1,\n",
      "          'artificially': 1,\n",
      "          'inseminates': 1,\n",
      "          'begins': 1,\n",
      "          'taking': 1,\n",
      "          'ntheir': 1,\n",
      "          'theory': 1,\n",
      "          'prevent': 1,\n",
      "          'man': 1,\n",
      "          'miscarrying': 1,\n",
      "          'surely': 1,\n",
      "          'woman': 1,\n",
      "          'ndoes': 1,\n",
      "          'thought': 1,\n",
      "          'sound': 1,\n",
      "          'humorous': 1,\n",
      "          'nwell': 1,\n",
      "          'must': 1,\n",
      "          'producers': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'pull': 1,\n",
      "          'nperhaps': 1,\n",
      "          'done': 1,\n",
      "          'differently': 1,\n",
      "          'might': 1,\n",
      "          'actually': 1,\n",
      "          'nbut': 1,\n",
      "          'wasnt': 1,\n",
      "          'goofy': 1,\n",
      "          'nthe': 1,\n",
      "          'sight': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'going': 1,\n",
      "          'hormone': 1,\n",
      "          'imbalances': 1,\n",
      "          'accompanying': 1,\n",
      "          'emotional': 1,\n",
      "          'swings': 1,\n",
      "          'comes': 1,\n",
      "          'embarrassing': 1,\n",
      "          'antics': 1,\n",
      "          'kept': 1,\n",
      "          'thinking': 1,\n",
      "          'turkey': 1,\n",
      "          'action': 1,\n",
      "          'picture': 1,\n",
      "          'nbetter': 1,\n",
      "          'yet': 1,\n",
      "          'place': 1,\n",
      "          'sequel': 1,\n",
      "          'nanything': 1,\n",
      "          'better': 1,\n",
      "          'mess': 1,\n",
      "          'ndanny': 1,\n",
      "          'nhis': 1,\n",
      "          'part': 1,\n",
      "          'played': 1,\n",
      "          'joker': 1,\n",
      "          'n': 1,\n",
      "          'seeing': 1,\n",
      "          'probably': 1,\n",
      "          'wished': 1,\n",
      "          'someone': 1,\n",
      "          'nemma': 1,\n",
      "          'nwhile': 1,\n",
      "          'known': 1,\n",
      "          'jane': 1,\n",
      "          'austin': 1,\n",
      "          'adaptations': 1,\n",
      "          'also': 1,\n",
      "          'fine': 1,\n",
      "          'comedian': 1,\n",
      "          'ntoo': 1,\n",
      "          'get': 1,\n",
      "          'use': 1,\n",
      "          'nam': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'favorite': 1,\n",
      "          'actors': 1,\n",
      "          'today': 1,\n",
      "          'talented': 1,\n",
      "          'directors': 1,\n",
      "          'hollywood': 1,\n",
      "          'nwith': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'filmmakers': 1,\n",
      "          'really': 1,\n",
      "          'trying': 1,\n",
      "          'nthey': 1,\n",
      "          'certainly': 1,\n",
      "          'managed': 1,\n",
      "          'nmaybe': 1,\n",
      "          'intentioned': 1,\n",
      "          'unfortunately': 1,\n",
      "          'never': 1,\n",
      "          'made': 1,\n",
      "          'nif': 1,\n",
      "          'tempted': 1,\n",
      "          'see': 1,\n",
      "          'favor': 1,\n",
      "          'go': 1,\n",
      "          'rent': 1,\n",
      "          'truly': 1,\n",
      "          'takes': 1,\n",
      "          'advantage': 1,\n",
      "          'devitos': 1,\n",
      "          'talents': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'melvin': 6,\n",
      "          'nthe': 5,\n",
      "          'also': 5,\n",
      "          'big': 4,\n",
      "          'paris': 4,\n",
      "          'cisco': 4,\n",
      "          'hit': 3,\n",
      "          'action': 3,\n",
      "          'comedy': 3,\n",
      "          'films': 3,\n",
      "          'like': 3,\n",
      "          'people': 3,\n",
      "          'phillips': 3,\n",
      "          'whole': 3,\n",
      "          'kong': 3,\n",
      "          'last': 2,\n",
      "          'tone': 2,\n",
      "          'violence': 2,\n",
      "          'funny': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'laughs': 2,\n",
      "          'goofy': 2,\n",
      "          'lot': 2,\n",
      "          'nhowever': 2,\n",
      "          'wants': 2,\n",
      "          'career': 2,\n",
      "          'better': 2,\n",
      "          'start': 2,\n",
      "          'plays': 2,\n",
      "          'guy': 2,\n",
      "          'happens': 2,\n",
      "          'character': 2,\n",
      "          'much': 2,\n",
      "          'puts': 2,\n",
      "          'money': 2,\n",
      "          'thoroughly': 2,\n",
      "          'named': 2,\n",
      "          'lou': 2,\n",
      "          'diamond': 2,\n",
      "          'crunch': 2,\n",
      "          'daughter': 2,\n",
      "          'jiro': 2,\n",
      "          'nishi': 2,\n",
      "          'kidnapped': 2,\n",
      "          'keiko': 2,\n",
      "          'shes': 2,\n",
      "          'nnot': 2,\n",
      "          'completely': 2,\n",
      "          'nwhat': 2,\n",
      "          'jokes': 2,\n",
      "          'problems': 2,\n",
      "          'video': 2,\n",
      "          'needs': 2,\n",
      "          'copy': 2,\n",
      "          'wong': 2,\n",
      "          'hong': 2,\n",
      "          'back': 2,\n",
      "          'comes': 2,\n",
      "          'script': 2,\n",
      "          'dunne': 2,\n",
      "          'scenes': 1,\n",
      "          'awful': 1,\n",
      "          'simply': 1,\n",
      "          'defy': 1,\n",
      "          'description': 1,\n",
      "          'infected': 1,\n",
      "          'kind': 1,\n",
      "          'blunderheaded': 1,\n",
      "          'idiocy': 1,\n",
      "          'misplaced': 1,\n",
      "          'confidence': 1,\n",
      "          'made': 1,\n",
      "          'hero': 1,\n",
      "          '1993': 1,\n",
      "          'chore': 1,\n",
      "          'sit': 1,\n",
      "          'npresumably': 1,\n",
      "          'actioncomedy': 1,\n",
      "          'difficult': 1,\n",
      "          'impossible': 1,\n",
      "          'genre': 1,\n",
      "          'pull': 1,\n",
      "          'nmovies': 1,\n",
      "          'sort': 1,\n",
      "          'require': 1,\n",
      "          'fine': 1,\n",
      "          'balance': 1,\n",
      "          'careful': 1,\n",
      "          'usually': 1,\n",
      "          'meant': 1,\n",
      "          'work': 1,\n",
      "          'catharsis': 1,\n",
      "          'n': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          '2': 1,\n",
      "          '1989': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'thriller': 1,\n",
      "          'seems': 1,\n",
      "          'main': 1,\n",
      "          'motive': 1,\n",
      "          'intended': 1,\n",
      "          'punctuate': 1,\n",
      "          'resembles': 1,\n",
      "          'throwaway': 1,\n",
      "          'ridiculousness': 1,\n",
      "          'early': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'doesnt': 1,\n",
      "          'benefit': 1,\n",
      "          'chans': 1,\n",
      "          'incredible': 1,\n",
      "          'stunts': 1,\n",
      "          'charismatic': 1,\n",
      "          'presence': 1,\n",
      "          'ninstead': 1,\n",
      "          'left': 1,\n",
      "          'digital': 1,\n",
      "          'effects': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'must': 1,\n",
      "          'considered': 1,\n",
      "          'invincible': 1,\n",
      "          'criticallyacclaimed': 1,\n",
      "          'performance': 1,\n",
      "          'years': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'maintain': 1,\n",
      "          'decent': 1,\n",
      "          'selecting': 1,\n",
      "          'projects': 1,\n",
      "          'carefully': 1,\n",
      "          'movies': 1,\n",
      "          'surefire': 1,\n",
      "          'recipe': 1,\n",
      "          'long': 1,\n",
      "          'straighttovideo': 1,\n",
      "          'market': 1,\n",
      "          'nwahlberg': 1,\n",
      "          'smiley': 1,\n",
      "          'amiable': 1,\n",
      "          'professional': 1,\n",
      "          'hitman': 1,\n",
      "          'see': 1,\n",
      "          'grosse': 1,\n",
      "          'pointe': 1,\n",
      "          'blank': 1,\n",
      "          'developed': 1,\n",
      "          'us': 1,\n",
      "          'think': 1,\n",
      "          'gee': 1,\n",
      "          'clever': 1,\n",
      "          'ironic': 1,\n",
      "          'kill': 1,\n",
      "          'without': 1,\n",
      "          'moral': 1,\n",
      "          'implications': 1,\n",
      "          'yet': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'anyone': 1,\n",
      "          'fact': 1,\n",
      "          'desperate': 1,\n",
      "          'keep': 1,\n",
      "          'liking': 1,\n",
      "          'obnoxious': 1,\n",
      "          'fiancee': 1,\n",
      "          'christina': 1,\n",
      "          'applegate': 1,\n",
      "          'horrendous': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'accent': 1,\n",
      "          'abusive': 1,\n",
      "          'girlfriend': 1,\n",
      "          'lela': 1,\n",
      "          'rochon': 1,\n",
      "          'using': 1,\n",
      "          'nhis': 1,\n",
      "          'constant': 1,\n",
      "          'bending': 1,\n",
      "          'backwards': 1,\n",
      "          'please': 1,\n",
      "          'makes': 1,\n",
      "          'complete': 1,\n",
      "          'patsy': 1,\n",
      "          'best': 1,\n",
      "          'unbelievable': 1,\n",
      "          'worst': 1,\n",
      "          'nmelvin': 1,\n",
      "          'employed': 1,\n",
      "          'exclusively': 1,\n",
      "          'crime': 1,\n",
      "          'boss': 1,\n",
      "          'avery': 1,\n",
      "          'brooks': 1,\n",
      "          'part': 1,\n",
      "          'team': 1,\n",
      "          'hitmen': 1,\n",
      "          'includes': 1,\n",
      "          'bokeem': 1,\n",
      "          'woodbine': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'agrees': 1,\n",
      "          'moonlighting': 1,\n",
      "          'kidnapping': 1,\n",
      "          'teenage': 1,\n",
      "          'rich': 1,\n",
      "          'japanese': 1,\n",
      "          'mogul': 1,\n",
      "          'sab': 1,\n",
      "          'shimono': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'ransom': 1,\n",
      "          'lost': 1,\n",
      "          'producing': 1,\n",
      "          'hollywood': 1,\n",
      "          'inside': 1,\n",
      "          'joke': 1,\n",
      "          'get': 1,\n",
      "          'china': 1,\n",
      "          'chow': 1,\n",
      "          'goddaughter': 1,\n",
      "          'nso': 1,\n",
      "          'finds': 1,\n",
      "          'takes': 1,\n",
      "          'personally': 1,\n",
      "          'becomes': 1,\n",
      "          'determined': 1,\n",
      "          'find': 1,\n",
      "          'knowing': 1,\n",
      "          'actually': 1,\n",
      "          'behind': 1,\n",
      "          'scheme': 1,\n",
      "          'charge': 1,\n",
      "          'rooting': 1,\n",
      "          'kidnapper': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'blames': 1,\n",
      "          'thing': 1,\n",
      "          'poor': 1,\n",
      "          'innocent': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'several': 1,\n",
      "          'obligatory': 1,\n",
      "          'gunfights': 1,\n",
      "          'explosions': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'plus': 1,\n",
      "          'literal': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'inspired': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'unconvincing': 1,\n",
      "          'romance': 1,\n",
      "          'looks': 1,\n",
      "          'barely': 1,\n",
      "          'pushing': 1,\n",
      "          'fifteen': 1,\n",
      "          'passes': 1,\n",
      "          'humor': 1,\n",
      "          'resorts': 1,\n",
      "          'unfunny': 1,\n",
      "          'overweight': 1,\n",
      "          'jewish': 1,\n",
      "          'mothers': 1,\n",
      "          'harakiri': 1,\n",
      "          'drinking': 1,\n",
      "          'leaking': 1,\n",
      "          'body': 1,\n",
      "          'bags': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'recently': 1,\n",
      "          'discovered': 1,\n",
      "          'pleasures': 1,\n",
      "          'masturbation': 1,\n",
      "          'spends': 1,\n",
      "          'time': 1,\n",
      "          'hand': 1,\n",
      "          'exercises': 1,\n",
      "          'mention': 1,\n",
      "          'pimply': 1,\n",
      "          'store': 1,\n",
      "          'clerk': 1,\n",
      "          'always': 1,\n",
      "          'calling': 1,\n",
      "          'screeching': 1,\n",
      "          'return': 1,\n",
      "          'king': 1,\n",
      "          'lives': 1,\n",
      "          'two': 1,\n",
      "          'weeks': 1,\n",
      "          'overdue': 1,\n",
      "          'nthis': 1,\n",
      "          'mess': 1,\n",
      "          'helmed': 1,\n",
      "          'chekirk': 1,\n",
      "          'latest': 1,\n",
      "          'director': 1,\n",
      "          'imported': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'faceoff': 1,\n",
      "          'served': 1,\n",
      "          'executive': 1,\n",
      "          'producer': 1,\n",
      "          'nwoo': 1,\n",
      "          'stop': 1,\n",
      "          'acting': 1,\n",
      "          'conduit': 1,\n",
      "          'directors': 1,\n",
      "          'making': 1,\n",
      "          'nwong': 1,\n",
      "          'directed': 1,\n",
      "          'rocknroll': 1,\n",
      "          'cop': 1,\n",
      "          'deaf': 1,\n",
      "          'nmaybe': 1,\n",
      "          'vexatious': 1,\n",
      "          'clerks': 1,\n",
      "          'vomiting': 1,\n",
      "          'across': 1,\n",
      "          'ocean': 1,\n",
      "          'theyre': 1,\n",
      "          'least': 1,\n",
      "          'manner': 1,\n",
      "          'handles': 1,\n",
      "          'nmany': 1,\n",
      "          'traced': 1,\n",
      "          'penned': 1,\n",
      "          'obvious': 1,\n",
      "          'freshman': 1,\n",
      "          'writer': 1,\n",
      "          'ben': 1,\n",
      "          'ramsey': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'vague': 1,\n",
      "          'characterizations': 1,\n",
      "          'uninspired': 1,\n",
      "          'sequences': 1,\n",
      "          'ramseys': 1,\n",
      "          'assaults': 1,\n",
      "          'audience': 1,\n",
      "          'attempts': 1,\n",
      "          'vulgar': 1,\n",
      "          'poetic': 1,\n",
      "          'rhythms': 1,\n",
      "          'tarantino': 1,\n",
      "          'mametstyle': 1,\n",
      "          'dialogue': 1,\n",
      "          'annoying': 1,\n",
      "          'blather': 1,\n",
      "          'spews': 1,\n",
      "          'lips': 1,\n",
      "          'whose': 1,\n",
      "          'favorite': 1,\n",
      "          'phrase': 1,\n",
      "          'love': 1,\n",
      "          'robin': 1,\n",
      "          'ciscos': 1,\n",
      "          'stuttering': 1,\n",
      "          'blackwannabe': 1,\n",
      "          'assistant': 1,\n",
      "          'irritation': 1,\n",
      "          'factor': 1,\n",
      "          'combined': 1,\n",
      "          'almost': 1,\n",
      "          'scale': 1,\n",
      "          'pretty': 1,\n",
      "          'describe': 1,\n",
      "          'film': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'time': 7,\n",
      "          'year': 5,\n",
      "          'nin': 4,\n",
      "          'like': 4,\n",
      "          'talking': 4,\n",
      "          'mission': 4,\n",
      "          'eraser': 4,\n",
      "          'arnold': 4,\n",
      "          'gun': 4,\n",
      "          'n': 4,\n",
      "          'nits': 3,\n",
      "          'action': 3,\n",
      "          'nim': 3,\n",
      "          'course': 3,\n",
      "          'movies': 3,\n",
      "          'impossible': 3,\n",
      "          'get': 3,\n",
      "          'goes': 3,\n",
      "          'new': 3,\n",
      "          'lee': 3,\n",
      "          'people': 3,\n",
      "          'guess': 2,\n",
      "          'nthe': 2,\n",
      "          'one': 2,\n",
      "          'need': 2,\n",
      "          'even': 2,\n",
      "          'explosions': 2,\n",
      "          'also': 2,\n",
      "          'america': 2,\n",
      "          'summer': 2,\n",
      "          'thing': 2,\n",
      "          'threats': 2,\n",
      "          'flying': 2,\n",
      "          'guns': 2,\n",
      "          'wait': 2,\n",
      "          'crop': 2,\n",
      "          'im': 2,\n",
      "          'else': 2,\n",
      "          'soon': 2,\n",
      "          'us': 2,\n",
      "          'imitation': 2,\n",
      "          'lot': 2,\n",
      "          'witnesses': 2,\n",
      "          'whose': 2,\n",
      "          'evidence': 2,\n",
      "          'played': 2,\n",
      "          'good': 2,\n",
      "          'robert': 2,\n",
      "          'system': 2,\n",
      "          'isnt': 2,\n",
      "          'everyone': 2,\n",
      "          'heart': 2,\n",
      "          'pretty': 2,\n",
      "          'made': 2,\n",
      "          'well': 1,\n",
      "          'craftors': 1,\n",
      "          'exonerated': 1,\n",
      "          'try': 1,\n",
      "          'writing': 1,\n",
      "          'script': 1,\n",
      "          'dialogue': 1,\n",
      "          'best': 1,\n",
      "          'handful': 1,\n",
      "          'existing': 1,\n",
      "          'bigtime': 1,\n",
      "          'hollywood': 1,\n",
      "          'mr': 1,\n",
      "          'heroes': 1,\n",
      "          'dust': 1,\n",
      "          'miniscule': 1,\n",
      "          'vocabularies': 1,\n",
      "          'pull': 1,\n",
      "          'black': 1,\n",
      "          'vests': 1,\n",
      "          'charge': 1,\n",
      "          'onto': 1,\n",
      "          'screens': 1,\n",
      "          'tersely': 1,\n",
      "          'expirating': 1,\n",
      "          'hope': 1,\n",
      "          'become': 1,\n",
      "          'memorable': 1,\n",
      "          'catchphrases': 1,\n",
      "          'call': 1,\n",
      "          'happens': 1,\n",
      "          'every': 1,\n",
      "          'nand': 1,\n",
      "          'maybe': 1,\n",
      "          'exposure': 1,\n",
      "          'nasty': 1,\n",
      "          'sun': 1,\n",
      "          'process': 1,\n",
      "          'normally': 1,\n",
      "          'weak': 1,\n",
      "          'insipid': 1,\n",
      "          'lines': 1,\n",
      "          'consider': 1,\n",
      "          'divorce': 1,\n",
      "          'hasta': 1,\n",
      "          'la': 1,\n",
      "          'vista': 1,\n",
      "          'baby': 1,\n",
      "          'youre': 1,\n",
      "          'disease': 1,\n",
      "          'cure': 1,\n",
      "          'actually': 1,\n",
      "          'end': 1,\n",
      "          'repeated': 1,\n",
      "          'often': 1,\n",
      "          'phrases': 1,\n",
      "          'book': 1,\n",
      "          'biblical': 1,\n",
      "          'proverbs': 1,\n",
      "          'nthis': 1,\n",
      "          'entirely': 1,\n",
      "          'bad': 1,\n",
      "          'nwhat': 1,\n",
      "          'blockbusters': 1,\n",
      "          'thrillers': 1,\n",
      "          'thisobviouslycostalotsoyouknow': 1,\n",
      "          'everyonesgoingtogo': 1,\n",
      "          'gas': 1,\n",
      "          'saucers': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'rash': 1,\n",
      "          'big': 1,\n",
      "          'nmine': 1,\n",
      "          'bigger': 1,\n",
      "          'usual': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'boymeetsfishandsavesenvironment': 1,\n",
      "          'whale': 1,\n",
      "          'whatever': 1,\n",
      "          'odd': 1,\n",
      "          'savetheworldfromaliensorenvironment': 1,\n",
      "          'offerings': 1,\n",
      "          'three': 1,\n",
      "          'batmans': 1,\n",
      "          'speeds': 1,\n",
      "          'terminators': 1,\n",
      "          'etc': 1,\n",
      "          'twister': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'arrival': 1,\n",
      "          'rock': 1,\n",
      "          'nhere': 1,\n",
      "          'singapore': 1,\n",
      "          'local': 1,\n",
      "          'critics': 1,\n",
      "          'whine': 1,\n",
      "          'seem': 1,\n",
      "          'pick': 1,\n",
      "          'explosion': 1,\n",
      "          'reallooking': 1,\n",
      "          'nothing': 1,\n",
      "          'nmission': 1,\n",
      "          'opened': 1,\n",
      "          'theatres': 1,\n",
      "          'almost': 1,\n",
      "          'unfortunate': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'coming': 1,\n",
      "          'magazine': 1,\n",
      "          'recently': 1,\n",
      "          'called': 1,\n",
      "          'unavoidable': 1,\n",
      "          'account': 1,\n",
      "          'worldwide': 1,\n",
      "          'megaadvertising': 1,\n",
      "          'blitz': 1,\n",
      "          'seems': 1,\n",
      "          'cheaper': 1,\n",
      "          'less': 1,\n",
      "          'thoughtful': 1,\n",
      "          'nthats': 1,\n",
      "          'saying': 1,\n",
      "          'mi': 1,\n",
      "          'already': 1,\n",
      "          'cheap': 1,\n",
      "          'thoughtless': 1,\n",
      "          'tv': 1,\n",
      "          'originator': 1,\n",
      "          '60s70s': 1,\n",
      "          'arnie': 1,\n",
      "          'federal': 1,\n",
      "          'marshall': 1,\n",
      "          'relocates': 1,\n",
      "          'trial': 1,\n",
      "          'testimonies': 1,\n",
      "          'place': 1,\n",
      "          'lives': 1,\n",
      "          'danger': 1,\n",
      "          'nhe': 1,\n",
      "          'destroying': 1,\n",
      "          'present': 1,\n",
      "          'existence': 1,\n",
      "          'resituating': 1,\n",
      "          'identities': 1,\n",
      "          'nhis': 1,\n",
      "          'case': 1,\n",
      "          'cullen': 1,\n",
      "          'vanessa': 1,\n",
      "          'williams': 1,\n",
      "          'unlike': 1,\n",
      "          'scumbags': 1,\n",
      "          'hes': 1,\n",
      "          'ever': 1,\n",
      "          'relocated': 1,\n",
      "          'actual': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'honest': 1,\n",
      "          'person': 1,\n",
      "          'nbecause': 1,\n",
      "          'shes': 1,\n",
      "          'nice': 1,\n",
      "          'legs': 1,\n",
      "          'spends': 1,\n",
      "          'whole': 1,\n",
      "          'trying': 1,\n",
      "          'protect': 1,\n",
      "          'uses': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'save': 1,\n",
      "          'pastorelli': 1,\n",
      "          'killers': 1,\n",
      "          'nlee': 1,\n",
      "          'obtains': 1,\n",
      "          'hightechnology': 1,\n",
      "          'weapons': 1,\n",
      "          'company': 1,\n",
      "          'works': 1,\n",
      "          'secretly': 1,\n",
      "          'selling': 1,\n",
      "          'sophisticated': 1,\n",
      "          'blackmarket': 1,\n",
      "          'arms': 1,\n",
      "          'foreign': 1,\n",
      "          'accents': 1,\n",
      "          'stringy': 1,\n",
      "          'hair': 1,\n",
      "          'nof': 1,\n",
      "          'formula': 1,\n",
      "          'revealing': 1,\n",
      "          'information': 1,\n",
      "          'destroy': 1,\n",
      "          'know': 1,\n",
      "          'heck': 1,\n",
      "          'high': 1,\n",
      "          'places': 1,\n",
      "          'go': 1,\n",
      "          'yes': 1,\n",
      "          'biggest': 1,\n",
      "          'conspiracy': 1,\n",
      "          'history': 1,\n",
      "          'world': 1,\n",
      "          'since': 1,\n",
      "          'watergate': 1,\n",
      "          'protecting': 1,\n",
      "          'framed': 1,\n",
      "          'mentorturnedevil': 1,\n",
      "          'deguerin': 1,\n",
      "          'nicely': 1,\n",
      "          'james': 1,\n",
      "          'caan': 1,\n",
      "          'ends': 1,\n",
      "          'prove': 1,\n",
      "          'killing': 1,\n",
      "          'programmes': 1,\n",
      "          'addition': 1,\n",
      "          'making': 1,\n",
      "          'sure': 1,\n",
      "          'accidentally': 1,\n",
      "          'torpedoed': 1,\n",
      "          'death': 1,\n",
      "          'green': 1,\n",
      "          'enemies': 1,\n",
      "          'around': 1,\n",
      "          'theatre': 1,\n",
      "          'starting': 1,\n",
      "          'humming': 1,\n",
      "          'theme': 1,\n",
      "          'arnies': 1,\n",
      "          'includes': 1,\n",
      "          'breaking': 1,\n",
      "          'highsecurity': 1,\n",
      "          'building': 1,\n",
      "          'run': 1,\n",
      "          'disk': 1,\n",
      "          'ni': 1,\n",
      "          'tell': 1,\n",
      "          'particular': 1,\n",
      "          'antsy': 1,\n",
      "          'electromagnetic': 1,\n",
      "          'pulse': 1,\n",
      "          'fires': 1,\n",
      "          'aluminium': 1,\n",
      "          'missiles': 1,\n",
      "          'see': 1,\n",
      "          'walls': 1,\n",
      "          'nit': 1,\n",
      "          'sort': 1,\n",
      "          'xray': 1,\n",
      "          'vision': 1,\n",
      "          'user': 1,\n",
      "          'target': 1,\n",
      "          'victims': 1,\n",
      "          'great': 1,\n",
      "          'distances': 1,\n",
      "          'ndespite': 1,\n",
      "          'figure': 1,\n",
      "          'cool': 1,\n",
      "          'feature': 1,\n",
      "          'though': 1,\n",
      "          'certainly': 1,\n",
      "          'expert': 1,\n",
      "          'however': 1,\n",
      "          'targeted': 1,\n",
      "          'number': 1,\n",
      "          'times': 1,\n",
      "          'never': 1,\n",
      "          '10': 1,\n",
      "          'feet': 1,\n",
      "          'backwards': 1,\n",
      "          'twofoot': 1,\n",
      "          'missile': 1,\n",
      "          'chest': 1,\n",
      "          'others': 1,\n",
      "          'shot': 1,\n",
      "          'ninstead': 1,\n",
      "          'outruns': 1,\n",
      "          'outsmarts': 1,\n",
      "          'trackers': 1,\n",
      "          'giving': 1,\n",
      "          'eery': 1,\n",
      "          'ironic': 1,\n",
      "          'resonance': 1,\n",
      "          'terminator': 1,\n",
      "          'line': 1,\n",
      "          'practically': 1,\n",
      "          'famous': 1,\n",
      "          'ill': 1,\n",
      "          'back': 1,\n",
      "          'nlike': 1,\n",
      "          'theater': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'trailers': 1,\n",
      "          'duped': 1,\n",
      "          'want': 1,\n",
      "          'watch': 1,\n",
      "          'voluntarily': 1,\n",
      "          'nalthough': 1,\n",
      "          'violence': 1,\n",
      "          'mention': 1,\n",
      "          'mutilation': 1,\n",
      "          'bloody': 1,\n",
      "          'tussles': 1,\n",
      "          'alligators': 1,\n",
      "          'recommend': 1,\n",
      "          'over18s': 1,\n",
      "          'therapeutic': 1,\n",
      "          'mindless': 1,\n",
      "          'weirdness': 1,\n",
      "          'fargo': 1,\n",
      "          'hangover': 1,\n",
      "          'effect': 1,\n",
      "          'leaving': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'nreviews': 1,\n",
      "          'rating': 1,\n",
      "          'video': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'spy': 3,\n",
      "          'nielsen': 3,\n",
      "          'airplane': 2,\n",
      "          'secret': 2,\n",
      "          'naked': 2,\n",
      "          'gun': 2,\n",
      "          'shots': 2,\n",
      "          'hard': 2,\n",
      "          'spoof': 2,\n",
      "          'nleslie': 2,\n",
      "          'nthe': 2,\n",
      "          'gags': 2,\n",
      "          'etc': 2,\n",
      "          'weird': 2,\n",
      "          'rapidfire': 1,\n",
      "          'formula': 1,\n",
      "          'worked': 1,\n",
      "          'well': 1,\n",
      "          'police': 1,\n",
      "          'squad': 1,\n",
      "          'ntelevision': 1,\n",
      "          'series': 1,\n",
      "          'top': 1,\n",
      "          'three': 1,\n",
      "          'films': 1,\n",
      "          'two': 1,\n",
      "          'hot': 1,\n",
      "          'nmovies': 1,\n",
      "          'finally': 1,\n",
      "          'reached': 1,\n",
      "          'desperate': 1,\n",
      "          'deadend': 1,\n",
      "          'neven': 1,\n",
      "          'ezio': 1,\n",
      "          'gregios': 1,\n",
      "          'silence': 1,\n",
      "          'hams': 1,\n",
      "          'arguably': 1,\n",
      "          'funnier': 1,\n",
      "          'overextended': 1,\n",
      "          'actionmovie': 1,\n",
      "          'stars': 1,\n",
      "          'agent': 1,\n",
      "          'wd40': 1,\n",
      "          'returns': 1,\n",
      "          'retirement': 1,\n",
      "          'battle': 1,\n",
      "          'old': 1,\n",
      "          'nemesis': 1,\n",
      "          'general': 1,\n",
      "          'rancor': 1,\n",
      "          'cackling': 1,\n",
      "          'andy': 1,\n",
      "          'griffith': 1,\n",
      "          'jokes': 1,\n",
      "          'fly': 1,\n",
      "          'every': 1,\n",
      "          'direction': 1,\n",
      "          'hardly': 1,\n",
      "          'hint': 1,\n",
      "          'restraint': 1,\n",
      "          'timing': 1,\n",
      "          'tact': 1,\n",
      "          'nmost': 1,\n",
      "          'comprised': 1,\n",
      "          'recycled': 1,\n",
      "          'recreated': 1,\n",
      "          'sequences': 1,\n",
      "          'soggy': 1,\n",
      "          'star': 1,\n",
      "          'cameos': 1,\n",
      "          'nyeah': 1,\n",
      "          'maybe': 1,\n",
      "          'need': 1,\n",
      "          'ray': 1,\n",
      "          'charles': 1,\n",
      "          'driving': 1,\n",
      "          'l': 1,\n",
      "          'bus': 1,\n",
      "          'bound': 1,\n",
      "          'speed': 1,\n",
      "          'bump': 1,\n",
      "          'mr': 1,\n",
      "          'hulk': 1,\n",
      "          'hogan': 1,\n",
      "          'dr': 1,\n",
      "          'joyce': 1,\n",
      "          'brothers': 1,\n",
      "          'also': 1,\n",
      "          'appear': 1,\n",
      "          'plays': 1,\n",
      "          'straight': 1,\n",
      "          'usual': 1,\n",
      "          'dopey': 1,\n",
      "          'flair': 1,\n",
      "          'nthere': 1,\n",
      "          'something': 1,\n",
      "          'oddly': 1,\n",
      "          'inspiring': 1,\n",
      "          'sight': 1,\n",
      "          'wearing': 1,\n",
      "          'nuns': 1,\n",
      "          'habit': 1,\n",
      "          'even': 1,\n",
      "          'resulting': 1,\n",
      "          'sister': 1,\n",
      "          'act': 1,\n",
      "          'silly': 1,\n",
      "          'nas': 1,\n",
      "          'bits': 1,\n",
      "          'directly': 1,\n",
      "          'lifted': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          'adolescent': 1,\n",
      "          'males': 1,\n",
      "          'might': 1,\n",
      "          'enjoy': 1,\n",
      "          'mess': 1,\n",
      "          'tho': 1,\n",
      "          'butt': 1,\n",
      "          'breast': 1,\n",
      "          'peeks': 1,\n",
      "          'penis': 1,\n",
      "          'pokes': 1,\n",
      "          'flatulence': 1,\n",
      "          'related': 1,\n",
      "          'innuendo': 1,\n",
      "          'right': 1,\n",
      "          'beavis': 1,\n",
      "          'buttheads': 1,\n",
      "          'alley': 1,\n",
      "          'nbeyond': 1,\n",
      "          'hilarious': 1,\n",
      "          'title': 1,\n",
      "          'sequence': 1,\n",
      "          'al': 1,\n",
      "          'yankovich': 1,\n",
      "          'performing': 1,\n",
      "          'theme': 1,\n",
      "          'song': 1,\n",
      "          'barely': 1,\n",
      "          'stock': 1,\n",
      "          'printed': 1,\n",
      "          'nmy': 1,\n",
      "          'recommendation': 1,\n",
      "          'duck': 1,\n",
      "          'youre': 1,\n",
      "          'waiting': 1,\n",
      "          'another': 1,\n",
      "          'start': 1,\n",
      "          'nstay': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'see': 1,\n",
      "          'camera': 1,\n",
      "          'dart': 1,\n",
      "          'inside': 1,\n",
      "          'als': 1,\n",
      "          'nostril': 1,\n",
      "          'leave': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'miss': 1,\n",
      "          'thing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'leo': 6,\n",
      "          'tim': 5,\n",
      "          'apes': 5,\n",
      "          'burton': 4,\n",
      "          'planet': 4,\n",
      "          'like': 4,\n",
      "          'monkey': 3,\n",
      "          'ni': 3,\n",
      "          'could': 3,\n",
      "          'original': 3,\n",
      "          'chuck': 3,\n",
      "          'nleo': 3,\n",
      "          'another': 3,\n",
      "          'named': 3,\n",
      "          'human': 3,\n",
      "          'neven': 3,\n",
      "          'director': 2,\n",
      "          'studio': 2,\n",
      "          'name': 2,\n",
      "          'force': 2,\n",
      "          'heston': 2,\n",
      "          'one': 2,\n",
      "          'career': 2,\n",
      "          'watch': 2,\n",
      "          'big': 2,\n",
      "          'nthis': 2,\n",
      "          'plays': 2,\n",
      "          'braveheart': 2,\n",
      "          'crew': 2,\n",
      "          'search': 2,\n",
      "          'storms': 2,\n",
      "          'ship': 2,\n",
      "          'find': 2,\n",
      "          'wormhole': 2,\n",
      "          'ari': 2,\n",
      "          'nthe': 2,\n",
      "          'action': 2,\n",
      "          'directed': 2,\n",
      "          'completed': 1,\n",
      "          'evolution': 1,\n",
      "          'brilliant': 1,\n",
      "          'macabre': 1,\n",
      "          'stories': 1,\n",
      "          'outcast': 1,\n",
      "          'individuals': 1,\n",
      "          'yearning': 1,\n",
      "          'acceptance': 1,\n",
      "          'whose': 1,\n",
      "          'used': 1,\n",
      "          'part': 1,\n",
      "          'multitiered': 1,\n",
      "          'marketing': 1,\n",
      "          'materials': 1,\n",
      "          'crap': 1,\n",
      "          'movies': 1,\n",
      "          'nand': 1,\n",
      "          'hits': 1,\n",
      "          'rock': 1,\n",
      "          'bottom': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'latest': 1,\n",
      "          'interpretation': 1,\n",
      "          'pierre': 1,\n",
      "          'boulles': 1,\n",
      "          'classic': 1,\n",
      "          'novel': 1,\n",
      "          'mean': 1,\n",
      "          'top': 1,\n",
      "          'impact': 1,\n",
      "          'intelligently': 1,\n",
      "          'coscripted': 1,\n",
      "          'rod': 1,\n",
      "          'serling': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'fame': 1,\n",
      "          'combined': 1,\n",
      "          'overbearing': 1,\n",
      "          'growling': 1,\n",
      "          'yelling': 1,\n",
      "          'damn': 1,\n",
      "          'dirty': 1,\n",
      "          'best': 1,\n",
      "          'roles': 1,\n",
      "          'nsadly': 1,\n",
      "          'sat': 1,\n",
      "          'burtons': 1,\n",
      "          'version': 1,\n",
      "          'within': 1,\n",
      "          'first': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'checking': 1,\n",
      "          'girlfriend': 1,\n",
      "          'fan': 1,\n",
      "          'started': 1,\n",
      "          'nod': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'story': 1,\n",
      "          'cross': 1,\n",
      "          'enemy': 1,\n",
      "          'mine': 1,\n",
      "          'project': 1,\n",
      "          'x': 1,\n",
      "          'marky': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'enjoyable': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'corrupter': 1,\n",
      "          'davidson': 1,\n",
      "          'hot': 1,\n",
      "          'shot': 1,\n",
      "          'u': 1,\n",
      "          'air': 1,\n",
      "          'pilot': 1,\n",
      "          'mysterious': 1,\n",
      "          'magnetic': 1,\n",
      "          'real': 1,\n",
      "          'explanation': 1,\n",
      "          'given': 1,\n",
      "          'sends': 1,\n",
      "          'genetically': 1,\n",
      "          'altered': 1,\n",
      "          'smart': 1,\n",
      "          'chimps': 1,\n",
      "          'collect': 1,\n",
      "          'data': 1,\n",
      "          'lose': 1,\n",
      "          'communication': 1,\n",
      "          'chimp': 1,\n",
      "          'hops': 1,\n",
      "          'hes': 1,\n",
      "          'thrown': 1,\n",
      "          'type': 1,\n",
      "          'timespace': 1,\n",
      "          'crashes': 1,\n",
      "          'lands': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'backlot': 1,\n",
      "          'mocked': 1,\n",
      "          'look': 1,\n",
      "          'amazon': 1,\n",
      "          'jungle': 1,\n",
      "          'ends': 1,\n",
      "          'getting': 1,\n",
      "          'captured': 1,\n",
      "          'group': 1,\n",
      "          'talking': 1,\n",
      "          'sold': 1,\n",
      "          'slave': 1,\n",
      "          'trader': 1,\n",
      "          'limbo': 1,\n",
      "          'paul': 1,\n",
      "          'giamatti': 1,\n",
      "          'turn': 1,\n",
      "          'sells': 1,\n",
      "          'chimpanzee': 1,\n",
      "          'helena': 1,\n",
      "          'bonham': 1,\n",
      "          'carter': 1,\n",
      "          'kind': 1,\n",
      "          'helps': 1,\n",
      "          'fellow': 1,\n",
      "          'humans': 1,\n",
      "          'escape': 1,\n",
      "          'mountains': 1,\n",
      "          'leos': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'monkeys': 1,\n",
      "          'played': 1,\n",
      "          'roth': 1,\n",
      "          'overacting': 1,\n",
      "          'role': 1,\n",
      "          'vicious': 1,\n",
      "          'general': 1,\n",
      "          'thade': 1,\n",
      "          'michael': 1,\n",
      "          'clarke': 1,\n",
      "          'duncan': 1,\n",
      "          'enhances': 1,\n",
      "          'playing': 1,\n",
      "          'heavy': 1,\n",
      "          'bad': 1,\n",
      "          'movie': 1,\n",
      "          'strive': 1,\n",
      "          'hunt': 1,\n",
      "          'band': 1,\n",
      "          'savages': 1,\n",
      "          'battlefield': 1,\n",
      "          'earth': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'culminates': 1,\n",
      "          'ripoff': 1,\n",
      "          'versus': 1,\n",
      "          'ape': 1,\n",
      "          'battle': 1,\n",
      "          'scene': 1,\n",
      "          'nwhile': 1,\n",
      "          'rick': 1,\n",
      "          'bakers': 1,\n",
      "          'makeup': 1,\n",
      "          'work': 1,\n",
      "          'amazing': 1,\n",
      "          'script': 1,\n",
      "          'pathetic': 1,\n",
      "          'hodgepodge': 1,\n",
      "          'courtesy': 1,\n",
      "          'three': 1,\n",
      "          'writers': 1,\n",
      "          'acting': 1,\n",
      "          'horrible': 1,\n",
      "          'surprise': 1,\n",
      "          'ending': 1,\n",
      "          'feels': 1,\n",
      "          'swing': 1,\n",
      "          'ballpeen': 1,\n",
      "          'hammer': 1,\n",
      "          'temple': 1,\n",
      "          'nwahlberg': 1,\n",
      "          'physical': 1,\n",
      "          'mental': 1,\n",
      "          'presence': 1,\n",
      "          'carry': 1,\n",
      "          'sequences': 1,\n",
      "          'remake': 1,\n",
      "          'reinterpretation': 1,\n",
      "          'proclaimed': 1,\n",
      "          'insult': 1,\n",
      "          'intelligence': 1,\n",
      "          'wit': 1,\n",
      "          'ethical': 1,\n",
      "          'arguments': 1,\n",
      "          'equality': 1,\n",
      "          'species': 1,\n",
      "          'fascism': 1,\n",
      "          'military': 1,\n",
      "          'buildup': 1,\n",
      "          'replaced': 1,\n",
      "          'tremendous': 1,\n",
      "          'amounts': 1,\n",
      "          'ridiculous': 1,\n",
      "          'dialogue': 1,\n",
      "          'unimaginative': 1,\n",
      "          'narrative': 1,\n",
      "          'structure': 1,\n",
      "          'romance': 1,\n",
      "          'hestons': 1,\n",
      "          'antigun': 1,\n",
      "          'tirade': 1,\n",
      "          'de': 1,\n",
      "          'rigeur': 1,\n",
      "          'cameo': 1,\n",
      "          'seems': 1,\n",
      "          'shallow': 1,\n",
      "          'jokey': 1,\n",
      "          'nbut': 1,\n",
      "          'main': 1,\n",
      "          'element': 1,\n",
      "          'missing': 1,\n",
      "          'though': 1,\n",
      "          'plastered': 1,\n",
      "          'across': 1,\n",
      "          'every': 1,\n",
      "          'billboard': 1,\n",
      "          'america': 1,\n",
      "          'john': 1,\n",
      "          'badham': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'nhe': 1,\n",
      "          'probably': 1,\n",
      "          'nburtons': 1,\n",
      "          'predominant': 1,\n",
      "          'themes': 1,\n",
      "          'rejection': 1,\n",
      "          'isolation': 1,\n",
      "          'ones': 1,\n",
      "          'place': 1,\n",
      "          'universe': 1,\n",
      "          'seen': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'edward': 1,\n",
      "          'scissorshands': 1,\n",
      "          'peewees': 1,\n",
      "          'adventure': 1,\n",
      "          'completely': 1,\n",
      "          'absent': 1,\n",
      "          'suppose': 1,\n",
      "          'thats': 1,\n",
      "          'happen': 1,\n",
      "          'great': 1,\n",
      "          'gets': 1,\n",
      "          'sucked': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'school': 5,\n",
      "          'teacher': 4,\n",
      "          'really': 4,\n",
      "          'n': 4,\n",
      "          'movie': 3,\n",
      "          'pretty': 3,\n",
      "          'shale': 3,\n",
      "          'friend': 3,\n",
      "          'high': 3,\n",
      "          'gets': 3,\n",
      "          'wait': 3,\n",
      "          'premise': 2,\n",
      "          'farfetched': 2,\n",
      "          'buddies': 2,\n",
      "          'job': 2,\n",
      "          'girl': 2,\n",
      "          'miami': 2,\n",
      "          'might': 2,\n",
      "          'nthe': 2,\n",
      "          'drug': 2,\n",
      "          'dealers': 2,\n",
      "          'gang': 2,\n",
      "          'one': 2,\n",
      "          'story': 2,\n",
      "          'homeboys': 2,\n",
      "          'noh': 2,\n",
      "          'nbut': 2,\n",
      "          'nand': 2,\n",
      "          'kod': 2,\n",
      "          'good': 2,\n",
      "          'together': 2,\n",
      "          'stuff': 2,\n",
      "          'nif': 2,\n",
      "          'action': 2,\n",
      "          'truly': 2,\n",
      "          'huge': 2,\n",
      "          'without': 2,\n",
      "          'well': 1,\n",
      "          'ntom': 1,\n",
      "          'berenger': 1,\n",
      "          'plays': 1,\n",
      "          'mercenary': 1,\n",
      "          'temporarily': 1,\n",
      "          'work': 1,\n",
      "          'fools': 1,\n",
      "          'cia': 1,\n",
      "          'denied': 1,\n",
      "          'existence': 1,\n",
      "          'botched': 1,\n",
      "          'cuba': 1,\n",
      "          'nfortunately': 1,\n",
      "          'diane': 1,\n",
      "          'venora': 1,\n",
      "          'christopher': 1,\n",
      "          'columbus': 1,\n",
      "          'knee': 1,\n",
      "          'cap': 1,\n",
      "          'broken': 1,\n",
      "          'disgruntled': 1,\n",
      "          'student': 1,\n",
      "          'creating': 1,\n",
      "          'opening': 1,\n",
      "          'substitute': 1,\n",
      "          'nnot': 1,\n",
      "          'telling': 1,\n",
      "          'object': 1,\n",
      "          'pedagogical': 1,\n",
      "          'grounds': 1,\n",
      "          'creates': 1,\n",
      "          'number': 1,\n",
      "          'fake': 1,\n",
      "          'higher': 1,\n",
      "          'degrees': 1,\n",
      "          'yale': 1,\n",
      "          'harvard': 1,\n",
      "          'princeton': 1,\n",
      "          'et': 1,\n",
      "          'al': 1,\n",
      "          'begins': 1,\n",
      "          'tenure': 1,\n",
      "          'students': 1,\n",
      "          'junkies': 1,\n",
      "          'members': 1,\n",
      "          'sleazy': 1,\n",
      "          'sluts': 1,\n",
      "          'icepick': 1,\n",
      "          'wielders': 1,\n",
      "          'nget': 1,\n",
      "          'picture': 1,\n",
      "          'dont': 1,\n",
      "          'take': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'hits': 1,\n",
      "          'face': 1,\n",
      "          'breaks': 1,\n",
      "          'fingers': 1,\n",
      "          'nthis': 1,\n",
      "          'attention': 1,\n",
      "          'certain': 1,\n",
      "          'extent': 1,\n",
      "          'tells': 1,\n",
      "          'vietnam': 1,\n",
      "          'war': 1,\n",
      "          'see': 1,\n",
      "          'north': 1,\n",
      "          'tried': 1,\n",
      "          'muscle': 1,\n",
      "          'turf': 1,\n",
      "          'south': 1,\n",
      "          'yeah': 1,\n",
      "          'dig': 1,\n",
      "          'problem': 1,\n",
      "          'nobody': 1,\n",
      "          'ever': 1,\n",
      "          'explained': 1,\n",
      "          'properly': 1,\n",
      "          'nthere': 1,\n",
      "          'drugs': 1,\n",
      "          'dealt': 1,\n",
      "          'behind': 1,\n",
      "          'whole': 1,\n",
      "          'scheme': 1,\n",
      "          'cahoots': 1,\n",
      "          'head': 1,\n",
      "          'cod': 1,\n",
      "          'knights': 1,\n",
      "          'destruction': 1,\n",
      "          'none': 1,\n",
      "          'nupright': 1,\n",
      "          'excop': 1,\n",
      "          'principal': 1,\n",
      "          'played': 1,\n",
      "          'forgotten': 1,\n",
      "          'ghostbuster': 1,\n",
      "          'ernie': 1,\n",
      "          'hudson': 1,\n",
      "          'nso': 1,\n",
      "          'would': 1,\n",
      "          'nhe': 1,\n",
      "          'gather': 1,\n",
      "          'bunch': 1,\n",
      "          'bazookas': 1,\n",
      "          'major': 1,\n",
      "          'weapons': 1,\n",
      "          'explosives': 1,\n",
      "          'cool': 1,\n",
      "          'like': 1,\n",
      "          'big': 1,\n",
      "          'showdown': 1,\n",
      "          'nok': 1,\n",
      "          'downright': 1,\n",
      "          'dumb': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'comedy': 1,\n",
      "          'accept': 1,\n",
      "          'takes': 1,\n",
      "          'far': 1,\n",
      "          'seriously': 1,\n",
      "          'fun': 1,\n",
      "          'moments': 1,\n",
      "          'hate': 1,\n",
      "          'amounts': 1,\n",
      "          'cocaine': 1,\n",
      "          'delivered': 1,\n",
      "          'busses': 1,\n",
      "          'fair': 1,\n",
      "          'almost': 1,\n",
      "          'never': 1,\n",
      "          'boring': 1,\n",
      "          'interrupted': 1,\n",
      "          'short': 1,\n",
      "          'sequences': 1,\n",
      "          'actual': 1,\n",
      "          'much': 1,\n",
      "          'madefortv': 1,\n",
      "          'bigger': 1,\n",
      "          'explosions': 1,\n",
      "          'foul': 1,\n",
      "          'language': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'reminded': 1,\n",
      "          'vice': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'babes': 1,\n",
      "          'skimpy': 1,\n",
      "          'bikinis': 1,\n",
      "          'pastels': 1,\n",
      "          'sneak': 1,\n",
      "          'theater': 1,\n",
      "          'paying': 1,\n",
      "          'go': 1,\n",
      "          'notherwise': 1,\n",
      "          'video': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'bring': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'franklin': 10,\n",
      "          'money': 7,\n",
      "          'talks': 7,\n",
      "          'james': 6,\n",
      "          'one': 5,\n",
      "          'good': 4,\n",
      "          'movie': 4,\n",
      "          'nbut': 4,\n",
      "          'tucker': 3,\n",
      "          'get': 3,\n",
      "          'role': 3,\n",
      "          'nthe': 3,\n",
      "          'nand': 3,\n",
      "          'guys': 2,\n",
      "          'funny': 2,\n",
      "          'turn': 2,\n",
      "          'least': 2,\n",
      "          'new': 2,\n",
      "          'people': 2,\n",
      "          'see': 2,\n",
      "          'could': 2,\n",
      "          'make': 2,\n",
      "          'also': 2,\n",
      "          'thing': 2,\n",
      "          'two': 2,\n",
      "          'story': 2,\n",
      "          'ntuckers': 2,\n",
      "          'los': 2,\n",
      "          'angeles': 2,\n",
      "          'finds': 2,\n",
      "          'bus': 2,\n",
      "          'picture': 2,\n",
      "          'nthis': 2,\n",
      "          'grace': 2,\n",
      "          'parents': 2,\n",
      "          'tuckers': 2,\n",
      "          'conviction': 2,\n",
      "          'scene': 2,\n",
      "          'chris': 1,\n",
      "          'immediately': 1,\n",
      "          'reaction': 1,\n",
      "          'either': 1,\n",
      "          'find': 1,\n",
      "          'helium': 1,\n",
      "          'voice': 1,\n",
      "          'crazy': 1,\n",
      "          'eyes': 1,\n",
      "          'jerky': 1,\n",
      "          'mannerisms': 1,\n",
      "          'annoying': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'fall': 1,\n",
      "          'former': 1,\n",
      "          'category': 1,\n",
      "          'im': 1,\n",
      "          'thought': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'prancing': 1,\n",
      "          'princelike': 1,\n",
      "          'deejay': 1,\n",
      "          'complete': 1,\n",
      "          'inspired': 1,\n",
      "          'lunacy': 1,\n",
      "          'bit': 1,\n",
      "          'aggravating': 1,\n",
      "          'vehicle': 1,\n",
      "          'doesnt': 1,\n",
      "          'service': 1,\n",
      "          'ntucker': 1,\n",
      "          'kind': 1,\n",
      "          'film': 1,\n",
      "          'big': 1,\n",
      "          'star': 1,\n",
      "          'hes': 1,\n",
      "          'really': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'shock': 1,\n",
      "          'beyond': 1,\n",
      "          'recognition': 1,\n",
      "          'toy': 1,\n",
      "          'writers': 1,\n",
      "          'penned': 1,\n",
      "          'sloppy': 1,\n",
      "          'script': 1,\n",
      "          'hatchett': 1,\n",
      "          'petty': 1,\n",
      "          'con': 1,\n",
      "          'artist': 1,\n",
      "          'whose': 1,\n",
      "          'carwash': 1,\n",
      "          'scams': 1,\n",
      "          'dogged': 1,\n",
      "          'investigative': 1,\n",
      "          'reporter': 1,\n",
      "          'russell': 1,\n",
      "          'charlie': 1,\n",
      "          'sheen': 1,\n",
      "          'nafter': 1,\n",
      "          'busted': 1,\n",
      "          'job': 1,\n",
      "          'illegal': 1,\n",
      "          'business': 1,\n",
      "          'involving': 1,\n",
      "          'counterfeit': 1,\n",
      "          'passports': 1,\n",
      "          'county': 1,\n",
      "          'jail': 1,\n",
      "          'handcuffed': 1,\n",
      "          'slick': 1,\n",
      "          'international': 1,\n",
      "          'jewel': 1,\n",
      "          'smuggler': 1,\n",
      "          'raymond': 1,\n",
      "          'villard': 1,\n",
      "          'gerard': 1,\n",
      "          'ismael': 1,\n",
      "          'villards': 1,\n",
      "          'thugs': 1,\n",
      "          'blow': 1,\n",
      "          'attempt': 1,\n",
      "          'free': 1,\n",
      "          'leader': 1,\n",
      "          'never': 1,\n",
      "          'mind': 1,\n",
      "          'explosion': 1,\n",
      "          'instead': 1,\n",
      "          'killed': 1,\n",
      "          'joined': 1,\n",
      "          'wrist': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'allowed': 1,\n",
      "          'escape': 1,\n",
      "          'well': 1,\n",
      "          'overhearing': 1,\n",
      "          'important': 1,\n",
      "          'information': 1,\n",
      "          'regarding': 1,\n",
      "          'diamond': 1,\n",
      "          'stash': 1,\n",
      "          'reason': 1,\n",
      "          'another': 1,\n",
      "          'hidden': 1,\n",
      "          'vintage': 1,\n",
      "          'roadster': 1,\n",
      "          'waiting': 1,\n",
      "          'auctioned': 1,\n",
      "          'upcoming': 1,\n",
      "          'auto': 1,\n",
      "          'expo': 1,\n",
      "          'local': 1,\n",
      "          'media': 1,\n",
      "          'mistakenly': 1,\n",
      "          'puts': 1,\n",
      "          'prison': 1,\n",
      "          'breakout': 1,\n",
      "          'blame': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'nhe': 1,\n",
      "          'makes': 1,\n",
      "          'deal': 1,\n",
      "          'protect': 1,\n",
      "          'gives': 1,\n",
      "          'exclusive': 1,\n",
      "          'interview': 1,\n",
      "          'means': 1,\n",
      "          'must': 1,\n",
      "          'present': 1,\n",
      "          'friend': 1,\n",
      "          'stickiest': 1,\n",
      "          'situations': 1,\n",
      "          'formal': 1,\n",
      "          'dinner': 1,\n",
      "          'party': 1,\n",
      "          'fiancee': 1,\n",
      "          'heather': 1,\n",
      "          'locklear': 1,\n",
      "          'attended': 1,\n",
      "          'uberrich': 1,\n",
      "          'veronica': 1,\n",
      "          'cartwright': 1,\n",
      "          'nicely': 1,\n",
      "          'game': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'course': 1,\n",
      "          'bad': 1,\n",
      "          'track': 1,\n",
      "          'try': 1,\n",
      "          'knock': 1,\n",
      "          'spars': 1,\n",
      "          'forms': 1,\n",
      "          'unlikely': 1,\n",
      "          'bond': 1,\n",
      "          'n': 1,\n",
      "          'aint': 1,\n",
      "          'buddy': 1,\n",
      "          'claim': 1,\n",
      "          'print': 1,\n",
      "          'ads': 1,\n",
      "          'nyeah': 1,\n",
      "          'right': 1,\n",
      "          'nactually': 1,\n",
      "          'better': 1,\n",
      "          'part': 1,\n",
      "          'oh': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'appears': 1,\n",
      "          'momentum': 1,\n",
      "          'cover': 1,\n",
      "          'entertaining': 1,\n",
      "          'ground': 1,\n",
      "          'mostly': 1,\n",
      "          'due': 1,\n",
      "          'presence': 1,\n",
      "          'spastic': 1,\n",
      "          'motormouth': 1,\n",
      "          'first': 1,\n",
      "          'leading': 1,\n",
      "          'imagine': 1,\n",
      "          'slightly': 1,\n",
      "          'lankier': 1,\n",
      "          'africanamerican': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'reliance': 1,\n",
      "          'wild': 1,\n",
      "          'rrated': 1,\n",
      "          'raunch': 1,\n",
      "          'rather': 1,\n",
      "          'pg13': 1,\n",
      "          'physical': 1,\n",
      "          'comedy': 1,\n",
      "          'idea': 1,\n",
      "          'assaults': 1,\n",
      "          'realize': 1,\n",
      "          'quickly': 1,\n",
      "          'overstated': 1,\n",
      "          'liveliness': 1,\n",
      "          'going': 1,\n",
      "          'lively': 1,\n",
      "          'actor': 1,\n",
      "          'alone': 1,\n",
      "          'successful': 1,\n",
      "          'nits': 1,\n",
      "          'easy': 1,\n",
      "          'pick': 1,\n",
      "          'everything': 1,\n",
      "          'wrong': 1,\n",
      "          'plot': 1,\n",
      "          'recycled': 1,\n",
      "          'buddybuddy': 1,\n",
      "          'comedythriller': 1,\n",
      "          'tripe': 1,\n",
      "          'seemed': 1,\n",
      "          'overused': 1,\n",
      "          'even': 1,\n",
      "          'nothing': 1,\n",
      "          'lose': 1,\n",
      "          'employed': 1,\n",
      "          'last': 1,\n",
      "          'month': 1,\n",
      "          'neverything': 1,\n",
      "          'paintbynumbers': 1,\n",
      "          'especially': 1,\n",
      "          'coliseum': 1,\n",
      "          'finale': 1,\n",
      "          'three': 1,\n",
      "          'separate': 1,\n",
      "          'enemy': 1,\n",
      "          'factions': 1,\n",
      "          'firing': 1,\n",
      "          'pursue': 1,\n",
      "          'bleachers': 1,\n",
      "          'villains': 1,\n",
      "          'many': 1,\n",
      "          'dull': 1,\n",
      "          'ncertain': 1,\n",
      "          'elements': 1,\n",
      "          'coincidental': 1,\n",
      "          'much': 1,\n",
      "          'films': 1,\n",
      "          'dramatic': 1,\n",
      "          'agenda': 1,\n",
      "          'played': 1,\n",
      "          'straight': 1,\n",
      "          'na': 1,\n",
      "          'confronts': 1,\n",
      "          'learning': 1,\n",
      "          'franklins': 1,\n",
      "          'true': 1,\n",
      "          'identity': 1,\n",
      "          'brought': 1,\n",
      "          'killer': 1,\n",
      "          'house': 1,\n",
      "          'nis': 1,\n",
      "          'extremely': 1,\n",
      "          'silly': 1,\n",
      "          'nyou': 1,\n",
      "          'nobviously': 1,\n",
      "          'pleasant': 1,\n",
      "          'experience': 1,\n",
      "          'around': 1,\n",
      "          'appeared': 1,\n",
      "          'riproaring': 1,\n",
      "          'time': 1,\n",
      "          'gentleman': 1,\n",
      "          'several': 1,\n",
      "          'rows': 1,\n",
      "          'behind': 1,\n",
      "          'chortled': 1,\n",
      "          'expressive': 1,\n",
      "          'began': 1,\n",
      "          'fearing': 1,\n",
      "          'health': 1,\n",
      "          'pretty': 1,\n",
      "          'guy': 1,\n",
      "          'aces': 1,\n",
      "          'movies': 1,\n",
      "          'best': 1,\n",
      "          'passes': 1,\n",
      "          'vic': 1,\n",
      "          'damones': 1,\n",
      "          'son': 1,\n",
      "          'graces': 1,\n",
      "          'engagement': 1,\n",
      "          'bash': 1,\n",
      "          'toasts': 1,\n",
      "          'couple': 1,\n",
      "          'barry': 1,\n",
      "          'white': 1,\n",
      "          'lyrics': 1,\n",
      "          'audience': 1,\n",
      "          'probably': 1,\n",
      "          'like': 1,\n",
      "          'nthose': 1,\n",
      "          'irritates': 1,\n",
      "          'however': 1,\n",
      "          'productive': 1,\n",
      "          'day': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'scraping': 1,\n",
      "          'gook': 1,\n",
      "          'toenails': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 16,\n",
      "          'action': 6,\n",
      "          'scenes': 4,\n",
      "          'nthe': 3,\n",
      "          'character': 3,\n",
      "          'something': 3,\n",
      "          'potential': 3,\n",
      "          'one': 3,\n",
      "          'plot': 3,\n",
      "          'director': 2,\n",
      "          'paul': 2,\n",
      "          'anderson': 2,\n",
      "          'fleeting': 2,\n",
      "          'growing': 2,\n",
      "          'military': 2,\n",
      "          'eyes': 2,\n",
      "          'little': 2,\n",
      "          'goes': 2,\n",
      "          'idea': 2,\n",
      "          'rather': 2,\n",
      "          'movie': 2,\n",
      "          'humanity': 2,\n",
      "          'done': 2,\n",
      "          'much': 2,\n",
      "          'bad': 2,\n",
      "          'aspect': 2,\n",
      "          'interesting': 2,\n",
      "          'performance': 2,\n",
      "          'enough': 2,\n",
      "          'nbut': 2,\n",
      "          'disappointment': 2,\n",
      "          'truly': 2,\n",
      "          'engaging': 2,\n",
      "          'nhowever': 2,\n",
      "          'combat': 2,\n",
      "          'big': 2,\n",
      "          'end': 2,\n",
      "          'type': 2,\n",
      "          'soldier': 1,\n",
      "          'presence': 1,\n",
      "          'originality': 1,\n",
      "          'best': 1,\n",
      "          'moments': 1,\n",
      "          'opning': 1,\n",
      "          'kurt': 1,\n",
      "          'russels': 1,\n",
      "          'todd': 1,\n",
      "          'shown': 1,\n",
      "          'strict': 1,\n",
      "          'supervision': 1,\n",
      "          'nbrutality': 1,\n",
      "          'innocent': 1,\n",
      "          'stripped': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'day': 1,\n",
      "          'lot': 1,\n",
      "          'emotional': 1,\n",
      "          'power': 1,\n",
      "          'behind': 1,\n",
      "          'opening': 1,\n",
      "          'tap': 1,\n",
      "          'nthen': 1,\n",
      "          'nowhere': 1,\n",
      "          'nthere': 1,\n",
      "          'perhaps': 1,\n",
      "          'scene': 1,\n",
      "          'afterwards': 1,\n",
      "          'deals': 1,\n",
      "          'trauma': 1,\n",
      "          'dehumanization': 1,\n",
      "          'rest': 1,\n",
      "          'biggest': 1,\n",
      "          'cliches': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'whole': 1,\n",
      "          'inhuman': 1,\n",
      "          'soldiertype': 1,\n",
      "          'gaining': 1,\n",
      "          'degree': 1,\n",
      "          'defending': 1,\n",
      "          'female': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'family': 1,\n",
      "          'evil': 1,\n",
      "          'counterpart': 1,\n",
      "          'kill': 1,\n",
      "          'better': 1,\n",
      "          'ni': 1,\n",
      "          'able': 1,\n",
      "          'predict': 1,\n",
      "          '_whole_': 1,\n",
      "          'story': 1,\n",
      "          'wouldnt': 1,\n",
      "          'somewhat': 1,\n",
      "          'nbetween': 1,\n",
      "          'sequences': 1,\n",
      "          'tries': 1,\n",
      "          'deal': 1,\n",
      "          'aforementioned': 1,\n",
      "          'issues': 1,\n",
      "          'mr': 1,\n",
      "          'russel': 1,\n",
      "          'tiny': 1,\n",
      "          'window': 1,\n",
      "          'soul': 1,\n",
      "          'since': 1,\n",
      "          'dialog': 1,\n",
      "          'extremely': 1,\n",
      "          'limited': 1,\n",
      "          'nhis': 1,\n",
      "          'way': 1,\n",
      "          'isnt': 1,\n",
      "          'certainly': 1,\n",
      "          'carry': 1,\n",
      "          'nother': 1,\n",
      "          'performances': 1,\n",
      "          'really': 1,\n",
      "          'worth': 1,\n",
      "          'mention': 1,\n",
      "          'generally': 1,\n",
      "          'weak': 1,\n",
      "          'characters': 1,\n",
      "          'stuff': 1,\n",
      "          'right': 1,\n",
      "          'nisnt': 1,\n",
      "          'important': 1,\n",
      "          'part': 1,\n",
      "          'well': 1,\n",
      "          'neven': 1,\n",
      "          'nin': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          '1995': 1,\n",
      "          'proved': 1,\n",
      "          'use': 1,\n",
      "          'choreography': 1,\n",
      "          'override': 1,\n",
      "          'problems': 1,\n",
      "          'produce': 1,\n",
      "          'entertaining': 1,\n",
      "          'fails': 1,\n",
      "          'repeat': 1,\n",
      "          'particularly': 1,\n",
      "          'incredibly': 1,\n",
      "          'unimaginatve': 1,\n",
      "          'nfighting': 1,\n",
      "          'supposed': 1,\n",
      "          'bring': 1,\n",
      "          'thrills': 1,\n",
      "          'point': 1,\n",
      "          'even': 1,\n",
      "          'otherwise': 1,\n",
      "          'unimpressive': 1,\n",
      "          'like': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'seemed': 1,\n",
      "          'realize': 1,\n",
      "          'instead': 1,\n",
      "          'reaching': 1,\n",
      "          'old': 1,\n",
      "          'shootem': 1,\n",
      "          'guy': 1,\n",
      "          'vs': 1,\n",
      "          'army': 1,\n",
      "          'cinema': 1,\n",
      "          'thought': 1,\n",
      "          'died': 1,\n",
      "          'films': 1,\n",
      "          '80s': 1,\n",
      "          'nif': 1,\n",
      "          'went': 1,\n",
      "          'ideas': 1,\n",
      "          'opened': 1,\n",
      "          'introduction': 1,\n",
      "          'seriously': 1,\n",
      "          'could': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'utterly': 1,\n",
      "          'failed': 1,\n",
      "          'go': 1,\n",
      "          'new': 1,\n",
      "          'directions': 1,\n",
      "          'making': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'condor': 6,\n",
      "          'chan': 6,\n",
      "          'jackie': 4,\n",
      "          'gold': 4,\n",
      "          'key': 4,\n",
      "          'way': 4,\n",
      "          'scene': 3,\n",
      "          'mission': 3,\n",
      "          'hidden': 3,\n",
      "          'chase': 3,\n",
      "          'supposed': 3,\n",
      "          'scenes': 3,\n",
      "          'fight': 3,\n",
      "          'chans': 3,\n",
      "          'even': 3,\n",
      "          'first': 2,\n",
      "          'operation': 2,\n",
      "          'secret': 2,\n",
      "          'start': 2,\n",
      "          'nas': 2,\n",
      "          'well': 2,\n",
      "          'nin': 2,\n",
      "          'movies': 2,\n",
      "          'hong': 2,\n",
      "          'kong': 2,\n",
      "          'desert': 2,\n",
      "          'reason': 2,\n",
      "          'given': 2,\n",
      "          'spain': 2,\n",
      "          'ni': 2,\n",
      "          'may': 2,\n",
      "          'fruit': 2,\n",
      "          'cart': 2,\n",
      "          'set': 2,\n",
      "          'nthe': 2,\n",
      "          'take': 2,\n",
      "          'almost': 2,\n",
      "          'integrated': 2,\n",
      "          'help': 2,\n",
      "          'cheng': 2,\n",
      "          'granddaughter': 2,\n",
      "          'captain': 2,\n",
      "          'parts': 2,\n",
      "          'get': 2,\n",
      "          'martial': 2,\n",
      "          'arts': 2,\n",
      "          'since': 2,\n",
      "          'action': 2,\n",
      "          'best': 2,\n",
      "          'films': 2,\n",
      "          'dont': 2,\n",
      "          'expect': 2,\n",
      "          'plot': 2,\n",
      "          'moves': 2,\n",
      "          'guy': 2,\n",
      "          'humor': 2,\n",
      "          'film': 2,\n",
      "          'preparing': 1,\n",
      "          'nhe': 1,\n",
      "          'attempts': 1,\n",
      "          'pop': 1,\n",
      "          'couple': 1,\n",
      "          'pieces': 1,\n",
      "          'chewing': 1,\n",
      "          'gum': 1,\n",
      "          'mouth': 1,\n",
      "          'misses': 1,\n",
      "          'nafter': 1,\n",
      "          'ricochet': 1,\n",
      "          'face': 1,\n",
      "          'says': 1,\n",
      "          'good': 1,\n",
      "          'turns': 1,\n",
      "          'line': 1,\n",
      "          'gives': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'rest': 1,\n",
      "          'latest': 1,\n",
      "          'released': 1,\n",
      "          'america': 1,\n",
      "          'runs': 1,\n",
      "          'plays': 1,\n",
      "          'international': 1,\n",
      "          'operative': 1,\n",
      "          'codenamed': 1,\n",
      "          'tasked': 1,\n",
      "          'united': 1,\n",
      "          'nations': 1,\n",
      "          'finding': 1,\n",
      "          'stash': 1,\n",
      "          'base': 1,\n",
      "          'nazis': 1,\n",
      "          'retreat': 1,\n",
      "          'across': 1,\n",
      "          'saharan': 1,\n",
      "          'second': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'nfor': 1,\n",
      "          'u': 1,\n",
      "          'embassy': 1,\n",
      "          'think': 1,\n",
      "          'done': 1,\n",
      "          'could': 1,\n",
      "          'honor': 1,\n",
      "          'time': 1,\n",
      "          'old': 1,\n",
      "          'tradition': 1,\n",
      "          'knocking': 1,\n",
      "          'nwatch': 1,\n",
      "          'foreign': 1,\n",
      "          'country': 1,\n",
      "          'notably': 1,\n",
      "          'europe': 1,\n",
      "          'marketplace': 1,\n",
      "          'overturned': 1,\n",
      "          'nits': 1,\n",
      "          'guarantee': 1,\n",
      "          'nanyway': 1,\n",
      "          'ncondor': 1,\n",
      "          'unlock': 1,\n",
      "          'giant': 1,\n",
      "          'vault': 1,\n",
      "          'problem': 1,\n",
      "          'insulators': 1,\n",
      "          'mean': 1,\n",
      "          'booby': 1,\n",
      "          'trap': 1,\n",
      "          'might': 1,\n",
      "          'electronically': 1,\n",
      "          'triggered': 1,\n",
      "          'used': 1,\n",
      "          'improperly': 1,\n",
      "          'nto': 1,\n",
      "          'figure': 1,\n",
      "          'use': 1,\n",
      "          'correctly': 1,\n",
      "          'accompanied': 1,\n",
      "          'expert': 1,\n",
      "          'carol': 1,\n",
      "          'charge': 1,\n",
      "          'hiding': 1,\n",
      "          'eva': 1,\n",
      "          'cobo': 1,\n",
      "          'nthere': 1,\n",
      "          'arent': 1,\n",
      "          'relatives': 1,\n",
      "          'nazi': 1,\n",
      "          'living': 1,\n",
      "          'finds': 1,\n",
      "          'looking': 1,\n",
      "          'phone': 1,\n",
      "          'book': 1,\n",
      "          'something': 1,\n",
      "          'nalthough': 1,\n",
      "          'two': 1,\n",
      "          'women': 1,\n",
      "          'integral': 1,\n",
      "          'prove': 1,\n",
      "          'except': 1,\n",
      "          'trouble': 1,\n",
      "          'provide': 1,\n",
      "          'excuse': 1,\n",
      "          'jump': 1,\n",
      "          'fact': 1,\n",
      "          'ridiculously': 1,\n",
      "          'contrived': 1,\n",
      "          'seems': 1,\n",
      "          'everything': 1,\n",
      "          'suppose': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'really': 1,\n",
      "          'part': 1,\n",
      "          'go': 1,\n",
      "          'see': 1,\n",
      "          'one': 1,\n",
      "          'anyway': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'great': 1,\n",
      "          'entertained': 1,\n",
      "          'nthey': 1,\n",
      "          'choreographed': 1,\n",
      "          'often': 1,\n",
      "          'amazing': 1,\n",
      "          'wonder': 1,\n",
      "          'human': 1,\n",
      "          'nknowing': 1,\n",
      "          'stunts': 1,\n",
      "          'knowing': 1,\n",
      "          'real': 1,\n",
      "          'stuff': 1,\n",
      "          'computermasked': 1,\n",
      "          'bungee': 1,\n",
      "          'cords': 1,\n",
      "          'makes': 1,\n",
      "          'sequences': 1,\n",
      "          'exciting': 1,\n",
      "          'nyouve': 1,\n",
      "          'got': 1,\n",
      "          'hand': 1,\n",
      "          'whos': 1,\n",
      "          'probably': 1,\n",
      "          'broken': 1,\n",
      "          'every': 1,\n",
      "          'bone': 1,\n",
      "          'body': 1,\n",
      "          'sake': 1,\n",
      "          'art': 1,\n",
      "          'nalso': 1,\n",
      "          'note': 1,\n",
      "          'far': 1,\n",
      "          'know': 1,\n",
      "          'none': 1,\n",
      "          'seriously': 1,\n",
      "          'dramatic': 1,\n",
      "          'certain': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'quality': 1,\n",
      "          'nwhat': 1,\n",
      "          'masterful': 1,\n",
      "          'nunlike': 1,\n",
      "          'anything': 1,\n",
      "          'jean': 1,\n",
      "          'claude': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'fights': 1,\n",
      "          'visceral': 1,\n",
      "          'level': 1,\n",
      "          'simply': 1,\n",
      "          'entertaining': 1,\n",
      "          'nyou': 1,\n",
      "          'marvel': 1,\n",
      "          'employs': 1,\n",
      "          'make': 1,\n",
      "          'laugh': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'mastery': 1,\n",
      "          'cant': 1,\n",
      "          'save': 1,\n",
      "          'characters': 1,\n",
      "          'weak': 1,\n",
      "          'hold': 1,\n",
      "          'together': 1,\n",
      "          'acting': 1,\n",
      "          'terrible': 1,\n",
      "          'ncarol': 1,\n",
      "          'apparently': 1,\n",
      "          'actress': 1,\n",
      "          'honors': 1,\n",
      "          'awards': 1,\n",
      "          'past': 1,\n",
      "          'dubbed': 1,\n",
      "          'kind': 1,\n",
      "          'takes': 1,\n",
      "          'bets': 1,\n",
      "          'nthis': 1,\n",
      "          'combined': 1,\n",
      "          'obviously': 1,\n",
      "          'low': 1,\n",
      "          'production': 1,\n",
      "          'value': 1,\n",
      "          'made': 1,\n",
      "          'want': 1,\n",
      "          'turn': 1,\n",
      "          'away': 1,\n",
      "          'screen': 1,\n",
      "          'heard': 1,\n",
      "          'kicks': 1,\n",
      "          'flying': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'action': 5,\n",
      "          'nbut': 4,\n",
      "          'way': 3,\n",
      "          'time': 3,\n",
      "          'boss': 3,\n",
      "          'try': 3,\n",
      "          'better': 3,\n",
      "          'etc': 3,\n",
      "          'script': 3,\n",
      "          'like': 3,\n",
      "          'success': 2,\n",
      "          'harrelson': 2,\n",
      "          'anything': 2,\n",
      "          'got': 2,\n",
      "          'chance': 2,\n",
      "          'even': 2,\n",
      "          'nthis': 2,\n",
      "          'duo': 2,\n",
      "          'transit': 2,\n",
      "          'blake': 2,\n",
      "          'money': 2,\n",
      "          'train': 2,\n",
      "          'theres': 2,\n",
      "          'original': 2,\n",
      "          'find': 2,\n",
      "          'running': 2,\n",
      "          'almost': 2,\n",
      "          'might': 2,\n",
      "          'cliches': 2,\n",
      "          'appears': 2,\n",
      "          'evil': 2,\n",
      "          'bad': 2,\n",
      "          'though': 2,\n",
      "          'nif': 2,\n",
      "          'look': 2,\n",
      "          'nthe': 2,\n",
      "          'stuntwork': 2,\n",
      "          'youre': 2,\n",
      "          'youll': 2,\n",
      "          'cashing': 1,\n",
      "          'white': 1,\n",
      "          'men': 1,\n",
      "          'cant': 1,\n",
      "          'jump': 1,\n",
      "          'failure': 1,\n",
      "          'solo': 1,\n",
      "          'vehicles': 1,\n",
      "          'including': 1,\n",
      "          'cowboy': 1,\n",
      "          'drop': 1,\n",
      "          'zone': 1,\n",
      "          'wesley': 1,\n",
      "          'snipes': 1,\n",
      "          'woody': 1,\n",
      "          'reteamed': 1,\n",
      "          'hoping': 1,\n",
      "          'strike': 1,\n",
      "          'nsadly': 1,\n",
      "          'dismal': 1,\n",
      "          'cliche': 1,\n",
      "          'ridden': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'boring': 1,\n",
      "          'pic': 1,\n",
      "          'go': 1,\n",
      "          'havent': 1,\n",
      "          'hell': 1,\n",
      "          'coming': 1,\n",
      "          'close': 1,\n",
      "          'play': 1,\n",
      "          'foster': 1,\n",
      "          'brothers': 1,\n",
      "          'cops': 1,\n",
      "          'nfollowing': 1,\n",
      "          'several': 1,\n",
      "          'runins': 1,\n",
      "          'tyrannical': 1,\n",
      "          'robert': 1,\n",
      "          'obsessed': 1,\n",
      "          'carries': 1,\n",
      "          'subways': 1,\n",
      "          'takingsand': 1,\n",
      "          'let': 1,\n",
      "          'nothing': 1,\n",
      "          'stop': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'harrelsons': 1,\n",
      "          'character': 1,\n",
      "          'decides': 1,\n",
      "          'take': 1,\n",
      "          'cash': 1,\n",
      "          'nalong': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'womananother': 1,\n",
      "          'cop': 1,\n",
      "          'also': 1,\n",
      "          'hates': 1,\n",
      "          'leads': 1,\n",
      "          'typical': 1,\n",
      "          'sibling': 1,\n",
      "          'rivalry': 1,\n",
      "          'crap': 1,\n",
      "          'usually': 1,\n",
      "          'standard': 1,\n",
      "          'always': 1,\n",
      "          'brother': 1,\n",
      "          'doesnt': 1,\n",
      "          'help': 1,\n",
      "          'add': 1,\n",
      "          'ngiven': 1,\n",
      "          'performers': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'shorter': 1,\n",
      "          'went': 1,\n",
      "          'two': 1,\n",
      "          'hoursor': 1,\n",
      "          'feel': 1,\n",
      "          'mean': 1,\n",
      "          'turned': 1,\n",
      "          'okay': 1,\n",
      "          'stocked': 1,\n",
      "          'worst': 1,\n",
      "          'whose': 1,\n",
      "          'purpose': 1,\n",
      "          'pad': 1,\n",
      "          'painfully': 1,\n",
      "          'long': 1,\n",
      "          'nrobert': 1,\n",
      "          'plays': 1,\n",
      "          'pathetic': 1,\n",
      "          'guy': 1,\n",
      "          'history': 1,\n",
      "          'nhe': 1,\n",
      "          'sounds': 1,\n",
      "          'wayne': 1,\n",
      "          'newton': 1,\n",
      "          'think': 1,\n",
      "          'best': 1,\n",
      "          'appear': 1,\n",
      "          'eyes': 1,\n",
      "          'bulging': 1,\n",
      "          'burst': 1,\n",
      "          'sockets': 1,\n",
      "          'one': 1,\n",
      "          'trains': 1,\n",
      "          'problems': 1,\n",
      "          'lacks': 1,\n",
      "          'originality': 1,\n",
      "          'suspense': 1,\n",
      "          'heist': 1,\n",
      "          'worse': 1,\n",
      "          'final': 1,\n",
      "          'robbery': 1,\n",
      "          'sequence': 1,\n",
      "          'trivialised': 1,\n",
      "          'characters': 1,\n",
      "          'definitely': 1,\n",
      "          'aint': 1,\n",
      "          'butch': 1,\n",
      "          'sundance': 1,\n",
      "          'isnt': 1,\n",
      "          'nsnipes': 1,\n",
      "          'arent': 1,\n",
      "          'using': 1,\n",
      "          'dumb': 1,\n",
      "          'gives': 1,\n",
      "          'make': 1,\n",
      "          'agreeable': 1,\n",
      "          'indeed': 1,\n",
      "          'excellent': 1,\n",
      "          'good': 1,\n",
      "          'save': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'movie': 1,\n",
      "          'really': 1,\n",
      "          'undemanding': 1,\n",
      "          'freak': 1,\n",
      "          'looking': 1,\n",
      "          'something': 1,\n",
      "          'suspenseful': 1,\n",
      "          'somewhere': 1,\n",
      "          'elsei': 1,\n",
      "          'doubt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          '6': 6,\n",
      "          'nthere': 5,\n",
      "          'nhe': 5,\n",
      "          'girl': 4,\n",
      "          'spike': 4,\n",
      "          'nin': 4,\n",
      "          'lee': 3,\n",
      "          'music': 3,\n",
      "          'one': 3,\n",
      "          'though': 3,\n",
      "          'never': 2,\n",
      "          'narrative': 2,\n",
      "          'point': 2,\n",
      "          'ngirl': 2,\n",
      "          'way': 2,\n",
      "          'theresa': 2,\n",
      "          'character': 2,\n",
      "          'phone': 2,\n",
      "          'sex': 2,\n",
      "          'nthe': 2,\n",
      "          'job': 2,\n",
      "          'phonesex': 2,\n",
      "          'ex': 2,\n",
      "          'neighbor': 2,\n",
      "          'jimmy': 2,\n",
      "          'functions': 2,\n",
      "          'become': 2,\n",
      "          'soundtrack': 2,\n",
      "          'distracting': 2,\n",
      "          'nof': 2,\n",
      "          'like': 2,\n",
      "          'fans': 2,\n",
      "          'even': 2,\n",
      "          'oliver': 2,\n",
      "          'scenes': 2,\n",
      "          'moments': 2,\n",
      "          'industry': 2,\n",
      "          'good': 2,\n",
      "          'word': 1,\n",
      "          'mess': 1,\n",
      "          'ni': 1,\n",
      "          'able': 1,\n",
      "          'determine': 1,\n",
      "          'trying': 1,\n",
      "          'accomplish': 1,\n",
      "          'sense': 1,\n",
      "          'going': 1,\n",
      "          'kind': 1,\n",
      "          'coherent': 1,\n",
      "          'nif': 1,\n",
      "          'missed': 1,\n",
      "          'randles': 1,\n",
      "          'addressed': 1,\n",
      "          'workplace': 1,\n",
      "          'girls': 1,\n",
      "          'known': 1,\n",
      "          'numbers': 1,\n",
      "          'plot': 1,\n",
      "          'randle': 1,\n",
      "          'struggling': 1,\n",
      "          'n': 1,\n",
      "          'actress': 1,\n",
      "          'eventually': 1,\n",
      "          'takes': 1,\n",
      "          'operator': 1,\n",
      "          'nshe': 1,\n",
      "          'begins': 1,\n",
      "          'lose': 1,\n",
      "          'contact': 1,\n",
      "          'reality': 1,\n",
      "          'consumes': 1,\n",
      "          'nalso': 1,\n",
      "          'must': 1,\n",
      "          'deal': 1,\n",
      "          'advances': 1,\n",
      "          'exhusband': 1,\n",
      "          'isiah': 1,\n",
      "          'washington': 1,\n",
      "          'con': 1,\n",
      "          'thief': 1,\n",
      "          'tries': 1,\n",
      "          'keep': 1,\n",
      "          'away': 1,\n",
      "          'time': 1,\n",
      "          'clear': 1,\n",
      "          'still': 1,\n",
      "          'harbors': 1,\n",
      "          'feelings': 1,\n",
      "          'nher': 1,\n",
      "          'observer': 1,\n",
      "          'mediating': 1,\n",
      "          'husband': 1,\n",
      "          'also': 1,\n",
      "          'stability': 1,\n",
      "          'watches': 1,\n",
      "          'seduced': 1,\n",
      "          'lurid': 1,\n",
      "          'world': 1,\n",
      "          'consisting': 1,\n",
      "          'songs': 1,\n",
      "          'prince': 1,\n",
      "          'jarring': 1,\n",
      "          'nit': 1,\n",
      "          'kept': 1,\n",
      "          'taking': 1,\n",
      "          'attention': 1,\n",
      "          'altogether': 1,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'ill': 1,\n",
      "          'grant': 1,\n",
      "          'transpiring': 1,\n",
      "          'onscreen': 1,\n",
      "          'wasnt': 1,\n",
      "          'riveting': 1,\n",
      "          'nfor': 1,\n",
      "          'parts': 1,\n",
      "          'middle': 1,\n",
      "          'stayed': 1,\n",
      "          'blissfully': 1,\n",
      "          'background': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'scene': 1,\n",
      "          'later': 1,\n",
      "          'however': 1,\n",
      "          'particularly': 1,\n",
      "          'loud': 1,\n",
      "          'course': 1,\n",
      "          'ive': 1,\n",
      "          'really': 1,\n",
      "          'cared': 1,\n",
      "          'princes': 1,\n",
      "          'tafkap': 1,\n",
      "          'nprince': 1,\n",
      "          'might': 1,\n",
      "          'love': 1,\n",
      "          'probably': 1,\n",
      "          'diehard': 1,\n",
      "          'performances': 1,\n",
      "          'stood': 1,\n",
      "          'lees': 1,\n",
      "          'buddy': 1,\n",
      "          'excellent': 1,\n",
      "          'alwaysbroke': 1,\n",
      "          'stuck': 1,\n",
      "          'acting': 1,\n",
      "          'several': 1,\n",
      "          'sequences': 1,\n",
      "          'gave': 1,\n",
      "          'impression': 1,\n",
      "          'hed': 1,\n",
      "          'stone': 1,\n",
      "          'grows': 1,\n",
      "          'shot': 1,\n",
      "          'different': 1,\n",
      "          'types': 1,\n",
      "          'purposely': 1,\n",
      "          'grainy': 1,\n",
      "          'reminiscent': 1,\n",
      "          'stones': 1,\n",
      "          'natural': 1,\n",
      "          'born': 1,\n",
      "          'killers': 1,\n",
      "          'worked': 1,\n",
      "          'propel': 1,\n",
      "          'made': 1,\n",
      "          'confused': 1,\n",
      "          'amusing': 1,\n",
      "          'insights': 1,\n",
      "          'lives': 1,\n",
      "          'women': 1,\n",
      "          'use': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'voices': 1,\n",
      "          'make': 1,\n",
      "          'multibillion': 1,\n",
      "          'dollar': 1,\n",
      "          'nother': 1,\n",
      "          'nothing': 1,\n",
      "          'much': 1,\n",
      "          'happens': 1,\n",
      "          'intense': 1,\n",
      "          'caller': 1,\n",
      "          'becomes': 1,\n",
      "          'frightening': 1,\n",
      "          'rather': 1,\n",
      "          'lackluster': 1,\n",
      "          'nim': 1,\n",
      "          'biggest': 1,\n",
      "          'fan': 1,\n",
      "          'id': 1,\n",
      "          'agree': 1,\n",
      "          'done': 1,\n",
      "          'work': 1,\n",
      "          'past': 1,\n",
      "          'seems': 1,\n",
      "          'floundering': 1,\n",
      "          'interesting': 1,\n",
      "          'idea': 1,\n",
      "          'fairly': 1,\n",
      "          'setup': 1,\n",
      "          'seemed': 1,\n",
      "          'wander': 1,\n",
      "          'aimlessly': 1,\n",
      "          'earns': 1,\n",
      "          'grade': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'norris': 6,\n",
      "          'action': 5,\n",
      "          'film': 4,\n",
      "          'films': 3,\n",
      "          '1980s': 2,\n",
      "          'chuck': 2,\n",
      "          'nhe': 2,\n",
      "          'top': 2,\n",
      "          'quantity': 2,\n",
      "          'among': 2,\n",
      "          'genre': 2,\n",
      "          'nthat': 2,\n",
      "          'nthe': 2,\n",
      "          'hitman': 2,\n",
      "          'one': 2,\n",
      "          'seattle': 2,\n",
      "          'cop': 2,\n",
      "          'dead': 2,\n",
      "          'partner': 2,\n",
      "          'brutal': 2,\n",
      "          'problem': 2,\n",
      "          'subplot': 2,\n",
      "          'dealing': 2,\n",
      "          'gets': 2,\n",
      "          'another': 2,\n",
      "          'back': 1,\n",
      "          'used': 1,\n",
      "          'synonym': 1,\n",
      "          'couldnt': 1,\n",
      "          'course': 1,\n",
      "          'success': 1,\n",
      "          'fame': 1,\n",
      "          'big': 1,\n",
      "          'names': 1,\n",
      "          'like': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'arnold': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'sheer': 1,\n",
      "          'guaranteed': 1,\n",
      "          'household': 1,\n",
      "          'name': 1,\n",
      "          'shootem': 1,\n",
      "          'beatem': 1,\n",
      "          'aficionados': 1,\n",
      "          'mostly': 1,\n",
      "          'provided': 1,\n",
      "          'cannon': 1,\n",
      "          'group': 1,\n",
      "          'prolific': 1,\n",
      "          'production': 1,\n",
      "          'company': 1,\n",
      "          'dominated': 1,\n",
      "          'bmovie': 1,\n",
      "          'market': 1,\n",
      "          'previous': 1,\n",
      "          'decade': 1,\n",
      "          'flooding': 1,\n",
      "          'cheap': 1,\n",
      "          'formulaic': 1,\n",
      "          'often': 1,\n",
      "          'unwatchable': 1,\n",
      "          'products': 1,\n",
      "          '1991': 1,\n",
      "          'thriller': 1,\n",
      "          'directed': 1,\n",
      "          'chucks': 1,\n",
      "          'brother': 1,\n",
      "          'aaron': 1,\n",
      "          'last': 1,\n",
      "          'nchuck': 1,\n",
      "          'plays': 1,\n",
      "          'betrayed': 1,\n",
      "          'shot': 1,\n",
      "          'left': 1,\n",
      "          'shouldnt': 1,\n",
      "          'surprise': 1,\n",
      "          'anyone': 1,\n",
      "          'considering': 1,\n",
      "          'fact': 1,\n",
      "          'played': 1,\n",
      "          'michael': 1,\n",
      "          'parks': 1,\n",
      "          'specialised': 1,\n",
      "          'roles': 1,\n",
      "          'usually': 1,\n",
      "          'mean': 1,\n",
      "          'characters': 1,\n",
      "          'nsurviving': 1,\n",
      "          'shooting': 1,\n",
      "          'pronounced': 1,\n",
      "          'hired': 1,\n",
      "          'deep': 1,\n",
      "          'undercover': 1,\n",
      "          'agent': 1,\n",
      "          'infiltrates': 1,\n",
      "          'underworld': 1,\n",
      "          'circles': 1,\n",
      "          'becomes': 1,\n",
      "          'using': 1,\n",
      "          'abilities': 1,\n",
      "          'start': 1,\n",
      "          'war': 1,\n",
      "          'three': 1,\n",
      "          'major': 1,\n",
      "          'crime': 1,\n",
      "          'organisations': 1,\n",
      "          'italians': 1,\n",
      "          'french': 1,\n",
      "          'canadians': 1,\n",
      "          'iranians': 1,\n",
      "          'nsince': 1,\n",
      "          'rather': 1,\n",
      "          'absurd': 1,\n",
      "          'expect': 1,\n",
      "          'great': 1,\n",
      "          'acting': 1,\n",
      "          'ability': 1,\n",
      "          'least': 1,\n",
      "          'kind': 1,\n",
      "          'movie': 1,\n",
      "          'biggest': 1,\n",
      "          'attraction': 1,\n",
      "          'nwell': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'boring': 1,\n",
      "          'repetitive': 1,\n",
      "          'exciting': 1,\n",
      "          'nit': 1,\n",
      "          'nothing': 1,\n",
      "          'monotonous': 1,\n",
      "          'series': 1,\n",
      "          'scenes': 1,\n",
      "          'contains': 1,\n",
      "          'violence': 1,\n",
      "          'even': 1,\n",
      "          'type': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'little': 1,\n",
      "          'character': 1,\n",
      "          'hand': 1,\n",
      "          'gangsters': 1,\n",
      "          'portrayed': 1,\n",
      "          'human': 1,\n",
      "          'dimension': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'almost': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'since': 1,\n",
      "          'shown': 1,\n",
      "          'totally': 1,\n",
      "          'powerless': 1,\n",
      "          'unstoppable': 1,\n",
      "          'bloody': 1,\n",
      "          'crusade': 1,\n",
      "          'nduring': 1,\n",
      "          'somebody': 1,\n",
      "          'obviously': 1,\n",
      "          'became': 1,\n",
      "          'aware': 1,\n",
      "          'screenwriter': 1,\n",
      "          'introduced': 1,\n",
      "          'black': 1,\n",
      "          'boy': 1,\n",
      "          'adopted': 1,\n",
      "          'caused': 1,\n",
      "          'questions': 1,\n",
      "          'nature': 1,\n",
      "          'relationship': 1,\n",
      "          'quashed': 1,\n",
      "          'lady': 1,\n",
      "          'lawyer': 1,\n",
      "          'sleeps': 1,\n",
      "          'hero': 1,\n",
      "          'killed': 1,\n",
      "          'fulfilling': 1,\n",
      "          'screenplay': 1,\n",
      "          'obligation': 1,\n",
      "          'photography': 1,\n",
      "          'dark': 1,\n",
      "          'setting': 1,\n",
      "          'depressive': 1,\n",
      "          'forgettable': 1,\n",
      "          'piece': 1,\n",
      "          'style': 1,\n",
      "          'cinema': 1,\n",
      "          'leaves': 1,\n",
      "          'viewers': 1,\n",
      "          'without': 1,\n",
      "          'reason': 1,\n",
      "          'justify': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'spent': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 17,\n",
      "          'flubber': 9,\n",
      "          'nthe': 9,\n",
      "          'original': 6,\n",
      "          'professor': 5,\n",
      "          'absent': 5,\n",
      "          'life': 5,\n",
      "          'nthis': 4,\n",
      "          'minded': 4,\n",
      "          'audience': 4,\n",
      "          'well': 4,\n",
      "          'robot': 4,\n",
      "          'could': 3,\n",
      "          'whole': 3,\n",
      "          'might': 3,\n",
      "          'way': 3,\n",
      "          'would': 3,\n",
      "          'amusing': 3,\n",
      "          'back': 3,\n",
      "          'moments': 3,\n",
      "          'good': 3,\n",
      "          'best': 3,\n",
      "          'prof': 3,\n",
      "          'end': 3,\n",
      "          'character': 3,\n",
      "          'forgetful': 2,\n",
      "          'people': 2,\n",
      "          'brainard': 2,\n",
      "          'somehow': 2,\n",
      "          'nits': 2,\n",
      "          'half': 2,\n",
      "          'flying': 2,\n",
      "          'seems': 2,\n",
      "          'kids': 2,\n",
      "          'two': 2,\n",
      "          'poor': 2,\n",
      "          'fiancee': 2,\n",
      "          'rather': 2,\n",
      "          'basketball': 2,\n",
      "          'totally': 2,\n",
      "          'close': 2,\n",
      "          'done': 2,\n",
      "          'give': 2,\n",
      "          'film': 2,\n",
      "          'nas': 2,\n",
      "          'ones': 2,\n",
      "          'ngiving': 2,\n",
      "          'executed': 2,\n",
      "          'weebo': 2,\n",
      "          'wasnt': 2,\n",
      "          'real': 2,\n",
      "          'story': 2,\n",
      "          'something': 2,\n",
      "          'idea': 2,\n",
      "          'little': 2,\n",
      "          'acting': 2,\n",
      "          'many': 2,\n",
      "          'quite': 2,\n",
      "          'find': 2,\n",
      "          'may': 1,\n",
      "          'doubtful': 1,\n",
      "          'anyone': 1,\n",
      "          'forget': 1,\n",
      "          'wedding': 1,\n",
      "          'especially': 1,\n",
      "          'three': 1,\n",
      "          'times': 1,\n",
      "          'nbut': 1,\n",
      "          'alas': 1,\n",
      "          'manages': 1,\n",
      "          'accomplish': 1,\n",
      "          'feat': 1,\n",
      "          'twice': 1,\n",
      "          'momentous': 1,\n",
      "          'night': 1,\n",
      "          'actually': 1,\n",
      "          'creates': 1,\n",
      "          'amazing': 1,\n",
      "          'able': 1,\n",
      "          'remember': 1,\n",
      "          'processes': 1,\n",
      "          'uses': 1,\n",
      "          'make': 1,\n",
      "          'anything': 1,\n",
      "          'point': 1,\n",
      "          'man': 1,\n",
      "          'blatantly': 1,\n",
      "          'almost': 1,\n",
      "          'mindless': 1,\n",
      "          'nwell': 1,\n",
      "          'case': 1,\n",
      "          'first': 1,\n",
      "          'things': 1,\n",
      "          'begin': 1,\n",
      "          'settle': 1,\n",
      "          'truly': 1,\n",
      "          'considered': 1,\n",
      "          'nalong': 1,\n",
      "          'becoming': 1,\n",
      "          'mind': 1,\n",
      "          'stumbles': 1,\n",
      "          'onto': 1,\n",
      "          'nthankfully': 1,\n",
      "          'amusement': 1,\n",
      "          'supposed': 1,\n",
      "          'rubber': 1,\n",
      "          'strictly': 1,\n",
      "          'properties': 1,\n",
      "          'provide': 1,\n",
      "          'antics': 1,\n",
      "          'coated': 1,\n",
      "          'golfballs': 1,\n",
      "          'bowling': 1,\n",
      "          'balls': 1,\n",
      "          'assail': 1,\n",
      "          'thugs': 1,\n",
      "          'nalthough': 1,\n",
      "          'ever': 1,\n",
      "          'brings': 1,\n",
      "          'haunting': 1,\n",
      "          'memories': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'save': 1,\n",
      "          'university': 1,\n",
      "          'teaches': 1,\n",
      "          'get': 1,\n",
      "          'finally': 1,\n",
      "          'stop': 1,\n",
      "          'plotting': 1,\n",
      "          'evil': 1,\n",
      "          'millionaire': 1,\n",
      "          'funniest': 1,\n",
      "          'possible': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'funny': 1,\n",
      "          'shallow': 1,\n",
      "          'compare': 1,\n",
      "          'scene': 1,\n",
      "          'game': 1,\n",
      "          'atrocious': 1,\n",
      "          'unbelievable': 1,\n",
      "          'players': 1,\n",
      "          'stereotypically': 1,\n",
      "          'unqualified': 1,\n",
      "          'sport': 1,\n",
      "          'manage': 1,\n",
      "          'bounce': 1,\n",
      "          'fly': 1,\n",
      "          'dribble': 1,\n",
      "          'winning': 1,\n",
      "          'sounds': 1,\n",
      "          'bad': 1,\n",
      "          'true': 1,\n",
      "          'least': 1,\n",
      "          'keep': 1,\n",
      "          'semi': 1,\n",
      "          'chance': 1,\n",
      "          'innovations': 1,\n",
      "          'new': 1,\n",
      "          'ideas': 1,\n",
      "          'poorly': 1,\n",
      "          'forgotten': 1,\n",
      "          'brainards': 1,\n",
      "          'worked': 1,\n",
      "          'beautifully': 1,\n",
      "          'scenes': 1,\n",
      "          'sort': 1,\n",
      "          'dancing': 1,\n",
      "          'around': 1,\n",
      "          'tables': 1,\n",
      "          'books': 1,\n",
      "          'reason': 1,\n",
      "          'put': 1,\n",
      "          'bit': 1,\n",
      "          'music': 1,\n",
      "          'extend': 1,\n",
      "          'length': 1,\n",
      "          'brief': 1,\n",
      "          'whimsical': 1,\n",
      "          'used': 1,\n",
      "          'harm': 1,\n",
      "          'nnow': 1,\n",
      "          'different': 1,\n",
      "          'created': 1,\n",
      "          'forgot': 1,\n",
      "          'gave': 1,\n",
      "          'really': 1,\n",
      "          'maybe': 1,\n",
      "          'makes': 1,\n",
      "          'developed': 1,\n",
      "          'nyes': 1,\n",
      "          'folks': 1,\n",
      "          'yellow': 1,\n",
      "          'emotion': 1,\n",
      "          'characters': 1,\n",
      "          'lacks': 1,\n",
      "          'emotional': 1,\n",
      "          'punch': 1,\n",
      "          'pull': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'nbrainard': 1,\n",
      "          'hearted': 1,\n",
      "          'cases': 1,\n",
      "          'forced': 1,\n",
      "          'nmost': 1,\n",
      "          'convincing': 1,\n",
      "          'fool': 1,\n",
      "          'part': 1,\n",
      "          'yet': 1,\n",
      "          'reached': 1,\n",
      "          'age': 1,\n",
      "          '12': 1,\n",
      "          'npeople': 1,\n",
      "          'stood': 1,\n",
      "          'altar': 1,\n",
      "          'dont': 1,\n",
      "          'usually': 1,\n",
      "          'third': 1,\n",
      "          'chances': 1,\n",
      "          'matter': 1,\n",
      "          'talk': 1,\n",
      "          'afterwards': 1,\n",
      "          'expected': 1,\n",
      "          'childrens': 1,\n",
      "          'nflubber': 1,\n",
      "          'nothing': 1,\n",
      "          'special': 1,\n",
      "          'respect': 1,\n",
      "          'nwith': 1,\n",
      "          'prop': 1,\n",
      "          'doubt': 1,\n",
      "          'great': 1,\n",
      "          'nit': 1,\n",
      "          'wash': 1,\n",
      "          'nkids': 1,\n",
      "          'fun': 1,\n",
      "          'theyll': 1,\n",
      "          'probably': 1,\n",
      "          'enjoy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'spice': 15,\n",
      "          'girls': 13,\n",
      "          'film': 10,\n",
      "          'movie': 7,\n",
      "          'group': 6,\n",
      "          'think': 6,\n",
      "          'dont': 5,\n",
      "          'get': 5,\n",
      "          'fun': 4,\n",
      "          'good': 4,\n",
      "          'bad': 3,\n",
      "          'spiceworld': 3,\n",
      "          'nif': 3,\n",
      "          'better': 3,\n",
      "          'youre': 3,\n",
      "          'probably': 3,\n",
      "          'ntheyre': 3,\n",
      "          'five': 3,\n",
      "          'real': 3,\n",
      "          'names': 3,\n",
      "          'nits': 3,\n",
      "          'thats': 3,\n",
      "          'enough': 3,\n",
      "          'us': 3,\n",
      "          'look': 3,\n",
      "          'big': 3,\n",
      "          'nothing': 3,\n",
      "          'gimmick': 3,\n",
      "          'singing': 2,\n",
      "          'goal': 2,\n",
      "          'mocking': 2,\n",
      "          'give': 2,\n",
      "          'wasnt': 2,\n",
      "          'really': 2,\n",
      "          'meant': 2,\n",
      "          'much': 2,\n",
      "          'rather': 2,\n",
      "          'see': 2,\n",
      "          'others': 2,\n",
      "          'known': 2,\n",
      "          'understand': 2,\n",
      "          'might': 2,\n",
      "          'ginger': 2,\n",
      "          'nall': 2,\n",
      "          'sporty': 2,\n",
      "          'melanie': 2,\n",
      "          'mel': 2,\n",
      "          'nthe': 2,\n",
      "          'actually': 2,\n",
      "          'seriously': 2,\n",
      "          'seems': 2,\n",
      "          'fans': 2,\n",
      "          'wont': 2,\n",
      "          'music': 2,\n",
      "          'point': 2,\n",
      "          'moments': 2,\n",
      "          'make': 2,\n",
      "          'fan': 2,\n",
      "          'comparison': 2,\n",
      "          'nit': 2,\n",
      "          'way': 2,\n",
      "          'intended': 2,\n",
      "          'ni': 2,\n",
      "          'trying': 2,\n",
      "          'instead': 2,\n",
      "          'every': 2,\n",
      "          'judge': 1,\n",
      "          'intentionally': 1,\n",
      "          'nin': 1,\n",
      "          'highly': 1,\n",
      "          'popular': 1,\n",
      "          'accomplish': 1,\n",
      "          'major': 1,\n",
      "          'purposely': 1,\n",
      "          'cheezy': 1,\n",
      "          'lot': 1,\n",
      "          'fantastic': 1,\n",
      "          'job': 1,\n",
      "          'nso': 1,\n",
      "          'fair': 1,\n",
      "          'low': 1,\n",
      "          'grade': 1,\n",
      "          'nhonestly': 1,\n",
      "          'id': 1,\n",
      "          'many': 1,\n",
      "          'gave': 1,\n",
      "          'higher': 1,\n",
      "          'grades': 1,\n",
      "          'mean': 1,\n",
      "          'graded': 1,\n",
      "          'inaccurately': 1,\n",
      "          'ntruth': 1,\n",
      "          'answer': 1,\n",
      "          'question': 1,\n",
      "          'nto': 1,\n",
      "          'nunless': 1,\n",
      "          'young': 1,\n",
      "          'fairly': 1,\n",
      "          'older': 1,\n",
      "          'least': 1,\n",
      "          'heard': 1,\n",
      "          'busty': 1,\n",
      "          'british': 1,\n",
      "          'babes': 1,\n",
      "          'whove': 1,\n",
      "          '1': 1,\n",
      "          'hit': 1,\n",
      "          'singles': 1,\n",
      "          'whose': 1,\n",
      "          'debut': 1,\n",
      "          'album': 1,\n",
      "          'sold': 1,\n",
      "          'millions': 1,\n",
      "          'primarily': 1,\n",
      "          'adored': 1,\n",
      "          'preteen': 1,\n",
      "          'hope': 1,\n",
      "          'someday': 1,\n",
      "          'contents': 1,\n",
      "          'training': 1,\n",
      "          'bras': 1,\n",
      "          'match': 1,\n",
      "          'spices': 1,\n",
      "          'name': 1,\n",
      "          'geri': 1,\n",
      "          'haliwell': 1,\n",
      "          'wonderbra': 1,\n",
      "          'spicy': 1,\n",
      "          'nthere': 1,\n",
      "          'aforementioned': 1,\n",
      "          'well': 1,\n",
      "          'chisholm': 1,\n",
      "          'c': 1,\n",
      "          'scary': 1,\n",
      "          'brown': 1,\n",
      "          'b': 1,\n",
      "          'baby': 1,\n",
      "          'emma': 1,\n",
      "          'bunton': 1,\n",
      "          'posh': 1,\n",
      "          'victoria': 1,\n",
      "          'addams': 1,\n",
      "          'degree': 1,\n",
      "          'another': 1,\n",
      "          'resemble': 1,\n",
      "          'stage': 1,\n",
      "          'took': 1,\n",
      "          'world': 1,\n",
      "          'storm': 1,\n",
      "          'humored': 1,\n",
      "          'spoof': 1,\n",
      "          'transpired': 1,\n",
      "          'quick': 1,\n",
      "          'rise': 1,\n",
      "          'fame': 1,\n",
      "          'quite': 1,\n",
      "          'nice': 1,\n",
      "          'sports': 1,\n",
      "          'one': 1,\n",
      "          'dubbed': 1,\n",
      "          'poking': 1,\n",
      "          'nthey': 1,\n",
      "          'take': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'also': 1,\n",
      "          'surprising': 1,\n",
      "          'natural': 1,\n",
      "          'seem': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'acting': 1,\n",
      "          'dancing': 1,\n",
      "          'flawless': 1,\n",
      "          'means': 1,\n",
      "          'part': 1,\n",
      "          'deliver': 1,\n",
      "          'lines': 1,\n",
      "          'without': 1,\n",
      "          'feeling': 1,\n",
      "          'staged': 1,\n",
      "          'like': 1,\n",
      "          'sense': 1,\n",
      "          'home': 1,\n",
      "          'within': 1,\n",
      "          'characters': 1,\n",
      "          'reasonable': 1,\n",
      "          'since': 1,\n",
      "          'portray': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'extreme': 1,\n",
      "          'rest': 1,\n",
      "          'ninety': 1,\n",
      "          'straight': 1,\n",
      "          'minutes': 1,\n",
      "          'nmost': 1,\n",
      "          'blas': 1,\n",
      "          'several': 1,\n",
      "          'parts': 1,\n",
      "          'downright': 1,\n",
      "          'boring': 1,\n",
      "          'sporadic': 1,\n",
      "          'laugh': 1,\n",
      "          'loud': 1,\n",
      "          'want': 1,\n",
      "          'time': 1,\n",
      "          'devoted': 1,\n",
      "          'nfor': 1,\n",
      "          'right': 1,\n",
      "          'crowd': 1,\n",
      "          'video': 1,\n",
      "          'sequences': 1,\n",
      "          'highlights': 1,\n",
      "          'serve': 1,\n",
      "          'threeminute': 1,\n",
      "          'lulls': 1,\n",
      "          'hecticbutoveralluneventful': 1,\n",
      "          'storyline': 1,\n",
      "          'nother': 1,\n",
      "          'key': 1,\n",
      "          'actors': 1,\n",
      "          'include': 1,\n",
      "          'richard': 1,\n",
      "          'e': 1,\n",
      "          'grant': 1,\n",
      "          'clifford': 1,\n",
      "          'manager': 1,\n",
      "          'alan': 1,\n",
      "          'cumming': 1,\n",
      "          'filmmaker': 1,\n",
      "          'piers': 1,\n",
      "          'cuthertonsmyth': 1,\n",
      "          'attempts': 1,\n",
      "          'documentary': 1,\n",
      "          'george': 1,\n",
      "          'wendt': 1,\n",
      "          'martin': 1,\n",
      "          'barnfield': 1,\n",
      "          'producer': 1,\n",
      "          'constantly': 1,\n",
      "          'works': 1,\n",
      "          'pitching': 1,\n",
      "          'roger': 1,\n",
      "          'moore': 1,\n",
      "          'small': 1,\n",
      "          'selfparodizing': 1,\n",
      "          'role': 1,\n",
      "          'provide': 1,\n",
      "          'relatively': 1,\n",
      "          'performances': 1,\n",
      "          'keeping': 1,\n",
      "          'mind': 1,\n",
      "          'acted': 1,\n",
      "          'neven': 1,\n",
      "          'meat': 1,\n",
      "          'loaf': 1,\n",
      "          'shows': 1,\n",
      "          'dennis': 1,\n",
      "          'bus': 1,\n",
      "          'driver': 1,\n",
      "          'nwhile': 1,\n",
      "          'continuously': 1,\n",
      "          'compared': 1,\n",
      "          'beatles': 1,\n",
      "          'hard': 1,\n",
      "          'days': 1,\n",
      "          'night': 1,\n",
      "          'unjust': 1,\n",
      "          'supposedly': 1,\n",
      "          'studio': 1,\n",
      "          'first': 1,\n",
      "          'mad': 1,\n",
      "          'press': 1,\n",
      "          'kits': 1,\n",
      "          'drector': 1,\n",
      "          'bob': 1,\n",
      "          'spiers': 1,\n",
      "          'studios': 1,\n",
      "          'boost': 1,\n",
      "          'hype': 1,\n",
      "          'interest': 1,\n",
      "          'come': 1,\n",
      "          'pretentious': 1,\n",
      "          'anything': 1,\n",
      "          'satirical': 1,\n",
      "          'got': 1,\n",
      "          'seemed': 1,\n",
      "          'next': 1,\n",
      "          'likely': 1,\n",
      "          'step': 1,\n",
      "          'nand': 1,\n",
      "          'couldve': 1,\n",
      "          'selfindulged': 1,\n",
      "          'yet': 1,\n",
      "          'self': 1,\n",
      "          'approach': 1,\n",
      "          'nprobably': 1,\n",
      "          'nspiceworld': 1,\n",
      "          'thought': 1,\n",
      "          'would': 1,\n",
      "          'embarrassing': 1,\n",
      "          'enjoy': 1,\n",
      "          'find': 1,\n",
      "          'wanting': 1,\n",
      "          'defend': 1,\n",
      "          'didnt': 1,\n",
      "          'even': 1,\n",
      "          'review': 1,\n",
      "          'succeeds': 1,\n",
      "          'gives': 1,\n",
      "          'chance': 1,\n",
      "          'play': 1,\n",
      "          'allowing': 1,\n",
      "          'obsessive': 1,\n",
      "          'indulge': 1,\n",
      "          'brainless': 1,\n",
      "          'moment': 1,\n",
      "          'nperhaps': 1,\n",
      "          'case': 1,\n",
      "          'movies': 1,\n",
      "          'nyou': 1,\n",
      "          'saying': 1,\n",
      "          'ncome': 1,\n",
      "          'comes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'rangoon': 4,\n",
      "          'beyond': 3,\n",
      "          'enough': 3,\n",
      "          'nthe': 3,\n",
      "          'doo': 3,\n",
      "          'say': 2,\n",
      "          'movies': 2,\n",
      "          'like': 2,\n",
      "          'right': 2,\n",
      "          'nas': 2,\n",
      "          'john': 2,\n",
      "          'arquette': 2,\n",
      "          'characters': 2,\n",
      "          'foreign': 2,\n",
      "          'could': 1,\n",
      "          'paraphrase': 1,\n",
      "          'michelle': 1,\n",
      "          'pfieffers': 1,\n",
      "          'character': 1,\n",
      "          'dangerous': 1,\n",
      "          'minds': 1,\n",
      "          'starts': 1,\n",
      "          'nthats': 1,\n",
      "          'fair': 1,\n",
      "          'nall': 1,\n",
      "          'school': 1,\n",
      "          'children': 1,\n",
      "          'given': 1,\n",
      "          'benefit': 1,\n",
      "          'doubt': 1,\n",
      "          'chance': 1,\n",
      "          'succeed': 1,\n",
      "          'nafter': 1,\n",
      "          'think': 1,\n",
      "          'combination': 1,\n",
      "          'talent': 1,\n",
      "          'effort': 1,\n",
      "          'wonders': 1,\n",
      "          'nmountains': 1,\n",
      "          'moved': 1,\n",
      "          'good': 1,\n",
      "          'made': 1,\n",
      "          'nyeah': 1,\n",
      "          'nchildren': 1,\n",
      "          'fail': 1,\n",
      "          'films': 1,\n",
      "          'director': 1,\n",
      "          'boormans': 1,\n",
      "          'latest': 1,\n",
      "          'success': 1,\n",
      "          'hinges': 1,\n",
      "          'believability': 1,\n",
      "          'patricia': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'true': 1,\n",
      "          'romance': 1,\n",
      "          'busty': 1,\n",
      "          'westernerinperil': 1,\n",
      "          'wandering': 1,\n",
      "          '1988': 1,\n",
      "          'burma': 1,\n",
      "          'without': 1,\n",
      "          'passport': 1,\n",
      "          'nthough': 1,\n",
      "          'stomach': 1,\n",
      "          'mild': 1,\n",
      "          'plot': 1,\n",
      "          'contrivances': 1,\n",
      "          'get': 1,\n",
      "          'tougher': 1,\n",
      "          'task': 1,\n",
      "          'overlook': 1,\n",
      "          'actress': 1,\n",
      "          'nshes': 1,\n",
      "          'lightweight': 1,\n",
      "          'first': 1,\n",
      "          'scene': 1,\n",
      "          'narration': 1,\n",
      "          'ndemonstrates': 1,\n",
      "          'doesnt': 1,\n",
      "          'nearly': 1,\n",
      "          'range': 1,\n",
      "          'emotions': 1,\n",
      "          'charactera': 1,\n",
      "          'mother': 1,\n",
      "          'fleeing': 1,\n",
      "          'memories': 1,\n",
      "          'murdered': 1,\n",
      "          'husband': 1,\n",
      "          'sonis': 1,\n",
      "          'supposed': 1,\n",
      "          'show': 1,\n",
      "          'nshe': 1,\n",
      "          'may': 1,\n",
      "          'give': 1,\n",
      "          'stronger': 1,\n",
      "          'performance': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'walk': 1,\n",
      "          'clouds': 1,\n",
      "          'much': 1,\n",
      "          'nbeyond': 1,\n",
      "          'physically': 1,\n",
      "          'appealing': 1,\n",
      "          'film': 1,\n",
      "          'thanks': 1,\n",
      "          'practiced': 1,\n",
      "          'craftsmanship': 1,\n",
      "          'boorman': 1,\n",
      "          'deliverance': 1,\n",
      "          'excalibur': 1,\n",
      "          'hope': 1,\n",
      "          'glory': 1,\n",
      "          'nhe': 1,\n",
      "          'keeps': 1,\n",
      "          'narrative': 1,\n",
      "          'moving': 1,\n",
      "          'matter': 1,\n",
      "          'muddy': 1,\n",
      "          'storyor': 1,\n",
      "          'heroinegets': 1,\n",
      "          'nwhy': 1,\n",
      "          'chose': 1,\n",
      "          'remains': 1,\n",
      "          'mystery': 1,\n",
      "          'though': 1,\n",
      "          'nmaybe': 1,\n",
      "          'thinking': 1,\n",
      "          'dramatic': 1,\n",
      "          'weight': 1,\n",
      "          'story': 1,\n",
      "          'would': 1,\n",
      "          'overcome': 1,\n",
      "          'casting': 1,\n",
      "          'deficiencies': 1,\n",
      "          'nbut': 1,\n",
      "          'even': 1,\n",
      "          'hour': 1,\n",
      "          'halfstated': 1,\n",
      "          'political': 1,\n",
      "          'statements': 1,\n",
      "          'murky': 1,\n",
      "          'mass': 1,\n",
      "          'killings': 1,\n",
      "          'still': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'whats': 1,\n",
      "          'happening': 1,\n",
      "          'country': 1,\n",
      "          'feel': 1,\n",
      "          'distressed': 1,\n",
      "          'situations': 1,\n",
      "          'nempty': 1,\n",
      "          'exoticism': 1,\n",
      "          'technical': 1,\n",
      "          'credits': 1,\n",
      "          'curious': 1,\n",
      "          'mix': 1,\n",
      "          'combining': 1,\n",
      "          'lush': 1,\n",
      "          'jungle': 1,\n",
      "          'photography': 1,\n",
      "          'bad': 1,\n",
      "          'bluescreen': 1,\n",
      "          'work': 1,\n",
      "          'nalso': 1,\n",
      "          'odd': 1,\n",
      "          'obvious': 1,\n",
      "          'dubbing': 1,\n",
      "          'ndone': 1,\n",
      "          'make': 1,\n",
      "          'sound': 1,\n",
      "          'less': 1,\n",
      "          'nand': 1,\n",
      "          'mistake': 1,\n",
      "          'extras': 1,\n",
      "          'keep': 1,\n",
      "          'reappearing': 1,\n",
      "          'different': 1,\n",
      "          'soldiers': 1,\n",
      "          'ndoo': 1,\n",
      "          'n': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'theme': 1,\n",
      "          'opinion': 1,\n",
      "          'movie': 1,\n",
      "          'nyou': 1,\n",
      "          'judge': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nbsp': 43,\n",
      "          'series': 28,\n",
      "          'movie': 22,\n",
      "          'xfiles': 20,\n",
      "          'television': 20,\n",
      "          'nnbsp': 15,\n",
      "          'show': 12,\n",
      "          'carter': 12,\n",
      "          'nthe': 10,\n",
      "          'fans': 8,\n",
      "          'much': 8,\n",
      "          'characters': 8,\n",
      "          'cinema': 7,\n",
      "          'truth': 6,\n",
      "          'would': 6,\n",
      "          'alien': 6,\n",
      "          'questions': 6,\n",
      "          'film': 6,\n",
      "          'appearance': 6,\n",
      "          'think': 4,\n",
      "          'one': 4,\n",
      "          'films': 4,\n",
      "          'fan': 4,\n",
      "          'culture': 4,\n",
      "          'whose': 4,\n",
      "          'fbi': 4,\n",
      "          'fox': 4,\n",
      "          'find': 4,\n",
      "          'extraterrestrial': 4,\n",
      "          'scully': 4,\n",
      "          'try': 4,\n",
      "          'black': 4,\n",
      "          'ooze': 4,\n",
      "          'shadow': 4,\n",
      "          'government': 4,\n",
      "          'coverup': 4,\n",
      "          'three': 4,\n",
      "          'nwill': 4,\n",
      "          'understand': 4,\n",
      "          'nyes': 4,\n",
      "          'text': 4,\n",
      "          'secondary': 4,\n",
      "          'quickly': 4,\n",
      "          'bring': 4,\n",
      "          'lone': 4,\n",
      "          'gunmen': 4,\n",
      "          'even': 4,\n",
      "          'audience': 4,\n",
      "          'actually': 4,\n",
      "          'never': 4,\n",
      "          'us': 4,\n",
      "          'nin': 4,\n",
      "          'get': 4,\n",
      "          'wants': 4,\n",
      "          'nwe': 4,\n",
      "          'chris': 4,\n",
      "          'answer': 4,\n",
      "          'explanations': 4,\n",
      "          'disbelief': 4,\n",
      "          'like': 4,\n",
      "          'impose': 4,\n",
      "          'nit': 4,\n",
      "          'screen': 4,\n",
      "          'nmeaning': 4,\n",
      "          'medium': 4,\n",
      "          'explicit': 4,\n",
      "          'nothing': 4,\n",
      "          'nthere': 3,\n",
      "          'nwhy': 3,\n",
      "          'first': 3,\n",
      "          'saying': 2,\n",
      "          'summers': 2,\n",
      "          'anticipated': 2,\n",
      "          'safe': 2,\n",
      "          'nfor': 2,\n",
      "          'five': 2,\n",
      "          'years': 2,\n",
      "          'developed': 2,\n",
      "          'dedicated': 2,\n",
      "          'rabid': 2,\n",
      "          'devotion': 2,\n",
      "          'rivals': 2,\n",
      "          'star': 2,\n",
      "          'trek': 2,\n",
      "          'premise': 2,\n",
      "          'two': 2,\n",
      "          'agents': 2,\n",
      "          'investigate': 2,\n",
      "          'paranormal': 2,\n",
      "          'mulder': 2,\n",
      "          'david': 2,\n",
      "          'duchovny': 2,\n",
      "          'avid': 2,\n",
      "          'believer': 2,\n",
      "          'quest': 2,\n",
      "          'life': 2,\n",
      "          'borders': 2,\n",
      "          'paranoid': 2,\n",
      "          'dana': 2,\n",
      "          'gillian': 2,\n",
      "          'anderson': 2,\n",
      "          'scientific': 2,\n",
      "          'skeptic': 2,\n",
      "          'trying': 2,\n",
      "          'rational': 2,\n",
      "          'explanation': 2,\n",
      "          'mulders': 2,\n",
      "          'flights': 2,\n",
      "          'fancy': 2,\n",
      "          'plot': 2,\n",
      "          'virtually': 2,\n",
      "          'impossible': 2,\n",
      "          'since': 2,\n",
      "          'general': 2,\n",
      "          'result': 2,\n",
      "          'confusion': 2,\n",
      "          'yet': 2,\n",
      "          'specific': 2,\n",
      "          'give': 2,\n",
      "          'away': 2,\n",
      "          'nnevertheless': 2,\n",
      "          'n': 2,\n",
      "          'viruslike': 2,\n",
      "          'substance': 2,\n",
      "          'threatening': 2,\n",
      "          'earth': 2,\n",
      "          'na': 2,\n",
      "          'aware': 2,\n",
      "          'tries': 2,\n",
      "          'existence': 2,\n",
      "          'nmulder': 2,\n",
      "          'know': 2,\n",
      "          'expose': 2,\n",
      "          'invasion': 2,\n",
      "          'central': 2,\n",
      "          'heard': 2,\n",
      "          'asked': 2,\n",
      "          '1': 2,\n",
      "          'dont': 2,\n",
      "          'watch': 2,\n",
      "          'able': 2,\n",
      "          'nisolated': 2,\n",
      "          'individual': 2,\n",
      "          'stand': 2,\n",
      "          'alone': 2,\n",
      "          'nthey': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'given': 2,\n",
      "          'enough': 2,\n",
      "          'background': 2,\n",
      "          'anyone': 2,\n",
      "          'familiar': 2,\n",
      "          'nalthough': 2,\n",
      "          'histories': 2,\n",
      "          'may': 2,\n",
      "          'confuse': 2,\n",
      "          'uninitiated': 2,\n",
      "          'essential': 2,\n",
      "          'nthis': 2,\n",
      "          'major': 2,\n",
      "          'problem': 2,\n",
      "          'trot': 2,\n",
      "          'token': 2,\n",
      "          'disappear': 2,\n",
      "          'superintendent': 2,\n",
      "          'skinner': 2,\n",
      "          'picture': 2,\n",
      "          'place': 2,\n",
      "          'sat': 2,\n",
      "          'silently': 2,\n",
      "          'internal': 2,\n",
      "          'affairs': 2,\n",
      "          'committee': 2,\n",
      "          'computer': 2,\n",
      "          'geek': 2,\n",
      "          'conspiracy': 2,\n",
      "          'theorists': 2,\n",
      "          'briefer': 2,\n",
      "          'nthese': 2,\n",
      "          'recurrent': 2,\n",
      "          'met': 2,\n",
      "          'whoops': 2,\n",
      "          'suggesting': 2,\n",
      "          'popularity': 2,\n",
      "          'among': 2,\n",
      "          'could': 2,\n",
      "          'pass': 2,\n",
      "          'nstill': 2,\n",
      "          'vanish': 2,\n",
      "          'gives': 2,\n",
      "          'answers': 2,\n",
      "          'explain': 2,\n",
      "          'things': 2,\n",
      "          'fairly': 2,\n",
      "          'complete': 2,\n",
      "          'history': 2,\n",
      "          'finally': 2,\n",
      "          'understanding': 2,\n",
      "          'motivations': 2,\n",
      "          'behind': 2,\n",
      "          'subtle': 2,\n",
      "          'tieins': 2,\n",
      "          'contemporary': 2,\n",
      "          'ufoology': 2,\n",
      "          'including': 2,\n",
      "          'greys': 2,\n",
      "          'roswell': 2,\n",
      "          'crash': 2,\n",
      "          '1947': 2,\n",
      "          'good': 2,\n",
      "          'nno': 2,\n",
      "          'dreadful': 2,\n",
      "          'shows': 2,\n",
      "          'fundamental': 2,\n",
      "          'problems': 2,\n",
      "          'writercreator': 2,\n",
      "          'carters': 2,\n",
      "          'talents': 2,\n",
      "          'relationship': 2,\n",
      "          'screenplay': 2,\n",
      "          'creator': 2,\n",
      "          'sloppy': 2,\n",
      "          'cliched': 2,\n",
      "          'nafter': 2,\n",
      "          'approximately': 2,\n",
      "          'fortyfive': 2,\n",
      "          'minutes': 2,\n",
      "          'length': 2,\n",
      "          'episode': 2,\n",
      "          'minus': 2,\n",
      "          'commercials': 2,\n",
      "          'pace': 2,\n",
      "          'drops': 2,\n",
      "          'snails': 2,\n",
      "          'crawl': 2,\n",
      "          'nnot': 2,\n",
      "          'long': 2,\n",
      "          'point': 2,\n",
      "          'attempts': 2,\n",
      "          'wish': 2,\n",
      "          'trite': 2,\n",
      "          'ridiculous': 2,\n",
      "          'preferred': 2,\n",
      "          'explained': 2,\n",
      "          'quite': 2,\n",
      "          'ni': 2,\n",
      "          'willing': 2,\n",
      "          'suspend': 2,\n",
      "          'fair': 2,\n",
      "          'bit': 2,\n",
      "          'absurdity': 2,\n",
      "          'swallow': 2,\n",
      "          'nbreaking': 2,\n",
      "          'suspension': 2,\n",
      "          'destroys': 2,\n",
      "          'listening': 2,\n",
      "          'leave': 2,\n",
      "          'maybe': 2,\n",
      "          'absurd': 2,\n",
      "          'tired': 2,\n",
      "          'unoriginal': 2,\n",
      "          'extraterrestrials': 2,\n",
      "          'breed': 2,\n",
      "          'gestate': 2,\n",
      "          'craft': 2,\n",
      "          'looks': 2,\n",
      "          'leftover': 2,\n",
      "          'set': 2,\n",
      "          'piece': 2,\n",
      "          'independence': 2,\n",
      "          'day': 2,\n",
      "          'nnote': 2,\n",
      "          'movies': 2,\n",
      "          'id4': 2,\n",
      "          '20thcentury': 2,\n",
      "          'studio': 2,\n",
      "          'beginning': 2,\n",
      "          'cannibalize': 2,\n",
      "          'noteworthy': 2,\n",
      "          'based': 2,\n",
      "          'produced': 2,\n",
      "          'still': 2,\n",
      "          'running': 2,\n",
      "          'comparing': 2,\n",
      "          'certain': 2,\n",
      "          'aspects': 2,\n",
      "          'respective': 2,\n",
      "          'media': 2,\n",
      "          'emerge': 2,\n",
      "          'avoidance': 2,\n",
      "          'raised': 2,\n",
      "          'annoyed': 2,\n",
      "          'frustrated': 2,\n",
      "          'many': 2,\n",
      "          'people': 2,\n",
      "          'nhowever': 2,\n",
      "          'rather': 2,\n",
      "          'liked': 2,\n",
      "          'ntelevision': 2,\n",
      "          'allows': 2,\n",
      "          'little': 2,\n",
      "          'meaning': 2,\n",
      "          'want': 2,\n",
      "          'proverbial': 2,\n",
      "          'blank': 2,\n",
      "          'project': 2,\n",
      "          'minds': 2,\n",
      "          'open': 2,\n",
      "          'ambiguous': 2,\n",
      "          'nature': 2,\n",
      "          'hand': 2,\n",
      "          'opposite': 2,\n",
      "          'projects': 2,\n",
      "          'onto': 2,\n",
      "          'filmmakers': 2,\n",
      "          'mind': 2,\n",
      "          'fill': 2,\n",
      "          'textual': 2,\n",
      "          'gaps': 2,\n",
      "          'almost': 2,\n",
      "          'happens': 2,\n",
      "          'american': 2,\n",
      "          'needs': 2,\n",
      "          'selfcontained': 2,\n",
      "          'determined': 2,\n",
      "          'made': 2,\n",
      "          'jump': 2,\n",
      "          'small': 2,\n",
      "          'big': 2,\n",
      "          'needed': 2,\n",
      "          'take': 2,\n",
      "          'consideration': 2,\n",
      "          'differences': 2,\n",
      "          'well': 2,\n",
      "          'nhe': 2,\n",
      "          'nby': 2,\n",
      "          'making': 2,\n",
      "          'left': 2,\n",
      "          'implicit': 2,\n",
      "          'reveals': 2,\n",
      "          'limits': 2,\n",
      "          'creativity': 2,\n",
      "          'skill': 2,\n",
      "          'say': 2,\n",
      "          'make': 2,\n",
      "          'tv': 2,\n",
      "          'far': 2,\n",
      "          'non': 2,\n",
      "          'must': 2,\n",
      "          'meanings': 2,\n",
      "          'nhow': 2,\n",
      "          'true': 2,\n",
      "          'see': 2,\n",
      "          'st': 2,\n",
      "          'johns': 2,\n",
      "          'noutlining': 1,\n",
      "          'n2': 1,\n",
      "          'n3': 1,\n",
      "          'nfirst': 1,\n",
      "          'ncinema': 1,\n",
      "          'nso': 1,\n",
      "          'nwhen': 1,\n",
      "          'following': 1,\n",
      "          'printed': 1,\n",
      "          'express': 1,\n",
      "          'newfoundland': 1,\n",
      "          'canada': 1,\n",
      "          'nall': 1,\n",
      "          'views': 1,\n",
      "          'authors': 1,\n",
      "          'copyright': 1,\n",
      "          'held': 1,\n",
      "          'robinsonblackmore': 1,\n",
      "          '1998': 1,\n",
      "          'nmovie': 1,\n",
      "          'review': 1,\n",
      "          'mikel': 1,\n",
      "          'j': 1,\n",
      "          'koven': 1,\n",
      "          'outlining': 1,\n",
      "          '2': 1,\n",
      "          '3': 1,\n",
      "          'nis': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'alain': 6,\n",
      "          'chabat': 6,\n",
      "          'film': 5,\n",
      "          'french': 5,\n",
      "          'nthe': 5,\n",
      "          'little': 4,\n",
      "          'sex': 4,\n",
      "          'one': 4,\n",
      "          'twist': 4,\n",
      "          'shes': 4,\n",
      "          'pretty': 4,\n",
      "          'comedy': 3,\n",
      "          'marijo': 3,\n",
      "          'nbut': 3,\n",
      "          'bad': 3,\n",
      "          'american': 2,\n",
      "          'nsome': 2,\n",
      "          'even': 2,\n",
      "          'good': 2,\n",
      "          'big': 2,\n",
      "          'crap': 2,\n",
      "          'flick': 2,\n",
      "          'married': 2,\n",
      "          'couple': 2,\n",
      "          'kids': 2,\n",
      "          'kinda': 2,\n",
      "          'victoria': 2,\n",
      "          'abril': 2,\n",
      "          'nand': 2,\n",
      "          'balasko': 2,\n",
      "          'two': 2,\n",
      "          'nso': 2,\n",
      "          'decides': 2,\n",
      "          'get': 2,\n",
      "          'obvious': 2,\n",
      "          'love': 2,\n",
      "          'stupidity': 2,\n",
      "          'moronic': 2,\n",
      "          'characters': 2,\n",
      "          'intelligent': 2,\n",
      "          'stupid': 2,\n",
      "          'really': 2,\n",
      "          'acting': 2,\n",
      "          'isnt': 2,\n",
      "          'watch': 2,\n",
      "          'moments': 2,\n",
      "          'contrary': 1,\n",
      "          'popular': 1,\n",
      "          'belief': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'foregin': 1,\n",
      "          'released': 1,\n",
      "          'market': 1,\n",
      "          'masterpiece': 1,\n",
      "          'arent': 1,\n",
      "          'examples': 1,\n",
      "          'principle': 1,\n",
      "          'aboslutely': 1,\n",
      "          'dreadful': 1,\n",
      "          'un': 1,\n",
      "          'indien': 1,\n",
      "          'dans': 1,\n",
      "          'la': 1,\n",
      "          'ville': 1,\n",
      "          'presented': 1,\n",
      "          'indian': 1,\n",
      "          'city': 1,\n",
      "          'remade': 1,\n",
      "          'tim': 1,\n",
      "          'allen': 1,\n",
      "          'jungle2jungle': 1,\n",
      "          'nwhat': 1,\n",
      "          'could': 1,\n",
      "          'clever': 1,\n",
      "          'turns': 1,\n",
      "          'mess': 1,\n",
      "          'n': 1,\n",
      "          'cool': 1,\n",
      "          'title': 1,\n",
      "          'real': 1,\n",
      "          'gazon': 1,\n",
      "          'maudit': 1,\n",
      "          'literally': 1,\n",
      "          'meaning': 1,\n",
      "          'twisted': 1,\n",
      "          'ground': 1,\n",
      "          'something': 1,\n",
      "          'like': 1,\n",
      "          'deals': 1,\n",
      "          'intrusion': 1,\n",
      "          'stranger': 1,\n",
      "          'screws': 1,\n",
      "          'things': 1,\n",
      "          'nloli': 1,\n",
      "          'exactly': 1,\n",
      "          'happily': 1,\n",
      "          'nalways': 1,\n",
      "          'business': 1,\n",
      "          'trips': 1,\n",
      "          'cheats': 1,\n",
      "          'eventually': 1,\n",
      "          'finds': 1,\n",
      "          'day': 1,\n",
      "          'meets': 1,\n",
      "          'butch': 1,\n",
      "          'mechanic': 1,\n",
      "          'cowriterdirector': 1,\n",
      "          'josiane': 1,\n",
      "          'hit': 1,\n",
      "          'back': 1,\n",
      "          'sleeping': 1,\n",
      "          'soons': 1,\n",
      "          'starts': 1,\n",
      "          'fall': 1,\n",
      "          'also': 1,\n",
      "          'realizes': 1,\n",
      "          'still': 1,\n",
      "          'course': 1,\n",
      "          'keep': 1,\n",
      "          'nshell': 1,\n",
      "          'sleep': 1,\n",
      "          '3': 1,\n",
      "          'days': 1,\n",
      "          'sunday': 1,\n",
      "          'shell': 1,\n",
      "          'rest': 1,\n",
      "          'nafter': 1,\n",
      "          'needs': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'sylvia': 1,\n",
      "          'kristel': 1,\n",
      "          'goes': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'soon': 1,\n",
      "          'theres': 1,\n",
      "          'ironic': 1,\n",
      "          'nending': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'completely': 1,\n",
      "          'different': 1,\n",
      "          'culture': 1,\n",
      "          'im': 1,\n",
      "          'quite': 1,\n",
      "          'familiar': 1,\n",
      "          'cinema': 1,\n",
      "          'nnone': 1,\n",
      "          'peter': 1,\n",
      "          'stormare': 1,\n",
      "          'fargo': 1,\n",
      "          'movie': 1,\n",
      "          'backed': 1,\n",
      "          'make': 1,\n",
      "          'point': 1,\n",
      "          'action': 1,\n",
      "          'much': 1,\n",
      "          'hopeful': 1,\n",
      "          'chuckle': 1,\n",
      "          'audience': 1,\n",
      "          'nwhats': 1,\n",
      "          'shocking': 1,\n",
      "          'frances': 1,\n",
      "          'biggest': 1,\n",
      "          'hits': 1,\n",
      "          'nominated': 1,\n",
      "          'lot': 1,\n",
      "          'cesars': 1,\n",
      "          'equivalent': 1,\n",
      "          'oscars': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'problem': 1,\n",
      "          'njosiane': 1,\n",
      "          'job': 1,\n",
      "          'role': 1,\n",
      "          'humerous': 1,\n",
      "          'entertaining': 1,\n",
      "          'deep': 1,\n",
      "          'neven': 1,\n",
      "          'woody': 1,\n",
      "          'allens': 1,\n",
      "          'notverygood': 1,\n",
      "          'midsummer': 1,\n",
      "          'nights': 1,\n",
      "          'wellwritten': 1,\n",
      "          'possesses': 1,\n",
      "          'depth': 1,\n",
      "          'nthis': 1,\n",
      "          'shallow': 1,\n",
      "          'unfunny': 1,\n",
      "          'annoying': 1,\n",
      "          'moves': 1,\n",
      "          'pace': 1,\n",
      "          'snail': 1,\n",
      "          'damnnear': 1,\n",
      "          'painful': 1,\n",
      "          'nthank': 1,\n",
      "          'god': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          'button': 1,\n",
      "          'however': 1,\n",
      "          'actors': 1,\n",
      "          'best': 1,\n",
      "          'material': 1,\n",
      "          'likable': 1,\n",
      "          'despite': 1,\n",
      "          'script': 1,\n",
      "          'fact': 1,\n",
      "          'enough': 1,\n",
      "          'try': 1,\n",
      "          'divide': 1,\n",
      "          'people': 1,\n",
      "          'funny': 1,\n",
      "          'neurotic': 1,\n",
      "          'husband': 1,\n",
      "          'lame': 1,\n",
      "          'nits': 1,\n",
      "          'overly': 1,\n",
      "          'horrible': 1,\n",
      "          'brief': 1,\n",
      "          'example': 1,\n",
      "          'illadvised': 1,\n",
      "          'distribution': 1,\n",
      "          'foreign': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'stone': 7,\n",
      "          'given': 4,\n",
      "          'sunday': 4,\n",
      "          'football': 4,\n",
      "          'film': 4,\n",
      "          'damato': 4,\n",
      "          'game': 4,\n",
      "          'see': 3,\n",
      "          'nin': 3,\n",
      "          'editing': 3,\n",
      "          'character': 3,\n",
      "          'visual': 3,\n",
      "          'decent': 2,\n",
      "          'sports': 2,\n",
      "          'movie': 2,\n",
      "          'struggling': 2,\n",
      "          'break': 2,\n",
      "          'insight': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'seems': 2,\n",
      "          'one': 2,\n",
      "          'dizzying': 2,\n",
      "          'appears': 2,\n",
      "          'development': 2,\n",
      "          'coach': 2,\n",
      "          'losing': 2,\n",
      "          'cap': 2,\n",
      "          'field': 2,\n",
      "          'beaman': 2,\n",
      "          'jamie': 2,\n",
      "          'foxx': 2,\n",
      "          'becomes': 2,\n",
      "          'nand': 2,\n",
      "          'nthere': 2,\n",
      "          'big': 2,\n",
      "          'nthe': 2,\n",
      "          'directors': 2,\n",
      "          'approach': 2,\n",
      "          'watch': 2,\n",
      "          'audience': 2,\n",
      "          'nany': 2,\n",
      "          'cast': 2,\n",
      "          'back': 2,\n",
      "          'seat': 2,\n",
      "          'free': 1,\n",
      "          'oliver': 1,\n",
      "          'stones': 1,\n",
      "          'nits': 1,\n",
      "          'entertaining': 1,\n",
      "          'offers': 1,\n",
      "          'excitement': 1,\n",
      "          'rockem': 1,\n",
      "          'sockem': 1,\n",
      "          'profession': 1,\n",
      "          'pro': 1,\n",
      "          'director': 1,\n",
      "          'priority': 1,\n",
      "          'mind': 1,\n",
      "          'sprucing': 1,\n",
      "          'assortment': 1,\n",
      "          'fancy': 1,\n",
      "          'camera': 1,\n",
      "          'maneuvers': 1,\n",
      "          'altering': 1,\n",
      "          'frame': 1,\n",
      "          'quickflash': 1,\n",
      "          'photography': 1,\n",
      "          'inyourface': 1,\n",
      "          'completely': 1,\n",
      "          'ignored': 1,\n",
      "          'matter': 1,\n",
      "          'plausible': 1,\n",
      "          'politics': 1,\n",
      "          'nwe': 1,\n",
      "          'glimpses': 1,\n",
      "          'greatness': 1,\n",
      "          'agenda': 1,\n",
      "          'tangled': 1,\n",
      "          'technical': 1,\n",
      "          'gobbledygook': 1,\n",
      "          'nit': 1,\n",
      "          'grows': 1,\n",
      "          'tiresome': 1,\n",
      "          'monotonous': 1,\n",
      "          'nyes': 1,\n",
      "          'pulled': 1,\n",
      "          'brian': 1,\n",
      "          'depalma': 1,\n",
      "          'nmatters': 1,\n",
      "          'importance': 1,\n",
      "          'pushed': 1,\n",
      "          'aside': 1,\n",
      "          'right': 1,\n",
      "          'getgo': 1,\n",
      "          'ntony': 1,\n",
      "          'al': 1,\n",
      "          'pacino': 1,\n",
      "          'miami': 1,\n",
      "          'sharks': 1,\n",
      "          'finds': 1,\n",
      "          'team': 1,\n",
      "          'stuck': 1,\n",
      "          'rut': 1,\n",
      "          'naging': 1,\n",
      "          'quarterback': 1,\n",
      "          'rooney': 1,\n",
      "          'dennis': 1,\n",
      "          'quaid': 1,\n",
      "          'touch': 1,\n",
      "          'cant': 1,\n",
      "          'seem': 1,\n",
      "          'ignite': 1,\n",
      "          'passion': 1,\n",
      "          'squad': 1,\n",
      "          'nwhen': 1,\n",
      "          'injured': 1,\n",
      "          'patch': 1,\n",
      "          'unlikely': 1,\n",
      "          'events': 1,\n",
      "          'occur': 1,\n",
      "          'thirdstring': 1,\n",
      "          'qb': 1,\n",
      "          'willie': 1,\n",
      "          'brought': 1,\n",
      "          'nonce': 1,\n",
      "          'huddle': 1,\n",
      "          'ingame': 1,\n",
      "          'ritual': 1,\n",
      "          'horks': 1,\n",
      "          'nnerves': 1,\n",
      "          'neventually': 1,\n",
      "          'though': 1,\n",
      "          'ancy': 1,\n",
      "          'youngster': 1,\n",
      "          'wins': 1,\n",
      "          'teammates': 1,\n",
      "          'sparking': 1,\n",
      "          'rise': 1,\n",
      "          'fame': 1,\n",
      "          'world': 1,\n",
      "          'endorsements': 1,\n",
      "          'music': 1,\n",
      "          'videos': 1,\n",
      "          'etc': 1,\n",
      "          'straps': 1,\n",
      "          'us': 1,\n",
      "          'jolting': 1,\n",
      "          'ride': 1,\n",
      "          'behindthescenes': 1,\n",
      "          'stress': 1,\n",
      "          'fury': 1,\n",
      "          'business': 1,\n",
      "          'apparently': 1,\n",
      "          'like': 1,\n",
      "          'believe': 1,\n",
      "          'intriguing': 1,\n",
      "          'posed': 1,\n",
      "          'scheme': 1,\n",
      "          'things': 1,\n",
      "          'fumbles': 1,\n",
      "          'ball': 1,\n",
      "          'problem': 1,\n",
      "          'uses': 1,\n",
      "          'extravagant': 1,\n",
      "          'devices': 1,\n",
      "          'conventional': 1,\n",
      "          'would': 1,\n",
      "          'appropriate': 1,\n",
      "          'nfootball': 1,\n",
      "          'exciting': 1,\n",
      "          'think': 1,\n",
      "          'assault': 1,\n",
      "          'senses': 1,\n",
      "          'add': 1,\n",
      "          'adrenaline': 1,\n",
      "          'rush': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'mistaken': 1,\n",
      "          'kaleidoscope': 1,\n",
      "          'leaves': 1,\n",
      "          'frustrated': 1,\n",
      "          'stupor': 1,\n",
      "          'frequently': 1,\n",
      "          'excites': 1,\n",
      "          'nmany': 1,\n",
      "          'fans': 1,\n",
      "          'including': 1,\n",
      "          'attended': 1,\n",
      "          'liable': 1,\n",
      "          'disappointed': 1,\n",
      "          'ultrastylish': 1,\n",
      "          'way': 1,\n",
      "          'decided': 1,\n",
      "          'present': 1,\n",
      "          'return': 1,\n",
      "          'threestar': 1,\n",
      "          'unfortunately': 1,\n",
      "          'degraded': 1,\n",
      "          'due': 1,\n",
      "          'tampering': 1,\n",
      "          'welcome': 1,\n",
      "          'scenes': 1,\n",
      "          'pummeling': 1,\n",
      "          'comes': 1,\n",
      "          'actually': 1,\n",
      "          'shows': 1,\n",
      "          'interaction': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'heated': 1,\n",
      "          'returns': 1,\n",
      "          'feisty': 1,\n",
      "          'young': 1,\n",
      "          'owner': 1,\n",
      "          'christina': 1,\n",
      "          'pagniacci': 1,\n",
      "          'cameron': 1,\n",
      "          'diaz': 1,\n",
      "          'enjoyable': 1,\n",
      "          'also': 1,\n",
      "          'solid': 1,\n",
      "          'performance': 1,\n",
      "          'experiments': 1,\n",
      "          'great': 1,\n",
      "          'success': 1,\n",
      "          'first': 1,\n",
      "          'trek': 1,\n",
      "          'dramatic': 1,\n",
      "          'territory': 1,\n",
      "          'stellar': 1,\n",
      "          'supporting': 1,\n",
      "          'includes': 1,\n",
      "          'matthew': 1,\n",
      "          'modine': 1,\n",
      "          'aaron': 1,\n",
      "          'eckhart': 1,\n",
      "          'lauren': 1,\n",
      "          'holly': 1,\n",
      "          'annmargret': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'brief': 1,\n",
      "          'appearance': 1,\n",
      "          'many': 1,\n",
      "          'names': 1,\n",
      "          'wasted': 1,\n",
      "          'typical': 1,\n",
      "          'demise': 1,\n",
      "          'large': 1,\n",
      "          'experienced': 1,\n",
      "          'npacino': 1,\n",
      "          'makes': 1,\n",
      "          'interesting': 1,\n",
      "          'progress': 1,\n",
      "          'nyou': 1,\n",
      "          'begin': 1,\n",
      "          'identify': 1,\n",
      "          'morals': 1,\n",
      "          'striving': 1,\n",
      "          'nbut': 1,\n",
      "          'often': 1,\n",
      "          'felt': 1,\n",
      "          'another': 1,\n",
      "          'play': 1,\n",
      "          'thing': 1,\n",
      "          'could': 1,\n",
      "          'weave': 1,\n",
      "          'dynamics': 1,\n",
      "          'watchable': 1,\n",
      "          'disappointing': 1,\n",
      "          'plot': 1,\n",
      "          'characters': 1,\n",
      "          'take': 1,\n",
      "          'excessive': 1,\n",
      "          'filmmaking': 1,\n",
      "          'technique': 1,\n",
      "          'distant': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'god': 9,\n",
      "          'film': 8,\n",
      "          'school': 7,\n",
      "          'nthe': 4,\n",
      "          'family': 4,\n",
      "          'nthis': 4,\n",
      "          'search': 4,\n",
      "          'one': 3,\n",
      "          'grandfather': 3,\n",
      "          'like': 3,\n",
      "          'catholic': 3,\n",
      "          'well': 3,\n",
      "          'joseph': 3,\n",
      "          'thats': 3,\n",
      "          'parochial': 3,\n",
      "          'hokum': 3,\n",
      "          'everyone': 2,\n",
      "          'found': 2,\n",
      "          'child': 2,\n",
      "          'almost': 2,\n",
      "          'beals': 2,\n",
      "          'nice': 2,\n",
      "          'without': 2,\n",
      "          'sister': 2,\n",
      "          'children': 2,\n",
      "          'death': 2,\n",
      "          'nhis': 2,\n",
      "          'stuff': 2,\n",
      "          'age': 2,\n",
      "          'look': 2,\n",
      "          'better': 2,\n",
      "          'place': 2,\n",
      "          'wears': 2,\n",
      "          'baseball': 2,\n",
      "          'boy': 2,\n",
      "          'real': 2,\n",
      "          'next': 2,\n",
      "          'hollywood': 2,\n",
      "          'angel': 2,\n",
      "          'right': 2,\n",
      "          'wellconceived': 1,\n",
      "          'ultra': 1,\n",
      "          'sugary': 1,\n",
      "          'comingofage': 1,\n",
      "          'include': 1,\n",
      "          'sappy': 1,\n",
      "          'digestion': 1,\n",
      "          'njoseph': 1,\n",
      "          'cross': 1,\n",
      "          'joshua': 1,\n",
      "          'beal': 1,\n",
      "          '10yearold': 1,\n",
      "          'saddened': 1,\n",
      "          'recent': 1,\n",
      "          'loss': 1,\n",
      "          'loggia': 1,\n",
      "          'bone': 1,\n",
      "          'marrow': 1,\n",
      "          'cancer': 1,\n",
      "          'nloggia': 1,\n",
      "          'wonderful': 1,\n",
      "          'relating': 1,\n",
      "          'wholesome': 1,\n",
      "          'manner': 1,\n",
      "          'saves': 1,\n",
      "          'drowning': 1,\n",
      "          'syrup': 1,\n",
      "          'sitcom': 1,\n",
      "          'idyllic': 1,\n",
      "          'affluent': 1,\n",
      "          'properly': 1,\n",
      "          'religious': 1,\n",
      "          'fanatical': 1,\n",
      "          'father': 1,\n",
      "          'denis': 1,\n",
      "          'leary': 1,\n",
      "          'wife': 1,\n",
      "          'dana': 1,\n",
      "          'delany': 1,\n",
      "          'successful': 1,\n",
      "          'doctors': 1,\n",
      "          'julia': 1,\n",
      "          'stiles': 1,\n",
      "          'plays': 1,\n",
      "          'joshuas': 1,\n",
      "          'older': 1,\n",
      "          'needling': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'also': 1,\n",
      "          'showing': 1,\n",
      "          'really': 1,\n",
      "          'cares': 1,\n",
      "          'seemingly': 1,\n",
      "          'conceived': 1,\n",
      "          'heaven': 1,\n",
      "          'living': 1,\n",
      "          'south': 1,\n",
      "          'philadelphia': 1,\n",
      "          'sending': 1,\n",
      "          'wellrun': 1,\n",
      "          'njoshua': 1,\n",
      "          'protagonist': 1,\n",
      "          'narrator': 1,\n",
      "          'yarn': 1,\n",
      "          'handsome': 1,\n",
      "          'sweet': 1,\n",
      "          'intelligent': 1,\n",
      "          'friendly': 1,\n",
      "          'endearing': 1,\n",
      "          'relates': 1,\n",
      "          'nuns': 1,\n",
      "          'priests': 1,\n",
      "          'talks': 1,\n",
      "          'politely': 1,\n",
      "          'wellmeaning': 1,\n",
      "          'parents': 1,\n",
      "          'nall': 1,\n",
      "          'mawkish': 1,\n",
      "          'interplay': 1,\n",
      "          'makes': 1,\n",
      "          'nauseating': 1,\n",
      "          'watch': 1,\n",
      "          'plot': 1,\n",
      "          'arises': 1,\n",
      "          'problem': 1,\n",
      "          'coping': 1,\n",
      "          'beloved': 1,\n",
      "          'promised': 1,\n",
      "          'forever': 1,\n",
      "          'answer': 1,\n",
      "          'pretty': 1,\n",
      "          'heady': 1,\n",
      "          'youngster': 1,\n",
      "          'way': 1,\n",
      "          'sometimes': 1,\n",
      "          'takes': 1,\n",
      "          'us': 1,\n",
      "          'nowhere': 1,\n",
      "          'friend': 1,\n",
      "          'david': 1,\n",
      "          'reifsnyder': 1,\n",
      "          'says': 1,\n",
      "          'doesnt': 1,\n",
      "          'exist': 1,\n",
      "          'nnow': 1,\n",
      "          'smart': 1,\n",
      "          'kid': 1,\n",
      "          'nbut': 1,\n",
      "          'looks': 1,\n",
      "          'usual': 1,\n",
      "          'places': 1,\n",
      "          'start': 1,\n",
      "          'attends': 1,\n",
      "          'none': 1,\n",
      "          'teachers': 1,\n",
      "          'kindhearted': 1,\n",
      "          'terry': 1,\n",
      "          'rosie': 1,\n",
      "          'odonnell': 1,\n",
      "          'philly': 1,\n",
      "          'hat': 1,\n",
      "          'equates': 1,\n",
      "          'jesus': 1,\n",
      "          'stories': 1,\n",
      "          'making': 1,\n",
      "          'cleanup': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hitter': 1,\n",
      "          'opinion': 1,\n",
      "          'wasnt': 1,\n",
      "          'big': 1,\n",
      "          'tv': 1,\n",
      "          'star': 1,\n",
      "          'would': 1,\n",
      "          'vocation': 1,\n",
      "          'teacher': 1,\n",
      "          'convincing': 1,\n",
      "          'nthroughout': 1,\n",
      "          'saved': 1,\n",
      "          'answering': 1,\n",
      "          'tough': 1,\n",
      "          'sic': 1,\n",
      "          'nquestion': 1,\n",
      "          'bell': 1,\n",
      "          'rings': 1,\n",
      "          'end': 1,\n",
      "          'class': 1,\n",
      "          'nnothing': 1,\n",
      "          'much': 1,\n",
      "          'happens': 1,\n",
      "          'parody': 1,\n",
      "          'though': 1,\n",
      "          'visiting': 1,\n",
      "          'cardinal': 1,\n",
      "          'able': 1,\n",
      "          'talk': 1,\n",
      "          'gentle': 1,\n",
      "          'criticism': 1,\n",
      "          'attempted': 1,\n",
      "          'nwhat': 1,\n",
      "          'comes': 1,\n",
      "          'play': 1,\n",
      "          'designed': 1,\n",
      "          'upset': 1,\n",
      "          'anyone': 1,\n",
      "          'reassuring': 1,\n",
      "          'encounter': 1,\n",
      "          'live': 1,\n",
      "          'blond': 1,\n",
      "          'little': 1,\n",
      "          'dressed': 1,\n",
      "          'uniform': 1,\n",
      "          'innocuous': 1,\n",
      "          'smile': 1,\n",
      "          'goodygoody': 1,\n",
      "          'ends': 1,\n",
      "          'ntells': 1,\n",
      "          'quest': 1,\n",
      "          'ended': 1,\n",
      "          'apparently': 1,\n",
      "          'angels': 1,\n",
      "          'dont': 1,\n",
      "          'wings': 1,\n",
      "          'approachable': 1,\n",
      "          'nmaybe': 1,\n",
      "          'another': 1,\n",
      "          'road': 1,\n",
      "          'part': 1,\n",
      "          'final': 1,\n",
      "          'straw': 1,\n",
      "          'couldnt': 1,\n",
      "          'swallow': 1,\n",
      "          'goo': 1,\n",
      "          'nas': 1,\n",
      "          'flopped': 1,\n",
      "          'commercially': 1,\n",
      "          'sixth': 1,\n",
      "          'sense': 1,\n",
      "          'pared': 1,\n",
      "          'schmaltz': 1,\n",
      "          'came': 1,\n",
      "          'smelling': 1,\n",
      "          'rose': 1,\n",
      "          'nthough': 1,\n",
      "          'cleverness': 1,\n",
      "          'scripts': 1,\n",
      "          'director': 1,\n",
      "          'loaded': 1,\n",
      "          'learned': 1,\n",
      "          'hide': 1,\n",
      "          'nwell': 1,\n",
      "          'bless': 1,\n",
      "          'picture': 1,\n",
      "          'room': 1,\n",
      "          'nits': 1,\n",
      "          'bad': 1,\n",
      "          'nothing': 1,\n",
      "          'relevent': 1,\n",
      "          'even': 1,\n",
      "          'truthful': 1,\n",
      "          'say': 1,\n",
      "          'elementary': 1,\n",
      "          'matter': 1,\n",
      "          'nand': 1,\n",
      "          'theyre': 1,\n",
      "          'good': 1,\n",
      "          'words': 1,\n",
      "          'nyet': 1,\n",
      "          'meant': 1,\n",
      "          'benign': 1,\n",
      "          'message': 1,\n",
      "          'heart': 1,\n",
      "          'nfor': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'something': 1,\n",
      "          'soft': 1,\n",
      "          'bite': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 15,\n",
      "          'earth': 10,\n",
      "          'movie': 9,\n",
      "          'battlefield': 8,\n",
      "          'psychlos': 7,\n",
      "          'every': 6,\n",
      "          'plot': 5,\n",
      "          'n': 5,\n",
      "          'action': 4,\n",
      "          'psychlo': 4,\n",
      "          'johnny': 4,\n",
      "          'terl': 4,\n",
      "          'travolta': 4,\n",
      "          'nhe': 4,\n",
      "          'really': 4,\n",
      "          'year': 3,\n",
      "          'much': 3,\n",
      "          'want': 3,\n",
      "          'like': 3,\n",
      "          'possible': 3,\n",
      "          'planet': 3,\n",
      "          'know': 3,\n",
      "          'head': 3,\n",
      "          'big': 3,\n",
      "          'take': 3,\n",
      "          'hes': 3,\n",
      "          'nhow': 3,\n",
      "          'nearly': 3,\n",
      "          'hell': 3,\n",
      "          'going': 3,\n",
      "          'shot': 3,\n",
      "          'didnt': 3,\n",
      "          'nit': 2,\n",
      "          'syndrome': 2,\n",
      "          'witnessing': 2,\n",
      "          'disaster': 2,\n",
      "          'bad': 2,\n",
      "          'dialogue': 2,\n",
      "          'whole': 2,\n",
      "          'funny': 2,\n",
      "          'wants': 2,\n",
      "          'dont': 2,\n",
      "          'even': 2,\n",
      "          'id': 2,\n",
      "          'probably': 2,\n",
      "          'apes': 2,\n",
      "          'aliens': 2,\n",
      "          'human': 2,\n",
      "          'humans': 2,\n",
      "          'lead': 2,\n",
      "          'give': 2,\n",
      "          'knowledge': 2,\n",
      "          'language': 2,\n",
      "          'technology': 2,\n",
      "          'ridiculous': 2,\n",
      "          'nso': 2,\n",
      "          'mining': 2,\n",
      "          'go': 2,\n",
      "          'plans': 2,\n",
      "          'gold': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'things': 2,\n",
      "          'scientology': 2,\n",
      "          'hubbards': 2,\n",
      "          'cackling': 2,\n",
      "          'nall': 2,\n",
      "          'makes': 2,\n",
      "          'supposed': 2,\n",
      "          'kind': 2,\n",
      "          'nits': 2,\n",
      "          'machine': 2,\n",
      "          'must': 2,\n",
      "          'survive': 2,\n",
      "          'time': 2,\n",
      "          'watch': 2,\n",
      "          'one': 2,\n",
      "          'best': 1,\n",
      "          'comedy': 1,\n",
      "          'prospect': 1,\n",
      "          'horrifying': 1,\n",
      "          'consider': 1,\n",
      "          'nbad': 1,\n",
      "          'struck': 1,\n",
      "          'proclaimed': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'critical': 1,\n",
      "          'popular': 1,\n",
      "          'circles': 1,\n",
      "          'felt': 1,\n",
      "          'masochistic': 1,\n",
      "          'urge': 1,\n",
      "          'see': 1,\n",
      "          'firsthand': 1,\n",
      "          'nis': 1,\n",
      "          'advertised': 1,\n",
      "          'noh': 1,\n",
      "          'yes': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'acting': 1,\n",
      "          'atrocious': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'mediocre': 1,\n",
      "          'dull': 1,\n",
      "          'implausibilities': 1,\n",
      "          'legion': 1,\n",
      "          'cringeinducing': 1,\n",
      "          'package': 1,\n",
      "          'serious': 1,\n",
      "          'irritating': 1,\n",
      "          'ni': 1,\n",
      "          'continue': 1,\n",
      "          'reviewing': 1,\n",
      "          'purge': 1,\n",
      "          'atrocity': 1,\n",
      "          'mind': 1,\n",
      "          'soon': 1,\n",
      "          'read': 1,\n",
      "          'thrashing': 1,\n",
      "          'sarcastic': 1,\n",
      "          'glory': 1,\n",
      "          'premise': 1,\n",
      "          'basically': 1,\n",
      "          'ripoff': 1,\n",
      "          'minus': 1,\n",
      "          'philosophical': 1,\n",
      "          'discussion': 1,\n",
      "          'plus': 1,\n",
      "          'race': 1,\n",
      "          'evil': 1,\n",
      "          '3000': 1,\n",
      "          'conquered': 1,\n",
      "          'population': 1,\n",
      "          'enslaved': 1,\n",
      "          'nonly': 1,\n",
      "          'handful': 1,\n",
      "          'escaped': 1,\n",
      "          'radiationrich': 1,\n",
      "          'areas': 1,\n",
      "          'escape': 1,\n",
      "          'live': 1,\n",
      "          'lives': 1,\n",
      "          'fear': 1,\n",
      "          'none': 1,\n",
      "          'man': 1,\n",
      "          'goodboy': 1,\n",
      "          'tyler': 1,\n",
      "          'barry': 1,\n",
      "          'pepper': 1,\n",
      "          'ventures': 1,\n",
      "          'outworld': 1,\n",
      "          'captured': 1,\n",
      "          'nthere': 1,\n",
      "          'confronts': 1,\n",
      "          'security': 1,\n",
      "          'ugly': 1,\n",
      "          'klingonlooking': 1,\n",
      "          'creature': 1,\n",
      "          'called': 1,\n",
      "          'john': 1,\n",
      "          'npressed': 1,\n",
      "          'slavery': 1,\n",
      "          'vows': 1,\n",
      "          'revolution': 1,\n",
      "          'back': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'faced': 1,\n",
      "          'problems': 1,\n",
      "          'recently': 1,\n",
      "          'learned': 1,\n",
      "          'stuck': 1,\n",
      "          'living': 1,\n",
      "          'hates': 1,\n",
      "          'rest': 1,\n",
      "          'career': 1,\n",
      "          'pissed': 1,\n",
      "          'boss': 1,\n",
      "          'sleeping': 1,\n",
      "          'mans': 1,\n",
      "          'daughter': 1,\n",
      "          'decides': 1,\n",
      "          'gets': 1,\n",
      "          'mananimal': 1,\n",
      "          'expedition': 1,\n",
      "          'places': 1,\n",
      "          'cant': 1,\n",
      "          'nterl': 1,\n",
      "          'keep': 1,\n",
      "          'mined': 1,\n",
      "          'plan': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'many': 1,\n",
      "          'wrong': 1,\n",
      "          'begin': 1,\n",
      "          'whose': 1,\n",
      "          'hollywood': 1,\n",
      "          'clout': 1,\n",
      "          'brought': 1,\n",
      "          'cinematic': 1,\n",
      "          'version': 1,\n",
      "          'guru': 1,\n",
      "          'l': 1,\n",
      "          'ron': 1,\n",
      "          'scifi': 1,\n",
      "          'novel': 1,\n",
      "          'previews': 1,\n",
      "          'constant': 1,\n",
      "          'shots': 1,\n",
      "          'makeupladen': 1,\n",
      "          'lex': 1,\n",
      "          'luthor': 1,\n",
      "          'several': 1,\n",
      "          'audience': 1,\n",
      "          'members': 1,\n",
      "          'remarking': 1,\n",
      "          'thinking': 1,\n",
      "          'nothing': 1,\n",
      "          'stem': 1,\n",
      "          'remarks': 1,\n",
      "          'trailers': 1,\n",
      "          'full': 1,\n",
      "          'force': 1,\n",
      "          'cackles': 1,\n",
      "          'line': 1,\n",
      "          'scene': 1,\n",
      "          'hilariously': 1,\n",
      "          'overwrought': 1,\n",
      "          'script': 1,\n",
      "          'clumsily': 1,\n",
      "          'stumbles': 1,\n",
      "          'political': 1,\n",
      "          'commentary': 1,\n",
      "          'satire': 1,\n",
      "          'corporate': 1,\n",
      "          'america': 1,\n",
      "          'ceos': 1,\n",
      "          'generally': 1,\n",
      "          'laugh': 1,\n",
      "          'maniacally': 1,\n",
      "          'denying': 1,\n",
      "          'pay': 1,\n",
      "          'raises': 1,\n",
      "          'employees': 1,\n",
      "          'promoted': 1,\n",
      "          'youre': 1,\n",
      "          'nfwahahahahahahahaha': 1,\n",
      "          'surprise': 1,\n",
      "          'loses': 1,\n",
      "          'idiot': 1,\n",
      "          'breaks': 1,\n",
      "          'supervillain': 1,\n",
      "          'rule': 1,\n",
      "          'book': 1,\n",
      "          'underestimates': 1,\n",
      "          'enemies': 1,\n",
      "          'assuming': 1,\n",
      "          'win': 1,\n",
      "          'smarter': 1,\n",
      "          'uses': 1,\n",
      "          'word': 1,\n",
      "          'leverage': 1,\n",
      "          'sort': 1,\n",
      "          'scientologist': 1,\n",
      "          'mantra': 1,\n",
      "          'nnot': 1,\n",
      "          'content': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'villain': 1,\n",
      "          'route': 1,\n",
      "          'explaining': 1,\n",
      "          'hero': 1,\n",
      "          'hooks': 1,\n",
      "          'gives': 1,\n",
      "          'around': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'beyond': 1,\n",
      "          'appears': 1,\n",
      "          'shocked': 1,\n",
      "          'points': 1,\n",
      "          'gun': 1,\n",
      "          'nno': 1,\n",
      "          'wonder': 1,\n",
      "          'guy': 1,\n",
      "          'never': 1,\n",
      "          'got': 1,\n",
      "          'promotion': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'numerous': 1,\n",
      "          'mention': 1,\n",
      "          'nwhy': 1,\n",
      "          'build': 1,\n",
      "          'base': 1,\n",
      "          'slaves': 1,\n",
      "          'wear': 1,\n",
      "          'little': 1,\n",
      "          'breathing': 1,\n",
      "          'apparatuses': 1,\n",
      "          'come': 1,\n",
      "          'wasting': 1,\n",
      "          'doors': 1,\n",
      "          'fort': 1,\n",
      "          'knox': 1,\n",
      "          'wide': 1,\n",
      "          'open': 1,\n",
      "          'world': 1,\n",
      "          'fighter': 1,\n",
      "          'jets': 1,\n",
      "          'sitting': 1,\n",
      "          'hangar': 1,\n",
      "          '1': 1,\n",
      "          '000': 1,\n",
      "          'years': 1,\n",
      "          'nand': 1,\n",
      "          'previously': 1,\n",
      "          'braindead': 1,\n",
      "          'cavemen': 1,\n",
      "          'learn': 1,\n",
      "          'fly': 1,\n",
      "          'quickly': 1,\n",
      "          'ntheres': 1,\n",
      "          'lot': 1,\n",
      "          'scratch': 1,\n",
      "          'ones': 1,\n",
      "          'nbring': 1,\n",
      "          'scorecard': 1,\n",
      "          'track': 1,\n",
      "          'holes': 1,\n",
      "          'ndirector': 1,\n",
      "          'roger': 1,\n",
      "          'christian': 1,\n",
      "          'shoots': 1,\n",
      "          'distracting': 1,\n",
      "          'way': 1,\n",
      "          'tilting': 1,\n",
      "          'sideways': 1,\n",
      "          'discernible': 1,\n",
      "          'reason': 1,\n",
      "          'characters': 1,\n",
      "          'appear': 1,\n",
      "          'standing': 1,\n",
      "          'walls': 1,\n",
      "          'awfully': 1,\n",
      "          'difficult': 1,\n",
      "          'tilt': 1,\n",
      "          'ordinary': 1,\n",
      "          'passages': 1,\n",
      "          'sequences': 1,\n",
      "          'atrociously': 1,\n",
      "          'edited': 1,\n",
      "          'turned': 1,\n",
      "          'endless': 1,\n",
      "          'slowmotion': 1,\n",
      "          'parade': 1,\n",
      "          'drains': 1,\n",
      "          'potential': 1,\n",
      "          'excitement': 1,\n",
      "          'nare': 1,\n",
      "          'hard': 1,\n",
      "          'construct': 1,\n",
      "          'nmy': 1,\n",
      "          'respect': 1,\n",
      "          'lightweight': 1,\n",
      "          'directors': 1,\n",
      "          'grown': 1,\n",
      "          'leaps': 1,\n",
      "          'bounds': 1,\n",
      "          'badly': 1,\n",
      "          'sequence': 1,\n",
      "          'nthis': 1,\n",
      "          'absolute': 1,\n",
      "          'headache': 1,\n",
      "          'selection': 1,\n",
      "          'editing': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'sense': 1,\n",
      "          'nfor': 1,\n",
      "          'earths': 1,\n",
      "          'running': 1,\n",
      "          'happening': 1,\n",
      "          'anything': 1,\n",
      "          'finding': 1,\n",
      "          'events': 1,\n",
      "          'stupid': 1,\n",
      "          'illogical': 1,\n",
      "          'though': 1,\n",
      "          'certainly': 1,\n",
      "          'idea': 1,\n",
      "          'nwhen': 1,\n",
      "          'pieced': 1,\n",
      "          'together': 1,\n",
      "          'later': 1,\n",
      "          'look': 1,\n",
      "          'better': 1,\n",
      "          'nheres': 1,\n",
      "          'already': 1,\n",
      "          'worst': 1,\n",
      "          'something': 1,\n",
      "          'inept': 1,\n",
      "          'top': 1,\n",
      "          'thing': 1,\n",
      "          'comfort': 1,\n",
      "          'film': 1,\n",
      "          'suckered': 1,\n",
      "          'joining': 1,\n",
      "          'church': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'think': 1,\n",
      "          'cult': 1,\n",
      "          'would': 1,\n",
      "          'distance': 1,\n",
      "          'bomb': 1,\n",
      "          'fast': 1,\n",
      "          'nthatll': 1,\n",
      "          'teach': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'silverman': 4,\n",
      "          'judith': 3,\n",
      "          'darrens': 3,\n",
      "          'one': 3,\n",
      "          'saving': 3,\n",
      "          'diamond': 2,\n",
      "          'wayne': 2,\n",
      "          'zahn': 2,\n",
      "          'j': 2,\n",
      "          'black': 2,\n",
      "          'darren': 2,\n",
      "          'biggs': 2,\n",
      "          'american': 2,\n",
      "          'pie': 2,\n",
      "          'amanda': 2,\n",
      "          'ntheyre': 2,\n",
      "          'love': 2,\n",
      "          'detmer': 2,\n",
      "          'hit': 2,\n",
      "          'comedy': 2,\n",
      "          'films': 2,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'buddies': 1,\n",
      "          'neil': 1,\n",
      "          'tribute': 1,\n",
      "          'band': 1,\n",
      "          'members': 1,\n",
      "          'steve': 1,\n",
      "          'happy': 1,\n",
      "          'texas': 1,\n",
      "          'jack': 1,\n",
      "          'high': 1,\n",
      "          'fidelity': 1,\n",
      "          'watch': 1,\n",
      "          'horror': 1,\n",
      "          'third': 1,\n",
      "          'mate': 1,\n",
      "          'jason': 1,\n",
      "          'disappears': 1,\n",
      "          'thumb': 1,\n",
      "          'new': 1,\n",
      "          'fiance': 1,\n",
      "          'peet': 1,\n",
      "          'whole': 1,\n",
      "          'nine': 1,\n",
      "          'yards': 1,\n",
      "          'controlling': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'doubly': 1,\n",
      "          'troubled': 1,\n",
      "          'return': 1,\n",
      "          'sandy': 1,\n",
      "          'perkins': 1,\n",
      "          'final': 1,\n",
      "          'destination': 1,\n",
      "          'returns': 1,\n",
      "          'home': 1,\n",
      "          'town': 1,\n",
      "          'doesnt': 1,\n",
      "          'cause': 1,\n",
      "          'ripple': 1,\n",
      "          'devotion': 1,\n",
      "          'ntheres': 1,\n",
      "          'thing': 1,\n",
      "          'think': 1,\n",
      "          'kidnap': 1,\n",
      "          'fake': 1,\n",
      "          'death': 1,\n",
      "          'nwritten': 1,\n",
      "          'hank': 1,\n",
      "          'nelken': 1,\n",
      "          'greg': 1,\n",
      "          'depaul': 1,\n",
      "          'seeing': 1,\n",
      "          'friend': 1,\n",
      "          'engaged': 1,\n",
      "          'wrong': 1,\n",
      "          'woman': 1,\n",
      "          'directed': 1,\n",
      "          'director': 1,\n",
      "          'dennis': 1,\n",
      "          'dugan': 1,\n",
      "          'big': 1,\n",
      "          'daddy': 1,\n",
      "          'brain': 1,\n",
      "          'donors': 1,\n",
      "          'problem': 1,\n",
      "          'child': 1,\n",
      "          'nits': 1,\n",
      "          'dismal': 1,\n",
      "          'thirdrate': 1,\n",
      "          'farrelly': 1,\n",
      "          'brothers': 1,\n",
      "          'rip': 1,\n",
      "          'attempts': 1,\n",
      "          'milk': 1,\n",
      "          'humor': 1,\n",
      "          'inspired': 1,\n",
      "          'bits': 1,\n",
      "          'whimsy': 1,\n",
      "          'interest': 1,\n",
      "          'come': 1,\n",
      "          'family': 1,\n",
      "          'circus': 1,\n",
      "          'freaks': 1,\n",
      "          'become': 1,\n",
      "          'nun': 1,\n",
      "          'ngross': 1,\n",
      "          'gags': 1,\n",
      "          'include': 1,\n",
      "          'visualization': 1,\n",
      "          'getting': 1,\n",
      "          'butt': 1,\n",
      "          'cheek': 1,\n",
      "          'implants': 1,\n",
      "          'n': 1,\n",
      "          'almost': 1,\n",
      "          'saved': 1,\n",
      "          'stars': 1,\n",
      "          'nthese': 1,\n",
      "          'two': 1,\n",
      "          'comically': 1,\n",
      "          'talented': 1,\n",
      "          'take': 1,\n",
      "          'bad': 1,\n",
      "          'material': 1,\n",
      "          'still': 1,\n",
      "          'deliver': 1,\n",
      "          'goods': 1,\n",
      "          'animal': 1,\n",
      "          'house': 1,\n",
      "          'mode': 1,\n",
      "          'rest': 1,\n",
      "          'film': 1,\n",
      "          'trawls': 1,\n",
      "          'along': 1,\n",
      "          'comes': 1,\n",
      "          'empty': 1,\n",
      "          'njason': 1,\n",
      "          'attribute': 1,\n",
      "          'entire': 1,\n",
      "          'career': 1,\n",
      "          'luck': 1,\n",
      "          'cast': 1,\n",
      "          'smash': 1,\n",
      "          'npeet': 1,\n",
      "          'shows': 1,\n",
      "          'physical': 1,\n",
      "          'moves': 1,\n",
      "          'flair': 1,\n",
      "          'slaps': 1,\n",
      "          'brave': 1,\n",
      "          'sweet': 1,\n",
      "          'smile': 1,\n",
      "          'onto': 1,\n",
      "          'face': 1,\n",
      "          'soldiers': 1,\n",
      "          'nr': 1,\n",
      "          'lee': 1,\n",
      "          'ermey': 1,\n",
      "          'full': 1,\n",
      "          'metal': 1,\n",
      "          'jacket': 1,\n",
      "          'note': 1,\n",
      "          'embarrassing': 1,\n",
      "          'performance': 1,\n",
      "          'psychopathic': 1,\n",
      "          'exfootball': 1,\n",
      "          'coach': 1,\n",
      "          'nneil': 1,\n",
      "          'appears': 1,\n",
      "          'climax': 1,\n",
      "          'miraculously': 1,\n",
      "          'enlivens': 1,\n",
      "          'proceedings': 1,\n",
      "          'belting': 1,\n",
      "          'old': 1,\n",
      "          'standards': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 20,\n",
      "          'really': 7,\n",
      "          'well': 5,\n",
      "          'one': 5,\n",
      "          'thing': 5,\n",
      "          'ni': 4,\n",
      "          'plot': 4,\n",
      "          'nanother': 4,\n",
      "          'happen': 4,\n",
      "          'characters': 4,\n",
      "          'effects': 3,\n",
      "          'many': 3,\n",
      "          'also': 3,\n",
      "          'times': 3,\n",
      "          'tell': 3,\n",
      "          'know': 3,\n",
      "          'little': 3,\n",
      "          'nthe': 3,\n",
      "          'see': 3,\n",
      "          'thats': 2,\n",
      "          'found': 2,\n",
      "          'flaws': 2,\n",
      "          'leave': 2,\n",
      "          'isnt': 2,\n",
      "          'nbut': 2,\n",
      "          'wonder': 2,\n",
      "          'stretched': 2,\n",
      "          'nand': 2,\n",
      "          'scenes': 2,\n",
      "          'repeated': 2,\n",
      "          'nthere': 2,\n",
      "          'short': 2,\n",
      "          'somewhere': 2,\n",
      "          'middle': 2,\n",
      "          'things': 2,\n",
      "          'way': 2,\n",
      "          'fairly': 2,\n",
      "          'nthis': 2,\n",
      "          'predictable': 2,\n",
      "          'nyou': 2,\n",
      "          'action': 2,\n",
      "          'add': 2,\n",
      "          'type': 2,\n",
      "          'wouldnt': 2,\n",
      "          'whole': 2,\n",
      "          'package': 2,\n",
      "          'done': 2,\n",
      "          'looks': 2,\n",
      "          'may': 2,\n",
      "          'worth': 2,\n",
      "          'theaters': 2,\n",
      "          'think': 2,\n",
      "          'people': 2,\n",
      "          'stellar': 1,\n",
      "          'nbecause': 1,\n",
      "          'watching': 1,\n",
      "          'gaps': 1,\n",
      "          'simple': 1,\n",
      "          'logic': 1,\n",
      "          'nfor': 1,\n",
      "          'white': 1,\n",
      "          'leading': 1,\n",
      "          'actor': 1,\n",
      "          'black': 1,\n",
      "          'daughter': 1,\n",
      "          'curiosity': 1,\n",
      "          'saying': 1,\n",
      "          'possible': 1,\n",
      "          'nknow': 1,\n",
      "          'sections': 1,\n",
      "          'painfully': 1,\n",
      "          'certain': 1,\n",
      "          'essentially': 1,\n",
      "          'slight': 1,\n",
      "          'variations': 1,\n",
      "          'scene': 1,\n",
      "          'horribly': 1,\n",
      "          'thinking': 1,\n",
      "          'nok': 1,\n",
      "          'enough': 1,\n",
      "          'already': 1,\n",
      "          'get': 1,\n",
      "          'nthings': 1,\n",
      "          'magically': 1,\n",
      "          'prelude': 1,\n",
      "          'anything': 1,\n",
      "          'sort': 1,\n",
      "          'noticed': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'vanished': 1,\n",
      "          'without': 1,\n",
      "          'trace': 1,\n",
      "          'major': 1,\n",
      "          'beginning': 1,\n",
      "          'almost': 1,\n",
      "          'final': 1,\n",
      "          'story': 1,\n",
      "          'definitely': 1,\n",
      "          'given': 1,\n",
      "          'moment': 1,\n",
      "          'ngranted': 1,\n",
      "          'hard': 1,\n",
      "          'omit': 1,\n",
      "          'blatant': 1,\n",
      "          'sits': 1,\n",
      "          'stares': 1,\n",
      "          'nalso': 1,\n",
      "          'several': 1,\n",
      "          'cliques': 1,\n",
      "          'nit': 1,\n",
      "          'gets': 1,\n",
      "          'boring': 1,\n",
      "          'truth': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'still': 1,\n",
      "          'going': 1,\n",
      "          'point': 1,\n",
      "          'might': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'supposed': 1,\n",
      "          'quiet': 1,\n",
      "          'chaos': 1,\n",
      "          'mathematician': 1,\n",
      "          'shoot': 1,\n",
      "          'hero': 1,\n",
      "          'nsome': 1,\n",
      "          'proper': 1,\n",
      "          'roles': 1,\n",
      "          'acting': 1,\n",
      "          'fine': 1,\n",
      "          'dont': 1,\n",
      "          'seem': 1,\n",
      "          'nif': 1,\n",
      "          'base': 1,\n",
      "          'review': 1,\n",
      "          'totally': 1,\n",
      "          'rate': 1,\n",
      "          'highly': 1,\n",
      "          'good': 1,\n",
      "          'overlook': 1,\n",
      "          'special': 1,\n",
      "          'amazing': 1,\n",
      "          'cant': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'created': 1,\n",
      "          'like': 1,\n",
      "          'live': 1,\n",
      "          'instances': 1,\n",
      "          'course': 1,\n",
      "          'fake': 1,\n",
      "          'able': 1,\n",
      "          'say': 1,\n",
      "          'creature': 1,\n",
      "          'wasnt': 1,\n",
      "          'filming': 1,\n",
      "          'extinct': 1,\n",
      "          'destruction': 1,\n",
      "          'nwow': 1,\n",
      "          'masterpieces': 1,\n",
      "          'nwell': 1,\n",
      "          'choreographed': 1,\n",
      "          'along': 1,\n",
      "          'dinos': 1,\n",
      "          'make': 1,\n",
      "          'reasons': 1,\n",
      "          'long': 1,\n",
      "          'packed': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'take': 1,\n",
      "          'away': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'alas': 1,\n",
      "          'cynical': 1,\n",
      "          'age': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'seeing': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'ngo': 1,\n",
      "          'matinee': 1,\n",
      "          'must': 1,\n",
      "          'full': 1,\n",
      "          'price': 1,\n",
      "          'ask': 1,\n",
      "          'none': 1,\n",
      "          'side': 1,\n",
      "          'note': 1,\n",
      "          'although': 1,\n",
      "          'opinion': 1,\n",
      "          'best': 1,\n",
      "          'marketed': 1,\n",
      "          'shown': 1,\n",
      "          'toronto': 1,\n",
      "          'opening': 1,\n",
      "          'weekend': 1,\n",
      "          'nothing': 1,\n",
      "          'stupid': 1,\n",
      "          '10': 1,\n",
      "          'theater': 1,\n",
      "          'playing': 1,\n",
      "          'around': 1,\n",
      "          'clock': 1,\n",
      "          'want': 1,\n",
      "          'money': 1,\n",
      "          'badly': 1,\n",
      "          'activity': 1,\n",
      "          'hurts': 1,\n",
      "          'industry': 1,\n",
      "          'let': 1,\n",
      "          'movies': 1,\n",
      "          'chance': 1,\n",
      "          'much': 1,\n",
      "          'play': 1,\n",
      "          'would': 1,\n",
      "          'succeed': 1,\n",
      "          'even': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'thought': 1,\n",
      "          'id': 1,\n",
      "          'put': 1,\n",
      "          'deflate': 1,\n",
      "          'hype': 1,\n",
      "          'flick': 1,\n",
      "          'nits': 1,\n",
      "          'bad': 1,\n",
      "          'great': 1,\n",
      "          'either': 1,\n",
      "          'hope': 1,\n",
      "          'realize': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'film': 6,\n",
      "          'story': 5,\n",
      "          'paulina': 5,\n",
      "          'nthe': 4,\n",
      "          'would': 3,\n",
      "          'filmmakers': 2,\n",
      "          'tells': 2,\n",
      "          'times': 2,\n",
      "          'nthis': 2,\n",
      "          'heart': 2,\n",
      "          'vicky': 2,\n",
      "          'life': 2,\n",
      "          'npaulina': 2,\n",
      "          'ni': 2,\n",
      "          'made': 2,\n",
      "          'bad': 2,\n",
      "          'bloody': 2,\n",
      "          'scene': 2,\n",
      "          'bus': 2,\n",
      "          'produced': 1,\n",
      "          'shoestring': 1,\n",
      "          'budget': 1,\n",
      "          'couple': 1,\n",
      "          'hardworking': 1,\n",
      "          'genuine': 1,\n",
      "          'tragedy': 1,\n",
      "          'easy': 1,\n",
      "          'path': 1,\n",
      "          'reviewer': 1,\n",
      "          'hated': 1,\n",
      "          'give': 1,\n",
      "          'pass': 1,\n",
      "          'ntoss': 1,\n",
      "          'usual': 1,\n",
      "          'objectivity': 1,\n",
      "          'ignore': 1,\n",
      "          'many': 1,\n",
      "          'checked': 1,\n",
      "          'watch': 1,\n",
      "          'viewing': 1,\n",
      "          'forget': 1,\n",
      "          'unbearable': 1,\n",
      "          'sit': 1,\n",
      "          'find': 1,\n",
      "          'meaningless': 1,\n",
      "          'way': 1,\n",
      "          'compliment': 1,\n",
      "          'course': 1,\n",
      "          'service': 1,\n",
      "          'readers': 1,\n",
      "          'least': 1,\n",
      "          'youll': 1,\n",
      "          'avoid': 1,\n",
      "          'hate': 1,\n",
      "          'mail': 1,\n",
      "          'movies': 1,\n",
      "          'fans': 1,\n",
      "          'nthus': 1,\n",
      "          'heavy': 1,\n",
      "          'review': 1,\n",
      "          'confused': 1,\n",
      "          'recent': 1,\n",
      "          'paulie': 1,\n",
      "          'talking': 1,\n",
      "          'parrot': 1,\n",
      "          'ndirected': 1,\n",
      "          'funari': 1,\n",
      "          'labor': 1,\n",
      "          'intense': 1,\n",
      "          'love': 1,\n",
      "          'spent': 1,\n",
      "          'last': 1,\n",
      "          'one': 1,\n",
      "          'third': 1,\n",
      "          'blends': 1,\n",
      "          'documentary': 1,\n",
      "          'footage': 1,\n",
      "          'historic': 1,\n",
      "          'fanciful': 1,\n",
      "          'recreations': 1,\n",
      "          'relate': 1,\n",
      "          'bitterly': 1,\n",
      "          'sad': 1,\n",
      "          'true': 1,\n",
      "          'cruz': 1,\n",
      "          'suarez': 1,\n",
      "          'maid': 1,\n",
      "          'vickys': 1,\n",
      "          'household': 1,\n",
      "          'young': 1,\n",
      "          'got': 1,\n",
      "          'learn': 1,\n",
      "          'films': 1,\n",
      "          'background': 1,\n",
      "          'attended': 1,\n",
      "          'screening': 1,\n",
      "          'two': 1,\n",
      "          'women': 1,\n",
      "          'present': 1,\n",
      "          'nfor': 1,\n",
      "          'without': 1,\n",
      "          'context': 1,\n",
      "          'reaction': 1,\n",
      "          'may': 1,\n",
      "          'parody': 1,\n",
      "          'indie': 1,\n",
      "          'acting': 1,\n",
      "          'amateurish': 1,\n",
      "          'maudlin': 1,\n",
      "          'visual': 1,\n",
      "          'appeal': 1,\n",
      "          'home': 1,\n",
      "          'ngrainy': 1,\n",
      "          'overexposed': 1,\n",
      "          'shot': 1,\n",
      "          '16mm': 1,\n",
      "          'videotape': 1,\n",
      "          'little': 1,\n",
      "          'recommend': 1,\n",
      "          'nconfusingly': 1,\n",
      "          'composed': 1,\n",
      "          'jumps': 1,\n",
      "          'jarringly': 1,\n",
      "          'nquite': 1,\n",
      "          'full': 1,\n",
      "          'horrific': 1,\n",
      "          'images': 1,\n",
      "          'seems': 1,\n",
      "          'designed': 1,\n",
      "          'shock': 1,\n",
      "          'repulse': 1,\n",
      "          'us': 1,\n",
      "          'nwhy': 1,\n",
      "          'else': 1,\n",
      "          'include': 1,\n",
      "          'completely': 1,\n",
      "          'nude': 1,\n",
      "          '8yearold': 1,\n",
      "          'nanother': 1,\n",
      "          'teenage': 1,\n",
      "          'fondled': 1,\n",
      "          'man': 1,\n",
      "          'sitting': 1,\n",
      "          'next': 1,\n",
      "          'nin': 1,\n",
      "          'retaliation': 1,\n",
      "          'bites': 1,\n",
      "          'part': 1,\n",
      "          'finger': 1,\n",
      "          'covers': 1,\n",
      "          'bucket': 1,\n",
      "          'blood': 1,\n",
      "          'passengers': 1,\n",
      "          'view': 1,\n",
      "          'girl': 1,\n",
      "          'minds': 1,\n",
      "          'everything': 1,\n",
      "          'saint': 1,\n",
      "          'sinner': 1,\n",
      "          'none': 1,\n",
      "          'example': 1,\n",
      "          'sees': 1,\n",
      "          'aztec': 1,\n",
      "          'priestess': 1,\n",
      "          'holding': 1,\n",
      "          'large': 1,\n",
      "          'cut': 1,\n",
      "          'body': 1,\n",
      "          'lugubrious': 1,\n",
      "          'tale': 1,\n",
      "          'raped': 1,\n",
      "          'beaten': 1,\n",
      "          'ncertainly': 1,\n",
      "          'endure': 1,\n",
      "          'miserable': 1,\n",
      "          'nbut': 1,\n",
      "          'guarantee': 1,\n",
      "          'necessarily': 1,\n",
      "          'good': 1,\n",
      "          'felt': 1,\n",
      "          'trapped': 1,\n",
      "          'theater': 1,\n",
      "          'watching': 1,\n",
      "          'nonly': 1,\n",
      "          'opportunity': 1,\n",
      "          'talk': 1,\n",
      "          'afterwards': 1,\n",
      "          'bearable': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '28': 1,\n",
      "          'spanish': 1,\n",
      "          'english': 1,\n",
      "          'subtitles': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'nudity': 1,\n",
      "          'acceptable': 1,\n",
      "          'older': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jadzia': 4,\n",
      "          'connelly': 3,\n",
      "          '_polish_wedding_': 3,\n",
      "          'child': 3,\n",
      "          'nthe': 3,\n",
      "          'family': 3,\n",
      "          'bolek': 3,\n",
      "          'hala': 3,\n",
      "          'one': 3,\n",
      "          'affair': 3,\n",
      "          'would': 2,\n",
      "          'olin': 2,\n",
      "          'byrne': 2,\n",
      "          'danes': 2,\n",
      "          'sons': 2,\n",
      "          'theres': 2,\n",
      "          'shes': 2,\n",
      "          'sadness': 2,\n",
      "          'leads': 2,\n",
      "          'involving': 2,\n",
      "          'russell': 2,\n",
      "          'films': 2,\n",
      "          'conflict': 2,\n",
      "          'resolved': 2,\n",
      "          'viewers': 2,\n",
      "          'something': 2,\n",
      "          'years': 1,\n",
      "          'summer': 1,\n",
      "          'movie': 1,\n",
      "          'preview': 1,\n",
      "          'issue': 1,\n",
      "          '_entertainment_weekly_': 1,\n",
      "          'theresa': 1,\n",
      "          'described': 1,\n",
      "          'writingdirecting': 1,\n",
      "          'debut': 1,\n",
      "          'quite': 1,\n",
      "          'become': 1,\n",
      "          'thought': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'exactly': 1,\n",
      "          'originally': 1,\n",
      "          'mind': 1,\n",
      "          'jumbled': 1,\n",
      "          'film': 1,\n",
      "          'comedydrama': 1,\n",
      "          'appears': 1,\n",
      "          'doomed': 1,\n",
      "          'basic': 1,\n",
      "          'elements': 1,\n",
      "          'center': 1,\n",
      "          'pzoniaks': 1,\n",
      "          'consists': 1,\n",
      "          'mother': 1,\n",
      "          'lena': 1,\n",
      "          'father': 1,\n",
      "          'gabriel': 1,\n",
      "          'sole': 1,\n",
      "          'daughter': 1,\n",
      "          'claire': 1,\n",
      "          'four': 1,\n",
      "          'varying': 1,\n",
      "          'degrees': 1,\n",
      "          'facelessness': 1,\n",
      "          'nits': 1,\n",
      "          'large': 1,\n",
      "          'sympathetic': 1,\n",
      "          'whole': 1,\n",
      "          'bunch': 1,\n",
      "          'certainly': 1,\n",
      "          'primary': 1,\n",
      "          'trio': 1,\n",
      "          'njadzia': 1,\n",
      "          'takes': 1,\n",
      "          'pride': 1,\n",
      "          'building': 1,\n",
      "          'maintaining': 1,\n",
      "          'home': 1,\n",
      "          'kind': 1,\n",
      "          'hypocrite': 1,\n",
      "          'since': 1,\n",
      "          'carrying': 1,\n",
      "          'businessman': 1,\n",
      "          'rade': 1,\n",
      "          'serbedzija': 1,\n",
      "          'nher': 1,\n",
      "          'excuse': 1,\n",
      "          'neglect': 1,\n",
      "          'passive': 1,\n",
      "          'wimp': 1,\n",
      "          'connect': 1,\n",
      "          'frustration': 1,\n",
      "          'nalso': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'pay': 1,\n",
      "          'little': 1,\n",
      "          'attention': 1,\n",
      "          'saucy': 1,\n",
      "          'sexy': 1,\n",
      "          'nhala': 1,\n",
      "          'spoiled': 1,\n",
      "          'selfcentered': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'dropout': 1,\n",
      "          'whose': 1,\n",
      "          'reckless': 1,\n",
      "          'sexual': 1,\n",
      "          'experimentation': 1,\n",
      "          'predictably': 1,\n",
      "          'pregnancy': 1,\n",
      "          'nwith': 1,\n",
      "          'unappealing': 1,\n",
      "          'set': 1,\n",
      "          'characters': 1,\n",
      "          'surprise': 1,\n",
      "          '_polish_wedding_s': 1,\n",
      "          'plot': 1,\n",
      "          'complications': 1,\n",
      "          'far': 1,\n",
      "          'nnaturally': 1,\n",
      "          'like': 1,\n",
      "          'marry': 1,\n",
      "          'young': 1,\n",
      "          'cop': 1,\n",
      "          'schuster': 1,\n",
      "          'adam': 1,\n",
      "          'trese': 1,\n",
      "          'fathered': 1,\n",
      "          'refuses': 1,\n",
      "          'make': 1,\n",
      "          'commitment': 1,\n",
      "          'nhohum': 1,\n",
      "          'nanother': 1,\n",
      "          'complication': 1,\n",
      "          'decidedly': 1,\n",
      "          'unvirginal': 1,\n",
      "          'selected': 1,\n",
      "          'crown': 1,\n",
      "          'statue': 1,\n",
      "          'virgin': 1,\n",
      "          'mary': 1,\n",
      "          'first': 1,\n",
      "          'played': 1,\n",
      "          'laughs': 1,\n",
      "          'inexplicably': 1,\n",
      "          'profound': 1,\n",
      "          'statement': 1,\n",
      "          'climaxwhich': 1,\n",
      "          'ironically': 1,\n",
      "          'funnier': 1,\n",
      "          'lame': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'painfully': 1,\n",
      "          'labored': 1,\n",
      "          'slapstick': 1,\n",
      "          'attempt': 1,\n",
      "          'charge': 1,\n",
      "          'beat': 1,\n",
      "          'nthat': 1,\n",
      "          'scene': 1,\n",
      "          'number': 1,\n",
      "          'writing': 1,\n",
      "          'miscues': 1,\n",
      "          'jadziabolek': 1,\n",
      "          'overly': 1,\n",
      "          'pat': 1,\n",
      "          'way': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'sitcom': 1,\n",
      "          'halarussell': 1,\n",
      "          'isnt': 1,\n",
      "          'contrived': 1,\n",
      "          'manner': 1,\n",
      "          'ultimate': 1,\n",
      "          'resolution': 1,\n",
      "          'leave': 1,\n",
      "          'wondering': 1,\n",
      "          'missed': 1,\n",
      "          'nand': 1,\n",
      "          'atrocious': 1,\n",
      "          'dialogue': 1,\n",
      "          'sure': 1,\n",
      "          'supposed': 1,\n",
      "          'ridiculous': 1,\n",
      "          'sound': 1,\n",
      "          'look': 1,\n",
      "          'pickles': 1,\n",
      "          'njust': 1,\n",
      "          'looking': 1,\n",
      "          'gives': 1,\n",
      "          'great': 1,\n",
      "          'nas': 1,\n",
      "          'misguided': 1,\n",
      "          'letdown': 1,\n",
      "          'considering': 1,\n",
      "          'strong': 1,\n",
      "          'performances': 1,\n",
      "          'especially': 1,\n",
      "          'fiery': 1,\n",
      "          'nthey': 1,\n",
      "          'obviously': 1,\n",
      "          'believed': 1,\n",
      "          'materiala': 1,\n",
      "          'faith': 1,\n",
      "          'audiences': 1,\n",
      "          'hardpressed': 1,\n",
      "          'share': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'farley': 5,\n",
      "          'almost': 4,\n",
      "          'heroes': 4,\n",
      "          'guest': 3,\n",
      "          'man': 3,\n",
      "          'humor': 3,\n",
      "          'comedy': 3,\n",
      "          'nthe': 3,\n",
      "          'doesnt': 3,\n",
      "          'explorers': 3,\n",
      "          'perry': 3,\n",
      "          'christopher': 2,\n",
      "          'execution': 2,\n",
      "          'nthis': 2,\n",
      "          'picture': 2,\n",
      "          'example': 2,\n",
      "          'poor': 2,\n",
      "          'kind': 2,\n",
      "          'movies': 2,\n",
      "          'film': 2,\n",
      "          'script': 2,\n",
      "          'hunt': 2,\n",
      "          'american': 2,\n",
      "          'named': 2,\n",
      "          'none': 2,\n",
      "          'way': 2,\n",
      "          'kevin': 2,\n",
      "          'dunn': 2,\n",
      "          'takes': 2,\n",
      "          'nfarley': 2,\n",
      "          'eagle': 2,\n",
      "          'success': 2,\n",
      "          'nas': 2,\n",
      "          'big': 2,\n",
      "          'didnt': 2,\n",
      "          'far': 2,\n",
      "          'see': 2,\n",
      "          'level': 2,\n",
      "          'several': 1,\n",
      "          'days': 1,\n",
      "          'seen': 1,\n",
      "          'movie': 1,\n",
      "          'im': 1,\n",
      "          'still': 1,\n",
      "          'trying': 1,\n",
      "          'determine': 1,\n",
      "          'director': 1,\n",
      "          'whose': 1,\n",
      "          'sense': 1,\n",
      "          'usually': 1,\n",
      "          'appreciate': 1,\n",
      "          'found': 1,\n",
      "          'funny': 1,\n",
      "          'either': 1,\n",
      "          'concept': 1,\n",
      "          'dreadful': 1,\n",
      "          'motion': 1,\n",
      "          'lowbrow': 1,\n",
      "          'period': 1,\n",
      "          'piece': 1,\n",
      "          'terrible': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'exceptionally': 1,\n",
      "          'laughstojokes': 1,\n",
      "          'ratio': 1,\n",
      "          'ntheres': 1,\n",
      "          'desperation': 1,\n",
      "          'approach': 1,\n",
      "          'reveals': 1,\n",
      "          'makers': 1,\n",
      "          'uncertainty': 1,\n",
      "          'entertaining': 1,\n",
      "          'material': 1,\n",
      "          'manic': 1,\n",
      "          'style': 1,\n",
      "          'betrays': 1,\n",
      "          'lastditch': 1,\n",
      "          'attempt': 1,\n",
      "          'hide': 1,\n",
      "          'flaws': 1,\n",
      "          'failed': 1,\n",
      "          'premise': 1,\n",
      "          'sound': 1,\n",
      "          'especially': 1,\n",
      "          'amusing': 1,\n",
      "          'begin': 1,\n",
      "          'tells': 1,\n",
      "          'tale': 1,\n",
      "          'two': 1,\n",
      "          'effeminate': 1,\n",
      "          'leslie': 1,\n",
      "          'edwards': 1,\n",
      "          'matthew': 1,\n",
      "          'uncouth': 1,\n",
      "          'bartholomew': 1,\n",
      "          'chris': 1,\n",
      "          'racing': 1,\n",
      "          'lewis': 1,\n",
      "          'clark': 1,\n",
      "          'trip': 1,\n",
      "          'northwest': 1,\n",
      "          'nedwards': 1,\n",
      "          'accompanied': 1,\n",
      "          'kinds': 1,\n",
      "          'weirdoes': 1,\n",
      "          'find': 1,\n",
      "          'road': 1,\n",
      "          'albeit': 1,\n",
      "          'early19th': 1,\n",
      "          'century': 1,\n",
      "          'variety': 1,\n",
      "          'including': 1,\n",
      "          'frenchman': 1,\n",
      "          'guy': 1,\n",
      "          'fontenot': 1,\n",
      "          'claims': 1,\n",
      "          'speak': 1,\n",
      "          'hundreds': 1,\n",
      "          'languages': 1,\n",
      "          'prove': 1,\n",
      "          'useful': 1,\n",
      "          'pretty': 1,\n",
      "          'indian': 1,\n",
      "          'maiden': 1,\n",
      "          'turns': 1,\n",
      "          'obligatory': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'bizarre': 1,\n",
      "          'suffers': 1,\n",
      "          'series': 1,\n",
      "          'debilitating': 1,\n",
      "          'injuries': 1,\n",
      "          'nalong': 1,\n",
      "          'intrepid': 1,\n",
      "          'encounter': 1,\n",
      "          'bears': 1,\n",
      "          'bald': 1,\n",
      "          'eagles': 1,\n",
      "          'aging': 1,\n",
      "          'native': 1,\n",
      "          'warriors': 1,\n",
      "          'conquistador': 1,\n",
      "          'hildago': 1,\n",
      "          'raves': 1,\n",
      "          'beautiful': 1,\n",
      "          'hair': 1,\n",
      "          'trek': 1,\n",
      "          'forests': 1,\n",
      "          'across': 1,\n",
      "          'snowcapped': 1,\n",
      "          'rocky': 1,\n",
      "          'mountains': 1,\n",
      "          'waterfall': 1,\n",
      "          'setup': 1,\n",
      "          'leads': 1,\n",
      "          'lot': 1,\n",
      "          'shouting': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'lunacy': 1,\n",
      "          'laughs': 1,\n",
      "          'engages': 1,\n",
      "          'usual': 1,\n",
      "          'shtick': 1,\n",
      "          'falling': 1,\n",
      "          'bellowing': 1,\n",
      "          'aside': 1,\n",
      "          'momentarily': 1,\n",
      "          'diverting': 1,\n",
      "          'confrontation': 1,\n",
      "          'heart': 1,\n",
      "          'seem': 1,\n",
      "          'nmatthew': 1,\n",
      "          'one': 1,\n",
      "          'stars': 1,\n",
      "          'tvs': 1,\n",
      "          'friends': 1,\n",
      "          'modest': 1,\n",
      "          'romantic': 1,\n",
      "          'fools': 1,\n",
      "          'rush': 1,\n",
      "          'badly': 1,\n",
      "          'miscast': 1,\n",
      "          'foil': 1,\n",
      "          'antidote': 1,\n",
      "          'runaway': 1,\n",
      "          'energy': 1,\n",
      "          'lacks': 1,\n",
      "          'necessary': 1,\n",
      "          'edge': 1,\n",
      "          'proverbial': 1,\n",
      "          'straight': 1,\n",
      "          'nim': 1,\n",
      "          'fan': 1,\n",
      "          'david': 1,\n",
      "          'spade': 1,\n",
      "          'like': 1,\n",
      "          'tommy': 1,\n",
      "          'boy': 1,\n",
      "          'least': 1,\n",
      "          'worked': 1,\n",
      "          'well': 1,\n",
      "          'together': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'go': 1,\n",
      "          'makes': 1,\n",
      "          'fleeting': 1,\n",
      "          'impression': 1,\n",
      "          'neugene': 1,\n",
      "          'levy': 1,\n",
      "          'wasted': 1,\n",
      "          'interesting': 1,\n",
      "          'godzilla': 1,\n",
      "          'nfrankly': 1,\n",
      "          'disappointment': 1,\n",
      "          'something': 1,\n",
      "          'dumb': 1,\n",
      "          'ugly': 1,\n",
      "          'come': 1,\n",
      "          'brilliant': 1,\n",
      "          'comic': 1,\n",
      "          'force': 1,\n",
      "          'behind': 1,\n",
      "          'films': 1,\n",
      "          'spinal': 1,\n",
      "          'tap': 1,\n",
      "          'waiting': 1,\n",
      "          'guffman': 1,\n",
      "          'nalthough': 1,\n",
      "          'gets': 1,\n",
      "          'costumes': 1,\n",
      "          'right': 1,\n",
      "          'nearlyinconsequential': 1,\n",
      "          'substitute': 1,\n",
      "          'weak': 1,\n",
      "          'unfunny': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'execrable': 1,\n",
      "          'nfor': 1,\n",
      "          'really': 1,\n",
      "          'blue': 1,\n",
      "          'screen': 1,\n",
      "          'work': 1,\n",
      "          'look': 1,\n",
      "          'scenes': 1,\n",
      "          'characters': 1,\n",
      "          'shooting': 1,\n",
      "          'rapids': 1,\n",
      "          'theyre': 1,\n",
      "          'obviously': 1,\n",
      "          'getting': 1,\n",
      "          'buckets': 1,\n",
      "          'water': 1,\n",
      "          'thrown': 1,\n",
      "          'carried': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'stellar': 1,\n",
      "          'acting': 1,\n",
      "          'careers': 1,\n",
      "          'deserve': 1,\n",
      "          'unfortunate': 1,\n",
      "          'epitaph': 1,\n",
      "          'offered': 1,\n",
      "          'nwhile': 1,\n",
      "          'outrageous': 1,\n",
      "          'attempts': 1,\n",
      "          'may': 1,\n",
      "          'coax': 1,\n",
      "          'guffaws': 1,\n",
      "          '12year': 1,\n",
      "          'old': 1,\n",
      "          'boys': 1,\n",
      "          'falls': 1,\n",
      "          'sophomoric': 1,\n",
      "          'fans': 1,\n",
      "          'say': 1,\n",
      "          'goodbye': 1,\n",
      "          'commended': 1,\n",
      "          'loyalty': 1,\n",
      "          'since': 1,\n",
      "          'real': 1,\n",
      "          'stamina': 1,\n",
      "          'stay': 1,\n",
      "          'seated': 1,\n",
      "          'full': 1,\n",
      "          'running': 1,\n",
      "          'length': 1,\n",
      "          'cinematic': 1,\n",
      "          'torture': 1,\n",
      "          'session': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'universe': 4,\n",
      "          'good': 4,\n",
      "          'two': 3,\n",
      "          'masters': 3,\n",
      "          'movie': 3,\n",
      "          'actors': 3,\n",
      "          'figures': 2,\n",
      "          'nmasters': 2,\n",
      "          'successful': 2,\n",
      "          'world': 2,\n",
      "          'ngiven': 2,\n",
      "          'would': 2,\n",
      "          'make': 2,\n",
      "          'heman': 2,\n",
      "          'skeletor': 2,\n",
      "          'either': 2,\n",
      "          'star': 2,\n",
      "          'friends': 2,\n",
      "          'face': 2,\n",
      "          'worth': 2,\n",
      "          'langella': 2,\n",
      "          'films': 2,\n",
      "          'villain': 2,\n",
      "          'part': 2,\n",
      "          'right': 2,\n",
      "          'nine': 1,\n",
      "          'started': 1,\n",
      "          'buying': 1,\n",
      "          'coolest': 1,\n",
      "          'toy': 1,\n",
      "          'local': 1,\n",
      "          'department': 1,\n",
      "          'store': 1,\n",
      "          'pinnacle': 1,\n",
      "          'action': 1,\n",
      "          'combined': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'fantasy': 1,\n",
      "          'cool': 1,\n",
      "          'names': 1,\n",
      "          'like': 1,\n",
      "          'mekanek': 1,\n",
      "          'stinkor': 1,\n",
      "          'came': 1,\n",
      "          'little': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'read': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'animated': 1,\n",
      "          'series': 1,\n",
      "          'produced': 1,\n",
      "          'filmation': 1,\n",
      "          'remains': 1,\n",
      "          'wildly': 1,\n",
      "          'television': 1,\n",
      "          'products': 1,\n",
      "          'history': 1,\n",
      "          'tremendous': 1,\n",
      "          'success': 1,\n",
      "          'toys': 1,\n",
      "          'cartoon': 1,\n",
      "          'mention': 1,\n",
      "          'moderately': 1,\n",
      "          'spinoff': 1,\n",
      "          'shera': 1,\n",
      "          'princess': 1,\n",
      "          'power': 1,\n",
      "          'inevitable': 1,\n",
      "          'production': 1,\n",
      "          'company': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'come': 1,\n",
      "          'result': 1,\n",
      "          'trillions': 1,\n",
      "          'liveaction': 1,\n",
      "          'nlets': 1,\n",
      "          'blunt': 1,\n",
      "          'bad': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'painfully': 1,\n",
      "          'dull': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'cliched': 1,\n",
      "          'hands': 1,\n",
      "          'wouldnt': 1,\n",
      "          'guess': 1,\n",
      "          'take': 1,\n",
      "          'fight': 1,\n",
      "          'real': 1,\n",
      "          'acted': 1,\n",
      "          'incredibly': 1,\n",
      "          'untalented': 1,\n",
      "          'dolph': 1,\n",
      "          'lundgren': 1,\n",
      "          'james': 1,\n",
      "          'tolkan': 1,\n",
      "          'meg': 1,\n",
      "          'foster': 1,\n",
      "          'given': 1,\n",
      "          'awful': 1,\n",
      "          'characters': 1,\n",
      "          'dialogue': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'seem': 1,\n",
      "          'terrible': 1,\n",
      "          'nit': 1,\n",
      "          'extremely': 1,\n",
      "          'clear': 1,\n",
      "          'someone': 1,\n",
      "          'making': 1,\n",
      "          'wanted': 1,\n",
      "          'wars': 1,\n",
      "          'nwe': 1,\n",
      "          'alien': 1,\n",
      "          'bounty': 1,\n",
      "          'hunters': 1,\n",
      "          'desert': 1,\n",
      "          'skif': 1,\n",
      "          'technology': 1,\n",
      "          'stormtrooper': 1,\n",
      "          'lookalikes': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'reminiscent': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'deja': 1,\n",
      "          'vu': 1,\n",
      "          'polite': 1,\n",
      "          'term': 1,\n",
      "          'use': 1,\n",
      "          'describing': 1,\n",
      "          'n': 1,\n",
      "          'blatant': 1,\n",
      "          'uninspired': 1,\n",
      "          'ripoff': 1,\n",
      "          'appear': 1,\n",
      "          'appropriate': 1,\n",
      "          'ntv': 1,\n",
      "          'fans': 1,\n",
      "          'might': 1,\n",
      "          'want': 1,\n",
      "          'check': 1,\n",
      "          'courtney': 1,\n",
      "          'cox': 1,\n",
      "          'monica': 1,\n",
      "          'robert': 1,\n",
      "          'duncan': 1,\n",
      "          'mcneill': 1,\n",
      "          'lt': 1,\n",
      "          'paris': 1,\n",
      "          'trek': 1,\n",
      "          'voyager': 1,\n",
      "          'early': 1,\n",
      "          'careers': 1,\n",
      "          'well': 1,\n",
      "          'nso': 1,\n",
      "          'mindless': 1,\n",
      "          'submediocrity': 1,\n",
      "          'anything': 1,\n",
      "          'watching': 1,\n",
      "          'nyes': 1,\n",
      "          'none': 1,\n",
      "          'incredible': 1,\n",
      "          'reason': 1,\n",
      "          'nhis': 1,\n",
      "          'name': 1,\n",
      "          'frank': 1,\n",
      "          'nlangella': 1,\n",
      "          'always': 1,\n",
      "          'underrated': 1,\n",
      "          'hollywood': 1,\n",
      "          'appearing': 1,\n",
      "          'countless': 1,\n",
      "          'years': 1,\n",
      "          'nhere': 1,\n",
      "          'plays': 1,\n",
      "          'piece': 1,\n",
      "          'ndressed': 1,\n",
      "          'opulent': 1,\n",
      "          'black': 1,\n",
      "          'velvet': 1,\n",
      "          'robes': 1,\n",
      "          'bearing': 1,\n",
      "          'skull': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'emperor': 1,\n",
      "          'parts': 1,\n",
      "          'grim': 1,\n",
      "          'reaper': 1,\n",
      "          'character': 1,\n",
      "          'falls': 1,\n",
      "          'style': 1,\n",
      "          'precision': 1,\n",
      "          'nskeletor': 1,\n",
      "          'believable': 1,\n",
      "          'interesting': 1,\n",
      "          'manages': 1,\n",
      "          'tread': 1,\n",
      "          'fine': 1,\n",
      "          'line': 1,\n",
      "          'homage': 1,\n",
      "          'past': 1,\n",
      "          'startlingly': 1,\n",
      "          'original': 1,\n",
      "          'ni': 1,\n",
      "          'remember': 1,\n",
      "          'loving': 1,\n",
      "          'eleven': 1,\n",
      "          'nat': 1,\n",
      "          'twenty': 1,\n",
      "          'difficult': 1,\n",
      "          'see': 1,\n",
      "          'nbut': 1,\n",
      "          'said': 1,\n",
      "          'blessed': 1,\n",
      "          'superlative': 1,\n",
      "          'makes': 1,\n",
      "          'entire': 1,\n",
      "          'thing': 1,\n",
      "          'tedium': 1,\n",
      "          'remainder': 1,\n",
      "          'nbesides': 1,\n",
      "          'year': 1,\n",
      "          'marks': 1,\n",
      "          '10th': 1,\n",
      "          'anniversary': 1,\n",
      "          'nwatch': 1,\n",
      "          'laugh': 1,\n",
      "          'celebrate': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gia': 8,\n",
      "          'film': 7,\n",
      "          'movie': 6,\n",
      "          'see': 4,\n",
      "          'model': 4,\n",
      "          'hour': 4,\n",
      "          'nthe': 4,\n",
      "          'dont': 3,\n",
      "          'life': 3,\n",
      "          'interesting': 3,\n",
      "          'world': 3,\n",
      "          'drugs': 3,\n",
      "          'drug': 3,\n",
      "          'first': 2,\n",
      "          'nand': 2,\n",
      "          'eyes': 2,\n",
      "          'ni': 2,\n",
      "          'worthy': 2,\n",
      "          'though': 2,\n",
      "          'last': 2,\n",
      "          'woman': 2,\n",
      "          'fashion': 2,\n",
      "          'becomes': 2,\n",
      "          'really': 2,\n",
      "          'movies': 2,\n",
      "          'featuring': 2,\n",
      "          'like': 2,\n",
      "          'nquite': 2,\n",
      "          'scenes': 2,\n",
      "          'lost': 2,\n",
      "          'end': 2,\n",
      "          'warning': 2,\n",
      "          'angelina': 1,\n",
      "          'jolie': 1,\n",
      "          'plays': 1,\n",
      "          'titular': 1,\n",
      "          'character': 1,\n",
      "          'socalled': 1,\n",
      "          'supermodel': 1,\n",
      "          'right': 1,\n",
      "          'biggest': 1,\n",
      "          'hurdle': 1,\n",
      "          'overcome': 1,\n",
      "          'anyway': 1,\n",
      "          'two': 1,\n",
      "          'ndespite': 1,\n",
      "          'kept': 1,\n",
      "          'open': 1,\n",
      "          'mind': 1,\n",
      "          'began': 1,\n",
      "          'watching': 1,\n",
      "          'nsadly': 1,\n",
      "          'fears': 1,\n",
      "          'realized': 1,\n",
      "          'nits': 1,\n",
      "          'possible': 1,\n",
      "          'make': 1,\n",
      "          'fulllength': 1,\n",
      "          'person': 1,\n",
      "          'spends': 1,\n",
      "          'days': 1,\n",
      "          'wearing': 1,\n",
      "          'different': 1,\n",
      "          'clothes': 1,\n",
      "          'follows': 1,\n",
      "          'rise': 1,\n",
      "          'fall': 1,\n",
      "          'name': 1,\n",
      "          'tumultuous': 1,\n",
      "          'doesnt': 1,\n",
      "          'particularly': 1,\n",
      "          'enjoy': 1,\n",
      "          'nshe': 1,\n",
      "          'famous': 1,\n",
      "          'quickly': 1,\n",
      "          'handle': 1,\n",
      "          'finds': 1,\n",
      "          'hooked': 1,\n",
      "          'one': 1,\n",
      "          'scene': 1,\n",
      "          'another': 1,\n",
      "          'getting': 1,\n",
      "          'high': 1,\n",
      "          'losing': 1,\n",
      "          'job': 1,\n",
      "          'going': 1,\n",
      "          'rehab': 1,\n",
      "          'nthis': 1,\n",
      "          'formula': 1,\n",
      "          'repeated': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'got': 1,\n",
      "          'tired': 1,\n",
      "          'nin': 1,\n",
      "          'general': 1,\n",
      "          'tend': 1,\n",
      "          'dislike': 1,\n",
      "          'heavy': 1,\n",
      "          'use': 1,\n",
      "          'nno': 1,\n",
      "          'offends': 1,\n",
      "          'anything': 1,\n",
      "          'bores': 1,\n",
      "          'frankly': 1,\n",
      "          'appeal': 1,\n",
      "          'director': 1,\n",
      "          'shows': 1,\n",
      "          'pointofview': 1,\n",
      "          'shot': 1,\n",
      "          'junkie': 1,\n",
      "          'complete': 1,\n",
      "          'tipsy': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'echoing': 1,\n",
      "          'voices': 1,\n",
      "          'left': 1,\n",
      "          'somewhat': 1,\n",
      "          'unimpressed': 1,\n",
      "          'actually': 1,\n",
      "          'quite': 1,\n",
      "          'engaging': 1,\n",
      "          'nwe': 1,\n",
      "          'discovered': 1,\n",
      "          'moves': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'boyfriend': 1,\n",
      "          'nthese': 1,\n",
      "          'early': 1,\n",
      "          'nwere': 1,\n",
      "          'shown': 1,\n",
      "          'newcomers': 1,\n",
      "          'perspective': 1,\n",
      "          'hadnt': 1,\n",
      "          'seen': 1,\n",
      "          'begins': 1,\n",
      "          'go': 1,\n",
      "          'downhill': 1,\n",
      "          'however': 1,\n",
      "          'established': 1,\n",
      "          'nfrom': 1,\n",
      "          'point': 1,\n",
      "          'interest': 1,\n",
      "          'counting': 1,\n",
      "          'minutes': 1,\n",
      "          'would': 1,\n",
      "          'nit': 1,\n",
      "          'seemed': 1,\n",
      "          'excessive': 1,\n",
      "          'nfine': 1,\n",
      "          'problem': 1,\n",
      "          'need': 1,\n",
      "          'dominate': 1,\n",
      "          'ncouldnt': 1,\n",
      "          'effect': 1,\n",
      "          'five': 1,\n",
      "          'ten': 1,\n",
      "          'minute': 1,\n",
      "          'montage': 1,\n",
      "          'experimenting': 1,\n",
      "          'perhaps': 1,\n",
      "          'meant': 1,\n",
      "          'aspiring': 1,\n",
      "          'models': 1,\n",
      "          'get': 1,\n",
      "          'possibly': 1,\n",
      "          'although': 1,\n",
      "          'since': 1,\n",
      "          'desire': 1,\n",
      "          'become': 1,\n",
      "          'nas': 1,\n",
      "          'stated': 1,\n",
      "          'beginning': 1,\n",
      "          'review': 1,\n",
      "          'simply': 1,\n",
      "          'featurelength': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nwhat': 1,\n",
      "          'warrants': 1,\n",
      "          'nstrut': 1,\n",
      "          'stuff': 1,\n",
      "          'thousands': 1,\n",
      "          'dollars': 1,\n",
      "          'suppose': 1,\n",
      "          'could': 1,\n",
      "          'said': 1,\n",
      "          'making': 1,\n",
      "          'baseball': 1,\n",
      "          'players': 1,\n",
      "          'example': 1,\n",
      "          'least': 1,\n",
      "          'somebody': 1,\n",
      "          'lou': 1,\n",
      "          'gehrig': 1,\n",
      "          'led': 1,\n",
      "          'ngia': 1,\n",
      "          'knew': 1,\n",
      "          'sure': 1,\n",
      "          'hated': 1,\n",
      "          'modelling': 1,\n",
      "          'bisexual': 1,\n",
      "          'heavily': 1,\n",
      "          'nnot': 1,\n",
      "          'exactly': 1,\n",
      "          'meaningful': 1,\n",
      "          'contribution': 1,\n",
      "          'society': 1,\n",
      "          'far': 1,\n",
      "          'im': 1,\n",
      "          'concerned': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'alone': 12,\n",
      "          'home': 11,\n",
      "          'nthe': 7,\n",
      "          '3': 6,\n",
      "          'years': 5,\n",
      "          'hughes': 4,\n",
      "          'film': 3,\n",
      "          'villains': 3,\n",
      "          'day': 3,\n",
      "          'one': 3,\n",
      "          'cant': 3,\n",
      "          'nits': 3,\n",
      "          'air': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'family': 2,\n",
      "          'sequel': 2,\n",
      "          'two': 2,\n",
      "          '2': 2,\n",
      "          'well': 2,\n",
      "          'called': 2,\n",
      "          'john': 2,\n",
      "          'movies': 2,\n",
      "          'enough': 2,\n",
      "          'every': 2,\n",
      "          'movie': 2,\n",
      "          'liveaction': 2,\n",
      "          'flubber': 2,\n",
      "          'new': 2,\n",
      "          'life': 2,\n",
      "          'series': 2,\n",
      "          'kid': 2,\n",
      "          'alex': 2,\n",
      "          'thing': 2,\n",
      "          'even': 2,\n",
      "          'nin': 2,\n",
      "          'four': 2,\n",
      "          'lenny': 2,\n",
      "          'von': 2,\n",
      "          'dohlen': 2,\n",
      "          'many': 2,\n",
      "          'isnt': 2,\n",
      "          'alexs': 2,\n",
      "          'falling': 2,\n",
      "          'snow': 2,\n",
      "          'seen': 2,\n",
      "          'violence': 2,\n",
      "          'children': 2,\n",
      "          'talk': 1,\n",
      "          'beating': 1,\n",
      "          'dead': 1,\n",
      "          'horse': 1,\n",
      "          'nwhen': 1,\n",
      "          'released': 1,\n",
      "          '1990': 1,\n",
      "          'breath': 1,\n",
      "          'fresh': 1,\n",
      "          'final': 1,\n",
      "          'tally': 1,\n",
      "          'indicated': 1,\n",
      "          'much': 1,\n",
      "          'audiences': 1,\n",
      "          'appreciated': 1,\n",
      "          'genuinelyfunny': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'high': 1,\n",
      "          'gross': 1,\n",
      "          'guaranteed': 1,\n",
      "          'later': 1,\n",
      "          'subjected': 1,\n",
      "          'might': 1,\n",
      "          'clone': 1,\n",
      "          'originality': 1,\n",
      "          'exhibited': 1,\n",
      "          'nfor': 1,\n",
      "          'werent': 1,\n",
      "          'began': 1,\n",
      "          'recycling': 1,\n",
      "          'kinds': 1,\n",
      "          'situations': 1,\n",
      "          'almost': 1,\n",
      "          'involved': 1,\n",
      "          'including': 1,\n",
      "          'pathetic': 1,\n",
      "          'bomb': 1,\n",
      "          'babys': 1,\n",
      "          'last': 1,\n",
      "          '101': 1,\n",
      "          'dalmatians': 1,\n",
      "          'nnow': 1,\n",
      "          'inexplicably': 1,\n",
      "          'exhumed': 1,\n",
      "          'wornout': 1,\n",
      "          'plot': 1,\n",
      "          'elements': 1,\n",
      "          'name': 1,\n",
      "          'result': 1,\n",
      "          '1997s': 1,\n",
      "          'worst': 1,\n",
      "          'edging': 1,\n",
      "          'speed': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'nby': 1,\n",
      "          'changing': 1,\n",
      "          'characters': 1,\n",
      "          'wrote': 1,\n",
      "          'coproduced': 1,\n",
      "          'along': 1,\n",
      "          'coconspirator': 1,\n",
      "          'director': 1,\n",
      "          'raja': 1,\n",
      "          'gosnell': 1,\n",
      "          'attempted': 1,\n",
      "          'inject': 1,\n",
      "          'way': 1,\n",
      "          'past': 1,\n",
      "          'point': 1,\n",
      "          'cardiac': 1,\n",
      "          'arrest': 1,\n",
      "          'pruitt': 1,\n",
      "          'played': 1,\n",
      "          'linz': 1,\n",
      "          'fine': 1,\n",
      "          'going': 1,\n",
      "          'terminal': 1,\n",
      "          'cuteness': 1,\n",
      "          'nhes': 1,\n",
      "          'half': 1,\n",
      "          'interesting': 1,\n",
      "          'macaulay': 1,\n",
      "          'culkin': 1,\n",
      "          'pale': 1,\n",
      "          'copies': 1,\n",
      "          'joe': 1,\n",
      "          'pesci': 1,\n",
      "          'daniel': 1,\n",
      "          'stern': 1,\n",
      "          'less': 1,\n",
      "          'engaging': 1,\n",
      "          'pair': 1,\n",
      "          'idiots': 1,\n",
      "          'olek': 1,\n",
      "          'krupa': 1,\n",
      "          'david': 1,\n",
      "          'thornton': 1,\n",
      "          'rya': 1,\n",
      "          'kihlstedt': 1,\n",
      "          'means': 1,\n",
      "          'opportunity': 1,\n",
      "          'twice': 1,\n",
      "          'pratfalls': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'left': 1,\n",
      "          'parents': 1,\n",
      "          'gone': 1,\n",
      "          'trip': 1,\n",
      "          'ninstead': 1,\n",
      "          'developed': 1,\n",
      "          'bad': 1,\n",
      "          'case': 1,\n",
      "          'chicken': 1,\n",
      "          'pox': 1,\n",
      "          'go': 1,\n",
      "          'school': 1,\n",
      "          'nhis': 1,\n",
      "          'dad': 1,\n",
      "          'kevin': 1,\n",
      "          'kilner': 1,\n",
      "          'away': 1,\n",
      "          'business': 1,\n",
      "          'mom': 1,\n",
      "          'haviland': 1,\n",
      "          'morris': 1,\n",
      "          'run': 1,\n",
      "          'errands': 1,\n",
      "          'part': 1,\n",
      "          'hes': 1,\n",
      "          'nthrough': 1,\n",
      "          'coincidences': 1,\n",
      "          'irritating': 1,\n",
      "          'relate': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          'u': 1,\n",
      "          'force': 1,\n",
      "          'integrated': 1,\n",
      "          'circuit': 1,\n",
      "          'comes': 1,\n",
      "          'possession': 1,\n",
      "          'wanted': 1,\n",
      "          'gang': 1,\n",
      "          'international': 1,\n",
      "          'crooks': 1,\n",
      "          'intend': 1,\n",
      "          'break': 1,\n",
      "          'retrieve': 1,\n",
      "          'eight': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'wise': 1,\n",
      "          'beyond': 1,\n",
      "          'booby': 1,\n",
      "          'traps': 1,\n",
      "          'house': 1,\n",
      "          'sorts': 1,\n",
      "          'rube': 1,\n",
      "          'goldbergtype': 1,\n",
      "          'devices': 1,\n",
      "          'designed': 1,\n",
      "          'humiliate': 1,\n",
      "          'incapacitate': 1,\n",
      "          'climax': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'raging': 1,\n",
      "          'snowstorm': 1,\n",
      "          'none': 1,\n",
      "          'flakes': 1,\n",
      "          'looks': 1,\n",
      "          'remotely': 1,\n",
      "          'believable': 1,\n",
      "          'npreviously': 1,\n",
      "          'counterfeitlooking': 1,\n",
      "          'effects': 1,\n",
      "          'remember': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'iii': 1,\n",
      "          'nthese': 1,\n",
      "          'far': 1,\n",
      "          'worse': 1,\n",
      "          'fact': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'shoddy': 1,\n",
      "          'scenes': 1,\n",
      "          'midst': 1,\n",
      "          'nearblizzard': 1,\n",
      "          'shining': 1,\n",
      "          'sun': 1,\n",
      "          'nif': 1,\n",
      "          'wonderful': 1,\n",
      "          'could': 1,\n",
      "          'generate': 1,\n",
      "          'real': 1,\n",
      "          'looking': 1,\n",
      "          'back': 1,\n",
      "          '1940s': 1,\n",
      "          'significantly': 1,\n",
      "          'larger': 1,\n",
      "          'budget': 1,\n",
      "          '90s': 1,\n",
      "          'technology': 1,\n",
      "          'disposal': 1,\n",
      "          'nthere': 1,\n",
      "          'ongoing': 1,\n",
      "          'debate': 1,\n",
      "          'regarding': 1,\n",
      "          'appropriateness': 1,\n",
      "          'cartoon': 1,\n",
      "          'young': 1,\n",
      "          'nhome': 1,\n",
      "          'add': 1,\n",
      "          'fuel': 1,\n",
      "          'fire': 1,\n",
      "          'see': 1,\n",
      "          'wyle': 1,\n",
      "          'e': 1,\n",
      "          'coyote': 1,\n",
      "          'flattened': 1,\n",
      "          '10': 1,\n",
      "          'ton': 1,\n",
      "          'acme': 1,\n",
      "          'weight': 1,\n",
      "          'quite': 1,\n",
      "          'another': 1,\n",
      "          'watch': 1,\n",
      "          'running': 1,\n",
      "          'lawn': 1,\n",
      "          'mower': 1,\n",
      "          'fall': 1,\n",
      "          'nadults': 1,\n",
      "          'older': 1,\n",
      "          'recognize': 1,\n",
      "          'obviously': 1,\n",
      "          'fake': 1,\n",
      "          'intended': 1,\n",
      "          'humorous': 1,\n",
      "          'five': 1,\n",
      "          'sixyear': 1,\n",
      "          'olds': 1,\n",
      "          'level': 1,\n",
      "          'extreme': 1,\n",
      "          'schemes': 1,\n",
      "          'nasty': 1,\n",
      "          'kill': 1,\n",
      "          'nbut': 1,\n",
      "          'dies': 1,\n",
      "          'despite': 1,\n",
      "          'electrocuted': 1,\n",
      "          'thirty': 1,\n",
      "          'feet': 1,\n",
      "          'getting': 1,\n",
      "          'smacked': 1,\n",
      "          'head': 1,\n",
      "          'barbell': 1,\n",
      "          'nnot': 1,\n",
      "          'unnecessary': 1,\n",
      "          'offensive': 1,\n",
      "          'exercise': 1,\n",
      "          'tediousness': 1,\n",
      "          'genuine': 1,\n",
      "          'laugh': 1,\n",
      "          'found': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'unless': 1,\n",
      "          'strange': 1,\n",
      "          'quirk': 1,\n",
      "          'fate': 1,\n",
      "          'missed': 1,\n",
      "          '1990s': 1,\n",
      "          'associated': 1,\n",
      "          'thus': 1,\n",
      "          'havent': 1,\n",
      "          'stuff': 1,\n",
      "          'ni': 1,\n",
      "          'imagine': 1,\n",
      "          'anyone': 1,\n",
      "          'reasonable': 1,\n",
      "          'attention': 1,\n",
      "          'span': 1,\n",
      "          'momentarily': 1,\n",
      "          'distracted': 1,\n",
      "          'pointless': 1,\n",
      "          'adventure': 1,\n",
      "          'nmaybe': 1,\n",
      "          'thats': 1,\n",
      "          'ones': 1,\n",
      "          'laughing': 1,\n",
      "          'screening': 1,\n",
      "          'attended': 1,\n",
      "          'still': 1,\n",
      "          'thumbsucking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'ntheres': 6,\n",
      "          'film': 6,\n",
      "          'good': 5,\n",
      "          'reason': 5,\n",
      "          'scenes': 5,\n",
      "          'even': 4,\n",
      "          'peel': 4,\n",
      "          'times': 4,\n",
      "          'around': 4,\n",
      "          'first': 4,\n",
      "          'one': 4,\n",
      "          'time': 3,\n",
      "          'nowhere': 3,\n",
      "          'series': 3,\n",
      "          'emma': 3,\n",
      "          'sense': 3,\n",
      "          'less': 3,\n",
      "          'get': 3,\n",
      "          'man': 3,\n",
      "          'doesnt': 3,\n",
      "          'theres': 3,\n",
      "          'made': 2,\n",
      "          'nthats': 2,\n",
      "          'late': 2,\n",
      "          'sixties': 2,\n",
      "          'bear': 2,\n",
      "          'big': 2,\n",
      "          'world': 2,\n",
      "          'like': 2,\n",
      "          'days': 2,\n",
      "          'put': 2,\n",
      "          'part': 2,\n",
      "          'nnone': 2,\n",
      "          'television': 2,\n",
      "          'agent': 2,\n",
      "          'steed': 2,\n",
      "          'rigg': 2,\n",
      "          'audience': 2,\n",
      "          'witty': 2,\n",
      "          'probably': 2,\n",
      "          'either': 2,\n",
      "          'connery': 2,\n",
      "          'weather': 2,\n",
      "          'much': 2,\n",
      "          'make': 2,\n",
      "          'appear': 2,\n",
      "          'well': 2,\n",
      "          'never': 2,\n",
      "          'makes': 2,\n",
      "          'huge': 2,\n",
      "          'outfits': 2,\n",
      "          'nat': 2,\n",
      "          'humorous': 2,\n",
      "          'movie': 2,\n",
      "          'nit': 2,\n",
      "          'missing': 2,\n",
      "          'several': 2,\n",
      "          'parts': 2,\n",
      "          'nfiennes': 2,\n",
      "          'sexual': 2,\n",
      "          'nadmittedly': 2,\n",
      "          'better': 2,\n",
      "          'nno': 2,\n",
      "          'conventional': 1,\n",
      "          'wisdom': 1,\n",
      "          'among': 1,\n",
      "          'collectibles': 1,\n",
      "          'retailers': 1,\n",
      "          'childrens': 1,\n",
      "          'items': 1,\n",
      "          'begin': 1,\n",
      "          'dramatically': 1,\n",
      "          'escalate': 1,\n",
      "          'price': 1,\n",
      "          'twentyfive': 1,\n",
      "          'thirty': 1,\n",
      "          'years': 1,\n",
      "          'item': 1,\n",
      "          'kids': 1,\n",
      "          'jobs': 1,\n",
      "          'disposable': 1,\n",
      "          'income': 1,\n",
      "          'desire': 1,\n",
      "          'revisit': 1,\n",
      "          'awe': 1,\n",
      "          'wonderment': 1,\n",
      "          'childhood': 1,\n",
      "          'disappeared': 1,\n",
      "          'lives': 1,\n",
      "          'ncheck': 1,\n",
      "          'prices': 1,\n",
      "          'toys': 1,\n",
      "          'youll': 1,\n",
      "          'find': 1,\n",
      "          'yogi': 1,\n",
      "          'lunch': 1,\n",
      "          'boxes': 1,\n",
      "          'demanding': 1,\n",
      "          'bucks': 1,\n",
      "          'heavy': 1,\n",
      "          'nostalgia': 1,\n",
      "          'nowadays': 1,\n",
      "          'early': 1,\n",
      "          'seventies': 1,\n",
      "          'apparent': 1,\n",
      "          'screen': 1,\n",
      "          'nboomers': 1,\n",
      "          'mostly': 1,\n",
      "          'forties': 1,\n",
      "          'fifties': 1,\n",
      "          'lived': 1,\n",
      "          'workaday': 1,\n",
      "          'long': 1,\n",
      "          'ntheyd': 1,\n",
      "          'recapture': 1,\n",
      "          'fun': 1,\n",
      "          'remember': 1,\n",
      "          'yore': 1,\n",
      "          'nhollywood': 1,\n",
      "          'seems': 1,\n",
      "          'eager': 1,\n",
      "          'churn': 1,\n",
      "          'product': 1,\n",
      "          'help': 1,\n",
      "          'ndirectors': 1,\n",
      "          'zealous': 1,\n",
      "          'stamp': 1,\n",
      "          'icons': 1,\n",
      "          'nand': 1,\n",
      "          'theyre': 1,\n",
      "          'messing': 1,\n",
      "          'n': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'lost': 1,\n",
      "          'space': 1,\n",
      "          'godzilla': 1,\n",
      "          'zorro': 1,\n",
      "          'successfully': 1,\n",
      "          'capture': 1,\n",
      "          'originals': 1,\n",
      "          'films': 1,\n",
      "          'nyou': 1,\n",
      "          'add': 1,\n",
      "          'avengers': 1,\n",
      "          'list': 1,\n",
      "          'british': 1,\n",
      "          'began': 1,\n",
      "          '1961': 1,\n",
      "          'nsuper': 1,\n",
      "          'secret': 1,\n",
      "          'john': 1,\n",
      "          'thenpatrick': 1,\n",
      "          'macnee': 1,\n",
      "          'third': 1,\n",
      "          'partner': 1,\n",
      "          'thendiana': 1,\n",
      "          'pair': 1,\n",
      "          'american': 1,\n",
      "          'fell': 1,\n",
      "          'nsurrealistic': 1,\n",
      "          'fit': 1,\n",
      "          'mood': 1,\n",
      "          'leatherclad': 1,\n",
      "          'didnt': 1,\n",
      "          'hurt': 1,\n",
      "          'ratings': 1,\n",
      "          'nafter': 1,\n",
      "          'coincidence': 1,\n",
      "          'cant': 1,\n",
      "          'pronounce': 1,\n",
      "          'characters': 1,\n",
      "          'name': 1,\n",
      "          'without': 1,\n",
      "          'appeal': 1,\n",
      "          'nnow': 1,\n",
      "          'nineties': 1,\n",
      "          'nsteed': 1,\n",
      "          'nowralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'nowuma': 1,\n",
      "          'thurman': 1,\n",
      "          'battling': 1,\n",
      "          'evil': 1,\n",
      "          'genius': 1,\n",
      "          'sir': 1,\n",
      "          'august': 1,\n",
      "          'de': 1,\n",
      "          'wynter': 1,\n",
      "          'sean': 1,\n",
      "          'screwing': 1,\n",
      "          'englands': 1,\n",
      "          'plot': 1,\n",
      "          'footage': 1,\n",
      "          'lot': 1,\n",
      "          'things': 1,\n",
      "          'dont': 1,\n",
      "          'nwe': 1,\n",
      "          'betrayal': 1,\n",
      "          'unknown': 1,\n",
      "          'nevil': 1,\n",
      "          'clones': 1,\n",
      "          'vanish': 1,\n",
      "          'connection': 1,\n",
      "          'nremarkably': 1,\n",
      "          'ineffective': 1,\n",
      "          'giant': 1,\n",
      "          'flying': 1,\n",
      "          'robot': 1,\n",
      "          'wasps': 1,\n",
      "          'machine': 1,\n",
      "          'guns': 1,\n",
      "          'belly': 1,\n",
      "          'come': 1,\n",
      "          'high': 1,\n",
      "          'tech': 1,\n",
      "          'hot': 1,\n",
      "          'air': 1,\n",
      "          'balloon': 1,\n",
      "          'idea': 1,\n",
      "          'anyones': 1,\n",
      "          'spy': 1,\n",
      "          'agency': 1,\n",
      "          'run': 1,\n",
      "          'called': 1,\n",
      "          'mother': 1,\n",
      "          'wheelchair': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'father': 1,\n",
      "          'blind': 1,\n",
      "          'nleast': 1,\n",
      "          'know': 1,\n",
      "          'nmacnee': 1,\n",
      "          'appearance': 1,\n",
      "          'sorts': 1,\n",
      "          'nhe': 1,\n",
      "          'voice': 1,\n",
      "          'invisible': 1,\n",
      "          'whose': 1,\n",
      "          'character': 1,\n",
      "          'goes': 1,\n",
      "          'scene': 1,\n",
      "          'nothing': 1,\n",
      "          'na': 1,\n",
      "          'group': 1,\n",
      "          'villains': 1,\n",
      "          'sits': 1,\n",
      "          'table': 1,\n",
      "          'clad': 1,\n",
      "          'pastelcolored': 1,\n",
      "          'teddy': 1,\n",
      "          'watch': 1,\n",
      "          'teddies': 1,\n",
      "          'waddle': 1,\n",
      "          'becomes': 1,\n",
      "          'goofy': 1,\n",
      "          'medley': 1,\n",
      "          'clutter': 1,\n",
      "          'confusion': 1,\n",
      "          'wrong': 1,\n",
      "          'decisions': 1,\n",
      "          'every': 1,\n",
      "          'corner': 1,\n",
      "          'feels': 1,\n",
      "          'major': 1,\n",
      "          'portions': 1,\n",
      "          'storyline': 1,\n",
      "          'jumps': 1,\n",
      "          'rather': 1,\n",
      "          'flows': 1,\n",
      "          'nreportedly': 1,\n",
      "          'recut': 1,\n",
      "          'nthis': 1,\n",
      "          'whole': 1,\n",
      "          'sum': 1,\n",
      "          'especially': 1,\n",
      "          'since': 1,\n",
      "          'point': 1,\n",
      "          'running': 1,\n",
      "          'room': 1,\n",
      "          'another': 1,\n",
      "          'house': 1,\n",
      "          'designed': 1,\n",
      "          'escher': 1,\n",
      "          'nother': 1,\n",
      "          'effects': 1,\n",
      "          'secondrate': 1,\n",
      "          'threat': 1,\n",
      "          'old': 1,\n",
      "          'hat': 1,\n",
      "          'tornadoes': 1,\n",
      "          'nthurman': 1,\n",
      "          'almost': 1,\n",
      "          'adequate': 1,\n",
      "          'work': 1,\n",
      "          'nshe': 1,\n",
      "          'looks': 1,\n",
      "          'dresses': 1,\n",
      "          'right': 1,\n",
      "          'fetish': 1,\n",
      "          'spark': 1,\n",
      "          'fares': 1,\n",
      "          'nmacnees': 1,\n",
      "          'humor': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'dour': 1,\n",
      "          'kid': 1,\n",
      "          'grownup': 1,\n",
      "          'clothes': 1,\n",
      "          'home': 1,\n",
      "          'town': 1,\n",
      "          'neven': 1,\n",
      "          'greatest': 1,\n",
      "          'living': 1,\n",
      "          'actors': 1,\n",
      "          'presence': 1,\n",
      "          'outside': 1,\n",
      "          'fiery': 1,\n",
      "          'action': 1,\n",
      "          'difficult': 1,\n",
      "          'follow': 1,\n",
      "          'ndirector': 1,\n",
      "          'jeremiah': 1,\n",
      "          'chechik': 1,\n",
      "          'responsible': 1,\n",
      "          'atrocious': 1,\n",
      "          'remake': 1,\n",
      "          'diabolique': 1,\n",
      "          'somehow': 1,\n",
      "          'manages': 1,\n",
      "          'camera': 1,\n",
      "          'exactly': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nthings': 1,\n",
      "          'happen': 1,\n",
      "          'people': 1,\n",
      "          'move': 1,\n",
      "          'utmost': 1,\n",
      "          'effort': 1,\n",
      "          'able': 1,\n",
      "          'care': 1,\n",
      "          'bewildering': 1,\n",
      "          'primary': 1,\n",
      "          'allure': 1,\n",
      "          'original': 1,\n",
      "          'interaction': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'nwitty': 1,\n",
      "          'banter': 1,\n",
      "          'underplayed': 1,\n",
      "          'tension': 1,\n",
      "          'winning': 1,\n",
      "          'combination': 1,\n",
      "          'puns': 1,\n",
      "          'chemistry': 1,\n",
      "          'repartee': 1,\n",
      "          'anything': 1,\n",
      "          'clever': 1,\n",
      "          'none': 1,\n",
      "          'peels': 1,\n",
      "          'lines': 1,\n",
      "          'dialog': 1,\n",
      "          'rules': 1,\n",
      "          'broken': 1,\n",
      "          'nadvance': 1,\n",
      "          'word': 1,\n",
      "          'alone': 1,\n",
      "          'enough': 1,\n",
      "          'scare': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'anyone': 1,\n",
      "          'release': 1,\n",
      "          'date': 1,\n",
      "          'changed': 1,\n",
      "          'nconnery': 1,\n",
      "          'refuses': 1,\n",
      "          'promote': 1,\n",
      "          'nthere': 1,\n",
      "          'screening': 1,\n",
      "          'critics': 1,\n",
      "          'may': 1,\n",
      "          'choice': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'least': 1,\n",
      "          'way': 1,\n",
      "          'something': 1,\n",
      "          'weekend': 1,\n",
      "          'news': 1,\n",
      "          'gets': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'episode': 1,\n",
      "          'couple': 1,\n",
      "          'decades': 1,\n",
      "          'nmy': 1,\n",
      "          'guess': 1,\n",
      "          'would': 1,\n",
      "          'severely': 1,\n",
      "          'dated': 1,\n",
      "          'matter': 1,\n",
      "          'antiquated': 1,\n",
      "          'might': 1,\n",
      "          'doubt': 1,\n",
      "          'holds': 1,\n",
      "          'viewing': 1,\n",
      "          'waste': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'inside': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 17,\n",
      "          'version': 13,\n",
      "          'lynch': 11,\n",
      "          'dune': 10,\n",
      "          'film': 9,\n",
      "          'two': 6,\n",
      "          'cut': 6,\n",
      "          'ndune': 5,\n",
      "          'theatrical': 5,\n",
      "          'minutes': 5,\n",
      "          'extended': 5,\n",
      "          'original': 5,\n",
      "          'nand': 5,\n",
      "          'also': 5,\n",
      "          'piece': 5,\n",
      "          'review': 4,\n",
      "          'may': 4,\n",
      "          'book': 4,\n",
      "          'scenes': 4,\n",
      "          'nit': 4,\n",
      "          'lynchs': 4,\n",
      "          'universe': 4,\n",
      "          'arrakis': 4,\n",
      "          'young': 4,\n",
      "          'fremen': 4,\n",
      "          'would': 4,\n",
      "          'well': 4,\n",
      "          'one': 4,\n",
      "          'enough': 4,\n",
      "          'several': 4,\n",
      "          'new': 4,\n",
      "          '1984': 3,\n",
      "          'hours': 3,\n",
      "          'films': 3,\n",
      "          'action': 3,\n",
      "          'partly': 3,\n",
      "          'mca': 3,\n",
      "          'special': 3,\n",
      "          'projects': 3,\n",
      "          'closer': 3,\n",
      "          'release': 3,\n",
      "          'mammoth': 3,\n",
      "          'herberts': 3,\n",
      "          'production': 3,\n",
      "          'guild': 3,\n",
      "          'atreides': 3,\n",
      "          'harkonnen': 3,\n",
      "          'paul': 3,\n",
      "          'nwith': 3,\n",
      "          'narration': 3,\n",
      "          'times': 3,\n",
      "          'least': 3,\n",
      "          'kind': 3,\n",
      "          'still': 3,\n",
      "          'way': 3,\n",
      "          'however': 3,\n",
      "          'baron': 3,\n",
      "          'nas': 3,\n",
      "          'work': 3,\n",
      "          'directors': 3,\n",
      "          'nbut': 3,\n",
      "          'versions': 2,\n",
      "          'runtime': 2,\n",
      "          'capsule': 2,\n",
      "          'studio': 2,\n",
      "          'incomprehensible': 2,\n",
      "          'unfamiliar': 2,\n",
      "          'visual': 2,\n",
      "          'holes': 2,\n",
      "          'narrative': 2,\n",
      "          '1988': 2,\n",
      "          'tv': 2,\n",
      "          'cable': 2,\n",
      "          'television': 2,\n",
      "          'director': 2,\n",
      "          'david': 2,\n",
      "          'considerably': 2,\n",
      "          'storyline': 2,\n",
      "          'various': 2,\n",
      "          'world': 2,\n",
      "          'made': 2,\n",
      "          'frank': 2,\n",
      "          'novel': 2,\n",
      "          'scifi': 2,\n",
      "          'fans': 2,\n",
      "          'herbert': 2,\n",
      "          'families': 2,\n",
      "          'key': 2,\n",
      "          'planet': 2,\n",
      "          'thats': 2,\n",
      "          'home': 2,\n",
      "          'giant': 2,\n",
      "          'sandworms': 2,\n",
      "          'spice': 2,\n",
      "          'life': 2,\n",
      "          'nmost': 2,\n",
      "          'spacing': 2,\n",
      "          'houses': 2,\n",
      "          'religious': 2,\n",
      "          'control': 2,\n",
      "          'man': 2,\n",
      "          'come': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'cuts': 2,\n",
      "          'great': 2,\n",
      "          'already': 2,\n",
      "          'complex': 2,\n",
      "          'make': 2,\n",
      "          'us': 2,\n",
      "          'characters': 2,\n",
      "          'pauls': 2,\n",
      "          'father': 2,\n",
      "          'rather': 2,\n",
      "          'distinct': 2,\n",
      "          'cast': 2,\n",
      "          'much': 2,\n",
      "          'find': 2,\n",
      "          'hard': 2,\n",
      "          'impression': 2,\n",
      "          'people': 2,\n",
      "          'humour': 2,\n",
      "          'design': 2,\n",
      "          'last': 2,\n",
      "          'nasty': 2,\n",
      "          'leader': 2,\n",
      "          'bene': 2,\n",
      "          'order': 2,\n",
      "          'must': 2,\n",
      "          'take': 2,\n",
      "          'ended': 2,\n",
      "          'nin': 2,\n",
      "          'smithee': 2,\n",
      "          'instances': 2,\n",
      "          'npauls': 2,\n",
      "          'better': 2,\n",
      "          'prologue': 2,\n",
      "          'painted': 2,\n",
      "          'stills': 2,\n",
      "          'clearly': 2,\n",
      "          'superior': 2,\n",
      "          'use': 2,\n",
      "          'shots': 2,\n",
      "          'even': 2,\n",
      "          'repeated': 2,\n",
      "          'footage': 2,\n",
      "          'coming': 2,\n",
      "          'going': 2,\n",
      "          'heart': 2,\n",
      "          'following': 1,\n",
      "          'encompasses': 1,\n",
      "          '137': 1,\n",
      "          'nervous': 1,\n",
      "          'executives': 1,\n",
      "          'spectacular': 1,\n",
      "          'mess': 1,\n",
      "          'splendour': 1,\n",
      "          'mystical': 1,\n",
      "          'beauty': 1,\n",
      "          'impressive': 1,\n",
      "          'compensate': 1,\n",
      "          'gaping': 1,\n",
      "          '189': 1,\n",
      "          'bit': 1,\n",
      "          'throwtogether': 1,\n",
      "          'assembled': 1,\n",
      "          'disowned': 1,\n",
      "          'vision': 1,\n",
      "          'virtue': 1,\n",
      "          'improved': 1,\n",
      "          'characterisation': 1,\n",
      "          'clearer': 1,\n",
      "          'nquality': 1,\n",
      "          'dubs': 1,\n",
      "          'outofprint': 1,\n",
      "          'japanese': 1,\n",
      "          'laserdisc': 1,\n",
      "          'available': 1,\n",
      "          'dealers': 1,\n",
      "          'wide': 1,\n",
      "          'web': 1,\n",
      "          'n': 1,\n",
      "          'nreleased': 1,\n",
      "          'budget': 1,\n",
      "          '40': 1,\n",
      "          'million': 1,\n",
      "          'cult': 1,\n",
      "          'eagerly': 1,\n",
      "          'awaited': 1,\n",
      "          'ndirector': 1,\n",
      "          'blue': 1,\n",
      "          'velvet': 1,\n",
      "          'eraserhead': 1,\n",
      "          'twin': 1,\n",
      "          'peaks': 1,\n",
      "          'working': 1,\n",
      "          'biggest': 1,\n",
      "          'date': 1,\n",
      "          'undertaking': 1,\n",
      "          'filmed': 1,\n",
      "          'trying': 1,\n",
      "          'conditions': 1,\n",
      "          'location': 1,\n",
      "          'mexico': 1,\n",
      "          'screenplay': 1,\n",
      "          'chosen': 1,\n",
      "          'script': 1,\n",
      "          'submitted': 1,\n",
      "          'author': 1,\n",
      "          'rejected': 1,\n",
      "          'set': 1,\n",
      "          'ruled': 1,\n",
      "          'powerful': 1,\n",
      "          'overseen': 1,\n",
      "          'successive': 1,\n",
      "          'line': 1,\n",
      "          'emperors': 1,\n",
      "          'cosmic': 1,\n",
      "          'power': 1,\n",
      "          'windswept': 1,\n",
      "          'desert': 1,\n",
      "          'precious': 1,\n",
      "          'melange': 1,\n",
      "          'valuable': 1,\n",
      "          'commodity': 1,\n",
      "          'extends': 1,\n",
      "          'expands': 1,\n",
      "          'consciousness': 1,\n",
      "          'consume': 1,\n",
      "          'importantly': 1,\n",
      "          'allows': 1,\n",
      "          'navigators': 1,\n",
      "          'human': 1,\n",
      "          'hideously': 1,\n",
      "          'mutated': 1,\n",
      "          'fold': 1,\n",
      "          'space': 1,\n",
      "          'navigate': 1,\n",
      "          'spacecraft': 1,\n",
      "          'across': 1,\n",
      "          'distances': 1,\n",
      "          'instantaneously': 1,\n",
      "          'enabling': 1,\n",
      "          'interstellar': 1,\n",
      "          'commerce': 1,\n",
      "          'trade': 1,\n",
      "          'flourish': 1,\n",
      "          'nlynchs': 1,\n",
      "          'necessity': 1,\n",
      "          'excises': 1,\n",
      "          'parts': 1,\n",
      "          'retaining': 1,\n",
      "          'storys': 1,\n",
      "          'main': 1,\n",
      "          'strands': 1,\n",
      "          'none': 1,\n",
      "          'longstanding': 1,\n",
      "          'rivalry': 1,\n",
      "          'house': 1,\n",
      "          'battle': 1,\n",
      "          'lucrative': 1,\n",
      "          'mining': 1,\n",
      "          'rights': 1,\n",
      "          'second': 1,\n",
      "          'strand': 1,\n",
      "          'emergence': 1,\n",
      "          'reluctant': 1,\n",
      "          'messiah': 1,\n",
      "          'longawaited': 1,\n",
      "          'natives': 1,\n",
      "          'deeply': 1,\n",
      "          'want': 1,\n",
      "          'homeworld': 1,\n",
      "          'fulfilment': 1,\n",
      "          'prophecy': 1,\n",
      "          'outer': 1,\n",
      "          'worlds': 1,\n",
      "          'lead': 1,\n",
      "          'freedom': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'epic': 1,\n",
      "          'story': 1,\n",
      "          'unfolds': 1,\n",
      "          'confusing': 1,\n",
      "          'haphazard': 1,\n",
      "          'manner': 1,\n",
      "          'runs': 1,\n",
      "          '30': 1,\n",
      "          '60': 1,\n",
      "          'shorter': 1,\n",
      "          'originally': 1,\n",
      "          'intended': 1,\n",
      "          'thinking': 1,\n",
      "          'among': 1,\n",
      "          'universals': 1,\n",
      "          'ohsowise': 1,\n",
      "          'money': 1,\n",
      "          'men': 1,\n",
      "          'duration': 1,\n",
      "          'popular': 1,\n",
      "          'audiences': 1,\n",
      "          'time': 1,\n",
      "          'initial': 1,\n",
      "          'running': 1,\n",
      "          'three': 1,\n",
      "          'demanded': 1,\n",
      "          'nwhat': 1,\n",
      "          'idea': 1,\n",
      "          'nwhy': 1,\n",
      "          'trim': 1,\n",
      "          'almost': 1,\n",
      "          'glaring': 1,\n",
      "          'consequence': 1,\n",
      "          'oneeyed': 1,\n",
      "          'stupidity': 1,\n",
      "          'hopelessly': 1,\n",
      "          'jumpy': 1,\n",
      "          'leaving': 1,\n",
      "          'badly': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'nthus': 1,\n",
      "          'personalities': 1,\n",
      "          'vague': 1,\n",
      "          'motivations': 1,\n",
      "          'unclear': 1,\n",
      "          'case': 1,\n",
      "          'duke': 1,\n",
      "          'leto': 1,\n",
      "          'demise': 1,\n",
      "          'meaningless': 1,\n",
      "          'end': 1,\n",
      "          'result': 1,\n",
      "          'chill': 1,\n",
      "          'cant': 1,\n",
      "          'warm': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'hardly': 1,\n",
      "          'helps': 1,\n",
      "          'voiceover': 1,\n",
      "          'sparse': 1,\n",
      "          'duneesque': 1,\n",
      "          'language': 1,\n",
      "          'terminology': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'gobbledegook': 1,\n",
      "          'serous': 1,\n",
      "          'constant': 1,\n",
      "          'selftalk': 1,\n",
      "          'makes': 1,\n",
      "          'serious': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'wince': 1,\n",
      "          'embarrassment': 1,\n",
      "          'overall': 1,\n",
      "          'full': 1,\n",
      "          'intense': 1,\n",
      "          'allowed': 1,\n",
      "          'joke': 1,\n",
      "          'lest': 1,\n",
      "          'crashing': 1,\n",
      "          'around': 1,\n",
      "          'nhumour': 1,\n",
      "          'gentle': 1,\n",
      "          'harkonnens': 1,\n",
      "          'mad': 1,\n",
      "          'sadistic': 1,\n",
      "          'nyou': 1,\n",
      "          'balk': 1,\n",
      "          'comparison': 1,\n",
      "          'writer': 1,\n",
      "          'could': 1,\n",
      "          'done': 1,\n",
      "          'lessons': 1,\n",
      "          'george': 1,\n",
      "          'lucus': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'trilogy': 1,\n",
      "          'complete': 1,\n",
      "          'disaster': 1,\n",
      "          'possesses': 1,\n",
      "          'stylistic': 1,\n",
      "          'quirks': 1,\n",
      "          'invention': 1,\n",
      "          'sustain': 1,\n",
      "          'interest': 1,\n",
      "          'viewers': 1,\n",
      "          'taste': 1,\n",
      "          'imaginative': 1,\n",
      "          'nspecial': 1,\n",
      "          'effects': 1,\n",
      "          'whiz': 1,\n",
      "          'carlo': 1,\n",
      "          'rambaldis': 1,\n",
      "          'awesome': 1,\n",
      "          'sight': 1,\n",
      "          'nboth': 1,\n",
      "          'anthony': 1,\n",
      "          'masters': 1,\n",
      "          'costume': 1,\n",
      "          'bob': 1,\n",
      "          'ringwood': 1,\n",
      "          'striking': 1,\n",
      "          'magnificent': 1,\n",
      "          'score': 1,\n",
      "          'toto': 1,\n",
      "          'brian': 1,\n",
      "          'eno': 1,\n",
      "          'underrated': 1,\n",
      "          'soundtracks': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'elements': 1,\n",
      "          'place': 1,\n",
      "          'benefit': 1,\n",
      "          'freddie': 1,\n",
      "          'francis': 1,\n",
      "          'lush': 1,\n",
      "          'cinematography': 1,\n",
      "          'feast': 1,\n",
      "          'senses': 1,\n",
      "          'nsee': 1,\n",
      "          'widescreen': 1,\n",
      "          'format': 1,\n",
      "          'despite': 1,\n",
      "          'members': 1,\n",
      "          'strong': 1,\n",
      "          'notably': 1,\n",
      "          'kenneth': 1,\n",
      "          'mcmillan': 1,\n",
      "          'supremely': 1,\n",
      "          'vladimir': 1,\n",
      "          'nsian': 1,\n",
      "          'phillips': 1,\n",
      "          'registers': 1,\n",
      "          'strongly': 1,\n",
      "          'reverend': 1,\n",
      "          'mother': 1,\n",
      "          'gaius': 1,\n",
      "          'helen': 1,\n",
      "          'mohiam': 1,\n",
      "          'gesserit': 1,\n",
      "          'whos': 1,\n",
      "          'secret': 1,\n",
      "          'aim': 1,\n",
      "          'manipulate': 1,\n",
      "          'destiny': 1,\n",
      "          'shadowy': 1,\n",
      "          'ends': 1,\n",
      "          'kyle': 1,\n",
      "          'maclachlan': 1,\n",
      "          'starts': 1,\n",
      "          'somewhat': 1,\n",
      "          'shakily': 1,\n",
      "          'character': 1,\n",
      "          'grows': 1,\n",
      "          'strength': 1,\n",
      "          'performance': 1,\n",
      "          'emerges': 1,\n",
      "          'credible': 1,\n",
      "          'crusade': 1,\n",
      "          'conclusion': 1,\n",
      "          'nany': 1,\n",
      "          'assessment': 1,\n",
      "          'account': 1,\n",
      "          'presents': 1,\n",
      "          'tough': 1,\n",
      "          'challenge': 1,\n",
      "          'filmmaker': 1,\n",
      "          'ndavid': 1,\n",
      "          'took': 1,\n",
      "          'brave': 1,\n",
      "          'stab': 1,\n",
      "          'due': 1,\n",
      "          'forces': 1,\n",
      "          'beyond': 1,\n",
      "          'officially': 1,\n",
      "          'released': 1,\n",
      "          'fails': 1,\n",
      "          'respects': 1,\n",
      "          'certainly': 1,\n",
      "          'confused': 1,\n",
      "          'frustrated': 1,\n",
      "          'lot': 1,\n",
      "          'nmany': 1,\n",
      "          'chose': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'altogether': 1,\n",
      "          'disastrous': 1,\n",
      "          'showing': 1,\n",
      "          'attests': 1,\n",
      "          'different': 1,\n",
      "          'beast': 1,\n",
      "          'stated': 1,\n",
      "          'intention': 1,\n",
      "          'edition': 1,\n",
      "          'video': 1,\n",
      "          'clear': 1,\n",
      "          'indication': 1,\n",
      "          'dissatisfaction': 1,\n",
      "          'theatres': 1,\n",
      "          'alas': 1,\n",
      "          'failed': 1,\n",
      "          'choosing': 1,\n",
      "          'move': 1,\n",
      "          'fault': 1,\n",
      "          'appeared': 1,\n",
      "          'instead': 1,\n",
      "          'unauthorised': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'airing': 1,\n",
      "          'networks': 1,\n",
      "          'usa': 1,\n",
      "          'nstung': 1,\n",
      "          'successfully': 1,\n",
      "          'petitioned': 1,\n",
      "          'name': 1,\n",
      "          'credits': 1,\n",
      "          'replace': 1,\n",
      "          'allen': 1,\n",
      "          'standard': 1,\n",
      "          'pseudonym': 1,\n",
      "          'wish': 1,\n",
      "          'disown': 1,\n",
      "          'nhe': 1,\n",
      "          'screenwriting': 1,\n",
      "          'credit': 1,\n",
      "          'changed': 1,\n",
      "          'anonymous': 1,\n",
      "          'judas': 1,\n",
      "          'booth': 1,\n",
      "          'ncertainly': 1,\n",
      "          'looking': 1,\n",
      "          'results': 1,\n",
      "          'mcas': 1,\n",
      "          'handiwork': 1,\n",
      "          'theres': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'sheer': 1,\n",
      "          'technical': 1,\n",
      "          'sloppiness': 1,\n",
      "          'good': 1,\n",
      "          'reasons': 1,\n",
      "          'object': 1,\n",
      "          'gripes': 1,\n",
      "          'considered': 1,\n",
      "          'light': 1,\n",
      "          'improvements': 1,\n",
      "          'offers': 1,\n",
      "          'crucial': 1,\n",
      "          'areas': 1,\n",
      "          'changes': 1,\n",
      "          'involve': 1,\n",
      "          'restoration': 1,\n",
      "          'extension': 1,\n",
      "          'addition': 1,\n",
      "          'extra': 1,\n",
      "          'fill': 1,\n",
      "          'many': 1,\n",
      "          'relationship': 1,\n",
      "          'associates': 1,\n",
      "          'intimate': 1,\n",
      "          'moments': 1,\n",
      "          'warmth': 1,\n",
      "          'lacking': 1,\n",
      "          'previously': 1,\n",
      "          'political': 1,\n",
      "          'skulduggery': 1,\n",
      "          'involving': 1,\n",
      "          'emperor': 1,\n",
      "          'gesserits': 1,\n",
      "          'warring': 1,\n",
      "          'far': 1,\n",
      "          'explained': 1,\n",
      "          'initiation': 1,\n",
      "          'fleshed': 1,\n",
      "          'background': 1,\n",
      "          'added': 1,\n",
      "          'featuring': 1,\n",
      "          'give': 1,\n",
      "          'brief': 1,\n",
      "          'history': 1,\n",
      "          'storytelling': 1,\n",
      "          'tvs': 1,\n",
      "          'editing': 1,\n",
      "          'surprisingly': 1,\n",
      "          'inept': 1,\n",
      "          'works': 1,\n",
      "          'occasional': 1,\n",
      "          'appearance': 1,\n",
      "          'begins': 1,\n",
      "          'inappropriate': 1,\n",
      "          'ntheres': 1,\n",
      "          'sloppy': 1,\n",
      "          'cutting': 1,\n",
      "          'appear': 1,\n",
      "          'fabricate': 1,\n",
      "          'certain': 1,\n",
      "          'eg': 1,\n",
      "          'nships': 1,\n",
      "          'soldiers': 1,\n",
      "          'outofcontext': 1,\n",
      "          'nthis': 1,\n",
      "          'thing': 1,\n",
      "          'objected': 1,\n",
      "          'rightly': 1,\n",
      "          'noted': 1,\n",
      "          'questionable': 1,\n",
      "          'deleted': 1,\n",
      "          'satisfy': 1,\n",
      "          'censorship': 1,\n",
      "          'demands': 1,\n",
      "          'u': 1,\n",
      "          'notable': 1,\n",
      "          'omission': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nonsense': 1,\n",
      "          'wasnt': 1,\n",
      "          'scene': 1,\n",
      "          'features': 1,\n",
      "          'killing': 1,\n",
      "          'beautiful': 1,\n",
      "          'front': 1,\n",
      "          'slobbering': 1,\n",
      "          'henchmen': 1,\n",
      "          'pulling': 1,\n",
      "          'plug': 1,\n",
      "          'nits': 1,\n",
      "          'surreal': 1,\n",
      "          'disturbing': 1,\n",
      "          'episode': 1,\n",
      "          'lynchesque': 1,\n",
      "          'adds': 1,\n",
      "          'nothing': 1,\n",
      "          'know': 1,\n",
      "          'ndespite': 1,\n",
      "          'peculiar': 1,\n",
      "          'flaws': 1,\n",
      "          'generally': 1,\n",
      "          'nall': 1,\n",
      "          'contains': 1,\n",
      "          '35': 1,\n",
      "          'restored': 1,\n",
      "          'approximately': 1,\n",
      "          'another': 1,\n",
      "          '15': 1,\n",
      "          'either': 1,\n",
      "          'altered': 1,\n",
      "          'fabricated': 1,\n",
      "          'newly': 1,\n",
      "          'created': 1,\n",
      "          'sequences': 1,\n",
      "          'nunless': 1,\n",
      "          'idiosyncratic': 1,\n",
      "          'sudden': 1,\n",
      "          'change': 1,\n",
      "          'alan': 1,\n",
      "          'remains': 1,\n",
      "          'closest': 1,\n",
      "          'get': 1,\n",
      "          'movie': 1,\n",
      "          'non': 1,\n",
      "          'viewings': 1,\n",
      "          'suspects': 1,\n",
      "          'prepared': 1,\n",
      "          'admit': 1,\n",
      "          'nstill': 1,\n",
      "          'centurys': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'novels': 1,\n",
      "          'perhaps': 1,\n",
      "          'late': 1,\n",
      "          'argue': 1,\n",
      "          'deserved': 1,\n",
      "          'fate': 1,\n",
      "          'transfer': 1,\n",
      "          'screen': 1,\n",
      "          'rumours': 1,\n",
      "          'circulating': 1,\n",
      "          'six': 1,\n",
      "          'hour': 1,\n",
      "          'miniseries': 1,\n",
      "          'planned': 1,\n",
      "          'company': 1,\n",
      "          'amsterdam': 1,\n",
      "          'entertainment': 1,\n",
      "          '1998': 1,\n",
      "          'unlikely': 1,\n",
      "          'heard': 1,\n",
      "          'saga': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nazi': 5,\n",
      "          'kitty': 5,\n",
      "          'brothel': 5,\n",
      "          'many': 3,\n",
      "          'could': 3,\n",
      "          'depravity': 3,\n",
      "          'made': 3,\n",
      "          'brass': 3,\n",
      "          'wallenberg': 3,\n",
      "          'although': 3,\n",
      "          '1970s': 2,\n",
      "          'european': 2,\n",
      "          'political': 2,\n",
      "          'fascism': 2,\n",
      "          'nwhich': 2,\n",
      "          'nin': 2,\n",
      "          'noble': 2,\n",
      "          'filmmakers': 2,\n",
      "          'course': 2,\n",
      "          'audience': 2,\n",
      "          'tinto': 2,\n",
      "          'expensive': 2,\n",
      "          'stylish': 2,\n",
      "          'soft': 2,\n",
      "          'porn': 2,\n",
      "          'film': 2,\n",
      "          'bizarre': 2,\n",
      "          'story': 2,\n",
      "          'place': 2,\n",
      "          'top': 2,\n",
      "          'bugged': 2,\n",
      "          'even': 2,\n",
      "          'real': 2,\n",
      "          'berger': 2,\n",
      "          'ingrid': 2,\n",
      "          'thulin': 2,\n",
      "          'madam': 2,\n",
      "          'cabaret': 2,\n",
      "          'margerithe': 2,\n",
      "          'probably': 2,\n",
      "          'salon': 2,\n",
      "          'successful': 2,\n",
      "          'intellectuals': 1,\n",
      "          'especially': 1,\n",
      "          'left': 1,\n",
      "          'hemisphere': 1,\n",
      "          'became': 1,\n",
      "          'obsessed': 1,\n",
      "          'rise': 1,\n",
      "          'wasnt': 1,\n",
      "          'hard': 1,\n",
      "          'expect': 1,\n",
      "          'social': 1,\n",
      "          'turmoil': 1,\n",
      "          '1960s': 1,\n",
      "          'economic': 1,\n",
      "          'decline': 1,\n",
      "          'seemed': 1,\n",
      "          'breeding': 1,\n",
      "          'ground': 1,\n",
      "          'dangerous': 1,\n",
      "          'ideologies': 1,\n",
      "          'times': 1,\n",
      "          'involvement': 1,\n",
      "          'associated': 1,\n",
      "          'passion': 1,\n",
      "          'tried': 1,\n",
      "          'warn': 1,\n",
      "          'present': 1,\n",
      "          'generations': 1,\n",
      "          'dangers': 1,\n",
      "          'lurk': 1,\n",
      "          'ahead': 1,\n",
      "          'giving': 1,\n",
      "          'look': 1,\n",
      "          'prewar': 1,\n",
      "          'europe': 1,\n",
      "          'circumstances': 1,\n",
      "          'led': 1,\n",
      "          'phenomena': 1,\n",
      "          'like': 1,\n",
      "          'fascist': 1,\n",
      "          'italy': 1,\n",
      "          'germany': 1,\n",
      "          'nof': 1,\n",
      "          'authors': 1,\n",
      "          'jumped': 1,\n",
      "          'bandwagon': 1,\n",
      "          'less': 1,\n",
      "          'reasons': 1,\n",
      "          'nfor': 1,\n",
      "          'moral': 1,\n",
      "          'explained': 1,\n",
      "          'explicitly': 1,\n",
      "          'showing': 1,\n",
      "          'sexual': 1,\n",
      "          'era': 1,\n",
      "          'naturally': 1,\n",
      "          'films': 1,\n",
      "          'popular': 1,\n",
      "          'among': 1,\n",
      "          'teen': 1,\n",
      "          'none': 1,\n",
      "          'italian': 1,\n",
      "          'director': 1,\n",
      "          'later': 1,\n",
      "          'career': 1,\n",
      "          'shooting': 1,\n",
      "          'nsalon': 1,\n",
      "          '1976': 1,\n",
      "          'losely': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'peter': 1,\n",
      "          'nordern': 1,\n",
      "          'book': 1,\n",
      "          'deals': 1,\n",
      "          'yet': 1,\n",
      "          'true': 1,\n",
      "          'took': 1,\n",
      "          'first': 1,\n",
      "          'years': 1,\n",
      "          'ww2': 1,\n",
      "          '1939': 1,\n",
      "          'walter': 1,\n",
      "          'schellenberg': 1,\n",
      "          'one': 1,\n",
      "          'heads': 1,\n",
      "          'intelligence': 1,\n",
      "          'service': 1,\n",
      "          'set': 1,\n",
      "          'elite': 1,\n",
      "          'exclusive': 1,\n",
      "          'berlin': 1,\n",
      "          'clientele': 1,\n",
      "          'comprised': 1,\n",
      "          'officials': 1,\n",
      "          'foreign': 1,\n",
      "          'diplomats': 1,\n",
      "          'nnone': 1,\n",
      "          'customers': 1,\n",
      "          'knew': 1,\n",
      "          'girls': 1,\n",
      "          'agents': 1,\n",
      "          'rooms': 1,\n",
      "          'happened': 1,\n",
      "          'nthe': 1,\n",
      "          'thing': 1,\n",
      "          'fact': 1,\n",
      "          'nominal': 1,\n",
      "          'madame': 1,\n",
      "          'didnt': 1,\n",
      "          'know': 1,\n",
      "          'purpose': 1,\n",
      "          'enterprise': 1,\n",
      "          'nscreenplay': 1,\n",
      "          'simplifies': 1,\n",
      "          'changes': 1,\n",
      "          'names': 1,\n",
      "          'nschellenberg': 1,\n",
      "          'helmut': 1,\n",
      "          'ambitious': 1,\n",
      "          'official': 1,\n",
      "          'wants': 1,\n",
      "          'use': 1,\n",
      "          'order': 1,\n",
      "          'blackmail': 1,\n",
      "          'way': 1,\n",
      "          'nkitty': 1,\n",
      "          'kellerman': 1,\n",
      "          'apart': 1,\n",
      "          'second': 1,\n",
      "          'job': 1,\n",
      "          'singer': 1,\n",
      "          'ncaught': 1,\n",
      "          'net': 1,\n",
      "          'sweet': 1,\n",
      "          'innocent': 1,\n",
      "          'girl': 1,\n",
      "          'theresa': 1,\n",
      "          'ann': 1,\n",
      "          'savoy': 1,\n",
      "          'thrown': 1,\n",
      "          'nthere': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'customer': 1,\n",
      "          'hans': 1,\n",
      "          'reiter': 1,\n",
      "          'bekim': 1,\n",
      "          'fehmiu': 1,\n",
      "          'disenchanted': 1,\n",
      "          'pilot': 1,\n",
      "          'luftwaffe': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'lover': 1,\n",
      "          'executed': 1,\n",
      "          'defeatist': 1,\n",
      "          'speeches': 1,\n",
      "          'finds': 1,\n",
      "          'nshe': 1,\n",
      "          'informs': 1,\n",
      "          'situation': 1,\n",
      "          'women': 1,\n",
      "          'decide': 1,\n",
      "          'confront': 1,\n",
      "          'nthose': 1,\n",
      "          'tend': 1,\n",
      "          'bash': 1,\n",
      "          'benigni': 1,\n",
      "          'exploiting': 1,\n",
      "          'holocaust': 1,\n",
      "          'topic': 1,\n",
      "          'comedy': 1,\n",
      "          'would': 1,\n",
      "          'go': 1,\n",
      "          'bananas': 1,\n",
      "          'watching': 1,\n",
      "          'uses': 1,\n",
      "          'darkest': 1,\n",
      "          'pages': 1,\n",
      "          'history': 1,\n",
      "          'cheap': 1,\n",
      "          'sexploitation': 1,\n",
      "          'nbut': 1,\n",
      "          'doesnt': 1,\n",
      "          'happen': 1,\n",
      "          'anything': 1,\n",
      "          'rather': 1,\n",
      "          'supposedly': 1,\n",
      "          'erotic': 1,\n",
      "          'scenes': 1,\n",
      "          'quite': 1,\n",
      "          'unappealing': 1,\n",
      "          'try': 1,\n",
      "          'multidimensional': 1,\n",
      "          'characters': 1,\n",
      "          'something': 1,\n",
      "          'resembling': 1,\n",
      "          'dramatic': 1,\n",
      "          'conflict': 1,\n",
      "          'time': 1,\n",
      "          'powerhungry': 1,\n",
      "          'scruples': 1,\n",
      "          'hedonistic': 1,\n",
      "          'womanhood': 1,\n",
      "          'symbolised': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'seems': 1,\n",
      "          'overuse': 1,\n",
      "          'cinematical': 1,\n",
      "          'references': 1,\n",
      "          'thinking': 1,\n",
      "          'repeat': 1,\n",
      "          'interaction': 1,\n",
      "          'luchino': 1,\n",
      "          'viscontis': 1,\n",
      "          'damned': 1,\n",
      "          'noticeable': 1,\n",
      "          'irritating': 1,\n",
      "          'thulins': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'attempt': 1,\n",
      "          'imitate': 1,\n",
      "          'lisa': 1,\n",
      "          'minellis': 1,\n",
      "          'musical': 1,\n",
      "          'numbers': 1,\n",
      "          'nall': 1,\n",
      "          'failure': 1,\n",
      "          'interesting': 1,\n",
      "          'moments': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'dolittle': 6,\n",
      "          'better': 6,\n",
      "          'murphy': 5,\n",
      "          'animals': 4,\n",
      "          'movie': 4,\n",
      "          'dumb': 4,\n",
      "          'done': 4,\n",
      "          'however': 4,\n",
      "          'comedy': 3,\n",
      "          'ability': 3,\n",
      "          'job': 3,\n",
      "          'even': 3,\n",
      "          'jokes': 3,\n",
      "          'good': 3,\n",
      "          'much': 3,\n",
      "          'dr': 2,\n",
      "          'time': 2,\n",
      "          'eddie': 2,\n",
      "          'betty': 2,\n",
      "          'thomas': 2,\n",
      "          'nutty': 2,\n",
      "          'professor': 2,\n",
      "          'returns': 2,\n",
      "          'doctor': 2,\n",
      "          'understand': 2,\n",
      "          'nhowever': 2,\n",
      "          'crummy': 2,\n",
      "          'happen': 2,\n",
      "          'ndoctor': 2,\n",
      "          'raise': 2,\n",
      "          'performance': 2,\n",
      "          'boring': 2,\n",
      "          'albert': 2,\n",
      "          'brooks': 2,\n",
      "          'nsadly': 2,\n",
      "          'pretty': 2,\n",
      "          'like': 2,\n",
      "          'far': 2,\n",
      "          'would': 2,\n",
      "          'probably': 2,\n",
      "          'tiger': 2,\n",
      "          'charm': 2,\n",
      "          'director': 2,\n",
      "          'puppets': 2,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'running': 1,\n",
      "          '1': 1,\n",
      "          'hour': 1,\n",
      "          '25': 1,\n",
      "          'minutes': 1,\n",
      "          'starring': 1,\n",
      "          'directed': 1,\n",
      "          'riding': 1,\n",
      "          'high': 1,\n",
      "          'success': 1,\n",
      "          '1996': 1,\n",
      "          'abysmal': 1,\n",
      "          'nhe': 1,\n",
      "          'plays': 1,\n",
      "          'john': 1,\n",
      "          'child': 1,\n",
      "          'exorcised': 1,\n",
      "          'loses': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          'see': 1,\n",
      "          'surrounding': 1,\n",
      "          'people': 1,\n",
      "          'notably': 1,\n",
      "          'mark': 1,\n",
      "          'weller': 1,\n",
      "          'played': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'bonk': 1,\n",
      "          'head': 1,\n",
      "          'ready': 1,\n",
      "          'waiting': 1,\n",
      "          'nexcept': 1,\n",
      "          'never': 1,\n",
      "          'excellent': 1,\n",
      "          'premise': 1,\n",
      "          'rarely': 1,\n",
      "          'manages': 1,\n",
      "          'laugh': 1,\n",
      "          'npoor': 1,\n",
      "          'old': 1,\n",
      "          'looks': 1,\n",
      "          'bored': 1,\n",
      "          'stiff': 1,\n",
      "          'throughout': 1,\n",
      "          'whole': 1,\n",
      "          'suffers': 1,\n",
      "          'manic': 1,\n",
      "          'saw': 1,\n",
      "          '80s': 1,\n",
      "          'gone': 1,\n",
      "          'mature': 1,\n",
      "          'twin': 1,\n",
      "          'appears': 1,\n",
      "          'getting': 1,\n",
      "          'work': 1,\n",
      "          '90s': 1,\n",
      "          'voices': 1,\n",
      "          'include': 1,\n",
      "          'chris': 1,\n",
      "          'rock': 1,\n",
      "          'new': 1,\n",
      "          'norm': 1,\n",
      "          'mcdonald': 1,\n",
      "          'lucky': 1,\n",
      "          'dog': 1,\n",
      "          'marginally': 1,\n",
      "          'least': 1,\n",
      "          'put': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'lines': 1,\n",
      "          'nand': 1,\n",
      "          'theyre': 1,\n",
      "          'funny': 1,\n",
      "          'dumber': 1,\n",
      "          '1994': 1,\n",
      "          'film': 1,\n",
      "          'succumbs': 1,\n",
      "          'fart': 1,\n",
      "          'halfway': 1,\n",
      "          'desperate': 1,\n",
      "          'attempt': 1,\n",
      "          'laughs': 1,\n",
      "          'nthere': 1,\n",
      "          'script': 1,\n",
      "          'nif': 1,\n",
      "          'choose': 1,\n",
      "          'favourite': 1,\n",
      "          'certain': 1,\n",
      "          'hes': 1,\n",
      "          'barely': 1,\n",
      "          'rocks': 1,\n",
      "          'really': 1,\n",
      "          'annoying': 1,\n",
      "          'hamster': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'given': 1,\n",
      "          'screen': 1,\n",
      "          'njoke': 1,\n",
      "          'wise': 1,\n",
      "          'thankfully': 1,\n",
      "          'spared': 1,\n",
      "          'mocking': 1,\n",
      "          'insulting': 1,\n",
      "          'type': 1,\n",
      "          'featured': 1,\n",
      "          'heavily': 1,\n",
      "          'well': 1,\n",
      "          'films': 1,\n",
      "          'nshe': 1,\n",
      "          'bought': 1,\n",
      "          'us': 1,\n",
      "          'private': 1,\n",
      "          'parts': 1,\n",
      "          '1997': 1,\n",
      "          'brady': 1,\n",
      "          'bunch': 1,\n",
      "          '1995': 1,\n",
      "          'sadly': 1,\n",
      "          'scenes': 1,\n",
      "          'lack': 1,\n",
      "          'gets': 1,\n",
      "          'reasonable': 1,\n",
      "          'realistic': 1,\n",
      "          'although': 1,\n",
      "          'obviously': 1,\n",
      "          'ntheres': 1,\n",
      "          'impressive': 1,\n",
      "          'looking': 1,\n",
      "          'lip': 1,\n",
      "          'sync': 1,\n",
      "          'nyoud': 1,\n",
      "          'problem': 1,\n",
      "          'guessing': 1,\n",
      "          'close': 1,\n",
      "          'ups': 1,\n",
      "          'jilted': 1,\n",
      "          'movement': 1,\n",
      "          'ni': 1,\n",
      "          'hoping': 1,\n",
      "          'jim': 1,\n",
      "          'hensons': 1,\n",
      "          'workshop': 1,\n",
      "          'created': 1,\n",
      "          'furry': 1,\n",
      "          'friends': 1,\n",
      "          'end': 1,\n",
      "          'disappointment': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'nmurphy': 1,\n",
      "          'movies': 1,\n",
      "          'e': 1,\n",
      "          'ntrading': 1,\n",
      "          'places': 1,\n",
      "          'seen': 1,\n",
      "          'days': 1,\n",
      "          'creatures': 1,\n",
      "          'arent': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'aged': 1,\n",
      "          '713': 1,\n",
      "          'undemanding': 1,\n",
      "          'thanks': 1,\n",
      "          'dumbed': 1,\n",
      "          'humour': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'give': 1,\n",
      "          'miss': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'characters': 9,\n",
      "          'film': 6,\n",
      "          'sexual': 6,\n",
      "          'daughter': 5,\n",
      "          'movie': 5,\n",
      "          'story': 5,\n",
      "          'brenner': 5,\n",
      "          'generals': 4,\n",
      "          'plot': 4,\n",
      "          'rape': 4,\n",
      "          'sunderland': 4,\n",
      "          'scene': 4,\n",
      "          'would': 4,\n",
      "          'entirely': 3,\n",
      "          'james': 3,\n",
      "          'comes': 3,\n",
      "          'one': 3,\n",
      "          'nthis': 3,\n",
      "          'audience': 3,\n",
      "          'forgets': 2,\n",
      "          'west': 2,\n",
      "          'treats': 2,\n",
      "          'like': 2,\n",
      "          'almost': 2,\n",
      "          'together': 2,\n",
      "          'two': 2,\n",
      "          'interesting': 2,\n",
      "          'sympathetic': 2,\n",
      "          'things': 2,\n",
      "          'conclusion': 2,\n",
      "          'find': 2,\n",
      "          'elizabeth': 2,\n",
      "          'campbell': 2,\n",
      "          'cromwell': 2,\n",
      "          'suspects': 2,\n",
      "          'including': 2,\n",
      "          'woods': 2,\n",
      "          'nperhaps': 2,\n",
      "          'obvious': 2,\n",
      "          'nthe': 2,\n",
      "          'novel': 2,\n",
      "          'apparently': 2,\n",
      "          'based': 2,\n",
      "          'dialogue': 2,\n",
      "          'minutes': 2,\n",
      "          'actually': 2,\n",
      "          'present': 2,\n",
      "          'really': 2,\n",
      "          'nin': 2,\n",
      "          'man': 2,\n",
      "          'films': 2,\n",
      "          'people': 2,\n",
      "          'mostly': 2,\n",
      "          'nothing': 2,\n",
      "          'ni': 2,\n",
      "          'dont': 2,\n",
      "          'lot': 2,\n",
      "          'certainly': 2,\n",
      "          'scenes': 2,\n",
      "          'fetishes': 2,\n",
      "          'make': 2,\n",
      "          'performances': 2,\n",
      "          'moral': 2,\n",
      "          'heartless': 1,\n",
      "          'absurd': 1,\n",
      "          'hopelessly': 1,\n",
      "          'dedicated': 1,\n",
      "          'inane': 1,\n",
      "          'ndirector': 1,\n",
      "          'simon': 1,\n",
      "          'issues': 1,\n",
      "          'fetish': 1,\n",
      "          'hamhanded': 1,\n",
      "          'obscenity': 1,\n",
      "          'creating': 1,\n",
      "          'banks': 1,\n",
      "          'exploitation': 1,\n",
      "          'offensive': 1,\n",
      "          'pseudodepth': 1,\n",
      "          'nwhats': 1,\n",
      "          'worse': 1,\n",
      "          'haphazardly': 1,\n",
      "          'glued': 1,\n",
      "          'neither': 1,\n",
      "          'ridiculous': 1,\n",
      "          'requires': 1,\n",
      "          'unbelievable': 1,\n",
      "          'interest': 1,\n",
      "          'reaching': 1,\n",
      "          'dark': 1,\n",
      "          'sudden': 1,\n",
      "          'rain': 1,\n",
      "          'storm': 1,\n",
      "          'njohn': 1,\n",
      "          'travolta': 1,\n",
      "          'finds': 1,\n",
      "          'middle': 1,\n",
      "          'mess': 1,\n",
      "          'playing': 1,\n",
      "          'warrant': 1,\n",
      "          'officer': 1,\n",
      "          'paul': 1,\n",
      "          'assigned': 1,\n",
      "          'murderer': 1,\n",
      "          'captain': 1,\n",
      "          'leslie': 1,\n",
      "          'stefanson': 1,\n",
      "          'general': 1,\n",
      "          'joe': 1,\n",
      "          'nbrenner': 1,\n",
      "          'teamed': 1,\n",
      "          'exspouse': 1,\n",
      "          'sarah': 1,\n",
      "          'madeline': 1,\n",
      "          'stowe': 1,\n",
      "          'check': 1,\n",
      "          'base': 1,\n",
      "          'elizabeths': 1,\n",
      "          'mentor': 1,\n",
      "          'colonel': 1,\n",
      "          'moore': 1,\n",
      "          'nsoon': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'kinky': 1,\n",
      "          'stuff': 1,\n",
      "          'question': 1,\n",
      "          'course': 1,\n",
      "          'neberts': 1,\n",
      "          'law': 1,\n",
      "          'economy': 1,\n",
      "          'applied': 1,\n",
      "          'thing': 1,\n",
      "          'noted': 1,\n",
      "          'point': 1,\n",
      "          'protagonists': 1,\n",
      "          'end': 1,\n",
      "          'directly': 1,\n",
      "          'intertwined': 1,\n",
      "          'issued': 1,\n",
      "          'spoiler': 1,\n",
      "          'alert': 1,\n",
      "          'mentioning': 1,\n",
      "          'painfully': 1,\n",
      "          'beginning': 1,\n",
      "          'everyone': 1,\n",
      "          'hiding': 1,\n",
      "          'something': 1,\n",
      "          'non': 1,\n",
      "          'level': 1,\n",
      "          'ineptly': 1,\n",
      "          'constructed': 1,\n",
      "          'adapted': 1,\n",
      "          'christopher': 1,\n",
      "          'bertolini': 1,\n",
      "          'william': 1,\n",
      "          'goldman': 1,\n",
      "          'nelson': 1,\n",
      "          'demilles': 1,\n",
      "          'true': 1,\n",
      "          'plods': 1,\n",
      "          'along': 1,\n",
      "          'filling': 1,\n",
      "          'blanks': 1,\n",
      "          'stale': 1,\n",
      "          'unrealistic': 1,\n",
      "          'shocking': 1,\n",
      "          'developments': 1,\n",
      "          'nhaving': 1,\n",
      "          'read': 1,\n",
      "          'difficult': 1,\n",
      "          'determine': 1,\n",
      "          'problems': 1,\n",
      "          'fault': 1,\n",
      "          'adapters': 1,\n",
      "          'original': 1,\n",
      "          'author': 1,\n",
      "          'suppose': 1,\n",
      "          'guilty': 1,\n",
      "          'degree': 1,\n",
      "          'nscene': 1,\n",
      "          'stumbles': 1,\n",
      "          'pointless': 1,\n",
      "          'insincerity': 1,\n",
      "          'finding': 1,\n",
      "          'dead': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'engage': 1,\n",
      "          'sarcastic': 1,\n",
      "          'includes': 1,\n",
      "          'endless': 1,\n",
      "          'strings': 1,\n",
      "          'forced': 1,\n",
      "          'lines': 1,\n",
      "          'n': 1,\n",
      "          'asks': 1,\n",
      "          'killed': 1,\n",
      "          'nto': 1,\n",
      "          'answered': 1,\n",
      "          'knew': 1,\n",
      "          'already': 1,\n",
      "          'nonly': 1,\n",
      "          'weve': 1,\n",
      "          'spent': 1,\n",
      "          'twenty': 1,\n",
      "          'learn': 1,\n",
      "          'sordid': 1,\n",
      "          'history': 1,\n",
      "          'angle': 1,\n",
      "          'though': 1,\n",
      "          'develop': 1,\n",
      "          'never': 1,\n",
      "          'explored': 1,\n",
      "          'nnot': 1,\n",
      "          'matters': 1,\n",
      "          'since': 1,\n",
      "          'consistently': 1,\n",
      "          'ludicrous': 1,\n",
      "          'reason': 1,\n",
      "          'drive': 1,\n",
      "          'attacked': 1,\n",
      "          'mask': 1,\n",
      "          'nshe': 1,\n",
      "          'sees': 1,\n",
      "          'rings': 1,\n",
      "          'later': 1,\n",
      "          'day': 1,\n",
      "          'ring': 1,\n",
      "          'ninstead': 1,\n",
      "          'questioning': 1,\n",
      "          'real': 1,\n",
      "          'suspect': 1,\n",
      "          'take': 1,\n",
      "          'brenners': 1,\n",
      "          'houseboat': 1,\n",
      "          'beat': 1,\n",
      "          'pour': 1,\n",
      "          'hot': 1,\n",
      "          'coffee': 1,\n",
      "          'lap': 1,\n",
      "          'pushed': 1,\n",
      "          'edge': 1,\n",
      "          'gratuitous': 1,\n",
      "          'meanspirited': 1,\n",
      "          'illustrates': 1,\n",
      "          'complete': 1,\n",
      "          'disregard': 1,\n",
      "          'nit': 1,\n",
      "          'impossible': 1,\n",
      "          'feel': 1,\n",
      "          'anything': 1,\n",
      "          'beyond': 1,\n",
      "          'surprise': 1,\n",
      "          'realized': 1,\n",
      "          'constructs': 1,\n",
      "          'screen': 1,\n",
      "          'arent': 1,\n",
      "          'devices': 1,\n",
      "          'serve': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'without': 1,\n",
      "          'wests': 1,\n",
      "          'need': 1,\n",
      "          'hose': 1,\n",
      "          'tasteless': 1,\n",
      "          'images': 1,\n",
      "          'misconduct': 1,\n",
      "          'ncompelling': 1,\n",
      "          'crimes': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'flashbacks': 1,\n",
      "          'show': 1,\n",
      "          'much': 1,\n",
      "          'skin': 1,\n",
      "          'sweat': 1,\n",
      "          'typical': 1,\n",
      "          'pornographic': 1,\n",
      "          'picture': 1,\n",
      "          'nthese': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'powerful': 1,\n",
      "          'contrary': 1,\n",
      "          'theyre': 1,\n",
      "          'intended': 1,\n",
      "          'simply': 1,\n",
      "          'provide': 1,\n",
      "          'necessary': 1,\n",
      "          'resentment': 1,\n",
      "          'villain': 1,\n",
      "          'whomever': 1,\n",
      "          'may': 1,\n",
      "          'turn': 1,\n",
      "          'addition': 1,\n",
      "          'sadomasochism': 1,\n",
      "          'particular': 1,\n",
      "          'perversion': 1,\n",
      "          'everything': 1,\n",
      "          'know': 1,\n",
      "          'pure': 1,\n",
      "          'standpoint': 1,\n",
      "          'allowed': 1,\n",
      "          'accompaniment': 1,\n",
      "          'welldeveloped': 1,\n",
      "          'themes': 1,\n",
      "          'back': 1,\n",
      "          'nas': 1,\n",
      "          'putting': 1,\n",
      "          'pair': 1,\n",
      "          'handcuffs': 1,\n",
      "          'person': 1,\n",
      "          'insane': 1,\n",
      "          'positive': 1,\n",
      "          'elements': 1,\n",
      "          'couple': 1,\n",
      "          'njames': 1,\n",
      "          'terrific': 1,\n",
      "          'plays': 1,\n",
      "          'role': 1,\n",
      "          'sharp': 1,\n",
      "          'witty': 1,\n",
      "          'subtlety': 1,\n",
      "          'also': 1,\n",
      "          'liked': 1,\n",
      "          'across': 1,\n",
      "          'slightly': 1,\n",
      "          'despite': 1,\n",
      "          'intent': 1,\n",
      "          'villainous': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'undermined': 1,\n",
      "          'dreary': 1,\n",
      "          'obligatory': 1,\n",
      "          'atmosphere': 1,\n",
      "          'senseless': 1,\n",
      "          'neglect': 1,\n",
      "          'characterization': 1,\n",
      "          'worst': 1,\n",
      "          'kind': 1,\n",
      "          'hollywood': 1,\n",
      "          'pretends': 1,\n",
      "          'soul': 1,\n",
      "          'strict': 1,\n",
      "          'code': 1,\n",
      "          'fact': 1,\n",
      "          'group': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutouts': 1,\n",
      "          'forcefeeding': 1,\n",
      "          'toxic': 1,\n",
      "          'landfill': 1,\n",
      "          'contrivances': 1,\n",
      "          'onesided': 1,\n",
      "          'judgments': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'buddy': 6,\n",
      "          'air': 5,\n",
      "          'bud': 5,\n",
      "          'movie': 5,\n",
      "          'basketball': 3,\n",
      "          'dog': 3,\n",
      "          'nthe': 3,\n",
      "          'snively': 3,\n",
      "          'story': 2,\n",
      "          'quite': 2,\n",
      "          'doesnt': 2,\n",
      "          'seem': 2,\n",
      "          'even': 2,\n",
      "          'kevin': 2,\n",
      "          'kevins': 2,\n",
      "          'nbut': 2,\n",
      "          'would': 2,\n",
      "          'think': 2,\n",
      "          'gets': 2,\n",
      "          'stupid': 2,\n",
      "          'pet': 2,\n",
      "          'disneys': 1,\n",
      "          'tells': 1,\n",
      "          'boyandhisdog': 1,\n",
      "          'twist': 1,\n",
      "          'pooch': 1,\n",
      "          'accomplished': 1,\n",
      "          'player': 1,\n",
      "          'ngranted': 1,\n",
      "          'family': 1,\n",
      "          'comedy': 1,\n",
      "          'funny': 1,\n",
      "          'successful': 1,\n",
      "          'idea': 1,\n",
      "          'begin': 1,\n",
      "          'matter': 1,\n",
      "          'surprisingly': 1,\n",
      "          'solemn': 1,\n",
      "          'nsave': 1,\n",
      "          'occasional': 1,\n",
      "          'moments': 1,\n",
      "          'forced': 1,\n",
      "          'slapstick': 1,\n",
      "          'wags': 1,\n",
      "          'tale': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'enjoyable': 1,\n",
      "          'approach': 1,\n",
      "          'nif': 1,\n",
      "          'realized': 1,\n",
      "          'absurdity': 1,\n",
      "          'possibly': 1,\n",
      "          'could': 1,\n",
      "          'better': 1,\n",
      "          'nhere': 1,\n",
      "          'actually': 1,\n",
      "          'asked': 1,\n",
      "          'cheer': 1,\n",
      "          'moment': 1,\n",
      "          'marches': 1,\n",
      "          'save': 1,\n",
      "          'big': 1,\n",
      "          'game': 1,\n",
      "          'clad': 1,\n",
      "          'two': 1,\n",
      "          'pairs': 1,\n",
      "          'sneakers': 1,\n",
      "          'jersey': 1,\n",
      "          'nits': 1,\n",
      "          'number': 1,\n",
      "          'nk9': 1,\n",
      "          'nyeah': 1,\n",
      "          'whatever': 1,\n",
      "          'opens': 1,\n",
      "          'golden': 1,\n",
      "          'retriever': 1,\n",
      "          'escapes': 1,\n",
      "          'current': 1,\n",
      "          'owner': 1,\n",
      "          'abusive': 1,\n",
      "          'clownforhire': 1,\n",
      "          'norm': 1,\n",
      "          'michael': 1,\n",
      "          'jeter': 1,\n",
      "          'nhe': 1,\n",
      "          'ends': 1,\n",
      "          'fernwell': 1,\n",
      "          'washington': 1,\n",
      "          'mopey': 1,\n",
      "          'newkidontheblock': 1,\n",
      "          'josh': 1,\n",
      "          'zegers': 1,\n",
      "          'trying': 1,\n",
      "          'cope': 1,\n",
      "          'move': 1,\n",
      "          'recent': 1,\n",
      "          'death': 1,\n",
      "          'father': 1,\n",
      "          'nbuddy': 1,\n",
      "          'nkevin': 1,\n",
      "          'nonce': 1,\n",
      "          'proves': 1,\n",
      "          'oncourt': 1,\n",
      "          'prowess': 1,\n",
      "          'selfesteem': 1,\n",
      "          'rockets': 1,\n",
      "          'nthey': 1,\n",
      "          'win': 1,\n",
      "          'places': 1,\n",
      "          'schools': 1,\n",
      "          'team': 1,\n",
      "          'animal': 1,\n",
      "          'mascot': 1,\n",
      "          'make': 1,\n",
      "          'finals': 1,\n",
      "          'surfaces': 1,\n",
      "          'reclaim': 1,\n",
      "          'neverything': 1,\n",
      "          'plays': 1,\n",
      "          'one': 1,\n",
      "          'heavy': 1,\n",
      "          'predictability': 1,\n",
      "          'light': 1,\n",
      "          'actual': 1,\n",
      "          'follows': 1,\n",
      "          'calculated': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'gloom': 1,\n",
      "          'fades': 1,\n",
      "          'comeuppance': 1,\n",
      "          'contracts': 1,\n",
      "          'rabies': 1,\n",
      "          'must': 1,\n",
      "          'executed': 1,\n",
      "          'old': 1,\n",
      "          'yellerstyle': 1,\n",
      "          'nokay': 1,\n",
      "          'last': 1,\n",
      "          'ones': 1,\n",
      "          'lie': 1,\n",
      "          'least': 1,\n",
      "          'quicker': 1,\n",
      "          'sendoff': 1,\n",
      "          'courtroom': 1,\n",
      "          'climax': 1,\n",
      "          'joke': 1,\n",
      "          'ntheres': 1,\n",
      "          'fauxcute': 1,\n",
      "          'musical': 1,\n",
      "          'montage': 1,\n",
      "          'reluctant': 1,\n",
      "          'cleanedup': 1,\n",
      "          'splish': 1,\n",
      "          'splash': 1,\n",
      "          'npaint': 1,\n",
      "          'cans': 1,\n",
      "          'spilled': 1,\n",
      "          'newspapers': 1,\n",
      "          'buried': 1,\n",
      "          'name': 1,\n",
      "          'formula': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'note': 1,\n",
      "          'special': 1,\n",
      "          'visual': 1,\n",
      "          'effects': 1,\n",
      "          'used': 1,\n",
      "          'sequences': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nthat': 1,\n",
      "          'well': 1,\n",
      "          'may': 1,\n",
      "          'true': 1,\n",
      "          'although': 1,\n",
      "          'see': 1,\n",
      "          'sink': 1,\n",
      "          'shots': 1,\n",
      "          'sight': 1,\n",
      "          'exist': 1,\n",
      "          'feat': 1,\n",
      "          'alone': 1,\n",
      "          'interested': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'na': 1,\n",
      "          'friend': 1,\n",
      "          'mine': 1,\n",
      "          'insists': 1,\n",
      "          'saw': 1,\n",
      "          'back': 1,\n",
      "          'segment': 1,\n",
      "          'david': 1,\n",
      "          'lettermans': 1,\n",
      "          'tricks': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'appropriate': 1,\n",
      "          'connection': 1,\n",
      "          'trick': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'commander': 8,\n",
      "          'star': 7,\n",
      "          'wars': 7,\n",
      "          'film': 7,\n",
      "          'wing': 6,\n",
      "          'people': 6,\n",
      "          'movie': 6,\n",
      "          'phantom': 5,\n",
      "          'menace': 5,\n",
      "          'space': 4,\n",
      "          'nthis': 4,\n",
      "          'also': 4,\n",
      "          'like': 4,\n",
      "          'plot': 4,\n",
      "          'another': 3,\n",
      "          'trailer': 3,\n",
      "          'time': 3,\n",
      "          'part': 3,\n",
      "          'game': 3,\n",
      "          'kilrathi': 3,\n",
      "          'played': 3,\n",
      "          'one': 3,\n",
      "          'music': 3,\n",
      "          'unrealistic': 3,\n",
      "          'ships': 3,\n",
      "          'watch': 3,\n",
      "          'release': 2,\n",
      "          '20th': 2,\n",
      "          'century': 2,\n",
      "          'fox': 2,\n",
      "          'point': 2,\n",
      "          'ni': 2,\n",
      "          'know': 2,\n",
      "          'considering': 2,\n",
      "          'definitely': 2,\n",
      "          'worst': 2,\n",
      "          'horrible': 2,\n",
      "          'attached': 2,\n",
      "          'full': 2,\n",
      "          'nwing': 2,\n",
      "          'large': 2,\n",
      "          'nmany': 2,\n",
      "          'found': 2,\n",
      "          'interesting': 2,\n",
      "          'nit': 2,\n",
      "          'blair': 2,\n",
      "          'freddie': 2,\n",
      "          'nafter': 2,\n",
      "          'pilot': 2,\n",
      "          'stop': 2,\n",
      "          'group': 2,\n",
      "          'trying': 2,\n",
      "          'earth': 2,\n",
      "          'parents': 2,\n",
      "          'nhis': 2,\n",
      "          'nblair': 2,\n",
      "          'lillard': 2,\n",
      "          'seems': 2,\n",
      "          'role': 2,\n",
      "          'acting': 2,\n",
      "          'place': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'side': 2,\n",
      "          'much': 2,\n",
      "          'entire': 2,\n",
      "          'video': 2,\n",
      "          'shoot': 2,\n",
      "          'months': 1,\n",
      "          'episode': 1,\n",
      "          '1': 1,\n",
      "          'decides': 1,\n",
      "          'complete': 1,\n",
      "          'rip': 1,\n",
      "          'nwhat': 1,\n",
      "          'wish': 1,\n",
      "          'hadnt': 1,\n",
      "          'done': 1,\n",
      "          'years': 1,\n",
      "          'far': 1,\n",
      "          'nto': 1,\n",
      "          'attract': 1,\n",
      "          'draw': 1,\n",
      "          'crowds': 1,\n",
      "          'find': 1,\n",
      "          'certainly': 1,\n",
      "          'best': 1,\n",
      "          'experience': 1,\n",
      "          'tonight': 1,\n",
      "          'based': 1,\n",
      "          'computer': 1,\n",
      "          'fact': 1,\n",
      "          'almost': 1,\n",
      "          'says': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'level': 1,\n",
      "          'films': 1,\n",
      "          'though': 1,\n",
      "          'nfreddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'stars': 1,\n",
      "          'christopher': 1,\n",
      "          'huge': 1,\n",
      "          'mistake': 1,\n",
      "          'performance': 1,\n",
      "          'date': 1,\n",
      "          'januarys': 1,\n",
      "          'shes': 1,\n",
      "          'actually': 1,\n",
      "          'saw': 1,\n",
      "          'good': 1,\n",
      "          'actor': 1,\n",
      "          'visions': 1,\n",
      "          'crushed': 1,\n",
      "          'n': 1,\n",
      "          'anyway': 1,\n",
      "          'nchristopher': 1,\n",
      "          'battle': 1,\n",
      "          'destroy': 1,\n",
      "          'nblairs': 1,\n",
      "          'fought': 1,\n",
      "          'battles': 1,\n",
      "          'died': 1,\n",
      "          'pilgrims': 1,\n",
      "          'many': 1,\n",
      "          'disrespect': 1,\n",
      "          'command': 1,\n",
      "          'angel': 1,\n",
      "          'saffron': 1,\n",
      "          'burrows': 1,\n",
      "          'friends': 1,\n",
      "          'todd': 1,\n",
      "          'maniac': 1,\n",
      "          'marshall': 1,\n",
      "          'matthew': 1,\n",
      "          'nmatthew': 1,\n",
      "          'play': 1,\n",
      "          'every': 1,\n",
      "          'character': 1,\n",
      "          'stu': 1,\n",
      "          '1996s': 1,\n",
      "          'scream': 1,\n",
      "          'great': 1,\n",
      "          'three': 1,\n",
      "          'small': 1,\n",
      "          'take': 1,\n",
      "          'flimsy': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'work': 1,\n",
      "          'explains': 1,\n",
      "          'drags': 1,\n",
      "          'seeming': 1,\n",
      "          'events': 1,\n",
      "          'going': 1,\n",
      "          'lines': 1,\n",
      "          'seem': 1,\n",
      "          'completely': 1,\n",
      "          'meaningless': 1,\n",
      "          'dialogue': 1,\n",
      "          'terrible': 1,\n",
      "          'even': 1,\n",
      "          'laughing': 1,\n",
      "          'things': 1,\n",
      "          'bad': 1,\n",
      "          'nwhen': 1,\n",
      "          'looking': 1,\n",
      "          'two': 1,\n",
      "          'flying': 1,\n",
      "          'simple': 1,\n",
      "          'tell': 1,\n",
      "          'hanging': 1,\n",
      "          'blue': 1,\n",
      "          'screen': 1,\n",
      "          'behind': 1,\n",
      "          'explosions': 1,\n",
      "          'look': 1,\n",
      "          'well': 1,\n",
      "          'na': 1,\n",
      "          'ship': 1,\n",
      "          'blown': 1,\n",
      "          'fire': 1,\n",
      "          'present': 1,\n",
      "          'four': 1,\n",
      "          'half': 1,\n",
      "          'second': 1,\n",
      "          'nmusic': 1,\n",
      "          'pretty': 1,\n",
      "          'accompanies': 1,\n",
      "          'felt': 1,\n",
      "          'corny': 1,\n",
      "          'annoying': 1,\n",
      "          'sounding': 1,\n",
      "          'given': 1,\n",
      "          'repeats': 1,\n",
      "          'hour': 1,\n",
      "          'without': 1,\n",
      "          'twists': 1,\n",
      "          'scenes': 1,\n",
      "          'anything': 1,\n",
      "          'important': 1,\n",
      "          'forced': 1,\n",
      "          'make': 1,\n",
      "          'jumps': 1,\n",
      "          'planets': 1,\n",
      "          'must': 1,\n",
      "          'fight': 1,\n",
      "          'aircraft': 1,\n",
      "          'nfor': 1,\n",
      "          'length': 1,\n",
      "          'takes': 1,\n",
      "          'truly': 1,\n",
      "          'watching': 1,\n",
      "          'long': 1,\n",
      "          'extended': 1,\n",
      "          'period': 1,\n",
      "          'nits': 1,\n",
      "          'fun': 1,\n",
      "          'nif': 1,\n",
      "          'wanted': 1,\n",
      "          'would': 1,\n",
      "          'go': 1,\n",
      "          'home': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'pays': 1,\n",
      "          'attention': 1,\n",
      "          'myth': 1,\n",
      "          'feelings': 1,\n",
      "          'real': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'bring': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'peter': 5,\n",
      "          'balthazar': 4,\n",
      "          'getty': 4,\n",
      "          'bad': 3,\n",
      "          'michael': 3,\n",
      "          'nthe': 3,\n",
      "          'life': 3,\n",
      "          'weller': 3,\n",
      "          'clubs': 3,\n",
      "          'movies': 2,\n",
      "          'watch': 2,\n",
      "          'nshadow': 2,\n",
      "          'hours': 2,\n",
      "          'dorn': 2,\n",
      "          'really': 2,\n",
      "          'rebecca': 2,\n",
      "          'gayheart': 2,\n",
      "          'gas': 2,\n",
      "          'l': 2,\n",
      "          'named': 2,\n",
      "          'greene': 2,\n",
      "          'acting': 2,\n",
      "          'cheap': 2,\n",
      "          'described': 1,\n",
      "          'swift': 1,\n",
      "          'descent': 1,\n",
      "          'sinful': 1,\n",
      "          'pleasure': 1,\n",
      "          'decay': 1,\n",
      "          'debauchery': 1,\n",
      "          'hard': 1,\n",
      "          'nbad': 1,\n",
      "          '2000s': 1,\n",
      "          'resemble': 1,\n",
      "          '1980s': 1,\n",
      "          'films': 1,\n",
      "          'even': 1,\n",
      "          'harder': 1,\n",
      "          'falls': 1,\n",
      "          'latter': 1,\n",
      "          'category': 1,\n",
      "          'mishmashed': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'bmovie': 1,\n",
      "          'actors': 1,\n",
      "          'including': 1,\n",
      "          'aka': 1,\n",
      "          'star': 1,\n",
      "          'treks': 1,\n",
      "          'worf': 1,\n",
      "          'uninteresting': 1,\n",
      "          'plot': 1,\n",
      "          'vain': 1,\n",
      "          'attempts': 1,\n",
      "          'capitalizing': 1,\n",
      "          'underground': 1,\n",
      "          'scenes': 1,\n",
      "          'seedy': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'directing': 1,\n",
      "          'horrendous': 1,\n",
      "          'music': 1,\n",
      "          'videoesque': 1,\n",
      "          'ballistic': 1,\n",
      "          'editing': 1,\n",
      "          'taught': 1,\n",
      "          'school': 1,\n",
      "          'right': 1,\n",
      "          'decided': 1,\n",
      "          'drop': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'holloway': 1,\n",
      "          'trying': 1,\n",
      "          'restart': 1,\n",
      "          'onedimensional': 1,\n",
      "          'wife': 1,\n",
      "          'chloe': 1,\n",
      "          'nasty': 1,\n",
      "          'bout': 1,\n",
      "          'drug': 1,\n",
      "          'alcohol': 1,\n",
      "          'addictions': 1,\n",
      "          'nmichael': 1,\n",
      "          'takes': 1,\n",
      "          'job': 1,\n",
      "          'working': 1,\n",
      "          'graveyard': 1,\n",
      "          'shift': 1,\n",
      "          'local': 1,\n",
      "          'station': 1,\n",
      "          'bombarded': 1,\n",
      "          'ugliness': 1,\n",
      "          'weirdness': 1,\n",
      "          'nightlife': 1,\n",
      "          'one': 1,\n",
      "          'night': 1,\n",
      "          'meets': 1,\n",
      "          'strange': 1,\n",
      "          'gent': 1,\n",
      "          'stuart': 1,\n",
      "          'mr': 1,\n",
      "          'buckaroo': 1,\n",
      "          'banzai': 1,\n",
      "          'nhe': 1,\n",
      "          'drives': 1,\n",
      "          'porsche': 1,\n",
      "          'smokes': 1,\n",
      "          'french': 1,\n",
      "          'cigarettes': 1,\n",
      "          'drones': 1,\n",
      "          'eventually': 1,\n",
      "          'coaxing': 1,\n",
      "          'mike': 1,\n",
      "          'exploring': 1,\n",
      "          'underbelly': 1,\n",
      "          'together': 1,\n",
      "          'tour': 1,\n",
      "          'punk': 1,\n",
      "          'bars': 1,\n",
      "          'sm': 1,\n",
      "          'bareknuckle': 1,\n",
      "          'fights': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'throws': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'cop': 1,\n",
      "          'played': 1,\n",
      "          'like': 1,\n",
      "          'wants': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'reprisal': 1,\n",
      "          'role': 1,\n",
      "          'mask': 1,\n",
      "          '2': 1,\n",
      "          'simply': 1,\n",
      "          'dissolves': 1,\n",
      "          'ripoff': 1,\n",
      "          'dantes': 1,\n",
      "          'inferno': 1,\n",
      "          'mixed': 1,\n",
      "          'old': 1,\n",
      "          'stephen': 1,\n",
      "          'j': 1,\n",
      "          'cannell': 1,\n",
      "          'television': 1,\n",
      "          'pilot': 1,\n",
      "          'pace': 1,\n",
      "          'jarring': 1,\n",
      "          'utterly': 1,\n",
      "          'without': 1,\n",
      "          'focus': 1,\n",
      "          'nother': 1,\n",
      "          'horrors': 1,\n",
      "          'include': 1,\n",
      "          'endless': 1,\n",
      "          'montages': 1,\n",
      "          'people': 1,\n",
      "          'pumping': 1,\n",
      "          'charlie': 1,\n",
      "          'sheen': 1,\n",
      "          'johnny': 1,\n",
      "          'depp': 1,\n",
      "          'richard': 1,\n",
      "          'griecoesque': 1,\n",
      "          'npeter': 1,\n",
      "          'clearly': 1,\n",
      "          'knows': 1,\n",
      "          'career': 1,\n",
      "          'completely': 1,\n",
      "          'gone': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'two': 1,\n",
      "          'shits': 1,\n",
      "          'nand': 1,\n",
      "          'exploitation': 1,\n",
      "          'bondage': 1,\n",
      "          'dance': 1,\n",
      "          'brothels': 1,\n",
      "          'damn': 1,\n",
      "          'isnt': 1,\n",
      "          'anyone': 1,\n",
      "          'safe': 1,\n",
      "          'ugly': 1,\n",
      "          'eye': 1,\n",
      "          'hollywood': 1,\n",
      "          'nway': 1,\n",
      "          'back': 1,\n",
      "          '1984': 1,\n",
      "          'great': 1,\n",
      "          'crazy': 1,\n",
      "          'director': 1,\n",
      "          'abel': 1,\n",
      "          'ferrara': 1,\n",
      "          'made': 1,\n",
      "          'worse': 1,\n",
      "          'called': 1,\n",
      "          'fear': 1,\n",
      "          'city': 1,\n",
      "          'reminds': 1,\n",
      "          'almost': 1,\n",
      "          'perfect': 1,\n",
      "          'sequel': 1,\n",
      "          'ndirectorwriter': 1,\n",
      "          'isaac': 1,\n",
      "          'eaton': 1,\n",
      "          'producers': 1,\n",
      "          'alevey': 1,\n",
      "          'andrea': 1,\n",
      "          'mia': 1,\n",
      "          'shon': 1,\n",
      "          'greenblatt': 1,\n",
      "          'starring': 1,\n",
      "          'frederic': 1,\n",
      "          'forrest': 1,\n",
      "          'brad': 1,\n",
      "          'douriff': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'rising': 5,\n",
      "          'mercury': 5,\n",
      "          'nthe': 5,\n",
      "          'nand': 4,\n",
      "          'autistic': 4,\n",
      "          'kid': 4,\n",
      "          'willis': 3,\n",
      "          'boy': 3,\n",
      "          'agent': 3,\n",
      "          'merely': 3,\n",
      "          'baldwin': 3,\n",
      "          'help': 3,\n",
      "          'bad': 3,\n",
      "          'bruce': 2,\n",
      "          'nmercury': 2,\n",
      "          'last': 2,\n",
      "          'man': 2,\n",
      "          'stale': 2,\n",
      "          'jeffries': 2,\n",
      "          'fbi': 2,\n",
      "          'know': 2,\n",
      "          'type': 2,\n",
      "          'job': 2,\n",
      "          'even': 2,\n",
      "          'simon': 2,\n",
      "          'hughes': 2,\n",
      "          'like': 2,\n",
      "          'people': 2,\n",
      "          'message': 2,\n",
      "          'little': 2,\n",
      "          'go': 2,\n",
      "          'nnaturally': 2,\n",
      "          'government': 2,\n",
      "          'kudrow': 2,\n",
      "          'code': 2,\n",
      "          'nhowever': 2,\n",
      "          'hitman': 2,\n",
      "          'l': 2,\n",
      "          'thats': 2,\n",
      "          'art': 2,\n",
      "          'nfor': 2,\n",
      "          'series': 2,\n",
      "          'becomes': 2,\n",
      "          'would': 2,\n",
      "          'else': 2,\n",
      "          'movie': 2,\n",
      "          'well': 2,\n",
      "          'decent': 2,\n",
      "          'creating': 2,\n",
      "          'many': 2,\n",
      "          'character': 2,\n",
      "          'simply': 2,\n",
      "          'scene': 2,\n",
      "          'nbut': 2,\n",
      "          'theyre': 2,\n",
      "          'needs': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'straightforward': 1,\n",
      "          'action': 1,\n",
      "          'pictures': 1,\n",
      "          'adds': 1,\n",
      "          'growing': 1,\n",
      "          'list': 1,\n",
      "          'including': 1,\n",
      "          'stinkers': 1,\n",
      "          'jackal': 1,\n",
      "          'standing': 1,\n",
      "          'striking': 1,\n",
      "          'distance': 1,\n",
      "          'scout': 1,\n",
      "          'actioners': 1,\n",
      "          'headlined': 1,\n",
      "          'though': 1,\n",
      "          'tries': 1,\n",
      "          'spice': 1,\n",
      "          'things': 1,\n",
      "          'throwing': 1,\n",
      "          'mix': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'nart': 1,\n",
      "          'typical': 1,\n",
      "          'tormented': 1,\n",
      "          'nyou': 1,\n",
      "          'haunted': 1,\n",
      "          'yet': 1,\n",
      "          'good': 1,\n",
      "          'physically': 1,\n",
      "          'assaulting': 1,\n",
      "          'another': 1,\n",
      "          'gets': 1,\n",
      "          'slap': 1,\n",
      "          'wrist': 1,\n",
      "          'nenter': 1,\n",
      "          'miko': 1,\n",
      "          'rain': 1,\n",
      "          'savant': 1,\n",
      "          'nhe': 1,\n",
      "          'gaze': 1,\n",
      "          'superencrypted': 1,\n",
      "          'computer': 1,\n",
      "          'beeps': 1,\n",
      "          'head': 1,\n",
      "          'understand': 1,\n",
      "          'says': 1,\n",
      "          'talent': 1,\n",
      "          'brought': 1,\n",
      "          'attention': 1,\n",
      "          'federal': 1,\n",
      "          'nlt': 1,\n",
      "          'col': 1,\n",
      "          'nicholas': 1,\n",
      "          'alec': 1,\n",
      "          'nsa': 1,\n",
      "          'official': 1,\n",
      "          'bubbling': 1,\n",
      "          'evil': 1,\n",
      "          'spent': 1,\n",
      "          'countless': 1,\n",
      "          'time': 1,\n",
      "          'money': 1,\n",
      "          'implementing': 1,\n",
      "          'newest': 1,\n",
      "          'unbreakable': 1,\n",
      "          'two': 1,\n",
      "          'underlings': 1,\n",
      "          'robert': 1,\n",
      "          'stanton': 1,\n",
      "          'bodhi': 1,\n",
      "          'pine': 1,\n",
      "          'elfman': 1,\n",
      "          'publish': 1,\n",
      "          'mercuryencrypted': 1,\n",
      "          'puzzle': 1,\n",
      "          'magazine': 1,\n",
      "          'final': 1,\n",
      "          'test': 1,\n",
      "          'effectiveness': 1,\n",
      "          'cracks': 1,\n",
      "          'infuriates': 1,\n",
      "          'sends': 1,\n",
      "          'terminatorlike': 1,\n",
      "          'nginter': 1,\n",
      "          'eliminate': 1,\n",
      "          'security': 1,\n",
      "          'hazard': 1,\n",
      "          'comes': 1,\n",
      "          'reason': 1,\n",
      "          'never': 1,\n",
      "          'explained': 1,\n",
      "          'called': 1,\n",
      "          'intricate': 1,\n",
      "          'machinations': 1,\n",
      "          'sole': 1,\n",
      "          'protector': 1,\n",
      "          'young': 1,\n",
      "          'nin': 1,\n",
      "          'unrealistic': 1,\n",
      "          'sequences': 1,\n",
      "          'enlists': 1,\n",
      "          'aid': 1,\n",
      "          'stranger': 1,\n",
      "          'stacey': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'given': 1,\n",
      "          'overall': 1,\n",
      "          'central': 1,\n",
      "          'concept': 1,\n",
      "          'behind': 1,\n",
      "          'ludicrous': 1,\n",
      "          'nwhy': 1,\n",
      "          'bother': 1,\n",
      "          'trying': 1,\n",
      "          'kill': 1,\n",
      "          'nmean': 1,\n",
      "          'nits': 1,\n",
      "          'anyone': 1,\n",
      "          'matter': 1,\n",
      "          'knew': 1,\n",
      "          'cracking': 1,\n",
      "          'supercypher': 1,\n",
      "          'eliminated': 1,\n",
      "          'nhes': 1,\n",
      "          'already': 1,\n",
      "          'proven': 1,\n",
      "          'broken': 1,\n",
      "          'ntheres': 1,\n",
      "          'always': 1,\n",
      "          'chance': 1,\n",
      "          'someone': 1,\n",
      "          'crack': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'without': 1,\n",
      "          'jeopardy': 1,\n",
      "          'theres': 1,\n",
      "          'much': 1,\n",
      "          'faults': 1,\n",
      "          'actually': 1,\n",
      "          'starts': 1,\n",
      "          'relatively': 1,\n",
      "          'pass': 1,\n",
      "          'painfully': 1,\n",
      "          'familiar': 1,\n",
      "          'teaser': 1,\n",
      "          'flirts': 1,\n",
      "          'developing': 1,\n",
      "          'real': 1,\n",
      "          'characters': 1,\n",
      "          'semblance': 1,\n",
      "          'plot': 1,\n",
      "          'nmr': 1,\n",
      "          'terminator': 1,\n",
      "          'appears': 1,\n",
      "          'everything': 1,\n",
      "          'begins': 1,\n",
      "          'going': 1,\n",
      "          'downhill': 1,\n",
      "          'quickly': 1,\n",
      "          'nmiko': 1,\n",
      "          'age': 1,\n",
      "          'touching': 1,\n",
      "          'performance': 1,\n",
      "          'dont': 1,\n",
      "          'looking': 1,\n",
      "          'new': 1,\n",
      "          'insights': 1,\n",
      "          'autism': 1,\n",
      "          'ninstead': 1,\n",
      "          'latest': 1,\n",
      "          'unique': 1,\n",
      "          'partner': 1,\n",
      "          'routine': 1,\n",
      "          'buddycop': 1,\n",
      "          'think': 1,\n",
      "          'cop': 1,\n",
      "          'half': 1,\n",
      "          'twist': 1,\n",
      "          'nwillis': 1,\n",
      "          'overplaying': 1,\n",
      "          'nrather': 1,\n",
      "          'nuanced': 1,\n",
      "          'oozes': 1,\n",
      "          'sliminess': 1,\n",
      "          'part': 1,\n",
      "          'recycles': 1,\n",
      "          'stock': 1,\n",
      "          'role': 1,\n",
      "          'loner': 1,\n",
      "          'copfbi': 1,\n",
      "          'honed': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'nas': 1,\n",
      "          'almost': 1,\n",
      "          'afterthought': 1,\n",
      "          'halfway': 1,\n",
      "          'carelessly': 1,\n",
      "          'gives': 1,\n",
      "          'trait': 1,\n",
      "          'addiction': 1,\n",
      "          'drops': 1,\n",
      "          'next': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'screenplay': 1,\n",
      "          'nthis': 1,\n",
      "          'wasnt': 1,\n",
      "          'thought': 1,\n",
      "          'goes': 1,\n",
      "          'extraordinary': 1,\n",
      "          'lengths': 1,\n",
      "          'pad': 1,\n",
      "          'convenient': 1,\n",
      "          'coincidences': 1,\n",
      "          'possible': 1,\n",
      "          'carbon': 1,\n",
      "          'paper': 1,\n",
      "          'alone': 1,\n",
      "          'unworthy': 1,\n",
      "          'gullible': 1,\n",
      "          'audience': 1,\n",
      "          'member': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'scenes': 1,\n",
      "          'trickle': 1,\n",
      "          'gruesomely': 1,\n",
      "          'finale': 1,\n",
      "          'veritable': 1,\n",
      "          'flood': 1,\n",
      "          'films': 1,\n",
      "          'moments': 1,\n",
      "          'come': 1,\n",
      "          'form': 1,\n",
      "          'jokes': 1,\n",
      "          'mainly': 1,\n",
      "          'geeks': 1,\n",
      "          'developed': 1,\n",
      "          'supercode': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'make': 1,\n",
      "          'worthwhile': 1,\n",
      "          'thriller': 1,\n",
      "          'youre': 1,\n",
      "          'likely': 1,\n",
      "          'groan': 1,\n",
      "          'cheer': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'nthe': 8,\n",
      "          'powers': 6,\n",
      "          'austin': 5,\n",
      "          'ni': 4,\n",
      "          'hard': 4,\n",
      "          'character': 4,\n",
      "          'rather': 3,\n",
      "          'movies': 3,\n",
      "          'would': 3,\n",
      "          'also': 3,\n",
      "          'nineties': 3,\n",
      "          'time': 3,\n",
      "          'gag': 3,\n",
      "          'thing': 3,\n",
      "          'comedy': 2,\n",
      "          'amazingly': 2,\n",
      "          'bereft': 2,\n",
      "          'something': 2,\n",
      "          'could': 2,\n",
      "          'get': 2,\n",
      "          'dumb': 2,\n",
      "          'taken': 2,\n",
      "          'film': 2,\n",
      "          'toilet': 2,\n",
      "          'jokes': 2,\n",
      "          'gags': 2,\n",
      "          'sixties': 2,\n",
      "          'think': 2,\n",
      "          'way': 2,\n",
      "          'sexy': 2,\n",
      "          'agent': 2,\n",
      "          'dr': 2,\n",
      "          'basic': 2,\n",
      "          'even': 2,\n",
      "          'end': 2,\n",
      "          'couple': 2,\n",
      "          'exceptions': 2,\n",
      "          'son': 2,\n",
      "          'desperate': 2,\n",
      "          'whole': 2,\n",
      "          'make': 2,\n",
      "          'good': 2,\n",
      "          'capsule': 1,\n",
      "          'godawful': 1,\n",
      "          'thats': 1,\n",
      "          'shabby': 1,\n",
      "          'cutrate': 1,\n",
      "          'laughs': 1,\n",
      "          'bad': 1,\n",
      "          'week': 1,\n",
      "          'life': 1,\n",
      "          'saw': 1,\n",
      "          'international': 1,\n",
      "          'man': 1,\n",
      "          'mystery': 1,\n",
      "          'desperately': 1,\n",
      "          'needed': 1,\n",
      "          'cheer': 1,\n",
      "          'least': 1,\n",
      "          'distract': 1,\n",
      "          'clear': 1,\n",
      "          'head': 1,\n",
      "          'nget': 1,\n",
      "          'perspective': 1,\n",
      "          'neven': 1,\n",
      "          'sometimes': 1,\n",
      "          'tried': 1,\n",
      "          'let': 1,\n",
      "          'dejection': 1,\n",
      "          'affect': 1,\n",
      "          'judgment': 1,\n",
      "          'certain': 1,\n",
      "          'sucked': 1,\n",
      "          'rocks': 1,\n",
      "          'bamboo': 1,\n",
      "          'shoots': 1,\n",
      "          'day': 1,\n",
      "          'lottery': 1,\n",
      "          'nmichael': 1,\n",
      "          'myers': 1,\n",
      "          'barely': 1,\n",
      "          'supported': 1,\n",
      "          'fiveminute': 1,\n",
      "          'sketch': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'stretched': 1,\n",
      "          'length': 1,\n",
      "          'feature': 1,\n",
      "          'padding': 1,\n",
      "          'sort': 1,\n",
      "          'propsstrategicallypositionedbetweennakedactorsandcamera': 1,\n",
      "          'benny': 1,\n",
      "          'hill': 1,\n",
      "          'got': 1,\n",
      "          'tired': 1,\n",
      "          'fifteen': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'plot': 1,\n",
      "          'little': 1,\n",
      "          'back': 1,\n",
      "          'swinging': 1,\n",
      "          'mod': 1,\n",
      "          'hep': 1,\n",
      "          'dont': 1,\n",
      "          'im': 1,\n",
      "          'disservice': 1,\n",
      "          'attempted': 1,\n",
      "          'early': 1,\n",
      "          'look': 1,\n",
      "          'feel': 1,\n",
      "          'describing': 1,\n",
      "          'british': 1,\n",
      "          'secret': 1,\n",
      "          'tangled': 1,\n",
      "          'nemesis': 1,\n",
      "          'evil': 1,\n",
      "          'nevil': 1,\n",
      "          'launched': 1,\n",
      "          'orbit': 1,\n",
      "          'cryogenically': 1,\n",
      "          'forze': 1,\n",
      "          'return': 1,\n",
      "          'decades': 1,\n",
      "          'later': 1,\n",
      "          'picture': 1,\n",
      "          'npowers': 1,\n",
      "          'frozen': 1,\n",
      "          'wakes': 1,\n",
      "          'find': 1,\n",
      "          'deal': 1,\n",
      "          'total': 1,\n",
      "          'inability': 1,\n",
      "          'cope': 1,\n",
      "          'much': 1,\n",
      "          'exhausted': 1,\n",
      "          'course': 1,\n",
      "          'never': 1,\n",
      "          'really': 1,\n",
      "          'dealt': 1,\n",
      "          'bulk': 1,\n",
      "          'several': 1,\n",
      "          'rubrics': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'right': 1,\n",
      "          'silly': 1,\n",
      "          'names': 1,\n",
      "          'inept': 1,\n",
      "          'slapstick': 1,\n",
      "          'humor': 1,\n",
      "          'strategically': 1,\n",
      "          'placed': 1,\n",
      "          'props': 1,\n",
      "          'ideas': 1,\n",
      "          'come': 1,\n",
      "          'bright': 1,\n",
      "          'none': 1,\n",
      "          'evils': 1,\n",
      "          'sidesplitting': 1,\n",
      "          'scene': 1,\n",
      "          'father': 1,\n",
      "          'go': 1,\n",
      "          'encounter': 1,\n",
      "          'group': 1,\n",
      "          'chaired': 1,\n",
      "          'carrie': 1,\n",
      "          'fisher': 1,\n",
      "          'throwaway': 1,\n",
      "          'mimics': 1,\n",
      "          'various': 1,\n",
      "          'forms': 1,\n",
      "          'transportation': 1,\n",
      "          'behind': 1,\n",
      "          'couch': 1,\n",
      "          'visual': 1,\n",
      "          'describe': 1,\n",
      "          'recommend': 1,\n",
      "          'seeing': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'kitsch': 1,\n",
      "          'resurrected': 1,\n",
      "          'thrown': 1,\n",
      "          'screen': 1,\n",
      "          'clever': 1,\n",
      "          'ninstead': 1,\n",
      "          'skewering': 1,\n",
      "          'bloodless': 1,\n",
      "          'unfunny': 1,\n",
      "          'tribute': 1,\n",
      "          'nmyers': 1,\n",
      "          'hes': 1,\n",
      "          'given': 1,\n",
      "          'idea': 1,\n",
      "          'play': 1,\n",
      "          'nplus': 1,\n",
      "          'attempts': 1,\n",
      "          'work': 1,\n",
      "          'giving': 1,\n",
      "          'relationship': 1,\n",
      "          'another': 1,\n",
      "          'albeit': 1,\n",
      "          'waste': 1,\n",
      "          'wanted': 1,\n",
      "          'trying': 1,\n",
      "          'yet': 1,\n",
      "          'deck': 1,\n",
      "          'one': 1,\n",
      "          'nwith': 1,\n",
      "          'misses': 1,\n",
      "          'best': 1,\n",
      "          'moments': 1,\n",
      "          'looks': 1,\n",
      "          'cheesy': 1,\n",
      "          'kept': 1,\n",
      "          'wondering': 1,\n",
      "          'transferred': 1,\n",
      "          'hidef': 1,\n",
      "          'video': 1,\n",
      "          'grainy': 1,\n",
      "          'stock': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'air': 1,\n",
      "          'done': 1,\n",
      "          'cheap': 1,\n",
      "          'nmy': 1,\n",
      "          'definition': 1,\n",
      "          'simply': 1,\n",
      "          'laugh': 1,\n",
      "          'times': 1,\n",
      "          'laughed': 1,\n",
      "          'completely': 1,\n",
      "          'offset': 1,\n",
      "          'spent': 1,\n",
      "          'cringing': 1,\n",
      "          'wanting': 1,\n",
      "          'damning': 1,\n",
      "          'say': 1,\n",
      "          'wayne': 1,\n",
      "          'garth': 1,\n",
      "          'likely': 1,\n",
      "          'shoved': 1,\n",
      "          'mike': 1,\n",
      "          'tysons': 1,\n",
      "          'shorts': 1,\n",
      "          'sent': 1,\n",
      "          'sailing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'earth': 7,\n",
      "          'psychlos': 7,\n",
      "          'film': 6,\n",
      "          'years': 6,\n",
      "          'conquered': 6,\n",
      "          'see': 5,\n",
      "          'nthe': 5,\n",
      "          '1': 5,\n",
      "          '000': 5,\n",
      "          'cavemen': 5,\n",
      "          'humans': 5,\n",
      "          'planet': 4,\n",
      "          'nso': 4,\n",
      "          'course': 4,\n",
      "          'travolta': 4,\n",
      "          'still': 4,\n",
      "          'battlefield': 3,\n",
      "          'year': 3,\n",
      "          'even': 3,\n",
      "          'alien': 3,\n",
      "          'like': 3,\n",
      "          'nine': 3,\n",
      "          'led': 3,\n",
      "          'get': 3,\n",
      "          'dont': 3,\n",
      "          'make': 3,\n",
      "          'golf': 3,\n",
      "          'around': 3,\n",
      "          'nand': 3,\n",
      "          'jets': 3,\n",
      "          'nwhy': 3,\n",
      "          'back': 3,\n",
      "          'good': 3,\n",
      "          'movie': 3,\n",
      "          'nothing': 2,\n",
      "          'come': 2,\n",
      "          'fact': 2,\n",
      "          'scientology': 2,\n",
      "          'begins': 2,\n",
      "          'two': 2,\n",
      "          '3000': 2,\n",
      "          'race': 2,\n",
      "          'minutes': 2,\n",
      "          'believe': 2,\n",
      "          'earlier': 2,\n",
      "          'nalso': 2,\n",
      "          'hell': 2,\n",
      "          'scifi': 2,\n",
      "          'one': 2,\n",
      "          'group': 2,\n",
      "          'captured': 2,\n",
      "          'way': 2,\n",
      "          'characters': 2,\n",
      "          'whenever': 2,\n",
      "          'definitely': 2,\n",
      "          'none': 2,\n",
      "          'monster': 2,\n",
      "          'fight': 2,\n",
      "          'turns': 2,\n",
      "          'growing': 2,\n",
      "          'time': 2,\n",
      "          'barry': 2,\n",
      "          'pepper': 2,\n",
      "          'reclaim': 2,\n",
      "          'able': 2,\n",
      "          'aliens': 2,\n",
      "          'taking': 2,\n",
      "          'unattended': 2,\n",
      "          'leave': 2,\n",
      "          'us': 2,\n",
      "          'animals': 2,\n",
      "          'dogs': 2,\n",
      "          'nim': 2,\n",
      "          'travoltas': 2,\n",
      "          'despite': 2,\n",
      "          'possibly': 2,\n",
      "          'think': 2,\n",
      "          'villain': 2,\n",
      "          'know': 2,\n",
      "          'better': 2,\n",
      "          'day': 2,\n",
      "          'ni': 2,\n",
      "          'screening': 2,\n",
      "          'made': 2,\n",
      "          'compelled': 2,\n",
      "          'money': 2,\n",
      "          'away': 2,\n",
      "          'worst': 1,\n",
      "          '2000': 1,\n",
      "          'guarantee': 1,\n",
      "          'else': 1,\n",
      "          'close': 1,\n",
      "          'nin': 1,\n",
      "          'ill': 1,\n",
      "          'surprised': 1,\n",
      "          'anything': 1,\n",
      "          'bad': 1,\n",
      "          'next': 1,\n",
      "          'ten': 1,\n",
      "          'nbased': 1,\n",
      "          'novel': 1,\n",
      "          'guru': 1,\n",
      "          'l': 1,\n",
      "          'ron': 1,\n",
      "          'hubbard': 1,\n",
      "          'immediately': 1,\n",
      "          'find': 1,\n",
      "          'pieces': 1,\n",
      "          'key': 1,\n",
      "          'information': 1,\n",
      "          'nits': 1,\n",
      "          'called': 1,\n",
      "          'sounds': 1,\n",
      "          'tag': 1,\n",
      "          'team': 1,\n",
      "          'mexican': 1,\n",
      "          'wrestlers': 1,\n",
      "          'nok': 1,\n",
      "          '10': 1,\n",
      "          'seconds': 1,\n",
      "          'zillion': 1,\n",
      "          'questions': 1,\n",
      "          'racing': 1,\n",
      "          'mind': 1,\n",
      "          'nwhen': 1,\n",
      "          'audience': 1,\n",
      "          'happened': 1,\n",
      "          'case': 1,\n",
      "          'going': 1,\n",
      "          'whole': 1,\n",
      "          'bunch': 1,\n",
      "          'problems': 1,\n",
      "          'later': 1,\n",
      "          'trust': 1,\n",
      "          'nkeep': 1,\n",
      "          'reading': 1,\n",
      "          'nhow': 1,\n",
      "          'popcorn': 1,\n",
      "          'flick': 1,\n",
      "          'deliver': 1,\n",
      "          'goods': 1,\n",
      "          'event': 1,\n",
      "          'sets': 1,\n",
      "          'nhumans': 1,\n",
      "          'live': 1,\n",
      "          'slave': 1,\n",
      "          'labor': 1,\n",
      "          'films': 1,\n",
      "          'first': 1,\n",
      "          'act': 1,\n",
      "          'focus': 1,\n",
      "          'particular': 1,\n",
      "          'outside': 1,\n",
      "          'denver': 1,\n",
      "          'colorado': 1,\n",
      "          'nthey': 1,\n",
      "          'grunt': 1,\n",
      "          'groan': 1,\n",
      "          'babble': 1,\n",
      "          'monsters': 1,\n",
      "          'herd': 1,\n",
      "          'newborn': 1,\n",
      "          'babies': 1,\n",
      "          'crawled': 1,\n",
      "          'safety': 1,\n",
      "          'hills': 1,\n",
      "          'nnone': 1,\n",
      "          'knowledge': 1,\n",
      "          'nthis': 1,\n",
      "          'start': 1,\n",
      "          'actionscifi': 1,\n",
      "          'wanders': 1,\n",
      "          'wilderness': 1,\n",
      "          'stumbles': 1,\n",
      "          'across': 1,\n",
      "          'thinks': 1,\n",
      "          'dinosaur': 1,\n",
      "          'old': 1,\n",
      "          'miniature': 1,\n",
      "          'nhe': 1,\n",
      "          'sees': 1,\n",
      "          'sorts': 1,\n",
      "          'shrubs': 1,\n",
      "          'stupid': 1,\n",
      "          'little': 1,\n",
      "          'stood': 1,\n",
      "          'test': 1,\n",
      "          'weeds': 1,\n",
      "          'nanyway': 1,\n",
      "          'terl': 1,\n",
      "          'john': 1,\n",
      "          'smarmy': 1,\n",
      "          'opportunistic': 1,\n",
      "          'planning': 1,\n",
      "          'stealing': 1,\n",
      "          'recently': 1,\n",
      "          'discovered': 1,\n",
      "          'gold': 1,\n",
      "          'deposit': 1,\n",
      "          'forced': 1,\n",
      "          'bidding': 1,\n",
      "          'whatever': 1,\n",
      "          'eventually': 1,\n",
      "          'gain': 1,\n",
      "          'upper': 1,\n",
      "          'hand': 1,\n",
      "          'something': 1,\n",
      "          'failed': 1,\n",
      "          'supposed': 1,\n",
      "          'buffoonish': 1,\n",
      "          'cant': 1,\n",
      "          'handle': 1,\n",
      "          'ways': 1,\n",
      "          'control': 1,\n",
      "          'abandoned': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'using': 1,\n",
      "          'left': 1,\n",
      "          'fly': 1,\n",
      "          'nplease': 1,\n",
      "          'car': 1,\n",
      "          'weeks': 1,\n",
      "          'replace': 1,\n",
      "          'every': 1,\n",
      "          'fluid': 1,\n",
      "          'hose': 1,\n",
      "          'hood': 1,\n",
      "          'anyway': 1,\n",
      "          'nshouldnt': 1,\n",
      "          'destroyed': 1,\n",
      "          'military': 1,\n",
      "          'installations': 1,\n",
      "          'massive': 1,\n",
      "          'minute': 1,\n",
      "          'campaign': 1,\n",
      "          'refer': 1,\n",
      "          'man': 1,\n",
      "          'yet': 1,\n",
      "          'arent': 1,\n",
      "          'dog': 1,\n",
      "          'mining': 1,\n",
      "          'earths': 1,\n",
      "          'precious': 1,\n",
      "          'resources': 1,\n",
      "          'unaware': 1,\n",
      "          'fort': 1,\n",
      "          'knox': 1,\n",
      "          'care': 1,\n",
      "          'point': 1,\n",
      "          'fan': 1,\n",
      "          'im': 1,\n",
      "          'glad': 1,\n",
      "          'hes': 1,\n",
      "          'alist': 1,\n",
      "          'hollywood': 1,\n",
      "          'occasionally': 1,\n",
      "          'puts': 1,\n",
      "          'crowd': 1,\n",
      "          'pleasing': 1,\n",
      "          'dreck': 1,\n",
      "          'michael': 1,\n",
      "          'phenomenon': 1,\n",
      "          'nbut': 1,\n",
      "          'giving': 1,\n",
      "          'performance': 1,\n",
      "          'nhes': 1,\n",
      "          'capable': 1,\n",
      "          'making': 1,\n",
      "          'menacing': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'faceoff': 1,\n",
      "          'character': 1,\n",
      "          'came': 1,\n",
      "          'screen': 1,\n",
      "          'couldnt': 1,\n",
      "          'hold': 1,\n",
      "          'laughter': 1,\n",
      "          'nnow': 1,\n",
      "          'different': 1,\n",
      "          'facial': 1,\n",
      "          'features': 1,\n",
      "          'members': 1,\n",
      "          'seem': 1,\n",
      "          'looks': 1,\n",
      "          'nall': 1,\n",
      "          'weird': 1,\n",
      "          'foreheads': 1,\n",
      "          'pointy': 1,\n",
      "          'bones': 1,\n",
      "          'face': 1,\n",
      "          'goatee': 1,\n",
      "          'acts': 1,\n",
      "          'sort': 1,\n",
      "          'phony': 1,\n",
      "          'upperclass': 1,\n",
      "          'snooty': 1,\n",
      "          'accent': 1,\n",
      "          'constantly': 1,\n",
      "          'whines': 1,\n",
      "          'bureaucratic': 1,\n",
      "          'nonsense': 1,\n",
      "          'home': 1,\n",
      "          'world': 1,\n",
      "          'nooooo': 1,\n",
      "          'scary': 1,\n",
      "          'nas': 1,\n",
      "          'producer': 1,\n",
      "          'actor': 1,\n",
      "          'nyou': 1,\n",
      "          'dumb': 1,\n",
      "          'love': 1,\n",
      "          'independence': 1,\n",
      "          'example': 1,\n",
      "          'absolutely': 1,\n",
      "          'entertaining': 1,\n",
      "          'everything': 1,\n",
      "          'could': 1,\n",
      "          'stay': 1,\n",
      "          'awake': 1,\n",
      "          'cleaned': 1,\n",
      "          'glasses': 1,\n",
      "          'walked': 1,\n",
      "          'theater': 1,\n",
      "          'grocery': 1,\n",
      "          'list': 1,\n",
      "          'chose': 1,\n",
      "          'lottery': 1,\n",
      "          'numbers': 1,\n",
      "          'week': 1,\n",
      "          'replayed': 1,\n",
      "          'super': 1,\n",
      "          'bowl': 1,\n",
      "          'xxv': 1,\n",
      "          'head': 1,\n",
      "          'commercials': 1,\n",
      "          'scrutinize': 1,\n",
      "          'insides': 1,\n",
      "          'eyelids': 1,\n",
      "          'nby': 1,\n",
      "          'actually': 1,\n",
      "          'reach': 1,\n",
      "          'people': 1,\n",
      "          'avoiding': 1,\n",
      "          'nfolks': 1,\n",
      "          'save': 1,\n",
      "          'cash': 1,\n",
      "          'ndont': 1,\n",
      "          'go': 1,\n",
      "          'rent': 1,\n",
      "          'buy': 1,\n",
      "          'nyoud': 1,\n",
      "          'entertained': 1,\n",
      "          'youd': 1,\n",
      "          'use': 1,\n",
      "          'throwing': 1,\n",
      "          'wind': 1,\n",
      "          'watching': 1,\n",
      "          'sail': 1,\n",
      "          'send': 1,\n",
      "          'jacksonville': 1,\n",
      "          'journal': 1,\n",
      "          'nwell': 1,\n",
      "          'entertain': 1,\n",
      "          'plenty': 1,\n",
      "          'kind': 1,\n",
      "          'nunless': 1,\n",
      "          'youre': 1,\n",
      "          'captivated': 1,\n",
      "          'countless': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'shots': 1,\n",
      "          'running': 1,\n",
      "          'youll': 1,\n",
      "          'nthat': 1,\n",
      "          'headache': 1,\n",
      "          'neditors': 1,\n",
      "          'note': 1,\n",
      "          'reason': 1,\n",
      "          'though': 1,\n",
      "          'converted': 1,\n",
      "          'sure': 1,\n",
      "          'nsomething': 1,\n",
      "          'feel': 1,\n",
      "          'choice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'li': 7,\n",
      "          'action': 7,\n",
      "          'jet': 6,\n",
      "          'film': 6,\n",
      "          'movie': 5,\n",
      "          'scenes': 5,\n",
      "          'enough': 4,\n",
      "          'one': 3,\n",
      "          'nand': 3,\n",
      "          'fight': 3,\n",
      "          'time': 3,\n",
      "          'like': 3,\n",
      "          'story': 3,\n",
      "          'show': 2,\n",
      "          'nit': 2,\n",
      "          'another': 2,\n",
      "          'take': 2,\n",
      "          'empty': 2,\n",
      "          'guy': 2,\n",
      "          'rival': 2,\n",
      "          'find': 2,\n",
      "          'black': 2,\n",
      "          'three': 2,\n",
      "          'screenplay': 2,\n",
      "          'bad': 2,\n",
      "          'actors': 2,\n",
      "          'many': 2,\n",
      "          'ni': 2,\n",
      "          'love': 2,\n",
      "          'barely': 2,\n",
      "          'thought': 2,\n",
      "          'us': 2,\n",
      "          'give': 2,\n",
      "          'nwhat': 2,\n",
      "          'soundtrack': 2,\n",
      "          'nthe': 2,\n",
      "          'much': 2,\n",
      "          'lines': 2,\n",
      "          'save': 2,\n",
      "          'rest': 2,\n",
      "          'deal': 2,\n",
      "          'movies': 2,\n",
      "          'disappointed': 2,\n",
      "          'couple': 2,\n",
      "          'cool': 2,\n",
      "          'simply': 2,\n",
      "          'way': 2,\n",
      "          'films': 2,\n",
      "          'busted': 1,\n",
      "          'onto': 1,\n",
      "          'american': 1,\n",
      "          'scene': 1,\n",
      "          'stole': 1,\n",
      "          '1998s': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          '4': 1,\n",
      "          'wicked': 1,\n",
      "          'looks': 1,\n",
      "          'nasty': 1,\n",
      "          'moves': 1,\n",
      "          'undeniable': 1,\n",
      "          'charisma': 1,\n",
      "          'took': 1,\n",
      "          'two': 1,\n",
      "          'years': 1,\n",
      "          'megaproducer': 1,\n",
      "          'joel': 1,\n",
      "          'silver': 1,\n",
      "          'set': 1,\n",
      "          'allamerican': 1,\n",
      "          'primed': 1,\n",
      "          'actionhero': 1,\n",
      "          'seats': 1,\n",
      "          'left': 1,\n",
      "          'alleged': 1,\n",
      "          'cokehead': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'pudgy': 1,\n",
      "          'named': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'nwould': 1,\n",
      "          'past': 1,\n",
      "          'asian': 1,\n",
      "          'counterparts': 1,\n",
      "          'namely': 1,\n",
      "          'chow': 1,\n",
      "          'yunfat': 1,\n",
      "          'jackie': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'chan': 1,\n",
      "          'nlets': 1,\n",
      "          'nplot': 1,\n",
      "          'chinese': 1,\n",
      "          'gangster': 1,\n",
      "          'organizations': 1,\n",
      "          'fall': 1,\n",
      "          'favor': 1,\n",
      "          'members': 1,\n",
      "          'respective': 1,\n",
      "          'families': 1,\n",
      "          'start': 1,\n",
      "          'turning': 1,\n",
      "          'dead': 1,\n",
      "          'nthats': 1,\n",
      "          'badass': 1,\n",
      "          'blasts': 1,\n",
      "          'picture': 1,\n",
      "          'men': 1,\n",
      "          'behind': 1,\n",
      "          'brothers': 1,\n",
      "          'death': 1,\n",
      "          'exact': 1,\n",
      "          'style': 1,\n",
      "          'revenge': 1,\n",
      "          'ncritique': 1,\n",
      "          'words': 1,\n",
      "          'nsimple': 1,\n",
      "          'nnot': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'kickass': 1,\n",
      "          'compensate': 1,\n",
      "          'horribly': 1,\n",
      "          'predictable': 1,\n",
      "          'crappy': 1,\n",
      "          'dialogue': 1,\n",
      "          'ohso': 1,\n",
      "          'overthetop': 1,\n",
      "          'melodramatic': 1,\n",
      "          'moments': 1,\n",
      "          'romance': 1,\n",
      "          'angle': 1,\n",
      "          'nwhy': 1,\n",
      "          'must': 1,\n",
      "          'ask': 1,\n",
      "          'really': 1,\n",
      "          'dig': 1,\n",
      "          'little': 1,\n",
      "          'ditty': 1,\n",
      "          'contained': 1,\n",
      "          'memorable': 1,\n",
      "          'sequences': 1,\n",
      "          'well': 1,\n",
      "          'poor': 1,\n",
      "          'dude': 1,\n",
      "          'supposed': 1,\n",
      "          'big': 1,\n",
      "          'break': 1,\n",
      "          'nhow': 1,\n",
      "          'bout': 1,\n",
      "          'giving': 1,\n",
      "          'slickster': 1,\n",
      "          'opportunities': 1,\n",
      "          'kungfu': 1,\n",
      "          'fighting': 1,\n",
      "          'chops': 1,\n",
      "          'slap': 1,\n",
      "          'chances': 1,\n",
      "          'practice': 1,\n",
      "          'actingenglish': 1,\n",
      "          'abilities': 1,\n",
      "          'letdown': 1,\n",
      "          'neven': 1,\n",
      "          'mask': 1,\n",
      "          'entertaining': 1,\n",
      "          'glossed': 1,\n",
      "          'shell': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'sure': 1,\n",
      "          'spent': 1,\n",
      "          'gathering': 1,\n",
      "          'hits': 1,\n",
      "          'socalled': 1,\n",
      "          'felt': 1,\n",
      "          'watching': 1,\n",
      "          'rather': 1,\n",
      "          'sad': 1,\n",
      "          'part': 1,\n",
      "          'script': 1,\n",
      "          'wouldnt': 1,\n",
      "          'matter': 1,\n",
      "          'actually': 1,\n",
      "          'decent': 1,\n",
      "          'spouting': 1,\n",
      "          'tacky': 1,\n",
      "          'nbut': 1,\n",
      "          'lindo': 1,\n",
      "          'aaliyah': 1,\n",
      "          'werent': 1,\n",
      "          'shabby': 1,\n",
      "          'cast': 1,\n",
      "          'picked': 1,\n",
      "          'primarily': 1,\n",
      "          'inability': 1,\n",
      "          'deliver': 1,\n",
      "          'convincingly': 1,\n",
      "          'whole': 1,\n",
      "          'nfl': 1,\n",
      "          'franchise': 1,\n",
      "          'run': 1,\n",
      "          '15year': 1,\n",
      "          'old': 1,\n",
      "          'looking': 1,\n",
      "          'acting': 1,\n",
      "          'hes': 1,\n",
      "          'overlord': 1,\n",
      "          'drug': 1,\n",
      "          'ring': 1,\n",
      "          'mess': 1,\n",
      "          'nthen': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'seem': 1,\n",
      "          'im': 1,\n",
      "          'complaining': 1,\n",
      "          'solely': 1,\n",
      "          'completely': 1,\n",
      "          'foreseeable': 1,\n",
      "          'since': 1,\n",
      "          'go': 1,\n",
      "          'see': 1,\n",
      "          'anyway': 1,\n",
      "          'nwell': 1,\n",
      "          'guess': 1,\n",
      "          'thats': 1,\n",
      "          'nthere': 1,\n",
      "          'satisfy': 1,\n",
      "          'overall': 1,\n",
      "          'craving': 1,\n",
      "          'nalso': 1,\n",
      "          'incorporate': 1,\n",
      "          'wires': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'stunts': 1,\n",
      "          'exaggerated': 1,\n",
      "          'obvious': 1,\n",
      "          'stunt': 1,\n",
      "          'seamless': 1,\n",
      "          'fellas': 1,\n",
      "          'necessarily': 1,\n",
      "          'laws': 1,\n",
      "          'gravity': 1,\n",
      "          'thing': 1,\n",
      "          'original': 1,\n",
      "          'director': 1,\n",
      "          'showed': 1,\n",
      "          'inside': 1,\n",
      "          'cracklings': 1,\n",
      "          'human': 1,\n",
      "          'body': 1,\n",
      "          'penetrated': 1,\n",
      "          'blow': 1,\n",
      "          'simple': 1,\n",
      "          'creative': 1,\n",
      "          'touch': 1,\n",
      "          'couldnt': 1,\n",
      "          'uninteresting': 1,\n",
      "          'plot': 1,\n",
      "          'movements': 1,\n",
      "          'nim': 1,\n",
      "          'didnt': 1,\n",
      "          'real': 1,\n",
      "          'opportunity': 1,\n",
      "          'star': 1,\n",
      "          'good': 1,\n",
      "          'great': 1,\n",
      "          'nhopefully': 1,\n",
      "          'next': 1,\n",
      "          'charm': 1,\n",
      "          'charismatic': 1,\n",
      "          'actor': 1,\n",
      "          'nfor': 1,\n",
      "          'hope': 1,\n",
      "          'sake': 1,\n",
      "          'title': 1,\n",
      "          'isnt': 1,\n",
      "          'premonition': 1,\n",
      "          'ultimate': 1,\n",
      "          'fate': 1,\n",
      "          'boxoffice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'one': 5,\n",
      "          'water': 5,\n",
      "          'tom': 5,\n",
      "          'much': 4,\n",
      "          'bad': 3,\n",
      "          'flooded': 2,\n",
      "          'rain': 2,\n",
      "          'n': 2,\n",
      "          'sheriff': 2,\n",
      "          'line': 2,\n",
      "          'town': 2,\n",
      "          'soon': 2,\n",
      "          'dead': 2,\n",
      "          'turn': 2,\n",
      "          'actors': 2,\n",
      "          'acting': 2,\n",
      "          'picture': 2,\n",
      "          'movie': 2,\n",
      "          'plot': 2,\n",
      "          'charlie': 2,\n",
      "          'plays': 2,\n",
      "          'drops': 2,\n",
      "          'gang': 2,\n",
      "          'jim': 2,\n",
      "          'played': 2,\n",
      "          'big': 2,\n",
      "          'interest': 2,\n",
      "          'single': 2,\n",
      "          'characters': 2,\n",
      "          'spend': 2,\n",
      "          'time': 2,\n",
      "          'show': 2,\n",
      "          'night': 1,\n",
      "          'torrential': 1,\n",
      "          'downpour': 1,\n",
      "          'streets': 1,\n",
      "          'went': 1,\n",
      "          'see': 1,\n",
      "          'else': 1,\n",
      "          'hard': 1,\n",
      "          'going': 1,\n",
      "          'die': 1,\n",
      "          'randy': 1,\n",
      "          'quaid': 1,\n",
      "          'asks': 1,\n",
      "          'storys': 1,\n",
      "          'opening': 1,\n",
      "          'evacuates': 1,\n",
      "          'answer': 1,\n",
      "          'pretty': 1,\n",
      "          'yes': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'nand': 1,\n",
      "          'add': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'supposedly': 1,\n",
      "          'regretfully': 1,\n",
      "          'often': 1,\n",
      "          'npopulating': 1,\n",
      "          'tvmovieoftheweek': 1,\n",
      "          'material': 1,\n",
      "          'host': 1,\n",
      "          'talented': 1,\n",
      "          'none': 1,\n",
      "          'hope': 1,\n",
      "          'rewarded': 1,\n",
      "          'handsomely': 1,\n",
      "          'hopelessly': 1,\n",
      "          'muddled': 1,\n",
      "          'nbesides': 1,\n",
      "          'obvious': 1,\n",
      "          'hardships': 1,\n",
      "          'scenes': 1,\n",
      "          'dog': 1,\n",
      "          'paddling': 1,\n",
      "          'receive': 1,\n",
      "          'black': 1,\n",
      "          'marks': 1,\n",
      "          'records': 1,\n",
      "          'appearing': 1,\n",
      "          'dismal': 1,\n",
      "          'ngraham': 1,\n",
      "          'yosts': 1,\n",
      "          'script': 1,\n",
      "          'serves': 1,\n",
      "          'cliche': 1,\n",
      "          'another': 1,\n",
      "          'thankfully': 1,\n",
      "          'managed': 1,\n",
      "          'mumble': 1,\n",
      "          'quite': 1,\n",
      "          'lines': 1,\n",
      "          'ndirector': 1,\n",
      "          'mikael': 1,\n",
      "          'salomons': 1,\n",
      "          'staging': 1,\n",
      "          'confusing': 1,\n",
      "          'may': 1,\n",
      "          'trouble': 1,\n",
      "          'figuring': 1,\n",
      "          'happening': 1,\n",
      "          'befuddled': 1,\n",
      "          'presentation': 1,\n",
      "          'exacerbated': 1,\n",
      "          'peter': 1,\n",
      "          'menzies': 1,\n",
      "          'jr': 1,\n",
      "          'dark': 1,\n",
      "          'ugly': 1,\n",
      "          'cinematography': 1,\n",
      "          'concerns': 1,\n",
      "          'armored': 1,\n",
      "          'car': 1,\n",
      "          'gets': 1,\n",
      "          'stuck': 1,\n",
      "          'raging': 1,\n",
      "          'nonboard': 1,\n",
      "          'guards': 1,\n",
      "          'uncle': 1,\n",
      "          'nchristian': 1,\n",
      "          'slater': 1,\n",
      "          'better': 1,\n",
      "          'tender': 1,\n",
      "          'roles': 1,\n",
      "          'untamed': 1,\n",
      "          'heart': 1,\n",
      "          'nedward': 1,\n",
      "          'asner': 1,\n",
      "          'briefly': 1,\n",
      "          'take': 1,\n",
      "          'role': 1,\n",
      "          'ncoming': 1,\n",
      "          'rescue': 1,\n",
      "          'headed': 1,\n",
      "          'autopilot': 1,\n",
      "          'great': 1,\n",
      "          'actor': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'nhe': 1,\n",
      "          'views': 1,\n",
      "          'loot': 1,\n",
      "          'three': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'worth': 1,\n",
      "          'retirement': 1,\n",
      "          'plan': 1,\n",
      "          'entire': 1,\n",
      "          'watery': 1,\n",
      "          'chase': 1,\n",
      "          'posse': 1,\n",
      "          'tracking': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'picks': 1,\n",
      "          'love': 1,\n",
      "          'person': 1,\n",
      "          'crucifixweapon': 1,\n",
      "          'wielding': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'karen': 1,\n",
      "          'totally': 1,\n",
      "          'wasted': 1,\n",
      "          'performance': 1,\n",
      "          'minnie': 1,\n",
      "          'driver': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'repetitive': 1,\n",
      "          'without': 1,\n",
      "          'nthey': 1,\n",
      "          'feature': 1,\n",
      "          'lots': 1,\n",
      "          'explosions': 1,\n",
      "          'gunfire': 1,\n",
      "          'keep': 1,\n",
      "          'awake': 1,\n",
      "          'nchristopher': 1,\n",
      "          'youngs': 1,\n",
      "          'emotionless': 1,\n",
      "          'score': 1,\n",
      "          'film': 1,\n",
      "          'trait': 1,\n",
      "          'earshattering': 1,\n",
      "          'loudness': 1,\n",
      "          'holes': 1,\n",
      "          'ones': 1,\n",
      "          'dam': 1,\n",
      "          'breaks': 1,\n",
      "          'submerging': 1,\n",
      "          'infinite': 1,\n",
      "          'number': 1,\n",
      "          'bullets': 1,\n",
      "          'rarely': 1,\n",
      "          'bother': 1,\n",
      "          'reloading': 1,\n",
      "          'guns': 1,\n",
      "          'weapons': 1,\n",
      "          'ammunition': 1,\n",
      "          'rained': 1,\n",
      "          'always': 1,\n",
      "          'fire': 1,\n",
      "          'perfectly': 1,\n",
      "          'nwhen': 1,\n",
      "          'guys': 1,\n",
      "          'gun': 1,\n",
      "          'stays': 1,\n",
      "          'place': 1,\n",
      "          'later': 1,\n",
      "          'swims': 1,\n",
      "          'get': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'swift': 1,\n",
      "          'strong': 1,\n",
      "          'uprooting': 1,\n",
      "          'large': 1,\n",
      "          'trees': 1,\n",
      "          'ncounting': 1,\n",
      "          'improbabilities': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ways': 1,\n",
      "          'wait': 1,\n",
      "          'kill': 1,\n",
      "          'unprintable': 1,\n",
      "          'good': 1,\n",
      "          'nbetty': 1,\n",
      "          'white': 1,\n",
      "          'incessantly': 1,\n",
      "          'bossy': 1,\n",
      "          'wife': 1,\n",
      "          'henpecked': 1,\n",
      "          'husband': 1,\n",
      "          'finally': 1,\n",
      "          'told': 1,\n",
      "          'audience': 1,\n",
      "          'roared': 1,\n",
      "          'laughter': 1,\n",
      "          'concludes': 1,\n",
      "          'sickening': 1,\n",
      "          'set': 1,\n",
      "          'twists': 1,\n",
      "          'best': 1,\n",
      "          'said': 1,\n",
      "          'merely': 1,\n",
      "          'stupefyingly': 1,\n",
      "          'awful': 1,\n",
      "          'opposed': 1,\n",
      "          'laughably': 1,\n",
      "          'nhard': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '37': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'would': 1,\n",
      "          'fine': 1,\n",
      "          'teenagers': 1,\n",
      "          'two': 1,\n",
      "          'families': 1,\n",
      "          'behind': 1,\n",
      "          'us': 1,\n",
      "          'shockingly': 1,\n",
      "          'halfdozen': 1,\n",
      "          'preschoolers': 1,\n",
      "          'among': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ni': 10,\n",
      "          'one': 9,\n",
      "          'good': 8,\n",
      "          'nand': 7,\n",
      "          'hate': 6,\n",
      "          'film': 6,\n",
      "          'guy': 6,\n",
      "          'stupid': 5,\n",
      "          'hes': 5,\n",
      "          'seagal': 4,\n",
      "          'action': 4,\n",
      "          'actually': 4,\n",
      "          'nbut': 4,\n",
      "          'forsythe': 4,\n",
      "          'even': 4,\n",
      "          'old': 3,\n",
      "          'know': 3,\n",
      "          'every': 3,\n",
      "          'nonthreatening': 3,\n",
      "          'scenes': 3,\n",
      "          'catch': 3,\n",
      "          'conveniently': 3,\n",
      "          'family': 3,\n",
      "          'cool': 3,\n",
      "          'nhe': 3,\n",
      "          'enough': 3,\n",
      "          'something': 2,\n",
      "          'things': 2,\n",
      "          'probably': 2,\n",
      "          'boring': 2,\n",
      "          'ever': 2,\n",
      "          'single': 2,\n",
      "          'around': 2,\n",
      "          'bullying': 2,\n",
      "          'people': 2,\n",
      "          'lines': 2,\n",
      "          'brooklyn': 2,\n",
      "          'plot': 2,\n",
      "          'chief': 2,\n",
      "          'beginning': 2,\n",
      "          'person': 2,\n",
      "          'films': 2,\n",
      "          'nso': 2,\n",
      "          'nwell': 2,\n",
      "          'william': 2,\n",
      "          'partner': 2,\n",
      "          'bad': 2,\n",
      "          'comes': 2,\n",
      "          'barowner': 2,\n",
      "          'gina': 2,\n",
      "          'gershon': 2,\n",
      "          'give': 2,\n",
      "          'away': 2,\n",
      "          'son': 2,\n",
      "          'shows': 2,\n",
      "          'called': 2,\n",
      "          'dont': 2,\n",
      "          'gives': 2,\n",
      "          'performance': 2,\n",
      "          'feeling': 2,\n",
      "          'huge': 1,\n",
      "          'lack': 1,\n",
      "          'decided': 1,\n",
      "          'watch': 1,\n",
      "          'upn': 1,\n",
      "          'sunday': 1,\n",
      "          'afternoon': 1,\n",
      "          'tv': 1,\n",
      "          'secondrate': 1,\n",
      "          'movies': 1,\n",
      "          'show': 1,\n",
      "          'showed': 1,\n",
      "          'total': 1,\n",
      "          'recall': 1,\n",
      "          'nif': 1,\n",
      "          'think': 1,\n",
      "          'star': 1,\n",
      "          'live': 1,\n",
      "          'includes': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'nwhat': 1,\n",
      "          'uses': 1,\n",
      "          'facial': 1,\n",
      "          'expression': 1,\n",
      "          'threatening': 1,\n",
      "          'situation': 1,\n",
      "          'squint': 1,\n",
      "          'movie': 1,\n",
      "          'goes': 1,\n",
      "          'saying': 1,\n",
      "          'accent': 1,\n",
      "          'fake': 1,\n",
      "          'burt': 1,\n",
      "          'reynolds': 1,\n",
      "          'hairpiece': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'despise': 1,\n",
      "          'never': 1,\n",
      "          'gets': 1,\n",
      "          'bruise': 1,\n",
      "          'fights': 1,\n",
      "          'twist': 1,\n",
      "          'leads': 1,\n",
      "          'melodramatic': 1,\n",
      "          'fight': 1,\n",
      "          'villain': 1,\n",
      "          'nonsatirical': 1,\n",
      "          'messages': 1,\n",
      "          'slaps': 1,\n",
      "          'quote': 1,\n",
      "          'arthur': 1,\n",
      "          'miller': 1,\n",
      "          'nothing': 1,\n",
      "          'except': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'narcissistic': 1,\n",
      "          'thinks': 1,\n",
      "          'fucking': 1,\n",
      "          'sing': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'hill': 1,\n",
      "          'billy': 1,\n",
      "          'rock': 1,\n",
      "          'tune': 1,\n",
      "          'sung': 1,\n",
      "          'penned': 1,\n",
      "          'nsure': 1,\n",
      "          'guys': 1,\n",
      "          'nice': 1,\n",
      "          'found': 1,\n",
      "          'letterman': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'makes': 1,\n",
      "          'worse': 1,\n",
      "          'reagan': 1,\n",
      "          'whats': 1,\n",
      "          'shitterpiece': 1,\n",
      "          'nabout': 1,\n",
      "          'trying': 1,\n",
      "          'stupidass': 1,\n",
      "          'crook': 1,\n",
      "          'shot': 1,\n",
      "          'killed': 1,\n",
      "          'broad': 1,\n",
      "          'daylight': 1,\n",
      "          'couldnt': 1,\n",
      "          'believe': 1,\n",
      "          'scene': 1,\n",
      "          'get': 1,\n",
      "          'maximum': 1,\n",
      "          'emotional': 1,\n",
      "          'effect': 1,\n",
      "          'ahem': 1,\n",
      "          'said': 1,\n",
      "          'took': 1,\n",
      "          'nim': 1,\n",
      "          'sorry': 1,\n",
      "          'anyone': 1,\n",
      "          'hear': 1,\n",
      "          'concealing': 1,\n",
      "          'ones': 1,\n",
      "          'self': 1,\n",
      "          'exbrooklynite': 1,\n",
      "          'dedicates': 1,\n",
      "          'life': 1,\n",
      "          'catching': 1,\n",
      "          'wished': 1,\n",
      "          'caught': 1,\n",
      "          'ended': 1,\n",
      "          'noooo': 1,\n",
      "          'drags': 1,\n",
      "          'bullies': 1,\n",
      "          'forsythes': 1,\n",
      "          'members': 1,\n",
      "          'including': 1,\n",
      "          'none': 1,\n",
      "          'sister': 1,\n",
      "          'threatens': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'house': 1,\n",
      "          'stalks': 1,\n",
      "          'like': 1,\n",
      "          'nicholson': 1,\n",
      "          'shining': 1,\n",
      "          'complete': 1,\n",
      "          'hiding': 1,\n",
      "          'bathroom': 1,\n",
      "          'added': 1,\n",
      "          'bonus': 1,\n",
      "          'girl': 1,\n",
      "          'loosing': 1,\n",
      "          'screaming': 1,\n",
      "          'nseagal': 1,\n",
      "          'paints': 1,\n",
      "          'lovable': 1,\n",
      "          'fiancee': 1,\n",
      "          'hanging': 1,\n",
      "          'checking': 1,\n",
      "          'homework': 1,\n",
      "          'take': 1,\n",
      "          'bit': 1,\n",
      "          'assignment': 1,\n",
      "          'dunno': 1,\n",
      "          'playing': 1,\n",
      "          'childhood': 1,\n",
      "          'nightmares': 1,\n",
      "          'also': 1,\n",
      "          'badass': 1,\n",
      "          'wants': 1,\n",
      "          'crooks': 1,\n",
      "          'taking': 1,\n",
      "          'attack': 1,\n",
      "          'unarmed': 1,\n",
      "          'chinese': 1,\n",
      "          'swinging': 1,\n",
      "          'bats': 1,\n",
      "          'pool': 1,\n",
      "          'cue': 1,\n",
      "          'nserves': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'interesting': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'actors': 1,\n",
      "          'talented': 1,\n",
      "          'appear': 1,\n",
      "          'already': 1,\n",
      "          'mentioned': 1,\n",
      "          'whos': 1,\n",
      "          'pretty': 1,\n",
      "          'horrible': 1,\n",
      "          'well': 1,\n",
      "          'overacts': 1,\n",
      "          'terribly': 1,\n",
      "          'act': 1,\n",
      "          'awesome': 1,\n",
      "          'raising': 1,\n",
      "          'arizona': 1,\n",
      "          'goodmans': 1,\n",
      "          'crime': 1,\n",
      "          'awful': 1,\n",
      "          'njerry': 1,\n",
      "          'orbach': 1,\n",
      "          'credible': 1,\n",
      "          'police': 1,\n",
      "          'checks': 1,\n",
      "          'segal': 1,\n",
      "          'gone': 1,\n",
      "          'nwhy': 1,\n",
      "          'role': 1,\n",
      "          'small': 1,\n",
      "          'sporadic': 1,\n",
      "          'tarnish': 1,\n",
      "          'credibility': 1,\n",
      "          'seems': 1,\n",
      "          'law': 1,\n",
      "          'order': 1,\n",
      "          'cameos': 1,\n",
      "          'brated': 1,\n",
      "          'eroticthrillercinemaxstyle': 1,\n",
      "          'stars': 1,\n",
      "          'shannon': 1,\n",
      "          'whirry': 1,\n",
      "          'terry': 1,\n",
      "          'malloy': 1,\n",
      "          'joke': 1,\n",
      "          'clever': 1,\n",
      "          'athena': 1,\n",
      "          'massey': 1,\n",
      "          'noh': 1,\n",
      "          'er': 1,\n",
      "          'julliana': 1,\n",
      "          'margiulles': 1,\n",
      "          'two': 1,\n",
      "          'n': 1,\n",
      "          'justice': 1,\n",
      "          'proves': 1,\n",
      "          'american': 1,\n",
      "          'suck': 1,\n",
      "          'theres': 1,\n",
      "          'thing': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'youre': 1,\n",
      "          'mood': 1,\n",
      "          'nobrainer': 1,\n",
      "          'funyetdumb': 1,\n",
      "          'bother': 1,\n",
      "          'watching': 1,\n",
      "          'nits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'vampires': 14,\n",
      "          'film': 10,\n",
      "          'vampire': 8,\n",
      "          'carpenter': 8,\n",
      "          'action': 7,\n",
      "          'plot': 7,\n",
      "          'crow': 6,\n",
      "          'looking': 5,\n",
      "          'style': 4,\n",
      "          'nthe': 4,\n",
      "          'team': 4,\n",
      "          'us': 4,\n",
      "          'get': 4,\n",
      "          'scene': 4,\n",
      "          'nthere': 4,\n",
      "          'new': 3,\n",
      "          'nwhile': 3,\n",
      "          'could': 3,\n",
      "          'would': 3,\n",
      "          'nbut': 3,\n",
      "          'kept': 3,\n",
      "          'book': 3,\n",
      "          'people': 3,\n",
      "          'well': 3,\n",
      "          '4': 3,\n",
      "          'attack': 2,\n",
      "          'mexico': 2,\n",
      "          'house': 2,\n",
      "          'jack': 2,\n",
      "          'james': 2,\n",
      "          'woods': 2,\n",
      "          'hunters': 2,\n",
      "          'imagery': 2,\n",
      "          'little': 2,\n",
      "          'gives': 2,\n",
      "          'way': 2,\n",
      "          'sequence': 2,\n",
      "          'nthat': 2,\n",
      "          'enough': 2,\n",
      "          'director': 2,\n",
      "          'john': 2,\n",
      "          'story': 2,\n",
      "          'next': 2,\n",
      "          'minimum': 2,\n",
      "          'interesting': 2,\n",
      "          'end': 2,\n",
      "          'something': 2,\n",
      "          'based': 2,\n",
      "          'nthis': 2,\n",
      "          'tell': 2,\n",
      "          'show': 2,\n",
      "          'fights': 2,\n",
      "          'also': 2,\n",
      "          'question': 2,\n",
      "          'nin': 2,\n",
      "          'nnow': 2,\n",
      "          'tony': 2,\n",
      "          'like': 2,\n",
      "          'obvious': 2,\n",
      "          'dialog': 2,\n",
      "          'questions': 2,\n",
      "          'want': 2,\n",
      "          'life': 2,\n",
      "          'nwoods': 2,\n",
      "          'mythic': 2,\n",
      "          'work': 2,\n",
      "          'floor': 2,\n",
      "          'none': 2,\n",
      "          'chair': 2,\n",
      "          'effect': 2,\n",
      "          'sunlight': 2,\n",
      "          '0': 2,\n",
      "          'scale': 2,\n",
      "          'starts': 1,\n",
      "          'almost': 1,\n",
      "          'spaghetti': 1,\n",
      "          'western': 1,\n",
      "          'small': 1,\n",
      "          'homestead': 1,\n",
      "          'nest': 1,\n",
      "          'leading': 1,\n",
      "          'clean': 1,\n",
      "          'initial': 1,\n",
      "          'overdramatic': 1,\n",
      "          'fairly': 1,\n",
      "          'decent': 1,\n",
      "          'last': 1,\n",
      "          'let': 1,\n",
      "          'line': 1,\n",
      "          'long': 1,\n",
      "          'much': 1,\n",
      "          'big': 1,\n",
      "          'nthen': 1,\n",
      "          'bit': 1,\n",
      "          'ideas': 1,\n",
      "          'really': 1,\n",
      "          'short': 1,\n",
      "          'nand': 1,\n",
      "          'pity': 1,\n",
      "          'steakley': 1,\n",
      "          'myth': 1,\n",
      "          'origins': 1,\n",
      "          'explains': 1,\n",
      "          'intertwined': 1,\n",
      "          'religious': 1,\n",
      "          'departure': 1,\n",
      "          'standard': 1,\n",
      "          'decides': 1,\n",
      "          'rather': 1,\n",
      "          'nwhat': 1,\n",
      "          'saves': 1,\n",
      "          'serious': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'spectacular': 1,\n",
      "          'lot': 1,\n",
      "          'fighting': 1,\n",
      "          'lots': 1,\n",
      "          'gore': 1,\n",
      "          'nanything': 1,\n",
      "          'intriguing': 1,\n",
      "          'pleasing': 1,\n",
      "          'fans': 1,\n",
      "          'always': 1,\n",
      "          'carpenters': 1,\n",
      "          'nhis': 1,\n",
      "          '1981': 1,\n",
      "          'version': 1,\n",
      "          'thing': 1,\n",
      "          'challenges': 1,\n",
      "          'viewer': 1,\n",
      "          'thinking': 1,\n",
      "          'films': 1,\n",
      "          'central': 1,\n",
      "          'science': 1,\n",
      "          'fictional': 1,\n",
      "          'njack': 1,\n",
      "          'heads': 1,\n",
      "          'swat': 1,\n",
      "          'cleaning': 1,\n",
      "          'nests': 1,\n",
      "          'hightech': 1,\n",
      "          'spears': 1,\n",
      "          'crossbows': 1,\n",
      "          'early': 1,\n",
      "          'part': 1,\n",
      "          'wiped': 1,\n",
      "          'particularly': 1,\n",
      "          'mean': 1,\n",
      "          'valek': 1,\n",
      "          'thomas': 1,\n",
      "          'ian': 1,\n",
      "          'griffith': 1,\n",
      "          'tipped': 1,\n",
      "          'gone': 1,\n",
      "          'sidekick': 1,\n",
      "          'montoya': 1,\n",
      "          'daniel': 1,\n",
      "          'baldwin': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'know': 1,\n",
      "          'side': 1,\n",
      "          'backers': 1,\n",
      "          'trust': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'sure': 1,\n",
      "          'must': 1,\n",
      "          'hidden': 1,\n",
      "          'somewhere': 1,\n",
      "          'nif': 1,\n",
      "          'sounding': 1,\n",
      "          'tired': 1,\n",
      "          'police': 1,\n",
      "          'corruption': 1,\n",
      "          'substitutions': 1,\n",
      "          'thats': 1,\n",
      "          'exactly': 1,\n",
      "          'looks': 1,\n",
      "          'two': 1,\n",
      "          'partner': 1,\n",
      "          'cops': 1,\n",
      "          'gang': 1,\n",
      "          'hood': 1,\n",
      "          'packet': 1,\n",
      "          'heroin': 1,\n",
      "          'goes': 1,\n",
      "          'familiar': 1,\n",
      "          'principle': 1,\n",
      "          'dont': 1,\n",
      "          'njust': 1,\n",
      "          'everything': 1,\n",
      "          'told': 1,\n",
      "          'shown': 1,\n",
      "          'nfundamental': 1,\n",
      "          'funding': 1,\n",
      "          'mexicowhat': 1,\n",
      "          'connection': 1,\n",
      "          'catholic': 1,\n",
      "          'church': 1,\n",
      "          'come': 1,\n",
      "          'hunter': 1,\n",
      "          'devote': 1,\n",
      "          'answers': 1,\n",
      "          'dramatized': 1,\n",
      "          'instead': 1,\n",
      "          'revealed': 1,\n",
      "          'bad': 1,\n",
      "          'misuses': 1,\n",
      "          'wood': 1,\n",
      "          'persona': 1,\n",
      "          'plays': 1,\n",
      "          'particular': 1,\n",
      "          'sort': 1,\n",
      "          'cool': 1,\n",
      "          'lowlife': 1,\n",
      "          'leads': 1,\n",
      "          'sergioleone': 1,\n",
      "          'posturing': 1,\n",
      "          'crew': 1,\n",
      "          'prepares': 1,\n",
      "          'stands': 1,\n",
      "          'staring': 1,\n",
      "          'fixedly': 1,\n",
      "          'shades': 1,\n",
      "          'target': 1,\n",
      "          'larger': 1,\n",
      "          'hero': 1,\n",
      "          'simple': 1,\n",
      "          'things': 1,\n",
      "          'misses': 1,\n",
      "          'one': 1,\n",
      "          'motel': 1,\n",
      "          'room': 1,\n",
      "          'dead': 1,\n",
      "          'female': 1,\n",
      "          'corpse': 1,\n",
      "          'front': 1,\n",
      "          'inch': 1,\n",
      "          'daylight': 1,\n",
      "          'nas': 1,\n",
      "          'actress': 1,\n",
      "          'breathes': 1,\n",
      "          'gap': 1,\n",
      "          'widening': 1,\n",
      "          'narrowing': 1,\n",
      "          'makes': 1,\n",
      "          'arm': 1,\n",
      "          'moving': 1,\n",
      "          'wonders': 1,\n",
      "          'existence': 1,\n",
      "          'secret': 1,\n",
      "          'nthese': 1,\n",
      "          'maintain': 1,\n",
      "          'low': 1,\n",
      "          'profile': 1,\n",
      "          'arguably': 1,\n",
      "          'logical': 1,\n",
      "          'flaws': 1,\n",
      "          'mind': 1,\n",
      "          'whether': 1,\n",
      "          'consistent': 1,\n",
      "          'policy': 1,\n",
      "          'bullets': 1,\n",
      "          'nit': 1,\n",
      "          'take': 1,\n",
      "          'rationalization': 1,\n",
      "          'explain': 1,\n",
      "          'scenes': 1,\n",
      "          'dramatic': 1,\n",
      "          'yet': 1,\n",
      "          'toward': 1,\n",
      "          'walk': 1,\n",
      "          'burned': 1,\n",
      "          'roof': 1,\n",
      "          'lets': 1,\n",
      "          'swept': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'beams': 1,\n",
      "          'ni': 1,\n",
      "          'suspect': 1,\n",
      "          'better': 1,\n",
      "          'thought': 1,\n",
      "          'might': 1,\n",
      "          'recommend': 1,\n",
      "          'audience': 1,\n",
      "          'say': 1,\n",
      "          'look': 1,\n",
      "          'rates': 1,\n",
      "          '10': 1,\n",
      "          'nperhaps': 1,\n",
      "          'read': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 13,\n",
      "          'game': 9,\n",
      "          'films': 6,\n",
      "          'douglas': 5,\n",
      "          'us': 5,\n",
      "          'ni': 5,\n",
      "          'n': 4,\n",
      "          'simply': 4,\n",
      "          'real': 4,\n",
      "          'nicholas': 4,\n",
      "          'nhe': 4,\n",
      "          'really': 4,\n",
      "          'nthere': 4,\n",
      "          'dont': 3,\n",
      "          'believe': 3,\n",
      "          'nthis': 3,\n",
      "          'director': 3,\n",
      "          'isnt': 3,\n",
      "          'would': 3,\n",
      "          'nthe': 3,\n",
      "          'life': 3,\n",
      "          'brother': 3,\n",
      "          'whole': 3,\n",
      "          'considering': 2,\n",
      "          'hype': 2,\n",
      "          'concept': 2,\n",
      "          'fantasy': 2,\n",
      "          'twist': 2,\n",
      "          'birthday': 2,\n",
      "          'van': 2,\n",
      "          'orton': 2,\n",
      "          'conrad': 2,\n",
      "          'hands': 2,\n",
      "          'tells': 2,\n",
      "          'clear': 2,\n",
      "          'time': 2,\n",
      "          'made': 2,\n",
      "          'crs': 2,\n",
      "          'happening': 2,\n",
      "          'none': 2,\n",
      "          'joe': 2,\n",
      "          'eszterhas': 2,\n",
      "          'verhoeven': 2,\n",
      "          'premise': 2,\n",
      "          'nin': 2,\n",
      "          'way': 2,\n",
      "          'nyet': 2,\n",
      "          'suspense': 2,\n",
      "          'tell': 2,\n",
      "          'ride': 2,\n",
      "          'say': 2,\n",
      "          'back': 2,\n",
      "          'plot': 2,\n",
      "          'moment': 2,\n",
      "          'trying': 2,\n",
      "          'thing': 2,\n",
      "          'like': 2,\n",
      "          'two': 2,\n",
      "          'david': 1,\n",
      "          'finchers': 1,\n",
      "          'latest': 1,\n",
      "          'four': 1,\n",
      "          'words': 1,\n",
      "          'come': 1,\n",
      "          'mind': 1,\n",
      "          'michael': 1,\n",
      "          'vehicle': 1,\n",
      "          'seven': 1,\n",
      "          'nearly': 1,\n",
      "          'clever': 1,\n",
      "          'innovatively': 1,\n",
      "          'suspenseful': 1,\n",
      "          'draws': 1,\n",
      "          'intriguing': 1,\n",
      "          'aided': 1,\n",
      "          'doubt': 1,\n",
      "          'riveting': 1,\n",
      "          'trailer': 1,\n",
      "          'jaded': 1,\n",
      "          'millionaire': 1,\n",
      "          'presented': 1,\n",
      "          'opportunity': 1,\n",
      "          'enter': 1,\n",
      "          'living': 1,\n",
      "          'virtual': 1,\n",
      "          'reality': 1,\n",
      "          'deadly': 1,\n",
      "          'non': 1,\n",
      "          '48th': 1,\n",
      "          'invited': 1,\n",
      "          'dinner': 1,\n",
      "          'underachieving': 1,\n",
      "          'younger': 1,\n",
      "          'sean': 1,\n",
      "          'penn': 1,\n",
      "          'nconrad': 1,\n",
      "          'special': 1,\n",
      "          'present': 1,\n",
      "          'gift': 1,\n",
      "          'certificate': 1,\n",
      "          'contact': 1,\n",
      "          'company': 1,\n",
      "          'called': 1,\n",
      "          'consumer': 1,\n",
      "          'recreation': 1,\n",
      "          'services': 1,\n",
      "          'make': 1,\n",
      "          'fun': 1,\n",
      "          'nnicholas': 1,\n",
      "          'humors': 1,\n",
      "          'telling': 1,\n",
      "          'hell': 1,\n",
      "          'call': 1,\n",
      "          'foolish': 1,\n",
      "          'roleplaying': 1,\n",
      "          'calls': 1,\n",
      "          'nthen': 1,\n",
      "          'reasons': 1,\n",
      "          'never': 1,\n",
      "          'decides': 1,\n",
      "          'go': 1,\n",
      "          'see': 1,\n",
      "          'theyre': 1,\n",
      "          'ends': 1,\n",
      "          'spending': 1,\n",
      "          'day': 1,\n",
      "          'going': 1,\n",
      "          'screening': 1,\n",
      "          'process': 1,\n",
      "          'sense': 1,\n",
      "          'tight': 1,\n",
      "          'schedule': 1,\n",
      "          'keeps': 1,\n",
      "          'claiming': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'seems': 1,\n",
      "          'rejected': 1,\n",
      "          'client': 1,\n",
      "          'weird': 1,\n",
      "          'things': 1,\n",
      "          'start': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'weve': 1,\n",
      "          'covered': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'screen': 1,\n",
      "          'else': 1,\n",
      "          'expect': 1,\n",
      "          'ndouglas': 1,\n",
      "          'built': 1,\n",
      "          'modern': 1,\n",
      "          'career': 1,\n",
      "          'around': 1,\n",
      "          'playing': 1,\n",
      "          'powerful': 1,\n",
      "          'violent': 1,\n",
      "          'unlikable': 1,\n",
      "          'men': 1,\n",
      "          'manipulated': 1,\n",
      "          'unseen': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'came': 1,\n",
      "          'creative': 1,\n",
      "          'minds': 1,\n",
      "          'writer': 1,\n",
      "          'paul': 1,\n",
      "          'unlike': 1,\n",
      "          'another': 1,\n",
      "          'total': 1,\n",
      "          'recall': 1,\n",
      "          'case': 1,\n",
      "          'implanting': 1,\n",
      "          'someone': 1,\n",
      "          'elses': 1,\n",
      "          'memories': 1,\n",
      "          'enhance': 1,\n",
      "          'ones': 1,\n",
      "          'dream': 1,\n",
      "          'vacation': 1,\n",
      "          'goal': 1,\n",
      "          'create': 1,\n",
      "          'vicarious': 1,\n",
      "          'bond': 1,\n",
      "          'audience': 1,\n",
      "          'nwe': 1,\n",
      "          'live': 1,\n",
      "          'adventure': 1,\n",
      "          'along': 1,\n",
      "          'protagonist': 1,\n",
      "          'reacting': 1,\n",
      "          'turn': 1,\n",
      "          'theory': 1,\n",
      "          'key': 1,\n",
      "          'nall': 1,\n",
      "          'hang': 1,\n",
      "          'end': 1,\n",
      "          'truth': 1,\n",
      "          'finally': 1,\n",
      "          'revealed': 1,\n",
      "          'nnow': 1,\n",
      "          'forgot': 1,\n",
      "          'let': 1,\n",
      "          'thrilling': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'nas': 1,\n",
      "          'suspensethriller': 1,\n",
      "          'doesnt': 1,\n",
      "          'much': 1,\n",
      "          'spin': 1,\n",
      "          'circles': 1,\n",
      "          'nby': 1,\n",
      "          'third': 1,\n",
      "          'reel': 1,\n",
      "          'fighting': 1,\n",
      "          'sleep': 1,\n",
      "          'checking': 1,\n",
      "          'watch': 1,\n",
      "          'endured': 1,\n",
      "          'predictable': 1,\n",
      "          'nis': 1,\n",
      "          'wonder': 1,\n",
      "          'wont': 1,\n",
      "          'able': 1,\n",
      "          'resist': 1,\n",
      "          'charms': 1,\n",
      "          'mysterious': 1,\n",
      "          'potentially': 1,\n",
      "          'lifethreatening': 1,\n",
      "          'blonde': 1,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'glenn': 1,\n",
      "          'close': 1,\n",
      "          'nno': 1,\n",
      "          'well': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'nthought': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'surprises': 1,\n",
      "          'guess': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'many': 1,\n",
      "          'ntrust': 1,\n",
      "          'looked': 1,\n",
      "          'hard': 1,\n",
      "          'find': 1,\n",
      "          'settle': 1,\n",
      "          'contrived': 1,\n",
      "          'gimmicks': 1,\n",
      "          'ridiculously': 1,\n",
      "          'implausible': 1,\n",
      "          'situations': 1,\n",
      "          'nfincher': 1,\n",
      "          'aims': 1,\n",
      "          'hitchcock': 1,\n",
      "          'lands': 1,\n",
      "          'somewhere': 1,\n",
      "          'north': 1,\n",
      "          'might': 1,\n",
      "          'intended': 1,\n",
      "          'viewed': 1,\n",
      "          'literally': 1,\n",
      "          'submit': 1,\n",
      "          'exactly': 1,\n",
      "          'tried': 1,\n",
      "          'view': 1,\n",
      "          'teeth': 1,\n",
      "          'bite': 1,\n",
      "          'psychological': 1,\n",
      "          'issues': 1,\n",
      "          'early': 1,\n",
      "          'realizing': 1,\n",
      "          'begun': 1,\n",
      "          'smiles': 1,\n",
      "          'walks': 1,\n",
      "          'airport': 1,\n",
      "          'figure': 1,\n",
      "          'whos': 1,\n",
      "          'charged': 1,\n",
      "          'paranoia': 1,\n",
      "          'looking': 1,\n",
      "          'world': 1,\n",
      "          'new': 1,\n",
      "          'eyes': 1,\n",
      "          'nit': 1,\n",
      "          'last': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'nfrom': 1,\n",
      "          'wants': 1,\n",
      "          'stay': 1,\n",
      "          'step': 1,\n",
      "          'ahead': 1,\n",
      "          'nany': 1,\n",
      "          'significant': 1,\n",
      "          'archetype': 1,\n",
      "          'set': 1,\n",
      "          'beginning': 1,\n",
      "          'turned': 1,\n",
      "          'device': 1,\n",
      "          'nat': 1,\n",
      "          'outset': 1,\n",
      "          'told': 1,\n",
      "          'tailored': 1,\n",
      "          'individual': 1,\n",
      "          'nultimately': 1,\n",
      "          'supposed': 1,\n",
      "          'work': 1,\n",
      "          'crucible': 1,\n",
      "          'obscenely': 1,\n",
      "          'wealthy': 1,\n",
      "          'emotionally': 1,\n",
      "          'detached': 1,\n",
      "          'aristocrat': 1,\n",
      "          'fire': 1,\n",
      "          'proving': 1,\n",
      "          'soul': 1,\n",
      "          'endures': 1,\n",
      "          'personal': 1,\n",
      "          'gauntlet': 1,\n",
      "          'given': 1,\n",
      "          'pieces': 1,\n",
      "          'puzzle': 1,\n",
      "          'illuminate': 1,\n",
      "          'man': 1,\n",
      "          'wanted': 1,\n",
      "          'look': 1,\n",
      "          'anothergreat': 1,\n",
      "          'idea': 1,\n",
      "          'poorly': 1,\n",
      "          'realized': 1,\n",
      "          'think': 1,\n",
      "          'least': 1,\n",
      "          'superior': 1,\n",
      "          'watching': 1,\n",
      "          'didnt': 1,\n",
      "          'mean': 1,\n",
      "          'seeing': 1,\n",
      "          'nbryan': 1,\n",
      "          'singers': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'one': 1,\n",
      "          'truly': 1,\n",
      "          'unique': 1,\n",
      "          'ability': 1,\n",
      "          'get': 1,\n",
      "          'lost': 1,\n",
      "          'details': 1,\n",
      "          'pulling': 1,\n",
      "          'show': 1,\n",
      "          'full': 1,\n",
      "          'masterpiece': 1,\n",
      "          'canvas': 1,\n",
      "          'nalso': 1,\n",
      "          'underrated': 1,\n",
      "          'jacobs': 1,\n",
      "          'ladder': 1,\n",
      "          'tim': 1,\n",
      "          'robbins': 1,\n",
      "          'watched': 1,\n",
      "          'twice': 1,\n",
      "          'recognize': 1,\n",
      "          'significance': 1,\n",
      "          'symbolism': 1,\n",
      "          'nhere': 1,\n",
      "          'examples': 1,\n",
      "          'manipulate': 1,\n",
      "          'manipulations': 1,\n",
      "          'sake': 1,\n",
      "          'use': 1,\n",
      "          'labyrinth': 1,\n",
      "          'structure': 1,\n",
      "          'lead': 1,\n",
      "          'meaningful': 1,\n",
      "          'place': 1,\n",
      "          'major': 1,\n",
      "          'issue': 1,\n",
      "          'comes': 1,\n",
      "          'whether': 1,\n",
      "          'illusion': 1,\n",
      "          'highly': 1,\n",
      "          'sophisticated': 1,\n",
      "          'con': 1,\n",
      "          'nwell': 1,\n",
      "          'right': 1,\n",
      "          'youve': 1,\n",
      "          'spent': 1,\n",
      "          '7': 1,\n",
      "          'dollars': 1,\n",
      "          'may': 1,\n",
      "          'asking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'war': 12,\n",
      "          'film': 10,\n",
      "          'private': 7,\n",
      "          'combat': 7,\n",
      "          'nthe': 7,\n",
      "          'spielberg': 6,\n",
      "          'men': 6,\n",
      "          'ryan_': 5,\n",
      "          'ryan': 5,\n",
      "          '_saving': 4,\n",
      "          'aspect': 4,\n",
      "          'world': 4,\n",
      "          'man': 4,\n",
      "          'movie': 4,\n",
      "          'miller': 4,\n",
      "          'realistic': 4,\n",
      "          'corpses': 4,\n",
      "          'every': 3,\n",
      "          'story': 3,\n",
      "          'eight': 3,\n",
      "          'soldiers': 3,\n",
      "          'captain': 3,\n",
      "          'depiction': 3,\n",
      "          'death': 3,\n",
      "          'without': 3,\n",
      "          'wounds': 3,\n",
      "          'one': 3,\n",
      "          'limbs': 3,\n",
      "          'swearing': 3,\n",
      "          'lines': 2,\n",
      "          'spielbergs': 2,\n",
      "          'realism': 2,\n",
      "          'nthere': 2,\n",
      "          'steven': 2,\n",
      "          'making': 2,\n",
      "          'way': 2,\n",
      "          'falls': 2,\n",
      "          'place': 2,\n",
      "          'make': 2,\n",
      "          'perfect': 2,\n",
      "          'nbut': 2,\n",
      "          'topic': 2,\n",
      "          'second': 2,\n",
      "          'events': 2,\n",
      "          'whose': 2,\n",
      "          'evil': 2,\n",
      "          'utterly': 2,\n",
      "          'killed': 2,\n",
      "          'search': 2,\n",
      "          'ii': 2,\n",
      "          'opening': 2,\n",
      "          'possibly': 2,\n",
      "          'actually': 2,\n",
      "          'modern': 2,\n",
      "          'nanother': 2,\n",
      "          'scenes': 2,\n",
      "          'largely': 2,\n",
      "          'troops': 2,\n",
      "          'convincing': 2,\n",
      "          'single': 2,\n",
      "          'see': 2,\n",
      "          'scene': 2,\n",
      "          'pulling': 2,\n",
      "          'back': 2,\n",
      "          'wartime': 2,\n",
      "          'moments': 2,\n",
      "          'lack': 2,\n",
      "          'particular': 2,\n",
      "          'behavior': 2,\n",
      "          'n': 2,\n",
      "          'could': 2,\n",
      "          'family': 2,\n",
      "          'material': 2,\n",
      "          'closing': 2,\n",
      "          'weighed': 1,\n",
      "          'tired': 1,\n",
      "          'plot': 1,\n",
      "          'reliance': 1,\n",
      "          'formulas': 1,\n",
      "          'mediocre': 1,\n",
      "          'nods': 1,\n",
      "          'direction': 1,\n",
      "          'descending': 1,\n",
      "          'abyss': 1,\n",
      "          'cliches': 1,\n",
      "          'ought': 1,\n",
      "          'law': 1,\n",
      "          'movies': 1,\n",
      "          'truly': 1,\n",
      "          'serious': 1,\n",
      "          'topics': 1,\n",
      "          'nspielbergs': 1,\n",
      "          'greatest': 1,\n",
      "          'strength': 1,\n",
      "          'director': 1,\n",
      "          'polished': 1,\n",
      "          'formulaic': 1,\n",
      "          'carefully': 1,\n",
      "          'weight': 1,\n",
      "          'holocaust': 1,\n",
      "          'technique': 1,\n",
      "          'backfires': 1,\n",
      "          'creates': 1,\n",
      "          'coherent': 1,\n",
      "          'comprehensible': 1,\n",
      "          'redemptive': 1,\n",
      "          'narratives': 1,\n",
      "          'size': 1,\n",
      "          'complexity': 1,\n",
      "          'beyond': 1,\n",
      "          'reach': 1,\n",
      "          'human': 1,\n",
      "          'ken': 1,\n",
      "          'nin': 1,\n",
      "          'trivializes': 1,\n",
      "          'awesome': 1,\n",
      "          'stories': 1,\n",
      "          'films': 1,\n",
      "          'n_saving': 1,\n",
      "          'tells': 1,\n",
      "          'detailed': 1,\n",
      "          'pr': 1,\n",
      "          'mission': 1,\n",
      "          'pull': 1,\n",
      "          'young': 1,\n",
      "          'three': 1,\n",
      "          'brothers': 1,\n",
      "          'fighting': 1,\n",
      "          'elsewhere': 1,\n",
      "          'normandy': 1,\n",
      "          'front': 1,\n",
      "          'dday': 1,\n",
      "          'nryan': 1,\n",
      "          'paratrooper': 1,\n",
      "          'dropped': 1,\n",
      "          'behind': 1,\n",
      "          'enemy': 1,\n",
      "          'night': 1,\n",
      "          'landings': 1,\n",
      "          'became': 1,\n",
      "          'separated': 1,\n",
      "          'fellow': 1,\n",
      "          'takes': 1,\n",
      "          'across': 1,\n",
      "          'hellish': 1,\n",
      "          'terrain': 1,\n",
      "          'france': 1,\n",
      "          'ntheres': 1,\n",
      "          'denying': 1,\n",
      "          'came': 1,\n",
      "          'within': 1,\n",
      "          'shouting': 1,\n",
      "          'distance': 1,\n",
      "          'great': 1,\n",
      "          'equipment': 1,\n",
      "          'uniforms': 1,\n",
      "          'weapons': 1,\n",
      "          'superbly': 1,\n",
      "          'done': 1,\n",
      "          'sequence': 1,\n",
      "          'tom': 1,\n",
      "          'hanks': 1,\n",
      "          'leads': 1,\n",
      "          'onto': 1,\n",
      "          'omaha': 1,\n",
      "          'beach': 1,\n",
      "          'quite': 1,\n",
      "          'closest': 1,\n",
      "          'anyone': 1,\n",
      "          'come': 1,\n",
      "          'capturing': 1,\n",
      "          'unendurably': 1,\n",
      "          'savage': 1,\n",
      "          'intensity': 1,\n",
      "          'infantry': 1,\n",
      "          'pleasing': 1,\n",
      "          'brave': 1,\n",
      "          'unknown': 1,\n",
      "          'american': 1,\n",
      "          'audiences': 1,\n",
      "          'shooting': 1,\n",
      "          'prisoners': 1,\n",
      "          'allied': 1,\n",
      "          'banality': 1,\n",
      "          'routine': 1,\n",
      "          'foulups': 1,\n",
      "          'execution': 1,\n",
      "          'cynicism': 1,\n",
      "          'technical': 1,\n",
      "          'side': 1,\n",
      "          'peerless': 1,\n",
      "          'always': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'magnificent': 1,\n",
      "          'pacing': 1,\n",
      "          'sets': 1,\n",
      "          'directing': 1,\n",
      "          'flaw': 1,\n",
      "          'nhanks': 1,\n",
      "          'doubt': 1,\n",
      "          'nominated': 1,\n",
      "          'oscar': 1,\n",
      "          'performance': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'excellent': 1,\n",
      "          'though': 1,\n",
      "          'ted': 1,\n",
      "          'danson': 1,\n",
      "          'seems': 1,\n",
      "          'mite': 1,\n",
      "          'paratroop': 1,\n",
      "          'colonel': 1,\n",
      "          'nyet': 1,\n",
      "          'attempt': 1,\n",
      "          'flat': 1,\n",
      "          'face': 1,\n",
      "          'something': 1,\n",
      "          'represented': 1,\n",
      "          'instances': 1,\n",
      "          'nit': 1,\n",
      "          'thoroughly': 1,\n",
      "          'permeate': 1,\n",
      "          'context': 1,\n",
      "          'level': 1,\n",
      "          'fails': 1,\n",
      "          'convince': 1,\n",
      "          'nthroughout': 1,\n",
      "          'repeatedly': 1,\n",
      "          'showed': 1,\n",
      "          'examples': 1,\n",
      "          'grotesque': 1,\n",
      "          'produced': 1,\n",
      "          'mechanized': 1,\n",
      "          'devices': 1,\n",
      "          'exception': 1,\n",
      "          'shown': 1,\n",
      "          'burning': 1,\n",
      "          'relative': 1,\n",
      "          'frequency': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'guts': 1,\n",
      "          'spilled': 1,\n",
      "          'ground': 1,\n",
      "          'nhere': 1,\n",
      "          'lose': 1,\n",
      "          'safety': 1,\n",
      "          'theres': 1,\n",
      "          'explosion': 1,\n",
      "          'looks': 1,\n",
      "          'half': 1,\n",
      "          'rest': 1,\n",
      "          'remarkably': 1,\n",
      "          'intact': 1,\n",
      "          'shoes': 1,\n",
      "          'feet': 1,\n",
      "          'scattered': 1,\n",
      "          'everywhere': 1,\n",
      "          'torsos': 1,\n",
      "          'charred': 1,\n",
      "          'importantly': 1,\n",
      "          'heads': 1,\n",
      "          'fairness': 1,\n",
      "          'smattering': 1,\n",
      "          'wicked': 1,\n",
      "          'head': 1,\n",
      "          'relentless': 1,\n",
      "          'dehumanization': 1,\n",
      "          'even': 1,\n",
      "          'failed': 1,\n",
      "          'retain': 1,\n",
      "          'indentity': 1,\n",
      "          'softpedaled': 1,\n",
      "          'nultimately': 1,\n",
      "          'bows': 1,\n",
      "          'hollywood': 1,\n",
      "          'convention': 1,\n",
      "          'unwritten': 1,\n",
      "          'rules': 1,\n",
      "          'photography': 1,\n",
      "          'portrayal': 1,\n",
      "          'nrather': 1,\n",
      "          'saying': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'describe': 1,\n",
      "          'hollywoodization': 1,\n",
      "          'dialogue': 1,\n",
      "          'nanyone': 1,\n",
      "          'familiar': 1,\n",
      "          'literature': 1,\n",
      "          'fussells': 1,\n",
      "          'superb': 1,\n",
      "          '_wartime': 1,\n",
      "          'understanding': 1,\n",
      "          'war_': 1,\n",
      "          'extensive': 1,\n",
      "          'discussion': 1,\n",
      "          'knows': 1,\n",
      "          'swore': 1,\n",
      "          'fluently': 1,\n",
      "          'letup': 1,\n",
      "          'die': 1,\n",
      "          'nasks': 1,\n",
      "          'infantrymen': 1,\n",
      "          'group': 1,\n",
      "          'nrendered': 1,\n",
      "          'demotic': 1,\n",
      "          'expressed': 1,\n",
      "          'little': 1,\n",
      "          'pecker': 1,\n",
      "          'get': 1,\n",
      "          'dicks': 1,\n",
      "          'shot': 1,\n",
      "          'variant': 1,\n",
      "          'thereof': 1,\n",
      "          'nconversations': 1,\n",
      "          'literally': 1,\n",
      "          'sprinkled': 1,\n",
      "          'f': 1,\n",
      "          'word': 1,\n",
      "          'food': 1,\n",
      "          'sex': 1,\n",
      "          'nthis': 1,\n",
      "          'inexplicable': 1,\n",
      "          'already': 1,\n",
      "          'r': 1,\n",
      "          'rating': 1,\n",
      "          'due': 1,\n",
      "          'violence': 1,\n",
      "          'eliminated': 1,\n",
      "          'nhowever': 1,\n",
      "          'troubling': 1,\n",
      "          'spielbergization': 1,\n",
      "          'intense': 1,\n",
      "          'hell': 1,\n",
      "          'humans': 1,\n",
      "          'ever': 1,\n",
      "          'created': 1,\n",
      "          'emotionally': 1,\n",
      "          'wrenching': 1,\n",
      "          'enough': 1,\n",
      "          'nhe': 1,\n",
      "          'cede': 1,\n",
      "          'control': 1,\n",
      "          'bigger': 1,\n",
      "          'nas': 1,\n",
      "          'afraid': 1,\n",
      "          'let': 1,\n",
      "          'viewer': 1,\n",
      "          'find': 1,\n",
      "          'perhaps': 1,\n",
      "          'unsettled': 1,\n",
      "          'entirely': 1,\n",
      "          'clear': 1,\n",
      "          'emotional': 1,\n",
      "          'foothold': 1,\n",
      "          'package': 1,\n",
      "          'hallmark': 1,\n",
      "          'give': 1,\n",
      "          'meaning': 1,\n",
      "          'coherence': 1,\n",
      "          'never': 1,\n",
      "          'cemetary': 1,\n",
      "          'reminscent': 1,\n",
      "          '_schindlers': 1,\n",
      "          'list': 1,\n",
      "          'saccharine': 1,\n",
      "          'exchange': 1,\n",
      "          'wife': 1,\n",
      "          'close': 1,\n",
      "          'bit': 1,\n",
      "          'bad': 1,\n",
      "          'schindlers': 1,\n",
      "          'monologue': 1,\n",
      "          'car': 1,\n",
      "          'tiepin': 1,\n",
      "          'ring': 1,\n",
      "          'saved': 1,\n",
      "          'another': 1,\n",
      "          'jew': 1,\n",
      "          'quotes': 1,\n",
      "          'abraham': 1,\n",
      "          'lincoln': 1,\n",
      "          'emerson': 1,\n",
      "          'millers': 1,\n",
      "          'last': 1,\n",
      "          'words': 1,\n",
      "          'unbelievable': 1,\n",
      "          'storyline': 1,\n",
      "          'prisoner': 1,\n",
      "          'free': 1,\n",
      "          'earlier': 1,\n",
      "          'comes': 1,\n",
      "          'kill': 1,\n",
      "          'nthat': 1,\n",
      "          'subplot': 1,\n",
      "          'hokey': 1,\n",
      "          'predictable': 1,\n",
      "          'nigh': 1,\n",
      "          'ruins': 1,\n",
      "          'nnowhere': 1,\n",
      "          'resolute': 1,\n",
      "          'meaninglessness': 1,\n",
      "          'stupidity': 1,\n",
      "          'waste': 1,\n",
      "          'characterized': 1,\n",
      "          'experience': 1,\n",
      "          'fought': 1,\n",
      "          'imagine': 1,\n",
      "          'friendly': 1,\n",
      "          'fire': 1,\n",
      "          'collateral': 1,\n",
      "          'damage': 1,\n",
      "          'nbecause': 1,\n",
      "          'failure': 1,\n",
      "          'mine': 1,\n",
      "          'deeply': 1,\n",
      "          'terrible': 1,\n",
      "          'realities': 1,\n",
      "          'pan': 1,\n",
      "          'small': 1,\n",
      "          'truths': 1,\n",
      "          'shallows': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'allen': 10,\n",
      "          'character': 7,\n",
      "          'people': 6,\n",
      "          'hes': 6,\n",
      "          'like': 6,\n",
      "          'nthe': 6,\n",
      "          'film': 5,\n",
      "          'celebrity': 5,\n",
      "          'rest': 4,\n",
      "          'characters': 4,\n",
      "          'movie': 4,\n",
      "          'make': 3,\n",
      "          'know': 3,\n",
      "          'us': 3,\n",
      "          'story': 3,\n",
      "          'robin': 3,\n",
      "          'main': 3,\n",
      "          'one': 3,\n",
      "          'problem': 3,\n",
      "          'dull': 3,\n",
      "          'ni': 3,\n",
      "          'scene': 3,\n",
      "          'youre': 2,\n",
      "          'going': 2,\n",
      "          'hollywood': 2,\n",
      "          'nif': 2,\n",
      "          'woody': 2,\n",
      "          'playing': 2,\n",
      "          'interest': 2,\n",
      "          'creating': 2,\n",
      "          'really': 2,\n",
      "          'wanted': 2,\n",
      "          'recent': 2,\n",
      "          'ncelebrity': 2,\n",
      "          'another': 2,\n",
      "          'nallen': 2,\n",
      "          'picture': 2,\n",
      "          'imitation': 2,\n",
      "          'nbranagh': 2,\n",
      "          'plays': 2,\n",
      "          'simon': 2,\n",
      "          'women': 2,\n",
      "          'famke': 2,\n",
      "          'janssen': 2,\n",
      "          'theron': 2,\n",
      "          'ryder': 2,\n",
      "          'get': 2,\n",
      "          'big': 2,\n",
      "          'dicaprio': 2,\n",
      "          'car': 2,\n",
      "          'work': 2,\n",
      "          'guy': 2,\n",
      "          'woman': 2,\n",
      "          'pretty': 2,\n",
      "          'nin': 2,\n",
      "          'addition': 2,\n",
      "          'dont': 2,\n",
      "          'funny': 2,\n",
      "          'way': 2,\n",
      "          'normal': 2,\n",
      "          'look': 2,\n",
      "          'celebrities': 2,\n",
      "          'image': 2,\n",
      "          'interesting': 2,\n",
      "          'allens': 2,\n",
      "          'twohour': 1,\n",
      "          'injoke': 1,\n",
      "          'bother': 1,\n",
      "          'releasing': 1,\n",
      "          'general': 1,\n",
      "          'public': 1,\n",
      "          'create': 1,\n",
      "          'appeal': 1,\n",
      "          'primarily': 1,\n",
      "          'bigname': 1,\n",
      "          'actors': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'peons': 1,\n",
      "          'theaters': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'realized': 1,\n",
      "          'marginal': 1,\n",
      "          'real': 1,\n",
      "          'nwhat': 1,\n",
      "          'continue': 1,\n",
      "          'kick': 1,\n",
      "          'conceited': 1,\n",
      "          'selfdeprecation': 1,\n",
      "          'yet': 1,\n",
      "          'tells': 1,\n",
      "          'living': 1,\n",
      "          'world': 1,\n",
      "          'familiar': 1,\n",
      "          'dealing': 1,\n",
      "          'ones': 1,\n",
      "          'actually': 1,\n",
      "          'knows': 1,\n",
      "          'recruited': 1,\n",
      "          'poor': 1,\n",
      "          'kenneth': 1,\n",
      "          'branagh': 1,\n",
      "          'bumble': 1,\n",
      "          'perfect': 1,\n",
      "          'almost': 1,\n",
      "          'made': 1,\n",
      "          'lee': 1,\n",
      "          'journalistturnedscreenwriter': 1,\n",
      "          'divorces': 1,\n",
      "          'wife': 1,\n",
      "          'judy': 1,\n",
      "          'davis': 1,\n",
      "          'shacks': 1,\n",
      "          'hot': 1,\n",
      "          'charlize': 1,\n",
      "          'winona': 1,\n",
      "          'goes': 1,\n",
      "          'trying': 1,\n",
      "          'stars': 1,\n",
      "          'melanie': 1,\n",
      "          'griffith': 1,\n",
      "          'leonardo': 1,\n",
      "          'read': 1,\n",
      "          'script': 1,\n",
      "          'armored': 1,\n",
      "          'robbery': 1,\n",
      "          'usual': 1,\n",
      "          'elements': 1,\n",
      "          'films': 1,\n",
      "          'including': 1,\n",
      "          'sexual': 1,\n",
      "          'insecurity': 1,\n",
      "          'lots': 1,\n",
      "          'selfloathing': 1,\n",
      "          'tiring': 1,\n",
      "          'continuum': 1,\n",
      "          'episodes': 1,\n",
      "          'loosely': 1,\n",
      "          'related': 1,\n",
      "          'nunless': 1,\n",
      "          'industry': 1,\n",
      "          'personally': 1,\n",
      "          'likely': 1,\n",
      "          'youll': 1,\n",
      "          'find': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'naside': 1,\n",
      "          'injokes': 1,\n",
      "          'falls': 1,\n",
      "          'far': 1,\n",
      "          'short': 1,\n",
      "          'compelling': 1,\n",
      "          'empty': 1,\n",
      "          'lifeless': 1,\n",
      "          'proves': 1,\n",
      "          'superb': 1,\n",
      "          'performer': 1,\n",
      "          'nailing': 1,\n",
      "          'flawlessly': 1,\n",
      "          'always': 1,\n",
      "          'whos': 1,\n",
      "          'getting': 1,\n",
      "          'little': 1,\n",
      "          'watch': 1,\n",
      "          'mean': 1,\n",
      "          'come': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'seen': 1,\n",
      "          'n': 1,\n",
      "          'hates': 1,\n",
      "          'cant': 1,\n",
      "          'satisfied': 1,\n",
      "          'end': 1,\n",
      "          'nothing': 1,\n",
      "          'solved': 1,\n",
      "          'nhe': 1,\n",
      "          'brings': 1,\n",
      "          'problems': 1,\n",
      "          'upon': 1,\n",
      "          'crashing': 1,\n",
      "          'receiving': 1,\n",
      "          'fellatio': 1,\n",
      "          'stunts': 1,\n",
      "          'hard': 1,\n",
      "          'care': 1,\n",
      "          'isnt': 1,\n",
      "          'capable': 1,\n",
      "          'arent': 1,\n",
      "          'didnt': 1,\n",
      "          'vacant': 1,\n",
      "          'emotional': 1,\n",
      "          'attachment': 1,\n",
      "          'recaptured': 1,\n",
      "          'supporting': 1,\n",
      "          'performances': 1,\n",
      "          'ndavis': 1,\n",
      "          'low': 1,\n",
      "          'selfesteem': 1,\n",
      "          'played': 1,\n",
      "          'deconstructing': 1,\n",
      "          'harry': 1,\n",
      "          'touching': 1,\n",
      "          'moments': 1,\n",
      "          'ends': 1,\n",
      "          'despicable': 1,\n",
      "          'celebritytype': 1,\n",
      "          'fills': 1,\n",
      "          'nsome': 1,\n",
      "          'actresses': 1,\n",
      "          'saved': 1,\n",
      "          'beauty': 1,\n",
      "          'especially': 1,\n",
      "          'theyre': 1,\n",
      "          'likable': 1,\n",
      "          'nonly': 1,\n",
      "          'book': 1,\n",
      "          'editor': 1,\n",
      "          'interested': 1,\n",
      "          'simons': 1,\n",
      "          'new': 1,\n",
      "          'novel': 1,\n",
      "          'life': 1,\n",
      "          'men': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'joe': 1,\n",
      "          'mantegna': 1,\n",
      "          'man': 1,\n",
      "          'remarries': 1,\n",
      "          'christian': 1,\n",
      "          'slaterjohnny': 1,\n",
      "          'depptype': 1,\n",
      "          'spoiled': 1,\n",
      "          'young': 1,\n",
      "          'actor': 1,\n",
      "          'disengaging': 1,\n",
      "          'nwhats': 1,\n",
      "          'insulting': 1,\n",
      "          'standard': 1,\n",
      "          'themes': 1,\n",
      "          'seems': 1,\n",
      "          'think': 1,\n",
      "          'making': 1,\n",
      "          'insightful': 1,\n",
      "          'supposed': 1,\n",
      "          'identify': 1,\n",
      "          'entrenched': 1,\n",
      "          'enlightening': 1,\n",
      "          'view': 1,\n",
      "          'media': 1,\n",
      "          'gives': 1,\n",
      "          'none': 1,\n",
      "          'register': 1,\n",
      "          'realistic': 1,\n",
      "          'mostly': 1,\n",
      "          'function': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'boring': 1,\n",
      "          'dialogue': 1,\n",
      "          'decides': 1,\n",
      "          'needs': 1,\n",
      "          'theme': 1,\n",
      "          'expressed': 1,\n",
      "          'explicitly': 1,\n",
      "          'says': 1,\n",
      "          'something': 1,\n",
      "          'see': 1,\n",
      "          'celebrate': 1,\n",
      "          'arguably': 1,\n",
      "          'biggest': 1,\n",
      "          'misfire': 1,\n",
      "          'date': 1,\n",
      "          'nit': 1,\n",
      "          'good': 1,\n",
      "          'scenes': 1,\n",
      "          'therons': 1,\n",
      "          'superorgasmic': 1,\n",
      "          'model': 1,\n",
      "          'kind': 1,\n",
      "          'last': 1,\n",
      "          'might': 1,\n",
      "          'moving': 1,\n",
      "          'shown': 1,\n",
      "          'two': 1,\n",
      "          'nbut': 1,\n",
      "          'failure': 1,\n",
      "          'core': 1,\n",
      "          'unless': 1,\n",
      "          'point': 1,\n",
      "          'selfindulgent': 1,\n",
      "          'friends': 1,\n",
      "          'audience': 1,\n",
      "          'feel': 1,\n",
      "          'outside': 1,\n",
      "          'joke': 1,\n",
      "          'succeeded': 1,\n",
      "          'enjoy': 1,\n",
      "          'feeling': 1,\n",
      "          'outsider': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'vampire': 6,\n",
      "          'blade': 5,\n",
      "          'one': 4,\n",
      "          'vampires': 4,\n",
      "          'could': 3,\n",
      "          'least': 3,\n",
      "          'seems': 3,\n",
      "          'blood': 3,\n",
      "          'used': 2,\n",
      "          'dracula': 2,\n",
      "          'youd': 2,\n",
      "          'nbut': 2,\n",
      "          'bite': 2,\n",
      "          'sort': 2,\n",
      "          'nnot': 2,\n",
      "          'lack': 2,\n",
      "          'half': 2,\n",
      "          'city': 2,\n",
      "          'wonder': 2,\n",
      "          'nyou': 2,\n",
      "          'also': 2,\n",
      "          'get': 2,\n",
      "          'time': 2,\n",
      "          'nblade': 2,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'way': 2,\n",
      "          'course': 2,\n",
      "          'audience': 2,\n",
      "          'enough': 2,\n",
      "          'nhe': 2,\n",
      "          'seven': 2,\n",
      "          'nthis': 2,\n",
      "          'christopher': 2,\n",
      "          'lee': 2,\n",
      "          'nthey': 2,\n",
      "          'anyone': 1,\n",
      "          'become': 1,\n",
      "          'nusually': 1,\n",
      "          'aristocrat': 1,\n",
      "          'count': 1,\n",
      "          'karnstein': 1,\n",
      "          'nto': 1,\n",
      "          'qualify': 1,\n",
      "          'modicum': 1,\n",
      "          'sophistication': 1,\n",
      "          'look': 1,\n",
      "          'cool': 1,\n",
      "          'suave': 1,\n",
      "          'biting': 1,\n",
      "          'young': 1,\n",
      "          'damsels': 1,\n",
      "          'throat': 1,\n",
      "          'today': 1,\n",
      "          'overly': 1,\n",
      "          'politically': 1,\n",
      "          'correct': 1,\n",
      "          'world': 1,\n",
      "          'scuzzylooking': 1,\n",
      "          'longhaired': 1,\n",
      "          'unshaven': 1,\n",
      "          'lout': 1,\n",
      "          'spikedhaired': 1,\n",
      "          'harridans': 1,\n",
      "          'put': 1,\n",
      "          'nby': 1,\n",
      "          'token': 1,\n",
      "          'hunter': 1,\n",
      "          'medical': 1,\n",
      "          'training': 1,\n",
      "          'knowledge': 1,\n",
      "          'occult': 1,\n",
      "          'maybe': 1,\n",
      "          'perhaps': 1,\n",
      "          'professional': 1,\n",
      "          'soldier': 1,\n",
      "          'retired': 1,\n",
      "          'honors': 1,\n",
      "          'times': 1,\n",
      "          'nall': 1,\n",
      "          'need': 1,\n",
      "          'sharp': 1,\n",
      "          'weapons': 1,\n",
      "          'bullets': 1,\n",
      "          'forged': 1,\n",
      "          'silver': 1,\n",
      "          'yahoo': 1,\n",
      "          'buffy': 1,\n",
      "          'nwithout': 1,\n",
      "          'sounding': 1,\n",
      "          'elitist': 1,\n",
      "          'fear': 1,\n",
      "          'greatly': 1,\n",
      "          'diminished': 1,\n",
      "          'exclusivity': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'latest': 1,\n",
      "          'long': 1,\n",
      "          'line': 1,\n",
      "          'movies': 1,\n",
      "          'population': 1,\n",
      "          'putting': 1,\n",
      "          'thousands': 1,\n",
      "          'seem': 1,\n",
      "          'move': 1,\n",
      "          'pay': 1,\n",
      "          'police': 1,\n",
      "          'departments': 1,\n",
      "          'importantly': 1,\n",
      "          'establish': 1,\n",
      "          'exclusive': 1,\n",
      "          'afterhours': 1,\n",
      "          'raves': 1,\n",
      "          'highlight': 1,\n",
      "          'sprinkler': 1,\n",
      "          'system': 1,\n",
      "          'going': 1,\n",
      "          'dousing': 1,\n",
      "          'occupants': 1,\n",
      "          'shower': 1,\n",
      "          'nwith': 1,\n",
      "          'hunt': 1,\n",
      "          'victims': 1,\n",
      "          'clothes': 1,\n",
      "          'drycleaned': 1,\n",
      "          'cleaner': 1,\n",
      "          'ever': 1,\n",
      "          'complains': 1,\n",
      "          'bloodstains': 1,\n",
      "          'based': 1,\n",
      "          'marvel': 1,\n",
      "          'character': 1,\n",
      "          'like': 1,\n",
      "          'visual': 1,\n",
      "          'nthe': 1,\n",
      "          'plot': 1,\n",
      "          'basically': 1,\n",
      "          'repetitiously': 1,\n",
      "          'slashing': 1,\n",
      "          'army': 1,\n",
      "          'seeking': 1,\n",
      "          'leader': 1,\n",
      "          'deacon': 1,\n",
      "          'frost': 1,\n",
      "          'nits': 1,\n",
      "          'hokum': 1,\n",
      "          'nonsense': 1,\n",
      "          'filmmakers': 1,\n",
      "          'play': 1,\n",
      "          'straight': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'advance': 1,\n",
      "          'screening': 1,\n",
      "          'attended': 1,\n",
      "          'didnt': 1,\n",
      "          'see': 1,\n",
      "          'laughed': 1,\n",
      "          'much': 1,\n",
      "          'proceedings': 1,\n",
      "          'know': 1,\n",
      "          'movie': 1,\n",
      "          'trouble': 1,\n",
      "          'scenes': 1,\n",
      "          'gore': 1,\n",
      "          'elicit': 1,\n",
      "          'screams': 1,\n",
      "          'fright': 1,\n",
      "          'instead': 1,\n",
      "          'evoke': 1,\n",
      "          'peels': 1,\n",
      "          'laughter': 1,\n",
      "          'nanother': 1,\n",
      "          'telltale': 1,\n",
      "          'sign': 1,\n",
      "          'admiring': 1,\n",
      "          'heros': 1,\n",
      "          'costume': 1,\n",
      "          'hero': 1,\n",
      "          'nalso': 1,\n",
      "          'todays': 1,\n",
      "          'merely': 1,\n",
      "          'fangs': 1,\n",
      "          'must': 1,\n",
      "          'proficient': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'nwhy': 1,\n",
      "          'supernatural': 1,\n",
      "          'undead': 1,\n",
      "          'needs': 1,\n",
      "          'skills': 1,\n",
      "          'beyond': 1,\n",
      "          'n': 1,\n",
      "          'concept': 1,\n",
      "          'dates': 1,\n",
      "          '1974': 1,\n",
      "          'hammer': 1,\n",
      "          'filmsrun': 1,\n",
      "          'run': 1,\n",
      "          'shaw': 1,\n",
      "          'production': 1,\n",
      "          'legend': 1,\n",
      "          'golden': 1,\n",
      "          'defeated': 1,\n",
      "          'karatechopping': 1,\n",
      "          'siblings': 1,\n",
      "          'nwesley': 1,\n",
      "          'snipes': 1,\n",
      "          'buff': 1,\n",
      "          'growls': 1,\n",
      "          'lines': 1,\n",
      "          'spends': 1,\n",
      "          'glowering': 1,\n",
      "          'suffering': 1,\n",
      "          'indigestion': 1,\n",
      "          'second': 1,\n",
      "          'thoughts': 1,\n",
      "          'starring': 1,\n",
      "          'coproducing': 1,\n",
      "          'turkey': 1,\n",
      "          'another': 1,\n",
      "          'example': 1,\n",
      "          'film': 1,\n",
      "          'honorable': 1,\n",
      "          'member': 1,\n",
      "          'horror': 1,\n",
      "          'family': 1,\n",
      "          'gone': 1,\n",
      "          'downhill': 1,\n",
      "          'dud': 1,\n",
      "          'mostly': 1,\n",
      "          'makes': 1,\n",
      "          'yearn': 1,\n",
      "          'quaint': 1,\n",
      "          'old': 1,\n",
      "          'days': 1,\n",
      "          'stopped': 1,\n",
      "          'dangling': 1,\n",
      "          'crucifix': 1,\n",
      "          'face': 1,\n",
      "          'ntodays': 1,\n",
      "          'panache': 1,\n",
      "          'style': 1,\n",
      "          'bela': 1,\n",
      "          'lugosi': 1,\n",
      "          'even': 1,\n",
      "          'worthy': 1,\n",
      "          'carry': 1,\n",
      "          'great': 1,\n",
      "          'bloodsuckers': 1,\n",
      "          'capes': 1,\n",
      "          'farcical': 1,\n",
      "          'frightful': 1,\n",
      "          'whole': 1,\n",
      "          'enterprise': 1,\n",
      "          'dull': 1,\n",
      "          'lots': 1,\n",
      "          'sharpening': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'plenty': 5,\n",
      "          'story': 5,\n",
      "          'movie': 4,\n",
      "          'nhav': 4,\n",
      "          'hav': 3,\n",
      "          'film': 3,\n",
      "          'true': 3,\n",
      "          'series': 3,\n",
      "          'women': 3,\n",
      "          'lee': 3,\n",
      "          'even': 3,\n",
      "          'cherot': 2,\n",
      "          'n': 2,\n",
      "          'much': 2,\n",
      "          'new': 2,\n",
      "          'kiss': 2,\n",
      "          'bed': 2,\n",
      "          'jones': 2,\n",
      "          'gay': 2,\n",
      "          'go': 2,\n",
      "          'plentys': 2,\n",
      "          'outrageous': 2,\n",
      "          'told': 1,\n",
      "          'beginning': 1,\n",
      "          'reminded': 1,\n",
      "          'nlife': 1,\n",
      "          'stories': 1,\n",
      "          'material': 1,\n",
      "          'nas': 1,\n",
      "          'scripted': 1,\n",
      "          'directed': 1,\n",
      "          'acted': 1,\n",
      "          'cinematic': 1,\n",
      "          'newcomer': 1,\n",
      "          'christopher': 1,\n",
      "          'scott': 1,\n",
      "          'limps': 1,\n",
      "          'along': 1,\n",
      "          'best': 1,\n",
      "          'nits': 1,\n",
      "          'dialog': 1,\n",
      "          'stilted': 1,\n",
      "          'know': 1,\n",
      "          'say': 1,\n",
      "          'cry': 1,\n",
      "          'actors': 1,\n",
      "          'content': 1,\n",
      "          'read': 1,\n",
      "          'screenplay': 1,\n",
      "          'rather': 1,\n",
      "          'invest': 1,\n",
      "          'energy': 1,\n",
      "          'trying': 1,\n",
      "          'act': 1,\n",
      "          'nin': 1,\n",
      "          '28yearold': 1,\n",
      "          'author': 1,\n",
      "          'teaching': 1,\n",
      "          'assistant': 1,\n",
      "          'nthe': 1,\n",
      "          'happens': 1,\n",
      "          'mainly': 1,\n",
      "          'years': 1,\n",
      "          'holiday': 1,\n",
      "          'consists': 1,\n",
      "          'incidents': 1,\n",
      "          'various': 1,\n",
      "          'single': 1,\n",
      "          'married': 1,\n",
      "          'try': 1,\n",
      "          'take': 1,\n",
      "          'nsince': 1,\n",
      "          'consistently': 1,\n",
      "          'refuses': 1,\n",
      "          'caroline': 1,\n",
      "          'gooden': 1,\n",
      "          'tammi': 1,\n",
      "          'katherine': 1,\n",
      "          'figures': 1,\n",
      "          'must': 1,\n",
      "          'neventually': 1,\n",
      "          'havilland': 1,\n",
      "          'savage': 1,\n",
      "          'chenoa': 1,\n",
      "          'maxwell': 1,\n",
      "          'get': 1,\n",
      "          'together': 1,\n",
      "          'proving': 1,\n",
      "          'wasnt': 1,\n",
      "          'picky': 1,\n",
      "          'nsexy': 1,\n",
      "          'sit': 1,\n",
      "          'lap': 1,\n",
      "          'ask': 1,\n",
      "          'nhes': 1,\n",
      "          'man': 1,\n",
      "          'knows': 1,\n",
      "          'mind': 1,\n",
      "          'frequently': 1,\n",
      "          'shares': 1,\n",
      "          'directly': 1,\n",
      "          'audience': 1,\n",
      "          'trite': 1,\n",
      "          'overly': 1,\n",
      "          'cute': 1,\n",
      "          'monologues': 1,\n",
      "          'nfilled': 1,\n",
      "          'wealthy': 1,\n",
      "          'africanamericans': 1,\n",
      "          'closest': 1,\n",
      "          'tone': 1,\n",
      "          'love': 1,\n",
      "          'better': 1,\n",
      "          'doesnt': 1,\n",
      "          'anywhere': 1,\n",
      "          'nat': 1,\n",
      "          'end': 1,\n",
      "          'subjects': 1,\n",
      "          'us': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'worse': 1,\n",
      "          'acting': 1,\n",
      "          'remember': 1,\n",
      "          'folks': 1,\n",
      "          'seems': 1,\n",
      "          'tells': 1,\n",
      "          'camera': 1,\n",
      "          'problem': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'interesting': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'audiences': 1,\n",
      "          'time': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '32': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'profanity': 1,\n",
      "          'would': 1,\n",
      "          'fine': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'guy': 9,\n",
      "          'gibson': 6,\n",
      "          'bad': 6,\n",
      "          'like': 5,\n",
      "          'ni': 5,\n",
      "          'hollywood': 4,\n",
      "          'film': 4,\n",
      "          'root': 4,\n",
      "          'movies': 3,\n",
      "          'get': 3,\n",
      "          'money': 3,\n",
      "          'character': 3,\n",
      "          'hes': 3,\n",
      "          'real': 3,\n",
      "          'trying': 3,\n",
      "          'partner': 3,\n",
      "          '70': 3,\n",
      "          '000': 3,\n",
      "          'seems': 2,\n",
      "          'ive': 2,\n",
      "          'payback': 2,\n",
      "          'better': 2,\n",
      "          'didnt': 2,\n",
      "          'ending': 2,\n",
      "          'nwhat': 2,\n",
      "          'say': 2,\n",
      "          'dont': 2,\n",
      "          'honor': 2,\n",
      "          'nthe': 2,\n",
      "          'prize': 2,\n",
      "          'gibsons': 2,\n",
      "          'blond': 2,\n",
      "          'think': 2,\n",
      "          'original': 2,\n",
      "          'idea': 2,\n",
      "          'person': 2,\n",
      "          'could': 2,\n",
      "          'nand': 2,\n",
      "          'made': 2,\n",
      "          'ngibson': 2,\n",
      "          'would': 2,\n",
      "          'pay': 2,\n",
      "          'going': 2,\n",
      "          'chicago': 2,\n",
      "          'mafia': 2,\n",
      "          'trouble': 2,\n",
      "          'simple': 2,\n",
      "          'read': 2,\n",
      "          'review': 2,\n",
      "          'comic': 2,\n",
      "          'many': 2,\n",
      "          'reviews': 2,\n",
      "          'stopped': 1,\n",
      "          'enjoying': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'people': 1,\n",
      "          'seem': 1,\n",
      "          'nhowever': 1,\n",
      "          'horrible': 1,\n",
      "          'schlock': 1,\n",
      "          'straight': 1,\n",
      "          'hollywoods': 1,\n",
      "          'vast': 1,\n",
      "          'talent': 1,\n",
      "          'sucking': 1,\n",
      "          'creativity': 1,\n",
      "          'nit': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'done': 1,\n",
      "          'however': 1,\n",
      "          'maybe': 1,\n",
      "          '30': 1,\n",
      "          'percent': 1,\n",
      "          'isnt': 1,\n",
      "          'nmel': 1,\n",
      "          'zombie': 1,\n",
      "          'decided': 1,\n",
      "          'another': 1,\n",
      "          'director': 1,\n",
      "          'reshoot': 1,\n",
      "          'crock': 1,\n",
      "          'nif': 1,\n",
      "          'sign': 1,\n",
      "          'way': 1,\n",
      "          'script': 1,\n",
      "          'calls': 1,\n",
      "          'nwhy': 1,\n",
      "          'look': 1,\n",
      "          'later': 1,\n",
      "          'changed': 1,\n",
      "          'mind': 1,\n",
      "          'nyoure': 1,\n",
      "          'fired': 1,\n",
      "          'nlets': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'n': 1,\n",
      "          'suppose': 1,\n",
      "          'dead': 1,\n",
      "          'end': 1,\n",
      "          'course': 1,\n",
      "          'hollywoodized': 1,\n",
      "          'nwhich': 1,\n",
      "          'happy': 1,\n",
      "          'beats': 1,\n",
      "          'impossible': 1,\n",
      "          'odds': 1,\n",
      "          'win': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'victories': 1,\n",
      "          'miss': 1,\n",
      "          'originality': 1,\n",
      "          'really': 1,\n",
      "          'audiences': 1,\n",
      "          'starved': 1,\n",
      "          'theyll': 1,\n",
      "          'flop': 1,\n",
      "          'lot': 1,\n",
      "          'hopes': 1,\n",
      "          'npaybacks': 1,\n",
      "          'tagline': 1,\n",
      "          'ready': 1,\n",
      "          'promised': 1,\n",
      "          'far': 1,\n",
      "          'truth': 1,\n",
      "          'nwhile': 1,\n",
      "          'certainly': 1,\n",
      "          'broke': 1,\n",
      "          'law': 1,\n",
      "          'odd': 1,\n",
      "          'little': 1,\n",
      "          'wouldnt': 1,\n",
      "          'kill': 1,\n",
      "          'front': 1,\n",
      "          'children': 1,\n",
      "          'protects': 1,\n",
      "          'woman': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'never': 1,\n",
      "          'exist': 1,\n",
      "          'life': 1,\n",
      "          'knows': 1,\n",
      "          'spends': 1,\n",
      "          'time': 1,\n",
      "          'act': 1,\n",
      "          'instead': 1,\n",
      "          'comes': 1,\n",
      "          'pretentious': 1,\n",
      "          'arrogant': 1,\n",
      "          'story': 1,\n",
      "          'involves': 1,\n",
      "          'doublecrossed': 1,\n",
      "          'wish': 1,\n",
      "          'recovers': 1,\n",
      "          'multiple': 1,\n",
      "          'gunshots': 1,\n",
      "          'pissed': 1,\n",
      "          'naturally': 1,\n",
      "          'whatever': 1,\n",
      "          'takes': 1,\n",
      "          'exact': 1,\n",
      "          'amount': 1,\n",
      "          'back': 1,\n",
      "          'less': 1,\n",
      "          'nhe': 1,\n",
      "          'makes': 1,\n",
      "          'point': 1,\n",
      "          'strictly': 1,\n",
      "          'grand': 1,\n",
      "          'na': 1,\n",
      "          'expartner': 1,\n",
      "          '25': 1,\n",
      "          'interest': 1,\n",
      "          'nthis': 1,\n",
      "          'completely': 1,\n",
      "          'stretched': 1,\n",
      "          'ends': 1,\n",
      "          'affiliated': 1,\n",
      "          'understand': 1,\n",
      "          'n70': 1,\n",
      "          'spare': 1,\n",
      "          'change': 1,\n",
      "          'ntheyd': 1,\n",
      "          'probably': 1,\n",
      "          'rather': 1,\n",
      "          'go': 1,\n",
      "          'dealing': 1,\n",
      "          'theyd': 1,\n",
      "          'respect': 1,\n",
      "          'much': 1,\n",
      "          'nmaybe': 1,\n",
      "          'im': 1,\n",
      "          'hard': 1,\n",
      "          'nperhaps': 1,\n",
      "          'filmmakers': 1,\n",
      "          'make': 1,\n",
      "          'popcorn': 1,\n",
      "          'roger': 1,\n",
      "          'eberts': 1,\n",
      "          'liked': 1,\n",
      "          'role': 1,\n",
      "          'heart': 1,\n",
      "          'playing': 1,\n",
      "          'nthats': 1,\n",
      "          'allowed': 1,\n",
      "          'true': 1,\n",
      "          'walks': 1,\n",
      "          'smiling': 1,\n",
      "          'joke': 1,\n",
      "          'heard': 1,\n",
      "          'nbut': 1,\n",
      "          'wrong': 1,\n",
      "          'wanted': 1,\n",
      "          'lee': 1,\n",
      "          'marvin': 1,\n",
      "          'oldtime': 1,\n",
      "          'clint': 1,\n",
      "          'eastwood': 1,\n",
      "          'somebody': 1,\n",
      "          'wasnt': 1,\n",
      "          'ass': 1,\n",
      "          'kicker': 1,\n",
      "          'nas': 1,\n",
      "          'side': 1,\n",
      "          'note': 1,\n",
      "          'checked': 1,\n",
      "          'internet': 1,\n",
      "          'database': 1,\n",
      "          'discovered': 1,\n",
      "          '38th': 1,\n",
      "          'post': 1,\n",
      "          'newsgroup': 1,\n",
      "          'nafter': 1,\n",
      "          'anyone': 1,\n",
      "          'want': 1,\n",
      "          'nreally': 1,\n",
      "          'care': 1,\n",
      "          'nim': 1,\n",
      "          'gain': 1,\n",
      "          'membership': 1,\n",
      "          'online': 1,\n",
      "          'critics': 1,\n",
      "          'society': 1,\n",
      "          'posting': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'batman': 15,\n",
      "          'film': 15,\n",
      "          'robin': 11,\n",
      "          'n': 5,\n",
      "          'ni': 5,\n",
      "          'nthe': 4,\n",
      "          'make': 4,\n",
      "          'performance': 4,\n",
      "          'point': 3,\n",
      "          'even': 3,\n",
      "          'another': 3,\n",
      "          'villains': 3,\n",
      "          'freeze': 3,\n",
      "          'poison': 3,\n",
      "          'ivy': 3,\n",
      "          'uma': 3,\n",
      "          'order': 3,\n",
      "          'ivys': 3,\n",
      "          'bane': 3,\n",
      "          'life': 3,\n",
      "          'terrible': 3,\n",
      "          'fails': 3,\n",
      "          'forever': 3,\n",
      "          'way': 3,\n",
      "          'one': 3,\n",
      "          'time': 3,\n",
      "          'laughable': 3,\n",
      "          'feature': 2,\n",
      "          'thought': 2,\n",
      "          'campiness': 2,\n",
      "          'many': 2,\n",
      "          'bad': 2,\n",
      "          'worst': 2,\n",
      "          'word': 2,\n",
      "          'action': 2,\n",
      "          'production': 2,\n",
      "          'clooney': 2,\n",
      "          'odonnell': 2,\n",
      "          'mr': 2,\n",
      "          'schwarzenegger': 2,\n",
      "          'everything': 2,\n",
      "          'thurman': 2,\n",
      "          'love': 2,\n",
      "          'dust': 2,\n",
      "          'fall': 2,\n",
      "          'nby': 2,\n",
      "          'barbara': 2,\n",
      "          'alicia': 2,\n",
      "          'silverstone': 2,\n",
      "          'goldsmans': 2,\n",
      "          'screenplay': 2,\n",
      "          'dialogue': 2,\n",
      "          'plot': 2,\n",
      "          'simply': 2,\n",
      "          'excitement': 2,\n",
      "          'nit': 2,\n",
      "          'positively': 2,\n",
      "          'device': 2,\n",
      "          'somehow': 2,\n",
      "          'schumachers': 2,\n",
      "          'neon': 2,\n",
      "          'batcave': 2,\n",
      "          'helpfully': 2,\n",
      "          'sequence': 2,\n",
      "          'gotham': 2,\n",
      "          'nmr': 2,\n",
      "          'possible': 2,\n",
      "          'tone': 2,\n",
      "          'perhaps': 2,\n",
      "          'within': 2,\n",
      "          'films': 2,\n",
      "          'nis': 2,\n",
      "          'supposed': 2,\n",
      "          'campy': 2,\n",
      "          'impression': 2,\n",
      "          'isnt': 2,\n",
      "          'attempts': 2,\n",
      "          'onscreen': 2,\n",
      "          'every': 2,\n",
      "          'hardly': 2,\n",
      "          'figure': 2,\n",
      "          'thurmans': 2,\n",
      "          'entertaining': 2,\n",
      "          'nher': 2,\n",
      "          'work': 2,\n",
      "          'yet': 2,\n",
      "          'note': 1,\n",
      "          'may': 1,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'quick': 1,\n",
      "          'antishark': 1,\n",
      "          'repellant': 1,\n",
      "          'adam': 1,\n",
      "          'west': 1,\n",
      "          '1966': 1,\n",
      "          'casually': 1,\n",
      "          'kicking': 1,\n",
      "          'patheticlooking': 1,\n",
      "          'rubber': 1,\n",
      "          'shark': 1,\n",
      "          'attached': 1,\n",
      "          'leg': 1,\n",
      "          'never': 1,\n",
      "          'entry': 1,\n",
      "          'modern': 1,\n",
      "          'incarnation': 1,\n",
      "          'would': 1,\n",
      "          'approach': 1,\n",
      "          'level': 1,\n",
      "          'instances': 1,\n",
      "          'nears': 1,\n",
      "          'exceeds': 1,\n",
      "          'standard': 1,\n",
      "          'nthis': 1,\n",
      "          'disasterously': 1,\n",
      "          'easily': 1,\n",
      "          'series': 1,\n",
      "          'date': 1,\n",
      "          'fairly': 1,\n",
      "          'epitomizes': 1,\n",
      "          'cinematic': 1,\n",
      "          'definition': 1,\n",
      "          'excessive': 1,\n",
      "          'loud': 1,\n",
      "          'garish': 1,\n",
      "          'obnoxious': 1,\n",
      "          'pointless': 1,\n",
      "          'gratuitous': 1,\n",
      "          'sequences': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'clutter': 1,\n",
      "          'screen': 1,\n",
      "          'elaborate': 1,\n",
      "          'design': 1,\n",
      "          'overkill': 1,\n",
      "          'nbatman': 1,\n",
      "          'features': 1,\n",
      "          'caped': 1,\n",
      "          'crusaders': 1,\n",
      "          'george': 1,\n",
      "          'debuting': 1,\n",
      "          'chris': 1,\n",
      "          'returing': 1,\n",
      "          'squaring': 1,\n",
      "          'bevy': 1,\n",
      "          'chemicallyinduced': 1,\n",
      "          'nefarious': 1,\n",
      "          'icecold': 1,\n",
      "          'arnold': 1,\n",
      "          'armed': 1,\n",
      "          'weapon': 1,\n",
      "          'freezes': 1,\n",
      "          'sights': 1,\n",
      "          'slinky': 1,\n",
      "          'ability': 1,\n",
      "          'blow': 1,\n",
      "          'powerful': 1,\n",
      "          'faces': 1,\n",
      "          'men': 1,\n",
      "          'helplessly': 1,\n",
      "          'really': 1,\n",
      "          'necessary': 1,\n",
      "          'accomplish': 1,\n",
      "          'result': 1,\n",
      "          'whatever': 1,\n",
      "          'dispatch': 1,\n",
      "          'poisoned': 1,\n",
      "          'kiss': 1,\n",
      "          'side': 1,\n",
      "          'giant': 1,\n",
      "          'steroid': 1,\n",
      "          'monster': 1,\n",
      "          'jeep': 1,\n",
      "          'swanson': 1,\n",
      "          'grunting': 1,\n",
      "          'hulk': 1,\n",
      "          'beast': 1,\n",
      "          'goals': 1,\n",
      "          'noble': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'ones': 1,\n",
      "          'steals': 1,\n",
      "          'diamonds': 1,\n",
      "          'power': 1,\n",
      "          'climate': 1,\n",
      "          'suit': 1,\n",
      "          'keep': 1,\n",
      "          'body': 1,\n",
      "          'temperature': 1,\n",
      "          'zero': 1,\n",
      "          'degrees': 1,\n",
      "          'survive': 1,\n",
      "          'devise': 1,\n",
      "          'cure': 1,\n",
      "          'beloved': 1,\n",
      "          'wife': 1,\n",
      "          'vendela': 1,\n",
      "          'dying': 1,\n",
      "          'degenerative': 1,\n",
      "          'disease': 1,\n",
      "          'frozen': 1,\n",
      "          'suspended': 1,\n",
      "          'animation': 1,\n",
      "          'intent': 1,\n",
      "          'restore': 1,\n",
      "          'dominance': 1,\n",
      "          'plant': 1,\n",
      "          'earth': 1,\n",
      "          'albeit': 1,\n",
      "          'destroying': 1,\n",
      "          'human': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'homefront': 1,\n",
      "          'wayne': 1,\n",
      "          'manor': 1,\n",
      "          'thrown': 1,\n",
      "          'upheaval': 1,\n",
      "          'illness': 1,\n",
      "          'butler': 1,\n",
      "          'alfred': 1,\n",
      "          'pennyworth': 1,\n",
      "          'michael': 1,\n",
      "          'gough': 1,\n",
      "          'arrival': 1,\n",
      "          'niece': 1,\n",
      "          'nakiva': 1,\n",
      "          'ridiculous': 1,\n",
      "          'laughably': 1,\n",
      "          'astonishingly': 1,\n",
      "          'lame': 1,\n",
      "          'jokes': 1,\n",
      "          'awful': 1,\n",
      "          'bythenumber': 1,\n",
      "          'coasts': 1,\n",
      "          'along': 1,\n",
      "          'generate': 1,\n",
      "          'genuine': 1,\n",
      "          'makes': 1,\n",
      "          'dreadful': 1,\n",
      "          'look': 1,\n",
      "          'inspired': 1,\n",
      "          'comparison': 1,\n",
      "          'still': 1,\n",
      "          'astonished': 1,\n",
      "          'cheesy': 1,\n",
      "          'id': 1,\n",
      "          'seen': 1,\n",
      "          'used': 1,\n",
      "          'joke': 1,\n",
      "          'episode': 1,\n",
      "          'gilligans': 1,\n",
      "          'island': 1,\n",
      "          'multimillion': 1,\n",
      "          'dollar': 1,\n",
      "          'blockbuster': 1,\n",
      "          'njoel': 1,\n",
      "          'direction': 1,\n",
      "          'horrific': 1,\n",
      "          'balance': 1,\n",
      "          'flashiness': 1,\n",
      "          'substance': 1,\n",
      "          'nthere': 1,\n",
      "          'clear': 1,\n",
      "          'conceit': 1,\n",
      "          'towards': 1,\n",
      "          'moreso': 1,\n",
      "          'previous': 1,\n",
      "          'revamped': 1,\n",
      "          'sporting': 1,\n",
      "          'gigantic': 1,\n",
      "          'glowing': 1,\n",
      "          'emblems': 1,\n",
      "          'dynamic': 1,\n",
      "          'duo': 1,\n",
      "          'case': 1,\n",
      "          'suppose': 1,\n",
      "          'ever': 1,\n",
      "          'happen': 1,\n",
      "          'forget': 1,\n",
      "          'headquarters': 1,\n",
      "          'prominently': 1,\n",
      "          'figuring': 1,\n",
      "          'utterlypointless': 1,\n",
      "          'fight': 1,\n",
      "          'street': 1,\n",
      "          'gang': 1,\n",
      "          'chosen': 1,\n",
      "          'new': 1,\n",
      "          'abode': 1,\n",
      "          'nanother': 1,\n",
      "          'serve': 1,\n",
      "          'useful': 1,\n",
      "          'chew': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'screentime': 1,\n",
      "          'involves': 1,\n",
      "          'incredibly': 1,\n",
      "          'uninvolving': 1,\n",
      "          'latenight': 1,\n",
      "          'motorcycle': 1,\n",
      "          'race': 1,\n",
      "          'goons': 1,\n",
      "          'focus': 1,\n",
      "          'appears': 1,\n",
      "          'visually': 1,\n",
      "          'striking': 1,\n",
      "          'detriment': 1,\n",
      "          'story': 1,\n",
      "          'drastic': 1,\n",
      "          'shifts': 1,\n",
      "          'allout': 1,\n",
      "          'camp': 1,\n",
      "          'heartfelt': 1,\n",
      "          'drama': 1,\n",
      "          'latter': 1,\n",
      "          'completely': 1,\n",
      "          'unconvincing': 1,\n",
      "          'ineffective': 1,\n",
      "          'promising': 1,\n",
      "          'signs': 1,\n",
      "          'group': 1,\n",
      "          'burst': 1,\n",
      "          'laughing': 1,\n",
      "          'twenty': 1,\n",
      "          'seconds': 1,\n",
      "          'opening': 1,\n",
      "          'single': 1,\n",
      "          'line': 1,\n",
      "          'uttered': 1,\n",
      "          'think': 1,\n",
      "          'hard': 1,\n",
      "          'imagine': 1,\n",
      "          'filmmakers': 1,\n",
      "          'could': 1,\n",
      "          'intended': 1,\n",
      "          'parts': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'favourites': 1,\n",
      "          'grunted': 1,\n",
      "          'bomb': 1,\n",
      "          'neach': 1,\n",
      "          'laid': 1,\n",
      "          'explosive': 1,\n",
      "          'observatory': 1,\n",
      "          'overly': 1,\n",
      "          'turned': 1,\n",
      "          'doubt': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'afred': 1,\n",
      "          'delivered': 1,\n",
      "          'solemnly': 1,\n",
      "          'graveness': 1,\n",
      "          'made': 1,\n",
      "          'attempting': 1,\n",
      "          'utter': 1,\n",
      "          'farce': 1,\n",
      "          'narnold': 1,\n",
      "          'topbilled': 1,\n",
      "          'villainous': 1,\n",
      "          'bland': 1,\n",
      "          'uninteresting': 1,\n",
      "          'thing': 1,\n",
      "          'villain': 1,\n",
      "          'schwarzeneggers': 1,\n",
      "          'menacing': 1,\n",
      "          'conveying': 1,\n",
      "          'pathos': 1,\n",
      "          'frankly': 1,\n",
      "          'end': 1,\n",
      "          'stifling': 1,\n",
      "          'chuckle': 1,\n",
      "          'appeared': 1,\n",
      "          'bulk': 1,\n",
      "          'consists': 1,\n",
      "          'uttering': 1,\n",
      "          'nearunintelligble': 1,\n",
      "          'puns': 1,\n",
      "          'oneliners': 1,\n",
      "          'featuring': 1,\n",
      "          'permutation': 1,\n",
      "          'cool': 1,\n",
      "          'nin': 1,\n",
      "          'least': 1,\n",
      "          'inventive': 1,\n",
      "          'ngeorge': 1,\n",
      "          'given': 1,\n",
      "          'little': 1,\n",
      "          'overshadowed': 1,\n",
      "          'consequently': 1,\n",
      "          'looks': 1,\n",
      "          'rather': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'nhis': 1,\n",
      "          'imposing': 1,\n",
      "          'nchris': 1,\n",
      "          'unimpressive': 1,\n",
      "          'onenote': 1,\n",
      "          'lackadasically': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'nundoubtably': 1,\n",
      "          'sexy': 1,\n",
      "          'villainess': 1,\n",
      "          'certainly': 1,\n",
      "          'overthetop': 1,\n",
      "          'controlled': 1,\n",
      "          'fashion': 1,\n",
      "          'works': 1,\n",
      "          'splendidly': 1,\n",
      "          'nms': 1,\n",
      "          'comic': 1,\n",
      "          'timing': 1,\n",
      "          'impeccable': 1,\n",
      "          'reminds': 1,\n",
      "          'us': 1,\n",
      "          'takes': 1,\n",
      "          'skilled': 1,\n",
      "          'performers': 1,\n",
      "          'successfully': 1,\n",
      "          'im': 1,\n",
      "          'already': 1,\n",
      "          'starting': 1,\n",
      "          'reassess': 1,\n",
      "          'jim': 1,\n",
      "          'carreys': 1,\n",
      "          'amusing': 1,\n",
      "          'character': 1,\n",
      "          'shes': 1,\n",
      "          'offscreen': 1,\n",
      "          'greatly': 1,\n",
      "          'suffers': 1,\n",
      "          'die': 1,\n",
      "          'kissed': 1,\n",
      "          'death': 1,\n",
      "          'halfbad': 1,\n",
      "          'go': 1,\n",
      "          'nwhile': 1,\n",
      "          'ride': 1,\n",
      "          'pulsepounding': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'bored': 1,\n",
      "          'watching': 1,\n",
      "          'although': 1,\n",
      "          'glance': 1,\n",
      "          'watch': 1,\n",
      "          'repeatedly': 1,\n",
      "          'screening': 1,\n",
      "          'attention': 1,\n",
      "          'kept': 1,\n",
      "          'anticipation': 1,\n",
      "          'utterance': 1,\n",
      "          'pun': 1,\n",
      "          'oneliner': 1,\n",
      "          'awaiting': 1,\n",
      "          'scene': 1,\n",
      "          'flat': 1,\n",
      "          'nits': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'ive': 1,\n",
      "          'laughed': 1,\n",
      "          'much': 1,\n",
      "          'movie': 1,\n",
      "          'course': 1,\n",
      "          'operative': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'data': 10,\n",
      "          'trek': 6,\n",
      "          'n': 6,\n",
      "          'movie': 5,\n",
      "          'star': 4,\n",
      "          'laforge': 4,\n",
      "          'went': 4,\n",
      "          'insurrection': 4,\n",
      "          'troi': 4,\n",
      "          'time': 3,\n",
      "          'hundred': 3,\n",
      "          'baku': 3,\n",
      "          'look': 3,\n",
      "          'like': 3,\n",
      "          'picard': 3,\n",
      "          'one': 3,\n",
      "          'film': 3,\n",
      "          'first': 3,\n",
      "          'contact': 3,\n",
      "          'seems': 2,\n",
      "          'cheap': 2,\n",
      "          'nbut': 2,\n",
      "          'insurrections': 2,\n",
      "          'nim': 2,\n",
      "          'co': 2,\n",
      "          'real': 2,\n",
      "          'director': 2,\n",
      "          'three': 2,\n",
      "          'called': 2,\n",
      "          'briar': 2,\n",
      "          'patch': 2,\n",
      "          'ruafo': 2,\n",
      "          'last': 2,\n",
      "          'nthe': 2,\n",
      "          'prime': 2,\n",
      "          'directive': 2,\n",
      "          'race': 2,\n",
      "          'exactly': 2,\n",
      "          'nhe': 2,\n",
      "          'john': 2,\n",
      "          'ford': 2,\n",
      "          'also': 2,\n",
      "          'saying': 2,\n",
      "          'gets': 2,\n",
      "          'thanks': 2,\n",
      "          'something': 2,\n",
      "          'youve': 2,\n",
      "          'seen': 2,\n",
      "          'idea': 2,\n",
      "          'crusher': 2,\n",
      "          'say': 2,\n",
      "          'everything': 1,\n",
      "          'ninth': 1,\n",
      "          'roger': 1,\n",
      "          'cormangrade': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'highly': 1,\n",
      "          'derivative': 1,\n",
      "          'ugly': 1,\n",
      "          'ad': 1,\n",
      "          'campaign': 1,\n",
      "          'poster': 1,\n",
      "          'nearly': 1,\n",
      "          'identical': 1,\n",
      "          'vi': 1,\n",
      "          'undiscovered': 1,\n",
      "          'country': 1,\n",
      "          'pillers': 1,\n",
      "          'notquitehalfbaked': 1,\n",
      "          'screenplay': 1,\n",
      "          'ultimately': 1,\n",
      "          'claim': 1,\n",
      "          'responsibility': 1,\n",
      "          'failure': 1,\n",
      "          'give': 1,\n",
      "          'advice': 1,\n",
      "          'rick': 1,\n",
      "          'berman': 1,\n",
      "          'nas': 1,\n",
      "          'ive': 1,\n",
      "          'given': 1,\n",
      "          'financiers': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'movies': 1,\n",
      "          'breathe': 1,\n",
      "          'life': 1,\n",
      "          'workhorse': 1,\n",
      "          'hiring': 1,\n",
      "          'solid': 1,\n",
      "          'genre': 1,\n",
      "          'writers': 1,\n",
      "          'put': 1,\n",
      "          'visor': 1,\n",
      "          'back': 1,\n",
      "          'nfor': 1,\n",
      "          'years': 1,\n",
      "          'species': 1,\n",
      "          'humans': 1,\n",
      "          'lived': 1,\n",
      "          'ringedplanet': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'fountain': 1,\n",
      "          'youth': 1,\n",
      "          'nsix': 1,\n",
      "          'occupy': 1,\n",
      "          'area': 1,\n",
      "          'affected': 1,\n",
      "          'metaphasic': 1,\n",
      "          'radition': 1,\n",
      "          'positive': 1,\n",
      "          'energy': 1,\n",
      "          'reverses': 1,\n",
      "          'aging': 1,\n",
      "          'process': 1,\n",
      "          'elderly': 1,\n",
      "          'evil': 1,\n",
      "          'probably': 1,\n",
      "          'abrahams': 1,\n",
      "          'stop': 1,\n",
      "          'performing': 1,\n",
      "          'amadeus': 1,\n",
      "          'dinner': 1,\n",
      "          'theatre': 1,\n",
      "          'near': 1,\n",
      "          'leader': 1,\n",
      "          'sona': 1,\n",
      "          'burn': 1,\n",
      "          'victims': 1,\n",
      "          'reconstructive': 1,\n",
      "          'surgery': 1,\n",
      "          'wants': 1,\n",
      "          'relocate': 1,\n",
      "          'people': 1,\n",
      "          'onto': 1,\n",
      "          'place': 1,\n",
      "          'order': 1,\n",
      "          'replenish': 1,\n",
      "          'dying': 1,\n",
      "          'breed': 1,\n",
      "          'federation': 1,\n",
      "          'feels': 1,\n",
      "          'direct': 1,\n",
      "          'violation': 1,\n",
      "          'interfere': 1,\n",
      "          'development': 1,\n",
      "          'alien': 1,\n",
      "          'never': 1,\n",
      "          'mind': 1,\n",
      "          'didnt': 1,\n",
      "          'evolvethey': 1,\n",
      "          'wandering': 1,\n",
      "          'universe': 1,\n",
      "          'day': 1,\n",
      "          'stumbled': 1,\n",
      "          'upon': 1,\n",
      "          'magic': 1,\n",
      "          'world': 1,\n",
      "          'nevery': 1,\n",
      "          'frakes': 1,\n",
      "          'gives': 1,\n",
      "          'interview': 1,\n",
      "          'lately': 1,\n",
      "          'top': 1,\n",
      "          'whatever': 1,\n",
      "          'ludicrous': 1,\n",
      "          'statement': 1,\n",
      "          'gave': 1,\n",
      "          'regarding': 1,\n",
      "          'installment': 1,\n",
      "          'comedy': 1,\n",
      "          'thinking': 1,\n",
      "          'mans': 1,\n",
      "          'picture': 1,\n",
      "          'throwback': 1,\n",
      "          'old': 1,\n",
      "          'series': 1,\n",
      "          'grievously': 1,\n",
      "          'likened': 1,\n",
      "          'western': 1,\n",
      "          'presume': 1,\n",
      "          'thats': 1,\n",
      "          'school': 1,\n",
      "          'searchers': 1,\n",
      "          'gone': 1,\n",
      "          'record': 1,\n",
      "          'paramount': 1,\n",
      "          'recut': 1,\n",
      "          'version': 1,\n",
      "          'nthats': 1,\n",
      "          'excusesomeone': 1,\n",
      "          'generated': 1,\n",
      "          'footage': 1,\n",
      "          'nmuddy': 1,\n",
      "          'cinematography': 1,\n",
      "          'sitcom': 1,\n",
      "          'sets': 1,\n",
      "          'least': 1,\n",
      "          'problems': 1,\n",
      "          'appears': 1,\n",
      "          'beamed': 1,\n",
      "          'planet': 1,\n",
      "          'plotholia': 1,\n",
      "          'nconsider': 1,\n",
      "          'curiosities': 1,\n",
      "          'npicards': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'anij': 1,\n",
      "          'donna': 1,\n",
      "          'murphy': 1,\n",
      "          'slow': 1,\n",
      "          'things': 1,\n",
      "          'staring': 1,\n",
      "          'waterfall': 1,\n",
      "          'falling': 1,\n",
      "          'rocks': 1,\n",
      "          'scientific': 1,\n",
      "          'explanation': 1,\n",
      "          'dont': 1,\n",
      "          'ask': 1,\n",
      "          'nworf': 1,\n",
      "          'pimple': 1,\n",
      "          'hes': 1,\n",
      "          'reexperiencing': 1,\n",
      "          'klingon': 1,\n",
      "          'puberty': 1,\n",
      "          'timedefying': 1,\n",
      "          'atmosphere': 1,\n",
      "          'regains': 1,\n",
      "          'eyesight': 1,\n",
      "          'trust': 1,\n",
      "          'levar': 1,\n",
      "          'burtons': 1,\n",
      "          'eyes': 1,\n",
      "          'scarier': 1,\n",
      "          'electronic': 1,\n",
      "          'lenses': 1,\n",
      "          'wore': 1,\n",
      "          'brags': 1,\n",
      "          'firm': 1,\n",
      "          'boobs': 1,\n",
      "          'remains': 1,\n",
      "          'bald': 1,\n",
      "          'androids': 1,\n",
      "          'butt': 1,\n",
      "          'nmost': 1,\n",
      "          'suspiciously': 1,\n",
      "          'problem': 1,\n",
      "          'letting': 1,\n",
      "          'endangered': 1,\n",
      "          'little': 1,\n",
      "          'fun': 1,\n",
      "          'sun': 1,\n",
      "          'filmmakers': 1,\n",
      "          'cloud': 1,\n",
      "          'issue': 1,\n",
      "          'nonsense': 1,\n",
      "          'family': 1,\n",
      "          'feud': 1,\n",
      "          'sorts': 1,\n",
      "          'turn': 1,\n",
      "          'completely': 1,\n",
      "          'powermad': 1,\n",
      "          'superfreak': 1,\n",
      "          'characters': 1,\n",
      "          'climax': 1,\n",
      "          'return': 1,\n",
      "          'jedi': 1,\n",
      "          'ending': 1,\n",
      "          'ndidnt': 1,\n",
      "          'previously': 1,\n",
      "          'disobey': 1,\n",
      "          'prevented': 1,\n",
      "          'borg': 1,\n",
      "          'assimilating': 1,\n",
      "          'millions': 1,\n",
      "          'nfrakes': 1,\n",
      "          'lucked': 1,\n",
      "          'repeat': 1,\n",
      "          'viewings': 1,\n",
      "          'reveal': 1,\n",
      "          'seeds': 1,\n",
      "          'wrong': 1,\n",
      "          'direction': 1,\n",
      "          'sense': 1,\n",
      "          'comic': 1,\n",
      "          'timing': 1,\n",
      "          'mines': 1,\n",
      "          'acting': 1,\n",
      "          'chemistry': 1,\n",
      "          'none': 1,\n",
      "          'exists': 1,\n",
      "          'take': 1,\n",
      "          'painful': 1,\n",
      "          'drunk': 1,\n",
      "          'scene': 1,\n",
      "          'fc': 1,\n",
      "          'youll': 1,\n",
      "          'get': 1,\n",
      "          'general': 1,\n",
      "          'unsuccessfully': 1,\n",
      "          'jokey': 1,\n",
      "          'hollow': 1,\n",
      "          'tone': 1,\n",
      "          'neven': 1,\n",
      "          'worst': 1,\n",
      "          'shatner': 1,\n",
      "          'ntreks': 1,\n",
      "          'final': 1,\n",
      "          'frontier': 1,\n",
      "          'maintained': 1,\n",
      "          'watchability': 1,\n",
      "          'effortless': 1,\n",
      "          'charming': 1,\n",
      "          'comaraderie': 1,\n",
      "          'kirk': 1,\n",
      "          'spock': 1,\n",
      "          'bones': 1,\n",
      "          'nneither': 1,\n",
      "          'gates': 1,\n",
      "          'mcfadden': 1,\n",
      "          'must': 1,\n",
      "          'maintains': 1,\n",
      "          'fabulous': 1,\n",
      "          'physique': 1,\n",
      "          'nand': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'films': 1,\n",
      "          'spend': 1,\n",
      "          'much': 1,\n",
      "          'franchises': 1,\n",
      "          'answer': 1,\n",
      "          'urkel': 1,\n",
      "          'nneed': 1,\n",
      "          'laugh': 1,\n",
      "          'nhave': 1,\n",
      "          'sexual': 1,\n",
      "          'start': 1,\n",
      "          'singing': 1,\n",
      "          'lift': 1,\n",
      "          'four': 1,\n",
      "          'pound': 1,\n",
      "          'boulder': 1,\n",
      "          'hunk': 1,\n",
      "          'styrofoam': 1,\n",
      "          'really': 1,\n",
      "          'nheres': 1,\n",
      "          'proposed': 1,\n",
      "          'title': 1,\n",
      "          'number': 1,\n",
      "          '10': 1,\n",
      "          'nin': 1,\n",
      "          'become': 1,\n",
      "          'preoccupied': 1,\n",
      "          'learning': 1,\n",
      "          'blow': 1,\n",
      "          'nose': 1,\n",
      "          'watch': 1,\n",
      "          'silently': 1,\n",
      "          '500': 1,\n",
      "          'yards': 1,\n",
      "          'away': 1,\n",
      "          'points': 1,\n",
      "          'sinister': 1,\n",
      "          'gaze': 1,\n",
      "          'android': 1,\n",
      "          'doubly': 1,\n",
      "          'robotic': 1,\n",
      "          'observation': 1,\n",
      "          'nstar': 1,\n",
      "          'nice': 1,\n",
      "          'eerie': 1,\n",
      "          'silent': 1,\n",
      "          'moment': 1,\n",
      "          'hints': 1,\n",
      "          'better': 1,\n",
      "          'darker': 1,\n",
      "          'ii': 1,\n",
      "          'wrath': 1,\n",
      "          'khan': 1,\n",
      "          'boldly': 1,\n",
      "          'go': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'one': 6,\n",
      "          'nthe': 5,\n",
      "          'also': 5,\n",
      "          'another': 4,\n",
      "          'much': 3,\n",
      "          'nbut': 3,\n",
      "          'bad': 3,\n",
      "          'actors': 3,\n",
      "          'beverly': 3,\n",
      "          'hills': 3,\n",
      "          'insects': 3,\n",
      "          'plot': 3,\n",
      "          'troopers': 3,\n",
      "          'johnny': 3,\n",
      "          'love': 3,\n",
      "          'end': 3,\n",
      "          'star': 3,\n",
      "          'worst': 2,\n",
      "          'verhoeven': 2,\n",
      "          'directors': 2,\n",
      "          'total': 2,\n",
      "          'someone': 2,\n",
      "          'like': 2,\n",
      "          'result': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'starship': 2,\n",
      "          'even': 2,\n",
      "          'guys': 2,\n",
      "          'razzie': 2,\n",
      "          'acting': 2,\n",
      "          'vanity': 2,\n",
      "          'devoid': 2,\n",
      "          'school': 2,\n",
      "          'supposed': 2,\n",
      "          'meyer': 2,\n",
      "          'quarter': 2,\n",
      "          'nothing': 2,\n",
      "          'around': 2,\n",
      "          'planets': 2,\n",
      "          'nthere': 2,\n",
      "          'carmen': 2,\n",
      "          'join': 2,\n",
      "          'fight': 2,\n",
      "          'girl': 2,\n",
      "          'likes': 2,\n",
      "          'quadrangle': 2,\n",
      "          'better': 2,\n",
      "          'nand': 2,\n",
      "          'stupid': 2,\n",
      "          'call': 2,\n",
      "          'infantry': 2,\n",
      "          'ips': 2,\n",
      "          'idiot': 2,\n",
      "          'moments': 2,\n",
      "          'would': 2,\n",
      "          'die': 2,\n",
      "          'win': 2,\n",
      "          'bugs': 2,\n",
      "          'bigscreen': 1,\n",
      "          'experiences': 1,\n",
      "          'ive': 1,\n",
      "          'nwith': 1,\n",
      "          'plus': 1,\n",
      "          'showgirls': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'paul': 1,\n",
      "          'stamped': 1,\n",
      "          'currently': 1,\n",
      "          'blockbuster': 1,\n",
      "          'nhis': 1,\n",
      "          'celebrated': 1,\n",
      "          'recall': 1,\n",
      "          'admit': 1,\n",
      "          'successfully': 1,\n",
      "          'scripted': 1,\n",
      "          'nonetheless': 1,\n",
      "          'contained': 1,\n",
      "          'directorial': 1,\n",
      "          'flaws': 1,\n",
      "          'nobviously': 1,\n",
      "          'nobody': 1,\n",
      "          'wanted': 1,\n",
      "          'invest': 1,\n",
      "          'money': 1,\n",
      "          'production': 1,\n",
      "          'seemed': 1,\n",
      "          'fake': 1,\n",
      "          'everything': 1,\n",
      "          'fault': 1,\n",
      "          'though': 1,\n",
      "          'employed': 1,\n",
      "          'nit': 1,\n",
      "          'surprising': 1,\n",
      "          'none': 1,\n",
      "          'received': 1,\n",
      "          'nominations': 1,\n",
      "          'awards': 1,\n",
      "          'expected': 1,\n",
      "          'five': 1,\n",
      "          'categories': 1,\n",
      "          'ncasserole': 1,\n",
      "          'dense': 1,\n",
      "          'ribald': 1,\n",
      "          'dingy': 1,\n",
      "          'miasma': 1,\n",
      "          'jackass': 1,\n",
      "          'bushy': 1,\n",
      "          'serious': 1,\n",
      "          'need': 1,\n",
      "          'nno': 1,\n",
      "          'pass': 1,\n",
      "          'primary': 1,\n",
      "          'drama': 1,\n",
      "          'classes': 1,\n",
      "          'first': 1,\n",
      "          'nwhile': 1,\n",
      "          'written': 1,\n",
      "          'well': 1,\n",
      "          'purely': 1,\n",
      "          'pathetic': 1,\n",
      "          'nall': 1,\n",
      "          'right': 1,\n",
      "          'fastpaced': 1,\n",
      "          'entertainment': 1,\n",
      "          'youre': 1,\n",
      "          'turn': 1,\n",
      "          'intellect': 1,\n",
      "          'completely': 1,\n",
      "          'enjoy': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'guts': 1,\n",
      "          'gore': 1,\n",
      "          'nas': 1,\n",
      "          'matter': 1,\n",
      "          'fact': 1,\n",
      "          'found': 1,\n",
      "          'activity': 1,\n",
      "          'incredibly': 1,\n",
      "          'boring': 1,\n",
      "          'complete': 1,\n",
      "          'waste': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'nhalf': 1,\n",
      "          'episode': 1,\n",
      "          '90210': 1,\n",
      "          'dina': 1,\n",
      "          'simply': 1,\n",
      "          'things': 1,\n",
      "          'presenting': 1,\n",
      "          'irrelevant': 1,\n",
      "          'information': 1,\n",
      "          'irritating': 1,\n",
      "          'way': 1,\n",
      "          'web': 1,\n",
      "          'rest': 1,\n",
      "          'display': 1,\n",
      "          'humans': 1,\n",
      "          'fighting': 1,\n",
      "          'computergenerated': 1,\n",
      "          'images': 1,\n",
      "          'battles': 1,\n",
      "          'jumping': 1,\n",
      "          'shoot': 1,\n",
      "          'get': 1,\n",
      "          'stabbed': 1,\n",
      "          'barren': 1,\n",
      "          'giant': 1,\n",
      "          'werent': 1,\n",
      "          'stunts': 1,\n",
      "          'consider': 1,\n",
      "          'slightly': 1,\n",
      "          'exciting': 1,\n",
      "          'pictures': 1,\n",
      "          'running': 1,\n",
      "          'ni': 1,\n",
      "          'wonder': 1,\n",
      "          'eat': 1,\n",
      "          'theres': 1,\n",
      "          'laughable': 1,\n",
      "          'treatment': 1,\n",
      "          'frankly': 1,\n",
      "          'amusing': 1,\n",
      "          'jokes': 1,\n",
      "          'intended': 1,\n",
      "          'nthis': 1,\n",
      "          'type': 1,\n",
      "          'story': 1,\n",
      "          'obviously': 1,\n",
      "          'aimed': 1,\n",
      "          '10yearolds': 1,\n",
      "          'cant': 1,\n",
      "          'see': 1,\n",
      "          'anyway': 1,\n",
      "          'violence': 1,\n",
      "          'sexuality': 1,\n",
      "          'always': 1,\n",
      "          '16yearolds': 1,\n",
      "          'frame': 1,\n",
      "          'mind': 1,\n",
      "          'pointless': 1,\n",
      "          'begins': 1,\n",
      "          'johnnys': 1,\n",
      "          'girlfriend': 1,\n",
      "          'richards': 1,\n",
      "          'decides': 1,\n",
      "          'wants': 1,\n",
      "          'throwing': 1,\n",
      "          'asteroids': 1,\n",
      "          'earth': 1,\n",
      "          'njohnny': 1,\n",
      "          'signs': 1,\n",
      "          'trooper': 1,\n",
      "          'overacted': 1,\n",
      "          'argument': 1,\n",
      "          'parents': 1,\n",
      "          'dizzy': 1,\n",
      "          'boy': 1,\n",
      "          'results': 1,\n",
      "          'isnt': 1,\n",
      "          'means': 1,\n",
      "          'augmented': 1,\n",
      "          'worsethanstereotyped': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'increased': 1,\n",
      "          'bitchiness': 1,\n",
      "          'melrose': 1,\n",
      "          'rather': 1,\n",
      "          'nanyway': 1,\n",
      "          'getting': 1,\n",
      "          'back': 1,\n",
      "          'thing': 1,\n",
      "          'might': 1,\n",
      "          'pilot': 1,\n",
      "          'dude': 1,\n",
      "          'league': 1,\n",
      "          'ndizzy': 1,\n",
      "          'comes': 1,\n",
      "          'chasing': 1,\n",
      "          'joins': 1,\n",
      "          'nthey': 1,\n",
      "          'start': 1,\n",
      "          'training': 1,\n",
      "          'contains': 1,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'calls': 1,\n",
      "          'syndrome': 1,\n",
      "          'made': 1,\n",
      "          'obvious': 1,\n",
      "          'mistakes': 1,\n",
      "          'real': 1,\n",
      "          'combat': 1,\n",
      "          'guess': 1,\n",
      "          'nthats': 1,\n",
      "          'complex': 1,\n",
      "          'gets': 1,\n",
      "          'noh': 1,\n",
      "          'friends': 1,\n",
      "          'carl': 1,\n",
      "          'neil': 1,\n",
      "          'patrick': 1,\n",
      "          'harris': 1,\n",
      "          'k': 1,\n",
      "          'doogie': 1,\n",
      "          'howser': 1,\n",
      "          'becomes': 1,\n",
      "          'involved': 1,\n",
      "          'war': 1,\n",
      "          'intelligence': 1,\n",
      "          'abilities': 1,\n",
      "          'really': 1,\n",
      "          'corny': 1,\n",
      "          'make': 1,\n",
      "          'want': 1,\n",
      "          'spray': 1,\n",
      "          'insecticide': 1,\n",
      "          'nhes': 1,\n",
      "          'fifth': 1,\n",
      "          'nom': 1,\n",
      "          'fall': 1,\n",
      "          'kill': 1,\n",
      "          'try': 1,\n",
      "          'act': 1,\n",
      "          'nnaturally': 1,\n",
      "          'sort': 1,\n",
      "          'halfwin': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'soldiers': 1,\n",
      "          'chatting': 1,\n",
      "          'smiling': 1,\n",
      "          'carrying': 1,\n",
      "          'grievous': 1,\n",
      "          'wounds': 1,\n",
      "          'caused': 1,\n",
      "          'bug': 1,\n",
      "          'legs': 1,\n",
      "          'suffer': 1,\n",
      "          'release': 1,\n",
      "          'hold': 1,\n",
      "          'captive': 1,\n",
      "          'killing': 1,\n",
      "          'nisnt': 1,\n",
      "          'amazing': 1,\n",
      "          'earthlings': 1,\n",
      "          'havent': 1,\n",
      "          'invented': 1,\n",
      "          'handheld': 1,\n",
      "          'weapons': 1,\n",
      "          'question': 1,\n",
      "          'remains': 1,\n",
      "          'gave': 1,\n",
      "          'instead': 1,\n",
      "          'zero': 1,\n",
      "          'nwell': 1,\n",
      "          'maybe': 1,\n",
      "          'aquarter': 1,\n",
      "          'originality': 1,\n",
      "          'cosex': 1,\n",
      "          'shower': 1,\n",
      "          'scene': 1,\n",
      "          'brief': 1,\n",
      "          'suspense': 1,\n",
      "          'copying': 1,\n",
      "          'zulu': 1,\n",
      "          'letting': 1,\n",
      "          'good': 1,\n",
      "          'half': 1,\n",
      "          'suckingout': 1,\n",
      "          'brain': 1,\n",
      "          'people': 1,\n",
      "          'deserved': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 5,\n",
      "          'jerry': 4,\n",
      "          'alice': 4,\n",
      "          'roberts': 4,\n",
      "          'nis': 3,\n",
      "          'jerrys': 3,\n",
      "          'new': 2,\n",
      "          'conspiracy': 2,\n",
      "          'theories': 2,\n",
      "          'another': 2,\n",
      "          'one': 2,\n",
      "          'scene': 2,\n",
      "          'nthe': 2,\n",
      "          'pretty': 2,\n",
      "          'perhaps': 2,\n",
      "          'locked': 2,\n",
      "          'include': 2,\n",
      "          'sequence': 2,\n",
      "          'nand': 2,\n",
      "          'phew': 1,\n",
      "          'mess': 1,\n",
      "          'nfor': 1,\n",
      "          'fifth': 1,\n",
      "          'collaboration': 1,\n",
      "          'director': 1,\n",
      "          'rich': 1,\n",
      "          'ard': 1,\n",
      "          'donner': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'iiii': 1,\n",
      "          'maverick': 1,\n",
      "          'mel': 1,\n",
      "          'gibson': 1,\n",
      "          'plays': 1,\n",
      "          'motormouth': 1,\n",
      "          'maybe': 1,\n",
      "          'mentally': 1,\n",
      "          'ill': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'cabbie': 1,\n",
      "          'whose': 1,\n",
      "          'wild': 1,\n",
      "          'ignored': 1,\n",
      "          'julia': 1,\n",
      "          'acting': 1,\n",
      "          'serious': 1,\n",
      "          'justice': 1,\n",
      "          'department': 1,\n",
      "          'employee': 1,\n",
      "          'crush': 1,\n",
      "          'nshe': 1,\n",
      "          'interested': 1,\n",
      "          'person': 1,\n",
      "          'cia': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'promptly': 1,\n",
      "          'kidnaps': 1,\n",
      "          'conjectures': 1,\n",
      "          'correct': 1,\n",
      "          'metal': 1,\n",
      "          'strip': 1,\n",
      "          '100': 1,\n",
      "          'bill': 1,\n",
      "          'used': 1,\n",
      "          'track': 1,\n",
      "          'movements': 1,\n",
      "          'oliver': 1,\n",
      "          'stone': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'cut': 1,\n",
      "          'deal': 1,\n",
      "          'george': 1,\n",
      "          'bush': 1,\n",
      "          'spread': 1,\n",
      "          'dis': 1,\n",
      "          'information': 1,\n",
      "          'movie': 1,\n",
      "          'really': 1,\n",
      "          'crazed': 1,\n",
      "          'cabbies': 1,\n",
      "          'nno': 1,\n",
      "          'nas': 1,\n",
      "          'turns': 1,\n",
      "          'theres': 1,\n",
      "          'nonsense': 1,\n",
      "          'going': 1,\n",
      "          'involving': 1,\n",
      "          'revolving': 1,\n",
      "          'around': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'background': 1,\n",
      "          'hint': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'early': 1,\n",
      "          'blacks': 1,\n",
      "          'flashes': 1,\n",
      "          'back': 1,\n",
      "          'quick': 1,\n",
      "          'succession': 1,\n",
      "          'images': 1,\n",
      "          'interrogation': 1,\n",
      "          'room': 1,\n",
      "          'hypodermic': 1,\n",
      "          'needles': 1,\n",
      "          'ms': 1,\n",
      "          'initial': 1,\n",
      "          'premise': 1,\n",
      "          'good': 1,\n",
      "          'played': 1,\n",
      "          'delightfully': 1,\n",
      "          'dizzying': 1,\n",
      "          'clip': 1,\n",
      "          'nmel': 1,\n",
      "          'wideropen': 1,\n",
      "          'weve': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'characters': 1,\n",
      "          'relationship': 1,\n",
      "          'initially': 1,\n",
      "          'strains': 1,\n",
      "          'credibility': 1,\n",
      "          'combined': 1,\n",
      "          'star': 1,\n",
      "          'power': 1,\n",
      "          'blissfully': 1,\n",
      "          'intoxicating': 1,\n",
      "          'highest': 1,\n",
      "          'wattage': 1,\n",
      "          'summer': 1,\n",
      "          'neven': 1,\n",
      "          'plot': 1,\n",
      "          'contrivances': 1,\n",
      "          'begin': 1,\n",
      "          'intrude': 1,\n",
      "          'two': 1,\n",
      "          'remain': 1,\n",
      "          'randy': 1,\n",
      "          'dandy': 1,\n",
      "          'screen': 1,\n",
      "          'pair': 1,\n",
      "          'ntheres': 1,\n",
      "          'great': 1,\n",
      "          'fortress': 1,\n",
      "          'er': 1,\n",
      "          'apartment': 1,\n",
      "          'trying': 1,\n",
      "          'act': 1,\n",
      "          'casual': 1,\n",
      "          'hyperactive': 1,\n",
      "          'host': 1,\n",
      "          'tries': 1,\n",
      "          'remember': 1,\n",
      "          'combination': 1,\n",
      "          'coffee': 1,\n",
      "          'bean': 1,\n",
      "          'container': 1,\n",
      "          'stores': 1,\n",
      "          'con': 1,\n",
      "          'tainer': 1,\n",
      "          'fridge': 1,\n",
      "          'nother': 1,\n",
      "          'hilarious': 1,\n",
      "          'moments': 1,\n",
      "          'many': 1,\n",
      "          'trio': 1,\n",
      "          'memorable': 1,\n",
      "          'conventionbreakers': 1,\n",
      "          'ditches': 1,\n",
      "          'tail': 1,\n",
      "          'coldcocks': 1,\n",
      "          'someone': 1,\n",
      "          'later': 1,\n",
      "          'eludes': 1,\n",
      "          'foot': 1,\n",
      "          'pursuit': 1,\n",
      "          'uproariously': 1,\n",
      "          'unexpected': 1,\n",
      "          'fashion': 1,\n",
      "          'thats': 1,\n",
      "          'donners': 1,\n",
      "          'ladyhawke': 1,\n",
      "          'playing': 1,\n",
      "          'theater': 1,\n",
      "          'btw': 1,\n",
      "          'nlets': 1,\n",
      "          'see': 1,\n",
      "          'pleasures': 1,\n",
      "          'na': 1,\n",
      "          'brilliant': 1,\n",
      "          'title': 1,\n",
      "          'jazzy': 1,\n",
      "          'score': 1,\n",
      "          'carter': 1,\n",
      "          'burwell': 1,\n",
      "          'worthpayingtosee': 1,\n",
      "          'sight': 1,\n",
      "          'pumping': 1,\n",
      "          'lead': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'slamming': 1,\n",
      "          'anothers': 1,\n",
      "          'head': 1,\n",
      "          'wall': 1,\n",
      "          'noh': 1,\n",
      "          'woman': 1,\n",
      "          'ngetting': 1,\n",
      "          'latter': 1,\n",
      "          'however': 1,\n",
      "          'requires': 1,\n",
      "          'slogging': 1,\n",
      "          'increasingly': 1,\n",
      "          'overburdened': 1,\n",
      "          'ultimately': 1,\n",
      "          'unappealing': 1,\n",
      "          'story': 1,\n",
      "          'last': 1,\n",
      "          'hour': 1,\n",
      "          'theory': 1,\n",
      "          'devolves': 1,\n",
      "          'tolerable': 1,\n",
      "          'torturous': 1,\n",
      "          'almost': 1,\n",
      "          'unwatchable': 1,\n",
      "          'nmore': 1,\n",
      "          'stuff': 1,\n",
      "          'happens': 1,\n",
      "          'stupid': 1,\n",
      "          'shit': 1,\n",
      "          'variety': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'except': 1,\n",
      "          'late': 1,\n",
      "          'locating': 1,\n",
      "          'abandoned': 1,\n",
      "          'wing': 1,\n",
      "          'mental': 1,\n",
      "          'hospital': 1,\n",
      "          'hearing': 1,\n",
      "          'voice': 1,\n",
      "          'carrying': 1,\n",
      "          'air': 1,\n",
      "          'ducts': 1,\n",
      "          'thought': 1,\n",
      "          'wabbit': 1,\n",
      "          'season': 1,\n",
      "          'ngood': 1,\n",
      "          'god': 1,\n",
      "          'rewrites': 1,\n",
      "          'movies': 1,\n",
      "          'arrive': 1,\n",
      "          'nondescript': 1,\n",
      "          'black': 1,\n",
      "          'vehicles': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'harry': 11,\n",
      "          'film': 9,\n",
      "          'palmetto': 6,\n",
      "          'nthe': 6,\n",
      "          'noir': 4,\n",
      "          'story': 4,\n",
      "          'schlondorff': 4,\n",
      "          'characters': 3,\n",
      "          'neonoir': 3,\n",
      "          'films': 3,\n",
      "          'like': 3,\n",
      "          'shows': 3,\n",
      "          'comedy': 3,\n",
      "          'harrelson': 3,\n",
      "          'man': 3,\n",
      "          'problems': 3,\n",
      "          'bad': 3,\n",
      "          'trunk': 3,\n",
      "          'black': 2,\n",
      "          'photography': 2,\n",
      "          'long': 2,\n",
      "          'n': 2,\n",
      "          'l': 2,\n",
      "          'confidential': 2,\n",
      "          'take': 2,\n",
      "          'theres': 2,\n",
      "          'even': 2,\n",
      "          'thriller': 2,\n",
      "          'work': 2,\n",
      "          'journalist': 2,\n",
      "          'nina': 2,\n",
      "          'nwhile': 2,\n",
      "          'woman': 2,\n",
      "          'elisabeth': 2,\n",
      "          'shue': 2,\n",
      "          'ransom': 2,\n",
      "          'kidnapping': 2,\n",
      "          'stepdaughter': 2,\n",
      "          'chloe': 2,\n",
      "          'sevigny': 2,\n",
      "          'go': 2,\n",
      "          'know': 2,\n",
      "          'nas': 2,\n",
      "          'enough': 2,\n",
      "          'harrys': 2,\n",
      "          'comes': 2,\n",
      "          'scenes': 2,\n",
      "          'badly': 2,\n",
      "          'might': 2,\n",
      "          'played': 2,\n",
      "          'direction': 2,\n",
      "          'scene': 2,\n",
      "          'french': 1,\n",
      "          'phrase': 1,\n",
      "          'literally': 1,\n",
      "          'means': 1,\n",
      "          'nwebster': 1,\n",
      "          'defines': 1,\n",
      "          'type': 1,\n",
      "          'crime': 1,\n",
      "          'featuring': 1,\n",
      "          'cynical': 1,\n",
      "          'malevolent': 1,\n",
      "          'sleazy': 1,\n",
      "          'setting': 1,\n",
      "          'ominous': 1,\n",
      "          'atmosphere': 1,\n",
      "          'conveyed': 1,\n",
      "          'shadowy': 1,\n",
      "          'foreboding': 1,\n",
      "          'background': 1,\n",
      "          'music': 1,\n",
      "          'nclassic': 1,\n",
      "          'including': 1,\n",
      "          'memorable': 1,\n",
      "          'fare': 1,\n",
      "          'big': 1,\n",
      "          'sleep': 1,\n",
      "          'original': 1,\n",
      "          'cape': 1,\n",
      "          'fear': 1,\n",
      "          'orson': 1,\n",
      "          'welles': 1,\n",
      "          'striking': 1,\n",
      "          'touch': 1,\n",
      "          'evil': 1,\n",
      "          'employed': 1,\n",
      "          'white': 1,\n",
      "          'emphasize': 1,\n",
      "          'shadows': 1,\n",
      "          'associated': 1,\n",
      "          'genre': 1,\n",
      "          'ncolor': 1,\n",
      "          'came': 1,\n",
      "          'play': 1,\n",
      "          'chinatown': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'easily': 1,\n",
      "          'best': 1,\n",
      "          '1997': 1,\n",
      "          'wonderful': 1,\n",
      "          'piece': 1,\n",
      "          'contemporary': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nfor': 1,\n",
      "          'textbook': 1,\n",
      "          'example': 1,\n",
      "          'elements': 1,\n",
      "          'create': 1,\n",
      "          'absolute': 1,\n",
      "          'mess': 1,\n",
      "          'nbased': 1,\n",
      "          'another': 1,\n",
      "          'sucker': 1,\n",
      "          'short': 1,\n",
      "          'written': 1,\n",
      "          'british': 1,\n",
      "          'author': 1,\n",
      "          'rene': 1,\n",
      "          'raymond': 1,\n",
      "          'pseudonym': 1,\n",
      "          'james': 1,\n",
      "          'hadley': 1,\n",
      "          'chase': 1,\n",
      "          'happens': 1,\n",
      "          'filmmaker': 1,\n",
      "          'puts': 1,\n",
      "          'style': 1,\n",
      "          'ahead': 1,\n",
      "          'substance': 1,\n",
      "          'ndirector': 1,\n",
      "          'volker': 1,\n",
      "          'tin': 1,\n",
      "          'drum': 1,\n",
      "          'handmaids': 1,\n",
      "          'tale': 1,\n",
      "          'stated': 1,\n",
      "          'werent': 1,\n",
      "          'sure': 1,\n",
      "          'time': 1,\n",
      "          'going': 1,\n",
      "          'nit': 1,\n",
      "          'preposterous': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'ponderous': 1,\n",
      "          'begins': 1,\n",
      "          'barber': 1,\n",
      "          'woody': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'nsomeone': 1,\n",
      "          'turned': 1,\n",
      "          'states': 1,\n",
      "          'witness': 1,\n",
      "          'revealed': 1,\n",
      "          'framed': 1,\n",
      "          'reward': 1,\n",
      "          'blowing': 1,\n",
      "          'lid': 1,\n",
      "          'corruption': 1,\n",
      "          'small': 1,\n",
      "          'florida': 1,\n",
      "          'town': 1,\n",
      "          'nbitter': 1,\n",
      "          'broke': 1,\n",
      "          'plans': 1,\n",
      "          'hitchhike': 1,\n",
      "          'miami': 1,\n",
      "          'start': 1,\n",
      "          'life': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'gina': 1,\n",
      "          'gershon': 1,\n",
      "          'appears': 1,\n",
      "          'return': 1,\n",
      "          'hanging': 1,\n",
      "          'bar': 1,\n",
      "          'notices': 1,\n",
      "          'beautiful': 1,\n",
      "          'left': 1,\n",
      "          'purse': 1,\n",
      "          'phone': 1,\n",
      "          'booth': 1,\n",
      "          'nharry': 1,\n",
      "          'pockets': 1,\n",
      "          'cash': 1,\n",
      "          'reappear': 1,\n",
      "          'catch': 1,\n",
      "          'money': 1,\n",
      "          'pocket': 1,\n",
      "          'nno': 1,\n",
      "          'problem': 1,\n",
      "          'though': 1,\n",
      "          'radiant': 1,\n",
      "          'blonde': 1,\n",
      "          'rhea': 1,\n",
      "          'malroux': 1,\n",
      "          'young': 1,\n",
      "          'wife': 1,\n",
      "          'rich': 1,\n",
      "          'older': 1,\n",
      "          'heart': 1,\n",
      "          'proposition': 1,\n",
      "          'nrhea': 1,\n",
      "          'needs': 1,\n",
      "          'threatening': 1,\n",
      "          'voice': 1,\n",
      "          'someone': 1,\n",
      "          'collect': 1,\n",
      "          'staged': 1,\n",
      "          'teenage': 1,\n",
      "          'odette': 1,\n",
      "          'girls': 1,\n",
      "          'want': 1,\n",
      "          'bilk': 1,\n",
      "          'halfmillion': 1,\n",
      "          'dollar': 1,\n",
      "          'old': 1,\n",
      "          'happily': 1,\n",
      "          'give': 1,\n",
      "          '50': 1,\n",
      "          '000': 1,\n",
      "          'helping': 1,\n",
      "          'scam': 1,\n",
      "          'nthings': 1,\n",
      "          'wrong': 1,\n",
      "          'course': 1,\n",
      "          'nodette': 1,\n",
      "          'found': 1,\n",
      "          'dead': 1,\n",
      "          'leaving': 1,\n",
      "          'frantically': 1,\n",
      "          'trying': 1,\n",
      "          'dispose': 1,\n",
      "          'corpse': 1,\n",
      "          'cover': 1,\n",
      "          'tracks': 1,\n",
      "          'nin': 1,\n",
      "          'ironic': 1,\n",
      "          'twist': 1,\n",
      "          'asked': 1,\n",
      "          'local': 1,\n",
      "          'noffice': 1,\n",
      "          'nthey': 1,\n",
      "          'need': 1,\n",
      "          'press': 1,\n",
      "          'liaison': 1,\n",
      "          'field': 1,\n",
      "          'questions': 1,\n",
      "          'odettes': 1,\n",
      "          'feel': 1,\n",
      "          'perfect': 1,\n",
      "          'job': 1,\n",
      "          'nnot': 1,\n",
      "          'setup': 1,\n",
      "          'knew': 1,\n",
      "          'handle': 1,\n",
      "          'material': 1,\n",
      "          'never': 1,\n",
      "          'settles': 1,\n",
      "          'consistent': 1,\n",
      "          'tone': 1,\n",
      "          'actors': 1,\n",
      "          'dont': 1,\n",
      "          'either': 1,\n",
      "          'muddling': 1,\n",
      "          'proceedings': 1,\n",
      "          'wasnt': 1,\n",
      "          'suffers': 1,\n",
      "          'major': 1,\n",
      "          'logic': 1,\n",
      "          'nwoody': 1,\n",
      "          'talented': 1,\n",
      "          'actor': 1,\n",
      "          'admirable': 1,\n",
      "          'willingness': 1,\n",
      "          'risky': 1,\n",
      "          'parts': 1,\n",
      "          'hes': 1,\n",
      "          'lost': 1,\n",
      "          'npresented': 1,\n",
      "          'crusading': 1,\n",
      "          'horribly': 1,\n",
      "          'wronged': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'would': 1,\n",
      "          'stupid': 1,\n",
      "          'dishonest': 1,\n",
      "          'get': 1,\n",
      "          'caught': 1,\n",
      "          'scheme': 1,\n",
      "          'nharrelson': 1,\n",
      "          'clearly': 1,\n",
      "          'doesnt': 1,\n",
      "          'character': 1,\n",
      "          'spends': 1,\n",
      "          'glowering': 1,\n",
      "          'sweating': 1,\n",
      "          'generally': 1,\n",
      "          'acting': 1,\n",
      "          'miserable': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'gives': 1,\n",
      "          'goofy': 1,\n",
      "          'performance': 1,\n",
      "          'behaving': 1,\n",
      "          'vamp': 1,\n",
      "          'nitrous': 1,\n",
      "          'oxide': 1,\n",
      "          'lays': 1,\n",
      "          'many': 1,\n",
      "          'slurpy': 1,\n",
      "          'quirks': 1,\n",
      "          'juliette': 1,\n",
      "          'lewis': 1,\n",
      "          'jr': 1,\n",
      "          'despite': 1,\n",
      "          'number': 1,\n",
      "          'steamy': 1,\n",
      "          'chemistry': 1,\n",
      "          'women': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'dubs': 1,\n",
      "          'dialogue': 1,\n",
      "          'lips': 1,\n",
      "          'running': 1,\n",
      "          'others': 1,\n",
      "          'bodies': 1,\n",
      "          'ntwo': 1,\n",
      "          'particularly': 1,\n",
      "          'highlight': 1,\n",
      "          'driving': 1,\n",
      "          'body': 1,\n",
      "          'minor': 1,\n",
      "          'car': 1,\n",
      "          'wreck': 1,\n",
      "          'cop': 1,\n",
      "          'officer': 1,\n",
      "          'wants': 1,\n",
      "          'help': 1,\n",
      "          'change': 1,\n",
      "          'flat': 1,\n",
      "          'tire': 1,\n",
      "          'asks': 1,\n",
      "          'open': 1,\n",
      "          'nharrys': 1,\n",
      "          'pathetic': 1,\n",
      "          'attempts': 1,\n",
      "          'keep': 1,\n",
      "          'closed': 1,\n",
      "          'worked': 1,\n",
      "          'schlondorffs': 1,\n",
      "          'grim': 1,\n",
      "          'embarrassing': 1,\n",
      "          'nadir': 1,\n",
      "          'guy': 1,\n",
      "          'prepares': 1,\n",
      "          'kill': 1,\n",
      "          'nwere': 1,\n",
      "          'supposed': 1,\n",
      "          'horrified': 1,\n",
      "          'watching': 1,\n",
      "          'hero': 1,\n",
      "          'dangling': 1,\n",
      "          'bathtub': 1,\n",
      "          'filled': 1,\n",
      "          'acid': 1,\n",
      "          'point': 1,\n",
      "          'foundered': 1,\n",
      "          'merely': 1,\n",
      "          'reminiscent': 1,\n",
      "          'jessica': 1,\n",
      "          'roger': 1,\n",
      "          'rabbit': 1,\n",
      "          'suspended': 1,\n",
      "          'vat': 1,\n",
      "          'dip': 1,\n",
      "          'nhad': 1,\n",
      "          'tongue': 1,\n",
      "          'firmly': 1,\n",
      "          'cheek': 1,\n",
      "          'entertaining': 1,\n",
      "          'shaggy': 1,\n",
      "          'dog': 1,\n",
      "          'nbut': 1,\n",
      "          'harsh': 1,\n",
      "          'sluggish': 1,\n",
      "          'paintbynumbers': 1,\n",
      "          'exercise': 1,\n",
      "          'neo': 1,\n",
      "          'cluelessness': 1,\n",
      "          'navoid': 1,\n",
      "          'nonsense': 1,\n",
      "          'see': 1,\n",
      "          'instead': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 12,\n",
      "          'even': 6,\n",
      "          'time': 5,\n",
      "          'ni': 5,\n",
      "          'lara': 4,\n",
      "          'also': 4,\n",
      "          'im': 4,\n",
      "          'lot': 3,\n",
      "          'well': 3,\n",
      "          'scenes': 3,\n",
      "          'cool': 3,\n",
      "          'film': 3,\n",
      "          'dialogue': 3,\n",
      "          'especially': 3,\n",
      "          '710': 3,\n",
      "          'ass': 2,\n",
      "          'likes': 2,\n",
      "          'say': 2,\n",
      "          'shirts': 2,\n",
      "          'jolie': 2,\n",
      "          'action': 2,\n",
      "          'look': 2,\n",
      "          'bad': 2,\n",
      "          'guys': 2,\n",
      "          'lame': 2,\n",
      "          'moments': 2,\n",
      "          'end': 2,\n",
      "          'nall': 2,\n",
      "          'wasnt': 2,\n",
      "          'early': 2,\n",
      "          'every': 2,\n",
      "          'know': 2,\n",
      "          'guess': 2,\n",
      "          'west': 2,\n",
      "          'didnt': 2,\n",
      "          'energy': 2,\n",
      "          'father': 2,\n",
      "          'crap': 2,\n",
      "          'one': 2,\n",
      "          'talking': 2,\n",
      "          'thats': 2,\n",
      "          'actually': 2,\n",
      "          'care': 2,\n",
      "          'though': 2,\n",
      "          'supposed': 2,\n",
      "          'trust': 2,\n",
      "          'see': 2,\n",
      "          'youll': 2,\n",
      "          'go': 2,\n",
      "          'worst': 2,\n",
      "          'movies': 2,\n",
      "          'coming': 2,\n",
      "          'lost': 2,\n",
      "          'mummy': 2,\n",
      "          '310': 2,\n",
      "          'wild': 2,\n",
      "          'plot': 1,\n",
      "          'croft': 1,\n",
      "          'british': 1,\n",
      "          'rich': 1,\n",
      "          'kicks': 1,\n",
      "          'nshe': 1,\n",
      "          'raid': 1,\n",
      "          'tombs': 1,\n",
      "          'illuminata': 1,\n",
      "          'discover': 1,\n",
      "          'nine': 1,\n",
      "          'planets': 1,\n",
      "          'stand': 1,\n",
      "          'alignment': 1,\n",
      "          'first': 1,\n",
      "          '5000': 1,\n",
      "          'years': 1,\n",
      "          'holds': 1,\n",
      "          'key': 1,\n",
      "          'needless': 1,\n",
      "          'want': 1,\n",
      "          'nab': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'sport': 1,\n",
      "          'tight': 1,\n",
      "          'hummanahummanahummana': 1,\n",
      "          'ncritique': 1,\n",
      "          'angelina': 1,\n",
      "          'great': 1,\n",
      "          'nthere': 1,\n",
      "          'three': 1,\n",
      "          'pretty': 1,\n",
      "          'nuhhhhhm': 1,\n",
      "          'unfortunately': 1,\n",
      "          'rest': 1,\n",
      "          'sucked': 1,\n",
      "          'nbad': 1,\n",
      "          'generic': 1,\n",
      "          'sidekicks': 1,\n",
      "          'mystery': 1,\n",
      "          'yodaesque': 1,\n",
      "          'mumbojumbo': 1,\n",
      "          'sprouted': 1,\n",
      "          'crappy': 1,\n",
      "          'cgi': 1,\n",
      "          'near': 1,\n",
      "          'horror': 1,\n",
      "          'show': 1,\n",
      "          'reviews': 1,\n",
      "          'warned': 1,\n",
      "          'us': 1,\n",
      "          'since': 1,\n",
      "          'scene': 1,\n",
      "          'feature': 1,\n",
      "          'jolies': 1,\n",
      "          'torpedoes': 1,\n",
      "          'begging': 1,\n",
      "          'burst': 1,\n",
      "          'lucky': 1,\n",
      "          'quite': 1,\n",
      "          'letdown': 1,\n",
      "          'nonetheless': 1,\n",
      "          'consider': 1,\n",
      "          'major': 1,\n",
      "          'opportunity': 1,\n",
      "          'filmmakers': 1,\n",
      "          'create': 1,\n",
      "          'hip': 1,\n",
      "          'woman': 1,\n",
      "          'hero': 1,\n",
      "          'based': 1,\n",
      "          'popular': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'dont': 1,\n",
      "          'put': 1,\n",
      "          'blame': 1,\n",
      "          'director': 1,\n",
      "          'simon': 1,\n",
      "          'really': 1,\n",
      "          'tie': 1,\n",
      "          'whole': 1,\n",
      "          'together': 1,\n",
      "          'nthe': 1,\n",
      "          'lacked': 1,\n",
      "          'consistent': 1,\n",
      "          'pace': 1,\n",
      "          'nfun': 1,\n",
      "          'felt': 1,\n",
      "          'kinda': 1,\n",
      "          'depressed': 1,\n",
      "          'watching': 1,\n",
      "          'horrible': 1,\n",
      "          'given': 1,\n",
      "          'poor': 1,\n",
      "          'john': 1,\n",
      "          'voight': 1,\n",
      "          'recite': 1,\n",
      "          'plain': 1,\n",
      "          'embarrassing': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'mention': 1,\n",
      "          'moustache': 1,\n",
      "          'hehehe': 1,\n",
      "          'nwhy': 1,\n",
      "          'shite': 1,\n",
      "          'hated': 1,\n",
      "          'ghostlike': 1,\n",
      "          'figure': 1,\n",
      "          'friend': 1,\n",
      "          'child': 1,\n",
      "          'would': 1,\n",
      "          'ramble': 1,\n",
      "          'crofts': 1,\n",
      "          'giving': 1,\n",
      "          'ounce': 1,\n",
      "          'theyre': 1,\n",
      "          'called': 1,\n",
      "          'lack': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'right': 1,\n",
      "          'nthats': 1,\n",
      "          'builds': 1,\n",
      "          'enough': 1,\n",
      "          'background': 1,\n",
      "          'characters': 1,\n",
      "          'screen': 1,\n",
      "          'could': 1,\n",
      "          'get': 1,\n",
      "          'anyone': 1,\n",
      "          'bored': 1,\n",
      "          'lets': 1,\n",
      "          'explain': 1,\n",
      "          'gobbledygook': 1,\n",
      "          'nand': 1,\n",
      "          'thought': 1,\n",
      "          'kicked': 1,\n",
      "          'mighty': 1,\n",
      "          'damn': 1,\n",
      "          'sexy': 1,\n",
      "          'blasting': 1,\n",
      "          'guns': 1,\n",
      "          'everybody': 1,\n",
      "          'else': 1,\n",
      "          'around': 1,\n",
      "          'goddamn': 1,\n",
      "          'boring': 1,\n",
      "          'nher': 1,\n",
      "          'butler': 1,\n",
      "          'throwaway': 1,\n",
      "          'personality': 1,\n",
      "          'sidekick': 1,\n",
      "          'funny': 1,\n",
      "          'annoyed': 1,\n",
      "          'said': 1,\n",
      "          'word': 1,\n",
      "          'bugger': 1,\n",
      "          'says': 1,\n",
      "          'socalled': 1,\n",
      "          'spewed': 1,\n",
      "          'onedimension': 1,\n",
      "          'nthey': 1,\n",
      "          'spark': 1,\n",
      "          'amongst': 1,\n",
      "          'trailer': 1,\n",
      "          'ones': 1,\n",
      "          'overall': 1,\n",
      "          'picture': 1,\n",
      "          'mystical': 1,\n",
      "          'bullcrap': 1,\n",
      "          'buried': 1,\n",
      "          'nalso': 1,\n",
      "          'exotic': 1,\n",
      "          'locations': 1,\n",
      "          'necessarily': 1,\n",
      "          'impressed': 1,\n",
      "          'exterior': 1,\n",
      "          'shots': 1,\n",
      "          'less': 1,\n",
      "          'interiors': 1,\n",
      "          'looked': 1,\n",
      "          'like': 1,\n",
      "          'shot': 1,\n",
      "          'room': 1,\n",
      "          'nmind': 1,\n",
      "          'wont': 1,\n",
      "          'far': 1,\n",
      "          'year': 1,\n",
      "          'remember': 1,\n",
      "          'freddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'definitely': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'summer': 1,\n",
      "          'season': 1,\n",
      "          'course': 1,\n",
      "          'still': 1,\n",
      "          'sure': 1,\n",
      "          'garbage': 1,\n",
      "          'heaps': 1,\n",
      "          'pike': 1,\n",
      "          'nskip': 1,\n",
      "          'altogether': 1,\n",
      "          'rent': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'instead': 1,\n",
      "          'nme': 1,\n",
      "          'miss': 1,\n",
      "          'boobs': 1,\n",
      "          'night': 1,\n",
      "          'rocksolid': 1,\n",
      "          'porn': 1,\n",
      "          'good': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'nraiders': 1,\n",
      "          'ark': 1,\n",
      "          '1010': 1,\n",
      "          '810': 1,\n",
      "          'space': 1,\n",
      "          'returns': 1,\n",
      "          '610': 1,\n",
      "          'generals': 1,\n",
      "          'daughter': 1,\n",
      "          'romancing': 1,\n",
      "          'stone': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          '2': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'godzilla': 11,\n",
      "          'broderick': 8,\n",
      "          'nthe': 6,\n",
      "          'new': 5,\n",
      "          'doesnt': 4,\n",
      "          'lizard': 4,\n",
      "          'like': 4,\n",
      "          'n': 4,\n",
      "          'lightning': 4,\n",
      "          'york': 4,\n",
      "          'get': 3,\n",
      "          'even': 3,\n",
      "          'ngodzilla': 3,\n",
      "          'nthat': 3,\n",
      "          'us': 3,\n",
      "          'time': 3,\n",
      "          'makes': 3,\n",
      "          'nits': 3,\n",
      "          'movie': 3,\n",
      "          'godzillas': 3,\n",
      "          'patillo': 3,\n",
      "          'thats': 3,\n",
      "          'happens': 2,\n",
      "          'bigbudget': 2,\n",
      "          'nthis': 2,\n",
      "          'years': 2,\n",
      "          'summers': 2,\n",
      "          'element': 2,\n",
      "          'leezerd': 2,\n",
      "          'make': 2,\n",
      "          'movies': 2,\n",
      "          'really': 2,\n",
      "          'words': 2,\n",
      "          'giant': 2,\n",
      "          'sequence': 2,\n",
      "          'matthew': 2,\n",
      "          'nhe': 2,\n",
      "          'rain': 2,\n",
      "          'earthworms': 2,\n",
      "          'nas': 2,\n",
      "          'radiated': 2,\n",
      "          'love': 2,\n",
      "          'business': 2,\n",
      "          'nbroderick': 2,\n",
      "          'cast': 2,\n",
      "          'head': 2,\n",
      "          'announces': 2,\n",
      "          'strikes': 2,\n",
      "          'enough': 2,\n",
      "          'dog': 2,\n",
      "          'eat': 2,\n",
      "          'city': 2,\n",
      "          'filmmakers': 2,\n",
      "          'guess': 2,\n",
      "          'dont': 2,\n",
      "          'tell': 2,\n",
      "          'ebert': 2,\n",
      "          'gene': 2,\n",
      "          'didnt': 2,\n",
      "          'going': 2,\n",
      "          'back': 2,\n",
      "          'running': 2,\n",
      "          'characters': 2,\n",
      "          'fun': 2,\n",
      "          'fish': 2,\n",
      "          'lot': 2,\n",
      "          'independence': 2,\n",
      "          'day': 2,\n",
      "          'action': 2,\n",
      "          'bumble': 2,\n",
      "          'bee': 2,\n",
      "          'tuna': 2,\n",
      "          'every': 1,\n",
      "          'year': 1,\n",
      "          'days': 1,\n",
      "          'longer': 1,\n",
      "          'weather': 1,\n",
      "          'gets': 1,\n",
      "          'warmer': 1,\n",
      "          'studios': 1,\n",
      "          'start': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'releasing': 1,\n",
      "          'blockbusters': 1,\n",
      "          'crop': 1,\n",
      "          'already': 1,\n",
      "          'seems': 1,\n",
      "          'inferior': 1,\n",
      "          'past': 1,\n",
      "          '1997s': 1,\n",
      "          'lackluster': 1,\n",
      "          'trio': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'fifth': 1,\n",
      "          'lost': 1,\n",
      "          'world': 1,\n",
      "          'marketing': 1,\n",
      "          'blitz': 1,\n",
      "          '1998': 1,\n",
      "          'centered': 1,\n",
      "          'heeere': 1,\n",
      "          'optimistic': 1,\n",
      "          'future': 1,\n",
      "          'course': 1,\n",
      "          'based': 1,\n",
      "          'series': 1,\n",
      "          'cult': 1,\n",
      "          'translation': 1,\n",
      "          'bad': 1,\n",
      "          'people': 1,\n",
      "          'tolerate': 1,\n",
      "          'japan': 1,\n",
      "          'turn': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'ted': 1,\n",
      "          'turnerowned': 1,\n",
      "          'cable': 1,\n",
      "          'stations': 1,\n",
      "          'remake': 1,\n",
      "          'wont': 1,\n",
      "          'rise': 1,\n",
      "          'roots': 1,\n",
      "          'fairly': 1,\n",
      "          'obvious': 1,\n",
      "          'credits': 1,\n",
      "          'show': 1,\n",
      "          'origin': 1,\n",
      "          'nin': 1,\n",
      "          'five': 1,\n",
      "          'nuclear': 1,\n",
      "          'explosion': 1,\n",
      "          'creates': 1,\n",
      "          'nsounds': 1,\n",
      "          'enquirer': 1,\n",
      "          'headline': 1,\n",
      "          'mushroom': 1,\n",
      "          'cloud': 1,\n",
      "          'followed': 1,\n",
      "          'inevitable': 1,\n",
      "          'discovery': 1,\n",
      "          'japanese': 1,\n",
      "          'guy': 1,\n",
      "          'eating': 1,\n",
      "          'noodles': 1,\n",
      "          'chopsticks': 1,\n",
      "          'watching': 1,\n",
      "          'sumo': 1,\n",
      "          'wrestling': 1,\n",
      "          'aint': 1,\n",
      "          'stereotype': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'telltale': 1,\n",
      "          'radar': 1,\n",
      "          'blip': 1,\n",
      "          'npeople': 1,\n",
      "          'die': 1,\n",
      "          'ncut': 1,\n",
      "          'protagonist': 1,\n",
      "          'played': 1,\n",
      "          'first': 1,\n",
      "          'appearance': 1,\n",
      "          'wearing': 1,\n",
      "          'headphones': 1,\n",
      "          'warbling': 1,\n",
      "          'along': 1,\n",
      "          'singin': 1,\n",
      "          'nonetoosubtle': 1,\n",
      "          'sign': 1,\n",
      "          'wishes': 1,\n",
      "          'classier': 1,\n",
      "          'nno': 1,\n",
      "          'dice': 1,\n",
      "          'bueller': 1,\n",
      "          'nfrom': 1,\n",
      "          'beginning': 1,\n",
      "          'poor': 1,\n",
      "          'embarassing': 1,\n",
      "          'things': 1,\n",
      "          'fondle': 1,\n",
      "          'stand': 1,\n",
      "          'enormous': 1,\n",
      "          'footprint': 1,\n",
      "          'nevery': 1,\n",
      "          'disaster': 1,\n",
      "          'knowitall': 1,\n",
      "          'scientist': 1,\n",
      "          'worlds': 1,\n",
      "          'leading': 1,\n",
      "          'expert': 1,\n",
      "          'wouldnt': 1,\n",
      "          'printed': 1,\n",
      "          'card': 1,\n",
      "          'invaluable': 1,\n",
      "          'government': 1,\n",
      "          'immediately': 1,\n",
      "          'dispels': 1,\n",
      "          'vicki': 1,\n",
      "          'lewis': 1,\n",
      "          'theory': 1,\n",
      "          'dinosaur': 1,\n",
      "          'hey': 1,\n",
      "          'cant': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'intellectual': 1,\n",
      "          'arguments': 1,\n",
      "          'newsradio': 1,\n",
      "          'members': 1,\n",
      "          'instead': 1,\n",
      "          'hits': 1,\n",
      "          'nail': 1,\n",
      "          'announcing': 1,\n",
      "          'radiation': 1,\n",
      "          'isnt': 1,\n",
      "          'anamoly': 1,\n",
      "          'believe': 1,\n",
      "          'mutated': 1,\n",
      "          'abberation': 1,\n",
      "          'continues': 1,\n",
      "          'vocabulary': 1,\n",
      "          'see': 1,\n",
      "          'activated': 1,\n",
      "          'four': 1,\n",
      "          'syllables': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'introduced': 1,\n",
      "          'headed': 1,\n",
      "          'ambitious': 1,\n",
      "          'broadcast': 1,\n",
      "          'journalist': 1,\n",
      "          'maria': 1,\n",
      "          'brodericks': 1,\n",
      "          'former': 1,\n",
      "          'ngee': 1,\n",
      "          'odds': 1,\n",
      "          'paths': 1,\n",
      "          'cross': 1,\n",
      "          'dramatically': 1,\n",
      "          'important': 1,\n",
      "          'npoor': 1,\n",
      "          'trying': 1,\n",
      "          'ahead': 1,\n",
      "          'news': 1,\n",
      "          'held': 1,\n",
      "          'heartless': 1,\n",
      "          'anchorman': 1,\n",
      "          'harry': 1,\n",
      "          'shearer': 1,\n",
      "          'nitalian': 1,\n",
      "          'cameraman': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'tells': 1,\n",
      "          'shes': 1,\n",
      "          'ruthless': 1,\n",
      "          'nice': 1,\n",
      "          'anywhere': 1,\n",
      "          'town': 1,\n",
      "          'nactually': 1,\n",
      "          'emerges': 1,\n",
      "          'atlantic': 1,\n",
      "          'begin': 1,\n",
      "          'rampage': 1,\n",
      "          'big': 1,\n",
      "          'apples': 1,\n",
      "          'core': 1,\n",
      "          'provide': 1,\n",
      "          'onenote': 1,\n",
      "          'drunk': 1,\n",
      "          'fisherman': 1,\n",
      "          'hooks': 1,\n",
      "          'think': 1,\n",
      "          'ive': 1,\n",
      "          'got': 1,\n",
      "          'bite': 1,\n",
      "          'gigantic': 1,\n",
      "          'tidal': 1,\n",
      "          'wave': 1,\n",
      "          'begins': 1,\n",
      "          'rushing': 1,\n",
      "          'toward': 1,\n",
      "          'nyou': 1,\n",
      "          'next': 1,\n",
      "          'nsimilar': 1,\n",
      "          'reactions': 1,\n",
      "          'spring': 1,\n",
      "          'forth': 1,\n",
      "          'monster': 1,\n",
      "          'prowls': 1,\n",
      "          'nhearing': 1,\n",
      "          'rumble': 1,\n",
      "          'approaching': 1,\n",
      "          'footsteps': 1,\n",
      "          'one': 1,\n",
      "          'yorker': 1,\n",
      "          'remarks': 1,\n",
      "          'please': 1,\n",
      "          'another': 1,\n",
      "          'parade': 1,\n",
      "          'nplease': 1,\n",
      "          'best': 1,\n",
      "          'line': 1,\n",
      "          'could': 1,\n",
      "          'come': 1,\n",
      "          'nmayor': 1,\n",
      "          'pleased': 1,\n",
      "          'nplayed': 1,\n",
      "          'principal': 1,\n",
      "          'class': 1,\n",
      "          'continually': 1,\n",
      "          'wrong': 1,\n",
      "          'decision': 1,\n",
      "          'given': 1,\n",
      "          'option': 1,\n",
      "          'bickers': 1,\n",
      "          'assistant': 1,\n",
      "          'ni': 1,\n",
      "          'knew': 1,\n",
      "          'theyd': 1,\n",
      "          'getting': 1,\n",
      "          'two': 1,\n",
      "          'thumbs': 1,\n",
      "          'critics': 1,\n",
      "          'bother': 1,\n",
      "          'kiss': 1,\n",
      "          'ass': 1,\n",
      "          'problem': 1,\n",
      "          'youre': 1,\n",
      "          'attack': 1,\n",
      "          'siskel': 1,\n",
      "          'least': 1,\n",
      "          'funny': 1,\n",
      "          'ndialogue': 1,\n",
      "          'agree': 1,\n",
      "          'werent': 1,\n",
      "          'sweets': 1,\n",
      "          'election': 1,\n",
      "          'nfollowed': 1,\n",
      "          'work': 1,\n",
      "          'nother': 1,\n",
      "          'lame': 1,\n",
      "          'jokes': 1,\n",
      "          'include': 1,\n",
      "          'everyone': 1,\n",
      "          'mispronouncing': 1,\n",
      "          'last': 1,\n",
      "          'name': 1,\n",
      "          'frenchman': 1,\n",
      "          'jean': 1,\n",
      "          'renos': 1,\n",
      "          'inability': 1,\n",
      "          'find': 1,\n",
      "          'good': 1,\n",
      "          'cup': 1,\n",
      "          'coffee': 1,\n",
      "          'ntheres': 1,\n",
      "          'progresses': 1,\n",
      "          'beast': 1,\n",
      "          'heads': 1,\n",
      "          'hiding': 1,\n",
      "          'suggests': 1,\n",
      "          'military': 1,\n",
      "          'lure': 1,\n",
      "          'food': 1,\n",
      "          'ncue': 1,\n",
      "          'twelve': 1,\n",
      "          'dump': 1,\n",
      "          'trucks': 1,\n",
      "          'dropping': 1,\n",
      "          'intersection': 1,\n",
      "          'ambush': 1,\n",
      "          'fails': 1,\n",
      "          'soon': 1,\n",
      "          'figures': 1,\n",
      "          'came': 1,\n",
      "          'buying': 1,\n",
      "          '50': 1,\n",
      "          'worth': 1,\n",
      "          'home': 1,\n",
      "          'pregnancy': 1,\n",
      "          'tests': 1,\n",
      "          'blood': 1,\n",
      "          'nyep': 1,\n",
      "          'children': 1,\n",
      "          'wonder': 1,\n",
      "          'kind': 1,\n",
      "          'creature': 1,\n",
      "          'would': 1,\n",
      "          'horny': 1,\n",
      "          'sex': 1,\n",
      "          'nthats': 1,\n",
      "          'explains': 1,\n",
      "          'reproduces': 1,\n",
      "          'asexually': 1,\n",
      "          'linda': 1,\n",
      "          'tripp': 1,\n",
      "          'comes': 1,\n",
      "          'makers': 1,\n",
      "          'dumb': 1,\n",
      "          'scenes': 1,\n",
      "          'destructive': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'shallow': 1,\n",
      "          'subplots': 1,\n",
      "          'nlook': 1,\n",
      "          'patillos': 1,\n",
      "          'betrayal': 1,\n",
      "          'done': 1,\n",
      "          'animal': 1,\n",
      "          'nwhat': 1,\n",
      "          'become': 1,\n",
      "          'climactic': 1,\n",
      "          'nest': 1,\n",
      "          'madison': 1,\n",
      "          'square': 1,\n",
      "          'garden': 1,\n",
      "          'main': 1,\n",
      "          'difference': 1,\n",
      "          'experience': 1,\n",
      "          'nit': 1,\n",
      "          'real': 1,\n",
      "          'global': 1,\n",
      "          'patriotic': 1,\n",
      "          'genuinely': 1,\n",
      "          'lots': 1,\n",
      "          'reptilian': 1,\n",
      "          'ripped': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'endless': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'likes': 1,\n",
      "          'kodak': 1,\n",
      "          'blockbuster': 1,\n",
      "          'juicy': 1,\n",
      "          'fruit': 1,\n",
      "          'swatch': 1,\n",
      "          'sprint': 1,\n",
      "          'nyes': 1,\n",
      "          'actually': 1,\n",
      "          'paid': 1,\n",
      "          'known': 1,\n",
      "          'official': 1,\n",
      "          'fact': 1,\n",
      "          'alone': 1,\n",
      "          'twice': 1,\n",
      "          'interesting': 1,\n",
      "          'anything': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'movie': 5,\n",
      "          'bad': 5,\n",
      "          'cuba': 4,\n",
      "          'black': 4,\n",
      "          'skeet': 3,\n",
      "          'ulrich': 3,\n",
      "          'films': 3,\n",
      "          'fall': 3,\n",
      "          'device': 3,\n",
      "          'two': 3,\n",
      "          'gooding': 3,\n",
      "          'jr': 3,\n",
      "          'guys': 3,\n",
      "          'get': 3,\n",
      "          'actually': 3,\n",
      "          'guy': 3,\n",
      "          'known': 3,\n",
      "          '510': 3,\n",
      "          'actor': 2,\n",
      "          'compare': 2,\n",
      "          'little': 2,\n",
      "          'series': 2,\n",
      "          'lethal': 2,\n",
      "          'weapon': 2,\n",
      "          'great': 2,\n",
      "          'chemistry': 2,\n",
      "          'ice': 2,\n",
      "          'truck': 2,\n",
      "          'nuclear': 2,\n",
      "          'cool': 2,\n",
      "          'people': 2,\n",
      "          'probably': 2,\n",
      "          'original': 2,\n",
      "          'complete': 2,\n",
      "          'nthis': 2,\n",
      "          'written': 2,\n",
      "          'script': 2,\n",
      "          'nand': 2,\n",
      "          'got': 2,\n",
      "          'would': 2,\n",
      "          'white': 2,\n",
      "          'together': 2,\n",
      "          'one': 2,\n",
      "          'another': 2,\n",
      "          'fact': 2,\n",
      "          'around': 2,\n",
      "          'much': 2,\n",
      "          'like': 2,\n",
      "          'anything': 2,\n",
      "          'money': 2,\n",
      "          'nhe': 2,\n",
      "          'stands': 2,\n",
      "          'born': 2,\n",
      "          '1997': 2,\n",
      "          'heard': 1,\n",
      "          'discussing': 1,\n",
      "          'couple': 1,\n",
      "          'interviews': 1,\n",
      "          'instances': 1,\n",
      "          'felt': 1,\n",
      "          'strange': 1,\n",
      "          'compulsion': 1,\n",
      "          'called': 1,\n",
      "          'nnow': 1,\n",
      "          'personally': 1,\n",
      "          'remember': 1,\n",
      "          'starring': 1,\n",
      "          'major': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'star': 1,\n",
      "          'b': 1,\n",
      "          'funny': 1,\n",
      "          'c': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'e': 1,\n",
      "          'decent': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'nhmmm': 1,\n",
      "          'okay': 1,\n",
      "          'review': 1,\n",
      "          'chill': 1,\n",
      "          'factor': 1,\n",
      "          'nplot': 1,\n",
      "          'graveyard': 1,\n",
      "          'shift': 1,\n",
      "          'regular': 1,\n",
      "          'working': 1,\n",
      "          'joe': 1,\n",
      "          'cream': 1,\n",
      "          'driver': 1,\n",
      "          'onto': 1,\n",
      "          'malicious': 1,\n",
      "          'plan': 1,\n",
      "          'exarmy': 1,\n",
      "          'general': 1,\n",
      "          'propose': 1,\n",
      "          'international': 1,\n",
      "          'prospects': 1,\n",
      "          'nwhen': 1,\n",
      "          'suddenly': 1,\n",
      "          'falls': 1,\n",
      "          'reluctant': 1,\n",
      "          'laps': 1,\n",
      "          'must': 1,\n",
      "          'keep': 1,\n",
      "          'rush': 1,\n",
      "          'army': 1,\n",
      "          'base': 1,\n",
      "          'contraption': 1,\n",
      "          'ticks': 1,\n",
      "          '50': 1,\n",
      "          'degrees': 1,\n",
      "          'fahrenheit': 1,\n",
      "          'kills': 1,\n",
      "          'millions': 1,\n",
      "          'ncritique': 1,\n",
      "          'speed': 1,\n",
      "          'icecream': 1,\n",
      "          'pitch': 1,\n",
      "          'used': 1,\n",
      "          'sell': 1,\n",
      "          'onetone': 1,\n",
      "          'backers': 1,\n",
      "          'unfortunately': 1,\n",
      "          'way': 1,\n",
      "          'anyone': 1,\n",
      "          'could': 1,\n",
      "          'tensionfilled': 1,\n",
      "          'hours': 1,\n",
      "          'cinema': 1,\n",
      "          'distinct': 1,\n",
      "          'honor': 1,\n",
      "          'opposite': 1,\n",
      "          'movies': 1,\n",
      "          'stood': 1,\n",
      "          'seasoned': 1,\n",
      "          'cliches': 1,\n",
      "          'plenty': 1,\n",
      "          'badly': 1,\n",
      "          'dialogue': 1,\n",
      "          'top': 1,\n",
      "          'acting': 1,\n",
      "          'zero': 1,\n",
      "          'leads': 1,\n",
      "          'horribly': 1,\n",
      "          'tacky': 1,\n",
      "          'tossed': 1,\n",
      "          'overall': 1,\n",
      "          'recipe': 1,\n",
      "          'nmy': 1,\n",
      "          'friend': 1,\n",
      "          'enjoyed': 1,\n",
      "          'watching': 1,\n",
      "          'certain': 1,\n",
      "          'extent': 1,\n",
      "          'lines': 1,\n",
      "          'obviously': 1,\n",
      "          'crack': 1,\n",
      "          'nthat': 1,\n",
      "          'formula': 1,\n",
      "          'followed': 1,\n",
      "          'proverbial': 1,\n",
      "          '12': 1,\n",
      "          'guessed': 1,\n",
      "          '3': 1,\n",
      "          'scenario': 1,\n",
      "          'catchy': 1,\n",
      "          'hip': 1,\n",
      "          'names': 1,\n",
      "          'us': 1,\n",
      "          'relate': 1,\n",
      "          'characters': 1,\n",
      "          'elvis': 1,\n",
      "          'nighshift': 1,\n",
      "          'oh': 1,\n",
      "          'talent': 1,\n",
      "          'lies': 1,\n",
      "          'minds': 1,\n",
      "          'screenwriters': 1,\n",
      "          'yes': 1,\n",
      "          'took': 1,\n",
      "          'come': 1,\n",
      "          'regurgitated': 1,\n",
      "          'drivel': 1,\n",
      "          'nit': 1,\n",
      "          'unfathomable': 1,\n",
      "          'actors': 1,\n",
      "          'involved': 1,\n",
      "          'oneweekoldbluecheesesmelling': 1,\n",
      "          'project': 1,\n",
      "          'ndid': 1,\n",
      "          'think': 1,\n",
      "          'boost': 1,\n",
      "          'careers': 1,\n",
      "          'know': 1,\n",
      "          'sucked': 1,\n",
      "          'discounted': 1,\n",
      "          'grace': 1,\n",
      "          'knowing': 1,\n",
      "          'full': 1,\n",
      "          'well': 1,\n",
      "          'stack': 1,\n",
      "          'cash': 1,\n",
      "          'back': 1,\n",
      "          'pockets': 1,\n",
      "          'pad': 1,\n",
      "          'nmost': 1,\n",
      "          'latter': 1,\n",
      "          'nhave': 1,\n",
      "          'seen': 1,\n",
      "          'either': 1,\n",
      "          'fled': 1,\n",
      "          'bulletproof': 1,\n",
      "          'nwell': 1,\n",
      "          'despite': 1,\n",
      "          'slight': 1,\n",
      "          'differences': 1,\n",
      "          'plot': 1,\n",
      "          'essentials': 1,\n",
      "          'basically': 1,\n",
      "          'nyou': 1,\n",
      "          'chased': 1,\n",
      "          'bunch': 1,\n",
      "          'choice': 1,\n",
      "          'work': 1,\n",
      "          'somewhere': 1,\n",
      "          'hating': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'learning': 1,\n",
      "          'respect': 1,\n",
      "          'individuals': 1,\n",
      "          'nyawn': 1,\n",
      "          'nadd': 1,\n",
      "          'dressed': 1,\n",
      "          'drive': 1,\n",
      "          'cars': 1,\n",
      "          'vans': 1,\n",
      "          'run': 1,\n",
      "          'kinds': 1,\n",
      "          'telecommunicative': 1,\n",
      "          'devices': 1,\n",
      "          'sprinkled': 1,\n",
      "          'head': 1,\n",
      "          'nnot': 1,\n",
      "          'conspicuous': 1,\n",
      "          'eh': 1,\n",
      "          'ncall': 1,\n",
      "          'partypooper': 1,\n",
      "          'nice': 1,\n",
      "          'cheezy': 1,\n",
      "          'next': 1,\n",
      "          'doesnt': 1,\n",
      "          'even': 1,\n",
      "          'try': 1,\n",
      "          'reasonably': 1,\n",
      "          'entertaining': 1,\n",
      "          'none': 1,\n",
      "          'scene': 1,\n",
      "          'boat': 1,\n",
      "          'careening': 1,\n",
      "          'mountainside': 1,\n",
      "          'obliterating': 1,\n",
      "          'everything': 1,\n",
      "          'island': 1,\n",
      "          'fun': 1,\n",
      "          'buddyaction': 1,\n",
      "          'flick': 1,\n",
      "          'make': 1,\n",
      "          'nshow': 1,\n",
      "          'everybody': 1,\n",
      "          'n': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'damn': 1,\n",
      "          'look': 1,\n",
      "          'awful': 1,\n",
      "          'lot': 1,\n",
      "          'greatlooking': 1,\n",
      "          'johnny': 1,\n",
      "          'depp': 1,\n",
      "          'nskeets': 1,\n",
      "          'reallife': 1,\n",
      "          'nicknames': 1,\n",
      "          'include': 1,\n",
      "          'chester': 1,\n",
      "          'skeeter': 1,\n",
      "          'mosquito': 1,\n",
      "          '61': 1,\n",
      "          'north': 1,\n",
      "          'carolina': 1,\n",
      "          'married': 1,\n",
      "          'sexkitten': 1,\n",
      "          'actress': 1,\n",
      "          'clay': 1,\n",
      "          'pigeons': 1,\n",
      "          '7': 1,\n",
      "          'ngeorgina': 1,\n",
      "          'cates': 1,\n",
      "          'nthey': 1,\n",
      "          'farm': 1,\n",
      "          'virginia': 1,\n",
      "          'seven': 1,\n",
      "          'dogs': 1,\n",
      "          'nskeet': 1,\n",
      "          'long': 1,\n",
      "          'scar': 1,\n",
      "          'chest': 1,\n",
      "          'openheart': 1,\n",
      "          'surgery': 1,\n",
      "          'done': 1,\n",
      "          '10': 1,\n",
      "          'correct': 1,\n",
      "          'ventricle': 1,\n",
      "          'defect': 1,\n",
      "          'nactor': 1,\n",
      "          'bronx': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'nin': 1,\n",
      "          '1984': 1,\n",
      "          'breakdanced': 1,\n",
      "          'closing': 1,\n",
      "          'ceremonies': 1,\n",
      "          'olympic': 1,\n",
      "          'games': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'nactress': 1,\n",
      "          'hudson': 1,\n",
      "          'leick': 1,\n",
      "          'plays': 1,\n",
      "          'guysgirls': 1,\n",
      "          'better': 1,\n",
      "          'role': 1,\n",
      "          'callisto': 1,\n",
      "          'popular': 1,\n",
      "          'tv': 1,\n",
      "          'xena': 1,\n",
      "          'princess': 1,\n",
      "          'warrior': 1,\n",
      "          'reportedly': 1,\n",
      "          'budget': 1,\n",
      "          '40': 1,\n",
      "          'million': 1,\n",
      "          'nim': 1,\n",
      "          'exactly': 1,\n",
      "          'sure': 1,\n",
      "          'went': 1,\n",
      "          'certainly': 1,\n",
      "          'register': 1,\n",
      "          'onscreen': 1,\n",
      "          'ninterestingly': 1,\n",
      "          'enough': 1,\n",
      "          'director': 1,\n",
      "          'hugh': 1,\n",
      "          'johnson': 1,\n",
      "          'makes': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'debut': 1,\n",
      "          'cinematographer': 1,\n",
      "          '1996': 1,\n",
      "          'squall': 1,\n",
      "          'demi': 1,\n",
      "          'moore': 1,\n",
      "          'vehicle': 1,\n",
      "          'g': 1,\n",
      "          'njane': 1,\n",
      "          '6': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'night': 8,\n",
      "          'part': 6,\n",
      "          '2': 6,\n",
      "          'fright': 5,\n",
      "          'mcdowall': 5,\n",
      "          'first': 5,\n",
      "          'charlies': 4,\n",
      "          'would': 4,\n",
      "          'roddy': 3,\n",
      "          'horror': 3,\n",
      "          'peter': 3,\n",
      "          'next': 3,\n",
      "          'door': 3,\n",
      "          'neighbor': 3,\n",
      "          'none': 3,\n",
      "          'original': 3,\n",
      "          'sad': 2,\n",
      "          'one': 2,\n",
      "          'career': 2,\n",
      "          'years': 2,\n",
      "          'nfright': 2,\n",
      "          'probably': 2,\n",
      "          'among': 2,\n",
      "          'roles': 2,\n",
      "          'nthis': 2,\n",
      "          'really': 2,\n",
      "          'good': 2,\n",
      "          'ragsdale': 2,\n",
      "          'vampire': 2,\n",
      "          'vampires': 2,\n",
      "          'since': 2,\n",
      "          'charlie': 2,\n",
      "          'actor': 2,\n",
      "          'face': 2,\n",
      "          'battle': 2,\n",
      "          'made': 2,\n",
      "          'stylish': 2,\n",
      "          'much': 2,\n",
      "          'scenes': 2,\n",
      "          'shame': 2,\n",
      "          'way': 2,\n",
      "          'nthe': 2,\n",
      "          'right': 2,\n",
      "          'video': 2,\n",
      "          'nif': 2,\n",
      "          'irony': 1,\n",
      "          'screened': 1,\n",
      "          'day': 1,\n",
      "          'stars': 1,\n",
      "          'passed': 1,\n",
      "          'away': 1,\n",
      "          'age': 1,\n",
      "          '70': 1,\n",
      "          'nmcdowall': 1,\n",
      "          'talented': 1,\n",
      "          'prolific': 1,\n",
      "          'actors': 1,\n",
      "          'hollywood': 1,\n",
      "          'spanned': 1,\n",
      "          '60': 1,\n",
      "          'appearing': 1,\n",
      "          '100': 1,\n",
      "          'films': 1,\n",
      "          'counted': 1,\n",
      "          'memorable': 1,\n",
      "          'considering': 1,\n",
      "          'nwilliam': 1,\n",
      "          'reprised': 1,\n",
      "          'somewhat': 1,\n",
      "          'reluctant': 1,\n",
      "          'killers': 1,\n",
      "          'seem': 1,\n",
      "          'ones': 1,\n",
      "          'realize': 1,\n",
      "          'walk': 1,\n",
      "          'us': 1,\n",
      "          'n': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'least': 1,\n",
      "          'movies': 1,\n",
      "          'anyway': 1,\n",
      "          'nit': 1,\n",
      "          'several': 1,\n",
      "          'brewster': 1,\n",
      "          'bmovie': 1,\n",
      "          'turned': 1,\n",
      "          'late': 1,\n",
      "          'host': 1,\n",
      "          'vincent': 1,\n",
      "          'came': 1,\n",
      "          'real': 1,\n",
      "          'live': 1,\n",
      "          'happened': 1,\n",
      "          'ncharlie': 1,\n",
      "          'apparently': 1,\n",
      "          'even': 1,\n",
      "          'relatives': 1,\n",
      "          'get': 1,\n",
      "          'pissed': 1,\n",
      "          'kill': 1,\n",
      "          'members': 1,\n",
      "          'family': 1,\n",
      "          'napparently': 1,\n",
      "          'former': 1,\n",
      "          'bloodsucking': 1,\n",
      "          'sister': 1,\n",
      "          'pleased': 1,\n",
      "          'find': 1,\n",
      "          'kid': 1,\n",
      "          'aging': 1,\n",
      "          'staked': 1,\n",
      "          'sibling': 1,\n",
      "          'nso': 1,\n",
      "          'decides': 1,\n",
      "          'exact': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'revenge': 1,\n",
      "          'ends': 1,\n",
      "          'forcing': 1,\n",
      "          'forces': 1,\n",
      "          'darkness': 1,\n",
      "          'yet': 1,\n",
      "          'things': 1,\n",
      "          'success': 1,\n",
      "          'chris': 1,\n",
      "          'sarandon': 1,\n",
      "          'played': 1,\n",
      "          'taste': 1,\n",
      "          'blood': 1,\n",
      "          'tries': 1,\n",
      "          'duplicate': 1,\n",
      "          'modern': 1,\n",
      "          'style': 1,\n",
      "          'falls': 1,\n",
      "          'sort': 1,\n",
      "          'nwhile': 1,\n",
      "          'vamps': 1,\n",
      "          'dont': 1,\n",
      "          'personality': 1,\n",
      "          'undead': 1,\n",
      "          'nwith': 1,\n",
      "          'exception': 1,\n",
      "          'werewolf': 1,\n",
      "          'adds': 1,\n",
      "          'needed': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'speaking': 1,\n",
      "          'strictly': 1,\n",
      "          'sexist': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'traci': 1,\n",
      "          'lin': 1,\n",
      "          'plays': 1,\n",
      "          'skeptical': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nits': 1,\n",
      "          'hasnt': 1,\n",
      "          'better': 1,\n",
      "          'nragsdale': 1,\n",
      "          'fair': 1,\n",
      "          'job': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'nearly': 1,\n",
      "          'performance': 1,\n",
      "          'nroddy': 1,\n",
      "          'makes': 1,\n",
      "          'given': 1,\n",
      "          'unfortunately': 1,\n",
      "          'isnt': 1,\n",
      "          'character': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'movie': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'say': 1,\n",
      "          'superior': 1,\n",
      "          'product': 1,\n",
      "          'every': 1,\n",
      "          'always': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'danger': 1,\n",
      "          'lurking': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'feel': 1,\n",
      "          'music': 1,\n",
      "          'nnever': 1,\n",
      "          'thing': 1,\n",
      "          'nanother': 1,\n",
      "          'minus': 1,\n",
      "          'traditional': 1,\n",
      "          'leave': 1,\n",
      "          'audience': 1,\n",
      "          'edge': 1,\n",
      "          'seats': 1,\n",
      "          'waiting': 1,\n",
      "          'something': 1,\n",
      "          'jump': 1,\n",
      "          'shadow': 1,\n",
      "          'rare': 1,\n",
      "          'nfor': 1,\n",
      "          'matter': 1,\n",
      "          'almost': 1,\n",
      "          'nonexistent': 1,\n",
      "          'going': 1,\n",
      "          'watch': 1,\n",
      "          'far': 1,\n",
      "          'choice': 1,\n",
      "          'hand': 1,\n",
      "          'near': 1,\n",
      "          'top': 1,\n",
      "          'list': 1,\n",
      "          'mood': 1,\n",
      "          'id': 1,\n",
      "          'head': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'section': 1,\n",
      "          'local': 1,\n",
      "          'store': 1,\n",
      "          'rent': 1,\n",
      "          'planet': 1,\n",
      "          'apes': 1,\n",
      "          'neither': 1,\n",
      "          'likely': 1,\n",
      "          'enter': 1,\n",
      "          'equation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'compensate': 6,\n",
      "          'like': 5,\n",
      "          'nbut': 4,\n",
      "          'cast': 3,\n",
      "          'pushing': 3,\n",
      "          'tin': 3,\n",
      "          'thornton': 3,\n",
      "          'blanchett': 3,\n",
      "          'cusack': 3,\n",
      "          'film': 3,\n",
      "          'air': 3,\n",
      "          'things': 2,\n",
      "          'jolie': 2,\n",
      "          'yes': 2,\n",
      "          'might': 2,\n",
      "          'people': 2,\n",
      "          'terrific': 2,\n",
      "          'hip': 2,\n",
      "          'score': 2,\n",
      "          'nin': 2,\n",
      "          'planes': 2,\n",
      "          'us': 2,\n",
      "          'best': 2,\n",
      "          'one': 2,\n",
      "          'traffic': 2,\n",
      "          'controllers': 2,\n",
      "          'falzone': 2,\n",
      "          'doesnt': 2,\n",
      "          'wife': 2,\n",
      "          'last': 2,\n",
      "          'newell': 2,\n",
      "          'nthe': 2,\n",
      "          'make': 2,\n",
      "          'ntheyll': 2,\n",
      "          'minutes': 2,\n",
      "          'fine': 2,\n",
      "          'actress': 2,\n",
      "          'sometimes': 1,\n",
      "          'stellar': 1,\n",
      "          'lot': 1,\n",
      "          'certainly': 1,\n",
      "          'features': 1,\n",
      "          'name': 1,\n",
      "          'stars': 1,\n",
      "          'going': 1,\n",
      "          'places': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'cate': 1,\n",
      "          'angelina': 1,\n",
      "          'oh': 1,\n",
      "          'john': 1,\n",
      "          'realize': 1,\n",
      "          'first': 1,\n",
      "          'hes': 1,\n",
      "          'actually': 1,\n",
      "          'veteran': 1,\n",
      "          'among': 1,\n",
      "          'quartet': 1,\n",
      "          'finelooking': 1,\n",
      "          'nsometimes': 1,\n",
      "          'lackluster': 1,\n",
      "          'screen': 1,\n",
      "          'treatment': 1,\n",
      "          'idea': 1,\n",
      "          'comedy': 1,\n",
      "          'written': 1,\n",
      "          'workmanlike': 1,\n",
      "          'uninspired': 1,\n",
      "          'direction': 1,\n",
      "          'obnoxious': 1,\n",
      "          'would': 1,\n",
      "          'anyone': 1,\n",
      "          'tone': 1,\n",
      "          'deaf': 1,\n",
      "          'screaming': 1,\n",
      "          'exits': 1,\n",
      "          'clich': 1,\n",
      "          'characterizations': 1,\n",
      "          'embarrassing': 1,\n",
      "          'joking': 1,\n",
      "          'situations': 1,\n",
      "          'netc': 1,\n",
      "          'dont': 1,\n",
      "          'earthly': 1,\n",
      "          'nfrom': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'big': 1,\n",
      "          'trouble': 1,\n",
      "          'squiggly': 1,\n",
      "          'quirky': 1,\n",
      "          'credits': 1,\n",
      "          'fakelooking': 1,\n",
      "          'passenger': 1,\n",
      "          'circling': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'anne': 1,\n",
      "          'dudleys': 1,\n",
      "          'inyourear': 1,\n",
      "          'music': 1,\n",
      "          'making': 1,\n",
      "          'wonder': 1,\n",
      "          'ever': 1,\n",
      "          'got': 1,\n",
      "          'original': 1,\n",
      "          'nomination': 1,\n",
      "          'full': 1,\n",
      "          'monty': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'wasnt': 1,\n",
      "          'ready': 1,\n",
      "          'walk': 1,\n",
      "          'yet': 1,\n",
      "          'nso': 1,\n",
      "          'quickly': 1,\n",
      "          'descend': 1,\n",
      "          'tightlyedited': 1,\n",
      "          'montage': 1,\n",
      "          'screams': 1,\n",
      "          'large': 1,\n",
      "          'capital': 1,\n",
      "          'letters': 1,\n",
      "          'difficult': 1,\n",
      "          'job': 1,\n",
      "          'frantic': 1,\n",
      "          'mileaminute': 1,\n",
      "          'instructional': 1,\n",
      "          'personas': 1,\n",
      "          'juggling': 1,\n",
      "          'passengers': 1,\n",
      "          'lives': 1,\n",
      "          'huge': 1,\n",
      "          'real': 1,\n",
      "          'midair': 1,\n",
      "          'video': 1,\n",
      "          'game': 1,\n",
      "          'nhip': 1,\n",
      "          'cool': 1,\n",
      "          'demonic': 1,\n",
      "          'auctioneer': 1,\n",
      "          'nick': 1,\n",
      "          'zone': 1,\n",
      "          'biz': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'nuntil': 1,\n",
      "          'hipper': 1,\n",
      "          'cooler': 1,\n",
      "          'leatherclad': 1,\n",
      "          'flyboy': 1,\n",
      "          'assist': 1,\n",
      "          'guise': 1,\n",
      "          'russell': 1,\n",
      "          'bell': 1,\n",
      "          'shows': 1,\n",
      "          'challenge': 1,\n",
      "          'falzones': 1,\n",
      "          'finite': 1,\n",
      "          'space': 1,\n",
      "          'nboys': 1,\n",
      "          'boys': 1,\n",
      "          'heavy': 1,\n",
      "          'duty': 1,\n",
      "          'testosterone': 1,\n",
      "          'starts': 1,\n",
      "          'exuding': 1,\n",
      "          'macho': 1,\n",
      "          'oneupmanship': 1,\n",
      "          'begins': 1,\n",
      "          'nit': 1,\n",
      "          'stop': 1,\n",
      "          'seeing': 1,\n",
      "          'juggle': 1,\n",
      "          'three': 1,\n",
      "          '747s': 1,\n",
      "          'within': 1,\n",
      "          'cats': 1,\n",
      "          'whisker': 1,\n",
      "          'noh': 1,\n",
      "          'nthere': 1,\n",
      "          'broken': 1,\n",
      "          'hoop': 1,\n",
      "          'dreams': 1,\n",
      "          'wannaseehowfasticandrives': 1,\n",
      "          'ultimate': 1,\n",
      "          'showdown': 1,\n",
      "          'saw': 1,\n",
      "          'night': 1,\n",
      "          'ndirector': 1,\n",
      "          'mike': 1,\n",
      "          'four': 1,\n",
      "          'weddings': 1,\n",
      "          'funeral': 1,\n",
      "          'must': 1,\n",
      "          'read': 1,\n",
      "          'different': 1,\n",
      "          'draft': 1,\n",
      "          'script': 1,\n",
      "          'thats': 1,\n",
      "          'acted': 1,\n",
      "          'newark': 1,\n",
      "          'jfk': 1,\n",
      "          'la': 1,\n",
      "          'guardia': 1,\n",
      "          'ounce': 1,\n",
      "          'subtlety': 1,\n",
      "          'made': 1,\n",
      "          'awfully': 1,\n",
      "          'goodand': 1,\n",
      "          'funnymovies': 1,\n",
      "          'antics': 1,\n",
      "          'cringe': 1,\n",
      "          'frown': 1,\n",
      "          'disbelief': 1,\n",
      "          'constantly': 1,\n",
      "          'looking': 1,\n",
      "          'watch': 1,\n",
      "          'wait': 1,\n",
      "          'ntheres': 1,\n",
      "          'still': 1,\n",
      "          '100': 1,\n",
      "          'go': 1,\n",
      "          'films': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'whose': 1,\n",
      "          'connie': 1,\n",
      "          'spunky': 1,\n",
      "          'brash': 1,\n",
      "          'long': 1,\n",
      "          'island': 1,\n",
      "          'housewife': 1,\n",
      "          'wants': 1,\n",
      "          'better': 1,\n",
      "          'taking': 1,\n",
      "          'art': 1,\n",
      "          'classes': 1,\n",
      "          'nthis': 1,\n",
      "          'wonderful': 1,\n",
      "          'accomplishment': 1,\n",
      "          'previously': 1,\n",
      "          'played': 1,\n",
      "          'redheaded': 1,\n",
      "          'australian': 1,\n",
      "          'gambler': 1,\n",
      "          'oscar': 1,\n",
      "          'lucinda': 1,\n",
      "          'tempestuous': 1,\n",
      "          'british': 1,\n",
      "          'monarch': 1,\n",
      "          'elizabeth': 1,\n",
      "          'shes': 1,\n",
      "          'enough': 1,\n",
      "          'save': 1,\n",
      "          'picture': 1,\n",
      "          'nthornton': 1,\n",
      "          'looks': 1,\n",
      "          'performs': 1,\n",
      "          'solidly': 1,\n",
      "          'character': 1,\n",
      "          'joke': 1,\n",
      "          'njolie': 1,\n",
      "          'russells': 1,\n",
      "          'knock': 1,\n",
      "          'em': 1,\n",
      "          'dead': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'upandcoming': 1,\n",
      "          'disappoints': 1,\n",
      "          'allowing': 1,\n",
      "          'displayed': 1,\n",
      "          'plaything': 1,\n",
      "          'ncusack': 1,\n",
      "          'cracks': 1,\n",
      "          'gum': 1,\n",
      "          'dons': 1,\n",
      "          'shades': 1,\n",
      "          'acts': 1,\n",
      "          'throughout': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'performance': 1,\n",
      "          'forced': 1,\n",
      "          'ten': 1,\n",
      "          'inexplicable': 1,\n",
      "          'reason': 1,\n",
      "          'start': 1,\n",
      "          'coming': 1,\n",
      "          'together': 1,\n",
      "          'begin': 1,\n",
      "          'get': 1,\n",
      "          'sense': 1,\n",
      "          'trailer': 1,\n",
      "          'teases': 1,\n",
      "          'little': 1,\n",
      "          'late': 1,\n",
      "          'na': 1,\n",
      "          'aside': 1,\n",
      "          'nothing': 1,\n",
      "          'embarrassment': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bond': 7,\n",
      "          'enough': 6,\n",
      "          'got': 5,\n",
      "          'world': 4,\n",
      "          'nweve': 4,\n",
      "          'series': 4,\n",
      "          'james': 3,\n",
      "          'nin': 3,\n",
      "          'chases': 3,\n",
      "          'since': 3,\n",
      "          'films': 3,\n",
      "          'guy': 3,\n",
      "          'brosnan': 2,\n",
      "          'stunts': 2,\n",
      "          'anything': 2,\n",
      "          'nuclear': 2,\n",
      "          'slash': 2,\n",
      "          'carlyle': 2,\n",
      "          'nand': 2,\n",
      "          'plot': 2,\n",
      "          'never': 2,\n",
      "          'thought': 2,\n",
      "          'cant': 2,\n",
      "          'one': 2,\n",
      "          'takes': 2,\n",
      "          'get': 2,\n",
      "          'know': 2,\n",
      "          'long': 2,\n",
      "          'hit': 2,\n",
      "          'bonds': 2,\n",
      "          'former': 2,\n",
      "          'shes': 2,\n",
      "          'judi': 2,\n",
      "          'depressing': 1,\n",
      "          'thing': 1,\n",
      "          'depressingly': 1,\n",
      "          'pedestrian': 1,\n",
      "          'film': 1,\n",
      "          'final': 1,\n",
      "          'frame': 1,\n",
      "          'white': 1,\n",
      "          'letters': 1,\n",
      "          'black': 1,\n",
      "          'background': 1,\n",
      "          'proclaiming': 1,\n",
      "          'return': 1,\n",
      "          'noh': 1,\n",
      "          'certainly': 1,\n",
      "          'hope': 1,\n",
      "          'nwith': 1,\n",
      "          'pierce': 1,\n",
      "          'third': 1,\n",
      "          'reportedly': 1,\n",
      "          'last': 1,\n",
      "          'goround': 1,\n",
      "          '007': 1,\n",
      "          'best': 1,\n",
      "          'example': 1,\n",
      "          'date': 1,\n",
      "          '19th': 1,\n",
      "          'chapter': 1,\n",
      "          'seeminglyendless': 1,\n",
      "          'franchise': 1,\n",
      "          'featuring': 1,\n",
      "          'ian': 1,\n",
      "          'flemings': 1,\n",
      "          'debonair': 1,\n",
      "          'british': 1,\n",
      "          'secret': 1,\n",
      "          'agent': 1,\n",
      "          'likes': 1,\n",
      "          'martinisand': 1,\n",
      "          'nemesesshaken': 1,\n",
      "          'stirred': 1,\n",
      "          'subinspired': 1,\n",
      "          'screenwriters': 1,\n",
      "          'chosen': 1,\n",
      "          'rehash': 1,\n",
      "          'setups': 1,\n",
      "          'sexy': 1,\n",
      "          'encounters': 1,\n",
      "          'previous': 1,\n",
      "          '18': 1,\n",
      "          'flicks': 1,\n",
      "          'rather': 1,\n",
      "          'coming': 1,\n",
      "          'slightest': 1,\n",
      "          'bit': 1,\n",
      "          'original': 1,\n",
      "          'previouslyused': 1,\n",
      "          'speedboat': 1,\n",
      "          'ski': 1,\n",
      "          'sticky': 1,\n",
      "          'situations': 1,\n",
      "          'aboard': 1,\n",
      "          'submarines': 1,\n",
      "          'couple': 1,\n",
      "          'hottotrot': 1,\n",
      "          'babes': 1,\n",
      "          'without': 1,\n",
      "          'ounce': 1,\n",
      "          'acting': 1,\n",
      "          'ability': 1,\n",
      "          'postcold': 1,\n",
      "          'war': 1,\n",
      "          'megalomaniac': 1,\n",
      "          'bent': 1,\n",
      "          'domination': 1,\n",
      "          'destruction': 1,\n",
      "          'played': 1,\n",
      "          'skinheaded': 1,\n",
      "          'robert': 1,\n",
      "          'mean': 1,\n",
      "          'lean': 1,\n",
      "          'panache': 1,\n",
      "          'case': 1,\n",
      "          '1977s': 1,\n",
      "          'spy': 1,\n",
      "          'loved': 1,\n",
      "          'weve': 1,\n",
      "          'nothing': 1,\n",
      "          'whatsoever': 1,\n",
      "          'conceived': 1,\n",
      "          'mr': 1,\n",
      "          'fleming': 1,\n",
      "          'also': 1,\n",
      "          'main': 1,\n",
      "          'title': 1,\n",
      "          'song': 1,\n",
      "          'garbage': 1,\n",
      "          'little': 1,\n",
      "          'effort': 1,\n",
      "          'fit': 1,\n",
      "          'lyrics': 1,\n",
      "          'songs': 1,\n",
      "          'tomorrow': 1,\n",
      "          'dies': 1,\n",
      "          'nwhile': 1,\n",
      "          'originality': 1,\n",
      "          'strong': 1,\n",
      "          'suit': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'fun': 1,\n",
      "          'least': 1,\n",
      "          'going': 1,\n",
      "          'nonstop': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'memorable': 1,\n",
      "          'setpiece': 1,\n",
      "          'entireand': 1,\n",
      "          'dull': 1,\n",
      "          'addition': 1,\n",
      "          'michael': 1,\n",
      "          'apted': 1,\n",
      "          'yes': 1,\n",
      "          'respected': 1,\n",
      "          'director': 1,\n",
      "          'coal': 1,\n",
      "          'miners': 1,\n",
      "          'daughter': 1,\n",
      "          'nell': 1,\n",
      "          '28up': 1,\n",
      "          'documentary': 1,\n",
      "          'embarrassing': 1,\n",
      "          'advantage': 1,\n",
      "          'full': 1,\n",
      "          'range': 1,\n",
      "          'clich': 1,\n",
      "          'nyou': 1,\n",
      "          'talking': 1,\n",
      "          'killer': 1,\n",
      "          'deviceyou': 1,\n",
      "          'scenario': 1,\n",
      "          'bad': 1,\n",
      "          'good': 1,\n",
      "          'mercy': 1,\n",
      "          'yet': 1,\n",
      "          'waxes': 1,\n",
      "          'poetic': 1,\n",
      "          'die': 1,\n",
      "          'old': 1,\n",
      "          'age': 1,\n",
      "          'slew': 1,\n",
      "          'highpriced': 1,\n",
      "          'assassins': 1,\n",
      "          'barn': 1,\n",
      "          'door': 1,\n",
      "          '20': 1,\n",
      "          'paces': 1,\n",
      "          'opening': 1,\n",
      "          'minutes': 1,\n",
      "          'endless': 1,\n",
      "          '128': 1,\n",
      "          'sultry': 1,\n",
      "          'sniper': 1,\n",
      "          'along': 1,\n",
      "          'thames': 1,\n",
      "          'leatherclad': 1,\n",
      "          'lovely': 1,\n",
      "          'fails': 1,\n",
      "          'soupedup': 1,\n",
      "          'fishing': 1,\n",
      "          'boat': 1,\n",
      "          'bazooka': 1,\n",
      "          'pulls': 1,\n",
      "          'within': 1,\n",
      "          'feet': 1,\n",
      "          'nlater': 1,\n",
      "          'hot': 1,\n",
      "          'air': 1,\n",
      "          'balloon': 1,\n",
      "          'dangling': 1,\n",
      "          'rope': 1,\n",
      "          'beneath': 1,\n",
      "          'still': 1,\n",
      "          'unable': 1,\n",
      "          'take': 1,\n",
      "          'nthese': 1,\n",
      "          'reliable': 1,\n",
      "          'absurdities': 1,\n",
      "          'frustrating': 1,\n",
      "          'usual': 1,\n",
      "          'distractions': 1,\n",
      "          'occasional': 1,\n",
      "          'ads': 1,\n",
      "          'luxury': 1,\n",
      "          'automobiles': 1,\n",
      "          'vodka': 1,\n",
      "          'credit': 1,\n",
      "          'cards': 1,\n",
      "          'among': 1,\n",
      "          'rampant': 1,\n",
      "          'product': 1,\n",
      "          'placements': 1,\n",
      "          'grapples': 1,\n",
      "          'braveheart': 1,\n",
      "          'sophie': 1,\n",
      "          'marceau': 1,\n",
      "          'kidnap': 1,\n",
      "          'victim': 1,\n",
      "          'heiress': 1,\n",
      "          'elektra': 1,\n",
      "          'king': 1,\n",
      "          'terrible': 1,\n",
      "          'wild': 1,\n",
      "          'things': 1,\n",
      "          'denise': 1,\n",
      "          'richards': 1,\n",
      "          'physicist': 1,\n",
      "          'lord': 1,\n",
      "          'help': 1,\n",
      "          'laughable': 1,\n",
      "          'dench': 1,\n",
      "          'dame': 1,\n",
      "          'brings': 1,\n",
      "          'shred': 1,\n",
      "          'dignity': 1,\n",
      "          'jettisoned': 1,\n",
      "          'selfrespect': 1,\n",
      "          'time': 1,\n",
      "          'roger': 1,\n",
      "          'moore': 1,\n",
      "          'inherited': 1,\n",
      "          'walther': 1,\n",
      "          'ppk': 1,\n",
      "          'nbrosnan': 1,\n",
      "          'goes': 1,\n",
      "          'motions': 1,\n",
      "          'grace': 1,\n",
      "          'charm': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'remington': 1,\n",
      "          'steele': 1,\n",
      "          'star': 1,\n",
      "          'even': 1,\n",
      "          'thinking': 1,\n",
      "          'theres': 1,\n",
      "          'life': 1,\n",
      "          'easy': 1,\n",
      "          'paycheck': 1,\n",
      "          'nhes': 1,\n",
      "          'given': 1,\n",
      "          'plenty': 1,\n",
      "          'wiseacre': 1,\n",
      "          'asides': 1,\n",
      "          'deliver': 1,\n",
      "          'dont': 1,\n",
      "          'doctor': 1,\n",
      "          'jokes': 1,\n",
      "          'made': 1,\n",
      "          'chuckle': 1,\n",
      "          'although': 1,\n",
      "          'christmas': 1,\n",
      "          'comes': 1,\n",
      "          'year': 1,\n",
      "          'keeping': 1,\n",
      "          'penchant': 1,\n",
      "          'grownworthy': 1,\n",
      "          'puns': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'mr': 9,\n",
      "          'nmagoo': 9,\n",
      "          'nthe': 9,\n",
      "          'film': 5,\n",
      "          'disney': 4,\n",
      "          'magoo': 4,\n",
      "          'would': 4,\n",
      "          'cartoon': 3,\n",
      "          'nmr': 3,\n",
      "          'insult': 3,\n",
      "          'appears': 3,\n",
      "          'bad': 3,\n",
      "          'movie': 3,\n",
      "          'nielsen': 3,\n",
      "          'like': 3,\n",
      "          'form': 3,\n",
      "          'one': 3,\n",
      "          'pictures': 2,\n",
      "          'series': 2,\n",
      "          'nin': 2,\n",
      "          'run': 2,\n",
      "          'original': 2,\n",
      "          'see': 2,\n",
      "          'including': 2,\n",
      "          'george': 2,\n",
      "          'jungle': 2,\n",
      "          'flubber': 2,\n",
      "          'first': 2,\n",
      "          'naked': 2,\n",
      "          'gun': 2,\n",
      "          'theres': 2,\n",
      "          'humor': 2,\n",
      "          'nthen': 2,\n",
      "          'movies': 2,\n",
      "          'getting': 2,\n",
      "          'hard': 2,\n",
      "          'top': 2,\n",
      "          'take': 2,\n",
      "          'many': 2,\n",
      "          'trying': 2,\n",
      "          'kelly': 2,\n",
      "          'lynch': 2,\n",
      "          'martial': 2,\n",
      "          'kicking': 2,\n",
      "          'magoos': 2,\n",
      "          'doesnt': 2,\n",
      "          'hold': 2,\n",
      "          'tong': 2,\n",
      "          'little': 2,\n",
      "          'worth': 2,\n",
      "          'walt': 1,\n",
      "          'announced': 1,\n",
      "          'liveaction': 1,\n",
      "          'feature': 1,\n",
      "          'based': 1,\n",
      "          '60s': 1,\n",
      "          'special': 1,\n",
      "          'interests': 1,\n",
      "          'groups': 1,\n",
      "          'representing': 1,\n",
      "          'visionimpaired': 1,\n",
      "          'let': 1,\n",
      "          'cry': 1,\n",
      "          'dismay': 1,\n",
      "          'claimed': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'represented': 1,\n",
      "          'fact': 1,\n",
      "          'wrong': 1,\n",
      "          'blind': 1,\n",
      "          'nearblind': 1,\n",
      "          'every': 1,\n",
      "          'human': 1,\n",
      "          'misfortune': 1,\n",
      "          'suffer': 1,\n",
      "          'dreadfully': 1,\n",
      "          'unfunny': 1,\n",
      "          '90': 1,\n",
      "          'minute': 1,\n",
      "          'atrocity': 1,\n",
      "          'nits': 1,\n",
      "          'stating': 1,\n",
      "          'obvious': 1,\n",
      "          'remark': 1,\n",
      "          'ideas': 1,\n",
      "          'nlook': 1,\n",
      "          'roster': 1,\n",
      "          '1996': 1,\n",
      "          '1997': 1,\n",
      "          'releases': 1,\n",
      "          'youll': 1,\n",
      "          'shocking': 1,\n",
      "          'list': 1,\n",
      "          'retreads': 1,\n",
      "          '101': 1,\n",
      "          'dalmatians': 1,\n",
      "          'jungle2jungle': 1,\n",
      "          'darn': 1,\n",
      "          'cat': 1,\n",
      "          'best': 1,\n",
      "          'mildly': 1,\n",
      "          'entertaining': 1,\n",
      "          'worst': 1,\n",
      "          'exposes': 1,\n",
      "          'painful': 1,\n",
      "          'experience': 1,\n",
      "          'problem': 1,\n",
      "          'script': 1,\n",
      "          'ndespite': 1,\n",
      "          'collaboration': 1,\n",
      "          'scribe': 1,\n",
      "          'pat': 1,\n",
      "          'proft': 1,\n",
      "          'comically': 1,\n",
      "          'barren': 1,\n",
      "          'nfrom': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'laugh': 1,\n",
      "          'found': 1,\n",
      "          'nevery': 1,\n",
      "          'attempt': 1,\n",
      "          'lots': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'audible': 1,\n",
      "          'thud': 1,\n",
      "          'nyoud': 1,\n",
      "          'think': 1,\n",
      "          'dozens': 1,\n",
      "          'gags': 1,\n",
      "          'jammed': 1,\n",
      "          'least': 1,\n",
      "          'work': 1,\n",
      "          'thats': 1,\n",
      "          'case': 1,\n",
      "          'nive': 1,\n",
      "          'laughs': 1,\n",
      "          'ingmar': 1,\n",
      "          'bergman': 1,\n",
      "          'leslie': 1,\n",
      "          'looks': 1,\n",
      "          'sounds': 1,\n",
      "          'acts': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'animated': 1,\n",
      "          'character': 1,\n",
      "          'memorably': 1,\n",
      "          'voiced': 1,\n",
      "          'jim': 1,\n",
      "          'backus': 1,\n",
      "          'past': 1,\n",
      "          'proven': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'comic': 1,\n",
      "          'aptitude': 1,\n",
      "          'roles': 1,\n",
      "          'airplane': 1,\n",
      "          'nlately': 1,\n",
      "          'however': 1,\n",
      "          'lazy': 1,\n",
      "          'taking': 1,\n",
      "          'parts': 1,\n",
      "          'likes': 1,\n",
      "          'dracula': 1,\n",
      "          'dead': 1,\n",
      "          'loving': 1,\n",
      "          'spy': 1,\n",
      "          'neven': 1,\n",
      "          'incredible': 1,\n",
      "          'stretch': 1,\n",
      "          'imagination': 1,\n",
      "          'especially': 1,\n",
      "          'since': 1,\n",
      "          'reminded': 1,\n",
      "          'short': 1,\n",
      "          'segments': 1,\n",
      "          'open': 1,\n",
      "          'close': 1,\n",
      "          'phrase': 1,\n",
      "          'use': 1,\n",
      "          'describe': 1,\n",
      "          'performance': 1,\n",
      "          'nthis': 1,\n",
      "          'strictly': 1,\n",
      "          'takethemoneyand': 1,\n",
      "          'operation': 1,\n",
      "          'story': 1,\n",
      "          'stories': 1,\n",
      "          'described': 1,\n",
      "          'long': 1,\n",
      "          'sentence': 1,\n",
      "          'witness': 1,\n",
      "          'theft': 1,\n",
      "          'rare': 1,\n",
      "          'jewel': 1,\n",
      "          'museum': 1,\n",
      "          'apprehend': 1,\n",
      "          'thieves': 1,\n",
      "          'police': 1,\n",
      "          'mistake': 1,\n",
      "          'robber': 1,\n",
      "          'cops': 1,\n",
      "          'played': 1,\n",
      "          'ernie': 1,\n",
      "          'hudson': 1,\n",
      "          'stephen': 1,\n",
      "          'tobolowsky': 1,\n",
      "          'lumps': 1,\n",
      "          'early': 1,\n",
      "          'often': 1,\n",
      "          'guys': 1,\n",
      "          'lot': 1,\n",
      "          'artstype': 1,\n",
      "          'nick': 1,\n",
      "          'chinlund': 1,\n",
      "          'malcolm': 1,\n",
      "          'mcdowell': 1,\n",
      "          'good': 1,\n",
      "          'sense': 1,\n",
      "          'look': 1,\n",
      "          'embarrassed': 1,\n",
      "          'nmatt': 1,\n",
      "          'keeslar': 1,\n",
      "          'portrays': 1,\n",
      "          'sidekicks': 1,\n",
      "          'nephew': 1,\n",
      "          'waldo': 1,\n",
      "          'bumbling': 1,\n",
      "          'mans': 1,\n",
      "          'interesting': 1,\n",
      "          'companion': 1,\n",
      "          'dog': 1,\n",
      "          'named': 1,\n",
      "          'angus': 1,\n",
      "          'nmost': 1,\n",
      "          'nmagoos': 1,\n",
      "          'comes': 1,\n",
      "          'failed': 1,\n",
      "          'slapstick': 1,\n",
      "          'violence': 1,\n",
      "          'level': 1,\n",
      "          'approach': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          '3': 1,\n",
      "          'still': 1,\n",
      "          'pretty': 1,\n",
      "          'acute': 1,\n",
      "          'characters': 1,\n",
      "          'hit': 1,\n",
      "          'head': 1,\n",
      "          'sledgehammers': 1,\n",
      "          'knocked': 1,\n",
      "          'snowy': 1,\n",
      "          'precipices': 1,\n",
      "          'ntheres': 1,\n",
      "          'nonviolent': 1,\n",
      "          'bit': 1,\n",
      "          'preparing': 1,\n",
      "          'chicken': 1,\n",
      "          'dinner': 1,\n",
      "          'could': 1,\n",
      "          'funny': 1,\n",
      "          'handled': 1,\n",
      "          'better': 1,\n",
      "          'compared': 1,\n",
      "          'beans': 1,\n",
      "          'recent': 1,\n",
      "          'similar': 1,\n",
      "          'misadventure': 1,\n",
      "          'well': 1,\n",
      "          'lame': 1,\n",
      "          'jokes': 1,\n",
      "          'result': 1,\n",
      "          'near': 1,\n",
      "          'blindness': 1,\n",
      "          'occasion': 1,\n",
      "          'mistakes': 1,\n",
      "          'wild': 1,\n",
      "          'animal': 1,\n",
      "          'baby': 1,\n",
      "          'nim': 1,\n",
      "          'willing': 1,\n",
      "          'cut': 1,\n",
      "          'director': 1,\n",
      "          'stanley': 1,\n",
      "          'slack': 1,\n",
      "          'ntong': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'maker': 1,\n",
      "          'break': 1,\n",
      "          'hollywood': 1,\n",
      "          'market': 1,\n",
      "          'helmed': 1,\n",
      "          'several': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'strike': 1,\n",
      "          'rumble': 1,\n",
      "          'bronx': 1,\n",
      "          'supercop': 1,\n",
      "          'nhis': 1,\n",
      "          'chief': 1,\n",
      "          'talent': 1,\n",
      "          'choreographing': 1,\n",
      "          'arts': 1,\n",
      "          'fights': 1,\n",
      "          'wasted': 1,\n",
      "          'despite': 1,\n",
      "          'high': 1,\n",
      "          'nlike': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'target': 1,\n",
      "          'ringo': 1,\n",
      "          'lam': 1,\n",
      "          'maximum': 1,\n",
      "          'risk': 1,\n",
      "          'consigned': 1,\n",
      "          'purgatory': 1,\n",
      "          'making': 1,\n",
      "          'entry': 1,\n",
      "          'american': 1,\n",
      "          'mainstream': 1,\n",
      "          'nit': 1,\n",
      "          'noting': 1,\n",
      "          'unlike': 1,\n",
      "          'films': 1,\n",
      "          'perverse': 1,\n",
      "          'appeal': 1,\n",
      "          'under10': 1,\n",
      "          'crowd': 1,\n",
      "          'driving': 1,\n",
      "          'parents': 1,\n",
      "          'distraction': 1,\n",
      "          'bore': 1,\n",
      "          'viewers': 1,\n",
      "          'ages': 1,\n",
      "          'screening': 1,\n",
      "          'attended': 1,\n",
      "          'walltowall': 1,\n",
      "          'kids': 1,\n",
      "          'part': 1,\n",
      "          'didnt': 1,\n",
      "          'seem': 1,\n",
      "          'enjoying': 1,\n",
      "          'nwhen': 1,\n",
      "          'asked': 1,\n",
      "          'girl': 1,\n",
      "          'thought': 1,\n",
      "          'nher': 1,\n",
      "          'pained': 1,\n",
      "          'expression': 1,\n",
      "          'confirmed': 1,\n",
      "          'adage': 1,\n",
      "          'picture': 1,\n",
      "          'indeed': 1,\n",
      "          'thousand': 1,\n",
      "          'words': 1,\n",
      "          'kind': 1,\n",
      "          'rejected': 1,\n",
      "          'potential': 1,\n",
      "          'viewer': 1,\n",
      "          'sight': 1,\n",
      "          'unseen': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'found': 6,\n",
      "          'spade': 5,\n",
      "          'movie': 5,\n",
      "          'lila': 5,\n",
      "          'humor': 4,\n",
      "          'also': 4,\n",
      "          'lost': 4,\n",
      "          'good': 3,\n",
      "          'dylan': 3,\n",
      "          'nthe': 3,\n",
      "          'jack': 3,\n",
      "          'dog': 3,\n",
      "          'hard': 3,\n",
      "          'first': 2,\n",
      "          'doesnt': 2,\n",
      "          'one': 2,\n",
      "          'ndavid': 2,\n",
      "          'plays': 2,\n",
      "          'character': 2,\n",
      "          'best': 2,\n",
      "          'story': 2,\n",
      "          'sophie': 2,\n",
      "          'marceau': 2,\n",
      "          'nand': 2,\n",
      "          'win': 2,\n",
      "          'nthere': 2,\n",
      "          'theres': 2,\n",
      "          'putting': 2,\n",
      "          'nthis': 2,\n",
      "          'get': 2,\n",
      "          'funny': 2,\n",
      "          'david': 1,\n",
      "          'snide': 1,\n",
      "          'sarcastic': 1,\n",
      "          'sense': 1,\n",
      "          'works': 1,\n",
      "          'perfectly': 1,\n",
      "          'tv': 1,\n",
      "          'sitcom': 1,\n",
      "          'shoot': 1,\n",
      "          'nit': 1,\n",
      "          'served': 1,\n",
      "          'showcase': 1,\n",
      "          'costarred': 1,\n",
      "          'opposite': 1,\n",
      "          'late': 1,\n",
      "          'chris': 1,\n",
      "          'farley': 1,\n",
      "          'tommy': 1,\n",
      "          'boy': 1,\n",
      "          'black': 1,\n",
      "          'sheep': 1,\n",
      "          'nlost': 1,\n",
      "          'marks': 1,\n",
      "          'comedians': 1,\n",
      "          'attempt': 1,\n",
      "          'going': 1,\n",
      "          'solo': 1,\n",
      "          'reveals': 1,\n",
      "          'reliable': 1,\n",
      "          'backup': 1,\n",
      "          'system': 1,\n",
      "          'brand': 1,\n",
      "          'seems': 1,\n",
      "          'desperate': 1,\n",
      "          'may': 1,\n",
      "          'expect': 1,\n",
      "          'problem': 1,\n",
      "          'nhe': 1,\n",
      "          'ramsey': 1,\n",
      "          'sweet': 1,\n",
      "          'main': 1,\n",
      "          'abilities': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'dylans': 1,\n",
      "          'obsessions': 1,\n",
      "          'beautiful': 1,\n",
      "          'new': 1,\n",
      "          'neighbour': 1,\n",
      "          'dubois': 1,\n",
      "          'braveheart': 1,\n",
      "          'terrier': 1,\n",
      "          'named': 1,\n",
      "          'ndylan': 1,\n",
      "          'believes': 1,\n",
      "          'way': 1,\n",
      "          'womans': 1,\n",
      "          'heart': 1,\n",
      "          'kidnaps': 1,\n",
      "          'planning': 1,\n",
      "          'stage': 1,\n",
      "          'fake': 1,\n",
      "          'rescue': 1,\n",
      "          'hope': 1,\n",
      "          'three': 1,\n",
      "          'things': 1,\n",
      "          'second': 1,\n",
      "          'lovely': 1,\n",
      "          'actress': 1,\n",
      "          'whos': 1,\n",
      "          'planted': 1,\n",
      "          'wrong': 1,\n",
      "          'nlastly': 1,\n",
      "          'used': 1,\n",
      "          'similar': 1,\n",
      "          'context': 1,\n",
      "          'puffy': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'director': 1,\n",
      "          'jeff': 1,\n",
      "          'pollack': 1,\n",
      "          'finds': 1,\n",
      "          'cycle': 1,\n",
      "          'drier': 1,\n",
      "          'simply': 1,\n",
      "          'making': 1,\n",
      "          'look': 1,\n",
      "          'cute': 1,\n",
      "          'kind': 1,\n",
      "          'physical': 1,\n",
      "          'dead': 1,\n",
      "          'npollack': 1,\n",
      "          'everything': 1,\n",
      "          'beat': 1,\n",
      "          'poor': 1,\n",
      "          'pooch': 1,\n",
      "          'baseball': 1,\n",
      "          'bat': 1,\n",
      "          'laughs': 1,\n",
      "          'procedure': 1,\n",
      "          'cheap': 1,\n",
      "          'unfunny': 1,\n",
      "          'resoundingly': 1,\n",
      "          'cruel': 1,\n",
      "          'start': 1,\n",
      "          'fuzzy': 1,\n",
      "          'nalso': 1,\n",
      "          'unusual': 1,\n",
      "          'blend': 1,\n",
      "          'apparently': 1,\n",
      "          'sweetnatured': 1,\n",
      "          'love': 1,\n",
      "          'ngiven': 1,\n",
      "          'meanspirited': 1,\n",
      "          'comedy': 1,\n",
      "          'obviously': 1,\n",
      "          'striving': 1,\n",
      "          'swallow': 1,\n",
      "          'even': 1,\n",
      "          'deserve': 1,\n",
      "          'someone': 1,\n",
      "          'like': 1,\n",
      "          'kidnapping': 1,\n",
      "          'precious': 1,\n",
      "          'pain': 1,\n",
      "          'npredictably': 1,\n",
      "          'opts': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'feels': 1,\n",
      "          'sentimental': 1,\n",
      "          'gooey': 1,\n",
      "          'rings': 1,\n",
      "          'false': 1,\n",
      "          'sets': 1,\n",
      "          'siren': 1,\n",
      "          'head': 1,\n",
      "          'makes': 1,\n",
      "          'feel': 1,\n",
      "          'bit': 1,\n",
      "          'cheated': 1,\n",
      "          'cowrote': 1,\n",
      "          'tries': 1,\n",
      "          'make': 1,\n",
      "          'project': 1,\n",
      "          'amusing': 1,\n",
      "          'choice': 1,\n",
      "          'scenes': 1,\n",
      "          'quite': 1,\n",
      "          'sporadically': 1,\n",
      "          'npatrick': 1,\n",
      "          'bruel': 1,\n",
      "          'stock': 1,\n",
      "          'rene': 1,\n",
      "          'pompous': 1,\n",
      "          'jerk': 1,\n",
      "          'wants': 1,\n",
      "          'looks': 1,\n",
      "          'money': 1,\n",
      "          'njon': 1,\n",
      "          'lovitz': 1,\n",
      "          'martin': 1,\n",
      "          'sheen': 1,\n",
      "          'welcome': 1,\n",
      "          'additions': 1,\n",
      "          'two': 1,\n",
      "          'tiny': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'ndespite': 1,\n",
      "          'positive': 1,\n",
      "          'attributes': 1,\n",
      "          'work': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'searching': 1,\n",
      "          'enjoyable': 1,\n",
      "          'romanticcomedy': 1,\n",
      "          'could': 1,\n",
      "          'far': 1,\n",
      "          'better': 1,\n",
      "          'obvious': 1,\n",
      "          'misguided': 1,\n",
      "          'failure': 1,\n",
      "          'shows': 1,\n",
      "          'blatant': 1,\n",
      "          'disregard': 1,\n",
      "          'trying': 1,\n",
      "          'present': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'classic': 4,\n",
      "          'witty': 2,\n",
      "          '9': 1,\n",
      "          'pathetic': 1,\n",
      "          'attempt': 1,\n",
      "          'improving': 1,\n",
      "          'shakespeare': 1,\n",
      "          'n8': 1,\n",
      "          'another': 1,\n",
      "          'piece': 1,\n",
      "          'teen': 1,\n",
      "          'fluff': 1,\n",
      "          'n7': 1,\n",
      "          'kids': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'n6': 1,\n",
      "          'wittiness': 1,\n",
      "          'enough': 1,\n",
      "          'n5': 1,\n",
      "          'comedy': 1,\n",
      "          'funny': 1,\n",
      "          'n4': 1,\n",
      "          'acting': 1,\n",
      "          'poor': 1,\n",
      "          'n3': 1,\n",
      "          'music': 1,\n",
      "          'n2': 1,\n",
      "          'poster': 1,\n",
      "          'n1': 1,\n",
      "          'worse': 1,\n",
      "          'shes': 1,\n",
      "          'n10a': 1,\n",
      "          '9borderline': 1,\n",
      "          '8excellent': 1,\n",
      "          '7good': 1,\n",
      "          '6better': 1,\n",
      "          'average': 1,\n",
      "          '5average': 1,\n",
      "          '4disappointing': 1,\n",
      "          '3poor': 1,\n",
      "          '2awful': 1,\n",
      "          '1a': 1,\n",
      "          'crap': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'get': 5,\n",
      "          'nthe': 4,\n",
      "          'kitty': 4,\n",
      "          'killer': 3,\n",
      "          'else': 3,\n",
      "          'movie': 3,\n",
      "          'isnt': 3,\n",
      "          'cindy': 3,\n",
      "          'action': 3,\n",
      "          'something': 3,\n",
      "          'censors': 2,\n",
      "          'naked': 2,\n",
      "          'scenes': 2,\n",
      "          'system': 2,\n",
      "          'penis': 2,\n",
      "          'decide': 2,\n",
      "          'tinam': 2,\n",
      "          'new': 2,\n",
      "          'nhowever': 2,\n",
      "          'alone': 2,\n",
      "          'like': 2,\n",
      "          'sometimes': 1,\n",
      "          'wonder': 1,\n",
      "          'thinking': 1,\n",
      "          'ntake': 1,\n",
      "          'film': 1,\n",
      "          'among': 1,\n",
      "          'ingredients': 1,\n",
      "          'heavy': 1,\n",
      "          'doses': 1,\n",
      "          'violence': 1,\n",
      "          'rape': 1,\n",
      "          'sequences': 1,\n",
      "          'straight': 1,\n",
      "          'lesbian': 1,\n",
      "          'sex': 1,\n",
      "          'calls': 1,\n",
      "          'coarse': 1,\n",
      "          'language': 1,\n",
      "          'nbut': 1,\n",
      "          'intelligent': 1,\n",
      "          'people': 1,\n",
      "          'censorship': 1,\n",
      "          'bureau': 1,\n",
      "          'choose': 1,\n",
      "          'remove': 1,\n",
      "          'case': 1,\n",
      "          'someone': 1,\n",
      "          'offended': 1,\n",
      "          'none': 1,\n",
      "          'word': 1,\n",
      "          'nthats': 1,\n",
      "          'nin': 1,\n",
      "          'spite': 1,\n",
      "          'everything': 1,\n",
      "          'one': 1,\n",
      "          'thing': 1,\n",
      "          'much': 1,\n",
      "          'nit': 1,\n",
      "          'really': 1,\n",
      "          'restores': 1,\n",
      "          'youre': 1,\n",
      "          'faith': 1,\n",
      "          'huh': 1,\n",
      "          'nanyway': 1,\n",
      "          'thats': 1,\n",
      "          'side': 1,\n",
      "          'point': 1,\n",
      "          'nwhen': 1,\n",
      "          'released': 1,\n",
      "          'local': 1,\n",
      "          'independent': 1,\n",
      "          'cinemas': 1,\n",
      "          'around': 1,\n",
      "          'melbourne': 1,\n",
      "          'advertised': 1,\n",
      "          'ad': 1,\n",
      "          'nausuem': 1,\n",
      "          'hip': 1,\n",
      "          'cool': 1,\n",
      "          'controversial': 1,\n",
      "          'thriller': 1,\n",
      "          'nwhat': 1,\n",
      "          'forgot': 1,\n",
      "          'mention': 1,\n",
      "          'good': 1,\n",
      "          'plot': 1,\n",
      "          'involves': 1,\n",
      "          'male': 1,\n",
      "          'cop': 1,\n",
      "          'simon': 1,\n",
      "          'yam': 1,\n",
      "          'investigating': 1,\n",
      "          'series': 1,\n",
      "          'brutal': 1,\n",
      "          'murders': 1,\n",
      "          'nwhile': 1,\n",
      "          'getting': 1,\n",
      "          'haircut': 1,\n",
      "          'meets': 1,\n",
      "          'finds': 1,\n",
      "          'attracted': 1,\n",
      "          'girl': 1,\n",
      "          'named': 1,\n",
      "          'chingmy': 1,\n",
      "          'yau': 1,\n",
      "          'extracting': 1,\n",
      "          'revenge': 1,\n",
      "          'man': 1,\n",
      "          'killed': 1,\n",
      "          'father': 1,\n",
      "          'falls': 1,\n",
      "          'professional': 1,\n",
      "          'sister': 1,\n",
      "          'svenwara': 1,\n",
      "          'madoka': 1,\n",
      "          'nrealising': 1,\n",
      "          'potential': 1,\n",
      "          'decides': 1,\n",
      "          'train': 1,\n",
      "          'several': 1,\n",
      "          'unusual': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ways': 1,\n",
      "          'gives': 1,\n",
      "          'identity': 1,\n",
      "          'course': 1,\n",
      "          'investigation': 1,\n",
      "          'believed': 1,\n",
      "          'disappeared': 1,\n",
      "          'runs': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'nto': 1,\n",
      "          'complicate': 1,\n",
      "          'matters': 1,\n",
      "          'actual': 1,\n",
      "          'serial': 1,\n",
      "          'killlers': 1,\n",
      "          'princess': 1,\n",
      "          'baby': 1,\n",
      "          'former': 1,\n",
      "          'students': 1,\n",
      "          'told': 1,\n",
      "          'kill': 1,\n",
      "          'old': 1,\n",
      "          'master': 1,\n",
      "          'student': 1,\n",
      "          'nfrom': 1,\n",
      "          'ensues': 1,\n",
      "          'nall': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'script': 1,\n",
      "          'awful': 1,\n",
      "          'direction': 1,\n",
      "          'place': 1,\n",
      "          'editing': 1,\n",
      "          'jerky': 1,\n",
      "          'confusing': 1,\n",
      "          'subtitling': 1,\n",
      "          'surprisingly': 1,\n",
      "          'poor': 1,\n",
      "          'stand': 1,\n",
      "          'pieces': 1,\n",
      "          'entertain': 1,\n",
      "          'shoot': 1,\n",
      "          'car': 1,\n",
      "          'park': 1,\n",
      "          'almost': 1,\n",
      "          'woolike': 1,\n",
      "          'adrenaline': 1,\n",
      "          'fight': 1,\n",
      "          'energetic': 1,\n",
      "          'guess': 1,\n",
      "          'must': 1,\n",
      "          'points': 1,\n",
      "          'trying': 1,\n",
      "          'little': 1,\n",
      "          'different': 1,\n",
      "          'nlet': 1,\n",
      "          'put': 1,\n",
      "          'way': 1,\n",
      "          'strong': 1,\n",
      "          'women': 1,\n",
      "          'movies': 1,\n",
      "          'black': 1,\n",
      "          'cat': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'female': 1,\n",
      "          'dont': 1,\n",
      "          'either': 1,\n",
      "          'neven': 1,\n",
      "          'curiosity': 1,\n",
      "          'value': 1,\n",
      "          'worth': 1,\n",
      "          'nlets': 1,\n",
      "          'face': 1,\n",
      "          'ever': 1,\n",
      "          'became': 1,\n",
      "          'popular': 1,\n",
      "          'subject': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cash': 12,\n",
      "          'tango': 11,\n",
      "          'movie': 8,\n",
      "          'nthe': 7,\n",
      "          'stallone': 5,\n",
      "          'russell': 5,\n",
      "          'nin': 4,\n",
      "          'one': 3,\n",
      "          'ntango': 3,\n",
      "          'plays': 3,\n",
      "          'doesnt': 3,\n",
      "          'two': 3,\n",
      "          'detectives': 3,\n",
      "          'prison': 3,\n",
      "          'anything': 3,\n",
      "          'every': 3,\n",
      "          'character': 3,\n",
      "          'movies': 3,\n",
      "          'dont': 3,\n",
      "          'palance': 3,\n",
      "          'like': 2,\n",
      "          'altogether': 2,\n",
      "          'film': 2,\n",
      "          'break': 2,\n",
      "          'old': 2,\n",
      "          'fact': 2,\n",
      "          'car': 2,\n",
      "          'ntheres': 2,\n",
      "          'nothing': 2,\n",
      "          'characters': 2,\n",
      "          'feldmans': 2,\n",
      "          'many': 2,\n",
      "          'nhis': 2,\n",
      "          'screenplay': 2,\n",
      "          'going': 2,\n",
      "          'stallones': 2,\n",
      "          'nits': 2,\n",
      "          'thinking': 2,\n",
      "          'films': 2,\n",
      "          'point': 2,\n",
      "          'story': 2,\n",
      "          'could': 2,\n",
      "          'nevery': 2,\n",
      "          'dialogue': 2,\n",
      "          'light': 2,\n",
      "          'tone': 2,\n",
      "          'well': 2,\n",
      "          'trap': 2,\n",
      "          'acting': 2,\n",
      "          'seeing': 1,\n",
      "          'blaze': 1,\n",
      "          'driving': 1,\n",
      "          'miss': 1,\n",
      "          'daisy': 1,\n",
      "          'ready': 1,\n",
      "          'mindless': 1,\n",
      "          'funoh': 1,\n",
      "          'maybe': 1,\n",
      "          'something': 1,\n",
      "          'nmaybe': 1,\n",
      "          'nmindless': 1,\n",
      "          'fun': 1,\n",
      "          'thing': 1,\n",
      "          'braindead': 1,\n",
      "          'slop': 1,\n",
      "          'another': 1,\n",
      "          'matter': 1,\n",
      "          'lowest': 1,\n",
      "          'common': 1,\n",
      "          'denominator': 1,\n",
      "          'written': 1,\n",
      "          'stars': 1,\n",
      "          'sylvester': 1,\n",
      "          'kurt': 1,\n",
      "          'rival': 1,\n",
      "          'undercover': 1,\n",
      "          'cops': 1,\n",
      "          'l': 1,\n",
      "          'reckless': 1,\n",
      "          'slob': 1,\n",
      "          'dresses': 1,\n",
      "          'jeans': 1,\n",
      "          'tee': 1,\n",
      "          'shirts': 1,\n",
      "          'nstallone': 1,\n",
      "          'wealthy': 1,\n",
      "          'investor': 1,\n",
      "          'works': 1,\n",
      "          'force': 1,\n",
      "          'strictly': 1,\n",
      "          'thrill': 1,\n",
      "          'need': 1,\n",
      "          'money': 1,\n",
      "          'effort': 1,\n",
      "          'change': 1,\n",
      "          'image': 1,\n",
      "          'goes': 1,\n",
      "          'yuppie': 1,\n",
      "          'gq': 1,\n",
      "          'look': 1,\n",
      "          'wearing': 1,\n",
      "          'spectacles': 1,\n",
      "          'three': 1,\n",
      "          'piece': 1,\n",
      "          'suits': 1,\n",
      "          'reluctantly': 1,\n",
      "          'become': 1,\n",
      "          'partners': 1,\n",
      "          'framed': 1,\n",
      "          'murder': 1,\n",
      "          'clear': 1,\n",
      "          'names': 1,\n",
      "          'unbearably': 1,\n",
      "          'noisy': 1,\n",
      "          'nfor': 1,\n",
      "          'starters': 1,\n",
      "          'theres': 1,\n",
      "          'harold': 1,\n",
      "          'faltermeyers': 1,\n",
      "          'annoying': 1,\n",
      "          'synthesized': 1,\n",
      "          'score': 1,\n",
      "          'gets': 1,\n",
      "          'four': 1,\n",
      "          'notes': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'filmmakers': 1,\n",
      "          'seem': 1,\n",
      "          'think': 1,\n",
      "          'comes': 1,\n",
      "          'loud': 1,\n",
      "          'explosions': 1,\n",
      "          'screeching': 1,\n",
      "          'cars': 1,\n",
      "          'merrier': 1,\n",
      "          'begins': 1,\n",
      "          'chases': 1,\n",
      "          'good': 1,\n",
      "          'chase': 1,\n",
      "          'introduce': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'randy': 1,\n",
      "          'brain': 1,\n",
      "          'must': 1,\n",
      "          'gone': 1,\n",
      "          'mush': 1,\n",
      "          'watching': 1,\n",
      "          'cop': 1,\n",
      "          'shows': 1,\n",
      "          'tv': 1,\n",
      "          'shockingly': 1,\n",
      "          'stupid': 1,\n",
      "          'undermines': 1,\n",
      "          'everything': 1,\n",
      "          'efforts': 1,\n",
      "          'convince': 1,\n",
      "          'intellectual': 1,\n",
      "          'iq': 1,\n",
      "          'level': 1,\n",
      "          'amoeba': 1,\n",
      "          'even': 1,\n",
      "          'great': 1,\n",
      "          'actor': 1,\n",
      "          'trouble': 1,\n",
      "          'looking': 1,\n",
      "          'intelligentand': 1,\n",
      "          'lawrence': 1,\n",
      "          'olivier': 1,\n",
      "          'hard': 1,\n",
      "          'imagine': 1,\n",
      "          'anyone': 1,\n",
      "          'reading': 1,\n",
      "          'script': 1,\n",
      "          'want': 1,\n",
      "          'plot': 1,\n",
      "          'original': 1,\n",
      "          'bone': 1,\n",
      "          'body': 1,\n",
      "          'andagainyou': 1,\n",
      "          'finger': 1,\n",
      "          'screenwriting': 1,\n",
      "          'nfeldmans': 1,\n",
      "          'line': 1,\n",
      "          'succumbs': 1,\n",
      "          'crime': 1,\n",
      "          'thriller': 1,\n",
      "          'cliche': 1,\n",
      "          'book': 1,\n",
      "          'making': 1,\n",
      "          'generic': 1,\n",
      "          'predictable': 1,\n",
      "          'nthey': 1,\n",
      "          'simply': 1,\n",
      "          'called': 1,\n",
      "          'action': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'twist': 1,\n",
      "          'turn': 1,\n",
      "          'stolen': 1,\n",
      "          'television': 1,\n",
      "          'nadding': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'believable': 1,\n",
      "          'road': 1,\n",
      "          'runner': 1,\n",
      "          'cartoon': 1,\n",
      "          'naction': 1,\n",
      "          'realistic': 1,\n",
      "          'absorb': 1,\n",
      "          'enough': 1,\n",
      "          'youre': 1,\n",
      "          'lack': 1,\n",
      "          'realism': 1,\n",
      "          'artistic': 1,\n",
      "          'aspect': 1,\n",
      "          'cinematography': 1,\n",
      "          'nthere': 1,\n",
      "          'spectacular': 1,\n",
      "          'shots': 1,\n",
      "          'especially': 1,\n",
      "          'rainy': 1,\n",
      "          'nighttime': 1,\n",
      "          'slide': 1,\n",
      "          'safety': 1,\n",
      "          'electrical': 1,\n",
      "          'wires': 1,\n",
      "          'main': 1,\n",
      "          'draw': 1,\n",
      "          'chemistry': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'relationship': 1,\n",
      "          'rarely': 1,\n",
      "          'progresses': 1,\n",
      "          'past': 1,\n",
      "          'macho': 1,\n",
      "          'competition': 1,\n",
      "          'endlessly': 1,\n",
      "          'bicker': 1,\n",
      "          'packs': 1,\n",
      "          'meat': 1,\n",
      "          'pants': 1,\n",
      "          'consists': 1,\n",
      "          'oneliners': 1,\n",
      "          'consequently': 1,\n",
      "          'attempts': 1,\n",
      "          'development': 1,\n",
      "          'embarrassing': 1,\n",
      "          'shame': 1,\n",
      "          'workable': 1,\n",
      "          'turned': 1,\n",
      "          'charming': 1,\n",
      "          'lethal': 1,\n",
      "          'weaponesque': 1,\n",
      "          'adventure': 1,\n",
      "          'tries': 1,\n",
      "          'maintain': 1,\n",
      "          'laugh': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'nseeing': 1,\n",
      "          'drag': 1,\n",
      "          'funniest': 1,\n",
      "          'moment': 1,\n",
      "          'probably': 1,\n",
      "          'already': 1,\n",
      "          'seen': 1,\n",
      "          'commercials': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'sit': 1,\n",
      "          'relentlessly': 1,\n",
      "          'brutal': 1,\n",
      "          'violence': 1,\n",
      "          'nmachine': 1,\n",
      "          'guns': 1,\n",
      "          'torture': 1,\n",
      "          'generally': 1,\n",
      "          'mix': 1,\n",
      "          'comedy': 1,\n",
      "          'njack': 1,\n",
      "          'appears': 1,\n",
      "          'best': 1,\n",
      "          'playing': 1,\n",
      "          'sleazy': 1,\n",
      "          'conniving': 1,\n",
      "          'villain': 1,\n",
      "          'however': 1,\n",
      "          'runofthemill': 1,\n",
      "          'except': 1,\n",
      "          'strange': 1,\n",
      "          'obsession': 1,\n",
      "          'mice': 1,\n",
      "          'nlike': 1,\n",
      "          'villains': 1,\n",
      "          'likes': 1,\n",
      "          'play': 1,\n",
      "          'games': 1,\n",
      "          'sets': 1,\n",
      "          'ridiculously': 1,\n",
      "          'elaborate': 1,\n",
      "          'sends': 1,\n",
      "          'beaten': 1,\n",
      "          'electrocuted': 1,\n",
      "          'meanies': 1,\n",
      "          'boiler': 1,\n",
      "          'room': 1,\n",
      "          'nyou': 1,\n",
      "          'wonder': 1,\n",
      "          'shoot': 1,\n",
      "          'head': 1,\n",
      "          'would': 1,\n",
      "          'crumble': 1,\n",
      "          'intelligent': 1,\n",
      "          'nteri': 1,\n",
      "          'hatcher': 1,\n",
      "          'sister': 1,\n",
      "          'russells': 1,\n",
      "          'loveinterest': 1,\n",
      "          'pretty': 1,\n",
      "          'nbut': 1,\n",
      "          'regrettably': 1,\n",
      "          'hatchers': 1,\n",
      "          'par': 1,\n",
      "          'exceptional': 1,\n",
      "          'beauty': 1,\n",
      "          'time': 1,\n",
      "          'opens': 1,\n",
      "          'mouth': 1,\n",
      "          'cringe': 1,\n",
      "          'corny': 1,\n",
      "          'atrocious': 1,\n",
      "          'always': 1,\n",
      "          'fatal': 1,\n",
      "          'combination': 1,\n",
      "          'really': 1,\n",
      "          'little': 1,\n",
      "          'recommend': 1,\n",
      "          'nand': 1,\n",
      "          'definitely': 1,\n",
      "          'isnt': 1,\n",
      "          'worth': 1,\n",
      "          'penny': 1,\n",
      "          'cashso': 1,\n",
      "          'bother': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'warrior': 7,\n",
      "          '13th': 5,\n",
      "          'vikings': 5,\n",
      "          'ahmed': 4,\n",
      "          'cannibals': 4,\n",
      "          'nit': 4,\n",
      "          'might': 4,\n",
      "          'warriors': 3,\n",
      "          'na': 3,\n",
      "          'viking': 3,\n",
      "          'movie': 3,\n",
      "          'scenes': 3,\n",
      "          'attack': 3,\n",
      "          'n': 3,\n",
      "          'action': 3,\n",
      "          'nthe': 3,\n",
      "          'meets': 3,\n",
      "          'ibn': 2,\n",
      "          'antonio': 2,\n",
      "          'finds': 2,\n",
      "          'nwith': 2,\n",
      "          'small': 2,\n",
      "          'northmen': 2,\n",
      "          'kingdom': 2,\n",
      "          'thirteen': 2,\n",
      "          'one': 2,\n",
      "          'called': 2,\n",
      "          'mctiernan': 2,\n",
      "          'predator': 2,\n",
      "          'line': 2,\n",
      "          'eaters': 2,\n",
      "          'dead': 2,\n",
      "          'villain': 2,\n",
      "          'seem': 2,\n",
      "          'arab': 1,\n",
      "          'poet': 1,\n",
      "          'fahdlan': 1,\n",
      "          'banderas': 1,\n",
      "          'kicked': 1,\n",
      "          'baghdad': 1,\n",
      "          'feeling': 1,\n",
      "          'kings': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n",
      "          'translator': 1,\n",
      "          'screen': 1,\n",
      "          'legend': 1,\n",
      "          'omar': 1,\n",
      "          'sharif': 1,\n",
      "          'role': 1,\n",
      "          'heads': 1,\n",
      "          'north': 1,\n",
      "          'act': 1,\n",
      "          'ambassador': 1,\n",
      "          'nhe': 1,\n",
      "          'group': 1,\n",
      "          'mourning': 1,\n",
      "          'loss': 1,\n",
      "          'king': 1,\n",
      "          'messenger': 1,\n",
      "          'soon': 1,\n",
      "          'arrives': 1,\n",
      "          'another': 1,\n",
      "          'requesting': 1,\n",
      "          'assistance': 1,\n",
      "          'soothsayer': 1,\n",
      "          'says': 1,\n",
      "          'must': 1,\n",
      "          'answer': 1,\n",
      "          'summons': 1,\n",
      "          'twelve': 1,\n",
      "          'outsider': 1,\n",
      "          'nthus': 1,\n",
      "          'becomes': 1,\n",
      "          'non': 1,\n",
      "          'trip': 1,\n",
      "          'manages': 1,\n",
      "          'learn': 1,\n",
      "          'language': 1,\n",
      "          'listening': 1,\n",
      "          'fireside': 1,\n",
      "          'conversations': 1,\n",
      "          'bit': 1,\n",
      "          'farfetched': 1,\n",
      "          'true': 1,\n",
      "          'swallow': 1,\n",
      "          'flick': 1,\n",
      "          'going': 1,\n",
      "          'manage': 1,\n",
      "          'lines': 1,\n",
      "          'dialogue': 1,\n",
      "          'amidst': 1,\n",
      "          'grunting': 1,\n",
      "          'nahmed': 1,\n",
      "          'whos': 1,\n",
      "          'forms': 1,\n",
      "          'friendships': 1,\n",
      "          'herger': 1,\n",
      "          'joyous': 1,\n",
      "          'dennis': 1,\n",
      "          'storh': 1,\n",
      "          'leader': 1,\n",
      "          'buliwyf': 1,\n",
      "          'vladimir': 1,\n",
      "          'kulich': 1,\n",
      "          'nwhen': 1,\n",
      "          'arrive': 1,\n",
      "          'discover': 1,\n",
      "          'theyre': 1,\n",
      "          'facing': 1,\n",
      "          'army': 1,\n",
      "          'supernatural': 1,\n",
      "          'live': 1,\n",
      "          'caves': 1,\n",
      "          'nhereafter': 1,\n",
      "          'battle': 1,\n",
      "          'nwell': 1,\n",
      "          'get': 1,\n",
      "          'idea': 1,\n",
      "          'njust': 1,\n",
      "          'add': 1,\n",
      "          'theres': 1,\n",
      "          'also': 1,\n",
      "          'vs': 1,\n",
      "          'duel': 1,\n",
      "          'nother': 1,\n",
      "          'movies': 1,\n",
      "          'insert': 1,\n",
      "          'fights': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'ni': 1,\n",
      "          'suspect': 1,\n",
      "          'better': 1,\n",
      "          'script': 1,\n",
      "          'time': 1,\n",
      "          'fell': 1,\n",
      "          'cracks': 1,\n",
      "          'tagteam': 1,\n",
      "          'direction': 1,\n",
      "          'started': 1,\n",
      "          'hands': 1,\n",
      "          'john': 1,\n",
      "          'youll': 1,\n",
      "          'notice': 1,\n",
      "          'lot': 1,\n",
      "          'similarities': 1,\n",
      "          'mctiernans': 1,\n",
      "          'including': 1,\n",
      "          'chittering': 1,\n",
      "          'jungle': 1,\n",
      "          'sounds': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'along': 1,\n",
      "          'bailed': 1,\n",
      "          'michael': 1,\n",
      "          'crichton': 1,\n",
      "          'took': 1,\n",
      "          'ncrichton': 1,\n",
      "          'whose': 1,\n",
      "          'novel': 1,\n",
      "          'basis': 1,\n",
      "          'directed': 1,\n",
      "          'assortment': 1,\n",
      "          'goofy': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'thrillers': 1,\n",
      "          'westworld': 1,\n",
      "          'coma': 1,\n",
      "          'looker': 1,\n",
      "          'runaway': 1,\n",
      "          'ntheir': 1,\n",
      "          'result': 1,\n",
      "          'consecutive': 1,\n",
      "          'efforts': 1,\n",
      "          'murky': 1,\n",
      "          'pointless': 1,\n",
      "          'nperhaps': 1,\n",
      "          'needs': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'faceless': 1,\n",
      "          'mob': 1,\n",
      "          'blackface': 1,\n",
      "          'nthey': 1,\n",
      "          'personality': 1,\n",
      "          'end': 1,\n",
      "          'dont': 1,\n",
      "          'even': 1,\n",
      "          'particularly': 1,\n",
      "          'threatening': 1,\n",
      "          'audience': 1,\n",
      "          'target': 1,\n",
      "          'toward': 1,\n",
      "          'channel': 1,\n",
      "          'aggression': 1,\n",
      "          'nmctiernan': 1,\n",
      "          'know': 1,\n",
      "          'importance': 1,\n",
      "          'interesting': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'made': 1,\n",
      "          'villains': 1,\n",
      "          'fun': 1,\n",
      "          'attracted': 1,\n",
      "          'bigname': 1,\n",
      "          'stars': 1,\n",
      "          'evil': 1,\n",
      "          'roles': 1,\n",
      "          'films': 1,\n",
      "          'suffers': 1,\n",
      "          'lack': 1,\n",
      "          'vision': 1,\n",
      "          'wants': 1,\n",
      "          'braveheart': 1,\n",
      "          'magnificent': 1,\n",
      "          'seven': 1,\n",
      "          'dances': 1,\n",
      "          'wolves': 1,\n",
      "          'many': 1,\n",
      "          'competing': 1,\n",
      "          'goals': 1,\n",
      "          'echo': 1,\n",
      "          'satisfying': 1,\n",
      "          'film': 1,\n",
      "          'beautifullyrendered': 1,\n",
      "          'medieval': 1,\n",
      "          'epic': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'examination': 1,\n",
      "          'meeting': 1,\n",
      "          'cultures': 1,\n",
      "          'nwhat': 1,\n",
      "          'shame': 1,\n",
      "          'turned': 1,\n",
      "          'nothing': 1,\n",
      "          'particular': 1,\n",
      "          'nbottom': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'swing': 1,\n",
      "          'sword': 1,\n",
      "          'rent': 1,\n",
      "          'mask': 1,\n",
      "          'zorro': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'nthe': 5,\n",
      "          'would': 3,\n",
      "          'find': 3,\n",
      "          'much': 2,\n",
      "          'good': 2,\n",
      "          'say': 2,\n",
      "          'acting': 2,\n",
      "          'ill': 2,\n",
      "          'one': 2,\n",
      "          'least': 2,\n",
      "          'nothing': 2,\n",
      "          'right': 2,\n",
      "          'plot': 2,\n",
      "          'interesting': 2,\n",
      "          'njohn': 2,\n",
      "          'evil': 2,\n",
      "          'film': 2,\n",
      "          'points': 2,\n",
      "          'script': 2,\n",
      "          'isnt': 1,\n",
      "          'nnot': 1,\n",
      "          'directing': 1,\n",
      "          'writing': 1,\n",
      "          'make': 1,\n",
      "          'consider': 1,\n",
      "          'seeing': 1,\n",
      "          'nso': 1,\n",
      "          'get': 1,\n",
      "          'comment': 1,\n",
      "          'way': 1,\n",
      "          'joel': 1,\n",
      "          'schuemacher': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'didnt': 1,\n",
      "          'direct': 1,\n",
      "          'titled': 1,\n",
      "          'technicolor': 1,\n",
      "          'city': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'colorful': 1,\n",
      "          'dark': 1,\n",
      "          'depressingly': 1,\n",
      "          'gloomy': 1,\n",
      "          'bitter': 1,\n",
      "          'end': 1,\n",
      "          'tendency': 1,\n",
      "          'passes': 1,\n",
      "          'laughing': 1,\n",
      "          'ridiculous': 1,\n",
      "          'things': 1,\n",
      "          'thrown': 1,\n",
      "          'could': 1,\n",
      "          'fascinating': 1,\n",
      "          'impossible': 1,\n",
      "          'explain': 1,\n",
      "          'due': 1,\n",
      "          'senseless': 1,\n",
      "          'gets': 1,\n",
      "          'touch': 1,\n",
      "          'bare': 1,\n",
      "          'minimum': 1,\n",
      "          'murdoch': 1,\n",
      "          'rufus': 1,\n",
      "          'sewell': 1,\n",
      "          'awakes': 1,\n",
      "          'bathtub': 1,\n",
      "          'cheap': 1,\n",
      "          'hotel': 1,\n",
      "          'forgotten': 1,\n",
      "          'everything': 1,\n",
      "          'must': 1,\n",
      "          'strangers': 1,\n",
      "          'k': 1,\n",
      "          'nmind': 1,\n",
      "          'erasing': 1,\n",
      "          'aliens': 1,\n",
      "          'use': 1,\n",
      "          'conspiracy': 1,\n",
      "          'nduring': 1,\n",
      "          'raised': 1,\n",
      "          'human': 1,\n",
      "          'individuality': 1,\n",
      "          'existence': 1,\n",
      "          'inherently': 1,\n",
      "          'people': 1,\n",
      "          'nany': 1,\n",
      "          'however': 1,\n",
      "          'completely': 1,\n",
      "          'erased': 1,\n",
      "          'mind': 1,\n",
      "          'watch': 1,\n",
      "          'actors': 1,\n",
      "          'stumble': 1,\n",
      "          'dreadful': 1,\n",
      "          'nas': 1,\n",
      "          'mentioned': 1,\n",
      "          'earlier': 1,\n",
      "          'atmosphere': 1,\n",
      "          'bland': 1,\n",
      "          'since': 1,\n",
      "          'virtually': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'seems': 1,\n",
      "          'care': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'even': 1,\n",
      "          'hilariously': 1,\n",
      "          'fake': 1,\n",
      "          'sign': 1,\n",
      "          'true': 1,\n",
      "          'bmovie': 1,\n",
      "          'direction': 1,\n",
      "          'poor': 1,\n",
      "          'little': 1,\n",
      "          'continuity': 1,\n",
      "          'expect': 1,\n",
      "          'switching': 1,\n",
      "          'realities': 1,\n",
      "          'constantly': 1,\n",
      "          'nlastly': 1,\n",
      "          'weak': 1,\n",
      "          'concept': 1,\n",
      "          'reality': 1,\n",
      "          'doesnt': 1,\n",
      "          'deserve': 1,\n",
      "          'word': 1,\n",
      "          'science': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'nif': 1,\n",
      "          'havent': 1,\n",
      "          'got': 1,\n",
      "          'point': 1,\n",
      "          'across': 1,\n",
      "          'plainly': 1,\n",
      "          'bad': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'next': 1,\n",
      "          'alex': 1,\n",
      "          'wish': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'proyas': 1,\n",
      "          'tolerable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'one': 7,\n",
      "          'john': 7,\n",
      "          'nthe': 6,\n",
      "          'varsity': 5,\n",
      "          'coach': 5,\n",
      "          'football': 5,\n",
      "          'since': 5,\n",
      "          'blues': 4,\n",
      "          'another': 4,\n",
      "          'sports': 4,\n",
      "          'game': 4,\n",
      "          'town': 4,\n",
      "          '1999': 3,\n",
      "          'also': 3,\n",
      "          'big': 3,\n",
      "          'team': 3,\n",
      "          'win': 3,\n",
      "          'question': 3,\n",
      "          'van': 3,\n",
      "          'der': 3,\n",
      "          'beek': 3,\n",
      "          'west': 3,\n",
      "          'canaan': 3,\n",
      "          'really': 3,\n",
      "          'get': 3,\n",
      "          'right': 3,\n",
      "          'girlfriend': 3,\n",
      "          'dont': 3,\n",
      "          'characters': 3,\n",
      "          'certainly': 3,\n",
      "          'probably': 3,\n",
      "          'films': 3,\n",
      "          'character': 3,\n",
      "          'far': 2,\n",
      "          'first': 2,\n",
      "          'seen': 2,\n",
      "          'nit': 2,\n",
      "          'smalltown': 2,\n",
      "          'movies': 2,\n",
      "          'involves': 2,\n",
      "          'flawed': 2,\n",
      "          'great': 2,\n",
      "          'nwill': 2,\n",
      "          'ndo': 2,\n",
      "          'plays': 2,\n",
      "          'scholarship': 2,\n",
      "          'university': 2,\n",
      "          'least': 2,\n",
      "          'portrayed': 2,\n",
      "          'coming': 2,\n",
      "          'scene': 2,\n",
      "          'badgers': 2,\n",
      "          'night': 2,\n",
      "          'teams': 2,\n",
      "          'long': 2,\n",
      "          'problems': 2,\n",
      "          'amy': 2,\n",
      "          'smart': 2,\n",
      "          'jon': 2,\n",
      "          'voight': 2,\n",
      "          'like': 2,\n",
      "          'welcome': 2,\n",
      "          'role': 2,\n",
      "          'bad': 2,\n",
      "          'old': 2,\n",
      "          'could': 2,\n",
      "          'think': 2,\n",
      "          'story': 2,\n",
      "          'moves': 2,\n",
      "          'little': 2,\n",
      "          'much': 2,\n",
      "          'sex': 2,\n",
      "          'education': 2,\n",
      "          'passive': 2,\n",
      "          'didnt': 2,\n",
      "          'nothing': 2,\n",
      "          'nhis': 2,\n",
      "          'set': 2,\n",
      "          'need': 2,\n",
      "          'seem': 2,\n",
      "          'parts': 2,\n",
      "          'best': 1,\n",
      "          'thus': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'goodheartedfrom': 1,\n",
      "          'goodhearted': 1,\n",
      "          'protagonist': 1,\n",
      "          'rough': 1,\n",
      "          'meanspirited': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'underdog': 1,\n",
      "          'overcome': 1,\n",
      "          'odds': 1,\n",
      "          'triumph': 1,\n",
      "          'everyone': 1,\n",
      "          'turn': 1,\n",
      "          'climactic': 1,\n",
      "          'cats': 1,\n",
      "          'bathe': 1,\n",
      "          'regularly': 1,\n",
      "          'socalled': 1,\n",
      "          'hero': 1,\n",
      "          'moxin': 1,\n",
      "          'james': 1,\n",
      "          'senior': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'hoping': 1,\n",
      "          'brown': 1,\n",
      "          'deadend': 1,\n",
      "          'nat': 1,\n",
      "          'hes': 1,\n",
      "          'got': 1,\n",
      "          'idea': 1,\n",
      "          'texas': 1,\n",
      "          'frankly': 1,\n",
      "          'pathetic': 1,\n",
      "          'whole': 1,\n",
      "          'treating': 1,\n",
      "          'weekly': 1,\n",
      "          'games': 1,\n",
      "          'second': 1,\n",
      "          'nheck': 1,\n",
      "          'front': 1,\n",
      "          'page': 1,\n",
      "          'towns': 1,\n",
      "          'newspaper': 1,\n",
      "          'proclaiming': 1,\n",
      "          'nwhen': 1,\n",
      "          'star': 1,\n",
      "          'quarterback': 1,\n",
      "          'severely': 1,\n",
      "          'injured': 1,\n",
      "          'tearing': 1,\n",
      "          'ligaments': 1,\n",
      "          'leg': 1,\n",
      "          'finds': 1,\n",
      "          'taking': 1,\n",
      "          'leader': 1,\n",
      "          'minutes': 1,\n",
      "          'glory': 1,\n",
      "          'last': 1,\n",
      "          'begins': 1,\n",
      "          'discovers': 1,\n",
      "          'spent': 1,\n",
      "          'evening': 1,\n",
      "          'girl': 1,\n",
      "          'ali': 1,\n",
      "          'larter': 1,\n",
      "          'nand': 1,\n",
      "          'staying': 1,\n",
      "          'drinking': 1,\n",
      "          'buddies': 1,\n",
      "          'strip': 1,\n",
      "          'joint': 1,\n",
      "          'teenagers': 1,\n",
      "          'raging': 1,\n",
      "          'alcoholics': 1,\n",
      "          'loses': 1,\n",
      "          'secondtolast': 1,\n",
      "          'putting': 1,\n",
      "          'feuds': 1,\n",
      "          'gary': 1,\n",
      "          'oldman': 1,\n",
      "          'overstaying': 1,\n",
      "          'typecasted': 1,\n",
      "          'guy': 1,\n",
      "          'nworse': 1,\n",
      "          'yet': 1,\n",
      "          'threatening': 1,\n",
      "          'ruin': 1,\n",
      "          'johns': 1,\n",
      "          'chances': 1,\n",
      "          'final': 1,\n",
      "          'plotting': 1,\n",
      "          'hills': 1,\n",
      "          'contains': 1,\n",
      "          'every': 1,\n",
      "          'cliche': 1,\n",
      "          'book': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'never': 1,\n",
      "          'exactly': 1,\n",
      "          'bored': 1,\n",
      "          'watching': 1,\n",
      "          'hasten': 1,\n",
      "          'add': 1,\n",
      "          'rarely': 1,\n",
      "          'ever': 1,\n",
      "          'entertained': 1,\n",
      "          'nthroughout': 1,\n",
      "          'virtually': 1,\n",
      "          'exact': 1,\n",
      "          'filmed': 1,\n",
      "          'deal': 1,\n",
      "          'thoughtfulness': 1,\n",
      "          'maturity': 1,\n",
      "          '1983s': 1,\n",
      "          'none': 1,\n",
      "          'biggest': 1,\n",
      "          'interest': 1,\n",
      "          'actually': 1,\n",
      "          'played': 1,\n",
      "          'tvs': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'pretty': 1,\n",
      "          'bore': 1,\n",
      "          'without': 1,\n",
      "          'engaging': 1,\n",
      "          'qualities': 1,\n",
      "          'nwhile': 1,\n",
      "          'shouldnt': 1,\n",
      "          'blame': 1,\n",
      "          'inauspicious': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'screenplay': 1,\n",
      "          'w': 1,\n",
      "          'peter': 1,\n",
      "          'iliff': 1,\n",
      "          'isnt': 1,\n",
      "          'help': 1,\n",
      "          'still': 1,\n",
      "          'league': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'revolving': 1,\n",
      "          'around': 1,\n",
      "          'meanwhile': 1,\n",
      "          'extemely': 1,\n",
      "          'thin': 1,\n",
      "          'throughout': 1,\n",
      "          'particularly': 1,\n",
      "          '104minute': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'alternates': 1,\n",
      "          'uninspired': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'students': 1,\n",
      "          'see': 1,\n",
      "          'teacher': 1,\n",
      "          'working': 1,\n",
      "          'stripper': 1,\n",
      "          'club': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'melodrama': 1,\n",
      "          'romance': 1,\n",
      "          'potential': 1,\n",
      "          'adequate': 1,\n",
      "          'subplot': 1,\n",
      "          'learned': 1,\n",
      "          'unfortunate': 1,\n",
      "          'ive': 1,\n",
      "          'past': 1,\n",
      "          'written': 1,\n",
      "          'sort': 1,\n",
      "          'intelligence': 1,\n",
      "          'nsmart': 1,\n",
      "          'allow': 1,\n",
      "          'become': 1,\n",
      "          'instead': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'ideas': 1,\n",
      "          'opinions': 1,\n",
      "          'nits': 1,\n",
      "          'camera': 1,\n",
      "          'linger': 1,\n",
      "          'enough': 1,\n",
      "          'hear': 1,\n",
      "          'thoughts': 1,\n",
      "          'adult': 1,\n",
      "          'fare': 1,\n",
      "          'worse': 1,\n",
      "          'must': 1,\n",
      "          'play': 1,\n",
      "          'residents': 1,\n",
      "          'dimwitted': 1,\n",
      "          'cares': 1,\n",
      "          'njohns': 1,\n",
      "          'relationship': 1,\n",
      "          'parents': 1,\n",
      "          'telegraphed': 1,\n",
      "          'advance': 1,\n",
      "          'father': 1,\n",
      "          'becoming': 1,\n",
      "          'player': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'part': 1,\n",
      "          'mother': 1,\n",
      "          'stands': 1,\n",
      "          'beside': 1,\n",
      "          'strong': 1,\n",
      "          'husband': 1,\n",
      "          'female': 1,\n",
      "          'nfinally': 1,\n",
      "          'stock': 1,\n",
      "          'bully': 1,\n",
      "          'make': 1,\n",
      "          'thankless': 1,\n",
      "          'onedimensional': 1,\n",
      "          'nsaving': 1,\n",
      "          'total': 1,\n",
      "          'washout': 1,\n",
      "          'amusing': 1,\n",
      "          'sequences': 1,\n",
      "          'including': 1,\n",
      "          'class': 1,\n",
      "          'laugh': 1,\n",
      "          'scenes': 1,\n",
      "          'playing': 1,\n",
      "          'wellshot': 1,\n",
      "          'thankfully': 1,\n",
      "          'overstay': 1,\n",
      "          'many': 1,\n",
      "          'fall': 1,\n",
      "          'victim': 1,\n",
      "          'nbut': 1,\n",
      "          'leaving': 1,\n",
      "          'theater': 1,\n",
      "          'mind': 1,\n",
      "          'made': 1,\n",
      "          'ni': 1,\n",
      "          'asking': 1,\n",
      "          'quite': 1,\n",
      "          'lot': 1,\n",
      "          'lately': 1,\n",
      "          'stories': 1,\n",
      "          'cranking': 1,\n",
      "          'hollywood': 1,\n",
      "          'highschool': 1,\n",
      "          'nno': 1,\n",
      "          'lowcaliber': 1,\n",
      "          'felt': 1,\n",
      "          'cutandpaste': 1,\n",
      "          'job': 1,\n",
      "          'spare': 1,\n",
      "          'better': 1,\n",
      "          'similar': 1,\n",
      "          'n': 1,\n",
      "          'doubt': 1,\n",
      "          'however': 1,\n",
      "          'include': 1,\n",
      "          'earnest': 1,\n",
      "          'wearing': 1,\n",
      "          'whipped': 1,\n",
      "          'cream': 1,\n",
      "          'private': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jermaine': 4,\n",
      "          'wife': 4,\n",
      "          'jasmine': 4,\n",
      "          'nthe': 4,\n",
      "          'trois': 3,\n",
      "          'fatal': 3,\n",
      "          'attraction': 3,\n",
      "          'njermaine': 3,\n",
      "          'sexually': 3,\n",
      "          'point': 3,\n",
      "          'film': 2,\n",
      "          'relationships': 2,\n",
      "          'ndespite': 2,\n",
      "          'sets': 2,\n",
      "          'rest': 2,\n",
      "          'njasmine': 2,\n",
      "          'college': 2,\n",
      "          'early': 2,\n",
      "          'selfish': 2,\n",
      "          'jasmines': 2,\n",
      "          'nas': 2,\n",
      "          'woman': 2,\n",
      "          'encounter': 2,\n",
      "          'jade': 2,\n",
      "          'njade': 2,\n",
      "          'jermaines': 2,\n",
      "          'violence': 2,\n",
      "          'upon': 2,\n",
      "          'without': 2,\n",
      "          'comes': 2,\n",
      "          'touted': 1,\n",
      "          'exploring': 1,\n",
      "          'black': 1,\n",
      "          'sexuality': 1,\n",
      "          'surprisingly': 1,\n",
      "          'tame': 1,\n",
      "          'lurid': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'passing': 1,\n",
      "          'nod': 1,\n",
      "          'moves': 1,\n",
      "          'along': 1,\n",
      "          'flat': 1,\n",
      "          'uninspired': 1,\n",
      "          'dialogue': 1,\n",
      "          'surprising': 1,\n",
      "          'climax': 1,\n",
      "          'tries': 1,\n",
      "          'mightily': 1,\n",
      "          'overthrow': 1,\n",
      "          'considerable': 1,\n",
      "          'dead': 1,\n",
      "          'weight': 1,\n",
      "          'nfreshly': 1,\n",
      "          'moved': 1,\n",
      "          'atlanta': 1,\n",
      "          'dourdan': 1,\n",
      "          'moore': 1,\n",
      "          'trappings': 1,\n",
      "          'perfect': 1,\n",
      "          'life': 1,\n",
      "          'nthey': 1,\n",
      "          'beautiful': 1,\n",
      "          'house': 1,\n",
      "          'suburbia': 1,\n",
      "          'lawyer': 1,\n",
      "          'fast': 1,\n",
      "          'track': 1,\n",
      "          'firm': 1,\n",
      "          'supportive': 1,\n",
      "          'finishing': 1,\n",
      "          'degree': 1,\n",
      "          'nin': 1,\n",
      "          'opening': 1,\n",
      "          'montage': 1,\n",
      "          'via': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'pair': 1,\n",
      "          'see': 1,\n",
      "          'unremarkable': 1,\n",
      "          'story': 1,\n",
      "          'marriage': 1,\n",
      "          'marital': 1,\n",
      "          'triumphs': 1,\n",
      "          'nthis': 1,\n",
      "          'couple': 1,\n",
      "          'ninto': 1,\n",
      "          'eden': 1,\n",
      "          'slithers': 1,\n",
      "          'lure': 1,\n",
      "          'lust': 1,\n",
      "          'outward': 1,\n",
      "          'appearance': 1,\n",
      "          'reveals': 1,\n",
      "          'covetous': 1,\n",
      "          'possession': 1,\n",
      "          'person': 1,\n",
      "          'na': 1,\n",
      "          'glimmer': 1,\n",
      "          'true': 1,\n",
      "          'nature': 1,\n",
      "          'peeks': 1,\n",
      "          'sex': 1,\n",
      "          'scene': 1,\n",
      "          'goes': 1,\n",
      "          'business': 1,\n",
      "          'oblivious': 1,\n",
      "          'concerns': 1,\n",
      "          'nwe': 1,\n",
      "          'also': 1,\n",
      "          'find': 1,\n",
      "          'relentlessly': 1,\n",
      "          'asking': 1,\n",
      "          'participate': 1,\n",
      "          'menage': 1,\n",
      "          'atrois': 1,\n",
      "          'much': 1,\n",
      "          'dismay': 1,\n",
      "          'puts': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'free': 1,\n",
      "          'shares': 1,\n",
      "          'desire': 1,\n",
      "          'coworker': 1,\n",
      "          'terrence': 1,\n",
      "          'smith': 1,\n",
      "          'obligingly': 1,\n",
      "          'might': 1,\n",
      "          'interested': 1,\n",
      "          'palmer': 1,\n",
      "          'direct': 1,\n",
      "          'counterpoint': 1,\n",
      "          'one': 1,\n",
      "          'student': 1,\n",
      "          'nunlike': 1,\n",
      "          'found': 1,\n",
      "          'pregnant': 1,\n",
      "          'dropped': 1,\n",
      "          'school': 1,\n",
      "          'struggles': 1,\n",
      "          'make': 1,\n",
      "          'ends': 1,\n",
      "          'meet': 1,\n",
      "          'nto': 1,\n",
      "          'reinforce': 1,\n",
      "          'differences': 1,\n",
      "          'revealed': 1,\n",
      "          'involved': 1,\n",
      "          'custody': 1,\n",
      "          'battle': 1,\n",
      "          'son': 1,\n",
      "          'ninevitably': 1,\n",
      "          'liquor': 1,\n",
      "          'touch': 1,\n",
      "          'duplicity': 1,\n",
      "          'part': 1,\n",
      "          'forbidden': 1,\n",
      "          'act': 1,\n",
      "          'consummated': 1,\n",
      "          'aftermath': 1,\n",
      "          'sidesteps': 1,\n",
      "          'territory': 1,\n",
      "          'acts': 1,\n",
      "          'perpetrated': 1,\n",
      "          'property': 1,\n",
      "          'hint': 1,\n",
      "          'may': 1,\n",
      "          'escalate': 1,\n",
      "          'nby': 1,\n",
      "          'shows': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'requisite': 1,\n",
      "          'melodrama': 1,\n",
      "          'social': 1,\n",
      "          'significance': 1,\n",
      "          'exploration': 1,\n",
      "          'strictly': 1,\n",
      "          'superficial': 1,\n",
      "          'stereotypical': 1,\n",
      "          'insincere': 1,\n",
      "          'driven': 1,\n",
      "          'bland': 1,\n",
      "          'subservient': 1,\n",
      "          'bit': 1,\n",
      "          'sympathetically': 1,\n",
      "          'negated': 1,\n",
      "          'moral': 1,\n",
      "          'bankruptcy': 1,\n",
      "          'nyet': 1,\n",
      "          'another': 1,\n",
      "          'tale': 1,\n",
      "          'aggressive': 1,\n",
      "          'dog': 1,\n",
      "          'man': 1,\n",
      "          'imposes': 1,\n",
      "          'accommodating': 1,\n",
      "          'innocent': 1,\n",
      "          'mate': 1,\n",
      "          'last': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          'undoubtly': 1,\n",
      "          'throw': 1,\n",
      "          'curve': 1,\n",
      "          'even': 1,\n",
      "          'care': 1,\n",
      "          'nif': 1,\n",
      "          'movie': 1,\n",
      "          'dynamic': 1,\n",
      "          'ending': 1,\n",
      "          'perhaps': 1,\n",
      "          'could': 1,\n",
      "          'freshness': 1,\n",
      "          'stands': 1,\n",
      "          'pretty': 1,\n",
      "          'standard': 1,\n",
      "          'fare': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'good': 4,\n",
      "          'mission': 3,\n",
      "          'one': 2,\n",
      "          'get': 2,\n",
      "          'five': 2,\n",
      "          'n': 2,\n",
      "          'give': 2,\n",
      "          'moment': 2,\n",
      "          'dont': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'kind': 2,\n",
      "          'trying': 2,\n",
      "          'character': 2,\n",
      "          'mars': 1,\n",
      "          'annoying': 1,\n",
      "          'movies': 1,\n",
      "          'middle': 1,\n",
      "          'sneaking': 1,\n",
      "          'suspicion': 1,\n",
      "          'reason': 1,\n",
      "          'trailer': 1,\n",
      "          'looks': 1,\n",
      "          'showcased': 1,\n",
      "          'best': 1,\n",
      "          'parts': 1,\n",
      "          'minutes': 1,\n",
      "          'payoff': 1,\n",
      "          'come': 1,\n",
      "          'little': 1,\n",
      "          'late': 1,\n",
      "          'ideas': 1,\n",
      "          'lost': 1,\n",
      "          'unbearably': 1,\n",
      "          'boring': 1,\n",
      "          'delivery': 1,\n",
      "          'dimeadozen': 1,\n",
      "          'dialogue': 1,\n",
      "          'spate': 1,\n",
      "          'actors': 1,\n",
      "          'wasted': 1,\n",
      "          'cardboardcutout': 1,\n",
      "          'roles': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'director': 1,\n",
      "          'writers': 1,\n",
      "          'proud': 1,\n",
      "          'hallmark': 1,\n",
      "          'came': 1,\n",
      "          'stretch': 1,\n",
      "          'dramatic': 1,\n",
      "          'like': 1,\n",
      "          'silly': 1,\n",
      "          'putty': 1,\n",
      "          'loses': 1,\n",
      "          'charm': 1,\n",
      "          'nglances': 1,\n",
      "          'communicate': 1,\n",
      "          'deeper': 1,\n",
      "          'emotions': 1,\n",
      "          'draw': 1,\n",
      "          'hours': 1,\n",
      "          'end': 1,\n",
      "          'spends': 1,\n",
      "          'hour': 1,\n",
      "          'stuff': 1,\n",
      "          'building': 1,\n",
      "          'climax': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'cliched': 1,\n",
      "          'glorification': 1,\n",
      "          'family': 1,\n",
      "          'relationships': 1,\n",
      "          'marriage': 1,\n",
      "          'friendship': 1,\n",
      "          'unite': 1,\n",
      "          'stand': 1,\n",
      "          'divided': 1,\n",
      "          'fall': 1,\n",
      "          'crap': 1,\n",
      "          'nthere': 1,\n",
      "          'spectacular': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'sequences': 1,\n",
      "          'points': 1,\n",
      "          'stay': 1,\n",
      "          'true': 1,\n",
      "          'science': 1,\n",
      "          'know': 1,\n",
      "          'key': 1,\n",
      "          'word': 1,\n",
      "          'sequence': 1,\n",
      "          'martian': 1,\n",
      "          'demonstrating': 1,\n",
      "          'history': 1,\n",
      "          'oddly': 1,\n",
      "          'beautiful': 1,\n",
      "          'touching': 1,\n",
      "          'mentioned': 1,\n",
      "          'sick': 1,\n",
      "          'goddamn': 1,\n",
      "          'thing': 1,\n",
      "          'want': 1,\n",
      "          'ngreat': 1,\n",
      "          'design': 1,\n",
      "          'intentions': 1,\n",
      "          'cigar': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'scifi': 1,\n",
      "          'fx': 1,\n",
      "          'jerry': 1,\n",
      "          'oconnell': 1,\n",
      "          'fan': 1,\n",
      "          'semblance': 1,\n",
      "          'waste': 1,\n",
      "          'eight': 1,\n",
      "          'bucks': 1,\n",
      "          'nand': 1,\n",
      "          'hell': 1,\n",
      "          'tim': 1,\n",
      "          'robbins': 1,\n",
      "          'died': 1,\n",
      "          'halfway': 1,\n",
      "          'stupid': 1,\n",
      "          'way': 1,\n",
      "          'nthats': 1,\n",
      "          'unforgiveable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 32,\n",
      "          'caligula': 8,\n",
      "          'could': 8,\n",
      "          'nthe': 8,\n",
      "          'one': 7,\n",
      "          'also': 6,\n",
      "          'nand': 6,\n",
      "          'good': 6,\n",
      "          'historical': 5,\n",
      "          'accuracy': 5,\n",
      "          'guccione': 5,\n",
      "          'emporer': 5,\n",
      "          'instead': 5,\n",
      "          'bad': 4,\n",
      "          'everything': 4,\n",
      "          'roman': 4,\n",
      "          'anyone': 4,\n",
      "          'little': 4,\n",
      "          'going': 4,\n",
      "          'scene': 3,\n",
      "          'shot': 3,\n",
      "          'used': 3,\n",
      "          'ive': 3,\n",
      "          'ever': 3,\n",
      "          'taste': 3,\n",
      "          'something': 3,\n",
      "          'man': 3,\n",
      "          'etc': 3,\n",
      "          'well': 3,\n",
      "          'hour': 3,\n",
      "          'time': 3,\n",
      "          'since': 3,\n",
      "          'really': 3,\n",
      "          'fact': 3,\n",
      "          'even': 3,\n",
      "          'every': 3,\n",
      "          'single': 3,\n",
      "          'soul': 3,\n",
      "          'around': 3,\n",
      "          'make': 3,\n",
      "          'great': 3,\n",
      "          'performance': 3,\n",
      "          'nbut': 3,\n",
      "          'real': 3,\n",
      "          'entire': 3,\n",
      "          'dark': 3,\n",
      "          'get': 3,\n",
      "          'made': 2,\n",
      "          'two': 2,\n",
      "          'anal': 2,\n",
      "          'rape': 2,\n",
      "          'done': 2,\n",
      "          'hysterical': 2,\n",
      "          'moments': 2,\n",
      "          'may': 2,\n",
      "          'hell': 2,\n",
      "          'offensive': 2,\n",
      "          'nthen': 2,\n",
      "          'theres': 2,\n",
      "          'features': 2,\n",
      "          'orgies': 2,\n",
      "          'clear': 2,\n",
      "          'show': 2,\n",
      "          'lavish': 2,\n",
      "          'sets': 2,\n",
      "          '2': 2,\n",
      "          '12': 2,\n",
      "          'running': 2,\n",
      "          'penthouse': 2,\n",
      "          'dramatic': 2,\n",
      "          'accurate': 2,\n",
      "          'entertaining': 2,\n",
      "          'disgusting': 2,\n",
      "          'content': 2,\n",
      "          'never': 2,\n",
      "          'thats': 2,\n",
      "          'nothing': 2,\n",
      "          'bullshit': 2,\n",
      "          'without': 2,\n",
      "          'name': 2,\n",
      "          'decadent': 2,\n",
      "          'came': 2,\n",
      "          'though': 2,\n",
      "          'image': 2,\n",
      "          'screen': 2,\n",
      "          'using': 2,\n",
      "          'sister': 2,\n",
      "          'lose': 2,\n",
      "          'else': 2,\n",
      "          'line': 2,\n",
      "          'throne': 2,\n",
      "          'cant': 2,\n",
      "          'tiberius': 2,\n",
      "          'peter': 2,\n",
      "          'abuses': 2,\n",
      "          'position': 2,\n",
      "          'helen': 2,\n",
      "          'mirren': 2,\n",
      "          'doesnt': 2,\n",
      "          'hop': 2,\n",
      "          'believe': 2,\n",
      "          'killed': 2,\n",
      "          'life': 2,\n",
      "          'nudity': 2,\n",
      "          'like': 2,\n",
      "          'isnt': 2,\n",
      "          'sex': 2,\n",
      "          'shit': 2,\n",
      "          'blatantly': 2,\n",
      "          'mean': 2,\n",
      "          'orgy': 2,\n",
      "          'use': 2,\n",
      "          'felt': 2,\n",
      "          'wonder': 2,\n",
      "          'making': 2,\n",
      "          'camera': 2,\n",
      "          'scenes': 2,\n",
      "          'nthere': 2,\n",
      "          'gore': 2,\n",
      "          'say': 2,\n",
      "          'last': 2,\n",
      "          'would': 2,\n",
      "          'im': 2,\n",
      "          'kill': 2,\n",
      "          'agent': 2,\n",
      "          'away': 2,\n",
      "          'ntheres': 2,\n",
      "          'kind': 2,\n",
      "          'total': 2,\n",
      "          'cult': 2,\n",
      "          'nthat': 2,\n",
      "          'way': 2,\n",
      "          'friend': 1,\n",
      "          'school': 1,\n",
      "          'minutelong': 1,\n",
      "          'classes': 1,\n",
      "          'includes': 1,\n",
      "          'staged': 1,\n",
      "          'guys': 1,\n",
      "          'shadow': 1,\n",
      "          'incident': 1,\n",
      "          'banana': 1,\n",
      "          'instrument': 1,\n",
      "          'penetration': 1,\n",
      "          'nas': 1,\n",
      "          'sick': 1,\n",
      "          'watching': 1,\n",
      "          'admittingly': 1,\n",
      "          'witnessed': 1,\n",
      "          'nsure': 1,\n",
      "          'riotously': 1,\n",
      "          'amusing': 1,\n",
      "          'rest': 1,\n",
      "          'nthis': 1,\n",
      "          'incest': 1,\n",
      "          'necrophilia': 1,\n",
      "          'beastuality': 1,\n",
      "          'homosexual': 1,\n",
      "          'felatio': 1,\n",
      "          'sexes': 1,\n",
      "          'elaborate': 1,\n",
      "          'lengthy': 1,\n",
      "          'greasedup': 1,\n",
      "          'fist': 1,\n",
      "          'forced': 1,\n",
      "          'mans': 1,\n",
      "          'rear': 1,\n",
      "          'wine': 1,\n",
      "          'poured': 1,\n",
      "          'whos': 1,\n",
      "          'urinary': 1,\n",
      "          'tracts': 1,\n",
      "          'tied': 1,\n",
      "          'penis': 1,\n",
      "          'chopped': 1,\n",
      "          'fed': 1,\n",
      "          'hungry': 1,\n",
      "          'dogs': 1,\n",
      "          'respectable': 1,\n",
      "          'following': 1,\n",
      "          'occurred': 1,\n",
      "          'events': 1,\n",
      "          'graphically': 1,\n",
      "          'view': 1,\n",
      "          'b': 1,\n",
      "          'tone': 1,\n",
      "          'trying': 1,\n",
      "          'shock': 1,\n",
      "          'comically': 1,\n",
      "          'c': 1,\n",
      "          '20': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'production': 1,\n",
      "          'rather': 1,\n",
      "          'impressive': 1,\n",
      "          'cast': 1,\n",
      "          'whopping': 1,\n",
      "          'nproduced': 1,\n",
      "          'funded': 1,\n",
      "          'none': 1,\n",
      "          'bob': 1,\n",
      "          'owner': 1,\n",
      "          'magazine': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'picture': 1,\n",
      "          'plan': 1,\n",
      "          '9': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'underneath': 1,\n",
      "          'sense': 1,\n",
      "          'justified': 1,\n",
      "          'brilliantly': 1,\n",
      "          'nafter': 1,\n",
      "          'aforementioned': 1,\n",
      "          'actually': 1,\n",
      "          'believes': 1,\n",
      "          'weaponry': 1,\n",
      "          'nno': 1,\n",
      "          'discarded': 1,\n",
      "          'old': 1,\n",
      "          'cliche': 1,\n",
      "          'goes': 1,\n",
      "          'nthose': 1,\n",
      "          'bash': 1,\n",
      "          'glancing': 1,\n",
      "          'biggest': 1,\n",
      "          'obvious': 1,\n",
      "          'problem': 1,\n",
      "          'overdramaticized': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'second': 1,\n",
      "          'credibility': 1,\n",
      "          'mammoth': 1,\n",
      "          'n': 1,\n",
      "          'allegedly': 1,\n",
      "          'tells': 1,\n",
      "          'true': 1,\n",
      "          'story': 1,\n",
      "          'evil': 1,\n",
      "          'insanely': 1,\n",
      "          'assasination': 1,\n",
      "          'blessing': 1,\n",
      "          'nso': 1,\n",
      "          'guess': 1,\n",
      "          'almost': 1,\n",
      "          'assasinated': 1,\n",
      "          'much': 1,\n",
      "          'reasons': 1,\n",
      "          'opens': 1,\n",
      "          'wrong': 1,\n",
      "          'note': 1,\n",
      "          'course': 1,\n",
      "          'quote': 1,\n",
      "          'mark': 1,\n",
      "          'appearing': 1,\n",
      "          'graces': 1,\n",
      "          'overused': 1,\n",
      "          'passage': 1,\n",
      "          'shall': 1,\n",
      "          'profit': 1,\n",
      "          'gain': 1,\n",
      "          'whole': 1,\n",
      "          'world': 1,\n",
      "          'dlose': 1,\n",
      "          'depite': 1,\n",
      "          'opening': 1,\n",
      "          'fucking': 1,\n",
      "          'field': 1,\n",
      "          'suppose': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'plot': 1,\n",
      "          'incomprehensibly': 1,\n",
      "          'disastrously': 1,\n",
      "          'played': 1,\n",
      "          'malcom': 1,\n",
      "          'mcdowell': 1,\n",
      "          'opposite': 1,\n",
      "          'clockwork': 1,\n",
      "          'orange': 1,\n",
      "          'next': 1,\n",
      "          'wait': 1,\n",
      "          'current': 1,\n",
      "          'toole': 1,\n",
      "          'ditto': 1,\n",
      "          'lawrence': 1,\n",
      "          'arabia': 1,\n",
      "          'grandfather': 1,\n",
      "          'die': 1,\n",
      "          'kills': 1,\n",
      "          'ascends': 1,\n",
      "          'marries': 1,\n",
      "          'woman': 1,\n",
      "          'retains': 1,\n",
      "          'dignity': 1,\n",
      "          'actor': 1,\n",
      "          'exactly': 1,\n",
      "          'acting': 1,\n",
      "          'sleep': 1,\n",
      "          'dreadful': 1,\n",
      "          'teresa': 1,\n",
      "          'ann': 1,\n",
      "          'savoy': 1,\n",
      "          'pretty': 1,\n",
      "          'naked': 1,\n",
      "          'willing': 1,\n",
      "          'sack': 1,\n",
      "          'mac': 1,\n",
      "          'asks': 1,\n",
      "          'invades': 1,\n",
      "          'england': 1,\n",
      "          'filler': 1,\n",
      "          'recounting': 1,\n",
      "          'supposed': 1,\n",
      "          'claims': 1,\n",
      "          'ultimate': 1,\n",
      "          'portrait': 1,\n",
      "          'pagan': 1,\n",
      "          'rome': 1,\n",
      "          'complete': 1,\n",
      "          'vicious': 1,\n",
      "          'deaths': 1,\n",
      "          'lots': 1,\n",
      "          'wants': 1,\n",
      "          'becomes': 1,\n",
      "          'gucciones': 1,\n",
      "          'twisted': 1,\n",
      "          'masturbatory': 1,\n",
      "          'noh': 1,\n",
      "          'loved': 1,\n",
      "          'people': 1,\n",
      "          'disgustingly': 1,\n",
      "          'wouldnt': 1,\n",
      "          'couple': 1,\n",
      "          'bucks': 1,\n",
      "          'selling': 1,\n",
      "          'porn': 1,\n",
      "          'completely': 1,\n",
      "          'convinced': 1,\n",
      "          'ni': 1,\n",
      "          'spend': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'examining': 1,\n",
      "          'facet': 1,\n",
      "          'makes': 1,\n",
      "          'vile': 1,\n",
      "          'whatever': 1,\n",
      "          'adjective': 1,\n",
      "          'want': 1,\n",
      "          'describe': 1,\n",
      "          'feel': 1,\n",
      "          'sloppiest': 1,\n",
      "          'expensive': 1,\n",
      "          'movie': 1,\n",
      "          'innacurate': 1,\n",
      "          'historian': 1,\n",
      "          'wanting': 1,\n",
      "          'explains': 1,\n",
      "          'matter': 1,\n",
      "          'cinematography': 1,\n",
      "          'light': 1,\n",
      "          'meter': 1,\n",
      "          'ugly': 1,\n",
      "          'plain': 1,\n",
      "          'operation': 1,\n",
      "          'worst': 1,\n",
      "          'seen': 1,\n",
      "          'nnot': 1,\n",
      "          'hold': 1,\n",
      "          'record': 1,\n",
      "          'unnecessary': 1,\n",
      "          'zooms': 1,\n",
      "          'often': 1,\n",
      "          'subjects': 1,\n",
      "          'pan': 1,\n",
      "          'till': 1,\n",
      "          'find': 1,\n",
      "          'focus': 1,\n",
      "          'editing': 1,\n",
      "          'sloppy': 1,\n",
      "          'absolutely': 1,\n",
      "          'impossible': 1,\n",
      "          'follow': 1,\n",
      "          'writer': 1,\n",
      "          'speak': 1,\n",
      "          'adapted': 1,\n",
      "          'original': 1,\n",
      "          'screenplay': 1,\n",
      "          'vidal': 1,\n",
      "          'nevertheless': 1,\n",
      "          'dialogue': 1,\n",
      "          'laughably': 1,\n",
      "          'faith': 1,\n",
      "          'iq': 1,\n",
      "          '5': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'favorite': 1,\n",
      "          'inquires': 1,\n",
      "          'doctor': 1,\n",
      "          'health': 1,\n",
      "          'dying': 1,\n",
      "          'go': 1,\n",
      "          'moment': 1,\n",
      "          'care': 1,\n",
      "          'year': 1,\n",
      "          'music': 1,\n",
      "          'mostly': 1,\n",
      "          'prokofiev': 1,\n",
      "          'khachaturian': 1,\n",
      "          'gorgeous': 1,\n",
      "          'adagio': 1,\n",
      "          'spartacus': 1,\n",
      "          'phrygia': 1,\n",
      "          'ad': 1,\n",
      "          'nauseum': 1,\n",
      "          'attempt': 1,\n",
      "          'give': 1,\n",
      "          'emotion': 1,\n",
      "          'feels': 1,\n",
      "          'shipped': 1,\n",
      "          'elsewhere': 1,\n",
      "          'infamous': 1,\n",
      "          'lesbo': 1,\n",
      "          'pets': 1,\n",
      "          'lori': 1,\n",
      "          'wagner': 1,\n",
      "          'aneeka': 1,\n",
      "          'dilorenzo': 1,\n",
      "          'result': 1,\n",
      "          'reshoots': 1,\n",
      "          'obviously': 1,\n",
      "          'removed': 1,\n",
      "          'adds': 1,\n",
      "          'embrassment': 1,\n",
      "          'five': 1,\n",
      "          'seconds': 1,\n",
      "          'cuts': 1,\n",
      "          'random': 1,\n",
      "          'afraid': 1,\n",
      "          'audience': 1,\n",
      "          'forget': 1,\n",
      "          'rated': 1,\n",
      "          'x': 1,\n",
      "          'njohn': 1,\n",
      "          'gielgud': 1,\n",
      "          'represents': 1,\n",
      "          'voice': 1,\n",
      "          'sanity': 1,\n",
      "          'walking': 1,\n",
      "          'brief': 1,\n",
      "          'role': 1,\n",
      "          'constantly': 1,\n",
      "          'mantra': 1,\n",
      "          'hours': 1,\n",
      "          'exciting': 1,\n",
      "          'enriching': 1,\n",
      "          'three': 1,\n",
      "          'college': 1,\n",
      "          'lecture': 1,\n",
      "          'class': 1,\n",
      "          'twice': 1,\n",
      "          'deliriously': 1,\n",
      "          'annoying': 1,\n",
      "          'nguccione': 1,\n",
      "          'pursuit': 1,\n",
      "          'painstaking': 1,\n",
      "          'arduous': 1,\n",
      "          'task': 1,\n",
      "          'watch': 1,\n",
      "          'entirety': 1,\n",
      "          'doubt': 1,\n",
      "          'sit': 1,\n",
      "          'irreversible': 1,\n",
      "          'psychological': 1,\n",
      "          'damage': 1,\n",
      "          'nthroughout': 1,\n",
      "          'presence': 1,\n",
      "          'easily': 1,\n",
      "          'standing': 1,\n",
      "          'edge': 1,\n",
      "          'pretentiously': 1,\n",
      "          'looking': 1,\n",
      "          'upon': 1,\n",
      "          'us': 1,\n",
      "          'saying': 1,\n",
      "          'look': 1,\n",
      "          'dont': 1,\n",
      "          'youre': 1,\n",
      "          'prig': 1,\n",
      "          'worse': 1,\n",
      "          'know': 1,\n",
      "          'history': 1,\n",
      "          'nuh': 1,\n",
      "          'huh': 1,\n",
      "          'difference': 1,\n",
      "          'artistically': 1,\n",
      "          'na': 1,\n",
      "          'showed': 1,\n",
      "          'decadence': 1,\n",
      "          'perhaps': 1,\n",
      "          'liberating': 1,\n",
      "          'probably': 1,\n",
      "          'licence': 1,\n",
      "          'disgustingfordisgustingnesssake': 1,\n",
      "          'acts': 1,\n",
      "          'makers': 1,\n",
      "          'lost': 1,\n",
      "          'touch': 1,\n",
      "          'either': 1,\n",
      "          'entertainment': 1,\n",
      "          'eroticism': 1,\n",
      "          'developed': 1,\n",
      "          'pathetic': 1,\n",
      "          'sadistic': 1,\n",
      "          'judging': 1,\n",
      "          '1989': 1,\n",
      "          'called': 1,\n",
      "          'cook': 1,\n",
      "          'thief': 1,\n",
      "          'wife': 1,\n",
      "          'lover': 1,\n",
      "          'magnifcent': 1,\n",
      "          'legendary': 1,\n",
      "          'director': 1,\n",
      "          'greenaway': 1,\n",
      "          'starring': 1,\n",
      "          'deals': 1,\n",
      "          'graphic': 1,\n",
      "          'heartstopping': 1,\n",
      "          'violence': 1,\n",
      "          'cannibalism': 1,\n",
      "          'measure': 1,\n",
      "          'patronized': 1,\n",
      "          'viewers': 1,\n",
      "          'handled': 1,\n",
      "          'shocking': 1,\n",
      "          'yes': 1,\n",
      "          'bizarre': 1,\n",
      "          'totally': 1,\n",
      "          'involving': 1,\n",
      "          'characters': 1,\n",
      "          'situation': 1,\n",
      "          'best': 1,\n",
      "          'passion': 1,\n",
      "          'right': 1,\n",
      "          'amount': 1,\n",
      "          'restraint': 1,\n",
      "          'many': 1,\n",
      "          'achieved': 1,\n",
      "          'wanted': 1,\n",
      "          'retained': 1,\n",
      "          'status': 1,\n",
      "          'films': 1,\n",
      "          'popular': 1,\n",
      "          'actualy': 1,\n",
      "          'might': 1,\n",
      "          'alas': 1,\n",
      "          'wasnt': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'like': 9,\n",
      "          'get': 8,\n",
      "          'film': 8,\n",
      "          'story': 7,\n",
      "          'seems': 6,\n",
      "          'characters': 6,\n",
      "          'would': 5,\n",
      "          'mcquarrie': 4,\n",
      "          'way': 4,\n",
      "          'little': 4,\n",
      "          'going': 4,\n",
      "          'nthe': 4,\n",
      "          'two': 4,\n",
      "          'gun': 3,\n",
      "          'first': 3,\n",
      "          'much': 3,\n",
      "          'great': 3,\n",
      "          'confusing': 3,\n",
      "          'really': 3,\n",
      "          'either': 3,\n",
      "          'played': 3,\n",
      "          'del': 3,\n",
      "          'toro': 3,\n",
      "          'nthey': 3,\n",
      "          'exec': 3,\n",
      "          'cant': 3,\n",
      "          'make': 3,\n",
      "          'even': 3,\n",
      "          'know': 3,\n",
      "          'one': 3,\n",
      "          'scene': 3,\n",
      "          'phillipe': 3,\n",
      "          'lot': 3,\n",
      "          'back': 2,\n",
      "          'crime': 2,\n",
      "          'movies': 2,\n",
      "          'nthat': 2,\n",
      "          'comes': 2,\n",
      "          'looks': 2,\n",
      "          'doesnt': 2,\n",
      "          'nits': 2,\n",
      "          'world': 2,\n",
      "          'simple': 2,\n",
      "          'something': 2,\n",
      "          'come': 2,\n",
      "          'surprise': 2,\n",
      "          'anyone': 2,\n",
      "          'idea': 2,\n",
      "          'nwith': 2,\n",
      "          'time': 2,\n",
      "          'guy': 2,\n",
      "          'wife': 2,\n",
      "          'mother': 2,\n",
      "          'goons': 2,\n",
      "          'bag': 2,\n",
      "          'man': 2,\n",
      "          'hes': 2,\n",
      "          'money': 2,\n",
      "          'kidnappers': 2,\n",
      "          'right': 2,\n",
      "          'good': 2,\n",
      "          'movie': 2,\n",
      "          'reality': 2,\n",
      "          'criminal': 2,\n",
      "          'theyre': 2,\n",
      "          'sketches': 2,\n",
      "          'appeal': 2,\n",
      "          'street': 2,\n",
      "          'mercedes': 2,\n",
      "          'car': 2,\n",
      "          'owner': 2,\n",
      "          'away': 2,\n",
      "          'dont': 2,\n",
      "          'guns': 2,\n",
      "          'mob': 2,\n",
      "          'ntheres': 2,\n",
      "          'understand': 2,\n",
      "          'black': 2,\n",
      "          'comedy': 2,\n",
      "          'see': 2,\n",
      "          'someone': 2,\n",
      "          'want': 2,\n",
      "          'remember': 1,\n",
      "          'mid': 1,\n",
      "          '1990s': 1,\n",
      "          'macabre': 1,\n",
      "          'rage': 1,\n",
      "          'n': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'fargo': 1,\n",
      "          'managed': 1,\n",
      "          'oscar': 1,\n",
      "          'nominations': 1,\n",
      "          'best': 1,\n",
      "          'picture': 1,\n",
      "          'surprisingly': 1,\n",
      "          'slew': 1,\n",
      "          'ripoffs': 1,\n",
      "          'followed': 1,\n",
      "          'years': 1,\n",
      "          'thereafter': 1,\n",
      "          'fad': 1,\n",
      "          'christopher': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'glance': 1,\n",
      "          'another': 1,\n",
      "          'wannabes': 1,\n",
      "          'upon': 1,\n",
      "          'closer': 1,\n",
      "          'inspection': 1,\n",
      "          'look': 1,\n",
      "          'anything': 1,\n",
      "          'comprehendable': 1,\n",
      "          'wrapped': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'atmosphere': 1,\n",
      "          'wont': 1,\n",
      "          'allow': 1,\n",
      "          'room': 1,\n",
      "          'expand': 1,\n",
      "          'outside': 1,\n",
      "          'handful': 1,\n",
      "          'somehow': 1,\n",
      "          'still': 1,\n",
      "          'manages': 1,\n",
      "          'turn': 1,\n",
      "          'premise': 1,\n",
      "          'complex': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ncomplexity': 1,\n",
      "          'whos': 1,\n",
      "          'familiar': 1,\n",
      "          'wrote': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'become': 1,\n",
      "          'cult': 1,\n",
      "          'favorite': 1,\n",
      "          'despite': 1,\n",
      "          'critical': 1,\n",
      "          'acclaim': 1,\n",
      "          'well': 1,\n",
      "          'directed': 1,\n",
      "          'elaborate': 1,\n",
      "          'screenplay': 1,\n",
      "          'leaves': 1,\n",
      "          'many': 1,\n",
      "          'viewers': 1,\n",
      "          'scratching': 1,\n",
      "          'heads': 1,\n",
      "          'repeated': 1,\n",
      "          'viewings': 1,\n",
      "          'nyou': 1,\n",
      "          'wonder': 1,\n",
      "          'everything': 1,\n",
      "          'mapped': 1,\n",
      "          'hollywood': 1,\n",
      "          'criminals': 1,\n",
      "          'cops': 1,\n",
      "          'makes': 1,\n",
      "          'fascinating': 1,\n",
      "          'capitalizing': 1,\n",
      "          'far': 1,\n",
      "          'less': 1,\n",
      "          'commercial': 1,\n",
      "          'shame': 1,\n",
      "          'maybe': 1,\n",
      "          'helped': 1,\n",
      "          'tells': 1,\n",
      "          'drifters': 1,\n",
      "          'ambition': 1,\n",
      "          'barely': 1,\n",
      "          'reason': 1,\n",
      "          'live': 1,\n",
      "          'arent': 1,\n",
      "          'hellbent': 1,\n",
      "          'death': 1,\n",
      "          'ryan': 1,\n",
      "          'phillipie': 1,\n",
      "          'benecio': 1,\n",
      "          'lucky': 1,\n",
      "          'hear': 1,\n",
      "          'scheme': 1,\n",
      "          'bigshot': 1,\n",
      "          'trophy': 1,\n",
      "          'baby': 1,\n",
      "          'vitro': 1,\n",
      "          'fertilization': 1,\n",
      "          'figure': 1,\n",
      "          'kidnap': 1,\n",
      "          'surrogate': 1,\n",
      "          'juliette': 1,\n",
      "          'lewis': 1,\n",
      "          'nice': 1,\n",
      "          'ransom': 1,\n",
      "          'nalong': 1,\n",
      "          'continually': 1,\n",
      "          'learn': 1,\n",
      "          'shady': 1,\n",
      "          'dealings': 1,\n",
      "          'hired': 1,\n",
      "          'james': 1,\n",
      "          'caan': 1,\n",
      "          'actor': 1,\n",
      "          'knows': 1,\n",
      "          'kind': 1,\n",
      "          'launderer': 1,\n",
      "          'obviously': 1,\n",
      "          'call': 1,\n",
      "          'authorities': 1,\n",
      "          'help': 1,\n",
      "          'nhis': 1,\n",
      "          'trail': 1,\n",
      "          'different': 1,\n",
      "          'offers': 1,\n",
      "          'execs': 1,\n",
      "          'son': 1,\n",
      "          'doctor': 1,\n",
      "          'also': 1,\n",
      "          'gets': 1,\n",
      "          'pulled': 1,\n",
      "          'fray': 1,\n",
      "          'wants': 1,\n",
      "          'sure': 1,\n",
      "          'patient': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'hidden': 1,\n",
      "          'collective': 1,\n",
      "          'sleeves': 1,\n",
      "          'doublecrosses': 1,\n",
      "          'secret': 1,\n",
      "          'love': 1,\n",
      "          'affairs': 1,\n",
      "          'torrid': 1,\n",
      "          'pasts': 1,\n",
      "          'though': 1,\n",
      "          'relevance': 1,\n",
      "          'nmcquarrie': 1,\n",
      "          'meaning': 1,\n",
      "          'word': 1,\n",
      "          'nhe': 1,\n",
      "          'interested': 1,\n",
      "          'showing': 1,\n",
      "          'us': 1,\n",
      "          'clever': 1,\n",
      "          'making': 1,\n",
      "          'neverything': 1,\n",
      "          'complicated': 1,\n",
      "          'point': 1,\n",
      "          'surrealism': 1,\n",
      "          'nnothing': 1,\n",
      "          'dropped': 1,\n",
      "          'middle': 1,\n",
      "          'expected': 1,\n",
      "          'industrys': 1,\n",
      "          'rules': 1,\n",
      "          'regulations': 1,\n",
      "          'nevery': 1,\n",
      "          'caans': 1,\n",
      "          'character': 1,\n",
      "          'exemplifies': 1,\n",
      "          'perfectly': 1,\n",
      "          'already': 1,\n",
      "          'chat': 1,\n",
      "          'getting': 1,\n",
      "          'conversations': 1,\n",
      "          'business': 1,\n",
      "          'works': 1,\n",
      "          'hardly': 1,\n",
      "          'given': 1,\n",
      "          'clue': 1,\n",
      "          'talking': 1,\n",
      "          'nthese': 1,\n",
      "          'probably': 1,\n",
      "          'supposed': 1,\n",
      "          'ideas': 1,\n",
      "          'rippedoff': 1,\n",
      "          'found': 1,\n",
      "          'david': 1,\n",
      "          'mamets': 1,\n",
      "          'trash': 1,\n",
      "          'nno': 1,\n",
      "          'acts': 1,\n",
      "          'real': 1,\n",
      "          'person': 1,\n",
      "          'removed': 1,\n",
      "          'dream': 1,\n",
      "          'without': 1,\n",
      "          'ntake': 1,\n",
      "          'opening': 1,\n",
      "          'example': 1,\n",
      "          'parking': 1,\n",
      "          'across': 1,\n",
      "          'bar': 1,\n",
      "          'club': 1,\n",
      "          'counting': 1,\n",
      "          'stuff': 1,\n",
      "          'sit': 1,\n",
      "          'brandnew': 1,\n",
      "          'alarm': 1,\n",
      "          'goes': 1,\n",
      "          'waiting': 1,\n",
      "          'line': 1,\n",
      "          'yells': 1,\n",
      "          'move': 1,\n",
      "          'loudmouth': 1,\n",
      "          'pottymouth': 1,\n",
      "          'girlfriend': 1,\n",
      "          '20': 1,\n",
      "          'people': 1,\n",
      "          'cross': 1,\n",
      "          'gang': 1,\n",
      "          'nyoud': 1,\n",
      "          'think': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'pull': 1,\n",
      "          'scare': 1,\n",
      "          'instead': 1,\n",
      "          'throws': 1,\n",
      "          'punch': 1,\n",
      "          'beat': 1,\n",
      "          'things': 1,\n",
      "          'didnt': 1,\n",
      "          'isnt': 1,\n",
      "          'yuppie': 1,\n",
      "          'old': 1,\n",
      "          'rich': 1,\n",
      "          'snob': 1,\n",
      "          'hippie': 1,\n",
      "          'straight': 1,\n",
      "          '60s': 1,\n",
      "          'nsecondly': 1,\n",
      "          'main': 1,\n",
      "          'seem': 1,\n",
      "          'believe': 1,\n",
      "          'actually': 1,\n",
      "          'take': 1,\n",
      "          'unarmed': 1,\n",
      "          'nlastly': 1,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'long': 1,\n",
      "          'run': 1,\n",
      "          'later': 1,\n",
      "          'packing': 1,\n",
      "          'artillery': 1,\n",
      "          'small': 1,\n",
      "          'countrys': 1,\n",
      "          'army': 1,\n",
      "          'nif': 1,\n",
      "          'suicidal': 1,\n",
      "          'wouldnt': 1,\n",
      "          'gone': 1,\n",
      "          'kidnapping': 1,\n",
      "          'job': 1,\n",
      "          'place': 1,\n",
      "          'never': 1,\n",
      "          'explained': 1,\n",
      "          'could': 1,\n",
      "          'pick': 1,\n",
      "          'apart': 1,\n",
      "          'exercise': 1,\n",
      "          'futility': 1,\n",
      "          'nwhat': 1,\n",
      "          'nothing': 1,\n",
      "          'pretty': 1,\n",
      "          'nabsolutely': 1,\n",
      "          'none': 1,\n",
      "          'likable': 1,\n",
      "          'believable': 1,\n",
      "          'nand': 1,\n",
      "          'coated': 1,\n",
      "          'thin': 1,\n",
      "          'layer': 1,\n",
      "          'chuckle': 1,\n",
      "          'definitely': 1,\n",
      "          'flatout': 1,\n",
      "          'use': 1,\n",
      "          'desperate': 1,\n",
      "          'attempt': 1,\n",
      "          'kill': 1,\n",
      "          'screen': 1,\n",
      "          'whether': 1,\n",
      "          'least': 1,\n",
      "          'ni': 1,\n",
      "          'say': 1,\n",
      "          'imagine': 1,\n",
      "          'intelligently': 1,\n",
      "          'defending': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'_dirty_work_': 4,\n",
      "          'one': 4,\n",
      "          'film': 4,\n",
      "          'macdonald': 3,\n",
      "          'sam': 3,\n",
      "          'rather': 3,\n",
      "          'taste': 3,\n",
      "          'much': 3,\n",
      "          'funny': 3,\n",
      "          'nthe': 3,\n",
      "          'premise': 2,\n",
      "          'weaver': 2,\n",
      "          'nbut': 2,\n",
      "          'goes': 2,\n",
      "          'mitch': 2,\n",
      "          'good': 2,\n",
      "          'nso': 2,\n",
      "          'business': 2,\n",
      "          'called': 2,\n",
      "          'work': 2,\n",
      "          'give': 2,\n",
      "          'sams': 2,\n",
      "          'nastiness': 2,\n",
      "          'isnt': 2,\n",
      "          'bob': 2,\n",
      "          'saget': 2,\n",
      "          'nhe': 2,\n",
      "          'screen': 2,\n",
      "          'running': 2,\n",
      "          'moments': 2,\n",
      "          'involved': 2,\n",
      "          'production': 2,\n",
      "          'amusement': 2,\n",
      "          'deliciously': 1,\n",
      "          'meanspirited': 1,\n",
      "          'potential': 1,\n",
      "          'nmitch': 1,\n",
      "          'norm': 1,\n",
      "          'lifelong': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'mckenna': 1,\n",
      "          'artie': 1,\n",
      "          'lange': 1,\n",
      "          'losers': 1,\n",
      "          'life': 1,\n",
      "          'constantly': 1,\n",
      "          'picked': 1,\n",
      "          'school': 1,\n",
      "          'hold': 1,\n",
      "          'regular': 1,\n",
      "          'jobs': 1,\n",
      "          'trailer': 1,\n",
      "          'thing': 1,\n",
      "          'atrevenge': 1,\n",
      "          'parlay': 1,\n",
      "          'unmatched': 1,\n",
      "          'skill': 1,\n",
      "          'gettingeven': 1,\n",
      "          'schemes': 1,\n",
      "          'marketable': 1,\n",
      "          'revengeforhire': 1,\n",
      "          'dirty': 1,\n",
      "          'inc': 1,\n",
      "          'nthis': 1,\n",
      "          'groundwork': 1,\n",
      "          'wonderfully': 1,\n",
      "          'wicked': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'ensues': 1,\n",
      "          'clean': 1,\n",
      "          'spirit': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'makes': 1,\n",
      "          'start': 1,\n",
      "          'giddy': 1,\n",
      "          'desire': 1,\n",
      "          'bullies': 1,\n",
      "          'medicine': 1,\n",
      "          'sappy': 1,\n",
      "          'reason': 1,\n",
      "          'father': 1,\n",
      "          'jack': 1,\n",
      "          'warden': 1,\n",
      "          'needs': 1,\n",
      "          'heart': 1,\n",
      "          'transplant': 1,\n",
      "          'order': 1,\n",
      "          'move': 1,\n",
      "          'top': 1,\n",
      "          'recipient': 1,\n",
      "          'list': 1,\n",
      "          'compulsively': 1,\n",
      "          'betting': 1,\n",
      "          'doctor': 1,\n",
      "          'chevy': 1,\n",
      "          'chase': 1,\n",
      "          'asks': 1,\n",
      "          'guys': 1,\n",
      "          '50': 1,\n",
      "          '000': 1,\n",
      "          'pay': 1,\n",
      "          'bookie': 1,\n",
      "          'scheming': 1,\n",
      "          'beneath': 1,\n",
      "          'every': 1,\n",
      "          'underhanded': 1,\n",
      "          'plot': 1,\n",
      "          'isgasp': 1,\n",
      "          'nheart': 1,\n",
      "          'undercuts': 1,\n",
      "          'inherent': 1,\n",
      "          'nnot': 1,\n",
      "          'lot': 1,\n",
      "          'displaythere': 1,\n",
      "          'different': 1,\n",
      "          'sort': 1,\n",
      "          'nthere': 1,\n",
      "          'frequent': 1,\n",
      "          'sexual': 1,\n",
      "          'references': 1,\n",
      "          'prominently': 1,\n",
      "          'form': 1,\n",
      "          'prostitutes': 1,\n",
      "          'impotent': 1,\n",
      "          'fathers': 1,\n",
      "          'ongoing': 1,\n",
      "          'lust': 1,\n",
      "          'nand': 1,\n",
      "          'rated': 1,\n",
      "          'pg13': 1,\n",
      "          'director': 1,\n",
      "          'yes': 1,\n",
      "          '_full_house_': 1,\n",
      "          '_americas_funniest_home_videos_': 1,\n",
      "          'fame': 1,\n",
      "          'writers': 1,\n",
      "          'frank': 1,\n",
      "          'sebastiano': 1,\n",
      "          'fred': 1,\n",
      "          'wolf': 1,\n",
      "          'stretch': 1,\n",
      "          'boundaries': 1,\n",
      "          'fararguably': 1,\n",
      "          'bit': 1,\n",
      "          'two': 1,\n",
      "          'separate': 1,\n",
      "          'instances': 1,\n",
      "          'sodomy': 1,\n",
      "          'animals': 1,\n",
      "          'really': 1,\n",
      "          'necessary': 1,\n",
      "          'issue': 1,\n",
      "          'course': 1,\n",
      "          'humoras': 1,\n",
      "          'answer': 1,\n",
      "          'resounding': 1,\n",
      "          'nits': 1,\n",
      "          'guy': 1,\n",
      "          'consistently': 1,\n",
      "          'performers': 1,\n",
      "          '_saturday_night_live_': 1,\n",
      "          'muchtalkedabout': 1,\n",
      "          'firing': 1,\n",
      "          'dry': 1,\n",
      "          'brand': 1,\n",
      "          'smartass': 1,\n",
      "          'wit': 1,\n",
      "          'translates': 1,\n",
      "          'well': 1,\n",
      "          'big': 1,\n",
      "          'also': 1,\n",
      "          'doesnt': 1,\n",
      "          'hurt': 1,\n",
      "          'hes': 1,\n",
      "          'natural': 1,\n",
      "          'likable': 1,\n",
      "          'presence': 1,\n",
      "          'able': 1,\n",
      "          'lines': 1,\n",
      "          'nice': 1,\n",
      "          'acid': 1,\n",
      "          'touch': 1,\n",
      "          'part': 1,\n",
      "          'oneliners': 1,\n",
      "          'written': 1,\n",
      "          'flat': 1,\n",
      "          'broad': 1,\n",
      "          'slapstick': 1,\n",
      "          'gags': 1,\n",
      "          'dont': 1,\n",
      "          'gag': 1,\n",
      "          'literally': 1,\n",
      "          'tossed': 1,\n",
      "          'buildingsa': 1,\n",
      "          'real': 1,\n",
      "          'riot': 1,\n",
      "          'nstill': 1,\n",
      "          'macdonalds': 1,\n",
      "          'shining': 1,\n",
      "          'late': 1,\n",
      "          'chris': 1,\n",
      "          'farley': 1,\n",
      "          'hysterical': 1,\n",
      "          'ever': 1,\n",
      "          'amusing': 1,\n",
      "          'cameo': 1,\n",
      "          'role': 1,\n",
      "          'whole': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'amateurish': 1,\n",
      "          'seemingly': 1,\n",
      "          'free': 1,\n",
      "          'directorial': 1,\n",
      "          'guidance': 1,\n",
      "          'nsaget': 1,\n",
      "          'tries': 1,\n",
      "          'juice': 1,\n",
      "          'proceedings': 1,\n",
      "          'kitschy': 1,\n",
      "          'cameos': 1,\n",
      "          'gary': 1,\n",
      "          'coleman': 1,\n",
      "          'adam': 1,\n",
      "          'sandler': 1,\n",
      "          'john': 1,\n",
      "          'goodman': 1,\n",
      "          'minimal': 1,\n",
      "          'novelty': 1,\n",
      "          'value': 1,\n",
      "          'prevent': 1,\n",
      "          'sputtering': 1,\n",
      "          'end': 1,\n",
      "          'brief': 1,\n",
      "          '81minute': 1,\n",
      "          'time': 1,\n",
      "          'closes': 1,\n",
      "          'sad': 1,\n",
      "          'note': 1,\n",
      "          'desperation': 1,\n",
      "          'indulgent': 1,\n",
      "          'reel': 1,\n",
      "          'outtakes': 1,\n",
      "          'would': 1,\n",
      "          'derive': 1,\n",
      "          'ncome': 1,\n",
      "          'think': 1,\n",
      "          'imagine': 1,\n",
      "          'anyone': 1,\n",
      "          'find': 1,\n",
      "          'entirety': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'chucky': 4,\n",
      "          'one': 4,\n",
      "          'bride': 3,\n",
      "          'nothing': 3,\n",
      "          'new': 3,\n",
      "          'nthe': 3,\n",
      "          'even': 3,\n",
      "          'childs': 2,\n",
      "          'play': 2,\n",
      "          'rest': 2,\n",
      "          'make': 2,\n",
      "          'nbut': 2,\n",
      "          'scene': 2,\n",
      "          'americas': 1,\n",
      "          'favorite': 1,\n",
      "          'homicidal': 1,\n",
      "          'plaything': 1,\n",
      "          'takes': 1,\n",
      "          'wicked': 1,\n",
      "          'wife': 1,\n",
      "          'unholy': 1,\n",
      "          'matrimony': 1,\n",
      "          'something': 1,\n",
      "          'old': 1,\n",
      "          'burning': 1,\n",
      "          'question': 1,\n",
      "          'minds': 1,\n",
      "          'moviegoers': 1,\n",
      "          'however': 1,\n",
      "          'nuptial': 1,\n",
      "          'specifics': 1,\n",
      "          'movie': 1,\n",
      "          'stacks': 1,\n",
      "          'rather': 1,\n",
      "          'whether': 1,\n",
      "          'duo': 1,\n",
      "          'gets': 1,\n",
      "          'dirty': 1,\n",
      "          'bloodsoaked': 1,\n",
      "          'honeymoon': 1,\n",
      "          'answer': 1,\n",
      "          'sickandtwisted': 1,\n",
      "          'yes': 1,\n",
      "          'viewers': 1,\n",
      "          'treated': 1,\n",
      "          'shadowy': 1,\n",
      "          'glimpse': 1,\n",
      "          'hotenoughtomeltrubber': 1,\n",
      "          'least': 1,\n",
      "          'singe': 1,\n",
      "          'lovin': 1,\n",
      "          'nguess': 1,\n",
      "          'theyre': 1,\n",
      "          'anatomically': 1,\n",
      "          'correct': 1,\n",
      "          'nchucky': 1,\n",
      "          'voiced': 1,\n",
      "          'brad': 1,\n",
      "          'dourif': 1,\n",
      "          'course': 1,\n",
      "          'star': 1,\n",
      "          'series': 1,\n",
      "          'buddytype': 1,\n",
      "          'doll': 1,\n",
      "          'possessed': 1,\n",
      "          'spirit': 1,\n",
      "          'slain': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'nin': 1,\n",
      "          'plot': 1,\n",
      "          'heh': 1,\n",
      "          'picks': 1,\n",
      "          'girlfriend': 1,\n",
      "          'tiffany': 1,\n",
      "          'jennifer': 1,\n",
      "          'tilly': 1,\n",
      "          'resurrecting': 1,\n",
      "          'chuckys': 1,\n",
      "          'remains': 1,\n",
      "          'blown': 1,\n",
      "          'end': 1,\n",
      "          '3': 1,\n",
      "          'help': 1,\n",
      "          'black': 1,\n",
      "          'arts': 1,\n",
      "          'manual': 1,\n",
      "          'called': 1,\n",
      "          'voodoo': 1,\n",
      "          'dummies': 1,\n",
      "          'nsilly': 1,\n",
      "          'mortal': 1,\n",
      "          'nbefore': 1,\n",
      "          'long': 1,\n",
      "          'shes': 1,\n",
      "          'also': 1,\n",
      "          'reduced': 1,\n",
      "          'shinhigh': 1,\n",
      "          'figurine': 1,\n",
      "          'status': 1,\n",
      "          'plastic': 1,\n",
      "          'incarnations': 1,\n",
      "          'onetime': 1,\n",
      "          'lunatic': 1,\n",
      "          'lovebirds': 1,\n",
      "          'hit': 1,\n",
      "          'road': 1,\n",
      "          'scope': 1,\n",
      "          'potential': 1,\n",
      "          'human': 1,\n",
      "          'bodies': 1,\n",
      "          'rocky': 1,\n",
      "          'horror': 1,\n",
      "          'puppet': 1,\n",
      "          'show': 1,\n",
      "          'plays': 1,\n",
      "          'tiff': 1,\n",
      "          'chuckster': 1,\n",
      "          'stalk': 1,\n",
      "          'young': 1,\n",
      "          'couple': 1,\n",
      "          'nick': 1,\n",
      "          'stabile': 1,\n",
      "          'katherine': 1,\n",
      "          'heigl': 1,\n",
      "          'conjugal': 1,\n",
      "          'plans': 1,\n",
      "          'leading': 1,\n",
      "          'towards': 1,\n",
      "          'jersey': 1,\n",
      "          'grave': 1,\n",
      "          'magical': 1,\n",
      "          'soultransferring': 1,\n",
      "          'amulet': 1,\n",
      "          'allegedly': 1,\n",
      "          'lies': 1,\n",
      "          'wait': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'murderous': 1,\n",
      "          'barbie': 1,\n",
      "          'ken': 1,\n",
      "          'go': 1,\n",
      "          'postmarriage': 1,\n",
      "          'motions': 1,\n",
      "          'similar': 1,\n",
      "          'given': 1,\n",
      "          'pair': 1,\n",
      "          'newlyweds': 1,\n",
      "          'bicker': 1,\n",
      "          'argue': 1,\n",
      "          'kiss': 1,\n",
      "          'squabble': 1,\n",
      "          'whos': 1,\n",
      "          'going': 1,\n",
      "          'dishes': 1,\n",
      "          'watch': 1,\n",
      "          'nhey': 1,\n",
      "          'faux': 1,\n",
      "          'people': 1,\n",
      "          'got': 1,\n",
      "          'work': 1,\n",
      "          'problems': 1,\n",
      "          'ndirector': 1,\n",
      "          'ronny': 1,\n",
      "          'yu': 1,\n",
      "          'keeps': 1,\n",
      "          'mayhem': 1,\n",
      "          'flashy': 1,\n",
      "          'stages': 1,\n",
      "          'inventive': 1,\n",
      "          'two': 1,\n",
      "          'visual': 1,\n",
      "          'flair': 1,\n",
      "          'fact': 1,\n",
      "          'creepy': 1,\n",
      "          'kewpies': 1,\n",
      "          'neither': 1,\n",
      "          'scary': 1,\n",
      "          'menacing': 1,\n",
      "          'nwhen': 1,\n",
      "          'charges': 1,\n",
      "          'good': 1,\n",
      "          'forward': 1,\n",
      "          'punt': 1,\n",
      "          'couldnt': 1,\n",
      "          'take': 1,\n",
      "          'care': 1,\n",
      "          'nand': 1,\n",
      "          'climactic': 1,\n",
      "          'chase': 1,\n",
      "          'needed': 1,\n",
      "          'dimbulb': 1,\n",
      "          'protagonists': 1,\n",
      "          'must': 1,\n",
      "          '_pick_chucky_up_': 1,\n",
      "          'demonic': 1,\n",
      "          'toy': 1,\n",
      "          'force': 1,\n",
      "          'hostage': 1,\n",
      "          'run': 1,\n",
      "          'gunpoint': 1,\n",
      "          'nthrow': 1,\n",
      "          'silly': 1,\n",
      "          'casualties': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ending': 1,\n",
      "          'son': 1,\n",
      "          'next': 1,\n",
      "          'bizarrely': 1,\n",
      "          'bad': 1,\n",
      "          '89minutes': 1,\n",
      "          'movies': 1,\n",
      "          'nas': 1,\n",
      "          'thing': 1,\n",
      "          'post': 1,\n",
      "          'scream': 1,\n",
      "          'slasher': 1,\n",
      "          'cinema': 1,\n",
      "          'mancinis': 1,\n",
      "          'screenplay': 1,\n",
      "          'slathers': 1,\n",
      "          'injokes': 1,\n",
      "          'genreparody': 1,\n",
      "          'little': 1,\n",
      "          'humor': 1,\n",
      "          'succeeds': 1,\n",
      "          'proving': 1,\n",
      "          'selfreference': 1,\n",
      "          'completely': 1,\n",
      "          'worthless': 1,\n",
      "          'lacks': 1,\n",
      "          'bite': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'though': 1,\n",
      "          'autopilot': 1,\n",
      "          'quite': 1,\n",
      "          'right': 1,\n",
      "          'single': 1,\n",
      "          'misfired': 1,\n",
      "          'aspect': 1,\n",
      "          'film': 1,\n",
      "          'nsimilarly': 1,\n",
      "          'shaky': 1,\n",
      "          'acting': 1,\n",
      "          'ranges': 1,\n",
      "          'screeching': 1,\n",
      "          'camp': 1,\n",
      "          'boring': 1,\n",
      "          'bland': 1,\n",
      "          'effects': 1,\n",
      "          'arent': 1,\n",
      "          'special': 1,\n",
      "          'story': 1,\n",
      "          'big': 1,\n",
      "          'groaner': 1,\n",
      "          'nheres': 1,\n",
      "          'hoping': 1,\n",
      "          'entire': 1,\n",
      "          'clan': 1,\n",
      "          'past': 1,\n",
      "          'present': 1,\n",
      "          'future': 1,\n",
      "          'peace': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          '13th': 5,\n",
      "          'killer': 5,\n",
      "          'nthe': 4,\n",
      "          'friday': 4,\n",
      "          'first': 3,\n",
      "          'films': 3,\n",
      "          'like': 3,\n",
      "          'something': 3,\n",
      "          'unsuspecting': 3,\n",
      "          'film': 2,\n",
      "          'would': 2,\n",
      "          'series': 2,\n",
      "          'horror': 2,\n",
      "          'time': 2,\n",
      "          'na': 2,\n",
      "          'might': 2,\n",
      "          'watch': 2,\n",
      "          'everyones': 2,\n",
      "          'favorite': 2,\n",
      "          'maniac': 2,\n",
      "          'single': 2,\n",
      "          'start': 2,\n",
      "          'count': 2,\n",
      "          'plot': 2,\n",
      "          'many': 2,\n",
      "          'teenagers': 2,\n",
      "          'bloodthirsty': 2,\n",
      "          'usually': 2,\n",
      "          'get': 2,\n",
      "          'summer': 2,\n",
      "          'kids': 2,\n",
      "          'one': 2,\n",
      "          'say': 2,\n",
      "          'quality': 2,\n",
      "          'includes': 2,\n",
      "          'nif': 2,\n",
      "          'used': 2,\n",
      "          'really': 2,\n",
      "          'taking': 2,\n",
      "          'pride': 2,\n",
      "          'work': 2,\n",
      "          'murder': 2,\n",
      "          'fun': 2,\n",
      "          'sit': 2,\n",
      "          'become': 1,\n",
      "          'successful': 1,\n",
      "          'fair': 1,\n",
      "          'warning': 1,\n",
      "          'inclined': 1,\n",
      "          'appearance': 1,\n",
      "          'goaliemaskwearing': 1,\n",
      "          'homicidal': 1,\n",
      "          'njason': 1,\n",
      "          'guy': 1,\n",
      "          'handedly': 1,\n",
      "          'controlled': 1,\n",
      "          'overpopulation': 1,\n",
      "          'problem': 1,\n",
      "          'around': 1,\n",
      "          'crystal': 1,\n",
      "          'lake': 1,\n",
      "          'area': 1,\n",
      "          'doesnt': 1,\n",
      "          'quest': 1,\n",
      "          'find': 1,\n",
      "          'interesting': 1,\n",
      "          'household': 1,\n",
      "          'item': 1,\n",
      "          'kill': 1,\n",
      "          'someone': 1,\n",
      "          'sequel': 1,\n",
      "          'nwhile': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'audience': 1,\n",
      "          'depend': 1,\n",
      "          'another': 1,\n",
      "          'blood': 1,\n",
      "          'thirsty': 1,\n",
      "          'rack': 1,\n",
      "          'body': 1,\n",
      "          'every': 1,\n",
      "          'goes': 1,\n",
      "          'crazed': 1,\n",
      "          'murders': 1,\n",
      "          'hesheit': 1,\n",
      "          'possibly': 1,\n",
      "          'space': 1,\n",
      "          '90': 1,\n",
      "          'minute': 1,\n",
      "          'reasons': 1,\n",
      "          'afore': 1,\n",
      "          'mentioned': 1,\n",
      "          'come': 1,\n",
      "          'contact': 1,\n",
      "          'little': 1,\n",
      "          'importance': 1,\n",
      "          'story': 1,\n",
      "          'nbut': 1,\n",
      "          'actually': 1,\n",
      "          'care': 1,\n",
      "          'trivial': 1,\n",
      "          'matters': 1,\n",
      "          'basics': 1,\n",
      "          'bunch': 1,\n",
      "          'teens': 1,\n",
      "          'job': 1,\n",
      "          'long': 1,\n",
      "          'closed': 1,\n",
      "          'camp': 1,\n",
      "          'nthey': 1,\n",
      "          'days': 1,\n",
      "          'away': 1,\n",
      "          'arrival': 1,\n",
      "          'spending': 1,\n",
      "          'fixing': 1,\n",
      "          'place': 1,\n",
      "          'making': 1,\n",
      "          'sure': 1,\n",
      "          'ready': 1,\n",
      "          'nsadly': 1,\n",
      "          'butchered': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'acting': 1,\n",
      "          'directing': 1,\n",
      "          'maybe': 1,\n",
      "          'high': 1,\n",
      "          'production': 1,\n",
      "          'nsince': 1,\n",
      "          'im': 1,\n",
      "          'going': 1,\n",
      "          'feel': 1,\n",
      "          'free': 1,\n",
      "          'assume': 1,\n",
      "          'wouldnt': 1,\n",
      "          'positive': 1,\n",
      "          'ni': 1,\n",
      "          'looks': 1,\n",
      "          'made': 1,\n",
      "          'hundred': 1,\n",
      "          'bucks': 1,\n",
      "          'actors': 1,\n",
      "          'salaries': 1,\n",
      "          'recent': 1,\n",
      "          'scream': 1,\n",
      "          'bit': 1,\n",
      "          'surprise': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'kind': 1,\n",
      "          'real': 1,\n",
      "          'nusing': 1,\n",
      "          'methods': 1,\n",
      "          'could': 1,\n",
      "          'nnone': 1,\n",
      "          'weapon': 1,\n",
      "          'stuff': 1,\n",
      "          'life': 1,\n",
      "          'unimaginative': 1,\n",
      "          'leatherface': 1,\n",
      "          'chainsaw': 1,\n",
      "          'massacre': 1,\n",
      "          'creatively': 1,\n",
      "          'stifled': 1,\n",
      "          'imagination': 1,\n",
      "          'halloweens': 1,\n",
      "          'michael': 1,\n",
      "          'myers': 1,\n",
      "          'brute': 1,\n",
      "          'force': 1,\n",
      "          'big': 1,\n",
      "          'kitchen': 1,\n",
      "          'knife': 1,\n",
      "          'nnope': 1,\n",
      "          'movies': 1,\n",
      "          'always': 1,\n",
      "          'great': 1,\n",
      "          'none': 1,\n",
      "          'fact': 1,\n",
      "          'cast': 1,\n",
      "          'young': 1,\n",
      "          'kevin': 1,\n",
      "          'bacon': 1,\n",
      "          'although': 1,\n",
      "          'wonder': 1,\n",
      "          'ever': 1,\n",
      "          'worked': 1,\n",
      "          'main': 1,\n",
      "          'reason': 1,\n",
      "          'see': 1,\n",
      "          'want': 1,\n",
      "          'beginning': 1,\n",
      "          'stick': 1,\n",
      "          'later': 1,\n",
      "          'jason': 1,\n",
      "          'hockey': 1,\n",
      "          'fan': 1,\n",
      "          'nfriday': 1,\n",
      "          'sort': 1,\n",
      "          'couple': 1,\n",
      "          'scares': 1,\n",
      "          'dont': 1,\n",
      "          'expecting': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'story': 4,\n",
      "          'good': 3,\n",
      "          'camera': 3,\n",
      "          'ntheres': 3,\n",
      "          'theres': 2,\n",
      "          'murder': 2,\n",
      "          'first': 2,\n",
      "          'abuses': 2,\n",
      "          'american': 2,\n",
      "          'nbut': 2,\n",
      "          'slater': 2,\n",
      "          'kevin': 2,\n",
      "          'bacon': 2,\n",
      "          'alcatraz': 2,\n",
      "          'trial': 2,\n",
      "          'school': 2,\n",
      "          'oldman': 2,\n",
      "          'overacting': 2,\n",
      "          'timely': 1,\n",
      "          'trapped': 1,\n",
      "          'deep': 1,\n",
      "          'within': 1,\n",
      "          'excess': 1,\n",
      "          'new': 1,\n",
      "          'movie': 1,\n",
      "          'prison': 1,\n",
      "          'system': 1,\n",
      "          'nwith': 1,\n",
      "          'country': 1,\n",
      "          'wrapped': 1,\n",
      "          'feverish': 1,\n",
      "          'debate': 1,\n",
      "          'crime': 1,\n",
      "          'issue': 1,\n",
      "          'rights': 1,\n",
      "          'accused': 1,\n",
      "          'incarcerated': 1,\n",
      "          'jeopardy': 1,\n",
      "          'expose': 1,\n",
      "          'would': 1,\n",
      "          'offer': 1,\n",
      "          'something': 1,\n",
      "          'rare': 1,\n",
      "          'recent': 1,\n",
      "          'moviesa': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'director': 1,\n",
      "          'marc': 1,\n",
      "          'rocco': 1,\n",
      "          'makes': 1,\n",
      "          'clear': 1,\n",
      "          'beginning': 1,\n",
      "          'pretentious': 1,\n",
      "          'often': 1,\n",
      "          'nauseating': 1,\n",
      "          'movements': 1,\n",
      "          'slick': 1,\n",
      "          'mtv': 1,\n",
      "          'style': 1,\n",
      "          'lighting': 1,\n",
      "          'editing': 1,\n",
      "          'far': 1,\n",
      "          'important': 1,\n",
      "          'moment': 1,\n",
      "          'picture': 1,\n",
      "          'surrenders': 1,\n",
      "          'technique': 1,\n",
      "          'pure': 1,\n",
      "          'storytelling': 1,\n",
      "          'nand': 1,\n",
      "          'everything': 1,\n",
      "          'suffers': 1,\n",
      "          'nchristian': 1,\n",
      "          'star': 1,\n",
      "          'defense': 1,\n",
      "          'attorney': 1,\n",
      "          'inmate': 1,\n",
      "          'respectively': 1,\n",
      "          'nafter': 1,\n",
      "          'spending': 1,\n",
      "          'unprecedented': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'isolated': 1,\n",
      "          'cell': 1,\n",
      "          'attempting': 1,\n",
      "          'escape': 1,\n",
      "          'murders': 1,\n",
      "          'another': 1,\n",
      "          'prisoner': 1,\n",
      "          'faces': 1,\n",
      "          'nhis': 1,\n",
      "          'young': 1,\n",
      "          'lawyer': 1,\n",
      "          'fresh': 1,\n",
      "          'law': 1,\n",
      "          'determined': 1,\n",
      "          'put': 1,\n",
      "          'warden': 1,\n",
      "          'gary': 1,\n",
      "          'nthe': 1,\n",
      "          'result': 1,\n",
      "          'usual': 1,\n",
      "          'courtroom': 1,\n",
      "          'theatrics': 1,\n",
      "          'imagine': 1,\n",
      "          'stanley': 1,\n",
      "          'kramer': 1,\n",
      "          'production': 1,\n",
      "          'shot': 1,\n",
      "          'hyperactive': 1,\n",
      "          'film': 1,\n",
      "          'students': 1,\n",
      "          'little': 1,\n",
      "          'praise': 1,\n",
      "          'outside': 1,\n",
      "          'bacons': 1,\n",
      "          'earnest': 1,\n",
      "          'appropriate': 1,\n",
      "          'lot': 1,\n",
      "          'everyoneyou': 1,\n",
      "          'know': 1,\n",
      "          'youre': 1,\n",
      "          'trouble': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'r': 1,\n",
      "          'lee': 1,\n",
      "          'ermey': 1,\n",
      "          'drill': 1,\n",
      "          'sergeant': 1,\n",
      "          'full': 1,\n",
      "          'metal': 1,\n",
      "          'jacket': 1,\n",
      "          'cast': 1,\n",
      "          'judge': 1,\n",
      "          'center': 1,\n",
      "          'reason': 1,\n",
      "          'moderation': 1,\n",
      "          'nslater': 1,\n",
      "          'never': 1,\n",
      "          'convincing': 1,\n",
      "          'certainly': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'streak': 1,\n",
      "          'hammy': 1,\n",
      "          'performances': 1,\n",
      "          'worst': 1,\n",
      "          'feeling': 1,\n",
      "          'get': 1,\n",
      "          'watching': 1,\n",
      "          'man': 1,\n",
      "          'behind': 1,\n",
      "          'could': 1,\n",
      "          'care': 1,\n",
      "          'less': 1,\n",
      "          'telling': 1,\n",
      "          'nthere': 1,\n",
      "          'long': 1,\n",
      "          'exchanges': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'dialogue': 1,\n",
      "          'even': 1,\n",
      "          'moving': 1,\n",
      "          'near': 1,\n",
      "          'characters': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'nhow': 1,\n",
      "          'frustrating': 1,\n",
      "          'must': 1,\n",
      "          'actors': 1,\n",
      "          'work': 1,\n",
      "          'conditions': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'alway': 1,\n",
      "          'distinguished': 1,\n",
      "          'films': 1,\n",
      "          'rest': 1,\n",
      "          'world': 1,\n",
      "          'ability': 1,\n",
      "          'tell': 1,\n",
      "          'nhave': 1,\n",
      "          'forgotten': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'movie': 3,\n",
      "          'far': 2,\n",
      "          'avengers': 2,\n",
      "          'dressed': 2,\n",
      "          'wearing': 2,\n",
      "          'evil': 2,\n",
      "          'sir': 2,\n",
      "          'august': 2,\n",
      "          'question': 2,\n",
      "          'could': 2,\n",
      "          'name': 2,\n",
      "          'ni': 2,\n",
      "          'little': 2,\n",
      "          'thurman': 2,\n",
      "          'fiennes': 2,\n",
      "          'something': 2,\n",
      "          'dialogue': 2,\n",
      "          'except': 2,\n",
      "          'would': 2,\n",
      "          'see': 2,\n",
      "          'one': 2,\n",
      "          'worst': 1,\n",
      "          'ive': 1,\n",
      "          'viewed': 1,\n",
      "          '98': 1,\n",
      "          'silly': 1,\n",
      "          'man': 1,\n",
      "          'bowler': 1,\n",
      "          'hat': 1,\n",
      "          'woman': 1,\n",
      "          'tight': 1,\n",
      "          'leathers': 1,\n",
      "          'scientists': 1,\n",
      "          'teddy': 1,\n",
      "          'bear': 1,\n",
      "          'suits': 1,\n",
      "          'greater': 1,\n",
      "          'de': 1,\n",
      "          'wynter': 1,\n",
      "          'kilt': 1,\n",
      "          'gone': 1,\n",
      "          'wrong': 1,\n",
      "          'potentially': 1,\n",
      "          'great': 1,\n",
      "          'idea': 1,\n",
      "          'big': 1,\n",
      "          'cast': 1,\n",
      "          'probably': 1,\n",
      "          'asked': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'stinker': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'feel': 1,\n",
      "          'production': 1,\n",
      "          'got': 1,\n",
      "          'smug': 1,\n",
      "          'script': 1,\n",
      "          'smart': 1,\n",
      "          'direction': 1,\n",
      "          'somehow': 1,\n",
      "          'lost': 1,\n",
      "          'chaos': 1,\n",
      "          'random': 1,\n",
      "          'events': 1,\n",
      "          'collided': 1,\n",
      "          'together': 1,\n",
      "          'form': 1,\n",
      "          'nmy': 1,\n",
      "          'greatest': 1,\n",
      "          'criticism': 1,\n",
      "          'rests': 1,\n",
      "          'fact': 1,\n",
      "          'chemistry': 1,\n",
      "          'emma': 1,\n",
      "          'peel': 1,\n",
      "          'john': 1,\n",
      "          'steed': 1,\n",
      "          'vital': 1,\n",
      "          'element': 1,\n",
      "          '60s': 1,\n",
      "          'tv': 1,\n",
      "          'serial': 1,\n",
      "          'goes': 1,\n",
      "          'tea': 1,\n",
      "          'finer': 1,\n",
      "          'british': 1,\n",
      "          'perks': 1,\n",
      "          'allow': 1,\n",
      "          'much': 1,\n",
      "          'room': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'interaction': 1,\n",
      "          'perhaps': 1,\n",
      "          'grate': 1,\n",
      "          'viewers': 1,\n",
      "          'nerves': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'dynamic': 1,\n",
      "          'pair': 1,\n",
      "          'bother': 1,\n",
      "          'kissing': 1,\n",
      "          'end': 1,\n",
      "          'pure': 1,\n",
      "          'english': 1,\n",
      "          'formality': 1,\n",
      "          'nconnery': 1,\n",
      "          'fair': 1,\n",
      "          'better': 1,\n",
      "          'nhis': 1,\n",
      "          'erratic': 1,\n",
      "          'stormy': 1,\n",
      "          'weather': 1,\n",
      "          'mostly': 1,\n",
      "          'embarrassing': 1,\n",
      "          'poor': 1,\n",
      "          'quality': 1,\n",
      "          'nif': 1,\n",
      "          'prefer': 1,\n",
      "          'never': 1,\n",
      "          'believe': 1,\n",
      "          'good': 1,\n",
      "          'choice': 1,\n",
      "          'nfor': 1,\n",
      "          'thing': 1,\n",
      "          'witness': 1,\n",
      "          'product': 1,\n",
      "          'inferior': 1,\n",
      "          'three': 1,\n",
      "          'high': 1,\n",
      "          'profile': 1,\n",
      "          'names': 1,\n",
      "          'associated': 1,\n",
      "          'title': 1,\n",
      "          'understand': 1,\n",
      "          'poorly': 1,\n",
      "          'produced': 1,\n",
      "          'released': 1,\n",
      "          'put': 1,\n",
      "          'freak': 1,\n",
      "          'happenings': 1,\n",
      "          'nature': 1,\n",
      "          'like': 1,\n",
      "          'lightning': 1,\n",
      "          'cant': 1,\n",
      "          'coming': 1,\n",
      "          'hits': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'boyfriend': 3,\n",
      "          'naked': 3,\n",
      "          'talents': 3,\n",
      "          'really': 2,\n",
      "          'spends': 2,\n",
      "          'art': 2,\n",
      "          'evil': 2,\n",
      "          'everett': 2,\n",
      "          'longstreet': 2,\n",
      "          'minds': 2,\n",
      "          'mental': 2,\n",
      "          'scifi': 2,\n",
      "          'pamela': 2,\n",
      "          'andersons': 2,\n",
      "          'sex': 2,\n",
      "          'two': 2,\n",
      "          'get': 2,\n",
      "          'pammy': 2,\n",
      "          'synopsis': 1,\n",
      "          'bigbreasted': 1,\n",
      "          'dimwitted': 1,\n",
      "          'sculptress': 1,\n",
      "          'britt': 1,\n",
      "          'gets': 1,\n",
      "          'mad': 1,\n",
      "          'grad': 1,\n",
      "          'student': 1,\n",
      "          'much': 1,\n",
      "          'time': 1,\n",
      "          'thoughttransference': 1,\n",
      "          'experiments': 1,\n",
      "          'instead': 1,\n",
      "          'showings': 1,\n",
      "          'nelderly': 1,\n",
      "          'scientist': 1,\n",
      "          'switches': 1,\n",
      "          'britts': 1,\n",
      "          'boy': 1,\n",
      "          'meantime': 1,\n",
      "          'goes': 1,\n",
      "          'completely': 1,\n",
      "          'ncomments': 1,\n",
      "          'souls': 1,\n",
      "          'opens': 1,\n",
      "          'woman': 1,\n",
      "          'makes': 1,\n",
      "          'illusion': 1,\n",
      "          'vehicle': 1,\n",
      "          'designed': 1,\n",
      "          'show': 1,\n",
      "          'um': 1,\n",
      "          'nif': 1,\n",
      "          'interested': 1,\n",
      "          'seeing': 1,\n",
      "          'however': 1,\n",
      "          'suggest': 1,\n",
      "          'skip': 1,\n",
      "          'dud': 1,\n",
      "          'watch': 1,\n",
      "          'infamous': 1,\n",
      "          'pam': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'honeymoon': 1,\n",
      "          'tape': 1,\n",
      "          'available': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'dont': 1,\n",
      "          'go': 1,\n",
      "          'painful': 1,\n",
      "          'experience': 1,\n",
      "          'watching': 1,\n",
      "          'try': 1,\n",
      "          'pronounce': 1,\n",
      "          'multiple': 1,\n",
      "          'syllable': 1,\n",
      "          'words': 1,\n",
      "          'like': 1,\n",
      "          'eclectic': 1,\n",
      "          'na': 1,\n",
      "          'premise': 1,\n",
      "          'exist': 1,\n",
      "          'nbasically': 1,\n",
      "          'anderson': 1,\n",
      "          'wears': 1,\n",
      "          'skimpy': 1,\n",
      "          'clothes': 1,\n",
      "          'barely': 1,\n",
      "          'contain': 1,\n",
      "          'practices': 1,\n",
      "          'brilliantly': 1,\n",
      "          'slapping': 1,\n",
      "          'plaster': 1,\n",
      "          'paris': 1,\n",
      "          'women': 1,\n",
      "          'nher': 1,\n",
      "          'meanwhile': 1,\n",
      "          '20': 1,\n",
      "          'hours': 1,\n",
      "          'day': 1,\n",
      "          'morgue': 1,\n",
      "          'trying': 1,\n",
      "          'view': 1,\n",
      "          'memories': 1,\n",
      "          'dead': 1,\n",
      "          'prison': 1,\n",
      "          'inmates': 1,\n",
      "          'make': 1,\n",
      "          'difference': 1,\n",
      "          'humanity': 1,\n",
      "          'nwhatever': 1,\n",
      "          'nthe': 1,\n",
      "          'fails': 1,\n",
      "          'explain': 1,\n",
      "          'hooked': 1,\n",
      "          'nbe': 1,\n",
      "          'grateful': 1,\n",
      "          'nafter': 1,\n",
      "          'meet': 1,\n",
      "          'lots': 1,\n",
      "          'technobabble': 1,\n",
      "          'mystical': 1,\n",
      "          'mumbojumbo': 1,\n",
      "          'tossed': 1,\n",
      "          'replete': 1,\n",
      "          'cheesy': 1,\n",
      "          'makeout': 1,\n",
      "          'music': 1,\n",
      "          'transferred': 1,\n",
      "          'nnever': 1,\n",
      "          'fear': 1,\n",
      "          'though': 1,\n",
      "          'uses': 1,\n",
      "          'sharp': 1,\n",
      "          'abilities': 1,\n",
      "          'ahem': 1,\n",
      "          'save': 1,\n",
      "          'end': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'one': 1,\n",
      "          'saves': 1,\n",
      "          'navoid': 1,\n",
      "          'wouldbe': 1,\n",
      "          'thriller': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'good': 1,\n",
      "          'laugh': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 18,\n",
      "          'think': 6,\n",
      "          'nthe': 5,\n",
      "          'slapstick': 5,\n",
      "          'acting': 5,\n",
      "          'humor': 4,\n",
      "          'like': 4,\n",
      "          'ni': 4,\n",
      "          'tv': 4,\n",
      "          'bean': 3,\n",
      "          'look': 3,\n",
      "          'rather': 3,\n",
      "          'might': 3,\n",
      "          'real': 3,\n",
      "          'could': 3,\n",
      "          'nbut': 3,\n",
      "          'nnow': 3,\n",
      "          'mr': 2,\n",
      "          'la': 2,\n",
      "          'help': 2,\n",
      "          'masterpiece': 2,\n",
      "          'first': 2,\n",
      "          'two': 2,\n",
      "          'said': 2,\n",
      "          'end': 2,\n",
      "          'laughing': 2,\n",
      "          'whole': 2,\n",
      "          'nwell': 2,\n",
      "          'plot': 2,\n",
      "          'hard': 2,\n",
      "          'say': 2,\n",
      "          'many': 2,\n",
      "          'go': 2,\n",
      "          'form': 2,\n",
      "          'truly': 2,\n",
      "          'stupid': 2,\n",
      "          'wasnt': 2,\n",
      "          'done': 2,\n",
      "          'role': 2,\n",
      "          'bit': 2,\n",
      "          'would': 2,\n",
      "          'better': 2,\n",
      "          'achieved': 2,\n",
      "          'thing': 2,\n",
      "          'save': 2,\n",
      "          'people': 2,\n",
      "          'bumbling': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'england': 1,\n",
      "          'sent': 1,\n",
      "          'grandiose': 1,\n",
      "          'homecoming': 1,\n",
      "          'american': 1,\n",
      "          'painting': 1,\n",
      "          'words': 1,\n",
      "          'enough': 1,\n",
      "          'let': 1,\n",
      "          'know': 1,\n",
      "          'occurs': 1,\n",
      "          'beans': 1,\n",
      "          'trip': 1,\n",
      "          'didnt': 1,\n",
      "          'interesting': 1,\n",
      "          'odd': 1,\n",
      "          'ride': 1,\n",
      "          'nheck': 1,\n",
      "          'depending': 1,\n",
      "          'flick': 1,\n",
      "          'neither': 1,\n",
      "          'way': 1,\n",
      "          'america': 1,\n",
      "          'coming': 1,\n",
      "          'really': 1,\n",
      "          'little': 1,\n",
      "          'discernible': 1,\n",
      "          'nthat': 1,\n",
      "          'much': 1,\n",
      "          'grapple': 1,\n",
      "          'comedy': 1,\n",
      "          'nit': 1,\n",
      "          'achieves': 1,\n",
      "          'goal': 1,\n",
      "          'admirably': 1,\n",
      "          'screaming': 1,\n",
      "          'premise': 1,\n",
      "          'based': 1,\n",
      "          'least': 1,\n",
      "          'flawed': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'story': 1,\n",
      "          'line': 1,\n",
      "          'something': 1,\n",
      "          'thought': 1,\n",
      "          'whim': 1,\n",
      "          'carried': 1,\n",
      "          'causes': 1,\n",
      "          'adlibbed': 1,\n",
      "          'went': 1,\n",
      "          'ndont': 1,\n",
      "          'expecting': 1,\n",
      "          'theatrical': 1,\n",
      "          'floats': 1,\n",
      "          'boat': 1,\n",
      "          'enjoy': 1,\n",
      "          'even': 1,\n",
      "          'dont': 1,\n",
      "          'style': 1,\n",
      "          'somethings': 1,\n",
      "          'goes': 1,\n",
      "          'accomplishes': 1,\n",
      "          'aims': 1,\n",
      "          'seems': 1,\n",
      "          'things': 1,\n",
      "          'act': 1,\n",
      "          'manner': 1,\n",
      "          'easiest': 1,\n",
      "          'sure': 1,\n",
      "          'concede': 1,\n",
      "          'atkinsons': 1,\n",
      "          'well': 1,\n",
      "          'nalthough': 1,\n",
      "          'isnt': 1,\n",
      "          'demanding': 1,\n",
      "          'character': 1,\n",
      "          'dialogue': 1,\n",
      "          'added': 1,\n",
      "          'quite': 1,\n",
      "          'overall': 1,\n",
      "          'effect': 1,\n",
      "          'rest': 1,\n",
      "          'actors': 1,\n",
      "          'bad': 1,\n",
      "          'poor': 1,\n",
      "          'casting': 1,\n",
      "          'opposite': 1,\n",
      "          'seemed': 1,\n",
      "          'wrong': 1,\n",
      "          'na': 1,\n",
      "          'different': 1,\n",
      "          'actor': 1,\n",
      "          'job': 1,\n",
      "          'wont': 1,\n",
      "          'presume': 1,\n",
      "          'trying': 1,\n",
      "          'none': 1,\n",
      "          'must': 1,\n",
      "          'simply': 1,\n",
      "          'get': 1,\n",
      "          'chest': 1,\n",
      "          'transferring': 1,\n",
      "          'sitcom': 1,\n",
      "          'usually': 1,\n",
      "          'produces': 1,\n",
      "          'disastrous': 1,\n",
      "          'results': 1,\n",
      "          'ntv': 1,\n",
      "          'shows': 1,\n",
      "          'stay': 1,\n",
      "          'probably': 1,\n",
      "          'producers': 1,\n",
      "          'getting': 1,\n",
      "          'ulcers': 1,\n",
      "          'couple': 1,\n",
      "          'examples': 1,\n",
      "          'going': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'effectively': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'nbean': 1,\n",
      "          'seriously': 1,\n",
      "          'fails': 1,\n",
      "          'accomplish': 1,\n",
      "          'anything': 1,\n",
      "          'close': 1,\n",
      "          'series': 1,\n",
      "          'gone': 1,\n",
      "          'another': 1,\n",
      "          'state': 1,\n",
      "          'narrowed': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'fairly': 1,\n",
      "          'tightly': 1,\n",
      "          'liked': 1,\n",
      "          'pointless': 1,\n",
      "          'show': 1,\n",
      "          'actually': 1,\n",
      "          'safe': 1,\n",
      "          'side': 1,\n",
      "          'opting': 1,\n",
      "          'recommend': 1,\n",
      "          'money': 1,\n",
      "          'see': 1,\n",
      "          'nthere': 1,\n",
      "          'movies': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'unlike': 1,\n",
      "          'one': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'story': 4,\n",
      "          'erin': 4,\n",
      "          'see': 3,\n",
      "          'boston': 3,\n",
      "          'nthis': 3,\n",
      "          'nthe': 3,\n",
      "          'ad': 3,\n",
      "          'nit': 3,\n",
      "          'one': 3,\n",
      "          'actually': 3,\n",
      "          'wonderland': 2,\n",
      "          'plot': 2,\n",
      "          'away': 2,\n",
      "          'soul': 2,\n",
      "          'mate': 2,\n",
      "          'singles': 2,\n",
      "          'star': 2,\n",
      "          'nthat': 2,\n",
      "          'dating': 2,\n",
      "          'done': 2,\n",
      "          'better': 2,\n",
      "          'put': 2,\n",
      "          'easy': 2,\n",
      "          'alan': 2,\n",
      "          'work': 2,\n",
      "          'aquarium': 2,\n",
      "          'comes': 2,\n",
      "          'way': 2,\n",
      "          'bet': 2,\n",
      "          'obnoxious': 2,\n",
      "          'place': 2,\n",
      "          'well': 2,\n",
      "          'rather': 1,\n",
      "          'sugary': 1,\n",
      "          'romance': 1,\n",
      "          'subtle': 1,\n",
      "          'ton': 1,\n",
      "          'bricks': 1,\n",
      "          'falling': 1,\n",
      "          'nyou': 1,\n",
      "          'developing': 1,\n",
      "          'mile': 1,\n",
      "          'nare': 1,\n",
      "          'lured': 1,\n",
      "          'benign': 1,\n",
      "          'single': 1,\n",
      "          '29yearold': 1,\n",
      "          'girl': 1,\n",
      "          'looking': 1,\n",
      "          'city': 1,\n",
      "          'depicted': 1,\n",
      "          'miniwonderland': 1,\n",
      "          'oriented': 1,\n",
      "          'carries': 1,\n",
      "          'hope': 1,\n",
      "          'davis': 1,\n",
      "          'reasons': 1,\n",
      "          'fate': 1,\n",
      "          'luck': 1,\n",
      "          'whatnot': 1,\n",
      "          'successful': 1,\n",
      "          'match': 1,\n",
      "          'putting': 1,\n",
      "          'energy': 1,\n",
      "          'fulfilling': 1,\n",
      "          'careers': 1,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'type': 1,\n",
      "          'often': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'contemporary': 1,\n",
      "          'films': 1,\n",
      "          'fictionalized': 1,\n",
      "          'documentary': 1,\n",
      "          'unmade': 1,\n",
      "          'beds': 1,\n",
      "          'provocatively': 1,\n",
      "          'sense': 1,\n",
      "          'urgency': 1,\n",
      "          'nmain': 1,\n",
      "          'quirk': 1,\n",
      "          'hopes': 1,\n",
      "          'pushy': 1,\n",
      "          'mother': 1,\n",
      "          'hollan': 1,\n",
      "          'visits': 1,\n",
      "          'sees': 1,\n",
      "          'daughters': 1,\n",
      "          'livein': 1,\n",
      "          'relationship': 1,\n",
      "          'radical': 1,\n",
      "          'protester': 1,\n",
      "          'hoffman': 1,\n",
      "          'breakup': 1,\n",
      "          'decides': 1,\n",
      "          'personal': 1,\n",
      "          'newspaper': 1,\n",
      "          'harvard': 1,\n",
      "          'medical': 1,\n",
      "          'school': 1,\n",
      "          'dropout': 1,\n",
      "          'daughter': 1,\n",
      "          'works': 1,\n",
      "          'nurse': 1,\n",
      "          'without': 1,\n",
      "          'knowledge': 1,\n",
      "          'cornball': 1,\n",
      "          'sitcom': 1,\n",
      "          'stuff': 1,\n",
      "          'least': 1,\n",
      "          'handled': 1,\n",
      "          'best': 1,\n",
      "          'could': 1,\n",
      "          'actors': 1,\n",
      "          'director': 1,\n",
      "          'like': 1,\n",
      "          'bright': 1,\n",
      "          'caring': 1,\n",
      "          'attractively': 1,\n",
      "          'blonde': 1,\n",
      "          'equally': 1,\n",
      "          'care': 1,\n",
      "          'keeps': 1,\n",
      "          'missing': 1,\n",
      "          'contact': 1,\n",
      "          'financially': 1,\n",
      "          'strapped': 1,\n",
      "          'ruggedly': 1,\n",
      "          'handsome': 1,\n",
      "          'intelligent': 1,\n",
      "          '35yearold': 1,\n",
      "          'longer': 1,\n",
      "          'wants': 1,\n",
      "          'father': 1,\n",
      "          'plumber': 1,\n",
      "          'volunteer': 1,\n",
      "          'attending': 1,\n",
      "          'college': 1,\n",
      "          'marine': 1,\n",
      "          'biologist': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'across': 1,\n",
      "          'good': 1,\n",
      "          'though': 1,\n",
      "          'kill': 1,\n",
      "          'fish': 1,\n",
      "          'hard': 1,\n",
      "          'believe': 1,\n",
      "          'hes': 1,\n",
      "          'real': 1,\n",
      "          'cardboard': 1,\n",
      "          'shining': 1,\n",
      "          'knight': 1,\n",
      "          'give': 1,\n",
      "          'ideal': 1,\n",
      "          'shoot': 1,\n",
      "          'contrived': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'near': 1,\n",
      "          'misses': 1,\n",
      "          'meeting': 1,\n",
      "          'spots': 1,\n",
      "          'subway': 1,\n",
      "          'restaurant': 1,\n",
      "          'phone': 1,\n",
      "          'nalans': 1,\n",
      "          'brother': 1,\n",
      "          'answers': 1,\n",
      "          'erins': 1,\n",
      "          'pals': 1,\n",
      "          'try': 1,\n",
      "          'respond': 1,\n",
      "          'phony': 1,\n",
      "          'making': 1,\n",
      "          'first': 1,\n",
      "          'gets': 1,\n",
      "          'tongue': 1,\n",
      "          'kiss': 1,\n",
      "          'others': 1,\n",
      "          'witness': 1,\n",
      "          'win': 1,\n",
      "          'subplot': 1,\n",
      "          'take': 1,\n",
      "          'hear': 1,\n",
      "          'told': 1,\n",
      "          'go': 1,\n",
      "          'several': 1,\n",
      "          'dates': 1,\n",
      "          'prove': 1,\n",
      "          'point': 1,\n",
      "          'ego': 1,\n",
      "          'sick': 1,\n",
      "          'guys': 1,\n",
      "          'annoying': 1,\n",
      "          'culminating': 1,\n",
      "          'brazilian': 1,\n",
      "          'lover': 1,\n",
      "          'jose': 1,\n",
      "          'charming': 1,\n",
      "          'snakeoil': 1,\n",
      "          'salesman': 1,\n",
      "          'nearly': 1,\n",
      "          'flies': 1,\n",
      "          'holiday': 1,\n",
      "          'brazil': 1,\n",
      "          'incredulous': 1,\n",
      "          'downright': 1,\n",
      "          'contrary': 1,\n",
      "          'rich': 1,\n",
      "          'presentation': 1,\n",
      "          'character': 1,\n",
      "          'heart': 1,\n",
      "          'nanyway': 1,\n",
      "          'expected': 1,\n",
      "          'alls': 1,\n",
      "          'ends': 1,\n",
      "          'watchable': 1,\n",
      "          'piece': 1,\n",
      "          'fluff': 1,\n",
      "          'screen': 1,\n",
      "          'relating': 1,\n",
      "          'storyline': 1,\n",
      "          'dialogue': 1,\n",
      "          'bad': 1,\n",
      "          'trying': 1,\n",
      "          'flirt': 1,\n",
      "          'seemed': 1,\n",
      "          'uttering': 1,\n",
      "          'authentic': 1,\n",
      "          'things': 1,\n",
      "          'would': 1,\n",
      "          'say': 1,\n",
      "          'situation': 1,\n",
      "          'nand': 1,\n",
      "          'oh': 1,\n",
      "          'refers': 1,\n",
      "          'stop': 1,\n",
      "          'metro': 1,\n",
      "          'greyhound': 1,\n",
      "          'racing': 1,\n",
      "          'takes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'prentice': 6,\n",
      "          'kim': 6,\n",
      "          'love': 4,\n",
      "          'story': 4,\n",
      "          'n': 4,\n",
      "          'nthe': 3,\n",
      "          'nif': 3,\n",
      "          'film': 3,\n",
      "          'nbut': 3,\n",
      "          'either': 3,\n",
      "          'karl': 2,\n",
      "          'school': 2,\n",
      "          'saved': 2,\n",
      "          'see': 2,\n",
      "          'woman': 2,\n",
      "          'together': 2,\n",
      "          'comedy': 2,\n",
      "          'little': 2,\n",
      "          'cheap': 2,\n",
      "          'laughs': 2,\n",
      "          'home': 2,\n",
      "          'transsexual': 2,\n",
      "          'much': 2,\n",
      "          'give': 2,\n",
      "          'girls': 2,\n",
      "          'enough': 2,\n",
      "          'make': 2,\n",
      "          'uncomfortable': 2,\n",
      "          'doesnt': 2,\n",
      "          'guy': 2,\n",
      "          'insecurities': 2,\n",
      "          'still': 2,\n",
      "          'couple': 2,\n",
      "          'hes': 2,\n",
      "          'like': 2,\n",
      "          'thats': 2,\n",
      "          'never': 2,\n",
      "          'ending': 2,\n",
      "          'kims': 2,\n",
      "          'gets': 2,\n",
      "          'comeuppance': 2,\n",
      "          'ride': 2,\n",
      "          'warned': 1,\n",
      "          'nbrit': 1,\n",
      "          'offing': 1,\n",
      "          'neffeminate': 1,\n",
      "          'mildmannered': 1,\n",
      "          'take': 1,\n",
      "          'beatng': 1,\n",
      "          'bunch': 1,\n",
      "          'ruffians': 1,\n",
      "          'bathes': 1,\n",
      "          'shower': 1,\n",
      "          'genitals': 1,\n",
      "          'tucked': 1,\n",
      "          'legs': 1,\n",
      "          'manner': 1,\n",
      "          'posing': 1,\n",
      "          'transvestite': 1,\n",
      "          'nhe': 1,\n",
      "          'appears': 1,\n",
      "          'respects': 1,\n",
      "          'barring': 1,\n",
      "          'protective': 1,\n",
      "          'attitude': 1,\n",
      "          'towards': 1,\n",
      "          'average': 1,\n",
      "          'streetwise': 1,\n",
      "          'punkinthemaking': 1,\n",
      "          'ensuing': 1,\n",
      "          'scene': 1,\n",
      "          'ends': 1,\n",
      "          'boys': 1,\n",
      "          'ridiculed': 1,\n",
      "          'unfairly': 1,\n",
      "          'expelled': 1,\n",
      "          'nthey': 1,\n",
      "          'another': 1,\n",
      "          'eighteen': 1,\n",
      "          'yeas': 1,\n",
      "          'nin': 1,\n",
      "          'time': 1,\n",
      "          'matured': 1,\n",
      "          'somewhat': 1,\n",
      "          'loveable': 1,\n",
      "          'brash': 1,\n",
      "          'bullheaed': 1,\n",
      "          'goon': 1,\n",
      "          'screws': 1,\n",
      "          'jobs': 1,\n",
      "          'relationships': 1,\n",
      "          'gamely': 1,\n",
      "          'clinging': 1,\n",
      "          'onto': 1,\n",
      "          'perennial': 1,\n",
      "          'adolescence': 1,\n",
      "          'via': 1,\n",
      "          'lether': 1,\n",
      "          'jackets': 1,\n",
      "          'motorcycles': 1,\n",
      "          'punk': 1,\n",
      "          'rock': 1,\n",
      "          'music': 1,\n",
      "          'nkarl': 1,\n",
      "          'hand': 1,\n",
      "          'grown': 1,\n",
      "          'become': 1,\n",
      "          'drabby': 1,\n",
      "          'insecure': 1,\n",
      "          'works': 1,\n",
      "          'verse': 1,\n",
      "          'writer': 1,\n",
      "          'greeting': 1,\n",
      "          'card': 1,\n",
      "          'company': 1,\n",
      "          'nchance': 1,\n",
      "          'brings': 1,\n",
      "          'two': 1,\n",
      "          'inevitably': 1,\n",
      "          'blossom': 1,\n",
      "          'quirky': 1,\n",
      "          'british': 1,\n",
      "          'romantic': 1,\n",
      "          'skewed': 1,\n",
      "          'largely': 1,\n",
      "          'point': 1,\n",
      "          'think': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'get': 1,\n",
      "          'genderbending': 1,\n",
      "          'theme': 1,\n",
      "          'birdcage': 1,\n",
      "          'wong': 1,\n",
      "          'foo': 1,\n",
      "          'priscilla': 1,\n",
      "          'queen': 1,\n",
      "          'desert': 1,\n",
      "          'go': 1,\n",
      "          'brood': 1,\n",
      "          'maladjusted': 1,\n",
      "          'sexuality': 1,\n",
      "          'lowlife': 1,\n",
      "          'deadbeat': 1,\n",
      "          'nkim': 1,\n",
      "          'postoperative': 1,\n",
      "          'thank': 1,\n",
      "          'na': 1,\n",
      "          'newborn': 1,\n",
      "          'purposes': 1,\n",
      "          'confusions': 1,\n",
      "          'sensitivities': 1,\n",
      "          'deserve': 1,\n",
      "          'treatment': 1,\n",
      "          'touch': 1,\n",
      "          'delicacy': 1,\n",
      "          'npersonally': 1,\n",
      "          'day': 1,\n",
      "          'nid': 1,\n",
      "          'rather': 1,\n",
      "          'enjoy': 1,\n",
      "          'obvious': 1,\n",
      "          'camp': 1,\n",
      "          'endure': 1,\n",
      "          'shallow': 1,\n",
      "          'exploration': 1,\n",
      "          'soft': 1,\n",
      "          'hearted': 1,\n",
      "          'ndifferent': 1,\n",
      "          'comes': 1,\n",
      "          'promising': 1,\n",
      "          'proposition': 1,\n",
      "          'nothing': 1,\n",
      "          'surpasses': 1,\n",
      "          'merely': 1,\n",
      "          'workmanlike': 1,\n",
      "          'nby': 1,\n",
      "          'refusing': 1,\n",
      "          'audience': 1,\n",
      "          'really': 1,\n",
      "          'notion': 1,\n",
      "          'prentices': 1,\n",
      "          'relation': 1,\n",
      "          'ship': 1,\n",
      "          'least': 1,\n",
      "          'feel': 1,\n",
      "          'example': 1,\n",
      "          'seem': 1,\n",
      "          'hiself': 1,\n",
      "          'grief': 1,\n",
      "          'becomes': 1,\n",
      "          'attracted': 1,\n",
      "          'despite': 1,\n",
      "          'fightpicking': 1,\n",
      "          'beerdrinking': 1,\n",
      "          'macho': 1,\n",
      "          'kind': 1,\n",
      "          'fears': 1,\n",
      "          'always': 1,\n",
      "          'truly': 1,\n",
      "          'disturbing': 1,\n",
      "          'victimisation': 1,\n",
      "          'instead': 1,\n",
      "          'drawing': 1,\n",
      "          'basically': 1,\n",
      "          'wimpy': 1,\n",
      "          'manages': 1,\n",
      "          'lobotomise': 1,\n",
      "          'nlightweight': 1,\n",
      "          'doomed': 1,\n",
      "          'couldve': 1,\n",
      "          'hacked': 1,\n",
      "          'requisitive': 1,\n",
      "          'endearing': 1,\n",
      "          'since': 1,\n",
      "          'even': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'mrs': 1,\n",
      "          'doubtfire': 1,\n",
      "          'sexier': 1,\n",
      "          'steven': 1,\n",
      "          'mackintoshs': 1,\n",
      "          'foyle': 1,\n",
      "          'sex': 1,\n",
      "          'plainly': 1,\n",
      "          'simpering': 1,\n",
      "          'wanker': 1,\n",
      "          'nobody': 1,\n",
      "          'nprentice': 1,\n",
      "          'though': 1,\n",
      "          'explained': 1,\n",
      "          'rupert': 1,\n",
      "          'graves': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'heroic': 1,\n",
      "          'performance': 1,\n",
      "          'grew': 1,\n",
      "          'bafta': 1,\n",
      "          'prize': 1,\n",
      "          'convincing': 1,\n",
      "          'portrayal': 1,\n",
      "          'rabid': 1,\n",
      "          'fan': 1,\n",
      "          'buzzcocks': 1,\n",
      "          'concert': 1,\n",
      "          'win': 1,\n",
      "          'guess': 1,\n",
      "          'theres': 1,\n",
      "          'reason': 1,\n",
      "          'explain': 1,\n",
      "          'screwed': 1,\n",
      "          'oddly': 1,\n",
      "          'grow': 1,\n",
      "          'show': 1,\n",
      "          'youll': 1,\n",
      "          'wanting': 1,\n",
      "          'happy': 1,\n",
      "          'wont': 1,\n",
      "          'fail': 1,\n",
      "          'nsnide': 1,\n",
      "          'underling': 1,\n",
      "          'office': 1,\n",
      "          'nmisogynistic': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'beats': 1,\n",
      "          'prevail': 1,\n",
      "          'disagreeable': 1,\n",
      "          'society': 1,\n",
      "          'come': 1,\n",
      "          'apartment': 1,\n",
      "          'nkims': 1,\n",
      "          'sister': 1,\n",
      "          'impotent': 1,\n",
      "          'sargetype': 1,\n",
      "          'husband': 1,\n",
      "          'kiss': 1,\n",
      "          'tiff': 1,\n",
      "          'tv': 1,\n",
      "          'movie': 1,\n",
      "          'subplot': 1,\n",
      "          'incidental': 1,\n",
      "          'juxtaposition': 1,\n",
      "          'nand': 1,\n",
      "          'best': 1,\n",
      "          'sheds': 1,\n",
      "          'learns': 1,\n",
      "          'motorcycle': 1,\n",
      "          'wear': 1,\n",
      "          'leathers': 1,\n",
      "          'making': 1,\n",
      "          'pilion': 1,\n",
      "          'nawwww': 1,\n",
      "          'nterrific': 1,\n",
      "          'closure': 1,\n",
      "          'nhappy': 1,\n",
      "          'differnt': 1,\n",
      "          'anyway': 1,\n",
      "          'figure': 1,\n",
      "          'one': 1,\n",
      "          'let': 1,\n",
      "          'know': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'creaky': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'elizabeth': 6,\n",
      "          'film': 4,\n",
      "          'wife': 4,\n",
      "          'hotel': 4,\n",
      "          'nhe': 4,\n",
      "          'police': 4,\n",
      "          'comedy': 3,\n",
      "          'jeff': 3,\n",
      "          'plan': 3,\n",
      "          'room': 3,\n",
      "          'gun': 3,\n",
      "          'pillow': 3,\n",
      "          'nthe': 3,\n",
      "          'story': 3,\n",
      "          'mountain': 3,\n",
      "          'black': 2,\n",
      "          'like': 2,\n",
      "          'pigeon': 2,\n",
      "          'goldblum': 2,\n",
      "          'water': 2,\n",
      "          'married': 2,\n",
      "          'mimi': 2,\n",
      "          'rogers': 2,\n",
      "          'surprise': 2,\n",
      "          'party': 2,\n",
      "          'coming': 2,\n",
      "          'going': 2,\n",
      "          'mostly': 2,\n",
      "          'effort': 2,\n",
      "          'nervously': 2,\n",
      "          'murder': 2,\n",
      "          'goes': 2,\n",
      "          'staff': 2,\n",
      "          'gunshot': 2,\n",
      "          'nbut': 2,\n",
      "          'telling': 2,\n",
      "          'nhis': 2,\n",
      "          'boss': 2,\n",
      "          'gets': 2,\n",
      "          'find': 2,\n",
      "          'nit': 2,\n",
      "          'humor': 2,\n",
      "          'situation': 2,\n",
      "          'many': 2,\n",
      "          'silly': 1,\n",
      "          'tries': 1,\n",
      "          'plays': 1,\n",
      "          'lightweight': 1,\n",
      "          'main': 1,\n",
      "          'asset': 1,\n",
      "          'beautiful': 1,\n",
      "          'location': 1,\n",
      "          'along': 1,\n",
      "          'spains': 1,\n",
      "          'mountainous': 1,\n",
      "          'coastline': 1,\n",
      "          'nhoward': 1,\n",
      "          '40yearold': 1,\n",
      "          'mineral': 1,\n",
      "          'salesman': 1,\n",
      "          '13': 1,\n",
      "          'years': 1,\n",
      "          'constantly': 1,\n",
      "          'nagging': 1,\n",
      "          'nafter': 1,\n",
      "          'birthday': 1,\n",
      "          'bawls': 1,\n",
      "          'late': 1,\n",
      "          'confides': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'anymore': 1,\n",
      "          'tells': 1,\n",
      "          'kill': 1,\n",
      "          'vacationing': 1,\n",
      "          'barcelona': 1,\n",
      "          'spent': 1,\n",
      "          'honeymoon': 1,\n",
      "          'njeff': 1,\n",
      "          'severe': 1,\n",
      "          'midlife': 1,\n",
      "          'crises': 1,\n",
      "          'worried': 1,\n",
      "          'looks': 1,\n",
      "          'older': 1,\n",
      "          'age': 1,\n",
      "          'incessantly': 1,\n",
      "          'talks': 1,\n",
      "          'agonizing': 1,\n",
      "          'bitter': 1,\n",
      "          'marriage': 1,\n",
      "          'chastising': 1,\n",
      "          'went': 1,\n",
      "          'second': 1,\n",
      "          'time': 1,\n",
      "          'laughed': 1,\n",
      "          'jokes': 1,\n",
      "          'attractive': 1,\n",
      "          'stutters': 1,\n",
      "          'acts': 1,\n",
      "          'man': 1,\n",
      "          'lost': 1,\n",
      "          'confidence': 1,\n",
      "          'nthings': 1,\n",
      "          'change': 1,\n",
      "          'vacation': 1,\n",
      "          'makes': 1,\n",
      "          'nice': 1,\n",
      "          'becomes': 1,\n",
      "          'grouch': 1,\n",
      "          'rehearses': 1,\n",
      "          'nby': 1,\n",
      "          'accident': 1,\n",
      "          'imagined': 1,\n",
      "          'would': 1,\n",
      "          'sitting': 1,\n",
      "          'nwhen': 1,\n",
      "          'guests': 1,\n",
      "          'come': 1,\n",
      "          'check': 1,\n",
      "          'explains': 1,\n",
      "          'tv': 1,\n",
      "          'nrealizing': 1,\n",
      "          'unworkable': 1,\n",
      "          'places': 1,\n",
      "          'shattered': 1,\n",
      "          'throws': 1,\n",
      "          'ocean': 1,\n",
      "          'waits': 1,\n",
      "          'found': 1,\n",
      "          'behavior': 1,\n",
      "          'odd': 1,\n",
      "          'entire': 1,\n",
      "          'trip': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'get': 1,\n",
      "          'reservation': 1,\n",
      "          'hotels': 1,\n",
      "          '5': 1,\n",
      "          'star': 1,\n",
      "          'restaurant': 1,\n",
      "          'insists': 1,\n",
      "          'eating': 1,\n",
      "          'decides': 1,\n",
      "          'enough': 1,\n",
      "          'checks': 1,\n",
      "          'without': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'report': 1,\n",
      "          'missing': 1,\n",
      "          'nwhile': 1,\n",
      "          'telegram': 1,\n",
      "          'comes': 1,\n",
      "          'saying': 1,\n",
      "          'left': 1,\n",
      "          'away': 1,\n",
      "          'wants': 1,\n",
      "          'alone': 1,\n",
      "          'works': 1,\n",
      "          'sympathetic': 1,\n",
      "          'job': 1,\n",
      "          'promotion': 1,\n",
      "          'soon': 1,\n",
      "          'fished': 1,\n",
      "          'giving': 1,\n",
      "          'cause': 1,\n",
      "          'arrest': 1,\n",
      "          'search': 1,\n",
      "          'home': 1,\n",
      "          'nthere': 1,\n",
      "          'letters': 1,\n",
      "          'written': 1,\n",
      "          'incriminating': 1,\n",
      "          'also': 1,\n",
      "          'heard': 1,\n",
      "          'nin': 1,\n",
      "          'jail': 1,\n",
      "          'things': 1,\n",
      "          'look': 1,\n",
      "          'bad': 1,\n",
      "          'nno': 1,\n",
      "          'one': 1,\n",
      "          'believes': 1,\n",
      "          'including': 1,\n",
      "          'friends': 1,\n",
      "          'lawyer': 1,\n",
      "          'fires': 1,\n",
      "          'papers': 1,\n",
      "          'field': 1,\n",
      "          'day': 1,\n",
      "          'headline': 1,\n",
      "          'jailbird': 1,\n",
      "          'nout': 1,\n",
      "          'bail': 1,\n",
      "          'realizes': 1,\n",
      "          'hope': 1,\n",
      "          'track': 1,\n",
      "          'nthrough': 1,\n",
      "          'call': 1,\n",
      "          'placed': 1,\n",
      "          'credit': 1,\n",
      "          'card': 1,\n",
      "          'tracks': 1,\n",
      "          'resort': 1,\n",
      "          'nonce': 1,\n",
      "          'learns': 1,\n",
      "          'took': 1,\n",
      "          'hike': 1,\n",
      "          'steep': 1,\n",
      "          'priest': 1,\n",
      "          'guide': 1,\n",
      "          'true': 1,\n",
      "          'watchable': 1,\n",
      "          'antics': 1,\n",
      "          'comic': 1,\n",
      "          'performance': 1,\n",
      "          'someone': 1,\n",
      "          'apart': 1,\n",
      "          'seams': 1,\n",
      "          'perfect': 1,\n",
      "          'foil': 1,\n",
      "          'pantomine': 1,\n",
      "          'charged': 1,\n",
      "          'changing': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'characters': 1,\n",
      "          'absurdity': 1,\n",
      "          'na': 1,\n",
      "          'minor': 1,\n",
      "          'farce': 1,\n",
      "          'might': 1,\n",
      "          'appeal': 1,\n",
      "          'sitcom': 1,\n",
      "          'crowd': 1,\n",
      "          'didnt': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'gaps': 1,\n",
      "          'chance': 1,\n",
      "          'develop': 1,\n",
      "          'instead': 1,\n",
      "          'played': 1,\n",
      "          'setup': 1,\n",
      "          'henpecked': 1,\n",
      "          'husband': 1,\n",
      "          'acting': 1,\n",
      "          'fantasy': 1,\n",
      "          'strictly': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'see': 1,\n",
      "          'chuckles': 1,\n",
      "          'could': 1,\n",
      "          'draw': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 18,\n",
      "          'scary': 13,\n",
      "          'film': 11,\n",
      "          'nand': 9,\n",
      "          'see': 6,\n",
      "          'nothing': 6,\n",
      "          'ni': 6,\n",
      "          'like': 6,\n",
      "          'think': 6,\n",
      "          'blair': 5,\n",
      "          'witch': 5,\n",
      "          'filmmakers': 5,\n",
      "          'could': 5,\n",
      "          'hear': 5,\n",
      "          'minutes': 5,\n",
      "          'nthis': 5,\n",
      "          'nthe': 4,\n",
      "          'time': 4,\n",
      "          'real': 4,\n",
      "          'even': 4,\n",
      "          'thought': 4,\n",
      "          'n': 4,\n",
      "          'people': 4,\n",
      "          'nbut': 4,\n",
      "          'one': 4,\n",
      "          'imagination': 4,\n",
      "          'something': 4,\n",
      "          'thats': 4,\n",
      "          'scariest': 3,\n",
      "          'want': 3,\n",
      "          'creepy': 3,\n",
      "          'nwell': 3,\n",
      "          'say': 3,\n",
      "          'scared': 3,\n",
      "          'talking': 3,\n",
      "          'kids': 3,\n",
      "          'lost': 3,\n",
      "          'called': 3,\n",
      "          'dont': 3,\n",
      "          'good': 3,\n",
      "          'supposed': 3,\n",
      "          'use': 3,\n",
      "          'life': 3,\n",
      "          'project': 2,\n",
      "          'possibly': 2,\n",
      "          'nif': 2,\n",
      "          'terror': 2,\n",
      "          'big': 2,\n",
      "          'screen': 2,\n",
      "          'jar': 2,\n",
      "          'less': 2,\n",
      "          'must': 2,\n",
      "          'pay': 2,\n",
      "          '5': 2,\n",
      "          'well': 2,\n",
      "          'guess': 2,\n",
      "          'shadow': 2,\n",
      "          'nthere': 2,\n",
      "          'maybe': 2,\n",
      "          'praising': 2,\n",
      "          'never': 2,\n",
      "          'makes': 2,\n",
      "          'three': 2,\n",
      "          'nthey': 2,\n",
      "          'scenes': 2,\n",
      "          'josh': 2,\n",
      "          'get': 2,\n",
      "          'noh': 2,\n",
      "          'fear': 2,\n",
      "          'marketing': 2,\n",
      "          'anything': 2,\n",
      "          'nthat': 2,\n",
      "          'better': 2,\n",
      "          'arguing': 2,\n",
      "          'point': 2,\n",
      "          'nive': 2,\n",
      "          'heard': 2,\n",
      "          'create': 2,\n",
      "          'things': 2,\n",
      "          'nyou': 2,\n",
      "          'wouldnt': 2,\n",
      "          'cant': 2,\n",
      "          'way': 2,\n",
      "          'know': 2,\n",
      "          'camera': 2,\n",
      "          'shoot': 2,\n",
      "          'nim': 2,\n",
      "          'going': 2,\n",
      "          'shot': 2,\n",
      "          'prison': 2,\n",
      "          'warned': 1,\n",
      "          'following': 1,\n",
      "          'review': 1,\n",
      "          'contains': 1,\n",
      "          'harsh': 1,\n",
      "          'language': 1,\n",
      "          'nquite': 1,\n",
      "          'least': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'watch': 1,\n",
      "          'scene': 1,\n",
      "          'binks': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'remotely': 1,\n",
      "          'nmy': 1,\n",
      "          'colleague': 1,\n",
      "          'friend': 1,\n",
      "          'chuck': 1,\n",
      "          'dowling': 1,\n",
      "          'wrote': 1,\n",
      "          'worked': 1,\n",
      "          'im': 1,\n",
      "          'sorry': 1,\n",
      "          'nis': 1,\n",
      "          'nnothing': 1,\n",
      "          'nits': 1,\n",
      "          'nothiiiiiinggggggggggg': 1,\n",
      "          'dollars': 1,\n",
      "          'free': 1,\n",
      "          'available': 1,\n",
      "          'around': 1,\n",
      "          'world': 1,\n",
      "          'location': 1,\n",
      "          'near': 1,\n",
      "          'absolutely': 1,\n",
      "          'amazement': 1,\n",
      "          'find': 1,\n",
      "          'discount': 1,\n",
      "          'pansy': 1,\n",
      "          'chicken': 1,\n",
      "          'shits': 1,\n",
      "          'probably': 1,\n",
      "          'intelligent': 1,\n",
      "          'friends': 1,\n",
      "          'doesnt': 1,\n",
      "          'hold': 1,\n",
      "          'water': 1,\n",
      "          'reason': 1,\n",
      "          'first': 1,\n",
      "          'correct': 1,\n",
      "          'ill': 1,\n",
      "          'try': 1,\n",
      "          'pointing': 1,\n",
      "          'day': 1,\n",
      "          'test': 1,\n",
      "          'reaction': 1,\n",
      "          'nwhen': 1,\n",
      "          '97': 1,\n",
      "          'bickering': 1,\n",
      "          'talk': 1,\n",
      "          'might': 1,\n",
      "          'make': 1,\n",
      "          '3': 1,\n",
      "          '4': 1,\n",
      "          'short': 1,\n",
      "          'night': 1,\n",
      "          'unscary': 1,\n",
      "          'sounds': 1,\n",
      "          'another': 1,\n",
      "          'shout': 1,\n",
      "          'nover': 1,\n",
      "          'accurately': 1,\n",
      "          'dumb': 1,\n",
      "          'pisspoor': 1,\n",
      "          'argue': 1,\n",
      "          'ladies': 1,\n",
      "          'gentlemen': 1,\n",
      "          'shouting': 1,\n",
      "          'wait': 1,\n",
      "          'till': 1,\n",
      "          'pile': 1,\n",
      "          'rocks': 1,\n",
      "          'tinkertoy': 1,\n",
      "          'lincoln': 1,\n",
      "          'logs': 1,\n",
      "          'oh': 1,\n",
      "          'dear': 1,\n",
      "          'lord': 1,\n",
      "          'pissing': 1,\n",
      "          'pants': 1,\n",
      "          'yeah': 1,\n",
      "          'goo': 1,\n",
      "          'backpacks': 1,\n",
      "          'nyouve': 1,\n",
      "          'seen': 1,\n",
      "          'folks': 1,\n",
      "          'chevy': 1,\n",
      "          'chasegoldie': 1,\n",
      "          'hawn': 1,\n",
      "          'comedy': 1,\n",
      "          'foul': 1,\n",
      "          'play': 1,\n",
      "          'creepier': 1,\n",
      "          'current': 1,\n",
      "          'films': 1,\n",
      "          'highly': 1,\n",
      "          'recommend': 1,\n",
      "          'sixth': 1,\n",
      "          'sense': 1,\n",
      "          'stir': 1,\n",
      "          'echoes': 1,\n",
      "          'filmgoing': 1,\n",
      "          'experience': 1,\n",
      "          'example': 1,\n",
      "          'substance': 1,\n",
      "          'brilliant': 1,\n",
      "          'whole': 1,\n",
      "          'nation': 1,\n",
      "          'awe': 1,\n",
      "          'premise': 1,\n",
      "          'reaching': 1,\n",
      "          'wrong': 1,\n",
      "          'else': 1,\n",
      "          'praise': 1,\n",
      "          'wonderful': 1,\n",
      "          'rejuvenates': 1,\n",
      "          'horror': 1,\n",
      "          'genre': 1,\n",
      "          'may': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'much': 1,\n",
      "          'njust': 1,\n",
      "          '10': 1,\n",
      "          '80': 1,\n",
      "          'nighttime': 1,\n",
      "          'stuff': 1,\n",
      "          'saw': 1,\n",
      "          'girl': 1,\n",
      "          'extremely': 1,\n",
      "          'pumped': 1,\n",
      "          'nshe': 1,\n",
      "          'sold': 1,\n",
      "          'turned': 1,\n",
      "          'asked': 1,\n",
      "          'nwe': 1,\n",
      "          'opinion': 1,\n",
      "          'nuse': 1,\n",
      "          'mean': 1,\n",
      "          'anyone': 1,\n",
      "          'bucks': 1,\n",
      "          'idea': 1,\n",
      "          'imagining': 1,\n",
      "          'nan': 1,\n",
      "          'entity': 1,\n",
      "          'nsome': 1,\n",
      "          'rednecks': 1,\n",
      "          'fucking': 1,\n",
      "          'nare': 1,\n",
      "          'either': 1,\n",
      "          'really': 1,\n",
      "          'several': 1,\n",
      "          'recall': 1,\n",
      "          'woods': 1,\n",
      "          'sure': 1,\n",
      "          'lot': 1,\n",
      "          'interesting': 1,\n",
      "          'sit': 1,\n",
      "          'house': 1,\n",
      "          'snake': 1,\n",
      "          'spider': 1,\n",
      "          'need': 1,\n",
      "          'budget': 1,\n",
      "          'cgi': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nactually': 1,\n",
      "          'equally': 1,\n",
      "          'awful': 1,\n",
      "          'remake': 1,\n",
      "          'haunting': 1,\n",
      "          'count': 1,\n",
      "          'us': 1,\n",
      "          'nostalgic': 1,\n",
      "          'memories': 1,\n",
      "          'shakycam': 1,\n",
      "          'filming': 1,\n",
      "          'narent': 1,\n",
      "          'without': 1,\n",
      "          'shaking': 1,\n",
      "          'constantly': 1,\n",
      "          'couple': 1,\n",
      "          'terrified': 1,\n",
      "          'justified': 1,\n",
      "          '87': 1,\n",
      "          'seem': 1,\n",
      "          'smoothly': 1,\n",
      "          'nminor': 1,\n",
      "          'quibble': 1,\n",
      "          'feeling': 1,\n",
      "          'suckers': 1,\n",
      "          'laughing': 1,\n",
      "          'asses': 1,\n",
      "          'bank': 1,\n",
      "          'chance': 1,\n",
      "          'thinking': 1,\n",
      "          'fine': 1,\n",
      "          'works': 1,\n",
      "          'okay': 1,\n",
      "          'lament': 1,\n",
      "          'making': 1,\n",
      "          'hit': 1,\n",
      "          'subjected': 1,\n",
      "          'approach': 1,\n",
      "          'npretty': 1,\n",
      "          'soon': 1,\n",
      "          'movies': 1,\n",
      "          'still': 1,\n",
      "          'jail': 1,\n",
      "          'cell': 1,\n",
      "          'nfor': 1,\n",
      "          '90': 1,\n",
      "          'god': 1,\n",
      "          'spend': 1,\n",
      "          'coffin': 1,\n",
      "          'funeral': 1,\n",
      "          'directors': 1,\n",
      "          'man': 1,\n",
      "          'would': 1,\n",
      "          'die': 1,\n",
      "          'nnow': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'train': 10,\n",
      "          'jamie': 6,\n",
      "          'lee': 6,\n",
      "          'terror': 4,\n",
      "          'one': 4,\n",
      "          'halloween': 3,\n",
      "          'nthe': 3,\n",
      "          'guy': 3,\n",
      "          'mask': 3,\n",
      "          'years': 3,\n",
      "          'conductor': 3,\n",
      "          'even': 3,\n",
      "          'time': 3,\n",
      "          'someone': 3,\n",
      "          'station': 3,\n",
      "          'trick': 3,\n",
      "          'bed': 3,\n",
      "          'four': 2,\n",
      "          'movies': 2,\n",
      "          'curtis': 2,\n",
      "          'ntwo': 2,\n",
      "          'prom': 2,\n",
      "          'night': 2,\n",
      "          'god': 2,\n",
      "          'theres': 2,\n",
      "          'nterror': 2,\n",
      "          'students': 2,\n",
      "          'first': 2,\n",
      "          'make': 2,\n",
      "          'hes': 2,\n",
      "          'last': 2,\n",
      "          'built': 2,\n",
      "          'shopping': 2,\n",
      "          'mall': 2,\n",
      "          'next': 2,\n",
      "          'makes': 2,\n",
      "          'body': 2,\n",
      "          'ni': 2,\n",
      "          'nits': 2,\n",
      "          'laid': 2,\n",
      "          'nshe': 2,\n",
      "          'says': 2,\n",
      "          'kenny': 2,\n",
      "          'still': 2,\n",
      "          'groucho': 2,\n",
      "          'killer': 2,\n",
      "          'aboard': 2,\n",
      "          'looks': 2,\n",
      "          'like': 2,\n",
      "          'movie': 2,\n",
      "          'david': 2,\n",
      "          'copperfield': 2,\n",
      "          'set': 2,\n",
      "          'fans': 2,\n",
      "          'earned': 1,\n",
      "          'title': 1,\n",
      "          'scream': 1,\n",
      "          'queen': 1,\n",
      "          'early': 1,\n",
      "          '80s': 1,\n",
      "          'two': 1,\n",
      "          'uninspired': 1,\n",
      "          'knockoffs': 1,\n",
      "          'came': 1,\n",
      "          'directly': 1,\n",
      "          'success': 1,\n",
      "          'im': 1,\n",
      "          'scared': 1,\n",
      "          'coming': 1,\n",
      "          'routine': 1,\n",
      "          'john': 1,\n",
      "          'carpenters': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'classic': 1,\n",
      "          'copies': 1,\n",
      "          'none': 1,\n",
      "          'urgency': 1,\n",
      "          'suspense': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'else': 1,\n",
      "          'charted': 1,\n",
      "          'premed': 1,\n",
      "          'finishing': 1,\n",
      "          'higher': 1,\n",
      "          'education': 1,\n",
      "          'nmost': 1,\n",
      "          'wont': 1,\n",
      "          'med': 1,\n",
      "          'school': 1,\n",
      "          'though': 1,\n",
      "          'obvious': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'done': 1,\n",
      "          'complains': 1,\n",
      "          'wish': 1,\n",
      "          'hell': 1,\n",
      "          'theyd': 1,\n",
      "          'put': 1,\n",
      "          'radio': 1,\n",
      "          'character': 1,\n",
      "          'probably': 1,\n",
      "          'lines': 1,\n",
      "          'anyone': 1,\n",
      "          'nfrom': 1,\n",
      "          'beginning': 1,\n",
      "          'talking': 1,\n",
      "          'head': 1,\n",
      "          'tells': 1,\n",
      "          'coworkers': 1,\n",
      "          'think': 1,\n",
      "          'whens': 1,\n",
      "          'nas': 1,\n",
      "          'kind': 1,\n",
      "          'sense': 1,\n",
      "          'gets': 1,\n",
      "          'better': 1,\n",
      "          'engages': 1,\n",
      "          'argument': 1,\n",
      "          'benefits': 1,\n",
      "          'railroad': 1,\n",
      "          'recreational': 1,\n",
      "          'vehicles': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'loudmouth': 1,\n",
      "          'person': 1,\n",
      "          'find': 1,\n",
      "          'bloody': 1,\n",
      "          'gone': 1,\n",
      "          'brings': 1,\n",
      "          'skeptical': 1,\n",
      "          'trainman': 1,\n",
      "          'back': 1,\n",
      "          'view': 1,\n",
      "          'forgot': 1,\n",
      "          'mention': 1,\n",
      "          'prologue': 1,\n",
      "          'party': 1,\n",
      "          'three': 1,\n",
      "          'earlier': 1,\n",
      "          'group': 1,\n",
      "          'play': 1,\n",
      "          'geeky': 1,\n",
      "          'frat': 1,\n",
      "          'pledge': 1,\n",
      "          'promising': 1,\n",
      "          'going': 1,\n",
      "          'get': 1,\n",
      "          'nthey': 1,\n",
      "          'send': 1,\n",
      "          'stand': 1,\n",
      "          'behind': 1,\n",
      "          'talk': 1,\n",
      "          'geek': 1,\n",
      "          'comes': 1,\n",
      "          'noticing': 1,\n",
      "          'form': 1,\n",
      "          'kiss': 1,\n",
      "          'kisses': 1,\n",
      "          'happens': 1,\n",
      "          'cadaver': 1,\n",
      "          'n': 1,\n",
      "          'oh': 1,\n",
      "          'killed': 1,\n",
      "          'nyou': 1,\n",
      "          'bastards': 1,\n",
      "          'sick': 1,\n",
      "          'wasnt': 1,\n",
      "          'let': 1,\n",
      "          'hasnt': 1,\n",
      "          'forgiven': 1,\n",
      "          'board': 1,\n",
      "          'asshole': 1,\n",
      "          'cant': 1,\n",
      "          'good': 1,\n",
      "          'without': 1,\n",
      "          'hurting': 1,\n",
      "          'somebody': 1,\n",
      "          'killing': 1,\n",
      "          'starts': 1,\n",
      "          'leaves': 1,\n",
      "          'nsince': 1,\n",
      "          'new': 1,\n",
      "          'everyones': 1,\n",
      "          'wearing': 1,\n",
      "          'disguises': 1,\n",
      "          'convenient': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'stabs': 1,\n",
      "          'ones': 1,\n",
      "          'looking': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'characters': 1,\n",
      "          'dons': 1,\n",
      "          'steps': 1,\n",
      "          'gene': 1,\n",
      "          'shalit': 1,\n",
      "          'way': 1,\n",
      "          'would': 1,\n",
      "          'great': 1,\n",
      "          'slasher': 1,\n",
      "          'nspeaking': 1,\n",
      "          'weirdlooking': 1,\n",
      "          'dorks': 1,\n",
      "          'persist': 1,\n",
      "          'entertainment': 1,\n",
      "          'scene': 1,\n",
      "          'trains': 1,\n",
      "          'famous': 1,\n",
      "          'gimmicks': 1,\n",
      "          'appearance': 1,\n",
      "          'magician': 1,\n",
      "          'regails': 1,\n",
      "          'illusions': 1,\n",
      "          'disco': 1,\n",
      "          'music': 1,\n",
      "          'nthen': 1,\n",
      "          'greatest': 1,\n",
      "          'getting': 1,\n",
      "          'hair': 1,\n",
      "          'nfor': 1,\n",
      "          'attempts': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'lionel': 1,\n",
      "          'amtrak': 1,\n",
      "          'nothing': 1,\n",
      "          'really': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'nonly': 1,\n",
      "          'diehard': 1,\n",
      "          'truly': 1,\n",
      "          'attempt': 1,\n",
      "          'watch': 1,\n",
      "          'nand': 1,\n",
      "          'wonder': 1,\n",
      "          'horror': 1,\n",
      "          'rv': 1,\n",
      "          'could': 1,\n",
      "          'much': 1,\n",
      "          'worse': 1,\n",
      "          'mean': 1,\n",
      "          'anyway': 1,\n",
      "          'definitely': 1,\n",
      "          'cinematic': 1,\n",
      "          'equivalent': 1,\n",
      "          'sleeper': 1,\n",
      "          'car': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'played': 4,\n",
      "          'storm': 3,\n",
      "          'film': 3,\n",
      "          'filmmakers': 2,\n",
      "          'american': 2,\n",
      "          'beginning': 2,\n",
      "          'eye': 2,\n",
      "          'zeltser': 2,\n",
      "          'one': 2,\n",
      "          'gregg': 2,\n",
      "          'motel': 2,\n",
      "          'sheffer': 2,\n",
      "          'alcoholic': 2,\n",
      "          'hopper': 2,\n",
      "          'boyle': 2,\n",
      "          'presence': 2,\n",
      "          'end': 2,\n",
      "          'psycho': 2,\n",
      "          'original': 2,\n",
      "          'according': 1,\n",
      "          'hitchcock': 1,\n",
      "          'various': 1,\n",
      "          'isolated': 1,\n",
      "          'motels': 1,\n",
      "          'diners': 1,\n",
      "          'gas': 1,\n",
      "          'stations': 1,\n",
      "          'similar': 1,\n",
      "          'establishments': 1,\n",
      "          'southwest': 1,\n",
      "          'rather': 1,\n",
      "          'dangerous': 1,\n",
      "          'place': 1,\n",
      "          'weary': 1,\n",
      "          'travellers': 1,\n",
      "          'nat': 1,\n",
      "          '1991': 1,\n",
      "          'german': 1,\n",
      "          'thriller': 1,\n",
      "          'directed': 1,\n",
      "          'yuri': 1,\n",
      "          'places': 1,\n",
      "          'becomes': 1,\n",
      "          'deadly': 1,\n",
      "          'owners': 1,\n",
      "          'get': 1,\n",
      "          'murdered': 1,\n",
      "          'stick': 1,\n",
      "          'nten': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'son': 1,\n",
      "          'steven': 1,\n",
      "          'bradley': 1,\n",
      "          'blinded': 1,\n",
      "          'incident': 1,\n",
      "          'still': 1,\n",
      "          'runs': 1,\n",
      "          'together': 1,\n",
      "          'older': 1,\n",
      "          'brother': 1,\n",
      "          'ray': 1,\n",
      "          'craig': 1,\n",
      "          'nhardly': 1,\n",
      "          'anything': 1,\n",
      "          'happens': 1,\n",
      "          'abusive': 1,\n",
      "          'william': 1,\n",
      "          'gladstone': 1,\n",
      "          'dennis': 1,\n",
      "          'gets': 1,\n",
      "          'stranded': 1,\n",
      "          'attractive': 1,\n",
      "          'wife': 1,\n",
      "          'sandra': 1,\n",
      "          'lara': 1,\n",
      "          'flynn': 1,\n",
      "          'ntheir': 1,\n",
      "          'unexpected': 1,\n",
      "          'creates': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'would': 1,\n",
      "          'bloodshed': 1,\n",
      "          'nyuri': 1,\n",
      "          'author': 1,\n",
      "          'obviously': 1,\n",
      "          'inspired': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'chose': 1,\n",
      "          'add': 1,\n",
      "          'new': 1,\n",
      "          'potentially': 1,\n",
      "          'interesting': 1,\n",
      "          'elements': 1,\n",
      "          'plot': 1,\n",
      "          'ninstead': 1,\n",
      "          'norman': 1,\n",
      "          'bates': 1,\n",
      "          'two': 1,\n",
      "          'brothers': 1,\n",
      "          'traumatised': 1,\n",
      "          'physically': 1,\n",
      "          'another': 1,\n",
      "          'mentally': 1,\n",
      "          'nsexual': 1,\n",
      "          'tension': 1,\n",
      "          'beautiful': 1,\n",
      "          'female': 1,\n",
      "          'patron': 1,\n",
      "          'shy': 1,\n",
      "          'clerk': 1,\n",
      "          'heightened': 1,\n",
      "          'husband': 1,\n",
      "          'neye': 1,\n",
      "          'impressive': 1,\n",
      "          'visual': 1,\n",
      "          'sense': 1,\n",
      "          'photography': 1,\n",
      "          'karl': 1,\n",
      "          'walter': 1,\n",
      "          'lindenlaub': 1,\n",
      "          'providing': 1,\n",
      "          'lot': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nthe': 1,\n",
      "          'acting': 1,\n",
      "          'fine': 1,\n",
      "          'comfortable': 1,\n",
      "          'roles': 1,\n",
      "          'times': 1,\n",
      "          'overacts': 1,\n",
      "          'routine': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'supposed': 1,\n",
      "          'intense': 1,\n",
      "          'psychological': 1,\n",
      "          'drama': 1,\n",
      "          'deteriorates': 1,\n",
      "          'cheap': 1,\n",
      "          'predictable': 1,\n",
      "          'slasher': 1,\n",
      "          'flick': 1,\n",
      "          'melodramatic': 1,\n",
      "          'finale': 1,\n",
      "          'nin': 1,\n",
      "          'reminds': 1,\n",
      "          'us': 1,\n",
      "          'approach': 1,\n",
      "          'cant': 1,\n",
      "          'prevent': 1,\n",
      "          'wasting': 1,\n",
      "          'many': 1,\n",
      "          'opportunities': 1,\n",
      "          'n': 1,\n",
      "          'special': 1,\n",
      "          'note': 1,\n",
      "          'profiler': 1,\n",
      "          'fans': 1,\n",
      "          'ally': 1,\n",
      "          'walker': 1,\n",
      "          'appears': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'killers': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'little': 4,\n",
      "          'could': 4,\n",
      "          'doesnt': 4,\n",
      "          'tough': 3,\n",
      "          'gruff': 3,\n",
      "          'performance': 3,\n",
      "          'whats': 3,\n",
      "          'worst': 3,\n",
      "          'happen': 3,\n",
      "          'nin': 3,\n",
      "          'film': 3,\n",
      "          'fichtner': 3,\n",
      "          'borders': 3,\n",
      "          'william': 2,\n",
      "          'fichtners': 2,\n",
      "          'hes': 2,\n",
      "          'played': 2,\n",
      "          'roles': 2,\n",
      "          'bit': 2,\n",
      "          'even': 2,\n",
      "          'appearance': 2,\n",
      "          'towards': 2,\n",
      "          'actor': 2,\n",
      "          'nis': 2,\n",
      "          'stars': 2,\n",
      "          'youve': 1,\n",
      "          'following': 1,\n",
      "          'career': 1,\n",
      "          'theres': 1,\n",
      "          'absolutely': 1,\n",
      "          'reason': 1,\n",
      "          'might': 1,\n",
      "          'noticed': 1,\n",
      "          'rather': 1,\n",
      "          'similar': 1,\n",
      "          'years': 1,\n",
      "          'nlike': 1,\n",
      "          'sully': 1,\n",
      "          'perfect': 1,\n",
      "          'storm': 1,\n",
      "          'scary': 1,\n",
      "          'law': 1,\n",
      "          'albino': 1,\n",
      "          'alligator': 1,\n",
      "          'scarier': 1,\n",
      "          'colonel': 1,\n",
      "          'sharp': 1,\n",
      "          'armageddon': 1,\n",
      "          'dwayne': 1,\n",
      "          'engelman': 1,\n",
      "          'strange': 1,\n",
      "          'days': 1,\n",
      "          'brief': 1,\n",
      "          'beginning': 1,\n",
      "          'pearl': 1,\n",
      "          'harbor': 1,\n",
      "          'abusive': 1,\n",
      "          'father': 1,\n",
      "          'dannyhere': 1,\n",
      "          'gravitates': 1,\n",
      "          'hardhitting': 1,\n",
      "          'nwhich': 1,\n",
      "          'shock': 1,\n",
      "          'delight': 1,\n",
      "          'plays': 1,\n",
      "          'blonde': 1,\n",
      "          'haired': 1,\n",
      "          'meticulously': 1,\n",
      "          'dressed': 1,\n",
      "          'overtly': 1,\n",
      "          'effeminate': 1,\n",
      "          'dogloving': 1,\n",
      "          'detective': 1,\n",
      "          'nas': 1,\n",
      "          'alex': 1,\n",
      "          'tardio': 1,\n",
      "          'caricature': 1,\n",
      "          'goes': 1,\n",
      "          'beyond': 1,\n",
      "          'nit': 1,\n",
      "          'offensive': 1,\n",
      "          'really': 1,\n",
      "          'manage': 1,\n",
      "          'nand': 1,\n",
      "          'clich': 1,\n",
      "          'stereotype': 1,\n",
      "          'quite': 1,\n",
      "          'succumb': 1,\n",
      "          'definition': 1,\n",
      "          'either': 1,\n",
      "          'role': 1,\n",
      "          'diametrically': 1,\n",
      "          'opposed': 1,\n",
      "          'seen': 1,\n",
      "          'coming': 1,\n",
      "          'isnt': 1,\n",
      "          'perfectyou': 1,\n",
      "          'see': 1,\n",
      "          'struggling': 1,\n",
      "          'times': 1,\n",
      "          'concentrating': 1,\n",
      "          'hard': 1,\n",
      "          'look': 1,\n",
      "          'swishes': 1,\n",
      "          'hand': 1,\n",
      "          'air': 1,\n",
      "          'nuzzles': 1,\n",
      "          'coiffed': 1,\n",
      "          'canine': 1,\n",
      "          'close': 1,\n",
      "          'personalbut': 1,\n",
      "          'pretty': 1,\n",
      "          'damned': 1,\n",
      "          'good': 1,\n",
      "          'silly': 1,\n",
      "          'without': 1,\n",
      "          'question': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'fact': 1,\n",
      "          'fitchners': 1,\n",
      "          'sudden': 1,\n",
      "          'bizarre': 1,\n",
      "          'jarring': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'thereafter': 1,\n",
      "          'would': 1,\n",
      "          'walked': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'awfulness': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'haphazardly': 1,\n",
      "          'edited': 1,\n",
      "          'totally': 1,\n",
      "          'unfunny': 1,\n",
      "          'yes': 1,\n",
      "          'martin': 1,\n",
      "          'lawrence': 1,\n",
      "          'danny': 1,\n",
      "          'devito': 1,\n",
      "          'possible': 1,\n",
      "          'nmoviegoing': 1,\n",
      "          'experience': 1,\n",
      "          'nfichtners': 1,\n",
      "          'exactly': 1,\n",
      "          'save': 1,\n",
      "          'like': 1,\n",
      "          'im': 1,\n",
      "          'recommending': 1,\n",
      "          'nsolely': 1,\n",
      "          'strength': 1,\n",
      "          'actors': 1,\n",
      "          'dramatic': 1,\n",
      "          'turnaround': 1,\n",
      "          'contributions': 1,\n",
      "          'raise': 1,\n",
      "          'films': 1,\n",
      "          'rating': 1,\n",
      "          'oneandahalf': 1,\n",
      "          'nthumbs': 1,\n",
      "          'thumbs': 1,\n",
      "          'downway': 1,\n",
      "          'way': 1,\n",
      "          'downto': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'involved': 1,\n",
      "          'sorry': 1,\n",
      "          'mess': 1,\n",
      "          'movie': 1,\n",
      "          'dull': 1,\n",
      "          'pedestrian': 1,\n",
      "          'nonsensical': 1,\n",
      "          'warrant': 1,\n",
      "          'discussion': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'terry': 11,\n",
      "          'film': 9,\n",
      "          'dream': 8,\n",
      "          'characters': 8,\n",
      "          'fishes': 7,\n",
      "          'nick': 7,\n",
      "          'films': 6,\n",
      "          'character': 5,\n",
      "          'upon': 4,\n",
      "          'nthe': 4,\n",
      "          'two': 4,\n",
      "          'nicks': 4,\n",
      "          'attempts': 4,\n",
      "          'taylors': 3,\n",
      "          'opening': 3,\n",
      "          'sequence': 3,\n",
      "          'eventually': 3,\n",
      "          'terrys': 3,\n",
      "          'watch': 3,\n",
      "          'nthis': 3,\n",
      "          'often': 3,\n",
      "          'would': 3,\n",
      "          'portions': 2,\n",
      "          'rather': 2,\n",
      "          'easy': 2,\n",
      "          'minutes': 2,\n",
      "          'first': 2,\n",
      "          'provocative': 2,\n",
      "          'movie': 2,\n",
      "          'funny': 2,\n",
      "          'latter': 2,\n",
      "          'david': 2,\n",
      "          'arquette': 2,\n",
      "          'death': 2,\n",
      "          'young': 2,\n",
      "          'nnick': 2,\n",
      "          'across': 2,\n",
      "          'set': 2,\n",
      "          'men': 2,\n",
      "          'suicide': 2,\n",
      "          'pills': 2,\n",
      "          'find': 2,\n",
      "          'dying': 2,\n",
      "          'instead': 2,\n",
      "          'obvious': 2,\n",
      "          'wants': 2,\n",
      "          'die': 2,\n",
      "          'exploits': 2,\n",
      "          'enjoy': 2,\n",
      "          'quirky': 2,\n",
      "          'least': 2,\n",
      "          'one': 2,\n",
      "          'protagonists': 2,\n",
      "          'leading': 2,\n",
      "          'audience': 2,\n",
      "          'like': 2,\n",
      "          'nmr': 2,\n",
      "          'interesting': 2,\n",
      "          'humour': 2,\n",
      "          'due': 2,\n",
      "          'coming': 2,\n",
      "          'note': 1,\n",
      "          'may': 1,\n",
      "          'consider': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'nits': 1,\n",
      "          'start': 1,\n",
      "          'tuning': 1,\n",
      "          'twenty': 1,\n",
      "          'finn': 1,\n",
      "          'feature': 1,\n",
      "          'plodding': 1,\n",
      "          'tedious': 1,\n",
      "          'finally': 1,\n",
      "          'pays': 1,\n",
      "          'potentially': 1,\n",
      "          'setup': 1,\n",
      "          'nany': 1,\n",
      "          'hopeful': 1,\n",
      "          'expectations': 1,\n",
      "          'however': 1,\n",
      "          'soon': 1,\n",
      "          'vanquished': 1,\n",
      "          'settles': 1,\n",
      "          'uninvolving': 1,\n",
      "          'mismatchedbuddy': 1,\n",
      "          'rarely': 1,\n",
      "          'aspires': 1,\n",
      "          'nearly': 1,\n",
      "          'affecting': 1,\n",
      "          'strives': 1,\n",
      "          'half': 1,\n",
      "          'central': 1,\n",
      "          'depressed': 1,\n",
      "          'lonely': 1,\n",
      "          'voyeur': 1,\n",
      "          'claims': 1,\n",
      "          'despondent': 1,\n",
      "          'since': 1,\n",
      "          'wife': 1,\n",
      "          'automobile': 1,\n",
      "          'accident': 1,\n",
      "          'brad': 1,\n",
      "          'hunt': 1,\n",
      "          'carefree': 1,\n",
      "          'street': 1,\n",
      "          'tough': 1,\n",
      "          'later': 1,\n",
      "          'revealed': 1,\n",
      "          'terminally': 1,\n",
      "          'ill': 1,\n",
      "          'lives': 1,\n",
      "          'apartment': 1,\n",
      "          'building': 1,\n",
      "          'spies': 1,\n",
      "          'trysts': 1,\n",
      "          'girlfriend': 1,\n",
      "          'liz': 1,\n",
      "          'kathryn': 1,\n",
      "          'erbe': 1,\n",
      "          'trusty': 1,\n",
      "          'binoculars': 1,\n",
      "          'formally': 1,\n",
      "          'meet': 1,\n",
      "          'bay': 1,\n",
      "          'bridge': 1,\n",
      "          'halfdrunk': 1,\n",
      "          'precariously': 1,\n",
      "          'teeters': 1,\n",
      "          'edge': 1,\n",
      "          'unconvincingly': 1,\n",
      "          'vowing': 1,\n",
      "          'casually': 1,\n",
      "          'asks': 1,\n",
      "          'wristwatch': 1,\n",
      "          'cons': 1,\n",
      "          'trade': 1,\n",
      "          'bottle': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'finds': 1,\n",
      "          'end': 1,\n",
      "          'presumed': 1,\n",
      "          'lethal': 1,\n",
      "          'effects': 1,\n",
      "          'angrily': 1,\n",
      "          'sets': 1,\n",
      "          'order': 1,\n",
      "          'retrieve': 1,\n",
      "          'nlearning': 1,\n",
      "          'condition': 1,\n",
      "          'handful': 1,\n",
      "          'weeks': 1,\n",
      "          'left': 1,\n",
      "          'compassion': 1,\n",
      "          'kicks': 1,\n",
      "          'come': 1,\n",
      "          'distinctly': 1,\n",
      "          'peculiar': 1,\n",
      "          'arrangement': 1,\n",
      "          'agree': 1,\n",
      "          'bankroll': 1,\n",
      "          'lifelong': 1,\n",
      "          'fantasies': 1,\n",
      "          'fulfill': 1,\n",
      "          'wish': 1,\n",
      "          'killing': 1,\n",
      "          'promising': 1,\n",
      "          'premise': 1,\n",
      "          'mr': 1,\n",
      "          'could': 1,\n",
      "          'gone': 1,\n",
      "          'number': 1,\n",
      "          'ambitious': 1,\n",
      "          'ways': 1,\n",
      "          'point': 1,\n",
      "          'chooses': 1,\n",
      "          'capitalise': 1,\n",
      "          'inversion': 1,\n",
      "          'repessed': 1,\n",
      "          'mournful': 1,\n",
      "          'free': 1,\n",
      "          'spirit': 1,\n",
      "          'joie': 1,\n",
      "          'de': 1,\n",
      "          'vivre': 1,\n",
      "          'live': 1,\n",
      "          'takes': 1,\n",
      "          'route': 1,\n",
      "          'turning': 1,\n",
      "          'typical': 1,\n",
      "          'lark': 1,\n",
      "          'engage': 1,\n",
      "          'series': 1,\n",
      "          'generally': 1,\n",
      "          'dull': 1,\n",
      "          'straightlaced': 1,\n",
      "          'learns': 1,\n",
      "          'ppreciate': 1,\n",
      "          'life': 1,\n",
      "          'hooked': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'plotting': 1,\n",
      "          'buddy': 1,\n",
      "          'movieroad': 1,\n",
      "          'redux': 1,\n",
      "          'nhowever': 1,\n",
      "          'hampered': 1,\n",
      "          'uninspired': 1,\n",
      "          'storyline': 1,\n",
      "          'carry': 1,\n",
      "          'story': 1,\n",
      "          'helps': 1,\n",
      "          'somewhat': 1,\n",
      "          'empathetic': 1,\n",
      "          'likeable': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'case': 1,\n",
      "          'thorougly': 1,\n",
      "          'uninteresting': 1,\n",
      "          'annoying': 1,\n",
      "          'giving': 1,\n",
      "          'little': 1,\n",
      "          'sympathise': 1,\n",
      "          'respective': 1,\n",
      "          'plights': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'reason': 1,\n",
      "          'want': 1,\n",
      "          'follow': 1,\n",
      "          'onscreen': 1,\n",
      "          'nfar': 1,\n",
      "          'romp': 1,\n",
      "          'fatal': 1,\n",
      "          'flaw': 1,\n",
      "          'makes': 1,\n",
      "          'chore': 1,\n",
      "          'endure': 1,\n",
      "          'playful': 1,\n",
      "          'jaunt': 1,\n",
      "          'undermines': 1,\n",
      "          'emotional': 1,\n",
      "          'resonance': 1,\n",
      "          'stages': 1,\n",
      "          'begin': 1,\n",
      "          'bond': 1,\n",
      "          'dialogue': 1,\n",
      "          'sporadically': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'attempting': 1,\n",
      "          'capture': 1,\n",
      "          'clever': 1,\n",
      "          'tone': 1,\n",
      "          'comes': 1,\n",
      "          'hopelessly': 1,\n",
      "          'contrived': 1,\n",
      "          'witness': 1,\n",
      "          'lines': 1,\n",
      "          'asked': 1,\n",
      "          'something': 1,\n",
      "          'pain': 1,\n",
      "          'n': 1,\n",
      "          'see': 1,\n",
      "          'thats': 1,\n",
      "          'leaves': 1,\n",
      "          'room': 1,\n",
      "          'questions': 1,\n",
      "          'enjoys': 1,\n",
      "          'inspired': 1,\n",
      "          'moments': 1,\n",
      "          'urn': 1,\n",
      "          'scene': 1,\n",
      "          'session': 1,\n",
      "          'nude': 1,\n",
      "          'bowling': 1,\n",
      "          'policeman': 1,\n",
      "          'joining': 1,\n",
      "          'acid': 1,\n",
      "          'trip': 1,\n",
      "          'unfortunatetely': 1,\n",
      "          'instances': 1,\n",
      "          'far': 1,\n",
      "          'part': 1,\n",
      "          'registers': 1,\n",
      "          'actual': 1,\n",
      "          'successes': 1,\n",
      "          'occurs': 1,\n",
      "          'particularly': 1,\n",
      "          'wrestling': 1,\n",
      "          'bedridden': 1,\n",
      "          'hospital': 1,\n",
      "          'im': 1,\n",
      "          'realising': 1,\n",
      "          'intended': 1,\n",
      "          'although': 1,\n",
      "          'nary': 1,\n",
      "          'smile': 1,\n",
      "          'crept': 1,\n",
      "          'lips': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'probably': 1,\n",
      "          'fact': 1,\n",
      "          'painfully': 1,\n",
      "          'clear': 1,\n",
      "          'outset': 1,\n",
      "          'going': 1,\n",
      "          'thwarted': 1,\n",
      "          'initial': 1,\n",
      "          'sapping': 1,\n",
      "          'element': 1,\n",
      "          'surprise': 1,\n",
      "          'amusement': 1,\n",
      "          'scheme': 1,\n",
      "          'tricking': 1,\n",
      "          'wherewithal': 1,\n",
      "          'kill': 1,\n",
      "          'star': 1,\n",
      "          'ten': 1,\n",
      "          'entire': 1,\n",
      "          'clearly': 1,\n",
      "          'exercise': 1,\n",
      "          'exposition': 1,\n",
      "          'terribly': 1,\n",
      "          'diminished': 1,\n",
      "          'utter': 1,\n",
      "          'predictability': 1,\n",
      "          'namong': 1,\n",
      "          'cast': 1,\n",
      "          'best': 1,\n",
      "          'current': 1,\n",
      "          'master': 1,\n",
      "          'portrayal': 1,\n",
      "          'meek': 1,\n",
      "          'squirming': 1,\n",
      "          'stammering': 1,\n",
      "          'freshfaced': 1,\n",
      "          'terrific': 1,\n",
      "          'lead': 1,\n",
      "          'george': 1,\n",
      "          'huangs': 1,\n",
      "          'swimming': 1,\n",
      "          'sharks': 1,\n",
      "          'gets': 1,\n",
      "          'apply': 1,\n",
      "          'adeptness': 1,\n",
      "          'timidity': 1,\n",
      "          'taylor': 1,\n",
      "          'ambitiously': 1,\n",
      "          'employs': 1,\n",
      "          'visual': 1,\n",
      "          'technique': 1,\n",
      "          'urban': 1,\n",
      "          'environment': 1,\n",
      "          'processed': 1,\n",
      "          'appear': 1,\n",
      "          'extremely': 1,\n",
      "          'grainy': 1,\n",
      "          'heavily': 1,\n",
      "          'saturated': 1,\n",
      "          'opposed': 1,\n",
      "          'bright': 1,\n",
      "          'crisp': 1,\n",
      "          'look': 1,\n",
      "          'smalltown': 1,\n",
      "          'scenes': 1,\n",
      "          'charge': 1,\n",
      "          'fishess': 1,\n",
      "          'wholly': 1,\n",
      "          'unempathetic': 1,\n",
      "          'bit': 1,\n",
      "          'odd': 1,\n",
      "          'seem': 1,\n",
      "          'predilection': 1,\n",
      "          'unlikeable': 1,\n",
      "          'indeed': 1,\n",
      "          'many': 1,\n",
      "          'cases': 1,\n",
      "          'minority': 1,\n",
      "          'supporting': 1,\n",
      "          'condemned': 1,\n",
      "          'interminable': 1,\n",
      "          'difficult': 1,\n",
      "          'audienceunfriendly': 1,\n",
      "          'nature': 1,\n",
      "          'nfor': 1,\n",
      "          'though': 1,\n",
      "          'flip': 1,\n",
      "          'side': 1,\n",
      "          'coin': 1,\n",
      "          'hoping': 1,\n",
      "          'quickly': 1,\n",
      "          'conclude': 1,\n",
      "          'hurry': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'film': 4,\n",
      "          'oldman': 3,\n",
      "          'one': 3,\n",
      "          'good': 3,\n",
      "          'drama': 2,\n",
      "          'violent': 2,\n",
      "          'nbut': 2,\n",
      "          'audience': 2,\n",
      "          'raymond': 2,\n",
      "          'friends': 2,\n",
      "          'nraymond': 2,\n",
      "          'valeries': 2,\n",
      "          'billys': 2,\n",
      "          'nbilly': 2,\n",
      "          'nshe': 2,\n",
      "          'anything': 2,\n",
      "          'seems': 2,\n",
      "          'half': 2,\n",
      "          'scenes': 2,\n",
      "          'character': 2,\n",
      "          'moments': 2,\n",
      "          'actors': 2,\n",
      "          'thing': 2,\n",
      "          'actor': 2,\n",
      "          'turned': 2,\n",
      "          'making': 2,\n",
      "          'directoral': 1,\n",
      "          'debut': 1,\n",
      "          'gary': 1,\n",
      "          'chose': 1,\n",
      "          'highly': 1,\n",
      "          'personal': 1,\n",
      "          'family': 1,\n",
      "          'alcoholic': 1,\n",
      "          'husband': 1,\n",
      "          'father': 1,\n",
      "          'various': 1,\n",
      "          'lives': 1,\n",
      "          'affects': 1,\n",
      "          'characters': 1,\n",
      "          'places': 1,\n",
      "          'events': 1,\n",
      "          'may': 1,\n",
      "          'special': 1,\n",
      "          'meaning': 1,\n",
      "          'writerdirector': 1,\n",
      "          'left': 1,\n",
      "          'dark': 1,\n",
      "          'center': 1,\n",
      "          'tale': 1,\n",
      "          'abusive': 1,\n",
      "          'ray': 1,\n",
      "          'winstone': 1,\n",
      "          'focuses': 1,\n",
      "          'people': 1,\n",
      "          'orbit': 1,\n",
      "          'around': 1,\n",
      "          'nhe': 1,\n",
      "          'spends': 1,\n",
      "          'days': 1,\n",
      "          'hanging': 1,\n",
      "          'pubs': 1,\n",
      "          'girlie': 1,\n",
      "          'bars': 1,\n",
      "          'nthen': 1,\n",
      "          'returns': 1,\n",
      "          'home': 1,\n",
      "          'pregnant': 1,\n",
      "          'wife': 1,\n",
      "          'valerie': 1,\n",
      "          'kathy': 1,\n",
      "          'burke': 1,\n",
      "          'fiveyearold': 1,\n",
      "          'daughter': 1,\n",
      "          'demonstrates': 1,\n",
      "          'tendencies': 1,\n",
      "          'paranoid': 1,\n",
      "          'delusions': 1,\n",
      "          'early': 1,\n",
      "          'accuses': 1,\n",
      "          'brother': 1,\n",
      "          'billy': 1,\n",
      "          'charlie': 1,\n",
      "          'creedmiles': 1,\n",
      "          'stealing': 1,\n",
      "          'proceed': 1,\n",
      "          'beat': 1,\n",
      "          'bite': 1,\n",
      "          'bloody': 1,\n",
      "          'wreck': 1,\n",
      "          'least': 1,\n",
      "          'problems': 1,\n",
      "          'heroin': 1,\n",
      "          'addict': 1,\n",
      "          'downturn': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'hell': 1,\n",
      "          'last': 1,\n",
      "          'much': 1,\n",
      "          'longer': 1,\n",
      "          'mother': 1,\n",
      "          'janet': 1,\n",
      "          'laila': 1,\n",
      "          'morse': 1,\n",
      "          'raymonds': 1,\n",
      "          'nemesis': 1,\n",
      "          'disapproves': 1,\n",
      "          'powerless': 1,\n",
      "          'merely': 1,\n",
      "          'struggles': 1,\n",
      "          'hoping': 1,\n",
      "          'children': 1,\n",
      "          'survive': 1,\n",
      "          'respective': 1,\n",
      "          'torments': 1,\n",
      "          'nif': 1,\n",
      "          'description': 1,\n",
      "          'bleak': 1,\n",
      "          'havent': 1,\n",
      "          'told': 1,\n",
      "          'nthis': 1,\n",
      "          'cheery': 1,\n",
      "          'movie': 1,\n",
      "          'time': 1,\n",
      "          'downright': 1,\n",
      "          'depressing': 1,\n",
      "          'nwhile': 1,\n",
      "          'times': 1,\n",
      "          'interesting': 1,\n",
      "          'watch': 1,\n",
      "          'see': 1,\n",
      "          'makes': 1,\n",
      "          'tick': 1,\n",
      "          'ever': 1,\n",
      "          'simply': 1,\n",
      "          'calls': 1,\n",
      "          'cops': 1,\n",
      "          'end': 1,\n",
      "          'quite': 1,\n",
      "          'worth': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'randomly': 1,\n",
      "          'dot': 1,\n",
      "          'picture': 1,\n",
      "          'little': 1,\n",
      "          'purpose': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'extended': 1,\n",
      "          'sequence': 1,\n",
      "          'scuzzy': 1,\n",
      "          'defends': 1,\n",
      "          'stray': 1,\n",
      "          'puppy': 1,\n",
      "          'filled': 1,\n",
      "          'never': 1,\n",
      "          'really': 1,\n",
      "          'achieve': 1,\n",
      "          'ngranted': 1,\n",
      "          'genuinely': 1,\n",
      "          'powerful': 1,\n",
      "          'sickening': 1,\n",
      "          'expression': 1,\n",
      "          'catharsis': 1,\n",
      "          'creator': 1,\n",
      "          'us': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'particularly': 1,\n",
      "          'central': 1,\n",
      "          'roles': 1,\n",
      "          'writer': 1,\n",
      "          'knows': 1,\n",
      "          'write': 1,\n",
      "          'nil': 1,\n",
      "          'mouth': 1,\n",
      "          'meat': 1,\n",
      "          'tear': 1,\n",
      "          'bad': 1,\n",
      "          'director': 1,\n",
      "          'theres': 1,\n",
      "          'restrain': 1,\n",
      "          'poor': 1,\n",
      "          'choices': 1,\n",
      "          'na': 1,\n",
      "          'mean': 1,\n",
      "          'something': 1,\n",
      "          'involved': 1,\n",
      "          'noldman': 1,\n",
      "          'got': 1,\n",
      "          'right': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'nightmare': 7,\n",
      "          'first': 6,\n",
      "          'nthe': 6,\n",
      "          'films': 5,\n",
      "          'original': 5,\n",
      "          'elm': 4,\n",
      "          'street': 4,\n",
      "          'theatrical': 4,\n",
      "          'series': 3,\n",
      "          'one': 3,\n",
      "          'didnt': 3,\n",
      "          'much': 3,\n",
      "          'horror': 3,\n",
      "          'though': 3,\n",
      "          'new': 3,\n",
      "          'dvd': 3,\n",
      "          'disc': 3,\n",
      "          'set': 3,\n",
      "          '1': 3,\n",
      "          'included': 3,\n",
      "          'commentary': 3,\n",
      "          'track': 3,\n",
      "          'installment': 2,\n",
      "          'release': 2,\n",
      "          'looking': 2,\n",
      "          'since': 2,\n",
      "          'second': 2,\n",
      "          'time': 2,\n",
      "          'story': 2,\n",
      "          'robert': 2,\n",
      "          'englund': 2,\n",
      "          'years': 2,\n",
      "          'movies': 2,\n",
      "          'ending': 2,\n",
      "          'end': 2,\n",
      "          'get': 2,\n",
      "          'nmost': 2,\n",
      "          'doesnt': 2,\n",
      "          'available': 2,\n",
      "          'box': 2,\n",
      "          'two': 2,\n",
      "          'audio': 2,\n",
      "          'mix': 2,\n",
      "          'nalso': 2,\n",
      "          'john': 2,\n",
      "          'saxon': 2,\n",
      "          'feature': 2,\n",
      "          'trailer': 2,\n",
      "          'dvdrom': 2,\n",
      "          'features': 2,\n",
      "          'really': 2,\n",
      "          'thing': 2,\n",
      "          'neveryone': 2,\n",
      "          'possible': 2,\n",
      "          'called': 2,\n",
      "          'interviews': 2,\n",
      "          'alternate': 2,\n",
      "          'access': 2,\n",
      "          'labyrinth': 2,\n",
      "          'exposure': 1,\n",
      "          'fact': 1,\n",
      "          'third': 1,\n",
      "          'gain': 1,\n",
      "          'national': 1,\n",
      "          'ni': 1,\n",
      "          'see': 1,\n",
      "          'later': 1,\n",
      "          'nso': 1,\n",
      "          'back': 1,\n",
      "          'hold': 1,\n",
      "          'lot': 1,\n",
      "          'great': 1,\n",
      "          'memories': 1,\n",
      "          'think': 1,\n",
      "          'initially': 1,\n",
      "          'saw': 1,\n",
      "          'nwatching': 1,\n",
      "          'confirmed': 1,\n",
      "          'overrated': 1,\n",
      "          'ultimately': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'child': 1,\n",
      "          'murderer': 1,\n",
      "          'freddy': 1,\n",
      "          'krueger': 1,\n",
      "          'returns': 1,\n",
      "          'grave': 1,\n",
      "          'haunting': 1,\n",
      "          'dreams': 1,\n",
      "          'children': 1,\n",
      "          'burned': 1,\n",
      "          'alive': 1,\n",
      "          'nthis': 1,\n",
      "          'adequate': 1,\n",
      "          'job': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'theres': 1,\n",
      "          'absurd': 1,\n",
      "          'dialogue': 1,\n",
      "          'conceptual': 1,\n",
      "          'problems': 1,\n",
      "          'nplus': 1,\n",
      "          'understandably': 1,\n",
      "          'result': 1,\n",
      "          'studio': 1,\n",
      "          'wanting': 1,\n",
      "          'hook': 1,\n",
      "          'sequel': 1,\n",
      "          'renders': 1,\n",
      "          'rest': 1,\n",
      "          'pointless': 1,\n",
      "          'nand': 1,\n",
      "          'anyone': 1,\n",
      "          'understand': 1,\n",
      "          'happens': 1,\n",
      "          'nancys': 1,\n",
      "          'mother': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'nits': 1,\n",
      "          'generation': 1,\n",
      "          'spurned': 1,\n",
      "          'away': 1,\n",
      "          'classics': 1,\n",
      "          'released': 1,\n",
      "          'today': 1,\n",
      "          'inane': 1,\n",
      "          'nhorror': 1,\n",
      "          'difficult': 1,\n",
      "          'genre': 1,\n",
      "          'pull': 1,\n",
      "          'credibly': 1,\n",
      "          'cut': 1,\n",
      "          'na': 1,\n",
      "          'line': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'nit': 1,\n",
      "          'single': 1,\n",
      "          'part': 1,\n",
      "          'collection': 1,\n",
      "          'presented': 1,\n",
      "          'pan': 1,\n",
      "          'scan': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '78': 1,\n",
      "          'although': 1,\n",
      "          'comes': 1,\n",
      "          'widescreen': 1,\n",
      "          'transfer': 1,\n",
      "          'provided': 1,\n",
      "          'digitally': 1,\n",
      "          'remastered': 1,\n",
      "          'includes': 1,\n",
      "          'options': 1,\n",
      "          'mono': 1,\n",
      "          'dolby': 1,\n",
      "          'digital': 1,\n",
      "          '5': 1,\n",
      "          'fulllength': 1,\n",
      "          'writerdirector': 1,\n",
      "          'wes': 1,\n",
      "          'craven': 1,\n",
      "          'stars': 1,\n",
      "          'heather': 1,\n",
      "          'langenkamp': 1,\n",
      "          'director': 1,\n",
      "          'photography': 1,\n",
      "          'nother': 1,\n",
      "          'extras': 1,\n",
      "          'include': 1,\n",
      "          'jump': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'figure': 1,\n",
      "          'usual': 1,\n",
      "          'cast': 1,\n",
      "          'crew': 1,\n",
      "          'bios': 1,\n",
      "          'press': 1,\n",
      "          'kit': 1,\n",
      "          'notably': 1,\n",
      "          'leave': 1,\n",
      "          'johnny': 1,\n",
      "          'depp': 1,\n",
      "          'nsome': 1,\n",
      "          'also': 1,\n",
      "          'dont': 1,\n",
      "          'capabilities': 1,\n",
      "          'cant': 1,\n",
      "          'entertaining': 1,\n",
      "          'informative': 1,\n",
      "          'nothing': 1,\n",
      "          'spectacular': 1,\n",
      "          'note': 1,\n",
      "          'special': 1,\n",
      "          'edition': 1,\n",
      "          'laserdisc': 1,\n",
      "          'ago': 1,\n",
      "          'nim': 1,\n",
      "          'saying': 1,\n",
      "          'thats': 1,\n",
      "          'negative': 1,\n",
      "          'pointing': 1,\n",
      "          'seems': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'exception': 1,\n",
      "          'say': 1,\n",
      "          'youll': 1,\n",
      "          'forget': 1,\n",
      "          'hes': 1,\n",
      "          'even': 1,\n",
      "          'else': 1,\n",
      "          'talks': 1,\n",
      "          'quietly': 1,\n",
      "          'reason': 1,\n",
      "          'theyre': 1,\n",
      "          'commenting': 1,\n",
      "          'scary': 1,\n",
      "          'movie': 1,\n",
      "          'need': 1,\n",
      "          'stay': 1,\n",
      "          'quiet': 1,\n",
      "          'bonus': 1,\n",
      "          'boxed': 1,\n",
      "          'encyclopedia': 1,\n",
      "          '45': 1,\n",
      "          'minutes': 1,\n",
      "          'worth': 1,\n",
      "          'relating': 1,\n",
      "          'endings': 1,\n",
      "          'nhowever': 1,\n",
      "          'easily': 1,\n",
      "          'hidden': 1,\n",
      "          'whats': 1,\n",
      "          'might': 1,\n",
      "          'possibly': 1,\n",
      "          'annoying': 1,\n",
      "          'ever': 1,\n",
      "          'created': 1,\n",
      "          'nbasically': 1,\n",
      "          'interactive': 1,\n",
      "          'game': 1,\n",
      "          'sorts': 1,\n",
      "          'wander': 1,\n",
      "          'different': 1,\n",
      "          'locations': 1,\n",
      "          'objects': 1,\n",
      "          'give': 1,\n",
      "          'extra': 1,\n",
      "          'little': 1,\n",
      "          'snippets': 1,\n",
      "          'footage': 1,\n",
      "          'etc': 1,\n",
      "          'somewhere': 1,\n",
      "          'nfinding': 1,\n",
      "          'chore': 1,\n",
      "          'bore': 1,\n",
      "          'nr': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'batman': 7,\n",
      "          'film': 5,\n",
      "          'burton': 4,\n",
      "          'nthe': 3,\n",
      "          'penguin': 3,\n",
      "          'catwoman': 3,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'audience': 2,\n",
      "          'without': 2,\n",
      "          'nif': 2,\n",
      "          'looking': 2,\n",
      "          'films': 2,\n",
      "          'lovell': 2,\n",
      "          'travers': 2,\n",
      "          'mr': 2,\n",
      "          'nthere': 2,\n",
      "          'sequel': 2,\n",
      "          'result': 2,\n",
      "          'returns': 2,\n",
      "          'within': 2,\n",
      "          'batmans': 2,\n",
      "          'gets': 2,\n",
      "          'entertain': 2,\n",
      "          '1989': 1,\n",
      "          'tim': 1,\n",
      "          'took': 1,\n",
      "          'legendary': 1,\n",
      "          'figure': 1,\n",
      "          'turned': 1,\n",
      "          'huge': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'hit': 1,\n",
      "          'atmospheric': 1,\n",
      "          'little': 1,\n",
      "          'created': 1,\n",
      "          'utterly': 1,\n",
      "          'distinct': 1,\n",
      "          'feeling': 1,\n",
      "          'somewhere': 1,\n",
      "          'noir': 1,\n",
      "          'godfather': 1,\n",
      "          'nwas': 1,\n",
      "          'deep': 1,\n",
      "          'nnope': 1,\n",
      "          'nhowever': 1,\n",
      "          'perfect': 1,\n",
      "          'entertainment': 1,\n",
      "          'ate': 1,\n",
      "          'nit': 1,\n",
      "          'natural': 1,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'trashed': 1,\n",
      "          'writing': 1,\n",
      "          'uplift': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'superman': 1,\n",
      "          'pictures': 1,\n",
      "          'nwhich': 1,\n",
      "          'true': 1,\n",
      "          'tale': 1,\n",
      "          'heroic': 1,\n",
      "          'mans': 1,\n",
      "          'escadapes': 1,\n",
      "          'adventures': 1,\n",
      "          'wrong': 1,\n",
      "          'place': 1,\n",
      "          'tom': 1,\n",
      "          'sawyer': 1,\n",
      "          'huckleberry': 1,\n",
      "          'finn': 1,\n",
      "          'nsome': 1,\n",
      "          'critics': 1,\n",
      "          'glenn': 1,\n",
      "          'san': 1,\n",
      "          'jose': 1,\n",
      "          'mercury': 1,\n",
      "          'news': 1,\n",
      "          'peter': 1,\n",
      "          'rolling': 1,\n",
      "          'stone': 1,\n",
      "          'realized': 1,\n",
      "          'something': 1,\n",
      "          'special': 1,\n",
      "          'gave': 1,\n",
      "          '12': 1,\n",
      "          'wrote': 1,\n",
      "          'nmr': 1,\n",
      "          'called': 1,\n",
      "          'one': 1,\n",
      "          'ten': 1,\n",
      "          'best': 1,\n",
      "          'year': 1,\n",
      "          'praise': 1,\n",
      "          'deserved': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'enthralling': 1,\n",
      "          'exciting': 1,\n",
      "          'superb': 1,\n",
      "          'every': 1,\n",
      "          'respect': 1,\n",
      "          'doubt': 1,\n",
      "          'would': 1,\n",
      "          'directed': 1,\n",
      "          'forgets': 1,\n",
      "          'wants': 1,\n",
      "          'fun': 1,\n",
      "          'first': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'villains': 1,\n",
      "          'hideous': 1,\n",
      "          'seductive': 1,\n",
      "          'take': 1,\n",
      "          'epectations': 1,\n",
      "          'always': 1,\n",
      "          'left': 1,\n",
      "          'unfulfilled': 1,\n",
      "          'wanted': 1,\n",
      "          'bite': 1,\n",
      "          'nose': 1,\n",
      "          'simply': 1,\n",
      "          'mad': 1,\n",
      "          'want': 1,\n",
      "          'slither': 1,\n",
      "          'body': 1,\n",
      "          'pushed': 1,\n",
      "          'building': 1,\n",
      "          'ni': 1,\n",
      "          'admire': 1,\n",
      "          'trying': 1,\n",
      "          'mess': 1,\n",
      "          'nnothing': 1,\n",
      "          'works': 1,\n",
      "          'planned': 1,\n",
      "          'fails': 1,\n",
      "          'enlighten': 1,\n",
      "          'nhints': 1,\n",
      "          'made': 1,\n",
      "          'could': 1,\n",
      "          'blast': 1,\n",
      "          'nalas': 1,\n",
      "          'hints': 1,\n",
      "          'dont': 1,\n",
      "          'misunderstand': 1,\n",
      "          'several': 1,\n",
      "          'moments': 1,\n",
      "          'cinematic': 1,\n",
      "          'genuis': 1,\n",
      "          'contained': 1,\n",
      "          'understand': 1,\n",
      "          'eachother': 1,\n",
      "          'perfectly': 1,\n",
      "          'word': 1,\n",
      "          'subject': 1,\n",
      "          'said': 1,\n",
      "          'christopher': 1,\n",
      "          'lloyd': 1,\n",
      "          'trapped': 1,\n",
      "          'giant': 1,\n",
      "          'cage': 1,\n",
      "          'small': 1,\n",
      "          'basket': 1,\n",
      "          'dropped': 1,\n",
      "          'large': 1,\n",
      "          'river': 1,\n",
      "          'nothing': 1,\n",
      "          'drawn': 1,\n",
      "          'together': 1,\n",
      "          'unable': 1,\n",
      "          'make': 1,\n",
      "          'work': 1,\n",
      "          'regular': 1,\n",
      "          'basis': 1,\n",
      "          'na': 1,\n",
      "          'weak': 1,\n",
      "          'followup': 1,\n",
      "          'career': 1,\n",
      "          'wise': 1,\n",
      "          'sometimes': 1,\n",
      "          'dazzling': 1,\n",
      "          'often': 1,\n",
      "          'dissapointing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'end': 8,\n",
      "          'arnold': 8,\n",
      "          'devil': 8,\n",
      "          'days': 7,\n",
      "          'one': 7,\n",
      "          'schwarzenegger': 6,\n",
      "          'time': 6,\n",
      "          'action': 6,\n",
      "          'movie': 6,\n",
      "          'like': 5,\n",
      "          'n': 5,\n",
      "          'nif': 5,\n",
      "          'jericho': 5,\n",
      "          'christine': 5,\n",
      "          'film': 5,\n",
      "          'isnt': 5,\n",
      "          'make': 5,\n",
      "          'would': 4,\n",
      "          'nits': 4,\n",
      "          'silly': 4,\n",
      "          'see': 4,\n",
      "          'girl': 4,\n",
      "          'satan': 4,\n",
      "          'york': 4,\n",
      "          'actually': 4,\n",
      "          'bad': 4,\n",
      "          'character': 4,\n",
      "          'nthis': 4,\n",
      "          'script': 4,\n",
      "          'scene': 4,\n",
      "          'much': 4,\n",
      "          'dont': 4,\n",
      "          'year': 3,\n",
      "          'doesnt': 3,\n",
      "          'priests': 3,\n",
      "          '1999': 3,\n",
      "          'nin': 3,\n",
      "          'new': 3,\n",
      "          'years': 3,\n",
      "          'problem': 3,\n",
      "          'byrne': 3,\n",
      "          'attempt': 3,\n",
      "          'nthere': 3,\n",
      "          'hard': 3,\n",
      "          'role': 3,\n",
      "          'idea': 3,\n",
      "          'even': 3,\n",
      "          'tries': 3,\n",
      "          'old': 3,\n",
      "          'really': 3,\n",
      "          'sense': 3,\n",
      "          'bit': 3,\n",
      "          'good': 3,\n",
      "          'explained': 3,\n",
      "          'stuff': 3,\n",
      "          'come': 3,\n",
      "          'gets': 3,\n",
      "          'also': 3,\n",
      "          'going': 3,\n",
      "          'stigmata': 2,\n",
      "          'worst': 2,\n",
      "          'wrong': 2,\n",
      "          'merely': 2,\n",
      "          'incomprehensible': 2,\n",
      "          'nfor': 2,\n",
      "          'best': 2,\n",
      "          'first': 2,\n",
      "          'robin': 2,\n",
      "          'nsome': 2,\n",
      "          'prophecy': 2,\n",
      "          'born': 2,\n",
      "          'night': 2,\n",
      "          'believe': 2,\n",
      "          'killed': 2,\n",
      "          'later': 2,\n",
      "          'excop': 2,\n",
      "          'security': 2,\n",
      "          'guard': 2,\n",
      "          'businessman': 2,\n",
      "          'gabriel': 2,\n",
      "          'priest': 2,\n",
      "          'tunney': 2,\n",
      "          'daughter': 2,\n",
      "          'including': 2,\n",
      "          'apparently': 2,\n",
      "          'kill': 2,\n",
      "          'begin': 2,\n",
      "          'mistake': 2,\n",
      "          'usual': 2,\n",
      "          'strong': 2,\n",
      "          'played': 2,\n",
      "          'several': 2,\n",
      "          'scenes': 2,\n",
      "          'jerichos': 2,\n",
      "          'another': 2,\n",
      "          'nnone': 2,\n",
      "          'filmmakers': 2,\n",
      "          'confident': 2,\n",
      "          'terminator': 2,\n",
      "          'plays': 2,\n",
      "          'supporting': 2,\n",
      "          'nas': 2,\n",
      "          'hes': 2,\n",
      "          'things': 2,\n",
      "          'audience': 2,\n",
      "          'bible': 2,\n",
      "          'starts': 2,\n",
      "          'attempts': 2,\n",
      "          'given': 2,\n",
      "          'scared': 2,\n",
      "          'matter': 2,\n",
      "          'thing': 2,\n",
      "          'confusing': 2,\n",
      "          'utterly': 2,\n",
      "          'nwhy': 2,\n",
      "          'buy': 2,\n",
      "          'never': 2,\n",
      "          'sort': 2,\n",
      "          'get': 2,\n",
      "          'movies': 2,\n",
      "          'rarely': 2,\n",
      "          'exciting': 2,\n",
      "          'predictable': 2,\n",
      "          'cat': 2,\n",
      "          'sequences': 2,\n",
      "          'happening': 2,\n",
      "          'scratching': 2,\n",
      "          'head': 2,\n",
      "          'cool': 2,\n",
      "          'people': 2,\n",
      "          'awfully': 2,\n",
      "          'means': 2,\n",
      "          'goes': 2,\n",
      "          'violence': 2,\n",
      "          'didnt': 2,\n",
      "          'shouldnt': 2,\n",
      "          'thought': 1,\n",
      "          'religiouslyoriented': 1,\n",
      "          'thriller': 1,\n",
      "          'released': 1,\n",
      "          'nturns': 1,\n",
      "          'boring': 1,\n",
      "          'selfimportant': 1,\n",
      "          'completely': 1,\n",
      "          'inept': 1,\n",
      "          'fronts': 1,\n",
      "          'endlessly': 1,\n",
      "          'stupid': 1,\n",
      "          'mess': 1,\n",
      "          'guy': 1,\n",
      "          'grew': 1,\n",
      "          'watching': 1,\n",
      "          'extremely': 1,\n",
      "          'disconcerting': 1,\n",
      "          'big': 1,\n",
      "          'man': 1,\n",
      "          'ended': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'batman': 1,\n",
      "          'count': 1,\n",
      "          'fun': 1,\n",
      "          'major': 1,\n",
      "          'stinker': 1,\n",
      "          'opens': 1,\n",
      "          'vatican': 1,\n",
      "          'city': 1,\n",
      "          '1979': 1,\n",
      "          'catholic': 1,\n",
      "          'observed': 1,\n",
      "          'ancient': 1,\n",
      "          'says': 1,\n",
      "          'targeted': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'impregnation': 1,\n",
      "          'impregnates': 1,\n",
      "          '11': 1,\n",
      "          'midnight': 1,\n",
      "          'december': 1,\n",
      "          '31': 1,\n",
      "          'world': 1,\n",
      "          'destroyed': 1,\n",
      "          'pope': 1,\n",
      "          'orders': 1,\n",
      "          'protection': 1,\n",
      "          'though': 1,\n",
      "          'ought': 1,\n",
      "          'fulfill': 1,\n",
      "          'ntwenty': 1,\n",
      "          'meet': 1,\n",
      "          'cane': 1,\n",
      "          'suicidal': 1,\n",
      "          'drinking': 1,\n",
      "          'nnow': 1,\n",
      "          'working': 1,\n",
      "          'hire': 1,\n",
      "          'protecting': 1,\n",
      "          'local': 1,\n",
      "          'possessed': 1,\n",
      "          'nan': 1,\n",
      "          'assassination': 1,\n",
      "          'crazed': 1,\n",
      "          'former': 1,\n",
      "          'leads': 1,\n",
      "          'nrecognizing': 1,\n",
      "          'elements': 1,\n",
      "          'murdered': 1,\n",
      "          'ownership': 1,\n",
      "          'music': 1,\n",
      "          'box': 1,\n",
      "          'swears': 1,\n",
      "          'protect': 1,\n",
      "          'faction': 1,\n",
      "          'looking': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'know': 1,\n",
      "          'starting': 1,\n",
      "          'concept': 1,\n",
      "          'ncasting': 1,\n",
      "          'nschwarzenegger': 1,\n",
      "          'persona': 1,\n",
      "          'actor': 1,\n",
      "          'putting': 1,\n",
      "          'contradicts': 1,\n",
      "          'personality': 1,\n",
      "          'narnold': 1,\n",
      "          'neither': 1,\n",
      "          'dramatic': 1,\n",
      "          'range': 1,\n",
      "          'speaking': 1,\n",
      "          'ability': 1,\n",
      "          'pull': 1,\n",
      "          'tormented': 1,\n",
      "          'conflicting': 1,\n",
      "          'emotions': 1,\n",
      "          'words': 1,\n",
      "          'trying': 1,\n",
      "          'give': 1,\n",
      "          'dimension': 1,\n",
      "          'nharrison': 1,\n",
      "          'ford': 1,\n",
      "          'mel': 1,\n",
      "          'gibson': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'could': 1,\n",
      "          'theyve': 1,\n",
      "          'noble': 1,\n",
      "          'flawed': 1,\n",
      "          'heroes': 1,\n",
      "          'establish': 1,\n",
      "          'contemplating': 1,\n",
      "          'suicide': 1,\n",
      "          'crying': 1,\n",
      "          'loss': 1,\n",
      "          'wife': 1,\n",
      "          'tempt': 1,\n",
      "          'revealing': 1,\n",
      "          'christines': 1,\n",
      "          'location': 1,\n",
      "          'offering': 1,\n",
      "          'life': 1,\n",
      "          'back': 1,\n",
      "          'work': 1,\n",
      "          'arnie': 1,\n",
      "          'task': 1,\n",
      "          'better': 1,\n",
      "          'making': 1,\n",
      "          'example': 1,\n",
      "          'likes': 1,\n",
      "          'excelled': 1,\n",
      "          'believable': 1,\n",
      "          'way': 1,\n",
      "          'cast': 1,\n",
      "          'hardest': 1,\n",
      "          'makes': 1,\n",
      "          'impact': 1,\n",
      "          'prince': 1,\n",
      "          'darkness': 1,\n",
      "          'suave': 1,\n",
      "          'nhe': 1,\n",
      "          'acts': 1,\n",
      "          'expect': 1,\n",
      "          'act': 1,\n",
      "          'undermines': 1,\n",
      "          'powerful': 1,\n",
      "          'villain': 1,\n",
      "          'nbyrne': 1,\n",
      "          'outperforms': 1,\n",
      "          'every': 1,\n",
      "          'together': 1,\n",
      "          'aforementioned': 1,\n",
      "          'temptation': 1,\n",
      "          'problematic': 1,\n",
      "          'causes': 1,\n",
      "          'start': 1,\n",
      "          'unthinkable': 1,\n",
      "          'root': 1,\n",
      "          'nbyrnes': 1,\n",
      "          'speech': 1,\n",
      "          'overrated': 1,\n",
      "          'mainly': 1,\n",
      "          'arnolds': 1,\n",
      "          'refuting': 1,\n",
      "          'mostly': 1,\n",
      "          'tis': 1,\n",
      "          'nvariety': 1,\n",
      "          'feeble': 1,\n",
      "          'win': 1,\n",
      "          'nobody': 1,\n",
      "          'cares': 1,\n",
      "          'nkevin': 1,\n",
      "          'pollack': 1,\n",
      "          'sidekick': 1,\n",
      "          'liven': 1,\n",
      "          'comic': 1,\n",
      "          'asides': 1,\n",
      "          'sidekicks': 1,\n",
      "          'disappears': 1,\n",
      "          'hour': 1,\n",
      "          'nrobin': 1,\n",
      "          'except': 1,\n",
      "          'look': 1,\n",
      "          'fact': 1,\n",
      "          'players': 1,\n",
      "          'actors': 1,\n",
      "          'none': 1,\n",
      "          'save': 1,\n",
      "          'anything': 1,\n",
      "          'interesting': 1,\n",
      "          'nperformances': 1,\n",
      "          'aside': 1,\n",
      "          'enjoy': 1,\n",
      "          'starred': 1,\n",
      "          'blockbuster': 1,\n",
      "          'surprise': 1,\n",
      "          'totally': 1,\n",
      "          'ridiculous': 1,\n",
      "          'coming': 1,\n",
      "          'eve': 1,\n",
      "          'nbecause': 1,\n",
      "          'exactly': 1,\n",
      "          '1000': 1,\n",
      "          '666': 1,\n",
      "          'turns': 1,\n",
      "          'nutty': 1,\n",
      "          'accidentally': 1,\n",
      "          'read': 1,\n",
      "          'upside': 1,\n",
      "          'real': 1,\n",
      "          '999': 1,\n",
      "          'add': 1,\n",
      "          '1': 1,\n",
      "          'beginning': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'explanation': 1,\n",
      "          'youre': 1,\n",
      "          'alone': 1,\n",
      "          'convoluted': 1,\n",
      "          'method': 1,\n",
      "          'locates': 1,\n",
      "          'equally': 1,\n",
      "          'ludicrous': 1,\n",
      "          'shes': 1,\n",
      "          'lives': 1,\n",
      "          'werent': 1,\n",
      "          'enough': 1,\n",
      "          'theres': 1,\n",
      "          'plenty': 1,\n",
      "          'bothersome': 1,\n",
      "          'everyone': 1,\n",
      "          'passes': 1,\n",
      "          'street': 1,\n",
      "          'comes': 1,\n",
      "          'snuffing': 1,\n",
      "          'drunk': 1,\n",
      "          'powerless': 1,\n",
      "          'nis': 1,\n",
      "          'impervious': 1,\n",
      "          'kind': 1,\n",
      "          'bullet': 1,\n",
      "          'nhow': 1,\n",
      "          'cant': 1,\n",
      "          'control': 1,\n",
      "          'nand': 1,\n",
      "          'gregorian': 1,\n",
      "          'monks': 1,\n",
      "          'deal': 1,\n",
      "          'zones': 1,\n",
      "          'prophecies': 1,\n",
      "          'na': 1,\n",
      "          'clumsy': 1,\n",
      "          'joke': 1,\n",
      "          'made': 1,\n",
      "          'nusually': 1,\n",
      "          'wouldnt': 1,\n",
      "          'flick': 1,\n",
      "          'mean': 1,\n",
      "          'started': 1,\n",
      "          'paradoxes': 1,\n",
      "          'offered': 1,\n",
      "          'plot': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'stand': 1,\n",
      "          'horror': 1,\n",
      "          'clich': 1,\n",
      "          'present': 1,\n",
      "          'complete': 1,\n",
      "          'black': 1,\n",
      "          'hiding': 1,\n",
      "          'cabinet': 1,\n",
      "          'ever': 1,\n",
      "          'find': 1,\n",
      "          'nit': 1,\n",
      "          'formulaic': 1,\n",
      "          'possible': 1,\n",
      "          'uninterested': 1,\n",
      "          'close': 1,\n",
      "          'eyes': 1,\n",
      "          'precise': 1,\n",
      "          'moment': 1,\n",
      "          'boo': 1,\n",
      "          'ntheir': 1,\n",
      "          'predictions': 1,\n",
      "          'grandiose': 1,\n",
      "          'charmless': 1,\n",
      "          'partially': 1,\n",
      "          'care': 1,\n",
      "          'characters': 1,\n",
      "          'due': 1,\n",
      "          'scripts': 1,\n",
      "          'pathetic': 1,\n",
      "          'characterization': 1,\n",
      "          'setup': 1,\n",
      "          'ntheres': 1,\n",
      "          'thrown': 1,\n",
      "          'around': 1,\n",
      "          'room': 1,\n",
      "          'little': 1,\n",
      "          'lady': 1,\n",
      "          'chuckles': 1,\n",
      "          'else': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'super': 1,\n",
      "          'strength': 1,\n",
      "          'virtue': 1,\n",
      "          'controlled': 1,\n",
      "          'sets': 1,\n",
      "          'terribly': 1,\n",
      "          'badly': 1,\n",
      "          'framed': 1,\n",
      "          'often': 1,\n",
      "          'tell': 1,\n",
      "          'place': 1,\n",
      "          'mention': 1,\n",
      "          'theyre': 1,\n",
      "          'edited': 1,\n",
      "          'fullon': 1,\n",
      "          'mtv': 1,\n",
      "          'quickcut': 1,\n",
      "          'style': 1,\n",
      "          'nmost': 1,\n",
      "          'rather': 1,\n",
      "          'saying': 1,\n",
      "          'wow': 1,\n",
      "          'distinctly': 1,\n",
      "          'unpleasant': 1,\n",
      "          'watch': 1,\n",
      "          'operate': 1,\n",
      "          'subtle': 1,\n",
      "          'illconvincepeopletokilleachother': 1,\n",
      "          'fashion': 1,\n",
      "          'outlined': 1,\n",
      "          'instead': 1,\n",
      "          'enjoys': 1,\n",
      "          'killing': 1,\n",
      "          'gruesomely': 1,\n",
      "          'broad': 1,\n",
      "          'daylight': 1,\n",
      "          'single': 1,\n",
      "          'without': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'graphic': 1,\n",
      "          'odd': 1,\n",
      "          'kinky': 1,\n",
      "          'sexual': 1,\n",
      "          'encounter': 1,\n",
      "          'yet': 1,\n",
      "          'supposed': 1,\n",
      "          'shocking': 1,\n",
      "          'throw': 1,\n",
      "          'numb': 1,\n",
      "          'nscenes': 1,\n",
      "          'arent': 1,\n",
      "          'connected': 1,\n",
      "          'reasonable': 1,\n",
      "          'lot': 1,\n",
      "          'blown': 1,\n",
      "          'nreasons': 1,\n",
      "          'nto': 1,\n",
      "          'hell': 1,\n",
      "          'reasons': 1,\n",
      "          'nlets': 1,\n",
      "          'blow': 1,\n",
      "          'nisnt': 1,\n",
      "          'nnope': 1,\n",
      "          'long': 1,\n",
      "          'shot': 1,\n",
      "          'thoroughly': 1,\n",
      "          'unwatchable': 1,\n",
      "          'dull': 1,\n",
      "          'interminable': 1,\n",
      "          'unrelenting': 1,\n",
      "          'stupidity': 1,\n",
      "          'nperhaps': 1,\n",
      "          'needs': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'revive': 1,\n",
      "          'career': 1,\n",
      "          'hack': 1,\n",
      "          'peter': 1,\n",
      "          'hyams': 1,\n",
      "          'might': 1,\n",
      "          'camp': 1,\n",
      "          'value': 1,\n",
      "          'top': 1,\n",
      "          'overly': 1,\n",
      "          'pious': 1,\n",
      "          'ending': 1,\n",
      "          'nobodys': 1,\n",
      "          'serious': 1,\n",
      "          'decent': 1,\n",
      "          'campy': 1,\n",
      "          'taking': 1,\n",
      "          'damn': 1,\n",
      "          'seriously': 1,\n",
      "          'put': 1,\n",
      "          'cross': 1,\n",
      "          'sad': 1,\n",
      "          'sack': 1,\n",
      "          'stands': 1,\n",
      "          'gloomy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'crime': 6,\n",
      "          'mafia': 5,\n",
      "          'movies': 4,\n",
      "          'n': 3,\n",
      "          'funny': 3,\n",
      "          'sleep': 3,\n",
      "          'spoof': 3,\n",
      "          'could': 3,\n",
      "          'nbut': 3,\n",
      "          'one': 3,\n",
      "          'ni': 3,\n",
      "          'vincenzo': 3,\n",
      "          'please': 2,\n",
      "          'time': 2,\n",
      "          'go': 2,\n",
      "          'think': 2,\n",
      "          'maybe': 2,\n",
      "          'lloyd': 2,\n",
      "          'bridges': 2,\n",
      "          'away': 2,\n",
      "          'film': 2,\n",
      "          'life': 2,\n",
      "          'family': 2,\n",
      "          'powerful': 2,\n",
      "          'two': 2,\n",
      "          'also': 2,\n",
      "          'profanity': 2,\n",
      "          'tough': 2,\n",
      "          'stephen': 1,\n",
      "          'post': 1,\n",
      "          'appropriate': 1,\n",
      "          'isnt': 1,\n",
      "          'business': 1,\n",
      "          'homer': 1,\n",
      "          'yen': 1,\n",
      "          'c': 1,\n",
      "          '1998': 1,\n",
      "          'non': 1,\n",
      "          'particular': 1,\n",
      "          'night': 1,\n",
      "          'found': 1,\n",
      "          'free': 1,\n",
      "          'chance': 1,\n",
      "          'either': 1,\n",
      "          'early': 1,\n",
      "          'see': 1,\n",
      "          'films': 1,\n",
      "          'godfather': 1,\n",
      "          'goodfellas': 1,\n",
      "          'casino': 1,\n",
      "          'nat': 1,\n",
      "          '84': 1,\n",
      "          'minutes': 1,\n",
      "          'length': 1,\n",
      "          'thought': 1,\n",
      "          'enjoy': 1,\n",
      "          'laughs': 1,\n",
      "          'getting': 1,\n",
      "          'good': 1,\n",
      "          'nights': 1,\n",
      "          'account': 1,\n",
      "          'laffometer': 1,\n",
      "          'registered': 1,\n",
      "          'grins': 1,\n",
      "          'giggle': 1,\n",
      "          'chortle': 1,\n",
      "          'suppose': 1,\n",
      "          'justify': 1,\n",
      "          'homage': 1,\n",
      "          'venerable': 1,\n",
      "          'hollywood': 1,\n",
      "          'star': 1,\n",
      "          'recently': 1,\n",
      "          'passed': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'performance': 1,\n",
      "          'nchronicles': 1,\n",
      "          'cortinos': 1,\n",
      "          'nseparated': 1,\n",
      "          'young': 1,\n",
      "          'escapes': 1,\n",
      "          'america': 1,\n",
      "          'tries': 1,\n",
      "          'live': 1,\n",
      "          'honest': 1,\n",
      "          'fate': 1,\n",
      "          'would': 1,\n",
      "          'grows': 1,\n",
      "          'klutzy': 1,\n",
      "          'lord': 1,\n",
      "          'nfollowing': 1,\n",
      "          'footsteps': 1,\n",
      "          'sons': 1,\n",
      "          'joey': 1,\n",
      "          'billy': 1,\n",
      "          'burke': 1,\n",
      "          'anthony': 1,\n",
      "          'jay': 1,\n",
      "          'mohr': 1,\n",
      "          'nlike': 1,\n",
      "          'siblings': 1,\n",
      "          'families': 1,\n",
      "          'squabble': 1,\n",
      "          'power': 1,\n",
      "          'future': 1,\n",
      "          'fortune': 1,\n",
      "          'women': 1,\n",
      "          'cowritten': 1,\n",
      "          'jim': 1,\n",
      "          'abrahams': 1,\n",
      "          'contributed': 1,\n",
      "          'gutbusting': 1,\n",
      "          'spoofs': 1,\n",
      "          'airplane': 1,\n",
      "          'naked': 1,\n",
      "          'gun': 1,\n",
      "          'previous': 1,\n",
      "          'jokes': 1,\n",
      "          'seemed': 1,\n",
      "          'universally': 1,\n",
      "          'understood': 1,\n",
      "          'manic': 1,\n",
      "          'silliness': 1,\n",
      "          'work': 1,\n",
      "          'nas': 1,\n",
      "          'write': 1,\n",
      "          'wonder': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'actually': 1,\n",
      "          'seen': 1,\n",
      "          'based': 1,\n",
      "          'ncrime': 1,\n",
      "          'general': 1,\n",
      "          'contain': 1,\n",
      "          'lot': 1,\n",
      "          'violence': 1,\n",
      "          'nits': 1,\n",
      "          'genre': 1,\n",
      "          'parody': 1,\n",
      "          'kind': 1,\n",
      "          'hoping': 1,\n",
      "          'somehow': 1,\n",
      "          'used': 1,\n",
      "          'lords': 1,\n",
      "          'say': 1,\n",
      "          'decide': 1,\n",
      "          'sector': 1,\n",
      "          'take': 1,\n",
      "          'opportunity': 1,\n",
      "          'never': 1,\n",
      "          'explored': 1,\n",
      "          'nthere': 1,\n",
      "          'moments': 1,\n",
      "          'made': 1,\n",
      "          'smile': 1,\n",
      "          'scene': 1,\n",
      "          'dancing': 1,\n",
      "          'newly': 1,\n",
      "          'wed': 1,\n",
      "          'daughterinlaw': 1,\n",
      "          'na': 1,\n",
      "          'gunman': 1,\n",
      "          'shoots': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'nthe': 1,\n",
      "          'impact': 1,\n",
      "          'bullets': 1,\n",
      "          'cause': 1,\n",
      "          'make': 1,\n",
      "          'wild': 1,\n",
      "          'contortions': 1,\n",
      "          'force': 1,\n",
      "          'wedding': 1,\n",
      "          'band': 1,\n",
      "          'change': 1,\n",
      "          'music': 1,\n",
      "          'styles': 1,\n",
      "          'keep': 1,\n",
      "          'samba': 1,\n",
      "          'disco': 1,\n",
      "          'macarena': 1,\n",
      "          'gave': 1,\n",
      "          'best': 1,\n",
      "          'part': 1,\n",
      "          'noh': 1,\n",
      "          'well': 1,\n",
      "          'means': 1,\n",
      "          'little': 1,\n",
      "          'earlier': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'hard': 3,\n",
      "          '2': 3,\n",
      "          'die': 2,\n",
      "          'altogether': 2,\n",
      "          'original': 2,\n",
      "          'line': 2,\n",
      "          'nthe': 2,\n",
      "          'take': 2,\n",
      "          'film': 2,\n",
      "          'action': 2,\n",
      "          'harlin': 2,\n",
      "          'never': 2,\n",
      "          'ndie': 2,\n",
      "          'laugh': 2,\n",
      "          'unfortunate': 1,\n",
      "          'fiasco': 1,\n",
      "          'inferior': 1,\n",
      "          'every': 1,\n",
      "          'respect': 1,\n",
      "          'nplace': 1,\n",
      "          'blame': 1,\n",
      "          'squarely': 1,\n",
      "          'shoulders': 1,\n",
      "          'steven': 1,\n",
      "          'de': 1,\n",
      "          'souza': 1,\n",
      "          'doug': 1,\n",
      "          'richardson': 1,\n",
      "          'wrote': 1,\n",
      "          'films': 1,\n",
      "          'pathetic': 1,\n",
      "          'screenplay': 1,\n",
      "          'nevery': 1,\n",
      "          'dialogue': 1,\n",
      "          'reeks': 1,\n",
      "          'either': 1,\n",
      "          'smarmy': 1,\n",
      "          'sap': 1,\n",
      "          'forced': 1,\n",
      "          'humor': 1,\n",
      "          'plot': 1,\n",
      "          'implausible': 1,\n",
      "          'convoluted': 1,\n",
      "          'story': 1,\n",
      "          'involves': 1,\n",
      "          'band': 1,\n",
      "          'terrorists': 1,\n",
      "          'dulles': 1,\n",
      "          'airport': 1,\n",
      "          'shut': 1,\n",
      "          'control': 1,\n",
      "          'tower': 1,\n",
      "          'leaving': 1,\n",
      "          'dozen': 1,\n",
      "          'planes': 1,\n",
      "          'stranded': 1,\n",
      "          'air': 1,\n",
      "          'waiting': 1,\n",
      "          'land': 1,\n",
      "          'zero': 1,\n",
      "          'credibility': 1,\n",
      "          'characters': 1,\n",
      "          'come': 1,\n",
      "          'cliched': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutouts': 1,\n",
      "          'nso': 1,\n",
      "          'much': 1,\n",
      "          'script': 1,\n",
      "          'nhow': 1,\n",
      "          'nwell': 1,\n",
      "          'lets': 1,\n",
      "          'put': 1,\n",
      "          'way': 1,\n",
      "          'director': 1,\n",
      "          'renny': 1,\n",
      "          'could': 1,\n",
      "          'learn': 1,\n",
      "          'things': 1,\n",
      "          'john': 1,\n",
      "          'mctiernan': 1,\n",
      "          'directed': 1,\n",
      "          'well': 1,\n",
      "          'hunt': 1,\n",
      "          'red': 1,\n",
      "          'october': 1,\n",
      "          'predatorall': 1,\n",
      "          'standouts': 1,\n",
      "          'hairraising': 1,\n",
      "          'suspense': 1,\n",
      "          'nby': 1,\n",
      "          'contrast': 1,\n",
      "          'doesnt': 1,\n",
      "          'clue': 1,\n",
      "          'comes': 1,\n",
      "          'choreographing': 1,\n",
      "          'consequently': 1,\n",
      "          'picks': 1,\n",
      "          'steam': 1,\n",
      "          'harder': 1,\n",
      "          'impossible': 1,\n",
      "          'seriously': 1,\n",
      "          'even': 1,\n",
      "          'minute': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'movie': 1,\n",
      "          'often': 1,\n",
      "          'seems': 1,\n",
      "          'deliberately': 1,\n",
      "          'campy': 1,\n",
      "          'almost': 1,\n",
      "          'reaches': 1,\n",
      "          'threshold': 1,\n",
      "          'bad': 1,\n",
      "          'good': 1,\n",
      "          'nyou': 1,\n",
      "          'cleared': 1,\n",
      "          'takeoff': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'arnold': 6,\n",
      "          'way': 6,\n",
      "          'turboman': 6,\n",
      "          'one': 5,\n",
      "          'get': 4,\n",
      "          'thought': 3,\n",
      "          'jingle': 3,\n",
      "          'parents': 3,\n",
      "          'narnold': 3,\n",
      "          'sinbad': 3,\n",
      "          'find': 3,\n",
      "          'toy': 3,\n",
      "          'never': 3,\n",
      "          'kid': 3,\n",
      "          'schwarzenegger': 2,\n",
      "          'kids': 2,\n",
      "          'thing': 2,\n",
      "          'crap': 2,\n",
      "          'nand': 2,\n",
      "          'nhe': 2,\n",
      "          'dont': 2,\n",
      "          'phil': 2,\n",
      "          'hartman': 2,\n",
      "          'scene': 2,\n",
      "          'rare': 2,\n",
      "          'christmas': 2,\n",
      "          'son': 2,\n",
      "          'sons': 2,\n",
      "          'buy': 2,\n",
      "          'back': 2,\n",
      "          'doll': 2,\n",
      "          'wife': 2,\n",
      "          'wilson': 2,\n",
      "          'like': 2,\n",
      "          'minute': 2,\n",
      "          'racing': 2,\n",
      "          'want': 2,\n",
      "          'admit': 1,\n",
      "          'ni': 1,\n",
      "          'knack': 1,\n",
      "          'comedy': 1,\n",
      "          'made': 1,\n",
      "          'twins': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          'nwatching': 1,\n",
      "          'wondered': 1,\n",
      "          'anyone': 1,\n",
      "          'ever': 1,\n",
      "          'could': 1,\n",
      "          'carry': 1,\n",
      "          'lame': 1,\n",
      "          'targeted': 1,\n",
      "          'susceptible': 1,\n",
      "          'nit': 1,\n",
      "          'scare': 1,\n",
      "          'pg13': 1,\n",
      "          'kindergarten': 1,\n",
      "          'cop': 1,\n",
      "          'let': 1,\n",
      "          'small': 1,\n",
      "          'children': 1,\n",
      "          'see': 1,\n",
      "          'explain': 1,\n",
      "          'themes': 1,\n",
      "          'violence': 1,\n",
      "          'alcohol': 1,\n",
      "          'consumption': 1,\n",
      "          'burglary': 1,\n",
      "          'racism': 1,\n",
      "          'child': 1,\n",
      "          'molestation': 1,\n",
      "          'know': 1,\n",
      "          'theyll': 1,\n",
      "          'burst': 1,\n",
      "          'tears': 1,\n",
      "          'punches': 1,\n",
      "          'santas': 1,\n",
      "          'elves': 1,\n",
      "          'later': 1,\n",
      "          'decks': 1,\n",
      "          'reindeer': 1,\n",
      "          'nhey': 1,\n",
      "          'man': 1,\n",
      "          'kick': 1,\n",
      "          'easter': 1,\n",
      "          'bunny': 1,\n",
      "          'nuts': 1,\n",
      "          'youre': 1,\n",
      "          'njingle': 1,\n",
      "          'formula': 1,\n",
      "          'follows': 1,\n",
      "          'someone': 1,\n",
      "          'falls': 1,\n",
      "          'ass': 1,\n",
      "          'must': 1,\n",
      "          'funny': 1,\n",
      "          'school': 1,\n",
      "          'crash': 1,\n",
      "          'ground': 1,\n",
      "          'times': 1,\n",
      "          'special': 1,\n",
      "          'olympics': 1,\n",
      "          'hockey': 1,\n",
      "          'team': 1,\n",
      "          'dredges': 1,\n",
      "          'cliche': 1,\n",
      "          'less': 1,\n",
      "          'believability': 1,\n",
      "          'successive': 1,\n",
      "          'nwhat': 1,\n",
      "          'expect': 1,\n",
      "          'whose': 1,\n",
      "          'entire': 1,\n",
      "          'premise': 1,\n",
      "          'two': 1,\n",
      "          'cant': 1,\n",
      "          'eve': 1,\n",
      "          'anything': 1,\n",
      "          'course': 1,\n",
      "          'crack': 1,\n",
      "          'salesman': 1,\n",
      "          'races': 1,\n",
      "          'office': 1,\n",
      "          'karate': 1,\n",
      "          'game': 1,\n",
      "          'missed': 1,\n",
      "          'distrusts': 1,\n",
      "          'hes': 1,\n",
      "          'around': 1,\n",
      "          'n': 1,\n",
      "          'gee': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'absentee': 1,\n",
      "          'father': 1,\n",
      "          'becomes': 1,\n",
      "          'convinced': 1,\n",
      "          'affection': 1,\n",
      "          'rita': 1,\n",
      "          'breadwinner': 1,\n",
      "          'hanks': 1,\n",
      "          'household': 1,\n",
      "          'choosing': 1,\n",
      "          'roles': 1,\n",
      "          'told': 1,\n",
      "          'weeks': 1,\n",
      "          'ago': 1,\n",
      "          'nso': 1,\n",
      "          'sets': 1,\n",
      "          'turns': 1,\n",
      "          'tickle': 1,\n",
      "          'elmo': 1,\n",
      "          'came': 1,\n",
      "          'nlet': 1,\n",
      "          'arnolds': 1,\n",
      "          'totally': 1,\n",
      "          'obsessed': 1,\n",
      "          'character': 1,\n",
      "          'unhealthy': 1,\n",
      "          'beyond': 1,\n",
      "          'belief': 1,\n",
      "          'nwatches': 1,\n",
      "          'show': 1,\n",
      "          'eats': 1,\n",
      "          'cereal': 1,\n",
      "          'sleeps': 1,\n",
      "          'freakin': 1,\n",
      "          'sheets': 1,\n",
      "          'nid': 1,\n",
      "          'try': 1,\n",
      "          'discourage': 1,\n",
      "          'obsession': 1,\n",
      "          'lest': 1,\n",
      "          'seeing': 1,\n",
      "          'think': 1,\n",
      "          'wonderful': 1,\n",
      "          'con': 1,\n",
      "          'dad': 1,\n",
      "          'nbut': 1,\n",
      "          'nooooo': 1,\n",
      "          'climax': 1,\n",
      "          'dressed': 1,\n",
      "          'parade': 1,\n",
      "          'exonerating': 1,\n",
      "          'wrongdoing': 1,\n",
      "          'eyes': 1,\n",
      "          'recognize': 1,\n",
      "          'last': 1,\n",
      "          'nthis': 1,\n",
      "          'sad': 1,\n",
      "          'gets': 1,\n",
      "          'worse': 1,\n",
      "          'opening': 1,\n",
      "          'scenes': 1,\n",
      "          'mailman': 1,\n",
      "          'stampeding': 1,\n",
      "          'store': 1,\n",
      "          'mall': 1,\n",
      "          'hooking': 1,\n",
      "          'santa': 1,\n",
      "          'jim': 1,\n",
      "          'belushi': 1,\n",
      "          'runs': 1,\n",
      "          'bootleg': 1,\n",
      "          'factory': 1,\n",
      "          'nmost': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'radio': 1,\n",
      "          'station': 1,\n",
      "          'holds': 1,\n",
      "          'cops': 1,\n",
      "          'letter': 1,\n",
      "          'bomb': 1,\n",
      "          'beating': 1,\n",
      "          'deejay': 1,\n",
      "          'embarrassed': 1,\n",
      "          'martin': 1,\n",
      "          'mull': 1,\n",
      "          'said': 1,\n",
      "          'giving': 1,\n",
      "          'away': 1,\n",
      "          'ncapitalism': 1,\n",
      "          'produced': 1,\n",
      "          'pretty': 1,\n",
      "          'evil': 1,\n",
      "          'things': 1,\n",
      "          'chia': 1,\n",
      "          'pets': 1,\n",
      "          'ode': 1,\n",
      "          'excess': 1,\n",
      "          'violent': 1,\n",
      "          'consumerism': 1,\n",
      "          'shameful': 1,\n",
      "          'nnever': 1,\n",
      "          'mind': 1,\n",
      "          'subplot': 1,\n",
      "          'perfect': 1,\n",
      "          'neighbor': 1,\n",
      "          'trying': 1,\n",
      "          'seduce': 1,\n",
      "          'shopping': 1,\n",
      "          'cookies': 1,\n",
      "          'incredible': 1,\n",
      "          'main': 1,\n",
      "          'plot': 1,\n",
      "          'sends': 1,\n",
      "          'message': 1,\n",
      "          'okay': 1,\n",
      "          'whatever': 1,\n",
      "          'takes': 1,\n",
      "          'hands': 1,\n",
      "          'nmaybe': 1,\n",
      "          'thats': 1,\n",
      "          'house': 1,\n",
      "          'mine': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 13,\n",
      "          'effects': 12,\n",
      "          'special': 9,\n",
      "          'haunting': 6,\n",
      "          'story': 5,\n",
      "          'overdone': 4,\n",
      "          'fact': 4,\n",
      "          'take': 4,\n",
      "          'scary': 4,\n",
      "          'nthe': 4,\n",
      "          'fairly': 4,\n",
      "          'good': 4,\n",
      "          'nand': 4,\n",
      "          'character': 4,\n",
      "          'nbut': 4,\n",
      "          'horror': 3,\n",
      "          'bit': 3,\n",
      "          'people': 3,\n",
      "          'original': 3,\n",
      "          'best': 3,\n",
      "          'part': 3,\n",
      "          'neeson': 3,\n",
      "          'nhe': 3,\n",
      "          'zetajones': 3,\n",
      "          'play': 3,\n",
      "          'liam': 3,\n",
      "          'see': 3,\n",
      "          'nif': 3,\n",
      "          'kept': 2,\n",
      "          'unseen': 2,\n",
      "          'film': 2,\n",
      "          'face': 2,\n",
      "          'nwhile': 2,\n",
      "          'visual': 2,\n",
      "          'movies': 2,\n",
      "          'isnt': 2,\n",
      "          'thing': 2,\n",
      "          'caretaker': 2,\n",
      "          'great': 2,\n",
      "          'seemingly': 2,\n",
      "          'endless': 2,\n",
      "          'one': 2,\n",
      "          'characters': 2,\n",
      "          'cast': 2,\n",
      "          'conducting': 2,\n",
      "          'way': 2,\n",
      "          'mansion': 2,\n",
      "          'insomnia': 2,\n",
      "          'taylor': 2,\n",
      "          'star': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'quite': 2,\n",
      "          'probably': 2,\n",
      "          'never': 2,\n",
      "          'nthey': 2,\n",
      "          'house': 2,\n",
      "          'much': 2,\n",
      "          'got': 2,\n",
      "          'nin': 2,\n",
      "          'cases': 2,\n",
      "          'obviously': 2,\n",
      "          'cool': 2,\n",
      "          'nthen': 2,\n",
      "          'set': 2,\n",
      "          'look': 2,\n",
      "          'took': 2,\n",
      "          'around': 2,\n",
      "          'neither': 2,\n",
      "          'ni': 2,\n",
      "          'role': 2,\n",
      "          'want': 2,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'scares': 2,\n",
      "          'rent': 2,\n",
      "          'arrived': 1,\n",
      "          'theaters': 1,\n",
      "          'hearing': 1,\n",
      "          'often': 1,\n",
      "          'bumps': 1,\n",
      "          'night': 1,\n",
      "          'far': 1,\n",
      "          'scarier': 1,\n",
      "          'put': 1,\n",
      "          'courtesy': 1,\n",
      "          'agree': 1,\n",
      "          'remake': 1,\n",
      "          'goes': 1,\n",
      "          'overboard': 1,\n",
      "          'department': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'completely': 1,\n",
      "          'blame': 1,\n",
      "          'failure': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'failed': 1,\n",
      "          'account': 1,\n",
      "          'terrors': 1,\n",
      "          'dust': 1,\n",
      "          'bunny': 1,\n",
      "          'nso': 1,\n",
      "          'least': 1,\n",
      "          'arent': 1,\n",
      "          'going': 1,\n",
      "          'end': 1,\n",
      "          'frightening': 1,\n",
      "          'interested': 1,\n",
      "          'building': 1,\n",
      "          'played': 1,\n",
      "          'bruce': 1,\n",
      "          'dern': 1,\n",
      "          'ndern': 1,\n",
      "          'always': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'may': 1,\n",
      "          '3': 1,\n",
      "          'minutes': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'still': 1,\n",
      "          'interesting': 1,\n",
      "          'element': 1,\n",
      "          'nas': 1,\n",
      "          'sat': 1,\n",
      "          'albeit': 1,\n",
      "          'impressive': 1,\n",
      "          'wishing': 1,\n",
      "          'derns': 1,\n",
      "          'dimensional': 1,\n",
      "          'populated': 1,\n",
      "          'nnever': 1,\n",
      "          'sign': 1,\n",
      "          'player': 1,\n",
      "          'nliam': 1,\n",
      "          'plays': 1,\n",
      "          'scientist': 1,\n",
      "          'experiments': 1,\n",
      "          'fear': 1,\n",
      "          'decides': 1,\n",
      "          'get': 1,\n",
      "          'results': 1,\n",
      "          'trick': 1,\n",
      "          'group': 1,\n",
      "          'unstable': 1,\n",
      "          'individuals': 1,\n",
      "          'spend': 1,\n",
      "          'days': 1,\n",
      "          'haunted': 1,\n",
      "          'tricks': 1,\n",
      "          'participating': 1,\n",
      "          'letting': 1,\n",
      "          'experiment': 1,\n",
      "          'also': 1,\n",
      "          'fails': 1,\n",
      "          'mention': 1,\n",
      "          'reputation': 1,\n",
      "          'strange': 1,\n",
      "          'goingson': 1,\n",
      "          'ncatherine': 1,\n",
      "          'lili': 1,\n",
      "          'owen': 1,\n",
      "          'wilson': 1,\n",
      "          'subjects': 1,\n",
      "          'nlike': 1,\n",
      "          'taylors': 1,\n",
      "          'since': 1,\n",
      "          'doesnt': 1,\n",
      "          'marquee': 1,\n",
      "          'power': 1,\n",
      "          'ms': 1,\n",
      "          'parts': 1,\n",
      "          'seem': 1,\n",
      "          'big': 1,\n",
      "          'larger': 1,\n",
      "          'lets': 1,\n",
      "          'half': 1,\n",
      "          'nill': 1,\n",
      "          'admit': 1,\n",
      "          'would': 1,\n",
      "          'seen': 1,\n",
      "          'werent': 1,\n",
      "          'real': 1,\n",
      "          'stars': 1,\n",
      "          'combined': 1,\n",
      "          'sets': 1,\n",
      "          'supernatural': 1,\n",
      "          'elements': 1,\n",
      "          'start': 1,\n",
      "          'interact': 1,\n",
      "          'hapless': 1,\n",
      "          'patients': 1,\n",
      "          'nthere': 1,\n",
      "          'really': 1,\n",
      "          'njust': 1,\n",
      "          'setups': 1,\n",
      "          'director': 1,\n",
      "          'jan': 1,\n",
      "          'de': 1,\n",
      "          'bont': 1,\n",
      "          'showcase': 1,\n",
      "          'nifty': 1,\n",
      "          'many': 1,\n",
      "          'likely': 1,\n",
      "          'anywhere': 1,\n",
      "          'thrown': 1,\n",
      "          'sake': 1,\n",
      "          'hitting': 1,\n",
      "          'shots': 1,\n",
      "          'quota': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'things': 1,\n",
      "          'ever': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'funny': 1,\n",
      "          'maybe': 1,\n",
      "          'nwhen': 1,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'impressed': 1,\n",
      "          'gothic': 1,\n",
      "          'short': 1,\n",
      "          'tour': 1,\n",
      "          'place': 1,\n",
      "          'designers': 1,\n",
      "          'money': 1,\n",
      "          'burn': 1,\n",
      "          'decided': 1,\n",
      "          'idiotically': 1,\n",
      "          'route': 1,\n",
      "          'nthis': 1,\n",
      "          'included': 1,\n",
      "          'flooded': 1,\n",
      "          'hallway': 1,\n",
      "          'books': 1,\n",
      "          'stepping': 1,\n",
      "          'stones': 1,\n",
      "          'mirrored': 1,\n",
      "          'circular': 1,\n",
      "          'room': 1,\n",
      "          'revolves': 1,\n",
      "          'nwhat': 1,\n",
      "          'rooms': 1,\n",
      "          'nabsolutely': 1,\n",
      "          'none': 1,\n",
      "          'minds': 1,\n",
      "          'descent': 1,\n",
      "          'single': 1,\n",
      "          'scare': 1,\n",
      "          'entire': 1,\n",
      "          'actors': 1,\n",
      "          'nlili': 1,\n",
      "          'favorites': 1,\n",
      "          'mousy': 1,\n",
      "          'pathetic': 1,\n",
      "          'factored': 1,\n",
      "          'comes': 1,\n",
      "          'average': 1,\n",
      "          'slightly': 1,\n",
      "          'mark': 1,\n",
      "          'idea': 1,\n",
      "          'basically': 1,\n",
      "          'reminded': 1,\n",
      "          'ringmaster': 1,\n",
      "          'control': 1,\n",
      "          'circus': 1,\n",
      "          'nhis': 1,\n",
      "          'charge': 1,\n",
      "          'farce': 1,\n",
      "          'quickly': 1,\n",
      "          'away': 1,\n",
      "          'doubt': 1,\n",
      "          'lock': 1,\n",
      "          'prints': 1,\n",
      "          'secure': 1,\n",
      "          'vault': 1,\n",
      "          'along': 1,\n",
      "          'copies': 1,\n",
      "          'darkman': 1,\n",
      "          'nzetajones': 1,\n",
      "          'hot': 1,\n",
      "          'words': 1,\n",
      "          'bisexual': 1,\n",
      "          'icing': 1,\n",
      "          'cake': 1,\n",
      "          'nall': 1,\n",
      "          'catherine': 1,\n",
      "          'nfortunately': 1,\n",
      "          'something': 1,\n",
      "          'well': 1,\n",
      "          'size': 1,\n",
      "          'obvious': 1,\n",
      "          'purpose': 1,\n",
      "          'eyecandy': 1,\n",
      "          'nits': 1,\n",
      "          'bad': 1,\n",
      "          'someone': 1,\n",
      "          'talents': 1,\n",
      "          'wasted': 1,\n",
      "          'nany': 1,\n",
      "          'random': 1,\n",
      "          'supermodel': 1,\n",
      "          'pulled': 1,\n",
      "          'fashion': 1,\n",
      "          'show': 1,\n",
      "          'could': 1,\n",
      "          'easily': 1,\n",
      "          'filled': 1,\n",
      "          'antithesis': 1,\n",
      "          'another': 1,\n",
      "          '1999s': 1,\n",
      "          'project': 1,\n",
      "          'limitless': 1,\n",
      "          'budget': 1,\n",
      "          'relies': 1,\n",
      "          'piles': 1,\n",
      "          'rocks': 1,\n",
      "          'nboth': 1,\n",
      "          'prove': 1,\n",
      "          'nicely': 1,\n",
      "          'irrelevant': 1,\n",
      "          'sucks': 1,\n",
      "          'downhill': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'looking': 1,\n",
      "          'go': 1,\n",
      "          'wars': 1,\n",
      "          'halloween': 1,\n",
      "          'interests': 1,\n",
      "          'skip': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 7,\n",
      "          'film': 6,\n",
      "          'keanu': 4,\n",
      "          'us': 4,\n",
      "          'futuristic': 3,\n",
      "          'ending': 3,\n",
      "          'nits': 3,\n",
      "          'one': 3,\n",
      "          'hard': 2,\n",
      "          'drive': 2,\n",
      "          'information': 2,\n",
      "          'also': 2,\n",
      "          'brain': 2,\n",
      "          'acting': 2,\n",
      "          'reeves': 2,\n",
      "          'like': 2,\n",
      "          'place': 2,\n",
      "          'since': 2,\n",
      "          'nsome': 2,\n",
      "          'canada': 2,\n",
      "          'plot': 1,\n",
      "          'set': 1,\n",
      "          'future': 1,\n",
      "          'courier': 1,\n",
      "          'uploaded': 1,\n",
      "          'data': 1,\n",
      "          'resides': 1,\n",
      "          'head': 1,\n",
      "          'must': 1,\n",
      "          'escape': 1,\n",
      "          'guys': 1,\n",
      "          'important': 1,\n",
      "          'nsince': 1,\n",
      "          'overloaded': 1,\n",
      "          'hes': 1,\n",
      "          'racing': 1,\n",
      "          'clock': 1,\n",
      "          'seeps': 1,\n",
      "          'kills': 1,\n",
      "          'ncritique': 1,\n",
      "          'incoherent': 1,\n",
      "          'boring': 1,\n",
      "          'oneact': 1,\n",
      "          'drivel': 1,\n",
      "          'suspense': 1,\n",
      "          'horribly': 1,\n",
      "          'unbelievable': 1,\n",
      "          'environment': 1,\n",
      "          'dialogue': 1,\n",
      "          'careerdefining': 1,\n",
      "          'hilarious': 1,\n",
      "          'premise': 1,\n",
      "          'interesting': 1,\n",
      "          'unfortunately': 1,\n",
      "          'friends': 1,\n",
      "          'movie': 1,\n",
      "          'turned': 1,\n",
      "          'everyone': 1,\n",
      "          'warned': 1,\n",
      "          'films': 1,\n",
      "          'makes': 1,\n",
      "          'start': 1,\n",
      "          'laughing': 1,\n",
      "          'halfway': 1,\n",
      "          'realize': 1,\n",
      "          'actors': 1,\n",
      "          'suck': 1,\n",
      "          'location': 1,\n",
      "          'shots': 1,\n",
      "          'filmed': 1,\n",
      "          'dark': 1,\n",
      "          'junkyard': 1,\n",
      "          'type': 1,\n",
      "          'areas': 1,\n",
      "          'would': 1,\n",
      "          'believe': 1,\n",
      "          'whatever': 1,\n",
      "          'sets': 1,\n",
      "          'look': 1,\n",
      "          'well': 1,\n",
      "          'nsets': 1,\n",
      "          'nthere': 1,\n",
      "          'absolutely': 1,\n",
      "          'arc': 1,\n",
      "          'story': 1,\n",
      "          'nit': 1,\n",
      "          'basically': 1,\n",
      "          'starts': 1,\n",
      "          'uploading': 1,\n",
      "          'info': 1,\n",
      "          'bunch': 1,\n",
      "          'folks': 1,\n",
      "          'chasing': 1,\n",
      "          'laughable': 1,\n",
      "          'puts': 1,\n",
      "          'stop': 1,\n",
      "          'former': 1,\n",
      "          'uneventful': 1,\n",
      "          'proceedings': 1,\n",
      "          'ngibson': 1,\n",
      "          'stick': 1,\n",
      "          'writing': 1,\n",
      "          'novels': 1,\n",
      "          'xfiles': 1,\n",
      "          'episodes': 1,\n",
      "          'segue': 1,\n",
      "          'paranormal': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'much': 1,\n",
      "          'entertaining': 1,\n",
      "          'garbage': 1,\n",
      "          'hilarities': 1,\n",
      "          'include': 1,\n",
      "          'dolph': 1,\n",
      "          'lundgren': 1,\n",
      "          'jesus': 1,\n",
      "          'character': 1,\n",
      "          'whose': 1,\n",
      "          'supposed': 1,\n",
      "          'kick': 1,\n",
      "          'ass': 1,\n",
      "          'henry': 1,\n",
      "          'rollins': 1,\n",
      "          'pumpedup': 1,\n",
      "          'cyberdoctor': 1,\n",
      "          'something': 1,\n",
      "          'icet': 1,\n",
      "          'kind': 1,\n",
      "          'hobo': 1,\n",
      "          'dude': 1,\n",
      "          'paint': 1,\n",
      "          'face': 1,\n",
      "          'dont': 1,\n",
      "          'ask': 1,\n",
      "          'nthe': 1,\n",
      "          'funniest': 1,\n",
      "          'robot': 1,\n",
      "          'dolphin': 1,\n",
      "          'stupid': 1,\n",
      "          'ghostlady': 1,\n",
      "          'inside': 1,\n",
      "          'computer': 1,\n",
      "          'stuff': 1,\n",
      "          'really': 1,\n",
      "          'cares': 1,\n",
      "          'point': 1,\n",
      "          'nim': 1,\n",
      "          'ashamed': 1,\n",
      "          'say': 1,\n",
      "          'shot': 1,\n",
      "          'hometown': 1,\n",
      "          'montreal': 1,\n",
      "          'sadly': 1,\n",
      "          'enough': 1,\n",
      "          'cybertravelling': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'okay': 1,\n",
      "          'hence': 1,\n",
      "          '210': 1,\n",
      "          'overall': 1,\n",
      "          'movies': 1,\n",
      "          'thats': 1,\n",
      "          'funny': 1,\n",
      "          'watch': 1,\n",
      "          'cringe': 1,\n",
      "          'nthankfully': 1,\n",
      "          'redeemed': 1,\n",
      "          'scifi': 1,\n",
      "          'career': 1,\n",
      "          '1999s': 1,\n",
      "          'matrix': 1,\n",
      "          '7': 1,\n",
      "          '510': 1,\n",
      "          'yet': 1,\n",
      "          'redeem': 1,\n",
      "          'lack': 1,\n",
      "          'talent': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          '1999': 1,\n",
      "          'director': 1,\n",
      "          'robert': 1,\n",
      "          'longo': 1,\n",
      "          'never': 1,\n",
      "          'directed': 1,\n",
      "          'another': 1,\n",
      "          'fullfeature': 1,\n",
      "          'nhmmm': 1,\n",
      "          'nisnt': 1,\n",
      "          'odd': 1,\n",
      "          'n': 1,\n",
      "          'writer': 1,\n",
      "          'william': 1,\n",
      "          'gibson': 1,\n",
      "          'immigrated': 1,\n",
      "          '1968': 1,\n",
      "          'rejected': 1,\n",
      "          'draft': 1,\n",
      "          'nhe': 1,\n",
      "          'lived': 1,\n",
      "          'toronto': 1,\n",
      "          'first': 1,\n",
      "          '1972': 1,\n",
      "          'made': 1,\n",
      "          'vancouver': 1,\n",
      "          'home': 1,\n",
      "          'nhis': 1,\n",
      "          '1984': 1,\n",
      "          'novel': 1,\n",
      "          'neuromancer': 1,\n",
      "          'sequels': 1,\n",
      "          '1986s': 1,\n",
      "          'count': 1,\n",
      "          'zero': 1,\n",
      "          '1988s': 1,\n",
      "          'mona': 1,\n",
      "          'lisa': 1,\n",
      "          'overdrive': 1,\n",
      "          'generally': 1,\n",
      "          'considered': 1,\n",
      "          'definitive': 1,\n",
      "          'works': 1,\n",
      "          'cyberpunk': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'subgenre': 1,\n",
      "          'nthis': 1,\n",
      "          'garnered': 1,\n",
      "          'nomination': 1,\n",
      "          'worst': 1,\n",
      "          'actor': 1,\n",
      "          'category': 1,\n",
      "          '1996': 1,\n",
      "          'razzie': 1,\n",
      "          'awards': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'seagal': 14,\n",
      "          'man': 5,\n",
      "          'n': 5,\n",
      "          'cole': 5,\n",
      "          'dialogue': 4,\n",
      "          'thing': 4,\n",
      "          'glimmer': 4,\n",
      "          'wayans': 4,\n",
      "          'fan': 3,\n",
      "          'depend': 3,\n",
      "          'films': 3,\n",
      "          'new': 3,\n",
      "          'homicide': 3,\n",
      "          'campbell': 3,\n",
      "          'know': 3,\n",
      "          'steven': 2,\n",
      "          'ni': 2,\n",
      "          'say': 2,\n",
      "          'probably': 2,\n",
      "          'film': 2,\n",
      "          'formula': 2,\n",
      "          'always': 2,\n",
      "          'minimal': 2,\n",
      "          'well': 2,\n",
      "          'unless': 2,\n",
      "          'since': 2,\n",
      "          'nnot': 2,\n",
      "          'bad': 2,\n",
      "          'black': 2,\n",
      "          'hes': 2,\n",
      "          'attempts': 2,\n",
      "          'banter': 2,\n",
      "          'also': 2,\n",
      "          'lot': 2,\n",
      "          'nas': 2,\n",
      "          'keenen': 2,\n",
      "          'ivory': 2,\n",
      "          'former': 2,\n",
      "          'cant': 2,\n",
      "          'someone': 2,\n",
      "          'used': 2,\n",
      "          'nthe': 2,\n",
      "          'plot': 2,\n",
      "          'pretty': 2,\n",
      "          'stuff': 2,\n",
      "          'nits': 2,\n",
      "          'theres': 2,\n",
      "          'movie': 2,\n",
      "          'best': 2,\n",
      "          'seagals': 2,\n",
      "          'part': 2,\n",
      "          'seague': 2,\n",
      "          'much': 2,\n",
      "          'knew': 2,\n",
      "          'watch': 2,\n",
      "          'nwe': 2,\n",
      "          'little': 2,\n",
      "          'try': 2,\n",
      "          'wait': 2,\n",
      "          'still': 2,\n",
      "          'mufti': 1,\n",
      "          'splenetik': 1,\n",
      "          'isnt': 1,\n",
      "          'real': 1,\n",
      "          'name': 1,\n",
      "          'need': 1,\n",
      "          'explain': 1,\n",
      "          'went': 1,\n",
      "          'expecting': 1,\n",
      "          'great': 1,\n",
      "          'things': 1,\n",
      "          'nany': 1,\n",
      "          'proud': 1,\n",
      "          'worth': 1,\n",
      "          'beans': 1,\n",
      "          'tell': 1,\n",
      "          'something': 1,\n",
      "          'nseagal': 1,\n",
      "          'counted': 1,\n",
      "          'heaps': 1,\n",
      "          'expendable': 1,\n",
      "          'baddies': 1,\n",
      "          'extemely': 1,\n",
      "          'crunchable': 1,\n",
      "          'bones': 1,\n",
      "          'hear': 1,\n",
      "          'limbtwisting': 1,\n",
      "          'rarely': 1,\n",
      "          'female': 1,\n",
      "          'colead': 1,\n",
      "          'sight': 1,\n",
      "          'reallife': 1,\n",
      "          'modelwife': 1,\n",
      "          'hasnt': 1,\n",
      "          'worked': 1,\n",
      "          'weird': 1,\n",
      "          'science': 1,\n",
      "          'usually': 1,\n",
      "          'worst': 1,\n",
      "          'possible': 1,\n",
      "          'titles': 1,\n",
      "          'imagine': 1,\n",
      "          'mention': 1,\n",
      "          'straightforward': 1,\n",
      "          'plots': 1,\n",
      "          'generally': 1,\n",
      "          'allround': 1,\n",
      "          'mr': 1,\n",
      "          'implacable': 1,\n",
      "          'leatherface': 1,\n",
      "          'outfit': 1,\n",
      "          'nico': 1,\n",
      "          'hands': 1,\n",
      "          'sharp': 1,\n",
      "          'nimble': 1,\n",
      "          'knives': 1,\n",
      "          'stoic': 1,\n",
      "          'sir': 1,\n",
      "          'petrified': 1,\n",
      "          'ponytail': 1,\n",
      "          'duke': 1,\n",
      "          'dull': 1,\n",
      "          'nin': 1,\n",
      "          'breaks': 1,\n",
      "          'gets': 1,\n",
      "          'sidekick': 1,\n",
      "          'puts': 1,\n",
      "          'vest': 1,\n",
      "          'nhes': 1,\n",
      "          'put': 1,\n",
      "          'quite': 1,\n",
      "          'weight': 1,\n",
      "          'nsmall': 1,\n",
      "          'potatoes': 1,\n",
      "          'may': 1,\n",
      "          'able': 1,\n",
      "          'accessorize': 1,\n",
      "          'wants': 1,\n",
      "          'damnit': 1,\n",
      "          'aint': 1,\n",
      "          'broke': 1,\n",
      "          'fix': 1,\n",
      "          'disappointed': 1,\n",
      "          'persons': 1,\n",
      "          'dashed': 1,\n",
      "          'expectations': 1,\n",
      "          'later': 1,\n",
      "          'jack': 1,\n",
      "          'detective': 1,\n",
      "          'questionable': 1,\n",
      "          'past': 1,\n",
      "          'nwhile': 1,\n",
      "          'partner': 1,\n",
      "          'played': 1,\n",
      "          'investigating': 1,\n",
      "          'series': 1,\n",
      "          'ritual': 1,\n",
      "          'killings': 1,\n",
      "          'becomes': 1,\n",
      "          'suspect': 1,\n",
      "          'especially': 1,\n",
      "          'background': 1,\n",
      "          'check': 1,\n",
      "          'run': 1,\n",
      "          'reveals': 1,\n",
      "          'practically': 1,\n",
      "          'nothing': 1,\n",
      "          'nit': 1,\n",
      "          'turns': 1,\n",
      "          'trained': 1,\n",
      "          'government': 1,\n",
      "          'assassin': 1,\n",
      "          'trust': 1,\n",
      "          'detectives': 1,\n",
      "          'victims': 1,\n",
      "          'catch': 1,\n",
      "          'glimpse': 1,\n",
      "          'jungle': 1,\n",
      "          'pounced': 1,\n",
      "          'hence': 1,\n",
      "          'nan': 1,\n",
      "          'increasingly': 1,\n",
      "          'fishy': 1,\n",
      "          'investigation': 1,\n",
      "          'present': 1,\n",
      "          'soon': 1,\n",
      "          'leads': 1,\n",
      "          'gradual': 1,\n",
      "          'uncovering': 1,\n",
      "          'larger': 1,\n",
      "          'threatening': 1,\n",
      "          'conspiracy': 1,\n",
      "          'involves': 1,\n",
      "          'crooked': 1,\n",
      "          'businessman': 1,\n",
      "          'bob': 1,\n",
      "          'gunton': 1,\n",
      "          'coles': 1,\n",
      "          'cia': 1,\n",
      "          'boss': 1,\n",
      "          'brian': 1,\n",
      "          'cox': 1,\n",
      "          'deals': 1,\n",
      "          'involving': 1,\n",
      "          'chemical': 1,\n",
      "          'weapons': 1,\n",
      "          'standard': 1,\n",
      "          'drawing': 1,\n",
      "          'elements': 1,\n",
      "          'hotter': 1,\n",
      "          'year': 1,\n",
      "          'eg': 1,\n",
      "          'se7en': 1,\n",
      "          'changes': 1,\n",
      "          'disappoint': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'although': 1,\n",
      "          'fair': 1,\n",
      "          'amount': 1,\n",
      "          'violence': 1,\n",
      "          'disastrous': 1,\n",
      "          'pairing': 1,\n",
      "          'known': 1,\n",
      "          'tribe': 1,\n",
      "          'many': 1,\n",
      "          'exactly': 1,\n",
      "          'televisions': 1,\n",
      "          'living': 1,\n",
      "          'colour': 1,\n",
      "          'nwayans': 1,\n",
      "          'plays': 1,\n",
      "          'whiney': 1,\n",
      "          'straightman': 1,\n",
      "          'beadadorned': 1,\n",
      "          'brocadedraped': 1,\n",
      "          'keeping': 1,\n",
      "          'crazy': 1,\n",
      "          'wasted': 1,\n",
      "          'zest': 1,\n",
      "          'confines': 1,\n",
      "          'bemoaning': 1,\n",
      "          'partners': 1,\n",
      "          'eccentric': 1,\n",
      "          'habits': 1,\n",
      "          'chemistry': 1,\n",
      "          'two': 1,\n",
      "          'wooden': 1,\n",
      "          'comebacks': 1,\n",
      "          'make': 1,\n",
      "          'painful': 1,\n",
      "          'watching': 1,\n",
      "          'na': 1,\n",
      "          'cook': 1,\n",
      "          'seige': 1,\n",
      "          '2': 1,\n",
      "          'buddhist': 1,\n",
      "          'speaks': 1,\n",
      "          'chinese': 1,\n",
      "          'wears': 1,\n",
      "          'prayer': 1,\n",
      "          'beads': 1,\n",
      "          'intricate': 1,\n",
      "          'silk': 1,\n",
      "          'jackets': 1,\n",
      "          'normal': 1,\n",
      "          'ensemble': 1,\n",
      "          'nhe': 1,\n",
      "          'chants': 1,\n",
      "          'refuses': 1,\n",
      "          'fight': 1,\n",
      "          'truly': 1,\n",
      "          'provoked': 1,\n",
      "          'introduces': 1,\n",
      "          'powdered': 1,\n",
      "          'deer': 1,\n",
      "          'penis': 1,\n",
      "          'cure': 1,\n",
      "          'allergies': 1,\n",
      "          'nagain': 1,\n",
      "          'benign': 1,\n",
      "          'trite': 1,\n",
      "          'device': 1,\n",
      "          'except': 1,\n",
      "          'fact': 1,\n",
      "          'character': 1,\n",
      "          'traits': 1,\n",
      "          'require': 1,\n",
      "          'speak': 1,\n",
      "          'usual': 1,\n",
      "          'nheck': 1,\n",
      "          'deliver': 1,\n",
      "          'punchlines': 1,\n",
      "          'carry': 1,\n",
      "          'steady': 1,\n",
      "          'conversation': 1,\n",
      "          'large': 1,\n",
      "          'nis': 1,\n",
      "          'ask': 1,\n",
      "          'ntoo': 1,\n",
      "          'nseagals': 1,\n",
      "          'characteristic': 1,\n",
      "          'purpose': 1,\n",
      "          'already': 1,\n",
      "          'complicated': 1,\n",
      "          'world': 1,\n",
      "          'movies': 1,\n",
      "          'crunchily': 1,\n",
      "          'snap': 1,\n",
      "          'guy': 1,\n",
      "          'appendages': 1,\n",
      "          'silently': 1,\n",
      "          'alone': 1,\n",
      "          'snappy': 1,\n",
      "          'oneliners': 1,\n",
      "          'arnold': 1,\n",
      "          'stallone': 1,\n",
      "          'show': 1,\n",
      "          'act': 1,\n",
      "          'less': 1,\n",
      "          'think': 1,\n",
      "          'nno': 1,\n",
      "          'kindergarten': 1,\n",
      "          'cop': 1,\n",
      "          'oscar': 1,\n",
      "          'simple': 1,\n",
      "          'unadulterated': 1,\n",
      "          'deathblows': 1,\n",
      "          'nthats': 1,\n",
      "          'really': 1,\n",
      "          'must': 1,\n",
      "          'started': 1,\n",
      "          'likeminded': 1,\n",
      "          'fans': 1,\n",
      "          'wanted': 1,\n",
      "          'streamed': 1,\n",
      "          'knowing': 1,\n",
      "          'never': 1,\n",
      "          'universe': 1,\n",
      "          'would': 1,\n",
      "          'ever': 1,\n",
      "          'see': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'trusted': 1,\n",
      "          'got': 1,\n",
      "          'nnow': 1,\n",
      "          'betrayal': 1,\n",
      "          'dont': 1,\n",
      "          'another': 1,\n",
      "          'without': 1,\n",
      "          'niggling': 1,\n",
      "          'doubt': 1,\n",
      "          'going': 1,\n",
      "          'funny': 1,\n",
      "          'nill': 1,\n",
      "          'wont': 1,\n",
      "          'easy': 1,\n",
      "          'nif': 1,\n",
      "          'havent': 1,\n",
      "          'watched': 1,\n",
      "          'yet': 1,\n",
      "          'might': 1,\n",
      "          'want': 1,\n",
      "          'video': 1,\n",
      "          'come': 1,\n",
      "          'easier': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          'parts': 1,\n",
      "          'linger': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'nafter': 1,\n",
      "          'fantasies': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'creaky': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'good': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nmufti': 1,\n",
      "          'spelenetik': 1,\n",
      "          'neverybody': 1,\n",
      "          'makes': 1,\n",
      "          'mistakes': 1,\n",
      "          'awhile': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'warrior': 4,\n",
      "          'eating': 4,\n",
      "          'nthe': 4,\n",
      "          'story': 4,\n",
      "          '13th': 3,\n",
      "          'man': 3,\n",
      "          'vikings': 3,\n",
      "          'scenes': 3,\n",
      "          'comes': 2,\n",
      "          'witch': 2,\n",
      "          'flesh': 2,\n",
      "          'men': 2,\n",
      "          'ahmed': 2,\n",
      "          'land': 2,\n",
      "          'becomes': 2,\n",
      "          'chosen': 2,\n",
      "          'well': 2,\n",
      "          'basically': 2,\n",
      "          'also': 2,\n",
      "          'film': 2,\n",
      "          'dont': 2,\n",
      "          'nit': 2,\n",
      "          'mctiernan': 2,\n",
      "          'shelf': 2,\n",
      "          'end': 1,\n",
      "          'summer': 1,\n",
      "          'weve': 1,\n",
      "          'already': 1,\n",
      "          'experienced': 1,\n",
      "          'sharks': 1,\n",
      "          'deep': 1,\n",
      "          'blue': 1,\n",
      "          'sea': 1,\n",
      "          'crocodiles': 1,\n",
      "          'lake': 1,\n",
      "          'placid': 1,\n",
      "          'even': 1,\n",
      "          'hunting': 1,\n",
      "          'blair': 1,\n",
      "          'project': 1,\n",
      "          'nnow': 1,\n",
      "          'presents': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'tribe': 1,\n",
      "          'believe': 1,\n",
      "          'bears': 1,\n",
      "          'thats': 1,\n",
      "          'want': 1,\n",
      "          'call': 1,\n",
      "          'follows': 1,\n",
      "          'ibn': 1,\n",
      "          'fahdlan': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'arabian': 1,\n",
      "          'poet': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'kings': 1,\n",
      "          'wife': 1,\n",
      "          'banished': 1,\n",
      "          'home': 1,\n",
      "          'nhe': 1,\n",
      "          'travels': 1,\n",
      "          'ambassador': 1,\n",
      "          'neventually': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'protect': 1,\n",
      "          'people': 1,\n",
      "          'village': 1,\n",
      "          'hunted': 1,\n",
      "          'nthirteen': 1,\n",
      "          'warriors': 1,\n",
      "          'go': 1,\n",
      "          'mission': 1,\n",
      "          'guessed': 1,\n",
      "          'thirteenth': 1,\n",
      "          'nhes': 1,\n",
      "          'first': 1,\n",
      "          'accepted': 1,\n",
      "          'movie': 1,\n",
      "          'advances': 1,\n",
      "          'hell': 1,\n",
      "          'prove': 1,\n",
      "          'battlefield': 1,\n",
      "          'nthats': 1,\n",
      "          'entire': 1,\n",
      "          'plot': 1,\n",
      "          'nthere': 1,\n",
      "          'romantic': 1,\n",
      "          'subplot': 1,\n",
      "          'badly': 1,\n",
      "          'mishandled': 1,\n",
      "          'one': 1,\n",
      "          'assumes': 1,\n",
      "          'drastically': 1,\n",
      "          'cut': 1,\n",
      "          'begin': 1,\n",
      "          'wonder': 1,\n",
      "          'filmmakers': 1,\n",
      "          'didnt': 1,\n",
      "          'edit': 1,\n",
      "          'attaining': 1,\n",
      "          'part': 1,\n",
      "          'ninstead': 1,\n",
      "          'chose': 1,\n",
      "          'leave': 1,\n",
      "          'enough': 1,\n",
      "          'annoy': 1,\n",
      "          'viewer': 1,\n",
      "          'non': 1,\n",
      "          'stop': 1,\n",
      "          'action': 1,\n",
      "          'pauses': 1,\n",
      "          'tries': 1,\n",
      "          'develop': 1,\n",
      "          'laughing': 1,\n",
      "          'stock': 1,\n",
      "          'battle': 1,\n",
      "          'although': 1,\n",
      "          'choreographed': 1,\n",
      "          'involving': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'exciting': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          'characters': 1,\n",
      "          'care': 1,\n",
      "          'lives': 1,\n",
      "          'dies': 1,\n",
      "          'wants': 1,\n",
      "          'beowolf': 1,\n",
      "          'across': 1,\n",
      "          'failed': 1,\n",
      "          'actionadventure': 1,\n",
      "          'aspiring': 1,\n",
      "          'epic': 1,\n",
      "          'proportions': 1,\n",
      "          'achieving': 1,\n",
      "          'levels': 1,\n",
      "          'directed': 1,\n",
      "          'john': 1,\n",
      "          'whos': 1,\n",
      "          'thomas': 1,\n",
      "          'crown': 1,\n",
      "          'affair': 1,\n",
      "          'playing': 1,\n",
      "          'theaters': 1,\n",
      "          'currently': 1,\n",
      "          'nand': 1,\n",
      "          'worked': 1,\n",
      "          'simultaneously': 1,\n",
      "          'films': 1,\n",
      "          'placed': 1,\n",
      "          'long': 1,\n",
      "          'studio': 1,\n",
      "          'waiting': 1,\n",
      "          'time': 1,\n",
      "          'dump': 1,\n",
      "          'audiences': 1,\n",
      "          'belongs': 1,\n",
      "          'back': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'shandling': 6,\n",
      "          'bening': 6,\n",
      "          'nthe': 6,\n",
      "          'like': 5,\n",
      "          'fact': 5,\n",
      "          'time': 5,\n",
      "          'isnt': 5,\n",
      "          'movie': 4,\n",
      "          'planet': 4,\n",
      "          'funny': 4,\n",
      "          'annette': 4,\n",
      "          'john': 4,\n",
      "          'goodman': 4,\n",
      "          'shandlings': 4,\n",
      "          'nit': 4,\n",
      "          'character': 4,\n",
      "          'mike': 3,\n",
      "          'nichols': 3,\n",
      "          'ni': 3,\n",
      "          'feel': 3,\n",
      "          'nim': 3,\n",
      "          'next': 3,\n",
      "          'got': 3,\n",
      "          'make': 3,\n",
      "          'garry': 3,\n",
      "          'greg': 3,\n",
      "          'kinnear': 3,\n",
      "          'ngarry': 3,\n",
      "          'nand': 3,\n",
      "          'cringeinducing': 3,\n",
      "          'one': 3,\n",
      "          'species': 3,\n",
      "          'penis': 3,\n",
      "          'since': 3,\n",
      "          'never': 3,\n",
      "          'falls': 3,\n",
      "          'watch': 2,\n",
      "          'cant': 2,\n",
      "          'help': 2,\n",
      "          'nits': 2,\n",
      "          'nthis': 2,\n",
      "          'nthing': 2,\n",
      "          'see': 2,\n",
      "          'fault': 2,\n",
      "          'know': 2,\n",
      "          'doesnt': 2,\n",
      "          'give': 2,\n",
      "          'list': 2,\n",
      "          'names': 2,\n",
      "          'together': 2,\n",
      "          'instantly': 2,\n",
      "          'come': 2,\n",
      "          'weve': 2,\n",
      "          'man': 2,\n",
      "          'even': 2,\n",
      "          'show': 2,\n",
      "          'away': 2,\n",
      "          'american': 2,\n",
      "          'beauty': 2,\n",
      "          'nwhat': 2,\n",
      "          'comedy': 2,\n",
      "          'whole': 2,\n",
      "          'nbut': 2,\n",
      "          'unfunny': 2,\n",
      "          'moments': 2,\n",
      "          'uninsightful': 2,\n",
      "          'end': 2,\n",
      "          'alien': 2,\n",
      "          'males': 2,\n",
      "          'series': 2,\n",
      "          'female': 2,\n",
      "          'theyre': 2,\n",
      "          'turn': 2,\n",
      "          'winner': 2,\n",
      "          'long': 2,\n",
      "          'writers': 2,\n",
      "          'frequently': 2,\n",
      "          'nif': 2,\n",
      "          'meets': 2,\n",
      "          'played': 2,\n",
      "          'turns': 2,\n",
      "          'aa': 2,\n",
      "          'meetings': 2,\n",
      "          'nwhen': 2,\n",
      "          'kinnears': 2,\n",
      "          'seen': 2,\n",
      "          'love': 2,\n",
      "          'baby': 2,\n",
      "          'day': 2,\n",
      "          'get': 2,\n",
      "          'supposed': 2,\n",
      "          'ntheres': 2,\n",
      "          'comes': 2,\n",
      "          'nha': 2,\n",
      "          'nlets': 2,\n",
      "          'subplot': 2,\n",
      "          'movies': 2,\n",
      "          'lets': 2,\n",
      "          'everyone': 1,\n",
      "          'looking': 1,\n",
      "          'audience': 1,\n",
      "          'gazing': 1,\n",
      "          'back': 1,\n",
      "          'head': 1,\n",
      "          'darkness': 1,\n",
      "          'eyes': 1,\n",
      "          'shooting': 1,\n",
      "          'daggers': 1,\n",
      "          'quietly': 1,\n",
      "          'blaming': 1,\n",
      "          'paid': 1,\n",
      "          'hardearned': 1,\n",
      "          'money': 1,\n",
      "          'spend': 1,\n",
      "          'watching': 1,\n",
      "          'shift': 1,\n",
      "          'uncomfortably': 1,\n",
      "          'seat': 1,\n",
      "          'reminded': 1,\n",
      "          'pair': 1,\n",
      "          'second': 1,\n",
      "          'thirdrate': 1,\n",
      "          'celebrities': 1,\n",
      "          'engaging': 1,\n",
      "          'teleprompted': 1,\n",
      "          'conversation': 1,\n",
      "          'introduce': 1,\n",
      "          'blockbuster': 1,\n",
      "          'award': 1,\n",
      "          'dammit': 1,\n",
      "          'someones': 1,\n",
      "          'ta': 1,\n",
      "          'embarrassed': 1,\n",
      "          'look': 1,\n",
      "          'anyone': 1,\n",
      "          'screen': 1,\n",
      "          'ready': 1,\n",
      "          'take': 1,\n",
      "          'blame': 1,\n",
      "          'people': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'ndo': 1,\n",
      "          'shudder': 1,\n",
      "          'answer': 1,\n",
      "          'would': 1,\n",
      "          'today': 1,\n",
      "          'quite': 1,\n",
      "          'talented': 1,\n",
      "          'individuals': 1,\n",
      "          'ngranted': 1,\n",
      "          'flintstones': 1,\n",
      "          'turned': 1,\n",
      "          'lessthanlackluster': 1,\n",
      "          'leading': 1,\n",
      "          'performances': 1,\n",
      "          'certified': 1,\n",
      "          'failures': 1,\n",
      "          'smile': 1,\n",
      "          'theyve': 1,\n",
      "          'proven': 1,\n",
      "          'power': 1,\n",
      "          'excellent': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'two': 1,\n",
      "          'television': 1,\n",
      "          'classics': 1,\n",
      "          'belt': 1,\n",
      "          'ingenious': 1,\n",
      "          'little': 1,\n",
      "          'larry': 1,\n",
      "          'sanders': 1,\n",
      "          'gods': 1,\n",
      "          'sake': 1,\n",
      "          'directed': 1,\n",
      "          'graduate': 1,\n",
      "          'walking': 1,\n",
      "          'nso': 1,\n",
      "          'explain': 1,\n",
      "          'npurports': 1,\n",
      "          'exploring': 1,\n",
      "          'relationship': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'satirizing': 1,\n",
      "          'poppsychology': 1,\n",
      "          'marsvenus': 1,\n",
      "          'phenomenon': 1,\n",
      "          'winds': 1,\n",
      "          'collection': 1,\n",
      "          'coupled': 1,\n",
      "          'result': 1,\n",
      "          'unsurprisingly': 1,\n",
      "          'thoroughly': 1,\n",
      "          'icky': 1,\n",
      "          'embarrassment': 1,\n",
      "          'plays': 1,\n",
      "          'populated': 1,\n",
      "          'technologically': 1,\n",
      "          'advanced': 1,\n",
      "          'emotionally': 1,\n",
      "          'vacant': 1,\n",
      "          'reproduce': 1,\n",
      "          'cloning': 1,\n",
      "          'course': 1,\n",
      "          'nhis': 1,\n",
      "          'leaders': 1,\n",
      "          'put': 1,\n",
      "          'select': 1,\n",
      "          'group': 1,\n",
      "          'tests': 1,\n",
      "          'designed': 1,\n",
      "          'determine': 1,\n",
      "          'fit': 1,\n",
      "          'fly': 1,\n",
      "          'earth': 1,\n",
      "          'find': 1,\n",
      "          'impregnate': 1,\n",
      "          'ntheyre': 1,\n",
      "          'taught': 1,\n",
      "          'pretend': 1,\n",
      "          'listening': 1,\n",
      "          'nodding': 1,\n",
      "          'saying': 1,\n",
      "          'uhhuh': 1,\n",
      "          'compliment': 1,\n",
      "          'shoes': 1,\n",
      "          'nimagine': 1,\n",
      "          'delighted': 1,\n",
      "          'surprise': 1,\n",
      "          'oh': 1,\n",
      "          'heavens': 1,\n",
      "          'carefully': 1,\n",
      "          'practiced': 1,\n",
      "          'tactics': 1,\n",
      "          'fail': 1,\n",
      "          'miserably': 1,\n",
      "          'producing': 1,\n",
      "          'comedic': 1,\n",
      "          'results': 1,\n",
      "          'lucky': 1,\n",
      "          'fitted': 1,\n",
      "          'generations': 1,\n",
      "          'disuse': 1,\n",
      "          'shrunk': 1,\n",
      "          'existence': 1,\n",
      "          'restrain': 1,\n",
      "          'mentioning': 1,\n",
      "          'implausibility': 1,\n",
      "          'scenario': 1,\n",
      "          'population': 1,\n",
      "          'stopped': 1,\n",
      "          'evolving': 1,\n",
      "          'due': 1,\n",
      "          'clones': 1,\n",
      "          'nwhoops': 1,\n",
      "          'late': 1,\n",
      "          'aroused': 1,\n",
      "          'tends': 1,\n",
      "          'humming': 1,\n",
      "          'noise': 1,\n",
      "          'strapped': 1,\n",
      "          'ideas': 1,\n",
      "          'tend': 1,\n",
      "          'source': 1,\n",
      "          'first': 1,\n",
      "          'eighth': 1,\n",
      "          'eighteenth': 1,\n",
      "          'anything': 1,\n",
      "          'made': 1,\n",
      "          'vaguely': 1,\n",
      "          'selfconscious': 1,\n",
      "          'coworker': 1,\n",
      "          'bank': 1,\n",
      "          'generic': 1,\n",
      "          'unlikable': 1,\n",
      "          'scumbag': 1,\n",
      "          'nhes': 1,\n",
      "          'meant': 1,\n",
      "          'fill': 1,\n",
      "          'part': 1,\n",
      "          'unfortunate': 1,\n",
      "          'role': 1,\n",
      "          'model': 1,\n",
      "          'hes': 1,\n",
      "          'flatly': 1,\n",
      "          'drawn': 1,\n",
      "          'quickly': 1,\n",
      "          'toss': 1,\n",
      "          'aside': 1,\n",
      "          'nkinnears': 1,\n",
      "          'scumbagginess': 1,\n",
      "          'demonstrated': 1,\n",
      "          'claims': 1,\n",
      "          'peoples': 1,\n",
      "          'work': 1,\n",
      "          'worm': 1,\n",
      "          'way': 1,\n",
      "          'vice': 1,\n",
      "          'presidents': 1,\n",
      "          'position': 1,\n",
      "          'goes': 1,\n",
      "          'pick': 1,\n",
      "          'chicks': 1,\n",
      "          'nwow': 1,\n",
      "          'magnificent': 1,\n",
      "          'bastard': 1,\n",
      "          'nnearly': 1,\n",
      "          'every': 1,\n",
      "          'sort': 1,\n",
      "          'sexdriven': 1,\n",
      "          'slimeball': 1,\n",
      "          'wife': 1,\n",
      "          'walks': 1,\n",
      "          'office': 1,\n",
      "          'single': 1,\n",
      "          'guy': 1,\n",
      "          'trip': 1,\n",
      "          'bump': 1,\n",
      "          'wall': 1,\n",
      "          'otherwise': 1,\n",
      "          'pratfall': 1,\n",
      "          'theyd': 1,\n",
      "          'woman': 1,\n",
      "          'guys': 1,\n",
      "          'arent': 1,\n",
      "          'particularly': 1,\n",
      "          'slimeballs': 1,\n",
      "          'goodmans': 1,\n",
      "          'detective': 1,\n",
      "          'simply': 1,\n",
      "          'uncommunicative': 1,\n",
      "          'workaholics': 1,\n",
      "          'nshandling': 1,\n",
      "          'inevitably': 1,\n",
      "          'prove': 1,\n",
      "          'knew': 1,\n",
      "          'existed': 1,\n",
      "          'nshandlings': 1,\n",
      "          'mission': 1,\n",
      "          'reveals': 1,\n",
      "          'desires': 1,\n",
      "          'nthey': 1,\n",
      "          'married': 1,\n",
      "          'nyup': 1,\n",
      "          'ncuz': 1,\n",
      "          'ya': 1,\n",
      "          'wants': 1,\n",
      "          'nbenings': 1,\n",
      "          'perhaps': 1,\n",
      "          'difficult': 1,\n",
      "          'especially': 1,\n",
      "          'seeing': 1,\n",
      "          'apart': 1,\n",
      "          'seams': 1,\n",
      "          'effectively': 1,\n",
      "          'representing': 1,\n",
      "          'woe': 1,\n",
      "          'say': 1,\n",
      "          'nshes': 1,\n",
      "          'unfathomably': 1,\n",
      "          'insecure': 1,\n",
      "          'succumbs': 1,\n",
      "          'easily': 1,\n",
      "          'lines': 1,\n",
      "          'lies': 1,\n",
      "          'borders': 1,\n",
      "          'tragic': 1,\n",
      "          'point': 1,\n",
      "          'thinking': 1,\n",
      "          'may': 1,\n",
      "          'able': 1,\n",
      "          'bear': 1,\n",
      "          'children': 1,\n",
      "          'learns': 1,\n",
      "          'indeed': 1,\n",
      "          'pregnant': 1,\n",
      "          'home': 1,\n",
      "          'nearly': 1,\n",
      "          'cheating': 1,\n",
      "          'strolls': 1,\n",
      "          'kitchen': 1,\n",
      "          'sings': 1,\n",
      "          'high': 1,\n",
      "          'hopes': 1,\n",
      "          'uplifting': 1,\n",
      "          'ant': 1,\n",
      "          'rubber': 1,\n",
      "          'tree': 1,\n",
      "          'plant': 1,\n",
      "          'song': 1,\n",
      "          'deliver': 1,\n",
      "          'news': 1,\n",
      "          'says': 1,\n",
      "          'leave': 1,\n",
      "          'nwere': 1,\n",
      "          'empathize': 1,\n",
      "          'discovery': 1,\n",
      "          'feeling': 1,\n",
      "          'guilt': 1,\n",
      "          'instead': 1,\n",
      "          'wanted': 1,\n",
      "          'weep': 1,\n",
      "          'placing': 1,\n",
      "          'entire': 1,\n",
      "          'life': 1,\n",
      "          'soul': 1,\n",
      "          'firmly': 1,\n",
      "          'lap': 1,\n",
      "          'great': 1,\n",
      "          'big': 1,\n",
      "          'nothing': 1,\n",
      "          'eventually': 1,\n",
      "          'nfor': 1,\n",
      "          'real': 1,\n",
      "          'suppose': 1,\n",
      "          'though': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'exactly': 1,\n",
      "          'prompted': 1,\n",
      "          'nwhats': 1,\n",
      "          'message': 1,\n",
      "          'derive': 1,\n",
      "          'nmen': 1,\n",
      "          'liars': 1,\n",
      "          'inherently': 1,\n",
      "          'empty': 1,\n",
      "          'creatures': 1,\n",
      "          'hang': 1,\n",
      "          'around': 1,\n",
      "          'enough': 1,\n",
      "          'nwell': 1,\n",
      "          'maybe': 1,\n",
      "          'something': 1,\n",
      "          'click': 1,\n",
      "          'ha': 1,\n",
      "          'thankful': 1,\n",
      "          'broad': 1,\n",
      "          'cynicism': 1,\n",
      "          'allowed': 1,\n",
      "          'run': 1,\n",
      "          'rampant': 1,\n",
      "          'join': 1,\n",
      "          'hands': 1,\n",
      "          'pray': 1,\n",
      "          'folks': 1,\n",
      "          'also': 1,\n",
      "          'involving': 1,\n",
      "          'airline': 1,\n",
      "          'incident': 1,\n",
      "          'investigator': 1,\n",
      "          'wades': 1,\n",
      "          'bog': 1,\n",
      "          'stupidity': 1,\n",
      "          'ngoodman': 1,\n",
      "          'astoundingly': 1,\n",
      "          'implausible': 1,\n",
      "          'realizations': 1,\n",
      "          'puts': 1,\n",
      "          'another': 1,\n",
      "          'world': 1,\n",
      "          'magic': 1,\n",
      "          'vibrating': 1,\n",
      "          'makings': 1,\n",
      "          'discovered': 1,\n",
      "          'thankfully': 1,\n",
      "          'inevitable': 1,\n",
      "          'hackneyed': 1,\n",
      "          'fruition': 1,\n",
      "          'ninstead': 1,\n",
      "          'dangles': 1,\n",
      "          'limply': 1,\n",
      "          'branch': 1,\n",
      "          'withers': 1,\n",
      "          'nfurther': 1,\n",
      "          'proof': 1,\n",
      "          'stick': 1,\n",
      "          'coen': 1,\n",
      "          'brothers': 1,\n",
      "          'dwell': 1,\n",
      "          'longer': 1,\n",
      "          'ive': 1,\n",
      "          'already': 1,\n",
      "          'wasted': 1,\n",
      "          'plenty': 1,\n",
      "          'move': 1,\n",
      "          'forget': 1,\n",
      "          'lives': 1,\n",
      "          'us': 1,\n",
      "          'things': 1,\n",
      "          'happy': 1,\n",
      "          'note': 1,\n",
      "          'ncongratuations': 1,\n",
      "          'go': 1,\n",
      "          'weeks': 1,\n",
      "          'title': 1,\n",
      "          'naward': 1,\n",
      "          'delivering': 1,\n",
      "          'awkward': 1,\n",
      "          'line': 1,\n",
      "          'dialog': 1,\n",
      "          'containing': 1,\n",
      "          'name': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'julie': 7,\n",
      "          'last': 6,\n",
      "          'summer': 5,\n",
      "          'know': 4,\n",
      "          'like': 3,\n",
      "          'movies': 3,\n",
      "          'ni': 3,\n",
      "          'still': 3,\n",
      "          'cant': 3,\n",
      "          'n': 3,\n",
      "          'horror': 2,\n",
      "          'many': 2,\n",
      "          'lovehewitt': 2,\n",
      "          'movie': 2,\n",
      "          'willis': 2,\n",
      "          'run': 2,\n",
      "          'trip': 2,\n",
      "          'karla': 2,\n",
      "          'boyfriend': 2,\n",
      "          'heres': 2,\n",
      "          'gets': 2,\n",
      "          'think': 2,\n",
      "          'really': 2,\n",
      "          'got': 2,\n",
      "          'next': 2,\n",
      "          'one': 2,\n",
      "          'filmmaker': 2,\n",
      "          'seems': 1,\n",
      "          'im': 1,\n",
      "          'reviewing': 1,\n",
      "          'cheeseball': 1,\n",
      "          'monthly': 1,\n",
      "          'basis': 1,\n",
      "          'nscream': 1,\n",
      "          'revitalized': 1,\n",
      "          'genre': 1,\n",
      "          'studios': 1,\n",
      "          'intent': 1,\n",
      "          'burying': 1,\n",
      "          'ground': 1,\n",
      "          'againthe': 1,\n",
      "          'serial': 1,\n",
      "          'killers': 1,\n",
      "          'new': 1,\n",
      "          'slasher': 1,\n",
      "          'nothing': 1,\n",
      "          'sony': 1,\n",
      "          'miramax': 1,\n",
      "          'relentless': 1,\n",
      "          'department': 1,\n",
      "          'terrible': 1,\n",
      "          'film': 1,\n",
      "          'respects': 1,\n",
      "          'wake': 1,\n",
      "          'stupefyingly': 1,\n",
      "          'bad': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'citizen': 1,\n",
      "          'hook': 1,\n",
      "          'njennifer': 1,\n",
      "          'reprises': 1,\n",
      "          'role': 1,\n",
      "          'buxom': 1,\n",
      "          'teenager': 1,\n",
      "          'jameswho': 1,\n",
      "          'apparently': 1,\n",
      "          'escaped': 1,\n",
      "          'certain': 1,\n",
      "          'doom': 1,\n",
      "          'end': 1,\n",
      "          'waking': 1,\n",
      "          'nup': 1,\n",
      "          'nshe': 1,\n",
      "          'lives': 1,\n",
      "          'fear': 1,\n",
      "          'ben': 1,\n",
      "          'vengeful': 1,\n",
      "          'fishermanvictim': 1,\n",
      "          'hit': 1,\n",
      "          'pals': 1,\n",
      "          'nparanoid': 1,\n",
      "          'beat': 1,\n",
      "          'accepts': 1,\n",
      "          'free': 1,\n",
      "          'bahamas': 1,\n",
      "          'friend': 1,\n",
      "          'norwood': 1,\n",
      "          'winner': 1,\n",
      "          'local': 1,\n",
      "          'radio': 1,\n",
      "          'stations': 1,\n",
      "          '4th': 1,\n",
      "          'july': 1,\n",
      "          'getaway': 1,\n",
      "          'giveaway': 1,\n",
      "          'nbikiniready': 1,\n",
      "          'invites': 1,\n",
      "          'ray': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'whoand': 1,\n",
      "          'biggest': 1,\n",
      "          'mysteryturns': 1,\n",
      "          'changes': 1,\n",
      "          'mind': 1,\n",
      "          'plans': 1,\n",
      "          'surprise': 1,\n",
      "          'takeoff': 1,\n",
      "          'nuntil': 1,\n",
      "          'roadside': 1,\n",
      "          'visit': 1,\n",
      "          'captain': 1,\n",
      "          'hellliner': 1,\n",
      "          'nunaware': 1,\n",
      "          'feeling': 1,\n",
      "          'shunned': 1,\n",
      "          'goes': 1,\n",
      "          'vacation': 1,\n",
      "          'anyway': 1,\n",
      "          'karlas': 1,\n",
      "          'pfeiffer': 1,\n",
      "          'matthew': 1,\n",
      "          'settle': 1,\n",
      "          'real': 1,\n",
      "          'boynextdoor': 1,\n",
      "          'type': 1,\n",
      "          'whos': 1,\n",
      "          'sweet': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'long': 1,\n",
      "          'story': 1,\n",
      "          'shorti': 1,\n",
      "          'believe': 1,\n",
      "          'took': 1,\n",
      "          'paragraph': 1,\n",
      "          'describe': 1,\n",
      "          'setup': 1,\n",
      "          'gratuitous': 1,\n",
      "          'sequelthe': 1,\n",
      "          'disaster': 1,\n",
      "          'nnot': 1,\n",
      "          'storm': 1,\n",
      "          'season': 1,\n",
      "          'desk': 1,\n",
      "          'clerk': 1,\n",
      "          'frighteners': 1,\n",
      "          'jeffrey': 1,\n",
      "          'combs': 1,\n",
      "          'jerk': 1,\n",
      "          'island': 1,\n",
      "          'residents': 1,\n",
      "          'heroic': 1,\n",
      "          'vacationers': 1,\n",
      "          'getting': 1,\n",
      "          'picked': 1,\n",
      "          'resourceful': 1,\n",
      "          'onebyone': 1,\n",
      "          'karaoke': 1,\n",
      "          'machine': 1,\n",
      "          'isnt': 1,\n",
      "          'working': 1,\n",
      "          'properly': 1,\n",
      "          'killing': 1,\n",
      "          'hard': 1,\n",
      "          'ntry': 1,\n",
      "          'reprogramming': 1,\n",
      "          'laserdisc': 1,\n",
      "          'gloria': 1,\n",
      "          'gaynors': 1,\n",
      "          'survive': 1,\n",
      "          'contains': 1,\n",
      "          'lyric': 1,\n",
      "          'nall': 1,\n",
      "          'lostray': 1,\n",
      "          'way': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'helpful': 1,\n",
      "          'witch': 1,\n",
      "          'doctor': 1,\n",
      "          'saying': 1,\n",
      "          'little': 1,\n",
      "          'prayers': 1,\n",
      "          'co': 1,\n",
      "          'nthis': 1,\n",
      "          'picture': 1,\n",
      "          'breasts': 1,\n",
      "          'two': 1,\n",
      "          'njulie': 1,\n",
      "          'good': 1,\n",
      "          'heroine': 1,\n",
      "          'never': 1,\n",
      "          'shirt': 1,\n",
      "          'collar': 1,\n",
      "          'always': 1,\n",
      "          'wears': 1,\n",
      "          'white': 1,\n",
      "          'rain': 1,\n",
      "          'keeps': 1,\n",
      "          'sexy': 1,\n",
      "          'underwear': 1,\n",
      "          'case': 1,\n",
      "          'sudden': 1,\n",
      "          'desire': 1,\n",
      "          'tan': 1,\n",
      "          'nbased': 1,\n",
      "          'hormonal': 1,\n",
      "          'charge': 1,\n",
      "          'imagine': 1,\n",
      "          'ten': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'boy': 1,\n",
      "          'sat': 1,\n",
      "          'mehe': 1,\n",
      "          'jennifer': 1,\n",
      "          'generation': 1,\n",
      "          'heather': 1,\n",
      "          'langenkamp': 1,\n",
      "          'nlucky': 1,\n",
      "          'bastard': 1,\n",
      "          'didnt': 1,\n",
      "          'say': 1,\n",
      "          'liked': 1,\n",
      "          'continuation': 1,\n",
      "          'less': 1,\n",
      "          'nthe': 1,\n",
      "          'pacing': 1,\n",
      "          'films': 1,\n",
      "          'languidhow': 1,\n",
      "          'much': 1,\n",
      "          'time': 1,\n",
      "          'passes': 1,\n",
      "          'neither': 1,\n",
      "          'murder': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'better': 1,\n",
      "          'sense': 1,\n",
      "          'humour': 1,\n",
      "          'first': 1,\n",
      "          'though': 1,\n",
      "          'least': 1,\n",
      "          'explains': 1,\n",
      "          'away': 1,\n",
      "          'williss': 1,\n",
      "          'random': 1,\n",
      "          'selection': 1,\n",
      "          'victims': 1,\n",
      "          'dont': 1,\n",
      "          'hotel': 1,\n",
      "          'maid': 1,\n",
      "          'stoner': 1,\n",
      "          'dude': 1,\n",
      "          'slightest': 1,\n",
      "          'idea': 1,\n",
      "          'ndirector': 1,\n",
      "          'cannon': 1,\n",
      "          'judge': 1,\n",
      "          'dredd': 1,\n",
      "          'competent': 1,\n",
      "          'particularly': 1,\n",
      "          'imaginative': 1,\n",
      "          'oneif': 1,\n",
      "          'part': 1,\n",
      "          'three': 1,\n",
      "          'earth': 1,\n",
      "          'would': 1,\n",
      "          'call': 1,\n",
      "          'fun': 1,\n",
      "          'denouement': 1,\n",
      "          'suggests': 1,\n",
      "          'suggestion': 1,\n",
      "          'hire': 1,\n",
      "          'flair': 1,\n",
      "          'someone': 1,\n",
      "          'energize': 1,\n",
      "          'stillborn': 1,\n",
      "          'seriessomeone': 1,\n",
      "          'wont': 1,\n",
      "          'rely': 1,\n",
      "          'shock': 1,\n",
      "          'notes': 1,\n",
      "          'nand': 1,\n",
      "          'let': 1,\n",
      "          'person': 1,\n",
      "          'wild': 1,\n",
      "          'camera': 1,\n",
      "          'aside': 1,\n",
      "          'blandy': 1,\n",
      "          'sic': 1,\n",
      "          'must': 1,\n",
      "          'appear': 1,\n",
      "          'try': 1,\n",
      "          'keep': 1,\n",
      "          'number': 1,\n",
      "          'times': 1,\n",
      "          'says': 1,\n",
      "          'baby': 1,\n",
      "          'minimum': 1,\n",
      "          'nthanks': 1,\n",
      "          'advance': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'johnny': 3,\n",
      "          'back': 2,\n",
      "          'one': 2,\n",
      "          'future': 2,\n",
      "          'keanu': 2,\n",
      "          'reeves': 2,\n",
      "          'nhes': 2,\n",
      "          'nthe': 2,\n",
      "          'mnemonic': 2,\n",
      "          'action': 2,\n",
      "          'n': 2,\n",
      "          'way': 2,\n",
      "          'bad': 2,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'territory': 1,\n",
      "          'conceptual': 1,\n",
      "          'artist': 1,\n",
      "          'robert': 1,\n",
      "          'longos': 1,\n",
      "          'vision': 1,\n",
      "          'william': 1,\n",
      "          'gibsoninspired': 1,\n",
      "          'information': 1,\n",
      "          'commodity': 1,\n",
      "          'kill': 1,\n",
      "          'nfront': 1,\n",
      "          'center': 1,\n",
      "          'cybercourier': 1,\n",
      "          'smuggles': 1,\n",
      "          'data': 1,\n",
      "          'via': 1,\n",
      "          'wetwired': 1,\n",
      "          'implant': 1,\n",
      "          'ready': 1,\n",
      "          'quit': 1,\n",
      "          'biz': 1,\n",
      "          'get': 1,\n",
      "          'portion': 1,\n",
      "          'longterm': 1,\n",
      "          'memory': 1,\n",
      "          'restored': 1,\n",
      "          'first': 1,\n",
      "          'finish': 1,\n",
      "          'last': 1,\n",
      "          'dangerous': 1,\n",
      "          'job': 1,\n",
      "          'pressing': 1,\n",
      "          'problem': 1,\n",
      "          'seems': 1,\n",
      "          'forgotten': 1,\n",
      "          'play': 1,\n",
      "          'hero': 1,\n",
      "          'since': 1,\n",
      "          'stint': 1,\n",
      "          'speed': 1,\n",
      "          'walking': 1,\n",
      "          'wood': 1,\n",
      "          'forest': 1,\n",
      "          'stiffs': 1,\n",
      "          'includes': 1,\n",
      "          'henry': 1,\n",
      "          'rollins': 1,\n",
      "          'icet': 1,\n",
      "          'dina': 1,\n",
      "          'meyer': 1,\n",
      "          'dolph': 1,\n",
      "          'lundgrens': 1,\n",
      "          'street': 1,\n",
      "          'preacher': 1,\n",
      "          'acting': 1,\n",
      "          'category': 1,\n",
      "          'without': 1,\n",
      "          'believable': 1,\n",
      "          'performance': 1,\n",
      "          'sit': 1,\n",
      "          'watch': 1,\n",
      "          'atmosphere': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'places': 1,\n",
      "          'vr': 1,\n",
      "          'sequences': 1,\n",
      "          'cool': 1,\n",
      "          'physical': 1,\n",
      "          'fxsuch': 1,\n",
      "          'miniatures': 1,\n",
      "          'mattesleave': 1,\n",
      "          'lot': 1,\n",
      "          'desired': 1,\n",
      "          'nwatch': 1,\n",
      "          'bluescreens': 1,\n",
      "          'nwe': 1,\n",
      "          'wouldnt': 1,\n",
      "          'mind': 1,\n",
      "          'minute': 1,\n",
      "          'played': 1,\n",
      "          'better': 1,\n",
      "          'ntoo': 1,\n",
      "          'debut': 1,\n",
      "          'director': 1,\n",
      "          'isnt': 1,\n",
      "          'strong': 1,\n",
      "          'de': 1,\n",
      "          'partment': 1,\n",
      "          'nhis': 1,\n",
      "          'big': 1,\n",
      "          'finale': 1,\n",
      "          'sloppy': 1,\n",
      "          'silly': 1,\n",
      "          'mess': 1,\n",
      "          'runs': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'long': 1,\n",
      "          'past': 1,\n",
      "          'time': 1,\n",
      "          'wet': 1,\n",
      "          'wired': 1,\n",
      "          'processors': 1,\n",
      "          'already': 1,\n",
      "          'shut': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'yatf': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'tortured': 1,\n",
      "          'nskip': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'girls': 11,\n",
      "          'film': 11,\n",
      "          'world': 8,\n",
      "          'spice': 7,\n",
      "          'much': 5,\n",
      "          'nthe': 4,\n",
      "          'one': 4,\n",
      "          'even': 3,\n",
      "          'would': 3,\n",
      "          'group': 3,\n",
      "          'funny': 3,\n",
      "          'joke': 3,\n",
      "          'nspice': 3,\n",
      "          'find': 2,\n",
      "          'individual': 2,\n",
      "          'identities': 2,\n",
      "          'girl': 2,\n",
      "          'power': 2,\n",
      "          'nbut': 2,\n",
      "          'isnt': 2,\n",
      "          'enough': 2,\n",
      "          'scary': 2,\n",
      "          'melanie': 2,\n",
      "          'sporty': 2,\n",
      "          'ginger': 2,\n",
      "          'cheers': 2,\n",
      "          'right': 2,\n",
      "          'james': 2,\n",
      "          'bond': 2,\n",
      "          'comes': 2,\n",
      "          'tour': 2,\n",
      "          'live': 2,\n",
      "          'ideas': 2,\n",
      "          'clifford': 2,\n",
      "          'richard': 2,\n",
      "          'documentary': 2,\n",
      "          'crew': 2,\n",
      "          'rapidly': 2,\n",
      "          'publisher': 2,\n",
      "          'hit': 2,\n",
      "          'make': 2,\n",
      "          'fuller': 2,\n",
      "          'spiers': 2,\n",
      "          'vignette': 2,\n",
      "          'subplot': 2,\n",
      "          'little': 2,\n",
      "          'stage': 2,\n",
      "          'young': 2,\n",
      "          'fans': 2,\n",
      "          'think': 2,\n",
      "          'really': 2,\n",
      "          'works': 2,\n",
      "          'video': 2,\n",
      "          'persona': 2,\n",
      "          'also': 2,\n",
      "          'spices': 2,\n",
      "          'involving': 2,\n",
      "          'ok': 1,\n",
      "          'admit': 1,\n",
      "          'iti': 1,\n",
      "          'camp': 1,\n",
      "          'amusement': 1,\n",
      "          'nyes': 1,\n",
      "          'gimmicky': 1,\n",
      "          'annoyingly': 1,\n",
      "          'infectious': 1,\n",
      "          'bubblegum': 1,\n",
      "          'pop': 1,\n",
      "          'hooks': 1,\n",
      "          'cheesy': 1,\n",
      "          'unifying': 1,\n",
      "          'mantra': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'appeal': 1,\n",
      "          'carry': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'debut': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'junky': 1,\n",
      "          'mess': 1,\n",
      "          'aptly': 1,\n",
      "          'named': 1,\n",
      "          'shite': 1,\n",
      "          'begins': 1,\n",
      "          'amusingly': 1,\n",
      "          'cheeky': 1,\n",
      "          '007esque': 1,\n",
      "          'title': 1,\n",
      "          'sequence': 1,\n",
      "          'british': 1,\n",
      "          'quintet': 1,\n",
      "          'brown': 1,\n",
      "          'baby': 1,\n",
      "          'emma': 1,\n",
      "          'bunton': 1,\n",
      "          'chisolm': 1,\n",
      "          'geri': 1,\n",
      "          'halliwell': 1,\n",
      "          'posh': 1,\n",
      "          'victoria': 1,\n",
      "          'adams': 1,\n",
      "          'introduced': 1,\n",
      "          'surprise': 1,\n",
      "          'excited': 1,\n",
      "          'slightly': 1,\n",
      "          'mocking': 1,\n",
      "          'press': 1,\n",
      "          'audience': 1,\n",
      "          'croon': 1,\n",
      "          'silky': 1,\n",
      "          'ballad': 1,\n",
      "          'tune': 1,\n",
      "          'sound': 1,\n",
      "          'home': 1,\n",
      "          'actual': 1,\n",
      "          'na': 1,\n",
      "          'minutes': 1,\n",
      "          'elton': 1,\n",
      "          'john': 1,\n",
      "          'cameo': 1,\n",
      "          'later': 1,\n",
      "          'introductory': 1,\n",
      "          'numerous': 1,\n",
      "          'plotlines': 1,\n",
      "          'run': 1,\n",
      "          '1': 1,\n",
      "          'spicy': 1,\n",
      "          'ones': 1,\n",
      "          'go': 1,\n",
      "          'european': 1,\n",
      "          'publicity': 1,\n",
      "          'leading': 1,\n",
      "          'first': 1,\n",
      "          'concert': 1,\n",
      "          'londons': 1,\n",
      "          'royal': 1,\n",
      "          'albert': 1,\n",
      "          'hall': 1,\n",
      "          '2': 1,\n",
      "          'producer': 1,\n",
      "          'george': 1,\n",
      "          'wendt': 1,\n",
      "          'screenwriter': 1,\n",
      "          'mark': 1,\n",
      "          'mckinney': 1,\n",
      "          'pitch': 1,\n",
      "          'various': 1,\n",
      "          'manager': 1,\n",
      "          'e': 1,\n",
      "          'grant': 1,\n",
      "          '3': 1,\n",
      "          'follows': 1,\n",
      "          '4': 1,\n",
      "          'pregnant': 1,\n",
      "          'mate': 1,\n",
      "          'naoki': 1,\n",
      "          'mori': 1,\n",
      "          'approaches': 1,\n",
      "          'due': 1,\n",
      "          'date': 1,\n",
      "          '5': 1,\n",
      "          'tabloid': 1,\n",
      "          'barry': 1,\n",
      "          'humphries': 1,\n",
      "          'attempts': 1,\n",
      "          'destroy': 1,\n",
      "          'help': 1,\n",
      "          'sneaky': 1,\n",
      "          'shutterbug': 1,\n",
      "          'obrien': 1,\n",
      "          'ncapped': 1,\n",
      "          'rendition': 1,\n",
      "          'bouncy': 1,\n",
      "          'say': 1,\n",
      "          'youll': 1,\n",
      "          'wealth': 1,\n",
      "          'laughs': 1,\n",
      "          'merriment': 1,\n",
      "          'sure': 1,\n",
      "          'follow': 1,\n",
      "          'nwrong': 1,\n",
      "          'downhill': 1,\n",
      "          'collapses': 1,\n",
      "          'series': 1,\n",
      "          'misfired': 1,\n",
      "          'comedy': 1,\n",
      "          'sketches': 1,\n",
      "          'ni': 1,\n",
      "          'must': 1,\n",
      "          'give': 1,\n",
      "          'credit': 1,\n",
      "          'refreshing': 1,\n",
      "          'willingness': 1,\n",
      "          'fun': 1,\n",
      "          'writer': 1,\n",
      "          'kim': 1,\n",
      "          'director': 1,\n",
      "          'bob': 1,\n",
      "          'barely': 1,\n",
      "          'come': 1,\n",
      "          'less': 1,\n",
      "          'organized': 1,\n",
      "          'framework': 1,\n",
      "          'wacky': 1,\n",
      "          'goingson': 1,\n",
      "          'jumps': 1,\n",
      "          'direction': 1,\n",
      "          'sense': 1,\n",
      "          'minute': 1,\n",
      "          'meet': 1,\n",
      "          'aliens': 1,\n",
      "          'another': 1,\n",
      "          'daring': 1,\n",
      "          'rescue': 1,\n",
      "          'two': 1,\n",
      "          'fall': 1,\n",
      "          'water': 1,\n",
      "          'boat': 1,\n",
      "          'ride': 1,\n",
      "          'nwhile': 1,\n",
      "          'decent': 1,\n",
      "          'slips': 1,\n",
      "          'cracks': 1,\n",
      "          'thereduring': 1,\n",
      "          'dance': 1,\n",
      "          'bootcamp': 1,\n",
      "          'scene': 1,\n",
      "          'sing': 1,\n",
      "          'lyric': 1,\n",
      "          'know': 1,\n",
      "          'got': 1,\n",
      "          'farstrength': 1,\n",
      "          'courage': 1,\n",
      "          'wonderbra': 1,\n",
      "          'material': 1,\n",
      "          'chuckle': 1,\n",
      "          'level': 1,\n",
      "          'nsome': 1,\n",
      "          'gags': 1,\n",
      "          'plain': 1,\n",
      "          'pointless': 1,\n",
      "          'roger': 1,\n",
      "          'moores': 1,\n",
      "          'recurring': 1,\n",
      "          'role': 1,\n",
      "          'mysterious': 1,\n",
      "          'chief': 1,\n",
      "          'dispenses': 1,\n",
      "          'cryptic': 1,\n",
      "          'metaphorheavy': 1,\n",
      "          'advice': 1,\n",
      "          'reason': 1,\n",
      "          'anyone': 1,\n",
      "          'fact': 1,\n",
      "          'moore': 1,\n",
      "          'played': 1,\n",
      "          'nha': 1,\n",
      "          'ha': 1,\n",
      "          'nas': 1,\n",
      "          'weak': 1,\n",
      "          'script': 1,\n",
      "          'theres': 1,\n",
      "          'insurmountable': 1,\n",
      "          'problem': 1,\n",
      "          'attempting': 1,\n",
      "          'movie': 1,\n",
      "          'point': 1,\n",
      "          'cant': 1,\n",
      "          'act': 1,\n",
      "          'record': 1,\n",
      "          '_cant_': 1,\n",
      "          'personas': 1,\n",
      "          'gimmick': 1,\n",
      "          'span': 1,\n",
      "          'fourminute': 1,\n",
      "          'music': 1,\n",
      "          'thin': 1,\n",
      "          'survive': 1,\n",
      "          'outside': 1,\n",
      "          'truncated': 1,\n",
      "          'bite': 1,\n",
      "          'mtv': 1,\n",
      "          'nposh': 1,\n",
      "          'garnered': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'introductions': 1,\n",
      "          'best': 1,\n",
      "          'default': 1,\n",
      "          'rich': 1,\n",
      "          'bitch': 1,\n",
      "          'easily': 1,\n",
      "          'translates': 1,\n",
      "          'character': 1,\n",
      "          'nbabys': 1,\n",
      "          'innocent': 1,\n",
      "          'lesser': 1,\n",
      "          'extent': 1,\n",
      "          'remaining': 1,\n",
      "          'harder': 1,\n",
      "          'flesh': 1,\n",
      "          'nthere': 1,\n",
      "          'besides': 1,\n",
      "          'exercise': 1,\n",
      "          'every': 1,\n",
      "          'often': 1,\n",
      "          '_exactly_': 1,\n",
      "          'exactly': 1,\n",
      "          'entails': 1,\n",
      "          'napparently': 1,\n",
      "          'wardrobes': 1,\n",
      "          'manages': 1,\n",
      "          'pick': 1,\n",
      "          'steam': 1,\n",
      "          'late': 1,\n",
      "          'going': 1,\n",
      "          'following': 1,\n",
      "          'flashback': 1,\n",
      "          'performance': 1,\n",
      "          'signature': 1,\n",
      "          'wannabe': 1,\n",
      "          'song': 1,\n",
      "          'grating': 1,\n",
      "          'ever': 1,\n",
      "          'energy': 1,\n",
      "          'number': 1,\n",
      "          'gives': 1,\n",
      "          'proceedings': 1,\n",
      "          'muchneeded': 1,\n",
      "          'shot': 1,\n",
      "          'arm': 1,\n",
      "          'setting': 1,\n",
      "          'wave': 1,\n",
      "          'selfreferential': 1,\n",
      "          'humor': 1,\n",
      "          'stemmed': 1,\n",
      "          'screenwriters': 1,\n",
      "          'almost': 1,\n",
      "          'mirrors': 1,\n",
      "          'robert': 1,\n",
      "          'altmans': 1,\n",
      "          'player': 1,\n",
      "          'way': 1,\n",
      "          'snails': 1,\n",
      "          'nthis': 1,\n",
      "          'section': 1,\n",
      "          'manner': 1,\n",
      "          'derringdo': 1,\n",
      "          'speeding': 1,\n",
      "          'bus': 1,\n",
      "          'perhaps': 1,\n",
      "          'effective': 1,\n",
      "          'points': 1,\n",
      "          'storylines': 1,\n",
      "          'lack': 1,\n",
      "          'satisfactory': 1,\n",
      "          'payoff': 1,\n",
      "          'harmless': 1,\n",
      "          'entertainment': 1,\n",
      "          'suitable': 1,\n",
      "          'entire': 1,\n",
      "          'family': 1,\n",
      "          'please': 1,\n",
      "          'faithful': 1,\n",
      "          'sloppy': 1,\n",
      "          'enterprise': 1,\n",
      "          'surely': 1,\n",
      "          'wont': 1,\n",
      "          'win': 1,\n",
      "          'new': 1,\n",
      "          'sorely': 1,\n",
      "          'needs': 1,\n",
      "          'bolster': 1,\n",
      "          'waning': 1,\n",
      "          'states': 1,\n",
      "          'nonce': 1,\n",
      "          'hype': 1,\n",
      "          'disappears': 1,\n",
      "          'likely': 1,\n",
      "          'serve': 1,\n",
      "          'final': 1,\n",
      "          'hurrah': 1,\n",
      "          'america': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'sly': 7,\n",
      "          'woods': 6,\n",
      "          'action': 4,\n",
      "          'stone': 4,\n",
      "          'make': 3,\n",
      "          'noir': 3,\n",
      "          'big': 3,\n",
      "          'james': 3,\n",
      "          'us': 3,\n",
      "          'sometimes': 3,\n",
      "          'really': 3,\n",
      "          'see': 3,\n",
      "          'sylvester': 2,\n",
      "          'stallone': 2,\n",
      "          'worst': 2,\n",
      "          'dull': 2,\n",
      "          'explosions': 2,\n",
      "          'exciting': 2,\n",
      "          'stupid': 2,\n",
      "          'boring': 2,\n",
      "          'blown': 2,\n",
      "          'none': 2,\n",
      "          'bomb': 2,\n",
      "          'shows': 2,\n",
      "          'bad': 2,\n",
      "          'killed': 2,\n",
      "          'people': 2,\n",
      "          'nand': 2,\n",
      "          'nso': 2,\n",
      "          'life': 2,\n",
      "          'sharon': 2,\n",
      "          'roberts': 2,\n",
      "          'accent': 2,\n",
      "          'etc': 2,\n",
      "          'kill': 2,\n",
      "          'calls': 2,\n",
      "          'naked': 2,\n",
      "          'comes': 2,\n",
      "          'tries': 2,\n",
      "          'ass': 2,\n",
      "          'scenes': 2,\n",
      "          'nthe': 2,\n",
      "          'sex': 2,\n",
      "          'scene': 2,\n",
      "          'breasts': 2,\n",
      "          'good': 2,\n",
      "          'ni': 2,\n",
      "          'flaw': 2,\n",
      "          'fun': 2,\n",
      "          'made': 1,\n",
      "          'crap': 1,\n",
      "          'films': 1,\n",
      "          'lifetime': 1,\n",
      "          'got': 1,\n",
      "          'one': 1,\n",
      "          'na': 1,\n",
      "          'totally': 1,\n",
      "          'story': 1,\n",
      "          'thinks': 1,\n",
      "          'use': 1,\n",
      "          'various': 1,\n",
      "          'interesting': 1,\n",
      "          'specialist': 1,\n",
      "          'episode': 1,\n",
      "          'dragnet': 1,\n",
      "          'well': 1,\n",
      "          'acted': 1,\n",
      "          'neven': 1,\n",
      "          'attempts': 1,\n",
      "          'mood': 1,\n",
      "          'destroyed': 1,\n",
      "          'sappy': 1,\n",
      "          'script': 1,\n",
      "          'unlikable': 1,\n",
      "          'characters': 1,\n",
      "          'plain': 1,\n",
      "          'nothingness': 1,\n",
      "          'nwho': 1,\n",
      "          'knew': 1,\n",
      "          'explosion': 1,\n",
      "          'could': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'nunless': 1,\n",
      "          'saw': 1,\n",
      "          'away': 1,\n",
      "          'n': 1,\n",
      "          'specliast': 1,\n",
      "          'title': 1,\n",
      "          'star': 1,\n",
      "          'comeback': 1,\n",
      "          '19': 1,\n",
      "          'think': 1,\n",
      "          'plays': 1,\n",
      "          'quiet': 1,\n",
      "          'hermitlike': 1,\n",
      "          'bomber': 1,\n",
      "          'expert': 1,\n",
      "          'army': 1,\n",
      "          'something': 1,\n",
      "          'suffered': 1,\n",
      "          'change': 1,\n",
      "          'heart': 1,\n",
      "          'assistant': 1,\n",
      "          'exactly': 1,\n",
      "          'overthetop': 1,\n",
      "          'another': 1,\n",
      "          'accidentally': 1,\n",
      "          'innocent': 1,\n",
      "          'job': 1,\n",
      "          'nhis': 1,\n",
      "          'credo': 1,\n",
      "          'killing': 1,\n",
      "          'innocents': 1,\n",
      "          'thats': 1,\n",
      "          'makes': 1,\n",
      "          'bombs': 1,\n",
      "          'anyway': 1,\n",
      "          'steps': 1,\n",
      "          'seductive': 1,\n",
      "          'basically': 1,\n",
      "          'girlfriendmoll': 1,\n",
      "          'son': 1,\n",
      "          'eric': 1,\n",
      "          'cubanmiami': 1,\n",
      "          'kingpin': 1,\n",
      "          'rod': 1,\n",
      "          'steiger': 1,\n",
      "          'indecipherable': 1,\n",
      "          'cuban': 1,\n",
      "          'brando': 1,\n",
      "          'scottish': 1,\n",
      "          'nturns': 1,\n",
      "          'actually': 1,\n",
      "          'using': 1,\n",
      "          'boyfriend': 1,\n",
      "          'since': 1,\n",
      "          'parents': 1,\n",
      "          'young': 1,\n",
      "          'leaves': 1,\n",
      "          'messages': 1,\n",
      "          'sends': 1,\n",
      "          'email': 1,\n",
      "          'planting': 1,\n",
      "          'listens': 1,\n",
      "          'obsessively': 1,\n",
      "          'works': 1,\n",
      "          'nyea': 1,\n",
      "          'nalso': 1,\n",
      "          'though': 1,\n",
      "          'tipped': 1,\n",
      "          'catch': 1,\n",
      "          'nusing': 1,\n",
      "          'cops': 1,\n",
      "          'set': 1,\n",
      "          'traps': 1,\n",
      "          'work': 1,\n",
      "          'goes': 1,\n",
      "          'ballisitic': 1,\n",
      "          'phone': 1,\n",
      "          'getting': 1,\n",
      "          'worked': 1,\n",
      "          'saying': 1,\n",
      "          'mustbeimprovised': 1,\n",
      "          'speeches': 1,\n",
      "          'seems': 1,\n",
      "          'pop': 1,\n",
      "          'vein': 1,\n",
      "          'head': 1,\n",
      "          'wide': 1,\n",
      "          'open': 1,\n",
      "          'nthese': 1,\n",
      "          'becomes': 1,\n",
      "          'ounce': 1,\n",
      "          'entertainment': 1,\n",
      "          'offer': 1,\n",
      "          'moody': 1,\n",
      "          'except': 1,\n",
      "          'completely': 1,\n",
      "          'snakeeyes': 1,\n",
      "          'nits': 1,\n",
      "          'pretend': 1,\n",
      "          'making': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'buffs': 1,\n",
      "          'pretty': 1,\n",
      "          'lame': 1,\n",
      "          'unrealisticlooking': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'penthouse': 1,\n",
      "          'hotel': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'piece': 1,\n",
      "          'cardboard': 1,\n",
      "          'falling': 1,\n",
      "          'tub': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'muchdiscussed': 1,\n",
      "          'mispaired': 1,\n",
      "          'couple': 1,\n",
      "          'rachel': 1,\n",
      "          'ross': 1,\n",
      "          'friends': 1,\n",
      "          'ntheir': 1,\n",
      "          'nauseating': 1,\n",
      "          'sexy': 1,\n",
      "          'nnow': 1,\n",
      "          'lets': 1,\n",
      "          'guess': 1,\n",
      "          'wed': 1,\n",
      "          'rather': 1,\n",
      "          'okay': 1,\n",
      "          'nstones': 1,\n",
      "          'small': 1,\n",
      "          'perky': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'times': 1,\n",
      "          'harvey': 1,\n",
      "          'keitels': 1,\n",
      "          'dick': 1,\n",
      "          'stallones': 1,\n",
      "          'veiny': 1,\n",
      "          'isnt': 1,\n",
      "          'usually': 1,\n",
      "          'shown': 1,\n",
      "          'reason': 1,\n",
      "          'know': 1,\n",
      "          'cant': 1,\n",
      "          'judge': 1,\n",
      "          'come': 1,\n",
      "          'mean': 1,\n",
      "          'caffeine': 1,\n",
      "          'watching': 1,\n",
      "          'friend': 1,\n",
      "          'fell': 1,\n",
      "          'asleep': 1,\n",
      "          'woken': 1,\n",
      "          'ranting': 1,\n",
      "          'nbut': 1,\n",
      "          'movie': 1,\n",
      "          'going': 1,\n",
      "          'nuts': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'rent': 1,\n",
      "          'slys': 1,\n",
      "          'earlier': 1,\n",
      "          'demolition': 1,\n",
      "          'man': 1,\n",
      "          'sucks': 1,\n",
      "          'much': 1,\n",
      "          'entertaining': 1,\n",
      "          'fashion': 1,\n",
      "          'nskip': 1,\n",
      "          'unless': 1,\n",
      "          'want': 1,\n",
      "          'steigers': 1,\n",
      "          'stones': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'skulls': 10,\n",
      "          'nthe': 8,\n",
      "          'society': 4,\n",
      "          'skull': 4,\n",
      "          'nbut': 4,\n",
      "          'member': 4,\n",
      "          'like': 4,\n",
      "          'one': 4,\n",
      "          'bad': 3,\n",
      "          'way': 3,\n",
      "          'secret': 3,\n",
      "          'new': 3,\n",
      "          'maybe': 3,\n",
      "          'little': 3,\n",
      "          'actors': 3,\n",
      "          'thriller': 2,\n",
      "          'ridiculous': 2,\n",
      "          'ni': 2,\n",
      "          'share': 2,\n",
      "          'actual': 2,\n",
      "          'joshua': 2,\n",
      "          'jackson': 2,\n",
      "          'varsity': 2,\n",
      "          'luke': 2,\n",
      "          'organization': 2,\n",
      "          'potential': 2,\n",
      "          'would': 2,\n",
      "          'exciting': 2,\n",
      "          'another': 2,\n",
      "          'pogue': 2,\n",
      "          'nand': 2,\n",
      "          'top': 2,\n",
      "          'given': 2,\n",
      "          'nthey': 2,\n",
      "          'paddles': 2,\n",
      "          'dialogue': 2,\n",
      "          'mandrake': 2,\n",
      "          'dealt': 2,\n",
      "          'guy': 2,\n",
      "          'makes': 2,\n",
      "          'better': 2,\n",
      "          'nit': 2,\n",
      "          'minute': 2,\n",
      "          'laughably': 1,\n",
      "          'teenorientated': 1,\n",
      "          'doppelganger': 1,\n",
      "          'firm': 1,\n",
      "          'blazingly': 1,\n",
      "          'caused': 1,\n",
      "          'drift': 1,\n",
      "          'hypnotic': 1,\n",
      "          'stupor': 1,\n",
      "          'ncertain': 1,\n",
      "          'moments': 1,\n",
      "          'preposterous': 1,\n",
      "          'nearly': 1,\n",
      "          'herniated': 1,\n",
      "          'attempt': 1,\n",
      "          'stifle': 1,\n",
      "          'laughter': 1,\n",
      "          'chuckled': 1,\n",
      "          'incessantly': 1,\n",
      "          'home': 1,\n",
      "          'nlet': 1,\n",
      "          'conceived': 1,\n",
      "          'inside': 1,\n",
      "          'walls': 1,\n",
      "          'yale': 1,\n",
      "          'designed': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'mirror': 1,\n",
      "          'bones': 1,\n",
      "          'college': 1,\n",
      "          'nluke': 1,\n",
      "          'mcnamara': 1,\n",
      "          'townie': 1,\n",
      "          'local': 1,\n",
      "          'rowing': 1,\n",
      "          'championship': 1,\n",
      "          'victor': 1,\n",
      "          'third': 1,\n",
      "          'consecutive': 1,\n",
      "          'year': 1,\n",
      "          'highlights': 1,\n",
      "          'latest': 1,\n",
      "          'scouting': 1,\n",
      "          'report': 1,\n",
      "          'ndespite': 1,\n",
      "          'anxiety': 1,\n",
      "          'caution': 1,\n",
      "          'others': 1,\n",
      "          'accepts': 1,\n",
      "          'entry': 1,\n",
      "          'nsoon': 1,\n",
      "          'finds': 1,\n",
      "          'surrounded': 1,\n",
      "          'beautiful': 1,\n",
      "          'women': 1,\n",
      "          'driving': 1,\n",
      "          'car': 1,\n",
      "          'marveling': 1,\n",
      "          '20': 1,\n",
      "          '000': 1,\n",
      "          'somehow': 1,\n",
      "          'surfaced': 1,\n",
      "          'bank': 1,\n",
      "          'account': 1,\n",
      "          'nyeah': 1,\n",
      "          'dude': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'deal': 1,\n",
      "          'eh': 1,\n",
      "          'soon': 1,\n",
      "          'learns': 1,\n",
      "          'membership': 1,\n",
      "          'somewhat': 1,\n",
      "          'suffocating': 1,\n",
      "          'circumstances': 1,\n",
      "          'become': 1,\n",
      "          'extreme': 1,\n",
      "          'leave': 1,\n",
      "          'except': 1,\n",
      "          'drooling': 1,\n",
      "          'vegetable': 1,\n",
      "          'premise': 1,\n",
      "          'although': 1,\n",
      "          'lacking': 1,\n",
      "          'originality': 1,\n",
      "          'certainly': 1,\n",
      "          'offers': 1,\n",
      "          'intrigue': 1,\n",
      "          'suspense': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'neither': 1,\n",
      "          'intriguing': 1,\n",
      "          'suspenseful': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'associate': 1,\n",
      "          'fresh': 1,\n",
      "          'nits': 1,\n",
      "          'abysmal': 1,\n",
      "          'teen': 1,\n",
      "          'prototype': 1,\n",
      "          'soundtrack': 1,\n",
      "          'stars': 1,\n",
      "          'script': 1,\n",
      "          'attains': 1,\n",
      "          'certain': 1,\n",
      "          'level': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'screenplay': 1,\n",
      "          'jon': 1,\n",
      "          'immediately': 1,\n",
      "          'becoming': 1,\n",
      "          'basis': 1,\n",
      "          'slew': 1,\n",
      "          'unintentional': 1,\n",
      "          'howlers': 1,\n",
      "          'nfirst': 1,\n",
      "          'upon': 1,\n",
      "          'initiation': 1,\n",
      "          'branded': 1,\n",
      "          'onto': 1,\n",
      "          'arm': 1,\n",
      "          'nafterward': 1,\n",
      "          'supplied': 1,\n",
      "          'wristwatch': 1,\n",
      "          'conveniently': 1,\n",
      "          'covers': 1,\n",
      "          'scar': 1,\n",
      "          'nwill': 1,\n",
      "          'never': 1,\n",
      "          'take': 1,\n",
      "          'watch': 1,\n",
      "          'forget': 1,\n",
      "          'bedside': 1,\n",
      "          'nperhaps': 1,\n",
      "          'conspicuous': 1,\n",
      "          'decided': 1,\n",
      "          'brand': 1,\n",
      "          'members': 1,\n",
      "          'cattle': 1,\n",
      "          'area': 1,\n",
      "          'body': 1,\n",
      "          'easily': 1,\n",
      "          'exposed': 1,\n",
      "          'non': 1,\n",
      "          'rulebook': 1,\n",
      "          'key': 1,\n",
      "          'headquarters': 1,\n",
      "          'ngee': 1,\n",
      "          'tshirts': 1,\n",
      "          'favorite': 1,\n",
      "          'bit': 1,\n",
      "          'voting': 1,\n",
      "          'committee': 1,\n",
      "          'bother': 1,\n",
      "          'individual': 1,\n",
      "          'agree': 1,\n",
      "          'disagree': 1,\n",
      "          'notions': 1,\n",
      "          'making': 1,\n",
      "          'collective': 1,\n",
      "          'decisions': 1,\n",
      "          'official': 1,\n",
      "          'nwhen': 1,\n",
      "          'flipped': 1,\n",
      "          'side': 1,\n",
      "          'indicate': 1,\n",
      "          'agrees': 1,\n",
      "          'proposal': 1,\n",
      "          'nfacing': 1,\n",
      "          'opposite': 1,\n",
      "          'means': 1,\n",
      "          'disagreement': 1,\n",
      "          'nwouldnt': 1,\n",
      "          'merely': 1,\n",
      "          'express': 1,\n",
      "          'verbally': 1,\n",
      "          'nhell': 1,\n",
      "          'retrieve': 1,\n",
      "          'proper': 1,\n",
      "          'vote': 1,\n",
      "          'afterward': 1,\n",
      "          'play': 1,\n",
      "          'pingpong': 1,\n",
      "          'nim': 1,\n",
      "          'still': 1,\n",
      "          'chuckling': 1,\n",
      "          'ludicrous': 1,\n",
      "          'details': 1,\n",
      "          'humiliating': 1,\n",
      "          'enough': 1,\n",
      "          'send': 1,\n",
      "          'arrest': 1,\n",
      "          'cast': 1,\n",
      "          'meanwhile': 1,\n",
      "          'combines': 1,\n",
      "          'pinch': 1,\n",
      "          'veteran': 1,\n",
      "          'talent': 1,\n",
      "          'dash': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'crowd': 1,\n",
      "          'fuses': 1,\n",
      "          'two': 1,\n",
      "          'together': 1,\n",
      "          'ensuring': 1,\n",
      "          'embarrassment': 1,\n",
      "          'mutually': 1,\n",
      "          'shared': 1,\n",
      "          'union': 1,\n",
      "          'throughout': 1,\n",
      "          'entirely': 1,\n",
      "          'naccomplished': 1,\n",
      "          'craig': 1,\n",
      "          'nelson': 1,\n",
      "          'chairman': 1,\n",
      "          'judge': 1,\n",
      "          'litten': 1,\n",
      "          'william': 1,\n",
      "          'peterson': 1,\n",
      "          'fellow': 1,\n",
      "          'board': 1,\n",
      "          'senator': 1,\n",
      "          'levritt': 1,\n",
      "          'pathetic': 1,\n",
      "          'villain': 1,\n",
      "          'caricatures': 1,\n",
      "          'look': 1,\n",
      "          'suitably': 1,\n",
      "          'embarrassed': 1,\n",
      "          'handling': 1,\n",
      "          'theres': 1,\n",
      "          'christopher': 1,\n",
      "          'mcdonald': 1,\n",
      "          'capacity': 1,\n",
      "          'fun': 1,\n",
      "          'actor': 1,\n",
      "          'nmcdonalds': 1,\n",
      "          'charisma': 1,\n",
      "          'totally': 1,\n",
      "          'diminished': 1,\n",
      "          'sleepwalks': 1,\n",
      "          'perfunctory': 1,\n",
      "          'role': 1,\n",
      "          'yes': 1,\n",
      "          'hattrick': 1,\n",
      "          'pray': 1,\n",
      "          'snatchthepaycheckandrun': 1,\n",
      "          'exercise': 1,\n",
      "          'young': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'troupe': 1,\n",
      "          'performers': 1,\n",
      "          'involved': 1,\n",
      "          'fair': 1,\n",
      "          'moderately': 1,\n",
      "          'nlets': 1,\n",
      "          'cut': 1,\n",
      "          'talented': 1,\n",
      "          'canadian': 1,\n",
      "          'lad': 1,\n",
      "          'slack': 1,\n",
      "          'maintaining': 1,\n",
      "          'believability': 1,\n",
      "          'within': 1,\n",
      "          'confines': 1,\n",
      "          'character': 1,\n",
      "          'npaul': 1,\n",
      "          'walker': 1,\n",
      "          'strapping': 1,\n",
      "          'quarterback': 1,\n",
      "          'blues': 1,\n",
      "          'bland': 1,\n",
      "          'passable': 1,\n",
      "          'caleb': 1,\n",
      "          'judges': 1,\n",
      "          'son': 1,\n",
      "          'nwalker': 1,\n",
      "          'preserves': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'even': 1,\n",
      "          'silliest': 1,\n",
      "          'movie': 1,\n",
      "          'dad': 1,\n",
      "          'killed': 1,\n",
      "          'ritual': 1,\n",
      "          'room': 1,\n",
      "          'nsome': 1,\n",
      "          'spark': 1,\n",
      "          'generated': 1,\n",
      "          'leslie': 1,\n",
      "          'bibb': 1,\n",
      "          'plays': 1,\n",
      "          'lukes': 1,\n",
      "          'longtime': 1,\n",
      "          'chum': 1,\n",
      "          'chloe': 1,\n",
      "          'manages': 1,\n",
      "          'successfully': 1,\n",
      "          'pull': 1,\n",
      "          'convincing': 1,\n",
      "          'dramatics': 1,\n",
      "          'really': 1,\n",
      "          'boils': 1,\n",
      "          'attempting': 1,\n",
      "          'puncture': 1,\n",
      "          'surrounding': 1,\n",
      "          'plastic': 1,\n",
      "          'bubble': 1,\n",
      "          'absurdity': 1,\n",
      "          'cages': 1,\n",
      "          'thanks': 1,\n",
      "          'decent': 1,\n",
      "          'setup': 1,\n",
      "          'director': 1,\n",
      "          'rob': 1,\n",
      "          'cohen': 1,\n",
      "          'films': 1,\n",
      "          'early': 1,\n",
      "          'sequences': 1,\n",
      "          'sense': 1,\n",
      "          'atmosphere': 1,\n",
      "          'style': 1,\n",
      "          'wonder': 1,\n",
      "          'didnt': 1,\n",
      "          'flee': 1,\n",
      "          'indefinitely': 1,\n",
      "          'project': 1,\n",
      "          'enjoyable': 1,\n",
      "          'cheese': 1,\n",
      "          'dragonheart': 1,\n",
      "          'moderate': 1,\n",
      "          'stallone': 1,\n",
      "          'daylight': 1,\n",
      "          'arent': 1,\n",
      "          'superior': 1,\n",
      "          'cinema': 1,\n",
      "          'belong': 1,\n",
      "          'afi': 1,\n",
      "          '100': 1,\n",
      "          'list': 1,\n",
      "          'compared': 1,\n",
      "          'degrading': 1,\n",
      "          'trash': 1,\n",
      "          'naside': 1,\n",
      "          'unintentionally': 1,\n",
      "          'humoring': 1,\n",
      "          'audience': 1,\n",
      "          'gets': 1,\n",
      "          'accomplished': 1,\n",
      "          'thrills': 1,\n",
      "          'action': 1,\n",
      "          'lazy': 1,\n",
      "          'mechanical': 1,\n",
      "          'story': 1,\n",
      "          'stuffed': 1,\n",
      "          'formulaic': 1,\n",
      "          'plotting': 1,\n",
      "          'sheepishly': 1,\n",
      "          'overlooks': 1,\n",
      "          'cool': 1,\n",
      "          'underground': 1,\n",
      "          'flick': 1,\n",
      "          'ninstead': 1,\n",
      "          'gaining': 1,\n",
      "          'knowledge': 1,\n",
      "          'thrust': 1,\n",
      "          'lame': 1,\n",
      "          'video': 1,\n",
      "          'surveillance': 1,\n",
      "          'conspiracy': 1,\n",
      "          'developed': 1,\n",
      "          'barnacles': 1,\n",
      "          'excessive': 1,\n",
      "          'usage': 1,\n",
      "          'nweve': 1,\n",
      "          'seen': 1,\n",
      "          'feeble': 1,\n",
      "          'circus': 1,\n",
      "          'stupidity': 1,\n",
      "          'miscalculated': 1,\n",
      "          'serve': 1,\n",
      "          'clever': 1,\n",
      "          'pun': 1,\n",
      "          'term': 1,\n",
      "          'boneheaded': 1,\n",
      "          'seems': 1,\n",
      "          'generous': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bubble': 8,\n",
      "          'boy': 6,\n",
      "          'nbut': 4,\n",
      "          'jimmy': 4,\n",
      "          'director': 3,\n",
      "          'film': 3,\n",
      "          'chloe': 3,\n",
      "          'love': 3,\n",
      "          'tv': 2,\n",
      "          'case': 2,\n",
      "          'offensive': 2,\n",
      "          'humor': 2,\n",
      "          'moments': 2,\n",
      "          'films': 2,\n",
      "          'kurtz': 2,\n",
      "          'religious': 2,\n",
      "          'jimmys': 2,\n",
      "          'movie': 2,\n",
      "          'even': 2,\n",
      "          'manage': 2,\n",
      "          'take': 2,\n",
      "          'unknown': 2,\n",
      "          'difficult': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'whose': 1,\n",
      "          'greatest': 1,\n",
      "          'accomplishments': 1,\n",
      "          'date': 1,\n",
      "          'handful': 1,\n",
      "          'awardwinning': 1,\n",
      "          'commercials': 1,\n",
      "          'blair': 1,\n",
      "          'hayes': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'hayess': 1,\n",
      "          'feature': 1,\n",
      "          'debut': 1,\n",
      "          'lives': 1,\n",
      "          'expectations': 1,\n",
      "          'coming': 1,\n",
      "          'mainly': 1,\n",
      "          'equal': 1,\n",
      "          'parts': 1,\n",
      "          'moronic': 1,\n",
      "          'occasionally': 1,\n",
      "          'transcends': 1,\n",
      "          'substandard': 1,\n",
      "          'roots': 1,\n",
      "          'glimmers': 1,\n",
      "          'scathing': 1,\n",
      "          'social': 1,\n",
      "          'commentary': 1,\n",
      "          'nthose': 1,\n",
      "          'intelligence': 1,\n",
      "          'delivered': 1,\n",
      "          'mostly': 1,\n",
      "          'two': 1,\n",
      "          'stars': 1,\n",
      "          'jake': 1,\n",
      "          'gyllenhall': 1,\n",
      "          'immunodeficient': 1,\n",
      "          'swoosie': 1,\n",
      "          'overprotective': 1,\n",
      "          'hyper': 1,\n",
      "          'reaganloving': 1,\n",
      "          'mother': 1,\n",
      "          'ngyllenhalls': 1,\n",
      "          'sweetnatured': 1,\n",
      "          'delivery': 1,\n",
      "          'hilariously': 1,\n",
      "          'na': 1,\n",
      "          'narration': 1,\n",
      "          'serves': 1,\n",
      "          'backbone': 1,\n",
      "          'otherwise': 1,\n",
      "          'flimsy': 1,\n",
      "          'comingofage': 1,\n",
      "          'story': 1,\n",
      "          'kid': 1,\n",
      "          'born': 1,\n",
      "          'without': 1,\n",
      "          'immunity': 1,\n",
      "          'could': 1,\n",
      "          'die': 1,\n",
      "          'comes': 1,\n",
      "          'contact': 1,\n",
      "          'single': 1,\n",
      "          'germ': 1,\n",
      "          'plight': 1,\n",
      "          'explored': 1,\n",
      "          'seriously': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'plastic': 1,\n",
      "          'less': 1,\n",
      "          'seinfeld': 1,\n",
      "          'nhis': 1,\n",
      "          'mom': 1,\n",
      "          'homeschools': 1,\n",
      "          'filling': 1,\n",
      "          'head': 1,\n",
      "          'wildly': 1,\n",
      "          'twisted': 1,\n",
      "          'conservative': 1,\n",
      "          'propaganda': 1,\n",
      "          'antisexual': 1,\n",
      "          'messages': 1,\n",
      "          'hes': 1,\n",
      "          'befriended': 1,\n",
      "          'marley': 1,\n",
      "          'shelton': 1,\n",
      "          'beautiful': 1,\n",
      "          'girl': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'njimmy': 1,\n",
      "          'falls': 1,\n",
      "          'afraid': 1,\n",
      "          'literally': 1,\n",
      "          'kill': 1,\n",
      "          'evidenced': 1,\n",
      "          'scene': 1,\n",
      "          'drunkenly': 1,\n",
      "          'tries': 1,\n",
      "          'enter': 1,\n",
      "          'kiss': 1,\n",
      "          'decides': 1,\n",
      "          'marry': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'boyfriend': 1,\n",
      "          'builds': 1,\n",
      "          'suit': 1,\n",
      "          'embarks': 1,\n",
      "          'hijinksaddled': 1,\n",
      "          'crosscountry': 1,\n",
      "          'voyage': 1,\n",
      "          'stop': 1,\n",
      "          'wedding': 1,\n",
      "          'professing': 1,\n",
      "          'nthe': 1,\n",
      "          'bits': 1,\n",
      "          'little': 1,\n",
      "          'rare': 1,\n",
      "          'handicap': 1,\n",
      "          'regardless': 1,\n",
      "          'protesters': 1,\n",
      "          'would': 1,\n",
      "          'believe': 1,\n",
      "          'instead': 1,\n",
      "          'center': 1,\n",
      "          'outrageous': 1,\n",
      "          'racial': 1,\n",
      "          'stereotypes': 1,\n",
      "          'including': 1,\n",
      "          'screaming': 1,\n",
      "          'chinese': 1,\n",
      "          'strip': 1,\n",
      "          'club': 1,\n",
      "          'owner': 1,\n",
      "          'devout': 1,\n",
      "          'east': 1,\n",
      "          'indian': 1,\n",
      "          'hindi': 1,\n",
      "          'find': 1,\n",
      "          'stereotype': 1,\n",
      "          'funny': 1,\n",
      "          'hard': 1,\n",
      "          'muster': 1,\n",
      "          'giggle': 1,\n",
      "          'shallow': 1,\n",
      "          'gags': 1,\n",
      "          'nthey': 1,\n",
      "          'bungle': 1,\n",
      "          'potentially': 1,\n",
      "          'great': 1,\n",
      "          'group': 1,\n",
      "          'carnival': 1,\n",
      "          'freaks': 1,\n",
      "          'harsh': 1,\n",
      "          'jabs': 1,\n",
      "          'work': 1,\n",
      "          'especially': 1,\n",
      "          'bluntly': 1,\n",
      "          'shows': 1,\n",
      "          'dark': 1,\n",
      "          'hypocritical': 1,\n",
      "          'side': 1,\n",
      "          'right': 1,\n",
      "          'wacky': 1,\n",
      "          'sendup': 1,\n",
      "          'cult': 1,\n",
      "          'called': 1,\n",
      "          'bright': 1,\n",
      "          'n': 1,\n",
      "          'shiny': 1,\n",
      "          'led': 1,\n",
      "          'inimitable': 1,\n",
      "          'fabio': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'giggles': 1,\n",
      "          'cant': 1,\n",
      "          'make': 1,\n",
      "          'riotous': 1,\n",
      "          'offthewall': 1,\n",
      "          'comedy': 1,\n",
      "          'desperately': 1,\n",
      "          'wants': 1,\n",
      "          'nhonestly': 1,\n",
      "          'mystery': 1,\n",
      "          'earth': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'im': 1,\n",
      "          'saying': 1,\n",
      "          'mediocre': 1,\n",
      "          'nhow': 1,\n",
      "          'odd': 1,\n",
      "          'disney': 1,\n",
      "          'gamble': 1,\n",
      "          'starring': 1,\n",
      "          'virtually': 1,\n",
      "          'actors': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'appeal': 1,\n",
      "          'particular': 1,\n",
      "          'demographic': 1,\n",
      "          'potential': 1,\n",
      "          'offend': 1,\n",
      "          'many': 1,\n",
      "          'nand': 1,\n",
      "          'studio': 1,\n",
      "          'suffering': 1,\n",
      "          'public': 1,\n",
      "          'protest': 1,\n",
      "          'parents': 1,\n",
      "          'reallife': 1,\n",
      "          'david': 1,\n",
      "          'philip': 1,\n",
      "          'vetter': 1,\n",
      "          'maybe': 1,\n",
      "          'disneys': 1,\n",
      "          'wondering': 1,\n",
      "          'thing': 1,\n",
      "          'nhope': 1,\n",
      "          'opening': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'makes': 1,\n",
      "          'worthwhile': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bats': 11,\n",
      "          'see': 4,\n",
      "          'get': 4,\n",
      "          'nit': 3,\n",
      "          'even': 3,\n",
      "          'bat': 3,\n",
      "          'camp': 2,\n",
      "          'one': 2,\n",
      "          'looking': 2,\n",
      "          'ni': 2,\n",
      "          'love': 2,\n",
      "          'town': 2,\n",
      "          'batologist': 2,\n",
      "          'creepy': 2,\n",
      "          'things': 2,\n",
      "          'little': 2,\n",
      "          'wisecracking': 2,\n",
      "          'sidekick': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'people': 2,\n",
      "          'might': 2,\n",
      "          'nwhat': 2,\n",
      "          'know': 2,\n",
      "          'attacking': 2,\n",
      "          'could': 2,\n",
      "          'go': 2,\n",
      "          'hate': 2,\n",
      "          'bad': 2,\n",
      "          'characters': 2,\n",
      "          'movie': 2,\n",
      "          'years': 1,\n",
      "          'flick': 1,\n",
      "          'nwith': 1,\n",
      "          'worlds': 1,\n",
      "          'worst': 1,\n",
      "          'dialogue': 1,\n",
      "          'cheesiest': 1,\n",
      "          'premise': 1,\n",
      "          'stupidest': 1,\n",
      "          'editor': 1,\n",
      "          'heaven': 1,\n",
      "          'enjoy': 1,\n",
      "          'films': 1,\n",
      "          'humorous': 1,\n",
      "          'inanity': 1,\n",
      "          'nas': 1,\n",
      "          'rest': 1,\n",
      "          'us': 1,\n",
      "          'well': 1,\n",
      "          'nid': 1,\n",
      "          'say': 1,\n",
      "          'skip': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'figures': 1,\n",
      "          'seems': 1,\n",
      "          'though': 1,\n",
      "          'america': 1,\n",
      "          'following': 1,\n",
      "          'advice': 1,\n",
      "          'anyway': 1,\n",
      "          'nfollow': 1,\n",
      "          'lead': 1,\n",
      "          'youll': 1,\n",
      "          'spare': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'life': 1,\n",
      "          '8': 1,\n",
      "          'bucks': 1,\n",
      "          'boot': 1,\n",
      "          'alfred': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'birds': 1,\n",
      "          'almost': 1,\n",
      "          'much': 1,\n",
      "          'short': 1,\n",
      "          'story': 1,\n",
      "          'based': 1,\n",
      "          'saddens': 1,\n",
      "          'american': 1,\n",
      "          'treasure': 1,\n",
      "          'ripped': 1,\n",
      "          'blatantly': 1,\n",
      "          'wannabe': 1,\n",
      "          'horrorschlock': 1,\n",
      "          'nwhen': 1,\n",
      "          'mysterious': 1,\n",
      "          'attacks': 1,\n",
      "          'occur': 1,\n",
      "          'small': 1,\n",
      "          'texas': 1,\n",
      "          'authorities': 1,\n",
      "          'call': 1,\n",
      "          'dina': 1,\n",
      "          'meyer': 1,\n",
      "          'investigate': 1,\n",
      "          'turns': 1,\n",
      "          'scientist': 1,\n",
      "          'bob': 1,\n",
      "          'gunton': 1,\n",
      "          'genetically': 1,\n",
      "          'enhanced': 1,\n",
      "          'couple': 1,\n",
      "          'escaped': 1,\n",
      "          'lab': 1,\n",
      "          'making': 1,\n",
      "          'smarter': 1,\n",
      "          'vicious': 1,\n",
      "          'nwhy': 1,\n",
      "          'done': 1,\n",
      "          'ask': 1,\n",
      "          'nbecause': 1,\n",
      "          'apparently': 1,\n",
      "          'scientists': 1,\n",
      "          'job': 1,\n",
      "          'make': 1,\n",
      "          'better': 1,\n",
      "          'means': 1,\n",
      "          'death': 1,\n",
      "          'mankind': 1,\n",
      "          'nso': 1,\n",
      "          'sheriff': 1,\n",
      "          'lou': 1,\n",
      "          'diamond': 1,\n",
      "          'phillips': 1,\n",
      "          'kill': 1,\n",
      "          'save': 1,\n",
      "          'world': 1,\n",
      "          'cant': 1,\n",
      "          'happen': 1,\n",
      "          'wallow': 1,\n",
      "          'guamo': 1,\n",
      "          'shit': 1,\n",
      "          'uninitiated': 1,\n",
      "          'close': 1,\n",
      "          'personal': 1,\n",
      "          'truly': 1,\n",
      "          'repulsive': 1,\n",
      "          'flying': 1,\n",
      "          'mammals': 1,\n",
      "          'survive': 1,\n",
      "          'dumbest': 1,\n",
      "          'situations': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'professionally': 1,\n",
      "          'produced': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nconsider': 1,\n",
      "          'example': 1,\n",
      "          'scene': 1,\n",
      "          'two': 1,\n",
      "          'cave': 1,\n",
      "          'nthe': 1,\n",
      "          'sleeping': 1,\n",
      "          'humans': 1,\n",
      "          'afraid': 1,\n",
      "          'wake': 1,\n",
      "          'ndo': 1,\n",
      "          'hell': 1,\n",
      "          'fast': 1,\n",
      "          'nnope': 1,\n",
      "          'nthey': 1,\n",
      "          'stand': 1,\n",
      "          'transfixed': 1,\n",
      "          'thousands': 1,\n",
      "          'opening': 1,\n",
      "          'eyes': 1,\n",
      "          'keeps': 1,\n",
      "          'scary': 1,\n",
      "          'hyperactive': 1,\n",
      "          'editing': 1,\n",
      "          'attack': 1,\n",
      "          'scenes': 1,\n",
      "          'nwe': 1,\n",
      "          'dont': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'screen': 1,\n",
      "          'becomes': 1,\n",
      "          'mush': 1,\n",
      "          'cuts': 1,\n",
      "          'quick': 1,\n",
      "          'nall': 1,\n",
      "          'nhow': 1,\n",
      "          'exactly': 1,\n",
      "          'happening': 1,\n",
      "          'remains': 1,\n",
      "          'mystery': 1,\n",
      "          'na': 1,\n",
      "          'technical': 1,\n",
      "          'proficiency': 1,\n",
      "          'wonders': 1,\n",
      "          'horror': 1,\n",
      "          'movies': 1,\n",
      "          'sure': 1,\n",
      "          'use': 1,\n",
      "          'director': 1,\n",
      "          'louis': 1,\n",
      "          'morneau': 1,\n",
      "          'tries': 1,\n",
      "          'liven': 1,\n",
      "          'intentional': 1,\n",
      "          'humor': 1,\n",
      "          'conventional': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'anywhere': 1,\n",
      "          'nmost': 1,\n",
      "          'ocmic': 1,\n",
      "          'relief': 1,\n",
      "          'comes': 1,\n",
      "          'courtesy': 1,\n",
      "          'batologists': 1,\n",
      "          'leon': 1,\n",
      "          'takes': 1,\n",
      "          'every': 1,\n",
      "          'opportunity': 1,\n",
      "          'sputter': 1,\n",
      "          'ingenious': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'nsome': 1,\n",
      "          'take': 1,\n",
      "          'double': 1,\n",
      "          'quality': 1,\n",
      "          'may': 1,\n",
      "          'inspire': 1,\n",
      "          'smirk': 1,\n",
      "          'nature': 1,\n",
      "          'roaring': 1,\n",
      "          'laugh': 1,\n",
      "          'inept': 1,\n",
      "          'exist': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'spouting': 1,\n",
      "          'lame': 1,\n",
      "          'oneliners': 1,\n",
      "          'nplaying': 1,\n",
      "          'help': 1,\n",
      "          'actors': 1,\n",
      "          'careers': 1,\n",
      "          'nstill': 1,\n",
      "          'suppose': 1,\n",
      "          'youre': 1,\n",
      "          'good': 1,\n",
      "          'worse': 1,\n",
      "          'tremendous': 1,\n",
      "          'amount': 1,\n",
      "          'value': 1,\n",
      "          'nim': 1,\n",
      "          'recommending': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'sucks': 1,\n",
      "          'convince': 1,\n",
      "          'nmore': 1,\n",
      "          'power': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'blob': 6,\n",
      "          'original': 6,\n",
      "          'nthe': 6,\n",
      "          'goop': 5,\n",
      "          'special': 5,\n",
      "          'effects': 5,\n",
      "          'version': 4,\n",
      "          'shawnee': 3,\n",
      "          'smith': 3,\n",
      "          'remake': 3,\n",
      "          'campy': 3,\n",
      "          'either': 3,\n",
      "          'isnt': 3,\n",
      "          'new': 3,\n",
      "          'movie': 3,\n",
      "          'kevin': 2,\n",
      "          'really': 2,\n",
      "          'gets': 2,\n",
      "          'cheesy': 2,\n",
      "          'fact': 2,\n",
      "          'mcqueen': 2,\n",
      "          'star': 2,\n",
      "          'film': 2,\n",
      "          'doesnt': 2,\n",
      "          'years': 2,\n",
      "          'hollywood': 2,\n",
      "          'heavy': 2,\n",
      "          'role': 2,\n",
      "          'since': 2,\n",
      "          'pockets': 2,\n",
      "          'nit': 2,\n",
      "          'look': 2,\n",
      "          'cheap': 2,\n",
      "          'none': 2,\n",
      "          'attractive': 2,\n",
      "          'say': 2,\n",
      "          'nin': 2,\n",
      "          'little': 2,\n",
      "          'ball': 2,\n",
      "          'pink': 2,\n",
      "          'nanyway': 2,\n",
      "          'people': 2,\n",
      "          'town': 2,\n",
      "          'nthis': 2,\n",
      "          'badly': 2,\n",
      "          'nalthough': 2,\n",
      "          'roles': 2,\n",
      "          'big': 2,\n",
      "          'starring': 1,\n",
      "          'donovan': 1,\n",
      "          'leitch': 1,\n",
      "          'ricky': 1,\n",
      "          'paull': 1,\n",
      "          'goldin': 1,\n",
      "          'dillon': 1,\n",
      "          'billy': 1,\n",
      "          'beck': 1,\n",
      "          '1960s': 1,\n",
      "          'classic': 1,\n",
      "          'term': 1,\n",
      "          'use': 1,\n",
      "          'loosely': 1,\n",
      "          'define': 1,\n",
      "          'mean': 1,\n",
      "          'glob': 1,\n",
      "          'takes': 1,\n",
      "          'anything': 1,\n",
      "          'way': 1,\n",
      "          'nnow': 1,\n",
      "          'virtue': 1,\n",
      "          'give': 1,\n",
      "          'kind': 1,\n",
      "          'nostalgic': 1,\n",
      "          'feel': 1,\n",
      "          'steve': 1,\n",
      "          'exactly': 1,\n",
      "          'hurt': 1,\n",
      "          'nfast': 1,\n",
      "          'forward': 1,\n",
      "          'late': 1,\n",
      "          '80s': 1,\n",
      "          'nsteve': 1,\n",
      "          'might': 1,\n",
      "          'something': 1,\n",
      "          'pushing': 1,\n",
      "          'daisies': 1,\n",
      "          'nnor': 1,\n",
      "          'hitters': 1,\n",
      "          'lead': 1,\n",
      "          'nthat': 1,\n",
      "          'unless': 1,\n",
      "          'count': 1,\n",
      "          'matt': 1,\n",
      "          'dillons': 1,\n",
      "          'brother': 1,\n",
      "          'hitter': 1,\n",
      "          'thing': 1,\n",
      "          'works': 1,\n",
      "          'technology': 1,\n",
      "          'improved': 1,\n",
      "          'dramatically': 1,\n",
      "          'things': 1,\n",
      "          'need': 1,\n",
      "          'great': 1,\n",
      "          'deep': 1,\n",
      "          'looks': 1,\n",
      "          'produces': 1,\n",
      "          'couple': 1,\n",
      "          'holes': 1,\n",
      "          'like': 1,\n",
      "          'originals': 1,\n",
      "          'nunlike': 1,\n",
      "          'dont': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'purely': 1,\n",
      "          'sexist': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'nshe': 1,\n",
      "          'actually': 1,\n",
      "          'act': 1,\n",
      "          'costars': 1,\n",
      "          'terms': 1,\n",
      "          'plot': 1,\n",
      "          'falls': 1,\n",
      "          'sky': 1,\n",
      "          'nseems': 1,\n",
      "          'experiment': 1,\n",
      "          'housed': 1,\n",
      "          'satellite': 1,\n",
      "          'stuff': 1,\n",
      "          'taste': 1,\n",
      "          'humans': 1,\n",
      "          'absorbs': 1,\n",
      "          'bigger': 1,\n",
      "          'nand': 1,\n",
      "          'friendliest': 1,\n",
      "          'block': 1,\n",
      "          'attacks': 1,\n",
      "          'local': 1,\n",
      "          'teenage': 1,\n",
      "          'population': 1,\n",
      "          'stop': 1,\n",
      "          'nnot': 1,\n",
      "          'seems': 1,\n",
      "          'attempts': 1,\n",
      "          'recapture': 1,\n",
      "          'camp': 1,\n",
      "          'nas': 1,\n",
      "          'ive': 1,\n",
      "          'already': 1,\n",
      "          'said': 1,\n",
      "          'comes': 1,\n",
      "          'acted': 1,\n",
      "          'written': 1,\n",
      "          'made': 1,\n",
      "          'cast': 1,\n",
      "          'gone': 1,\n",
      "          'greatness': 1,\n",
      "          'tiny': 1,\n",
      "          'armageddon': 1,\n",
      "          'reason': 1,\n",
      "          'never': 1,\n",
      "          'heard': 1,\n",
      "          'quite': 1,\n",
      "          'simple': 1,\n",
      "          'stunk': 1,\n",
      "          'loud': 1,\n",
      "          'films': 1,\n",
      "          'smaller': 1,\n",
      "          'filled': 1,\n",
      "          'actors': 1,\n",
      "          'stars': 1,\n",
      "          'doubtless': 1,\n",
      "          'recognize': 1,\n",
      "          'supporting': 1,\n",
      "          'movies': 1,\n",
      "          'tv': 1,\n",
      "          'shows': 1,\n",
      "          'also': 1,\n",
      "          'appears': 1,\n",
      "          'producers': 1,\n",
      "          'tried': 1,\n",
      "          'compensate': 1,\n",
      "          'lack': 1,\n",
      "          'budget': 1,\n",
      "          'making': 1,\n",
      "          'scenes': 1,\n",
      "          'makes': 1,\n",
      "          'meals': 1,\n",
      "          'townsfolk': 1,\n",
      "          'gory': 1,\n",
      "          'possible': 1,\n",
      "          'nsadly': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'terrorize': 1,\n",
      "          'would': 1,\n",
      "          'skip': 1,\n",
      "          'rent': 1,\n",
      "          'n': 1,\n",
      "          'although': 1,\n",
      "          'hot': 1,\n",
      "          'newest': 1,\n",
      "          'seriously': 1,\n",
      "          'lacking': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jackson': 9,\n",
      "          'action': 5,\n",
      "          'vanity': 5,\n",
      "          'stone': 4,\n",
      "          'one': 4,\n",
      "          '80s': 3,\n",
      "          'movie': 3,\n",
      "          'dellaplane': 3,\n",
      "          'lies': 2,\n",
      "          'sharon': 2,\n",
      "          'within': 2,\n",
      "          'minutes': 2,\n",
      "          'nthis': 2,\n",
      "          'cop': 2,\n",
      "          'evil': 2,\n",
      "          'heroin': 2,\n",
      "          'addict': 2,\n",
      "          'superior': 2,\n",
      "          'boobs': 2,\n",
      "          'past': 2,\n",
      "          'njackson': 2,\n",
      "          'nelson': 2,\n",
      "          'nafter': 2,\n",
      "          'says': 2,\n",
      "          'youre': 2,\n",
      "          'dellaplanes': 2,\n",
      "          'killed': 2,\n",
      "          'nits': 2,\n",
      "          'prince': 2,\n",
      "          'hes': 2,\n",
      "          'toward': 1,\n",
      "          'bottom': 1,\n",
      "          'barrel': 1,\n",
      "          'hollywood': 1,\n",
      "          'history': 1,\n",
      "          'show': 1,\n",
      "          'topless': 1,\n",
      "          'span': 1,\n",
      "          'ten': 1,\n",
      "          'carl': 1,\n",
      "          'apollo': 1,\n",
      "          'creed': 1,\n",
      "          'weathers': 1,\n",
      "          'vehicle': 1,\n",
      "          'features': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'traditional': 1,\n",
      "          'vs': 1,\n",
      "          'establishment': 1,\n",
      "          'crook': 1,\n",
      "          'relies': 1,\n",
      "          'trappings': 1,\n",
      "          'token': 1,\n",
      "          'needs': 1,\n",
      "          'fix': 1,\n",
      "          'shouting': 1,\n",
      "          'officer': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'come': 1,\n",
      "          'explosions': 1,\n",
      "          'although': 1,\n",
      "          'curious': 1,\n",
      "          'lack': 1,\n",
      "          'exploding': 1,\n",
      "          'nweathers': 1,\n",
      "          'detroit': 1,\n",
      "          'known': 1,\n",
      "          'sorts': 1,\n",
      "          'crazy': 1,\n",
      "          'vigilante': 1,\n",
      "          'techniques': 1,\n",
      "          'nspeaking': 1,\n",
      "          'criminal': 1,\n",
      "          'apprehension': 1,\n",
      "          'jacksons': 1,\n",
      "          'yells': 1,\n",
      "          'tore': 1,\n",
      "          'arm': 1,\n",
      "          'replies': 1,\n",
      "          'spare': 1,\n",
      "          'busted': 1,\n",
      "          'desk': 1,\n",
      "          'job': 1,\n",
      "          'problems': 1,\n",
      "          'auto': 1,\n",
      "          'manufacturer': 1,\n",
      "          'craig': 1,\n",
      "          'act': 1,\n",
      "          'department': 1,\n",
      "          'liaison': 1,\n",
      "          'dinner': 1,\n",
      "          'honoring': 1,\n",
      "          'hearing': 1,\n",
      "          'thinks': 1,\n",
      "          'take': 1,\n",
      "          'friends': 1,\n",
      "          'n': 1,\n",
      "          'unless': 1,\n",
      "          'changed': 1,\n",
      "          'definition': 1,\n",
      "          'glowers': 1,\n",
      "          'nand': 1,\n",
      "          'course': 1,\n",
      "          'turns': 1,\n",
      "          'mrs': 1,\n",
      "          'nfaux': 1,\n",
      "          'pas': 1,\n",
      "          'nnot': 1,\n",
      "          'everything': 1,\n",
      "          'happy': 1,\n",
      "          'motown': 1,\n",
      "          'people': 1,\n",
      "          'plans': 1,\n",
      "          'awa': 1,\n",
      "          'stop': 1,\n",
      "          'lead': 1,\n",
      "          'nwherever': 1,\n",
      "          'left': 1,\n",
      "          'terms': 1,\n",
      "          'exchanging': 1,\n",
      "          'sexual': 1,\n",
      "          'favors': 1,\n",
      "          'career': 1,\n",
      "          'advancement': 1,\n",
      "          'picks': 1,\n",
      "          'nshe': 1,\n",
      "          'plays': 1,\n",
      "          'chanteuse': 1,\n",
      "          'nightclub': 1,\n",
      "          'singing': 1,\n",
      "          'particularly': 1,\n",
      "          'sultry': 1,\n",
      "          'number': 1,\n",
      "          'saunters': 1,\n",
      "          'complains': 1,\n",
      "          'expected': 1,\n",
      "          'standing': 1,\n",
      "          'ovation': 1,\n",
      "          'nhe': 1,\n",
      "          'responds': 1,\n",
      "          'getting': 1,\n",
      "          'damn': 1,\n",
      "          'clever': 1,\n",
      "          'sitting': 1,\n",
      "          'time': 1,\n",
      "          'nprince': 1,\n",
      "          'wouldnt': 1,\n",
      "          'even': 1,\n",
      "          'let': 1,\n",
      "          'innuendo': 1,\n",
      "          'lame': 1,\n",
      "          'king': 1,\n",
      "          'horndogs': 1,\n",
      "          'least': 1,\n",
      "          'testament': 1,\n",
      "          'first': 1,\n",
      "          '30': 1,\n",
      "          'survives': 1,\n",
      "          'whole': 1,\n",
      "          'naction': 1,\n",
      "          'another': 1,\n",
      "          'variation': 1,\n",
      "          'unlikely': 1,\n",
      "          'partners': 1,\n",
      "          'buddy': 1,\n",
      "          'flick': 1,\n",
      "          'lugging': 1,\n",
      "          'junkie': 1,\n",
      "          'around': 1,\n",
      "          'leads': 1,\n",
      "          'worst': 1,\n",
      "          'paired': 1,\n",
      "          'acting': 1,\n",
      "          'decade': 1,\n",
      "          'dialogue': 1,\n",
      "          'theyre': 1,\n",
      "          'given': 1,\n",
      "          'theres': 1,\n",
      "          'much': 1,\n",
      "          'room': 1,\n",
      "          'improvement': 1,\n",
      "          'nmy': 1,\n",
      "          'favorite': 1,\n",
      "          'feeling': 1,\n",
      "          'effects': 1,\n",
      "          'drug': 1,\n",
      "          'withdrawal': 1,\n",
      "          'feel': 1,\n",
      "          'like': 1,\n",
      "          'teeth': 1,\n",
      "          'hollow': 1,\n",
      "          'gums': 1,\n",
      "          'made': 1,\n",
      "          'dry': 1,\n",
      "          'rubber': 1,\n",
      "          'someones': 1,\n",
      "          'trying': 1,\n",
      "          'start': 1,\n",
      "          'bonfire': 1,\n",
      "          'back': 1,\n",
      "          'bloody': 1,\n",
      "          'head': 1,\n",
      "          'njacksons': 1,\n",
      "          'response': 1,\n",
      "          'think': 1,\n",
      "          'felt': 1,\n",
      "          'way': 1,\n",
      "          'nthey': 1,\n",
      "          'called': 1,\n",
      "          'love': 1,\n",
      "          'nyoull': 1,\n",
      "          'understand': 1,\n",
      "          'say': 1,\n",
      "          'watch': 1,\n",
      "          'risk': 1,\n",
      "          'nserving': 1,\n",
      "          'world': 1,\n",
      "          'nearly': 1,\n",
      "          '125th': 1,\n",
      "          'century': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cab': 7,\n",
      "          'c': 6,\n",
      "          'one': 4,\n",
      "          'would': 4,\n",
      "          'nits': 3,\n",
      "          'token': 3,\n",
      "          'guy': 3,\n",
      "          'wants': 3,\n",
      "          'able': 2,\n",
      "          'gilbert': 2,\n",
      "          '80s': 2,\n",
      "          'usa': 2,\n",
      "          'nite': 2,\n",
      "          'movie': 2,\n",
      "          'movies': 2,\n",
      "          'cant': 2,\n",
      "          'mr': 2,\n",
      "          'busey': 2,\n",
      "          'say': 2,\n",
      "          'allstar': 2,\n",
      "          'im': 2,\n",
      "          'irene': 2,\n",
      "          'cara': 2,\n",
      "          'warfield': 2,\n",
      "          'rodriguez': 2,\n",
      "          'maher': 2,\n",
      "          'much': 2,\n",
      "          'forever': 2,\n",
      "          'nd': 2,\n",
      "          'go': 2,\n",
      "          'drive': 2,\n",
      "          'cabs': 2,\n",
      "          'get': 2,\n",
      "          'actually': 2,\n",
      "          'living': 2,\n",
      "          'baldwin': 2,\n",
      "          'less': 2,\n",
      "          'rescue': 2,\n",
      "          'anyone': 1,\n",
      "          '1983': 1,\n",
      "          'forsee': 1,\n",
      "          'latenight': 1,\n",
      "          'cable': 1,\n",
      "          'show': 1,\n",
      "          'hosted': 1,\n",
      "          'gottfried': 1,\n",
      "          'showcasing': 1,\n",
      "          'worst': 1,\n",
      "          'films': 1,\n",
      "          'theyd': 1,\n",
      "          'agree': 1,\n",
      "          'quintessential': 1,\n",
      "          'childish': 1,\n",
      "          'rrated': 1,\n",
      "          'kids': 1,\n",
      "          'love': 1,\n",
      "          'see': 1,\n",
      "          'edited': 1,\n",
      "          'tv': 1,\n",
      "          'also': 1,\n",
      "          'pointless': 1,\n",
      "          'almost': 1,\n",
      "          'plotless': 1,\n",
      "          'hardly': 1,\n",
      "          'laughs': 1,\n",
      "          'nand': 1,\n",
      "          'strike': 1,\n",
      "          'three': 1,\n",
      "          'pairs': 1,\n",
      "          'gary': 1,\n",
      "          'ni': 1,\n",
      "          'heard': 1,\n",
      "          'cast': 1,\n",
      "          'still': 1,\n",
      "          'hoping': 1,\n",
      "          'degree': 1,\n",
      "          'facetiousness': 1,\n",
      "          'statement': 1,\n",
      "          'nwhen': 1,\n",
      "          'thirdbilling': 1,\n",
      "          'goes': 1,\n",
      "          'twominute': 1,\n",
      "          'appearance': 1,\n",
      "          'famed': 1,\n",
      "          'flashdancer': 1,\n",
      "          'damn': 1,\n",
      "          'thing': 1,\n",
      "          'casts': 1,\n",
      "          'nlikewise': 1,\n",
      "          'appearances': 1,\n",
      "          'marsha': 1,\n",
      "          'roz': 1,\n",
      "          'paul': 1,\n",
      "          'politically': 1,\n",
      "          'incorrect': 1,\n",
      "          'host': 1,\n",
      "          'bill': 1,\n",
      "          'somebody': 1,\n",
      "          'nappearing': 1,\n",
      "          'pretty': 1,\n",
      "          'opposite': 1,\n",
      "          'effect': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'especially': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'live': 1,\n",
      "          'ensemble': 1,\n",
      "          'comedy': 1,\n",
      "          'joel': 1,\n",
      "          'schumacher': 1,\n",
      "          'direct': 1,\n",
      "          'batman': 1,\n",
      "          'bunch': 1,\n",
      "          'misfits': 1,\n",
      "          'nyou': 1,\n",
      "          'feeling': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          'cadets': 1,\n",
      "          'made': 1,\n",
      "          'different': 1,\n",
      "          'career': 1,\n",
      "          'choice': 1,\n",
      "          'result': 1,\n",
      "          'except': 1,\n",
      "          'interesting': 1,\n",
      "          'characters': 1,\n",
      "          'white': 1,\n",
      "          'tight': 1,\n",
      "          'blacks': 1,\n",
      "          'take': 1,\n",
      "          'world': 1,\n",
      "          'jive': 1,\n",
      "          'talker': 1,\n",
      "          'named': 1,\n",
      "          'tyrone': 1,\n",
      "          'charlie': 1,\n",
      "          'barnett': 1,\n",
      "          'wears': 1,\n",
      "          'hair': 1,\n",
      "          'rollers': 1,\n",
      "          'uses': 1,\n",
      "          'word': 1,\n",
      "          'honkey': 1,\n",
      "          'possible': 1,\n",
      "          'tough': 1,\n",
      "          'mohawk': 1,\n",
      "          'gold': 1,\n",
      "          'chains': 1,\n",
      "          'real': 1,\n",
      "          'stretch': 1,\n",
      "          'aspiring': 1,\n",
      "          'musician': 1,\n",
      "          'waiting': 1,\n",
      "          'big': 1,\n",
      "          'break': 1,\n",
      "          'mexican': 1,\n",
      "          'gigolo': 1,\n",
      "          'woman': 1,\n",
      "          'company': 1,\n",
      "          'adam': 1,\n",
      "          'nweve': 1,\n",
      "          'seen': 1,\n",
      "          'dozens': 1,\n",
      "          'bad': 1,\n",
      "          'comedies': 1,\n",
      "          'nsome': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'funny': 1,\n",
      "          'nthis': 1,\n",
      "          'neither': 1,\n",
      "          'nyoud': 1,\n",
      "          'think': 1,\n",
      "          'plenty': 1,\n",
      "          'comedic': 1,\n",
      "          'sparks': 1,\n",
      "          'fly': 1,\n",
      "          'assemblage': 1,\n",
      "          'talent': 1,\n",
      "          'whatever': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'continual': 1,\n",
      "          'basis': 1,\n",
      "          'culminating': 1,\n",
      "          'usual': 1,\n",
      "          'contrived': 1,\n",
      "          'hollywood': 1,\n",
      "          'finale': 1,\n",
      "          'kidnapped': 1,\n",
      "          'cabbies': 1,\n",
      "          'shame': 1,\n",
      "          'depths': 1,\n",
      "          'stale': 1,\n",
      "          'jokes': 1,\n",
      "          'unoriginality': 1,\n",
      "          'rightly': 1,\n",
      "          'earned': 1,\n",
      "          'position': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gilliam': 8,\n",
      "          'movie': 6,\n",
      "          'film': 6,\n",
      "          'acid': 5,\n",
      "          'vegas': 5,\n",
      "          'cox': 4,\n",
      "          'hard': 4,\n",
      "          'las': 4,\n",
      "          'made': 4,\n",
      "          'would': 4,\n",
      "          'thompsons': 4,\n",
      "          'want': 4,\n",
      "          'nbut': 4,\n",
      "          'work': 4,\n",
      "          'terry': 3,\n",
      "          'idea': 3,\n",
      "          'loathing': 3,\n",
      "          'book': 3,\n",
      "          'gonzo': 3,\n",
      "          'johnny': 3,\n",
      "          'del': 3,\n",
      "          'toro': 3,\n",
      "          'every': 3,\n",
      "          'drug': 3,\n",
      "          'see': 3,\n",
      "          'alex': 2,\n",
      "          'mushrooms': 2,\n",
      "          'ride': 2,\n",
      "          'ingesting': 2,\n",
      "          'point': 2,\n",
      "          'fear': 2,\n",
      "          'wish': 2,\n",
      "          'comic': 2,\n",
      "          'performances': 2,\n",
      "          'something': 2,\n",
      "          'hunter': 2,\n",
      "          'us': 2,\n",
      "          'thompson': 2,\n",
      "          'depp': 2,\n",
      "          'came': 2,\n",
      "          'duke': 2,\n",
      "          'dr': 2,\n",
      "          'two': 2,\n",
      "          'hotel': 2,\n",
      "          'one': 2,\n",
      "          'meet': 2,\n",
      "          'dont': 2,\n",
      "          'dead': 2,\n",
      "          'nit': 2,\n",
      "          'exposed': 2,\n",
      "          'comedy': 2,\n",
      "          'nits': 2,\n",
      "          'wrong': 2,\n",
      "          'nthis': 2,\n",
      "          'nthere': 2,\n",
      "          'dialogue': 2,\n",
      "          'youre': 2,\n",
      "          'better': 2,\n",
      "          'interesting': 2,\n",
      "          'much': 2,\n",
      "          'nancy': 2,\n",
      "          'purpose': 2,\n",
      "          'doesnt': 2,\n",
      "          'written': 1,\n",
      "          'tod': 1,\n",
      "          'davies': 1,\n",
      "          'tony': 1,\n",
      "          'grisoni': 1,\n",
      "          'ndirected': 1,\n",
      "          'nive': 1,\n",
      "          'always': 1,\n",
      "          'preferred': 1,\n",
      "          'blotter': 1,\n",
      "          'ndropping': 1,\n",
      "          'like': 1,\n",
      "          'riding': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'blindfolded': 1,\n",
      "          'peaks': 1,\n",
      "          'valleys': 1,\n",
      "          'next': 1,\n",
      "          'terrifying': 1,\n",
      "          'decent': 1,\n",
      "          'send': 1,\n",
      "          'stomach': 1,\n",
      "          'throat': 1,\n",
      "          'long': 1,\n",
      "          'last': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'knot': 1,\n",
      "          'gut': 1,\n",
      "          'clenched': 1,\n",
      "          'teeth': 1,\n",
      "          'come': 1,\n",
      "          'strychninelaced': 1,\n",
      "          'dose': 1,\n",
      "          'nmushrooms': 1,\n",
      "          'hand': 1,\n",
      "          'offer': 1,\n",
      "          'psychedelic': 1,\n",
      "          'equivalent': 1,\n",
      "          'leisurely': 1,\n",
      "          'ferris': 1,\n",
      "          'wheel': 1,\n",
      "          'steady': 1,\n",
      "          'reassuring': 1,\n",
      "          'assent': 1,\n",
      "          'short': 1,\n",
      "          'period': 1,\n",
      "          'thrilling': 1,\n",
      "          'motion': 1,\n",
      "          'color': 1,\n",
      "          'smooth': 1,\n",
      "          'landing': 1,\n",
      "          'nacid': 1,\n",
      "          'daredevils': 1,\n",
      "          'refined': 1,\n",
      "          'seekers': 1,\n",
      "          'joy': 1,\n",
      "          'nmy': 1,\n",
      "          'director': 1,\n",
      "          'mushroom': 1,\n",
      "          'nfull': 1,\n",
      "          'shocking': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'aggressive': 1,\n",
      "          'images': 1,\n",
      "          'grotesque': 1,\n",
      "          'certainly': 1,\n",
      "          'offers': 1,\n",
      "          'fans': 1,\n",
      "          'experience': 1,\n",
      "          'twisted': 1,\n",
      "          'pharmacological': 1,\n",
      "          'worldview': 1,\n",
      "          'inside': 1,\n",
      "          'enjoy': 1,\n",
      "          'wellmade': 1,\n",
      "          'produced': 1,\n",
      "          'mixed': 1,\n",
      "          'bag': 1,\n",
      "          'nfear': 1,\n",
      "          'tells': 1,\n",
      "          'ostensibly': 1,\n",
      "          'true': 1,\n",
      "          'story': 1,\n",
      "          'selfprofessed': 1,\n",
      "          'journalist': 1,\n",
      "          'hispanic': 1,\n",
      "          'activist': 1,\n",
      "          'attorney': 1,\n",
      "          'oscar': 1,\n",
      "          'zeta': 1,\n",
      "          'actosta': 1,\n",
      "          'benicio': 1,\n",
      "          'cover': 1,\n",
      "          'motorcycle': 1,\n",
      "          'race': 1,\n",
      "          'found': 1,\n",
      "          'trapped': 1,\n",
      "          'middle': 1,\n",
      "          'district': 1,\n",
      "          'attorneys': 1,\n",
      "          'convention': 1,\n",
      "          'conceivable': 1,\n",
      "          'available': 1,\n",
      "          'man': 1,\n",
      "          'means': 1,\n",
      "          '1971': 1,\n",
      "          'noperating': 1,\n",
      "          'pseudonyms': 1,\n",
      "          'raoul': 1,\n",
      "          'ngonzo': 1,\n",
      "          'men': 1,\n",
      "          'careen': 1,\n",
      "          'mescaline': 1,\n",
      "          'bender': 1,\n",
      "          'hole': 1,\n",
      "          'suite': 1,\n",
      "          'binge': 1,\n",
      "          'amyl': 1,\n",
      "          'nitrite': 1,\n",
      "          'cocaine': 1,\n",
      "          'tequila': 1,\n",
      "          'rainbow': 1,\n",
      "          'multicolored': 1,\n",
      "          'uppers': 1,\n",
      "          'downers': 1,\n",
      "          'nthey': 1,\n",
      "          'terrorize': 1,\n",
      "          'mostly': 1,\n",
      "          'terrifies': 1,\n",
      "          'nduke': 1,\n",
      "          'hallucinates': 1,\n",
      "          'giant': 1,\n",
      "          'bats': 1,\n",
      "          'way': 1,\n",
      "          'town': 1,\n",
      "          'attacked': 1,\n",
      "          'horrifying': 1,\n",
      "          'lizards': 1,\n",
      "          'casino': 1,\n",
      "          'lounge': 1,\n",
      "          'ndr': 1,\n",
      "          'becomes': 1,\n",
      "          'enamored': 1,\n",
      "          'thickbladed': 1,\n",
      "          'hunting': 1,\n",
      "          'knife': 1,\n",
      "          'begs': 1,\n",
      "          'throw': 1,\n",
      "          'tape': 1,\n",
      "          'player': 1,\n",
      "          'bathtub': 1,\n",
      "          'jefferson': 1,\n",
      "          'airplanes': 1,\n",
      "          'white': 1,\n",
      "          'rabbit': 1,\n",
      "          'reaches': 1,\n",
      "          'climax': 1,\n",
      "          'nand': 1,\n",
      "          'guys': 1,\n",
      "          'trash': 1,\n",
      "          'rooms': 1,\n",
      "          'rape': 1,\n",
      "          'humiliate': 1,\n",
      "          'leave': 1,\n",
      "          'nthat': 1,\n",
      "          'neither': 1,\n",
      "          'ends': 1,\n",
      "          'jail': 1,\n",
      "          'testament': 1,\n",
      "          'blind': 1,\n",
      "          'luck': 1,\n",
      "          'providence': 1,\n",
      "          'depending': 1,\n",
      "          'view': 1,\n",
      "          'nthompsons': 1,\n",
      "          'besides': 1,\n",
      "          'hilarious': 1,\n",
      "          'read': 1,\n",
      "          'stood': 1,\n",
      "          'test': 1,\n",
      "          'time': 1,\n",
      "          'important': 1,\n",
      "          'historical': 1,\n",
      "          'document': 1,\n",
      "          'simultaneously': 1,\n",
      "          '60s': 1,\n",
      "          'culture': 1,\n",
      "          'sham': 1,\n",
      "          'place': 1,\n",
      "          'american': 1,\n",
      "          'dream': 1,\n",
      "          'die': 1,\n",
      "          'npontificate': 1,\n",
      "          'illustrates': 1,\n",
      "          'message': 1,\n",
      "          'truth': 1,\n",
      "          'stripped': 1,\n",
      "          'bare': 1,\n",
      "          'essentials': 1,\n",
      "          'wrought': 1,\n",
      "          'cheech': 1,\n",
      "          'chong': 1,\n",
      "          'nyoure': 1,\n",
      "          'watch': 1,\n",
      "          'ingest': 1,\n",
      "          'lot': 1,\n",
      "          'chemicals': 1,\n",
      "          'laugh': 1,\n",
      "          'results': 1,\n",
      "          'take': 1,\n",
      "          'drugs': 1,\n",
      "          'fall': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'concept': 1,\n",
      "          'tries': 1,\n",
      "          'frantic': 1,\n",
      "          'sweaty': 1,\n",
      "          'closeups': 1,\n",
      "          'wideangle': 1,\n",
      "          'lenses': 1,\n",
      "          'dutch': 1,\n",
      "          'tilts': 1,\n",
      "          'otherworldly': 1,\n",
      "          'lighting': 1,\n",
      "          'schemes': 1,\n",
      "          'times': 1,\n",
      "          'really': 1,\n",
      "          'put': 1,\n",
      "          'convincing': 1,\n",
      "          'representation': 1,\n",
      "          'trip': 1,\n",
      "          'screen': 1,\n",
      "          'end': 1,\n",
      "          'nmuch': 1,\n",
      "          'comes': 1,\n",
      "          'verbatim': 1,\n",
      "          'priceless': 1,\n",
      "          'observations': 1,\n",
      "          'pressed': 1,\n",
      "          'hear': 1,\n",
      "          'digest': 1,\n",
      "          'amidst': 1,\n",
      "          'jumbled': 1,\n",
      "          'camera': 1,\n",
      "          'brings': 1,\n",
      "          'strike': 1,\n",
      "          'ndepp': 1,\n",
      "          'plays': 1,\n",
      "          'groucho': 1,\n",
      "          'marks': 1,\n",
      "          'filtered': 1,\n",
      "          'george': 1,\n",
      "          'c': 1,\n",
      "          'scott': 1,\n",
      "          'patton': 1,\n",
      "          'gimmicky': 1,\n",
      "          'performance': 1,\n",
      "          'works': 1,\n",
      "          'biting': 1,\n",
      "          'satire': 1,\n",
      "          'nin': 1,\n",
      "          'several': 1,\n",
      "          'puking': 1,\n",
      "          'scenes': 1,\n",
      "          'fares': 1,\n",
      "          'also': 1,\n",
      "          'mumbles': 1,\n",
      "          'sputters': 1,\n",
      "          'many': 1,\n",
      "          'lines': 1,\n",
      "          'weight': 1,\n",
      "          'lost': 1,\n",
      "          'nwatching': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'dan': 1,\n",
      "          'akroyd': 1,\n",
      "          'john': 1,\n",
      "          'belushi': 1,\n",
      "          'leads': 1,\n",
      "          'note': 1,\n",
      "          'credited': 1,\n",
      "          'cowriter': 1,\n",
      "          'screenplay': 1,\n",
      "          'originally': 1,\n",
      "          'slated': 1,\n",
      "          'direct': 1,\n",
      "          'took': 1,\n",
      "          'nas': 1,\n",
      "          'fan': 1,\n",
      "          'gilliams': 1,\n",
      "          'choice': 1,\n",
      "          'nsid': 1,\n",
      "          'coxs': 1,\n",
      "          'best': 1,\n",
      "          'covered': 1,\n",
      "          'essentially': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'able': 1,\n",
      "          'pull': 1,\n",
      "          'back': 1,\n",
      "          'allow': 1,\n",
      "          'characters': 1,\n",
      "          'sid': 1,\n",
      "          'vicious': 1,\n",
      "          'spungen': 1,\n",
      "          'carry': 1,\n",
      "          'ngilliam': 1,\n",
      "          'commits': 1,\n",
      "          'compound': 1,\n",
      "          'sin': 1,\n",
      "          'overdirecting': 1,\n",
      "          'uncertain': 1,\n",
      "          'nwhat': 1,\n",
      "          'kind': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'anyway': 1,\n",
      "          'try': 1,\n",
      "          'cautionary': 1,\n",
      "          'tale': 1,\n",
      "          'broad': 1,\n",
      "          'nif': 1,\n",
      "          'considered': 1,\n",
      "          'carefully': 1,\n",
      "          'result': 1,\n",
      "          'truly': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'good': 1,\n",
      "          'enough': 1,\n",
      "          'mood': 1,\n",
      "          'might': 1,\n",
      "          'get': 1,\n",
      "          'kick': 1,\n",
      "          'ni': 1,\n",
      "          'however': 1,\n",
      "          'recommend': 1,\n",
      "          'watching': 1,\n",
      "          'influence': 1,\n",
      "          'favorite': 1,\n",
      "          'controlled': 1,\n",
      "          'substance': 1,\n",
      "          'guarantee': 1,\n",
      "          'enhance': 1,\n",
      "          'effect': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'half': 5,\n",
      "          'lake': 4,\n",
      "          'nthe': 3,\n",
      "          'wouldnt': 3,\n",
      "          'best': 2,\n",
      "          'placid': 2,\n",
      "          'think': 2,\n",
      "          'fails': 2,\n",
      "          'crocodile': 2,\n",
      "          'eccentric': 2,\n",
      "          'want': 2,\n",
      "          'croc': 2,\n",
      "          'also': 2,\n",
      "          'betty': 2,\n",
      "          'white': 2,\n",
      "          'dont': 2,\n",
      "          'thing': 1,\n",
      "          '80': 1,\n",
      "          'minutes': 1,\n",
      "          'long': 1,\n",
      "          'youre': 1,\n",
      "          'glad': 1,\n",
      "          'didnt': 1,\n",
      "          'waste': 1,\n",
      "          'hour': 1,\n",
      "          'time': 1,\n",
      "          'nits': 1,\n",
      "          'nothing': 1,\n",
      "          'bad': 1,\n",
      "          'ripoff': 1,\n",
      "          'jaws': 1,\n",
      "          'thats': 1,\n",
      "          'kind': 1,\n",
      "          'nit': 1,\n",
      "          'written': 1,\n",
      "          'david': 1,\n",
      "          'e': 1,\n",
      "          'kelly': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'horrorcomedy': 1,\n",
      "          'miserably': 1,\n",
      "          'ni': 1,\n",
      "          'never': 1,\n",
      "          'scared': 1,\n",
      "          'laughed': 1,\n",
      "          'even': 1,\n",
      "          'comparison': 1,\n",
      "          'snake': 1,\n",
      "          'anaconda': 1,\n",
      "          'plot': 1,\n",
      "          'begins': 1,\n",
      "          'man': 1,\n",
      "          'eaten': 1,\n",
      "          'giant': 1,\n",
      "          'black': 1,\n",
      "          'maine': 1,\n",
      "          'nthat': 1,\n",
      "          'brings': 1,\n",
      "          'local': 1,\n",
      "          'sheriff': 1,\n",
      "          'brendan': 1,\n",
      "          'gleeson': 1,\n",
      "          'fishandgame': 1,\n",
      "          'warden': 1,\n",
      "          'bill': 1,\n",
      "          'pulman': 1,\n",
      "          'investigate': 1,\n",
      "          'nalso': 1,\n",
      "          'paleontologist': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'sent': 1,\n",
      "          'look': 1,\n",
      "          'tooth': 1,\n",
      "          'millionairecrocodile': 1,\n",
      "          'lover': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'flies': 1,\n",
      "          'wants': 1,\n",
      "          'swim': 1,\n",
      "          'beside': 1,\n",
      "          'beast': 1,\n",
      "          'nsoon': 1,\n",
      "          'tension': 1,\n",
      "          'everybody': 1,\n",
      "          'people': 1,\n",
      "          'kill': 1,\n",
      "          'save': 1,\n",
      "          'ntheres': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n",
      "          'lives': 1,\n",
      "          'secrets': 1,\n",
      "          'nas': 1,\n",
      "          'mentioned': 1,\n",
      "          'kelley': 1,\n",
      "          'director': 1,\n",
      "          'steve': 1,\n",
      "          'minor': 1,\n",
      "          'h20': 1,\n",
      "          'go': 1,\n",
      "          'serious': 1,\n",
      "          'approach': 1,\n",
      "          'towards': 1,\n",
      "          'material': 1,\n",
      "          'anything': 1,\n",
      "          'sly': 1,\n",
      "          'satirical': 1,\n",
      "          'witty': 1,\n",
      "          'say': 1,\n",
      "          'either': 1,\n",
      "          'character': 1,\n",
      "          'completely': 1,\n",
      "          'unfunny': 1,\n",
      "          'none': 1,\n",
      "          'characters': 1,\n",
      "          'really': 1,\n",
      "          'interesting': 1,\n",
      "          'theyre': 1,\n",
      "          'basically': 1,\n",
      "          'idiots': 1,\n",
      "          'nif': 1,\n",
      "          'brains': 1,\n",
      "          'much': 1,\n",
      "          'challenge': 1,\n",
      "          'catch': 1,\n",
      "          'put': 1,\n",
      "          'situations': 1,\n",
      "          'nbut': 1,\n",
      "          'smart': 1,\n",
      "          'movie': 1,\n",
      "          'nbasically': 1,\n",
      "          'undiscovered': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 6,\n",
      "          'movie': 3,\n",
      "          'away': 3,\n",
      "          'film': 3,\n",
      "          'judd': 3,\n",
      "          'times': 2,\n",
      "          'tv': 2,\n",
      "          'entire': 2,\n",
      "          'given': 2,\n",
      "          'thought': 2,\n",
      "          'end': 2,\n",
      "          'tommy': 2,\n",
      "          'lee': 2,\n",
      "          'jones': 2,\n",
      "          'drama': 2,\n",
      "          'double': 2,\n",
      "          'jeopardy': 2,\n",
      "          'offers': 2,\n",
      "          'im': 2,\n",
      "          'watching': 2,\n",
      "          'less': 2,\n",
      "          'movies': 2,\n",
      "          'material': 2,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'people': 1,\n",
      "          'seen': 1,\n",
      "          'preview': 1,\n",
      "          'thousand': 1,\n",
      "          'theaters': 1,\n",
      "          'ni': 1,\n",
      "          'tell': 1,\n",
      "          'thing': 1,\n",
      "          'gave': 1,\n",
      "          'nwhy': 1,\n",
      "          'someone': 1,\n",
      "          'would': 1,\n",
      "          'want': 1,\n",
      "          'base': 1,\n",
      "          'premise': 1,\n",
      "          'give': 1,\n",
      "          'crucial': 1,\n",
      "          'detail': 1,\n",
      "          'trailers': 1,\n",
      "          'beyond': 1,\n",
      "          'nhowever': 1,\n",
      "          'hadnt': 1,\n",
      "          'wouldve': 1,\n",
      "          'still': 1,\n",
      "          'suprisingly': 1,\n",
      "          'devoid': 1,\n",
      "          'suspense': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'nobviously': 1,\n",
      "          'producers': 1,\n",
      "          'could': 1,\n",
      "          'remake': 1,\n",
      "          'deep': 1,\n",
      "          'ocean': 1,\n",
      "          'throw': 1,\n",
      "          'couple': 1,\n",
      "          'cliches': 1,\n",
      "          'call': 1,\n",
      "          'action': 1,\n",
      "          'n': 1,\n",
      "          'solid': 1,\n",
      "          'acting': 1,\n",
      "          'ashley': 1,\n",
      "          'got': 1,\n",
      "          'first': 1,\n",
      "          'billing': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'didnt': 1,\n",
      "          'see': 1,\n",
      "          'screen': 1,\n",
      "          'half': 1,\n",
      "          'much': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'genuinely': 1,\n",
      "          'funny': 1,\n",
      "          'clever': 1,\n",
      "          'fulloftension': 1,\n",
      "          'moments': 1,\n",
      "          'favorite': 1,\n",
      "          'waking': 1,\n",
      "          'coffin': 1,\n",
      "          'none': 1,\n",
      "          'salvage': 1,\n",
      "          'insanely': 1,\n",
      "          'predictable': 1,\n",
      "          'plot': 1,\n",
      "          'nhalf': 1,\n",
      "          'time': 1,\n",
      "          'wondering': 1,\n",
      "          'whether': 1,\n",
      "          'overhyped': 1,\n",
      "          'miniseries': 1,\n",
      "          'always': 1,\n",
      "          'turn': 1,\n",
      "          'exciting': 1,\n",
      "          'advertised': 1,\n",
      "          'njudging': 1,\n",
      "          'beginning': 1,\n",
      "          'huge': 1,\n",
      "          'chunk': 1,\n",
      "          'middle': 1,\n",
      "          'might': 1,\n",
      "          'special': 1,\n",
      "          'hallmark': 1,\n",
      "          'presentation': 1,\n",
      "          'nthe': 1,\n",
      "          'stretching': 1,\n",
      "          'almost': 1,\n",
      "          'two': 1,\n",
      "          'hour': 1,\n",
      "          'long': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'worth': 1,\n",
      "          'nimplausible': 1,\n",
      "          'nloose': 1,\n",
      "          'interpretation': 1,\n",
      "          'amendments': 1,\n",
      "          'aside': 1,\n",
      "          'many': 1,\n",
      "          'possible': 1,\n",
      "          'nthat': 1,\n",
      "          'kind': 1,\n",
      "          'stuff': 1,\n",
      "          'excusable': 1,\n",
      "          'popcorn': 1,\n",
      "          'like': 1,\n",
      "          'tries': 1,\n",
      "          'pass': 1,\n",
      "          'serious': 1,\n",
      "          'neverything': 1,\n",
      "          'seems': 1,\n",
      "          'dragged': 1,\n",
      "          'overplayed': 1,\n",
      "          'nwhen': 1,\n",
      "          'shouldve': 1,\n",
      "          'kept': 1,\n",
      "          'us': 1,\n",
      "          'dark': 1,\n",
      "          'let': 1,\n",
      "          'cat': 1,\n",
      "          'bag': 1,\n",
      "          'early': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'ni': 6,\n",
      "          'film': 5,\n",
      "          'house': 4,\n",
      "          'scare': 4,\n",
      "          'nthe': 4,\n",
      "          'got': 4,\n",
      "          'nit': 3,\n",
      "          'like': 3,\n",
      "          'didnt': 3,\n",
      "          'least': 3,\n",
      "          'would': 3,\n",
      "          'people': 3,\n",
      "          'nthere': 3,\n",
      "          'times': 3,\n",
      "          'things': 3,\n",
      "          'nand': 3,\n",
      "          'haunted': 2,\n",
      "          'hill': 2,\n",
      "          'advertising': 2,\n",
      "          'stupid': 2,\n",
      "          'well': 2,\n",
      "          'trust': 2,\n",
      "          'see': 2,\n",
      "          'nthat': 2,\n",
      "          'scary': 2,\n",
      "          'flat': 2,\n",
      "          'seen': 2,\n",
      "          'halloween': 2,\n",
      "          'downright': 2,\n",
      "          'laughable': 2,\n",
      "          'wasnt': 2,\n",
      "          'going': 2,\n",
      "          'situations': 2,\n",
      "          'utterly': 2,\n",
      "          'good': 2,\n",
      "          'n': 2,\n",
      "          'fell': 2,\n",
      "          'invited': 2,\n",
      "          'party': 2,\n",
      "          'couple': 2,\n",
      "          'evil': 2,\n",
      "          'better': 2,\n",
      "          'inevitable': 2,\n",
      "          'strangers': 2,\n",
      "          'together': 2,\n",
      "          'last': 2,\n",
      "          'one': 2,\n",
      "          'nyes': 2,\n",
      "          'get': 2,\n",
      "          'nbut': 2,\n",
      "          'course': 2,\n",
      "          'three': 2,\n",
      "          'enjoyed': 2,\n",
      "          'brosnan': 2,\n",
      "          'machine': 2,\n",
      "          'waiting': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'end': 2,\n",
      "          'epiphany': 1,\n",
      "          'today': 1,\n",
      "          'occurred': 1,\n",
      "          'watching': 1,\n",
      "          'follows': 1,\n",
      "          'trailer': 1,\n",
      "          'makes': 1,\n",
      "          'look': 1,\n",
      "          'trashy': 1,\n",
      "          'guess': 1,\n",
      "          'nchances': 1,\n",
      "          'truth': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'instincts': 1,\n",
      "          'somethingortheother': 1,\n",
      "          'possessed': 1,\n",
      "          'blame': 1,\n",
      "          'sudden': 1,\n",
      "          'craving': 1,\n",
      "          'anticipation': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          'dogma': 1,\n",
      "          'started': 1,\n",
      "          'late': 1,\n",
      "          'afternoon': 1,\n",
      "          'schedule': 1,\n",
      "          'nan': 1,\n",
      "          'hour': 1,\n",
      "          'angel': 1,\n",
      "          'buffy': 1,\n",
      "          'scarier': 1,\n",
      "          'doozy': 1,\n",
      "          'tries': 1,\n",
      "          'shtick': 1,\n",
      "          'falls': 1,\n",
      "          'face': 1,\n",
      "          'wish': 1,\n",
      "          'id': 1,\n",
      "          'nat': 1,\n",
      "          'forgiving': 1,\n",
      "          'nhey': 1,\n",
      "          'tis': 1,\n",
      "          'season': 1,\n",
      "          'albeit': 1,\n",
      "          'confusing': 1,\n",
      "          'dizzying': 1,\n",
      "          'nauseating': 1,\n",
      "          'first': 1,\n",
      "          'soon': 1,\n",
      "          'horror': 1,\n",
      "          'repetitive': 1,\n",
      "          'obviously': 1,\n",
      "          'anywhere': 1,\n",
      "          'nnow': 1,\n",
      "          'truly': 1,\n",
      "          'appreciate': 1,\n",
      "          'films': 1,\n",
      "          'scream': 1,\n",
      "          'old': 1,\n",
      "          'hitchcock': 1,\n",
      "          'scariness': 1,\n",
      "          'stems': 1,\n",
      "          'somewhat': 1,\n",
      "          'realistic': 1,\n",
      "          'nthats': 1,\n",
      "          'spooks': 1,\n",
      "          'fact': 1,\n",
      "          'could': 1,\n",
      "          'happen': 1,\n",
      "          'someone': 1,\n",
      "          'know': 1,\n",
      "          'logical': 1,\n",
      "          'precedent': 1,\n",
      "          'want': 1,\n",
      "          'us': 1,\n",
      "          'nsure': 1,\n",
      "          'unpredictable': 1,\n",
      "          'thats': 1,\n",
      "          'different': 1,\n",
      "          'nonsensical': 1,\n",
      "          'nhohh': 1,\n",
      "          'hand': 1,\n",
      "          'nwell': 1,\n",
      "          'lets': 1,\n",
      "          'say': 1,\n",
      "          'chair': 1,\n",
      "          'laughing': 1,\n",
      "          'ohsocleverly': 1,\n",
      "          'revealed': 1,\n",
      "          'everyone': 1,\n",
      "          'related': 1,\n",
      "          'psycho': 1,\n",
      "          'doctors': 1,\n",
      "          'died': 1,\n",
      "          'decades': 1,\n",
      "          'ago': 1,\n",
      "          'nriiiiight': 1,\n",
      "          'nyknow': 1,\n",
      "          'sends': 1,\n",
      "          'chills': 1,\n",
      "          'spine': 1,\n",
      "          'nyeah': 1,\n",
      "          'njust': 1,\n",
      "          'wet': 1,\n",
      "          'pants': 1,\n",
      "          'told': 1,\n",
      "          'nooooooo': 1,\n",
      "          'nhint': 1,\n",
      "          'blood': 1,\n",
      "          'guts': 1,\n",
      "          'work': 1,\n",
      "          'nsooner': 1,\n",
      "          'later': 1,\n",
      "          'start': 1,\n",
      "          'tell': 1,\n",
      "          'ketchup': 1,\n",
      "          'props': 1,\n",
      "          'youve': 1,\n",
      "          'come': 1,\n",
      "          'something': 1,\n",
      "          'many': 1,\n",
      "          'weve': 1,\n",
      "          'plot': 1,\n",
      "          'developments': 1,\n",
      "          'unwittingly': 1,\n",
      "          'trapped': 1,\n",
      "          'turning': 1,\n",
      "          'manifesting': 1,\n",
      "          'dead': 1,\n",
      "          'coming': 1,\n",
      "          'back': 1,\n",
      "          'neach': 1,\n",
      "          'predictable': 1,\n",
      "          'nwhy': 1,\n",
      "          'fools': 1,\n",
      "          'stay': 1,\n",
      "          'place': 1,\n",
      "          'anyways': 1,\n",
      "          'nsheesh': 1,\n",
      "          'nwas': 1,\n",
      "          'grossed': 1,\n",
      "          'ndid': 1,\n",
      "          'spooked': 1,\n",
      "          'really': 1,\n",
      "          'disturbed': 1,\n",
      "          'nwhen': 1,\n",
      "          'werent': 1,\n",
      "          'random': 1,\n",
      "          'scares': 1,\n",
      "          'reason': 1,\n",
      "          'visual': 1,\n",
      "          'effect': 1,\n",
      "          'either': 1,\n",
      "          'filled': 1,\n",
      "          'drab': 1,\n",
      "          'dialogue': 1,\n",
      "          'characters': 1,\n",
      "          'incredibly': 1,\n",
      "          'cliched': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'annoying': 1,\n",
      "          'nyouve': 1,\n",
      "          'bunch': 1,\n",
      "          'nowhere': 1,\n",
      "          'lives': 1,\n",
      "          'theyre': 1,\n",
      "          'dumb': 1,\n",
      "          'enough': 1,\n",
      "          'go': 1,\n",
      "          'stranger': 1,\n",
      "          'provided': 1,\n",
      "          'win': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'survive': 1,\n",
      "          'night': 1,\n",
      "          'njeez': 1,\n",
      "          'thought': 1,\n",
      "          'may': 1,\n",
      "          'already': 1,\n",
      "          'winner': 1,\n",
      "          'anymore': 1,\n",
      "          'gals': 1,\n",
      "          'babes': 1,\n",
      "          'wonder': 1,\n",
      "          'earth': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'shine': 1,\n",
      "          'ended': 1,\n",
      "          'nkeep': 1,\n",
      "          'geoff': 1,\n",
      "          'youll': 1,\n",
      "          'qualify': 1,\n",
      "          'next': 1,\n",
      "          'batman': 1,\n",
      "          'venture': 1,\n",
      "          'single': 1,\n",
      "          'person': 1,\n",
      "          'chris': 1,\n",
      "          'kattan': 1,\n",
      "          'cracks': 1,\n",
      "          'famke': 1,\n",
      "          'jansen': 1,\n",
      "          'sp': 1,\n",
      "          'nbecause': 1,\n",
      "          'reminds': 1,\n",
      "          'delectable': 1,\n",
      "          'npierce': 1,\n",
      "          'hey': 1,\n",
      "          'willingly': 1,\n",
      "          'endured': 1,\n",
      "          'dantes': 1,\n",
      "          'peak': 1,\n",
      "          'nall': 1,\n",
      "          'right': 1,\n",
      "          'concede': 1,\n",
      "          'perverted': 1,\n",
      "          'little': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'beginning': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'ride': 1,\n",
      "          'rollercoaster': 1,\n",
      "          'used': 1,\n",
      "          'drive': 1,\n",
      "          'geoffreys': 1,\n",
      "          'character': 1,\n",
      "          'mad': 1,\n",
      "          'dont': 1,\n",
      "          'even': 1,\n",
      "          'remember': 1,\n",
      "          'names': 1,\n",
      "          'fishtank': 1,\n",
      "          'naked': 1,\n",
      "          'wimmin': 1,\n",
      "          'kept': 1,\n",
      "          'twist': 1,\n",
      "          'wouldnt': 1,\n",
      "          'redeemed': 1,\n",
      "          'made': 1,\n",
      "          'feel': 1,\n",
      "          'opted': 1,\n",
      "          'beautiful': 1,\n",
      "          'sunrise': 1,\n",
      "          'ending': 1,\n",
      "          'nthank': 1,\n",
      "          'god': 1,\n",
      "          'add': 1,\n",
      "          'kiss': 1,\n",
      "          'puked': 1,\n",
      "          'ngod': 1,\n",
      "          'hope': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'steal': 2,\n",
      "          'play': 2,\n",
      "          'another': 2,\n",
      "          'run': 2,\n",
      "          'n': 2,\n",
      "          'explosion': 2,\n",
      "          'movie': 2,\n",
      "          'director': 1,\n",
      "          'andrew': 1,\n",
      "          'davis': 1,\n",
      "          'reworks': 1,\n",
      "          'fugitive': 1,\n",
      "          'formula': 1,\n",
      "          'results': 1,\n",
      "          'exciting': 1,\n",
      "          'last': 1,\n",
      "          'film': 1,\n",
      "          'dreadful': 1,\n",
      "          'comedy': 1,\n",
      "          'big': 1,\n",
      "          'little': 1,\n",
      "          'funny': 1,\n",
      "          'nkeanu': 1,\n",
      "          'id': 1,\n",
      "          'rather': 1,\n",
      "          'music': 1,\n",
      "          'action': 1,\n",
      "          'hero': 1,\n",
      "          'reeves': 1,\n",
      "          'grad': 1,\n",
      "          'student': 1,\n",
      "          'along': 1,\n",
      "          'superfluous': 1,\n",
      "          'sidekick': 1,\n",
      "          'rachel': 1,\n",
      "          'weisz': 1,\n",
      "          'framed': 1,\n",
      "          'sabotaged': 1,\n",
      "          'science': 1,\n",
      "          'experiment': 1,\n",
      "          'vaporized': 1,\n",
      "          'eight': 1,\n",
      "          'chicago': 1,\n",
      "          'city': 1,\n",
      "          'blocks': 1,\n",
      "          'mushroomcloud': 1,\n",
      "          'knockout': 1,\n",
      "          'easily': 1,\n",
      "          'best': 1,\n",
      "          'part': 1,\n",
      "          'one': 1,\n",
      "          'audience': 1,\n",
      "          'member': 1,\n",
      "          'succinctly': 1,\n",
      "          'summed': 1,\n",
      "          'whoa': 1,\n",
      "          'nfalse': 1,\n",
      "          'information': 1,\n",
      "          'implicates': 1,\n",
      "          'involvement': 1,\n",
      "          'boy': 1,\n",
      "          'girl': 1,\n",
      "          'soon': 1,\n",
      "          'fleeing': 1,\n",
      "          'open': 1,\n",
      "          'drawbridges': 1,\n",
      "          'across': 1,\n",
      "          'icy': 1,\n",
      "          'lakes': 1,\n",
      "          'corridors': 1,\n",
      "          'power': 1,\n",
      "          'topsecret': 1,\n",
      "          'underground': 1,\n",
      "          'energy': 1,\n",
      "          'facility': 1,\n",
      "          'naiding': 1,\n",
      "          'abetting': 1,\n",
      "          'teams': 1,\n",
      "          'shady': 1,\n",
      "          'mentor': 1,\n",
      "          'played': 1,\n",
      "          'excellentbutso': 1,\n",
      "          'performance': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'brit': 1,\n",
      "          'brian': 1,\n",
      "          'cox': 1,\n",
      "          'also': 1,\n",
      "          'behindthescenes': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'nhe': 1,\n",
      "          'fun': 1,\n",
      "          'fiddling': 1,\n",
      "          'southern': 1,\n",
      "          'accent': 1,\n",
      "          'nunfunny': 1,\n",
      "          'overscored': 1,\n",
      "          'without': 1,\n",
      "          'single': 1,\n",
      "          'shred': 1,\n",
      "          'suspense': 1,\n",
      "          'chain': 1,\n",
      "          'reaction': 1,\n",
      "          'summer': 1,\n",
      "          'walk': 1,\n",
      "          'nif': 1,\n",
      "          'make': 1,\n",
      "          'end': 1,\n",
      "          'mess': 1,\n",
      "          'crosscutting': 1,\n",
      "          'involving': 1,\n",
      "          'imminent': 1,\n",
      "          'youll': 1,\n",
      "          'hear': 1,\n",
      "          'somebody': 1,\n",
      "          'say': 1,\n",
      "          'guess': 1,\n",
      "          'time': 1,\n",
      "          'go': 1,\n",
      "          'nheed': 1,\n",
      "          'warning': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gloria': 10,\n",
      "          'film': 6,\n",
      "          'one': 5,\n",
      "          'director': 4,\n",
      "          'nicky': 4,\n",
      "          'stone': 4,\n",
      "          'thought': 3,\n",
      "          'movie': 3,\n",
      "          'picture': 3,\n",
      "          'even': 3,\n",
      "          'men': 3,\n",
      "          'boy': 3,\n",
      "          'money': 3,\n",
      "          'people': 3,\n",
      "          'dont': 3,\n",
      "          'nalthough': 3,\n",
      "          'sidney': 2,\n",
      "          'cassavetes': 2,\n",
      "          'driving': 2,\n",
      "          'theatre': 2,\n",
      "          'life': 2,\n",
      "          'nwhen': 2,\n",
      "          'ni': 2,\n",
      "          'saw': 2,\n",
      "          'begins': 2,\n",
      "          'mobsters': 2,\n",
      "          'disc': 2,\n",
      "          'father': 2,\n",
      "          'sharon': 2,\n",
      "          'crime': 2,\n",
      "          'refuses': 2,\n",
      "          'type': 2,\n",
      "          'always': 2,\n",
      "          'involved': 2,\n",
      "          'never': 2,\n",
      "          'stuck': 2,\n",
      "          'doubt': 2,\n",
      "          'really': 2,\n",
      "          'considerably': 2,\n",
      "          'story': 2,\n",
      "          'could': 2,\n",
      "          'entertaining': 2,\n",
      "          'mind': 2,\n",
      "          'lumet': 2,\n",
      "          'watch': 2,\n",
      "          'turning': 2,\n",
      "          'around': 2,\n",
      "          'little': 2,\n",
      "          'better': 2,\n",
      "          'turns': 2,\n",
      "          'actors': 2,\n",
      "          'make': 2,\n",
      "          'actress': 2,\n",
      "          'good': 2,\n",
      "          'last': 2,\n",
      "          'blatantly': 1,\n",
      "          'obvious': 1,\n",
      "          'signs': 1,\n",
      "          'oftenacclaimed': 1,\n",
      "          'lumets': 1,\n",
      "          'remake': 1,\n",
      "          '1980': 1,\n",
      "          'john': 1,\n",
      "          'absolutely': 1,\n",
      "          'effect': 1,\n",
      "          'occurred': 1,\n",
      "          'home': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'realized': 1,\n",
      "          'since': 1,\n",
      "          'stood': 1,\n",
      "          'seat': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'invested': 1,\n",
      "          'nearly': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'arent': 1,\n",
      "          'supposed': 1,\n",
      "          'think': 1,\n",
      "          'conversation': 1,\n",
      "          'acquaintances': 1,\n",
      "          'watched': 1,\n",
      "          'particular': 1,\n",
      "          '2': 1,\n",
      "          'someone': 1,\n",
      "          'wouldnt': 1,\n",
      "          'anything': 1,\n",
      "          'talk': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'nto': 1,\n",
      "          'sure': 1,\n",
      "          'stirring': 1,\n",
      "          'rather': 1,\n",
      "          'poignant': 1,\n",
      "          'prologue': 1,\n",
      "          'sevenyearold': 1,\n",
      "          'boys': 1,\n",
      "          'family': 1,\n",
      "          'brutally': 1,\n",
      "          'gunned': 1,\n",
      "          'search': 1,\n",
      "          'incriminating': 1,\n",
      "          'evidence': 1,\n",
      "          'nright': 1,\n",
      "          'broke': 1,\n",
      "          'course': 1,\n",
      "          'gave': 1,\n",
      "          'escape': 1,\n",
      "          'neventually': 1,\n",
      "          'named': 1,\n",
      "          'nunez': 1,\n",
      "          'jeanluke': 1,\n",
      "          'figueroa': 1,\n",
      "          'caught': 1,\n",
      "          'taken': 1,\n",
      "          'back': 1,\n",
      "          'apartment': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'gotten': 1,\n",
      "          'prison': 1,\n",
      "          'didnt': 1,\n",
      "          'commit': 1,\n",
      "          'returns': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'jeremy': 1,\n",
      "          'northam': 1,\n",
      "          'recieve': 1,\n",
      "          'promised': 1,\n",
      "          'covering': 1,\n",
      "          'give': 1,\n",
      "          'hears': 1,\n",
      "          'group': 1,\n",
      "          'talking': 1,\n",
      "          'killing': 1,\n",
      "          'leaves': 1,\n",
      "          'order': 1,\n",
      "          'save': 1,\n",
      "          'holding': 1,\n",
      "          'gunpoint': 1,\n",
      "          'stealing': 1,\n",
      "          'forcing': 1,\n",
      "          'strip': 1,\n",
      "          'nude': 1,\n",
      "          'ngloria': 1,\n",
      "          'fasttalking': 1,\n",
      "          'smartmouthed': 1,\n",
      "          'new': 1,\n",
      "          'yorker': 1,\n",
      "          'seems': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'expected': 1,\n",
      "          'kid': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'trying': 1,\n",
      "          'protect': 1,\n",
      "          'quickly': 1,\n",
      "          'form': 1,\n",
      "          'close': 1,\n",
      "          'bond': 1,\n",
      "          'nthe': 1,\n",
      "          'previous': 1,\n",
      "          'incarnation': 1,\n",
      "          'starring': 1,\n",
      "          'luminous': 1,\n",
      "          'gena': 1,\n",
      "          'rowlands': 1,\n",
      "          'remains': 1,\n",
      "          'unseen': 1,\n",
      "          'superior': 1,\n",
      "          'though': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'dull': 1,\n",
      "          'transformed': 1,\n",
      "          'regardless': 1,\n",
      "          'stars': 1,\n",
      "          'nthere': 1,\n",
      "          'closely': 1,\n",
      "          'original': 1,\n",
      "          'simply': 1,\n",
      "          'lifeless': 1,\n",
      "          'occasional': 1,\n",
      "          'laugh': 1,\n",
      "          'popping': 1,\n",
      "          'isnt': 1,\n",
      "          'completely': 1,\n",
      "          'unbearable': 1,\n",
      "          'liked': 1,\n",
      "          'example': 1,\n",
      "          'funny': 1,\n",
      "          'climactic': 1,\n",
      "          'sequence': 1,\n",
      "          'deciding': 1,\n",
      "          'whether': 1,\n",
      "          'leave': 1,\n",
      "          'school': 1,\n",
      "          'left': 1,\n",
      "          'keeps': 1,\n",
      "          'car': 1,\n",
      "          'ways': 1,\n",
      "          'slamming': 1,\n",
      "          'brakes': 1,\n",
      "          'nthese': 1,\n",
      "          'bright': 1,\n",
      "          'moments': 1,\n",
      "          'however': 1,\n",
      "          'appear': 1,\n",
      "          'long': 1,\n",
      "          'far': 1,\n",
      "          'majority': 1,\n",
      "          'deals': 1,\n",
      "          'budding': 1,\n",
      "          'relationship': 1,\n",
      "          'painfully': 1,\n",
      "          'predictable': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'nthroughout': 1,\n",
      "          'repeatedly': 1,\n",
      "          'asking': 1,\n",
      "          'question': 1,\n",
      "          'cares': 1,\n",
      "          'nas': 1,\n",
      "          'adopted': 1,\n",
      "          'overthetop': 1,\n",
      "          'brooklyn': 1,\n",
      "          'accent': 1,\n",
      "          'honestly': 1,\n",
      "          'doesnt': 1,\n",
      "          'sound': 1,\n",
      "          'realistic': 1,\n",
      "          'nin': 1,\n",
      "          'beginning': 1,\n",
      "          'fact': 1,\n",
      "          'amazed': 1,\n",
      "          'amateurish': 1,\n",
      "          'stones': 1,\n",
      "          'performance': 1,\n",
      "          'progressed': 1,\n",
      "          'got': 1,\n",
      "          'comic': 1,\n",
      "          'flare': 1,\n",
      "          'ignored': 1,\n",
      "          'njeanluke': 1,\n",
      "          'figeroa': 1,\n",
      "          'fine': 1,\n",
      "          'natural': 1,\n",
      "          'usual': 1,\n",
      "          'child': 1,\n",
      "          'precocious': 1,\n",
      "          'want': 1,\n",
      "          'gag': 1,\n",
      "          'nall': 1,\n",
      "          'appeared': 1,\n",
      "          'wasted': 1,\n",
      "          'none': 1,\n",
      "          'cathy': 1,\n",
      "          'moriarty': 1,\n",
      "          'right': 1,\n",
      "          'billed': 1,\n",
      "          'fourth': 1,\n",
      "          'scene': 1,\n",
      "          'glorias': 1,\n",
      "          'friend': 1,\n",
      "          'help': 1,\n",
      "          'nsony': 1,\n",
      "          'studio': 1,\n",
      "          'released': 1,\n",
      "          'obviously': 1,\n",
      "          'faith': 1,\n",
      "          'blame': 1,\n",
      "          'nthey': 1,\n",
      "          'declined': 1,\n",
      "          'screen': 1,\n",
      "          'critics': 1,\n",
      "          'sign': 1,\n",
      "          'particularly': 1,\n",
      "          'highprofile': 1,\n",
      "          'much': 1,\n",
      "          'makes': 1,\n",
      "          'determine': 1,\n",
      "          'look': 1,\n",
      "          'spectacular': 1,\n",
      "          'dreams': 1,\n",
      "          'failed': 1,\n",
      "          'top': 1,\n",
      "          '10': 1,\n",
      "          'week': 1,\n",
      "          'suspicion': 1,\n",
      "          'going': 1,\n",
      "          'vanish': 1,\n",
      "          'theaters': 1,\n",
      "          'faster': 1,\n",
      "          'ishtar': 1,\n",
      "          'judging': 1,\n",
      "          'opening': 1,\n",
      "          'night': 1,\n",
      "          '7': 1,\n",
      "          '00': 1,\n",
      "          'p': 1,\n",
      "          'showing': 1,\n",
      "          'ten': 1,\n",
      "          'fifteen': 1,\n",
      "          'present': 1,\n",
      "          'counting': 1,\n",
      "          'impressive': 1,\n",
      "          '1995s': 1,\n",
      "          'casino': 1,\n",
      "          '1996s': 1,\n",
      "          'dance': 1,\n",
      "          'believe': 1,\n",
      "          'respectable': 1,\n",
      "          'reasoning': 1,\n",
      "          'cliched': 1,\n",
      "          'worth': 1,\n",
      "          'remaking': 1,\n",
      "          'matter': 1,\n",
      "          'columbia': 1,\n",
      "          'pictures': 1,\n",
      "          'agreed': 1,\n",
      "          'finance': 1,\n",
      "          'making': 1,\n",
      "          'actually': 1,\n",
      "          'looked': 1,\n",
      "          'like': 1,\n",
      "          'might': 1,\n",
      "          'inkling': 1,\n",
      "          'chance': 1,\n",
      "          'successful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'us': 13,\n",
      "          'characters': 12,\n",
      "          'film': 10,\n",
      "          'one': 10,\n",
      "          'nthe': 8,\n",
      "          'shots': 5,\n",
      "          'sex': 5,\n",
      "          'cristoffer': 5,\n",
      "          'without': 5,\n",
      "          'way': 4,\n",
      "          'think': 4,\n",
      "          'could': 4,\n",
      "          'sexual': 4,\n",
      "          'gives': 4,\n",
      "          'like': 4,\n",
      "          'body': 3,\n",
      "          'word': 3,\n",
      "          'ni': 3,\n",
      "          'seem': 3,\n",
      "          'next': 3,\n",
      "          'encounter': 3,\n",
      "          'anything': 3,\n",
      "          'love': 3,\n",
      "          'idiotic': 3,\n",
      "          'nthis': 3,\n",
      "          'isnt': 3,\n",
      "          'two': 3,\n",
      "          'nit': 3,\n",
      "          'may': 3,\n",
      "          'possible': 3,\n",
      "          'boogie': 3,\n",
      "          'nights': 3,\n",
      "          'concern': 2,\n",
      "          'act': 2,\n",
      "          'review': 2,\n",
      "          'come': 2,\n",
      "          'across': 2,\n",
      "          'another': 2,\n",
      "          'boring': 2,\n",
      "          'movie': 2,\n",
      "          'makes': 2,\n",
      "          'play': 2,\n",
      "          'nbody': 2,\n",
      "          'normally': 2,\n",
      "          'nits': 2,\n",
      "          'seemed': 2,\n",
      "          'message': 2,\n",
      "          'kind': 2,\n",
      "          'treated': 2,\n",
      "          'nothing': 2,\n",
      "          'say': 2,\n",
      "          'dont': 2,\n",
      "          'directly': 2,\n",
      "          'nthey': 2,\n",
      "          'equals': 2,\n",
      "          'violence': 2,\n",
      "          'yes': 2,\n",
      "          'movies': 2,\n",
      "          'get': 2,\n",
      "          'plot': 2,\n",
      "          'night': 2,\n",
      "          'pleasure': 2,\n",
      "          'would': 2,\n",
      "          'go': 2,\n",
      "          'actors': 2,\n",
      "          'set': 2,\n",
      "          'sensitive': 2,\n",
      "          'gets': 2,\n",
      "          'lines': 2,\n",
      "          'director': 2,\n",
      "          'insight': 2,\n",
      "          'f': 2,\n",
      "          'side': 2,\n",
      "          'ounce': 2,\n",
      "          'none': 2,\n",
      "          'reason': 2,\n",
      "          'manner': 2,\n",
      "          'shows': 2,\n",
      "          'much': 2,\n",
      "          'rape': 2,\n",
      "          'versions': 2,\n",
      "          'done': 2,\n",
      "          'care': 2,\n",
      "          'anderson': 2,\n",
      "          'though': 2,\n",
      "          'gave': 2,\n",
      "          'showed': 2,\n",
      "          'nhe': 2,\n",
      "          'prereview': 1,\n",
      "          'note': 1,\n",
      "          'seeing': 1,\n",
      "          'forced': 1,\n",
      "          'refer': 1,\n",
      "          'particular': 1,\n",
      "          'innumerable': 1,\n",
      "          'times': 1,\n",
      "          'throughout': 1,\n",
      "          'duration': 1,\n",
      "          'nbecause': 1,\n",
      "          'try': 1,\n",
      "          'vary': 1,\n",
      "          'descriptions': 1,\n",
      "          'meaning': 1,\n",
      "          'offended': 1,\n",
      "          'pejorative': 1,\n",
      "          'terms': 1,\n",
      "          'name': 1,\n",
      "          'jerry': 1,\n",
      "          'falwell': 1,\n",
      "          'kindly': 1,\n",
      "          'invited': 1,\n",
      "          'hit': 1,\n",
      "          'x': 1,\n",
      "          'left': 1,\n",
      "          'corner': 1,\n",
      "          'screen': 1,\n",
      "          'happens': 1,\n",
      "          'comprehend': 1,\n",
      "          'fret': 1,\n",
      "          'likely': 1,\n",
      "          'referring': 1,\n",
      "          'wed': 1,\n",
      "          'agree': 1,\n",
      "          'used': 1,\n",
      "          'incessantly': 1,\n",
      "          'becomes': 1,\n",
      "          'bit': 1,\n",
      "          'monotonous': 1,\n",
      "          'hope': 1,\n",
      "          'appreciate': 1,\n",
      "          'attempt': 1,\n",
      "          'liven': 1,\n",
      "          'potentially': 1,\n",
      "          'nthough': 1,\n",
      "          'steve': 1,\n",
      "          'forbes': 1,\n",
      "          'flat': 1,\n",
      "          'tax': 1,\n",
      "          'plan': 1,\n",
      "          'lively': 1,\n",
      "          'watching': 1,\n",
      "          'naked': 1,\n",
      "          'mathew': 1,\n",
      "          'mconaughy': 1,\n",
      "          'bongos': 1,\n",
      "          'high': 1,\n",
      "          'god': 1,\n",
      "          'knows': 1,\n",
      "          'frightened': 1,\n",
      "          'coitus': 1,\n",
      "          'scenes': 1,\n",
      "          'copulation': 1,\n",
      "          'filmed': 1,\n",
      "          'ominously': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'see': 1,\n",
      "          'violent': 1,\n",
      "          'attack': 1,\n",
      "          'people': 1,\n",
      "          'screwing': 1,\n",
      "          'seek': 1,\n",
      "          'talk': 1,\n",
      "          'nthese': 1,\n",
      "          'things': 1,\n",
      "          'sometimes': 1,\n",
      "          'spend': 1,\n",
      "          'every': 1,\n",
      "          'waking': 1,\n",
      "          'moment': 1,\n",
      "          'pondering': 1,\n",
      "          'simplicities': 1,\n",
      "          'acts': 1,\n",
      "          'ntheir': 1,\n",
      "          'lives': 1,\n",
      "          'center': 1,\n",
      "          'around': 1,\n",
      "          'depressed': 1,\n",
      "          'fucking': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'busy': 1,\n",
      "          'workweek': 1,\n",
      "          'nat': 1,\n",
      "          'core': 1,\n",
      "          'thing': 1,\n",
      "          'picture': 1,\n",
      "          'really': 1,\n",
      "          'progressive': 1,\n",
      "          'church': 1,\n",
      "          'groups': 1,\n",
      "          'showing': 1,\n",
      "          'middle': 1,\n",
      "          'schoolers': 1,\n",
      "          'order': 1,\n",
      "          'turn': 1,\n",
      "          'coition': 1,\n",
      "          'nmichael': 1,\n",
      "          'directed': 1,\n",
      "          'gia': 1,\n",
      "          'bumping': 1,\n",
      "          'uglies': 1,\n",
      "          'evil': 1,\n",
      "          'moralist': 1,\n",
      "          'new': 1,\n",
      "          'nhis': 1,\n",
      "          'communicate': 1,\n",
      "          'interest': 1,\n",
      "          'opportunity': 1,\n",
      "          'let': 1,\n",
      "          'inner': 1,\n",
      "          'thoughts': 1,\n",
      "          'speaking': 1,\n",
      "          'camera': 1,\n",
      "          'voice': 1,\n",
      "          'simplistic': 1,\n",
      "          'platitudes': 1,\n",
      "          'nhuh': 1,\n",
      "          'nand': 1,\n",
      "          'complex': 1,\n",
      "          'observations': 1,\n",
      "          'stupid': 1,\n",
      "          'shallow': 1,\n",
      "          'registering': 1,\n",
      "          'concerns': 1,\n",
      "          'vapid': 1,\n",
      "          'sexed': 1,\n",
      "          'twentysomethings': 1,\n",
      "          'hunt': 1,\n",
      "          'carnal': 1,\n",
      "          'math': 1,\n",
      "          'morning': 1,\n",
      "          'events': 1,\n",
      "          'nwe': 1,\n",
      "          'meet': 1,\n",
      "          'speak': 1,\n",
      "          'confiding': 1,\n",
      "          'ruminations': 1,\n",
      "          'intimacy': 1,\n",
      "          'giving': 1,\n",
      "          'pros': 1,\n",
      "          'cons': 1,\n",
      "          'nim': 1,\n",
      "          'trying': 1,\n",
      "          'clever': 1,\n",
      "          'witty': 1,\n",
      "          'honestly': 1,\n",
      "          'hardly': 1,\n",
      "          'remember': 1,\n",
      "          'apart': 1,\n",
      "          'others': 1,\n",
      "          'nwith': 1,\n",
      "          'exception': 1,\n",
      "          'trent': 1,\n",
      "          'played': 1,\n",
      "          'ron': 1,\n",
      "          'livingston': 1,\n",
      "          'bargain': 1,\n",
      "          'basement': 1,\n",
      "          'patrick': 1,\n",
      "          'bateman': 1,\n",
      "          'rest': 1,\n",
      "          'fade': 1,\n",
      "          'patchwork': 1,\n",
      "          'fake': 1,\n",
      "          'breasts': 1,\n",
      "          'defined': 1,\n",
      "          'abs': 1,\n",
      "          'pearly': 1,\n",
      "          'white': 1,\n",
      "          'teeth': 1,\n",
      "          'creamy': 1,\n",
      "          'flawless': 1,\n",
      "          'skin': 1,\n",
      "          'vaguely': 1,\n",
      "          'recall': 1,\n",
      "          'brad': 1,\n",
      "          'rowe': 1,\n",
      "          'character': 1,\n",
      "          'worst': 1,\n",
      "          'nin': 1,\n",
      "          'confessionals': 1,\n",
      "          'films': 1,\n",
      "          'everything': 1,\n",
      "          'headache': 1,\n",
      "          'commercial': 1,\n",
      "          'blurry': 1,\n",
      "          'slo': 1,\n",
      "          'mos': 1,\n",
      "          'dramatic': 1,\n",
      "          'head': 1,\n",
      "          'turning': 1,\n",
      "          'fact': 1,\n",
      "          'point': 1,\n",
      "          'pulitzer': 1,\n",
      "          'prize': 1,\n",
      "          'completely': 1,\n",
      "          'baffles': 1,\n",
      "          'made': 1,\n",
      "          'iota': 1,\n",
      "          'intelligence': 1,\n",
      "          'generation': 1,\n",
      "          'tag': 1,\n",
      "          'line': 1,\n",
      "          'claims': 1,\n",
      "          'defining': 1,\n",
      "          'nif': 1,\n",
      "          'meant': 1,\n",
      "          'twentysometyhings': 1,\n",
      "          'kobsessed': 1,\n",
      "          'fine': 1,\n",
      "          'problem': 1,\n",
      "          'tries': 1,\n",
      "          'persuade': 1,\n",
      "          'certain': 1,\n",
      "          'nadditionally': 1,\n",
      "          'even': 1,\n",
      "          'entertaining': 1,\n",
      "          'indulge': 1,\n",
      "          'buggery': 1,\n",
      "          'sexiness': 1,\n",
      "          'realism': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'outside': 1,\n",
      "          'club': 1,\n",
      "          'chain': 1,\n",
      "          'link': 1,\n",
      "          'fence': 1,\n",
      "          'suddenly': 1,\n",
      "          'vigorous': 1,\n",
      "          'intercourse': 1,\n",
      "          'apparent': 1,\n",
      "          'happen': 1,\n",
      "          'standing': 1,\n",
      "          'alas': 1,\n",
      "          'easy': 1,\n",
      "          'kidding': 1,\n",
      "          'course': 1,\n",
      "          'erotic': 1,\n",
      "          'real': 1,\n",
      "          'doesnt': 1,\n",
      "          'feel': 1,\n",
      "          'authentic': 1,\n",
      "          'nevery': 1,\n",
      "          'k': 1,\n",
      "          'scene': 1,\n",
      "          'many': 1,\n",
      "          'unsexy': 1,\n",
      "          'fornication': 1,\n",
      "          'dirtier': 1,\n",
      "          'scummy': 1,\n",
      "          'porno': 1,\n",
      "          'along': 1,\n",
      "          'fails': 1,\n",
      "          'show': 1,\n",
      "          'making': 1,\n",
      "          'hate': 1,\n",
      "          'actually': 1,\n",
      "          'resulting': 1,\n",
      "          'search': 1,\n",
      "          'nookie': 1,\n",
      "          'take': 1,\n",
      "          'cookie': 1,\n",
      "          'leaves': 1,\n",
      "          'several': 1,\n",
      "          'tedious': 1,\n",
      "          'follow': 1,\n",
      "          'main': 1,\n",
      "          'ado': 1,\n",
      "          'occurred': 1,\n",
      "          'separate': 1,\n",
      "          'consensual': 1,\n",
      "          'young': 1,\n",
      "          'actress': 1,\n",
      "          'playing': 1,\n",
      "          'victim': 1,\n",
      "          'shirt': 1,\n",
      "          'torn': 1,\n",
      "          'topic': 1,\n",
      "          'interestingly': 1,\n",
      "          'explored': 1,\n",
      "          'intelligently': 1,\n",
      "          'memory': 1,\n",
      "          'serves': 1,\n",
      "          'cant': 1,\n",
      "          'saw': 1,\n",
      "          'accused': 1,\n",
      "          'overrated': 1,\n",
      "          '80s': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'nobody': 1,\n",
      "          'writer': 1,\n",
      "          'nearly': 1,\n",
      "          'wandered': 1,\n",
      "          'noxious': 1,\n",
      "          '90210': 1,\n",
      "          'spin': 1,\n",
      "          'npaul': 1,\n",
      "          'thomas': 1,\n",
      "          'approached': 1,\n",
      "          'similar': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'succeeded': 1,\n",
      "          'similarly': 1,\n",
      "          'moralistic': 1,\n",
      "          'different': 1,\n",
      "          'viewpoints': 1,\n",
      "          'lifestyle': 1,\n",
      "          'porn': 1,\n",
      "          'enticed': 1,\n",
      "          'fallout': 1,\n",
      "          'decision': 1,\n",
      "          'heart': 1,\n",
      "          'ncristoffer': 1,\n",
      "          'raging': 1,\n",
      "          'hormones': 1,\n",
      "          'preaches': 1,\n",
      "          'using': 1,\n",
      "          'preach': 1,\n",
      "          'nwhy': 1,\n",
      "          'direct': 1,\n",
      "          'public': 1,\n",
      "          'service': 1,\n",
      "          'announcement': 1,\n",
      "          'perils': 1,\n",
      "          'hittin': 1,\n",
      "          'skins': 1,\n",
      "          'ncristofer': 1,\n",
      "          'helping': 1,\n",
      "          'leering': 1,\n",
      "          'exploitation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'burn': 12,\n",
      "          'film': 11,\n",
      "          'hollywood': 9,\n",
      "          'eszterhas': 7,\n",
      "          'alan': 5,\n",
      "          'smithee': 5,\n",
      "          'satire': 4,\n",
      "          'bad': 4,\n",
      "          'even': 4,\n",
      "          'references': 4,\n",
      "          'every': 3,\n",
      "          'show': 3,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'everyone': 3,\n",
      "          'available': 2,\n",
      "          'life': 2,\n",
      "          'excess': 2,\n",
      "          'ego': 2,\n",
      "          'nif': 2,\n",
      "          'screen': 2,\n",
      "          'one': 2,\n",
      "          'nit': 2,\n",
      "          'already': 2,\n",
      "          'title': 2,\n",
      "          'director': 2,\n",
      "          'hiller': 2,\n",
      "          'directors': 2,\n",
      "          'word': 2,\n",
      "          'disaster': 2,\n",
      "          'enough': 2,\n",
      "          'called': 2,\n",
      "          'whoopi': 2,\n",
      "          'producer': 2,\n",
      "          'entire': 2,\n",
      "          'things': 2,\n",
      "          'nits': 2,\n",
      "          'single': 2,\n",
      "          'makes': 2,\n",
      "          'joke': 2,\n",
      "          'times': 2,\n",
      "          'character': 2,\n",
      "          'time': 2,\n",
      "          'black': 2,\n",
      "          'brothers': 2,\n",
      "          'identified': 2,\n",
      "          'new': 2,\n",
      "          'desperate': 2,\n",
      "          'attempt': 2,\n",
      "          'credits': 2,\n",
      "          'convince': 2,\n",
      "          'involved': 2,\n",
      "          'im': 1,\n",
      "          'guessing': 1,\n",
      "          'evidence': 1,\n",
      "          'great': 1,\n",
      "          'guess': 1,\n",
      "          'began': 1,\n",
      "          'insider': 1,\n",
      "          'stupidity': 1,\n",
      "          'powermongering': 1,\n",
      "          'ended': 1,\n",
      "          'ranks': 1,\n",
      "          'spectacularly': 1,\n",
      "          'ironic': 1,\n",
      "          'unintentional': 1,\n",
      "          'jokes': 1,\n",
      "          'history': 1,\n",
      "          'welldocumented': 1,\n",
      "          'original': 1,\n",
      "          'became': 1,\n",
      "          'problem': 1,\n",
      "          'miserable': 1,\n",
      "          'test': 1,\n",
      "          'screenings': 1,\n",
      "          'forced': 1,\n",
      "          'recuts': 1,\n",
      "          'arthur': 1,\n",
      "          'prompting': 1,\n",
      "          'opt': 1,\n",
      "          'guildmandated': 1,\n",
      "          'pseudonym': 1,\n",
      "          'nthat': 1,\n",
      "          'left': 1,\n",
      "          'hands': 1,\n",
      "          'writer': 1,\n",
      "          'joe': 1,\n",
      "          'humorless': 1,\n",
      "          'hack': 1,\n",
      "          'ever': 1,\n",
      "          'put': 1,\n",
      "          'finger': 1,\n",
      "          'processor': 1,\n",
      "          'nand': 1,\n",
      "          'could': 1,\n",
      "          'smell': 1,\n",
      "          'brewing': 1,\n",
      "          'youre': 1,\n",
      "          'unfortunate': 1,\n",
      "          'sit': 1,\n",
      "          'youll': 1,\n",
      "          'still': 1,\n",
      "          'smelling': 1,\n",
      "          'long': 1,\n",
      "          'lights': 1,\n",
      "          'come': 1,\n",
      "          'nostensibly': 1,\n",
      "          'pseudodocumentary': 1,\n",
      "          'account': 1,\n",
      "          'named': 1,\n",
      "          'eric': 1,\n",
      "          'idle': 1,\n",
      "          'loses': 1,\n",
      "          'control': 1,\n",
      "          'bigbudget': 1,\n",
      "          'action': 1,\n",
      "          'trio': 1,\n",
      "          'starring': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'goldberg': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'appear': 1,\n",
      "          'nwhen': 1,\n",
      "          'recourse': 1,\n",
      "          'abandoning': 1,\n",
      "          'project': 1,\n",
      "          'course': 1,\n",
      "          'steals': 1,\n",
      "          'negative': 1,\n",
      "          'threatens': 1,\n",
      "          'destroy': 1,\n",
      "          'namong': 1,\n",
      "          'parties': 1,\n",
      "          'interviewed': 1,\n",
      "          'films': 1,\n",
      "          'james': 1,\n",
      "          'edmunds': 1,\n",
      "          'ryan': 1,\n",
      "          'oneal': 1,\n",
      "          'studio': 1,\n",
      "          'boss': 1,\n",
      "          'jerry': 1,\n",
      "          'glover': 1,\n",
      "          'richard': 1,\n",
      "          'jeni': 1,\n",
      "          'spend': 1,\n",
      "          'virtually': 1,\n",
      "          'narrating': 1,\n",
      "          'story': 1,\n",
      "          'painfully': 1,\n",
      "          'unfunny': 1,\n",
      "          'go': 1,\n",
      "          'around': 1,\n",
      "          'literally': 1,\n",
      "          'laugh': 1,\n",
      "          'blissfully': 1,\n",
      "          'brief': 1,\n",
      "          '84': 1,\n",
      "          'minutes': 1,\n",
      "          'nwhat': 1,\n",
      "          'worse': 1,\n",
      "          'insistence': 1,\n",
      "          'upon': 1,\n",
      "          'telling': 1,\n",
      "          'twice': 1,\n",
      "          'three': 1,\n",
      "          'nmichael': 1,\n",
      "          'ovitz': 1,\n",
      "          'showgirls': 1,\n",
      "          'oral': 1,\n",
      "          'sex': 1,\n",
      "          'goldbergted': 1,\n",
      "          'danson': 1,\n",
      "          'multiple': 1,\n",
      "          'subtlety': 1,\n",
      "          'stockintrade': 1,\n",
      "          'reduncancy': 1,\n",
      "          'manages': 1,\n",
      "          'turn': 1,\n",
      "          'actively': 1,\n",
      "          'offensive': 1,\n",
      "          'frequency': 1,\n",
      "          'notably': 1,\n",
      "          'hilarious': 1,\n",
      "          'use': 1,\n",
      "          'feminist': 1,\n",
      "          'identifying': 1,\n",
      "          'caption': 1,\n",
      "          'female': 1,\n",
      "          'nby': 1,\n",
      "          'coolio': 1,\n",
      "          'chuck': 1,\n",
      "          'independent': 1,\n",
      "          'filmmakers': 1,\n",
      "          'cleverly': 1,\n",
      "          'badder': 1,\n",
      "          'among': 1,\n",
      "          'unprintable': 1,\n",
      "          'may': 1,\n",
      "          'ready': 1,\n",
      "          'walk': 1,\n",
      "          'theater': 1,\n",
      "          'coat': 1,\n",
      "          'head': 1,\n",
      "          'avoid': 1,\n",
      "          'nthose': 1,\n",
      "          'documentary': 1,\n",
      "          'captions': 1,\n",
      "          'leaden': 1,\n",
      "          'obviousness': 1,\n",
      "          'allow': 1,\n",
      "          'best': 1,\n",
      "          'insight': 1,\n",
      "          'whats': 1,\n",
      "          'hideously': 1,\n",
      "          'wrong': 1,\n",
      "          'nnot': 1,\n",
      "          'content': 1,\n",
      "          'stick': 1,\n",
      "          'type': 1,\n",
      "          'jab': 1,\n",
      "          'rapier': 1,\n",
      "          'wit': 1,\n",
      "          'fills': 1,\n",
      "          'bullet': 1,\n",
      "          'points': 1,\n",
      "          'appears': 1,\n",
      "          'liar': 1,\n",
      "          'slept': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'media': 1,\n",
      "          'maggots': 1,\n",
      "          'leeches': 1,\n",
      "          'working': 1,\n",
      "          'publications': 1,\n",
      "          'york': 1,\n",
      "          'slimes': 1,\n",
      "          'newsleak': 1,\n",
      "          'camera': 1,\n",
      "          'zooming': 1,\n",
      "          'altered': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'dont': 1,\n",
      "          'miss': 1,\n",
      "          'doesnt': 1,\n",
      "          'matter': 1,\n",
      "          'tags': 1,\n",
      "          'penile': 1,\n",
      "          'implant': 1,\n",
      "          'name': 1,\n",
      "          'cameo': 1,\n",
      "          'seems': 1,\n",
      "          'feign': 1,\n",
      "          'selfdeprecation': 1,\n",
      "          'nthis': 1,\n",
      "          'petulant': 1,\n",
      "          'schoolboys': 1,\n",
      "          'idea': 1,\n",
      "          'pictures': 1,\n",
      "          'insiders': 1,\n",
      "          'taken': 1,\n",
      "          'pen': 1,\n",
      "          'draw': 1,\n",
      "          'little': 1,\n",
      "          'moustaches': 1,\n",
      "          'teeth': 1,\n",
      "          'last': 1,\n",
      "          'stomachchurning': 1,\n",
      "          'straw': 1,\n",
      "          'comes': 1,\n",
      "          'closes': 1,\n",
      "          'outtakes': 1,\n",
      "          'closing': 1,\n",
      "          'kind': 1,\n",
      "          'audience': 1,\n",
      "          'much': 1,\n",
      "          'fun': 1,\n",
      "          'making': 1,\n",
      "          'sucked': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'away': 1,\n",
      "          'nperhaps': 1,\n",
      "          'final': 1,\n",
      "          'purpose': 1,\n",
      "          'behind': 1,\n",
      "          'blown': 1,\n",
      "          'lines': 1,\n",
      "          'warranted': 1,\n",
      "          'threatening': 1,\n",
      "          'blow': 1,\n",
      "          'whole': 1,\n",
      "          'career': 1,\n",
      "          'npity': 1,\n",
      "          'excessive': 1,\n",
      "          'egodriven': 1,\n",
      "          'remove': 1,\n",
      "          'names': 1,\n",
      "          'noxious': 1,\n",
      "          'material': 1,\n",
      "          'notherwise': 1,\n",
      "          'might': 1,\n",
      "          'seen': 1,\n",
      "          'overflowing': 1,\n",
      "          'smithees': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ryan': 9,\n",
      "          'kudrow': 7,\n",
      "          'keaton': 6,\n",
      "          'hanging': 5,\n",
      "          'film': 5,\n",
      "          'nand': 5,\n",
      "          'time': 5,\n",
      "          'lou': 5,\n",
      "          'meg': 4,\n",
      "          'diane': 4,\n",
      "          'lisa': 4,\n",
      "          'scene': 4,\n",
      "          'georgia': 4,\n",
      "          'given': 4,\n",
      "          'talk': 4,\n",
      "          'one': 4,\n",
      "          'like': 4,\n",
      "          'nif': 4,\n",
      "          'isnt': 4,\n",
      "          'next': 4,\n",
      "          'since': 3,\n",
      "          'sister': 3,\n",
      "          'little': 3,\n",
      "          'despite': 3,\n",
      "          'years': 3,\n",
      "          'even': 3,\n",
      "          'children': 3,\n",
      "          'actress': 3,\n",
      "          'see': 3,\n",
      "          'much': 3,\n",
      "          'three': 3,\n",
      "          'would': 3,\n",
      "          'thing': 3,\n",
      "          'nothing': 3,\n",
      "          'work': 3,\n",
      "          'role': 3,\n",
      "          'sisters': 2,\n",
      "          'nora': 2,\n",
      "          'ephron': 2,\n",
      "          'middle': 2,\n",
      "          'gives': 2,\n",
      "          'two': 2,\n",
      "          'actually': 2,\n",
      "          'come': 2,\n",
      "          'final': 2,\n",
      "          'believe': 2,\n",
      "          'relationship': 2,\n",
      "          'apart': 2,\n",
      "          'husband': 2,\n",
      "          'adam': 2,\n",
      "          'arkin': 2,\n",
      "          'nher': 2,\n",
      "          'matthau': 2,\n",
      "          'though': 2,\n",
      "          'never': 2,\n",
      "          'exactly': 2,\n",
      "          'eves': 2,\n",
      "          'mother': 2,\n",
      "          'leachman': 2,\n",
      "          'older': 2,\n",
      "          'maddy': 2,\n",
      "          'learn': 2,\n",
      "          'anything': 2,\n",
      "          'eve': 2,\n",
      "          'another': 2,\n",
      "          'get': 2,\n",
      "          'opening': 2,\n",
      "          'want': 2,\n",
      "          'enough': 2,\n",
      "          'viewer': 2,\n",
      "          'quickly': 2,\n",
      "          'dynamic': 2,\n",
      "          'nyou': 2,\n",
      "          'occurs': 2,\n",
      "          'credits': 2,\n",
      "          '1998s': 2,\n",
      "          'woman': 2,\n",
      "          'good': 2,\n",
      "          'christmas': 2,\n",
      "          '1988': 2,\n",
      "          'brief': 2,\n",
      "          'movie': 2,\n",
      "          'irresistible': 1,\n",
      "          'comedy': 1,\n",
      "          'celebrates': 1,\n",
      "          'sisterhood': 1,\n",
      "          'nscreams': 1,\n",
      "          'television': 1,\n",
      "          'ads': 1,\n",
      "          'disastrously': 1,\n",
      "          'written': 1,\n",
      "          'reallife': 1,\n",
      "          'delia': 1,\n",
      "          'sloppily': 1,\n",
      "          'directed': 1,\n",
      "          'nmake': 1,\n",
      "          'laugh': 1,\n",
      "          'nnot': 1,\n",
      "          'misadvertised': 1,\n",
      "          'wholeheartedly': 1,\n",
      "          'focuses': 1,\n",
      "          'costars': 1,\n",
      "          'extended': 1,\n",
      "          'cameos': 1,\n",
      "          'dont': 1,\n",
      "          'together': 1,\n",
      "          'ten': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'supposed': 1,\n",
      "          'strong': 1,\n",
      "          'bond': 1,\n",
      "          'smile': 1,\n",
      "          'last': 1,\n",
      "          'rekindle': 1,\n",
      "          'rocky': 1,\n",
      "          'majority': 1,\n",
      "          'running': 1,\n",
      "          'nexcuse': 1,\n",
      "          'almost': 1,\n",
      "          'bust': 1,\n",
      "          'gut': 1,\n",
      "          'truly': 1,\n",
      "          'delusional': 1,\n",
      "          'notion': 1,\n",
      "          'neve': 1,\n",
      "          'marks': 1,\n",
      "          'mozzell': 1,\n",
      "          'still': 1,\n",
      "          'living': 1,\n",
      "          'california': 1,\n",
      "          'town': 1,\n",
      "          'grew': 1,\n",
      "          'preteen': 1,\n",
      "          'son': 1,\n",
      "          'jesse': 1,\n",
      "          'james': 1,\n",
      "          'elderly': 1,\n",
      "          'wisecracking': 1,\n",
      "          'father': 1,\n",
      "          'walter': 1,\n",
      "          'brightest': 1,\n",
      "          'performance': 1,\n",
      "          'recently': 1,\n",
      "          'put': 1,\n",
      "          'hospital': 1,\n",
      "          'stages': 1,\n",
      "          'assume': 1,\n",
      "          'alzheimers': 1,\n",
      "          'enlightens': 1,\n",
      "          'us': 1,\n",
      "          'wrong': 1,\n",
      "          'nwhile': 1,\n",
      "          'cloris': 1,\n",
      "          'nearly': 1,\n",
      "          'nonexistent': 1,\n",
      "          'ran': 1,\n",
      "          'ago': 1,\n",
      "          'fair': 1,\n",
      "          'share': 1,\n",
      "          'ups': 1,\n",
      "          'downs': 1,\n",
      "          'used': 1,\n",
      "          'alcoholic': 1,\n",
      "          'editor': 1,\n",
      "          'selftitled': 1,\n",
      "          'magazine': 1,\n",
      "          'youngest': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'ninterestingly': 1,\n",
      "          'professions': 1,\n",
      "          'ever': 1,\n",
      "          'working': 1,\n",
      "          'jobs': 1,\n",
      "          'matter': 1,\n",
      "          'nmaddy': 1,\n",
      "          'anymore': 1,\n",
      "          'adult': 1,\n",
      "          'lives': 1,\n",
      "          'gradually': 1,\n",
      "          'causing': 1,\n",
      "          'drift': 1,\n",
      "          'manage': 1,\n",
      "          'consistently': 1,\n",
      "          'phone': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'telephone': 1,\n",
      "          'major': 1,\n",
      "          'star': 1,\n",
      "          'appears': 1,\n",
      "          'virtually': 1,\n",
      "          'every': 1,\n",
      "          'interminable': 1,\n",
      "          '92minute': 1,\n",
      "          'catastrophe': 1,\n",
      "          'feels': 1,\n",
      "          'hours': 1,\n",
      "          'long': 1,\n",
      "          'able': 1,\n",
      "          'halfhour': 1,\n",
      "          'phones': 1,\n",
      "          'ring': 1,\n",
      "          'feel': 1,\n",
      "          'jumping': 1,\n",
      "          'screen': 1,\n",
      "          'taking': 1,\n",
      "          'sledgehammer': 1,\n",
      "          'surely': 1,\n",
      "          'survive': 1,\n",
      "          'rest': 1,\n",
      "          'nthe': 1,\n",
      "          'question': 1,\n",
      "          'subject': 1,\n",
      "          'resolutely': 1,\n",
      "          'irritating': 1,\n",
      "          'selfinvolved': 1,\n",
      "          'patontheback': 1,\n",
      "          'nhow': 1,\n",
      "          'could': 1,\n",
      "          'comedydrama': 1,\n",
      "          'starpower': 1,\n",
      "          'bad': 1,\n",
      "          'many': 1,\n",
      "          'different': 1,\n",
      "          'ways': 1,\n",
      "          'nissues': 1,\n",
      "          'past': 1,\n",
      "          'involving': 1,\n",
      "          'possible': 1,\n",
      "          'jealousy': 1,\n",
      "          'others': 1,\n",
      "          'fleetingly': 1,\n",
      "          'brought': 1,\n",
      "          'mature': 1,\n",
      "          'deal': 1,\n",
      "          'thoughtful': 1,\n",
      "          'manner': 1,\n",
      "          'childhood': 1,\n",
      "          'lost': 1,\n",
      "          'cause': 1,\n",
      "          'comes': 1,\n",
      "          'afterthought': 1,\n",
      "          'nalso': 1,\n",
      "          'expected': 1,\n",
      "          'catch': 1,\n",
      "          'tricky': 1,\n",
      "          'metamorphosizes': 1,\n",
      "          'reunite': 1,\n",
      "          'finale': 1,\n",
      "          'whole': 1,\n",
      "          'consanguinity': 1,\n",
      "          'reduced': 1,\n",
      "          'repulsively': 1,\n",
      "          'annoying': 1,\n",
      "          'threeminute': 1,\n",
      "          'argue': 1,\n",
      "          'impending': 1,\n",
      "          'death': 1,\n",
      "          'coming': 1,\n",
      "          'mile': 1,\n",
      "          'away': 1,\n",
      "          'conveniently': 1,\n",
      "          'terms': 1,\n",
      "          'think': 1,\n",
      "          'left': 1,\n",
      "          'playful': 1,\n",
      "          'foodfight': 1,\n",
      "          'clockwork': 1,\n",
      "          'also': 1,\n",
      "          'end': 1,\n",
      "          'nmeg': 1,\n",
      "          'versatile': 1,\n",
      "          'look': 1,\n",
      "          'hurlyburly': 1,\n",
      "          '1994s': 1,\n",
      "          'man': 1,\n",
      "          'loves': 1,\n",
      "          'various': 1,\n",
      "          'detractors': 1,\n",
      "          'stubbornly': 1,\n",
      "          'romantic': 1,\n",
      "          'comedies': 1,\n",
      "          'nwith': 1,\n",
      "          'needs': 1,\n",
      "          'completely': 1,\n",
      "          'sever': 1,\n",
      "          'filmmaking': 1,\n",
      "          'ties': 1,\n",
      "          'writerdirectorhack': 1,\n",
      "          'shouldnt': 1,\n",
      "          'allowed': 1,\n",
      "          'hollywood': 1,\n",
      "          'bigbudget': 1,\n",
      "          'highprofile': 1,\n",
      "          'debacle': 1,\n",
      "          'neven': 1,\n",
      "          'knew': 1,\n",
      "          'making': 1,\n",
      "          'par': 1,\n",
      "          'quality': 1,\n",
      "          'department': 1,\n",
      "          'nonetheless': 1,\n",
      "          'scenes': 1,\n",
      "          'flashbacks': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'runin': 1,\n",
      "          'halloween': 1,\n",
      "          '1993': 1,\n",
      "          'crashed': 1,\n",
      "          'sons': 1,\n",
      "          'birthday': 1,\n",
      "          'party': 1,\n",
      "          'drunken': 1,\n",
      "          'stupor': 1,\n",
      "          'effective': 1,\n",
      "          'realism': 1,\n",
      "          'brings': 1,\n",
      "          'situations': 1,\n",
      "          'ndiane': 1,\n",
      "          'better': 1,\n",
      "          'director': 1,\n",
      "          'wildly': 1,\n",
      "          'feeble': 1,\n",
      "          'compliment': 1,\n",
      "          'nwhat': 1,\n",
      "          'farfetched': 1,\n",
      "          'distinctly': 1,\n",
      "          'although': 1,\n",
      "          'glimpses': 1,\n",
      "          'five': 1,\n",
      "          'ryans': 1,\n",
      "          'senior': 1,\n",
      "          'nyeah': 1,\n",
      "          'right': 1,\n",
      "          'nlastly': 1,\n",
      "          'poor': 1,\n",
      "          'wasted': 1,\n",
      "          'bigscreen': 1,\n",
      "          'venture': 1,\n",
      "          'thin': 1,\n",
      "          '1999s': 1,\n",
      "          'analyze': 1,\n",
      "          'nkudrow': 1,\n",
      "          'create': 1,\n",
      "          'full': 1,\n",
      "          'personality': 1,\n",
      "          'fault': 1,\n",
      "          'doesnt': 1,\n",
      "          'register': 1,\n",
      "          'quiet': 1,\n",
      "          'moments': 1,\n",
      "          'sprinkled': 1,\n",
      "          'throughout': 1,\n",
      "          'blessed': 1,\n",
      "          'dialogue': 1,\n",
      "          'real': 1,\n",
      "          'talent': 1,\n",
      "          'anxiously': 1,\n",
      "          'await': 1,\n",
      "          'deserving': 1,\n",
      "          'brilliantly': 1,\n",
      "          'nuanced': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'opposite': 1,\n",
      "          'sex': 1,\n",
      "          'fan': 1,\n",
      "          'kudrows': 1,\n",
      "          'favor': 1,\n",
      "          'rent': 1,\n",
      "          'gem': 1,\n",
      "          'puts': 1,\n",
      "          'use': 1,\n",
      "          'sixty': 1,\n",
      "          'seconds': 1,\n",
      "          'entirety': 1,\n",
      "          'nas': 1,\n",
      "          'hardworking': 1,\n",
      "          'predictably': 1,\n",
      "          'squandered': 1,\n",
      "          'subplot': 1,\n",
      "          'reveals': 1,\n",
      "          'midway': 1,\n",
      "          'mentioned': 1,\n",
      "          'ncloris': 1,\n",
      "          'makes': 1,\n",
      "          'small': 1,\n",
      "          'noticeable': 1,\n",
      "          'impression': 1,\n",
      "          'albeit': 1,\n",
      "          'appearance': 1,\n",
      "          'edie': 1,\n",
      "          'mcclurg': 1,\n",
      "          'rosycheeked': 1,\n",
      "          'affair': 1,\n",
      "          'flashback': 1,\n",
      "          'manages': 1,\n",
      "          'laughs': 1,\n",
      "          'otherwise': 1,\n",
      "          'joyless': 1,\n",
      "          'production': 1,\n",
      "          'nnearly': 1,\n",
      "          'emotions': 1,\n",
      "          'displayed': 1,\n",
      "          'within': 1,\n",
      "          'patently': 1,\n",
      "          'manufactured': 1,\n",
      "          'wanting': 1,\n",
      "          'care': 1,\n",
      "          'characters': 1,\n",
      "          'aside': 1,\n",
      "          'spoiled': 1,\n",
      "          'brats': 1,\n",
      "          'bizarre': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'type': 1,\n",
      "          'reason': 1,\n",
      "          'find': 1,\n",
      "          'theater': 1,\n",
      "          'showing': 1,\n",
      "          'suggestion': 1,\n",
      "          'hang': 1,\n",
      "          'nsaying': 1,\n",
      "          'waste': 1,\n",
      "          'understatement': 1,\n",
      "          'epic': 1,\n",
      "          'proportions': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'movie': 7,\n",
      "          'sense': 7,\n",
      "          'ending': 6,\n",
      "          'sixth': 6,\n",
      "          'one': 5,\n",
      "          'say': 4,\n",
      "          'would': 3,\n",
      "          'nthe': 3,\n",
      "          'malcolm': 3,\n",
      "          'cole': 3,\n",
      "          'nand': 3,\n",
      "          'fact': 3,\n",
      "          'conclusion': 3,\n",
      "          'even': 3,\n",
      "          'extent': 2,\n",
      "          'nhowever': 2,\n",
      "          'fully': 2,\n",
      "          'details': 2,\n",
      "          'quite': 2,\n",
      "          'child': 2,\n",
      "          'scene': 2,\n",
      "          'upon': 2,\n",
      "          'past': 2,\n",
      "          'man': 2,\n",
      "          'kid': 2,\n",
      "          'case': 2,\n",
      "          'osment': 2,\n",
      "          'nafter': 2,\n",
      "          'twist': 2,\n",
      "          'knew': 2,\n",
      "          'going': 2,\n",
      "          'enough': 2,\n",
      "          'away': 2,\n",
      "          'could': 2,\n",
      "          'ive': 2,\n",
      "          'surprise': 2,\n",
      "          'coming': 2,\n",
      "          'really': 2,\n",
      "          'may': 2,\n",
      "          'rest': 2,\n",
      "          'come': 2,\n",
      "          'end': 2,\n",
      "          'rare': 2,\n",
      "          'ni': 2,\n",
      "          'anyone': 2,\n",
      "          'disorder': 2,\n",
      "          'seen': 2,\n",
      "          'circumstances': 1,\n",
      "          'discussing': 1,\n",
      "          'particular': 1,\n",
      "          'review': 1,\n",
      "          'order': 1,\n",
      "          'explain': 1,\n",
      "          'exactly': 1,\n",
      "          'awful': 1,\n",
      "          'minute': 1,\n",
      "          'dissection': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'necessary': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'reveal': 1,\n",
      "          'last': 1,\n",
      "          'scenes': 1,\n",
      "          'proceed': 1,\n",
      "          'risk': 1,\n",
      "          'opens': 1,\n",
      "          'poorly': 1,\n",
      "          'might': 1,\n",
      "          'add': 1,\n",
      "          'psychologist': 1,\n",
      "          'crowe': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'looking': 1,\n",
      "          'like': 1,\n",
      "          'dragged': 1,\n",
      "          'trailer': 1,\n",
      "          'wee': 1,\n",
      "          'hours': 1,\n",
      "          'morning': 1,\n",
      "          'shoot': 1,\n",
      "          'wife': 1,\n",
      "          'intruded': 1,\n",
      "          'malcolms': 1,\n",
      "          'patients': 1,\n",
      "          'ndistraught': 1,\n",
      "          'suicidal': 1,\n",
      "          'cameo': 1,\n",
      "          'new': 1,\n",
      "          'block': 1,\n",
      "          'donnie': 1,\n",
      "          'wahlberg': 1,\n",
      "          'shoots': 1,\n",
      "          'turns': 1,\n",
      "          'gun': 1,\n",
      "          'ncut': 1,\n",
      "          'next': 1,\n",
      "          'fall': 1,\n",
      "          'find': 1,\n",
      "          'good': 1,\n",
      "          'doctor': 1,\n",
      "          'quietly': 1,\n",
      "          'observing': 1,\n",
      "          'latest': 1,\n",
      "          'trouble': 1,\n",
      "          'young': 1,\n",
      "          'named': 1,\n",
      "          'haley': 1,\n",
      "          'joel': 1,\n",
      "          'actors': 1,\n",
      "          'didnt': 1,\n",
      "          'want': 1,\n",
      "          'bludgeoned': 1,\n",
      "          'head': 1,\n",
      "          'blunt': 1,\n",
      "          'instrument': 1,\n",
      "          '45': 1,\n",
      "          'minutes': 1,\n",
      "          'seemingly': 1,\n",
      "          'unrelated': 1,\n",
      "          'freak': 1,\n",
      "          'occurrences': 1,\n",
      "          'learn': 1,\n",
      "          'gift': 1,\n",
      "          'able': 1,\n",
      "          'communicate': 1,\n",
      "          'dead': 1,\n",
      "          'healing': 1,\n",
      "          'begins': 1,\n",
      "          'unexpected': 1,\n",
      "          'popularity': 1,\n",
      "          'founded': 1,\n",
      "          'roger': 1,\n",
      "          'eberts': 1,\n",
      "          'colleges': 1,\n",
      "          'kind': 1,\n",
      "          'give': 1,\n",
      "          'recent': 1,\n",
      "          'segment': 1,\n",
      "          'siskel': 1,\n",
      "          'ebert': 1,\n",
      "          'nalthough': 1,\n",
      "          'first': 1,\n",
      "          'enraged': 1,\n",
      "          'established': 1,\n",
      "          'critic': 1,\n",
      "          'callously': 1,\n",
      "          'ruin': 1,\n",
      "          'thousands': 1,\n",
      "          'patrons': 1,\n",
      "          'soon': 1,\n",
      "          'realized': 1,\n",
      "          'turn': 1,\n",
      "          'events': 1,\n",
      "          'blessing': 1,\n",
      "          'disguise': 1,\n",
      "          'always': 1,\n",
      "          'sucker': 1,\n",
      "          'endings': 1,\n",
      "          'favorite': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'rarely': 1,\n",
      "          'dislike': 1,\n",
      "          'sports': 1,\n",
      "          'nhere': 1,\n",
      "          'since': 1,\n",
      "          'major': 1,\n",
      "          'plot': 1,\n",
      "          'films': 1,\n",
      "          'possibly': 1,\n",
      "          'bamboozled': 1,\n",
      "          'loving': 1,\n",
      "          'bad': 1,\n",
      "          'solely': 1,\n",
      "          'something': 1,\n",
      "          'fallen': 1,\n",
      "          'victim': 1,\n",
      "          'eliminated': 1,\n",
      "          'indeed': 1,\n",
      "          'viewing': 1,\n",
      "          'prove': 1,\n",
      "          'enlightening': 1,\n",
      "          'experiment': 1,\n",
      "          'nstripped': 1,\n",
      "          'element': 1,\n",
      "          'put': 1,\n",
      "          'task': 1,\n",
      "          'showing': 1,\n",
      "          'instead': 1,\n",
      "          'simply': 1,\n",
      "          'hiding': 1,\n",
      "          'behind': 1,\n",
      "          'shocking': 1,\n",
      "          'seeing': 1,\n",
      "          'true': 1,\n",
      "          'colors': 1,\n",
      "          'came': 1,\n",
      "          'despite': 1,\n",
      "          'many': 1,\n",
      "          'champions': 1,\n",
      "          'void': 1,\n",
      "          'real': 1,\n",
      "          'power': 1,\n",
      "          'nits': 1,\n",
      "          'neat': 1,\n",
      "          'concept': 1,\n",
      "          'justifies': 1,\n",
      "          'made': 1,\n",
      "          'featurelength': 1,\n",
      "          'nin': 1,\n",
      "          'relies': 1,\n",
      "          'strongly': 1,\n",
      "          'finale': 1,\n",
      "          'develops': 1,\n",
      "          'sort': 1,\n",
      "          'prelude': 1,\n",
      "          'supposedly': 1,\n",
      "          'earthshattering': 1,\n",
      "          'revelation': 1,\n",
      "          'yet': 1,\n",
      "          'final': 1,\n",
      "          'moments': 1,\n",
      "          'huge': 1,\n",
      "          'letdown': 1,\n",
      "          'makes': 1,\n",
      "          'nit': 1,\n",
      "          'stupefied': 1,\n",
      "          'heights': 1,\n",
      "          'ineptitude': 1,\n",
      "          'completely': 1,\n",
      "          'idiotic': 1,\n",
      "          'fundamental': 1,\n",
      "          'level': 1,\n",
      "          'wont': 1,\n",
      "          'go': 1,\n",
      "          'suffice': 1,\n",
      "          'far': 1,\n",
      "          'tell': 1,\n",
      "          'negates': 1,\n",
      "          'buys': 1,\n",
      "          'second': 1,\n",
      "          'must': 1,\n",
      "          'suffering': 1,\n",
      "          'acute': 1,\n",
      "          'attention': 1,\n",
      "          'deficit': 1,\n",
      "          'nnow': 1,\n",
      "          'fairness': 1,\n",
      "          'sure': 1,\n",
      "          'guessed': 1,\n",
      "          'however': 1,\n",
      "          'stupid': 1,\n",
      "          'revealed': 1,\n",
      "          'hand': 1,\n",
      "          'feel': 1,\n",
      "          'confident': 1,\n",
      "          'well': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'episodes': 1,\n",
      "          'mile': 1,\n",
      "          'moviegoers': 1,\n",
      "          'nation': 1,\n",
      "          'wide': 1,\n",
      "          'surprised': 1,\n",
      "          'still': 1,\n",
      "          'stumped': 1,\n",
      "          'nironically': 1,\n",
      "          'appreciate': 1,\n",
      "          'best': 1,\n",
      "          'attending': 1,\n",
      "          'little': 1,\n",
      "          'girls': 1,\n",
      "          'funeral': 1,\n",
      "          'viewer': 1,\n",
      "          'required': 1,\n",
      "          'aware': 1,\n",
      "          'psychological': 1,\n",
      "          'called': 1,\n",
      "          'munchausen': 1,\n",
      "          'syndrome': 1,\n",
      "          'proxy': 1,\n",
      "          'wouldnt': 1,\n",
      "          'known': 1,\n",
      "          'mental': 1,\n",
      "          'disease': 1,\n",
      "          'hadnt': 1,\n",
      "          'pure': 1,\n",
      "          'dumb': 1,\n",
      "          'luck': 1,\n",
      "          'caught': 1,\n",
      "          'dateline': 1,\n",
      "          'nbc': 1,\n",
      "          'week': 1,\n",
      "          'feature': 1,\n",
      "          'story': 1,\n",
      "          'ndespite': 1,\n",
      "          'blessed': 1,\n",
      "          'amazing': 1,\n",
      "          'cinematography': 1,\n",
      "          'brauva': 1,\n",
      "          'performance': 1,\n",
      "          'casting': 1,\n",
      "          'calls': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'chalkfull': 1,\n",
      "          'contradictions': 1,\n",
      "          'isnt': 1,\n",
      "          'plausible': 1,\n",
      "          'warrant': 1,\n",
      "          'slight': 1,\n",
      "          'recommendation': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'would': 4,\n",
      "          'de': 3,\n",
      "          'eyes': 3,\n",
      "          'palma': 3,\n",
      "          'script': 3,\n",
      "          'brian': 2,\n",
      "          'snake': 2,\n",
      "          'screams': 2,\n",
      "          'lines': 2,\n",
      "          'man': 2,\n",
      "          'bad': 2,\n",
      "          'lost': 2,\n",
      "          'nonly': 2,\n",
      "          'become': 2,\n",
      "          'scene': 2,\n",
      "          'plays': 2,\n",
      "          'rick': 2,\n",
      "          'cop': 2,\n",
      "          'takes': 2,\n",
      "          'fight': 2,\n",
      "          'made': 2,\n",
      "          'secretary': 2,\n",
      "          'flashbacks': 2,\n",
      "          'sometimes': 2,\n",
      "          'different': 2,\n",
      "          'violence': 2,\n",
      "          'palmas': 1,\n",
      "          'stars': 1,\n",
      "          'nicolas': 1,\n",
      "          'cages': 1,\n",
      "          'evil': 1,\n",
      "          'twin': 1,\n",
      "          'confusingly': 1,\n",
      "          'uses': 1,\n",
      "          'stage': 1,\n",
      "          'name': 1,\n",
      "          'talented': 1,\n",
      "          'brother': 1,\n",
      "          'nlike': 1,\n",
      "          'foreign': 1,\n",
      "          'tourist': 1,\n",
      "          'english': 1,\n",
      "          'ensure': 1,\n",
      "          'understood': 1,\n",
      "          'cage': 1,\n",
      "          'yells': 1,\n",
      "          'ferocity': 1,\n",
      "          'case': 1,\n",
      "          'caffeine': 1,\n",
      "          'overload': 1,\n",
      "          'nde': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'great': 1,\n",
      "          'untouchables': 1,\n",
      "          'crafted': 1,\n",
      "          'decade': 1,\n",
      "          'ago': 1,\n",
      "          'seems': 1,\n",
      "          'magic': 1,\n",
      "          'nin': 1,\n",
      "          'manages': 1,\n",
      "          'elicit': 1,\n",
      "          'worst': 1,\n",
      "          'performances': 1,\n",
      "          'possible': 1,\n",
      "          'skilled': 1,\n",
      "          'cast': 1,\n",
      "          'gary': 1,\n",
      "          'sinise': 1,\n",
      "          'rises': 1,\n",
      "          'slightly': 1,\n",
      "          'hackneyed': 1,\n",
      "          'material': 1,\n",
      "          'rest': 1,\n",
      "          'actors': 1,\n",
      "          'caricatures': 1,\n",
      "          'bythenumbers': 1,\n",
      "          'thriller': 1,\n",
      "          'nryuichi': 1,\n",
      "          'sakamotos': 1,\n",
      "          'atmospheric': 1,\n",
      "          'melodramatic': 1,\n",
      "          'music': 1,\n",
      "          'dominates': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'nheavy': 1,\n",
      "          'long': 1,\n",
      "          'violin': 1,\n",
      "          'notes': 1,\n",
      "          'rhythm': 1,\n",
      "          'punctuated': 1,\n",
      "          'thunder': 1,\n",
      "          'n': 1,\n",
      "          'worlds': 1,\n",
      "          'david': 1,\n",
      "          'koepp': 1,\n",
      "          'sets': 1,\n",
      "          'action': 1,\n",
      "          'hurricane': 1,\n",
      "          'attempt': 1,\n",
      "          'pump': 1,\n",
      "          'adrenaline': 1,\n",
      "          'level': 1,\n",
      "          'noise': 1,\n",
      "          'latter': 1,\n",
      "          'achieved': 1,\n",
      "          'ncage': 1,\n",
      "          'santoro': 1,\n",
      "          'corrupt': 1,\n",
      "          'atlantic': 1,\n",
      "          'city': 1,\n",
      "          'shakes': 1,\n",
      "          'criminals': 1,\n",
      "          'get': 1,\n",
      "          'betting': 1,\n",
      "          'money': 1,\n",
      "          'place': 1,\n",
      "          'single': 1,\n",
      "          'evening': 1,\n",
      "          'world': 1,\n",
      "          'championship': 1,\n",
      "          'held': 1,\n",
      "          'nwith': 1,\n",
      "          'flashy': 1,\n",
      "          'wardrobe': 1,\n",
      "          'gold': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'obnoxious': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'shut': 1,\n",
      "          'nspouting': 1,\n",
      "          'cliched': 1,\n",
      "          'ridiculous': 1,\n",
      "          'dialog': 1,\n",
      "          'sewer': 1,\n",
      "          'baby': 1,\n",
      "          'nactually': 1,\n",
      "          'line': 1,\n",
      "          'apropos': 1,\n",
      "          'whole': 1,\n",
      "          'nsinise': 1,\n",
      "          'kevin': 1,\n",
      "          'dunne': 1,\n",
      "          'naval': 1,\n",
      "          'officer': 1,\n",
      "          'charge': 1,\n",
      "          'security': 1,\n",
      "          'navy': 1,\n",
      "          'come': 1,\n",
      "          'watch': 1,\n",
      "          'nbut': 1,\n",
      "          'people': 1,\n",
      "          'seem': 1,\n",
      "          'thin': 1,\n",
      "          'makes': 1,\n",
      "          'easy': 1,\n",
      "          'guess': 1,\n",
      "          'plot': 1,\n",
      "          'told': 1,\n",
      "          'endless': 1,\n",
      "          'concerns': 1,\n",
      "          'assassination': 1,\n",
      "          'scheme': 1,\n",
      "          'set': 1,\n",
      "          'malevolent': 1,\n",
      "          'businessmen': 1,\n",
      "          'adjective': 1,\n",
      "          'course': 1,\n",
      "          'redundant': 1,\n",
      "          'hollywood': 1,\n",
      "          'thrillers': 1,\n",
      "          'repetitious': 1,\n",
      "          'shown': 1,\n",
      "          'perspective': 1,\n",
      "          'nalthough': 1,\n",
      "          'requires': 1,\n",
      "          'certain': 1,\n",
      "          'amount': 1,\n",
      "          'gratuitous': 1,\n",
      "          'one': 1,\n",
      "          'remarkably': 1,\n",
      "          'tame': 1,\n",
      "          'became': 1,\n",
      "          'famous': 1,\n",
      "          'carrie': 1,\n",
      "          'movies': 1,\n",
      "          'outline': 1,\n",
      "          'promise': 1,\n",
      "          'leaden': 1,\n",
      "          'seriously': 1,\n",
      "          'nat': 1,\n",
      "          'best': 1,\n",
      "          '1940sstyle': 1,\n",
      "          'b': 1,\n",
      "          'na': 1,\n",
      "          'little': 1,\n",
      "          'humor': 1,\n",
      "          'helped': 1,\n",
      "          'complete': 1,\n",
      "          'rewrite': 1,\n",
      "          'better': 1,\n",
      "          'nand': 1,\n",
      "          'although': 1,\n",
      "          'hate': 1,\n",
      "          'say': 1,\n",
      "          'director': 1,\n",
      "          'biggest': 1,\n",
      "          'improvement': 1,\n",
      "          'nsnake': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '39': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'acceptable': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'rimbaud': 10,\n",
      "          'poets': 7,\n",
      "          'two': 6,\n",
      "          'poetry': 6,\n",
      "          'verlaine': 6,\n",
      "          'nthe': 5,\n",
      "          'poet': 4,\n",
      "          'nhe': 4,\n",
      "          'relationship': 3,\n",
      "          'like': 3,\n",
      "          'looked': 3,\n",
      "          'rimbauds': 3,\n",
      "          'poems': 3,\n",
      "          'house': 3,\n",
      "          'wife': 3,\n",
      "          'becomes': 3,\n",
      "          'instead': 2,\n",
      "          'nbut': 2,\n",
      "          'ni': 2,\n",
      "          'one': 2,\n",
      "          'young': 2,\n",
      "          'especially': 2,\n",
      "          'bad': 2,\n",
      "          'character': 2,\n",
      "          'together': 2,\n",
      "          'verlaines': 2,\n",
      "          'home': 2,\n",
      "          'mathilde': 2,\n",
      "          'finds': 2,\n",
      "          'lives': 2,\n",
      "          'even': 2,\n",
      "          'nwhen': 2,\n",
      "          'another': 2,\n",
      "          'nverlaine': 2,\n",
      "          'father': 2,\n",
      "          'years': 2,\n",
      "          'sister': 2,\n",
      "          'brother': 2,\n",
      "          'didnt': 2,\n",
      "          'modern': 2,\n",
      "          'disappointing': 1,\n",
      "          'biography': 1,\n",
      "          'homosexual': 1,\n",
      "          'famous': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'french': 1,\n",
      "          'managed': 1,\n",
      "          'remove': 1,\n",
      "          'concentrated': 1,\n",
      "          'abrasive': 1,\n",
      "          'personalities': 1,\n",
      "          'result': 1,\n",
      "          'merely': 1,\n",
      "          'academic': 1,\n",
      "          'exercise': 1,\n",
      "          'leaving': 1,\n",
      "          'emotional': 1,\n",
      "          'vacuum': 1,\n",
      "          'couldnt': 1,\n",
      "          'build': 1,\n",
      "          'show': 1,\n",
      "          'non': 1,\n",
      "          'paper': 1,\n",
      "          'shouldnt': 1,\n",
      "          'terrible': 1,\n",
      "          'talented': 1,\n",
      "          'director': 1,\n",
      "          'agnieszka': 1,\n",
      "          'holland': 1,\n",
      "          'secret': 1,\n",
      "          'garden': 1,\n",
      "          'proven': 1,\n",
      "          'screenwriter': 1,\n",
      "          'christopher': 1,\n",
      "          'hampton': 1,\n",
      "          'dangerous': 1,\n",
      "          'liaisons': 1,\n",
      "          'capable': 1,\n",
      "          'cast': 1,\n",
      "          'done': 1,\n",
      "          'inept': 1,\n",
      "          'script': 1,\n",
      "          'unappealing': 1,\n",
      "          'way': 1,\n",
      "          'directed': 1,\n",
      "          'miscasting': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'found': 1,\n",
      "          'performance': 1,\n",
      "          'risible': 1,\n",
      "          'acting': 1,\n",
      "          'teenage': 1,\n",
      "          'brat': 1,\n",
      "          'genius': 1,\n",
      "          'spouting': 1,\n",
      "          'obsenities': 1,\n",
      "          'without': 1,\n",
      "          'giving': 1,\n",
      "          'hint': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          'behind': 1,\n",
      "          'facade': 1,\n",
      "          'david': 1,\n",
      "          'thewlis': 1,\n",
      "          'paul': 1,\n",
      "          'good': 1,\n",
      "          'despite': 1,\n",
      "          'turgid': 1,\n",
      "          'dialogue': 1,\n",
      "          'thrust': 1,\n",
      "          'upon': 1,\n",
      "          'thin': 1,\n",
      "          'forced': 1,\n",
      "          'mismatch': 1,\n",
      "          'nleonardos': 1,\n",
      "          'made': 1,\n",
      "          'look': 1,\n",
      "          'petulant': 1,\n",
      "          'crude': 1,\n",
      "          'yet': 1,\n",
      "          'know': 1,\n",
      "          'must': 1,\n",
      "          'something': 1,\n",
      "          'going': 1,\n",
      "          'awe': 1,\n",
      "          'inspiring': 1,\n",
      "          'opens': 1,\n",
      "          'postrevolutionary': 1,\n",
      "          'france': 1,\n",
      "          '1871': 1,\n",
      "          '16yearold': 1,\n",
      "          'sent': 1,\n",
      "          'established': 1,\n",
      "          'symbolist': 1,\n",
      "          'letter': 1,\n",
      "          'accepts': 1,\n",
      "          'praises': 1,\n",
      "          'invitation': 1,\n",
      "          'guest': 1,\n",
      "          'splendid': 1,\n",
      "          'paris': 1,\n",
      "          'leaves': 1,\n",
      "          'sullen': 1,\n",
      "          'farm': 1,\n",
      "          'rural': 1,\n",
      "          'charleville': 1,\n",
      "          'nonce': 1,\n",
      "          'disappointed': 1,\n",
      "          'bourgeoisie': 1,\n",
      "          'household': 1,\n",
      "          'immediate': 1,\n",
      "          'conflict': 1,\n",
      "          'busty': 1,\n",
      "          '18yearold': 1,\n",
      "          'romane': 1,\n",
      "          'regret': 1,\n",
      "          'drunken': 1,\n",
      "          'loves': 1,\n",
      "          'rich': 1,\n",
      "          'body': 1,\n",
      "          'familys': 1,\n",
      "          'money': 1,\n",
      "          'though': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'common': 1,\n",
      "          'states': 1,\n",
      "          'learn': 1,\n",
      "          'replies': 1,\n",
      "          'haughty': 1,\n",
      "          'tone': 1,\n",
      "          'theyre': 1,\n",
      "          'continue': 1,\n",
      "          'treat': 1,\n",
      "          'older': 1,\n",
      "          'dirt': 1,\n",
      "          'rest': 1,\n",
      "          'proves': 1,\n",
      "          'weakwilled': 1,\n",
      "          'beating': 1,\n",
      "          'regularly': 1,\n",
      "          'plays': 1,\n",
      "          'despicable': 1,\n",
      "          'mathildes': 1,\n",
      "          'kicks': 1,\n",
      "          'rooming': 1,\n",
      "          'become': 1,\n",
      "          'lovers': 1,\n",
      "          'nits': 1,\n",
      "          'real': 1,\n",
      "          'downer': 1,\n",
      "          'watch': 1,\n",
      "          'story': 1,\n",
      "          'unfold': 1,\n",
      "          'series': 1,\n",
      "          'obnoxious': 1,\n",
      "          'behavior': 1,\n",
      "          'patterns': 1,\n",
      "          'part': 1,\n",
      "          'leads': 1,\n",
      "          'traveling': 1,\n",
      "          'asking': 1,\n",
      "          'divorce': 1,\n",
      "          'nin': 1,\n",
      "          'brussels': 1,\n",
      "          'gets': 1,\n",
      "          'arrested': 1,\n",
      "          'sodomy': 1,\n",
      "          'spends': 1,\n",
      "          'jail': 1,\n",
      "          'nwhile': 1,\n",
      "          'angered': 1,\n",
      "          'literary': 1,\n",
      "          'world': 1,\n",
      "          'never': 1,\n",
      "          'writes': 1,\n",
      "          'poem': 1,\n",
      "          '19': 1,\n",
      "          'goes': 1,\n",
      "          'north': 1,\n",
      "          'africa': 1,\n",
      "          'adventurer': 1,\n",
      "          'gunrunner': 1,\n",
      "          'ten': 1,\n",
      "          'comes': 1,\n",
      "          'tumor': 1,\n",
      "          'knee': 1,\n",
      "          'dies': 1,\n",
      "          'changed': 1,\n",
      "          'man': 1,\n",
      "          'age': 1,\n",
      "          '37': 1,\n",
      "          'hopeless': 1,\n",
      "          'picture': 1,\n",
      "          'covers': 1,\n",
      "          'detail': 1,\n",
      "          'satisfying': 1,\n",
      "          'ends': 1,\n",
      "          'whimper': 1,\n",
      "          'talking': 1,\n",
      "          'still': 1,\n",
      "          'possesses': 1,\n",
      "          'wants': 1,\n",
      "          'destroyed': 1,\n",
      "          'embarrass': 1,\n",
      "          'family': 1,\n",
      "          'ruin': 1,\n",
      "          'name': 1,\n",
      "          'deceased': 1,\n",
      "          'published': 1,\n",
      "          'nthis': 1,\n",
      "          'annoying': 1,\n",
      "          'filled': 1,\n",
      "          'visionary': 1,\n",
      "          'tenseness': 1,\n",
      "          'approached': 1,\n",
      "          'manages': 1,\n",
      "          'skim': 1,\n",
      "          'surface': 1,\n",
      "          'completely': 1,\n",
      "          'ignores': 1,\n",
      "          'value': 1,\n",
      "          'idea': 1,\n",
      "          'filmmaker': 1,\n",
      "          'trying': 1,\n",
      "          'say': 1,\n",
      "          'whatever': 1,\n",
      "          'work': 1,\n",
      "          'nit': 1,\n",
      "          'certainly': 1,\n",
      "          'bring': 1,\n",
      "          'light': 1,\n",
      "          'understanding': 1,\n",
      "          'meant': 1,\n",
      "          'earned': 1,\n",
      "          'reputation': 1,\n",
      "          'socalled': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 7,\n",
      "          'story': 7,\n",
      "          'shakespeare': 5,\n",
      "          'nit': 5,\n",
      "          'nand': 4,\n",
      "          'romeo': 4,\n",
      "          'love': 4,\n",
      "          'completely': 4,\n",
      "          'brothers': 3,\n",
      "          'production': 3,\n",
      "          'rap': 3,\n",
      "          'shakespeares': 3,\n",
      "          'two': 3,\n",
      "          'mafia': 3,\n",
      "          'nbut': 3,\n",
      "          'long': 3,\n",
      "          'must': 3,\n",
      "          'action': 3,\n",
      "          'time': 2,\n",
      "          'nin': 2,\n",
      "          'hard': 2,\n",
      "          'based': 2,\n",
      "          'magic': 2,\n",
      "          'latest': 2,\n",
      "          'producers': 2,\n",
      "          'picture': 2,\n",
      "          'juliet': 2,\n",
      "          'title': 2,\n",
      "          'chinese': 2,\n",
      "          'found': 2,\n",
      "          'han': 2,\n",
      "          'call': 2,\n",
      "          'great': 2,\n",
      "          'audience': 2,\n",
      "          'nthis': 2,\n",
      "          'doesnt': 2,\n",
      "          'ni': 2,\n",
      "          'die': 2,\n",
      "          'bartkowiak': 2,\n",
      "          'create': 2,\n",
      "          'incredible': 2,\n",
      "          'character': 2,\n",
      "          'therefore': 2,\n",
      "          'li': 2,\n",
      "          'aalyah': 2,\n",
      "          'one': 2,\n",
      "          'voice': 2,\n",
      "          'achievement': 2,\n",
      "          'actors': 2,\n",
      "          'nothing': 2,\n",
      "          'performances': 2,\n",
      "          'scenes': 2,\n",
      "          'simply': 2,\n",
      "          'embarrassing': 2,\n",
      "          'enough': 2,\n",
      "          'much': 2,\n",
      "          'interesting': 2,\n",
      "          'another': 2,\n",
      "          'remember': 2,\n",
      "          'nfor': 2,\n",
      "          'modern': 1,\n",
      "          'world': 1,\n",
      "          'cool': 1,\n",
      "          'rule': 1,\n",
      "          'imagine': 1,\n",
      "          'becoming': 1,\n",
      "          'man': 1,\n",
      "          'yet': 1,\n",
      "          'everlasting': 1,\n",
      "          'warner': 1,\n",
      "          'kicking': 1,\n",
      "          'ass': 1,\n",
      "          'beat': 1,\n",
      "          'intelligence': 1,\n",
      "          'slowly': 1,\n",
      "          'fades': 1,\n",
      "          'away': 1,\n",
      "          'nthough': 1,\n",
      "          'matrix': 1,\n",
      "          'vaguely': 1,\n",
      "          'william': 1,\n",
      "          'sequence': 1,\n",
      "          'frightening': 1,\n",
      "          'song': 1,\n",
      "          'black': 1,\n",
      "          'limo': 1,\n",
      "          'making': 1,\n",
      "          'way': 1,\n",
      "          'dark': 1,\n",
      "          'streets': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'associate': 1,\n",
      "          'poetry': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'silent': 1,\n",
      "          'war': 1,\n",
      "          'major': 1,\n",
      "          'families': 1,\n",
      "          'city': 1,\n",
      "          'afro': 1,\n",
      "          'americans': 1,\n",
      "          'youngest': 1,\n",
      "          'son': 1,\n",
      "          'chieftain': 1,\n",
      "          'murdered': 1,\n",
      "          'afroamericans': 1,\n",
      "          'immediately': 1,\n",
      "          'suspected': 1,\n",
      "          'peace': 1,\n",
      "          'treaty': 1,\n",
      "          'signed': 1,\n",
      "          'godfathers': 1,\n",
      "          'point': 1,\n",
      "          'finds': 1,\n",
      "          'death': 1,\n",
      "          'nescaping': 1,\n",
      "          'prison': 1,\n",
      "          'china': 1,\n",
      "          'returns': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'avenge': 1,\n",
      "          'fate': 1,\n",
      "          'restore': 1,\n",
      "          'justice': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'kicks': 1,\n",
      "          'falls': 1,\n",
      "          'mysterious': 1,\n",
      "          'beauty': 1,\n",
      "          'problem': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'daughter': 1,\n",
      "          'enemy': 1,\n",
      "          'ntheres': 1,\n",
      "          'weak': 1,\n",
      "          'echo': 1,\n",
      "          'talent': 1,\n",
      "          'disappointing': 1,\n",
      "          'problems': 1,\n",
      "          'besides': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'dont': 1,\n",
      "          'deformation': 1,\n",
      "          'masterpiece': 1,\n",
      "          'nwe': 1,\n",
      "          'modernization': 1,\n",
      "          'seems': 1,\n",
      "          'fear': 1,\n",
      "          'respond': 1,\n",
      "          'lyrics': 1,\n",
      "          'without': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'gun': 1,\n",
      "          'fights': 1,\n",
      "          'lack': 1,\n",
      "          'respect': 1,\n",
      "          'find': 1,\n",
      "          'disturbing': 1,\n",
      "          'nkenneth': 1,\n",
      "          'brannagh': 1,\n",
      "          'already': 1,\n",
      "          'proven': 1,\n",
      "          'need': 1,\n",
      "          'updated': 1,\n",
      "          'tales': 1,\n",
      "          'grounded': 1,\n",
      "          'basics': 1,\n",
      "          'life': 1,\n",
      "          'human': 1,\n",
      "          'nature': 1,\n",
      "          'hate': 1,\n",
      "          'honesty': 1,\n",
      "          'corruption': 1,\n",
      "          'exist': 1,\n",
      "          'everyone': 1,\n",
      "          'understand': 1,\n",
      "          'embrace': 1,\n",
      "          'admit': 1,\n",
      "          'rome': 1,\n",
      "          'confusing': 1,\n",
      "          'forgive': 1,\n",
      "          'andrzej': 1,\n",
      "          'since': 1,\n",
      "          'first': 1,\n",
      "          'attempt': 1,\n",
      "          'directing': 1,\n",
      "          'nhe': 1,\n",
      "          'manages': 1,\n",
      "          'atmosphere': 1,\n",
      "          'directs': 1,\n",
      "          'firm': 1,\n",
      "          'precision': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'forgot': 1,\n",
      "          'developments': 1,\n",
      "          'nhis': 1,\n",
      "          'visually': 1,\n",
      "          'impressive': 1,\n",
      "          'intellectually': 1,\n",
      "          'hollow': 1,\n",
      "          'jet': 1,\n",
      "          'trish': 1,\n",
      "          'intrigues': 1,\n",
      "          'undeveloped': 1,\n",
      "          'simplified': 1,\n",
      "          'njet': 1,\n",
      "          'amazing': 1,\n",
      "          'fighters': 1,\n",
      "          'ever': 1,\n",
      "          'hit': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'magical': 1,\n",
      "          'ntheir': 1,\n",
      "          'save': 1,\n",
      "          'braindead': 1,\n",
      "          'act': 1,\n",
      "          'nthey': 1,\n",
      "          'celebrities': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'including': 1,\n",
      "          'isaiah': 1,\n",
      "          'washington': 1,\n",
      "          'russell': 1,\n",
      "          'wong': 1,\n",
      "          'henry': 1,\n",
      "          'dmx': 1,\n",
      "          'give': 1,\n",
      "          'standard': 1,\n",
      "          'mediocre': 1,\n",
      "          'ndelroy': 1,\n",
      "          'lindo': 1,\n",
      "          'projects': 1,\n",
      "          'coherent': 1,\n",
      "          'image': 1,\n",
      "          'reality': 1,\n",
      "          'theres': 1,\n",
      "          'acting': 1,\n",
      "          'worry': 1,\n",
      "          'neven': 1,\n",
      "          'lis': 1,\n",
      "          'skills': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'though': 1,\n",
      "          'technically': 1,\n",
      "          'excellent': 1,\n",
      "          'updates': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'short': 1,\n",
      "          'intelligent': 1,\n",
      "          'thriller': 1,\n",
      "          'sensual': 1,\n",
      "          'serious': 1,\n",
      "          'fun': 1,\n",
      "          'certain': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'unnecessary': 1,\n",
      "          'parallel': 1,\n",
      "          'stuck': 1,\n",
      "          'sure': 1,\n",
      "          'end': 1,\n",
      "          'nthere': 1,\n",
      "          'worthy': 1,\n",
      "          'notice': 1,\n",
      "          'surprises': 1,\n",
      "          'nso': 1,\n",
      "          'good': 1,\n",
      "          'thing': 1,\n",
      "          'technical': 1,\n",
      "          'boast': 1,\n",
      "          'sound': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'editing': 1,\n",
      "          'solid': 1,\n",
      "          'cinematography': 1,\n",
      "          'well': 1,\n",
      "          'coordinated': 1,\n",
      "          'sequences': 1,\n",
      "          'music': 1,\n",
      "          'factor': 1,\n",
      "          'prevents': 1,\n",
      "          'leaving': 1,\n",
      "          'theatre': 1,\n",
      "          'mostly': 1,\n",
      "          'provided': 1,\n",
      "          'aalyahs': 1,\n",
      "          'enchanting': 1,\n",
      "          'several': 1,\n",
      "          'carefully': 1,\n",
      "          'inserted': 1,\n",
      "          'songs': 1,\n",
      "          'various': 1,\n",
      "          'artists': 1,\n",
      "          'kind': 1,\n",
      "          'ghetto': 1,\n",
      "          'feel': 1,\n",
      "          'think': 1,\n",
      "          'back': 1,\n",
      "          'nas': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'summer': 1,\n",
      "          'movie': 1,\n",
      "          'moments': 1,\n",
      "          'associated': 1,\n",
      "          'massive': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'get': 1,\n",
      "          'attention': 1,\n",
      "          'artistic': 1,\n",
      "          'qualities': 1,\n",
      "          'someone': 1,\n",
      "          'never': 1,\n",
      "          'read': 1,\n",
      "          'popcorn': 1,\n",
      "          'us': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'brain': 1,\n",
      "          'cells': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'first': 5,\n",
      "          'nthe': 5,\n",
      "          'much': 4,\n",
      "          'ni': 4,\n",
      "          'one': 4,\n",
      "          'bad': 4,\n",
      "          'though': 4,\n",
      "          'action': 4,\n",
      "          'cant': 3,\n",
      "          'supernova': 3,\n",
      "          'spader': 3,\n",
      "          'bassett': 3,\n",
      "          'around': 3,\n",
      "          'sure': 3,\n",
      "          'isnt': 2,\n",
      "          'none': 2,\n",
      "          'elaborate': 2,\n",
      "          'studio': 2,\n",
      "          'accident': 2,\n",
      "          'ship': 2,\n",
      "          'picks': 2,\n",
      "          'call': 2,\n",
      "          'crew': 2,\n",
      "          'members': 2,\n",
      "          'angela': 2,\n",
      "          'facinelli': 2,\n",
      "          'intergalactic': 2,\n",
      "          'goo': 2,\n",
      "          'running': 2,\n",
      "          'like': 2,\n",
      "          'even': 2,\n",
      "          'remember': 2,\n",
      "          'time': 2,\n",
      "          'dropped': 2,\n",
      "          'everything': 2,\n",
      "          'effects': 2,\n",
      "          'good': 2,\n",
      "          'hardly': 2,\n",
      "          'performances': 2,\n",
      "          'scenes': 2,\n",
      "          'since': 2,\n",
      "          'pretty': 2,\n",
      "          'nand': 2,\n",
      "          'ultimate': 1,\n",
      "          'sign': 1,\n",
      "          'movies': 1,\n",
      "          'cinematic': 1,\n",
      "          'ineptitude': 1,\n",
      "          'think': 1,\n",
      "          'say': 1,\n",
      "          'sucks': 1,\n",
      "          'official': 1,\n",
      "          'year': 1,\n",
      "          '2000': 1,\n",
      "          'releases': 1,\n",
      "          'seem': 1,\n",
      "          'get': 1,\n",
      "          'past': 1,\n",
      "          'oneword': 1,\n",
      "          'adjectives': 1,\n",
      "          'although': 1,\n",
      "          'boring': 1,\n",
      "          'stupid': 1,\n",
      "          'absurd': 1,\n",
      "          'doesnt': 1,\n",
      "          'amount': 1,\n",
      "          'review': 1,\n",
      "          'na': 1,\n",
      "          'shame': 1,\n",
      "          'would': 1,\n",
      "          'able': 1,\n",
      "          'save': 1,\n",
      "          'chore': 1,\n",
      "          'desperately': 1,\n",
      "          'trying': 1,\n",
      "          'nbut': 1,\n",
      "          'cest': 1,\n",
      "          'la': 1,\n",
      "          'vie': 1,\n",
      "          'nhere': 1,\n",
      "          'goes': 1,\n",
      "          'nothing': 1,\n",
      "          'nill': 1,\n",
      "          'keep': 1,\n",
      "          'short': 1,\n",
      "          'suppose': 1,\n",
      "          'omen': 1,\n",
      "          'came': 1,\n",
      "          'director': 1,\n",
      "          'walter': 1,\n",
      "          'hill': 1,\n",
      "          '48': 1,\n",
      "          'hours': 1,\n",
      "          'removed': 1,\n",
      "          'name': 1,\n",
      "          'requesting': 1,\n",
      "          'replaced': 1,\n",
      "          'pseudonym': 1,\n",
      "          'thomas': 1,\n",
      "          'lee': 1,\n",
      "          'films': 1,\n",
      "          'fate': 1,\n",
      "          'sealed': 1,\n",
      "          'many': 1,\n",
      "          'minds': 1,\n",
      "          'struggling': 1,\n",
      "          'mgm': 1,\n",
      "          'declined': 1,\n",
      "          'screen': 1,\n",
      "          'press': 1,\n",
      "          'event': 1,\n",
      "          'usually': 1,\n",
      "          'signifying': 1,\n",
      "          'studios': 1,\n",
      "          'lack': 1,\n",
      "          'confidence': 1,\n",
      "          'particular': 1,\n",
      "          'nhills': 1,\n",
      "          'mgms': 1,\n",
      "          'actions': 1,\n",
      "          'prudent': 1,\n",
      "          'nwhen': 1,\n",
      "          'captain': 1,\n",
      "          'medical': 1,\n",
      "          'space': 1,\n",
      "          'vessel': 1,\n",
      "          'nightingale': 1,\n",
      "          'dies': 1,\n",
      "          'tragic': 1,\n",
      "          'hyperjump': 1,\n",
      "          'reformed': 1,\n",
      "          'drug': 1,\n",
      "          'addict': 1,\n",
      "          'also': 1,\n",
      "          'officer': 1,\n",
      "          'reason': 1,\n",
      "          'james': 1,\n",
      "          'forced': 1,\n",
      "          'take': 1,\n",
      "          'command': 1,\n",
      "          'distress': 1,\n",
      "          'nearby': 1,\n",
      "          'planet': 1,\n",
      "          'arrival': 1,\n",
      "          'survivor': 1,\n",
      "          'apparent': 1,\n",
      "          'abandoned': 1,\n",
      "          'mining': 1,\n",
      "          'colony': 1,\n",
      "          'knows': 1,\n",
      "          'passenger': 1,\n",
      "          'played': 1,\n",
      "          'peter': 1,\n",
      "          'feelings': 1,\n",
      "          'know': 1,\n",
      "          'means': 1,\n",
      "          'nthis': 1,\n",
      "          'hitchhiker': 1,\n",
      "          'carrying': 1,\n",
      "          'mysterious': 1,\n",
      "          'cargo': 1,\n",
      "          'jellylike': 1,\n",
      "          'substance': 1,\n",
      "          'purpose': 1,\n",
      "          'unknown': 1,\n",
      "          'seems': 1,\n",
      "          'bring': 1,\n",
      "          'form': 1,\n",
      "          'pleasure': 1,\n",
      "          'whoever': 1,\n",
      "          'touches': 1,\n",
      "          'nanother': 1,\n",
      "          'experiences': 1,\n",
      "          'hand': 1,\n",
      "          'spending': 1,\n",
      "          'minutes': 1,\n",
      "          'partially': 1,\n",
      "          'inside': 1,\n",
      "          'glob': 1,\n",
      "          'impressive': 1,\n",
      "          'handstand': 1,\n",
      "          'pushups': 1,\n",
      "          'nevidently': 1,\n",
      "          'touching': 1,\n",
      "          'enigmatic': 1,\n",
      "          'eggshaped': 1,\n",
      "          'thingie': 1,\n",
      "          'makes': 1,\n",
      "          'younger': 1,\n",
      "          'stronger': 1,\n",
      "          'nhow': 1,\n",
      "          'nwhy': 1,\n",
      "          'never': 1,\n",
      "          'bothers': 1,\n",
      "          'explain': 1,\n",
      "          'nsoon': 1,\n",
      "          'enough': 1,\n",
      "          'mad': 1,\n",
      "          'chased': 1,\n",
      "          'allofasuddensuperhuman': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'dont': 1,\n",
      "          'exactly': 1,\n",
      "          'didnt': 1,\n",
      "          'care': 1,\n",
      "          'nsupernovas': 1,\n",
      "          'plot': 1,\n",
      "          'suggested': 1,\n",
      "          'less': 1,\n",
      "          'interesting': 1,\n",
      "          'ideas': 1,\n",
      "          'ball': 1,\n",
      "          'bomb': 1,\n",
      "          'chance': 1,\n",
      "          'develop': 1,\n",
      "          'anything': 1,\n",
      "          'truly': 1,\n",
      "          'intriguing': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'actors': 1,\n",
      "          'fun': 1,\n",
      "          'looks': 1,\n",
      "          'set': 1,\n",
      "          'nwell': 1,\n",
      "          'theres': 1,\n",
      "          'special': 1,\n",
      "          'days': 1,\n",
      "          'im': 1,\n",
      "          'whether': 1,\n",
      "          'thats': 1,\n",
      "          'remarkable': 1,\n",
      "          'accomplishment': 1,\n",
      "          'worth': 1,\n",
      "          'talking': 1,\n",
      "          'nim': 1,\n",
      "          'whats': 1,\n",
      "          'giving': 1,\n",
      "          'people': 1,\n",
      "          'finger': 1,\n",
      "          'njames': 1,\n",
      "          'actor': 1,\n",
      "          'proves': 1,\n",
      "          'blandest': 1,\n",
      "          'stars': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'mostly': 1,\n",
      "          'given': 1,\n",
      "          'character': 1,\n",
      "          'personality': 1,\n",
      "          'bland': 1,\n",
      "          'theyre': 1,\n",
      "          'rehashes': 1,\n",
      "          'elements': 1,\n",
      "          'werent': 1,\n",
      "          'particularly': 1,\n",
      "          'entertaining': 1,\n",
      "          'dead': 1,\n",
      "          'water': 1,\n",
      "          'life': 1,\n",
      "          'figure': 1,\n",
      "          'called': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'idle': 6,\n",
      "          'hands': 6,\n",
      "          'nthe': 6,\n",
      "          'movie': 5,\n",
      "          'time': 3,\n",
      "          'way': 2,\n",
      "          'would': 2,\n",
      "          'light': 2,\n",
      "          'release': 2,\n",
      "          'teenagers': 2,\n",
      "          'hand': 2,\n",
      "          'goes': 2,\n",
      "          'friends': 2,\n",
      "          'far': 2,\n",
      "          'death': 2,\n",
      "          'n': 2,\n",
      "          'recent': 2,\n",
      "          'events': 2,\n",
      "          'real': 2,\n",
      "          'life': 2,\n",
      "          'nand': 2,\n",
      "          'young': 2,\n",
      "          'people': 2,\n",
      "          'world': 2,\n",
      "          'us': 2,\n",
      "          'right': 2,\n",
      "          'distasteful': 1,\n",
      "          'crass': 1,\n",
      "          'derivative': 1,\n",
      "          'nif': 1,\n",
      "          'original': 1,\n",
      "          'thought': 1,\n",
      "          'found': 1,\n",
      "          'horrorcomedy': 1,\n",
      "          'die': 1,\n",
      "          'loneliness': 1,\n",
      "          'nplus': 1,\n",
      "          'question': 1,\n",
      "          'judgment': 1,\n",
      "          'sensitivity': 1,\n",
      "          'studio': 1,\n",
      "          'executives': 1,\n",
      "          'green': 1,\n",
      "          'dealing': 1,\n",
      "          'slaughter': 1,\n",
      "          'innocent': 1,\n",
      "          'week': 1,\n",
      "          'tragedy': 1,\n",
      "          'littleton': 1,\n",
      "          'colo': 1,\n",
      "          'insulting': 1,\n",
      "          'horror': 1,\n",
      "          'film': 1,\n",
      "          'fans': 1,\n",
      "          'plot': 1,\n",
      "          'little': 1,\n",
      "          'deals': 1,\n",
      "          'anton': 1,\n",
      "          'devon': 1,\n",
      "          'sawa': 1,\n",
      "          'highschool': 1,\n",
      "          'slacker': 1,\n",
      "          'whos': 1,\n",
      "          'murderous': 1,\n",
      "          'rampage': 1,\n",
      "          'becoming': 1,\n",
      "          'possessed': 1,\n",
      "          'nalong': 1,\n",
      "          'kills': 1,\n",
      "          'antons': 1,\n",
      "          'parents': 1,\n",
      "          'two': 1,\n",
      "          'best': 1,\n",
      "          'also': 1,\n",
      "          'slackers': 1,\n",
      "          'lazy': 1,\n",
      "          'return': 1,\n",
      "          'dead': 1,\n",
      "          'walk': 1,\n",
      "          'nthat': 1,\n",
      "          'level': 1,\n",
      "          'thiss': 1,\n",
      "          'atrocitys': 1,\n",
      "          'humor': 1,\n",
      "          'treats': 1,\n",
      "          'joke': 1,\n",
      "          'gruesome': 1,\n",
      "          'morbid': 1,\n",
      "          'performances': 1,\n",
      "          'stereotypical': 1,\n",
      "          'cartoonish': 1,\n",
      "          'ni': 1,\n",
      "          'realize': 1,\n",
      "          'supposed': 1,\n",
      "          'pass': 1,\n",
      "          'comedy': 1,\n",
      "          'surpassed': 1,\n",
      "          'screen': 1,\n",
      "          'nit': 1,\n",
      "          'fault': 1,\n",
      "          'filmmakers': 1,\n",
      "          'overtaken': 1,\n",
      "          'reel': 1,\n",
      "          'presume': 1,\n",
      "          'writers': 1,\n",
      "          'terri': 1,\n",
      "          'hughes': 1,\n",
      "          'ron': 1,\n",
      "          'milbauer': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'statement': 1,\n",
      "          'todays': 1,\n",
      "          'values': 1,\n",
      "          'satiric': 1,\n",
      "          'vein': 1,\n",
      "          'nhowever': 1,\n",
      "          'hard': 1,\n",
      "          'laugh': 1,\n",
      "          'days': 1,\n",
      "          'especially': 1,\n",
      "          'ones': 1,\n",
      "          'involving': 1,\n",
      "          'nwith': 1,\n",
      "          'horrors': 1,\n",
      "          'put': 1,\n",
      "          'television': 1,\n",
      "          'stale': 1,\n",
      "          'pastry': 1,\n",
      "          'held': 1,\n",
      "          'weeks': 1,\n",
      "          'months': 1,\n",
      "          'give': 1,\n",
      "          'catch': 1,\n",
      "          'collective': 1,\n",
      "          'breaths': 1,\n",
      "          'bad': 1,\n",
      "          'matter': 1,\n",
      "          'circumstances': 1,\n",
      "          'outside': 1,\n",
      "          'nbut': 1,\n",
      "          'context': 1,\n",
      "          'heightens': 1,\n",
      "          'shortcomings': 1,\n",
      "          'type': 1,\n",
      "          'may': 1,\n",
      "          'never': 1,\n",
      "          'nthis': 1,\n",
      "          'shoud': 1,\n",
      "          'consigned': 1,\n",
      "          'trash': 1,\n",
      "          'bin': 1,\n",
      "          'cinema': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bye': 14,\n",
      "          'love': 8,\n",
      "          'movie': 5,\n",
      "          'three': 5,\n",
      "          'nbye': 4,\n",
      "          'one': 4,\n",
      "          'weekend': 3,\n",
      "          'fathers': 3,\n",
      "          'children': 3,\n",
      "          'date': 3,\n",
      "          'time': 3,\n",
      "          'little': 3,\n",
      "          'relationships': 3,\n",
      "          'custody': 2,\n",
      "          'breakups': 2,\n",
      "          'cant': 2,\n",
      "          'still': 2,\n",
      "          'funny': 2,\n",
      "          'main': 2,\n",
      "          'instead': 2,\n",
      "          'get': 2,\n",
      "          'modine': 2,\n",
      "          'father': 2,\n",
      "          'quaid': 2,\n",
      "          'go': 2,\n",
      "          'reiser': 2,\n",
      "          'exwife': 2,\n",
      "          'emma': 2,\n",
      "          'janeane': 2,\n",
      "          'garofolo': 2,\n",
      "          'quality': 2,\n",
      "          'best': 2,\n",
      "          'without': 2,\n",
      "          'subplot': 2,\n",
      "          'character': 2,\n",
      "          'pretty': 2,\n",
      "          'isnt': 2,\n",
      "          'enough': 2,\n",
      "          'kids': 2,\n",
      "          'perhaps': 2,\n",
      "          'neven': 2,\n",
      "          'flanders': 2,\n",
      "          'mcdonalds': 2,\n",
      "          'nit': 2,\n",
      "          'humor': 2,\n",
      "          'parenthood': 2,\n",
      "          'genuinely': 2,\n",
      "          'divorce': 1,\n",
      "          '1995': 1,\n",
      "          'seems': 1,\n",
      "          'timely': 1,\n",
      "          'mood': 1,\n",
      "          'rings': 1,\n",
      "          'nfamily': 1,\n",
      "          'familiar': 1,\n",
      "          'part': 1,\n",
      "          'american': 1,\n",
      "          'landscape': 1,\n",
      "          'nearly': 1,\n",
      "          'thirty': 1,\n",
      "          'years': 1,\n",
      "          'countless': 1,\n",
      "          'dramas': 1,\n",
      "          'told': 1,\n",
      "          'stories': 1,\n",
      "          'acrimonious': 1,\n",
      "          'court': 1,\n",
      "          'battles': 1,\n",
      "          'handwringing': 1,\n",
      "          'detail': 1,\n",
      "          'nstill': 1,\n",
      "          'recall': 1,\n",
      "          'comedy': 1,\n",
      "          'subject': 1,\n",
      "          'nand': 1,\n",
      "          'rarely': 1,\n",
      "          'often': 1,\n",
      "          'weak': 1,\n",
      "          'melodramatic': 1,\n",
      "          'retread': 1,\n",
      "          'common': 1,\n",
      "          'tvmovie': 1,\n",
      "          'fare': 1,\n",
      "          'nonly': 1,\n",
      "          'moments': 1,\n",
      "          'nothing': 1,\n",
      "          'films': 1,\n",
      "          'premise': 1,\n",
      "          'offer': 1,\n",
      "          'big': 1,\n",
      "          'laughs': 1,\n",
      "          'cliched': 1,\n",
      "          'emotion': 1,\n",
      "          'follows': 1,\n",
      "          'lives': 1,\n",
      "          'divorced': 1,\n",
      "          'ndave': 1,\n",
      "          'matthew': 1,\n",
      "          'two': 1,\n",
      "          'inveterate': 1,\n",
      "          'womanizer': 1,\n",
      "          'difficulty': 1,\n",
      "          'staying': 1,\n",
      "          'faithful': 1,\n",
      "          'latest': 1,\n",
      "          'girlfriend': 1,\n",
      "          'vic': 1,\n",
      "          'randy': 1,\n",
      "          'foulhumored': 1,\n",
      "          'rare': 1,\n",
      "          'donny': 1,\n",
      "          'paul': 1,\n",
      "          'pines': 1,\n",
      "          'trouble': 1,\n",
      "          'relating': 1,\n",
      "          'teenage': 1,\n",
      "          'daughter': 1,\n",
      "          'eliza': 1,\n",
      "          'dushku': 1,\n",
      "          'nover': 1,\n",
      "          'course': 1,\n",
      "          'men': 1,\n",
      "          'face': 1,\n",
      "          'various': 1,\n",
      "          'crises': 1,\n",
      "          'including': 1,\n",
      "          'vics': 1,\n",
      "          'blind': 1,\n",
      "          'hell': 1,\n",
      "          'donnys': 1,\n",
      "          'growing': 1,\n",
      "          'estrangement': 1,\n",
      "          'nthe': 1,\n",
      "          'lead': 1,\n",
      "          'actors': 1,\n",
      "          'form': 1,\n",
      "          'rather': 1,\n",
      "          'unlikely': 1,\n",
      "          'combo': 1,\n",
      "          'performances': 1,\n",
      "          'widely': 1,\n",
      "          'varying': 1,\n",
      "          'nrandy': 1,\n",
      "          'bitter': 1,\n",
      "          'irritating': 1,\n",
      "          'gleefully': 1,\n",
      "          'spiteful': 1,\n",
      "          'frightening': 1,\n",
      "          'nhis': 1,\n",
      "          'runins': 1,\n",
      "          'lindsey': 1,\n",
      "          'crouse': 1,\n",
      "          'bit': 1,\n",
      "          'overplayed': 1,\n",
      "          'though': 1,\n",
      "          'confrontation': 1,\n",
      "          'pompous': 1,\n",
      "          'radio': 1,\n",
      "          'psychologist': 1,\n",
      "          'rob': 1,\n",
      "          'reiner': 1,\n",
      "          'gimmicky': 1,\n",
      "          'implausible': 1,\n",
      "          'nhe': 1,\n",
      "          'loves': 1,\n",
      "          'hilarious': 1,\n",
      "          'dinner': 1,\n",
      "          'gloriously': 1,\n",
      "          'demented': 1,\n",
      "          'great': 1,\n",
      "          'slow': 1,\n",
      "          'burn': 1,\n",
      "          'npaul': 1,\n",
      "          'really': 1,\n",
      "          'slightly': 1,\n",
      "          'befuddled': 1,\n",
      "          'uptight': 1,\n",
      "          'nice': 1,\n",
      "          'guy': 1,\n",
      "          'mad': 1,\n",
      "          'persona': 1,\n",
      "          'well': 1,\n",
      "          'nas': 1,\n",
      "          'personality': 1,\n",
      "          'appealing': 1,\n",
      "          'becomes': 1,\n",
      "          'boring': 1,\n",
      "          'nmatthew': 1,\n",
      "          'quite': 1,\n",
      "          'simply': 1,\n",
      "          'terrible': 1,\n",
      "          'nthis': 1,\n",
      "          'performance': 1,\n",
      "          'good': 1,\n",
      "          'called': 1,\n",
      "          'mailedin': 1,\n",
      "          'even': 1,\n",
      "          'forgot': 1,\n",
      "          'put': 1,\n",
      "          'stamp': 1,\n",
      "          'nmodine': 1,\n",
      "          'lacks': 1,\n",
      "          'charm': 1,\n",
      "          'appallingly': 1,\n",
      "          'underwritten': 1,\n",
      "          'role': 1,\n",
      "          'looks': 1,\n",
      "          'bored': 1,\n",
      "          'gets': 1,\n",
      "          'stuck': 1,\n",
      "          'trite': 1,\n",
      "          'speech': 1,\n",
      "          'fault': 1,\n",
      "          'hes': 1,\n",
      "          'cad': 1,\n",
      "          'ncarolcos': 1,\n",
      "          'executives': 1,\n",
      "          'whose': 1,\n",
      "          'entire': 1,\n",
      "          'future': 1,\n",
      "          'resting': 1,\n",
      "          'modines': 1,\n",
      "          'bankability': 1,\n",
      "          'upcoming': 1,\n",
      "          'cutthroat': 1,\n",
      "          'island': 1,\n",
      "          'must': 1,\n",
      "          'sweating': 1,\n",
      "          'buckets': 1,\n",
      "          'right': 1,\n",
      "          'basically': 1,\n",
      "          'comes': 1,\n",
      "          'confused': 1,\n",
      "          'spends': 1,\n",
      "          'far': 1,\n",
      "          'much': 1,\n",
      "          'new': 1,\n",
      "          'characters': 1,\n",
      "          'making': 1,\n",
      "          'another': 1,\n",
      "          'dating': 1,\n",
      "          '90s': 1,\n",
      "          'nwhen': 1,\n",
      "          'deal': 1,\n",
      "          'scream': 1,\n",
      "          'accusation': 1,\n",
      "          'andor': 1,\n",
      "          'cry': 1,\n",
      "          'resolved': 1,\n",
      "          'later': 1,\n",
      "          'sensitive': 1,\n",
      "          'talk': 1,\n",
      "          'hug': 1,\n",
      "          'confusing': 1,\n",
      "          'featuring': 1,\n",
      "          'late': 1,\n",
      "          'ed': 1,\n",
      "          'widower': 1,\n",
      "          'goes': 1,\n",
      "          'work': 1,\n",
      "          'befriends': 1,\n",
      "          'troubled': 1,\n",
      "          'youth': 1,\n",
      "          'sad': 1,\n",
      "          'end': 1,\n",
      "          'career': 1,\n",
      "          'getting': 1,\n",
      "          'caught': 1,\n",
      "          'truly': 1,\n",
      "          'annoying': 1,\n",
      "          'overuse': 1,\n",
      "          'location': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'apparently': 1,\n",
      "          'major': 1,\n",
      "          'advertiser': 1,\n",
      "          'decided': 1,\n",
      "          'spend': 1,\n",
      "          'focusing': 1,\n",
      "          'exclusively': 1,\n",
      "          'parentchild': 1,\n",
      "          'would': 1,\n",
      "          'difficult': 1,\n",
      "          'pull': 1,\n",
      "          'ultimately': 1,\n",
      "          'wring': 1,\n",
      "          'family': 1,\n",
      "          'effects': 1,\n",
      "          'nany': 1,\n",
      "          'way': 1,\n",
      "          'slice': 1,\n",
      "          'bad': 1,\n",
      "          'situation': 1,\n",
      "          'makers': 1,\n",
      "          'mostly': 1,\n",
      "          'heartstrings': 1,\n",
      "          'dealing': 1,\n",
      "          'single': 1,\n",
      "          'parenting': 1,\n",
      "          'issue': 1,\n",
      "          'left': 1,\n",
      "          'dads': 1,\n",
      "          'romantic': 1,\n",
      "          'fumblings': 1,\n",
      "          'probide': 1,\n",
      "          'nthere': 1,\n",
      "          'comparisons': 1,\n",
      "          'touching': 1,\n",
      "          'genuine': 1,\n",
      "          'shame': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bowling': 7,\n",
      "          'movie': 6,\n",
      "          'nthe': 6,\n",
      "          'n': 5,\n",
      "          'munson': 4,\n",
      "          'much': 4,\n",
      "          'murray': 4,\n",
      "          'comedy': 4,\n",
      "          'good': 3,\n",
      "          'kingpin': 3,\n",
      "          'film': 3,\n",
      "          'randy': 3,\n",
      "          'dont': 3,\n",
      "          'nwhy': 3,\n",
      "          'directors': 2,\n",
      "          'never': 2,\n",
      "          'might': 2,\n",
      "          'rise': 2,\n",
      "          'anything': 2,\n",
      "          'nits': 2,\n",
      "          'jokes': 2,\n",
      "          'rather': 2,\n",
      "          'first': 2,\n",
      "          'nwoody': 2,\n",
      "          'harrelson': 2,\n",
      "          'bowler': 2,\n",
      "          'roy': 2,\n",
      "          'roys': 2,\n",
      "          'spoof': 2,\n",
      "          'bill': 2,\n",
      "          'seems': 2,\n",
      "          'hand': 2,\n",
      "          'rubber': 2,\n",
      "          'ishmael': 2,\n",
      "          'quaid': 2,\n",
      "          'amish': 2,\n",
      "          'takes': 2,\n",
      "          'nso': 2,\n",
      "          'together': 2,\n",
      "          'set': 2,\n",
      "          'pretty': 2,\n",
      "          'vanessa': 2,\n",
      "          'angel': 2,\n",
      "          'direction': 2,\n",
      "          'humour': 2,\n",
      "          'flying': 2,\n",
      "          'wrong': 2,\n",
      "          'funny': 2,\n",
      "          'guy': 2,\n",
      "          'stuff': 2,\n",
      "          'nwell': 2,\n",
      "          'according': 1,\n",
      "          'publicity': 1,\n",
      "          'material': 1,\n",
      "          'hope': 1,\n",
      "          'restore': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'rightful': 1,\n",
      "          'place': 1,\n",
      "          'mainstream': 1,\n",
      "          'american': 1,\n",
      "          'consciousness': 1,\n",
      "          'nhmm': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'something': 1,\n",
      "          'nwhat': 1,\n",
      "          'geek': 1,\n",
      "          'chic': 1,\n",
      "          'lounge': 1,\n",
      "          'music': 1,\n",
      "          'seventies': 1,\n",
      "          'fashion': 1,\n",
      "          'evercontrary': 1,\n",
      "          'kids': 1,\n",
      "          'nineties': 1,\n",
      "          'latch': 1,\n",
      "          'another': 1,\n",
      "          'terminally': 1,\n",
      "          'unhip': 1,\n",
      "          'bastion': 1,\n",
      "          'tackyana': 1,\n",
      "          'claim': 1,\n",
      "          'nbut': 1,\n",
      "          'doubt': 1,\n",
      "          'cheesy': 1,\n",
      "          'right': 1,\n",
      "          'connoisseurs': 1,\n",
      "          'bad': 1,\n",
      "          'taste': 1,\n",
      "          'find': 1,\n",
      "          'exudes': 1,\n",
      "          'bland': 1,\n",
      "          'smell': 1,\n",
      "          'stale': 1,\n",
      "          'invigorating': 1,\n",
      "          'stink': 1,\n",
      "          'true': 1,\n",
      "          'kitsch': 1,\n",
      "          'nthats': 1,\n",
      "          'shame': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'promises': 1,\n",
      "          'lot': 1,\n",
      "          'plays': 1,\n",
      "          'hotshot': 1,\n",
      "          'opens': 1,\n",
      "          'fifties': 1,\n",
      "          'dad': 1,\n",
      "          'dishing': 1,\n",
      "          'readers': 1,\n",
      "          'digestgumpian': 1,\n",
      "          'wisdom': 1,\n",
      "          'scoopfuls': 1,\n",
      "          'shifting': 1,\n",
      "          '70s': 1,\n",
      "          'hilarious': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'fever': 1,\n",
      "          'sardonic': 1,\n",
      "          'tone': 1,\n",
      "          'proceedings': 1,\n",
      "          'enhanced': 1,\n",
      "          'presence': 1,\n",
      "          'delectably': 1,\n",
      "          'slimy': 1,\n",
      "          'big': 1,\n",
      "          'ern': 1,\n",
      "          'mcracken': 1,\n",
      "          'thanks': 1,\n",
      "          'quarter': 1,\n",
      "          'gives': 1,\n",
      "          'wry': 1,\n",
      "          'derisive': 1,\n",
      "          'edge': 1,\n",
      "          'otherwise': 1,\n",
      "          'unfocused': 1,\n",
      "          'nmccracken': 1,\n",
      "          'dupes': 1,\n",
      "          'hustling': 1,\n",
      "          'job': 1,\n",
      "          'abandons': 1,\n",
      "          'angry': 1,\n",
      "          'mob': 1,\n",
      "          'mangle': 1,\n",
      "          'nthen': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          '17': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'fat': 1,\n",
      "          'balding': 1,\n",
      "          'loser': 1,\n",
      "          'prosthetic': 1,\n",
      "          'nhes': 1,\n",
      "          'hopeless': 1,\n",
      "          'meets': 1,\n",
      "          'amateur': 1,\n",
      "          'protege': 1,\n",
      "          'million': 1,\n",
      "          'dollar': 1,\n",
      "          'tournament': 1,\n",
      "          'reno': 1,\n",
      "          'picking': 1,\n",
      "          'hustler': 1,\n",
      "          'claudia': 1,\n",
      "          'way': 1,\n",
      "          'nwith': 1,\n",
      "          'exit': 1,\n",
      "          'filmmakers': 1,\n",
      "          'seem': 1,\n",
      "          'one': 1,\n",
      "          'go': 1,\n",
      "          'thats': 1,\n",
      "          'ndumb': 1,\n",
      "          'dumber': 1,\n",
      "          'nyes': 1,\n",
      "          'indeed': 1,\n",
      "          'brought': 1,\n",
      "          'modern': 1,\n",
      "          'proponents': 1,\n",
      "          'laxative': 1,\n",
      "          'peter': 1,\n",
      "          'bobby': 1,\n",
      "          'farrelly': 1,\n",
      "          'aforementioned': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'vehicle': 1,\n",
      "          'prepare': 1,\n",
      "          'slaparound': 1,\n",
      "          'hands': 1,\n",
      "          'distended': 1,\n",
      "          'nipples': 1,\n",
      "          'ridiculous': 1,\n",
      "          'hair': 1,\n",
      "          'bull': 1,\n",
      "          'semen': 1,\n",
      "          'nget': 1,\n",
      "          'stock': 1,\n",
      "          'fishoutofwater': 1,\n",
      "          'situations': 1,\n",
      "          'cityboy': 1,\n",
      "          'puts': 1,\n",
      "          'beard': 1,\n",
      "          'tries': 1,\n",
      "          'blend': 1,\n",
      "          'community': 1,\n",
      "          'suaku': 1,\n",
      "          'straitlaced': 1,\n",
      "          'smoking': 1,\n",
      "          'striptease': 1,\n",
      "          'unchristian': 1,\n",
      "          'neighboursocking': 1,\n",
      "          'nnow': 1,\n",
      "          'get': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'cheap': 1,\n",
      "          'fair': 1,\n",
      "          'share': 1,\n",
      "          'lavatorial': 1,\n",
      "          'laughs': 1,\n",
      "          'woody': 1,\n",
      "          'trouble': 1,\n",
      "          'arent': 1,\n",
      "          'bold': 1,\n",
      "          'enough': 1,\n",
      "          'drive': 1,\n",
      "          'bumbles': 1,\n",
      "          'along': 1,\n",
      "          'without': 1,\n",
      "          'sense': 1,\n",
      "          'nit': 1,\n",
      "          'lurches': 1,\n",
      "          'sports': 1,\n",
      "          'amishmocking': 1,\n",
      "          'roadtrip': 1,\n",
      "          'sentimental': 1,\n",
      "          'melodrama': 1,\n",
      "          'pausing': 1,\n",
      "          'broadside': 1,\n",
      "          'indecent': 1,\n",
      "          'proposal': 1,\n",
      "          'many': 1,\n",
      "          'shameless': 1,\n",
      "          'plugs': 1,\n",
      "          'accompanying': 1,\n",
      "          'pop': 1,\n",
      "          'soundtrack': 1,\n",
      "          'quite': 1,\n",
      "          'getting': 1,\n",
      "          'nsome': 1,\n",
      "          'gags': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'lack': 1,\n",
      "          'buildup': 1,\n",
      "          'bits': 1,\n",
      "          'pieces': 1,\n",
      "          'simply': 1,\n",
      "          'long': 1,\n",
      "          'unfunny': 1,\n",
      "          'fight': 1,\n",
      "          'car': 1,\n",
      "          'park': 1,\n",
      "          'two': 1,\n",
      "          'wear': 1,\n",
      "          'mascara': 1,\n",
      "          'glass': 1,\n",
      "          'ball': 1,\n",
      "          'rose': 1,\n",
      "          'full': 1,\n",
      "          'halfthoughtthrough': 1,\n",
      "          'ideas': 1,\n",
      "          'give': 1,\n",
      "          'impression': 1,\n",
      "          'old': 1,\n",
      "          'gaffer': 1,\n",
      "          'grip': 1,\n",
      "          'makeup': 1,\n",
      "          'artist': 1,\n",
      "          'throwing': 1,\n",
      "          'random': 1,\n",
      "          'saying': 1,\n",
      "          'wouldnt': 1,\n",
      "          'actually': 1,\n",
      "          'actors': 1,\n",
      "          'favours': 1,\n",
      "          'either': 1,\n",
      "          'comes': 1,\n",
      "          'okay': 1,\n",
      "          'plausibly': 1,\n",
      "          'acting': 1,\n",
      "          'dumb': 1,\n",
      "          'smart': 1,\n",
      "          'cynical': 1,\n",
      "          'innocent': 1,\n",
      "          'implausible': 1,\n",
      "          'script': 1,\n",
      "          'calls': 1,\n",
      "          'ceaseless': 1,\n",
      "          'ham': 1,\n",
      "          'talent': 1,\n",
      "          'like': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'convincing': 1,\n",
      "          'playing': 1,\n",
      "          'computercreation': 1,\n",
      "          'human': 1,\n",
      "          'take': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'weird': 1,\n",
      "          'science': 1,\n",
      "          'please': 1,\n",
      "          'neven': 1,\n",
      "          'hams': 1,\n",
      "          'reappears': 1,\n",
      "          'movies': 1,\n",
      "          'climax': 1,\n",
      "          'nall': 1,\n",
      "          'fairly': 1,\n",
      "          'useless': 1,\n",
      "          'attempt': 1,\n",
      "          'certified': 1,\n",
      "          'nohoper': 1,\n",
      "          'kickstarting': 1,\n",
      "          'renaissance': 1,\n",
      "          'look': 1,\n",
      "          'reinspired': 1,\n",
      "          'john': 1,\n",
      "          'waters': 1,\n",
      "          'perhaps': 1,\n",
      "          'somebody': 1,\n",
      "          'strictly': 1,\n",
      "          'anyone': 1,\n",
      "          'definitive': 1,\n",
      "          'inkpots': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'video': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'reese': 5,\n",
      "          'sutherland': 4,\n",
      "          'movie': 4,\n",
      "          'time': 4,\n",
      "          'witherspoon': 3,\n",
      "          'keifer': 3,\n",
      "          'one': 3,\n",
      "          'nnote': 3,\n",
      "          'great': 3,\n",
      "          'used': 2,\n",
      "          'nfreeway': 2,\n",
      "          'little': 2,\n",
      "          'red': 2,\n",
      "          'riding': 2,\n",
      "          'hood': 2,\n",
      "          'talented': 2,\n",
      "          'star': 2,\n",
      "          'asking': 2,\n",
      "          'dont': 2,\n",
      "          'want': 2,\n",
      "          'waste': 2,\n",
      "          'movies': 2,\n",
      "          'fear': 2,\n",
      "          'rent': 2,\n",
      "          'starring': 1,\n",
      "          'kiefer': 1,\n",
      "          'bokeem': 1,\n",
      "          'woodbine': 1,\n",
      "          'think': 1,\n",
      "          'conversation': 1,\n",
      "          'worse': 1,\n",
      "          'film': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'giving': 1,\n",
      "          'second': 1,\n",
      "          'thoughts': 1,\n",
      "          'modern': 1,\n",
      "          'retelling': 1,\n",
      "          'nonly': 1,\n",
      "          'nineties': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'juvenile': 1,\n",
      "          'delinquent': 1,\n",
      "          'played': 1,\n",
      "          'big': 1,\n",
      "          'bad': 1,\n",
      "          'wolf': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'nto': 1,\n",
      "          'top': 1,\n",
      "          'pathetic': 1,\n",
      "          'premise': 1,\n",
      "          'goes': 1,\n",
      "          'visit': 1,\n",
      "          'granny': 1,\n",
      "          'youll': 1,\n",
      "          'never': 1,\n",
      "          'guess': 1,\n",
      "          'whos': 1,\n",
      "          'waiting': 1,\n",
      "          'covers': 1,\n",
      "          'grannys': 1,\n",
      "          'bed': 1,\n",
      "          'nkeifer': 1,\n",
      "          'hollywoods': 1,\n",
      "          'yet': 1,\n",
      "          'underrated': 1,\n",
      "          'actors': 1,\n",
      "          'exceptionally': 1,\n",
      "          'likely': 1,\n",
      "          'become': 1,\n",
      "          'major': 1,\n",
      "          'nso': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'end': 1,\n",
      "          'result': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'question': 1,\n",
      "          'nyou': 1,\n",
      "          'might': 1,\n",
      "          'short': 1,\n",
      "          'review': 1,\n",
      "          'nthe': 1,\n",
      "          'answer': 1,\n",
      "          'quite': 1,\n",
      "          'simple': 1,\n",
      "          'writing': 1,\n",
      "          'thinking': 1,\n",
      "          'absolutely': 1,\n",
      "          'necessary': 1,\n",
      "          'ni': 1,\n",
      "          'wasted': 1,\n",
      "          'enough': 1,\n",
      "          'sitting': 1,\n",
      "          'wonder': 1,\n",
      "          'arent': 1,\n",
      "          'bigger': 1,\n",
      "          'hollywood': 1,\n",
      "          'nbecause': 1,\n",
      "          'keep': 1,\n",
      "          'making': 1,\n",
      "          'like': 1,\n",
      "          'happened': 1,\n",
      "          'worry': 1,\n",
      "          'much': 1,\n",
      "          'saw': 1,\n",
      "          'anyway': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'im': 1,\n",
      "          'still': 1,\n",
      "          'shaking': 1,\n",
      "          'head': 1,\n",
      "          'ndont': 1,\n",
      "          'turkey': 1,\n",
      "          'nif': 1,\n",
      "          'see': 1,\n",
      "          'go': 1,\n",
      "          'flatliners': 1,\n",
      "          'young': 1,\n",
      "          'guns': 1,\n",
      "          'nreese': 1,\n",
      "          'witherspoons': 1,\n",
      "          'abundant': 1,\n",
      "          'acting': 1,\n",
      "          'talents': 1,\n",
      "          'full': 1,\n",
      "          'potential': 1,\n",
      "          'thriller': 1,\n",
      "          'ndo': 1,\n",
      "          'favor': 1,\n",
      "          'stay': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'freeway': 1,\n",
      "          'possibly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'squad': 16,\n",
      "          'blade': 12,\n",
      "          'movie': 9,\n",
      "          'tv': 4,\n",
      "          'series': 4,\n",
      "          'nblade': 4,\n",
      "          'language': 4,\n",
      "          'future': 3,\n",
      "          'turned': 3,\n",
      "          'new': 3,\n",
      "          'one': 3,\n",
      "          'nthis': 3,\n",
      "          'television': 3,\n",
      "          'film': 3,\n",
      "          'lot': 3,\n",
      "          'nwhen': 3,\n",
      "          'character': 3,\n",
      "          'foul': 3,\n",
      "          'guy': 3,\n",
      "          'bad': 3,\n",
      "          'jetpacks': 2,\n",
      "          'cop': 2,\n",
      "          'common': 2,\n",
      "          'nwhy': 2,\n",
      "          'fox': 2,\n",
      "          'networks': 2,\n",
      "          'guest': 2,\n",
      "          'stars': 2,\n",
      "          'n': 2,\n",
      "          'probably': 2,\n",
      "          'audience': 2,\n",
      "          'crimefighters': 2,\n",
      "          'cars': 2,\n",
      "          'fast': 2,\n",
      "          'airwolf': 2,\n",
      "          'street': 2,\n",
      "          'hawk': 2,\n",
      "          'viewers': 2,\n",
      "          'madefortv': 2,\n",
      "          'nthe': 2,\n",
      "          'keep': 2,\n",
      "          'ni': 2,\n",
      "          'background': 2,\n",
      "          'im': 2,\n",
      "          'sound': 2,\n",
      "          'scene': 2,\n",
      "          'spoke': 2,\n",
      "          'songs': 2,\n",
      "          'volume': 2,\n",
      "          'commercial': 2,\n",
      "          'dont': 2,\n",
      "          'nin': 2,\n",
      "          'good': 2,\n",
      "          'word': 2,\n",
      "          'comics': 2,\n",
      "          'bunch': 2,\n",
      "          'synopsis': 1,\n",
      "          'sooner': 1,\n",
      "          'think': 1,\n",
      "          'america': 1,\n",
      "          'law': 1,\n",
      "          'enforcement': 1,\n",
      "          'resides': 1,\n",
      "          'ragtag': 1,\n",
      "          'group': 1,\n",
      "          'culturally': 1,\n",
      "          'diverse': 1,\n",
      "          'rollerblading': 1,\n",
      "          'cops': 1,\n",
      "          'strapped': 1,\n",
      "          'backs': 1,\n",
      "          'na': 1,\n",
      "          'dangerous': 1,\n",
      "          'criminal': 1,\n",
      "          'however': 1,\n",
      "          'attempts': 1,\n",
      "          'destroy': 1,\n",
      "          'brother': 1,\n",
      "          'dies': 1,\n",
      "          'chased': 1,\n",
      "          'ncomments': 1,\n",
      "          'exgangbanger': 1,\n",
      "          'insubordinate': 1,\n",
      "          'traffic': 1,\n",
      "          'former': 1,\n",
      "          'prostitute': 1,\n",
      "          'substance': 1,\n",
      "          'abuse': 1,\n",
      "          'problem': 1,\n",
      "          'junkie': 1,\n",
      "          'dennis': 1,\n",
      "          'rodman': 1,\n",
      "          'wannabe': 1,\n",
      "          'crashed': 1,\n",
      "          'four': 1,\n",
      "          'police': 1,\n",
      "          'cruisers': 1,\n",
      "          'theyre': 1,\n",
      "          'members': 1,\n",
      "          'elite': 1,\n",
      "          'crimefighting': 1,\n",
      "          'unit': 1,\n",
      "          'wearing': 1,\n",
      "          'black': 1,\n",
      "          'uniforms': 1,\n",
      "          'rollerblades': 1,\n",
      "          'nthey': 1,\n",
      "          'also': 1,\n",
      "          'carry': 1,\n",
      "          'video': 1,\n",
      "          'cameras': 1,\n",
      "          'communicate': 1,\n",
      "          'another': 1,\n",
      "          'la': 1,\n",
      "          'marines': 1,\n",
      "          'james': 1,\n",
      "          'camerons': 1,\n",
      "          'aliens': 1,\n",
      "          'nyes': 1,\n",
      "          'wednesday': 1,\n",
      "          'night': 1,\n",
      "          'week': 1,\n",
      "          'marking': 1,\n",
      "          'dubious': 1,\n",
      "          'world': 1,\n",
      "          'premiere': 1,\n",
      "          'today': 1,\n",
      "          'curiously': 1,\n",
      "          'number': 1,\n",
      "          'nyou': 1,\n",
      "          'may': 1,\n",
      "          'ask': 1,\n",
      "          'nwell': 1,\n",
      "          'really': 1,\n",
      "          'speak': 1,\n",
      "          '2': 1,\n",
      "          'hour': 1,\n",
      "          'pilot': 1,\n",
      "          'possible': 1,\n",
      "          'packaged': 1,\n",
      "          'dumb': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'ratings': 1,\n",
      "          'hit': 1,\n",
      "          'spawn': 1,\n",
      "          'longlived': 1,\n",
      "          'nafter': 1,\n",
      "          'given': 1,\n",
      "          'talking': 1,\n",
      "          'knight': 1,\n",
      "          'rider': 1,\n",
      "          'helicopters': 1,\n",
      "          'super': 1,\n",
      "          'motorcycles': 1,\n",
      "          'eaten': 1,\n",
      "          'past': 1,\n",
      "          'nso': 1,\n",
      "          'jetpowered': 1,\n",
      "          'roller': 1,\n",
      "          'blades': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'presentation': 1,\n",
      "          'least': 1,\n",
      "          'watchable': 1,\n",
      "          'relatively': 1,\n",
      "          'large': 1,\n",
      "          'cast': 1,\n",
      "          'characters': 1,\n",
      "          'surprisingly': 1,\n",
      "          'intelligible': 1,\n",
      "          'albeit': 1,\n",
      "          'predictable': 1,\n",
      "          'script': 1,\n",
      "          'enough': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'halfinterested': 1,\n",
      "          'nid': 1,\n",
      "          'imagine': 1,\n",
      "          'adolescent': 1,\n",
      "          'males': 1,\n",
      "          'target': 1,\n",
      "          'turkey': 1,\n",
      "          'would': 1,\n",
      "          'get': 1,\n",
      "          'kick': 1,\n",
      "          'tried': 1,\n",
      "          'mind': 1,\n",
      "          'watched': 1,\n",
      "          'remember': 1,\n",
      "          'liking': 1,\n",
      "          '10': 1,\n",
      "          '11': 1,\n",
      "          'nand': 1,\n",
      "          'although': 1,\n",
      "          'isnt': 1,\n",
      "          'saying': 1,\n",
      "          'much': 1,\n",
      "          'leaps': 1,\n",
      "          'bounds': 1,\n",
      "          'better': 1,\n",
      "          'last': 1,\n",
      "          'network': 1,\n",
      "          'displeasure': 1,\n",
      "          'wasting': 1,\n",
      "          'time': 1,\n",
      "          'insipidly': 1,\n",
      "          'awful': 1,\n",
      "          'generation': 1,\n",
      "          'x': 1,\n",
      "          'huge': 1,\n",
      "          'disappointment': 1,\n",
      "          'considering': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'terrific': 1,\n",
      "          'twoyear': 1,\n",
      "          'beginning': 1,\n",
      "          'nbut': 1,\n",
      "          'digress': 1,\n",
      "          'ndespite': 1,\n",
      "          'limited': 1,\n",
      "          'appeal': 1,\n",
      "          'kinks': 1,\n",
      "          'work': 1,\n",
      "          'become': 1,\n",
      "          'none': 1,\n",
      "          'suffers': 1,\n",
      "          'mtv': 1,\n",
      "          'syndrome': 1,\n",
      "          'quick': 1,\n",
      "          'shots': 1,\n",
      "          'weird': 1,\n",
      "          'angles': 1,\n",
      "          'continuously': 1,\n",
      "          'jar': 1,\n",
      "          'senses': 1,\n",
      "          'near': 1,\n",
      "          'nonstop': 1,\n",
      "          'generic': 1,\n",
      "          'rock': 1,\n",
      "          'soundtrack': 1,\n",
      "          'blares': 1,\n",
      "          'incessantly': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'dylans': 1,\n",
      "          'knockin': 1,\n",
      "          'heavens': 1,\n",
      "          'door': 1,\n",
      "          'bowies': 1,\n",
      "          'afraid': 1,\n",
      "          'americans': 1,\n",
      "          'used': 1,\n",
      "          'rather': 1,\n",
      "          'poor': 1,\n",
      "          'taste': 1,\n",
      "          'ntwo': 1,\n",
      "          'needs': 1,\n",
      "          'crew': 1,\n",
      "          'substandard': 1,\n",
      "          'editing': 1,\n",
      "          'irritated': 1,\n",
      "          'end': 1,\n",
      "          'ncharacters': 1,\n",
      "          'dialogue': 1,\n",
      "          'times': 1,\n",
      "          'sounded': 1,\n",
      "          'choppy': 1,\n",
      "          'unintelligible': 1,\n",
      "          'nduring': 1,\n",
      "          'important': 1,\n",
      "          'song': 1,\n",
      "          'played': 1,\n",
      "          'loudly': 1,\n",
      "          'dropped': 1,\n",
      "          'disappear': 1,\n",
      "          'nas': 1,\n",
      "          'soon': 1,\n",
      "          'finished': 1,\n",
      "          'speaking': 1,\n",
      "          'immediately': 1,\n",
      "          'returned': 1,\n",
      "          'original': 1,\n",
      "          'level': 1,\n",
      "          'next': 1,\n",
      "          'sounds': 1,\n",
      "          'trivial': 1,\n",
      "          'sure': 1,\n",
      "          'distracted': 1,\n",
      "          'immensely': 1,\n",
      "          'nfinally': 1,\n",
      "          'nfoul': 1,\n",
      "          'allowed': 1,\n",
      "          'typically': 1,\n",
      "          'nthus': 1,\n",
      "          'use': 1,\n",
      "          'production': 1,\n",
      "          'censored': 1,\n",
      "          'manner': 1,\n",
      "          'early': 1,\n",
      "          'example': 1,\n",
      "          'lead': 1,\n",
      "          'minor': 1,\n",
      "          'confrontation': 1,\n",
      "          'streets': 1,\n",
      "          'spouts': 1,\n",
      "          'driver': 1,\n",
      "          'conveniently': 1,\n",
      "          'honks': 1,\n",
      "          'horn': 1,\n",
      "          'offscreen': 1,\n",
      "          'muffle': 1,\n",
      "          'seinfeld': 1,\n",
      "          'episode': 1,\n",
      "          'technique': 1,\n",
      "          'proved': 1,\n",
      "          'funny': 1,\n",
      "          'seemed': 1,\n",
      "          'goofy': 1,\n",
      "          'cut': 1,\n",
      "          'dramatic': 1,\n",
      "          'tension': 1,\n",
      "          'considerably': 1,\n",
      "          'nperhaps': 1,\n",
      "          'writers': 1,\n",
      "          'show': 1,\n",
      "          'spun': 1,\n",
      "          'could': 1,\n",
      "          'take': 1,\n",
      "          'cue': 1,\n",
      "          'marvel': 1,\n",
      "          '2099': 1,\n",
      "          'nmake': 1,\n",
      "          'words': 1,\n",
      "          'way': 1,\n",
      "          'need': 1,\n",
      "          'honking': 1,\n",
      "          'horns': 1,\n",
      "          'silly': 1,\n",
      "          'devices': 1,\n",
      "          'cover': 1,\n",
      "          'ncompared': 1,\n",
      "          'usual': 1,\n",
      "          'crap': 1,\n",
      "          'broadcast': 1,\n",
      "          'offer': 1,\n",
      "          'terms': 1,\n",
      "          'movies': 1,\n",
      "          'suitable': 1,\n",
      "          'exercise': 1,\n",
      "          'camp': 1,\n",
      "          'compared': 1,\n",
      "          'say': 1,\n",
      "          'studio': 1,\n",
      "          'term': 1,\n",
      "          'shares': 1,\n",
      "          'initials': 1,\n",
      "          'bs': 1,\n",
      "          'review': 1,\n",
      "          'written': 1,\n",
      "          'august': 1,\n",
      "          '12': 1,\n",
      "          '1998': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'world': 10,\n",
      "          'hurlyburly': 6,\n",
      "          'men': 5,\n",
      "          'much': 4,\n",
      "          'ni': 4,\n",
      "          'two': 3,\n",
      "          'could': 3,\n",
      "          'movies': 3,\n",
      "          'everything': 3,\n",
      "          'life': 3,\n",
      "          'one': 3,\n",
      "          'movie': 3,\n",
      "          'nits': 3,\n",
      "          'sean': 3,\n",
      "          'penn': 3,\n",
      "          'people': 3,\n",
      "          'means': 3,\n",
      "          'questions': 3,\n",
      "          'background': 3,\n",
      "          'like': 3,\n",
      "          'film': 3,\n",
      "          'real': 3,\n",
      "          'large': 3,\n",
      "          'women': 3,\n",
      "          'stories': 3,\n",
      "          'nnot': 3,\n",
      "          'shakespeare': 2,\n",
      "          'love': 2,\n",
      "          'nwhile': 2,\n",
      "          'nthis': 2,\n",
      "          'nasty': 2,\n",
      "          'nhurlyburly': 2,\n",
      "          'eddie': 2,\n",
      "          'around': 2,\n",
      "          'make': 2,\n",
      "          'theyre': 2,\n",
      "          'makes': 2,\n",
      "          'performances': 2,\n",
      "          'seen': 2,\n",
      "          'want': 2,\n",
      "          'friend': 2,\n",
      "          'also': 2,\n",
      "          'phil': 2,\n",
      "          'making': 2,\n",
      "          'depressing': 2,\n",
      "          'exists': 2,\n",
      "          'everyone': 2,\n",
      "          'films': 2,\n",
      "          'contrast': 1,\n",
      "          'nin': 1,\n",
      "          'space': 1,\n",
      "          'days': 1,\n",
      "          'saw': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'get': 1,\n",
      "          'different': 1,\n",
      "          'former': 1,\n",
      "          'top': 1,\n",
      "          'telegraphing': 1,\n",
      "          'shoving': 1,\n",
      "          'philosophy': 1,\n",
      "          'throats': 1,\n",
      "          'complete': 1,\n",
      "          'opposite': 1,\n",
      "          'wound': 1,\n",
      "          'tight': 1,\n",
      "          'buried': 1,\n",
      "          'script': 1,\n",
      "          'spend': 1,\n",
      "          'weeks': 1,\n",
      "          'thinking': 1,\n",
      "          'interesting': 1,\n",
      "          'similar': 1,\n",
      "          'vein': 1,\n",
      "          'favourite': 1,\n",
      "          '98': 1,\n",
      "          'company': 1,\n",
      "          'although': 1,\n",
      "          'quite': 1,\n",
      "          'ntheres': 1,\n",
      "          'lots': 1,\n",
      "          'talking': 1,\n",
      "          'scary': 1,\n",
      "          'insights': 1,\n",
      "          'doenst': 1,\n",
      "          'contain': 1,\n",
      "          'plot': 1,\n",
      "          'follow': 1,\n",
      "          'tries': 1,\n",
      "          'sense': 1,\n",
      "          'nhis': 1,\n",
      "          'big': 1,\n",
      "          'question': 1,\n",
      "          'pertain': 1,\n",
      "          'nand': 1,\n",
      "          'supposed': 1,\n",
      "          'feel': 1,\n",
      "          'n': 1,\n",
      "          'television': 1,\n",
      "          'friends': 1,\n",
      "          'events': 1,\n",
      "          'happen': 1,\n",
      "          'guess': 1,\n",
      "          'summed': 1,\n",
      "          'crudely': 1,\n",
      "          'whats': 1,\n",
      "          'answers': 1,\n",
      "          'ndonna': 1,\n",
      "          'anna': 1,\n",
      "          'paquin': 1,\n",
      "          'gives': 1,\n",
      "          'really': 1,\n",
      "          'satisfying': 1,\n",
      "          'lead': 1,\n",
      "          'nthats': 1,\n",
      "          'stay': 1,\n",
      "          'mind': 1,\n",
      "          'nthese': 1,\n",
      "          'sorts': 1,\n",
      "          'occupy': 1,\n",
      "          'time': 1,\n",
      "          'neven': 1,\n",
      "          'push': 1,\n",
      "          'however': 1,\n",
      "          'resolve': 1,\n",
      "          'influences': 1,\n",
      "          'nthe': 1,\n",
      "          'superb': 1,\n",
      "          'havent': 1,\n",
      "          'fact': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'seeing': 1,\n",
      "          'anything': 1,\n",
      "          'brilliant': 1,\n",
      "          'neddie': 1,\n",
      "          'isnt': 1,\n",
      "          'likeable': 1,\n",
      "          'character': 1,\n",
      "          'understandable': 1,\n",
      "          'dont': 1,\n",
      "          'id': 1,\n",
      "          'help': 1,\n",
      "          'nchazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'great': 1,\n",
      "          'awful': 1,\n",
      "          'person': 1,\n",
      "          'nid': 1,\n",
      "          'never': 1,\n",
      "          'know': 1,\n",
      "          'still': 1,\n",
      "          'understand': 1,\n",
      "          'wants': 1,\n",
      "          'neveryone': 1,\n",
      "          'nails': 1,\n",
      "          'sexist': 1,\n",
      "          'nunlike': 1,\n",
      "          'unfailingly': 1,\n",
      "          'politically': 1,\n",
      "          'correct': 1,\n",
      "          'mans': 1,\n",
      "          'unapologetically': 1,\n",
      "          'eyes': 1,\n",
      "          'find': 1,\n",
      "          'fascinating': 1,\n",
      "          'counts': 1,\n",
      "          'nfirst': 1,\n",
      "          'na': 1,\n",
      "          'part': 1,\n",
      "          'hurlyburlys': 1,\n",
      "          'success': 1,\n",
      "          'convinces': 1,\n",
      "          'sort': 1,\n",
      "          'environment': 1,\n",
      "          'every': 1,\n",
      "          'day': 1,\n",
      "          'hollywood': 1,\n",
      "          'number': 1,\n",
      "          'believe': 1,\n",
      "          'completely': 1,\n",
      "          'peripheral': 1,\n",
      "          'toys': 1,\n",
      "          'playthings': 1,\n",
      "          'nsure': 1,\n",
      "          'else': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'nsecond': 1,\n",
      "          'made': 1,\n",
      "          'mens': 1,\n",
      "          'nwhere': 1,\n",
      "          'womens': 1,\n",
      "          'soap': 1,\n",
      "          'operas': 1,\n",
      "          'chick': 1,\n",
      "          'flicks': 1,\n",
      "          'meant': 1,\n",
      "          'satisfy': 1,\n",
      "          'touch': 1,\n",
      "          'essence': 1,\n",
      "          'based': 1,\n",
      "          'stage': 1,\n",
      "          'play': 1,\n",
      "          'evident': 1,\n",
      "          'moment': 1,\n",
      "          'starts': 1,\n",
      "          'talkative': 1,\n",
      "          'intelligent': 1,\n",
      "          'static': 1,\n",
      "          'drag': 1,\n",
      "          'bit': 1,\n",
      "          'sometimes': 1,\n",
      "          'sound': 1,\n",
      "          'quoting': 1,\n",
      "          'textbooks': 1,\n",
      "          'mostly': 1,\n",
      "          'good': 1,\n",
      "          'thing': 1,\n",
      "          'filled': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'sweeping': 1,\n",
      "          'panoramas': 1,\n",
      "          'underestimate': 1,\n",
      "          'intelligence': 1,\n",
      "          'audience': 1,\n",
      "          'nall': 1,\n",
      "          'probably': 1,\n",
      "          'effective': 1,\n",
      "          'video': 1,\n",
      "          'screen': 1,\n",
      "          'nit': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'funny': 10,\n",
      "          'jokes': 10,\n",
      "          'film': 10,\n",
      "          'silent': 8,\n",
      "          'bob': 8,\n",
      "          'nthe': 7,\n",
      "          'comic': 7,\n",
      "          'movie': 6,\n",
      "          'characters': 5,\n",
      "          'kevin': 5,\n",
      "          'films': 5,\n",
      "          'nit': 5,\n",
      "          '4': 5,\n",
      "          'comedy': 5,\n",
      "          'gags': 4,\n",
      "          'smith': 4,\n",
      "          'make': 4,\n",
      "          'like': 4,\n",
      "          'dogma': 4,\n",
      "          'jay': 4,\n",
      "          'njay': 4,\n",
      "          'nthey': 4,\n",
      "          'plot': 3,\n",
      "          'team': 3,\n",
      "          'nthis': 3,\n",
      "          'would': 3,\n",
      "          'good': 3,\n",
      "          'low': 3,\n",
      "          '0': 3,\n",
      "          'needs': 3,\n",
      "          'way': 3,\n",
      "          'strike': 3,\n",
      "          'back': 3,\n",
      "          'running': 2,\n",
      "          'pair': 2,\n",
      "          'smiths': 2,\n",
      "          'humor': 2,\n",
      "          'leads': 2,\n",
      "          'particularly': 2,\n",
      "          'entertainment': 2,\n",
      "          'enough': 2,\n",
      "          'feels': 2,\n",
      "          'skit': 2,\n",
      "          'night': 2,\n",
      "          'n': 2,\n",
      "          'value': 2,\n",
      "          'two': 2,\n",
      "          'clerks': 2,\n",
      "          'chasing': 2,\n",
      "          'amy': 2,\n",
      "          'getting': 2,\n",
      "          'work': 2,\n",
      "          'audience': 2,\n",
      "          'gay': 2,\n",
      "          'many': 2,\n",
      "          'larger': 2,\n",
      "          'lives': 2,\n",
      "          'nso': 2,\n",
      "          'hollywood': 2,\n",
      "          'adventures': 2,\n",
      "          'problem': 2,\n",
      "          'neither': 2,\n",
      "          'nhe': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'gag': 1,\n",
      "          'gets': 1,\n",
      "          'sporadically': 1,\n",
      "          'occasionally': 1,\n",
      "          'teens': 1,\n",
      "          'fond': 1,\n",
      "          'scatological': 1,\n",
      "          'antigay': 1,\n",
      "          'weak': 1,\n",
      "          'little': 1,\n",
      "          'inside': 1,\n",
      "          'digs': 1,\n",
      "          'best': 1,\n",
      "          'features': 1,\n",
      "          'nsadly': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'principal': 1,\n",
      "          'let': 1,\n",
      "          'kids': 1,\n",
      "          'talent': 1,\n",
      "          'turns': 1,\n",
      "          'reasons': 1,\n",
      "          'na': 1,\n",
      "          'empathy': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'story': 1,\n",
      "          'emotional': 1,\n",
      "          'center': 1,\n",
      "          'nif': 1,\n",
      "          'chain': 1,\n",
      "          'succeed': 1,\n",
      "          'fail': 1,\n",
      "          'based': 1,\n",
      "          'nkevin': 1,\n",
      "          'made': 1,\n",
      "          'satisfying': 1,\n",
      "          'nwith': 1,\n",
      "          'tried': 1,\n",
      "          'philosophical': 1,\n",
      "          'religious': 1,\n",
      "          'mixed': 1,\n",
      "          'madcap': 1,\n",
      "          'romp': 1,\n",
      "          'npeter': 1,\n",
      "          'cook': 1,\n",
      "          'dudley': 1,\n",
      "          'moore': 1,\n",
      "          'successfully': 1,\n",
      "          'bedazzled': 1,\n",
      "          'nbut': 1,\n",
      "          'combination': 1,\n",
      "          'hard': 1,\n",
      "          'right': 1,\n",
      "          'fecal': 1,\n",
      "          'monsters': 1,\n",
      "          'nhis': 1,\n",
      "          'remaining': 1,\n",
      "          'mallrats': 1,\n",
      "          'new': 1,\n",
      "          'aimed': 1,\n",
      "          'squarely': 1,\n",
      "          'teenage': 1,\n",
      "          'compendium': 1,\n",
      "          'penis': 1,\n",
      "          'flatulence': 1,\n",
      "          'pastiches': 1,\n",
      "          'injokes': 1,\n",
      "          'nhow': 1,\n",
      "          'subjective': 1,\n",
      "          'call': 1,\n",
      "          'nfor': 1,\n",
      "          'vast': 1,\n",
      "          'majority': 1,\n",
      "          'nthere': 1,\n",
      "          'cleverness': 1,\n",
      "          'variety': 1,\n",
      "          'twice': 1,\n",
      "          'accuse': 1,\n",
      "          'someone': 1,\n",
      "          'npenis': 1,\n",
      "          'times': 1,\n",
      "          'nshowing': 1,\n",
      "          'minor': 1,\n",
      "          'every': 1,\n",
      "          'clever': 1,\n",
      "          'human': 1,\n",
      "          'sort': 1,\n",
      "          'modern': 1,\n",
      "          'equivalents': 1,\n",
      "          'naunton': 1,\n",
      "          'wayne': 1,\n",
      "          'basil': 1,\n",
      "          'radford': 1,\n",
      "          'duo': 1,\n",
      "          'showed': 1,\n",
      "          'satirizing': 1,\n",
      "          'english': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'several': 1,\n",
      "          'british': 1,\n",
      "          'postwar': 1,\n",
      "          'including': 1,\n",
      "          'dead': 1,\n",
      "          'lady': 1,\n",
      "          'vanishes': 1,\n",
      "          'passport': 1,\n",
      "          'pimlico': 1,\n",
      "          'originally': 1,\n",
      "          'supposedly': 1,\n",
      "          'typical': 1,\n",
      "          'generation': 1,\n",
      "          'x': 1,\n",
      "          'stoners': 1,\n",
      "          'nas': 1,\n",
      "          'series': 1,\n",
      "          'wore': 1,\n",
      "          'parts': 1,\n",
      "          'nin': 1,\n",
      "          'played': 1,\n",
      "          'jason': 1,\n",
      "          'mewes': 1,\n",
      "          'chased': 1,\n",
      "          'away': 1,\n",
      "          'front': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'dealing': 1,\n",
      "          'drugs': 1,\n",
      "          'leaves': 1,\n",
      "          'loose': 1,\n",
      "          'ends': 1,\n",
      "          'sure': 1,\n",
      "          'worthwhile': 1,\n",
      "          'hear': 1,\n",
      "          'book': 1,\n",
      "          'visually': 1,\n",
      "          'modeled': 1,\n",
      "          'adapted': 1,\n",
      "          'decide': 1,\n",
      "          'devote': 1,\n",
      "          'wrecking': 1,\n",
      "          'big': 1,\n",
      "          'industry': 1,\n",
      "          'cash': 1,\n",
      "          'shake': 1,\n",
      "          'company': 1,\n",
      "          'along': 1,\n",
      "          'mostly': 1,\n",
      "          'road': 1,\n",
      "          'get': 1,\n",
      "          'really': 1,\n",
      "          'pulls': 1,\n",
      "          'weight': 1,\n",
      "          'nsilent': 1,\n",
      "          'contribute': 1,\n",
      "          'reacting': 1,\n",
      "          'expressive': 1,\n",
      "          'face': 1,\n",
      "          'makes': 1,\n",
      "          'piece': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'straight': 1,\n",
      "          'man': 1,\n",
      "          'dean': 1,\n",
      "          'martin': 1,\n",
      "          'bud': 1,\n",
      "          'abbott': 1,\n",
      "          'could': 1,\n",
      "          'carry': 1,\n",
      "          'load': 1,\n",
      "          'extremely': 1,\n",
      "          'inventive': 1,\n",
      "          'sufficiently': 1,\n",
      "          'bland': 1,\n",
      "          'half': 1,\n",
      "          'lines': 1,\n",
      "          'show': 1,\n",
      "          'flair': 1,\n",
      "          'long': 1,\n",
      "          'successful': 1,\n",
      "          'ntheir': 1,\n",
      "          'starring': 1,\n",
      "          'roles': 1,\n",
      "          'young': 1,\n",
      "          'mind': 1,\n",
      "          'people': 1,\n",
      "          'laugh': 1,\n",
      "          'seen': 1,\n",
      "          'beforesometimes': 1,\n",
      "          'minutes': 1,\n",
      "          'nlike': 1,\n",
      "          'definitely': 1,\n",
      "          'amateurish': 1,\n",
      "          'real': 1,\n",
      "          'ncertainly': 1,\n",
      "          'involving': 1,\n",
      "          'excuses': 1,\n",
      "          'still': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'without': 1,\n",
      "          'humorous': 1,\n",
      "          'theological': 1,\n",
      "          'content': 1,\n",
      "          'offer': 1,\n",
      "          'much': 1,\n",
      "          'adult': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '10': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'hockey': 8,\n",
      "          'movie': 6,\n",
      "          'really': 6,\n",
      "          'characters': 5,\n",
      "          'nthey': 4,\n",
      "          'town': 4,\n",
      "          'nhe': 4,\n",
      "          'roach': 4,\n",
      "          'good': 3,\n",
      "          'together': 3,\n",
      "          'nothing': 3,\n",
      "          'mystery': 3,\n",
      "          'love': 3,\n",
      "          'jokes': 3,\n",
      "          'game': 3,\n",
      "          'charlie': 3,\n",
      "          'actually': 3,\n",
      "          'new': 3,\n",
      "          'film': 3,\n",
      "          'worth': 3,\n",
      "          'community': 3,\n",
      "          'alaska': 3,\n",
      "          'toward': 3,\n",
      "          'show': 2,\n",
      "          'give': 2,\n",
      "          'adds': 2,\n",
      "          'like': 2,\n",
      "          'even': 2,\n",
      "          'one': 2,\n",
      "          'movies': 2,\n",
      "          'son': 2,\n",
      "          'sports': 2,\n",
      "          'fame': 2,\n",
      "          'shows': 2,\n",
      "          'york': 2,\n",
      "          'rangers': 2,\n",
      "          'come': 2,\n",
      "          'mysterians': 2,\n",
      "          'bad': 2,\n",
      "          'non': 2,\n",
      "          'hand': 2,\n",
      "          'follows': 2,\n",
      "          'handful': 2,\n",
      "          'lives': 2,\n",
      "          'crowe': 2,\n",
      "          'nhes': 2,\n",
      "          'resentful': 2,\n",
      "          'eyes': 2,\n",
      "          'wife': 2,\n",
      "          'story': 2,\n",
      "          'would': 2,\n",
      "          'reynolds': 2,\n",
      "          'could': 2,\n",
      "          'interesting': 2,\n",
      "          'walter': 2,\n",
      "          'judge': 2,\n",
      "          'wants': 2,\n",
      "          'seriously': 2,\n",
      "          'performance': 2,\n",
      "          'none': 2,\n",
      "          'character': 2,\n",
      "          'life': 2,\n",
      "          'nbut': 2,\n",
      "          'scene': 2,\n",
      "          'try': 2,\n",
      "          'feel': 2,\n",
      "          'truly': 2,\n",
      "          'funny': 2,\n",
      "          'say': 2,\n",
      "          'ni': 2,\n",
      "          'laughs': 2,\n",
      "          'myers': 2,\n",
      "          'comic': 2,\n",
      "          'caricature': 2,\n",
      "          'previews': 1,\n",
      "          'pretty': 1,\n",
      "          'little': 1,\n",
      "          'plot': 1,\n",
      "          'emotional': 1,\n",
      "          'highlights': 1,\n",
      "          'spliced': 1,\n",
      "          'general': 1,\n",
      "          'impression': 1,\n",
      "          'script': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'full': 1,\n",
      "          '115': 1,\n",
      "          'minutes': 1,\n",
      "          'residents': 1,\n",
      "          'nmystery': 1,\n",
      "          'go': 1,\n",
      "          'texas': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'football': 1,\n",
      "          'townsfolk': 1,\n",
      "          'much': 1,\n",
      "          'acquit': 1,\n",
      "          'player': 1,\n",
      "          'whos': 1,\n",
      "          'guilty': 1,\n",
      "          'shooting': 1,\n",
      "          'another': 1,\n",
      "          'man': 1,\n",
      "          'yes': 1,\n",
      "          'thats': 1,\n",
      "          'nevery': 1,\n",
      "          'saturday': 1,\n",
      "          'best': 1,\n",
      "          'players': 1,\n",
      "          'pair': 1,\n",
      "          'whole': 1,\n",
      "          'comes': 1,\n",
      "          'watch': 1,\n",
      "          'towns': 1,\n",
      "          'prodigal': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'wrote': 1,\n",
      "          'article': 1,\n",
      "          'weekly': 1,\n",
      "          'illustrated': 1,\n",
      "          'nmysterys': 1,\n",
      "          'national': 1,\n",
      "          'abuzz': 1,\n",
      "          'na': 1,\n",
      "          'week': 1,\n",
      "          'later': 1,\n",
      "          'person': 1,\n",
      "          'brings': 1,\n",
      "          'offer': 1,\n",
      "          'nhl': 1,\n",
      "          'play': 1,\n",
      "          'locals': 1,\n",
      "          'see': 1,\n",
      "          'theyd': 1,\n",
      "          'money': 1,\n",
      "          'exhibition': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'turn': 1,\n",
      "          'butt': 1,\n",
      "          'leno': 1,\n",
      "          'letterman': 1,\n",
      "          'affected': 1,\n",
      "          'proposition': 1,\n",
      "          'nbiebe': 1,\n",
      "          'russell': 1,\n",
      "          'retired': 1,\n",
      "          'team': 1,\n",
      "          'asked': 1,\n",
      "          'coach': 1,\n",
      "          'boys': 1,\n",
      "          'including': 1,\n",
      "          'replacement': 1,\n",
      "          'already': 1,\n",
      "          'top': 1,\n",
      "          'making': 1,\n",
      "          'ncrowe': 1,\n",
      "          'given': 1,\n",
      "          'lot': 1,\n",
      "          'room': 1,\n",
      "          'act': 1,\n",
      "          'hes': 1,\n",
      "          'kind': 1,\n",
      "          'stuck': 1,\n",
      "          'constantly': 1,\n",
      "          'brooding': 1,\n",
      "          'ncharlie': 1,\n",
      "          'meanwhile': 1,\n",
      "          'born': 1,\n",
      "          'measure': 1,\n",
      "          'mans': 1,\n",
      "          'nhis': 1,\n",
      "          'gift': 1,\n",
      "          'feature': 1,\n",
      "          'way': 1,\n",
      "          'compensating': 1,\n",
      "          'better': 1,\n",
      "          'skater': 1,\n",
      "          'hoped': 1,\n",
      "          'earn': 1,\n",
      "          'respect': 1,\n",
      "          'merit': 1,\n",
      "          'townspeople': 1,\n",
      "          'find': 1,\n",
      "          'reasons': 1,\n",
      "          'continue': 1,\n",
      "          'disliking': 1,\n",
      "          'nburt': 1,\n",
      "          'whose': 1,\n",
      "          'courtroom': 1,\n",
      "          'befouled': 1,\n",
      "          'moronic': 1,\n",
      "          'jury': 1,\n",
      "          'fans': 1,\n",
      "          'nwalter': 1,\n",
      "          'experience': 1,\n",
      "          'collegiate': 1,\n",
      "          'actively': 1,\n",
      "          'tries': 1,\n",
      "          'put': 1,\n",
      "          'behind': 1,\n",
      "          'take': 1,\n",
      "          'get': 1,\n",
      "          'nreynolds': 1,\n",
      "          'sloppy': 1,\n",
      "          'writing': 1,\n",
      "          'andor': 1,\n",
      "          'editing': 1,\n",
      "          'keep': 1,\n",
      "          'corner': 1,\n",
      "          'never': 1,\n",
      "          'gets': 1,\n",
      "          'pull': 1,\n",
      "          'nbiebes': 1,\n",
      "          'mary': 1,\n",
      "          'mccormack': 1,\n",
      "          'understood': 1,\n",
      "          'unlike': 1,\n",
      "          'accept': 1,\n",
      "          'skewed': 1,\n",
      "          'view': 1,\n",
      "          'nshe': 1,\n",
      "          'chose': 1,\n",
      "          'husband': 1,\n",
      "          'wide': 1,\n",
      "          'open': 1,\n",
      "          'nher': 1,\n",
      "          'unique': 1,\n",
      "          'insight': 1,\n",
      "          'verbalized': 1,\n",
      "          'lasts': 1,\n",
      "          'gone': 1,\n",
      "          'carries': 1,\n",
      "          'hint': 1,\n",
      "          'deeper': 1,\n",
      "          'wisdom': 1,\n",
      "          'nmysterty': 1,\n",
      "          'well': 1,\n",
      "          'developed': 1,\n",
      "          'mentioning': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'real': 1,\n",
      "          'heart': 1,\n",
      "          'underlying': 1,\n",
      "          'thing': 1,\n",
      "          'ninstead': 1,\n",
      "          'screenwriters': 1,\n",
      "          'david': 1,\n",
      "          'e': 1,\n",
      "          'kelley': 1,\n",
      "          'sean': 1,\n",
      "          'obyrne': 1,\n",
      "          'cram': 1,\n",
      "          'entire': 1,\n",
      "          'human': 1,\n",
      "          'condition': 1,\n",
      "          'comedy': 1,\n",
      "          'make': 1,\n",
      "          'laugh': 1,\n",
      "          'cry': 1,\n",
      "          'outrage': 1,\n",
      "          'pride': 1,\n",
      "          'present': 1,\n",
      "          'framing': 1,\n",
      "          'cadence': 1,\n",
      "          'theres': 1,\n",
      "          'appropriately': 1,\n",
      "          'staged': 1,\n",
      "          'scenes': 1,\n",
      "          'sadness': 1,\n",
      "          'sad': 1,\n",
      "          'nas': 1,\n",
      "          'columnist': 1,\n",
      "          'molly': 1,\n",
      "          'ivins': 1,\n",
      "          'hat': 1,\n",
      "          'cattle': 1,\n",
      "          'perfect': 1,\n",
      "          'opportunity': 1,\n",
      "          'arises': 1,\n",
      "          'nthere': 1,\n",
      "          'funeral': 1,\n",
      "          'played': 1,\n",
      "          'appropriate': 1,\n",
      "          'gravity': 1,\n",
      "          'somber': 1,\n",
      "          'music': 1,\n",
      "          'nit': 1,\n",
      "          'chance': 1,\n",
      "          'reflect': 1,\n",
      "          'decide': 1,\n",
      "          'whats': 1,\n",
      "          'important': 1,\n",
      "          'nrussell': 1,\n",
      "          'steps': 1,\n",
      "          'forward': 1,\n",
      "          'speak': 1,\n",
      "          'spell': 1,\n",
      "          'metaphor': 1,\n",
      "          'us': 1,\n",
      "          'says': 1,\n",
      "          'matters': 1,\n",
      "          'nthen': 1,\n",
      "          'guess': 1,\n",
      "          'shallow': 1,\n",
      "          'appear': 1,\n",
      "          'nonly': 1,\n",
      "          'mildly': 1,\n",
      "          'probably': 1,\n",
      "          'deserves': 1,\n",
      "          '2': 1,\n",
      "          'stars': 1,\n",
      "          'laughed': 1,\n",
      "          'loud': 1,\n",
      "          'genuine': 1,\n",
      "          'places': 1,\n",
      "          'docked': 1,\n",
      "          'extra': 1,\n",
      "          'half': 1,\n",
      "          'star': 1,\n",
      "          'mike': 1,\n",
      "          'friend': 1,\n",
      "          'turned': 1,\n",
      "          'role': 1,\n",
      "          'didnt': 1,\n",
      "          'suit': 1,\n",
      "          'nmyers': 1,\n",
      "          'actor': 1,\n",
      "          'puts': 1,\n",
      "          'masks': 1,\n",
      "          'becomes': 1,\n",
      "          'outrageous': 1,\n",
      "          'great': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'dr': 1,\n",
      "          'evil': 1,\n",
      "          'scottish': 1,\n",
      "          'nnobody': 1,\n",
      "          'else': 1,\n",
      "          'mysterty': 1,\n",
      "          'nall': 1,\n",
      "          'people': 1,\n",
      "          'dramatic': 1,\n",
      "          'semiserious': 1,\n",
      "          'roles': 1,\n",
      "          'nfor': 1,\n",
      "          'bring': 1,\n",
      "          'cheap': 1,\n",
      "          'incredible': 1,\n",
      "          'contempt': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'audience': 1,\n",
      "          'indeed': 1,\n",
      "          'nits': 1,\n",
      "          'acknowledgment': 1,\n",
      "          'director': 1,\n",
      "          'taking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cliche': 6,\n",
      "          'mccoy': 6,\n",
      "          'character': 4,\n",
      "          'one': 4,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'bank': 4,\n",
      "          'nthe': 4,\n",
      "          'bad': 3,\n",
      "          'guy': 3,\n",
      "          'na': 3,\n",
      "          'cliches': 3,\n",
      "          'real': 3,\n",
      "          'make': 3,\n",
      "          'got': 3,\n",
      "          'sixyear': 3,\n",
      "          'doesnt': 3,\n",
      "          'know': 3,\n",
      "          'nand': 3,\n",
      "          'dialogue': 3,\n",
      "          'like': 3,\n",
      "          'criminal': 2,\n",
      "          'get': 2,\n",
      "          'ever': 2,\n",
      "          'example': 2,\n",
      "          'everything': 2,\n",
      "          'might': 2,\n",
      "          'basinger': 2,\n",
      "          'wants': 2,\n",
      "          'right': 2,\n",
      "          'old': 2,\n",
      "          'son': 2,\n",
      "          'even': 2,\n",
      "          'robbing': 2,\n",
      "          'schmidt': 2,\n",
      "          'trying': 2,\n",
      "          'kid': 2,\n",
      "          'nthis': 2,\n",
      "          'ni': 2,\n",
      "          'cant': 2,\n",
      "          'time': 2,\n",
      "          'supposed': 2,\n",
      "          'mention': 2,\n",
      "          'kilmer': 2,\n",
      "          'never': 2,\n",
      "          'soon': 2,\n",
      "          'suave': 1,\n",
      "          'cool': 1,\n",
      "          'collected': 1,\n",
      "          'rich': 1,\n",
      "          'uptight': 1,\n",
      "          'clumsy': 1,\n",
      "          'oaf': 1,\n",
      "          'add': 1,\n",
      "          'laughs': 1,\n",
      "          'owns': 1,\n",
      "          'wild': 1,\n",
      "          'animal': 1,\n",
      "          'crooked': 1,\n",
      "          'chauvinistic': 1,\n",
      "          'law': 1,\n",
      "          'enforcer': 1,\n",
      "          'type': 1,\n",
      "          'nat': 1,\n",
      "          'intense': 1,\n",
      "          'moment': 1,\n",
      "          'main': 1,\n",
      "          'tries': 1,\n",
      "          'away': 1,\n",
      "          'car': 1,\n",
      "          'trouble': 1,\n",
      "          'starting': 1,\n",
      "          'ncomplaining': 1,\n",
      "          'nok': 1,\n",
      "          'ok': 1,\n",
      "          'nso': 1,\n",
      "          'always': 1,\n",
      "          'hear': 1,\n",
      "          'nbut': 1,\n",
      "          'prime': 1,\n",
      "          'nnot': 1,\n",
      "          'uttered': 1,\n",
      "          'word': 1,\n",
      "          'frame': 1,\n",
      "          'whole': 1,\n",
      "          'isnt': 1,\n",
      "          'cut': 1,\n",
      "          'paste': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'nthey': 1,\n",
      "          'well': 1,\n",
      "          'use': 1,\n",
      "          'training': 1,\n",
      "          'robbery': 1,\n",
      "          '90s': 1,\n",
      "          'nkaren': 1,\n",
      "          'kim': 1,\n",
      "          'robber': 1,\n",
      "          'parole': 1,\n",
      "          'stay': 1,\n",
      "          'state': 1,\n",
      "          'prison': 1,\n",
      "          'nshe': 1,\n",
      "          'things': 1,\n",
      "          'go': 1,\n",
      "          'straight': 1,\n",
      "          'especially': 1,\n",
      "          'fact': 1,\n",
      "          'shes': 1,\n",
      "          'alive': 1,\n",
      "          'naware': 1,\n",
      "          'mccoys': 1,\n",
      "          'expertise': 1,\n",
      "          'sniveling': 1,\n",
      "          'jack': 1,\n",
      "          'terence': 1,\n",
      "          'stamp': 1,\n",
      "          'uses': 1,\n",
      "          'coerce': 1,\n",
      "          'returning': 1,\n",
      "          'past': 1,\n",
      "          'nhe': 1,\n",
      "          'pull': 1,\n",
      "          'elaborate': 1,\n",
      "          'heist': 1,\n",
      "          '18': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'caught': 1,\n",
      "          'rob': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'way': 1,\n",
      "          'somehow': 1,\n",
      "          'due': 1,\n",
      "          'refuses': 1,\n",
      "          'nwho': 1,\n",
      "          'knows': 1,\n",
      "          'hell': 1,\n",
      "          'n': 1,\n",
      "          'cue': 1,\n",
      "          'sinister': 1,\n",
      "          'laughter': 1,\n",
      "          'pathetically': 1,\n",
      "          'pitiful': 1,\n",
      "          'hard': 1,\n",
      "          'begin': 1,\n",
      "          'aforementioned': 1,\n",
      "          'brutally': 1,\n",
      "          'abundant': 1,\n",
      "          'stress': 1,\n",
      "          'enough': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'element': 1,\n",
      "          'whether': 1,\n",
      "          'plot': 1,\n",
      "          'twist': 1,\n",
      "          'etc': 1,\n",
      "          'damn': 1,\n",
      "          'generic': 1,\n",
      "          'youll': 1,\n",
      "          'wonder': 1,\n",
      "          'anyone': 1,\n",
      "          'working': 1,\n",
      "          'behind': 1,\n",
      "          'scenes': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'front': 1,\n",
      "          'camera': 1,\n",
      "          'nbasinger': 1,\n",
      "          'absolutely': 1,\n",
      "          'vacant': 1,\n",
      "          'us': 1,\n",
      "          'emotionally': 1,\n",
      "          'attached': 1,\n",
      "          'nheres': 1,\n",
      "          'someone': 1,\n",
      "          'spent': 1,\n",
      "          'banks': 1,\n",
      "          'heads': 1,\n",
      "          'onto': 1,\n",
      "          'street': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'nas': 1,\n",
      "          'confronts': 1,\n",
      "          'break': 1,\n",
      "          'tears': 1,\n",
      "          'nespecially': 1,\n",
      "          'neither': 1,\n",
      "          'zach': 1,\n",
      "          'english': 1,\n",
      "          'plays': 1,\n",
      "          'depth': 1,\n",
      "          'emotionalradiance': 1,\n",
      "          'whatsoever': 1,\n",
      "          'suppose': 1,\n",
      "          'val': 1,\n",
      "          'nyeah': 1,\n",
      "          'thats': 1,\n",
      "          'hes': 1,\n",
      "          'nquite': 1,\n",
      "          'sadly': 1,\n",
      "          'seeing': 1,\n",
      "          'discuss': 1,\n",
      "          'name': 1,\n",
      "          'second': 1,\n",
      "          'billing': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'admit': 1,\n",
      "          'potential': 1,\n",
      "          'role': 1,\n",
      "          'bumbling': 1,\n",
      "          'wannabe': 1,\n",
      "          'j': 1,\n",
      "          'nbarker': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'script': 1,\n",
      "          'allow': 1,\n",
      "          'much': 1,\n",
      "          'room': 1,\n",
      "          'improvement': 1,\n",
      "          'used': 1,\n",
      "          'bookends': 1,\n",
      "          'shows': 1,\n",
      "          'middle': 1,\n",
      "          'nwe': 1,\n",
      "          'appreciate': 1,\n",
      "          'brought': 1,\n",
      "          'project': 1,\n",
      "          'keep': 1,\n",
      "          'head': 1,\n",
      "          'water': 1,\n",
      "          'sinks': 1,\n",
      "          'cliched': 1,\n",
      "          'mess': 1,\n",
      "          'actors': 1,\n",
      "          'dummies': 1,\n",
      "          'moved': 1,\n",
      "          'unenthusiastic': 1,\n",
      "          'puppeteer': 1,\n",
      "          'particularly': 1,\n",
      "          'schmidts': 1,\n",
      "          'trite': 1,\n",
      "          'falls': 1,\n",
      "          'niagra': 1,\n",
      "          'definitely': 1,\n",
      "          'avoid': 1,\n",
      "          'folks': 1,\n",
      "          'anything': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 11,\n",
      "          'film': 10,\n",
      "          'bad': 4,\n",
      "          'acting': 4,\n",
      "          'two': 4,\n",
      "          'quality': 4,\n",
      "          'shot': 4,\n",
      "          '200': 3,\n",
      "          'cigarettes': 3,\n",
      "          'every': 3,\n",
      "          'moment': 3,\n",
      "          'plot': 3,\n",
      "          'party': 3,\n",
      "          'monicas': 3,\n",
      "          'nbut': 3,\n",
      "          'new': 3,\n",
      "          'common': 3,\n",
      "          'scene': 3,\n",
      "          'time': 3,\n",
      "          'even': 3,\n",
      "          'make': 2,\n",
      "          'best': 2,\n",
      "          'life': 2,\n",
      "          '95': 2,\n",
      "          'minutes': 2,\n",
      "          'movie': 2,\n",
      "          'watch': 2,\n",
      "          'nnot': 2,\n",
      "          'actually': 2,\n",
      "          'nthe': 2,\n",
      "          'predictable': 2,\n",
      "          'making': 2,\n",
      "          'nit': 2,\n",
      "          'yet': 2,\n",
      "          'invited': 2,\n",
      "          'evening': 2,\n",
      "          'york': 2,\n",
      "          'bond': 2,\n",
      "          'end': 2,\n",
      "          'arent': 2,\n",
      "          'come': 2,\n",
      "          'terms': 2,\n",
      "          'nfirst': 2,\n",
      "          'relationship': 2,\n",
      "          'sexual': 2,\n",
      "          'performance': 2,\n",
      "          'lack': 2,\n",
      "          'nhe': 2,\n",
      "          'characters': 2,\n",
      "          'poor': 2,\n",
      "          'production': 2,\n",
      "          'caitlyn': 2,\n",
      "          'character': 2,\n",
      "          'neither': 2,\n",
      "          'stephie': 2,\n",
      "          '2': 2,\n",
      "          'usual': 2,\n",
      "          'attempt': 2,\n",
      "          'level': 2,\n",
      "          'lucy': 2,\n",
      "          'friends': 2,\n",
      "          'ellie': 2,\n",
      "          'around': 2,\n",
      "          'nhowever': 2,\n",
      "          'seem': 2,\n",
      "          'worst': 2,\n",
      "          'subplot': 2,\n",
      "          'cindy': 2,\n",
      "          'night': 2,\n",
      "          'attempts': 2,\n",
      "          'self': 2,\n",
      "          'least': 2,\n",
      "          'decent': 2,\n",
      "          'glory': 2,\n",
      "          'get': 2,\n",
      "          'also': 2,\n",
      "          'matter': 2,\n",
      "          'ironically': 1,\n",
      "          'themes': 1,\n",
      "          'try': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'longer': 1,\n",
      "          'able': 1,\n",
      "          'say': 1,\n",
      "          'lived': 1,\n",
      "          'fullest': 1,\n",
      "          'spent': 1,\n",
      "          'otherwise': 1,\n",
      "          'perfectly': 1,\n",
      "          'good': 1,\n",
      "          'watching': 1,\n",
      "          'sad': 1,\n",
      "          'excuse': 1,\n",
      "          'nactually': 1,\n",
      "          'smoking': 1,\n",
      "          'couldnt': 1,\n",
      "          'worse': 1,\n",
      "          'pathetically': 1,\n",
      "          'overall': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'whatsoever': 1,\n",
      "          'scattered': 1,\n",
      "          'thin': 1,\n",
      "          'monumentally': 1,\n",
      "          'style': 1,\n",
      "          'resembles': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'december': 1,\n",
      "          '31': 1,\n",
      "          '1981': 1,\n",
      "          'big': 1,\n",
      "          'martha': 1,\n",
      "          'plimpton': 1,\n",
      "          'house': 1,\n",
      "          'arrived': 1,\n",
      "          'nher': 1,\n",
      "          '8': 1,\n",
      "          'guests': 1,\n",
      "          'several': 1,\n",
      "          'people': 1,\n",
      "          'picked': 1,\n",
      "          'throughout': 1,\n",
      "          'wandering': 1,\n",
      "          'streets': 1,\n",
      "          'city': 1,\n",
      "          'various': 1,\n",
      "          'groups': 1,\n",
      "          'nsome': 1,\n",
      "          'know': 1,\n",
      "          'slept': 1,\n",
      "          'monica': 1,\n",
      "          'total': 1,\n",
      "          'strangers': 1,\n",
      "          'face': 1,\n",
      "          'personal': 1,\n",
      "          'neuroses': 1,\n",
      "          'nights': 1,\n",
      "          'nthose': 1,\n",
      "          'ones': 1,\n",
      "          'issues': 1,\n",
      "          'help': 1,\n",
      "          'eric': 1,\n",
      "          'brian': 1,\n",
      "          'mccardie': 1,\n",
      "          'former': 1,\n",
      "          'boyfriend': 1,\n",
      "          'getting': 1,\n",
      "          'heartbreak': 1,\n",
      "          'terminating': 1,\n",
      "          'prematurely': 1,\n",
      "          'thereof': 1,\n",
      "          'bland': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'full': 1,\n",
      "          'dullness': 1,\n",
      "          'utterly': 1,\n",
      "          'stereotypical': 1,\n",
      "          'trait': 1,\n",
      "          'nbridget': 1,\n",
      "          'nicole': 1,\n",
      "          'parker': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'extremely': 1,\n",
      "          'sensuous': 1,\n",
      "          'young': 1,\n",
      "          'women': 1,\n",
      "          'looking': 1,\n",
      "          'someone': 1,\n",
      "          'handle': 1,\n",
      "          'desires': 1,\n",
      "          'years': 1,\n",
      "          'eve': 1,\n",
      "          'tag': 1,\n",
      "          'along': 1,\n",
      "          'nthey': 1,\n",
      "          'stumble': 1,\n",
      "          'across': 1,\n",
      "          'nameless': 1,\n",
      "          'bartender': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'truly': 1,\n",
      "          'perfect': 1,\n",
      "          'imperfections': 1,\n",
      "          'nether': 1,\n",
      "          'sexually': 1,\n",
      "          'deprived': 1,\n",
      "          'uncertain': 1,\n",
      "          'future': 1,\n",
      "          'law': 1,\n",
      "          'school': 1,\n",
      "          'nhis': 1,\n",
      "          'flaws': 1,\n",
      "          'boring': 1,\n",
      "          'unrealistic': 1,\n",
      "          'painful': 1,\n",
      "          'nas': 1,\n",
      "          'bridget': 1,\n",
      "          'passes': 1,\n",
      "          'entertained': 1,\n",
      "          'humored': 1,\n",
      "          'substandard': 1,\n",
      "          'comedy': 1,\n",
      "          'nmoving': 1,\n",
      "          'val': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'gabby': 1,\n",
      "          'hoffman': 1,\n",
      "          'teenage': 1,\n",
      "          'girls': 1,\n",
      "          'fake': 1,\n",
      "          'identification': 1,\n",
      "          'different': 1,\n",
      "          'thoughts': 1,\n",
      "          'nval': 1,\n",
      "          'cousin': 1,\n",
      "          'true': 1,\n",
      "          'fan': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'convinced': 1,\n",
      "          'vulnerable': 1,\n",
      "          'crime': 1,\n",
      "          'venture': 1,\n",
      "          'locations': 1,\n",
      "          'search': 1,\n",
      "          'cant': 1,\n",
      "          'find': 1,\n",
      "          'nparadoxically': 1,\n",
      "          'punks': 1,\n",
      "          'meet': 1,\n",
      "          'bar': 1,\n",
      "          'flee': 1,\n",
      "          'presence': 1,\n",
      "          'successful': 1,\n",
      "          'guide': 1,\n",
      "          'fears': 1,\n",
      "          'force': 1,\n",
      "          'relaxation': 1,\n",
      "          'upon': 1,\n",
      "          'warped': 1,\n",
      "          'minds': 1,\n",
      "          'nof': 1,\n",
      "          'insanely': 1,\n",
      "          'dull': 1,\n",
      "          'uninteresting': 1,\n",
      "          'couples': 1,\n",
      "          'approaches': 1,\n",
      "          'decency': 1,\n",
      "          'nwisely': 1,\n",
      "          'movies': 1,\n",
      "          'creators': 1,\n",
      "          'put': 1,\n",
      "          'heavy': 1,\n",
      "          'emphasis': 1,\n",
      "          'courtney': 1,\n",
      "          'love': 1,\n",
      "          'kevin': 1,\n",
      "          'paul': 1,\n",
      "          'rudd': 1,\n",
      "          'share': 1,\n",
      "          'dateless': 1,\n",
      "          'npaul': 1,\n",
      "          'broken': 1,\n",
      "          'long': 1,\n",
      "          'steady': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'starting': 1,\n",
      "          'loss': 1,\n",
      "          'informs': 1,\n",
      "          'sleeping': 1,\n",
      "          'complexity': 1,\n",
      "          'want': 1,\n",
      "          'reiterated': 1,\n",
      "          'intercourse': 1,\n",
      "          'bathroom': 1,\n",
      "          'stall': 1,\n",
      "          'occasion': 1,\n",
      "          'strange': 1,\n",
      "          'nfinally': 1,\n",
      "          'performances': 1,\n",
      "          'njack': 1,\n",
      "          'jay': 1,\n",
      "          'mohr': 1,\n",
      "          'kate': 1,\n",
      "          'hudson': 1,\n",
      "          'going': 1,\n",
      "          'short': 1,\n",
      "          'period': 1,\n",
      "          'jack': 1,\n",
      "          'learned': 1,\n",
      "          'took': 1,\n",
      "          'cindys': 1,\n",
      "          'virginity': 1,\n",
      "          'nwhile': 1,\n",
      "          'play': 1,\n",
      "          'predictably': 1,\n",
      "          'loathing': 1,\n",
      "          'male': 1,\n",
      "          'deal': 1,\n",
      "          'string': 1,\n",
      "          'stands': 1,\n",
      "          'includes': 1,\n",
      "          'recently': 1,\n",
      "          'deflowered': 1,\n",
      "          'nvery': 1,\n",
      "          'often': 1,\n",
      "          'putrid': 1,\n",
      "          'reveal': 1,\n",
      "          'occasional': 1,\n",
      "          'cinematography': 1,\n",
      "          'moments': 1,\n",
      "          'highlighted': 1,\n",
      "          'ninstead': 1,\n",
      "          'collection': 1,\n",
      "          'rough': 1,\n",
      "          'inconsistent': 1,\n",
      "          'cuts': 1,\n",
      "          'continuity': 1,\n",
      "          'inaccuracies': 1,\n",
      "          'noticeable': 1,\n",
      "          'goes': 1,\n",
      "          'another': 1,\n",
      "          'apparent': 1,\n",
      "          'order': 1,\n",
      "          'follows': 1,\n",
      "          'weekened': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'edgy': 1,\n",
      "          'edits': 1,\n",
      "          'nat': 1,\n",
      "          'times': 1,\n",
      "          'objects': 1,\n",
      "          'move': 1,\n",
      "          'hairstyles': 1,\n",
      "          'costumes': 1,\n",
      "          'change': 1,\n",
      "          'nthere': 1,\n",
      "          '4': 1,\n",
      "          'scenes': 1,\n",
      "          'taxi': 1,\n",
      "          'cab': 1,\n",
      "          'go': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'single': 1,\n",
      "          'anybody': 1,\n",
      "          'pay': 1,\n",
      "          'driver': 1,\n",
      "          'nand': 1,\n",
      "          'miserable': 1,\n",
      "          'may': 1,\n",
      "          'ray': 1,\n",
      "          'hope': 1,\n",
      "          'many': 1,\n",
      "          'plots': 1,\n",
      "          'nperhaps': 1,\n",
      "          'makers': 1,\n",
      "          'decided': 1,\n",
      "          'concentrate': 1,\n",
      "          'perhaps': 1,\n",
      "          'three': 1,\n",
      "          'might': 1,\n",
      "          'opportunity': 1,\n",
      "          'development': 1,\n",
      "          'payoff': 1,\n",
      "          'didnt': 1,\n",
      "          'happen': 1,\n",
      "          'way': 1,\n",
      "          'cast': 1,\n",
      "          'name': 1,\n",
      "          'actors': 1,\n",
      "          'forced': 1,\n",
      "          'roles': 1,\n",
      "          'could': 1,\n",
      "          'convert': 1,\n",
      "          'mediocre': 1,\n",
      "          'story': 1,\n",
      "          'line': 1,\n",
      "          'crashed': 1,\n",
      "          'burned': 1,\n",
      "          'quicker': 1,\n",
      "          'takes': 1,\n",
      "          'ball': 1,\n",
      "          'drop': 1,\n",
      "          'midnight': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'action': 7,\n",
      "          'nthe': 5,\n",
      "          'movie': 4,\n",
      "          'speed': 4,\n",
      "          'scenes': 4,\n",
      "          'plot': 4,\n",
      "          'characters': 4,\n",
      "          'mad': 3,\n",
      "          'bomber': 3,\n",
      "          'thriller': 3,\n",
      "          'blown': 3,\n",
      "          'away': 3,\n",
      "          'gaerity': 3,\n",
      "          'doves': 3,\n",
      "          'using': 3,\n",
      "          'film': 3,\n",
      "          'role': 3,\n",
      "          'high': 2,\n",
      "          'concept': 2,\n",
      "          'nin': 2,\n",
      "          'summer': 2,\n",
      "          'people': 2,\n",
      "          'begins': 2,\n",
      "          'prison': 2,\n",
      "          'northern': 2,\n",
      "          'ireland': 2,\n",
      "          'tommy': 2,\n",
      "          'lee': 2,\n",
      "          'jones': 2,\n",
      "          'ira': 2,\n",
      "          'terrorist': 2,\n",
      "          'devices': 2,\n",
      "          'boston': 2,\n",
      "          'dove': 2,\n",
      "          'even': 2,\n",
      "          'long': 2,\n",
      "          'provide': 2,\n",
      "          'nand': 2,\n",
      "          'main': 2,\n",
      "          'written': 2,\n",
      "          'john': 2,\n",
      "          '1990s': 1,\n",
      "          'would': 1,\n",
      "          'remembered': 1,\n",
      "          'era': 1,\n",
      "          'binary': 1,\n",
      "          'events': 1,\n",
      "          'hollywood': 1,\n",
      "          'two': 1,\n",
      "          'movies': 1,\n",
      "          'dealing': 1,\n",
      "          'subject': 1,\n",
      "          'precise': 1,\n",
      "          '1994': 1,\n",
      "          'weeks': 1,\n",
      "          'thrillride': 1,\n",
      "          'actionfest': 1,\n",
      "          'followed': 1,\n",
      "          'rather': 1,\n",
      "          'disappointing': 1,\n",
      "          'days': 1,\n",
      "          'associate': 1,\n",
      "          'title': 1,\n",
      "          '1992': 1,\n",
      "          'nicole': 1,\n",
      "          'eggert': 1,\n",
      "          'nude': 1,\n",
      "          'great': 1,\n",
      "          'talent': 1,\n",
      "          'make': 1,\n",
      "          'lethal': 1,\n",
      "          'explosive': 1,\n",
      "          'almost': 1,\n",
      "          'material': 1,\n",
      "          'escapes': 1,\n",
      "          'nhe': 1,\n",
      "          'comes': 1,\n",
      "          'accidentally': 1,\n",
      "          'notices': 1,\n",
      "          'jimmy': 1,\n",
      "          'jeff': 1,\n",
      "          'bridges': 1,\n",
      "          'dedicated': 1,\n",
      "          'bomb': 1,\n",
      "          'disposal': 1,\n",
      "          'expert': 1,\n",
      "          'within': 1,\n",
      "          'police': 1,\n",
      "          'nfew': 1,\n",
      "          'except': 1,\n",
      "          'know': 1,\n",
      "          'violent': 1,\n",
      "          'past': 1,\n",
      "          'used': 1,\n",
      "          'becoming': 1,\n",
      "          'sick': 1,\n",
      "          'violence': 1,\n",
      "          'betraying': 1,\n",
      "          'emigrating': 1,\n",
      "          'america': 1,\n",
      "          'changed': 1,\n",
      "          'name': 1,\n",
      "          'started': 1,\n",
      "          'experience': 1,\n",
      "          'good': 1,\n",
      "          'purpose': 1,\n",
      "          'ngaerity': 1,\n",
      "          'holds': 1,\n",
      "          'personally': 1,\n",
      "          'responsible': 1,\n",
      "          'captivity': 1,\n",
      "          'campaign': 1,\n",
      "          'bombing': 1,\n",
      "          'terror': 1,\n",
      "          'directed': 1,\n",
      "          'specifically': 1,\n",
      "          'colleagues': 1,\n",
      "          'friends': 1,\n",
      "          'relatives': 1,\n",
      "          'ndove': 1,\n",
      "          'going': 1,\n",
      "          'retire': 1,\n",
      "          'start': 1,\n",
      "          'family': 1,\n",
      "          'must': 1,\n",
      "          'confront': 1,\n",
      "          'nwhile': 1,\n",
      "          'doesnt': 1,\n",
      "          'try': 1,\n",
      "          'bother': 1,\n",
      "          'excuse': 1,\n",
      "          'spectacular': 1,\n",
      "          'tries': 1,\n",
      "          'conventional': 1,\n",
      "          'back': 1,\n",
      "          'story': 1,\n",
      "          'reason': 1,\n",
      "          'inferior': 1,\n",
      "          'nbadly': 1,\n",
      "          'badly': 1,\n",
      "          'sometimes': 1,\n",
      "          'worse': 1,\n",
      "          'nscreenplay': 1,\n",
      "          'bateer': 1,\n",
      "          'rice': 1,\n",
      "          'barely': 1,\n",
      "          'touches': 1,\n",
      "          'complicated': 1,\n",
      "          'issues': 1,\n",
      "          'tragedy': 1,\n",
      "          'cheap': 1,\n",
      "          'backstory': 1,\n",
      "          'cheaper': 1,\n",
      "          'drama': 1,\n",
      "          'course': 1,\n",
      "          'full': 1,\n",
      "          'implausibilities': 1,\n",
      "          'one': 1,\n",
      "          'fact': 1,\n",
      "          'fails': 1,\n",
      "          'explain': 1,\n",
      "          'single': 1,\n",
      "          'individual': 1,\n",
      "          'matter': 1,\n",
      "          'brilliant': 1,\n",
      "          'produce': 1,\n",
      "          'thousands': 1,\n",
      "          'deadly': 1,\n",
      "          'hold': 1,\n",
      "          'entire': 1,\n",
      "          'city': 1,\n",
      "          'bay': 1,\n",
      "          'nthose': 1,\n",
      "          'questions': 1,\n",
      "          'case': 1,\n",
      "          'could': 1,\n",
      "          'forgotten': 1,\n",
      "          'goes': 1,\n",
      "          'pauses': 1,\n",
      "          'filled': 1,\n",
      "          'cliched': 1,\n",
      "          'predictable': 1,\n",
      "          'situation': 1,\n",
      "          'background': 1,\n",
      "          'nbecause': 1,\n",
      "          'seems': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'boring': 1,\n",
      "          'times': 1,\n",
      "          'annoying': 1,\n",
      "          'element': 1,\n",
      "          'however': 1,\n",
      "          'nhis': 1,\n",
      "          'acting': 1,\n",
      "          'overthetop': 1,\n",
      "          'potentially': 1,\n",
      "          'fascinating': 1,\n",
      "          'villain': 1,\n",
      "          'turns': 1,\n",
      "          'pathetic': 1,\n",
      "          'caricature': 1,\n",
      "          'nthis': 1,\n",
      "          'painful': 1,\n",
      "          'contrast': 1,\n",
      "          'strong': 1,\n",
      "          'performance': 1,\n",
      "          'given': 1,\n",
      "          'actor': 1,\n",
      "          'fugitive': 1,\n",
      "          'bright': 1,\n",
      "          'points': 1,\n",
      "          'though': 1,\n",
      "          'nsome': 1,\n",
      "          'fine': 1,\n",
      "          'credited': 1,\n",
      "          'director': 1,\n",
      "          'stephen': 1,\n",
      "          'hopkins': 1,\n",
      "          'predator': 1,\n",
      "          'ii': 1,\n",
      "          'judgement': 1,\n",
      "          'night': 1,\n",
      "          'forrest': 1,\n",
      "          'whitaker': 1,\n",
      "          'really': 1,\n",
      "          'shines': 1,\n",
      "          'minor': 1,\n",
      "          'colleague': 1,\n",
      "          'nbut': 1,\n",
      "          'justifiably': 1,\n",
      "          'shadowed': 1,\n",
      "          'famous': 1,\n",
      "          'yet': 1,\n",
      "          'hardly': 1,\n",
      "          'unforgettable': 1,\n",
      "          'competitor': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'joan': 7,\n",
      "          'besson': 5,\n",
      "          'bessons': 3,\n",
      "          'battle': 3,\n",
      "          'milla': 3,\n",
      "          'film': 3,\n",
      "          'great': 3,\n",
      "          'young': 2,\n",
      "          'arc': 2,\n",
      "          'stirring': 2,\n",
      "          'scenes': 2,\n",
      "          'jovovich': 2,\n",
      "          'though': 2,\n",
      "          'since': 2,\n",
      "          'believe': 2,\n",
      "          'one': 2,\n",
      "          'joans': 2,\n",
      "          'conscience': 2,\n",
      "          'like': 2,\n",
      "          'aspect': 2,\n",
      "          'shes': 2,\n",
      "          'story': 2,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'tend': 1,\n",
      "          'appreciate': 1,\n",
      "          'naive': 1,\n",
      "          'unashamedly': 1,\n",
      "          'romantic': 1,\n",
      "          'worldview': 1,\n",
      "          'artsy': 1,\n",
      "          'european': 1,\n",
      "          'sensibility': 1,\n",
      "          'gone': 1,\n",
      "          'thoroughly': 1,\n",
      "          'hollywood': 1,\n",
      "          'nhis': 1,\n",
      "          '1994': 1,\n",
      "          'leon': 1,\n",
      "          'exciting': 1,\n",
      "          'absurdly': 1,\n",
      "          'moving': 1,\n",
      "          'thanks': 1,\n",
      "          'mainly': 1,\n",
      "          'interplay': 1,\n",
      "          'jean': 1,\n",
      "          'reno': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          '1997s': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'goofy': 1,\n",
      "          'paean': 1,\n",
      "          'love': 1,\n",
      "          'luv': 1,\n",
      "          'thats': 1,\n",
      "          'even': 1,\n",
      "          'hoot': 1,\n",
      "          'repeated': 1,\n",
      "          'viewings': 1,\n",
      "          'nbut': 1,\n",
      "          'mess': 1,\n",
      "          'despite': 1,\n",
      "          'mostly': 1,\n",
      "          'knockout': 1,\n",
      "          'presence': 1,\n",
      "          'closecropped': 1,\n",
      "          'maiden': 1,\n",
      "          'njovovich': 1,\n",
      "          'personal': 1,\n",
      "          'muse': 1,\n",
      "          'making': 1,\n",
      "          'last': 1,\n",
      "          'two': 1,\n",
      "          'films': 1,\n",
      "          'theyve': 1,\n",
      "          'separated': 1,\n",
      "          'magnetic': 1,\n",
      "          'energetic': 1,\n",
      "          'enough': 1,\n",
      "          'play': 1,\n",
      "          'credible': 1,\n",
      "          'long': 1,\n",
      "          'warrior': 1,\n",
      "          'also': 1,\n",
      "          'fabulous': 1,\n",
      "          'supermodellevel': 1,\n",
      "          'babe': 1,\n",
      "          'nand': 1,\n",
      "          'remains': 1,\n",
      "          'servicable': 1,\n",
      "          'action': 1,\n",
      "          'director': 1,\n",
      "          'especially': 1,\n",
      "          'facile': 1,\n",
      "          'nleading': 1,\n",
      "          'army': 1,\n",
      "          'seemingly': 1,\n",
      "          'impenetrable': 1,\n",
      "          'fortresses': 1,\n",
      "          'english': 1,\n",
      "          'struggle': 1,\n",
      "          'odds': 1,\n",
      "          'undeniably': 1,\n",
      "          'helps': 1,\n",
      "          'understand': 1,\n",
      "          'french': 1,\n",
      "          'could': 1,\n",
      "          'fervently': 1,\n",
      "          'god': 1,\n",
      "          'side': 1,\n",
      "          'nbessons': 1,\n",
      "          'big': 1,\n",
      "          'mistake': 1,\n",
      "          'think': 1,\n",
      "          'trying': 1,\n",
      "          'dramatize': 1,\n",
      "          'interior': 1,\n",
      "          'life': 1,\n",
      "          'subject': 1,\n",
      "          'nyes': 1,\n",
      "          'visions': 1,\n",
      "          'guarantee': 1,\n",
      "          'whatever': 1,\n",
      "          'image': 1,\n",
      "          'sympathetic': 1,\n",
      "          'audience': 1,\n",
      "          'conjures': 1,\n",
      "          'collective': 1,\n",
      "          'mind': 1,\n",
      "          'compelling': 1,\n",
      "          'blueeyed': 1,\n",
      "          'christ': 1,\n",
      "          'figure': 1,\n",
      "          'display': 1,\n",
      "          'hallucinatory': 1,\n",
      "          'dream': 1,\n",
      "          'sequences': 1,\n",
      "          'nthe': 1,\n",
      "          'whole': 1,\n",
      "          'conceit': 1,\n",
      "          'turns': 1,\n",
      "          'disaster': 1,\n",
      "          'right': 1,\n",
      "          'time': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'billed': 1,\n",
      "          'shows': 1,\n",
      "          'spouting': 1,\n",
      "          'platitudes': 1,\n",
      "          'sending': 1,\n",
      "          'poor': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'cell': 1,\n",
      "          'babbling': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'nthats': 1,\n",
      "          'kind': 1,\n",
      "          'shame': 1,\n",
      "          'quite': 1,\n",
      "          'well': 1,\n",
      "          'point': 1,\n",
      "          'charging': 1,\n",
      "          'banshee': 1,\n",
      "          'wail': 1,\n",
      "          'suggests': 1,\n",
      "          'eruption': 1,\n",
      "          'sublimated': 1,\n",
      "          'bloodthirstiness': 1,\n",
      "          'nthat': 1,\n",
      "          'darkly': 1,\n",
      "          'attractive': 1,\n",
      "          'character': 1,\n",
      "          'likely': 1,\n",
      "          'charismatic': 1,\n",
      "          'madwoman': 1,\n",
      "          'vessel': 1,\n",
      "          'lord': 1,\n",
      "          'less': 1,\n",
      "          'betrayed': 1,\n",
      "          'final': 1,\n",
      "          'reels': 1,\n",
      "          'browbeats': 1,\n",
      "          'killing': 1,\n",
      "          'overseen': 1,\n",
      "          'starts': 1,\n",
      "          'look': 1,\n",
      "          'little': 1,\n",
      "          'confused': 1,\n",
      "          'lady': 1,\n",
      "          'whos': 1,\n",
      "          'take': 1,\n",
      "          'fall': 1,\n",
      "          'nas': 1,\n",
      "          'winds': 1,\n",
      "          'condemned': 1,\n",
      "          'horrible': 1,\n",
      "          'death': 1,\n",
      "          'fire': 1,\n",
      "          'aiming': 1,\n",
      "          'tragedy': 1,\n",
      "          'psychological': 1,\n",
      "          'significance': 1,\n",
      "          'ntrouble': 1,\n",
      "          'hes': 1,\n",
      "          'chosen': 1,\n",
      "          'lurid': 1,\n",
      "          'often': 1,\n",
      "          'jokey': 1,\n",
      "          'tone': 1,\n",
      "          'balance': 1,\n",
      "          'picture': 1,\n",
      "          'including': 1,\n",
      "          'blithe': 1,\n",
      "          'cgi': 1,\n",
      "          'bloodshed': 1,\n",
      "          'impossible': 1,\n",
      "          'shake': 1,\n",
      "          'feeling': 1,\n",
      "          'particular': 1,\n",
      "          'vision': 1,\n",
      "          'middle': 1,\n",
      "          'ages': 1,\n",
      "          'extent': 1,\n",
      "          'nothing': 1,\n",
      "          'puton': 1,\n",
      "          'nthis': 1,\n",
      "          'glib': 1,\n",
      "          'prefab': 1,\n",
      "          'version': 1,\n",
      "          'makes': 1,\n",
      "          'grateful': 1,\n",
      "          'dreyers': 1,\n",
      "          'passion': 1,\n",
      "          '1928': 1,\n",
      "          'whose': 1,\n",
      "          'dialogue': 1,\n",
      "          'drawn': 1,\n",
      "          'actual': 1,\n",
      "          'transcripts': 1,\n",
      "          'trial': 1,\n",
      "          'stands': 1,\n",
      "          'harrowing': 1,\n",
      "          'experiences': 1,\n",
      "          'cinema': 1,\n",
      "          'ncompared': 1,\n",
      "          'messenger': 1,\n",
      "          'plays': 1,\n",
      "          'crime': 1,\n",
      "          'history': 1,\n",
      "          'n': 1,\n",
      "          'directed': 1,\n",
      "          'luc': 1,\n",
      "          'written': 1,\n",
      "          'andrew': 1,\n",
      "          'birkin': 1,\n",
      "          'cinematography': 1,\n",
      "          'thierry': 1,\n",
      "          'arbogast': 1,\n",
      "          'music': 1,\n",
      "          'eric': 1,\n",
      "          'serra': 1,\n",
      "          'starring': 1,\n",
      "          'franceusa': 1,\n",
      "          '1999': 1,\n",
      "          'ntheatrical': 1,\n",
      "          'ratio': 1,\n",
      "          '2': 1,\n",
      "          '35': 1,\n",
      "          '1': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'butcher': 8,\n",
      "          'nthe': 7,\n",
      "          'meat': 6,\n",
      "          'film': 6,\n",
      "          'clown': 5,\n",
      "          'man': 4,\n",
      "          'na': 4,\n",
      "          'comedy': 4,\n",
      "          'howard': 3,\n",
      "          'vernon': 3,\n",
      "          'frog': 3,\n",
      "          'house': 3,\n",
      "          'tenement': 3,\n",
      "          'nthere': 3,\n",
      "          'directors': 2,\n",
      "          'marc': 2,\n",
      "          'carojeanpierre': 2,\n",
      "          'jeunet': 2,\n",
      "          'dominique': 2,\n",
      "          'pinon': 2,\n",
      "          'louison': 2,\n",
      "          'marielaure': 2,\n",
      "          'dougnac': 2,\n",
      "          'julie': 2,\n",
      "          'clapet': 2,\n",
      "          'jeanclaude': 2,\n",
      "          'dreyfus': 2,\n",
      "          'karin': 2,\n",
      "          'viard': 2,\n",
      "          'holgado': 2,\n",
      "          'tapioca': 2,\n",
      "          'mathou': 2,\n",
      "          'kube': 2,\n",
      "          'boban': 2,\n",
      "          'janevski': 2,\n",
      "          'young': 2,\n",
      "          'rascal': 2,\n",
      "          'mikael': 2,\n",
      "          'todde': 2,\n",
      "          'chick': 2,\n",
      "          'ortega': 2,\n",
      "          'postman': 2,\n",
      "          'silvie': 2,\n",
      "          'laguna': 2,\n",
      "          'future': 2,\n",
      "          'boarding': 2,\n",
      "          'mostly': 2,\n",
      "          'times': 2,\n",
      "          'grain': 2,\n",
      "          'novelty': 2,\n",
      "          'thin': 2,\n",
      "          'butchers': 2,\n",
      "          'daughter': 2,\n",
      "          'two': 2,\n",
      "          'tenants': 2,\n",
      "          'lives': 2,\n",
      "          'woman': 2,\n",
      "          'forced': 2,\n",
      "          'also': 2,\n",
      "          'delicatessen': 1,\n",
      "          'screenwriters': 1,\n",
      "          'gilles': 1,\n",
      "          'adrienmarc': 1,\n",
      "          'caro': 1,\n",
      "          'cinematographer': 1,\n",
      "          'darius': 1,\n",
      "          'khondji': 1,\n",
      "          'editor': 1,\n",
      "          'herve': 1,\n",
      "          'schneid': 1,\n",
      "          'cast': 1,\n",
      "          'clapetthe': 1,\n",
      "          'mademoiselle': 1,\n",
      "          'plusse': 1,\n",
      "          'ticky': 1,\n",
      "          'marcel': 1,\n",
      "          'annemarie': 1,\n",
      "          'pisani': 1,\n",
      "          'madame': 1,\n",
      "          'jacques': 1,\n",
      "          'roger': 1,\n",
      "          'rufus': 1,\n",
      "          'robert': 1,\n",
      "          'edith': 1,\n",
      "          'ker': 1,\n",
      "          'granny': 1,\n",
      "          'aurore': 1,\n",
      "          'interligator': 1,\n",
      "          'runtime': 1,\n",
      "          '96': 1,\n",
      "          'miramaxconstellationugchatchette': 1,\n",
      "          'premiere': 1,\n",
      "          '1991france': 1,\n",
      "          'nreviewed': 1,\n",
      "          'dennis': 1,\n",
      "          'schwartz': 1,\n",
      "          'black': 1,\n",
      "          'set': 1,\n",
      "          'near': 1,\n",
      "          'run': 1,\n",
      "          'depraved': 1,\n",
      "          'played': 1,\n",
      "          'comic': 1,\n",
      "          'strip': 1,\n",
      "          'style': 1,\n",
      "          'entertaining': 1,\n",
      "          'value': 1,\n",
      "          'deeper': 1,\n",
      "          'satire': 1,\n",
      "          'features': 1,\n",
      "          'zany': 1,\n",
      "          'sophomoric': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'relies': 1,\n",
      "          'heavily': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'world': 1,\n",
      "          'fallen': 1,\n",
      "          'hard': 1,\n",
      "          'food': 1,\n",
      "          'shortages': 1,\n",
      "          'include': 1,\n",
      "          'serves': 1,\n",
      "          'human': 1,\n",
      "          'flesh': 1,\n",
      "          'customers': 1,\n",
      "          'pay': 1,\n",
      "          'almost': 1,\n",
      "          'valued': 1,\n",
      "          'commodity': 1,\n",
      "          'nthats': 1,\n",
      "          'big': 1,\n",
      "          'joke': 1,\n",
      "          'cannibalism': 1,\n",
      "          'idea': 1,\n",
      "          'wears': 1,\n",
      "          'mighty': 1,\n",
      "          'fast': 1,\n",
      "          'characters': 1,\n",
      "          'absurd': 1,\n",
      "          'sketched': 1,\n",
      "          'thinly': 1,\n",
      "          'us': 1,\n",
      "          'care': 1,\n",
      "          'nthis': 1,\n",
      "          'tasteless': 1,\n",
      "          'postapocalyptic': 1,\n",
      "          'french': 1,\n",
      "          'first': 1,\n",
      "          'feature': 1,\n",
      "          'codirectors': 1,\n",
      "          'nit': 1,\n",
      "          'failed': 1,\n",
      "          'reach': 1,\n",
      "          'funny': 1,\n",
      "          'bone': 1,\n",
      "          'instead': 1,\n",
      "          'left': 1,\n",
      "          'annoyed': 1,\n",
      "          'slight': 1,\n",
      "          'story': 1,\n",
      "          'dark': 1,\n",
      "          'projections': 1,\n",
      "          'nan': 1,\n",
      "          'excircus': 1,\n",
      "          'named': 1,\n",
      "          'films': 1,\n",
      "          'toogoodtobetrue': 1,\n",
      "          'hero': 1,\n",
      "          'answers': 1,\n",
      "          'ad': 1,\n",
      "          'work': 1,\n",
      "          'handyman': 1,\n",
      "          'landlord': 1,\n",
      "          'offers': 1,\n",
      "          'room': 1,\n",
      "          'board': 1,\n",
      "          'clumsy': 1,\n",
      "          'nearsighted': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'skinny': 1,\n",
      "          'weird': 1,\n",
      "          'looking': 1,\n",
      "          'make': 1,\n",
      "          'music': 1,\n",
      "          'together': 1,\n",
      "          'playing': 1,\n",
      "          'cello': 1,\n",
      "          'saw': 1,\n",
      "          'nthey': 1,\n",
      "          'innocents': 1,\n",
      "          'surrounded': 1,\n",
      "          'misfits': 1,\n",
      "          'suffering': 1,\n",
      "          'fear': 1,\n",
      "          'watched': 1,\n",
      "          'overbearing': 1,\n",
      "          'father': 1,\n",
      "          'lured': 1,\n",
      "          'past': 1,\n",
      "          'innocent': 1,\n",
      "          'victims': 1,\n",
      "          'put': 1,\n",
      "          'cleaver': 1,\n",
      "          'sell': 1,\n",
      "          'intends': 1,\n",
      "          'soon': 1,\n",
      "          'fixes': 1,\n",
      "          'entire': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'shabby': 1,\n",
      "          'odd': 1,\n",
      "          'lot': 1,\n",
      "          'bizarre': 1,\n",
      "          'malcontents': 1,\n",
      "          'trust': 1,\n",
      "          'youngsters': 1,\n",
      "          'kind': 1,\n",
      "          'mischief': 1,\n",
      "          'water': 1,\n",
      "          'floor': 1,\n",
      "          'raise': 1,\n",
      "          'frogs': 1,\n",
      "          'snails': 1,\n",
      "          'eats': 1,\n",
      "          'ntwo': 1,\n",
      "          'brothers': 1,\n",
      "          'create': 1,\n",
      "          'little': 1,\n",
      "          'cowmoo': 1,\n",
      "          'toys': 1,\n",
      "          'sells': 1,\n",
      "          'bullshit': 1,\n",
      "          'detector': 1,\n",
      "          'piece': 1,\n",
      "          'slutty': 1,\n",
      "          'wants': 1,\n",
      "          'aristocratic': 1,\n",
      "          'tries': 1,\n",
      "          'numerous': 1,\n",
      "          'commit': 1,\n",
      "          'suicide': 1,\n",
      "          'inept': 1,\n",
      "          'right': 1,\n",
      "          'afraid': 1,\n",
      "          'come': 1,\n",
      "          'night': 1,\n",
      "          'know': 1,\n",
      "          'communicate': 1,\n",
      "          'pipe': 1,\n",
      "          'runs': 1,\n",
      "          'building': 1,\n",
      "          'one': 1,\n",
      "          'scene': 1,\n",
      "          'musical': 1,\n",
      "          'harmony': 1,\n",
      "          'lovemaking': 1,\n",
      "          'gal': 1,\n",
      "          'bedsprings': 1,\n",
      "          'squeak': 1,\n",
      "          'sexcrazed': 1,\n",
      "          'lusts': 1,\n",
      "          'carries': 1,\n",
      "          'gun': 1,\n",
      "          'delivering': 1,\n",
      "          'mail': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'subplot': 1,\n",
      "          'band': 1,\n",
      "          'incompetent': 1,\n",
      "          'underground': 1,\n",
      "          'veggie': 1,\n",
      "          'fanatics': 1,\n",
      "          'called': 1,\n",
      "          'trogolodistes': 1,\n",
      "          'summoned': 1,\n",
      "          'rescue': 1,\n",
      "          'steal': 1,\n",
      "          'overloaded': 1,\n",
      "          'many': 1,\n",
      "          'eccentrics': 1,\n",
      "          'seemed': 1,\n",
      "          'surreal': 1,\n",
      "          'look': 1,\n",
      "          'added': 1,\n",
      "          'dramatic': 1,\n",
      "          'intensity': 1,\n",
      "          'ndelicatessen': 1,\n",
      "          'could': 1,\n",
      "          'appeal': 1,\n",
      "          'cult': 1,\n",
      "          'crowd': 1,\n",
      "          'like': 1,\n",
      "          'sliced': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'fans': 1,\n",
      "          'liked': 1,\n",
      "          'terry': 1,\n",
      "          'gilliams': 1,\n",
      "          'brazil': 1,\n",
      "          'similar': 1,\n",
      "          'spirit': 1,\n",
      "          'nneg': 1}),\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Counter({'jones': 7,\n",
      "          'nthe': 6,\n",
      "          'movie': 5,\n",
      "          'osmosis': 5,\n",
      "          'nosmosis': 4,\n",
      "          'may': 4,\n",
      "          'frank': 4,\n",
      "          'egg': 4,\n",
      "          'gross': 3,\n",
      "          'humor': 3,\n",
      "          'jokes': 3,\n",
      "          'thrax': 3,\n",
      "          'voiced': 3,\n",
      "          'nit': 3,\n",
      "          'falls': 2,\n",
      "          'theres': 2,\n",
      "          'movies': 2,\n",
      "          'anything': 2,\n",
      "          'even': 2,\n",
      "          'nits': 2,\n",
      "          'merely': 2,\n",
      "          'farrellys': 2,\n",
      "          'almost': 2,\n",
      "          'puns': 2,\n",
      "          'looks': 2,\n",
      "          'like': 2,\n",
      "          'one': 2,\n",
      "          'animation': 2,\n",
      "          'young': 2,\n",
      "          'find': 2,\n",
      "          'live': 2,\n",
      "          'action': 2,\n",
      "          'sequences': 2,\n",
      "          'nhe': 2,\n",
      "          'shower': 2,\n",
      "          'nfrank': 2,\n",
      "          'look': 2,\n",
      "          'better': 2,\n",
      "          'virus': 2,\n",
      "          'mouth': 2,\n",
      "          'nafter': 2,\n",
      "          'animated': 2,\n",
      "          'blood': 2,\n",
      "          'drix': 2,\n",
      "          'nand': 2,\n",
      "          'doesnt': 2,\n",
      "          'unappealing': 2,\n",
      "          'shame': 1,\n",
      "          'execution': 1,\n",
      "          'concept': 1,\n",
      "          'short': 1,\n",
      "          'premise': 1,\n",
      "          'lacking': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'crude': 1,\n",
      "          'disgusting': 1,\n",
      "          'directed': 1,\n",
      "          'farrelly': 1,\n",
      "          'brothers': 1,\n",
      "          'twisted': 1,\n",
      "          'siblings': 1,\n",
      "          'behind': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'irene': 1,\n",
      "          'couple': 1,\n",
      "          'mostly': 1,\n",
      "          'targeted': 1,\n",
      "          'belt': 1,\n",
      "          'nnot': 1,\n",
      "          'wrong': 1,\n",
      "          'scatology': 1,\n",
      "          'ni': 1,\n",
      "          'bet': 1,\n",
      "          'cavemen': 1,\n",
      "          'appreciated': 1,\n",
      "          'bathroom': 1,\n",
      "          'juvenile': 1,\n",
      "          'predictable': 1,\n",
      "          'nyou': 1,\n",
      "          'foresee': 1,\n",
      "          'viewing': 1,\n",
      "          'part': 1,\n",
      "          'inner': 1,\n",
      "          'anatomy': 1,\n",
      "          'sequence': 1,\n",
      "          'drawn': 1,\n",
      "          'old': 1,\n",
      "          'health': 1,\n",
      "          'class': 1,\n",
      "          'gone': 1,\n",
      "          'psycho': 1,\n",
      "          'trouble': 1,\n",
      "          'please': 1,\n",
      "          'heads': 1,\n",
      "          'teenage': 1,\n",
      "          'audience': 1,\n",
      "          'tame': 1,\n",
      "          'tastes': 1,\n",
      "          'nadults': 1,\n",
      "          'well': 1,\n",
      "          'lets': 1,\n",
      "          'say': 1,\n",
      "          'unappetizing': 1,\n",
      "          'plays': 1,\n",
      "          '100minute': 1,\n",
      "          'infomercial': 1,\n",
      "          'eat': 1,\n",
      "          'healthy': 1,\n",
      "          'foods': 1,\n",
      "          'lobby': 1,\n",
      "          'revolve': 1,\n",
      "          'around': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'seems': 1,\n",
      "          'grungiest': 1,\n",
      "          'human': 1,\n",
      "          'universe': 1,\n",
      "          'continually': 1,\n",
      "          'needs': 1,\n",
      "          'shave': 1,\n",
      "          'much': 1,\n",
      "          'consternation': 1,\n",
      "          'daughter': 1,\n",
      "          'fastfood': 1,\n",
      "          'addict': 1,\n",
      "          'eating': 1,\n",
      "          'everything': 1,\n",
      "          'kill': 1,\n",
      "          'works': 1,\n",
      "          'zoo': 1,\n",
      "          'animals': 1,\n",
      "          'cleaner': 1,\n",
      "          'presumably': 1,\n",
      "          'smell': 1,\n",
      "          'nfranks': 1,\n",
      "          'body': 1,\n",
      "          'invaded': 1,\n",
      "          'lethal': 1,\n",
      "          'eats': 1,\n",
      "          'hardboiled': 1,\n",
      "          'fallen': 1,\n",
      "          'ground': 1,\n",
      "          'enough': 1,\n",
      "          'picks': 1,\n",
      "          'dirt': 1,\n",
      "          'plops': 1,\n",
      "          'nnope': 1,\n",
      "          'pile': 1,\n",
      "          'first': 1,\n",
      "          'wrestle': 1,\n",
      "          'chimp': 1,\n",
      "          'wresting': 1,\n",
      "          'primates': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'meter': 1,\n",
      "          'tips': 1,\n",
      "          'scales': 1,\n",
      "          'ingesting': 1,\n",
      "          'begins': 1,\n",
      "          'nhere': 1,\n",
      "          'chris': 1,\n",
      "          'rock': 1,\n",
      "          'renegade': 1,\n",
      "          'white': 1,\n",
      "          'cell': 1,\n",
      "          'teamed': 1,\n",
      "          'frasiers': 1,\n",
      "          'david': 1,\n",
      "          'hyde': 1,\n",
      "          'pierce': 1,\n",
      "          '12hour': 1,\n",
      "          'painkiller': 1,\n",
      "          'cold': 1,\n",
      "          'capsule': 1,\n",
      "          'battle': 1,\n",
      "          'smoothly': 1,\n",
      "          'laurence': 1,\n",
      "          'fishburne': 1,\n",
      "          'nbasically': 1,\n",
      "          'cliched': 1,\n",
      "          'copbuddy': 1,\n",
      "          'rife': 1,\n",
      "          'clich': 1,\n",
      "          'genre': 1,\n",
      "          'click': 1,\n",
      "          'back': 1,\n",
      "          'tired': 1,\n",
      "          'familiar': 1,\n",
      "          'conventions': 1,\n",
      "          'instead': 1,\n",
      "          'creating': 1,\n",
      "          'new': 1,\n",
      "          'exciting': 1,\n",
      "          'situations': 1,\n",
      "          'lame': 1,\n",
      "          'searches': 1,\n",
      "          'snitch': 1,\n",
      "          'former': 1,\n",
      "          'flu': 1,\n",
      "          'pumping': 1,\n",
      "          'information': 1,\n",
      "          'tells': 1,\n",
      "          'funny': 1,\n",
      "          'fluish': 1,\n",
      "          'dont': 1,\n",
      "          'rise': 1,\n",
      "          'level': 1,\n",
      "          'scenes': 1,\n",
      "          'slob': 1,\n",
      "          'difficult': 1,\n",
      "          'fathom': 1,\n",
      "          'ever': 1,\n",
      "          'married': 1,\n",
      "          'sired': 1,\n",
      "          'child': 1,\n",
      "          'nhes': 1,\n",
      "          'bigger': 1,\n",
      "          'cartoon': 1,\n",
      "          'characters': 1,\n",
      "          'violent': 1,\n",
      "          'children': 1,\n",
      "          'burns': 1,\n",
      "          'dissolves': 1,\n",
      "          'cells': 1,\n",
      "          'right': 1,\n",
      "          'left': 1,\n",
      "          'rather': 1,\n",
      "          'twodimensional': 1,\n",
      "          'flat': 1,\n",
      "          'lacks': 1,\n",
      "          'scope': 1,\n",
      "          'depth': 1,\n",
      "          'leave': 1,\n",
      "          'scratching': 1,\n",
      "          'head': 1,\n",
      "          'maybe': 1,\n",
      "          'leaning': 1,\n",
      "          'toward': 1,\n",
      "          'walk': 1,\n",
      "          'theater': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'smith': 5,\n",
      "          'run': 3,\n",
      "          'enemy': 3,\n",
      "          'characters': 2,\n",
      "          'two': 2,\n",
      "          'watching': 2,\n",
      "          'hackman': 2,\n",
      "          'around': 2,\n",
      "          'parts': 2,\n",
      "          'nhe': 2,\n",
      "          'getting': 2,\n",
      "          'nenemy': 2,\n",
      "          'films': 2,\n",
      "          'insurrection': 2,\n",
      "          'hollywood': 1,\n",
      "          'interesting': 1,\n",
      "          'plotdriven': 1,\n",
      "          'suspense': 1,\n",
      "          'thrillers': 1,\n",
      "          'must': 1,\n",
      "          'spend': 1,\n",
      "          'hours': 1,\n",
      "          'gritty': 1,\n",
      "          'gene': 1,\n",
      "          'exchange': 1,\n",
      "          'obtuse': 1,\n",
      "          'dialogue': 1,\n",
      "          'dodging': 1,\n",
      "          'fireballs': 1,\n",
      "          'nin': 1,\n",
      "          'state': 1,\n",
      "          'exactly': 1,\n",
      "          'right': 1,\n",
      "          'na': 1,\n",
      "          'net': 1,\n",
      "          'conspiracy': 1,\n",
      "          'theory': 1,\n",
      "          'exciting': 1,\n",
      "          'talk': 1,\n",
      "          'cgi': 1,\n",
      "          'aliens': 1,\n",
      "          '1997s': 1,\n",
      "          'lame': 1,\n",
      "          'brained': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'nwill': 1,\n",
      "          'guy': 1,\n",
      "          'ever': 1,\n",
      "          'get': 1,\n",
      "          'real': 1,\n",
      "          'role': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'syndrome': 1,\n",
      "          'nthe': 1,\n",
      "          'plot': 1,\n",
      "          'bascially': 1,\n",
      "          'playing': 1,\n",
      "          'lawyer': 1,\n",
      "          'hot': 1,\n",
      "          'water': 1,\n",
      "          'high': 1,\n",
      "          'government': 1,\n",
      "          'murderers': 1,\n",
      "          'assassinated': 1,\n",
      "          'powerful': 1,\n",
      "          'political': 1,\n",
      "          'figure': 1,\n",
      "          'earlier': 1,\n",
      "          'movie': 1,\n",
      "          'tape': 1,\n",
      "          'killing': 1,\n",
      "          'gets': 1,\n",
      "          'hands': 1,\n",
      "          'inlists': 1,\n",
      "          'help': 1,\n",
      "          'old': 1,\n",
      "          'conspirator': 1,\n",
      "          'end': 1,\n",
      "          'er': 1,\n",
      "          'nknow': 1,\n",
      "          'one': 1,\n",
      "          'worst': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'nnot': 1,\n",
      "          'sloppy': 1,\n",
      "          'telling': 1,\n",
      "          'story': 1,\n",
      "          'facts': 1,\n",
      "          'straight': 1,\n",
      "          'acting': 1,\n",
      "          'mediocre': 1,\n",
      "          'energy': 1,\n",
      "          'driven': 1,\n",
      "          'didnt': 1,\n",
      "          'like': 1,\n",
      "          'always': 1,\n",
      "          'magically': 1,\n",
      "          'outsmarted': 1,\n",
      "          'badies': 1,\n",
      "          'extra': 1,\n",
      "          'seeming': 1,\n",
      "          'intelligent': 1,\n",
      "          'somehow': 1,\n",
      "          'got': 1,\n",
      "          'truck': 1,\n",
      "          'came': 1,\n",
      "          'time': 1,\n",
      "          'superior': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'different': 1,\n",
      "          'well': 1,\n",
      "          'everything': 1,\n",
      "          'fact': 1,\n",
      "          'outgrossed': 1,\n",
      "          'baffels': 1,\n",
      "          'nsomehow': 1,\n",
      "          'quality': 1,\n",
      "          'cant': 1,\n",
      "          'overshadow': 1,\n",
      "          'quantity': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'vegas': 6,\n",
      "          'film': 6,\n",
      "          'vacation': 5,\n",
      "          'chase': 4,\n",
      "          'dangelo': 3,\n",
      "          'griswold': 3,\n",
      "          'series': 3,\n",
      "          'quaid': 3,\n",
      "          'funny': 3,\n",
      "          'movie': 3,\n",
      "          'couple': 3,\n",
      "          'best': 3,\n",
      "          'family': 2,\n",
      "          'films': 2,\n",
      "          'two': 2,\n",
      "          'time': 2,\n",
      "          'ethan': 2,\n",
      "          'embry': 2,\n",
      "          'marisol': 2,\n",
      "          'nichols': 2,\n",
      "          'las': 2,\n",
      "          'nit': 2,\n",
      "          'point': 2,\n",
      "          'griswolds': 2,\n",
      "          'would': 2,\n",
      "          'way': 2,\n",
      "          'actually': 2,\n",
      "          'none': 2,\n",
      "          'might': 2,\n",
      "          'moments': 2,\n",
      "          'involved': 2,\n",
      "          'nthe': 2,\n",
      "          'moment': 2,\n",
      "          'first': 2,\n",
      "          'fourth': 1,\n",
      "          'starring': 1,\n",
      "          'chevy': 1,\n",
      "          'beverly': 1,\n",
      "          'heads': 1,\n",
      "          'hapless': 1,\n",
      "          'nas': 1,\n",
      "          'three': 1,\n",
      "          'children': 1,\n",
      "          'rusty': 1,\n",
      "          'audrey': 1,\n",
      "          'played': 1,\n",
      "          'revolving': 1,\n",
      "          'actors': 1,\n",
      "          'nthis': 1,\n",
      "          'fill': 1,\n",
      "          'roles': 1,\n",
      "          'nalso': 1,\n",
      "          'back': 1,\n",
      "          'cousin': 1,\n",
      "          'eddie': 1,\n",
      "          'randy': 1,\n",
      "          'slob': 1,\n",
      "          'relative': 1,\n",
      "          'seems': 1,\n",
      "          'bring': 1,\n",
      "          'problems': 1,\n",
      "          'wherever': 1,\n",
      "          'goes': 1,\n",
      "          'nin': 1,\n",
      "          'clark': 1,\n",
      "          'decides': 1,\n",
      "          'take': 1,\n",
      "          'wife': 1,\n",
      "          'ellen': 1,\n",
      "          'renew': 1,\n",
      "          'wedding': 1,\n",
      "          'vows': 1,\n",
      "          'comedy': 1,\n",
      "          'supposed': 1,\n",
      "          'ensue': 1,\n",
      "          'napparently': 1,\n",
      "          'filmmakers': 1,\n",
      "          'thought': 1,\n",
      "          'putting': 1,\n",
      "          'wouldnt': 1,\n",
      "          'bother': 1,\n",
      "          'write': 1,\n",
      "          'jokes': 1,\n",
      "          'script': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'thats': 1,\n",
      "          'looks': 1,\n",
      "          'watching': 1,\n",
      "          'turkey': 1,\n",
      "          'nabout': 1,\n",
      "          'half': 1,\n",
      "          'began': 1,\n",
      "          'serious': 1,\n",
      "          'doubts': 1,\n",
      "          'whether': 1,\n",
      "          'single': 1,\n",
      "          'laugh': 1,\n",
      "          'entire': 1,\n",
      "          'since': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'snickered': 1,\n",
      "          'times': 1,\n",
      "          'smiled': 1,\n",
      "          'gags': 1,\n",
      "          'ni': 1,\n",
      "          'add': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'loosely': 1,\n",
      "          'came': 1,\n",
      "          'result': 1,\n",
      "          'anything': 1,\n",
      "          'nthey': 1,\n",
      "          'well': 1,\n",
      "          'stayed': 1,\n",
      "          'home': 1,\n",
      "          'much': 1,\n",
      "          'contributed': 1,\n",
      "          'things': 1,\n",
      "          'kids': 1,\n",
      "          'manage': 1,\n",
      "          'adventures': 1,\n",
      "          'nrusty': 1,\n",
      "          'becomes': 1,\n",
      "          'high': 1,\n",
      "          'roller': 1,\n",
      "          'providing': 1,\n",
      "          'nevery': 1,\n",
      "          'gag': 1,\n",
      "          'made': 1,\n",
      "          'apparent': 1,\n",
      "          'stopped': 1,\n",
      "          'third': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'driving': 1,\n",
      "          'highway': 1,\n",
      "          'holiday': 1,\n",
      "          'road': 1,\n",
      "          'theme': 1,\n",
      "          'original': 1,\n",
      "          'begins': 1,\n",
      "          'play': 1,\n",
      "          'nchristie': 1,\n",
      "          'brinkley': 1,\n",
      "          'red': 1,\n",
      "          'ferrari': 1,\n",
      "          'also': 1,\n",
      "          'drive': 1,\n",
      "          'cute': 1,\n",
      "          'really': 1,\n",
      "          'remind': 1,\n",
      "          'far': 1,\n",
      "          'fallen': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'gay': 5,\n",
      "          'one': 4,\n",
      "          'money': 3,\n",
      "          'nit': 3,\n",
      "          'get': 3,\n",
      "          'makes': 3,\n",
      "          'gang': 3,\n",
      "          'festival': 2,\n",
      "          'ever': 2,\n",
      "          'nthis': 2,\n",
      "          'emerging': 2,\n",
      "          'masters': 2,\n",
      "          'series': 2,\n",
      "          'years': 2,\n",
      "          'marcelo': 2,\n",
      "          'pi': 2,\n",
      "          'eyro': 2,\n",
      "          'leader': 2,\n",
      "          'causes': 2,\n",
      "          'men': 2,\n",
      "          'long': 2,\n",
      "          'movies': 2,\n",
      "          'nthe': 2,\n",
      "          'explicit': 2,\n",
      "          'sex': 2,\n",
      "          'drug': 2,\n",
      "          'use': 2,\n",
      "          'violence': 2,\n",
      "          'bad': 2,\n",
      "          'theres': 2,\n",
      "          'burnt': 1,\n",
      "          'perfect': 1,\n",
      "          'show': 1,\n",
      "          'twice': 1,\n",
      "          'thankfully': 1,\n",
      "          'hear': 1,\n",
      "          'seattle': 1,\n",
      "          'international': 1,\n",
      "          '2001s': 1,\n",
      "          'easily': 1,\n",
      "          'worst': 1,\n",
      "          'nbilled': 1,\n",
      "          'bonnie': 1,\n",
      "          'clyde': 1,\n",
      "          'gritty': 1,\n",
      "          'director': 1,\n",
      "          'highlight': 1,\n",
      "          'welldesigned': 1,\n",
      "          'title': 1,\n",
      "          'sequence': 1,\n",
      "          'ntwo': 1,\n",
      "          'lovers': 1,\n",
      "          'involved': 1,\n",
      "          'bank': 1,\n",
      "          'robbery': 1,\n",
      "          'whose': 1,\n",
      "          'plan': 1,\n",
      "          'screwed': 1,\n",
      "          'angry': 1,\n",
      "          'send': 1,\n",
      "          'boys': 1,\n",
      "          'guys': 1,\n",
      "          'may': 1,\n",
      "          'actually': 1,\n",
      "          'nhiding': 1,\n",
      "          'prostitutes': 1,\n",
      "          'apartment': 1,\n",
      "          'two': 1,\n",
      "          'must': 1,\n",
      "          'fight': 1,\n",
      "          'police': 1,\n",
      "          'members': 1,\n",
      "          'showdown': 1,\n",
      "          'conclusion': 1,\n",
      "          'nif': 1,\n",
      "          'caught': 1,\n",
      "          'risk': 1,\n",
      "          'losing': 1,\n",
      "          'love': 1,\n",
      "          'nas': 1,\n",
      "          'added': 1,\n",
      "          'emotional': 1,\n",
      "          'bonus': 1,\n",
      "          'dying': 1,\n",
      "          'something': 1,\n",
      "          'like': 1,\n",
      "          'neverything': 1,\n",
      "          'happens': 1,\n",
      "          'quick': 1,\n",
      "          'confusing': 1,\n",
      "          'completely': 1,\n",
      "          'lost': 1,\n",
      "          'nclarity': 1,\n",
      "          'isnt': 1,\n",
      "          'exactly': 1,\n",
      "          'striving': 1,\n",
      "          'virtue': 1,\n",
      "          'little': 1,\n",
      "          'hard': 1,\n",
      "          'pick': 1,\n",
      "          'nnot': 1,\n",
      "          'much': 1,\n",
      "          'could': 1,\n",
      "          'really': 1,\n",
      "          'happened': 1,\n",
      "          'though': 1,\n",
      "          'main': 1,\n",
      "          'events': 1,\n",
      "          'twohour': 1,\n",
      "          'homosexual': 1,\n",
      "          'heterosexual': 1,\n",
      "          'graphic': 1,\n",
      "          'extreme': 1,\n",
      "          'strong': 1,\n",
      "          'language': 1,\n",
      "          'nlots': 1,\n",
      "          'material': 1,\n",
      "          'never': 1,\n",
      "          'thing': 1,\n",
      "          'reason': 1,\n",
      "          'purpose': 1,\n",
      "          'anything': 1,\n",
      "          'nmost': 1,\n",
      "          'scenes': 1,\n",
      "          'come': 1,\n",
      "          'silly': 1,\n",
      "          'heavy': 1,\n",
      "          'comes': 1,\n",
      "          'ridiculous': 1,\n",
      "          'depressing': 1,\n",
      "          'appears': 1,\n",
      "          'cowrote': 1,\n",
      "          'figueras': 1,\n",
      "          'novel': 1,\n",
      "          'ricardo': 1,\n",
      "          'piglia': 1,\n",
      "          'purposefully': 1,\n",
      "          'adds': 1,\n",
      "          'blood': 1,\n",
      "          'lovemaking': 1,\n",
      "          'amusement': 1,\n",
      "          'nhe': 1,\n",
      "          'actors': 1,\n",
      "          'sweaty': 1,\n",
      "          'dirty': 1,\n",
      "          'possible': 1,\n",
      "          'snort': 1,\n",
      "          'cocaine': 1,\n",
      "          'gives': 1,\n",
      "          'guns': 1,\n",
      "          'condoms': 1,\n",
      "          'lets': 1,\n",
      "          'go': 1,\n",
      "          'nburnt': 1,\n",
      "          'pointless': 1,\n",
      "          'performances': 1,\n",
      "          'tries': 1,\n",
      "          'thrill': 1,\n",
      "          'shock': 1,\n",
      "          'boredom': 1,\n",
      "          'ngod': 1,\n",
      "          'forbid': 1,\n",
      "          'distributor': 1,\n",
      "          'nanother': 1,\n",
      "          'disappointing': 1,\n",
      "          'socalled': 1,\n",
      "          'npass': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'theyre': 2,\n",
      "          'mod': 2,\n",
      "          'squad': 2,\n",
      "          'action': 2,\n",
      "          'claire': 1,\n",
      "          'danes': 1,\n",
      "          'giovanni': 1,\n",
      "          'ribisi': 1,\n",
      "          'omar': 1,\n",
      "          'epps': 1,\n",
      "          'make': 1,\n",
      "          'likable': 1,\n",
      "          'trio': 1,\n",
      "          'protagonists': 1,\n",
      "          'palatable': 1,\n",
      "          'element': 1,\n",
      "          'lamebrained': 1,\n",
      "          'bigscreen': 1,\n",
      "          'version': 1,\n",
      "          '70s': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'originality': 1,\n",
      "          'block': 1,\n",
      "          'wood': 1,\n",
      "          'well': 1,\n",
      "          'would': 1,\n",
      "          'could': 1,\n",
      "          'decipher': 1,\n",
      "          'characters': 1,\n",
      "          'blank': 1,\n",
      "          'slates': 1,\n",
      "          'scott': 1,\n",
      "          'silvers': 1,\n",
      "          'perfunctory': 1,\n",
      "          'sequences': 1,\n",
      "          'cliched': 1,\n",
      "          'come': 1,\n",
      "          'nby': 1,\n",
      "          'sheer': 1,\n",
      "          'force': 1,\n",
      "          'talent': 1,\n",
      "          'three': 1,\n",
      "          'actors': 1,\n",
      "          'wring': 1,\n",
      "          'marginal': 1,\n",
      "          'enjoyment': 1,\n",
      "          'proceedings': 1,\n",
      "          'whenever': 1,\n",
      "          'screen': 1,\n",
      "          'secondrate': 1,\n",
      "          'picture': 1,\n",
      "          'firstrate': 1,\n",
      "          'cast': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 22,\n",
      "          'haunting': 6,\n",
      "          'one': 5,\n",
      "          'bad': 5,\n",
      "          'nit': 5,\n",
      "          'confusing': 4,\n",
      "          'movie': 4,\n",
      "          'get': 4,\n",
      "          'plot': 4,\n",
      "          'nthe': 4,\n",
      "          'house': 4,\n",
      "          'great': 4,\n",
      "          'horror': 3,\n",
      "          'nthey': 3,\n",
      "          'like': 3,\n",
      "          'nfor': 3,\n",
      "          'getting': 3,\n",
      "          'dialogue': 3,\n",
      "          'neeson': 3,\n",
      "          'films': 3,\n",
      "          'lili': 3,\n",
      "          'taylor': 3,\n",
      "          'gives': 3,\n",
      "          'luke': 3,\n",
      "          'us': 2,\n",
      "          'post': 2,\n",
      "          'things': 2,\n",
      "          'nbut': 2,\n",
      "          'particular': 2,\n",
      "          'instance': 2,\n",
      "          'titles': 2,\n",
      "          'pretty': 2,\n",
      "          'title': 2,\n",
      "          'basically': 2,\n",
      "          'dry': 2,\n",
      "          'nliam': 2,\n",
      "          'depth': 2,\n",
      "          'least': 2,\n",
      "          'unfortunately': 2,\n",
      "          'make': 2,\n",
      "          'nbefore': 2,\n",
      "          'looking': 2,\n",
      "          'looks': 2,\n",
      "          'beautiful': 2,\n",
      "          'head': 2,\n",
      "          'scared': 2,\n",
      "          'even': 2,\n",
      "          'eerie': 2,\n",
      "          'hill': 2,\n",
      "          'performance': 2,\n",
      "          'nhe': 2,\n",
      "          'character': 2,\n",
      "          'characters': 2,\n",
      "          'potential': 2,\n",
      "          'suffer': 2,\n",
      "          'scene': 2,\n",
      "          'director': 2,\n",
      "          'makes': 2,\n",
      "          'end': 2,\n",
      "          'sense': 2,\n",
      "          'nand': 2,\n",
      "          'reason': 2,\n",
      "          'good': 2,\n",
      "          'nhopefully': 2,\n",
      "          'forgets': 1,\n",
      "          'true': 1,\n",
      "          'meaning': 1,\n",
      "          'scare': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'probably': 1,\n",
      "          'considering': 1,\n",
      "          'website': 1,\n",
      "          'know': 1,\n",
      "          'trivia': 1,\n",
      "          'illustrations': 1,\n",
      "          'guess': 1,\n",
      "          'facts': 1,\n",
      "          'always': 1,\n",
      "          'quot': 1,\n",
      "          'namequot': 1,\n",
      "          'joke': 1,\n",
      "          'try': 1,\n",
      "          'rename': 1,\n",
      "          'playing': 1,\n",
      "          'different': 1,\n",
      "          'small': 1,\n",
      "          'soldiers': 1,\n",
      "          'little': 1,\n",
      "          'infantry': 1,\n",
      "          'fatigues': 1,\n",
      "          'smaller': 1,\n",
      "          'size': 1,\n",
      "          'nwell': 1,\n",
      "          'seeing': 1,\n",
      "          'names': 1,\n",
      "          'well': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'otherwise': 1,\n",
      "          'id': 1,\n",
      "          'angry': 1,\n",
      "          'emails': 1,\n",
      "          'overprotective': 1,\n",
      "          'mothers': 1,\n",
      "          'nthat': 1,\n",
      "          'would': 1,\n",
      "          'nok': 1,\n",
      "          'fits': 1,\n",
      "          'perfectly': 1,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'combined': 1,\n",
      "          'boring': 1,\n",
      "          'completes': 1,\n",
      "          'formula': 1,\n",
      "          'cinematic': 1,\n",
      "          'bomb': 1,\n",
      "          'gets': 1,\n",
      "          'wrapped': 1,\n",
      "          'without': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'exciting': 1,\n",
      "          'nothing': 1,\n",
      "          'trash': 1,\n",
      "          'still': 1,\n",
      "          'boatload': 1,\n",
      "          'money': 1,\n",
      "          'rant': 1,\n",
      "          'rave': 1,\n",
      "          'let': 1,\n",
      "          'point': 1,\n",
      "          'stress': 1,\n",
      "          'word': 1,\n",
      "          'bright': 1,\n",
      "          'spots': 1,\n",
      "          'nfirst': 1,\n",
      "          'also': 1,\n",
      "          'dark': 1,\n",
      "          'spot': 1,\n",
      "          'hard': 1,\n",
      "          'frightened': 1,\n",
      "          'nthis': 1,\n",
      "          'something': 1,\n",
      "          'rears': 1,\n",
      "          'ugly': 1,\n",
      "          'points': 1,\n",
      "          'nthings': 1,\n",
      "          'look': 1,\n",
      "          'awe': 1,\n",
      "          'instead': 1,\n",
      "          'straight': 1,\n",
      "          'nhaunted': 1,\n",
      "          'contain': 1,\n",
      "          'element': 1,\n",
      "          'slightly': 1,\n",
      "          'successful': 1,\n",
      "          'bit': 1,\n",
      "          'frightening': 1,\n",
      "          'never': 1,\n",
      "          'heard': 1,\n",
      "          'glad': 1,\n",
      "          'nshe': 1,\n",
      "          'satisfactory': 1,\n",
      "          'ndespite': 1,\n",
      "          'boringconfusing': 1,\n",
      "          'concept': 1,\n",
      "          'manages': 1,\n",
      "          'light': 1,\n",
      "          'screen': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'appears': 1,\n",
      "          'costars': 1,\n",
      "          'usually': 1,\n",
      "          'following': 1,\n",
      "          'right': 1,\n",
      "          'behind': 1,\n",
      "          'nowen': 1,\n",
      "          'wilson': 1,\n",
      "          'plays': 1,\n",
      "          'cast': 1,\n",
      "          'member': 1,\n",
      "          'close': 1,\n",
      "          'giving': 1,\n",
      "          'admirable': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'development': 1,\n",
      "          'poor': 1,\n",
      "          'areas': 1,\n",
      "          'nall': 1,\n",
      "          'desperately': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'nwilson': 1,\n",
      "          'seems': 1,\n",
      "          'needed': 1,\n",
      "          'add': 1,\n",
      "          'laughs': 1,\n",
      "          'catherine': 1,\n",
      "          'zetajones': 1,\n",
      "          'ntheir': 1,\n",
      "          'must': 1,\n",
      "          'wicked': 1,\n",
      "          'mood': 1,\n",
      "          'swings': 1,\n",
      "          'turn': 1,\n",
      "          'ruthless': 1,\n",
      "          'compassionate': 1,\n",
      "          'brave': 1,\n",
      "          'whatnot': 1,\n",
      "          'believable': 1,\n",
      "          'final': 1,\n",
      "          'nail': 1,\n",
      "          'hauntings': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'coffin': 1,\n",
      "          'terrible': 1,\n",
      "          'opening': 1,\n",
      "          'important': 1,\n",
      "          'obvious': 1,\n",
      "          'closeups': 1,\n",
      "          'play': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'nas': 1,\n",
      "          'sat': 1,\n",
      "          'kept': 1,\n",
      "          'wondering': 1,\n",
      "          'trying': 1,\n",
      "          'accomplish': 1,\n",
      "          'nnell': 1,\n",
      "          'taylors': 1,\n",
      "          'goes': 1,\n",
      "          'hunted': 1,\n",
      "          'savior': 1,\n",
      "          'audience': 1,\n",
      "          'reasoning': 1,\n",
      "          'ridiculous': 1,\n",
      "          'changes': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'forces': 1,\n",
      "          'viewer': 1,\n",
      "          'various': 1,\n",
      "          'assumptions': 1,\n",
      "          'give': 1,\n",
      "          'indepth': 1,\n",
      "          'information': 1,\n",
      "          'beginning': 1,\n",
      "          'nell': 1,\n",
      "          'involved': 1,\n",
      "          'program': 1,\n",
      "          'zilch': 1,\n",
      "          'four': 1,\n",
      "          'nplus': 1,\n",
      "          'two': 1,\n",
      "          'wiped': 1,\n",
      "          'first': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'worst': 1,\n",
      "          'part': 1,\n",
      "          'killings': 1,\n",
      "          'kill': 1,\n",
      "          'nno': 1,\n",
      "          'whatsoever': 1,\n",
      "          'literally': 1,\n",
      "          'noverall': 1,\n",
      "          'epitome': 1,\n",
      "          'nbad': 1,\n",
      "          'storyline': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'liam': 1,\n",
      "          'rebound': 1,\n",
      "          'used': 1,\n",
      "          'full': 1,\n",
      "          'recognized': 1,\n",
      "          'job': 1,\n",
      "          'hopefully': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'project': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'siege': 7,\n",
      "          'made': 4,\n",
      "          'even': 4,\n",
      "          'zwick': 3,\n",
      "          'film': 3,\n",
      "          'n': 3,\n",
      "          'washington': 3,\n",
      "          'willis': 3,\n",
      "          'character': 3,\n",
      "          'since': 2,\n",
      "          'bad': 2,\n",
      "          'one': 2,\n",
      "          'terrorism': 2,\n",
      "          'city': 2,\n",
      "          'shalhoub': 2,\n",
      "          'first': 2,\n",
      "          'goes': 2,\n",
      "          'bening': 2,\n",
      "          'may': 2,\n",
      "          'well': 2,\n",
      "          'arab': 2,\n",
      "          'really': 2,\n",
      "          'say': 2,\n",
      "          'climax': 2,\n",
      "          'contains': 2,\n",
      "          '1989': 1,\n",
      "          'director': 1,\n",
      "          'edward': 1,\n",
      "          'began': 1,\n",
      "          'career': 1,\n",
      "          'powerful': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'drama': 1,\n",
      "          'glory': 1,\n",
      "          'continuous': 1,\n",
      "          'disappointments': 1,\n",
      "          'least': 1,\n",
      "          '1994s': 1,\n",
      "          'legends': 1,\n",
      "          'fall': 1,\n",
      "          '1996s': 1,\n",
      "          'courage': 1,\n",
      "          'fire': 1,\n",
      "          'nthose': 1,\n",
      "          'two': 1,\n",
      "          'films': 1,\n",
      "          'werent': 1,\n",
      "          'good': 1,\n",
      "          'zwicks': 1,\n",
      "          'latest': 1,\n",
      "          'finally': 1,\n",
      "          'modernday': 1,\n",
      "          'actionthriller': 1,\n",
      "          'focuses': 1,\n",
      "          'sweeping': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'ninvestigating': 1,\n",
      "          'matter': 1,\n",
      "          'fbi': 1,\n",
      "          'agents': 1,\n",
      "          'anthony': 1,\n",
      "          'hubbard': 1,\n",
      "          'denzel': 1,\n",
      "          'frank': 1,\n",
      "          'haddad': 1,\n",
      "          'tony': 1,\n",
      "          'hit': 1,\n",
      "          'ordeal': 1,\n",
      "          'bus': 1,\n",
      "          'explodes': 1,\n",
      "          'several': 1,\n",
      "          'innocent': 1,\n",
      "          'people': 1,\n",
      "          'nlater': 1,\n",
      "          'bomb': 1,\n",
      "          'broadway': 1,\n",
      "          'theater': 1,\n",
      "          'killing': 1,\n",
      "          'nthey': 1,\n",
      "          'soon': 1,\n",
      "          'meet': 1,\n",
      "          'cia': 1,\n",
      "          'operative': 1,\n",
      "          'elise': 1,\n",
      "          'kraft': 1,\n",
      "          'annette': 1,\n",
      "          'hold': 1,\n",
      "          'key': 1,\n",
      "          'identity': 1,\n",
      "          'terrorist': 1,\n",
      "          'nthere': 1,\n",
      "          'movies': 1,\n",
      "          'simply': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'noh': 1,\n",
      "          'sure': 1,\n",
      "          'thinks': 1,\n",
      "          'making': 1,\n",
      "          'meaningful': 1,\n",
      "          'action': 1,\n",
      "          'added': 1,\n",
      "          'lots': 1,\n",
      "          'exposition': 1,\n",
      "          'scenes': 1,\n",
      "          'audience': 1,\n",
      "          'basically': 1,\n",
      "          'lectured': 1,\n",
      "          'horrors': 1,\n",
      "          'actually': 1,\n",
      "          'substantial': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'also': 1,\n",
      "          'starred': 1,\n",
      "          'bruce': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'horribly': 1,\n",
      "          'wasted': 1,\n",
      "          'general': 1,\n",
      "          'u': 1,\n",
      "          'army': 1,\n",
      "          'puts': 1,\n",
      "          'state': 1,\n",
      "          'martial': 1,\n",
      "          'law': 1,\n",
      "          'nyc': 1,\n",
      "          'nwhatever': 1,\n",
      "          'points': 1,\n",
      "          'earnestly': 1,\n",
      "          'tried': 1,\n",
      "          'make': 1,\n",
      "          'obviously': 1,\n",
      "          'lost': 1,\n",
      "          'translation': 1,\n",
      "          'page': 1,\n",
      "          'screen': 1,\n",
      "          'maybe': 1,\n",
      "          'never': 1,\n",
      "          'anything': 1,\n",
      "          'serious': 1,\n",
      "          'place': 1,\n",
      "          'nthe': 1,\n",
      "          'role': 1,\n",
      "          'community': 1,\n",
      "          'offensively': 1,\n",
      "          'stereotypical': 1,\n",
      "          'women': 1,\n",
      "          'recent': 1,\n",
      "          'john': 1,\n",
      "          'caprenters': 1,\n",
      "          'vampires': 1,\n",
      "          'placing': 1,\n",
      "          'category': 1,\n",
      "          'guys': 1,\n",
      "          'three': 1,\n",
      "          'fine': 1,\n",
      "          'actorswashington': 1,\n",
      "          'shalhoubbut': 1,\n",
      "          'stuck': 1,\n",
      "          'ounce': 1,\n",
      "          'remote': 1,\n",
      "          'development': 1,\n",
      "          'nbening': 1,\n",
      "          'slightly': 1,\n",
      "          'intriguing': 1,\n",
      "          'work': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'though': 1,\n",
      "          'real': 1,\n",
      "          'nby': 1,\n",
      "          'giving': 1,\n",
      "          'sermon': 1,\n",
      "          'socalled': 1,\n",
      "          'message': 1,\n",
      "          'story': 1,\n",
      "          'felt': 1,\n",
      "          'like': 1,\n",
      "          'wandered': 1,\n",
      "          'sequel': 1,\n",
      "          'deadly': 1,\n",
      "          'ground': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'gave': 1,\n",
      "          '10minute': 1,\n",
      "          'speech': 1,\n",
      "          'end': 1,\n",
      "          'preserving': 1,\n",
      "          'environment': 1,\n",
      "          'constantly': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'entertaining': 1,\n",
      "          'insightful': 1,\n",
      "          'prove': 1,\n",
      "          'best': 1,\n",
      "          'actors': 1,\n",
      "          'save': 1,\n",
      "          'lacks': 1,\n",
      "          'satisfactory': 1,\n",
      "          'screenplay': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bad': 5,\n",
      "          'nbut': 5,\n",
      "          'friends': 5,\n",
      "          'movie': 4,\n",
      "          'gone': 3,\n",
      "          'could': 3,\n",
      "          'nthe': 3,\n",
      "          'body': 3,\n",
      "          'guilt': 3,\n",
      "          'film': 3,\n",
      "          'guess': 2,\n",
      "          'bachelor': 2,\n",
      "          'party': 2,\n",
      "          'really': 2,\n",
      "          'prostitute': 2,\n",
      "          'ni': 2,\n",
      "          'also': 2,\n",
      "          'might': 2,\n",
      "          'fiancee': 2,\n",
      "          'diaz': 2,\n",
      "          'one': 2,\n",
      "          'death': 2,\n",
      "          'five': 2,\n",
      "          'long': 2,\n",
      "          'slater': 2,\n",
      "          'like': 2,\n",
      "          'make': 2,\n",
      "          'thing': 2,\n",
      "          'bury': 2,\n",
      "          'begins': 2,\n",
      "          'look': 2,\n",
      "          'way': 2,\n",
      "          'wild': 1,\n",
      "          'would': 1,\n",
      "          'broken': 1,\n",
      "          'furniture': 1,\n",
      "          'traces': 1,\n",
      "          'smack': 1,\n",
      "          'cocaine': 1,\n",
      "          'floor': 1,\n",
      "          'dead': 1,\n",
      "          'bathroom': 1,\n",
      "          'elements': 1,\n",
      "          'present': 1,\n",
      "          'ncoincidence': 1,\n",
      "          'npoor': 1,\n",
      "          'kyle': 1,\n",
      "          'meek': 1,\n",
      "          'looking': 1,\n",
      "          'jon': 1,\n",
      "          'favreau': 1,\n",
      "          'marry': 1,\n",
      "          'radiant': 1,\n",
      "          'laura': 1,\n",
      "          'cameron': 1,\n",
      "          'exchanges': 1,\n",
      "          'vows': 1,\n",
      "          'embarks': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'last': 1,\n",
      "          'blowout': 1,\n",
      "          'possibly': 1,\n",
      "          'get': 1,\n",
      "          'met': 1,\n",
      "          'horrible': 1,\n",
      "          'though': 1,\n",
      "          'accidental': 1,\n",
      "          'drugs': 1,\n",
      "          'everywhere': 1,\n",
      "          'agree': 1,\n",
      "          'enough': 1,\n",
      "          'evidence': 1,\n",
      "          'send': 1,\n",
      "          'jail': 1,\n",
      "          'time': 1,\n",
      "          'na': 1,\n",
      "          'surprisingly': 1,\n",
      "          'calm': 1,\n",
      "          'robert': 1,\n",
      "          'boyd': 1,\n",
      "          'christian': 1,\n",
      "          'looks': 1,\n",
      "          'groomed': 1,\n",
      "          'nefarious': 1,\n",
      "          'decisions': 1,\n",
      "          'ponders': 1,\n",
      "          'dilemma': 1,\n",
      "          'minutes': 1,\n",
      "          'deciding': 1,\n",
      "          'best': 1,\n",
      "          'desert': 1,\n",
      "          'shell': 1,\n",
      "          'never': 1,\n",
      "          'found': 1,\n",
      "          'nalthough': 1,\n",
      "          'stomach': 1,\n",
      "          'gruesome': 1,\n",
      "          'deed': 1,\n",
      "          'getting': 1,\n",
      "          'rid': 1,\n",
      "          'disturbingly': 1,\n",
      "          'involves': 1,\n",
      "          'dismantling': 1,\n",
      "          'using': 1,\n",
      "          'power': 1,\n",
      "          'saws': 1,\n",
      "          'order': 1,\n",
      "          'stuff': 1,\n",
      "          'suitcases': 1,\n",
      "          'return': 1,\n",
      "          'trip': 1,\n",
      "          'paranoia': 1,\n",
      "          'set': 1,\n",
      "          'slowly': 1,\n",
      "          'consumes': 1,\n",
      "          'none': 1,\n",
      "          'adam': 1,\n",
      "          'daniel': 1,\n",
      "          'stern': 1,\n",
      "          'grows': 1,\n",
      "          'increasingly': 1,\n",
      "          'agitated': 1,\n",
      "          'nwhenever': 1,\n",
      "          'people': 1,\n",
      "          'van': 1,\n",
      "          'whenever': 1,\n",
      "          'cop': 1,\n",
      "          'glances': 1,\n",
      "          'blood': 1,\n",
      "          'pressure': 1,\n",
      "          'increases': 1,\n",
      "          'may': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'family': 1,\n",
      "          'nanother': 1,\n",
      "          'michael': 1,\n",
      "          'actually': 1,\n",
      "          'responsible': 1,\n",
      "          'nhe': 1,\n",
      "          'tries': 1,\n",
      "          'feelings': 1,\n",
      "          'burden': 1,\n",
      "          'affect': 1,\n",
      "          'judgment': 1,\n",
      "          'well': 1,\n",
      "          'nboyd': 1,\n",
      "          'doer': 1,\n",
      "          'group': 1,\n",
      "          'nseemingly': 1,\n",
      "          'suffering': 1,\n",
      "          'psychosis': 1,\n",
      "          'feels': 1,\n",
      "          'secret': 1,\n",
      "          'exposed': 1,\n",
      "          'apt': 1,\n",
      "          'take': 1,\n",
      "          'extreme': 1,\n",
      "          'measures': 1,\n",
      "          'cover': 1,\n",
      "          'tracks': 1,\n",
      "          'nkyle': 1,\n",
      "          'hopes': 1,\n",
      "          'wedding': 1,\n",
      "          'live': 1,\n",
      "          'lauras': 1,\n",
      "          'demanding': 1,\n",
      "          'expectations': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'moore': 1,\n",
      "          'leland': 1,\n",
      "          'orser': 1,\n",
      "          'speaks': 1,\n",
      "          '5': 1,\n",
      "          'lines': 1,\n",
      "          'walks': 1,\n",
      "          'around': 1,\n",
      "          'puzzled': 1,\n",
      "          'face': 1,\n",
      "          'problem': 1,\n",
      "          'reprehensible': 1,\n",
      "          'wants': 1,\n",
      "          'cruel': 1,\n",
      "          'comedy': 1,\n",
      "          'presents': 1,\n",
      "          'things': 1,\n",
      "          'manner': 1,\n",
      "          'arent': 1,\n",
      "          'funny': 1,\n",
      "          'ndrugs': 1,\n",
      "          'mutilation': 1,\n",
      "          'killing': 1,\n",
      "          'isnt': 1,\n",
      "          'something': 1,\n",
      "          'laughed': 1,\n",
      "          'nas': 1,\n",
      "          'straight': 1,\n",
      "          'psychological': 1,\n",
      "          'drama': 1,\n",
      "          'see': 1,\n",
      "          'worked': 1,\n",
      "          'tried': 1,\n",
      "          'maneuver': 1,\n",
      "          'overcome': 1,\n",
      "          'weight': 1,\n",
      "          'sometimessick': 1,\n",
      "          'ways': 1,\n",
      "          'insults': 1,\n",
      "          'us': 1,\n",
      "          'assuming': 1,\n",
      "          'simply': 1,\n",
      "          'discard': 1,\n",
      "          'values': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'nif': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'want': 1,\n",
      "          'know': 1,\n",
      "          'find': 1,\n",
      "          'convincing': 1,\n",
      "          'leader': 1,\n",
      "          'sways': 1,\n",
      "          'choose': 1,\n",
      "          'right': 1,\n",
      "          'smart': 1,\n",
      "          'play': 1,\n",
      "          'nand': 1,\n",
      "          'adds': 1,\n",
      "          'brightness': 1,\n",
      "          'weddingneeding': 1,\n",
      "          'talents': 1,\n",
      "          'essentially': 1,\n",
      "          'wasted': 1,\n",
      "          'nits': 1,\n",
      "          'obvious': 1,\n",
      "          'maker': 1,\n",
      "          'trying': 1,\n",
      "          'strike': 1,\n",
      "          'certain': 1,\n",
      "          'tone': 1,\n",
      "          'chooses': 1,\n",
      "          'tasteless': 1,\n",
      "          'ndo': 1,\n",
      "          'decision': 1,\n",
      "          'seeing': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'humor': 4,\n",
      "          'farleys': 4,\n",
      "          'movie': 4,\n",
      "          'perry': 3,\n",
      "          'almost': 3,\n",
      "          'ready': 3,\n",
      "          'best': 3,\n",
      "          'farley': 3,\n",
      "          'matthew': 2,\n",
      "          'big': 2,\n",
      "          'perrys': 2,\n",
      "          'heroes': 2,\n",
      "          'role': 2,\n",
      "          'ni': 2,\n",
      "          'nthe': 2,\n",
      "          'nperry': 2,\n",
      "          'nand': 2,\n",
      "          'alone': 2,\n",
      "          'looking': 1,\n",
      "          'forward': 1,\n",
      "          'film': 1,\n",
      "          'since': 1,\n",
      "          'heard': 1,\n",
      "          'early': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'signed': 1,\n",
      "          'nim': 1,\n",
      "          'fan': 1,\n",
      "          'subtle': 1,\n",
      "          'sense': 1,\n",
      "          'addition': 1,\n",
      "          'think': 1,\n",
      "          'chris': 1,\n",
      "          'onedge': 1,\n",
      "          'extreme': 1,\n",
      "          'acting': 1,\n",
      "          'riot': 1,\n",
      "          'nso': 1,\n",
      "          'naturally': 1,\n",
      "          'trailer': 1,\n",
      "          'hit': 1,\n",
      "          'theaters': 1,\n",
      "          'jumped': 1,\n",
      "          'na': 1,\n",
      "          'soda': 1,\n",
      "          'hand': 1,\n",
      "          'lights': 1,\n",
      "          'dimming': 1,\n",
      "          'blown': 1,\n",
      "          'away': 1,\n",
      "          'final': 1,\n",
      "          'starring': 1,\n",
      "          'supposed': 1,\n",
      "          'breakthrough': 1,\n",
      "          'amazed': 1,\n",
      "          'among': 1,\n",
      "          'spite': 1,\n",
      "          'david': 1,\n",
      "          'spades': 1,\n",
      "          'absence': 1,\n",
      "          'laughing': 1,\n",
      "          'head': 1,\n",
      "          'minute': 1,\n",
      "          'credits': 1,\n",
      "          'ran': 1,\n",
      "          'nsadly': 1,\n",
      "          'none': 1,\n",
      "          'came': 1,\n",
      "          'pass': 1,\n",
      "          'spotty': 1,\n",
      "          'good': 1,\n",
      "          'moments': 1,\n",
      "          'laughable': 1,\n",
      "          'oneliners': 1,\n",
      "          'far': 1,\n",
      "          'chemistry': 1,\n",
      "          'cast': 1,\n",
      "          'seems': 1,\n",
      "          'obviously': 1,\n",
      "          'written': 1,\n",
      "          'spade': 1,\n",
      "          'type': 1,\n",
      "          'associated': 1,\n",
      "          'tries': 1,\n",
      "          'smart': 1,\n",
      "          'subject': 1,\n",
      "          'left': 1,\n",
      "          'flick': 1,\n",
      "          'major': 1,\n",
      "          'dissapointment': 1,\n",
      "          'scenes': 1,\n",
      "          'worth': 1,\n",
      "          'first': 1,\n",
      "          'look': 1,\n",
      "          'let': 1,\n",
      "          'second': 1,\n",
      "          'delivers': 1,\n",
      "          'one': 1,\n",
      "          'humorous': 1,\n",
      "          'line': 1,\n",
      "          'whole': 1,\n",
      "          'surprisingly': 1,\n",
      "          'reason': 1,\n",
      "          'made': 1,\n",
      "          'top': 1,\n",
      "          'ten': 1,\n",
      "          'grossing': 1,\n",
      "          'list': 1,\n",
      "          'opening': 1,\n",
      "          'week': 1,\n",
      "          'advertised': 1,\n",
      "          'classic': 1,\n",
      "          'widespread': 1,\n",
      "          'nalmost': 1,\n",
      "          'works': 1,\n",
      "          'misses': 1,\n",
      "          'wagontrain': 1,\n",
      "          'quite': 1,\n",
      "          'longshot': 1,\n",
      "          'nguys': 1,\n",
      "          'lets': 1,\n",
      "          'leave': 1,\n",
      "          'exploring': 1,\n",
      "          'lewis': 1,\n",
      "          'clark': 1,\n",
      "          'huh': 1,\n",
      "          'nstick': 1,\n",
      "          'tommy': 1,\n",
      "          'boy': 1,\n",
      "          'well': 1,\n",
      "          'friends': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'babe': 6,\n",
      "          'city': 5,\n",
      "          'nthe': 5,\n",
      "          'film': 4,\n",
      "          'nit': 4,\n",
      "          'hogget': 4,\n",
      "          'mrs': 4,\n",
      "          'family': 3,\n",
      "          'one': 3,\n",
      "          'kids': 3,\n",
      "          'go': 3,\n",
      "          'pig': 3,\n",
      "          'enough': 3,\n",
      "          'animals': 3,\n",
      "          'characters': 3,\n",
      "          'original': 2,\n",
      "          'sequel': 2,\n",
      "          'films': 2,\n",
      "          'entered': 2,\n",
      "          'found': 2,\n",
      "          'left': 2,\n",
      "          'think': 2,\n",
      "          'back': 2,\n",
      "          'right': 2,\n",
      "          'like': 2,\n",
      "          'plot': 2,\n",
      "          'interesting': 2,\n",
      "          'took': 2,\n",
      "          'place': 2,\n",
      "          'national': 2,\n",
      "          'nbut': 2,\n",
      "          'could': 2,\n",
      "          'farm': 2,\n",
      "          'going': 2,\n",
      "          'make': 2,\n",
      "          'new': 2,\n",
      "          'fair': 2,\n",
      "          'set': 2,\n",
      "          'moment': 2,\n",
      "          'fact': 2,\n",
      "          'main': 2,\n",
      "          'point': 2,\n",
      "          'rather': 2,\n",
      "          'funny': 2,\n",
      "          'even': 2,\n",
      "          'airport': 2,\n",
      "          'story': 2,\n",
      "          'nat': 2,\n",
      "          'tone': 2,\n",
      "          'sudden': 2,\n",
      "          'feel': 2,\n",
      "          'rest': 2,\n",
      "          'gets': 1,\n",
      "          'vote': 1,\n",
      "          'best': 1,\n",
      "          'since': 1,\n",
      "          'princess': 1,\n",
      "          'bride': 1,\n",
      "          'getting': 1,\n",
      "          'rave': 1,\n",
      "          'reviews': 1,\n",
      "          'internet': 1,\n",
      "          'critics': 1,\n",
      "          'siskel': 1,\n",
      "          'ebert': 1,\n",
      "          'sighting': 1,\n",
      "          'month': 1,\n",
      "          'ago': 1,\n",
      "          'years': 1,\n",
      "          'finest': 1,\n",
      "          'nso': 1,\n",
      "          'naturally': 1,\n",
      "          'screening': 1,\n",
      "          'room': 1,\n",
      "          'showing': 1,\n",
      "          'nary': 1,\n",
      "          'another': 1,\n",
      "          'viewer': 1,\n",
      "          'notion': 1,\n",
      "          'puzzled': 1,\n",
      "          'rare': 1,\n",
      "          'thing': 1,\n",
      "          'childrens': 1,\n",
      "          'praised': 1,\n",
      "          'highly': 1,\n",
      "          'wouldnt': 1,\n",
      "          'every': 1,\n",
      "          'parent': 1,\n",
      "          'entire': 1,\n",
      "          'would': 1,\n",
      "          'flocking': 1,\n",
      "          'see': 1,\n",
      "          'supposedly': 1,\n",
      "          'magical': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'na': 1,\n",
      "          'tad': 1,\n",
      "          'bewildered': 1,\n",
      "          'pleased': 1,\n",
      "          'worry': 1,\n",
      "          'screaming': 1,\n",
      "          'disruptions': 1,\n",
      "          'commonly': 1,\n",
      "          'along': 1,\n",
      "          'sat': 1,\n",
      "          '97': 1,\n",
      "          'minutes': 1,\n",
      "          'watched': 1,\n",
      "          'intently': 1,\n",
      "          'open': 1,\n",
      "          'mind': 1,\n",
      "          'great': 1,\n",
      "          'expectations': 1,\n",
      "          'nlooking': 1,\n",
      "          'taken': 1,\n",
      "          'hint': 1,\n",
      "          'theater': 1,\n",
      "          'nbelieve': 1,\n",
      "          'wanted': 1,\n",
      "          'seemed': 1,\n",
      "          'events': 1,\n",
      "          'sheeppig': 1,\n",
      "          'become': 1,\n",
      "          'legitimate': 1,\n",
      "          'phenomenon': 1,\n",
      "          'fateful': 1,\n",
      "          'encounter': 1,\n",
      "          'water': 1,\n",
      "          'well': 1,\n",
      "          'arthur': 1,\n",
      "          'james': 1,\n",
      "          'cromwell': 1,\n",
      "          'used': 1,\n",
      "          'alot': 1,\n",
      "          'rendered': 1,\n",
      "          'bedridden': 1,\n",
      "          'number': 1,\n",
      "          'weeks': 1,\n",
      "          'begins': 1,\n",
      "          'financially': 1,\n",
      "          'solution': 1,\n",
      "          'wife': 1,\n",
      "          'magda': 1,\n",
      "          'szubanski': 1,\n",
      "          'delightfully': 1,\n",
      "          'charming': 1,\n",
      "          'downright': 1,\n",
      "          'annoying': 1,\n",
      "          'come': 1,\n",
      "          'appearance': 1,\n",
      "          'celebrity': 1,\n",
      "          'pet': 1,\n",
      "          'use': 1,\n",
      "          'money': 1,\n",
      "          'earn': 1,\n",
      "          'pay': 1,\n",
      "          'bank': 1,\n",
      "          'aside': 1,\n",
      "          'get': 1,\n",
      "          'cash': 1,\n",
      "          'donations': 1,\n",
      "          'made': 1,\n",
      "          'case': 1,\n",
      "          'known': 1,\n",
      "          'public': 1,\n",
      "          'nproblem': 1,\n",
      "          'held': 1,\n",
      "          'middle': 1,\n",
      "          'dreaded': 1,\n",
      "          'completely': 1,\n",
      "          'foreign': 1,\n",
      "          'companion': 1,\n",
      "          'nsetting': 1,\n",
      "          'motion': 1,\n",
      "          'travel': 1,\n",
      "          'unnamed': 1,\n",
      "          'shack': 1,\n",
      "          'sweet': 1,\n",
      "          'lady': 1,\n",
      "          'happens': 1,\n",
      "          'love': 1,\n",
      "          'help': 1,\n",
      "          'despite': 1,\n",
      "          'law': 1,\n",
      "          'keep': 1,\n",
      "          'hotels': 1,\n",
      "          'meet': 1,\n",
      "          'array': 1,\n",
      "          'eccentric': 1,\n",
      "          'memorable': 1,\n",
      "          'chimps': 1,\n",
      "          'led': 1,\n",
      "          'steven': 1,\n",
      "          'wright': 1,\n",
      "          'nhere': 1,\n",
      "          'wrong': 1,\n",
      "          'turn': 1,\n",
      "          'nup': 1,\n",
      "          'enjoyable': 1,\n",
      "          'experience': 1,\n",
      "          'beginning': 1,\n",
      "          'featured': 1,\n",
      "          'smart': 1,\n",
      "          'writing': 1,\n",
      "          'situations': 1,\n",
      "          'involving': 1,\n",
      "          'first': 1,\n",
      "          'inspired': 1,\n",
      "          'accused': 1,\n",
      "          'smuggling': 1,\n",
      "          'drugs': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'wears': 1,\n",
      "          'thin': 1,\n",
      "          'introduced': 1,\n",
      "          'reside': 1,\n",
      "          'hotel': 1,\n",
      "          'none': 1,\n",
      "          'onetenth': 1,\n",
      "          'previous': 1,\n",
      "          'topic': 1,\n",
      "          'discussion': 1,\n",
      "          'surrounding': 1,\n",
      "          'question': 1,\n",
      "          'whether': 1,\n",
      "          'dark': 1,\n",
      "          'disturbing': 1,\n",
      "          'small': 1,\n",
      "          'children': 1,\n",
      "          'believe': 1,\n",
      "          'dog': 1,\n",
      "          'hung': 1,\n",
      "          'neck': 1,\n",
      "          'slowly': 1,\n",
      "          'starts': 1,\n",
      "          'drown': 1,\n",
      "          'times': 1,\n",
      "          'treated': 1,\n",
      "          'surrealistic': 1,\n",
      "          'flashbacks': 1,\n",
      "          'hoggets': 1,\n",
      "          'full': 1,\n",
      "          'cavity': 1,\n",
      "          'search': 1,\n",
      "          'nin': 1,\n",
      "          'overall': 1,\n",
      "          'bleak': 1,\n",
      "          'depressing': 1,\n",
      "          'nhowever': 1,\n",
      "          'say': 1,\n",
      "          'neither': 1,\n",
      "          'probably': 1,\n",
      "          'anyway': 1,\n",
      "          'animal': 1,\n",
      "          'plights': 1,\n",
      "          'simply': 1,\n",
      "          'intriguing': 1,\n",
      "          'sustain': 1,\n",
      "          'interest': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'entertain': 1,\n",
      "          'child': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'change': 1,\n",
      "          'pacing': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'darker': 1,\n",
      "          'sinister': 1,\n",
      "          'fine': 1,\n",
      "          'may': 1,\n",
      "          'cup': 1,\n",
      "          'tea': 1,\n",
      "          'least': 1,\n",
      "          'noble': 1,\n",
      "          'ambition': 1,\n",
      "          'downbeat': 1,\n",
      "          'slapstick': 1,\n",
      "          'finale': 1,\n",
      "          'swinging': 1,\n",
      "          'walltowall': 1,\n",
      "          'ballroom': 1,\n",
      "          'elastic': 1,\n",
      "          'overalls': 1,\n",
      "          'didnt': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'entertaining': 1,\n",
      "          'goes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'would': 4,\n",
      "          'ending': 4,\n",
      "          'nthe': 4,\n",
      "          'na': 3,\n",
      "          'hokey': 3,\n",
      "          'nso': 3,\n",
      "          'bad': 2,\n",
      "          'nalso': 2,\n",
      "          'anticlimactic': 2,\n",
      "          'say': 2,\n",
      "          'look': 2,\n",
      "          'much': 2,\n",
      "          'whos': 2,\n",
      "          'day': 2,\n",
      "          'like': 2,\n",
      "          'find': 2,\n",
      "          'till': 2,\n",
      "          'ntheyre': 2,\n",
      "          'people': 2,\n",
      "          'nwhy': 2,\n",
      "          'nyea': 2,\n",
      "          'nand': 2,\n",
      "          'get': 2,\n",
      "          'suicidal': 2,\n",
      "          'colonel': 2,\n",
      "          'something': 2,\n",
      "          'make': 2,\n",
      "          'nthey': 2,\n",
      "          'go': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'egypt': 2,\n",
      "          'put': 1,\n",
      "          'bluntly': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'proud': 1,\n",
      "          'totally': 1,\n",
      "          'ridiculous': 1,\n",
      "          'plot': 1,\n",
      "          'encompassed': 1,\n",
      "          'humor': 1,\n",
      "          'drama': 1,\n",
      "          'zero': 1,\n",
      "          'logic': 1,\n",
      "          'crap': 1,\n",
      "          'screenplay': 1,\n",
      "          'beautifully': 1,\n",
      "          'nnot': 1,\n",
      "          'didnt': 1,\n",
      "          'intriguing': 1,\n",
      "          'saw': 1,\n",
      "          'previews': 1,\n",
      "          'truth': 1,\n",
      "          'advertising': 1,\n",
      "          'nroland': 1,\n",
      "          'emmerich': 1,\n",
      "          'later': 1,\n",
      "          'independence': 1,\n",
      "          '400': 1,\n",
      "          'blows': 1,\n",
      "          'compared': 1,\n",
      "          'cowrited': 1,\n",
      "          'directed': 1,\n",
      "          'inane': 1,\n",
      "          'scifi': 1,\n",
      "          'film': 1,\n",
      "          'uses': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'cliche': 1,\n",
      "          'connection': 1,\n",
      "          'eqypt': 1,\n",
      "          'aliens': 1,\n",
      "          'nin': 1,\n",
      "          'useless': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'men': 1,\n",
      "          'stone': 1,\n",
      "          '1914': 1,\n",
      "          'hieroglyphics': 1,\n",
      "          'nit': 1,\n",
      "          'wouldnt': 1,\n",
      "          'present': 1,\n",
      "          '94': 1,\n",
      "          'actually': 1,\n",
      "          'figure': 1,\n",
      "          'decipherer': 1,\n",
      "          'slightlyneurotic': 1,\n",
      "          'scientist': 1,\n",
      "          'nice': 1,\n",
      "          'twist': 1,\n",
      "          'dr': 1,\n",
      "          'dan': 1,\n",
      "          'jackson': 1,\n",
      "          'james': 1,\n",
      "          'spader': 1,\n",
      "          'best': 1,\n",
      "          'outside': 1,\n",
      "          'erotic': 1,\n",
      "          'thrillers': 1,\n",
      "          'indy': 1,\n",
      "          'fare': 1,\n",
      "          'life': 1,\n",
      "          'sucks': 1,\n",
      "          'walk': 1,\n",
      "          'lectures': 1,\n",
      "          'third': 1,\n",
      "          'word': 1,\n",
      "          'use': 1,\n",
      "          'decipher': 1,\n",
      "          'one': 1,\n",
      "          'else': 1,\n",
      "          'could': 1,\n",
      "          'nduh': 1,\n",
      "          'nhe': 1,\n",
      "          'figures': 1,\n",
      "          'minute': 1,\n",
      "          'jack': 1,\n",
      "          'oneill': 1,\n",
      "          'kurt': 1,\n",
      "          'russel': 1,\n",
      "          'wyat': 1,\n",
      "          'earp': 1,\n",
      "          'locks': 1,\n",
      "          'beginning': 1,\n",
      "          'flattop': 1,\n",
      "          'howie': 1,\n",
      "          'long': 1,\n",
      "          'snap': 1,\n",
      "          'fetal': 1,\n",
      "          'position': 1,\n",
      "          'nfor': 1,\n",
      "          'nyoull': 1,\n",
      "          'hang': 1,\n",
      "          'open': 1,\n",
      "          'stargate': 1,\n",
      "          'bunch': 1,\n",
      "          'bomb': 1,\n",
      "          'blow': 1,\n",
      "          'anything': 1,\n",
      "          'nafter': 1,\n",
      "          'overdone': 1,\n",
      "          'thing': 1,\n",
      "          'theyre': 1,\n",
      "          'inside': 1,\n",
      "          'goddam': 1,\n",
      "          'pyramid': 1,\n",
      "          'went': 1,\n",
      "          'right': 1,\n",
      "          'nwrong': 1,\n",
      "          'another': 1,\n",
      "          'planet': 1,\n",
      "          'filmed': 1,\n",
      "          'discover': 1,\n",
      "          'cilvilization': 1,\n",
      "          'ruled': 1,\n",
      "          'ra': 1,\n",
      "          'sun': 1,\n",
      "          'god': 1,\n",
      "          'androginous': 1,\n",
      "          'jaye': 1,\n",
      "          'davidson': 1,\n",
      "          'voice': 1,\n",
      "          'modifier': 1,\n",
      "          'sound': 1,\n",
      "          'barry': 1,\n",
      "          'white': 1,\n",
      "          'asthma': 1,\n",
      "          'fights': 1,\n",
      "          'explosions': 1,\n",
      "          'kiss': 1,\n",
      "          'two': 1,\n",
      "          'melodrama': 1,\n",
      "          'stupidity': 1,\n",
      "          'scenes': 1,\n",
      "          'bizarre': 1,\n",
      "          'language': 1,\n",
      "          'nan': 1,\n",
      "          'ends': 1,\n",
      "          'stupid': 1,\n",
      "          'lines': 1,\n",
      "          'hello': 1,\n",
      "          'king': 1,\n",
      "          'tut': 1,\n",
      "          'asswhole': 1,\n",
      "          'n': 1,\n",
      "          'quintessential': 1,\n",
      "          'line': 1,\n",
      "          'lem': 1,\n",
      "          'tell': 1,\n",
      "          'ya': 1,\n",
      "          'convenient': 1,\n",
      "          'pesudopseudopseudocharacter': 1,\n",
      "          'development': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'wan': 1,\n",
      "          'home': 1,\n",
      "          'watch': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'outer': 1,\n",
      "          'limits': 1,\n",
      "          'scripts': 1,\n",
      "          'terrible': 1,\n",
      "          'okay': 1,\n",
      "          'nothing': 1,\n",
      "          'great': 1,\n",
      "          'storys': 1,\n",
      "          'weak': 1,\n",
      "          'almost': 1,\n",
      "          'opaque': 1,\n",
      "          'whole': 1,\n",
      "          'experience': 1,\n",
      "          'isnt': 1,\n",
      "          'worth': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'bored': 1,\n",
      "          'youd': 1,\n",
      "          'consider': 1,\n",
      "          'watching': 1,\n",
      "          'full': 1,\n",
      "          'house': 1,\n",
      "          'marathon': 1,\n",
      "          'nthis': 1,\n",
      "          'nid': 1,\n",
      "          'pick': 1,\n",
      "          'obviously': 1,\n",
      "          'still': 1,\n",
      "          'fun': 1,\n",
      "          'cant': 1,\n",
      "          'wait': 1,\n",
      "          'premier': 1,\n",
      "          'mst3k': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'leon': 7,\n",
      "          'professional': 6,\n",
      "          'matilda': 6,\n",
      "          'nthe': 4,\n",
      "          'much': 4,\n",
      "          'besson': 4,\n",
      "          'cheap': 3,\n",
      "          'relationship': 3,\n",
      "          'make': 3,\n",
      "          'nthere': 3,\n",
      "          'isnt': 3,\n",
      "          'quality': 3,\n",
      "          'time': 3,\n",
      "          'na': 3,\n",
      "          'couple': 2,\n",
      "          'name': 2,\n",
      "          'also': 2,\n",
      "          'man': 2,\n",
      "          'twelveyearold': 2,\n",
      "          'girl': 2,\n",
      "          'unpleasant': 2,\n",
      "          'simply': 2,\n",
      "          'reno': 2,\n",
      "          'life': 2,\n",
      "          'portman': 2,\n",
      "          'stansfield': 2,\n",
      "          'matildas': 2,\n",
      "          'nleon': 2,\n",
      "          'takes': 2,\n",
      "          'two': 2,\n",
      "          'makes': 2,\n",
      "          'great': 2,\n",
      "          'film': 2,\n",
      "          'nbut': 2,\n",
      "          'going': 2,\n",
      "          'would': 2,\n",
      "          'like': 2,\n",
      "          'us': 2,\n",
      "          'never': 2,\n",
      "          'one': 2,\n",
      "          'character': 2,\n",
      "          'show': 2,\n",
      "          'hes': 2,\n",
      "          'really': 2,\n",
      "          'part': 2,\n",
      "          'trying': 2,\n",
      "          'gag': 2,\n",
      "          'something': 2,\n",
      "          'way': 2,\n",
      "          'real': 2,\n",
      "          'problem': 2,\n",
      "          'wonder': 1,\n",
      "          'budget': 1,\n",
      "          'criterion': 1,\n",
      "          'whether': 1,\n",
      "          'movie': 1,\n",
      "          'considered': 1,\n",
      "          'exploitation': 1,\n",
      "          'flick': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'nit': 1,\n",
      "          'boasts': 1,\n",
      "          'extremely': 1,\n",
      "          'glossy': 1,\n",
      "          'cinematography': 1,\n",
      "          'recognizable': 1,\n",
      "          'actors': 1,\n",
      "          'fairly': 1,\n",
      "          'impressive': 1,\n",
      "          'explosions': 1,\n",
      "          'nits': 1,\n",
      "          'basically': 1,\n",
      "          'violence': 1,\n",
      "          'titilation': 1,\n",
      "          'features': 1,\n",
      "          'central': 1,\n",
      "          'middleaged': 1,\n",
      "          'decidedly': 1,\n",
      "          'ambiguous': 1,\n",
      "          'sexual': 1,\n",
      "          'dimension': 1,\n",
      "          'map': 1,\n",
      "          'pretensions': 1,\n",
      "          'anything': 1,\n",
      "          'elements': 1,\n",
      "          'title': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'hit': 1,\n",
      "          'named': 1,\n",
      "          'jean': 1,\n",
      "          'brutally': 1,\n",
      "          'efficient': 1,\n",
      "          'isolated': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'forced': 1,\n",
      "          'let': 1,\n",
      "          'someone': 1,\n",
      "          'apartment': 1,\n",
      "          'building': 1,\n",
      "          'knocks': 1,\n",
      "          'door': 1,\n",
      "          'nher': 1,\n",
      "          'natalie': 1,\n",
      "          'rest': 1,\n",
      "          'family': 1,\n",
      "          'killed': 1,\n",
      "          'crooked': 1,\n",
      "          'wired': 1,\n",
      "          'e': 1,\n",
      "          'nagent': 1,\n",
      "          'norman': 1,\n",
      "          'gary': 1,\n",
      "          'oldman': 1,\n",
      "          'father': 1,\n",
      "          'tried': 1,\n",
      "          'rip': 1,\n",
      "          'reluctantly': 1,\n",
      "          'begins': 1,\n",
      "          'teach': 1,\n",
      "          'profession': 1,\n",
      "          'says': 1,\n",
      "          'wants': 1,\n",
      "          'avenge': 1,\n",
      "          'murder': 1,\n",
      "          'young': 1,\n",
      "          'brother': 1,\n",
      "          'become': 1,\n",
      "          'closer': 1,\n",
      "          'vulnerable': 1,\n",
      "          'learns': 1,\n",
      "          'know': 1,\n",
      "          'sets': 1,\n",
      "          'eliminate': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'luc': 1,\n",
      "          'gone': 1,\n",
      "          'route': 1,\n",
      "          'popular': 1,\n",
      "          'french': 1,\n",
      "          'import': 1,\n",
      "          'la': 1,\n",
      "          'femme': 1,\n",
      "          'nikita': 1,\n",
      "          'slick': 1,\n",
      "          'potboiler': 1,\n",
      "          'female': 1,\n",
      "          'assassin': 1,\n",
      "          'question': 1,\n",
      "          'looking': 1,\n",
      "          'assistance': 1,\n",
      "          'cinematographer': 1,\n",
      "          'thierry': 1,\n",
      "          'arbogast': 1,\n",
      "          'created': 1,\n",
      "          'chock': 1,\n",
      "          'full': 1,\n",
      "          'moody': 1,\n",
      "          'closeups': 1,\n",
      "          'evocative': 1,\n",
      "          'lighting': 1,\n",
      "          'beneath': 1,\n",
      "          'shiny': 1,\n",
      "          'wrapper': 1,\n",
      "          'nearly': 1,\n",
      "          'believe': 1,\n",
      "          'clicks': 1,\n",
      "          'neither': 1,\n",
      "          'given': 1,\n",
      "          'develop': 1,\n",
      "          'mostly': 1,\n",
      "          'collection': 1,\n",
      "          'quirky': 1,\n",
      "          'traits': 1,\n",
      "          'intended': 1,\n",
      "          'hired': 1,\n",
      "          'killer': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'drinks': 1,\n",
      "          'lots': 1,\n",
      "          'milk': 1,\n",
      "          'meticulous': 1,\n",
      "          'care': 1,\n",
      "          'potted': 1,\n",
      "          'plant': 1,\n",
      "          'enjoys': 1,\n",
      "          'gene': 1,\n",
      "          'kelly': 1,\n",
      "          'movies': 1,\n",
      "          'njean': 1,\n",
      "          'succeeds': 1,\n",
      "          'giving': 1,\n",
      "          'haunted': 1,\n",
      "          'desperate': 1,\n",
      "          'emotional': 1,\n",
      "          'connection': 1,\n",
      "          'nnatalie': 1,\n",
      "          'wrong': 1,\n",
      "          'called': 1,\n",
      "          'grittier': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'either': 1,\n",
      "          'nbesson': 1,\n",
      "          'better': 1,\n",
      "          'served': 1,\n",
      "          'spending': 1,\n",
      "          'bring': 1,\n",
      "          'characters': 1,\n",
      "          'less': 1,\n",
      "          'feeble': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'often': 1,\n",
      "          'embarrassing': 1,\n",
      "          'silly': 1,\n",
      "          'game': 1,\n",
      "          'involving': 1,\n",
      "          'celebrity': 1,\n",
      "          'impersonations': 1,\n",
      "          'completely': 1,\n",
      "          'place': 1,\n",
      "          'scene': 1,\n",
      "          'shocks': 1,\n",
      "          'hotel': 1,\n",
      "          'manager': 1,\n",
      "          'announcing': 1,\n",
      "          'lover': 1,\n",
      "          'thoroughly': 1,\n",
      "          'sacrificed': 1,\n",
      "          'ngary': 1,\n",
      "          'oldmans': 1,\n",
      "          'entire': 1,\n",
      "          'wildeyed': 1,\n",
      "          'top': 1,\n",
      "          'least': 1,\n",
      "          'interesting': 1,\n",
      "          'watch': 1,\n",
      "          'person': 1,\n",
      "          'found': 1,\n",
      "          'anywhere': 1,\n",
      "          'always': 1,\n",
      "          'action': 1,\n",
      "          'thriller': 1,\n",
      "          'except': 1,\n",
      "          'pass': 1,\n",
      "          'disconcerting': 1,\n",
      "          'plays': 1,\n",
      "          'around': 1,\n",
      "          'sexuality': 1,\n",
      "          'distasteful': 1,\n",
      "          'choices': 1,\n",
      "          'dealing': 1,\n",
      "          'component': 1,\n",
      "          'confront': 1,\n",
      "          'head': 1,\n",
      "          'ignore': 1,\n",
      "          'entirely': 1,\n",
      "          'flirts': 1,\n",
      "          'teases': 1,\n",
      "          'audience': 1,\n",
      "          'idea': 1,\n",
      "          'forbidden': 1,\n",
      "          'love': 1,\n",
      "          'story': 1,\n",
      "          'choosing': 1,\n",
      "          'focus': 1,\n",
      "          'camera': 1,\n",
      "          'portmans': 1,\n",
      "          'rear': 1,\n",
      "          'end': 1,\n",
      "          'dress': 1,\n",
      "          'skimpy': 1,\n",
      "          'clothing': 1,\n",
      "          'nthis': 1,\n",
      "          'say': 1,\n",
      "          'nothing': 1,\n",
      "          'questionable': 1,\n",
      "          'decision': 1,\n",
      "          'look': 1,\n",
      "          'paternal': 1,\n",
      "          'teaching': 1,\n",
      "          'child': 1,\n",
      "          'load': 1,\n",
      "          '9mm': 1,\n",
      "          'pistol': 1,\n",
      "          'blood': 1,\n",
      "          'spilled': 1,\n",
      "          'aplenty': 1,\n",
      "          'deal': 1,\n",
      "          'plain': 1,\n",
      "          'sleazy': 1,\n",
      "          'soft': 1,\n",
      "          'filters': 1,\n",
      "          'world': 1,\n",
      "          'cant': 1,\n",
      "          'disguise': 1,\n",
      "          'fact': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'annie': 5,\n",
      "          'ferrara': 4,\n",
      "          'hes': 4,\n",
      "          'scene': 4,\n",
      "          'blackout': 4,\n",
      "          'matty': 4,\n",
      "          'modine': 4,\n",
      "          'one': 3,\n",
      "          'beautiful': 3,\n",
      "          'theres': 3,\n",
      "          'know': 3,\n",
      "          'nthe': 3,\n",
      "          'matthew': 3,\n",
      "          'ferraras': 3,\n",
      "          'hopper': 3,\n",
      "          'full': 3,\n",
      "          'sea': 3,\n",
      "          'make': 2,\n",
      "          'good': 2,\n",
      "          'viewing': 2,\n",
      "          'nits': 2,\n",
      "          'models': 2,\n",
      "          'walken': 2,\n",
      "          'addiction': 2,\n",
      "          'otherwise': 2,\n",
      "          'whether': 2,\n",
      "          'terminally': 2,\n",
      "          'let': 2,\n",
      "          'actually': 2,\n",
      "          'central': 2,\n",
      "          'junkie': 2,\n",
      "          'leading': 2,\n",
      "          'played': 2,\n",
      "          'cutthroat': 2,\n",
      "          'island': 2,\n",
      "          'like': 2,\n",
      "          'model': 2,\n",
      "          'think': 2,\n",
      "          'nno': 2,\n",
      "          'around': 2,\n",
      "          'dennis': 2,\n",
      "          'night': 2,\n",
      "          'finds': 2,\n",
      "          'n': 2,\n",
      "          'nyeah': 2,\n",
      "          'time': 2,\n",
      "          'picture': 2,\n",
      "          'ntake': 2,\n",
      "          'ha': 2,\n",
      "          'nhe': 2,\n",
      "          'place': 2,\n",
      "          'days': 1,\n",
      "          'ill': 1,\n",
      "          'promise': 1,\n",
      "          'never': 1,\n",
      "          'rent': 1,\n",
      "          'another': 1,\n",
      "          'abel': 1,\n",
      "          'nking': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'body': 1,\n",
      "          'snatchers': 1,\n",
      "          'notwithstanding': 1,\n",
      "          'bad': 1,\n",
      "          'lieutenant': 1,\n",
      "          'fit': 1,\n",
      "          'single': 1,\n",
      "          'emotive': 1,\n",
      "          'exploitation': 1,\n",
      "          'flicks': 1,\n",
      "          'fallen': 1,\n",
      "          'rut': 1,\n",
      "          'hoary': 1,\n",
      "          'arthouse': 1,\n",
      "          'trappings': 1,\n",
      "          'perfumedrenched': 1,\n",
      "          'cokeaddled': 1,\n",
      "          'visit': 1,\n",
      "          'seedy': 1,\n",
      "          'pornography': 1,\n",
      "          'shop': 1,\n",
      "          'hookers': 1,\n",
      "          'courtesans': 1,\n",
      "          'usher': 1,\n",
      "          'silk': 1,\n",
      "          'curtains': 1,\n",
      "          'nferraras': 1,\n",
      "          'consistently': 1,\n",
      "          'smart': 1,\n",
      "          'move': 1,\n",
      "          'casting': 1,\n",
      "          'christopher': 1,\n",
      "          'since': 1,\n",
      "          'great': 1,\n",
      "          'loathsome': 1,\n",
      "          'durable': 1,\n",
      "          'whenever': 1,\n",
      "          'onscreen': 1,\n",
      "          'nhis': 1,\n",
      "          '8minute': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'abysmal': 1,\n",
      "          'unwatchable': 1,\n",
      "          'pretentious': 1,\n",
      "          'failure': 1,\n",
      "          'nwhen': 1,\n",
      "          'starts': 1,\n",
      "          'talking': 1,\n",
      "          'vampiric': 1,\n",
      "          'bowel': 1,\n",
      "          'movements': 1,\n",
      "          'questions': 1,\n",
      "          'lili': 1,\n",
      "          'taylor': 1,\n",
      "          'ever': 1,\n",
      "          'read': 1,\n",
      "          'naked': 1,\n",
      "          'lunch': 1,\n",
      "          'muchneeded': 1,\n",
      "          'dose': 1,\n",
      "          'humor': 1,\n",
      "          'unfunny': 1,\n",
      "          'affair': 1,\n",
      "          'nyou': 1,\n",
      "          'gothic': 1,\n",
      "          'club': 1,\n",
      "          'kids': 1,\n",
      "          'cool': 1,\n",
      "          'smile': 1,\n",
      "          'theyre': 1,\n",
      "          'fun': 1,\n",
      "          'nwalken': 1,\n",
      "          'sadly': 1,\n",
      "          'appear': 1,\n",
      "          'role': 1,\n",
      "          'film': 1,\n",
      "          'star': 1,\n",
      "          'whose': 1,\n",
      "          'lightning': 1,\n",
      "          'paced': 1,\n",
      "          'hollywood': 1,\n",
      "          'life': 1,\n",
      "          'among': 1,\n",
      "          'people': 1,\n",
      "          'inevitably': 1,\n",
      "          'destruction': 1,\n",
      "          'takes': 1,\n",
      "          'get': 1,\n",
      "          'nmuch': 1,\n",
      "          'protagonists': 1,\n",
      "          'michelangelo': 1,\n",
      "          'antonionis': 1,\n",
      "          'bored': 1,\n",
      "          'cultural': 1,\n",
      "          'elite': 1,\n",
      "          'involved': 1,\n",
      "          'bitter': 1,\n",
      "          'pill': 1,\n",
      "          'relationship': 1,\n",
      "          'high': 1,\n",
      "          'fashioned': 1,\n",
      "          'least': 1,\n",
      "          'shes': 1,\n",
      "          'nmattys': 1,\n",
      "          'lady': 1,\n",
      "          'french': 1,\n",
      "          'actress': 1,\n",
      "          'b': 1,\n",
      "          'atrice': 1,\n",
      "          'dalle': 1,\n",
      "          'arrested': 1,\n",
      "          'twice': 1,\n",
      "          'cocaine': 1,\n",
      "          'possession': 1,\n",
      "          'filming': 1,\n",
      "          'needed': 1,\n",
      "          'lends': 1,\n",
      "          'credence': 1,\n",
      "          'idea': 1,\n",
      "          'entire': 1,\n",
      "          'oeuvre': 1,\n",
      "          'filmed': 1,\n",
      "          'fucking': 1,\n",
      "          'kidding': 1,\n",
      "          'nrequiem': 1,\n",
      "          'dream': 1,\n",
      "          'nothing': 1,\n",
      "          'presentations': 1,\n",
      "          'seen': 1,\n",
      "          'movies': 1,\n",
      "          'controversial': 1,\n",
      "          'urban': 1,\n",
      "          'lifestyle': 1,\n",
      "          'nmatty': 1,\n",
      "          'struggle': 1,\n",
      "          'decision': 1,\n",
      "          'abortion': 1,\n",
      "          'without': 1,\n",
      "          'consulting': 1,\n",
      "          'doubt': 1,\n",
      "          'chasing': 1,\n",
      "          'dragon': 1,\n",
      "          'nin': 1,\n",
      "          'despair': 1,\n",
      "          'indulges': 1,\n",
      "          'chemical': 1,\n",
      "          'induced': 1,\n",
      "          'weekend': 1,\n",
      "          'debauchery': 1,\n",
      "          'tooling': 1,\n",
      "          'streets': 1,\n",
      "          'miami': 1,\n",
      "          'video': 1,\n",
      "          'filmmaker': 1,\n",
      "          'mickey': 1,\n",
      "          'wayne': 1,\n",
      "          'dirty': 1,\n",
      "          'ol': 1,\n",
      "          'man': 1,\n",
      "          'mold': 1,\n",
      "          'smacking': 1,\n",
      "          'ass': 1,\n",
      "          'telling': 1,\n",
      "          'spread': 1,\n",
      "          'legs': 1,\n",
      "          'nwider': 1,\n",
      "          'ntoward': 1,\n",
      "          'end': 1,\n",
      "          'pick': 1,\n",
      "          'teenage': 1,\n",
      "          'waitress': 1,\n",
      "          'also': 1,\n",
      "          'named': 1,\n",
      "          'sarah': 1,\n",
      "          'lassez': 1,\n",
      "          'start': 1,\n",
      "          'shooting': 1,\n",
      "          'hastily': 1,\n",
      "          'improvised': 1,\n",
      "          'sexual': 1,\n",
      "          'thankfully': 1,\n",
      "          'blacks': 1,\n",
      "          'nsomething': 1,\n",
      "          'happened': 1,\n",
      "          'haunts': 1,\n",
      "          'throughout': 1,\n",
      "          'rest': 1,\n",
      "          'exactly': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'confusion': 1,\n",
      "          'killed': 1,\n",
      "          'two': 1,\n",
      "          'anyone': 1,\n",
      "          'typical': 1,\n",
      "          'plot': 1,\n",
      "          'speak': 1,\n",
      "          'plenty': 1,\n",
      "          'raunch': 1,\n",
      "          'horribly': 1,\n",
      "          'vogue': 1,\n",
      "          'images': 1,\n",
      "          'downing': 1,\n",
      "          'bottle': 1,\n",
      "          'jack': 1,\n",
      "          'daniels': 1,\n",
      "          'beer': 1,\n",
      "          'wrapping': 1,\n",
      "          'seethrough': 1,\n",
      "          'curtain': 1,\n",
      "          'hotel': 1,\n",
      "          'room': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'ken': 1,\n",
      "          'kelsch': 1,\n",
      "          'inconsistent': 1,\n",
      "          'glory': 1,\n",
      "          'alternating': 1,\n",
      "          'gorgeous': 1,\n",
      "          'painterly': 1,\n",
      "          'sunsets': 1,\n",
      "          'docustyle': 1,\n",
      "          'sleaze': 1,\n",
      "          'back': 1,\n",
      "          'leering': 1,\n",
      "          'girls': 1,\n",
      "          'bathing': 1,\n",
      "          'suits': 1,\n",
      "          'yeah': 1,\n",
      "          'narrrghhh': 1,\n",
      "          'nsays': 1,\n",
      "          'mr': 1,\n",
      "          'ndirty': 1,\n",
      "          'old': 1,\n",
      "          'sod': 1,\n",
      "          'compulsive': 1,\n",
      "          'tacky': 1,\n",
      "          'sort': 1,\n",
      "          'way': 1,\n",
      "          'ridiculous': 1,\n",
      "          'climax': 1,\n",
      "          'seizes': 1,\n",
      "          'control': 1,\n",
      "          'destiny': 1,\n",
      "          'nhows': 1,\n",
      "          'cryptic': 1,\n",
      "          'nnever': 1,\n",
      "          'fear': 1,\n",
      "          'female': 1,\n",
      "          'frontal': 1,\n",
      "          'nudity': 1,\n",
      "          'remind': 1,\n",
      "          'us': 1,\n",
      "          'ni': 1,\n",
      "          'take': 1,\n",
      "          'yer': 1,\n",
      "          'clothes': 1,\n",
      "          'kid': 1,\n",
      "          'essential': 1,\n",
      "          'depict': 1,\n",
      "          'inner': 1,\n",
      "          'maelstrom': 1,\n",
      "          'protagonist': 1,\n",
      "          'youre': 1,\n",
      "          'visual': 1,\n",
      "          'id': 1,\n",
      "          'nyoure': 1,\n",
      "          'soul': 1,\n",
      "          'heart': 1,\n",
      "          'bloodstream': 1,\n",
      "          'nha': 1,\n",
      "          'nfriggin': 1,\n",
      "          'vampire': 1,\n",
      "          'na': 1,\n",
      "          'final': 1,\n",
      "          'word': 1,\n",
      "          'fine': 1,\n",
      "          'actor': 1,\n",
      "          'properly': 1,\n",
      "          'cast': 1,\n",
      "          'something': 1,\n",
      "          'squeakyclean': 1,\n",
      "          'demeanor': 1,\n",
      "          'nhes': 1,\n",
      "          'ideally': 1,\n",
      "          'suited': 1,\n",
      "          'sarcastic': 1,\n",
      "          'men': 1,\n",
      "          'tightly': 1,\n",
      "          'controlled': 1,\n",
      "          'situations': 1,\n",
      "          'private': 1,\n",
      "          'joker': 1,\n",
      "          'metal': 1,\n",
      "          'jacket': 1,\n",
      "          'timebomb': 1,\n",
      "          'nebbish': 1,\n",
      "          'short': 1,\n",
      "          'cuts': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'superb': 1,\n",
      "          'julianne': 1,\n",
      "          'moore': 1,\n",
      "          'famous': 1,\n",
      "          'though': 1,\n",
      "          'seems': 1,\n",
      "          'notice': 1,\n",
      "          'ned': 1,\n",
      "          'nhere': 1,\n",
      "          'asked': 1,\n",
      "          'hang': 1,\n",
      "          'sporting': 1,\n",
      "          'threeday': 1,\n",
      "          'stubble': 1,\n",
      "          'oily': 1,\n",
      "          'bangs': 1,\n",
      "          'throws': 1,\n",
      "          'furniture': 1,\n",
      "          'stanley': 1,\n",
      "          'kowalski': 1,\n",
      "          'somehow': 1,\n",
      "          'lacking': 1,\n",
      "          'nmodine': 1,\n",
      "          'lacks': 1,\n",
      "          'feral': 1,\n",
      "          'intensity': 1,\n",
      "          'brando': 1,\n",
      "          'entirely': 1,\n",
      "          'miscast': 1,\n",
      "          'flesh': 1,\n",
      "          'fair': 1,\n",
      "          'nbetter': 1,\n",
      "          'luck': 1,\n",
      "          'next': 1,\n",
      "          'matt': 1,\n",
      "          'nsomeday': 1,\n",
      "          'youll': 1,\n",
      "          'forgiven': 1,\n",
      "          'wasnt': 1,\n",
      "          'really': 1,\n",
      "          'fault': 1,\n",
      "          'first': 1,\n",
      "          'nmaybe': 1,\n",
      "          'atom': 1,\n",
      "          'egoyan': 1,\n",
      "          'find': 1,\n",
      "          'somewhere': 1,\n",
      "          'well': 1,\n",
      "          'world': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 4,\n",
      "          'movies': 4,\n",
      "          'get': 4,\n",
      "          'us': 4,\n",
      "          'first': 3,\n",
      "          'feature': 3,\n",
      "          'film': 3,\n",
      "          'might': 3,\n",
      "          'kids': 3,\n",
      "          'slow': 3,\n",
      "          'guy': 3,\n",
      "          'head': 3,\n",
      "          'like': 3,\n",
      "          'blah': 3,\n",
      "          'lot': 3,\n",
      "          'making': 2,\n",
      "          'cast': 2,\n",
      "          'moresco': 2,\n",
      "          'nbut': 2,\n",
      "          'plot': 2,\n",
      "          'dialogue': 2,\n",
      "          'chance': 2,\n",
      "          'need': 2,\n",
      "          'neighborhood': 2,\n",
      "          'nthe': 2,\n",
      "          'kitchen': 2,\n",
      "          'make': 2,\n",
      "          'nwith': 2,\n",
      "          'motion': 2,\n",
      "          'scene': 2,\n",
      "          'local': 2,\n",
      "          'gets': 2,\n",
      "          'seem': 2,\n",
      "          'little': 2,\n",
      "          'nhe': 2,\n",
      "          'baldwins': 2,\n",
      "          'ever': 2,\n",
      "          'funny': 2,\n",
      "          'really': 2,\n",
      "          'guys': 2,\n",
      "          'actually': 2,\n",
      "          'nwe': 2,\n",
      "          'tough': 2,\n",
      "          'nmoresco': 2,\n",
      "          'personal': 2,\n",
      "          'aint': 1,\n",
      "          'easy': 1,\n",
      "          'nassemble': 1,\n",
      "          'decent': 1,\n",
      "          'strong': 1,\n",
      "          'writerdirector': 1,\n",
      "          'robert': 1,\n",
      "          'done': 1,\n",
      "          'eyed': 1,\n",
      "          'king': 1,\n",
      "          'youre': 1,\n",
      "          'already': 1,\n",
      "          'ahead': 1,\n",
      "          'game': 1,\n",
      "          'rehash': 1,\n",
      "          'old': 1,\n",
      "          'lines': 1,\n",
      "          'tired': 1,\n",
      "          'standard': 1,\n",
      "          'clich': 1,\n",
      "          'wellintentioned': 1,\n",
      "          'effort': 1,\n",
      "          'could': 1,\n",
      "          'jeopardize': 1,\n",
      "          'second': 1,\n",
      "          'nhow': 1,\n",
      "          'many': 1,\n",
      "          'rough': 1,\n",
      "          'full': 1,\n",
      "          'lifelong': 1,\n",
      "          'friends': 1,\n",
      "          'hopelessly': 1,\n",
      "          'turned': 1,\n",
      "          'crime': 1,\n",
      "          'worse': 1,\n",
      "          'enormous': 1,\n",
      "          'catalog': 1,\n",
      "          'dissuade': 1,\n",
      "          'filmmaker': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'nagain': 1,\n",
      "          'nfive': 1,\n",
      "          'irish': 1,\n",
      "          'nycs': 1,\n",
      "          'hells': 1,\n",
      "          'overemotional': 1,\n",
      "          'pact': 1,\n",
      "          'stolen': 1,\n",
      "          'rings': 1,\n",
      "          'anonymous': 1,\n",
      "          'rooftop': 1,\n",
      "          'teary': 1,\n",
      "          'music': 1,\n",
      "          'nand': 1,\n",
      "          'nin': 1,\n",
      "          'films': 1,\n",
      "          'grow': 1,\n",
      "          'fairly': 1,\n",
      "          'worthless': 1,\n",
      "          'adults': 1,\n",
      "          'unable': 1,\n",
      "          'unwilling': 1,\n",
      "          'way': 1,\n",
      "          'heat': 1,\n",
      "          'nleading': 1,\n",
      "          'clueless': 1,\n",
      "          'pack': 1,\n",
      "          'william': 1,\n",
      "          'baldwin': 1,\n",
      "          'goodhearted': 1,\n",
      "          'watches': 1,\n",
      "          'buddies': 1,\n",
      "          'tight': 1,\n",
      "          'mob': 1,\n",
      "          'armand': 1,\n",
      "          'assante': 1,\n",
      "          'nid': 1,\n",
      "          'say': 1,\n",
      "          'character': 1,\n",
      "          'involved': 1,\n",
      "          'sort': 1,\n",
      "          'tastes': 1,\n",
      "          'possible': 1,\n",
      "          'points': 1,\n",
      "          'nhes': 1,\n",
      "          'concerned': 1,\n",
      "          'buddy': 1,\n",
      "          'jason': 1,\n",
      "          'gedricks': 1,\n",
      "          'heroin': 1,\n",
      "          'abuse': 1,\n",
      "          'sticks': 1,\n",
      "          'jim': 1,\n",
      "          'breuer': 1,\n",
      "          'impregnates': 1,\n",
      "          'characters': 1,\n",
      "          'sister': 1,\n",
      "          'looks': 1,\n",
      "          'pushing': 1,\n",
      "          'moroniclooking': 1,\n",
      "          'counterfeit': 1,\n",
      "          'cash': 1,\n",
      "          'made': 1,\n",
      "          'genuinely': 1,\n",
      "          'touch': 1,\n",
      "          'none': 1,\n",
      "          'amounts': 1,\n",
      "          'anything': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'morescos': 1,\n",
      "          'greater': 1,\n",
      "          'concern': 1,\n",
      "          'provide': 1,\n",
      "          'intangible': 1,\n",
      "          'slice': 1,\n",
      "          'life': 1,\n",
      "          'flavor': 1,\n",
      "          'everyones': 1,\n",
      "          'trying': 1,\n",
      "          'evoke': 1,\n",
      "          'since': 1,\n",
      "          'scorseses': 1,\n",
      "          'early': 1,\n",
      "          'work': 1,\n",
      "          'nso': 1,\n",
      "          'drunk': 1,\n",
      "          'hugging': 1,\n",
      "          'singing': 1,\n",
      "          'together': 1,\n",
      "          'bar': 1,\n",
      "          'prove': 1,\n",
      "          'love': 1,\n",
      "          'n': 1,\n",
      "          'people': 1,\n",
      "          'street': 1,\n",
      "          'talk': 1,\n",
      "          'usually': 1,\n",
      "          'mumbled': 1,\n",
      "          'effect': 1,\n",
      "          'whole': 1,\n",
      "          'fword': 1,\n",
      "          'whether': 1,\n",
      "          'sounds': 1,\n",
      "          'fits': 1,\n",
      "          'also': 1,\n",
      "          'handful': 1,\n",
      "          'good': 1,\n",
      "          'actors': 1,\n",
      "          'small': 1,\n",
      "          'roles': 1,\n",
      "          'lack': 1,\n",
      "          'purpose': 1,\n",
      "          'nbruno': 1,\n",
      "          'kirby': 1,\n",
      "          'chazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'know': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'nassante': 1,\n",
      "          'intelligent': 1,\n",
      "          'casting': 1,\n",
      "          'man': 1,\n",
      "          'everyone': 1,\n",
      "          'fears': 1,\n",
      "          'performance': 1,\n",
      "          'adequate': 1,\n",
      "          'rest': 1,\n",
      "          'jump': 1,\n",
      "          'persona': 1,\n",
      "          'thoroughly': 1,\n",
      "          'almost': 1,\n",
      "          'theater': 1,\n",
      "          'sometimes': 1,\n",
      "          'tv': 1,\n",
      "          'writer': 1,\n",
      "          'including': 1,\n",
      "          'series': 1,\n",
      "          'falcone': 1,\n",
      "          'obviously': 1,\n",
      "          'labored': 1,\n",
      "          'anyone': 1,\n",
      "          'child': 1,\n",
      "          'content': 1,\n",
      "          'probably': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'style': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'considerable': 1,\n",
      "          'amount': 1,\n",
      "          'toning': 1,\n",
      "          'nnearly': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'action': 1,\n",
      "          'grown': 1,\n",
      "          'gang': 1,\n",
      "          'recalls': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'something': 1,\n",
      "          'reminds': 1,\n",
      "          'boy': 1,\n",
      "          'remind': 1,\n",
      "          'dissolves': 1,\n",
      "          'earlier': 1,\n",
      "          'running': 1,\n",
      "          'complete': 1,\n",
      "          'present': 1,\n",
      "          'case': 1,\n",
      "          'dont': 1,\n",
      "          'comprehend': 1,\n",
      "          'link': 1,\n",
      "          'past': 1,\n",
      "          'needs': 1,\n",
      "          'either': 1,\n",
      "          'trust': 1,\n",
      "          'audiences': 1,\n",
      "          'intelligence': 1,\n",
      "          'faith': 1,\n",
      "          'presentation': 1,\n",
      "          'rather': 1,\n",
      "          'beat': 1,\n",
      "          'nhis': 1,\n",
      "          'next': 1,\n",
      "          'project': 1,\n",
      "          'distance': 1,\n",
      "          'subtlety': 1,\n",
      "          'nif': 1,\n",
      "          'nreviewed': 1,\n",
      "          'part': 1,\n",
      "          '2001': 1,\n",
      "          'boston': 1,\n",
      "          'festival': 1,\n",
      "          'coverage': 1,\n",
      "          'story': 1,\n",
      "          'coming': 1,\n",
      "          'soon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'geronimo': 13,\n",
      "          'story': 7,\n",
      "          'political': 4,\n",
      "          'use': 4,\n",
      "          'american': 4,\n",
      "          'film': 4,\n",
      "          'apaches': 4,\n",
      "          'movie': 4,\n",
      "          'like': 4,\n",
      "          'u': 3,\n",
      "          'even': 3,\n",
      "          'made': 3,\n",
      "          'correctness': 3,\n",
      "          'hill': 3,\n",
      "          'last': 3,\n",
      "          'white': 3,\n",
      "          'nthe': 3,\n",
      "          'try': 3,\n",
      "          'people': 3,\n",
      "          'make': 3,\n",
      "          'gatewood': 3,\n",
      "          'many': 3,\n",
      "          'real': 3,\n",
      "          'could': 3,\n",
      "          'government': 2,\n",
      "          'ready': 2,\n",
      "          'nhowever': 2,\n",
      "          'history': 2,\n",
      "          'movies': 2,\n",
      "          'examples': 2,\n",
      "          'legend': 2,\n",
      "          'walter': 2,\n",
      "          'one': 2,\n",
      "          'settlers': 2,\n",
      "          'hero': 2,\n",
      "          'studi': 2,\n",
      "          'time': 2,\n",
      "          'begins': 2,\n",
      "          'reservation': 2,\n",
      "          'would': 2,\n",
      "          'gene': 2,\n",
      "          'hackman': 2,\n",
      "          'force': 2,\n",
      "          'isnt': 2,\n",
      "          'great': 2,\n",
      "          'ninstead': 2,\n",
      "          'lt': 2,\n",
      "          'jason': 2,\n",
      "          'patric': 2,\n",
      "          'indian': 2,\n",
      "          'robert': 2,\n",
      "          'duvall': 2,\n",
      "          'bad': 2,\n",
      "          'enemies': 2,\n",
      "          'nto': 2,\n",
      "          'segments': 2,\n",
      "          'uprising': 2,\n",
      "          'impression': 2,\n",
      "          'films': 2,\n",
      "          'better': 2,\n",
      "          'neven': 2,\n",
      "          'whenever': 1,\n",
      "          'starts': 1,\n",
      "          'meddling': 1,\n",
      "          'countries': 1,\n",
      "          'affairs': 1,\n",
      "          'pretext': 1,\n",
      "          'supporting': 1,\n",
      "          'human': 1,\n",
      "          'rights': 1,\n",
      "          'preventing': 1,\n",
      "          'religious': 1,\n",
      "          'ethnic': 1,\n",
      "          'persecution': 1,\n",
      "          'side': 1,\n",
      "          'mantra': 1,\n",
      "          'says': 1,\n",
      "          'look': 1,\n",
      "          'whos': 1,\n",
      "          'talking': 1,\n",
      "          'nwhat': 1,\n",
      "          'done': 1,\n",
      "          'indians': 1,\n",
      "          'americans': 1,\n",
      "          'dark': 1,\n",
      "          'chapter': 1,\n",
      "          'national': 1,\n",
      "          'suits': 1,\n",
      "          'purposes': 1,\n",
      "          'nhollywood': 1,\n",
      "          'another': 1,\n",
      "          'example': 1,\n",
      "          'revisionist': 1,\n",
      "          'westerns': 1,\n",
      "          'early': 1,\n",
      "          '1990s': 1,\n",
      "          'nthose': 1,\n",
      "          'tried': 1,\n",
      "          'exploit': 1,\n",
      "          'emerging': 1,\n",
      "          'wave': 1,\n",
      "          'coinciding': 1,\n",
      "          '500th': 1,\n",
      "          'anniversary': 1,\n",
      "          'columbus': 1,\n",
      "          'discovery': 1,\n",
      "          'america': 1,\n",
      "          'none': 1,\n",
      "          '1993': 1,\n",
      "          'western': 1,\n",
      "          'directed': 1,\n",
      "          'deals': 1,\n",
      "          'conflicts': 1,\n",
      "          'natives': 1,\n",
      "          'played': 1,\n",
      "          'wes': 1,\n",
      "          'leader': 1,\n",
      "          'fierce': 1,\n",
      "          'warrior': 1,\n",
      "          'tribe': 1,\n",
      "          'used': 1,\n",
      "          'give': 1,\n",
      "          'hard': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'nwhen': 1,\n",
      "          '1885': 1,\n",
      "          'peace': 1,\n",
      "          'live': 1,\n",
      "          'peacefully': 1,\n",
      "          'arizona': 1,\n",
      "          'broken': 1,\n",
      "          'promises': 1,\n",
      "          'injustice': 1,\n",
      "          'violence': 1,\n",
      "          'restless': 1,\n",
      "          'nwith': 1,\n",
      "          '30': 1,\n",
      "          'followers': 1,\n",
      "          'escapes': 1,\n",
      "          'guerrilla': 1,\n",
      "          'campaign': 1,\n",
      "          'ngeneral': 1,\n",
      "          'crook': 1,\n",
      "          'commander': 1,\n",
      "          'army': 1,\n",
      "          'forces': 1,\n",
      "          'respects': 1,\n",
      "          'knows': 1,\n",
      "          '5': 1,\n",
      "          '000': 1,\n",
      "          'enough': 1,\n",
      "          'catch': 1,\n",
      "          'spaces': 1,\n",
      "          'southwest': 1,\n",
      "          'turns': 1,\n",
      "          'experienced': 1,\n",
      "          'charles': 1,\n",
      "          'hunter': 1,\n",
      "          'al': 1,\n",
      "          'sieber': 1,\n",
      "          'ntogether': 1,\n",
      "          'young': 1,\n",
      "          'britton': 1,\n",
      "          'davis': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'begin': 1,\n",
      "          'mission': 1,\n",
      "          'aimed': 1,\n",
      "          'capturing': 1,\n",
      "          'ngeronimo': 1,\n",
      "          'shadow': 1,\n",
      "          'tell': 1,\n",
      "          'tale': 1,\n",
      "          'oppressed': 1,\n",
      "          'minorities': 1,\n",
      "          'instead': 1,\n",
      "          'subject': 1,\n",
      "          'conscience': 1,\n",
      "          'oppressors': 1,\n",
      "          'nso': 1,\n",
      "          'told': 1,\n",
      "          'perspective': 1,\n",
      "          'nalmost': 1,\n",
      "          'happen': 1,\n",
      "          'greatest': 1,\n",
      "          'admirers': 1,\n",
      "          'every': 1,\n",
      "          'opportunity': 1,\n",
      "          'express': 1,\n",
      "          'sorry': 1,\n",
      "          'feel': 1,\n",
      "          'fight': 1,\n",
      "          'nalthough': 1,\n",
      "          'elements': 1,\n",
      "          'john': 1,\n",
      "          'millius': 1,\n",
      "          'screenplay': 1,\n",
      "          'indeed': 1,\n",
      "          'basis': 1,\n",
      "          'harm': 1,\n",
      "          'honest': 1,\n",
      "          'deal': 1,\n",
      "          'plight': 1,\n",
      "          'given': 1,\n",
      "          'little': 1,\n",
      "          'turn': 1,\n",
      "          'nothing': 1,\n",
      "          'back': 1,\n",
      "          'rather': 1,\n",
      "          'uninteresting': 1,\n",
      "          'adventure': 1,\n",
      "          'band': 1,\n",
      "          'worse': 1,\n",
      "          'problems': 1,\n",
      "          'pacing': 1,\n",
      "          'style': 1,\n",
      "          'end': 1,\n",
      "          'watching': 1,\n",
      "          'two': 1,\n",
      "          'badly': 1,\n",
      "          'edited': 1,\n",
      "          'pursuers': 1,\n",
      "          'turned': 1,\n",
      "          'geronimos': 1,\n",
      "          'life': 1,\n",
      "          'ways': 1,\n",
      "          'interesting': 1,\n",
      "          'difference': 1,\n",
      "          'observed': 1,\n",
      "          'different': 1,\n",
      "          'quality': 1,\n",
      "          'acting': 1,\n",
      "          'nwes': 1,\n",
      "          'cherokee': 1,\n",
      "          'actor': 1,\n",
      "          'impressive': 1,\n",
      "          'magua': 1,\n",
      "          'mohicans': 1,\n",
      "          'perfect': 1,\n",
      "          'choice': 1,\n",
      "          'resembles': 1,\n",
      "          'induces': 1,\n",
      "          'lot': 1,\n",
      "          'passion': 1,\n",
      "          'role': 1,\n",
      "          'ncontrary': 1,\n",
      "          'disinterested': 1,\n",
      "          'actors': 1,\n",
      "          'sleepwalk': 1,\n",
      "          'roles': 1,\n",
      "          'nwhile': 1,\n",
      "          'expected': 1,\n",
      "          'someone': 1,\n",
      "          'shame': 1,\n",
      "          'veterans': 1,\n",
      "          'hills': 1,\n",
      "          'directing': 1,\n",
      "          'bellow': 1,\n",
      "          'expectations': 1,\n",
      "          'battle': 1,\n",
      "          'scenes': 1,\n",
      "          'short': 1,\n",
      "          'late': 1,\n",
      "          'viewers': 1,\n",
      "          'ask': 1,\n",
      "          'happened': 1,\n",
      "          'action': 1,\n",
      "          'director': 1,\n",
      "          '1970s': 1,\n",
      "          'old': 1,\n",
      "          'associate': 1,\n",
      "          'music': 1,\n",
      "          'composer': 1,\n",
      "          'ry': 1,\n",
      "          'cooder': 1,\n",
      "          'disappoints': 1,\n",
      "          'score': 1,\n",
      "          'shifts': 1,\n",
      "          'motives': 1,\n",
      "          'classic': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'photography': 1,\n",
      "          'lloyd': 1,\n",
      "          'ahern': 1,\n",
      "          'ii': 1,\n",
      "          'red': 1,\n",
      "          'lenses': 1,\n",
      "          'gives': 1,\n",
      "          'somewhat': 1,\n",
      "          'dreamy': 1,\n",
      "          'atmosphere': 1,\n",
      "          'ideal': 1,\n",
      "          'supposed': 1,\n",
      "          'melancholic': 1,\n",
      "          'epic': 1,\n",
      "          'nall': 1,\n",
      "          'compared': 1,\n",
      "          'hollywoods': 1,\n",
      "          'left': 1,\n",
      "          'unpleasant': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'robert': 4,\n",
      "          'marc': 4,\n",
      "          'cynthia': 4,\n",
      "          'whines': 3,\n",
      "          'nthe': 2,\n",
      "          'whine': 2,\n",
      "          'panaro': 2,\n",
      "          'way': 2,\n",
      "          'find': 2,\n",
      "          'aspiring': 1,\n",
      "          'broadway': 1,\n",
      "          'composer': 1,\n",
      "          'aaron': 1,\n",
      "          'williams': 1,\n",
      "          'secretly': 1,\n",
      "          'carries': 1,\n",
      "          'torch': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'struggling': 1,\n",
      "          'actor': 1,\n",
      "          'michael': 1,\n",
      "          'shawn': 1,\n",
      "          'lucas': 1,\n",
      "          'problem': 1,\n",
      "          'eyes': 1,\n",
      "          'perfect': 1,\n",
      "          '10s': 1,\n",
      "          'geeky': 1,\n",
      "          'insecure': 1,\n",
      "          'certainly': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'marcs': 1,\n",
      "          'spoiled': 1,\n",
      "          'hetero': 1,\n",
      "          'female': 1,\n",
      "          'roommate': 1,\n",
      "          'mara': 1,\n",
      "          'hobel': 1,\n",
      "          'spends': 1,\n",
      "          'days': 1,\n",
      "          'lying': 1,\n",
      "          'apartment': 1,\n",
      "          'harrassing': 1,\n",
      "          'magazine': 1,\n",
      "          'editor': 1,\n",
      "          'tina': 1,\n",
      "          'brown': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'victor': 1,\n",
      "          'mignattis': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'ad': 1,\n",
      "          'campaign': 1,\n",
      "          'states': 1,\n",
      "          'supposed': 1,\n",
      "          'pardon': 1,\n",
      "          'pun': 1,\n",
      "          'gay': 1,\n",
      "          'ol': 1,\n",
      "          'romp': 1,\n",
      "          'hard': 1,\n",
      "          'much': 1,\n",
      "          'fun': 1,\n",
      "          'annoying': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'characters': 1,\n",
      "          'shallow': 1,\n",
      "          'personal': 1,\n",
      "          'problems': 1,\n",
      "          'sitcomlevel': 1,\n",
      "          'domestic': 1,\n",
      "          'crises': 1,\n",
      "          'trying': 1,\n",
      "          'kill': 1,\n",
      "          'bugshow': 1,\n",
      "          'hilarious': 1,\n",
      "          'go': 1,\n",
      "          'acting': 1,\n",
      "          'class': 1,\n",
      "          'riveting': 1,\n",
      "          'zaftig': 1,\n",
      "          'goes': 1,\n",
      "          'eating': 1,\n",
      "          'binges': 1,\n",
      "          'original': 1,\n",
      "          'nbut': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'three': 1,\n",
      "          'nconstantly': 1,\n",
      "          'nmarc': 1,\n",
      "          'turbulent': 1,\n",
      "          'romance': 1,\n",
      "          'apparent': 1,\n",
      "          '10': 1,\n",
      "          'david': 1,\n",
      "          'hugh': 1,\n",
      "          'hunky': 1,\n",
      "          'musician': 1,\n",
      "          'across': 1,\n",
      "          'able': 1,\n",
      "          'right': 1,\n",
      "          'guy': 1,\n",
      "          'job': 1,\n",
      "          'horrors': 1,\n",
      "          'terrible': 1,\n",
      "          'trio': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'wholly': 1,\n",
      "          'undeserved': 1,\n",
      "          'nadd': 1,\n",
      "          'overly': 1,\n",
      "          'broad': 1,\n",
      "          'performances': 1,\n",
      "          'laughable': 1,\n",
      "          'lipsynching': 1,\n",
      "          'youre': 1,\n",
      "          'left': 1,\n",
      "          'one': 1,\n",
      "          'astonishing': 1,\n",
      "          'piece': 1,\n",
      "          'cinematic': 1,\n",
      "          'damage': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'one': 4,\n",
      "          'nthis': 4,\n",
      "          'arnold': 4,\n",
      "          'schwartzenegger': 4,\n",
      "          'nhe': 4,\n",
      "          'serious': 4,\n",
      "          'time': 3,\n",
      "          'satan': 3,\n",
      "          'like': 3,\n",
      "          'movie': 3,\n",
      "          'nso': 3,\n",
      "          'around': 2,\n",
      "          'evil': 2,\n",
      "          'didnt': 2,\n",
      "          'big': 2,\n",
      "          'action': 2,\n",
      "          'end': 2,\n",
      "          'days': 2,\n",
      "          'turn': 2,\n",
      "          'youll': 2,\n",
      "          'get': 2,\n",
      "          'earth': 2,\n",
      "          'gets': 2,\n",
      "          'got': 2,\n",
      "          'find': 2,\n",
      "          'order': 2,\n",
      "          'cop': 2,\n",
      "          'stop': 2,\n",
      "          'never': 2,\n",
      "          'nhere': 2,\n",
      "          'looks': 2,\n",
      "          'everything': 2,\n",
      "          'nbut': 2,\n",
      "          'wife': 2,\n",
      "          'daughter': 2,\n",
      "          'back': 2,\n",
      "          'thriller': 2,\n",
      "          'nand': 2,\n",
      "          'schwarzenegger': 2,\n",
      "          'muscles': 2,\n",
      "          'tries': 2,\n",
      "          'called': 2,\n",
      "          'comic': 2,\n",
      "          'film': 2,\n",
      "          'easely': 1,\n",
      "          'worst': 1,\n",
      "          'films': 1,\n",
      "          'year': 1,\n",
      "          'nwith': 1,\n",
      "          'millenium': 1,\n",
      "          'corner': 1,\n",
      "          'hollywood': 1,\n",
      "          'playing': 1,\n",
      "          'insecurities': 1,\n",
      "          'concerning': 1,\n",
      "          'biggest': 1,\n",
      "          'event': 1,\n",
      "          'century': 1,\n",
      "          'powers': 1,\n",
      "          'result': 1,\n",
      "          'somewhat': 1,\n",
      "          'predictable': 1,\n",
      "          'ni': 1,\n",
      "          'high': 1,\n",
      "          'hopes': 1,\n",
      "          'arnolds': 1,\n",
      "          'much': 1,\n",
      "          'anticipated': 1,\n",
      "          'return': 1,\n",
      "          'screen': 1,\n",
      "          'nschwarzenegger': 1,\n",
      "          'fans': 1,\n",
      "          'probably': 1,\n",
      "          'pleased': 1,\n",
      "          'lovers': 1,\n",
      "          'wont': 1,\n",
      "          'bored': 1,\n",
      "          'catholic': 1,\n",
      "          'league': 1,\n",
      "          'angry': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'see': 1,\n",
      "          'deliciously': 1,\n",
      "          'bad': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nthink': 1,\n",
      "          'hollywoods': 1,\n",
      "          'y2k': 1,\n",
      "          'bug': 1,\n",
      "          'ndid': 1,\n",
      "          'know': 1,\n",
      "          'three': 1,\n",
      "          'diabolical': 1,\n",
      "          'numbers': 1,\n",
      "          '666': 1,\n",
      "          '999': 1,\n",
      "          '1999': 1,\n",
      "          'nyes': 1,\n",
      "          'better': 1,\n",
      "          'believe': 1,\n",
      "          'working': 1,\n",
      "          'latest': 1,\n",
      "          'project': 1,\n",
      "          'gabriel': 1,\n",
      "          'burne': 1,\n",
      "          'privilege': 1,\n",
      "          'play': 1,\n",
      "          'lucifer': 1,\n",
      "          'although': 1,\n",
      "          'al': 1,\n",
      "          'pacino': 1,\n",
      "          'fun': 1,\n",
      "          'behold': 1,\n",
      "          'coolly': 1,\n",
      "          'strolls': 1,\n",
      "          'manhattan': 1,\n",
      "          'borrowed': 1,\n",
      "          'body': 1,\n",
      "          'investment': 1,\n",
      "          'banker': 1,\n",
      "          'wreaking': 1,\n",
      "          'say': 1,\n",
      "          'havoc': 1,\n",
      "          'way': 1,\n",
      "          'works': 1,\n",
      "          'smirks': 1,\n",
      "          'something': 1,\n",
      "          'explodes': 1,\n",
      "          'nbefore': 1,\n",
      "          'stroke': 1,\n",
      "          'new': 1,\n",
      "          'millennium': 1,\n",
      "          'hes': 1,\n",
      "          'impregnate': 1,\n",
      "          'certain': 1,\n",
      "          'woman': 1,\n",
      "          'climb': 1,\n",
      "          'heavenly': 1,\n",
      "          'curse': 1,\n",
      "          'spelled': 1,\n",
      "          'book': 1,\n",
      "          'revelations': 1,\n",
      "          'nonly': 1,\n",
      "          'schwarzeneggers': 1,\n",
      "          'attached': 1,\n",
      "          'antiterrorist': 1,\n",
      "          'unit': 1,\n",
      "          'nfilms': 1,\n",
      "          'weakness': 1,\n",
      "          'logic': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'twist': 1,\n",
      "          'plot': 1,\n",
      "          'incredibly': 1,\n",
      "          'stupid': 1,\n",
      "          'even': 1,\n",
      "          'incredible': 1,\n",
      "          'fact': 1,\n",
      "          'directors': 1,\n",
      "          'learn': 1,\n",
      "          'nafter': 1,\n",
      "          'thousands': 1,\n",
      "          'headless': 1,\n",
      "          'productions': 1,\n",
      "          'theme': 1,\n",
      "          'become': 1,\n",
      "          'clich': 1,\n",
      "          'devil': 1,\n",
      "          'sex': 1,\n",
      "          'addicted': 1,\n",
      "          'maniac': 1,\n",
      "          'mental': 1,\n",
      "          'institution': 1,\n",
      "          'walking': 1,\n",
      "          'n': 1,\n",
      "          'blowing': 1,\n",
      "          'killing': 1,\n",
      "          'everyone': 1,\n",
      "          '5': 1,\n",
      "          'meter': 1,\n",
      "          'radius': 1,\n",
      "          'nall': 1,\n",
      "          'wants': 1,\n",
      "          'girl': 1,\n",
      "          'somehow': 1,\n",
      "          'special': 1,\n",
      "          'clever': 1,\n",
      "          'hidden': 1,\n",
      "          'church': 1,\n",
      "          'dare': 1,\n",
      "          'enter': 1,\n",
      "          'forced': 1,\n",
      "          'seduce': 1,\n",
      "          'good': 1,\n",
      "          'valuable': 1,\n",
      "          'information': 1,\n",
      "          'ncan': 1,\n",
      "          'give': 1,\n",
      "          'happiness': 1,\n",
      "          'dream': 1,\n",
      "          'ngive': 1,\n",
      "          'address': 1,\n",
      "          'nindeed': 1,\n",
      "          'script': 1,\n",
      "          'could': 1,\n",
      "          'make': 1,\n",
      "          'wonderful': 1,\n",
      "          'parody': 1,\n",
      "          'unfortunately': 1,\n",
      "          'director': 1,\n",
      "          'taking': 1,\n",
      "          'subject': 1,\n",
      "          'seriously': 1,\n",
      "          'attempting': 1,\n",
      "          'create': 1,\n",
      "          'provoking': 1,\n",
      "          'dramatic': 1,\n",
      "          'awaited': 1,\n",
      "          'swartzeneggers': 1,\n",
      "          'comeback': 1,\n",
      "          'satisfied': 1,\n",
      "          'nweve': 1,\n",
      "          'seen': 1,\n",
      "          'nthats': 1,\n",
      "          'worthy': 1,\n",
      "          'opponent': 1,\n",
      "          'battled': 1,\n",
      "          'nuclear': 1,\n",
      "          'terrorists': 1,\n",
      "          'power': 1,\n",
      "          'mad': 1,\n",
      "          'conspirators': 1,\n",
      "          'mars': 1,\n",
      "          'taken': 1,\n",
      "          'alien': 1,\n",
      "          'predators': 1,\n",
      "          'darkest': 1,\n",
      "          'reaches': 1,\n",
      "          'jungle': 1,\n",
      "          'morphing': 1,\n",
      "          'cyberkillers': 1,\n",
      "          'seemingly': 1,\n",
      "          'nothing': 1,\n",
      "          'fights': 1,\n",
      "          'whats': 1,\n",
      "          'left': 1,\n",
      "          'nhow': 1,\n",
      "          'nin': 1,\n",
      "          'opinion': 1,\n",
      "          'quite': 1,\n",
      "          'overcome': 1,\n",
      "          'first': 1,\n",
      "          'role': 1,\n",
      "          'deadly': 1,\n",
      "          'robot': 1,\n",
      "          'camerons': 1,\n",
      "          'terminator': 1,\n",
      "          'schwartzeneggers': 1,\n",
      "          'strength': 1,\n",
      "          'emotions': 1,\n",
      "          'achieve': 1,\n",
      "          'artistic': 1,\n",
      "          'level': 1,\n",
      "          'moving': 1,\n",
      "          'towards': 1,\n",
      "          'oscar': 1,\n",
      "          'adult': 1,\n",
      "          'successful': 1,\n",
      "          'flop': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'nmake': 1,\n",
      "          'wild': 1,\n",
      "          'guess': 1,\n",
      "          'nhis': 1,\n",
      "          'character': 1,\n",
      "          'lost': 1,\n",
      "          'drinking': 1,\n",
      "          'problems': 1,\n",
      "          'requires': 1,\n",
      "          'least': 1,\n",
      "          'acting': 1,\n",
      "          'skills': 1,\n",
      "          'nregrettably': 1,\n",
      "          'thing': 1,\n",
      "          'convincing': 1,\n",
      "          'old': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'struggling': 1,\n",
      "          'characters': 1,\n",
      "          'otherwise': 1,\n",
      "          'technically': 1,\n",
      "          'impressive': 1,\n",
      "          'solid': 1,\n",
      "          'cinematography': 1,\n",
      "          'fine': 1,\n",
      "          'lighting': 1,\n",
      "          'doesnt': 1,\n",
      "          'serve': 1,\n",
      "          'neither': 1,\n",
      "          'stupidity': 1,\n",
      "          'entertainment': 1,\n",
      "          'tone': 1,\n",
      "          'real': 1,\n",
      "          'relief': 1,\n",
      "          'swartzenegger': 1,\n",
      "          'cry': 1,\n",
      "          'sequences': 1,\n",
      "          'recycled': 1,\n",
      "          'effects': 1,\n",
      "          'spectacular': 1,\n",
      "          'really': 1,\n",
      "          'hard': 1,\n",
      "          'recommending': 1,\n",
      "          'somebody': 1,\n",
      "          'nunless': 1,\n",
      "          'diehard': 1,\n",
      "          'fan': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'nas': 1,\n",
      "          'hell': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'weapon': 5,\n",
      "          'would': 4,\n",
      "          'film': 4,\n",
      "          'series': 4,\n",
      "          'people': 3,\n",
      "          'going': 3,\n",
      "          'films': 3,\n",
      "          'lethal': 3,\n",
      "          'plot': 3,\n",
      "          'days': 2,\n",
      "          'nostalgia': 2,\n",
      "          'already': 2,\n",
      "          'years': 2,\n",
      "          'hollywood': 2,\n",
      "          'products': 2,\n",
      "          'period': 2,\n",
      "          'like': 2,\n",
      "          'loaded': 2,\n",
      "          '1': 2,\n",
      "          'many': 2,\n",
      "          'lack': 2,\n",
      "          'made': 2,\n",
      "          'parody': 2,\n",
      "          'l': 2,\n",
      "          'authors': 2,\n",
      "          'projects': 2,\n",
      "          'fourth': 2,\n",
      "          'sequel': 2,\n",
      "          'original': 2,\n",
      "          'movie': 2,\n",
      "          'gags': 2,\n",
      "          'laugh': 2,\n",
      "          'simply': 2,\n",
      "          'rather': 1,\n",
      "          'short': 1,\n",
      "          'attention': 1,\n",
      "          'span': 1,\n",
      "          'hardly': 1,\n",
      "          'anything': 1,\n",
      "          'satisfy': 1,\n",
      "          'long': 1,\n",
      "          'run': 1,\n",
      "          'n1970s': 1,\n",
      "          'wearing': 1,\n",
      "          'becoming': 1,\n",
      "          'interested': 1,\n",
      "          '1980s': 1,\n",
      "          'nfew': 1,\n",
      "          'future': 1,\n",
      "          'early': 1,\n",
      "          '1990s': 1,\n",
      "          'regarded': 1,\n",
      "          'next': 1,\n",
      "          'golden': 1,\n",
      "          'age': 1,\n",
      "          'nhowever': 1,\n",
      "          'doubt': 1,\n",
      "          'nostalgic': 1,\n",
      "          'none': 1,\n",
      "          'reason': 1,\n",
      "          'surely': 1,\n",
      "          'national': 1,\n",
      "          'lampoons': 1,\n",
      "          'ways': 1,\n",
      "          'symbolise': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'contemporary': 1,\n",
      "          'american': 1,\n",
      "          'industry': 1,\n",
      "          'originality': 1,\n",
      "          'ideas': 1,\n",
      "          'nbeing': 1,\n",
      "          'kind': 1,\n",
      "          'pairs': 1,\n",
      "          'two': 1,\n",
      "          'policemen': 1,\n",
      "          'jack': 1,\n",
      "          'colt': 1,\n",
      "          'emilio': 1,\n",
      "          'estevez': 1,\n",
      "          'burnout': 1,\n",
      "          'alcoholic': 1,\n",
      "          'cop': 1,\n",
      "          'edge': 1,\n",
      "          'wes': 1,\n",
      "          'luger': 1,\n",
      "          'samuel': 1,\n",
      "          'jackson': 1,\n",
      "          'bythebook': 1,\n",
      "          'policeman': 1,\n",
      "          'away': 1,\n",
      "          'retirement': 1,\n",
      "          'ntwo': 1,\n",
      "          'following': 1,\n",
      "          'murder': 1,\n",
      "          'lugers': 1,\n",
      "          'ex': 1,\n",
      "          'partner': 1,\n",
      "          'must': 1,\n",
      "          'confront': 1,\n",
      "          'evil': 1,\n",
      "          'general': 1,\n",
      "          'mortars': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'william': 1,\n",
      "          'shatner': 1,\n",
      "          'crime': 1,\n",
      "          'lord': 1,\n",
      "          'flood': 1,\n",
      "          'market': 1,\n",
      "          'cocaine': 1,\n",
      "          'stashed': 1,\n",
      "          'wilderness': 1,\n",
      "          'girl': 1,\n",
      "          'cookies': 1,\n",
      "          'whose': 1,\n",
      "          'director': 1,\n",
      "          'gene': 1,\n",
      "          'quintano': 1,\n",
      "          'worked': 1,\n",
      "          'third': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          'lacked': 1,\n",
      "          'idea': 1,\n",
      "          'undertook': 1,\n",
      "          'reflects': 1,\n",
      "          'characters': 1,\n",
      "          'even': 1,\n",
      "          'lines': 1,\n",
      "          'goes': 1,\n",
      "          'nothing': 1,\n",
      "          'make': 1,\n",
      "          'popular': 1,\n",
      "          'previous': 1,\n",
      "          'apart': 1,\n",
      "          'borrows': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'best': 1,\n",
      "          'similar': 1,\n",
      "          'movies': 1,\n",
      "          'shown': 1,\n",
      "          'trailers': 1,\n",
      "          'rest': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'nonly': 1,\n",
      "          'used': 1,\n",
      "          'watch': 1,\n",
      "          'lot': 1,\n",
      "          'nothers': 1,\n",
      "          'probably': 1,\n",
      "          'wince': 1,\n",
      "          'lameness': 1,\n",
      "          'humour': 1,\n",
      "          'nsome': 1,\n",
      "          'entertained': 1,\n",
      "          'celebrity': 1,\n",
      "          'cameos': 1,\n",
      "          'pop': 1,\n",
      "          'every': 1,\n",
      "          'nbut': 1,\n",
      "          'end': 1,\n",
      "          'spending': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'front': 1,\n",
      "          'disorganised': 1,\n",
      "          'mess': 1,\n",
      "          'worth': 1,\n",
      "          'effort': 1,\n",
      "          'sometimes': 1,\n",
      "          'criticised': 1,\n",
      "          'strong': 1,\n",
      "          'comic': 1,\n",
      "          'overtones': 1,\n",
      "          'returned': 1,\n",
      "          'favour': 1,\n",
      "          'using': 1,\n",
      "          'joke': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 14,\n",
      "          'invisible': 8,\n",
      "          'films': 7,\n",
      "          'like': 7,\n",
      "          'nits': 7,\n",
      "          'man': 7,\n",
      "          'one': 5,\n",
      "          'nthe': 5,\n",
      "          'verhoeven': 4,\n",
      "          'never': 4,\n",
      "          'movie': 4,\n",
      "          'hollow': 4,\n",
      "          'bacon': 4,\n",
      "          'scientist': 4,\n",
      "          'mad': 4,\n",
      "          'slasher': 4,\n",
      "          'though': 3,\n",
      "          'kind': 3,\n",
      "          'whos': 3,\n",
      "          'make': 3,\n",
      "          'even': 3,\n",
      "          'yet': 3,\n",
      "          'set': 3,\n",
      "          'manner': 3,\n",
      "          'villain': 3,\n",
      "          'moment': 3,\n",
      "          'wont': 3,\n",
      "          'nbut': 3,\n",
      "          'character': 3,\n",
      "          'end': 3,\n",
      "          'rest': 3,\n",
      "          'animals': 3,\n",
      "          'invisibility': 3,\n",
      "          'anyone': 3,\n",
      "          'paul': 2,\n",
      "          'dutch': 2,\n",
      "          'violent': 2,\n",
      "          'american': 2,\n",
      "          'director': 2,\n",
      "          'troopers': 2,\n",
      "          'hollywood': 2,\n",
      "          'budget': 2,\n",
      "          'stimulating': 2,\n",
      "          'high': 2,\n",
      "          'soldier': 2,\n",
      "          'orange': 2,\n",
      "          'thats': 2,\n",
      "          'nearly': 2,\n",
      "          'actually': 2,\n",
      "          'feels': 2,\n",
      "          'picture': 2,\n",
      "          'scenes': 2,\n",
      "          'completely': 2,\n",
      "          'made': 2,\n",
      "          'within': 2,\n",
      "          'aforementioned': 2,\n",
      "          'seeing': 2,\n",
      "          'robocop': 2,\n",
      "          'violence': 2,\n",
      "          'purpose': 2,\n",
      "          'simply': 2,\n",
      "          'scene': 2,\n",
      "          'first': 2,\n",
      "          'wherein': 2,\n",
      "          'victims': 2,\n",
      "          'every': 2,\n",
      "          'nin': 2,\n",
      "          'kevin': 2,\n",
      "          'another': 2,\n",
      "          'always': 2,\n",
      "          'nhollow': 2,\n",
      "          'couple': 2,\n",
      "          'got': 2,\n",
      "          'look': 2,\n",
      "          'characters': 2,\n",
      "          'well': 2,\n",
      "          'party': 2,\n",
      "          'become': 2,\n",
      "          'big': 2,\n",
      "          'new': 2,\n",
      "          'time': 2,\n",
      "          'nas': 2,\n",
      "          'crew': 2,\n",
      "          'top': 2,\n",
      "          'secret': 2,\n",
      "          'hinted': 2,\n",
      "          'several': 2,\n",
      "          'show': 2,\n",
      "          'pentagon': 2,\n",
      "          'go': 2,\n",
      "          'stupid': 2,\n",
      "          'nit': 2,\n",
      "          'looking': 2,\n",
      "          'nverhoeven': 2,\n",
      "          'flick': 2,\n",
      "          'reason': 2,\n",
      "          'bad': 2,\n",
      "          'verhoven': 2,\n",
      "          'get': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'auteur': 1,\n",
      "          'dragged': 1,\n",
      "          'sexually': 1,\n",
      "          'aggressive': 1,\n",
      "          'aesthetic': 1,\n",
      "          'id': 1,\n",
      "          'consider': 1,\n",
      "          'thoughtful': 1,\n",
      "          'notably': 1,\n",
      "          'starship': 1,\n",
      "          'lauded': 1,\n",
      "          'artistic': 1,\n",
      "          'achievements': 1,\n",
      "          'maker': 1,\n",
      "          'managed': 1,\n",
      "          'matter': 1,\n",
      "          'distinctive': 1,\n",
      "          'sometimes': 1,\n",
      "          'smuggle': 1,\n",
      "          'themes': 1,\n",
      "          'lavish': 1,\n",
      "          'concepts': 1,\n",
      "          'toils': 1,\n",
      "          'nstarship': 1,\n",
      "          'essentially': 1,\n",
      "          'bmonster': 1,\n",
      "          'remake': 1,\n",
      "          'enthralling': 1,\n",
      "          'war': 1,\n",
      "          'great': 1,\n",
      "          'impossible': 1,\n",
      "          'find': 1,\n",
      "          'video': 1,\n",
      "          'showgirls': 1,\n",
      "          'everywhere': 1,\n",
      "          'cast': 1,\n",
      "          'troop': 1,\n",
      "          'stunningly': 1,\n",
      "          'attractive': 1,\n",
      "          'mannequins': 1,\n",
      "          'square': 1,\n",
      "          'jawed': 1,\n",
      "          'casper': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'denise': 1,\n",
      "          'richards': 1,\n",
      "          'may': 1,\n",
      "          '45': 1,\n",
      "          'silicone': 1,\n",
      "          'propaganda': 1,\n",
      "          'monotonous': 1,\n",
      "          'graphic': 1,\n",
      "          'carnage': 1,\n",
      "          'successful': 1,\n",
      "          'failure': 1,\n",
      "          'certainly': 1,\n",
      "          'interesting': 1,\n",
      "          'mostly': 1,\n",
      "          'entertaining': 1,\n",
      "          'nmy': 1,\n",
      "          'favorite': 1,\n",
      "          'ones': 1,\n",
      "          'hit': 1,\n",
      "          'shores': 1,\n",
      "          'spetters': 1,\n",
      "          'dark': 1,\n",
      "          'near': 1,\n",
      "          'pornographic': 1,\n",
      "          'coming': 1,\n",
      "          'age': 1,\n",
      "          'subculture': 1,\n",
      "          'drag': 1,\n",
      "          'racing': 1,\n",
      "          'havent': 1,\n",
      "          'gotten': 1,\n",
      "          'around': 1,\n",
      "          '4th': 1,\n",
      "          'turkish': 1,\n",
      "          'delight': 1,\n",
      "          'ni': 1,\n",
      "          'believe': 1,\n",
      "          'best': 1,\n",
      "          'bleak': 1,\n",
      "          'superhero': 1,\n",
      "          'satire': 1,\n",
      "          'robotic': 1,\n",
      "          'hero': 1,\n",
      "          'touching': 1,\n",
      "          'schwarzeneggers': 1,\n",
      "          't2': 1,\n",
      "          'nthat': 1,\n",
      "          'overdone': 1,\n",
      "          'cartoonish': 1,\n",
      "          'recent': 1,\n",
      "          'pics': 1,\n",
      "          'seemed': 1,\n",
      "          'namely': 1,\n",
      "          'create': 1,\n",
      "          'atmosphere': 1,\n",
      "          'unpredictable': 1,\n",
      "          'dread': 1,\n",
      "          'titillate': 1,\n",
      "          'attention': 1,\n",
      "          'deprived': 1,\n",
      "          'audience': 1,\n",
      "          'ntheres': 1,\n",
      "          'jawdropping': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'lead': 1,\n",
      "          'toys': 1,\n",
      "          'cop': 1,\n",
      "          'snuffing': 1,\n",
      "          'nhe': 1,\n",
      "          'tortures': 1,\n",
      "          'officer': 1,\n",
      "          'taking': 1,\n",
      "          'glee': 1,\n",
      "          'fearful': 1,\n",
      "          'tic': 1,\n",
      "          'startling': 1,\n",
      "          'barbaric': 1,\n",
      "          'maddening': 1,\n",
      "          'effectively': 1,\n",
      "          'sets': 1,\n",
      "          'tone': 1,\n",
      "          'could': 1,\n",
      "          'designated': 1,\n",
      "          'splatter': 1,\n",
      "          'punknoir': 1,\n",
      "          'brutally': 1,\n",
      "          'slays': 1,\n",
      "          'dog': 1,\n",
      "          'shut': 1,\n",
      "          'impales': 1,\n",
      "          'coworker': 1,\n",
      "          'drowns': 1,\n",
      "          'nhis': 1,\n",
      "          'introduced': 1,\n",
      "          'smug': 1,\n",
      "          'genius': 1,\n",
      "          'impeccably': 1,\n",
      "          'dressed': 1,\n",
      "          'races': 1,\n",
      "          'sports': 1,\n",
      "          'car': 1,\n",
      "          'generic': 1,\n",
      "          'rock': 1,\n",
      "          'tunes': 1,\n",
      "          'blare': 1,\n",
      "          'stereo': 1,\n",
      "          'world': 1,\n",
      "          'hear': 1,\n",
      "          'sort': 1,\n",
      "          'scheming': 1,\n",
      "          'uber': 1,\n",
      "          'dallas': 1,\n",
      "          'melrose': 1,\n",
      "          'place': 1,\n",
      "          'becomes': 1,\n",
      "          'pull': 1,\n",
      "          '180': 1,\n",
      "          'shift': 1,\n",
      "          'psychotic': 1,\n",
      "          'monster': 1,\n",
      "          'die': 1,\n",
      "          'mans': 1,\n",
      "          'protagonists': 1,\n",
      "          'bland': 1,\n",
      "          'beautiful': 1,\n",
      "          'linda': 1,\n",
      "          'elizabeth': 1,\n",
      "          'shue': 1,\n",
      "          'acting': 1,\n",
      "          'rebecca': 1,\n",
      "          'sunnybrook': 1,\n",
      "          'farm': 1,\n",
      "          'lover': 1,\n",
      "          'hunk': 1,\n",
      "          'beef': 1,\n",
      "          'played': 1,\n",
      "          'josh': 1,\n",
      "          'brolin': 1,\n",
      "          'saddled': 1,\n",
      "          'worst': 1,\n",
      "          'lines': 1,\n",
      "          'ive': 1,\n",
      "          'lost': 1,\n",
      "          'cohesion': 1,\n",
      "          'ntheyre': 1,\n",
      "          'typical': 1,\n",
      "          'aaron': 1,\n",
      "          'spelling': 1,\n",
      "          'goodlooking': 1,\n",
      "          'vacant': 1,\n",
      "          'george': 1,\n",
      "          'w': 1,\n",
      "          'bushs': 1,\n",
      "          'republican': 1,\n",
      "          'national': 1,\n",
      "          'convention': 1,\n",
      "          'speech': 1,\n",
      "          'e': 1,\n",
      "          'nbush': 1,\n",
      "          'referring': 1,\n",
      "          'clinton': 1,\n",
      "          'much': 1,\n",
      "          'promise': 1,\n",
      "          'nto': 1,\n",
      "          'nthis': 1,\n",
      "          'applause': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'warren': 1,\n",
      "          'beatty': 1,\n",
      "          'doesnt': 1,\n",
      "          'absurd': 1,\n",
      "          'past': 1,\n",
      "          'thirty': 1,\n",
      "          'act': 1,\n",
      "          'annoying': 1,\n",
      "          'school': 1,\n",
      "          'insulting': 1,\n",
      "          'series': 1,\n",
      "          'strained': 1,\n",
      "          'oneliners': 1,\n",
      "          'labored': 1,\n",
      "          'insults': 1,\n",
      "          'hollywoods': 1,\n",
      "          'developing': 1,\n",
      "          'technique': 1,\n",
      "          'nahh': 1,\n",
      "          'cynical': 1,\n",
      "          'live': 1,\n",
      "          'opens': 1,\n",
      "          'meet': 1,\n",
      "          'cain': 1,\n",
      "          'egocentric': 1,\n",
      "          'working': 1,\n",
      "          'irritating': 1,\n",
      "          'scientists': 1,\n",
      "          'government': 1,\n",
      "          'provided': 1,\n",
      "          'dilapidated': 1,\n",
      "          'warehouse': 1,\n",
      "          'perform': 1,\n",
      "          'extensive': 1,\n",
      "          'experimentations': 1,\n",
      "          'project': 1,\n",
      "          'goal': 1,\n",
      "          'possibility': 1,\n",
      "          'ntheyve': 1,\n",
      "          'performed': 1,\n",
      "          'experiments': 1,\n",
      "          'solved': 1,\n",
      "          'quandary': 1,\n",
      "          'causing': 1,\n",
      "          'caine': 1,\n",
      "          'twist': 1,\n",
      "          'worthy': 1,\n",
      "          '1950s': 1,\n",
      "          'late': 1,\n",
      "          'origins': 1,\n",
      "          'impulsively': 1,\n",
      "          'experiment': 1,\n",
      "          'ncaine': 1,\n",
      "          'neglects': 1,\n",
      "          'let': 1,\n",
      "          'plans': 1,\n",
      "          'somehow': 1,\n",
      "          'gets': 1,\n",
      "          'two': 1,\n",
      "          'coworkers': 1,\n",
      "          'lie': 1,\n",
      "          'think': 1,\n",
      "          'gave': 1,\n",
      "          'ahead': 1,\n",
      "          'nour': 1,\n",
      "          'turned': 1,\n",
      "          'fxheavy': 1,\n",
      "          'complications': 1,\n",
      "          'inexplicably': 1,\n",
      "          'process': 1,\n",
      "          'savage': 1,\n",
      "          'creatures': 1,\n",
      "          'explored': 1,\n",
      "          'case': 1,\n",
      "          'hell': 1,\n",
      "          'would': 1,\n",
      "          'enough': 1,\n",
      "          'test': 1,\n",
      "          'human': 1,\n",
      "          'nbegins': 1,\n",
      "          'raping': 1,\n",
      "          'assaulting': 1,\n",
      "          'murdering': 1,\n",
      "          'pleases': 1,\n",
      "          'lame': 1,\n",
      "          'wisecrack': 1,\n",
      "          'ready': 1,\n",
      "          'la': 1,\n",
      "          'freddy': 1,\n",
      "          'krueger': 1,\n",
      "          'grows': 1,\n",
      "          'abundantly': 1,\n",
      "          'clear': 1,\n",
      "          'release': 1,\n",
      "          'verhoevens': 1,\n",
      "          'nlike': 1,\n",
      "          'cold': 1,\n",
      "          'heartless': 1,\n",
      "          'full': 1,\n",
      "          'contempt': 1,\n",
      "          'humanity': 1,\n",
      "          'addition': 1,\n",
      "          'lacks': 1,\n",
      "          'trace': 1,\n",
      "          'wit': 1,\n",
      "          'insight': 1,\n",
      "          'makes': 1,\n",
      "          'statement': 1,\n",
      "          'audiences': 1,\n",
      "          'pay': 1,\n",
      "          'anything': 1,\n",
      "          'days': 1,\n",
      "          'affront': 1,\n",
      "          'something': 1,\n",
      "          'intellectual': 1,\n",
      "          'level': 1,\n",
      "          'hoping': 1,\n",
      "          'spend': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'fun': 1,\n",
      "          'thrillaminute': 1,\n",
      "          'ride': 1,\n",
      "          'instead': 1,\n",
      "          'served': 1,\n",
      "          'utterly': 1,\n",
      "          'routine': 1,\n",
      "          'nobody': 1,\n",
      "          'root': 1,\n",
      "          'care': 1,\n",
      "          'previews': 1,\n",
      "          'irresistible': 1,\n",
      "          'nhow': 1,\n",
      "          'good': 1,\n",
      "          'utilizes': 1,\n",
      "          'state': 1,\n",
      "          'art': 1,\n",
      "          'fx': 1,\n",
      "          'illustrate': 1,\n",
      "          'getting': 1,\n",
      "          'dirty': 1,\n",
      "          'self': 1,\n",
      "          'na': 1,\n",
      "          'weeks': 1,\n",
      "          'ago': 1,\n",
      "          'trailer': 1,\n",
      "          'bunch': 1,\n",
      "          'friends': 1,\n",
      "          'long': 1,\n",
      "          'discussion': 1,\n",
      "          'flicks': 1,\n",
      "          'far': 1,\n",
      "          'individual': 1,\n",
      "          'indulging': 1,\n",
      "          'newfound': 1,\n",
      "          'ability': 1,\n",
      "          'looked': 1,\n",
      "          'whoa': 1,\n",
      "          'serious': 1,\n",
      "          'boot': 1,\n",
      "          'oh': 1,\n",
      "          'yeah': 1,\n",
      "          'directed': 1,\n",
      "          'atom': 1,\n",
      "          'egoyan': 1,\n",
      "          'peter': 1,\n",
      "          'greenway': 1,\n",
      "          'delivers': 1,\n",
      "          'sleazy': 1,\n",
      "          'goods': 1,\n",
      "          'watchable': 1,\n",
      "          'thrillingly': 1,\n",
      "          'disturbing': 1,\n",
      "          'icky': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'keeps': 1,\n",
      "          'camera': 1,\n",
      "          'trained': 1,\n",
      "          'nubile': 1,\n",
      "          'actresses': 1,\n",
      "          'caressing': 1,\n",
      "          'breasts': 1,\n",
      "          'lens': 1,\n",
      "          'fauxpsycho': 1,\n",
      "          'music': 1,\n",
      "          'strains': 1,\n",
      "          'background': 1,\n",
      "          'plainly': 1,\n",
      "          'obvious': 1,\n",
      "          'isnt': 1,\n",
      "          'exploring': 1,\n",
      "          'voyeurism': 1,\n",
      "          'classic': 1,\n",
      "          'peeping': 1,\n",
      "          'tom': 1,\n",
      "          'exploiting': 1,\n",
      "          'funny': 1,\n",
      "          'technology': 1,\n",
      "          '90': 1,\n",
      "          'million': 1,\n",
      "          'stuck': 1,\n",
      "          'trying': 1,\n",
      "          'figure': 1,\n",
      "          'womans': 1,\n",
      "          'naked': 1,\n",
      "          'breast': 1,\n",
      "          'manipulated': 1,\n",
      "          'hand': 1,\n",
      "          'nmost': 1,\n",
      "          'vexing': 1,\n",
      "          'aspect': 1,\n",
      "          'used': 1,\n",
      "          'gimmick': 1,\n",
      "          'things': 1,\n",
      "          'pop': 1,\n",
      "          'attacks': 1,\n",
      "          'fact': 1,\n",
      "          'largely': 1,\n",
      "          'irrelevant': 1,\n",
      "          'since': 1,\n",
      "          'potential': 1,\n",
      "          'inferred': 1,\n",
      "          'glasses': 1,\n",
      "          'track': 1,\n",
      "          'body': 1,\n",
      "          'heat': 1,\n",
      "          'killers': 1,\n",
      "          'pov': 1,\n",
      "          'spies': 1,\n",
      "          'neighbor': 1,\n",
      "          'undresses': 1,\n",
      "          'triggered': 1,\n",
      "          'unpleasant': 1,\n",
      "          'memories': 1,\n",
      "          'slumber': 1,\n",
      "          'massacre': 1,\n",
      "          'lots': 1,\n",
      "          'people': 1,\n",
      "          'unknowingly': 1,\n",
      "          'stalked': 1,\n",
      "          'provides': 1,\n",
      "          'found': 1,\n",
      "          'genuinely': 1,\n",
      "          'creepy': 1,\n",
      "          'happens': 1,\n",
      "          'lab': 1,\n",
      "          'assistant': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'looks': 1,\n",
      "          'stepped': 1,\n",
      "          'playboy': 1,\n",
      "          'middle': 1,\n",
      "          'chit': 1,\n",
      "          'chat': 1,\n",
      "          'suddenly': 1,\n",
      "          'pauses': 1,\n",
      "          'n': 1,\n",
      "          'queries': 1,\n",
      "          'obviously': 1,\n",
      "          'haunted': 1,\n",
      "          'little': 1,\n",
      "          'nothing': 1,\n",
      "          'offer': 1,\n",
      "          'ground': 1,\n",
      "          'breaking': 1,\n",
      "          'plot': 1,\n",
      "          'run': 1,\n",
      "          'course': 1,\n",
      "          '1982': 1,\n",
      "          'apex': 1,\n",
      "          'craze': 1,\n",
      "          'nthose': 1,\n",
      "          'stunning': 1,\n",
      "          'alone': 1,\n",
      "          'keep': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'still': 1,\n",
      "          'know': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'nand': 1,\n",
      "          'theyre': 1,\n",
      "          'check': 1,\n",
      "          'preferably': 1,\n",
      "          'midweek': 1,\n",
      "          'bargain': 1,\n",
      "          'rental': 1,\n",
      "          'nyouve': 1,\n",
      "          'warned': 1,\n",
      "          'probably': 1,\n",
      "          'listen': 1,\n",
      "          'ntis': 1,\n",
      "          'pity': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 9,\n",
      "          'bronson': 6,\n",
      "          'movies': 5,\n",
      "          'could': 5,\n",
      "          'played': 5,\n",
      "          'kersey': 4,\n",
      "          'fact': 3,\n",
      "          'cannon': 3,\n",
      "          'probably': 3,\n",
      "          'nunfortunately': 3,\n",
      "          'character': 3,\n",
      "          '3': 3,\n",
      "          'bronsons': 3,\n",
      "          'death': 3,\n",
      "          'wish': 3,\n",
      "          'new': 3,\n",
      "          'york': 3,\n",
      "          'street': 3,\n",
      "          'urban': 3,\n",
      "          'charles': 2,\n",
      "          'represents': 2,\n",
      "          'one': 2,\n",
      "          '1980s': 2,\n",
      "          'decade': 2,\n",
      "          'quality': 2,\n",
      "          'work': 2,\n",
      "          'group': 2,\n",
      "          'led': 2,\n",
      "          'next': 2,\n",
      "          'didnt': 2,\n",
      "          'end': 2,\n",
      "          'cinematic': 2,\n",
      "          'garbage': 2,\n",
      "          'hero': 2,\n",
      "          'main': 2,\n",
      "          'reputation': 2,\n",
      "          'non': 2,\n",
      "          'hand': 2,\n",
      "          'began': 2,\n",
      "          'nin': 2,\n",
      "          'original': 2,\n",
      "          'paul': 2,\n",
      "          'turns': 2,\n",
      "          'victim': 2,\n",
      "          'yet': 2,\n",
      "          'director': 2,\n",
      "          'michael': 2,\n",
      "          'winner': 2,\n",
      "          'crime': 2,\n",
      "          'lines': 2,\n",
      "          'old': 2,\n",
      "          'friend': 2,\n",
      "          'east': 2,\n",
      "          'people': 2,\n",
      "          'poor': 2,\n",
      "          'kerseys': 2,\n",
      "          'role': 2,\n",
      "          'film': 2,\n",
      "          'crusade': 2,\n",
      "          'single': 2,\n",
      "          'emotions': 2,\n",
      "          'nthe': 2,\n",
      "          'give': 2,\n",
      "          'enough': 2,\n",
      "          'important': 1,\n",
      "          'icons': 1,\n",
      "          'biggest': 1,\n",
      "          'almost': 1,\n",
      "          'tragic': 1,\n",
      "          'ironies': 1,\n",
      "          'ntragedy': 1,\n",
      "          'lies': 1,\n",
      "          'icon': 1,\n",
      "          'status': 1,\n",
      "          'earned': 1,\n",
      "          'less': 1,\n",
      "          'quantity': 1,\n",
      "          'nmost': 1,\n",
      "          'produced': 1,\n",
      "          'company': 1,\n",
      "          'israeli': 1,\n",
      "          'producers': 1,\n",
      "          'menahem': 1,\n",
      "          'golan': 1,\n",
      "          'yoram': 1,\n",
      "          'globus': 1,\n",
      "          'nthose': 1,\n",
      "          'two': 1,\n",
      "          'men': 1,\n",
      "          'thought': 1,\n",
      "          'roger': 1,\n",
      "          'corman': 1,\n",
      "          'b': 1,\n",
      "          'mentors': 1,\n",
      "          'future': 1,\n",
      "          'hollywood': 1,\n",
      "          'legends': 1,\n",
      "          'happened': 1,\n",
      "          'finally': 1,\n",
      "          'went': 1,\n",
      "          'bankrupt': 1,\n",
      "          'behind': 1,\n",
      "          'stood': 1,\n",
      "          'huge': 1,\n",
      "          'pile': 1,\n",
      "          'would': 1,\n",
      "          'require': 1,\n",
      "          'least': 1,\n",
      "          'centuries': 1,\n",
      "          'reaches': 1,\n",
      "          'camp': 1,\n",
      "          'appeal': 1,\n",
      "          'nsadly': 1,\n",
      "          'also': 1,\n",
      "          'contained': 1,\n",
      "          'numerous': 1,\n",
      "          'capable': 1,\n",
      "          'actor': 1,\n",
      "          'action': 1,\n",
      "          '1970s': 1,\n",
      "          'tried': 1,\n",
      "          'raise': 1,\n",
      "          'worth': 1,\n",
      "          'simply': 1,\n",
      "          'lead': 1,\n",
      "          'lowering': 1,\n",
      "          'process': 1,\n",
      "          'take': 1,\n",
      "          'comfort': 1,\n",
      "          'extremely': 1,\n",
      "          'popular': 1,\n",
      "          'especially': 1,\n",
      "          'among': 1,\n",
      "          'audience': 1,\n",
      "          '4': 1,\n",
      "          'times': 1,\n",
      "          'younger': 1,\n",
      "          'none': 1,\n",
      "          'seriously': 1,\n",
      "          'marred': 1,\n",
      "          'third': 1,\n",
      "          'sequel': 1,\n",
      "          'series': 1,\n",
      "          '1974': 1,\n",
      "          'mildmannered': 1,\n",
      "          'architect': 1,\n",
      "          'deadly': 1,\n",
      "          'vigilante': 1,\n",
      "          'family': 1,\n",
      "          'fell': 1,\n",
      "          'violence': 1,\n",
      "          'nthat': 1,\n",
      "          'far': 1,\n",
      "          'masterpiece': 1,\n",
      "          'skillfully': 1,\n",
      "          'offering': 1,\n",
      "          'remedy': 1,\n",
      "          'real': 1,\n",
      "          'disease': 1,\n",
      "          'growing': 1,\n",
      "          'rates': 1,\n",
      "          'time': 1,\n",
      "          'like': 1,\n",
      "          'siegel': 1,\n",
      "          'dirty': 1,\n",
      "          'harry': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'got': 1,\n",
      "          'rights': 1,\n",
      "          'destroying': 1,\n",
      "          'pumping': 1,\n",
      "          'sequels': 1,\n",
      "          'even': 1,\n",
      "          'presence': 1,\n",
      "          'stop': 1,\n",
      "          'rapid': 1,\n",
      "          'decline': 1,\n",
      "          'ndeath': 1,\n",
      "          'begins': 1,\n",
      "          'comes': 1,\n",
      "          'visit': 1,\n",
      "          'living': 1,\n",
      "          'wasteland': 1,\n",
      "          'populated': 1,\n",
      "          'young': 1,\n",
      "          'criminals': 1,\n",
      "          'move': 1,\n",
      "          'nbefore': 1,\n",
      "          'reunion': 1,\n",
      "          'falls': 1,\n",
      "          'gang': 1,\n",
      "          'evil': 1,\n",
      "          'fraker': 1,\n",
      "          'gavan': 1,\n",
      "          'oherlihy': 1,\n",
      "          'noteworthy': 1,\n",
      "          'nkersey': 1,\n",
      "          'decides': 1,\n",
      "          'avenge': 1,\n",
      "          'slowly': 1,\n",
      "          'prepares': 1,\n",
      "          'police': 1,\n",
      "          'inspector': 1,\n",
      "          'shriker': 1,\n",
      "          'ed': 1,\n",
      "          'lauter': 1,\n",
      "          'ants': 1,\n",
      "          'use': 1,\n",
      "          'secret': 1,\n",
      "          'weapon': 1,\n",
      "          'losing': 1,\n",
      "          'war': 1,\n",
      "          'nbronson': 1,\n",
      "          'asset': 1,\n",
      "          'plays': 1,\n",
      "          'nothing': 1,\n",
      "          'efficient': 1,\n",
      "          'killing': 1,\n",
      "          'machine': 1,\n",
      "          'nalthough': 1,\n",
      "          'charisma': 1,\n",
      "          'help': 1,\n",
      "          'overcoming': 1,\n",
      "          'implausibilities': 1,\n",
      "          'man': 1,\n",
      "          '60s': 1,\n",
      "          'armed': 1,\n",
      "          'pistol': 1,\n",
      "          'manages': 1,\n",
      "          'wipe': 1,\n",
      "          'dozens': 1,\n",
      "          'opponents': 1,\n",
      "          'superior': 1,\n",
      "          'firepower': 1,\n",
      "          'lack': 1,\n",
      "          'commitment': 1,\n",
      "          'seen': 1,\n",
      "          'spoken': 1,\n",
      "          'authors': 1,\n",
      "          'somewhat': 1,\n",
      "          'aware': 1,\n",
      "          'emotional': 1,\n",
      "          'shallowness': 1,\n",
      "          'added': 1,\n",
      "          'romantic': 1,\n",
      "          'interest': 1,\n",
      "          'public': 1,\n",
      "          'defender': 1,\n",
      "          'deborah': 1,\n",
      "          'raffin': 1,\n",
      "          'conveniently': 1,\n",
      "          'terminated': 1,\n",
      "          'order': 1,\n",
      "          'motives': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'confronting': 1,\n",
      "          'lawabiding': 1,\n",
      "          'ethnically': 1,\n",
      "          'stereotyped': 1,\n",
      "          'citizens': 1,\n",
      "          'daily': 1,\n",
      "          'nemesis': 1,\n",
      "          'punks': 1,\n",
      "          'ruthless': 1,\n",
      "          'exercise': 1,\n",
      "          'reign': 1,\n",
      "          'terror': 1,\n",
      "          'entire': 1,\n",
      "          'city': 1,\n",
      "          'blocks': 1,\n",
      "          'stupid': 1,\n",
      "          'killed': 1,\n",
      "          'droves': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'plot': 1,\n",
      "          'torturing': 1,\n",
      "          'viewers': 1,\n",
      "          'mostly': 1,\n",
      "          'uninteresting': 1,\n",
      "          'characters': 1,\n",
      "          'cliched': 1,\n",
      "          'formulaic': 1,\n",
      "          'situations': 1,\n",
      "          'ends': 1,\n",
      "          'bang': 1,\n",
      "          'big': 1,\n",
      "          'showdown': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sarajevolike': 1,\n",
      "          'battle': 1,\n",
      "          'zone': 1,\n",
      "          'worst': 1,\n",
      "          'part': 1,\n",
      "          'editing': 1,\n",
      "          'cheap': 1,\n",
      "          'sets': 1,\n",
      "          'props': 1,\n",
      "          'away': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'short': 1,\n",
      "          'recommended': 1,\n",
      "          'fanatical': 1,\n",
      "          'fans': 1,\n",
      "          'already': 1,\n",
      "          'desperate': 1,\n",
      "          'nostalgia': 1,\n",
      "          'n': 1,\n",
      "          'special': 1,\n",
      "          'note': 1,\n",
      "          'trekkies': 1,\n",
      "          'marina': 1,\n",
      "          'sirtis': 1,\n",
      "          'actress': 1,\n",
      "          'counsellor': 1,\n",
      "          'deanna': 1,\n",
      "          'troi': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'generation': 1,\n",
      "          'spotted': 1,\n",
      "          'small': 1,\n",
      "          'portorican': 1,\n",
      "          'wife': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'original': 4,\n",
      "          'house': 3,\n",
      "          'effects': 3,\n",
      "          'ni': 3,\n",
      "          'version': 3,\n",
      "          'gets': 3,\n",
      "          'time': 3,\n",
      "          'de': 3,\n",
      "          'wise': 2,\n",
      "          'lili': 2,\n",
      "          'taylor': 2,\n",
      "          'study': 2,\n",
      "          'neeson': 2,\n",
      "          'nhe': 2,\n",
      "          'mind': 2,\n",
      "          'cgi': 2,\n",
      "          'cast': 2,\n",
      "          'try': 2,\n",
      "          'psychological': 2,\n",
      "          'horror': 2,\n",
      "          'nthis': 2,\n",
      "          'scary': 2,\n",
      "          'make': 2,\n",
      "          'movie': 2,\n",
      "          'frightening': 2,\n",
      "          'would': 2,\n",
      "          'characters': 2,\n",
      "          'every': 2,\n",
      "          'made': 2,\n",
      "          'zetajones': 2,\n",
      "          'always': 2,\n",
      "          'going': 2,\n",
      "          'napparently': 2,\n",
      "          'filmed': 2,\n",
      "          'better': 2,\n",
      "          'jan': 2,\n",
      "          'bonts': 2,\n",
      "          'knew': 2,\n",
      "          'everything': 2,\n",
      "          'overblown': 1,\n",
      "          'remake': 1,\n",
      "          '1963': 1,\n",
      "          'robert': 1,\n",
      "          'name': 1,\n",
      "          'based': 1,\n",
      "          'shirley': 1,\n",
      "          'jacksons': 1,\n",
      "          'novel': 1,\n",
      "          'haunting': 1,\n",
      "          'hill': 1,\n",
      "          'stars': 1,\n",
      "          'one': 1,\n",
      "          'three': 1,\n",
      "          'lab': 1,\n",
      "          'rats': 1,\n",
      "          'participate': 1,\n",
      "          'supposed': 1,\n",
      "          'insomnia': 1,\n",
      "          'initiated': 1,\n",
      "          'liam': 1,\n",
      "          'actually': 1,\n",
      "          'conducting': 1,\n",
      "          'causes': 1,\n",
      "          'fear': 1,\n",
      "          'human': 1,\n",
      "          'still': 1,\n",
      "          'affected': 1,\n",
      "          'drags': 1,\n",
      "          'test': 1,\n",
      "          'subjects': 1,\n",
      "          'foreboding': 1,\n",
      "          'mansion': 1,\n",
      "          'types': 1,\n",
      "          'creepy': 1,\n",
      "          'scare': 1,\n",
      "          'audiences': 1,\n",
      "          'patience': 1,\n",
      "          'know': 1,\n",
      "          'question': 1,\n",
      "          'posed': 1,\n",
      "          'people': 1,\n",
      "          'keep': 1,\n",
      "          'remaking': 1,\n",
      "          'good': 1,\n",
      "          'movies': 1,\n",
      "          'nthe': 1,\n",
      "          'great': 1,\n",
      "          'new': 1,\n",
      "          'dull': 1,\n",
      "          'decidedly': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'feel': 1,\n",
      "          'downright': 1,\n",
      "          'impossible': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'pg13': 1,\n",
      "          'nunless': 1,\n",
      "          'find': 1,\n",
      "          'obvious': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'special': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'raise': 1,\n",
      "          'hackles': 1,\n",
      "          'nearly': 1,\n",
      "          'fell': 1,\n",
      "          'asleep': 1,\n",
      "          'twice': 1,\n",
      "          'probably': 1,\n",
      "          'guy': 1,\n",
      "          'two': 1,\n",
      "          'rows': 1,\n",
      "          'behind': 1,\n",
      "          'didnt': 1,\n",
      "          'seem': 1,\n",
      "          'personal': 1,\n",
      "          'relationship': 1,\n",
      "          'felt': 1,\n",
      "          'needed': 1,\n",
      "          'discuss': 1,\n",
      "          'decision': 1,\n",
      "          'progressed': 1,\n",
      "          'nits': 1,\n",
      "          'sad': 1,\n",
      "          'see': 1,\n",
      "          'amazing': 1,\n",
      "          'wasted': 1,\n",
      "          'badly': 1,\n",
      "          'nowen': 1,\n",
      "          'wilson': 1,\n",
      "          'spends': 1,\n",
      "          'wandering': 1,\n",
      "          'halls': 1,\n",
      "          'script': 1,\n",
      "          'justice': 1,\n",
      "          'wonderful': 1,\n",
      "          'comic': 1,\n",
      "          'ability': 1,\n",
      "          'ncatherine': 1,\n",
      "          'nice': 1,\n",
      "          'look': 1,\n",
      "          'given': 1,\n",
      "          'woefully': 1,\n",
      "          'underwritten': 1,\n",
      "          'role': 1,\n",
      "          'bisexual': 1,\n",
      "          'insomniac': 1,\n",
      "          'run': 1,\n",
      "          'bedroom': 1,\n",
      "          'perplexed': 1,\n",
      "          'strange': 1,\n",
      "          'noise': 1,\n",
      "          'occurs': 1,\n",
      "          'nliam': 1,\n",
      "          'pops': 1,\n",
      "          'talk': 1,\n",
      "          'tape': 1,\n",
      "          'recorder': 1,\n",
      "          'attempt': 1,\n",
      "          'convince': 1,\n",
      "          'others': 1,\n",
      "          'much': 1,\n",
      "          'knowledge': 1,\n",
      "          'whats': 1,\n",
      "          'rest': 1,\n",
      "          'nfinally': 1,\n",
      "          'poor': 1,\n",
      "          'center': 1,\n",
      "          'brunt': 1,\n",
      "          'thrown': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'scream': 1,\n",
      "          'rescue': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'tryst': 1,\n",
      "          'taylors': 1,\n",
      "          'removed': 1,\n",
      "          'nthats': 1,\n",
      "          'bad': 1,\n",
      "          'might': 1,\n",
      "          'lent': 1,\n",
      "          'characterization': 1,\n",
      "          'narrative': 1,\n",
      "          'second': 1,\n",
      "          'straight': 1,\n",
      "          'misfire': 1,\n",
      "          'speed': 1,\n",
      "          '2': 1,\n",
      "          'cruise': 1,\n",
      "          'control': 1,\n",
      "          'first': 1,\n",
      "          'nwhen': 1,\n",
      "          'learn': 1,\n",
      "          'bigger': 1,\n",
      "          'necessarily': 1,\n",
      "          'nrobert': 1,\n",
      "          'makes': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'project': 1,\n",
      "          'also': 1,\n",
      "          'none': 1,\n",
      "          'approach': 1,\n",
      "          'haunted': 1,\n",
      "          'twister': 1,\n",
      "          'mindset': 1,\n",
      "          'nif': 1,\n",
      "          'bont': 1,\n",
      "          'screenwriter': 1,\n",
      "          'david': 1,\n",
      "          'self': 1,\n",
      "          'let': 1,\n",
      "          'minds': 1,\n",
      "          'fill': 1,\n",
      "          'blanks': 1,\n",
      "          'happening': 1,\n",
      "          'instead': 1,\n",
      "          'showing': 1,\n",
      "          'us': 1,\n",
      "          'served': 1,\n",
      "          'terrifying': 1,\n",
      "          'nwhat': 1,\n",
      "          'fashions': 1,\n",
      "          'thousand': 1,\n",
      "          'times': 1,\n",
      "          'completely': 1,\n",
      "          'led': 1,\n",
      "          'towards': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'story': 1,\n",
      "          'title': 1,\n",
      "          'certainly': 1,\n",
      "          'hope': 1,\n",
      "          'newer': 1,\n",
      "          'rendition': 1,\n",
      "          'hurt': 1,\n",
      "          'insanity': 1,\n",
      "          'retain': 1,\n",
      "          'impact': 1,\n",
      "          'release': 1,\n",
      "          'npg13': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tarzan': 19,\n",
      "          'lost': 10,\n",
      "          'movie': 8,\n",
      "          'city': 7,\n",
      "          'jungle': 7,\n",
      "          'one': 6,\n",
      "          'bad': 6,\n",
      "          'even': 6,\n",
      "          'jane': 6,\n",
      "          'like': 5,\n",
      "          'nthe': 4,\n",
      "          'come': 3,\n",
      "          'way': 3,\n",
      "          'made': 3,\n",
      "          'good': 3,\n",
      "          'greystoke': 3,\n",
      "          'n': 3,\n",
      "          'also': 3,\n",
      "          'much': 3,\n",
      "          'movies': 2,\n",
      "          'nnot': 2,\n",
      "          'great': 2,\n",
      "          'ninstead': 2,\n",
      "          'screen': 2,\n",
      "          'question': 2,\n",
      "          'first': 2,\n",
      "          'around': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'picture': 2,\n",
      "          'films': 2,\n",
      "          'legend': 2,\n",
      "          'apes': 2,\n",
      "          'ape': 2,\n",
      "          'man': 2,\n",
      "          'bo': 2,\n",
      "          'nmost': 2,\n",
      "          'would': 2,\n",
      "          'new': 2,\n",
      "          'offer': 2,\n",
      "          'anything': 2,\n",
      "          'least': 2,\n",
      "          'story': 2,\n",
      "          'last': 2,\n",
      "          'back': 2,\n",
      "          'old': 2,\n",
      "          'starts': 2,\n",
      "          'casper': 2,\n",
      "          'van': 2,\n",
      "          'dien': 2,\n",
      "          'raised': 2,\n",
      "          'nwhen': 2,\n",
      "          'english': 2,\n",
      "          'march': 2,\n",
      "          'nhowever': 2,\n",
      "          'ravens': 2,\n",
      "          'steve': 2,\n",
      "          'african': 2,\n",
      "          'scenes': 2,\n",
      "          'adventures': 2,\n",
      "          'attempt': 2,\n",
      "          'action': 2,\n",
      "          'nthere': 2,\n",
      "          'raiders': 2,\n",
      "          'ark': 2,\n",
      "          'short': 2,\n",
      "          'lacking': 2,\n",
      "          'pyramid': 2,\n",
      "          'department': 2,\n",
      "          'treasure': 2,\n",
      "          'hunters': 2,\n",
      "          'although': 2,\n",
      "          'comes': 2,\n",
      "          'hes': 2,\n",
      "          'anemic': 1,\n",
      "          'quite': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'badly': 1,\n",
      "          'acted': 1,\n",
      "          'generally': 1,\n",
      "          'incompetent': 1,\n",
      "          'cinematic': 1,\n",
      "          'areas': 1,\n",
      "          'thoroughly': 1,\n",
      "          'uninspired': 1,\n",
      "          'insipid': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'colossal': 1,\n",
      "          'misfires': 1,\n",
      "          'heavens': 1,\n",
      "          'gate': 1,\n",
      "          '1980': 1,\n",
      "          'ishtar': 1,\n",
      "          '1987': 1,\n",
      "          'literally': 1,\n",
      "          'drips': 1,\n",
      "          'nobody': 1,\n",
      "          'wanted': 1,\n",
      "          'associated': 1,\n",
      "          'begs': 1,\n",
      "          'place': 1,\n",
      "          'nwith': 1,\n",
      "          'scripts': 1,\n",
      "          'lying': 1,\n",
      "          'hollywood': 1,\n",
      "          'unproduced': 1,\n",
      "          'needless': 1,\n",
      "          'drek': 1,\n",
      "          'make': 1,\n",
      "          'big': 1,\n",
      "          'filmed': 1,\n",
      "          'characters': 1,\n",
      "          'motion': 1,\n",
      "          'history': 1,\n",
      "          'appeared': 1,\n",
      "          'forty': 1,\n",
      "          'ranged': 1,\n",
      "          '1984s': 1,\n",
      "          'lord': 1,\n",
      "          'really': 1,\n",
      "          '1981s': 1,\n",
      "          'derek': 1,\n",
      "          'cheapie': 1,\n",
      "          'bmovies': 1,\n",
      "          'thirties': 1,\n",
      "          'forties': 1,\n",
      "          'starring': 1,\n",
      "          'exolympic': 1,\n",
      "          'athletes': 1,\n",
      "          'lot': 1,\n",
      "          'cutsie': 1,\n",
      "          'chimps': 1,\n",
      "          'ntherefore': 1,\n",
      "          'another': 1,\n",
      "          'might': 1,\n",
      "          'assume': 1,\n",
      "          'something': 1,\n",
      "          'different': 1,\n",
      "          'angle': 1,\n",
      "          'original': 1,\n",
      "          'storyline': 1,\n",
      "          'set': 1,\n",
      "          'apart': 1,\n",
      "          'others': 1,\n",
      "          'added': 1,\n",
      "          'neverbeforeseen': 1,\n",
      "          'level': 1,\n",
      "          'realism': 1,\n",
      "          'pulpy': 1,\n",
      "          'tale': 1,\n",
      "          'misguided': 1,\n",
      "          'audacity': 1,\n",
      "          'sexualize': 1,\n",
      "          'vehicle': 1,\n",
      "          'dereks': 1,\n",
      "          'bare': 1,\n",
      "          'breasts': 1,\n",
      "          'hand': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'bunch': 1,\n",
      "          'recycled': 1,\n",
      "          'storylines': 1,\n",
      "          'dialogue': 1,\n",
      "          'script': 1,\n",
      "          'bayard': 1,\n",
      "          'johnson': 1,\n",
      "          'j': 1,\n",
      "          'anderson': 1,\n",
      "          'black': 1,\n",
      "          'formulaic': 1,\n",
      "          'generic': 1,\n",
      "          'ncomic': 1,\n",
      "          'books': 1,\n",
      "          'better': 1,\n",
      "          'plots': 1,\n",
      "          'fact': 1,\n",
      "          'retains': 1,\n",
      "          'ridiculous': 1,\n",
      "          'call': 1,\n",
      "          'tirelessly': 1,\n",
      "          'mocked': 1,\n",
      "          'summers': 1,\n",
      "          'comedy': 1,\n",
      "          'george': 1,\n",
      "          'ndidnt': 1,\n",
      "          'producers': 1,\n",
      "          'think': 1,\n",
      "          'leave': 1,\n",
      "          'weissmuller': 1,\n",
      "          'pictures': 1,\n",
      "          'belongs': 1,\n",
      "          'already': 1,\n",
      "          'firmly': 1,\n",
      "          'established': 1,\n",
      "          'quick': 1,\n",
      "          'opening': 1,\n",
      "          'narration': 1,\n",
      "          'tells': 1,\n",
      "          'found': 1,\n",
      "          'return': 1,\n",
      "          'england': 1,\n",
      "          'assumes': 1,\n",
      "          'heritage': 1,\n",
      "          '1913': 1,\n",
      "          'civilized': 1,\n",
      "          'gentleman': 1,\n",
      "          'without': 1,\n",
      "          'accent': 1,\n",
      "          'marry': 1,\n",
      "          'less': 1,\n",
      "          'week': 1,\n",
      "          'wicked': 1,\n",
      "          'archeologistgraverobber': 1,\n",
      "          'named': 1,\n",
      "          'nigel': 1,\n",
      "          'waddington': 1,\n",
      "          'begins': 1,\n",
      "          'hunting': 1,\n",
      "          'fabled': 1,\n",
      "          'opar': 1,\n",
      "          'africas': 1,\n",
      "          'secrets': 1,\n",
      "          'witch': 1,\n",
      "          'doctor': 1,\n",
      "          'ancient': 1,\n",
      "          'tribe': 1,\n",
      "          'summons': 1,\n",
      "          'nat': 1,\n",
      "          'refuses': 1,\n",
      "          'go': 1,\n",
      "          'pouting': 1,\n",
      "          'interfere': 1,\n",
      "          'wedding': 1,\n",
      "          'leaves': 1,\n",
      "          'changes': 1,\n",
      "          'mind': 1,\n",
      "          'tracks': 1,\n",
      "          'therefore': 1,\n",
      "          'assuring': 1,\n",
      "          'lots': 1,\n",
      "          'lame': 1,\n",
      "          'smooch': 1,\n",
      "          'apeman': 1,\n",
      "          'nonce': 1,\n",
      "          'film': 1,\n",
      "          'gets': 1,\n",
      "          'going': 1,\n",
      "          'sluggish': 1,\n",
      "          'delves': 1,\n",
      "          'series': 1,\n",
      "          'natives': 1,\n",
      "          'thwart': 1,\n",
      "          'crew': 1,\n",
      "          'discovering': 1,\n",
      "          'socalled': 1,\n",
      "          'cheesy': 1,\n",
      "          'predictable': 1,\n",
      "          'unexciting': 1,\n",
      "          'pace': 1,\n",
      "          'tension': 1,\n",
      "          'speak': 1,\n",
      "          'sequences': 1,\n",
      "          'stolen': 1,\n",
      "          'innumerable': 1,\n",
      "          'recent': 1,\n",
      "          'adventure': 1,\n",
      "          'ranging': 1,\n",
      "          '1981': 1,\n",
      "          'goonies': 1,\n",
      "          '1985': 1,\n",
      "          'running': 1,\n",
      "          'includes': 1,\n",
      "          'greenpeacefriendly': 1,\n",
      "          'freeing': 1,\n",
      "          'caged': 1,\n",
      "          'animals': 1,\n",
      "          'releasing': 1,\n",
      "          'baby': 1,\n",
      "          'elephant': 1,\n",
      "          'trap': 1,\n",
      "          'throwing': 1,\n",
      "          'ivory': 1,\n",
      "          'tusks': 1,\n",
      "          'river': 1,\n",
      "          'remote': 1,\n",
      "          'hint': 1,\n",
      "          'reality': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'bit': 1,\n",
      "          'cobra': 1,\n",
      "          'doesnt': 1,\n",
      "          'suck': 1,\n",
      "          'venom': 1,\n",
      "          'semiexperienced': 1,\n",
      "          'weekend': 1,\n",
      "          'backpacker': 1,\n",
      "          'ties': 1,\n",
      "          'tourniquet': 1,\n",
      "          'arm': 1,\n",
      "          'stumbles': 1,\n",
      "          'plan': 1,\n",
      "          'survival': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'notice': 1,\n",
      "          'fundamentally': 1,\n",
      "          'misleading': 1,\n",
      "          'title': 1,\n",
      "          'ruin': 1,\n",
      "          'ending': 1,\n",
      "          'however': 1,\n",
      "          'suppose': 1,\n",
      "          'resourcestrapped': 1,\n",
      "          'fx': 1,\n",
      "          'could': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'worthy': 1,\n",
      "          'madefortv': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'slog': 1,\n",
      "          'numerous': 1,\n",
      "          'underground': 1,\n",
      "          'caverns': 1,\n",
      "          'get': 1,\n",
      "          'sitting': 1,\n",
      "          'right': 1,\n",
      "          'middle': 1,\n",
      "          'open': 1,\n",
      "          'field': 1,\n",
      "          'nstrictly': 1,\n",
      "          'speaking': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'camp': 1,\n",
      "          'quality': 1,\n",
      "          'diens': 1,\n",
      "          'laughably': 1,\n",
      "          'stiff': 1,\n",
      "          'performance': 1,\n",
      "          'real': 1,\n",
      "          'close': 1,\n",
      "          'nthis': 1,\n",
      "          'proves': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'hinted': 1,\n",
      "          'act': 1,\n",
      "          'sure': 1,\n",
      "          'looks': 1,\n",
      "          'wellgroomed': 1,\n",
      "          'deepest': 1,\n",
      "          'heart': 1,\n",
      "          'nvan': 1,\n",
      "          'prettyboy': 1,\n",
      "          'effective': 1,\n",
      "          'calvin': 1,\n",
      "          'klein': 1,\n",
      "          'model': 1,\n",
      "          'loin': 1,\n",
      "          'cloth': 1,\n",
      "          'ni': 1,\n",
      "          'wondered': 1,\n",
      "          'makeup': 1,\n",
      "          'thinking': 1,\n",
      "          'outfitted': 1,\n",
      "          'awful': 1,\n",
      "          'circa1983': 1,\n",
      "          'perry': 1,\n",
      "          'haircut': 1,\n",
      "          'nwaddington': 1,\n",
      "          'makes': 1,\n",
      "          'decent': 1,\n",
      "          'villain': 1,\n",
      "          'charmless': 1,\n",
      "          'version': 1,\n",
      "          'belloq': 1,\n",
      "          'exmodel': 1,\n",
      "          'little': 1,\n",
      "          'smile': 1,\n",
      "          'look': 1,\n",
      "          'pretty': 1,\n",
      "          'next': 1,\n",
      "          'nshe': 1,\n",
      "          'fire': 1,\n",
      "          'gun': 1,\n",
      "          'evil': 1,\n",
      "          'time': 1,\n",
      "          'two': 1,\n",
      "          'whenever': 1,\n",
      "          'snake': 1,\n",
      "          'reduced': 1,\n",
      "          'hysterical': 1,\n",
      "          'mess': 1,\n",
      "          'amidst': 1,\n",
      "          'complaining': 1,\n",
      "          'piece': 1,\n",
      "          'news': 1,\n",
      "          'ideas': 1,\n",
      "          'unable': 1,\n",
      "          'fill': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'celluloid': 1,\n",
      "          'nso': 1,\n",
      "          'say': 1,\n",
      "          'decency': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'good': 3,\n",
      "          'phantom': 2,\n",
      "          'seen': 2,\n",
      "          'little': 2,\n",
      "          'williams': 2,\n",
      "          'looking': 2,\n",
      "          'like': 2,\n",
      "          'one': 2,\n",
      "          'jones': 2,\n",
      "          'performance': 2,\n",
      "          'everything': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'nothing': 1,\n",
      "          'new': 1,\n",
      "          'presented': 1,\n",
      "          'nwincer': 1,\n",
      "          'displays': 1,\n",
      "          'absolutely': 1,\n",
      "          'skill': 1,\n",
      "          'setting': 1,\n",
      "          'exciting': 1,\n",
      "          'action': 1,\n",
      "          'sequence': 1,\n",
      "          'nbilly': 1,\n",
      "          'zane': 1,\n",
      "          'wooden': 1,\n",
      "          'hero': 1,\n",
      "          'nkristy': 1,\n",
      "          'swanson': 1,\n",
      "          'given': 1,\n",
      "          'ntreat': 1,\n",
      "          'rhett': 1,\n",
      "          'butler': 1,\n",
      "          'sounding': 1,\n",
      "          'mickey': 1,\n",
      "          'mouse': 1,\n",
      "          'worst': 1,\n",
      "          'villains': 1,\n",
      "          'ever': 1,\n",
      "          'nonly': 1,\n",
      "          'catherine': 1,\n",
      "          'zeta': 1,\n",
      "          'cohorts': 1,\n",
      "          'turns': 1,\n",
      "          'nshe': 1,\n",
      "          'energy': 1,\n",
      "          'spunk': 1,\n",
      "          'needed': 1,\n",
      "          'much': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'also': 1,\n",
      "          'secret': 1,\n",
      "          'identity': 1,\n",
      "          'poorly': 1,\n",
      "          'played': 1,\n",
      "          'wont': 1,\n",
      "          'even': 1,\n",
      "          'care': 1,\n",
      "          'nabout': 1,\n",
      "          'things': 1,\n",
      "          'recommend': 1,\n",
      "          'colorful': 1,\n",
      "          'scenery': 1,\n",
      "          'nhowever': 1,\n",
      "          'youre': 1,\n",
      "          'fun': 1,\n",
      "          'family': 1,\n",
      "          'go': 1,\n",
      "          'watch': 1,\n",
      "          'underrated': 1,\n",
      "          'flipper': 1,\n",
      "          'nthis': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'robert': 6,\n",
      "          'celine': 6,\n",
      "          'life': 5,\n",
      "          'ordinary': 5,\n",
      "          'less': 4,\n",
      "          'nbut': 4,\n",
      "          'romance': 4,\n",
      "          'something': 4,\n",
      "          'romantic': 3,\n",
      "          'boyle': 3,\n",
      "          'nthe': 3,\n",
      "          'two': 3,\n",
      "          'comes': 3,\n",
      "          'exactly': 3,\n",
      "          'movie': 2,\n",
      "          'attempt': 2,\n",
      "          'yes': 2,\n",
      "          'nafter': 2,\n",
      "          'mcgregor': 2,\n",
      "          'diaz': 2,\n",
      "          'ransom': 2,\n",
      "          'cut': 2,\n",
      "          'scheme': 2,\n",
      "          'nand': 2,\n",
      "          'one': 2,\n",
      "          'mediocre': 2,\n",
      "          'nit': 2,\n",
      "          'earth': 2,\n",
      "          'angels': 2,\n",
      "          'hunter': 2,\n",
      "          'angel': 2,\n",
      "          'time': 2,\n",
      "          'much': 2,\n",
      "          'hard': 2,\n",
      "          'really': 2,\n",
      "          'connect': 2,\n",
      "          'like': 2,\n",
      "          'sure': 2,\n",
      "          'trying': 2,\n",
      "          'accomplish': 2,\n",
      "          'even': 2,\n",
      "          'end': 2,\n",
      "          'name': 2,\n",
      "          'scene': 2,\n",
      "          'accept': 2,\n",
      "          'r': 1,\n",
      "          'extremely': 1,\n",
      "          'peculiar': 1,\n",
      "          'live': 1,\n",
      "          'title': 1,\n",
      "          'appropriate': 1,\n",
      "          'moniker': 1,\n",
      "          'would': 1,\n",
      "          'misguided': 1,\n",
      "          'confused': 1,\n",
      "          'confusing': 1,\n",
      "          'comedy': 1,\n",
      "          'disarming': 1,\n",
      "          'disaster': 1,\n",
      "          'talented': 1,\n",
      "          'trainspotting': 1,\n",
      "          'team': 1,\n",
      "          'director': 1,\n",
      "          'danny': 1,\n",
      "          'producer': 1,\n",
      "          'andrew': 1,\n",
      "          'macdonald': 1,\n",
      "          'screenwriter': 1,\n",
      "          'john': 1,\n",
      "          'hodge': 1,\n",
      "          'nat': 1,\n",
      "          'core': 1,\n",
      "          'strange': 1,\n",
      "          'fairly': 1,\n",
      "          'basicand': 1,\n",
      "          'ordinarypremise': 1,\n",
      "          'regular': 1,\n",
      "          'ewan': 1,\n",
      "          'aspiring': 1,\n",
      "          'writer': 1,\n",
      "          'trashy': 1,\n",
      "          'novels': 1,\n",
      "          'fired': 1,\n",
      "          'janitorial': 1,\n",
      "          'job': 1,\n",
      "          'naville': 1,\n",
      "          'corporation': 1,\n",
      "          'kidnaps': 1,\n",
      "          'navilles': 1,\n",
      "          'ian': 1,\n",
      "          'holm': 1,\n",
      "          'spoiled': 1,\n",
      "          'daughter': 1,\n",
      "          'cameron': 1,\n",
      "          'holds': 1,\n",
      "          'joke': 1,\n",
      "          'willing': 1,\n",
      "          'victimher': 1,\n",
      "          'father': 1,\n",
      "          'threatened': 1,\n",
      "          'financially': 1,\n",
      "          'wants': 1,\n",
      "          'revengeand': 1,\n",
      "          'soon': 1,\n",
      "          'becomes': 1,\n",
      "          'accomplice': 1,\n",
      "          'brains': 1,\n",
      "          'behind': 1,\n",
      "          'teaching': 1,\n",
      "          'inept': 1,\n",
      "          'thing': 1,\n",
      "          'kidnapping': 1,\n",
      "          'ultimately': 1,\n",
      "          'didnt': 1,\n",
      "          'see': 1,\n",
      "          'coming': 1,\n",
      "          'nlove': 1,\n",
      "          'nso': 1,\n",
      "          'far': 1,\n",
      "          'better': 1,\n",
      "          'dreadful': 1,\n",
      "          'thanks': 1,\n",
      "          'small': 1,\n",
      "          'part': 1,\n",
      "          'hodges': 1,\n",
      "          'contextual': 1,\n",
      "          'frame': 1,\n",
      "          'turns': 1,\n",
      "          'god': 1,\n",
      "          'displeased': 1,\n",
      "          'divorce': 1,\n",
      "          'breakup': 1,\n",
      "          'rate': 1,\n",
      "          'chief': 1,\n",
      "          'heavens': 1,\n",
      "          'police': 1,\n",
      "          'gabriel': 1,\n",
      "          'dan': 1,\n",
      "          'hedaya': 1,\n",
      "          'dispatches': 1,\n",
      "          'oreilly': 1,\n",
      "          'holly': 1,\n",
      "          'jackson': 1,\n",
      "          'delroy': 1,\n",
      "          'lindo': 1,\n",
      "          'hook': 1,\n",
      "          'robertor': 1,\n",
      "          'lose': 1,\n",
      "          'status': 1,\n",
      "          'nthis': 1,\n",
      "          'conceit': 1,\n",
      "          'might': 1,\n",
      "          'worked': 1,\n",
      "          'dimension': 1,\n",
      "          'played': 1,\n",
      "          'integral': 1,\n",
      "          'role': 1,\n",
      "          'entire': 1,\n",
      "          'picture': 1,\n",
      "          'could': 1,\n",
      "          'easily': 1,\n",
      "          'without': 1,\n",
      "          'clear': 1,\n",
      "          'loss': 1,\n",
      "          'stands': 1,\n",
      "          'simply': 1,\n",
      "          'waste': 1,\n",
      "          'distracts': 1,\n",
      "          'hand': 1,\n",
      "          'nnot': 1,\n",
      "          'begin': 1,\n",
      "          'ntry': 1,\n",
      "          'may': 1,\n",
      "          'onenote': 1,\n",
      "          'become': 1,\n",
      "          'endearing': 1,\n",
      "          'characters': 1,\n",
      "          'nceline': 1,\n",
      "          'rich': 1,\n",
      "          'bitch': 1,\n",
      "          'dullard': 1,\n",
      "          'nas': 1,\n",
      "          'quite': 1,\n",
      "          'audience': 1,\n",
      "          'twothen': 1,\n",
      "          'never': 1,\n",
      "          'seem': 1,\n",
      "          'nwhen': 1,\n",
      "          'start': 1,\n",
      "          'overtly': 1,\n",
      "          'act': 1,\n",
      "          'feelings': 1,\n",
      "          'scripted': 1,\n",
      "          'anything': 1,\n",
      "          'natural': 1,\n",
      "          'companys': 1,\n",
      "          'point': 1,\n",
      "          'honestly': 1,\n",
      "          'nboyle': 1,\n",
      "          'juices': 1,\n",
      "          'visuals': 1,\n",
      "          'characteristic': 1,\n",
      "          'razzmatazz': 1,\n",
      "          'remains': 1,\n",
      "          'thatenergy': 1,\n",
      "          'energy': 1,\n",
      "          'service': 1,\n",
      "          'story': 1,\n",
      "          'acting': 1,\n",
      "          'cast': 1,\n",
      "          'seems': 1,\n",
      "          'lost': 1,\n",
      "          'especially': 1,\n",
      "          'whose': 1,\n",
      "          'performance': 1,\n",
      "          'adrift': 1,\n",
      "          'baffling': 1,\n",
      "          'many': 1,\n",
      "          'eccentricities': 1,\n",
      "          'splattered': 1,\n",
      "          'onto': 1,\n",
      "          'violent': 1,\n",
      "          'confrontations': 1,\n",
      "          'involving': 1,\n",
      "          'angelicin': 1,\n",
      "          'fact': 1,\n",
      "          'staging': 1,\n",
      "          'mystical': 1,\n",
      "          'hokum': 1,\n",
      "          'climax': 1,\n",
      "          'cutesy': 1,\n",
      "          'claymation': 1,\n",
      "          'epilogue': 1,\n",
      "          'nwatching': 1,\n",
      "          'trapped': 1,\n",
      "          'indie': 1,\n",
      "          'hipster': 1,\n",
      "          'hell': 1,\n",
      "          'stockpiling': 1,\n",
      "          'quirks': 1,\n",
      "          'cool': 1,\n",
      "          'ninstead': 1,\n",
      "          'gives': 1,\n",
      "          'quirky': 1,\n",
      "          'bad': 1,\n",
      "          'nmy': 1,\n",
      "          'best': 1,\n",
      "          'guess': 1,\n",
      "          'filmmakers': 1,\n",
      "          'wanted': 1,\n",
      "          'atmosphere': 1,\n",
      "          'warped': 1,\n",
      "          'womantic': 1,\n",
      "          'misspelling': 1,\n",
      "          'intended': 1,\n",
      "          'whimsy': 1,\n",
      "          'extended': 1,\n",
      "          'musical': 1,\n",
      "          'number': 1,\n",
      "          'sing': 1,\n",
      "          'beyond': 1,\n",
      "          'sea': 1,\n",
      "          'karaoke': 1,\n",
      "          'bar': 1,\n",
      "          'verse': 1,\n",
      "          'couple': 1,\n",
      "          'magically': 1,\n",
      "          'dolled': 1,\n",
      "          'snazzy': 1,\n",
      "          'outfits': 1,\n",
      "          'hairdos': 1,\n",
      "          'engage': 1,\n",
      "          'spirited': 1,\n",
      "          'dance': 1,\n",
      "          'routine': 1,\n",
      "          'counter': 1,\n",
      "          'works': 1,\n",
      "          'relative': 1,\n",
      "          'simplicity': 1,\n",
      "          'also': 1,\n",
      "          'try': 1,\n",
      "          'relying': 1,\n",
      "          'innate': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'charm': 1,\n",
      "          'leads': 1,\n",
      "          'allowing': 1,\n",
      "          'build': 1,\n",
      "          'rapport': 1,\n",
      "          'nalas': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'built': 1,\n",
      "          'moment': 1,\n",
      "          'abrupt': 1,\n",
      "          'ni': 1,\n",
      "          'applaud': 1,\n",
      "          'bring': 1,\n",
      "          'fresh': 1,\n",
      "          'unique': 1,\n",
      "          'houses': 1,\n",
      "          'sometimes': 1,\n",
      "          'cleverness': 1,\n",
      "          'reach': 1,\n",
      "          'overkill': 1,\n",
      "          'na': 1,\n",
      "          'certainly': 1,\n",
      "          'delivers': 1,\n",
      "          'different': 1,\n",
      "          'clamoring': 1,\n",
      "          'n': 1,\n",
      "          'failure': 1,\n",
      "          'neveryone': 1,\n",
      "          'fails': 1,\n",
      "          'cant': 1,\n",
      "          'doesnt': 1,\n",
      "          'matter': 1,\n",
      "          'win': 1,\n",
      "          'long': 1,\n",
      "          'give': 1,\n",
      "          'everything': 1,\n",
      "          'heart': 1,\n",
      "          'nmichael': 1,\n",
      "          'jordan': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'princess': 7,\n",
      "          'diaries': 5,\n",
      "          'film': 4,\n",
      "          'grated': 3,\n",
      "          'mia': 3,\n",
      "          'mias': 3,\n",
      "          'could': 2,\n",
      "          'disney': 2,\n",
      "          'cute': 2,\n",
      "          'harmless': 2,\n",
      "          'fun': 2,\n",
      "          'nand': 2,\n",
      "          'garry': 2,\n",
      "          'marshall': 2,\n",
      "          'cheered': 2,\n",
      "          'well': 2,\n",
      "          'would': 2,\n",
      "          'obvious': 2,\n",
      "          'movies': 2,\n",
      "          'pretty': 2,\n",
      "          'way': 2,\n",
      "          'hardly': 2,\n",
      "          'laugh': 2,\n",
      "          'long': 2,\n",
      "          'works': 2,\n",
      "          'royal': 2,\n",
      "          'miniscule': 2,\n",
      "          'european': 2,\n",
      "          'much': 2,\n",
      "          'queen': 2,\n",
      "          'like': 2,\n",
      "          'ugly': 2,\n",
      "          'good': 2,\n",
      "          'based': 1,\n",
      "          'meg': 1,\n",
      "          'cabots': 1,\n",
      "          'novel': 1,\n",
      "          'anything': 1,\n",
      "          'neasy': 1,\n",
      "          'ntake': 1,\n",
      "          'youre': 1,\n",
      "          'make': 1,\n",
      "          'borrrring': 1,\n",
      "          'nthats': 1,\n",
      "          'director': 1,\n",
      "          'screenwriter': 1,\n",
      "          'gina': 1,\n",
      "          'wendkos': 1,\n",
      "          'outdone': 1,\n",
      "          'producer': 1,\n",
      "          'whitney': 1,\n",
      "          'houston': 1,\n",
      "          'done': 1,\n",
      "          'nyou': 1,\n",
      "          'couldnt': 1,\n",
      "          'tell': 1,\n",
      "          'audience': 1,\n",
      "          'though': 1,\n",
      "          'braintree': 1,\n",
      "          'mass': 1,\n",
      "          'growing': 1,\n",
      "          'glowing': 1,\n",
      "          'prepubescent': 1,\n",
      "          'girls': 1,\n",
      "          'odd': 1,\n",
      "          'parental': 1,\n",
      "          'popcorn': 1,\n",
      "          'perched': 1,\n",
      "          'persons': 1,\n",
      "          'positively': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'ah': 1,\n",
      "          'struck': 1,\n",
      "          'lovely': 1,\n",
      "          'nerve': 1,\n",
      "          'fuddyduddy': 1,\n",
      "          'old': 1,\n",
      "          'nwell': 1,\n",
      "          'might': 1,\n",
      "          'utter': 1,\n",
      "          'tripe': 1,\n",
      "          'truly': 1,\n",
      "          'ntoo': 1,\n",
      "          'least': 1,\n",
      "          'problems': 1,\n",
      "          'marshalls': 1,\n",
      "          'made': 1,\n",
      "          'couple': 1,\n",
      "          'woman': 1,\n",
      "          'runaway': 1,\n",
      "          'bride': 1,\n",
      "          'ones': 1,\n",
      "          'without': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'maybe': 1,\n",
      "          'thats': 1,\n",
      "          'problem': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'predictable': 1,\n",
      "          'molasses': 1,\n",
      "          'got': 1,\n",
      "          'comedy': 1,\n",
      "          'bore': 1,\n",
      "          'pants': 1,\n",
      "          'abyssinian': 1,\n",
      "          'stretches': 1,\n",
      "          'sloppily': 1,\n",
      "          'edited': 1,\n",
      "          'principals': 1,\n",
      "          'refer': 1,\n",
      "          'scenes': 1,\n",
      "          'havent': 1,\n",
      "          'even': 1,\n",
      "          'seen': 1,\n",
      "          'yet': 1,\n",
      "          'probably': 1,\n",
      "          'never': 1,\n",
      "          'except': 1,\n",
      "          'perhaps': 1,\n",
      "          'dvd': 1,\n",
      "          'edition': 1,\n",
      "          'nmarshall': 1,\n",
      "          'take': 1,\n",
      "          'virtually': 1,\n",
      "          'blame': 1,\n",
      "          'since': 1,\n",
      "          'hes': 1,\n",
      "          'time': 1,\n",
      "          'know': 1,\n",
      "          'scene': 1,\n",
      "          'two': 1,\n",
      "          'isnt': 1,\n",
      "          'working': 1,\n",
      "          'alas': 1,\n",
      "          'implies': 1,\n",
      "          'cleverness': 1,\n",
      "          'theres': 1,\n",
      "          'none': 1,\n",
      "          'either': 1,\n",
      "          'nnewcomer': 1,\n",
      "          'anne': 1,\n",
      "          'hathaway': 1,\n",
      "          'stars': 1,\n",
      "          'thermopolis': 1,\n",
      "          'bright': 1,\n",
      "          'socially': 1,\n",
      "          'invisible': 1,\n",
      "          'san': 1,\n",
      "          'franciscan': 1,\n",
      "          'teen': 1,\n",
      "          'learns': 1,\n",
      "          'single': 1,\n",
      "          'mom': 1,\n",
      "          'wacky': 1,\n",
      "          'artist': 1,\n",
      "          'played': 1,\n",
      "          'likable': 1,\n",
      "          'caroline': 1,\n",
      "          'goodall': 1,\n",
      "          'bit': 1,\n",
      "          'fling': 1,\n",
      "          'member': 1,\n",
      "          'country': 1,\n",
      "          'nobody': 1,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'filmmakers': 1,\n",
      "          'go': 1,\n",
      "          'call': 1,\n",
      "          'serbia': 1,\n",
      "          'countries': 1,\n",
      "          'called': 1,\n",
      "          'mark': 1,\n",
      "          'words': 1,\n",
      "          'next': 1,\n",
      "          'line': 1,\n",
      "          'rule': 1,\n",
      "          'genovia': 1,\n",
      "          'hence': 1,\n",
      "          'headphonestiara': 1,\n",
      "          'combo': 1,\n",
      "          'print': 1,\n",
      "          'ads': 1,\n",
      "          'njulie': 1,\n",
      "          'andrews': 1,\n",
      "          'luminous': 1,\n",
      "          'factor': 1,\n",
      "          'cranked': 1,\n",
      "          '11': 1,\n",
      "          'plays': 1,\n",
      "          'grandmother': 1,\n",
      "          'aka': 1,\n",
      "          'clarisse': 1,\n",
      "          'renaldi': 1,\n",
      "          'shows': 1,\n",
      "          'blue': 1,\n",
      "          'lends': 1,\n",
      "          'advice': 1,\n",
      "          'direction': 1,\n",
      "          'eating': 1,\n",
      "          'talking': 1,\n",
      "          'looking': 1,\n",
      "          'department': 1,\n",
      "          'although': 1,\n",
      "          'big': 1,\n",
      "          'makeover': 1,\n",
      "          'simply': 1,\n",
      "          'transforms': 1,\n",
      "          'duckling': 1,\n",
      "          'swan': 1,\n",
      "          'ndoes': 1,\n",
      "          'julie': 1,\n",
      "          'lose': 1,\n",
      "          'dignity': 1,\n",
      "          'sake': 1,\n",
      "          'nnot': 1,\n",
      "          'really': 1,\n",
      "          'nconsuming': 1,\n",
      "          'corn': 1,\n",
      "          'dog': 1,\n",
      "          'worst': 1,\n",
      "          'gets': 1,\n",
      "          'nalso': 1,\n",
      "          'stereotypical': 1,\n",
      "          'hand': 1,\n",
      "          'brainless': 1,\n",
      "          'jock': 1,\n",
      "          'evil': 1,\n",
      "          'cheerleader': 1,\n",
      "          'dorkylooking': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'welcome': 1,\n",
      "          'dollhouse': 1,\n",
      "          'heather': 1,\n",
      "          'matarazzo': 1,\n",
      "          'sensitive': 1,\n",
      "          'auto': 1,\n",
      "          'mechanicmusician': 1,\n",
      "          'mainstay': 1,\n",
      "          'hector': 1,\n",
      "          'elizondo': 1,\n",
      "          'joe': 1,\n",
      "          'driver': 1,\n",
      "          'imparting': 1,\n",
      "          'wit': 1,\n",
      "          'wisdom': 1,\n",
      "          'front': 1,\n",
      "          'seat': 1,\n",
      "          'chauffeurdriven': 1,\n",
      "          'limousine': 1,\n",
      "          'every': 1,\n",
      "          'intersection': 1,\n",
      "          'na': 1,\n",
      "          'nonanimated': 1,\n",
      "          'movie': 1,\n",
      "          'rarity': 1,\n",
      "          'days': 1,\n",
      "          'rating': 1,\n",
      "          'reflects': 1,\n",
      "          'fact': 1,\n",
      "          'guts': 1,\n",
      "          'stuff': 1,\n",
      "          'exorcised': 1,\n",
      "          'finished': 1,\n",
      "          'product': 1,\n",
      "          'nlame': 1,\n",
      "          'labored': 1,\n",
      "          'lamentable': 1,\n",
      "          'recommended': 1,\n",
      "          'eightandahalf': 1,\n",
      "          'year': 1,\n",
      "          'olds': 1,\n",
      "          'feminine': 1,\n",
      "          'persuasion': 1,\n",
      "          'others': 1,\n",
      "          'avoid': 1,\n",
      "          'potholes': 1,\n",
      "          'plague': 1,\n",
      "          'perfect': 1,\n",
      "          'storm': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'action': 6,\n",
      "          'plot': 5,\n",
      "          'scenes': 5,\n",
      "          'good': 5,\n",
      "          'danny': 5,\n",
      "          'nim': 5,\n",
      "          'nthe': 5,\n",
      "          'corruptor': 4,\n",
      "          'movie': 4,\n",
      "          'doesnt': 4,\n",
      "          'make': 4,\n",
      "          'sense': 4,\n",
      "          'film': 4,\n",
      "          'nick': 4,\n",
      "          'chinatown': 4,\n",
      "          'hes': 4,\n",
      "          'also': 4,\n",
      "          'none': 4,\n",
      "          'like': 3,\n",
      "          'chow': 3,\n",
      "          'cop': 3,\n",
      "          'sure': 3,\n",
      "          'henry': 3,\n",
      "          'lee': 3,\n",
      "          'never': 3,\n",
      "          'many': 3,\n",
      "          'director': 2,\n",
      "          'foley': 2,\n",
      "          'lot': 2,\n",
      "          'characters': 2,\n",
      "          'nbut': 2,\n",
      "          'less': 2,\n",
      "          'nchow': 2,\n",
      "          'nhes': 2,\n",
      "          'named': 2,\n",
      "          'wahlberg': 2,\n",
      "          'stepping': 2,\n",
      "          'finally': 2,\n",
      "          'kind': 2,\n",
      "          'fukienese': 2,\n",
      "          'dragons': 2,\n",
      "          'young': 2,\n",
      "          'chinese': 2,\n",
      "          'pretty': 2,\n",
      "          'stuff': 2,\n",
      "          'makes': 2,\n",
      "          'way': 2,\n",
      "          'ntheres': 2,\n",
      "          'subplot': 2,\n",
      "          'dannys': 2,\n",
      "          'father': 2,\n",
      "          'brian': 2,\n",
      "          'story': 2,\n",
      "          'ni': 2,\n",
      "          'finger': 2,\n",
      "          'new': 2,\n",
      "          'actors': 2,\n",
      "          'sequences': 2,\n",
      "          'seen': 2,\n",
      "          'big': 1,\n",
      "          'silly': 1,\n",
      "          'mess': 1,\n",
      "          'complete': 1,\n",
      "          'pointless': 1,\n",
      "          'turns': 1,\n",
      "          'gratuitous': 1,\n",
      "          'violence': 1,\n",
      "          'nits': 1,\n",
      "          'abhorrent': 1,\n",
      "          'even': 1,\n",
      "          'blatantly': 1,\n",
      "          'unlikable': 1,\n",
      "          'shred': 1,\n",
      "          'nand': 1,\n",
      "          'whose': 1,\n",
      "          'idea': 1,\n",
      "          'glengarry': 1,\n",
      "          'glen': 1,\n",
      "          'ross': 1,\n",
      "          'direct': 1,\n",
      "          'njames': 1,\n",
      "          'knows': 1,\n",
      "          'acting': 1,\n",
      "          'strengths': 1,\n",
      "          'quiet': 1,\n",
      "          'clash': 1,\n",
      "          'ludicrous': 1,\n",
      "          'nonsense': 1,\n",
      "          'result': 1,\n",
      "          'derailed': 1,\n",
      "          'train': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'yunfat': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'plays': 1,\n",
      "          'chen': 1,\n",
      "          'first': 1,\n",
      "          'establish': 1,\n",
      "          'familiar': 1,\n",
      "          'nthats': 1,\n",
      "          'probably': 1,\n",
      "          'powersthatbe': 1,\n",
      "          'decide': 1,\n",
      "          'team': 1,\n",
      "          'rookie': 1,\n",
      "          'wallace': 1,\n",
      "          'mark': 1,\n",
      "          'nnick': 1,\n",
      "          'begin': 1,\n",
      "          'others': 1,\n",
      "          'toes': 1,\n",
      "          'end': 1,\n",
      "          'liking': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'save': 1,\n",
      "          'ones': 1,\n",
      "          'life': 1,\n",
      "          'nwhat': 1,\n",
      "          'happens': 1,\n",
      "          'mystery': 1,\n",
      "          'fairly': 1,\n",
      "          'certain': 1,\n",
      "          'villains': 1,\n",
      "          'part': 1,\n",
      "          'led': 1,\n",
      "          'psycho': 1,\n",
      "          'bobby': 1,\n",
      "          'vu': 1,\n",
      "          'byron': 1,\n",
      "          'mann': 1,\n",
      "          'payroll': 1,\n",
      "          'ric': 1,\n",
      "          'gangster': 1,\n",
      "          'dealing': 1,\n",
      "          'prostitutes': 1,\n",
      "          'neat': 1,\n",
      "          'quite': 1,\n",
      "          'decides': 1,\n",
      "          'employ': 1,\n",
      "          'although': 1,\n",
      "          'ridiculous': 1,\n",
      "          'albeit': 1,\n",
      "          'unpredictable': 1,\n",
      "          'twists': 1,\n",
      "          'along': 1,\n",
      "          'interesting': 1,\n",
      "          'revolving': 1,\n",
      "          'around': 1,\n",
      "          'cox': 1,\n",
      "          'much': 1,\n",
      "          'main': 1,\n",
      "          'problems': 1,\n",
      "          'said': 1,\n",
      "          'dont': 1,\n",
      "          'blame': 1,\n",
      "          'entirely': 1,\n",
      "          'obviously': 1,\n",
      "          'inclined': 1,\n",
      "          'point': 1,\n",
      "          'robert': 1,\n",
      "          'puccis': 1,\n",
      "          'script': 1,\n",
      "          'seem': 1,\n",
      "          'tune': 1,\n",
      "          'normal': 1,\n",
      "          'people': 1,\n",
      "          'act': 1,\n",
      "          'scene': 1,\n",
      "          'early': 1,\n",
      "          'particularly': 1,\n",
      "          'annoyed': 1,\n",
      "          'confronts': 1,\n",
      "          'boss': 1,\n",
      "          'angry': 1,\n",
      "          'white': 1,\n",
      "          'partner': 1,\n",
      "          'shouting': 1,\n",
      "          'pointing': 1,\n",
      "          'furniture': 1,\n",
      "          'thinking': 1,\n",
      "          'would': 1,\n",
      "          'fired': 1,\n",
      "          'done': 1,\n",
      "          'n': 1,\n",
      "          'addition': 1,\n",
      "          'takes': 1,\n",
      "          'bite': 1,\n",
      "          'racerelated': 1,\n",
      "          'issues': 1,\n",
      "          'develops': 1,\n",
      "          'nthere': 1,\n",
      "          'one': 1,\n",
      "          'coherent': 1,\n",
      "          'considerable': 1,\n",
      "          'language': 1,\n",
      "          'barrier': 1,\n",
      "          'given': 1,\n",
      "          'thick': 1,\n",
      "          'accents': 1,\n",
      "          'straightens': 1,\n",
      "          'associated': 1,\n",
      "          'group': 1,\n",
      "          'weird': 1,\n",
      "          'developments': 1,\n",
      "          'decorated': 1,\n",
      "          'loud': 1,\n",
      "          'violent': 1,\n",
      "          'arent': 1,\n",
      "          'bad': 1,\n",
      "          'theyre': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'non': 1,\n",
      "          'note': 1,\n",
      "          'movies': 1,\n",
      "          'id': 1,\n",
      "          'imagine': 1,\n",
      "          'nfoleys': 1,\n",
      "          'strength': 1,\n",
      "          'clearly': 1,\n",
      "          'characterization': 1,\n",
      "          'job': 1,\n",
      "          'actually': 1,\n",
      "          'got': 1,\n",
      "          'feel': 1,\n",
      "          'bond': 1,\n",
      "          'forms': 1,\n",
      "          'holds': 1,\n",
      "          'parts': 1,\n",
      "          'together': 1,\n",
      "          'pro': 1,\n",
      "          'sleep': 1,\n",
      "          'nwahlberg': 1,\n",
      "          'seems': 1,\n",
      "          'home': 1,\n",
      "          'atmosphere': 1,\n",
      "          'still': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'liked': 1,\n",
      "          'involving': 1,\n",
      "          'coxs': 1,\n",
      "          'performance': 1,\n",
      "          'powerful': 1,\n",
      "          'character': 1,\n",
      "          'compelling': 1,\n",
      "          'moral': 1,\n",
      "          'compass': 1,\n",
      "          'ultimately': 1,\n",
      "          'fails': 1,\n",
      "          'mostly': 1,\n",
      "          'hands': 1,\n",
      "          'insane': 1,\n",
      "          'incoherence': 1,\n",
      "          'overlyfamiliar': 1,\n",
      "          'na': 1,\n",
      "          'complicated': 1,\n",
      "          'successful': 1,\n",
      "          'needs': 1,\n",
      "          'manages': 1,\n",
      "          'keeps': 1,\n",
      "          'spinning': 1,\n",
      "          'control': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'left': 1,\n",
      "          'hold': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'horror': 5,\n",
      "          'high': 5,\n",
      "          'return': 4,\n",
      "          'movie': 4,\n",
      "          'one': 4,\n",
      "          'wants': 3,\n",
      "          'nthe': 3,\n",
      "          'nbut': 3,\n",
      "          'level': 3,\n",
      "          'made': 3,\n",
      "          'nand': 3,\n",
      "          'story': 2,\n",
      "          'school': 2,\n",
      "          'place': 2,\n",
      "          'know': 2,\n",
      "          'killer': 2,\n",
      "          'non': 2,\n",
      "          'scream': 2,\n",
      "          'thing': 2,\n",
      "          'look': 2,\n",
      "          'director': 2,\n",
      "          'scene': 2,\n",
      "          'actors': 2,\n",
      "          'couple': 1,\n",
      "          'different': 1,\n",
      "          'types': 1,\n",
      "          'movies': 1,\n",
      "          'tells': 1,\n",
      "          'lowbudget': 1,\n",
      "          'filmed': 1,\n",
      "          'closeddown': 1,\n",
      "          'crippen': 1,\n",
      "          'group': 1,\n",
      "          'serial': 1,\n",
      "          'murders': 1,\n",
      "          'took': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'cast': 1,\n",
      "          'crew': 1,\n",
      "          'dont': 1,\n",
      "          'real': 1,\n",
      "          'maybe': 1,\n",
      "          'never': 1,\n",
      "          'apprehended': 1,\n",
      "          'going': 1,\n",
      "          'action': 1,\n",
      "          'slasher': 1,\n",
      "          'works': 1,\n",
      "          'best': 1,\n",
      "          'nwatching': 1,\n",
      "          '1987': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'take': 1,\n",
      "          'notice': 1,\n",
      "          'killers': 1,\n",
      "          'costume': 1,\n",
      "          'almost': 1,\n",
      "          'identital': 1,\n",
      "          'ghostface': 1,\n",
      "          '2': 1,\n",
      "          'another': 1,\n",
      "          'slapstick': 1,\n",
      "          'comedy': 1,\n",
      "          'many': 1,\n",
      "          'hints': 1,\n",
      "          'throughout': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'jokes': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'last': 1,\n",
      "          'behindthescenes': 1,\n",
      "          'exploitation': 1,\n",
      "          'problem': 1,\n",
      "          'much': 1,\n",
      "          'supposed': 1,\n",
      "          'cameras': 1,\n",
      "          'shown': 1,\n",
      "          'filming': 1,\n",
      "          'thus': 1,\n",
      "          'making': 1,\n",
      "          'far': 1,\n",
      "          'confusing': 1,\n",
      "          'top': 1,\n",
      "          'twist': 1,\n",
      "          'ending': 1,\n",
      "          'makes': 1,\n",
      "          'little': 1,\n",
      "          'sense': 1,\n",
      "          'whatsoever': 1,\n",
      "          'basically': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'wasted': 1,\n",
      "          'time': 1,\n",
      "          'nthere': 1,\n",
      "          'developments': 1,\n",
      "          'beyond': 1,\n",
      "          'ludicrous': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'could': 1,\n",
      "          'drive': 1,\n",
      "          'winnebago': 1,\n",
      "          'nif': 1,\n",
      "          'see': 1,\n",
      "          'seen': 1,\n",
      "          'youll': 1,\n",
      "          'mean': 1,\n",
      "          'premise': 1,\n",
      "          'admittedly': 1,\n",
      "          'pretty': 1,\n",
      "          'crafty': 1,\n",
      "          'liked': 1,\n",
      "          'atmosphere': 1,\n",
      "          'whole': 1,\n",
      "          'takes': 1,\n",
      "          'froehlich': 1,\n",
      "          'judging': 1,\n",
      "          'incompetent': 1,\n",
      "          'except': 1,\n",
      "          'able': 1,\n",
      "          'seldom': 1,\n",
      "          'suspeneful': 1,\n",
      "          'nwell': 1,\n",
      "          'come': 1,\n",
      "          'think': 1,\n",
      "          'actually': 1,\n",
      "          'scary': 1,\n",
      "          'two': 1,\n",
      "          'locked': 1,\n",
      "          'room': 1,\n",
      "          'tries': 1,\n",
      "          'break': 1,\n",
      "          'twominute': 1,\n",
      "          'distraction': 1,\n",
      "          'certainly': 1,\n",
      "          'great': 1,\n",
      "          'shake': 1,\n",
      "          'nnote': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'strangely': 1,\n",
      "          'enough': 1,\n",
      "          'first': 1,\n",
      "          'character': 1,\n",
      "          'get': 1,\n",
      "          'ax': 1,\n",
      "          'literally': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'alessa': 8,\n",
      "          'art': 7,\n",
      "          'sweet': 3,\n",
      "          'vulnerable': 3,\n",
      "          'nalessa': 3,\n",
      "          'nthis': 3,\n",
      "          'wants': 3,\n",
      "          'woo': 2,\n",
      "          'like': 2,\n",
      "          'woman': 2,\n",
      "          'nthe': 2,\n",
      "          'problem': 2,\n",
      "          'helen': 2,\n",
      "          'lee': 2,\n",
      "          'seems': 2,\n",
      "          'happens': 2,\n",
      "          'scene': 2,\n",
      "          'paintings': 2,\n",
      "          'dealers': 2,\n",
      "          'nshe': 2,\n",
      "          'ben': 2,\n",
      "          'really': 2,\n",
      "          'rich': 2,\n",
      "          'buddies': 2,\n",
      "          'decide': 2,\n",
      "          'everything': 2,\n",
      "          'scale': 2,\n",
      "          '4': 2,\n",
      "          'attempts': 1,\n",
      "          'one': 1,\n",
      "          'films': 1,\n",
      "          'breakfast': 1,\n",
      "          'tiffanys': 1,\n",
      "          'audience': 1,\n",
      "          'rooting': 1,\n",
      "          'irresistible': 1,\n",
      "          'work': 1,\n",
      "          'problems': 1,\n",
      "          'find': 1,\n",
      "          'happiness': 1,\n",
      "          'writes': 1,\n",
      "          'directs': 1,\n",
      "          'written': 1,\n",
      "          'played': 1,\n",
      "          'sookyin': 1,\n",
      "          'neither': 1,\n",
      "          'quite': 1,\n",
      "          'resistible': 1,\n",
      "          'young': 1,\n",
      "          'brilliant': 1,\n",
      "          'dealer': 1,\n",
      "          'toronto': 1,\n",
      "          'sort': 1,\n",
      "          'alternate': 1,\n",
      "          'world': 1,\n",
      "          'people': 1,\n",
      "          'pay': 1,\n",
      "          'tens': 1,\n",
      "          'thousands': 1,\n",
      "          'dollars': 1,\n",
      "          'talented': 1,\n",
      "          'beginners': 1,\n",
      "          'fly': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'places': 1,\n",
      "          'switzerland': 1,\n",
      "          'none': 1,\n",
      "          'knowledgeable': 1,\n",
      "          'also': 1,\n",
      "          'center': 1,\n",
      "          'adulation': 1,\n",
      "          'friends': 1,\n",
      "          'every': 1,\n",
      "          'party': 1,\n",
      "          'suitors': 1,\n",
      "          'camped': 1,\n",
      "          'outside': 1,\n",
      "          'window': 1,\n",
      "          'nnext': 1,\n",
      "          'door': 1,\n",
      "          'moves': 1,\n",
      "          'struggling': 1,\n",
      "          'genius': 1,\n",
      "          'artist': 1,\n",
      "          'native': 1,\n",
      "          'american': 1,\n",
      "          'crowchild': 1,\n",
      "          'adam': 1,\n",
      "          'beach': 1,\n",
      "          'nhe': 1,\n",
      "          'sees': 1,\n",
      "          'behind': 1,\n",
      "          'facade': 1,\n",
      "          'sad': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'within': 1,\n",
      "          'happy': 1,\n",
      "          'collector': 1,\n",
      "          'dating': 1,\n",
      "          'nben': 1,\n",
      "          'gets': 1,\n",
      "          'emotionally': 1,\n",
      "          'involved': 1,\n",
      "          'n': 1,\n",
      "          'delicately': 1,\n",
      "          'puts': 1,\n",
      "          'bosom': 1,\n",
      "          'fuck': 1,\n",
      "          'nbut': 1,\n",
      "          'whether': 1,\n",
      "          'love': 1,\n",
      "          'wealth': 1,\n",
      "          'suitor': 1,\n",
      "          'real': 1,\n",
      "          'film': 1,\n",
      "          'lees': 1,\n",
      "          'inability': 1,\n",
      "          'saying': 1,\n",
      "          'undercuts': 1,\n",
      "          'nearly': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'looking': 1,\n",
      "          'financial': 1,\n",
      "          'security': 1,\n",
      "          'makes': 1,\n",
      "          'decisions': 1,\n",
      "          'large': 1,\n",
      "          'sums': 1,\n",
      "          'money': 1,\n",
      "          'clients': 1,\n",
      "          'appears': 1,\n",
      "          'high': 1,\n",
      "          'profile': 1,\n",
      "          'wellpaid': 1,\n",
      "          'job': 1,\n",
      "          'nwe': 1,\n",
      "          'supposed': 1,\n",
      "          'care': 1,\n",
      "          'alessas': 1,\n",
      "          'feelings': 1,\n",
      "          'coldly': 1,\n",
      "          'refuses': 1,\n",
      "          'visit': 1,\n",
      "          'ailing': 1,\n",
      "          'father': 1,\n",
      "          'portrayed': 1,\n",
      "          'auction': 1,\n",
      "          'turns': 1,\n",
      "          'man': 1,\n",
      "          'flint': 1,\n",
      "          'charmless': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'bets': 1,\n",
      "          'appeal': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'comes': 1,\n",
      "          'doublezero': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '3': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          '1': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 11,\n",
      "          'na': 4,\n",
      "          'film': 4,\n",
      "          'taiwan': 3,\n",
      "          'apartment': 3,\n",
      "          'neighbor': 3,\n",
      "          'virus': 2,\n",
      "          'cut': 2,\n",
      "          'water': 2,\n",
      "          'center': 2,\n",
      "          'contagion': 2,\n",
      "          'hole': 2,\n",
      "          'floor': 2,\n",
      "          'downstairs': 2,\n",
      "          '4': 2,\n",
      "          'woman': 2,\n",
      "          'upstairs': 2,\n",
      "          'small': 2,\n",
      "          'failing': 2,\n",
      "          'songs': 2,\n",
      "          'seems': 2,\n",
      "          'capsule': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'allegory': 1,\n",
      "          'nat': 1,\n",
      "          'millennium': 1,\n",
      "          'lethal': 1,\n",
      "          'contagious': 1,\n",
      "          'hit': 1,\n",
      "          'nofficials': 1,\n",
      "          'services': 1,\n",
      "          'nlife': 1,\n",
      "          'devolves': 1,\n",
      "          'degenerates': 1,\n",
      "          'man': 1,\n",
      "          'harasses': 1,\n",
      "          'slow': 1,\n",
      "          'harrowing': 1,\n",
      "          'missed': 1,\n",
      "          'possible': 1,\n",
      "          'low': 1,\n",
      "          '1': 1,\n",
      "          'ravaging': 1,\n",
      "          'part': 1,\n",
      "          'city': 1,\n",
      "          'evacuated': 1,\n",
      "          'anyone': 1,\n",
      "          'go': 1,\n",
      "          'none': 1,\n",
      "          'building': 1,\n",
      "          'still': 1,\n",
      "          'houses': 1,\n",
      "          'people': 1,\n",
      "          'formerly': 1,\n",
      "          'office': 1,\n",
      "          'worker': 1,\n",
      "          'yang': 1,\n",
      "          'kueimei': 1,\n",
      "          'tormented': 1,\n",
      "          'lee': 1,\n",
      "          'kangsheng': 1,\n",
      "          'plumber': 1,\n",
      "          'using': 1,\n",
      "          'drain': 1,\n",
      "          'nneighbor': 1,\n",
      "          'runs': 1,\n",
      "          'grocery': 1,\n",
      "          'store': 1,\n",
      "          'make': 1,\n",
      "          'things': 1,\n",
      "          'depressing': 1,\n",
      "          'constantly': 1,\n",
      "          'raining': 1,\n",
      "          'hard': 1,\n",
      "          'vomits': 1,\n",
      "          'pours': 1,\n",
      "          'etc': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'onesided': 1,\n",
      "          'war': 1,\n",
      "          'starts': 1,\n",
      "          'nallegory': 1,\n",
      "          'callousness': 1,\n",
      "          'selfishness': 1,\n",
      "          'living': 1,\n",
      "          'pile': 1,\n",
      "          'rolls': 1,\n",
      "          'toilet': 1,\n",
      "          'tissue': 1,\n",
      "          'incongruous': 1,\n",
      "          'added': 1,\n",
      "          'show': 1,\n",
      "          'neighbors': 1,\n",
      "          'dreams': 1,\n",
      "          'nthese': 1,\n",
      "          'popular': 1,\n",
      "          'taiwanese': 1,\n",
      "          'singer': 1,\n",
      "          'grace': 1,\n",
      "          'chang': 1,\n",
      "          'falling': 1,\n",
      "          'apart': 1,\n",
      "          'nwallpaper': 1,\n",
      "          'separating': 1,\n",
      "          'walls': 1,\n",
      "          'nplumbing': 1,\n",
      "          'boredom': 1,\n",
      "          'shown': 1,\n",
      "          'long': 1,\n",
      "          'cuts': 1,\n",
      "          'nothing': 1,\n",
      "          'happens': 1,\n",
      "          'lot': 1,\n",
      "          'used': 1,\n",
      "          'story': 1,\n",
      "          'might': 1,\n",
      "          'done': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'tenminute': 1,\n",
      "          'animated': 1,\n",
      "          'stars': 1,\n",
      "          'considered': 1,\n",
      "          'great': 1,\n",
      "          'dramatic': 1,\n",
      "          'actors': 1,\n",
      "          'one': 1,\n",
      "          'reviewer': 1,\n",
      "          'longer': 1,\n",
      "          '95': 1,\n",
      "          'minutes': 1,\n",
      "          'twohour': 1,\n",
      "          'films': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'flubber': 8,\n",
      "          'like': 4,\n",
      "          'comedy': 3,\n",
      "          'actually': 3,\n",
      "          'nthe': 3,\n",
      "          'phillip': 3,\n",
      "          'first': 3,\n",
      "          'seems': 3,\n",
      "          'forgotten': 3,\n",
      "          'nbut': 3,\n",
      "          'even': 3,\n",
      "          'worse': 3,\n",
      "          'make': 3,\n",
      "          'nits': 3,\n",
      "          'free': 2,\n",
      "          'cartoons': 2,\n",
      "          'slapstick': 2,\n",
      "          'gags': 2,\n",
      "          'story': 2,\n",
      "          'time': 2,\n",
      "          'cartoony': 2,\n",
      "          'nwe': 2,\n",
      "          'medfield': 2,\n",
      "          'college': 2,\n",
      "          'chemistry': 2,\n",
      "          'williams': 2,\n",
      "          'scientist': 2,\n",
      "          'jokes': 2,\n",
      "          'one': 2,\n",
      "          'sara': 2,\n",
      "          'says': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'conflicts': 2,\n",
      "          'wants': 2,\n",
      "          'phillips': 2,\n",
      "          'rival': 2,\n",
      "          'going': 2,\n",
      "          'invent': 2,\n",
      "          'something': 2,\n",
      "          'rules': 2,\n",
      "          'flying': 2,\n",
      "          'could': 2,\n",
      "          'basketball': 2,\n",
      "          'team': 2,\n",
      "          'jumping': 2,\n",
      "          'think': 2,\n",
      "          'especially': 2,\n",
      "          'say': 2,\n",
      "          'nothing': 2,\n",
      "          'seen': 1,\n",
      "          'december': 1,\n",
      "          '2': 1,\n",
      "          '1997': 1,\n",
      "          '6': 1,\n",
      "          '50': 1,\n",
      "          'p': 1,\n",
      "          'glenwood': 1,\n",
      "          'movieplex': 1,\n",
      "          'cinemas': 1,\n",
      "          'oneida': 1,\n",
      "          'ny': 1,\n",
      "          'theater': 1,\n",
      "          '3': 1,\n",
      "          'pass': 1,\n",
      "          'ntheater': 1,\n",
      "          'rating': 1,\n",
      "          'good': 1,\n",
      "          'seats': 1,\n",
      "          'sound': 1,\n",
      "          'picture': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'philosophies': 1,\n",
      "          'fascinated': 1,\n",
      "          'nthey': 1,\n",
      "          'provide': 1,\n",
      "          'method': 1,\n",
      "          'total': 1,\n",
      "          'escapism': 1,\n",
      "          'anything': 1,\n",
      "          'work': 1,\n",
      "          'within': 1,\n",
      "          'context': 1,\n",
      "          'outrageous': 1,\n",
      "          'looney': 1,\n",
      "          'tunes': 1,\n",
      "          'intensity': 1,\n",
      "          'japanimation': 1,\n",
      "          'nwatching': 1,\n",
      "          'really': 1,\n",
      "          'clinched': 1,\n",
      "          'idea': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'cartoon': 1,\n",
      "          'presents': 1,\n",
      "          'regular': 1,\n",
      "          'nit': 1,\n",
      "          'proves': 1,\n",
      "          'painfully': 1,\n",
      "          'unfunny': 1,\n",
      "          'would': 1,\n",
      "          'reality': 1,\n",
      "          'important': 1,\n",
      "          'wastes': 1,\n",
      "          'establishing': 1,\n",
      "          'lighthearted': 1,\n",
      "          'atmosphere': 1,\n",
      "          'meet': 1,\n",
      "          'professor': 1,\n",
      "          'brainard': 1,\n",
      "          'typical': 1,\n",
      "          'supposedly': 1,\n",
      "          'likable': 1,\n",
      "          'mad': 1,\n",
      "          'nwithin': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          'get': 1,\n",
      "          'least': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'forgetful': 1,\n",
      "          'nphillips': 1,\n",
      "          'memory': 1,\n",
      "          'loss': 1,\n",
      "          'less': 1,\n",
      "          'gag': 1,\n",
      "          'real': 1,\n",
      "          'case': 1,\n",
      "          'alzhiemers': 1,\n",
      "          'disease': 1,\n",
      "          'isnt': 1,\n",
      "          'rather': 1,\n",
      "          'lowbrow': 1,\n",
      "          'nhe': 1,\n",
      "          'starts': 1,\n",
      "          'teaching': 1,\n",
      "          'walking': 1,\n",
      "          'nude': 1,\n",
      "          'figure': 1,\n",
      "          'drawing': 1,\n",
      "          'class': 1,\n",
      "          'inappropriate': 1,\n",
      "          'joke': 1,\n",
      "          'kids': 1,\n",
      "          'movie': 1,\n",
      "          'ever': 1,\n",
      "          'saw': 1,\n",
      "          'learn': 1,\n",
      "          'stood': 1,\n",
      "          'fiancee': 1,\n",
      "          'harden': 1,\n",
      "          'twice': 1,\n",
      "          'altar': 1,\n",
      "          'simply': 1,\n",
      "          'hes': 1,\n",
      "          'nsara': 1,\n",
      "          'claims': 1,\n",
      "          'love': 1,\n",
      "          'forgets': 1,\n",
      "          'wedding': 1,\n",
      "          'shell': 1,\n",
      "          'stop': 1,\n",
      "          'loving': 1,\n",
      "          'sign': 1,\n",
      "          'childish': 1,\n",
      "          'attitude': 1,\n",
      "          'denies': 1,\n",
      "          'must': 1,\n",
      "          'resolve': 1,\n",
      "          'surprise': 1,\n",
      "          'major': 1,\n",
      "          'related': 1,\n",
      "          'nchristopher': 1,\n",
      "          'mcdonald': 1,\n",
      "          'version': 1,\n",
      "          'usual': 1,\n",
      "          'villain': 1,\n",
      "          'shtick': 1,\n",
      "          'wilson': 1,\n",
      "          'croft': 1,\n",
      "          'steal': 1,\n",
      "          'ideas': 1,\n",
      "          'woman': 1,\n",
      "          'nwhats': 1,\n",
      "          'interested': 1,\n",
      "          'nwilson': 1,\n",
      "          'works': 1,\n",
      "          'buy': 1,\n",
      "          'broke': 1,\n",
      "          'unless': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'none': 1,\n",
      "          'filmmaking': 1,\n",
      "          'sure': 1,\n",
      "          'title': 1,\n",
      "          'played': 1,\n",
      "          'introduced': 1,\n",
      "          'thereafter': 1,\n",
      "          'obvious': 1,\n",
      "          'accidentally': 1,\n",
      "          'rubber': 1,\n",
      "          'compound': 1,\n",
      "          'yields': 1,\n",
      "          'tremendous': 1,\n",
      "          'energy': 1,\n",
      "          'promotions': 1,\n",
      "          'look': 1,\n",
      "          'realistic': 1,\n",
      "          'funny': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'looks': 1,\n",
      "          'fake': 1,\n",
      "          'unconvincing': 1,\n",
      "          'nflubber': 1,\n",
      "          'also': 1,\n",
      "          'intelligence': 1,\n",
      "          'personality': 1,\n",
      "          'performs': 1,\n",
      "          'song': 1,\n",
      "          'dance': 1,\n",
      "          'routine': 1,\n",
      "          'give': 1,\n",
      "          'wondering': 1,\n",
      "          'life': 1,\n",
      "          'spontaneously': 1,\n",
      "          'come': 1,\n",
      "          'inanimate': 1,\n",
      "          'object': 1,\n",
      "          'nmost': 1,\n",
      "          'wanders': 1,\n",
      "          'aimlessly': 1,\n",
      "          'relies': 1,\n",
      "          'since': 1,\n",
      "          'absentmindedness': 1,\n",
      "          'somehow': 1,\n",
      "          'push': 1,\n",
      "          'along': 1,\n",
      "          'clear': 1,\n",
      "          'weak': 1,\n",
      "          'premise': 1,\n",
      "          'getgo': 1,\n",
      "          'gets': 1,\n",
      "          'nall': 1,\n",
      "          'involve': 1,\n",
      "          'people': 1,\n",
      "          'getting': 1,\n",
      "          'hit': 1,\n",
      "          'fastmoving': 1,\n",
      "          'flubberpowered': 1,\n",
      "          'objects': 1,\n",
      "          'including': 1,\n",
      "          'bowling': 1,\n",
      "          'balls': 1,\n",
      "          'cars': 1,\n",
      "          'dont': 1,\n",
      "          'fly': 1,\n",
      "          'well': 1,\n",
      "          'capable': 1,\n",
      "          '100': 1,\n",
      "          'feet': 1,\n",
      "          'air': 1,\n",
      "          'presented': 1,\n",
      "          'complete': 1,\n",
      "          'logic': 1,\n",
      "          'believes': 1,\n",
      "          'exists': 1,\n",
      "          'see': 1,\n",
      "          'eyes': 1,\n",
      "          'nduring': 1,\n",
      "          'scene': 1,\n",
      "          'coach': 1,\n",
      "          'might': 1,\n",
      "          'cheating': 1,\n",
      "          'referee': 1,\n",
      "          'replies': 1,\n",
      "          'theres': 1,\n",
      "          'high': 1,\n",
      "          'n': 1,\n",
      "          'predictable': 1,\n",
      "          'doesnt': 1,\n",
      "          'begin': 1,\n",
      "          'describe': 1,\n",
      "          'motions': 1,\n",
      "          'goes': 1,\n",
      "          'halfway': 1,\n",
      "          'point': 1,\n",
      "          'nand': 1,\n",
      "          'terribly': 1,\n",
      "          'contrived': 1,\n",
      "          'plot': 1,\n",
      "          'way': 1,\n",
      "          'broken': 1,\n",
      "          'scenebyscene': 1,\n",
      "          'absolutely': 1,\n",
      "          'transition': 1,\n",
      "          'nnot': 1,\n",
      "          'actors': 1,\n",
      "          'seem': 1,\n",
      "          'bored': 1,\n",
      "          'tears': 1,\n",
      "          'nid': 1,\n",
      "          '80': 1,\n",
      "          'percent': 1,\n",
      "          'scenes': 1,\n",
      "          'shot': 1,\n",
      "          'bluescreen': 1,\n",
      "          'almost': 1,\n",
      "          'forgivable': 1,\n",
      "          'realize': 1,\n",
      "          'theyre': 1,\n",
      "          'talking': 1,\n",
      "          'interacting': 1,\n",
      "          'safe': 1,\n",
      "          'everything': 1,\n",
      "          'bad': 1,\n",
      "          'original': 1,\n",
      "          'element': 1,\n",
      "          'worlds': 1,\n",
      "          'romance': 1,\n",
      "          'machine': 1,\n",
      "          'human': 1,\n",
      "          'aspect': 1,\n",
      "          'quite': 1,\n",
      "          'twisted': 1,\n",
      "          'rest': 1,\n",
      "          'wont': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'see': 5,\n",
      "          'one': 4,\n",
      "          'really': 4,\n",
      "          'nthis': 4,\n",
      "          'freddie': 4,\n",
      "          'prinze': 4,\n",
      "          'jr': 4,\n",
      "          'nits': 4,\n",
      "          'model': 4,\n",
      "          'n': 4,\n",
      "          '510': 4,\n",
      "          'plot': 3,\n",
      "          'models': 3,\n",
      "          'im': 3,\n",
      "          'like': 3,\n",
      "          'nand': 3,\n",
      "          'ask': 3,\n",
      "          'nwell': 3,\n",
      "          'character': 3,\n",
      "          'actually': 3,\n",
      "          'well': 3,\n",
      "          'point': 3,\n",
      "          'goes': 3,\n",
      "          '6': 3,\n",
      "          'girl': 2,\n",
      "          'moves': 2,\n",
      "          'goofybutloveable': 2,\n",
      "          'guy': 2,\n",
      "          'street': 2,\n",
      "          'naaaaaaaaah': 2,\n",
      "          'head': 2,\n",
      "          'maybe': 2,\n",
      "          'little': 2,\n",
      "          'nice': 2,\n",
      "          'dumb': 2,\n",
      "          'idiocy': 2,\n",
      "          'thats': 2,\n",
      "          'may': 2,\n",
      "          'simple': 2,\n",
      "          'life': 2,\n",
      "          'potter': 2,\n",
      "          'stupid': 2,\n",
      "          'crap': 2,\n",
      "          'thing': 2,\n",
      "          'ni': 2,\n",
      "          'even': 2,\n",
      "          'guess': 2,\n",
      "          'could': 2,\n",
      "          'comes': 2,\n",
      "          'time': 2,\n",
      "          'people': 2,\n",
      "          'things': 2,\n",
      "          'funny': 2,\n",
      "          'person': 2,\n",
      "          'girls': 2,\n",
      "          'entire': 2,\n",
      "          'none': 2,\n",
      "          'window': 2,\n",
      "          'last': 2,\n",
      "          'us': 2,\n",
      "          'didnt': 2,\n",
      "          'mention': 2,\n",
      "          'coming': 2,\n",
      "          '710': 2,\n",
      "          'downandout': 1,\n",
      "          'overthetop': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'across': 1,\n",
      "          'nthen': 1,\n",
      "          'day': 1,\n",
      "          'sees': 1,\n",
      "          'knock': 1,\n",
      "          'woman': 1,\n",
      "          'upside': 1,\n",
      "          'baseball': 1,\n",
      "          'bat': 1,\n",
      "          'nooooooooh': 1,\n",
      "          'nshe': 1,\n",
      "          'must': 1,\n",
      "          'join': 1,\n",
      "          'together': 1,\n",
      "          'modelfriends': 1,\n",
      "          'find': 1,\n",
      "          'whether': 1,\n",
      "          'psycho': 1,\n",
      "          'killer': 1,\n",
      "          'ncritique': 1,\n",
      "          'completely': 1,\n",
      "          'idiotic': 1,\n",
      "          'nokay': 1,\n",
      "          'starts': 1,\n",
      "          'ridiculous': 1,\n",
      "          'eventually': 1,\n",
      "          'graduates': 1,\n",
      "          'nthere': 1,\n",
      "          'nmore': 1,\n",
      "          'nfour': 1,\n",
      "          'dumbest': 1,\n",
      "          'stereotypical': 1,\n",
      "          'world': 1,\n",
      "          'oh': 1,\n",
      "          'god': 1,\n",
      "          'found': 1,\n",
      "          'actresses': 1,\n",
      "          'playing': 1,\n",
      "          'parts': 1,\n",
      "          'real': 1,\n",
      "          'yipes': 1,\n",
      "          'njoin': 1,\n",
      "          'monica': 1,\n",
      "          'role': 1,\n",
      "          'described': 1,\n",
      "          'obvious': 1,\n",
      "          'cry': 1,\n",
      "          'help': 1,\n",
      "          'actor': 1,\n",
      "          'better': 1,\n",
      "          'known': 1,\n",
      "          'farfetched': 1,\n",
      "          'wonder': 1,\n",
      "          'gets': 1,\n",
      "          'hollywood': 1,\n",
      "          'bigwigs': 1,\n",
      "          'stinks': 1,\n",
      "          'highheaven': 1,\n",
      "          'plain': 1,\n",
      "          'embarrassing': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'felt': 1,\n",
      "          'iq': 1,\n",
      "          'dip': 1,\n",
      "          'usual': 1,\n",
      "          'low': 1,\n",
      "          'toilet': 1,\n",
      "          'humor': 1,\n",
      "          'somehow': 1,\n",
      "          'worked': 1,\n",
      "          'way': 1,\n",
      "          'socalled': 1,\n",
      "          'romanticcomedyaction': 1,\n",
      "          'nugh': 1,\n",
      "          'nwhat': 1,\n",
      "          'pile': 1,\n",
      "          'dung': 1,\n",
      "          'nhey': 1,\n",
      "          'starting': 1,\n",
      "          'sound': 1,\n",
      "          'harry': 1,\n",
      "          'knowles': 1,\n",
      "          'frustration': 1,\n",
      "          'sad': 1,\n",
      "          'na': 1,\n",
      "          'quite': 1,\n",
      "          'audience': 1,\n",
      "          'laughing': 1,\n",
      "          'including': 1,\n",
      "          'overused': 1,\n",
      "          'folks': 1,\n",
      "          'hiding': 1,\n",
      "          'bathroom': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'take': 1,\n",
      "          'fart': 1,\n",
      "          'gag': 1,\n",
      "          'blonde': 1,\n",
      "          'keeps': 1,\n",
      "          'running': 1,\n",
      "          'npure': 1,\n",
      "          'hilarity': 1,\n",
      "          'jaded': 1,\n",
      "          'much': 1,\n",
      "          'critic': 1,\n",
      "          'relaxed': 1,\n",
      "          'enough': 1,\n",
      "          'enjoy': 1,\n",
      "          'fluffpiece': 1,\n",
      "          'uuuhhmmm': 1,\n",
      "          'naaaaah': 1,\n",
      "          'sucks': 1,\n",
      "          'big': 1,\n",
      "          'chockfull': 1,\n",
      "          'characters': 1,\n",
      "          'delivering': 1,\n",
      "          'inane': 1,\n",
      "          'dialogue': 1,\n",
      "          'fitting': 1,\n",
      "          'snuggly': 1,\n",
      "          'preposterous': 1,\n",
      "          'kind': 1,\n",
      "          'inserting': 1,\n",
      "          'another': 1,\n",
      "          'car': 1,\n",
      "          'headfirst': 1,\n",
      "          'floor': 1,\n",
      "          'supposed': 1,\n",
      "          'nyou': 1,\n",
      "          'legs': 1,\n",
      "          'swinging': 1,\n",
      "          'persons': 1,\n",
      "          'face': 1,\n",
      "          'drive': 1,\n",
      "          'distracts': 1,\n",
      "          'driver': 1,\n",
      "          'kinda': 1,\n",
      "          'nharumph': 1,\n",
      "          'yeah': 1,\n",
      "          'nget': 1,\n",
      "          'picture': 1,\n",
      "          'nanyhoo': 1,\n",
      "          'nuff': 1,\n",
      "          'nsaid': 1,\n",
      "          'nmonica': 1,\n",
      "          'bad': 1,\n",
      "          'career': 1,\n",
      "          'move': 1,\n",
      "          'might': 1,\n",
      "          'forgive': 1,\n",
      "          'keep': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'bit': 1,\n",
      "          'nthe': 1,\n",
      "          'rest': 1,\n",
      "          'nthanks': 1,\n",
      "          'something': 1,\n",
      "          'look': 1,\n",
      "          'please': 1,\n",
      "          'apologize': 1,\n",
      "          'modeling': 1,\n",
      "          'community': 1,\n",
      "          'whole': 1,\n",
      "          'making': 1,\n",
      "          'complete': 1,\n",
      "          'imbeciles': 1,\n",
      "          'nso': 1,\n",
      "          'three': 1,\n",
      "          'points': 1,\n",
      "          'ten': 1,\n",
      "          'russian': 1,\n",
      "          'cool': 1,\n",
      "          'accent': 1,\n",
      "          'dont': 1,\n",
      "          'turned': 1,\n",
      "          'decoration': 1,\n",
      "          'natch': 1,\n",
      "          'makers': 1,\n",
      "          'film': 1,\n",
      "          'spared': 1,\n",
      "          'long': 1,\n",
      "          'sorted': 1,\n",
      "          'story': 1,\n",
      "          'made': 1,\n",
      "          'sure': 1,\n",
      "          'give': 1,\n",
      "          'opportunity': 1,\n",
      "          'leaving': 1,\n",
      "          'theatre': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'manufactured': 1,\n",
      "          'garbage': 1,\n",
      "          'run': 1,\n",
      "          'fast': 1,\n",
      "          'grab': 1,\n",
      "          'next': 1,\n",
      "          'walking': 1,\n",
      "          'warn': 1,\n",
      "          'devil': 1,\n",
      "          'nmean': 1,\n",
      "          'heels': 1,\n",
      "          'nyouve': 1,\n",
      "          'warned': 1,\n",
      "          'good': 1,\n",
      "          'nps': 1,\n",
      "          'didja': 1,\n",
      "          'notice': 1,\n",
      "          'rear': 1,\n",
      "          'review': 1,\n",
      "          'want': 1,\n",
      "          'taint': 1,\n",
      "          'memory': 1,\n",
      "          'classic': 1,\n",
      "          'flick': 1,\n",
      "          'uttered': 1,\n",
      "          'alongside': 1,\n",
      "          'doesnt': 1,\n",
      "          'count': 1,\n",
      "          'ps': 1,\n",
      "          'section': 1,\n",
      "          'ndoes': 1,\n",
      "          'nooooh': 1,\n",
      "          'whatever': 1,\n",
      "          'headache': 1,\n",
      "          'think': 1,\n",
      "          'brain': 1,\n",
      "          'back': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'n10': 1,\n",
      "          'hate': 1,\n",
      "          'coyote': 1,\n",
      "          'ugly': 1,\n",
      "          'save': 1,\n",
      "          'dance': 1,\n",
      "          'shes': 1,\n",
      "          'wedding': 1,\n",
      "          'planner': 1,\n",
      "          '410': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'mail': 1,\n",
      "          '5': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'movie': 4,\n",
      "          'todd': 4,\n",
      "          'plot': 4,\n",
      "          'actor': 3,\n",
      "          'birth': 3,\n",
      "          'time': 3,\n",
      "          'show': 3,\n",
      "          'spirit': 2,\n",
      "          'left': 2,\n",
      "          'star': 2,\n",
      "          'made': 2,\n",
      "          'advance': 2,\n",
      "          'might': 2,\n",
      "          'chosen': 2,\n",
      "          'though': 2,\n",
      "          'doesnt': 2,\n",
      "          'soldier': 2,\n",
      "          'less': 2,\n",
      "          'trained': 2,\n",
      "          'years': 2,\n",
      "          'replaced': 2,\n",
      "          'instead': 2,\n",
      "          'class': 2,\n",
      "          'caine': 2,\n",
      "          'villain': 2,\n",
      "          'near': 2,\n",
      "          'two': 2,\n",
      "          'stage': 2,\n",
      "          'anderson': 2,\n",
      "          'garbage': 2,\n",
      "          'planet': 2,\n",
      "          'best': 2,\n",
      "          'interested': 1,\n",
      "          'true': 1,\n",
      "          'moviemaking': 1,\n",
      "          'whats': 1,\n",
      "          'mainstream': 1,\n",
      "          'hollywood': 1,\n",
      "          'vehicles': 1,\n",
      "          'terrible': 1,\n",
      "          'things': 1,\n",
      "          'nas': 1,\n",
      "          'rule': 1,\n",
      "          'ignore': 1,\n",
      "          'general': 1,\n",
      "          'principles': 1,\n",
      "          'cinema': 1,\n",
      "          'media': 1,\n",
      "          'rather': 1,\n",
      "          'career': 1,\n",
      "          'particular': 1,\n",
      "          'nan': 1,\n",
      "          'upandup': 1,\n",
      "          'give': 1,\n",
      "          'exposure': 1,\n",
      "          'way': 1,\n",
      "          'hand': 1,\n",
      "          'paycheck': 1,\n",
      "          'ngenerally': 1,\n",
      "          'matter': 1,\n",
      "          'latest': 1,\n",
      "          'beleaguered': 1,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'exemplifies': 1,\n",
      "          'picture': 1,\n",
      "          'lacks': 1,\n",
      "          'pizazz': 1,\n",
      "          'vehicle': 1,\n",
      "          'case': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'otherwise': 1,\n",
      "          'known': 1,\n",
      "          'man': 1,\n",
      "          'thirty': 1,\n",
      "          'words': 1,\n",
      "          'nrussell': 1,\n",
      "          'plays': 1,\n",
      "          'human': 1,\n",
      "          'ways': 1,\n",
      "          'waging': 1,\n",
      "          'war': 1,\n",
      "          'becoming': 1,\n",
      "          'emotionally': 1,\n",
      "          'distanced': 1,\n",
      "          'carnage': 1,\n",
      "          'wrought': 1,\n",
      "          'lets': 1,\n",
      "          'us': 1,\n",
      "          'see': 1,\n",
      "          'degenerate': 1,\n",
      "          'process': 1,\n",
      "          'real': 1,\n",
      "          'starts': 1,\n",
      "          'todds': 1,\n",
      "          'later': 1,\n",
      "          'nhes': 1,\n",
      "          'new': 1,\n",
      "          'breed': 1,\n",
      "          'soldiers': 1,\n",
      "          'ones': 1,\n",
      "          'genetically': 1,\n",
      "          'selected': 1,\n",
      "          'pride': 1,\n",
      "          '607': 1,\n",
      "          'jason': 1,\n",
      "          'scott': 1,\n",
      "          'lee': 1,\n",
      "          'know': 1,\n",
      "          'hes': 1,\n",
      "          'staring': 1,\n",
      "          'contest': 1,\n",
      "          'hero': 1,\n",
      "          'movies': 1,\n",
      "          'start': 1,\n",
      "          'nbetween': 1,\n",
      "          'leads': 1,\n",
      "          'full': 1,\n",
      "          'typed': 1,\n",
      "          'page': 1,\n",
      "          'dialogue': 1,\n",
      "          'spoken': 1,\n",
      "          'possible': 1,\n",
      "          'imagine': 1,\n",
      "          'script': 1,\n",
      "          'ninety': 1,\n",
      "          'percent': 1,\n",
      "          'direction': 1,\n",
      "          'ndirector': 1,\n",
      "          'paul': 1,\n",
      "          'helmed': 1,\n",
      "          'last': 1,\n",
      "          'icy': 1,\n",
      "          'thriller': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'inventiveness': 1,\n",
      "          'content': 1,\n",
      "          'let': 1,\n",
      "          'actions': 1,\n",
      "          'play': 1,\n",
      "          'screen': 1,\n",
      "          'ad': 1,\n",
      "          'nauseam': 1,\n",
      "          'ntodd': 1,\n",
      "          'upon': 1,\n",
      "          'die': 1,\n",
      "          'order': 1,\n",
      "          'stretch': 1,\n",
      "          'running': 1,\n",
      "          'villains': 1,\n",
      "          'return': 1,\n",
      "          'routine': 1,\n",
      "          'patrol': 1,\n",
      "          'set': 1,\n",
      "          'final': 1,\n",
      "          'firefight': 1,\n",
      "          'nevents': 1,\n",
      "          'predictable': 1,\n",
      "          'setups': 1,\n",
      "          'neither': 1,\n",
      "          'scriptwriter': 1,\n",
      "          'david': 1,\n",
      "          'peoples': 1,\n",
      "          'attempts': 1,\n",
      "          'creativeness': 1,\n",
      "          'annoying': 1,\n",
      "          'facet': 1,\n",
      "          'reason': 1,\n",
      "          'whole': 1,\n",
      "          'comes': 1,\n",
      "          'fails': 1,\n",
      "          'physical': 1,\n",
      "          'superiority': 1,\n",
      "          'fact': 1,\n",
      "          'even': 1,\n",
      "          'companions': 1,\n",
      "          'baddie': 1,\n",
      "          'end': 1,\n",
      "          'shows': 1,\n",
      "          'remarkable': 1,\n",
      "          'prowess': 1,\n",
      "          'automatic': 1,\n",
      "          'weaponry': 1,\n",
      "          'nits': 1,\n",
      "          'undergoes': 1,\n",
      "          'significant': 1,\n",
      "          'character': 1,\n",
      "          'changes': 1,\n",
      "          'throughout': 1,\n",
      "          'story': 1,\n",
      "          'canned': 1,\n",
      "          'feeling': 1,\n",
      "          'route': 1,\n",
      "          'disaster': 1,\n",
      "          'take': 1,\n",
      "          'lighthearted': 1,\n",
      "          'treat': 1,\n",
      "          'parody': 1,\n",
      "          'typical': 1,\n",
      "          'action': 1,\n",
      "          'fare': 1,\n",
      "          'like': 1,\n",
      "          'universal': 1,\n",
      "          'na': 1,\n",
      "          'strict': 1,\n",
      "          'interpretation': 1,\n",
      "          'however': 1,\n",
      "          'reveals': 1,\n",
      "          'unmistakeable': 1,\n",
      "          'unforgiveable': 1,\n",
      "          'lack': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'next': 1,\n",
      "          'year': 1,\n",
      "          'large': 1,\n",
      "          'percentage': 1,\n",
      "          'people': 1,\n",
      "          'seen': 1,\n",
      "          'taped': 1,\n",
      "          'network': 1,\n",
      "          'television': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sam': 5,\n",
      "          'nmax': 4,\n",
      "          'fool': 3,\n",
      "          'nthe': 3,\n",
      "          'jay': 3,\n",
      "          'director': 2,\n",
      "          'comedy': 2,\n",
      "          'two': 2,\n",
      "          'would': 2,\n",
      "          'intelligence': 2,\n",
      "          'script': 2,\n",
      "          'actors': 2,\n",
      "          'n': 2,\n",
      "          'max': 2,\n",
      "          'get': 2,\n",
      "          'short': 2,\n",
      "          'makes': 2,\n",
      "          'test': 2,\n",
      "          'njay': 2,\n",
      "          'supposed': 2,\n",
      "          'sleep': 2,\n",
      "          'becomes': 2,\n",
      "          'films': 2,\n",
      "          'funny': 2,\n",
      "          'nkissing': 2,\n",
      "          'doug': 1,\n",
      "          'ellins': 1,\n",
      "          'kissing': 1,\n",
      "          'released': 1,\n",
      "          'earlier': 1,\n",
      "          'year': 1,\n",
      "          'aptly': 1,\n",
      "          'titled': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'plastic': 1,\n",
      "          'couples': 1,\n",
      "          'housed': 1,\n",
      "          'artificial': 1,\n",
      "          'story': 1,\n",
      "          'nlike': 1,\n",
      "          'sitcom': 1,\n",
      "          'jokes': 1,\n",
      "          'lame': 1,\n",
      "          'impossible': 1,\n",
      "          'overlay': 1,\n",
      "          'laugh': 1,\n",
      "          'track': 1,\n",
      "          'movie': 1,\n",
      "          'meanders': 1,\n",
      "          'along': 1,\n",
      "          'insulting': 1,\n",
      "          'viewers': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'frame': 1,\n",
      "          'james': 1,\n",
      "          'frey': 1,\n",
      "          'filled': 1,\n",
      "          'vapid': 1,\n",
      "          'read': 1,\n",
      "          'meaningless': 1,\n",
      "          'lines': 1,\n",
      "          'youve': 1,\n",
      "          'heard': 1,\n",
      "          'im': 1,\n",
      "          'wearing': 1,\n",
      "          'underwear': 1,\n",
      "          'bimbo': 1,\n",
      "          'tells': 1,\n",
      "          'famous': 1,\n",
      "          'sportscaster': 1,\n",
      "          'assumes': 1,\n",
      "          'surefire': 1,\n",
      "          'comeon': 1,\n",
      "          'line': 1,\n",
      "          'chicagos': 1,\n",
      "          'biggest': 1,\n",
      "          'playboy': 1,\n",
      "          'decides': 1,\n",
      "          'married': 1,\n",
      "          'whirlwind': 1,\n",
      "          'love': 1,\n",
      "          'affair': 1,\n",
      "          'samantha': 1,\n",
      "          'possess': 1,\n",
      "          'irritating': 1,\n",
      "          'personalities': 1,\n",
      "          'hold': 1,\n",
      "          'little': 1,\n",
      "          'chemistry': 1,\n",
      "          'audience': 1,\n",
      "          'played': 1,\n",
      "          'without': 1,\n",
      "          'style': 1,\n",
      "          'david': 1,\n",
      "          'schwimmer': 1,\n",
      "          'nschwimmer': 1,\n",
      "          'whose': 1,\n",
      "          'acting': 1,\n",
      "          'talent': 1,\n",
      "          'playing': 1,\n",
      "          'characters': 1,\n",
      "          'devoid': 1,\n",
      "          'personality': 1,\n",
      "          'unlikely': 1,\n",
      "          'lover': 1,\n",
      "          'nhis': 1,\n",
      "          'costar': 1,\n",
      "          'mili': 1,\n",
      "          'avital': 1,\n",
      "          'cut': 1,\n",
      "          'cloth': 1,\n",
      "          'argued': 1,\n",
      "          'matched': 1,\n",
      "          'pair': 1,\n",
      "          'nafter': 1,\n",
      "          'people': 1,\n",
      "          'naturally': 1,\n",
      "          'drawn': 1,\n",
      "          'ditto': 1,\n",
      "          'similar': 1,\n",
      "          'looks': 1,\n",
      "          'shouldnt': 1,\n",
      "          'personalitychallenged': 1,\n",
      "          'attracted': 1,\n",
      "          'implausible': 1,\n",
      "          'plot': 1,\n",
      "          'asking': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'jason': 1,\n",
      "          'lee': 1,\n",
      "          'hit': 1,\n",
      "          'try': 1,\n",
      "          'stop': 1,\n",
      "          'actual': 1,\n",
      "          'act': 1,\n",
      "          'promiscuous': 1,\n",
      "          'nature': 1,\n",
      "          'worries': 1,\n",
      "          'future': 1,\n",
      "          'bride': 1,\n",
      "          'may': 1,\n",
      "          'need': 1,\n",
      "          'around': 1,\n",
      "          'idea': 1,\n",
      "          'flirting': 1,\n",
      "          'beautiful': 1,\n",
      "          'sick': 1,\n",
      "          'unable': 1,\n",
      "          'eat': 1,\n",
      "          'work': 1,\n",
      "          'nneither': 1,\n",
      "          'make': 1,\n",
      "          'believable': 1,\n",
      "          '64': 1,\n",
      "          '000': 1,\n",
      "          'question': 1,\n",
      "          'know': 1,\n",
      "          'youre': 1,\n",
      "          'wrong': 1,\n",
      "          'person': 1,\n",
      "          'avoid': 1,\n",
      "          'wreaking': 1,\n",
      "          'havoc': 1,\n",
      "          'major': 1,\n",
      "          'parts': 1,\n",
      "          'life': 1,\n",
      "          'asks': 1,\n",
      "          'one': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'attempts': 1,\n",
      "          'adding': 1,\n",
      "          'seriousness': 1,\n",
      "          'film': 1,\n",
      "          'nfinally': 1,\n",
      "          'attempt': 1,\n",
      "          'physical': 1,\n",
      "          'njays': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'natasha': 1,\n",
      "          'vanessa': 1,\n",
      "          'angel': 1,\n",
      "          'infatuated': 1,\n",
      "          'thinks': 1,\n",
      "          'going': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'nnatasha': 1,\n",
      "          'rips': 1,\n",
      "          'jays': 1,\n",
      "          'shirt': 1,\n",
      "          'open': 1,\n",
      "          'pushing': 1,\n",
      "          'onto': 1,\n",
      "          'sofa': 1,\n",
      "          'nas': 1,\n",
      "          'throws': 1,\n",
      "          'hair': 1,\n",
      "          'bare': 1,\n",
      "          'chest': 1,\n",
      "          'demands': 1,\n",
      "          'pull': 1,\n",
      "          'nthis': 1,\n",
      "          'nmost': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'nsome': 1,\n",
      "          'bit': 1,\n",
      "          'part': 1,\n",
      "          'done': 1,\n",
      "          'especially': 1,\n",
      "          'well': 1,\n",
      "          'scene': 1,\n",
      "          'managed': 1,\n",
      "          'even': 1,\n",
      "          'rest': 1,\n",
      "          'picture': 1,\n",
      "          'wasnt': 1,\n",
      "          'hand': 1,\n",
      "          'nothing': 1,\n",
      "          'recommend': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '45': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'profanity': 1,\n",
      "          'sexuality': 1,\n",
      "          'acceptable': 1,\n",
      "          'teenagers': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wild': 6,\n",
      "          'west': 6,\n",
      "          'nthe': 6,\n",
      "          'film': 6,\n",
      "          'one': 5,\n",
      "          'gordon': 4,\n",
      "          'isnt': 4,\n",
      "          'like': 3,\n",
      "          'well': 3,\n",
      "          'fault': 3,\n",
      "          'comedy': 3,\n",
      "          'pretty': 3,\n",
      "          'much': 3,\n",
      "          'confederate': 3,\n",
      "          'mcgrath': 3,\n",
      "          'nas': 3,\n",
      "          'good': 3,\n",
      "          'would': 2,\n",
      "          'script': 2,\n",
      "          'lot': 2,\n",
      "          'beautifully': 2,\n",
      "          'movie': 2,\n",
      "          'jokes': 2,\n",
      "          'still': 2,\n",
      "          'boring': 2,\n",
      "          'smith': 2,\n",
      "          'nwest': 2,\n",
      "          'kline': 2,\n",
      "          'leads': 2,\n",
      "          'funny': 2,\n",
      "          'disgruntled': 2,\n",
      "          'former': 2,\n",
      "          'loveless': 2,\n",
      "          'use': 2,\n",
      "          'point': 2,\n",
      "          'unfunny': 2,\n",
      "          'ni': 2,\n",
      "          'consider': 2,\n",
      "          'bye': 2,\n",
      "          'nhe': 2,\n",
      "          'look': 2,\n",
      "          'anything': 2,\n",
      "          'made': 2,\n",
      "          'continually': 1,\n",
      "          'amazed': 1,\n",
      "          'movies': 1,\n",
      "          'nthat': 1,\n",
      "          'producer': 1,\n",
      "          'waste': 1,\n",
      "          'abundance': 1,\n",
      "          'talent': 1,\n",
      "          'money': 1,\n",
      "          'abysmal': 1,\n",
      "          'mindboggeling': 1,\n",
      "          'seems': 1,\n",
      "          'happen': 1,\n",
      "          'nowadays': 1,\n",
      "          'n': 1,\n",
      "          'filmed': 1,\n",
      "          'acted': 1,\n",
      "          'directed': 1,\n",
      "          'piece': 1,\n",
      "          'garbage': 1,\n",
      "          'insipid': 1,\n",
      "          'screenplay': 1,\n",
      "          'completely': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'without': 1,\n",
      "          'laughs': 1,\n",
      "          'nso': 1,\n",
      "          'many': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'borderlines': 1,\n",
      "          'surreal': 1,\n",
      "          'high': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'keep': 1,\n",
      "          'total': 1,\n",
      "          'fiasco': 1,\n",
      "          'nwill': 1,\n",
      "          'stars': 1,\n",
      "          'jim': 1,\n",
      "          'old': 1,\n",
      "          'western': 1,\n",
      "          'rb': 1,\n",
      "          'variation': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'character': 1,\n",
      "          'teamed': 1,\n",
      "          'artemus': 1,\n",
      "          'kevin': 1,\n",
      "          'theyre': 1,\n",
      "          'polar': 1,\n",
      "          'oppisites': 1,\n",
      "          'prefers': 1,\n",
      "          'solve': 1,\n",
      "          'problems': 1,\n",
      "          'array': 1,\n",
      "          'bullets': 1,\n",
      "          'traditionally': 1,\n",
      "          'favors': 1,\n",
      "          'pacifistic': 1,\n",
      "          'approach': 1,\n",
      "          'ntalk': 1,\n",
      "          'deeply': 1,\n",
      "          'developed': 1,\n",
      "          'characters': 1,\n",
      "          'nat': 1,\n",
      "          'rate': 1,\n",
      "          'inevitable': 1,\n",
      "          'conflicts': 1,\n",
      "          'methodologies': 1,\n",
      "          'none': 1,\n",
      "          'year': 1,\n",
      "          '1869': 1,\n",
      "          'nseveral': 1,\n",
      "          'top': 1,\n",
      "          'scientists': 1,\n",
      "          'abducted': 1,\n",
      "          'suspected': 1,\n",
      "          'culprit': 1,\n",
      "          'general': 1,\n",
      "          'bloodbath': 1,\n",
      "          'ted': 1,\n",
      "          'levine': 1,\n",
      "          'npresident': 1,\n",
      "          'grant': 1,\n",
      "          'sends': 1,\n",
      "          'investigate': 1,\n",
      "          'ntheres': 1,\n",
      "          'evidence': 1,\n",
      "          'attending': 1,\n",
      "          'sort': 1,\n",
      "          'reunion': 1,\n",
      "          'louisiana': 1,\n",
      "          'show': 1,\n",
      "          'learn': 1,\n",
      "          'actually': 1,\n",
      "          'working': 1,\n",
      "          'dr': 1,\n",
      "          'arliss': 1,\n",
      "          'kenneth': 1,\n",
      "          'branagh': 1,\n",
      "          'another': 1,\n",
      "          'turns': 1,\n",
      "          'plans': 1,\n",
      "          'combined': 1,\n",
      "          'knowledge': 1,\n",
      "          'scientests': 1,\n",
      "          'create': 1,\n",
      "          'ultimate': 1,\n",
      "          'super': 1,\n",
      "          'weapon': 1,\n",
      "          'conquer': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'nid': 1,\n",
      "          'go': 1,\n",
      "          'plot': 1,\n",
      "          'nthis': 1,\n",
      "          'films': 1,\n",
      "          'narrative': 1,\n",
      "          'little': 1,\n",
      "          'jumbled': 1,\n",
      "          'mess': 1,\n",
      "          'laughed': 1,\n",
      "          'couple': 1,\n",
      "          'lightly': 1,\n",
      "          'nthere': 1,\n",
      "          'truly': 1,\n",
      "          'uprorously': 1,\n",
      "          'moment': 1,\n",
      "          'thats': 1,\n",
      "          'disasterous': 1,\n",
      "          'primarily': 1,\n",
      "          'said': 1,\n",
      "          'totally': 1,\n",
      "          'nwhen': 1,\n",
      "          'respective': 1,\n",
      "          'roles': 1,\n",
      "          'kevil': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'done': 1,\n",
      "          'couldve': 1,\n",
      "          'played': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'niro': 1,\n",
      "          'wouldve': 1,\n",
      "          'awful': 1,\n",
      "          'nno': 1,\n",
      "          'mean': 1,\n",
      "          'make': 1,\n",
      "          'line': 1,\n",
      "          'mr': 1,\n",
      "          'knife': 1,\n",
      "          'guy': 1,\n",
      "          'nsound': 1,\n",
      "          'nstill': 1,\n",
      "          'going': 1,\n",
      "          'visually': 1,\n",
      "          'set': 1,\n",
      "          'design': 1,\n",
      "          'fantastic': 1,\n",
      "          'maybe': 1,\n",
      "          'even': 1,\n",
      "          'oscar': 1,\n",
      "          'worthy': 1,\n",
      "          'cinematogrophy': 1,\n",
      "          'michael': 1,\n",
      "          'ballhaus': 1,\n",
      "          'also': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'martin': 1,\n",
      "          'scorseses': 1,\n",
      "          'brilliant': 1,\n",
      "          'goodfellas': 1,\n",
      "          'absolutely': 1,\n",
      "          'stunning': 1,\n",
      "          'lends': 1,\n",
      "          'needed': 1,\n",
      "          'exciting': 1,\n",
      "          'comic': 1,\n",
      "          'bookish': 1,\n",
      "          'wont': 1,\n",
      "          'barry': 1,\n",
      "          'sonnenfeld': 1,\n",
      "          'either': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'directing': 1,\n",
      "          'proceedings': 1,\n",
      "          'rest': 1,\n",
      "          'people': 1,\n",
      "          'involved': 1,\n",
      "          'really': 1,\n",
      "          'correct': 1,\n",
      "          'major': 1,\n",
      "          'flaw': 1,\n",
      "          'ndespite': 1,\n",
      "          'becomes': 1,\n",
      "          'quite': 1,\n",
      "          'halfway': 1,\n",
      "          'appeal': 1,\n",
      "          'visuals': 1,\n",
      "          'ends': 1,\n",
      "          'long': 1,\n",
      "          'nif': 1,\n",
      "          'didnt': 1,\n",
      "          'almost': 1,\n",
      "          'insufferable': 1,\n",
      "          'somewhat': 1,\n",
      "          'tolerable': 1,\n",
      "          'entertaining': 1,\n",
      "          'nit': 1,\n",
      "          'hurts': 1,\n",
      "          'give': 1,\n",
      "          'score': 1,\n",
      "          'low': 1,\n",
      "          'worse': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dave': 3,\n",
      "          'wife': 2,\n",
      "          'annie': 2,\n",
      "          'thats': 2,\n",
      "          'nthe': 2,\n",
      "          'heavens': 2,\n",
      "          'prisoners': 2,\n",
      "          'like': 2,\n",
      "          'talky': 1,\n",
      "          'terriblyplotted': 1,\n",
      "          'thriller': 1,\n",
      "          'stars': 1,\n",
      "          'alec': 1,\n",
      "          'baldwin': 1,\n",
      "          'robicheaux': 1,\n",
      "          'exnew': 1,\n",
      "          'orleans': 1,\n",
      "          'cop': 1,\n",
      "          'gets': 1,\n",
      "          'ensnared': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'lightplane': 1,\n",
      "          'crashes': 1,\n",
      "          'bayou': 1,\n",
      "          'beside': 1,\n",
      "          'fishing': 1,\n",
      "          'boat': 1,\n",
      "          'nhe': 1,\n",
      "          'kelly': 1,\n",
      "          'lynch': 1,\n",
      "          'rescue': 1,\n",
      "          'little': 1,\n",
      "          'salvadorian': 1,\n",
      "          'girl': 1,\n",
      "          'samantha': 1,\n",
      "          'lagpacan': 1,\n",
      "          'wreckage': 1,\n",
      "          'trouble': 1,\n",
      "          'begins': 1,\n",
      "          'major': 1,\n",
      "          'players': 1,\n",
      "          'include': 1,\n",
      "          'local': 1,\n",
      "          'drug': 1,\n",
      "          'lord': 1,\n",
      "          'eric': 1,\n",
      "          'roberts': 1,\n",
      "          'scheming': 1,\n",
      "          'teri': 1,\n",
      "          'hatcher': 1,\n",
      "          'soused': 1,\n",
      "          'stripper': 1,\n",
      "          'mary': 1,\n",
      "          'stuart': 1,\n",
      "          'masterson': 1,\n",
      "          'shady': 1,\n",
      "          'dea': 1,\n",
      "          'agent': 1,\n",
      "          'vondie': 1,\n",
      "          'curtis': 1,\n",
      "          'hall': 1,\n",
      "          'neveryone': 1,\n",
      "          'knows': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'makes': 1,\n",
      "          'collective': 1,\n",
      "          'curious': 1,\n",
      "          'never': 1,\n",
      "          'compelling': 1,\n",
      "          'nbased': 1,\n",
      "          'book': 1,\n",
      "          'james': 1,\n",
      "          'lee': 1,\n",
      "          'burke': 1,\n",
      "          'badly': 1,\n",
      "          'plotted': 1,\n",
      "          'entire': 1,\n",
      "          'scenes': 1,\n",
      "          'seem': 1,\n",
      "          'missing': 1,\n",
      "          'nearly': 1,\n",
      "          'idea': 1,\n",
      "          'keep': 1,\n",
      "          'child': 1,\n",
      "          'nnor': 1,\n",
      "          'eluded': 1,\n",
      "          'coast': 1,\n",
      "          'guard': 1,\n",
      "          'faa': 1,\n",
      "          'nlater': 1,\n",
      "          'reunited': 1,\n",
      "          'drugabuser': 1,\n",
      "          'appears': 1,\n",
      "          'seemingly': 1,\n",
      "          'clean': 1,\n",
      "          'sober': 1,\n",
      "          'without': 1,\n",
      "          'explanation': 1,\n",
      "          'nhuh': 1,\n",
      "          'whole': 1,\n",
      "          'movie': 1,\n",
      "          'perhaps': 1,\n",
      "          'result': 1,\n",
      "          'unkind': 1,\n",
      "          'cuts': 1,\n",
      "          'happened': 1,\n",
      "          'eighteen': 1,\n",
      "          'months': 1,\n",
      "          'film': 1,\n",
      "          'sat': 1,\n",
      "          'shelf': 1,\n",
      "          'nwhatever': 1,\n",
      "          'reason': 1,\n",
      "          'somebody': 1,\n",
      "          'tell': 1,\n",
      "          'director': 1,\n",
      "          'phil': 1,\n",
      "          'joanou': 1,\n",
      "          'final': 1,\n",
      "          'analysis': 1,\n",
      "          'recut': 1,\n",
      "          'mess': 1,\n",
      "          'nin': 1,\n",
      "          'present': 1,\n",
      "          'form': 1,\n",
      "          'runs': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'plus': 1,\n",
      "          'change': 1,\n",
      "          'feels': 1,\n",
      "          'four': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'kelley': 8,\n",
      "          'film': 7,\n",
      "          'town': 5,\n",
      "          'sam': 5,\n",
      "          'jasper': 4,\n",
      "          'people': 4,\n",
      "          'time': 4,\n",
      "          'earth': 4,\n",
      "          'nhe': 3,\n",
      "          'simply': 3,\n",
      "          'diner': 3,\n",
      "          'destroyed': 3,\n",
      "          'nkelley': 3,\n",
      "          'sobieski': 3,\n",
      "          '1': 3,\n",
      "          'around': 3,\n",
      "          'nbut': 3,\n",
      "          'especially': 3,\n",
      "          'even': 3,\n",
      "          'nhere': 3,\n",
      "          'comes': 3,\n",
      "          'dvd': 3,\n",
      "          'fox': 3,\n",
      "          'rich': 2,\n",
      "          'klein': 2,\n",
      "          'new': 2,\n",
      "          'graduation': 2,\n",
      "          'hes': 2,\n",
      "          'theyre': 2,\n",
      "          'station': 2,\n",
      "          'familys': 2,\n",
      "          'leelee': 2,\n",
      "          'soon': 2,\n",
      "          'takes': 2,\n",
      "          'feelings': 2,\n",
      "          'love': 2,\n",
      "          'speech': 2,\n",
      "          'caused': 2,\n",
      "          'destruction': 2,\n",
      "          'property': 2,\n",
      "          'nearly': 2,\n",
      "          'killed': 2,\n",
      "          'dozens': 2,\n",
      "          'poem': 2,\n",
      "          'favorite': 2,\n",
      "          'well': 2,\n",
      "          'waste': 2,\n",
      "          'see': 2,\n",
      "          'continues': 2,\n",
      "          'shows': 2,\n",
      "          'boston': 2,\n",
      "          'njasper': 2,\n",
      "          'wrong': 2,\n",
      "          'completely': 2,\n",
      "          'two': 2,\n",
      "          'characters': 2,\n",
      "          'infuriating': 2,\n",
      "          'way': 2,\n",
      "          'actions': 2,\n",
      "          'one': 2,\n",
      "          'films': 2,\n",
      "          'things': 2,\n",
      "          'nwho': 2,\n",
      "          'good': 2,\n",
      "          'entertainment': 2,\n",
      "          'nit': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          'releases': 2,\n",
      "          'enjoy': 2,\n",
      "          'spoiled': 1,\n",
      "          'kid': 1,\n",
      "          'morse': 1,\n",
      "          'chris': 1,\n",
      "          'receives': 1,\n",
      "          'mercedes': 1,\n",
      "          'present': 1,\n",
      "          'buddies': 1,\n",
      "          'take': 1,\n",
      "          'joyride': 1,\n",
      "          'small': 1,\n",
      "          'nearby': 1,\n",
      "          'proceeds': 1,\n",
      "          'torment': 1,\n",
      "          'locals': 1,\n",
      "          'ends': 1,\n",
      "          'provoking': 1,\n",
      "          'josh': 1,\n",
      "          'hartnett': 1,\n",
      "          'race': 1,\n",
      "          'result': 1,\n",
      "          'local': 1,\n",
      "          'gas': 1,\n",
      "          'crash': 1,\n",
      "          'sentenced': 1,\n",
      "          'rebuild': 1,\n",
      "          'live': 1,\n",
      "          'spare': 1,\n",
      "          'room': 1,\n",
      "          'barn': 1,\n",
      "          'njaspers': 1,\n",
      "          'girlfriend': 1,\n",
      "          'liking': 1,\n",
      "          'however': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'b': 1,\n",
      "          'sit': 1,\n",
      "          'sulk': 1,\n",
      "          'smart': 1,\n",
      "          'townspeople': 1,\n",
      "          'sees': 1,\n",
      "          'sweaty': 1,\n",
      "          'shirtless': 1,\n",
      "          'thats': 1,\n",
      "          'apparently': 1,\n",
      "          'needs': 1,\n",
      "          'lose': 1,\n",
      "          'whose': 1,\n",
      "          'fault': 1,\n",
      "          'seems': 1,\n",
      "          'perpetual': 1,\n",
      "          'case': 1,\n",
      "          'hat': 1,\n",
      "          'hair': 1,\n",
      "          'nso': 1,\n",
      "          'falls': 1,\n",
      "          'day': 1,\n",
      "          'follows': 1,\n",
      "          'woods': 1,\n",
      "          'hears': 1,\n",
      "          'giving': 1,\n",
      "          'unable': 1,\n",
      "          'deliver': 1,\n",
      "          'nin': 1,\n",
      "          'quotes': 1,\n",
      "          'robert': 1,\n",
      "          'frost': 1,\n",
      "          'happens': 1,\n",
      "          'sams': 1,\n",
      "          'nawwwww': 1,\n",
      "          'nsoon': 1,\n",
      "          'frolicking': 1,\n",
      "          'fields': 1,\n",
      "          'reason': 1,\n",
      "          'letting': 1,\n",
      "          'jaspers': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'together': 1,\n",
      "          'make': 1,\n",
      "          'ass': 1,\n",
      "          'dance': 1,\n",
      "          'drunk': 1,\n",
      "          'steaming': 1,\n",
      "          'went': 1,\n",
      "          'runs': 1,\n",
      "          'decides': 1,\n",
      "          'leave': 1,\n",
      "          'nsam': 1,\n",
      "          'catches': 1,\n",
      "          'bus': 1,\n",
      "          'asks': 1,\n",
      "          'come': 1,\n",
      "          'tearfully': 1,\n",
      "          'confesses': 1,\n",
      "          'much': 1,\n",
      "          'loves': 1,\n",
      "          'without': 1,\n",
      "          'breaking': 1,\n",
      "          'stride': 1,\n",
      "          'basically': 1,\n",
      "          'says': 1,\n",
      "          'ya': 1,\n",
      "          'nand': 1,\n",
      "          'goes': 1,\n",
      "          'many': 1,\n",
      "          'directions': 1,\n",
      "          'start': 1,\n",
      "          'fairly': 1,\n",
      "          'decent': 1,\n",
      "          'ending': 1,\n",
      "          'worthless': 1,\n",
      "          'nchris': 1,\n",
      "          'current': 1,\n",
      "          'young': 1,\n",
      "          'performers': 1,\n",
      "          'presence': 1,\n",
      "          'watched': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'nhowever': 1,\n",
      "          'long': 1,\n",
      "          'proceedings': 1,\n",
      "          'wanted': 1,\n",
      "          'reach': 1,\n",
      "          'strangle': 1,\n",
      "          'ni': 1,\n",
      "          'shouldnt': 1,\n",
      "          'towards': 1,\n",
      "          'like': 1,\n",
      "          'nwell': 1,\n",
      "          'trust': 1,\n",
      "          'youll': 1,\n",
      "          'feel': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'lead': 1,\n",
      "          'male': 1,\n",
      "          'usually': 1,\n",
      "          'hands': 1,\n",
      "          'unlikable': 1,\n",
      "          'jerkish': 1,\n",
      "          'calculated': 1,\n",
      "          'intends': 1,\n",
      "          'jackass': 1,\n",
      "          'every': 1,\n",
      "          'hand': 1,\n",
      "          'reacts': 1,\n",
      "          'kelleys': 1,\n",
      "          'provocations': 1,\n",
      "          'afterwards': 1,\n",
      "          'across': 1,\n",
      "          'truly': 1,\n",
      "          'sorry': 1,\n",
      "          'impulsive': 1,\n",
      "          'life': 1,\n",
      "          'nice': 1,\n",
      "          'guys': 1,\n",
      "          'finish': 1,\n",
      "          'last': 1,\n",
      "          'nfor': 1,\n",
      "          'entire': 1,\n",
      "          'watch': 1,\n",
      "          'fall': 1,\n",
      "          'guy': 1,\n",
      "          'likes': 1,\n",
      "          'sympathetic': 1,\n",
      "          'character': 1,\n",
      "          'gets': 1,\n",
      "          'crushed': 1,\n",
      "          'nthen': 1,\n",
      "          'cancer': 1,\n",
      "          'subplot': 1,\n",
      "          'play': 1,\n",
      "          'get': 1,\n",
      "          'imagine': 1,\n",
      "          'nwhat': 1,\n",
      "          'werent': 1,\n",
      "          'depressing': 1,\n",
      "          'enough': 1,\n",
      "          'mr': 1,\n",
      "          'screenwriter': 1,\n",
      "          'greenlit': 1,\n",
      "          'project': 1,\n",
      "          'thought': 1,\n",
      "          'would': 1,\n",
      "          'entertain': 1,\n",
      "          'anyone': 1,\n",
      "          'nperhaps': 1,\n",
      "          'structured': 1,\n",
      "          'perhaps': 1,\n",
      "          'felt': 1,\n",
      "          'remorse': 1,\n",
      "          'peoples': 1,\n",
      "          'lives': 1,\n",
      "          'snob': 1,\n",
      "          'ruins': 1,\n",
      "          'measure': 1,\n",
      "          'available': 1,\n",
      "          'home': 1,\n",
      "          'contains': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          'enhanced': 1,\n",
      "          '16x9': 1,\n",
      "          'televisions': 1,\n",
      "          'nextras': 1,\n",
      "          'include': 1,\n",
      "          'jessica': 1,\n",
      "          'simpsons': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'commercial': 1,\n",
      "          'soundtrack': 1,\n",
      "          'thing': 1,\n",
      "          'trailer': 1,\n",
      "          'five': 1,\n",
      "          'tv': 1,\n",
      "          'spots': 1,\n",
      "          'trailers': 1,\n",
      "          'anna': 1,\n",
      "          'king': 1,\n",
      "          'anywhere': 1,\n",
      "          'beach': 1,\n",
      "          'drive': 1,\n",
      "          'crazy': 1,\n",
      "          'ever': 1,\n",
      "          'romeo': 1,\n",
      "          'juliet': 1,\n",
      "          'irresistible': 1,\n",
      "          'promo': 1,\n",
      "          'touting': 1,\n",
      "          'upcoming': 1,\n",
      "          'really': 1,\n",
      "          'nthe': 1,\n",
      "          'picture': 1,\n",
      "          'sound': 1,\n",
      "          'quality': 1,\n",
      "          'disc': 1,\n",
      "          'fine': 1,\n",
      "          'nnothing': 1,\n",
      "          'challenge': 1,\n",
      "          'anyones': 1,\n",
      "          'audiovideo': 1,\n",
      "          'systems': 1,\n",
      "          'course': 1,\n",
      "          'nfans': 1,\n",
      "          'movie': 1,\n",
      "          'exist': 1,\n",
      "          'release': 1,\n",
      "          'entertaining': 1,\n",
      "          'compelling': 1,\n",
      "          'nno': 1,\n",
      "          'joy': 1,\n",
      "          'value': 1,\n",
      "          'derived': 1,\n",
      "          'events': 1,\n",
      "          'merely': 1,\n",
      "          'money': 1,\n",
      "          'talent': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'nbrooding': 5,\n",
      "          'hurricane': 4,\n",
      "          'courtroom': 4,\n",
      "          'lesra': 4,\n",
      "          'oscar': 3,\n",
      "          'nits': 3,\n",
      "          'three': 3,\n",
      "          'dont': 3,\n",
      "          'innocence': 3,\n",
      "          'formula': 3,\n",
      "          'movies': 2,\n",
      "          'theyre': 2,\n",
      "          'along': 2,\n",
      "          'nthus': 2,\n",
      "          'sometimes': 2,\n",
      "          'become': 2,\n",
      "          'even': 2,\n",
      "          'year': 2,\n",
      "          'received': 2,\n",
      "          'fun': 2,\n",
      "          'thats': 2,\n",
      "          'ok': 2,\n",
      "          'rubin': 2,\n",
      "          'carter': 2,\n",
      "          'african': 2,\n",
      "          'american': 2,\n",
      "          'convicted': 2,\n",
      "          'ever': 2,\n",
      "          'since': 2,\n",
      "          'white': 2,\n",
      "          'man': 2,\n",
      "          'life': 2,\n",
      "          'prison': 2,\n",
      "          'nto': 2,\n",
      "          'nlesra': 2,\n",
      "          'canadian': 2,\n",
      "          'people': 2,\n",
      "          'go': 2,\n",
      "          'book': 2,\n",
      "          'first': 2,\n",
      "          'rubins': 2,\n",
      "          'schreibers': 2,\n",
      "          'character': 2,\n",
      "          'pick': 2,\n",
      "          'investigation': 2,\n",
      "          'though': 2,\n",
      "          'two': 2,\n",
      "          'old': 2,\n",
      "          'course': 2,\n",
      "          'hurricanes': 2,\n",
      "          'either': 2,\n",
      "          'nall': 2,\n",
      "          'getting': 2,\n",
      "          'would': 2,\n",
      "          'except': 2,\n",
      "          'every': 2,\n",
      "          'melodrama': 2,\n",
      "          'nthe': 2,\n",
      "          'final': 2,\n",
      "          'nyou': 2,\n",
      "          'nbut': 2,\n",
      "          'brooding': 2,\n",
      "          'ni': 2,\n",
      "          'wanted': 2,\n",
      "          'boring': 2,\n",
      "          'jewison': 2,\n",
      "          'come': 2,\n",
      "          'make': 2,\n",
      "          'real': 2,\n",
      "          'prerelease': 1,\n",
      "          'buzz': 1,\n",
      "          'insistent': 1,\n",
      "          'high': 1,\n",
      "          'potential': 1,\n",
      "          'finally': 1,\n",
      "          'released': 1,\n",
      "          'everyone': 1,\n",
      "          'goes': 1,\n",
      "          'films': 1,\n",
      "          'unworthy': 1,\n",
      "          'award': 1,\n",
      "          'sans': 1,\n",
      "          'razzie': 1,\n",
      "          'hopefuls': 1,\n",
      "          'score': 1,\n",
      "          'nominations': 1,\n",
      "          'nlast': 1,\n",
      "          'thin': 1,\n",
      "          'red': 1,\n",
      "          'line': 1,\n",
      "          'nthis': 1,\n",
      "          'years': 1,\n",
      "          'winner': 1,\n",
      "          'pure': 1,\n",
      "          'unadulterated': 1,\n",
      "          'tripe': 1,\n",
      "          'sudden': 1,\n",
      "          'critical': 1,\n",
      "          'plaudits': 1,\n",
      "          'votes': 1,\n",
      "          'office': 1,\n",
      "          'pool': 1,\n",
      "          'nacclaimed': 1,\n",
      "          'director': 1,\n",
      "          'norman': 1,\n",
      "          'jewisons': 1,\n",
      "          'biopic': 1,\n",
      "          'retreads': 1,\n",
      "          'conventions': 1,\n",
      "          'without': 1,\n",
      "          'nand': 1,\n",
      "          'supposed': 1,\n",
      "          'see': 1,\n",
      "          'true': 1,\n",
      "          'story': 1,\n",
      "          'denzel': 1,\n",
      "          'washington': 1,\n",
      "          'legendary': 1,\n",
      "          'prizefighted': 1,\n",
      "          'unjustly': 1,\n",
      "          'triple': 1,\n",
      "          'homicide': 1,\n",
      "          'help': 1,\n",
      "          'ghastly': 1,\n",
      "          'racist': 1,\n",
      "          'ndetective': 1,\n",
      "          'dan': 1,\n",
      "          'hedaya': 1,\n",
      "          'whos': 1,\n",
      "          'bigshot': 1,\n",
      "          'arrested': 1,\n",
      "          'stabbing': 1,\n",
      "          'knife': 1,\n",
      "          'selfdefense': 1,\n",
      "          'cares': 1,\n",
      "          'right': 1,\n",
      "          'nwhen': 1,\n",
      "          'ten': 1,\n",
      "          'nhe': 1,\n",
      "          'serve': 1,\n",
      "          'sentences': 1,\n",
      "          'possibility': 1,\n",
      "          'parole': 1,\n",
      "          'nmost': 1,\n",
      "          'film': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          '15th': 1,\n",
      "          'rescue': 1,\n",
      "          'martin': 1,\n",
      "          'vicellous': 1,\n",
      "          'reon': 1,\n",
      "          'shannon': 1,\n",
      "          'team': 1,\n",
      "          'wannabe': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'detectives': 1,\n",
      "          'teenager': 1,\n",
      "          'taken': 1,\n",
      "          'welloff': 1,\n",
      "          'hanna': 1,\n",
      "          'unger': 1,\n",
      "          'schreiber': 1,\n",
      "          'get': 1,\n",
      "          'education': 1,\n",
      "          'buddies': 1,\n",
      "          'sale': 1,\n",
      "          'picks': 1,\n",
      "          'sixteenth': 1,\n",
      "          'round': 1,\n",
      "          'autobiography': 1,\n",
      "          'nimmediately': 1,\n",
      "          'thereafter': 1,\n",
      "          'tells': 1,\n",
      "          'books': 1,\n",
      "          'read': 1,\n",
      "          'us': 1,\n",
      "          'nhmmm': 1,\n",
      "          'nafter': 1,\n",
      "          'visits': 1,\n",
      "          'convinced': 1,\n",
      "          'launch': 1,\n",
      "          'fullscale': 1,\n",
      "          'juries': 1,\n",
      "          'nthey': 1,\n",
      "          'meticulously': 1,\n",
      "          'files': 1,\n",
      "          'revisit': 1,\n",
      "          'witnesses': 1,\n",
      "          'wonder': 1,\n",
      "          'might': 1,\n",
      "          'cranky': 1,\n",
      "          'women': 1,\n",
      "          'slam': 1,\n",
      "          'door': 1,\n",
      "          'faces': 1,\n",
      "          'relentlessy': 1,\n",
      "          'tedious': 1,\n",
      "          'sleuthing': 1,\n",
      "          'uncover': 1,\n",
      "          'obvious': 1,\n",
      "          'evidence': 1,\n",
      "          'confirming': 1,\n",
      "          'ignored': 1,\n",
      "          'never': 1,\n",
      "          'seeked': 1,\n",
      "          'proceedings': 1,\n",
      "          'nof': 1,\n",
      "          'already': 1,\n",
      "          'told': 1,\n",
      "          'hes': 1,\n",
      "          'innocent': 1,\n",
      "          'na': 1,\n",
      "          'like': 1,\n",
      "          'especially': 1,\n",
      "          'frustrating': 1,\n",
      "          'shown': 1,\n",
      "          'everything': 1,\n",
      "          'significant': 1,\n",
      "          'happened': 1,\n",
      "          'period': 1,\n",
      "          'obviously': 1,\n",
      "          'hollywood': 1,\n",
      "          'watered': 1,\n",
      "          'version': 1,\n",
      "          'nthat': 1,\n",
      "          'parts': 1,\n",
      "          'milked': 1,\n",
      "          'single': 1,\n",
      "          'drop': 1,\n",
      "          'filmmakers': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'squeeze': 1,\n",
      "          'almost': 1,\n",
      "          'cruel': 1,\n",
      "          'isnt': 1,\n",
      "          'entertaining': 1,\n",
      "          'kind': 1,\n",
      "          'hokey': 1,\n",
      "          'rammeddownyourthroat': 1,\n",
      "          'variety': 1,\n",
      "          'emotion': 1,\n",
      "          'exaggerated': 1,\n",
      "          'point': 1,\n",
      "          'absurdity': 1,\n",
      "          'nwitness': 1,\n",
      "          'villain': 1,\n",
      "          'ferociously': 1,\n",
      "          'grinding': 1,\n",
      "          'teeth': 1,\n",
      "          'trial': 1,\n",
      "          'constant': 1,\n",
      "          'pseudosaintliness': 1,\n",
      "          'four': 1,\n",
      "          'protagonists': 1,\n",
      "          'basic': 1,\n",
      "          'nofrills': 1,\n",
      "          'stripped': 1,\n",
      "          'bare': 1,\n",
      "          'necessities': 1,\n",
      "          'wrongly': 1,\n",
      "          'accused': 1,\n",
      "          'black': 1,\n",
      "          'melodramatic': 1,\n",
      "          'scene': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'nyoud': 1,\n",
      "          'expect': 1,\n",
      "          'sort': 1,\n",
      "          'involving': 1,\n",
      "          'necessary': 1,\n",
      "          'implicitly': 1,\n",
      "          'informed': 1,\n",
      "          'whole': 1,\n",
      "          'middle': 1,\n",
      "          'portion': 1,\n",
      "          'reduced': 1,\n",
      "          'protagonist': 1,\n",
      "          'inmates': 1,\n",
      "          'lesras': 1,\n",
      "          'friends': 1,\n",
      "          'letters': 1,\n",
      "          'think': 1,\n",
      "          'ill': 1,\n",
      "          'look': 1,\n",
      "          'way': 1,\n",
      "          'nit': 1,\n",
      "          'wasnt': 1,\n",
      "          'long': 1,\n",
      "          'got': 1,\n",
      "          'tired': 1,\n",
      "          'hearing': 1,\n",
      "          'exceedingly': 1,\n",
      "          'deep': 1,\n",
      "          'meditations': 1,\n",
      "          'condition': 1,\n",
      "          'something': 1,\n",
      "          'happen': 1,\n",
      "          'nas': 1,\n",
      "          'washingtons': 1,\n",
      "          'performance': 1,\n",
      "          'title': 1,\n",
      "          'role': 1,\n",
      "          'figured': 1,\n",
      "          'id': 1,\n",
      "          'address': 1,\n",
      "          'sooner': 1,\n",
      "          'later': 1,\n",
      "          'considering': 1,\n",
      "          'amount': 1,\n",
      "          'attention': 1,\n",
      "          'top': 1,\n",
      "          'notch': 1,\n",
      "          'still': 1,\n",
      "          'nhow': 1,\n",
      "          'possible': 1,\n",
      "          'nwell': 1,\n",
      "          'perfectly': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'asked': 1,\n",
      "          'load': 1,\n",
      "          'crap': 1,\n",
      "          'nwhat': 1,\n",
      "          'waste': 1,\n",
      "          'great': 1,\n",
      "          'performer': 1,\n",
      "          'nspeaking': 1,\n",
      "          'wastes': 1,\n",
      "          'hell': 1,\n",
      "          'john': 1,\n",
      "          'hannah': 1,\n",
      "          'agree': 1,\n",
      "          'nhes': 1,\n",
      "          'extremely': 1,\n",
      "          'talented': 1,\n",
      "          'actor': 1,\n",
      "          'love': 1,\n",
      "          'dearly': 1,\n",
      "          'call': 1,\n",
      "          'ungers': 1,\n",
      "          'stick': 1,\n",
      "          'figure': 1,\n",
      "          'gross': 1,\n",
      "          'understatement': 1,\n",
      "          'veritable': 1,\n",
      "          'mother': 1,\n",
      "          'theresas': 1,\n",
      "          'benevolent': 1,\n",
      "          'dogooders': 1,\n",
      "          'nif': 1,\n",
      "          'play': 1,\n",
      "          'major': 1,\n",
      "          'part': 1,\n",
      "          'feelings': 1,\n",
      "          'emotions': 1,\n",
      "          'nlook': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'undermine': 1,\n",
      "          'ncourtroom': 1,\n",
      "          'dramas': 1,\n",
      "          'ridiculous': 1,\n",
      "          'nnot': 1,\n",
      "          'trite': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jim': 10,\n",
      "          'basketball': 7,\n",
      "          'film': 5,\n",
      "          'kalvert': 5,\n",
      "          'diaries': 5,\n",
      "          'one': 4,\n",
      "          'much': 4,\n",
      "          'music': 3,\n",
      "          'story': 3,\n",
      "          'carroll': 3,\n",
      "          'character': 3,\n",
      "          'unsympathetic': 3,\n",
      "          'like': 3,\n",
      "          'please': 2,\n",
      "          'nyour': 2,\n",
      "          'editing': 2,\n",
      "          'makes': 2,\n",
      "          'featuring': 2,\n",
      "          'care': 2,\n",
      "          'scott': 2,\n",
      "          'loud': 2,\n",
      "          'performance': 2,\n",
      "          'leonardo': 2,\n",
      "          'dicaprio': 2,\n",
      "          'ndicaprio': 2,\n",
      "          'nas': 2,\n",
      "          'school': 2,\n",
      "          'star': 2,\n",
      "          'mickey': 2,\n",
      "          'pedro': 2,\n",
      "          'kicked': 2,\n",
      "          'mother': 2,\n",
      "          'becomes': 2,\n",
      "          'fix': 2,\n",
      "          'lower': 2,\n",
      "          'around': 2,\n",
      "          'intended': 2,\n",
      "          'long': 2,\n",
      "          'crowd': 2,\n",
      "          'every': 2,\n",
      "          'dramatic': 2,\n",
      "          'camera': 2,\n",
      "          'trying': 2,\n",
      "          'effective': 2,\n",
      "          'dicaprios': 2,\n",
      "          'fine': 2,\n",
      "          'feature': 1,\n",
      "          'directors': 1,\n",
      "          'cut': 1,\n",
      "          'teeth': 1,\n",
      "          'videos': 1,\n",
      "          'raise': 1,\n",
      "          'hands': 1,\n",
      "          'nthank': 1,\n",
      "          'identifying': 1,\n",
      "          'would': 1,\n",
      "          'go': 1,\n",
      "          'away': 1,\n",
      "          'influence': 1,\n",
      "          'rank': 1,\n",
      "          'annoying': 1,\n",
      "          'trends': 1,\n",
      "          'filmmaking': 1,\n",
      "          'last': 1,\n",
      "          'decade': 1,\n",
      "          'shows': 1,\n",
      "          'sign': 1,\n",
      "          'abating': 1,\n",
      "          'time': 1,\n",
      "          'soon': 1,\n",
      "          'nit': 1,\n",
      "          'isnt': 1,\n",
      "          'strobe': 1,\n",
      "          'light': 1,\n",
      "          'quality': 1,\n",
      "          'twentycutsperminute': 1,\n",
      "          'numbing': 1,\n",
      "          'overuse': 1,\n",
      "          'popular': 1,\n",
      "          'artists': 1,\n",
      "          'soundtracks': 1,\n",
      "          'suspicious': 1,\n",
      "          'advertised': 1,\n",
      "          'kind': 1,\n",
      "          'cynicism': 1,\n",
      "          'perfected': 1,\n",
      "          'banking': 1,\n",
      "          'idea': 1,\n",
      "          'lack': 1,\n",
      "          'include': 1,\n",
      "          'enough': 1,\n",
      "          'bells': 1,\n",
      "          'whistles': 1,\n",
      "          'nwelcome': 1,\n",
      "          'club': 1,\n",
      "          'adaptation': 1,\n",
      "          'onedimensional': 1,\n",
      "          'serving': 1,\n",
      "          'vehicle': 1,\n",
      "          'better': 1,\n",
      "          'pieces': 1,\n",
      "          'whole': 1,\n",
      "          'stars': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'poetsongwriter': 1,\n",
      "          'performer': 1,\n",
      "          'whose': 1,\n",
      "          'autobiographical': 1,\n",
      "          'writings': 1,\n",
      "          'based': 1,\n",
      "          'opens': 1,\n",
      "          'budding': 1,\n",
      "          'high': 1,\n",
      "          'given': 1,\n",
      "          'petty': 1,\n",
      "          'thievery': 1,\n",
      "          'getting': 1,\n",
      "          'drunk': 1,\n",
      "          'buddies': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'james': 1,\n",
      "          'madio': 1,\n",
      "          'neutron': 1,\n",
      "          'patrick': 1,\n",
      "          'mcgaw': 1,\n",
      "          'none': 1,\n",
      "          'night': 1,\n",
      "          'graduates': 1,\n",
      "          'inhalants': 1,\n",
      "          'cocaine': 1,\n",
      "          'shortly': 1,\n",
      "          'thereafter': 1,\n",
      "          'heroin': 1,\n",
      "          'njims': 1,\n",
      "          'addiction': 1,\n",
      "          'drug': 1,\n",
      "          'starts': 1,\n",
      "          'downhill': 1,\n",
      "          'spiral': 1,\n",
      "          'team': 1,\n",
      "          'coach': 1,\n",
      "          'bruno': 1,\n",
      "          'kirby': 1,\n",
      "          'home': 1,\n",
      "          'lorraine': 1,\n",
      "          'bracco': 1,\n",
      "          'drops': 1,\n",
      "          'nalong': 1,\n",
      "          'victim': 1,\n",
      "          'street': 1,\n",
      "          'living': 1,\n",
      "          'sinking': 1,\n",
      "          'nthe': 1,\n",
      "          'bouncing': 1,\n",
      "          'project': 1,\n",
      "          'years': 1,\n",
      "          'sticking': 1,\n",
      "          'point': 1,\n",
      "          'always': 1,\n",
      "          'loner': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'bryan': 1,\n",
      "          'goluboff': 1,\n",
      "          'created': 1,\n",
      "          'three': 1,\n",
      "          'characters': 1,\n",
      "          'act': 1,\n",
      "          'carrolls': 1,\n",
      "          'posse': 1,\n",
      "          'resulting': 1,\n",
      "          'equally': 1,\n",
      "          'friends': 1,\n",
      "          'may': 1,\n",
      "          'primarily': 1,\n",
      "          'cautionary': 1,\n",
      "          'tale': 1,\n",
      "          '100': 1,\n",
      "          'minute': 1,\n",
      "          'say': 1,\n",
      "          'public': 1,\n",
      "          'service': 1,\n",
      "          'announcement': 1,\n",
      "          'drama': 1,\n",
      "          'monumentally': 1,\n",
      "          'ineffective': 1,\n",
      "          'impossible': 1,\n",
      "          'anyone': 1,\n",
      "          'movie': 1,\n",
      "          'njim': 1,\n",
      "          'sort': 1,\n",
      "          'jerk': 1,\n",
      "          'even': 1,\n",
      "          'junkie': 1,\n",
      "          'suppose': 1,\n",
      "          'pseudosensitive': 1,\n",
      "          'poetry': 1,\n",
      "          'devotion': 1,\n",
      "          'terminally': 1,\n",
      "          'ill': 1,\n",
      "          'friend': 1,\n",
      "          'balance': 1,\n",
      "          'nperhaps': 1,\n",
      "          'expected': 1,\n",
      "          'see': 1,\n",
      "          'good': 1,\n",
      "          'kids': 1,\n",
      "          'falls': 1,\n",
      "          'wrong': 1,\n",
      "          'parent': 1,\n",
      "          'believes': 1,\n",
      "          'troubled': 1,\n",
      "          'child': 1,\n",
      "          'saw': 1,\n",
      "          'simply': 1,\n",
      "          'part': 1,\n",
      "          'bad': 1,\n",
      "          'nwithout': 1,\n",
      "          'changes': 1,\n",
      "          'appreciable': 1,\n",
      "          'way': 1,\n",
      "          'rapidly': 1,\n",
      "          'degenerates': 1,\n",
      "          'collection': 1,\n",
      "          'crimes': 1,\n",
      "          'committed': 1,\n",
      "          'strungout': 1,\n",
      "          'cohorts': 1,\n",
      "          'choreographed': 1,\n",
      "          'oppressively': 1,\n",
      "          'soundtrack': 1,\n",
      "          'ndirector': 1,\n",
      "          'doesnt': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'intrinsic': 1,\n",
      "          'impact': 1,\n",
      "          'work': 1,\n",
      "          'substitutes': 1,\n",
      "          'silly': 1,\n",
      "          'slowmotion': 1,\n",
      "          'photography': 1,\n",
      "          'selfconsciously': 1,\n",
      "          'funky': 1,\n",
      "          'angles': 1,\n",
      "          'choppy': 1,\n",
      "          'non': 1,\n",
      "          'occasion': 1,\n",
      "          'steady': 1,\n",
      "          'pan': 1,\n",
      "          'room': 1,\n",
      "          'detox': 1,\n",
      "          'appear': 1,\n",
      "          'walls': 1,\n",
      "          'closing': 1,\n",
      "          'gimmicks': 1,\n",
      "          'nmostly': 1,\n",
      "          'draw': 1,\n",
      "          'attention': 1,\n",
      "          'hollow': 1,\n",
      "          'nthey': 1,\n",
      "          'also': 1,\n",
      "          'dont': 1,\n",
      "          'allow': 1,\n",
      "          'strong': 1,\n",
      "          'could': 1,\n",
      "          'nfor': 1,\n",
      "          'impressive': 1,\n",
      "          'moment': 1,\n",
      "          'desperate': 1,\n",
      "          'attempt': 1,\n",
      "          'get': 1,\n",
      "          'give': 1,\n",
      "          'money': 1,\n",
      "          'scene': 1,\n",
      "          'pulls': 1,\n",
      "          'focus': 1,\n",
      "          'theatrics': 1,\n",
      "          'playing': 1,\n",
      "          'actors': 1,\n",
      "          'particularly': 1,\n",
      "          'sequence': 1,\n",
      "          'ernie': 1,\n",
      "          'hudson': 1,\n",
      "          'exjunkie': 1,\n",
      "          'tries': 1,\n",
      "          'help': 1,\n",
      "          'straighten': 1,\n",
      "          'wont': 1,\n",
      "          'let': 1,\n",
      "          'interaction': 1,\n",
      "          'define': 1,\n",
      "          'nhe': 1,\n",
      "          'wants': 1,\n",
      "          'turn': 1,\n",
      "          'rock': 1,\n",
      "          'shooting': 1,\n",
      "          'fashion': 1,\n",
      "          'denying': 1,\n",
      "          'opportunity': 1,\n",
      "          'acting': 1,\n",
      "          'nat': 1,\n",
      "          'isolate': 1,\n",
      "          'moments': 1,\n",
      "          'showcase': 1,\n",
      "          'talents': 1,\n",
      "          'nfar': 1,\n",
      "          'frequently': 1,\n",
      "          'looks': 1,\n",
      "          'imagine': 1,\n",
      "          'form': 1,\n",
      "          'velvet': 1,\n",
      "          'underground': 1,\n",
      "          'video': 1,\n",
      "          'might': 1,\n",
      "          'looked': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'man': 9,\n",
      "          'last': 5,\n",
      "          'standing': 5,\n",
      "          'name': 4,\n",
      "          'one': 4,\n",
      "          'smith': 4,\n",
      "          'narration': 4,\n",
      "          'prohibitionera': 3,\n",
      "          'remake': 3,\n",
      "          'two': 3,\n",
      "          'nthe': 3,\n",
      "          'another': 3,\n",
      "          'way': 3,\n",
      "          'film': 3,\n",
      "          'story': 3,\n",
      "          'hammett': 3,\n",
      "          'willis': 3,\n",
      "          'work': 3,\n",
      "          'wonder': 3,\n",
      "          'classic': 2,\n",
      "          'yojimbo': 2,\n",
      "          'fistful': 2,\n",
      "          'dollars': 2,\n",
      "          'c': 2,\n",
      "          'original': 2,\n",
      "          'counting': 2,\n",
      "          'fact': 2,\n",
      "          'much': 2,\n",
      "          'recent': 2,\n",
      "          'material': 2,\n",
      "          'novel': 2,\n",
      "          'nit': 2,\n",
      "          'also': 2,\n",
      "          'bruce': 2,\n",
      "          'border': 2,\n",
      "          'town': 2,\n",
      "          'jericho': 2,\n",
      "          'john': 2,\n",
      "          'doyles': 2,\n",
      "          'smiths': 2,\n",
      "          'trying': 2,\n",
      "          'stay': 2,\n",
      "          'bosses': 2,\n",
      "          'becomes': 2,\n",
      "          'walken': 2,\n",
      "          'brutal': 2,\n",
      "          'big': 2,\n",
      "          'hill': 2,\n",
      "          'doesnt': 2,\n",
      "          'characters': 2,\n",
      "          'even': 2,\n",
      "          'nwith': 2,\n",
      "          'us': 2,\n",
      "          'like': 2,\n",
      "          'confidence': 2,\n",
      "          'everyone': 2,\n",
      "          'else': 2,\n",
      "          'showdown': 2,\n",
      "          'depending': 1,\n",
      "          'degree': 1,\n",
      "          'cinematic': 1,\n",
      "          'acumen': 1,\n",
      "          'either': 1,\n",
      "          'akira': 1,\n",
      "          'kurosawas': 1,\n",
      "          '1961': 1,\n",
      "          'b': 1,\n",
      "          'sergio': 1,\n",
      "          'leones': 1,\n",
      "          '1964': 1,\n",
      "          'action': 1,\n",
      "          'drama': 1,\n",
      "          'completely': 1,\n",
      "          'storyline': 1,\n",
      "          'nnew': 1,\n",
      "          'line': 1,\n",
      "          'certainly': 1,\n",
      "          'far': 1,\n",
      "          'potential': 1,\n",
      "          'viewers': 1,\n",
      "          'category': 1,\n",
      "          'combined': 1,\n",
      "          'remakes': 1,\n",
      "          'diabolique': 1,\n",
      "          'vanishing': 1,\n",
      "          'counted': 1,\n",
      "          'avoiding': 1,\n",
      "          'comparisons': 1,\n",
      "          'yet': 1,\n",
      "          'looking': 1,\n",
      "          'first': 1,\n",
      "          'version': 1,\n",
      "          'nods': 1,\n",
      "          '_real_': 1,\n",
      "          'source': 1,\n",
      "          'dashiell': 1,\n",
      "          '_red': 1,\n",
      "          'harvest_': 1,\n",
      "          'shows': 1,\n",
      "          'kurosawa': 1,\n",
      "          'leone': 1,\n",
      "          'knew': 1,\n",
      "          'better': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'played': 1,\n",
      "          'fellow': 1,\n",
      "          'shady': 1,\n",
      "          'history': 1,\n",
      "          'undefined': 1,\n",
      "          'nature': 1,\n",
      "          'rolls': 1,\n",
      "          'texas': 1,\n",
      "          'day': 1,\n",
      "          'mexico': 1,\n",
      "          'nby': 1,\n",
      "          'appearances': 1,\n",
      "          'well': 1,\n",
      "          'becoming': 1,\n",
      "          'ghost': 1,\n",
      "          'remaining': 1,\n",
      "          'inhabitants': 1,\n",
      "          'generally': 1,\n",
      "          'belonging': 1,\n",
      "          'bootlegging': 1,\n",
      "          'operations': 1,\n",
      "          'fighting': 1,\n",
      "          'control': 1,\n",
      "          'liquor': 1,\n",
      "          'coming': 1,\n",
      "          'none': 1,\n",
      "          'headed': 1,\n",
      "          'irishman': 1,\n",
      "          'named': 1,\n",
      "          'doyle': 1,\n",
      "          'david': 1,\n",
      "          'patrick': 1,\n",
      "          'kelly': 1,\n",
      "          'run': 1,\n",
      "          'chicagoconnected': 1,\n",
      "          'italian': 1,\n",
      "          'mobster': 1,\n",
      "          'strozzi': 1,\n",
      "          'ned': 1,\n",
      "          'eisenberg': 1,\n",
      "          'ncalling': 1,\n",
      "          'decides': 1,\n",
      "          'money': 1,\n",
      "          'made': 1,\n",
      "          'conflict': 1,\n",
      "          'hires': 1,\n",
      "          'enforcer': 1,\n",
      "          'side': 1,\n",
      "          'nbut': 1,\n",
      "          'allegiance': 1,\n",
      "          'uncertain': 1,\n",
      "          'begins': 1,\n",
      "          'play': 1,\n",
      "          'sides': 1,\n",
      "          'step': 1,\n",
      "          'ahead': 1,\n",
      "          'nviewers': 1,\n",
      "          'familiar': 1,\n",
      "          'previous': 1,\n",
      "          'incarnations': 1,\n",
      "          'find': 1,\n",
      "          'virtually': 1,\n",
      "          'nothing': 1,\n",
      "          'radically': 1,\n",
      "          'changed': 1,\n",
      "          'plotting': 1,\n",
      "          'standpoint': 1,\n",
      "          'alone': 1,\n",
      "          'make': 1,\n",
      "          'somewhat': 1,\n",
      "          'respectable': 1,\n",
      "          'hollywood': 1,\n",
      "          'remakescumbastardizations': 1,\n",
      "          'nthere': 1,\n",
      "          'happily': 1,\n",
      "          'ineffectual': 1,\n",
      "          'lawman': 1,\n",
      "          'dern': 1,\n",
      "          'unhappily': 1,\n",
      "          'detained': 1,\n",
      "          'object': 1,\n",
      "          'affections': 1,\n",
      "          'karina': 1,\n",
      "          'lombard': 1,\n",
      "          'barkeep': 1,\n",
      "          'antiheros': 1,\n",
      "          'friend': 1,\n",
      "          'william': 1,\n",
      "          'sanderson': 1,\n",
      "          'suspicious': 1,\n",
      "          'lieutenants': 1,\n",
      "          'christopher': 1,\n",
      "          'michael': 1,\n",
      "          'imperioli': 1,\n",
      "          'question': 1,\n",
      "          'trust': 1,\n",
      "          'beating': 1,\n",
      "          'fire': 1,\n",
      "          'ndirector': 1,\n",
      "          'walter': 1,\n",
      "          'gives': 1,\n",
      "          'proceedings': 1,\n",
      "          'usual': 1,\n",
      "          'injection': 1,\n",
      "          'steroids': 1,\n",
      "          'including': 1,\n",
      "          'pair': 1,\n",
      "          'guns': 1,\n",
      "          'ability': 1,\n",
      "          'propel': 1,\n",
      "          'assailant': 1,\n",
      "          'backward': 1,\n",
      "          'sufficient': 1,\n",
      "          'thrust': 1,\n",
      "          'achieve': 1,\n",
      "          'escape': 1,\n",
      "          'velocity': 1,\n",
      "          'least': 1,\n",
      "          'try': 1,\n",
      "          'turn': 1,\n",
      "          'slasher': 1,\n",
      "          'buddy': 1,\n",
      "          'picture': 1,\n",
      "          'nwhat': 1,\n",
      "          '_does_': 1,\n",
      "          'nearly': 1,\n",
      "          'mistake': 1,\n",
      "          'provide': 1,\n",
      "          'running': 1,\n",
      "          'voiceover': 1,\n",
      "          'rings': 1,\n",
      "          'standard': 1,\n",
      "          'hardboiled': 1,\n",
      "          'style': 1,\n",
      "          'pulp': 1,\n",
      "          'detective': 1,\n",
      "          'fiction': 1,\n",
      "          'nyes': 1,\n",
      "          'full': 1,\n",
      "          'cliches': 1,\n",
      "          'particularly': 1,\n",
      "          'troubling': 1,\n",
      "          'problem': 1,\n",
      "          'succeeded': 1,\n",
      "          'largely': 1,\n",
      "          'inscrutability': 1,\n",
      "          'lead': 1,\n",
      "          'nthey': 1,\n",
      "          'mystery': 1,\n",
      "          'audience': 1,\n",
      "          'motives': 1,\n",
      "          'never': 1,\n",
      "          'entirely': 1,\n",
      "          'clear': 1,\n",
      "          'acted': 1,\n",
      "          'quality': 1,\n",
      "          'contributed': 1,\n",
      "          'almost': 1,\n",
      "          'mythical': 1,\n",
      "          'status': 1,\n",
      "          'voice': 1,\n",
      "          'chattering': 1,\n",
      "          'background': 1,\n",
      "          'allowing': 1,\n",
      "          'every': 1,\n",
      "          'thought': 1,\n",
      "          'mundane': 1,\n",
      "          'tough': 1,\n",
      "          'guy': 1,\n",
      "          'alive': 1,\n",
      "          'feels': 1,\n",
      "          'right': 1,\n",
      "          'plead': 1,\n",
      "          'faithfulness': 1,\n",
      "          'text': 1,\n",
      "          'choice': 1,\n",
      "          'simply': 1,\n",
      "          'allows': 1,\n",
      "          'take': 1,\n",
      "          'takes': 1,\n",
      "          '_no': 1,\n",
      "          'one_': 1,\n",
      "          'neven': 1,\n",
      "          'walk': 1,\n",
      "          'blank': 1,\n",
      "          'slate': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'heavily': 1,\n",
      "          'armed': 1,\n",
      "          'minor': 1,\n",
      "          'distraction': 1,\n",
      "          'nwillis': 1,\n",
      "          'tones': 1,\n",
      "          'macho': 1,\n",
      "          'swagger': 1,\n",
      "          'taciturn': 1,\n",
      "          'still': 1,\n",
      "          'level': 1,\n",
      "          'always': 1,\n",
      "          'seems': 1,\n",
      "          'tougher': 1,\n",
      "          'rather': 1,\n",
      "          'smarter': 1,\n",
      "          'nchristopher': 1,\n",
      "          'plays': 1,\n",
      "          'henchman': 1,\n",
      "          'slight': 1,\n",
      "          'variation': 1,\n",
      "          'gallery': 1,\n",
      "          'softspoken': 1,\n",
      "          'psychos': 1,\n",
      "          'isnt': 1,\n",
      "          'single': 1,\n",
      "          'character': 1,\n",
      "          'makes': 1,\n",
      "          'slightest': 1,\n",
      "          'impression': 1,\n",
      "          'compelling': 1,\n",
      "          'antagonist': 1,\n",
      "          'buildup': 1,\n",
      "          'towards': 1,\n",
      "          'expected': 1,\n",
      "          'come': 1,\n",
      "          'quickly': 1,\n",
      "          'fuss': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'lloyd': 1,\n",
      "          'ahern': 1,\n",
      "          'noteworthy': 1,\n",
      "          'hills': 1,\n",
      "          '1995': 1,\n",
      "          'flop': 1,\n",
      "          'wild': 1,\n",
      "          'bill': 1,\n",
      "          'creates': 1,\n",
      "          'nifty': 1,\n",
      "          'sunburned': 1,\n",
      "          'vistas': 1,\n",
      "          'keep': 1,\n",
      "          'eye': 1,\n",
      "          'distracted': 1,\n",
      "          'spurts': 1,\n",
      "          'gunfire': 1,\n",
      "          'next': 1,\n",
      "          'bit': 1,\n",
      "          'counterproductive': 1,\n",
      "          'nsometimes': 1,\n",
      "          'someone': 1,\n",
      "          'sees': 1,\n",
      "          'lackluster': 1,\n",
      "          'revered': 1,\n",
      "          'theyll': 1,\n",
      "          'talk': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'know': 1,\n",
      "          'originals': 1,\n",
      "          'talking': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 8,\n",
      "          'crab': 7,\n",
      "          'nthe': 6,\n",
      "          'nand': 5,\n",
      "          'sometimes': 5,\n",
      "          'places': 5,\n",
      "          'first': 4,\n",
      "          'amanda': 4,\n",
      "          'movie': 4,\n",
      "          'okay': 3,\n",
      "          'nerves': 3,\n",
      "          'end': 3,\n",
      "          'tom': 3,\n",
      "          'fairy': 3,\n",
      "          'godfather': 3,\n",
      "          'powers': 3,\n",
      "          'come': 3,\n",
      "          'plot': 3,\n",
      "          'make': 3,\n",
      "          'bit': 3,\n",
      "          'romantic': 3,\n",
      "          'funny': 3,\n",
      "          'got': 3,\n",
      "          'get': 2,\n",
      "          'nwhat': 2,\n",
      "          'hell': 2,\n",
      "          'damn': 2,\n",
      "          'towards': 2,\n",
      "          'thing': 2,\n",
      "          'soundtrack': 2,\n",
      "          'sarah': 2,\n",
      "          'michelle': 2,\n",
      "          'gellar': 2,\n",
      "          'flannery': 2,\n",
      "          'minutes': 2,\n",
      "          'along': 2,\n",
      "          'nit': 2,\n",
      "          'totally': 2,\n",
      "          'random': 2,\n",
      "          'doesnt': 2,\n",
      "          'im': 2,\n",
      "          'willing': 2,\n",
      "          'accept': 2,\n",
      "          'amandas': 2,\n",
      "          'life': 2,\n",
      "          'cant': 2,\n",
      "          'seem': 2,\n",
      "          'falling': 2,\n",
      "          'clips': 2,\n",
      "          'annoying': 2,\n",
      "          'long': 2,\n",
      "          'particular': 2,\n",
      "          'love': 2,\n",
      "          'good': 2,\n",
      "          'peaches': 2,\n",
      "          'dry': 2,\n",
      "          'ice': 2,\n",
      "          'seemed': 2,\n",
      "          'sudden': 2,\n",
      "          'making': 2,\n",
      "          'people': 2,\n",
      "          'around': 2,\n",
      "          'theme': 2,\n",
      "          'humor': 2,\n",
      "          'nolan': 2,\n",
      "          'character': 2,\n",
      "          'see': 2,\n",
      "          'trying': 2,\n",
      "          'hard': 2,\n",
      "          'youve': 2,\n",
      "          'mail': 2,\n",
      "          'simply': 2,\n",
      "          'irresistible': 2,\n",
      "          'nfemale': 2,\n",
      "          'like': 2,\n",
      "          'bear': 1,\n",
      "          'yall': 1,\n",
      "          'cause': 1,\n",
      "          'chest': 1,\n",
      "          'nwhew': 1,\n",
      "          'ncause': 1,\n",
      "          'clip': 1,\n",
      "          'shown': 1,\n",
      "          'beginning': 1,\n",
      "          'cute': 1,\n",
      "          'maybe': 1,\n",
      "          'neven': 1,\n",
      "          'know': 1,\n",
      "          'need': 1,\n",
      "          'footage': 1,\n",
      "          'wasnt': 1,\n",
      "          'getting': 1,\n",
      "          'cutesy': 1,\n",
      "          'gimmicks': 1,\n",
      "          'saccharine': 1,\n",
      "          'sweet': 1,\n",
      "          'score': 1,\n",
      "          'pretty': 1,\n",
      "          'young': 1,\n",
      "          'faces': 1,\n",
      "          'sean': 1,\n",
      "          'patrick': 1,\n",
      "          'might': 1,\n",
      "          'held': 1,\n",
      "          'appeal': 1,\n",
      "          'oh': 1,\n",
      "          'say': 1,\n",
      "          '10': 1,\n",
      "          'nat': 1,\n",
      "          'moves': 1,\n",
      "          'quick': 1,\n",
      "          'interesting': 1,\n",
      "          'pace': 1,\n",
      "          'speedily': 1,\n",
      "          'established': 1,\n",
      "          'something': 1,\n",
      "          'magical': 1,\n",
      "          'happen': 1,\n",
      "          'encounters': 1,\n",
      "          'type': 1,\n",
      "          'person': 1,\n",
      "          'street': 1,\n",
      "          'whose': 1,\n",
      "          'aforementioned': 1,\n",
      "          'follows': 1,\n",
      "          'everywhere': 1,\n",
      "          'die': 1,\n",
      "          'na': 1,\n",
      "          'ridiculous': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'concept': 1,\n",
      "          'yes': 1,\n",
      "          'point': 1,\n",
      "          'changed': 1,\n",
      "          'received': 1,\n",
      "          'nlater': 1,\n",
      "          'decide': 1,\n",
      "          'whether': 1,\n",
      "          'werent': 1,\n",
      "          'repetitive': 1,\n",
      "          'place': 1,\n",
      "          'unnecessary': 1,\n",
      "          'stumbles': 1,\n",
      "          'uneven': 1,\n",
      "          'speed': 1,\n",
      "          'dwelling': 1,\n",
      "          'development': 1,\n",
      "          'suddenly': 1,\n",
      "          'becoming': 1,\n",
      "          'great': 1,\n",
      "          'chef': 1,\n",
      "          'etc': 1,\n",
      "          'moving': 1,\n",
      "          'quickly': 1,\n",
      "          'nsome': 1,\n",
      "          'sense': 1,\n",
      "          'way': 1,\n",
      "          'contrived': 1,\n",
      "          'example': 1,\n",
      "          'corny': 1,\n",
      "          'emitting': 1,\n",
      "          'ncant': 1,\n",
      "          'beat': 1,\n",
      "          'nall': 1,\n",
      "          'fragmented': 1,\n",
      "          'unconnected': 1,\n",
      "          'nnot': 1,\n",
      "          'nso': 1,\n",
      "          'magic': 1,\n",
      "          'nshe': 1,\n",
      "          'float': 1,\n",
      "          'instead': 1,\n",
      "          'put': 1,\n",
      "          'emotions': 1,\n",
      "          'food': 1,\n",
      "          'ntom': 1,\n",
      "          'accepts': 1,\n",
      "          'witchcraft': 1,\n",
      "          'nwould': 1,\n",
      "          'really': 1,\n",
      "          'dine': 1,\n",
      "          'restaurant': 1,\n",
      "          'resembles': 1,\n",
      "          'death': 1,\n",
      "          'tupacs': 1,\n",
      "          'video': 1,\n",
      "          'unfortunate': 1,\n",
      "          'liked': 1,\n",
      "          'basic': 1,\n",
      "          'premise': 1,\n",
      "          'became': 1,\n",
      "          'fantastical': 1,\n",
      "          'tiresome': 1,\n",
      "          'film': 1,\n",
      "          'skirt': 1,\n",
      "          'serious': 1,\n",
      "          'least': 1,\n",
      "          'resolved': 1,\n",
      "          'show': 1,\n",
      "          'us': 1,\n",
      "          'flashback': 1,\n",
      "          '5': 1,\n",
      "          'crying': 1,\n",
      "          'tables': 1,\n",
      "          'gets': 1,\n",
      "          'funniest': 1,\n",
      "          'bits': 1,\n",
      "          'including': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'dolls': 1,\n",
      "          'ngellar': 1,\n",
      "          'qualified': 1,\n",
      "          'actors': 1,\n",
      "          'charm': 1,\n",
      "          'much': 1,\n",
      "          'prefer': 1,\n",
      "          'playing': 1,\n",
      "          'saucy': 1,\n",
      "          'buffy': 1,\n",
      "          'even': 1,\n",
      "          'annette': 1,\n",
      "          'upcoming': 1,\n",
      "          'cruel': 1,\n",
      "          'intentions': 1,\n",
      "          'sorry': 1,\n",
      "          'excuse': 1,\n",
      "          'nits': 1,\n",
      "          'almost': 1,\n",
      "          'two': 1,\n",
      "          'dialogue': 1,\n",
      "          'sound': 1,\n",
      "          'better': 1,\n",
      "          'relationship': 1,\n",
      "          'plausible': 1,\n",
      "          'supporting': 1,\n",
      "          'highlight': 1,\n",
      "          'though': 1,\n",
      "          'reminded': 1,\n",
      "          'kevin': 1,\n",
      "          'footnotes': 1,\n",
      "          'always': 1,\n",
      "          'typical': 1,\n",
      "          'chick': 1,\n",
      "          'flick': 1,\n",
      "          'comedy': 1,\n",
      "          'theres': 1,\n",
      "          'seemingly': 1,\n",
      "          'endless': 1,\n",
      "          'background': 1,\n",
      "          'cued': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'sort': 1,\n",
      "          'understand': 1,\n",
      "          'light': 1,\n",
      "          'generally': 1,\n",
      "          'disappointing': 1,\n",
      "          'draw': 1,\n",
      "          'line': 1,\n",
      "          'romance': 1,\n",
      "          'protracted': 1,\n",
      "          'sap': 1,\n",
      "          'tired': 1,\n",
      "          'slapstick': 1,\n",
      "          'could': 1,\n",
      "          'refrain': 1,\n",
      "          'pun': 1,\n",
      "          'easy': 1,\n",
      "          'resist': 1,\n",
      "          'viewing': 1,\n",
      "          '2699': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'think': 1,\n",
      "          'tad': 1,\n",
      "          'similar': 1,\n",
      "          'shop': 1,\n",
      "          'corner': 1,\n",
      "          'nbusiness': 1,\n",
      "          'rivals': 1,\n",
      "          'fall': 1,\n",
      "          'counterparts': 1,\n",
      "          'business': 1,\n",
      "          'danger': 1,\n",
      "          'shut': 1,\n",
      "          'mother': 1,\n",
      "          'figure': 1,\n",
      "          'guiding': 1,\n",
      "          'hysterical': 1,\n",
      "          'exgirlfriends': 1,\n",
      "          '_really_': 1,\n",
      "          'gellars': 1,\n",
      "          'wardrobe': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 18,\n",
      "          'witch': 15,\n",
      "          'nthe': 15,\n",
      "          'blair': 10,\n",
      "          'see': 8,\n",
      "          'n': 7,\n",
      "          'ni': 6,\n",
      "          'never': 6,\n",
      "          'nthis': 6,\n",
      "          'bad': 5,\n",
      "          'horror': 5,\n",
      "          'know': 5,\n",
      "          'videotapes': 5,\n",
      "          'monster': 5,\n",
      "          'film': 4,\n",
      "          'young': 4,\n",
      "          'us': 4,\n",
      "          'one': 4,\n",
      "          'nwe': 4,\n",
      "          'fact': 4,\n",
      "          'scenes': 4,\n",
      "          'time': 4,\n",
      "          'group': 4,\n",
      "          'woods': 4,\n",
      "          'nhow': 4,\n",
      "          'nbecause': 4,\n",
      "          'five': 4,\n",
      "          'much': 4,\n",
      "          'like': 4,\n",
      "          'tapes': 4,\n",
      "          'characters': 4,\n",
      "          'went': 3,\n",
      "          '2': 3,\n",
      "          'book': 3,\n",
      "          'original': 3,\n",
      "          'terrifying': 3,\n",
      "          'first': 3,\n",
      "          'man': 3,\n",
      "          'sort': 3,\n",
      "          'movies': 3,\n",
      "          'around': 3,\n",
      "          'evil': 3,\n",
      "          'truly': 3,\n",
      "          'jeffrey': 3,\n",
      "          'people': 3,\n",
      "          'tristen': 3,\n",
      "          'steven': 3,\n",
      "          'ntristen': 3,\n",
      "          'pregnant': 3,\n",
      "          'kim': 3,\n",
      "          'party': 3,\n",
      "          'nthey': 3,\n",
      "          'team': 3,\n",
      "          'explained': 3,\n",
      "          'house': 3,\n",
      "          'camp': 3,\n",
      "          'point': 3,\n",
      "          'showing': 3,\n",
      "          'goes': 3,\n",
      "          'get': 3,\n",
      "          'discover': 3,\n",
      "          'hours': 3,\n",
      "          'weird': 3,\n",
      "          'weak': 3,\n",
      "          'sympathetic': 3,\n",
      "          'straight': 3,\n",
      "          'find': 3,\n",
      "          'end': 3,\n",
      "          'project': 2,\n",
      "          'shadows': 2,\n",
      "          'hopes': 2,\n",
      "          'would': 2,\n",
      "          'soon': 2,\n",
      "          'audience': 2,\n",
      "          'shown': 2,\n",
      "          'result': 2,\n",
      "          'hysteria': 2,\n",
      "          'sells': 2,\n",
      "          'website': 2,\n",
      "          'cuts': 2,\n",
      "          'mental': 2,\n",
      "          'institution': 2,\n",
      "          'white': 2,\n",
      "          'goo': 2,\n",
      "          'explanation': 2,\n",
      "          'opening': 2,\n",
      "          'hospital': 2,\n",
      "          'set': 2,\n",
      "          'poor': 2,\n",
      "          'doctors': 2,\n",
      "          'horrible': 2,\n",
      "          'character': 2,\n",
      "          'names': 2,\n",
      "          'nsteven': 2,\n",
      "          'mass': 2,\n",
      "          'complains': 2,\n",
      "          'also': 2,\n",
      "          'nauseated': 2,\n",
      "          'intuition': 2,\n",
      "          'member': 2,\n",
      "          'erica': 2,\n",
      "          'wiccan': 2,\n",
      "          'cemetery': 2,\n",
      "          'nkim': 2,\n",
      "          'completely': 2,\n",
      "          'makeup': 2,\n",
      "          'psychic': 2,\n",
      "          'entire': 2,\n",
      "          'foundation': 2,\n",
      "          'equipment': 2,\n",
      "          'brief': 2,\n",
      "          'rival': 2,\n",
      "          'words': 2,\n",
      "          'long': 2,\n",
      "          'go': 2,\n",
      "          'next': 2,\n",
      "          'manuscript': 2,\n",
      "          'paper': 2,\n",
      "          'missing': 2,\n",
      "          'buried': 2,\n",
      "          'found': 2,\n",
      "          'jeffreys': 2,\n",
      "          'creepy': 2,\n",
      "          'skip': 2,\n",
      "          'starts': 2,\n",
      "          'disturbing': 2,\n",
      "          'hallucinations': 2,\n",
      "          'everything': 2,\n",
      "          'footage': 2,\n",
      "          'awful': 2,\n",
      "          'caricatures': 2,\n",
      "          'antisocial': 2,\n",
      "          'goth': 2,\n",
      "          'girl': 2,\n",
      "          'lot': 2,\n",
      "          'flesh': 2,\n",
      "          'writer': 2,\n",
      "          'nit': 2,\n",
      "          'didnt': 2,\n",
      "          'either': 2,\n",
      "          'gore': 2,\n",
      "          'worked': 2,\n",
      "          'saw': 2,\n",
      "          'nblair': 2,\n",
      "          'grossout': 2,\n",
      "          'none': 2,\n",
      "          'highest': 1,\n",
      "          'released': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'genuinely': 1,\n",
      "          'scary': 1,\n",
      "          'hoped': 1,\n",
      "          'live': 1,\n",
      "          'predecessor': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'dashed': 1,\n",
      "          'nas': 1,\n",
      "          'opens': 1,\n",
      "          'pseudodocumentary': 1,\n",
      "          'clips': 1,\n",
      "          'burkittsville': 1,\n",
      "          'maryland': 1,\n",
      "          'residents': 1,\n",
      "          'interviewed': 1,\n",
      "          'sudden': 1,\n",
      "          'tourist': 1,\n",
      "          'influx': 1,\n",
      "          'town': 1,\n",
      "          'nits': 1,\n",
      "          'mostly': 1,\n",
      "          'humorous': 1,\n",
      "          'selfaware': 1,\n",
      "          'poke': 1,\n",
      "          'media': 1,\n",
      "          'hype': 1,\n",
      "          'surrounding': 1,\n",
      "          'nduring': 1,\n",
      "          'segment': 1,\n",
      "          'introduced': 1,\n",
      "          'protagonist': 1,\n",
      "          'witchrelated': 1,\n",
      "          'memorabilia': 1,\n",
      "          'title': 1,\n",
      "          'informs': 1,\n",
      "          'occurred': 1,\n",
      "          'year': 1,\n",
      "          'previously': 1,\n",
      "          'selling': 1,\n",
      "          'paraphernalia': 1,\n",
      "          'confined': 1,\n",
      "          'finds': 1,\n",
      "          'disgusting': 1,\n",
      "          'unconvincingly': 1,\n",
      "          'forced': 1,\n",
      "          'nose': 1,\n",
      "          'cigarettesmoking': 1,\n",
      "          'doctor': 1,\n",
      "          'luridly': 1,\n",
      "          'leers': 1,\n",
      "          'throwing': 1,\n",
      "          'wildly': 1,\n",
      "          'padded': 1,\n",
      "          'room': 1,\n",
      "          'cowering': 1,\n",
      "          'naked': 1,\n",
      "          'shower': 1,\n",
      "          'stall': 1,\n",
      "          'fire': 1,\n",
      "          'hose': 1,\n",
      "          'turned': 1,\n",
      "          'nno': 1,\n",
      "          'provided': 1,\n",
      "          'barely': 1,\n",
      "          'referred': 1,\n",
      "          'sinking': 1,\n",
      "          'feeling': 1,\n",
      "          'generally': 1,\n",
      "          'scene': 1,\n",
      "          'lighting': 1,\n",
      "          'filthy': 1,\n",
      "          'interiors': 1,\n",
      "          'sure': 1,\n",
      "          'sign': 1,\n",
      "          'throes': 1,\n",
      "          'present': 1,\n",
      "          'whose': 1,\n",
      "          'name': 1,\n",
      "          'played': 1,\n",
      "          'donovan': 1,\n",
      "          'identical': 1,\n",
      "          'actors': 1,\n",
      "          'although': 1,\n",
      "          'admits': 1,\n",
      "          'front': 1,\n",
      "          'fictional': 1,\n",
      "          'theres': 1,\n",
      "          'reason': 1,\n",
      "          'practice': 1,\n",
      "          'rounding': 1,\n",
      "          'leading': 1,\n",
      "          'weekend': 1,\n",
      "          'hunt': 1,\n",
      "          'promotional': 1,\n",
      "          'gimmick': 1,\n",
      "          'came': 1,\n",
      "          'meet': 1,\n",
      "          'couple': 1,\n",
      "          'writing': 1,\n",
      "          'experience': 1,\n",
      "          'skeptic': 1,\n",
      "          'believing': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'hand': 1,\n",
      "          'believes': 1,\n",
      "          'may': 1,\n",
      "          'truth': 1,\n",
      "          'rumors': 1,\n",
      "          'supernatural': 1,\n",
      "          'occurrence': 1,\n",
      "          'nshe': 1,\n",
      "          'wan': 1,\n",
      "          'softspoken': 1,\n",
      "          'radio': 1,\n",
      "          'playing': 1,\n",
      "          'loudly': 1,\n",
      "          'feels': 1,\n",
      "          'knew': 1,\n",
      "          'immediately': 1,\n",
      "          'confirmed': 1,\n",
      "          'later': 1,\n",
      "          'psychomagically': 1,\n",
      "          'susses': 1,\n",
      "          'women': 1,\n",
      "          'always': 1,\n",
      "          'fourth': 1,\n",
      "          'flowing': 1,\n",
      "          'hair': 1,\n",
      "          'wide': 1,\n",
      "          'eyes': 1,\n",
      "          'wants': 1,\n",
      "          'prove': 1,\n",
      "          'good': 1,\n",
      "          'pick': 1,\n",
      "          'fifth': 1,\n",
      "          'final': 1,\n",
      "          'dressed': 1,\n",
      "          'black': 1,\n",
      "          'extreme': 1,\n",
      "          'gothstyle': 1,\n",
      "          'occasionally': 1,\n",
      "          'displays': 1,\n",
      "          'seemingly': 1,\n",
      "          'abilities': 1,\n",
      "          'otherwise': 1,\n",
      "          'seems': 1,\n",
      "          'intelligent': 1,\n",
      "          'reasonable': 1,\n",
      "          'person': 1,\n",
      "          'bunch': 1,\n",
      "          'npresumably': 1,\n",
      "          'wanted': 1,\n",
      "          'picked': 1,\n",
      "          'dramatic': 1,\n",
      "          'effect': 1,\n",
      "          'heads': 1,\n",
      "          'promised': 1,\n",
      "          'reach': 1,\n",
      "          'crumbling': 1,\n",
      "          'ruins': 1,\n",
      "          'rustin': 1,\n",
      "          'parrs': 1,\n",
      "          'complete': 1,\n",
      "          'extensive': 1,\n",
      "          'video': 1,\n",
      "          'record': 1,\n",
      "          'nights': 1,\n",
      "          'events': 1,\n",
      "          'nthere': 1,\n",
      "          'encounter': 1,\n",
      "          'tour': 1,\n",
      "          'planned': 1,\n",
      "          'site': 1,\n",
      "          'well': 1,\n",
      "          'exchanged': 1,\n",
      "          'huffs': 1,\n",
      "          'makes': 1,\n",
      "          'elsewhere': 1,\n",
      "          'veers': 1,\n",
      "          'spend': 1,\n",
      "          'many': 1,\n",
      "          'minutes': 1,\n",
      "          'drinking': 1,\n",
      "          'ensues': 1,\n",
      "          'sun': 1,\n",
      "          'nsexual': 1,\n",
      "          'innuendoes': 1,\n",
      "          'tossed': 1,\n",
      "          'hard': 1,\n",
      "          'liquor': 1,\n",
      "          'beer': 1,\n",
      "          'pot': 1,\n",
      "          'consumed': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'happens': 1,\n",
      "          'great': 1,\n",
      "          'bathroom': 1,\n",
      "          'necessary': 1,\n",
      "          'day': 1,\n",
      "          'wakes': 1,\n",
      "          'discovers': 1,\n",
      "          'camera': 1,\n",
      "          'trashed': 1,\n",
      "          'tristens': 1,\n",
      "          'fluttering': 1,\n",
      "          'sky': 1,\n",
      "          'shreds': 1,\n",
      "          'snow': 1,\n",
      "          'thanks': 1,\n",
      "          'underneath': 1,\n",
      "          'right': 1,\n",
      "          'nooh': 1,\n",
      "          'nspooky': 1,\n",
      "          'back': 1,\n",
      "          'old': 1,\n",
      "          'civil': 1,\n",
      "          'warera': 1,\n",
      "          'warehouse': 1,\n",
      "          'heart': 1,\n",
      "          'regroup': 1,\n",
      "          'review': 1,\n",
      "          'mysteriously': 1,\n",
      "          'night': 1,\n",
      "          'nwacky': 1,\n",
      "          'hijinks': 1,\n",
      "          'ensue': 1,\n",
      "          'dreams': 1,\n",
      "          'everybody': 1,\n",
      "          'finding': 1,\n",
      "          'runelike': 1,\n",
      "          'burn': 1,\n",
      "          'marks': 1,\n",
      "          'bodies': 1,\n",
      "          'highly': 1,\n",
      "          'mutual': 1,\n",
      "          'pretty': 1,\n",
      "          'hell': 1,\n",
      "          'handbasket': 1,\n",
      "          'nthroughout': 1,\n",
      "          'ordeal': 1,\n",
      "          'others': 1,\n",
      "          'continue': 1,\n",
      "          'scrutinize': 1,\n",
      "          'seem': 1,\n",
      "          'kind': 1,\n",
      "          'images': 1,\n",
      "          'jumps': 1,\n",
      "          'eventually': 1,\n",
      "          'wanders': 1,\n",
      "          'mutters': 1,\n",
      "          'something': 1,\n",
      "          'reverse': 1,\n",
      "          'somehow': 1,\n",
      "          'realize': 1,\n",
      "          'play': 1,\n",
      "          'backwards': 1,\n",
      "          'nwhen': 1,\n",
      "          'really': 1,\n",
      "          'happened': 1,\n",
      "          'lost': 1,\n",
      "          'things': 1,\n",
      "          'videotape': 1,\n",
      "          'burying': 1,\n",
      "          'nokay': 1,\n",
      "          'recording': 1,\n",
      "          'oh': 1,\n",
      "          'nnevermind': 1,\n",
      "          'nsimply': 1,\n",
      "          'broadlydrawn': 1,\n",
      "          'allowed': 1,\n",
      "          'depth': 1,\n",
      "          'development': 1,\n",
      "          'nerica': 1,\n",
      "          'natureloving': 1,\n",
      "          'woman': 1,\n",
      "          'overbearing': 1,\n",
      "          'asshole': 1,\n",
      "          'nold': 1,\n",
      "          'tired': 1,\n",
      "          'cliches': 1,\n",
      "          'used': 1,\n",
      "          'illustrate': 1,\n",
      "          'shes': 1,\n",
      "          'wears': 1,\n",
      "          'eye': 1,\n",
      "          'local': 1,\n",
      "          'sheriff': 1,\n",
      "          'guy': 1,\n",
      "          'jagged': 1,\n",
      "          'teeth': 1,\n",
      "          'talks': 1,\n",
      "          'hes': 1,\n",
      "          'deliverance': 1,\n",
      "          'storytelling': 1,\n",
      "          'worst': 1,\n",
      "          'nrather': 1,\n",
      "          'taking': 1,\n",
      "          'make': 1,\n",
      "          'chose': 1,\n",
      "          'give': 1,\n",
      "          'stereotypical': 1,\n",
      "          'characteristics': 1,\n",
      "          'attempt': 1,\n",
      "          'use': 1,\n",
      "          'cinematic': 1,\n",
      "          'shorthand': 1,\n",
      "          'thereby': 1,\n",
      "          'action': 1,\n",
      "          'work': 1,\n",
      "          'non': 1,\n",
      "          'top': 1,\n",
      "          'poorly': 1,\n",
      "          'developed': 1,\n",
      "          'seriously': 1,\n",
      "          'unlikable': 1,\n",
      "          'patently': 1,\n",
      "          'stupid': 1,\n",
      "          'honey': 1,\n",
      "          'miscarriage': 1,\n",
      "          'got': 1,\n",
      "          'medical': 1,\n",
      "          'attention': 1,\n",
      "          'looks': 1,\n",
      "          'belongs': 1,\n",
      "          'slasher': 1,\n",
      "          'nlets': 1,\n",
      "          'plane': 1,\n",
      "          'home': 1,\n",
      "          'bizarre': 1,\n",
      "          'nightmares': 1,\n",
      "          'seeing': 1,\n",
      "          'strange': 1,\n",
      "          'visions': 1,\n",
      "          'want': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'ok': 1,\n",
      "          'nfrankly': 1,\n",
      "          'rooting': 1,\n",
      "          'felt': 1,\n",
      "          'simply': 1,\n",
      "          'blood': 1,\n",
      "          'palpable': 1,\n",
      "          'presence': 1,\n",
      "          'anything': 1,\n",
      "          'offscreen': 1,\n",
      "          'thus': 1,\n",
      "          'imaginations': 1,\n",
      "          'overtime': 1,\n",
      "          'envision': 1,\n",
      "          'might': 1,\n",
      "          'possibly': 1,\n",
      "          'hallmark': 1,\n",
      "          'dispensed': 1,\n",
      "          'niceties': 1,\n",
      "          'evident': 1,\n",
      "          'mad': 1,\n",
      "          'forcing': 1,\n",
      "          'throat': 1,\n",
      "          'continued': 1,\n",
      "          'throughout': 1,\n",
      "          'treated': 1,\n",
      "          'occasional': 1,\n",
      "          'confusing': 1,\n",
      "          'disorienting': 1,\n",
      "          'appears': 1,\n",
      "          'ritual': 1,\n",
      "          'massacre': 1,\n",
      "          'nknives': 1,\n",
      "          'plunge': 1,\n",
      "          'bloody': 1,\n",
      "          'fingers': 1,\n",
      "          'trail': 1,\n",
      "          'darkness': 1,\n",
      "          'late': 1,\n",
      "          'care': 1,\n",
      "          'stop': 1,\n",
      "          'broke': 1,\n",
      "          'showed': 1,\n",
      "          'nby': 1,\n",
      "          'questions': 1,\n",
      "          'remaining': 1,\n",
      "          'onscreen': 1,\n",
      "          'loving': 1,\n",
      "          'detail': 1,\n",
      "          'confess': 1,\n",
      "          'someone': 1,\n",
      "          'prefers': 1,\n",
      "          'glimpses': 1,\n",
      "          'mere': 1,\n",
      "          'suggestions': 1,\n",
      "          'absence': 1,\n",
      "          'infinitely': 1,\n",
      "          'seen': 1,\n",
      "          'interviews': 1,\n",
      "          'director': 1,\n",
      "          'suggested': 1,\n",
      "          'perpetrated': 1,\n",
      "          'human': 1,\n",
      "          'mind': 1,\n",
      "          'miserably': 1,\n",
      "          'directors': 1,\n",
      "          'intent': 1,\n",
      "          'needs': 1,\n",
      "          'made': 1,\n",
      "          'clear': 1,\n",
      "          'parties': 1,\n",
      "          'drunk': 1,\n",
      "          'stoned': 1,\n",
      "          'minds': 1,\n",
      "          'ever': 1,\n",
      "          'gone': 1,\n",
      "          'murderous': 1,\n",
      "          'rampage': 1,\n",
      "          'experienced': 1,\n",
      "          'week': 1,\n",
      "          'nand': 1,\n",
      "          'vanishing': 1,\n",
      "          'tree': 1,\n",
      "          'snowfall': 1,\n",
      "          'nhm': 1,\n",
      "          'nfrom': 1,\n",
      "          'poorlywritten': 1,\n",
      "          'implausible': 1,\n",
      "          'story': 1,\n",
      "          'plot': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'shots': 1,\n",
      "          'effort': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'mel': 5,\n",
      "          'brooks': 5,\n",
      "          'town': 5,\n",
      "          'would': 4,\n",
      "          'one': 4,\n",
      "          'ni': 4,\n",
      "          'black': 4,\n",
      "          'nbut': 3,\n",
      "          'time': 3,\n",
      "          'thinking': 3,\n",
      "          'funny': 3,\n",
      "          'lee': 3,\n",
      "          'sheriff': 3,\n",
      "          'ever': 2,\n",
      "          'blazing': 2,\n",
      "          'saddles': 2,\n",
      "          'nim': 2,\n",
      "          'little': 2,\n",
      "          'nword': 2,\n",
      "          'films': 2,\n",
      "          'going': 2,\n",
      "          'like': 2,\n",
      "          'rolling': 2,\n",
      "          'every': 2,\n",
      "          'evil': 2,\n",
      "          'korman': 2,\n",
      "          'nhe': 2,\n",
      "          'townsfolk': 2,\n",
      "          'governor': 2,\n",
      "          'send': 2,\n",
      "          'nthe': 2,\n",
      "          'humor': 2,\n",
      "          'didnt': 2,\n",
      "          'think': 2,\n",
      "          'calling': 2,\n",
      "          'head': 2,\n",
      "          'end': 2,\n",
      "          'day': 2,\n",
      "          'looks': 2,\n",
      "          'im': 1,\n",
      "          'giving': 1,\n",
      "          'stinker': 1,\n",
      "          'nnormally': 1,\n",
      "          'worst': 1,\n",
      "          'rate': 1,\n",
      "          'total': 1,\n",
      "          'waste': 1,\n",
      "          'compounded': 1,\n",
      "          'fact': 1,\n",
      "          'incredibly': 1,\n",
      "          'offensive': 1,\n",
      "          'helped': 1,\n",
      "          'come': 1,\n",
      "          'big': 1,\n",
      "          'goose': 1,\n",
      "          'egg': 1,\n",
      "          'sure': 1,\n",
      "          'hell': 1,\n",
      "          'made': 1,\n",
      "          'thing': 1,\n",
      "          'even': 1,\n",
      "          'nmaybe': 1,\n",
      "          'mels': 1,\n",
      "          'mind': 1,\n",
      "          'horse': 1,\n",
      "          'knocked': 1,\n",
      "          'unconscious': 1,\n",
      "          'punch': 1,\n",
      "          'face': 1,\n",
      "          'nin': 1,\n",
      "          'mine': 1,\n",
      "          'maybe': 1,\n",
      "          'graduated': 1,\n",
      "          'spike': 1,\n",
      "          'school': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nbecause': 1,\n",
      "          'selfrighteous': 1,\n",
      "          'uses': 1,\n",
      "          'often': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'smarts': 1,\n",
      "          'realize': 1,\n",
      "          'nobody': 1,\n",
      "          'find': 1,\n",
      "          'term': 1,\n",
      "          'amusing': 1,\n",
      "          'nbrooks': 1,\n",
      "          'bandies': 1,\n",
      "          'figures': 1,\n",
      "          'audience': 1,\n",
      "          'aisles': 1,\n",
      "          'hear': 1,\n",
      "          'nwrong': 1,\n",
      "          'call': 1,\n",
      "          'boob': 1,\n",
      "          'insults': 1,\n",
      "          'breasts': 1,\n",
      "          'everywhere': 1,\n",
      "          'nthis': 1,\n",
      "          'idiotic': 1,\n",
      "          'attempt': 1,\n",
      "          'comedy': 1,\n",
      "          'centers': 1,\n",
      "          'lieutenant': 1,\n",
      "          'governors': 1,\n",
      "          'harvey': 1,\n",
      "          'attempts': 1,\n",
      "          'clear': 1,\n",
      "          'buy': 1,\n",
      "          'land': 1,\n",
      "          'cheap': 1,\n",
      "          'sell': 1,\n",
      "          'railroad': 1,\n",
      "          'sends': 1,\n",
      "          'goons': 1,\n",
      "          'run': 1,\n",
      "          'appeals': 1,\n",
      "          'many': 1,\n",
      "          'uninspired': 1,\n",
      "          'unfunny': 1,\n",
      "          'roles': 1,\n",
      "          'new': 1,\n",
      "          'protect': 1,\n",
      "          'pawns': 1,\n",
      "          'task': 1,\n",
      "          'kormans': 1,\n",
      "          'character': 1,\n",
      "          'hedley': 1,\n",
      "          'lamarr': 1,\n",
      "          'n': 1,\n",
      "          'tell': 1,\n",
      "          'chairs': 1,\n",
      "          'right': 1,\n",
      "          'name': 1,\n",
      "          'nlamarr': 1,\n",
      "          'decides': 1,\n",
      "          'gasp': 1,\n",
      "          'hopes': 1,\n",
      "          'disgusted': 1,\n",
      "          'prospect': 1,\n",
      "          'man': 1,\n",
      "          'living': 1,\n",
      "          'among': 1,\n",
      "          'leave': 1,\n",
      "          'nhold': 1,\n",
      "          'ive': 1,\n",
      "          'got': 1,\n",
      "          'stop': 1,\n",
      "          'gales': 1,\n",
      "          'laughter': 1,\n",
      "          'pass': 1,\n",
      "          'nits': 1,\n",
      "          'nracism': 1,\n",
      "          'passing': 1,\n",
      "          'gosh': 1,\n",
      "          'anybody': 1,\n",
      "          'noh': 1,\n",
      "          'wait': 1,\n",
      "          'somebody': 1,\n",
      "          'might': 1,\n",
      "          'called': 1,\n",
      "          'kkk': 1,\n",
      "          'racist': 1,\n",
      "          'insensitive': 1,\n",
      "          'bastard': 1,\n",
      "          'wouldnt': 1,\n",
      "          'know': 1,\n",
      "          'hit': 1,\n",
      "          'digress': 1,\n",
      "          'nanyway': 1,\n",
      "          'rides': 1,\n",
      "          'amid': 1,\n",
      "          'flurry': 1,\n",
      "          'using': 1,\n",
      "          'ngolly': 1,\n",
      "          'hilarity': 1,\n",
      "          'never': 1,\n",
      "          'ends': 1,\n",
      "          'joining': 1,\n",
      "          'forces': 1,\n",
      "          'drunk': 1,\n",
      "          'gene': 1,\n",
      "          'wilder': 1,\n",
      "          'happens': 1,\n",
      "          'former': 1,\n",
      "          'fastest': 1,\n",
      "          'gun': 1,\n",
      "          'west': 1,\n",
      "          'ntogether': 1,\n",
      "          'save': 1,\n",
      "          'nnot': 1,\n",
      "          'person': 1,\n",
      "          'gives': 1,\n",
      "          'decent': 1,\n",
      "          'performance': 1,\n",
      "          'nwilder': 1,\n",
      "          'recovering': 1,\n",
      "          'injury': 1,\n",
      "          'embarrassed': 1,\n",
      "          'part': 1,\n",
      "          'nok': 1,\n",
      "          'really': 1,\n",
      "          'star': 1,\n",
      "          'cleavon': 1,\n",
      "          'goes': 1,\n",
      "          'along': 1,\n",
      "          'jokes': 1,\n",
      "          'discussing': 1,\n",
      "          'laugh': 1,\n",
      "          'whole': 1,\n",
      "          'sorry': 1,\n",
      "          'experience': 1,\n",
      "          'admit': 1,\n",
      "          'starting': 1,\n",
      "          'snicker': 1,\n",
      "          'couple': 1,\n",
      "          'occasions': 1,\n",
      "          'nactually': 1,\n",
      "          'started': 1,\n",
      "          'look': 1,\n",
      "          'promise': 1,\n",
      "          'alas': 1,\n",
      "          'ended': 1,\n",
      "          'crappy': 1,\n",
      "          'rest': 1,\n",
      "          'say': 1,\n",
      "          'full': 1,\n",
      "          'confidence': 1,\n",
      "          'redeeming': 1,\n",
      "          'qualities': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nmel': 1,\n",
      "          'world': 1,\n",
      "          'favor': 1,\n",
      "          'burned': 1,\n",
      "          'last': 1,\n",
      "          'copy': 1,\n",
      "          'film': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'characters': 6,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          '2': 4,\n",
      "          'movie': 4,\n",
      "          'days': 3,\n",
      "          'valley': 3,\n",
      "          'much': 3,\n",
      "          'would': 3,\n",
      "          'nwhile': 3,\n",
      "          'half': 3,\n",
      "          'pulp': 2,\n",
      "          'fiction': 2,\n",
      "          'lives': 2,\n",
      "          'ways': 2,\n",
      "          'quite': 2,\n",
      "          'way': 2,\n",
      "          'nthis': 2,\n",
      "          'cast': 2,\n",
      "          'story': 2,\n",
      "          'isnt': 2,\n",
      "          'better': 2,\n",
      "          'least': 2,\n",
      "          'watch': 2,\n",
      "          'sort': 2,\n",
      "          'get': 2,\n",
      "          'charlize': 2,\n",
      "          'theron': 2,\n",
      "          'fairly': 2,\n",
      "          'intersect': 2,\n",
      "          'otherwise': 2,\n",
      "          'interesting': 2,\n",
      "          'even': 2,\n",
      "          'less': 1,\n",
      "          'knock': 1,\n",
      "          'nit': 1,\n",
      "          'basically': 1,\n",
      "          'involves': 1,\n",
      "          'bunch': 1,\n",
      "          'quirky': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'area': 1,\n",
      "          'end': 1,\n",
      "          'become': 1,\n",
      "          'intertwined': 1,\n",
      "          'unusual': 1,\n",
      "          'nim': 1,\n",
      "          'going': 1,\n",
      "          'greater': 1,\n",
      "          'detail': 1,\n",
      "          'since': 1,\n",
      "          'take': 1,\n",
      "          'forever': 1,\n",
      "          'explain': 1,\n",
      "          'frankly': 1,\n",
      "          'im': 1,\n",
      "          'willing': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'hours': 1,\n",
      "          'ive': 1,\n",
      "          'already': 1,\n",
      "          'wasted': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'condemnation': 1,\n",
      "          'considering': 1,\n",
      "          'includes': 1,\n",
      "          'danny': 1,\n",
      "          'aiello': 1,\n",
      "          'james': 1,\n",
      "          'spader': 1,\n",
      "          'jeff': 1,\n",
      "          'daniels': 1,\n",
      "          'dialogue': 1,\n",
      "          'rate': 1,\n",
      "          'marginally': 1,\n",
      "          'couple': 1,\n",
      "          'bright': 1,\n",
      "          'spots': 1,\n",
      "          'njames': 1,\n",
      "          'spaders': 1,\n",
      "          'character': 1,\n",
      "          'rest': 1,\n",
      "          'fun': 1,\n",
      "          'sick': 1,\n",
      "          'nand': 1,\n",
      "          'see': 1,\n",
      "          'nice': 1,\n",
      "          'cat': 1,\n",
      "          'fight': 1,\n",
      "          'uber': 1,\n",
      "          'babes': 1,\n",
      "          'teri': 1,\n",
      "          'hatcher': 1,\n",
      "          'first': 1,\n",
      "          'role': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'good': 1,\n",
      "          'highlight': 1,\n",
      "          'brawl': 1,\n",
      "          'two': 1,\n",
      "          'women': 1,\n",
      "          'neven': 1,\n",
      "          'gorgeous': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'writers': 1,\n",
      "          'credit': 1,\n",
      "          'clever': 1,\n",
      "          'managed': 1,\n",
      "          'group': 1,\n",
      "          'never': 1,\n",
      "          'interacted': 1,\n",
      "          'nbut': 1,\n",
      "          'marveling': 1,\n",
      "          'ingenuity': 1,\n",
      "          'far': 1,\n",
      "          'cry': 1,\n",
      "          'actually': 1,\n",
      "          'enjoying': 1,\n",
      "          'result': 1,\n",
      "          'respective': 1,\n",
      "          'stories': 1,\n",
      "          'inevitably': 1,\n",
      "          'brought': 1,\n",
      "          'really': 1,\n",
      "          'cared': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'nif': 1,\n",
      "          'put': 1,\n",
      "          'number': 1,\n",
      "          'particularly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'huge': 1,\n",
      "          'fan': 1,\n",
      "          'one': 1,\n",
      "          'members': 1,\n",
      "          'rent': 1,\n",
      "          'prepare': 1,\n",
      "          'disappointment': 1,\n",
      "          'nnot': 1,\n",
      "          'naked': 1,\n",
      "          'sit': 1,\n",
      "          'anyway': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'foolish': 6,\n",
      "          'movie': 5,\n",
      "          'would': 4,\n",
      "          'comedy': 4,\n",
      "          'griffin': 4,\n",
      "          'p': 3,\n",
      "          'one': 3,\n",
      "          'standup': 3,\n",
      "          'eddie': 3,\n",
      "          'nhe': 3,\n",
      "          'scenes': 3,\n",
      "          'inspire': 2,\n",
      "          'write': 2,\n",
      "          'act': 2,\n",
      "          'star': 2,\n",
      "          'said': 2,\n",
      "          'nif': 2,\n",
      "          'nfoolish': 2,\n",
      "          'master': 2,\n",
      "          'otherwise': 2,\n",
      "          'potential': 2,\n",
      "          'central': 2,\n",
      "          'little': 2,\n",
      "          'two': 2,\n",
      "          'idiot': 2,\n",
      "          'everyone': 2,\n",
      "          'idiotic': 2,\n",
      "          'hell': 2,\n",
      "          'nas': 2,\n",
      "          'nthe': 2,\n",
      "          'script': 2,\n",
      "          'expect': 2,\n",
      "          'much': 2,\n",
      "          'show': 2,\n",
      "          'rush': 2,\n",
      "          'scene': 2,\n",
      "          'someone': 1,\n",
      "          'pen': 1,\n",
      "          'na': 1,\n",
      "          'better': 1,\n",
      "          'question': 1,\n",
      "          'studio': 1,\n",
      "          'produce': 1,\n",
      "          'answer': 1,\n",
      "          'let': 1,\n",
      "          'know': 1,\n",
      "          'new': 1,\n",
      "          'written': 1,\n",
      "          'starring': 1,\n",
      "          'jawdroppingly': 1,\n",
      "          'horrible': 1,\n",
      "          'film': 1,\n",
      "          'redeeming': 1,\n",
      "          'value': 1,\n",
      "          'socially': 1,\n",
      "          'cinematically': 1,\n",
      "          'ncomedically': 1,\n",
      "          'moments': 1,\n",
      "          'turn': 1,\n",
      "          'nmaster': 1,\n",
      "          'stars': 1,\n",
      "          'fifty': 1,\n",
      "          'dollah': 1,\n",
      "          'beat': 1,\n",
      "          'mobster': 1,\n",
      "          'think': 1,\n",
      "          'trying': 1,\n",
      "          'start': 1,\n",
      "          'clubact': 1,\n",
      "          'brother': 1,\n",
      "          'nbut': 1,\n",
      "          'deal': 1,\n",
      "          'angry': 1,\n",
      "          'mob': 1,\n",
      "          'boss': 1,\n",
      "          'played': 1,\n",
      "          'andrew': 1,\n",
      "          'dice': 1,\n",
      "          'clay': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'entertaining': 1,\n",
      "          'stubborn': 1,\n",
      "          'club': 1,\n",
      "          'owner': 1,\n",
      "          'family': 1,\n",
      "          'problems': 1,\n",
      "          'latter': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'roger': 1,\n",
      "          'eberts': 1,\n",
      "          'plot': 1,\n",
      "          'wasnt': 1,\n",
      "          'problem': 1,\n",
      "          'nso': 1,\n",
      "          'offer': 1,\n",
      "          'beside': 1,\n",
      "          'bunch': 1,\n",
      "          'character': 1,\n",
      "          'names': 1,\n",
      "          'nnot': 1,\n",
      "          'lot': 1,\n",
      "          'mentioned': 1,\n",
      "          'acts': 1,\n",
      "          'like': 1,\n",
      "          'rapper': 1,\n",
      "          'occasional': 1,\n",
      "          'despair': 1,\n",
      "          'requires': 1,\n",
      "          'exhibit': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'forced': 1,\n",
      "          'warm': 1,\n",
      "          'fuzzy': 1,\n",
      "          'bro': 1,\n",
      "          'well': 1,\n",
      "          'suppose': 1,\n",
      "          'delivers': 1,\n",
      "          'musical': 1,\n",
      "          'artist': 1,\n",
      "          'previous': 1,\n",
      "          'screenwriting': 1,\n",
      "          'experience': 1,\n",
      "          'havent': 1,\n",
      "          'yet': 1,\n",
      "          'figured': 1,\n",
      "          'saying': 1,\n",
      "          'ncostar': 1,\n",
      "          'really': 1,\n",
      "          'quite': 1,\n",
      "          'different': 1,\n",
      "          'story': 1,\n",
      "          'fact': 1,\n",
      "          'matter': 1,\n",
      "          'whose': 1,\n",
      "          'significant': 1,\n",
      "          'screen': 1,\n",
      "          'outing': 1,\n",
      "          'date': 1,\n",
      "          'probably': 1,\n",
      "          'mildly': 1,\n",
      "          'successful': 1,\n",
      "          'tv': 1,\n",
      "          'malcolm': 1,\n",
      "          'fledgling': 1,\n",
      "          'upn': 1,\n",
      "          'network': 1,\n",
      "          'extremely': 1,\n",
      "          'talented': 1,\n",
      "          'comedian': 1,\n",
      "          'common': 1,\n",
      "          'chris': 1,\n",
      "          'tucker': 1,\n",
      "          'hour': 1,\n",
      "          'money': 1,\n",
      "          'talks': 1,\n",
      "          'quickly': 1,\n",
      "          'effortlessly': 1,\n",
      "          'speech': 1,\n",
      "          'flows': 1,\n",
      "          'lips': 1,\n",
      "          'spouts': 1,\n",
      "          'profanity': 1,\n",
      "          'impressive': 1,\n",
      "          'dexterity': 1,\n",
      "          'extent': 1,\n",
      "          'done': 1,\n",
      "          'hope': 1,\n",
      "          'become': 1,\n",
      "          'trademark': 1,\n",
      "          'works': 1,\n",
      "          'nand': 1,\n",
      "          'indeed': 1,\n",
      "          'laughed': 1,\n",
      "          'featurelength': 1,\n",
      "          'provided': 1,\n",
      "          'reason': 1,\n",
      "          'care': 1,\n",
      "          'characters': 1,\n",
      "          'nevery': 1,\n",
      "          'dramatic': 1,\n",
      "          'impact': 1,\n",
      "          'effectively': 1,\n",
      "          'diffused': 1,\n",
      "          'either': 1,\n",
      "          'stupid': 1,\n",
      "          'joke': 1,\n",
      "          'tension': 1,\n",
      "          'escalates': 1,\n",
      "          'brothers': 1,\n",
      "          'blurts': 1,\n",
      "          'towards': 1,\n",
      "          'jewelrysporting': 1,\n",
      "          'sibling': 1,\n",
      "          'lay': 1,\n",
      "          'hand': 1,\n",
      "          'cemetary': 1,\n",
      "          'going': 1,\n",
      "          'gold': 1,\n",
      "          'something': 1,\n",
      "          'even': 1,\n",
      "          'smashing': 1,\n",
      "          'car': 1,\n",
      "          'bit': 1,\n",
      "          'loudly': 1,\n",
      "          'occasion': 1,\n",
      "          'huh': 1,\n",
      "          'getting': 1,\n",
      "          'slightly': 1,\n",
      "          'upset': 1,\n",
      "          'wife': 1,\n",
      "          'nbelieve': 1,\n",
      "          'say': 1,\n",
      "          'nothing': 1,\n",
      "          'warrants': 1,\n",
      "          'parting': 1,\n",
      "          'hardearned': 1,\n",
      "          '8': 1,\n",
      "          'nyoull': 1,\n",
      "          'get': 1,\n",
      "          'laughs': 1,\n",
      "          'watching': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'virtually': 1,\n",
      "          'sitcom': 1,\n",
      "          'dont': 1,\n",
      "          'cable': 1,\n",
      "          'neddie': 1,\n",
      "          'fans': 1,\n",
      "          'may': 1,\n",
      "          'enjoy': 1,\n",
      "          'derivative': 1,\n",
      "          'although': 1,\n",
      "          'offensive': 1,\n",
      "          'yarn': 1,\n",
      "          'else': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'n137': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'nthe': 5,\n",
      "          'movie': 5,\n",
      "          'possessed': 5,\n",
      "          'night': 4,\n",
      "          'one': 4,\n",
      "          'brain': 3,\n",
      "          'loan': 3,\n",
      "          'shark': 3,\n",
      "          'really': 3,\n",
      "          'like': 3,\n",
      "          'novelist': 2,\n",
      "          'jar': 2,\n",
      "          'need': 2,\n",
      "          'profession': 2,\n",
      "          'nmost': 2,\n",
      "          'thing': 2,\n",
      "          'thriller': 2,\n",
      "          'bad': 2,\n",
      "          'plot': 2,\n",
      "          'much': 2,\n",
      "          'acting': 2,\n",
      "          'two': 2,\n",
      "          'audience': 2,\n",
      "          'even': 2,\n",
      "          'something': 2,\n",
      "          'nas': 2,\n",
      "          'synopsis': 1,\n",
      "          'struggling': 1,\n",
      "          'latest': 1,\n",
      "          'work': 1,\n",
      "          'buys': 1,\n",
      "          'weird': 1,\n",
      "          'protruding': 1,\n",
      "          'eyeball': 1,\n",
      "          'encased': 1,\n",
      "          'exerts': 1,\n",
      "          'evil': 1,\n",
      "          'influence': 1,\n",
      "          'upon': 1,\n",
      "          'secretary': 1,\n",
      "          'wife': 1,\n",
      "          'disapproves': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'shave': 1,\n",
      "          'tries': 1,\n",
      "          'leave': 1,\n",
      "          'ncomments': 1,\n",
      "          'called': 1,\n",
      "          'nits': 1,\n",
      "          'hard': 1,\n",
      "          'speculate': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'day': 1,\n",
      "          'possessing': 1,\n",
      "          'anyone': 1,\n",
      "          'icky': 1,\n",
      "          'pulsating': 1,\n",
      "          'bubbling': 1,\n",
      "          'thingie': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'havent': 1,\n",
      "          'picked': 1,\n",
      "          'yet': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'loosely': 1,\n",
      "          'cheap': 1,\n",
      "          'sounds': 1,\n",
      "          'cheesy': 1,\n",
      "          'pulp': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'story': 1,\n",
      "          '1950s': 1,\n",
      "          'actually': 1,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'exploit': 1,\n",
      "          'nude': 1,\n",
      "          'women': 1,\n",
      "          'often': 1,\n",
      "          'possible': 1,\n",
      "          'nwriting': 1,\n",
      "          'review': 1,\n",
      "          'proves': 1,\n",
      "          'oddly': 1,\n",
      "          'challenging': 1,\n",
      "          'ntheres': 1,\n",
      "          'say': 1,\n",
      "          'lousy': 1,\n",
      "          'although': 1,\n",
      "          'occasionally': 1,\n",
      "          'attempts': 1,\n",
      "          'absurd': 1,\n",
      "          'garner': 1,\n",
      "          'chuckle': 1,\n",
      "          'humorous': 1,\n",
      "          'frank': 1,\n",
      "          'sivero': 1,\n",
      "          'plays': 1,\n",
      "          'murray': 1,\n",
      "          'novelists': 1,\n",
      "          'agent': 1,\n",
      "          'nhe': 1,\n",
      "          'horrible': 1,\n",
      "          'role': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'amused': 1,\n",
      "          'sucks': 1,\n",
      "          'nnearly': 1,\n",
      "          'half': 1,\n",
      "          'devoted': 1,\n",
      "          'loser': 1,\n",
      "          'wants': 1,\n",
      "          'though': 1,\n",
      "          'limited': 1,\n",
      "          'relevance': 1,\n",
      "          'whole': 1,\n",
      "          'dialogue': 1,\n",
      "          'stinks': 1,\n",
      "          'na': 1,\n",
      "          'instance': 1,\n",
      "          'tells': 1,\n",
      "          'another': 1,\n",
      "          'loves': 1,\n",
      "          'bimbos': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'neverything': 1,\n",
      "          'second': 1,\n",
      "          'rate': 1,\n",
      "          'credits': 1,\n",
      "          'names': 1,\n",
      "          'notsotalented': 1,\n",
      "          'crew': 1,\n",
      "          'scrolled': 1,\n",
      "          'end': 1,\n",
      "          'joseph': 1,\n",
      "          'scales': 1,\n",
      "          'came': 1,\n",
      "          'credited': 1,\n",
      "          'assistsant': 1,\n",
      "          'foley': 1,\n",
      "          'artist': 1,\n",
      "          'nsomeone': 1,\n",
      "          'could': 1,\n",
      "          'used': 1,\n",
      "          'editor': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'basically': 1,\n",
      "          'excuse': 1,\n",
      "          'flash': 1,\n",
      "          'frontal': 1,\n",
      "          'nudity': 1,\n",
      "          'show': 1,\n",
      "          'sex': 1,\n",
      "          'scenes': 1,\n",
      "          'nplayboy': 1,\n",
      "          'playmate': 1,\n",
      "          'shannon': 1,\n",
      "          'tweed': 1,\n",
      "          'star': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'wanted': 1,\n",
      "          'sort': 1,\n",
      "          'would': 1,\n",
      "          'nwhy': 1,\n",
      "          'give': 1,\n",
      "          'turkey': 1,\n",
      "          'stars': 1,\n",
      "          'unintentionally': 1,\n",
      "          'funny': 1,\n",
      "          'enough': 1,\n",
      "          'keep': 1,\n",
      "          'someone': 1,\n",
      "          'passingly': 1,\n",
      "          'interested': 1,\n",
      "          'nif': 1,\n",
      "          'feel': 1,\n",
      "          'see': 1,\n",
      "          'however': 1,\n",
      "          'id': 1,\n",
      "          'recommend': 1,\n",
      "          'exorcise': 1,\n",
      "          'impulse': 1,\n",
      "          'watch': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 11,\n",
      "          'bad': 6,\n",
      "          'even': 4,\n",
      "          'segal': 3,\n",
      "          'see': 3,\n",
      "          'like': 3,\n",
      "          'course': 3,\n",
      "          'movies': 3,\n",
      "          'stupid': 3,\n",
      "          'hero': 3,\n",
      "          'scene': 3,\n",
      "          'okay': 2,\n",
      "          'wasnt': 2,\n",
      "          'watch': 2,\n",
      "          'action': 2,\n",
      "          'liked': 2,\n",
      "          'look': 2,\n",
      "          'friends': 2,\n",
      "          'would': 2,\n",
      "          'go': 2,\n",
      "          'die': 2,\n",
      "          'hard': 2,\n",
      "          'nin': 2,\n",
      "          'gratuitous': 2,\n",
      "          'lines': 2,\n",
      "          'end': 2,\n",
      "          'forces': 2,\n",
      "          'sidekick': 2,\n",
      "          'one': 2,\n",
      "          'two': 2,\n",
      "          'way': 2,\n",
      "          'unfunny': 2,\n",
      "          'time': 2,\n",
      "          'ni': 2,\n",
      "          'seen': 2,\n",
      "          'saves': 2,\n",
      "          'many': 2,\n",
      "          'guy': 2,\n",
      "          'hand': 2,\n",
      "          'nmy': 2,\n",
      "          'nmaybe': 1,\n",
      "          'mood': 1,\n",
      "          'mindless': 1,\n",
      "          'person': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'iii': 1,\n",
      "          'admitting': 1,\n",
      "          'good': 1,\n",
      "          'others': 1,\n",
      "          'nhowewer': 1,\n",
      "          'latest': 1,\n",
      "          'picture': 1,\n",
      "          'didnt': 1,\n",
      "          'since': 1,\n",
      "          'none': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'paid': 1,\n",
      "          'went': 1,\n",
      "          'expecting': 1,\n",
      "          'mild': 1,\n",
      "          'rehash': 1,\n",
      "          'nboy': 1,\n",
      "          'wrong': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'already': 1,\n",
      "          'assaulted': 1,\n",
      "          'segals': 1,\n",
      "          'acting': 1,\n",
      "          'simply': 1,\n",
      "          'wooden': 1,\n",
      "          'wall': 1,\n",
      "          'violence': 1,\n",
      "          'incredible': 1,\n",
      "          'plot': 1,\n",
      "          'sexist': 1,\n",
      "          'nudity': 1,\n",
      "          'obviously': 1,\n",
      "          'meant': 1,\n",
      "          'jokes': 1,\n",
      "          'nby': 1,\n",
      "          'obvious': 1,\n",
      "          'hundreds': 1,\n",
      "          'navy': 1,\n",
      "          'men': 1,\n",
      "          'match': 1,\n",
      "          'thirty': 1,\n",
      "          'armed': 1,\n",
      "          'special': 1,\n",
      "          'soldiers': 1,\n",
      "          'nnot': 1,\n",
      "          'appear': 1,\n",
      "          'worried': 1,\n",
      "          'undecided': 1,\n",
      "          'much': 1,\n",
      "          'increasing': 1,\n",
      "          'unexistent': 1,\n",
      "          'suspense': 1,\n",
      "          'nof': 1,\n",
      "          'must': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'given': 1,\n",
      "          'package': 1,\n",
      "          'form': 1,\n",
      "          'playboy': 1,\n",
      "          'model': 1,\n",
      "          'functions': 1,\n",
      "          'supposed': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'extremely': 1,\n",
      "          'watering': 1,\n",
      "          'eyes': 1,\n",
      "          'away': 1,\n",
      "          'every': 1,\n",
      "          'something': 1,\n",
      "          'happens': 1,\n",
      "          'noh': 1,\n",
      "          'appears': 1,\n",
      "          'naked': 1,\n",
      "          'waist': 1,\n",
      "          'kisses': 1,\n",
      "          'development': 1,\n",
      "          'relationship': 1,\n",
      "          'seem': 1,\n",
      "          'interested': 1,\n",
      "          'never': 1,\n",
      "          'little': 1,\n",
      "          'chemistry': 1,\n",
      "          'people': 1,\n",
      "          'noften': 1,\n",
      "          'villain': 1,\n",
      "          'unfortunately': 1,\n",
      "          'villains': 1,\n",
      "          'cartoonish': 1,\n",
      "          'unmenacing': 1,\n",
      "          'nhow': 1,\n",
      "          'psycho': 1,\n",
      "          'exspecial': 1,\n",
      "          'guys': 1,\n",
      "          'ntoo': 1,\n",
      "          'able': 1,\n",
      "          'predict': 1,\n",
      "          'throughout': 1,\n",
      "          'including': 1,\n",
      "          'moment': 1,\n",
      "          'certain': 1,\n",
      "          'death': 1,\n",
      "          'kill': 1,\n",
      "          'proceeds': 1,\n",
      "          'explain': 1,\n",
      "          'plan': 1,\n",
      "          'shown': 1,\n",
      "          'heros': 1,\n",
      "          'superiors': 1,\n",
      "          'loses': 1,\n",
      "          'gun': 1,\n",
      "          'fight': 1,\n",
      "          'etc': 1,\n",
      "          'nsimply': 1,\n",
      "          'said': 1,\n",
      "          'moviemaking': 1,\n",
      "          'numbers': 1,\n",
      "          'boring': 1,\n",
      "          'potentially': 1,\n",
      "          'offensive': 1,\n",
      "          'going': 1,\n",
      "          'lowest': 1,\n",
      "          'common': 1,\n",
      "          'denominator': 1,\n",
      "          'audience': 1,\n",
      "          'recommendation': 1,\n",
      "          'bring': 1,\n",
      "          'nyoull': 1,\n",
      "          'looking': 1,\n",
      "          'nrent': 1,\n",
      "          'nread': 1,\n",
      "          'book': 1,\n",
      "          'nstare': 1,\n",
      "          'sky': 1,\n",
      "          'ndo': 1,\n",
      "          'waste': 1,\n",
      "          'worthless': 1,\n",
      "          'piece': 1,\n",
      "          'celluloid': 1,\n",
      "          'nthe': 1,\n",
      "          'real': 1,\n",
      "          'sad': 1,\n",
      "          'thing': 1,\n",
      "          'lot': 1,\n",
      "          'rather': 1,\n",
      "          'dragged': 1,\n",
      "          'halfheartedly': 1,\n",
      "          'nthey': 1,\n",
      "          'probably': 1,\n",
      "          'wrestling': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'life': 5,\n",
      "          'murphy': 4,\n",
      "          'lawrence': 3,\n",
      "          'movie': 3,\n",
      "          'like': 3,\n",
      "          'nbut': 3,\n",
      "          'people': 3,\n",
      "          'blacks': 3,\n",
      "          'eddie': 2,\n",
      "          'audience': 2,\n",
      "          'nlife': 2,\n",
      "          'nits': 2,\n",
      "          'script': 2,\n",
      "          'many': 2,\n",
      "          'nand': 2,\n",
      "          'write': 2,\n",
      "          'movies': 2,\n",
      "          'actors': 2,\n",
      "          'martin': 1,\n",
      "          'play': 1,\n",
      "          'two': 1,\n",
      "          'young': 1,\n",
      "          'men': 1,\n",
      "          'wrongfully': 1,\n",
      "          'convicted': 1,\n",
      "          'murder': 1,\n",
      "          'sentenced': 1,\n",
      "          'prison': 1,\n",
      "          'nafter': 1,\n",
      "          'hour': 1,\n",
      "          'watching': 1,\n",
      "          'begin': 1,\n",
      "          'realize': 1,\n",
      "          'characters': 1,\n",
      "          'feel': 1,\n",
      "          'nfortunately': 1,\n",
      "          'members': 1,\n",
      "          'theres': 1,\n",
      "          'chance': 1,\n",
      "          'escape': 1,\n",
      "          'nearest': 1,\n",
      "          'exit': 1,\n",
      "          'nthis': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'murphys': 1,\n",
      "          'worst': 1,\n",
      "          'thats': 1,\n",
      "          'accomplishment': 1,\n",
      "          'nremember': 1,\n",
      "          'golden': 1,\n",
      "          'child': 1,\n",
      "          'harlem': 1,\n",
      "          'nights': 1,\n",
      "          'ncompared': 1,\n",
      "          'look': 1,\n",
      "          'citizen': 1,\n",
      "          'kane': 1,\n",
      "          'long': 1,\n",
      "          'predictable': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'intermittently': 1,\n",
      "          'funny': 1,\n",
      "          '100minute': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'feels': 1,\n",
      "          '100': 1,\n",
      "          'years': 1,\n",
      "          'nrobert': 1,\n",
      "          'ramsey': 1,\n",
      "          'matthew': 1,\n",
      "          'stones': 1,\n",
      "          'basically': 1,\n",
      "          'consist': 1,\n",
      "          'referring': 1,\n",
      "          'everyone': 1,\n",
      "          'around': 1,\n",
      "          'motherf': 1,\n",
      "          'n': 1,\n",
      "          'ns': 1,\n",
      "          'nyou': 1,\n",
      "          'lose': 1,\n",
      "          'count': 1,\n",
      "          'times': 1,\n",
      "          'obnoxious': 1,\n",
      "          'offensive': 1,\n",
      "          'words': 1,\n",
      "          'used': 1,\n",
      "          'takes': 1,\n",
      "          'illiterate': 1,\n",
      "          'jackass': 1,\n",
      "          'sit': 1,\n",
      "          'word': 1,\n",
      "          'processor': 1,\n",
      "          'compose': 1,\n",
      "          'probably': 1,\n",
      "          'stink': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'screening': 1,\n",
      "          'surrounding': 1,\n",
      "          'theater': 1,\n",
      "          'yucked': 1,\n",
      "          'howled': 1,\n",
      "          'flatulence': 1,\n",
      "          'fat': 1,\n",
      "          'jokes': 1,\n",
      "          'well': 1,\n",
      "          'sophisticated': 1,\n",
      "          'belch': 1,\n",
      "          'crude': 1,\n",
      "          'stereotypical': 1,\n",
      "          'nyears': 1,\n",
      "          'ago': 1,\n",
      "          'stereotypically': 1,\n",
      "          'portrayed': 1,\n",
      "          'subservient': 1,\n",
      "          'secondclass': 1,\n",
      "          'good': 1,\n",
      "          'maids': 1,\n",
      "          'servants': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'lot': 1,\n",
      "          'racial': 1,\n",
      "          'groups': 1,\n",
      "          'improved': 1,\n",
      "          'new': 1,\n",
      "          'insidious': 1,\n",
      "          'stereotype': 1,\n",
      "          'creeping': 1,\n",
      "          'nin': 1,\n",
      "          'recent': 1,\n",
      "          'films': 1,\n",
      "          'chris': 1,\n",
      "          'tuckers': 1,\n",
      "          'presented': 1,\n",
      "          'fasttalking': 1,\n",
      "          'conniving': 1,\n",
      "          'scam': 1,\n",
      "          'artists': 1,\n",
      "          'hiphop': 1,\n",
      "          'guncrazy': 1,\n",
      "          'sexcrazed': 1,\n",
      "          'youths': 1,\n",
      "          'nboth': 1,\n",
      "          'sets': 1,\n",
      "          'caricatures': 1,\n",
      "          'demeaning': 1,\n",
      "          'fault': 1,\n",
      "          'rest': 1,\n",
      "          'nthey': 1,\n",
      "          'eat': 1,\n",
      "          'nit': 1,\n",
      "          'scripts': 1,\n",
      "          'studios': 1,\n",
      "          'greenlight': 1,\n",
      "          'projects': 1,\n",
      "          'audiences': 1,\n",
      "          'accept': 1,\n",
      "          'portrayals': 1,\n",
      "          'without': 1,\n",
      "          'protest': 1,\n",
      "          'nlifes': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'redeeming': 1,\n",
      "          'virtue': 1,\n",
      "          'artistry': 1,\n",
      "          'makeup': 1,\n",
      "          'legend': 1,\n",
      "          'rick': 1,\n",
      "          'baker': 1,\n",
      "          'flawlessly': 1,\n",
      "          'ages': 1,\n",
      "          '90': 1,\n",
      "          'year': 1,\n",
      "          'olds': 1,\n",
      "          'notherwise': 1,\n",
      "          'embarrassment': 1,\n",
      "          'blot': 1,\n",
      "          'resumes': 1,\n",
      "          'associated': 1,\n",
      "          'nsee': 1,\n",
      "          'risk': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'rising': 6,\n",
      "          'monster': 5,\n",
      "          'anaconda': 4,\n",
      "          'deep': 4,\n",
      "          'alive': 3,\n",
      "          'much': 3,\n",
      "          'movies': 3,\n",
      "          'yarn': 3,\n",
      "          'one': 3,\n",
      "          'also': 3,\n",
      "          'show': 3,\n",
      "          'ni': 2,\n",
      "          'ndeep': 2,\n",
      "          'enough': 2,\n",
      "          'ingredients': 2,\n",
      "          'cruise': 2,\n",
      "          'ship': 2,\n",
      "          'sea': 2,\n",
      "          'like': 2,\n",
      "          'crew': 2,\n",
      "          'squintyeyed': 2,\n",
      "          'mercenary': 2,\n",
      "          'make': 2,\n",
      "          'nits': 2,\n",
      "          'time': 2,\n",
      "          'something': 2,\n",
      "          'bit': 2,\n",
      "          'point': 2,\n",
      "          'nin': 2,\n",
      "          'regurgitated': 2,\n",
      "          'partially': 2,\n",
      "          'digested': 2,\n",
      "          'still': 2,\n",
      "          'nhe': 2,\n",
      "          'dont': 2,\n",
      "          'ask': 2,\n",
      "          'massive': 2,\n",
      "          'beast': 2,\n",
      "          'may': 1,\n",
      "          'critic': 1,\n",
      "          'harbors': 1,\n",
      "          'affection': 1,\n",
      "          'shlock': 1,\n",
      "          'delighted': 1,\n",
      "          'sneakysmart': 1,\n",
      "          'entertainment': 1,\n",
      "          'ron': 1,\n",
      "          'underwoods': 1,\n",
      "          'bigundergroundworm': 1,\n",
      "          'tremors': 1,\n",
      "          'even': 1,\n",
      "          'giggled': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'criticallysavaged': 1,\n",
      "          'bigunderwatersnake': 1,\n",
      "          'nsomething': 1,\n",
      "          'films': 1,\n",
      "          'causes': 1,\n",
      "          'lower': 1,\n",
      "          'inhibitions': 1,\n",
      "          'return': 1,\n",
      "          'saturday': 1,\n",
      "          'afternoons': 1,\n",
      "          'youth': 1,\n",
      "          'spent': 1,\n",
      "          'company': 1,\n",
      "          'ghidrah': 1,\n",
      "          'creature': 1,\n",
      "          'black': 1,\n",
      "          'lagoon': 1,\n",
      "          'blob': 1,\n",
      "          'bigunderseaserpent': 1,\n",
      "          'doesnt': 1,\n",
      "          'quite': 1,\n",
      "          'pass': 1,\n",
      "          'test': 1,\n",
      "          'nsure': 1,\n",
      "          'modern': 1,\n",
      "          'movie': 1,\n",
      "          'place': 1,\n",
      "          'conspicuously': 1,\n",
      "          'multiethnicmultinational': 1,\n",
      "          'collection': 1,\n",
      "          'bait': 1,\n",
      "          'excuse': 1,\n",
      "          'nme': 1,\n",
      "          'characters': 1,\n",
      "          'isolated': 1,\n",
      "          'location': 1,\n",
      "          'derelict': 1,\n",
      "          'south': 1,\n",
      "          'china': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'cgienhanced': 1,\n",
      "          'grossouts': 1,\n",
      "          'least': 1,\n",
      "          'big': 1,\n",
      "          'explosion': 1,\n",
      "          'nthere': 1,\n",
      "          'toocheesytobeaccidental': 1,\n",
      "          'elements': 1,\n",
      "          'sleazy': 1,\n",
      "          'shipping': 1,\n",
      "          'magnate': 1,\n",
      "          'anthony': 1,\n",
      "          'heald': 1,\n",
      "          'appears': 1,\n",
      "          'doctorate': 1,\n",
      "          'marine': 1,\n",
      "          'biology': 1,\n",
      "          'slinky': 1,\n",
      "          'international': 1,\n",
      "          'jewel': 1,\n",
      "          'thief': 1,\n",
      "          'famke': 1,\n",
      "          'janssen': 1,\n",
      "          'whose': 1,\n",
      "          'white': 1,\n",
      "          'cotton': 1,\n",
      "          'tank': 1,\n",
      "          'top': 1,\n",
      "          'hides': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'nas': 1,\n",
      "          'happens': 1,\n",
      "          'noteworthy': 1,\n",
      "          'primarily': 1,\n",
      "          'mechanical': 1,\n",
      "          'manner': 1,\n",
      "          'spits': 1,\n",
      "          'na': 1,\n",
      "          'terrorist': 1,\n",
      "          'led': 1,\n",
      "          'hanover': 1,\n",
      "          'wes': 1,\n",
      "          'studi': 1,\n",
      "          'piloted': 1,\n",
      "          'boat': 1,\n",
      "          'captain': 1,\n",
      "          'finnegan': 1,\n",
      "          'treat': 1,\n",
      "          'williams': 1,\n",
      "          'shows': 1,\n",
      "          'loot': 1,\n",
      "          'monsters': 1,\n",
      "          'eat': 1,\n",
      "          'survivors': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'nand': 1,\n",
      "          'go': 1,\n",
      "          'lights': 1,\n",
      "          'hard': 1,\n",
      "          'work': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'sort': 1,\n",
      "          'joyless': 1,\n",
      "          'filmmaking': 1,\n",
      "          'especially': 1,\n",
      "          'moview': 1,\n",
      "          'laugh': 1,\n",
      "          'every': 1,\n",
      "          'makes': 1,\n",
      "          'scream': 1,\n",
      "          'nhere': 1,\n",
      "          'laughs': 1,\n",
      "          'provided': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'kevin': 1,\n",
      "          'j': 1,\n",
      "          'oconnor': 1,\n",
      "          'generally': 1,\n",
      "          'amusing': 1,\n",
      "          'crews': 1,\n",
      "          'fraidycat': 1,\n",
      "          'mechanic': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'stephen': 1,\n",
      "          'sommers': 1,\n",
      "          'seems': 1,\n",
      "          'concerned': 1,\n",
      "          'creating': 1,\n",
      "          'tone': 1,\n",
      "          'actionhorror': 1,\n",
      "          'menace': 1,\n",
      "          'overpopulated': 1,\n",
      "          'goredrenched': 1,\n",
      "          'skeletons': 1,\n",
      "          'gunfire': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'missing': 1,\n",
      "          'unmistakable': 1,\n",
      "          'cue': 1,\n",
      "          'expected': 1,\n",
      "          'ridiculous': 1,\n",
      "          'good': 1,\n",
      "          'hide': 1,\n",
      "          'eyes': 1,\n",
      "          'ncase': 1,\n",
      "          'comparing': 1,\n",
      "          'recent': 1,\n",
      "          'cousin': 1,\n",
      "          'creatures': 1,\n",
      "          'victims': 1,\n",
      "          'back': 1,\n",
      "          'view': 1,\n",
      "          'shrieks': 1,\n",
      "          'horror': 1,\n",
      "          'freakish': 1,\n",
      "          'appearance': 1,\n",
      "          'pain': 1,\n",
      "          'moment': 1,\n",
      "          'disturbing': 1,\n",
      "          'laughable': 1,\n",
      "          'see': 1,\n",
      "          'victim': 1,\n",
      "          'looks': 1,\n",
      "          'another': 1,\n",
      "          'character': 1,\n",
      "          'nwinks': 1,\n",
      "          'nmake': 1,\n",
      "          'mistake': 1,\n",
      "          'beat': 1,\n",
      "          'heck': 1,\n",
      "          'comes': 1,\n",
      "          'technical': 1,\n",
      "          'proficiency': 1,\n",
      "          'pacing': 1,\n",
      "          'gloomy': 1,\n",
      "          'uninspired': 1,\n",
      "          'nearly': 1,\n",
      "          'fun': 1,\n",
      "          'act': 1,\n",
      "          'nyou': 1,\n",
      "          'fantastically': 1,\n",
      "          'impressive': 1,\n",
      "          'tentacles': 1,\n",
      "          'aflailing': 1,\n",
      "          'njust': 1,\n",
      "          'burping': 1,\n",
      "          'ill': 1,\n",
      "          'figure': 1,\n",
      "          'get': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sonias': 4,\n",
      "          'zellweger': 3,\n",
      "          'sonia': 3,\n",
      "          'job': 3,\n",
      "          'jewelry': 3,\n",
      "          'know': 3,\n",
      "          'sex': 2,\n",
      "          'rebbe': 2,\n",
      "          'far': 2,\n",
      "          'dont': 2,\n",
      "          'react': 2,\n",
      "          'renee': 1,\n",
      "          'stars': 1,\n",
      "          'young': 1,\n",
      "          'jewish': 1,\n",
      "          'wife': 1,\n",
      "          'mother': 1,\n",
      "          'frustrated': 1,\n",
      "          'constraints': 1,\n",
      "          'hasidic': 1,\n",
      "          'community': 1,\n",
      "          'brooklyn': 1,\n",
      "          'nher': 1,\n",
      "          'husband': 1,\n",
      "          'glenn': 1,\n",
      "          'fitzgerald': 1,\n",
      "          'religious': 1,\n",
      "          'scholar': 1,\n",
      "          'whose': 1,\n",
      "          'allinadayswork': 1,\n",
      "          'attitude': 1,\n",
      "          'fails': 1,\n",
      "          'tame': 1,\n",
      "          'fire': 1,\n",
      "          'feels': 1,\n",
      "          'within': 1,\n",
      "          'confesses': 1,\n",
      "          'hearing': 1,\n",
      "          'fiery': 1,\n",
      "          'confession': 1,\n",
      "          'suddenly': 1,\n",
      "          'gets': 1,\n",
      "          'frisky': 1,\n",
      "          'pleasantly': 1,\n",
      "          'surprised': 1,\n",
      "          'wifeand': 1,\n",
      "          'dies': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'nsensing': 1,\n",
      "          'frustration': 1,\n",
      "          'husbands': 1,\n",
      "          'brother': 1,\n",
      "          'christopher': 1,\n",
      "          'eccleston': 1,\n",
      "          'gives': 1,\n",
      "          'brokering': 1,\n",
      "          'business': 1,\n",
      "          'exchange': 1,\n",
      "          'raw': 1,\n",
      "          'passionless': 1,\n",
      "          'fans': 1,\n",
      "          'stillburning': 1,\n",
      "          'flame': 1,\n",
      "          'non': 1,\n",
      "          'befriends': 1,\n",
      "          'ramon': 1,\n",
      "          'allen': 1,\n",
      "          'payne': 1,\n",
      "          'cool': 1,\n",
      "          'blast': 1,\n",
      "          'hunky': 1,\n",
      "          'puerto': 1,\n",
      "          'rican': 1,\n",
      "          'water': 1,\n",
      "          'designs': 1,\n",
      "          'working': 1,\n",
      "          'grunt': 1,\n",
      "          'upscale': 1,\n",
      "          'store': 1,\n",
      "          'ncan': 1,\n",
      "          'firetaming': 1,\n",
      "          'behind': 1,\n",
      "          'eversmoldering': 1,\n",
      "          'njust': 1,\n",
      "          'everything': 1,\n",
      "          'writerdirector': 1,\n",
      "          'boaz': 1,\n",
      "          'yakins': 1,\n",
      "          'rings': 1,\n",
      "          'false': 1,\n",
      "          'starting': 1,\n",
      "          'improbably': 1,\n",
      "          'cast': 1,\n",
      "          'adequate': 1,\n",
      "          'enough': 1,\n",
      "          'acting': 1,\n",
      "          'simply': 1,\n",
      "          'looks': 1,\n",
      "          'waspy': 1,\n",
      "          'role': 1,\n",
      "          'na': 1,\n",
      "          'better': 1,\n",
      "          'fit': 1,\n",
      "          'would': 1,\n",
      "          'julianna': 1,\n",
      "          'margulies': 1,\n",
      "          'outshines': 1,\n",
      "          'takenocrap': 1,\n",
      "          'sisterinlaw': 1,\n",
      "          'nsome': 1,\n",
      "          'baby': 1,\n",
      "          'steps': 1,\n",
      "          'toward': 1,\n",
      "          'liberation': 1,\n",
      "          'indulging': 1,\n",
      "          'nonkosher': 1,\n",
      "          'egg': 1,\n",
      "          'roll': 1,\n",
      "          'chinatown': 1,\n",
      "          'come': 1,\n",
      "          'silly': 1,\n",
      "          'nyakin': 1,\n",
      "          'attempts': 1,\n",
      "          'spice': 1,\n",
      "          'proceedings': 1,\n",
      "          'touch': 1,\n",
      "          'magical': 1,\n",
      "          'realismin': 1,\n",
      "          'form': 1,\n",
      "          'recurring': 1,\n",
      "          'presence': 1,\n",
      "          'longdead': 1,\n",
      "          'brothers': 1,\n",
      "          'ghostmake': 1,\n",
      "          'story': 1,\n",
      "          'feel': 1,\n",
      "          'even': 1,\n",
      "          'trite': 1,\n",
      "          'already': 1,\n",
      "          'n': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'nits': 1,\n",
      "          'like': 1,\n",
      "          'something': 1,\n",
      "          'chase': 1,\n",
      "          'long': 1,\n",
      "          'get': 1,\n",
      "          'ni': 1,\n",
      "          'still': 1,\n",
      "          'nmichael': 1,\n",
      "          'jordan': 1,\n",
      "          'winning': 1,\n",
      "          'first': 1,\n",
      "          'nba': 1,\n",
      "          'championship': 1,\n",
      "          '1991': 1,\n",
      "          'nmy': 1,\n",
      "          'thoughts': 1,\n",
      "          'meeting': 1,\n",
      "          'november': 1,\n",
      "          '21': 1,\n",
      "          '1997': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'caves': 5,\n",
      "          'e': 4,\n",
      "          'holes': 4,\n",
      "          'dont': 3,\n",
      "          'think': 3,\n",
      "          'story': 3,\n",
      "          'good': 3,\n",
      "          'two': 3,\n",
      "          'one': 3,\n",
      "          'plot': 3,\n",
      "          'impact': 3,\n",
      "          'nthe': 3,\n",
      "          'president': 3,\n",
      "          'many': 2,\n",
      "          'like': 2,\n",
      "          'rating': 2,\n",
      "          'much': 2,\n",
      "          'comet': 2,\n",
      "          'l': 2,\n",
      "          'nwhat': 2,\n",
      "          'people': 2,\n",
      "          'reporter': 2,\n",
      "          'teenagers': 2,\n",
      "          'messiah': 2,\n",
      "          'world': 2,\n",
      "          'nothing': 2,\n",
      "          'outstandingly': 2,\n",
      "          'making': 2,\n",
      "          'isnt': 2,\n",
      "          'peacemaker': 2,\n",
      "          'big': 2,\n",
      "          'also': 2,\n",
      "          'human': 2,\n",
      "          'director': 2,\n",
      "          'still': 2,\n",
      "          'character': 2,\n",
      "          'news': 2,\n",
      "          'nbut': 2,\n",
      "          'means': 2,\n",
      "          'nnow': 2,\n",
      "          'ones': 2,\n",
      "          'even': 2,\n",
      "          'years': 2,\n",
      "          'matter': 2,\n",
      "          'dr': 2,\n",
      "          'nstrangelove': 2,\n",
      "          'hundred': 2,\n",
      "          'plants': 2,\n",
      "          'cant': 2,\n",
      "          'countries': 2,\n",
      "          'say': 2,\n",
      "          'mission': 2,\n",
      "          'therere': 1,\n",
      "          'things': 1,\n",
      "          'criticize': 1,\n",
      "          'know': 1,\n",
      "          'start': 1,\n",
      "          'nrecommendation': 1,\n",
      "          'turn': 1,\n",
      "          'brain': 1,\n",
      "          'decreasing': 1,\n",
      "          'everyday': 1,\n",
      "          'na': 1,\n",
      "          'strike': 1,\n",
      "          'earth': 1,\n",
      "          'causing': 1,\n",
      "          'catastrophe': 1,\n",
      "          'similar': 1,\n",
      "          'extinction': 1,\n",
      "          'level': 1,\n",
      "          'event': 1,\n",
      "          'wiped': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'follows': 1,\n",
      "          'presidents': 1,\n",
      "          'bid': 1,\n",
      "          'rising': 1,\n",
      "          'love': 1,\n",
      "          'discovered': 1,\n",
      "          'team': 1,\n",
      "          'astronauts': 1,\n",
      "          'ship': 1,\n",
      "          'save': 1,\n",
      "          'nfirstly': 1,\n",
      "          'inferior': 1,\n",
      "          'anything': 1,\n",
      "          'make': 1,\n",
      "          'corny': 1,\n",
      "          'stupid': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'moved': 1,\n",
      "          'trailer': 1,\n",
      "          'saying': 1,\n",
      "          'nmimi': 1,\n",
      "          'leders': 1,\n",
      "          'followup': 1,\n",
      "          'equally': 1,\n",
      "          'incompetent': 1,\n",
      "          'stars': 1,\n",
      "          'wasted': 1,\n",
      "          'n': 1,\n",
      "          'perhaps': 1,\n",
      "          'im': 1,\n",
      "          'annoyed': 1,\n",
      "          'release': 1,\n",
      "          'us': 1,\n",
      "          'overshadowed': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'thriller': 1,\n",
      "          'assignment': 1,\n",
      "          'nit': 1,\n",
      "          'obvious': 1,\n",
      "          'title': 1,\n",
      "          'represents': 1,\n",
      "          'boom': 1,\n",
      "          'result': 1,\n",
      "          'collision': 1,\n",
      "          'connotes': 1,\n",
      "          'heavy': 1,\n",
      "          'lives': 1,\n",
      "          'nhowever': 1,\n",
      "          'simply': 1,\n",
      "          'fails': 1,\n",
      "          'note': 1,\n",
      "          'effects': 1,\n",
      "          'wornout': 1,\n",
      "          'substandard': 1,\n",
      "          'screenplay': 1,\n",
      "          'limited': 1,\n",
      "          'acting': 1,\n",
      "          'continued': 1,\n",
      "          'sad': 1,\n",
      "          'run': 1,\n",
      "          'terms': 1,\n",
      "          'goodfilmmaking': 1,\n",
      "          'credentials': 1,\n",
      "          'nshes': 1,\n",
      "          'money': 1,\n",
      "          'though': 1,\n",
      "          'nt': 1,\n",
      "          'leonis': 1,\n",
      "          'unfortunate': 1,\n",
      "          'foundation': 1,\n",
      "          'cast': 1,\n",
      "          'suffers': 1,\n",
      "          'characters': 1,\n",
      "          'need': 1,\n",
      "          'explored': 1,\n",
      "          'nrobert': 1,\n",
      "          'duvalls': 1,\n",
      "          'aging': 1,\n",
      "          'astronaut': 1,\n",
      "          'lifeless': 1,\n",
      "          'morgan': 1,\n",
      "          'freemans': 1,\n",
      "          'restricted': 1,\n",
      "          'well': 1,\n",
      "          'righteous': 1,\n",
      "          'hes': 1,\n",
      "          'interesting': 1,\n",
      "          'nleonis': 1,\n",
      "          'appealing': 1,\n",
      "          'played': 1,\n",
      "          'reasonable': 1,\n",
      "          'conviction': 1,\n",
      "          'rather': 1,\n",
      "          'peculiar': 1,\n",
      "          'showing': 1,\n",
      "          'reporting': 1,\n",
      "          'msnbc': 1,\n",
      "          'definitely': 1,\n",
      "          'undervalued': 1,\n",
      "          'screenwriters': 1,\n",
      "          'nwarning': 1,\n",
      "          'spoilers': 1,\n",
      "          'included': 1,\n",
      "          'lot': 1,\n",
      "          'irrelevant': 1,\n",
      "          'predictable': 1,\n",
      "          'anyway': 1,\n",
      "          'nplot': 1,\n",
      "          'nis': 1,\n",
      "          'threatening': 1,\n",
      "          'exterminate': 1,\n",
      "          '99': 1,\n",
      "          'race': 1,\n",
      "          'send': 1,\n",
      "          'eight': 1,\n",
      "          'puny': 1,\n",
      "          'little': 1,\n",
      "          'nuclear': 1,\n",
      "          'bombs': 1,\n",
      "          'nwheres': 1,\n",
      "          'logic': 1,\n",
      "          'nleder': 1,\n",
      "          'could': 1,\n",
      "          'least': 1,\n",
      "          'made': 1,\n",
      "          'plausible': 1,\n",
      "          '20': 1,\n",
      "          'nand': 1,\n",
      "          'turns': 1,\n",
      "          'percent': 1,\n",
      "          'population': 1,\n",
      "          'actually': 1,\n",
      "          'perish': 1,\n",
      "          'less': 1,\n",
      "          'selfish': 1,\n",
      "          'stayed': 1,\n",
      "          'home': 1,\n",
      "          'victims': 1,\n",
      "          'almost': 1,\n",
      "          'mocking': 1,\n",
      "          'telling': 1,\n",
      "          'died': 1,\n",
      "          'ni': 1,\n",
      "          'fail': 1,\n",
      "          'see': 1,\n",
      "          'carrying': 1,\n",
      "          'baby': 1,\n",
      "          'would': 1,\n",
      "          'first': 1,\n",
      "          'climb': 1,\n",
      "          'mountainhill': 1,\n",
      "          'motorbike': 1,\n",
      "          'headstart': 1,\n",
      "          'nits': 1,\n",
      "          'unlikely': 1,\n",
      "          'dust': 1,\n",
      "          'take': 1,\n",
      "          'settle': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'nbuilding': 1,\n",
      "          'strategy': 1,\n",
      "          'mentioned': 1,\n",
      "          'proposed': 1,\n",
      "          'lived': 1,\n",
      "          'underground': 1,\n",
      "          'practical': 1,\n",
      "          'use': 1,\n",
      "          'point': 1,\n",
      "          'living': 1,\n",
      "          'nthere': 1,\n",
      "          'unlike': 1,\n",
      "          'radioactivity': 1,\n",
      "          'outside': 1,\n",
      "          'restrict': 1,\n",
      "          'exposure': 1,\n",
      "          'nhow': 1,\n",
      "          'grow': 1,\n",
      "          'nif': 1,\n",
      "          'humans': 1,\n",
      "          'technology': 1,\n",
      "          'keep': 1,\n",
      "          'alive': 1,\n",
      "          'theres': 1,\n",
      "          'reason': 1,\n",
      "          'open': 1,\n",
      "          'disclosed': 1,\n",
      "          'preparing': 1,\n",
      "          'nobviously': 1,\n",
      "          'informed': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'ago': 1,\n",
      "          'serious': 1,\n",
      "          'nobody': 1,\n",
      "          'leaked': 1,\n",
      "          'media': 1,\n",
      "          'nin': 1,\n",
      "          'important': 1,\n",
      "          'impossible': 1,\n",
      "          'sufficient': 1,\n",
      "          'fuel': 1,\n",
      "          'extra': 1,\n",
      "          'couple': 1,\n",
      "          'metres': 1,\n",
      "          'needless': 1,\n",
      "          'tens': 1,\n",
      "          'kilometres': 1,\n",
      "          'nthis': 1,\n",
      "          'deep': 1,\n",
      "          'frivolous': 1,\n",
      "          'cheap': 1,\n",
      "          'overacting': 1,\n",
      "          '3': 1,\n",
      "          '4': 1,\n",
      "          'watchable': 1,\n",
      "          'nokay': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'life': 4,\n",
      "          'man': 3,\n",
      "          'shakespeare': 2,\n",
      "          'one': 2,\n",
      "          'soul': 2,\n",
      "          'work': 2,\n",
      "          'rather': 2,\n",
      "          'well': 2,\n",
      "          'probably': 2,\n",
      "          'assume': 2,\n",
      "          'beautiful': 2,\n",
      "          'gwyneth': 2,\n",
      "          'plays': 2,\n",
      "          'develop': 2,\n",
      "          'guess': 2,\n",
      "          'ni': 2,\n",
      "          'think': 2,\n",
      "          'dont': 1,\n",
      "          'let': 1,\n",
      "          'fool': 1,\n",
      "          'believing': 1,\n",
      "          'romantic': 1,\n",
      "          'noirs': 1,\n",
      "          'william': 1,\n",
      "          'nno': 1,\n",
      "          'truly': 1,\n",
      "          'understand': 1,\n",
      "          'heart': 1,\n",
      "          'except': 1,\n",
      "          'makes': 1,\n",
      "          'vain': 1,\n",
      "          'attempt': 1,\n",
      "          'nany': 1,\n",
      "          'moves': 1,\n",
      "          'glamorise': 1,\n",
      "          'hollywood': 1,\n",
      "          'annoying': 1,\n",
      "          'tendency': 1,\n",
      "          'subtract': 1,\n",
      "          'achievement': 1,\n",
      "          'expound': 1,\n",
      "          'greatness': 1,\n",
      "          'nthis': 1,\n",
      "          'although': 1,\n",
      "          'written': 1,\n",
      "          'puts': 1,\n",
      "          'much': 1,\n",
      "          'makeup': 1,\n",
      "          'whose': 1,\n",
      "          'pork': 1,\n",
      "          'potatoes': 1,\n",
      "          'lobster': 1,\n",
      "          'champagne': 1,\n",
      "          'noh': 1,\n",
      "          'lets': 1,\n",
      "          'fantasise': 1,\n",
      "          'onwards': 1,\n",
      "          'bit': 1,\n",
      "          'flirtatious': 1,\n",
      "          'playwrite': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'woman': 1,\n",
      "          'paltrow': 1,\n",
      "          'inspiration': 1,\n",
      "          'several': 1,\n",
      "          'romeo': 1,\n",
      "          'juliet': 1,\n",
      "          'twelfth': 1,\n",
      "          'night': 1,\n",
      "          'nit': 1,\n",
      "          'easier': 1,\n",
      "          'believe': 1,\n",
      "          'wet': 1,\n",
      "          'dream': 1,\n",
      "          'thats': 1,\n",
      "          'please': 1,\n",
      "          'spare': 1,\n",
      "          'unnecessary': 1,\n",
      "          'melodrama': 1,\n",
      "          'nbut': 1,\n",
      "          'version': 1,\n",
      "          'wouldnt': 1,\n",
      "          'draw': 1,\n",
      "          'crowd': 1,\n",
      "          'make': 1,\n",
      "          'dollar': 1,\n",
      "          'screen': 1,\n",
      "          'nso': 1,\n",
      "          'justification': 1,\n",
      "          'romanticising': 1,\n",
      "          'need': 1,\n",
      "          'read': 1,\n",
      "          'order': 1,\n",
      "          'find': 1,\n",
      "          'nas': 1,\n",
      "          'oscars': 1,\n",
      "          'deserved': 1,\n",
      "          'nin': 1,\n",
      "          'many': 1,\n",
      "          'aspects': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'movies': 1,\n",
      "          'never': 1,\n",
      "          'criteria': 1,\n",
      "          'winning': 1,\n",
      "          'oscar': 1,\n",
      "          'time': 1,\n",
      "          'reasons': 1,\n",
      "          'unexplained': 1,\n",
      "          'undeserving': 1,\n",
      "          'win': 1,\n",
      "          'accolade': 1,\n",
      "          'nanother': 1,\n",
      "          'sore': 1,\n",
      "          'point': 1,\n",
      "          'fact': 1,\n",
      "          'best': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'polished': 1,\n",
      "          'cate': 1,\n",
      "          'go': 1,\n",
      "          'enough': 1,\n",
      "          'grandfather': 1,\n",
      "          'dying': 1,\n",
      "          'nephew': 1,\n",
      "          'hospitalised': 1,\n",
      "          'people': 1,\n",
      "          'start': 1,\n",
      "          'feeling': 1,\n",
      "          'sorry': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'scifi': 3,\n",
      "          'animated': 2,\n",
      "          'dont': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'story': 2,\n",
      "          'characters': 2,\n",
      "          'galaxy': 2,\n",
      "          'fights': 2,\n",
      "          'much': 2,\n",
      "          'good': 1,\n",
      "          'thing': 1,\n",
      "          'movies': 1,\n",
      "          'come': 1,\n",
      "          'japan': 1,\n",
      "          'titan': 1,\n",
      "          'e': 1,\n",
      "          'proof': 1,\n",
      "          'hollywood': 1,\n",
      "          'doesnt': 1,\n",
      "          'clue': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'film': 1,\n",
      "          'supposed': 1,\n",
      "          'nfrom': 1,\n",
      "          'tell': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n",
      "          'named': 1,\n",
      "          'kale': 1,\n",
      "          'whos': 1,\n",
      "          'one': 1,\n",
      "          'last': 1,\n",
      "          'survivors': 1,\n",
      "          'earth': 1,\n",
      "          'early': 1,\n",
      "          '31st': 1,\n",
      "          'century': 1,\n",
      "          'unknowingly': 1,\n",
      "          'possesses': 1,\n",
      "          'key': 1,\n",
      "          'saving': 1,\n",
      "          'regenerating': 1,\n",
      "          'left': 1,\n",
      "          'human': 1,\n",
      "          'race': 1,\n",
      "          'nthats': 1,\n",
      "          'fine': 1,\n",
      "          'premise': 1,\n",
      "          'actionpacked': 1,\n",
      "          'theres': 1,\n",
      "          'payoff': 1,\n",
      "          'takes': 1,\n",
      "          'main': 1,\n",
      "          'search': 1,\n",
      "          'legendary': 1,\n",
      "          'ship': 1,\n",
      "          'evil': 1,\n",
      "          'dredge': 1,\n",
      "          'aliens': 1,\n",
      "          'want': 1,\n",
      "          'destroy': 1,\n",
      "          'apparent': 1,\n",
      "          'reason': 1,\n",
      "          'nso': 1,\n",
      "          'process': 1,\n",
      "          'get': 1,\n",
      "          'lot': 1,\n",
      "          'spaceship': 1,\n",
      "          'fistfights': 1,\n",
      "          'blaster': 1,\n",
      "          'doublecrosses': 1,\n",
      "          'shake': 1,\n",
      "          'stick': 1,\n",
      "          'ntheres': 1,\n",
      "          'pointless': 1,\n",
      "          'banter': 1,\n",
      "          'take': 1,\n",
      "          'total': 1,\n",
      "          'ripoff': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'universe': 1,\n",
      "          'creators': 1,\n",
      "          'bother': 1,\n",
      "          'filling': 1,\n",
      "          'basic': 1,\n",
      "          'details': 1,\n",
      "          'makes': 1,\n",
      "          'confusing': 1,\n",
      "          'unmotivated': 1,\n",
      "          'superficial': 1,\n",
      "          'plot': 1,\n",
      "          'plain': 1,\n",
      "          'boring': 1,\n",
      "          'ndespite': 1,\n",
      "          'fantastic': 1,\n",
      "          'animation': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'interesting': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'apes': 8,\n",
      "          'nthe': 5,\n",
      "          'leo': 3,\n",
      "          'planet': 3,\n",
      "          'impressive': 3,\n",
      "          'work': 3,\n",
      "          'davidson': 2,\n",
      "          'mark': 2,\n",
      "          'pericles': 2,\n",
      "          'pod': 2,\n",
      "          'lands': 2,\n",
      "          'set': 2,\n",
      "          'tim': 2,\n",
      "          'burtons': 2,\n",
      "          'look': 2,\n",
      "          'found': 2,\n",
      "          'hes': 2,\n",
      "          'carter': 2,\n",
      "          'senator': 2,\n",
      "          'warner': 2,\n",
      "          'roth': 2,\n",
      "          'ari': 2,\n",
      "          'going': 2,\n",
      "          'attempt': 2,\n",
      "          'human': 2,\n",
      "          'looks': 2,\n",
      "          'also': 2,\n",
      "          'thades': 2,\n",
      "          'ape': 2,\n",
      "          'real': 2,\n",
      "          '2001': 2,\n",
      "          'thats': 2,\n",
      "          'right': 2,\n",
      "          'given': 2,\n",
      "          'delivers': 2,\n",
      "          'undone': 2,\n",
      "          'year': 1,\n",
      "          '2029': 1,\n",
      "          'captain': 1,\n",
      "          'wahlberg': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'training': 1,\n",
      "          'chimp': 1,\n",
      "          'pilot': 1,\n",
      "          'usaf': 1,\n",
      "          'oberon': 1,\n",
      "          'space': 1,\n",
      "          'station': 1,\n",
      "          'nwhen': 1,\n",
      "          'electromagnetic': 1,\n",
      "          'storm': 1,\n",
      "          'encountered': 1,\n",
      "          'lost': 1,\n",
      "          'sets': 1,\n",
      "          'unauthorized': 1,\n",
      "          'thousands': 1,\n",
      "          'years': 1,\n",
      "          'future': 1,\n",
      "          'nmaybe': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'proverbial': 1,\n",
      "          '100': 1,\n",
      "          'chimps': 1,\n",
      "          'front': 1,\n",
      "          'typewriters': 1,\n",
      "          'would': 1,\n",
      "          'gotten': 1,\n",
      "          'better': 1,\n",
      "          'results': 1,\n",
      "          'adaptation': 1,\n",
      "          'pierre': 1,\n",
      "          'boulle': 1,\n",
      "          'novel': 1,\n",
      "          'william': 1,\n",
      "          'broyles': 1,\n",
      "          'jr': 1,\n",
      "          'cast': 1,\n",
      "          'away': 1,\n",
      "          'lawrence': 1,\n",
      "          'konner': 1,\n",
      "          'rosenthal': 1,\n",
      "          'mighty': 1,\n",
      "          'joe': 1,\n",
      "          'young': 1,\n",
      "          'ndirector': 1,\n",
      "          'unique': 1,\n",
      "          'style': 1,\n",
      "          'nowhere': 1,\n",
      "          'silly': 1,\n",
      "          'pointless': 1,\n",
      "          'remake': 1,\n",
      "          'ndavidson': 1,\n",
      "          'sooner': 1,\n",
      "          'finds': 1,\n",
      "          'swarmed': 1,\n",
      "          'savages': 1,\n",
      "          'running': 1,\n",
      "          'terror': 1,\n",
      "          'wisely': 1,\n",
      "          'joins': 1,\n",
      "          'nhowever': 1,\n",
      "          'rounded': 1,\n",
      "          'lot': 1,\n",
      "          'rule': 1,\n",
      "          'plant': 1,\n",
      "          'handed': 1,\n",
      "          'slave': 1,\n",
      "          'trader': 1,\n",
      "          'limbo': 1,\n",
      "          'paul': 1,\n",
      "          'giamatti': 1,\n",
      "          'duets': 1,\n",
      "          'nari': 1,\n",
      "          'helena': 1,\n",
      "          'bonham': 1,\n",
      "          'fight': 1,\n",
      "          'club': 1,\n",
      "          'daughter': 1,\n",
      "          'illustrious': 1,\n",
      "          'sandar': 1,\n",
      "          'david': 1,\n",
      "          'titanic': 1,\n",
      "          'simian': 1,\n",
      "          'bleeding': 1,\n",
      "          'heart': 1,\n",
      "          'believes': 1,\n",
      "          'humans': 1,\n",
      "          'live': 1,\n",
      "          'equal': 1,\n",
      "          'standing': 1,\n",
      "          'unpopular': 1,\n",
      "          'notion': 1,\n",
      "          'nshe': 1,\n",
      "          'takes': 1,\n",
      "          'liking': 1,\n",
      "          'deems': 1,\n",
      "          'unusual': 1,\n",
      "          'ngeneral': 1,\n",
      "          'thade': 1,\n",
      "          'lucky': 1,\n",
      "          'numbers': 1,\n",
      "          'opposite': 1,\n",
      "          'opinion': 1,\n",
      "          'wishing': 1,\n",
      "          'declaration': 1,\n",
      "          'martial': 1,\n",
      "          'law': 1,\n",
      "          'allow': 1,\n",
      "          'annihilate': 1,\n",
      "          'race': 1,\n",
      "          'nhes': 1,\n",
      "          'sweet': 1,\n",
      "          'nits': 1,\n",
      "          'relatively': 1,\n",
      "          'easy': 1,\n",
      "          'see': 1,\n",
      "          'new': 1,\n",
      "          'story': 1,\n",
      "          'onset': 1,\n",
      "          'yet': 1,\n",
      "          'ultimate': 1,\n",
      "          'revelation': 1,\n",
      "          'gaping': 1,\n",
      "          'logic': 1,\n",
      "          'holes': 1,\n",
      "          'much': 1,\n",
      "          'ballyhooed': 1,\n",
      "          'surprise': 1,\n",
      "          'ending': 1,\n",
      "          'nonsensical': 1,\n",
      "          'let': 1,\n",
      "          'nan': 1,\n",
      "          'love': 1,\n",
      "          'triangle': 1,\n",
      "          'conveyed': 1,\n",
      "          'daena': 1,\n",
      "          'estella': 1,\n",
      "          'warren': 1,\n",
      "          'driven': 1,\n",
      "          'giving': 1,\n",
      "          'back': 1,\n",
      "          'fails': 1,\n",
      "          'never': 1,\n",
      "          'develops': 1,\n",
      "          'relationship': 1,\n",
      "          'either': 1,\n",
      "          'lone': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sex': 1,\n",
      "          'scene': 1,\n",
      "          'hilarious': 1,\n",
      "          'foreplay': 1,\n",
      "          'elder': 1,\n",
      "          'orangutan': 1,\n",
      "          'nado': 1,\n",
      "          'glenn': 1,\n",
      "          'shadix': 1,\n",
      "          'trophy': 1,\n",
      "          'wife': 1,\n",
      "          'nova': 1,\n",
      "          'squeeze': 1,\n",
      "          'lisa': 1,\n",
      "          'marie': 1,\n",
      "          'nguffaws': 1,\n",
      "          'likely': 1,\n",
      "          'greet': 1,\n",
      "          'charlton': 1,\n",
      "          'hestons': 1,\n",
      "          'cameo': 1,\n",
      "          'father': 1,\n",
      "          'one': 1,\n",
      "          'harboring': 1,\n",
      "          'firearm': 1,\n",
      "          'sputters': 1,\n",
      "          'familiar': 1,\n",
      "          'lines': 1,\n",
      "          'dying': 1,\n",
      "          'success': 1,\n",
      "          'rick': 1,\n",
      "          'bakers': 1,\n",
      "          'makeup': 1,\n",
      "          'even': 1,\n",
      "          'iffy': 1,\n",
      "          'affair': 1,\n",
      "          'nno': 1,\n",
      "          'made': 1,\n",
      "          'change': 1,\n",
      "          'whiteness': 1,\n",
      "          'actors': 1,\n",
      "          'eyes': 1,\n",
      "          'distraction': 1,\n",
      "          'amidst': 1,\n",
      "          'otherwise': 1,\n",
      "          'nroth': 1,\n",
      "          'michael': 1,\n",
      "          'clarke': 1,\n",
      "          'duncan': 1,\n",
      "          'hand': 1,\n",
      "          'man': 1,\n",
      "          'attar': 1,\n",
      "          'makeovers': 1,\n",
      "          'ngiamatti': 1,\n",
      "          'like': 1,\n",
      "          'skull': 1,\n",
      "          'female': 1,\n",
      "          'humanized': 1,\n",
      "          'sexual': 1,\n",
      "          'appeal': 1,\n",
      "          'ntim': 1,\n",
      "          'acting': 1,\n",
      "          'job': 1,\n",
      "          'getting': 1,\n",
      "          'body': 1,\n",
      "          'language': 1,\n",
      "          'nasty': 1,\n",
      "          'chimpanzee': 1,\n",
      "          'character': 1,\n",
      "          'leaps': 1,\n",
      "          'spectacularly': 1,\n",
      "          'mounting': 1,\n",
      "          'steed': 1,\n",
      "          'evens': 1,\n",
      "          'obvious': 1,\n",
      "          'wire': 1,\n",
      "          'nbonham': 1,\n",
      "          'goodly': 1,\n",
      "          'range': 1,\n",
      "          'emotion': 1,\n",
      "          'behind': 1,\n",
      "          'stiff': 1,\n",
      "          'prosthetic': 1,\n",
      "          'turn': 1,\n",
      "          'silliness': 1,\n",
      "          'writing': 1,\n",
      "          'nmost': 1,\n",
      "          'film': 1,\n",
      "          'bound': 1,\n",
      "          'amount': 1,\n",
      "          'mist': 1,\n",
      "          'cover': 1,\n",
      "          'city': 1,\n",
      "          'resembles': 1,\n",
      "          'dank': 1,\n",
      "          'complex': 1,\n",
      "          'tree': 1,\n",
      "          'houses': 1,\n",
      "          'military': 1,\n",
      "          'costumes': 1,\n",
      "          'colleen': 1,\n",
      "          'atwood': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          'well': 1,\n",
      "          'field': 1,\n",
      "          'tents': 1,\n",
      "          'reminiscent': 1,\n",
      "          'eiko': 1,\n",
      "          'ishiokas': 1,\n",
      "          'coppolas': 1,\n",
      "          'dracula': 1,\n",
      "          'nthat': 1,\n",
      "          'oriental': 1,\n",
      "          'flavor': 1,\n",
      "          'danny': 1,\n",
      "          'elfmans': 1,\n",
      "          'tribal': 1,\n",
      "          'percussive': 1,\n",
      "          'score': 1,\n",
      "          'n': 1,\n",
      "          'last': 1,\n",
      "          'blockbuster': 1,\n",
      "          'hope': 1,\n",
      "          'summer': 1,\n",
      "          'dismal': 1,\n",
      "          'movie': 1,\n",
      "          'season': 1,\n",
      "          'dogs': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'jackal': 10,\n",
      "          'good': 9,\n",
      "          'guy': 8,\n",
      "          'like': 8,\n",
      "          'bad': 7,\n",
      "          'great': 6,\n",
      "          'gere': 6,\n",
      "          'kill': 4,\n",
      "          'get': 4,\n",
      "          'nthe': 4,\n",
      "          'writing': 3,\n",
      "          'screenplay': 3,\n",
      "          'hard': 3,\n",
      "          'nand': 3,\n",
      "          'big': 3,\n",
      "          'something': 3,\n",
      "          'trying': 3,\n",
      "          'two': 3,\n",
      "          'jackals': 3,\n",
      "          'plan': 3,\n",
      "          'fbi': 3,\n",
      "          'hes': 3,\n",
      "          'thriller': 2,\n",
      "          'nharder': 2,\n",
      "          'whole': 2,\n",
      "          'nyou': 2,\n",
      "          'interesting': 2,\n",
      "          'nthis': 2,\n",
      "          'formula': 2,\n",
      "          'lead': 2,\n",
      "          'movies': 2,\n",
      "          'black': 2,\n",
      "          'enough': 2,\n",
      "          'extra': 2,\n",
      "          'better': 2,\n",
      "          'last': 2,\n",
      "          'surprise': 2,\n",
      "          'people': 2,\n",
      "          'whether': 2,\n",
      "          'plot': 2,\n",
      "          'performances': 2,\n",
      "          'nbruce': 2,\n",
      "          'willis': 2,\n",
      "          'nrichard': 2,\n",
      "          'stop': 2,\n",
      "          'count': 2,\n",
      "          'script': 2,\n",
      "          'ripped': 2,\n",
      "          'straight': 2,\n",
      "          'nits': 2,\n",
      "          'millennium': 2,\n",
      "          'ninstead': 2,\n",
      "          'never': 2,\n",
      "          'go': 2,\n",
      "          'major': 2,\n",
      "          'see': 2,\n",
      "          'performance': 2,\n",
      "          'disappointing': 2,\n",
      "          'done': 2,\n",
      "          'nit': 2,\n",
      "          'fire': 2,\n",
      "          'pouring': 1,\n",
      "          'concrete': 1,\n",
      "          'texas': 1,\n",
      "          'sun': 1,\n",
      "          'building': 1,\n",
      "          'bridge': 1,\n",
      "          'troubled': 1,\n",
      "          'waters': 1,\n",
      "          'incidentally': 1,\n",
      "          'heck': 1,\n",
      "          'lot': 1,\n",
      "          'harder': 1,\n",
      "          'review': 1,\n",
      "          'nthrillers': 1,\n",
      "          'variations': 1,\n",
      "          'theme': 1,\n",
      "          'smart': 1,\n",
      "          'resourceful': 1,\n",
      "          'powerful': 1,\n",
      "          'goal': 1,\n",
      "          'meet': 1,\n",
      "          'noble': 1,\n",
      "          'brave': 1,\n",
      "          'protect': 1,\n",
      "          'innocent': 1,\n",
      "          'killed': 1,\n",
      "          'process': 1,\n",
      "          'trick': 1,\n",
      "          'novel': 1,\n",
      "          'manner': 1,\n",
      "          'simple': 1,\n",
      "          'classic': 1,\n",
      "          'north': 1,\n",
      "          'northwest': 1,\n",
      "          'high': 1,\n",
      "          'noon': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'summer': 1,\n",
      "          'blockbusters': 1,\n",
      "          'men': 1,\n",
      "          'fugitive': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'one': 1,\n",
      "          'utter': 1,\n",
      "          'dreck': 1,\n",
      "          'masterminds': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'kull': 1,\n",
      "          'conqueror': 1,\n",
      "          'nis': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'getting': 1,\n",
      "          'depressed': 1,\n",
      "          'npoint': 1,\n",
      "          'follow': 1,\n",
      "          'nyouve': 1,\n",
      "          'got': 1,\n",
      "          'throw': 1,\n",
      "          'new': 1,\n",
      "          'version': 1,\n",
      "          'nsomething': 1,\n",
      "          'move': 1,\n",
      "          'us': 1,\n",
      "          'buy': 1,\n",
      "          'tickets': 1,\n",
      "          'popcorn': 1,\n",
      "          'happy': 1,\n",
      "          'meals': 1,\n",
      "          'thing': 1,\n",
      "          'absolutely': 1,\n",
      "          'necessary': 1,\n",
      "          'every': 1,\n",
      "          'way': 1,\n",
      "          'nwithout': 1,\n",
      "          'wellwritten': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'locations': 1,\n",
      "          'casting': 1,\n",
      "          'hungry': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'fails': 1,\n",
      "          'nthats': 1,\n",
      "          'starpower': 1,\n",
      "          'budget': 1,\n",
      "          'hype': 1,\n",
      "          'gets': 1,\n",
      "          'fat': 1,\n",
      "          'f': 1,\n",
      "          'legendary': 1,\n",
      "          'killer': 1,\n",
      "          'hire': 1,\n",
      "          'former': 1,\n",
      "          'ira': 1,\n",
      "          'assassin': 1,\n",
      "          'vendetta': 1,\n",
      "          'someone': 1,\n",
      "          'ngere': 1,\n",
      "          'nwill': 1,\n",
      "          'able': 1,\n",
      "          'assassination': 1,\n",
      "          'time': 1,\n",
      "          'n': 1,\n",
      "          'ill': 1,\n",
      "          'give': 1,\n",
      "          'three': 1,\n",
      "          'guesses': 1,\n",
      "          'first': 1,\n",
      "          'dont': 1,\n",
      "          'nthere': 1,\n",
      "          'surprises': 1,\n",
      "          'awaiting': 1,\n",
      "          'audience': 1,\n",
      "          'moment': 1,\n",
      "          'say': 1,\n",
      "          'wonder': 1,\n",
      "          'happens': 1,\n",
      "          'next': 1,\n",
      "          'isnt': 1,\n",
      "          'todays': 1,\n",
      "          'headlines': 1,\n",
      "          'episode': 1,\n",
      "          'nthroughout': 1,\n",
      "          'learn': 1,\n",
      "          'plans': 1,\n",
      "          'intends': 1,\n",
      "          'accomplish': 1,\n",
      "          'nno': 1,\n",
      "          'fun': 1,\n",
      "          'come': 1,\n",
      "          'richard': 1,\n",
      "          'figuring': 1,\n",
      "          'developing': 1,\n",
      "          'clever': 1,\n",
      "          'foil': 1,\n",
      "          'em': 1,\n",
      "          'scenes': 1,\n",
      "          'sitting': 1,\n",
      "          'conference': 1,\n",
      "          'room': 1,\n",
      "          'somewhere': 1,\n",
      "          'instantly': 1,\n",
      "          'divines': 1,\n",
      "          'frank': 1,\n",
      "          'likely': 1,\n",
      "          'handed': 1,\n",
      "          'copy': 1,\n",
      "          'superficial': 1,\n",
      "          'clue': 1,\n",
      "          'flash': 1,\n",
      "          'insight': 1,\n",
      "          'geres': 1,\n",
      "          'character': 1,\n",
      "          'psychic': 1,\n",
      "          'neither': 1,\n",
      "          'screenwriters': 1,\n",
      "          'seem': 1,\n",
      "          'know': 1,\n",
      "          'overwhelming': 1,\n",
      "          'need': 1,\n",
      "          'cares': 1,\n",
      "          'important': 1,\n",
      "          'nwhats': 1,\n",
      "          'half': 1,\n",
      "          'supposedly': 1,\n",
      "          'supersmart': 1,\n",
      "          'professional': 1,\n",
      "          'terrorist': 1,\n",
      "          'makes': 1,\n",
      "          'mistake': 1,\n",
      "          'comes': 1,\n",
      "          'case': 1,\n",
      "          'stupids': 1,\n",
      "          'nas': 1,\n",
      "          'manages': 1,\n",
      "          'without': 1,\n",
      "          'wisecrack': 1,\n",
      "          'achievement': 1,\n",
      "          'reason': 1,\n",
      "          'nhis': 1,\n",
      "          'disguises': 1,\n",
      "          'val': 1,\n",
      "          'kilmers': 1,\n",
      "          'saint': 1,\n",
      "          'made': 1,\n",
      "          'talk': 1,\n",
      "          'entire': 1,\n",
      "          'irish': 1,\n",
      "          'accent': 1,\n",
      "          'detracts': 1,\n",
      "          'otherwise': 1,\n",
      "          'lifeless': 1,\n",
      "          'dull': 1,\n",
      "          'nsidney': 1,\n",
      "          'poitier': 1,\n",
      "          'probably': 1,\n",
      "          'element': 1,\n",
      "          'overwhelmingly': 1,\n",
      "          'anything': 1,\n",
      "          'sad': 1,\n",
      "          'hollywood': 1,\n",
      "          'wont': 1,\n",
      "          'use': 1,\n",
      "          'talented': 1,\n",
      "          'actor': 1,\n",
      "          'part': 1,\n",
      "          'agent': 1,\n",
      "          'shoot': 1,\n",
      "          'sneakers': 1,\n",
      "          'nwriting': 1,\n",
      "          'said': 1,\n",
      "          'wasnt': 1,\n",
      "          'job': 1,\n",
      "          'consumers': 1,\n",
      "          'reward': 1,\n",
      "          'screenplays': 1,\n",
      "          'denounce': 1,\n",
      "          'uninteresting': 1,\n",
      "          'ones': 1,\n",
      "          'ndo': 1,\n",
      "          'nyoull': 1,\n",
      "          'encourage': 1,\n",
      "          'producers': 1,\n",
      "          'make': 1,\n",
      "          'stay': 1,\n",
      "          'home': 1,\n",
      "          'rent': 1,\n",
      "          'day': 1,\n",
      "          'line': 1,\n",
      "          'safety': 1,\n",
      "          'video': 1,\n",
      "          'crying': 1,\n",
      "          'loud': 1,\n",
      "          'nanything': 1,\n",
      "          'lives': 1,\n",
      "          'name': 1,\n",
      "          'gnawing': 1,\n",
      "          'dead': 1,\n",
      "          'bones': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'speechless': 6,\n",
      "          'campaign': 6,\n",
      "          'one': 6,\n",
      "          'kevin': 5,\n",
      "          'julia': 4,\n",
      "          'story': 3,\n",
      "          'romantic': 3,\n",
      "          'keaton': 3,\n",
      "          'nthe': 3,\n",
      "          'theyre': 3,\n",
      "          'right': 2,\n",
      "          'get': 2,\n",
      "          'romance': 2,\n",
      "          '1992': 2,\n",
      "          'carville': 2,\n",
      "          'nin': 2,\n",
      "          'script': 2,\n",
      "          'well': 2,\n",
      "          'realizes': 2,\n",
      "          'speech': 2,\n",
      "          'actually': 2,\n",
      "          'nspeechless': 2,\n",
      "          'comedy': 2,\n",
      "          'michael': 2,\n",
      "          'geena': 2,\n",
      "          'davis': 2,\n",
      "          'neither': 2,\n",
      "          'writer': 2,\n",
      "          'punch': 2,\n",
      "          'first': 2,\n",
      "          'nbut': 2,\n",
      "          'julias': 2,\n",
      "          'love': 2,\n",
      "          'politics': 2,\n",
      "          'like': 2,\n",
      "          'end': 2,\n",
      "          'robert': 2,\n",
      "          'king': 2,\n",
      "          'completely': 2,\n",
      "          'even': 2,\n",
      "          'characters': 2,\n",
      "          'already': 2,\n",
      "          'waiting': 2,\n",
      "          'kings': 2,\n",
      "          'performances': 2,\n",
      "          'scenes': 2,\n",
      "          'nothing': 2,\n",
      "          'character': 2,\n",
      "          'happens': 2,\n",
      "          'seems': 2,\n",
      "          'never': 2,\n",
      "          'underwood': 2,\n",
      "          'paper': 2,\n",
      "          'point': 1,\n",
      "          'despite': 1,\n",
      "          'similarities': 1,\n",
      "          'bestselling': 1,\n",
      "          'based': 1,\n",
      "          'presidential': 1,\n",
      "          'rivals': 1,\n",
      "          'james': 1,\n",
      "          'mary': 1,\n",
      "          'matalin': 1,\n",
      "          'fact': 1,\n",
      "          'development': 1,\n",
      "          'nstill': 1,\n",
      "          'comparisons': 1,\n",
      "          'inevitable': 1,\n",
      "          'critical': 1,\n",
      "          'difference': 1,\n",
      "          'nno': 1,\n",
      "          'twosome': 1,\n",
      "          'writers': 1,\n",
      "          'managers': 1,\n",
      "          'matalins': 1,\n",
      "          'interesting': 1,\n",
      "          'limp': 1,\n",
      "          'poorly': 1,\n",
      "          'structured': 1,\n",
      "          'wouldbe': 1,\n",
      "          'set': 1,\n",
      "          'new': 1,\n",
      "          'mexico': 1,\n",
      "          'senatorial': 1,\n",
      "          'vallick': 1,\n",
      "          'mann': 1,\n",
      "          'meet': 1,\n",
      "          'night': 1,\n",
      "          'sleep': 1,\n",
      "          'nwhat': 1,\n",
      "          'opposite': 1,\n",
      "          'sides': 1,\n",
      "          'sitcom': 1,\n",
      "          'brought': 1,\n",
      "          'republican': 1,\n",
      "          'candidates': 1,\n",
      "          'speeches': 1,\n",
      "          'chief': 1,\n",
      "          'democratic': 1,\n",
      "          'candidate': 1,\n",
      "          'nat': 1,\n",
      "          'believes': 1,\n",
      "          'ulterior': 1,\n",
      "          'motive': 1,\n",
      "          'relationship': 1,\n",
      "          'eventually': 1,\n",
      "          'let': 1,\n",
      "          'guard': 1,\n",
      "          'become': 1,\n",
      "          'closer': 1,\n",
      "          'plent': 1,\n",
      "          'obstacles': 1,\n",
      "          'way': 1,\n",
      "          'including': 1,\n",
      "          'studreporter': 1,\n",
      "          'fiance': 1,\n",
      "          'christopher': 1,\n",
      "          'reeve': 1,\n",
      "          'series': 1,\n",
      "          'stunts': 1,\n",
      "          'continue': 1,\n",
      "          'prove': 1,\n",
      "          'alls': 1,\n",
      "          'fair': 1,\n",
      "          'standard': 1,\n",
      "          'formula': 1,\n",
      "          'movie': 1,\n",
      "          'would': 1,\n",
      "          'two': 1,\n",
      "          'principles': 1,\n",
      "          'starting': 1,\n",
      "          'antagonists': 1,\n",
      "          'realizing': 1,\n",
      "          'crazy': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'subverts': 1,\n",
      "          'expectations': 1,\n",
      "          'throwing': 1,\n",
      "          'others': 1,\n",
      "          'arms': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'developing': 1,\n",
      "          'antagonism': 1,\n",
      "          'nits': 1,\n",
      "          'noble': 1,\n",
      "          'attempt': 1,\n",
      "          'shake': 1,\n",
      "          'things': 1,\n",
      "          'unfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'npart': 1,\n",
      "          'fun': 1,\n",
      "          'watching': 1,\n",
      "          'sparring': 1,\n",
      "          'comes': 1,\n",
      "          'recognizing': 1,\n",
      "          'chemistry': 1,\n",
      "          'know': 1,\n",
      "          'attracted': 1,\n",
      "          'left': 1,\n",
      "          'theyll': 1,\n",
      "          'admit': 1,\n",
      "          'nthere': 1,\n",
      "          'herkyjerky': 1,\n",
      "          'feel': 1,\n",
      "          'constant': 1,\n",
      "          'bickering': 1,\n",
      "          'making': 1,\n",
      "          'sharp': 1,\n",
      "          'dialogue': 1,\n",
      "          'cant': 1,\n",
      "          'prevent': 1,\n",
      "          'becoming': 1,\n",
      "          'repetitive': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'ninconsistency': 1,\n",
      "          'also': 1,\n",
      "          'defining': 1,\n",
      "          'characteristic': 1,\n",
      "          'together': 1,\n",
      "          'problems': 1,\n",
      "          'begin': 1,\n",
      "          'initial': 1,\n",
      "          'courtship': 1,\n",
      "          'virtually': 1,\n",
      "          'establish': 1,\n",
      "          'merely': 1,\n",
      "          'establishes': 1,\n",
      "          'wiseass': 1,\n",
      "          'ndavis': 1,\n",
      "          'radiantly': 1,\n",
      "          'beautiful': 1,\n",
      "          'generally': 1,\n",
      "          'entertaining': 1,\n",
      "          'plastic': 1,\n",
      "          'matter': 1,\n",
      "          'bit': 1,\n",
      "          'couple': 1,\n",
      "          'quiet': 1,\n",
      "          'moment': 1,\n",
      "          'sitting': 1,\n",
      "          'fountain': 1,\n",
      "          'achieve': 1,\n",
      "          'measure': 1,\n",
      "          'connection': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'however': 1,\n",
      "          'actors': 1,\n",
      "          'spouting': 1,\n",
      "          'lines': 1,\n",
      "          'nyou': 1,\n",
      "          'keep': 1,\n",
      "          'little': 1,\n",
      "          'spark': 1,\n",
      "          'nperhaps': 1,\n",
      "          'disappointing': 1,\n",
      "          'director': 1,\n",
      "          'ron': 1,\n",
      "          'waste': 1,\n",
      "          'premise': 1,\n",
      "          'removing': 1,\n",
      "          'speechlesss': 1,\n",
      "          'setting': 1,\n",
      "          'perfect': 1,\n",
      "          'high': 1,\n",
      "          'energy': 1,\n",
      "          'battle': 1,\n",
      "          'sexes': 1,\n",
      "          'partisanship': 1,\n",
      "          'thrown': 1,\n",
      "          'mix': 1,\n",
      "          'thats': 1,\n",
      "          'tone': 1,\n",
      "          'going': 1,\n",
      "          'nhe': 1,\n",
      "          'wants': 1,\n",
      "          'warm': 1,\n",
      "          'fuzzy': 1,\n",
      "          'compatible': 1,\n",
      "          'marc': 1,\n",
      "          'shaimans': 1,\n",
      "          'fluteandwind': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'defined': 1,\n",
      "          'conflict': 1,\n",
      "          'fades': 1,\n",
      "          'background': 1,\n",
      "          'nit': 1,\n",
      "          'might': 1,\n",
      "          'rival': 1,\n",
      "          'grocers': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'uninspired': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'ni': 1,\n",
      "          'reviewer': 1,\n",
      "          'civilized': 1,\n",
      "          'world': 1,\n",
      "          'seemed': 1,\n",
      "          'enjoy': 1,\n",
      "          'previous': 1,\n",
      "          'screenplay': 1,\n",
      "          'dana': 1,\n",
      "          'carvey': 1,\n",
      "          'flop': 1,\n",
      "          'clean': 1,\n",
      "          'slate': 1,\n",
      "          'hopes': 1,\n",
      "          'wit': 1,\n",
      "          'words': 1,\n",
      "          'probably': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'non': 1,\n",
      "          'screen': 1,\n",
      "          'still': 1,\n",
      "          'thin': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 10,\n",
      "          'one': 9,\n",
      "          'high': 8,\n",
      "          'school': 8,\n",
      "          'nthe': 7,\n",
      "          'teenage': 4,\n",
      "          'never': 4,\n",
      "          'josie': 4,\n",
      "          'two': 4,\n",
      "          'character': 4,\n",
      "          'movie': 4,\n",
      "          'absolutely': 4,\n",
      "          'audience': 3,\n",
      "          'particular': 3,\n",
      "          'don92t': 3,\n",
      "          'trash': 3,\n",
      "          'kissed': 3,\n",
      "          'barrymore': 3,\n",
      "          'nshe': 3,\n",
      "          'nbut': 3,\n",
      "          'life': 3,\n",
      "          'reporter': 3,\n",
      "          'field': 3,\n",
      "          'assignment': 3,\n",
      "          'otherwise': 3,\n",
      "          'even': 3,\n",
      "          'scenes': 3,\n",
      "          'arquette': 3,\n",
      "          'scene': 3,\n",
      "          'humor': 3,\n",
      "          'acting': 3,\n",
      "          'seems': 3,\n",
      "          'performance': 3,\n",
      "          'teenagers': 2,\n",
      "          'hollywood': 2,\n",
      "          'films': 2,\n",
      "          'population': 2,\n",
      "          'saturday': 2,\n",
      "          'simple': 2,\n",
      "          'make': 2,\n",
      "          'add': 2,\n",
      "          'environment': 2,\n",
      "          'features': 2,\n",
      "          'conflict': 2,\n",
      "          'minutes': 2,\n",
      "          'attention': 2,\n",
      "          'relate': 2,\n",
      "          'quality': 2,\n",
      "          'piece': 2,\n",
      "          'drew': 2,\n",
      "          'chicago': 2,\n",
      "          'office': 2,\n",
      "          'much': 2,\n",
      "          'play': 2,\n",
      "          'quite': 2,\n",
      "          'work': 2,\n",
      "          'molly': 2,\n",
      "          'shannon': 2,\n",
      "          'since': 2,\n",
      "          'interesting': 2,\n",
      "          'scenario': 2,\n",
      "          'become': 2,\n",
      "          'ever': 2,\n",
      "          'show': 2,\n",
      "          'predictable': 2,\n",
      "          'love': 2,\n",
      "          'teacher': 2,\n",
      "          'david': 2,\n",
      "          'comes': 2,\n",
      "          'found': 2,\n",
      "          'condom': 2,\n",
      "          'nfollowing': 2,\n",
      "          'trend': 2,\n",
      "          'nit': 2,\n",
      "          'nin': 2,\n",
      "          'watch': 2,\n",
      "          'nand': 2,\n",
      "          'gray': 2,\n",
      "          'time': 2,\n",
      "          'lot': 1,\n",
      "          'power': 1,\n",
      "          'nevery': 1,\n",
      "          'year': 1,\n",
      "          'countless': 1,\n",
      "          'made': 1,\n",
      "          'targeting': 1,\n",
      "          'rely': 1,\n",
      "          'entire': 1,\n",
      "          'turn': 1,\n",
      "          'friday': 1,\n",
      "          'nights': 1,\n",
      "          'wallets': 1,\n",
      "          'hand': 1,\n",
      "          'formula': 1,\n",
      "          'big': 1,\n",
      "          'name': 1,\n",
      "          'young': 1,\n",
      "          'actor': 1,\n",
      "          'actress': 1,\n",
      "          'sex': 1,\n",
      "          'appeal': 1,\n",
      "          'nyou': 1,\n",
      "          'everyone': 1,\n",
      "          'prom': 1,\n",
      "          'queens': 1,\n",
      "          'math': 1,\n",
      "          'club': 1,\n",
      "          'nerds': 1,\n",
      "          'relationship': 1,\n",
      "          'worked': 1,\n",
      "          '90': 1,\n",
      "          'typical': 1,\n",
      "          'span': 1,\n",
      "          'response': 1,\n",
      "          'enormous': 1,\n",
      "          'part': 1,\n",
      "          'waste': 1,\n",
      "          'it92s': 1,\n",
      "          'money': 1,\n",
      "          'almost': 1,\n",
      "          'set': 1,\n",
      "          'importantly': 1,\n",
      "          'care': 1,\n",
      "          'judge': 1,\n",
      "          'films92': 1,\n",
      "          'due': 1,\n",
      "          'nthat': 1,\n",
      "          'latest': 1,\n",
      "          'director': 1,\n",
      "          'raja': 1,\n",
      "          'gosnell': 1,\n",
      "          'njosie': 1,\n",
      "          'geller': 1,\n",
      "          'youngest': 1,\n",
      "          'copy': 1,\n",
      "          'editor': 1,\n",
      "          'history': 1,\n",
      "          'sun': 1,\n",
      "          'times': 1,\n",
      "          'personal': 1,\n",
      "          'assistant': 1,\n",
      "          'unlimited': 1,\n",
      "          'supplies': 1,\n",
      "          'dismayed': 1,\n",
      "          'position': 1,\n",
      "          'nthere': 1,\n",
      "          'nothing': 1,\n",
      "          'wants': 1,\n",
      "          'go': 1,\n",
      "          'active': 1,\n",
      "          'role': 1,\n",
      "          'media': 1,\n",
      "          'nso': 1,\n",
      "          'literally': 1,\n",
      "          'thrown': 1,\n",
      "          'nowhere': 1,\n",
      "          'jumps': 1,\n",
      "          'elation': 1,\n",
      "          'nconstantly': 1,\n",
      "          'smothering': 1,\n",
      "          'place': 1,\n",
      "          'friend': 1,\n",
      "          'anita': 1,\n",
      "          'amicable': 1,\n",
      "          'superior': 1,\n",
      "          'gus': 1,\n",
      "          'john': 1,\n",
      "          'c': 1,\n",
      "          'reilly': 1,\n",
      "          'stricken': 1,\n",
      "          'horror': 1,\n",
      "          'upon': 1,\n",
      "          'hearing': 1,\n",
      "          'news': 1,\n",
      "          'first': 1,\n",
      "          'deem': 1,\n",
      "          'worker': 1,\n",
      "          'nhowever': 1,\n",
      "          'aimed': 1,\n",
      "          'little': 1,\n",
      "          'patience': 1,\n",
      "          'resolved': 1,\n",
      "          'within': 1,\n",
      "          'headed': 1,\n",
      "          'nobviously': 1,\n",
      "          'involves': 1,\n",
      "          'nspecifically': 1,\n",
      "          'undercover': 1,\n",
      "          'enrolling': 1,\n",
      "          'senior': 1,\n",
      "          'class': 1,\n",
      "          'becoming': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'need': 1,\n",
      "          'begin': 1,\n",
      "          'explain': 1,\n",
      "          'impossibilities': 1,\n",
      "          'situation': 1,\n",
      "          'occurring': 1,\n",
      "          'won92t': 1,\n",
      "          'develops': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'led': 1,\n",
      "          'ninterwoven': 1,\n",
      "          'flashback': 1,\n",
      "          'us': 1,\n",
      "          'dork': 1,\n",
      "          'truly': 1,\n",
      "          'appears': 1,\n",
      "          'heading': 1,\n",
      "          'road': 1,\n",
      "          'nfortunately': 1,\n",
      "          'lame': 1,\n",
      "          'production': 1,\n",
      "          'characters': 1,\n",
      "          'appear': 1,\n",
      "          'humorous': 1,\n",
      "          'remotely': 1,\n",
      "          'nthey': 1,\n",
      "          'include': 1,\n",
      "          'stories': 1,\n",
      "          'student': 1,\n",
      "          'jeremy': 1,\n",
      "          'jordan': 1,\n",
      "          'michael': 1,\n",
      "          'vartan': 1,\n",
      "          'really': 1,\n",
      "          'people': 1,\n",
      "          'body': 1,\n",
      "          'nalso': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'opposite': 1,\n",
      "          'rob': 1,\n",
      "          'new': 1,\n",
      "          'causes': 1,\n",
      "          'rare': 1,\n",
      "          'mildly': 1,\n",
      "          'provocative': 1,\n",
      "          'actually': 1,\n",
      "          'amusing': 1,\n",
      "          'ntypical': 1,\n",
      "          'chalk': 1,\n",
      "          'full': 1,\n",
      "          'sexual': 1,\n",
      "          'innuendoes': 1,\n",
      "          'none': 1,\n",
      "          'certain': 1,\n",
      "          'classroom': 1,\n",
      "          'activity': 1,\n",
      "          'involving': 1,\n",
      "          'bananas': 1,\n",
      "          'latex': 1,\n",
      "          'hysterical': 1,\n",
      "          'nmost': 1,\n",
      "          'jokes': 1,\n",
      "          'straight': 1,\n",
      "          'forward': 1,\n",
      "          'anyone': 1,\n",
      "          'appreciate': 1,\n",
      "          'enjoy': 1,\n",
      "          'still': 1,\n",
      "          'recover': 1,\n",
      "          'total': 1,\n",
      "          'lack': 1,\n",
      "          'rules': 1,\n",
      "          'general': 1,\n",
      "          'worse': 1,\n",
      "          'overplaying': 1,\n",
      "          'case': 1,\n",
      "          'painful': 1,\n",
      "          'required': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'levels': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'transitions': 1,\n",
      "          'although': 1,\n",
      "          'written': 1,\n",
      "          'shades': 1,\n",
      "          'hold': 1,\n",
      "          'color': 1,\n",
      "          'throughout': 1,\n",
      "          'screen': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'alone': 1,\n",
      "          'obvious': 1,\n",
      "          'interest': 1,\n",
      "          'ferris': 1,\n",
      "          'wheel': 1,\n",
      "          'expected': 1,\n",
      "          'adult': 1,\n",
      "          'level': 1,\n",
      "          'get': 1,\n",
      "          'area': 1,\n",
      "          'makes': 1,\n",
      "          'mockery': 1,\n",
      "          'good': 1,\n",
      "          'pitiful': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'limited': 1,\n",
      "          'playing': 1,\n",
      "          'ecstatic': 1,\n",
      "          'draws': 1,\n",
      "          'simply': 1,\n",
      "          'unrealistic': 1,\n",
      "          'qualities': 1,\n",
      "          'prevent': 1,\n",
      "          'aforementioned': 1,\n",
      "          'decent': 1,\n",
      "          'nluckily': 1,\n",
      "          'great': 1,\n",
      "          'emerge': 1,\n",
      "          'bleak': 1,\n",
      "          'ndavid': 1,\n",
      "          'scream': 1,\n",
      "          'takes': 1,\n",
      "          'home': 1,\n",
      "          'prize': 1,\n",
      "          'able': 1,\n",
      "          'stand': 1,\n",
      "          'ensemble': 1,\n",
      "          'pathetic': 1,\n",
      "          'brilliant': 1,\n",
      "          'ruined': 1,\n",
      "          'central': 1,\n",
      "          'gets': 1,\n",
      "          'take': 1,\n",
      "          'miniplot': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'parts': 1,\n",
      "          'dazzling': 1,\n",
      "          'cherryonthesundae': 1,\n",
      "          'type': 1,\n",
      "          'hilarious': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'impression': 1,\n",
      "          '1983': 1,\n",
      "          'hit': 1,\n",
      "          'risky': 1,\n",
      "          'business': 1,\n",
      "          'nnever': 1,\n",
      "          'mediocre': 1,\n",
      "          'best': 1,\n",
      "          'plot': 1,\n",
      "          'overplayed': 1,\n",
      "          'sickening': 1,\n",
      "          'exception': 1,\n",
      "          'bad': 1,\n",
      "          'positive': 1,\n",
      "          'presence': 1,\n",
      "          'light': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'success': 1,\n",
      "          'pay': 1,\n",
      "          'see': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 3,\n",
      "          'crosses': 3,\n",
      "          'walken': 2,\n",
      "          'mobster': 2,\n",
      "          'four': 2,\n",
      "          'rich': 2,\n",
      "          'nit': 2,\n",
      "          'another': 2,\n",
      "          'kings': 2,\n",
      "          'nofallon': 2,\n",
      "          'types': 2,\n",
      "          'nin': 2,\n",
      "          'scene': 2,\n",
      "          'plot': 2,\n",
      "          'entirely': 2,\n",
      "          'story': 2,\n",
      "          'never': 2,\n",
      "          'movie': 2,\n",
      "          'guys': 2,\n",
      "          'niche': 2,\n",
      "          'stars': 1,\n",
      "          'kidnapped': 1,\n",
      "          'held': 1,\n",
      "          'ransom': 1,\n",
      "          'bratty': 1,\n",
      "          'kids': 1,\n",
      "          'seems': 1,\n",
      "          'woman': 1,\n",
      "          'also': 1,\n",
      "          'kidnappedshe': 1,\n",
      "          'sister': 1,\n",
      "          'one': 1,\n",
      "          'e': 1,\n",
      "          'nhenry': 1,\n",
      "          'thomas': 1,\n",
      "          'girlfriend': 1,\n",
      "          'flannery': 1,\n",
      "          'asking': 1,\n",
      "          'price': 1,\n",
      "          '2': 1,\n",
      "          'million': 1,\n",
      "          'said': 1,\n",
      "          'snots': 1,\n",
      "          'unable': 1,\n",
      "          'cough': 1,\n",
      "          'alone': 1,\n",
      "          'nthey': 1,\n",
      "          'even': 1,\n",
      "          'cut': 1,\n",
      "          'walkens': 1,\n",
      "          'finger': 1,\n",
      "          'show': 1,\n",
      "          'mean': 1,\n",
      "          'business': 1,\n",
      "          'desperate': 1,\n",
      "          'save': 1,\n",
      "          'womans': 1,\n",
      "          'life': 1,\n",
      "          'nsuicide': 1,\n",
      "          'terrible': 1,\n",
      "          'nwalken': 1,\n",
      "          'aside': 1,\n",
      "          'isnt': 1,\n",
      "          'single': 1,\n",
      "          'appealing': 1,\n",
      "          'cast': 1,\n",
      "          'member': 1,\n",
      "          'creates': 1,\n",
      "          'characters': 1,\n",
      "          'functional': 1,\n",
      "          'without': 1,\n",
      "          'resonance': 1,\n",
      "          'amusingly': 1,\n",
      "          'unironic': 1,\n",
      "          'plays': 1,\n",
      "          'poker': 1,\n",
      "          'foursome': 1,\n",
      "          'describes': 1,\n",
      "          'personalities': 1,\n",
      "          'teeits': 1,\n",
      "          'reading': 1,\n",
      "          'summary': 1,\n",
      "          'sheet': 1,\n",
      "          'casting': 1,\n",
      "          'director': 1,\n",
      "          'nthe': 1,\n",
      "          'issue': 1,\n",
      "          'someone': 1,\n",
      "          'im': 1,\n",
      "          'betting': 1,\n",
      "          'seen': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogs': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'veer': 1,\n",
      "          'bizarre': 1,\n",
      "          'tangents': 1,\n",
      "          'whence': 1,\n",
      "          'return': 1,\n",
      "          'really': 1,\n",
      "          'need': 1,\n",
      "          'dennis': 1,\n",
      "          'leary': 1,\n",
      "          'beats': 1,\n",
      "          'abusive': 1,\n",
      "          'father': 1,\n",
      "          'toaster': 1,\n",
      "          'unrelated': 1,\n",
      "          'learys': 1,\n",
      "          'character': 1,\n",
      "          'numerous': 1,\n",
      "          'anecdotal': 1,\n",
      "          'sequences': 1,\n",
      "          'central': 1,\n",
      "          'serpentine': 1,\n",
      "          'mess': 1,\n",
      "          'filled': 1,\n",
      "          'double': 1,\n",
      "          'triple': 1,\n",
      "          'nby': 1,\n",
      "          'fourth': 1,\n",
      "          'big': 1,\n",
      "          'revelationtwist': 1,\n",
      "          'completely': 1,\n",
      "          'tuned': 1,\n",
      "          'wondering': 1,\n",
      "          'earth': 1,\n",
      "          'attracted': 1,\n",
      "          'actors': 1,\n",
      "          'material': 1,\n",
      "          'nrecently': 1,\n",
      "          'peer': 1,\n",
      "          'fellow': 1,\n",
      "          'young': 1,\n",
      "          'filmmaker': 1,\n",
      "          'informed': 1,\n",
      "          'idea': 1,\n",
      "          'mob': 1,\n",
      "          'fbi': 1,\n",
      "          'occurred': 1,\n",
      "          'whats': 1,\n",
      "          'wrong': 1,\n",
      "          'indies': 1,\n",
      "          'like': 1,\n",
      "          'suicide': 1,\n",
      "          'suspect': 1,\n",
      "          'ofallon': 1,\n",
      "          'met': 1,\n",
      "          'man': 1,\n",
      "          'doesnt': 1,\n",
      "          'deliver': 1,\n",
      "          'endless': 1,\n",
      "          'clever': 1,\n",
      "          'monologues': 1,\n",
      "          'friends': 1,\n",
      "          'favourite': 1,\n",
      "          'boots': 1,\n",
      "          'short': 1,\n",
      "          'riffing': 1,\n",
      "          'movies': 1,\n",
      "          'making': 1,\n",
      "          'ntarantino': 1,\n",
      "          'found': 1,\n",
      "          'hundreds': 1,\n",
      "          'genxers': 1,\n",
      "          'cameras': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'tarantinos': 1,\n",
      "          'instead': 1,\n",
      "          'carving': 1,\n",
      "          'nreviewed': 1,\n",
      "          'toronto': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'julie': 5,\n",
      "          'film': 5,\n",
      "          'character': 5,\n",
      "          'get': 5,\n",
      "          'jawbreaker': 4,\n",
      "          'played': 4,\n",
      "          'like': 4,\n",
      "          'one': 4,\n",
      "          'acting': 4,\n",
      "          'annoying': 4,\n",
      "          'prank': 3,\n",
      "          'mcgowan': 3,\n",
      "          'group': 3,\n",
      "          'death': 3,\n",
      "          'teen': 3,\n",
      "          'time': 3,\n",
      "          'greer': 3,\n",
      "          'even': 3,\n",
      "          'strong': 3,\n",
      "          'nthe': 3,\n",
      "          'tale': 2,\n",
      "          'innocent': 2,\n",
      "          'birthday': 2,\n",
      "          'four': 2,\n",
      "          'ncourtney': 2,\n",
      "          'rose': 2,\n",
      "          'school': 2,\n",
      "          'also': 2,\n",
      "          'rebecca': 2,\n",
      "          'gayheart': 2,\n",
      "          'liz': 2,\n",
      "          'marcie': 2,\n",
      "          'benz': 2,\n",
      "          'three': 2,\n",
      "          'directed': 2,\n",
      "          'nand': 2,\n",
      "          'movies': 2,\n",
      "          'dont': 2,\n",
      "          'trying': 2,\n",
      "          'well': 2,\n",
      "          'turns': 2,\n",
      "          'bad': 2,\n",
      "          'script': 2,\n",
      "          'undeniably': 2,\n",
      "          'dimensional': 2,\n",
      "          'line': 2,\n",
      "          'side': 2,\n",
      "          'wickedly': 2,\n",
      "          'always': 2,\n",
      "          'roles': 2,\n",
      "          'njawbreaker': 2,\n",
      "          'anything': 2,\n",
      "          'die': 2,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'darren': 1,\n",
      "          'stein': 1,\n",
      "          'comes': 1,\n",
      "          'poorly': 1,\n",
      "          'told': 1,\n",
      "          'happen': 1,\n",
      "          'goes': 1,\n",
      "          'wrong': 1,\n",
      "          'nat': 1,\n",
      "          'reagan': 1,\n",
      "          'high': 1,\n",
      "          'girls': 1,\n",
      "          'sitting': 1,\n",
      "          'top': 1,\n",
      "          'world': 1,\n",
      "          'shane': 1,\n",
      "          'holds': 1,\n",
      "          'title': 1,\n",
      "          'meanest': 1,\n",
      "          'disrespectful': 1,\n",
      "          'soul': 1,\n",
      "          'neveryone': 1,\n",
      "          'hates': 1,\n",
      "          'everyone': 1,\n",
      "          'envies': 1,\n",
      "          'due': 1,\n",
      "          'popularity': 1,\n",
      "          'leader': 1,\n",
      "          'clique': 1,\n",
      "          'includes': 1,\n",
      "          'purr': 1,\n",
      "          'charlotte': 1,\n",
      "          'roldan': 1,\n",
      "          'nit': 1,\n",
      "          'lizs': 1,\n",
      "          'seventeenth': 1,\n",
      "          'courtney': 1,\n",
      "          'concur': 1,\n",
      "          'play': 1,\n",
      "          'seemingly': 1,\n",
      "          'results': 1,\n",
      "          'njust': 1,\n",
      "          'stupid': 1,\n",
      "          'teens': 1,\n",
      "          'foursome': 1,\n",
      "          'decide': 1,\n",
      "          'cover': 1,\n",
      "          'make': 1,\n",
      "          'look': 1,\n",
      "          'murder': 1,\n",
      "          'committed': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'agree': 1,\n",
      "          'hiding': 1,\n",
      "          'finally': 1,\n",
      "          'witness': 1,\n",
      "          'outside': 1,\n",
      "          'hide': 1,\n",
      "          'truth': 1,\n",
      "          'nthis': 1,\n",
      "          'fern': 1,\n",
      "          'mayo': 1,\n",
      "          'judy': 1,\n",
      "          'subject': 1,\n",
      "          'many': 1,\n",
      "          'cracks': 1,\n",
      "          'courtneys': 1,\n",
      "          'entire': 1,\n",
      "          'nfrom': 1,\n",
      "          'predictable': 1,\n",
      "          'revenge': 1,\n",
      "          'morals': 1,\n",
      "          'least': 1,\n",
      "          'right': 1,\n",
      "          'thing': 1,\n",
      "          'nnot': 1,\n",
      "          'weak': 1,\n",
      "          'whole': 1,\n",
      "          'horrid': 1,\n",
      "          'thanks': 1,\n",
      "          'large': 1,\n",
      "          'amount': 1,\n",
      "          'main': 1,\n",
      "          'cast': 1,\n",
      "          'njudy': 1,\n",
      "          'awful': 1,\n",
      "          'overacts': 1,\n",
      "          'every': 1,\n",
      "          'nalso': 1,\n",
      "          'almost': 1,\n",
      "          'falling': 1,\n",
      "          'factor': 1,\n",
      "          'delivers': 1,\n",
      "          'non': 1,\n",
      "          'positive': 1,\n",
      "          'performs': 1,\n",
      "          'doesnt': 1,\n",
      "          'match': 1,\n",
      "          'clever': 1,\n",
      "          'performance': 1,\n",
      "          'tatum': 1,\n",
      "          '1996s': 1,\n",
      "          'scream': 1,\n",
      "          'nmcgowans': 1,\n",
      "          'role': 1,\n",
      "          'adds': 1,\n",
      "          'nshe': 1,\n",
      "          'mean': 1,\n",
      "          'though': 1,\n",
      "          'wellwritten': 1,\n",
      "          'downright': 1,\n",
      "          'hate': 1,\n",
      "          'nfaring': 1,\n",
      "          'better': 1,\n",
      "          'exceptionally': 1,\n",
      "          'believable': 1,\n",
      "          'nwhen': 1,\n",
      "          'feeds': 1,\n",
      "          'two': 1,\n",
      "          'putting': 1,\n",
      "          'emotion': 1,\n",
      "          'power': 1,\n",
      "          'ngayheart': 1,\n",
      "          'isnt': 1,\n",
      "          'given': 1,\n",
      "          'much': 1,\n",
      "          '1998s': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'still': 1,\n",
      "          'taste': 1,\n",
      "          'skills': 1,\n",
      "          'drifts': 1,\n",
      "          'mianders': 1,\n",
      "          'different': 1,\n",
      "          'sub': 1,\n",
      "          'plots': 1,\n",
      "          'throughout': 1,\n",
      "          'hardly': 1,\n",
      "          'throwing': 1,\n",
      "          'viewer': 1,\n",
      "          'absorbed': 1,\n",
      "          'nwe': 1,\n",
      "          'way': 1,\n",
      "          'topic': 1,\n",
      "          'incident': 1,\n",
      "          'things': 1,\n",
      "          'actual': 1,\n",
      "          'beginning': 1,\n",
      "          'ending': 1,\n",
      "          'middle': 1,\n",
      "          'needs': 1,\n",
      "          'lot': 1,\n",
      "          'help': 1,\n",
      "          'nduring': 1,\n",
      "          'body': 1,\n",
      "          'movie': 1,\n",
      "          'repetitive': 1,\n",
      "          'never': 1,\n",
      "          'progressing': 1,\n",
      "          'towards': 1,\n",
      "          'conclusion': 1,\n",
      "          'nnothing': 1,\n",
      "          'grab': 1,\n",
      "          'viewers': 1,\n",
      "          'interest': 1,\n",
      "          'around': 1,\n",
      "          'extremely': 1,\n",
      "          'song': 1,\n",
      "          'plays': 1,\n",
      "          'tries': 1,\n",
      "          'humor': 1,\n",
      "          'used': 1,\n",
      "          '1995': 1,\n",
      "          'clueless': 1,\n",
      "          'falls': 1,\n",
      "          'flat': 1,\n",
      "          'gags': 1,\n",
      "          'actually': 1,\n",
      "          'work': 1,\n",
      "          'quickly': 1,\n",
      "          'bang': 1,\n",
      "          'nall': 1,\n",
      "          'horrible': 1,\n",
      "          'disappointment': 1,\n",
      "          'bottom': 1,\n",
      "          'tagline': 1,\n",
      "          'reads': 1,\n",
      "          'sweetest': 1,\n",
      "          'candies': 1,\n",
      "          'sour': 1,\n",
      "          'inside': 1,\n",
      "          'nyes': 1,\n",
      "          'true': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'good': 1,\n",
      "          'may': 1,\n",
      "          'looked': 1,\n",
      "          'fails': 1,\n",
      "          'deliver': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'good': 12,\n",
      "          'bad': 11,\n",
      "          'movie': 10,\n",
      "          'nthe': 6,\n",
      "          'really': 6,\n",
      "          'one': 5,\n",
      "          'performance': 5,\n",
      "          'get': 5,\n",
      "          'movies': 4,\n",
      "          'would': 4,\n",
      "          'unfunny': 4,\n",
      "          'doesnt': 4,\n",
      "          'chris': 4,\n",
      "          'odonnell': 4,\n",
      "          'seems': 4,\n",
      "          'even': 4,\n",
      "          'minutes': 4,\n",
      "          'time': 4,\n",
      "          'well': 3,\n",
      "          'like': 3,\n",
      "          'year': 3,\n",
      "          'bachelor': 3,\n",
      "          'give': 3,\n",
      "          'two': 3,\n",
      "          'date': 3,\n",
      "          'jimmie': 3,\n",
      "          'anne': 3,\n",
      "          'wants': 3,\n",
      "          'nhe': 3,\n",
      "          'help': 3,\n",
      "          'money': 3,\n",
      "          'neven': 3,\n",
      "          'old': 3,\n",
      "          'funny': 3,\n",
      "          'terrible': 3,\n",
      "          'film': 3,\n",
      "          'another': 2,\n",
      "          'acting': 2,\n",
      "          'work': 2,\n",
      "          'levels': 2,\n",
      "          'fact': 2,\n",
      "          'rene': 2,\n",
      "          'zellwegar': 2,\n",
      "          'brooke': 2,\n",
      "          'shields': 2,\n",
      "          'mariah': 2,\n",
      "          'carey': 2,\n",
      "          'also': 2,\n",
      "          'worst': 2,\n",
      "          'stupid': 2,\n",
      "          'plot': 2,\n",
      "          'shelton': 2,\n",
      "          'hit': 2,\n",
      "          'three': 2,\n",
      "          'little': 2,\n",
      "          'marry': 2,\n",
      "          'nothing': 2,\n",
      "          'could': 2,\n",
      "          'romantic': 2,\n",
      "          'roles': 2,\n",
      "          'lange': 2,\n",
      "          'hal': 2,\n",
      "          'holbrook': 2,\n",
      "          'anser': 2,\n",
      "          'idea': 2,\n",
      "          'five': 2,\n",
      "          'dialogue': 2,\n",
      "          'dont': 2,\n",
      "          'though': 2,\n",
      "          'gave': 2,\n",
      "          'showed': 2,\n",
      "          'cant': 2,\n",
      "          'think': 2,\n",
      "          'nits': 2,\n",
      "          'career': 2,\n",
      "          'back': 2,\n",
      "          'filmmakers': 2,\n",
      "          'want': 2,\n",
      "          'parts': 2,\n",
      "          'sure': 2,\n",
      "          'thier': 2,\n",
      "          'goes': 1,\n",
      "          'nsadly': 1,\n",
      "          'wasnt': 1,\n",
      "          'nthis': 1,\n",
      "          'almost': 1,\n",
      "          'omega': 1,\n",
      "          'code': 1,\n",
      "          'quite': 1,\n",
      "          'nfrom': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'feeling': 1,\n",
      "          'guess': 1,\n",
      "          'right': 1,\n",
      "          'nwith': 1,\n",
      "          'excuses': 1,\n",
      "          'horrible': 1,\n",
      "          'screenplay': 1,\n",
      "          'straightout': 1,\n",
      "          'direction': 1,\n",
      "          'terribly': 1,\n",
      "          'accept': 1,\n",
      "          'cameos': 1,\n",
      "          'best': 1,\n",
      "          'troubled': 1,\n",
      "          'start': 1,\n",
      "          'hugely': 1,\n",
      "          'miscast': 1,\n",
      "          'gives': 1,\n",
      "          'performances': 1,\n",
      "          'nhere': 1,\n",
      "          'plays': 1,\n",
      "          'man': 1,\n",
      "          'broken': 1,\n",
      "          'girlfriend': 1,\n",
      "          'meets': 1,\n",
      "          'instantly': 1,\n",
      "          'together': 1,\n",
      "          'years': 1,\n",
      "          'njimmie': 1,\n",
      "          'decides': 1,\n",
      "          'bring': 1,\n",
      "          'relationship': 1,\n",
      "          'bit': 1,\n",
      "          'realize': 1,\n",
      "          'thinks': 1,\n",
      "          'never': 1,\n",
      "          'catch': 1,\n",
      "          'nso': 1,\n",
      "          'proposes': 1,\n",
      "          'way': 1,\n",
      "          'shoots': 1,\n",
      "          'mad': 1,\n",
      "          'course': 1,\n",
      "          'tries': 1,\n",
      "          'apologize': 1,\n",
      "          'nthen': 1,\n",
      "          'grandfather': 1,\n",
      "          'dies': 1,\n",
      "          'learns': 1,\n",
      "          'left': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'nlong': 1,\n",
      "          'marries': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          '6': 1,\n",
      "          '05': 1,\n",
      "          'pm': 1,\n",
      "          'nnow': 1,\n",
      "          'must': 1,\n",
      "          'find': 1,\n",
      "          'try': 1,\n",
      "          'loves': 1,\n",
      "          'married': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'leading': 1,\n",
      "          'predictable': 1,\n",
      "          'ending': 1,\n",
      "          'leaves': 1,\n",
      "          'taste': 1,\n",
      "          'mouths': 1,\n",
      "          'nok': 1,\n",
      "          'maybe': 1,\n",
      "          'dumbest': 1,\n",
      "          'cliched': 1,\n",
      "          'silliest': 1,\n",
      "          'comedy': 1,\n",
      "          'real': 1,\n",
      "          'big': 1,\n",
      "          'laughs': 1,\n",
      "          'supporting': 1,\n",
      "          'artie': 1,\n",
      "          'ed': 1,\n",
      "          'arent': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'less': 1,\n",
      "          'choppy': 1,\n",
      "          'directing': 1,\n",
      "          'things': 1,\n",
      "          'ok': 1,\n",
      "          'batman': 1,\n",
      "          'remotely': 1,\n",
      "          'wanted': 1,\n",
      "          'boo': 1,\n",
      "          'throw': 1,\n",
      "          'pop': 1,\n",
      "          'screen': 1,\n",
      "          'rid': 1,\n",
      "          'nrene': 1,\n",
      "          'zelweggar': 1,\n",
      "          'different': 1,\n",
      "          'story': 1,\n",
      "          'charming': 1,\n",
      "          'sweet': 1,\n",
      "          'likable': 1,\n",
      "          'usual': 1,\n",
      "          'thing': 1,\n",
      "          'saved': 1,\n",
      "          'confused': 1,\n",
      "          'total': 1,\n",
      "          'huge': 1,\n",
      "          'washout': 1,\n",
      "          'nher': 1,\n",
      "          'sister': 1,\n",
      "          'played': 1,\n",
      "          'marley': 1,\n",
      "          'chemistry': 1,\n",
      "          'onscreen': 1,\n",
      "          'nbrooke': 1,\n",
      "          'bigheaded': 1,\n",
      "          'mogul': 1,\n",
      "          'became': 1,\n",
      "          'routine': 1,\n",
      "          'none': 1,\n",
      "          'seen': 1,\n",
      "          'stuff': 1,\n",
      "          'original': 1,\n",
      "          'end': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'due': 1,\n",
      "          'cliches': 1,\n",
      "          'typicalness': 1,\n",
      "          'works': 1,\n",
      "          'ned': 1,\n",
      "          'wasted': 1,\n",
      "          'act': 1,\n",
      "          'save': 1,\n",
      "          'soul': 1,\n",
      "          'dispite': 1,\n",
      "          'terrific': 1,\n",
      "          'music': 1,\n",
      "          'nchris': 1,\n",
      "          'actor': 1,\n",
      "          'casper': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'saying': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'held': 1,\n",
      "          'character': 1,\n",
      "          'much': 1,\n",
      "          'first': 1,\n",
      "          '30': 1,\n",
      "          'gets': 1,\n",
      "          'annoying': 1,\n",
      "          'nartie': 1,\n",
      "          'trying': 1,\n",
      "          'farley': 1,\n",
      "          'completely': 1,\n",
      "          'unnerving': 1,\n",
      "          'nwhy': 1,\n",
      "          'waste': 1,\n",
      "          'cast': 1,\n",
      "          'question': 1,\n",
      "          'know': 1,\n",
      "          'nmaybe': 1,\n",
      "          'thought': 1,\n",
      "          'become': 1,\n",
      "          'critical': 1,\n",
      "          'success': 1,\n",
      "          'sometimes': 1,\n",
      "          'agree': 1,\n",
      "          'critics': 1,\n",
      "          'trailers': 1,\n",
      "          'made': 1,\n",
      "          'look': 1,\n",
      "          'mildly': 1,\n",
      "          'based': 1,\n",
      "          '1925': 1,\n",
      "          'silent': 1,\n",
      "          'seven': 1,\n",
      "          'chances': 1,\n",
      "          'better': 1,\n",
      "          'mess': 1,\n",
      "          'may': 1,\n",
      "          'see': 1,\n",
      "          'pull': 1,\n",
      "          'hair': 1,\n",
      "          'scream': 1,\n",
      "          'nbesides': 1,\n",
      "          'nit': 1,\n",
      "          'worth': 1,\n",
      "          'recommending': 1,\n",
      "          'therefore': 1,\n",
      "          'recommend': 1,\n",
      "          'ni': 1,\n",
      "          'laughed': 1,\n",
      "          'times': 1,\n",
      "          'running': 1,\n",
      "          '106': 1,\n",
      "          'wayyyy': 1,\n",
      "          'needs': 1,\n",
      "          'shortened': 1,\n",
      "          'least': 1,\n",
      "          'thirty': 1,\n",
      "          'nparts': 1,\n",
      "          'go': 1,\n",
      "          'forever': 1,\n",
      "          'seem': 1,\n",
      "          'last': 1,\n",
      "          'enough': 1,\n",
      "          'nbeing': 1,\n",
      "          'hope': 1,\n",
      "          'make': 1,\n",
      "          'anymore': 1,\n",
      "          'comedies': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'webb': 18,\n",
      "          'movie': 10,\n",
      "          'one': 10,\n",
      "          'owens': 8,\n",
      "          'nthe': 6,\n",
      "          'n': 5,\n",
      "          'scene': 5,\n",
      "          'jack': 4,\n",
      "          'webbs': 4,\n",
      "          'would': 4,\n",
      "          'ni': 4,\n",
      "          'nwebb': 4,\n",
      "          'girl': 4,\n",
      "          'dragnet': 3,\n",
      "          'least': 3,\n",
      "          'like': 3,\n",
      "          'im': 3,\n",
      "          'nhe': 3,\n",
      "          'gives': 3,\n",
      "          'nthis': 3,\n",
      "          'way': 3,\n",
      "          'man': 3,\n",
      "          'doesnt': 3,\n",
      "          'killed': 3,\n",
      "          'little': 3,\n",
      "          'hes': 3,\n",
      "          'male': 3,\n",
      "          'flea': 3,\n",
      "          'sir': 3,\n",
      "          'year': 2,\n",
      "          'laughs': 2,\n",
      "          'military': 2,\n",
      "          'hilarious': 2,\n",
      "          'nfor': 2,\n",
      "          'got': 2,\n",
      "          'speeches': 2,\n",
      "          'seriousness': 2,\n",
      "          'think': 2,\n",
      "          'ever': 2,\n",
      "          'old': 2,\n",
      "          'nin': 2,\n",
      "          'another': 2,\n",
      "          'card': 2,\n",
      "          'much': 2,\n",
      "          'goes': 2,\n",
      "          'first': 2,\n",
      "          'even': 2,\n",
      "          'half': 2,\n",
      "          'make': 2,\n",
      "          'private': 2,\n",
      "          'local': 2,\n",
      "          'captain': 2,\n",
      "          'days': 2,\n",
      "          'marine': 2,\n",
      "          'lace': 2,\n",
      "          'panties': 2,\n",
      "          'focus': 2,\n",
      "          'making': 2,\n",
      "          'life': 2,\n",
      "          'watching': 2,\n",
      "          'talking': 2,\n",
      "          'youll': 2,\n",
      "          'every': 2,\n",
      "          'time': 2,\n",
      "          'youre': 2,\n",
      "          'na': 2,\n",
      "          'around': 2,\n",
      "          'couldnt': 2,\n",
      "          'lines': 2,\n",
      "          'orders': 2,\n",
      "          'tomato': 2,\n",
      "          'juice': 2,\n",
      "          'woman': 2,\n",
      "          'also': 2,\n",
      "          'aint': 2,\n",
      "          'memorable': 2,\n",
      "          'jealous': 2,\n",
      "          'later': 2,\n",
      "          'store': 2,\n",
      "          'know': 2,\n",
      "          'entire': 2,\n",
      "          'platoon': 2,\n",
      "          'replies': 2,\n",
      "          'marines': 2,\n",
      "          'tell': 2,\n",
      "          'inner': 1,\n",
      "          'flag': 1,\n",
      "          'halfmast': 1,\n",
      "          'last': 1,\n",
      "          'nick': 1,\n",
      "          'nite': 1,\n",
      "          'pulled': 1,\n",
      "          'reruns': 1,\n",
      "          'air': 1,\n",
      "          'nsure': 1,\n",
      "          'id': 1,\n",
      "          'seen': 1,\n",
      "          'could': 1,\n",
      "          'always': 1,\n",
      "          'count': 1,\n",
      "          'inadvertent': 1,\n",
      "          'ultraserious': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'tv': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'circulation': 1,\n",
      "          'moment': 1,\n",
      "          'antifans': 1,\n",
      "          'still': 1,\n",
      "          '50s': 1,\n",
      "          'propaganda': 1,\n",
      "          'piece': 1,\n",
      "          'almost': 1,\n",
      "          'famous': 1,\n",
      "          'blue': 1,\n",
      "          'boy': 1,\n",
      "          'episode': 1,\n",
      "          'anyone': 1,\n",
      "          'rapidfire': 1,\n",
      "          'straightfaced': 1,\n",
      "          'nas': 1,\n",
      "          'happen': 1,\n",
      "          'sgt': 1,\n",
      "          'njoe': 1,\n",
      "          'friday': 1,\n",
      "          'enlisted': 1,\n",
      "          'plays': 1,\n",
      "          'exactly': 1,\n",
      "          'character': 1,\n",
      "          'nononsense': 1,\n",
      "          'fart': 1,\n",
      "          'looks': 1,\n",
      "          'disdain': 1,\n",
      "          'younger': 1,\n",
      "          'generation': 1,\n",
      "          'loves': 1,\n",
      "          'give': 1,\n",
      "          'long': 1,\n",
      "          'winded': 1,\n",
      "          'melodramatic': 1,\n",
      "          'topic': 1,\n",
      "          'election': 1,\n",
      "          'convinced': 1,\n",
      "          'bob': 1,\n",
      "          'dole': 1,\n",
      "          'separated': 1,\n",
      "          'birth': 1,\n",
      "          'opens': 1,\n",
      "          'characteristic': 1,\n",
      "          'fashion': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'recruit': 1,\n",
      "          'knocks': 1,\n",
      "          'office': 1,\n",
      "          'door': 1,\n",
      "          'enters': 1,\n",
      "          'different': 1,\n",
      "          'series': 1,\n",
      "          'cranky': 1,\n",
      "          'criticisms': 1,\n",
      "          'credits': 1,\n",
      "          'come': 1,\n",
      "          'produced': 1,\n",
      "          'directed': 1,\n",
      "          'pretty': 1,\n",
      "          'without': 1,\n",
      "          'saying': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'chewing': 1,\n",
      "          'recruits': 1,\n",
      "          'reason': 1,\n",
      "          'wondering': 1,\n",
      "          'plot': 1,\n",
      "          'certainly': 1,\n",
      "          'entertained': 1,\n",
      "          'hour': 1,\n",
      "          'trademark': 1,\n",
      "          'rants': 1,\n",
      "          'ngives': 1,\n",
      "          'us': 1,\n",
      "          'nwebbs': 1,\n",
      "          'mission': 1,\n",
      "          'screwup': 1,\n",
      "          'three': 1,\n",
      "          'convert': 1,\n",
      "          'material': 1,\n",
      "          'personally': 1,\n",
      "          'cut': 1,\n",
      "          'ship': 1,\n",
      "          'whether': 1,\n",
      "          'part': 1,\n",
      "          'refers': 1,\n",
      "          'remains': 1,\n",
      "          'unanswered': 1,\n",
      "          'course': 1,\n",
      "          'excuse': 1,\n",
      "          'crotchety': 1,\n",
      "          'energy': 1,\n",
      "          'living': 1,\n",
      "          'hell': 1,\n",
      "          'havent': 1,\n",
      "          'indoctrinated': 1,\n",
      "          'pleasures': 1,\n",
      "          'heres': 1,\n",
      "          'reprint': 1,\n",
      "          'typical': 1,\n",
      "          'monologue': 1,\n",
      "          'cant': 1,\n",
      "          'duplicate': 1,\n",
      "          'delivery': 1,\n",
      "          'paper': 1,\n",
      "          'words': 1,\n",
      "          'partially': 1,\n",
      "          'convey': 1,\n",
      "          'listen': 1,\n",
      "          'youngster': 1,\n",
      "          'nsomeday': 1,\n",
      "          'wake': 1,\n",
      "          'fighting': 1,\n",
      "          'beach': 1,\n",
      "          'pray': 1,\n",
      "          'god': 1,\n",
      "          'somebody': 1,\n",
      "          'get': 1,\n",
      "          'foolishness': 1,\n",
      "          'nive': 1,\n",
      "          'headline': 1,\n",
      "          'mistakes': 1,\n",
      "          'gon': 1,\n",
      "          'turn': 1,\n",
      "          'ill': 1,\n",
      "          'standing': 1,\n",
      "          'right': 1,\n",
      "          'write': 1,\n",
      "          'reprintable': 1,\n",
      "          'dialogue': 1,\n",
      "          'nearly': 1,\n",
      "          'belongs': 1,\n",
      "          'bad': 1,\n",
      "          'hall': 1,\n",
      "          'fame': 1,\n",
      "          'tried': 1,\n",
      "          'include': 1,\n",
      "          'noteworthy': 1,\n",
      "          'unwinds': 1,\n",
      "          'hard': 1,\n",
      "          'work': 1,\n",
      "          'going': 1,\n",
      "          'bar': 1,\n",
      "          'meets': 1,\n",
      "          'coincidentally': 1,\n",
      "          'walks': 1,\n",
      "          'away': 1,\n",
      "          'typicallystimulating': 1,\n",
      "          'conversation': 1,\n",
      "          'flirt': 1,\n",
      "          'archrival': 1,\n",
      "          'marches': 1,\n",
      "          'table': 1,\n",
      "          'gets': 1,\n",
      "          'face': 1,\n",
      "          'says': 1,\n",
      "          'kind': 1,\n",
      "          'dame': 1,\n",
      "          'nbogart': 1,\n",
      "          'ngets': 1,\n",
      "          'nonwebb': 1,\n",
      "          'confesses': 1,\n",
      "          'damn': 1,\n",
      "          'good': 1,\n",
      "          'guess': 1,\n",
      "          'njoin': 1,\n",
      "          'club': 1,\n",
      "          'women': 1,\n",
      "          'showcased': 1,\n",
      "          'amusingly': 1,\n",
      "          'finds': 1,\n",
      "          'womans': 1,\n",
      "          'place': 1,\n",
      "          'employment': 1,\n",
      "          'lingerie': 1,\n",
      "          'stands': 1,\n",
      "          'looking': 1,\n",
      "          'incredibly': 1,\n",
      "          'flustered': 1,\n",
      "          'negligees': 1,\n",
      "          'display': 1,\n",
      "          'expect': 1,\n",
      "          'talk': 1,\n",
      "          '_here_': 1,\n",
      "          'exclaims': 1,\n",
      "          'doubt': 1,\n",
      "          'intimidated': 1,\n",
      "          'barrage': 1,\n",
      "          'bras': 1,\n",
      "          'help': 1,\n",
      "          'customer': 1,\n",
      "          'leaving': 1,\n",
      "          'fend': 1,\n",
      "          'palace': 1,\n",
      "          'estrogen': 1,\n",
      "          'spots': 1,\n",
      "          'demands': 1,\n",
      "          'arent': 1,\n",
      "          'reply': 1,\n",
      "          'thinking': 1,\n",
      "          'head': 1,\n",
      "          'odd': 1,\n",
      "          'species': 1,\n",
      "          'human': 1,\n",
      "          'small': 1,\n",
      "          'nmust': 1,\n",
      "          'children': 1,\n",
      "          'everyones': 1,\n",
      "          'poor': 1,\n",
      "          'scarred': 1,\n",
      "          'early': 1,\n",
      "          'encounter': 1,\n",
      "          'swear': 1,\n",
      "          'gender': 1,\n",
      "          'entirely': 1,\n",
      "          'many': 1,\n",
      "          'lesbian': 1,\n",
      "          'conversions': 1,\n",
      "          'responsible': 1,\n",
      "          'closely': 1,\n",
      "          'romance': 1,\n",
      "          'continues': 1,\n",
      "          'subplot': 1,\n",
      "          'probably': 1,\n",
      "          'forces': 1,\n",
      "          'spend': 1,\n",
      "          'night': 1,\n",
      "          'searching': 1,\n",
      "          'ground': 1,\n",
      "          'drills': 1,\n",
      "          'nafter': 1,\n",
      "          'two': 1,\n",
      "          'privates': 1,\n",
      "          'hatch': 1,\n",
      "          'scheme': 1,\n",
      "          'present': 1,\n",
      "          'wrong': 1,\n",
      "          'dead': 1,\n",
      "          'asks': 1,\n",
      "          'female': 1,\n",
      "          'nowens': 1,\n",
      "          'yells': 1,\n",
      "          'nthat': 1,\n",
      "          'along': 1,\n",
      "          'rest': 1,\n",
      "          'intended': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'defies': 1,\n",
      "          'comment': 1,\n",
      "          'nbut': 1,\n",
      "          'presented': 1,\n",
      "          'utmost': 1,\n",
      "          'title': 1,\n",
      "          'end': 1,\n",
      "          'thanks': 1,\n",
      "          'cooperation': 1,\n",
      "          'iwo': 1,\n",
      "          'jima': 1,\n",
      "          'guadalcanal': 1,\n",
      "          'major': 1,\n",
      "          'battle': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'held': 1,\n",
      "          'high': 1,\n",
      "          'esteem': 1,\n",
      "          'soldiers': 1,\n",
      "          'exception': 1,\n",
      "          'played': 1,\n",
      "          'actual': 1,\n",
      "          'nsomeone': 1,\n",
      "          'wanting': 1,\n",
      "          'parody': 1,\n",
      "          'comical': 1,\n",
      "          'job': 1,\n",
      "          'nit': 1,\n",
      "          'makes': 1,\n",
      "          'ironic': 1,\n",
      "          'raeeyain': 1,\n",
      "          'wedding': 1,\n",
      "          'day': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'ntheres': 1,\n",
      "          'guys': 1,\n",
      "          'break': 1,\n",
      "          'discussing': 1,\n",
      "          'something': 1,\n",
      "          'breaks': 1,\n",
      "          'laughter': 1,\n",
      "          'bursts': 1,\n",
      "          'room': 1,\n",
      "          'shouts': 1,\n",
      "          'laughing': 1,\n",
      "          'nto': 1,\n",
      "          'nineyearold': 1,\n",
      "          'girls': 1,\n",
      "          'laugh': 1,\n",
      "          'nand': 1,\n",
      "          'let': 1,\n",
      "          'happy': 1,\n",
      "          'nineyear': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'frank': 5,\n",
      "          'voice': 4,\n",
      "          'osmosis': 4,\n",
      "          'jones': 4,\n",
      "          'farrellys': 3,\n",
      "          'bill': 2,\n",
      "          'murray': 2,\n",
      "          'city': 2,\n",
      "          'one': 2,\n",
      "          'nthe': 2,\n",
      "          'animated': 2,\n",
      "          'animation': 2,\n",
      "          'drix': 2,\n",
      "          'hyde': 2,\n",
      "          'pierce': 2,\n",
      "          'capsule': 2,\n",
      "          'thrax': 2,\n",
      "          'nwhile': 2,\n",
      "          'story': 2,\n",
      "          'like': 2,\n",
      "          'joke': 2,\n",
      "          'watching': 2,\n",
      "          'family': 2,\n",
      "          'audience': 2,\n",
      "          'detorris': 1,\n",
      "          'single': 1,\n",
      "          'dad': 1,\n",
      "          'lives': 1,\n",
      "          'beer': 1,\n",
      "          'junk': 1,\n",
      "          'food': 1,\n",
      "          'apparent': 1,\n",
      "          'understanding': 1,\n",
      "          'sanitation': 1,\n",
      "          'hygiene': 1,\n",
      "          'much': 1,\n",
      "          'dismay': 1,\n",
      "          'preteen': 1,\n",
      "          'daughter': 1,\n",
      "          'shane': 1,\n",
      "          'elena': 1,\n",
      "          'franklin': 1,\n",
      "          'nwhen': 1,\n",
      "          'uses': 1,\n",
      "          '10': 1,\n",
      "          'second': 1,\n",
      "          'rule': 1,\n",
      "          'retrieve': 1,\n",
      "          'hard': 1,\n",
      "          'boiled': 1,\n",
      "          'egg': 1,\n",
      "          'chimps': 1,\n",
      "          'cage': 1,\n",
      "          'zoo': 1,\n",
      "          'downs': 1,\n",
      "          'introduces': 1,\n",
      "          'lethal': 1,\n",
      "          'bacteria': 1,\n",
      "          'system': 1,\n",
      "          'ninside': 1,\n",
      "          'skin': 1,\n",
      "          'turmoil': 1,\n",
      "          'thanks': 1,\n",
      "          'votepandering': 1,\n",
      "          'mayor': 1,\n",
      "          'phlegmming': 1,\n",
      "          'william': 1,\n",
      "          'shatner': 1,\n",
      "          'pd': 1,\n",
      "          'white': 1,\n",
      "          'blood': 1,\n",
      "          'cell': 1,\n",
      "          'chris': 1,\n",
      "          'rock': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'peter': 1,\n",
      "          'bobby': 1,\n",
      "          'brightly': 1,\n",
      "          'directed': 1,\n",
      "          'piet': 1,\n",
      "          'kroon': 1,\n",
      "          'tom': 1,\n",
      "          'sito': 1,\n",
      "          'cellular': 1,\n",
      "          'municipality': 1,\n",
      "          'typical': 1,\n",
      "          'rogue': 1,\n",
      "          'cop': 1,\n",
      "          'looking': 1,\n",
      "          'another': 1,\n",
      "          'chance': 1,\n",
      "          'nhes': 1,\n",
      "          'inadvertently': 1,\n",
      "          'teamed': 1,\n",
      "          'david': 1,\n",
      "          'tvs': 1,\n",
      "          'frasier': 1,\n",
      "          'cold': 1,\n",
      "          '12': 1,\n",
      "          'hours': 1,\n",
      "          'worth': 1,\n",
      "          'painkillers': 1,\n",
      "          'dispense': 1,\n",
      "          'nthis': 1,\n",
      "          'quarrelling': 1,\n",
      "          'duo': 1,\n",
      "          'go': 1,\n",
      "          'fantastic': 1,\n",
      "          'voyage': 1,\n",
      "          'order': 1,\n",
      "          'hunt': 1,\n",
      "          'laurence': 1,\n",
      "          'fishburne': 1,\n",
      "          'virus': 1,\n",
      "          'intent': 1,\n",
      "          'shutting': 1,\n",
      "          'certainly': 1,\n",
      "          'colorful': 1,\n",
      "          'look': 1,\n",
      "          'hackneyed': 1,\n",
      "          'cries': 1,\n",
      "          'puny': 1,\n",
      "          'puns': 1,\n",
      "          'get': 1,\n",
      "          'occasional': 1,\n",
      "          'sprinklings': 1,\n",
      "          'wit': 1,\n",
      "          'bodily': 1,\n",
      "          'humor': 1,\n",
      "          'graduated': 1,\n",
      "          'phi': 1,\n",
      "          'beta': 1,\n",
      "          'departs': 1,\n",
      "          'bus': 1,\n",
      "          'headed': 1,\n",
      "          'bladder': 1,\n",
      "          'nneither': 1,\n",
      "          'hero': 1,\n",
      "          'villain': 1,\n",
      "          'particularly': 1,\n",
      "          'interesting': 1,\n",
      "          'looks': 1,\n",
      "          'predator': 1,\n",
      "          'although': 1,\n",
      "          'delightful': 1,\n",
      "          'sidekick': 1,\n",
      "          'nadults': 1,\n",
      "          'desperately': 1,\n",
      "          'keep': 1,\n",
      "          'eyes': 1,\n",
      "          'peeled': 1,\n",
      "          'small': 1,\n",
      "          'amusements': 1,\n",
      "          'animators': 1,\n",
      "          'dot': 1,\n",
      "          'along': 1,\n",
      "          'landscape': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'back': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'land': 1,\n",
      "          'reduced': 1,\n",
      "          'nothing': 1,\n",
      "          'walking': 1,\n",
      "          'grossout': 1,\n",
      "          'ntheres': 1,\n",
      "          'particular': 1,\n",
      "          'enjoyment': 1,\n",
      "          'found': 1,\n",
      "          'vomit': 1,\n",
      "          'molly': 1,\n",
      "          'shannon': 1,\n",
      "          'plays': 1,\n",
      "          'shanes': 1,\n",
      "          'teacher': 1,\n",
      "          'mrs': 1,\n",
      "          'boyd': 1,\n",
      "          'hoisting': 1,\n",
      "          'ingrown': 1,\n",
      "          'toenail': 1,\n",
      "          'onto': 1,\n",
      "          'restaurant': 1,\n",
      "          'table': 1,\n",
      "          'none': 1,\n",
      "          'must': 1,\n",
      "          'wonder': 1,\n",
      "          'climatic': 1,\n",
      "          'flatlining': 1,\n",
      "          'childs': 1,\n",
      "          'father': 1,\n",
      "          'play': 1,\n",
      "          'well': 1,\n",
      "          'nrest': 1,\n",
      "          'assured': 1,\n",
      "          'whole': 1,\n",
      "          'enchilada': 1,\n",
      "          'wrapped': 1,\n",
      "          'fart': 1,\n",
      "          'far': 1,\n",
      "          'less': 1,\n",
      "          'offensive': 1,\n",
      "          'last': 1,\n",
      "          'effort': 1,\n",
      "          'irene': 1,\n",
      "          'film': 1,\n",
      "          'least': 1,\n",
      "          'spiked': 1,\n",
      "          'comic': 1,\n",
      "          'highs': 1,\n",
      "          'jim': 1,\n",
      "          'carreys': 1,\n",
      "          'hijinx': 1,\n",
      "          'n': 1,\n",
      "          'probably': 1,\n",
      "          'ok': 1,\n",
      "          'kids': 1,\n",
      "          'playing': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'croon': 1,\n",
      "          'phil': 1,\n",
      "          'collins': 1,\n",
      "          'tune': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'willis': 4,\n",
      "          'group': 3,\n",
      "          'leap': 2,\n",
      "          'starring': 2,\n",
      "          'bruce': 2,\n",
      "          'since': 2,\n",
      "          'take': 2,\n",
      "          'goes': 2,\n",
      "          'film': 2,\n",
      "          'nthe': 2,\n",
      "          'death': 2,\n",
      "          'threats': 2,\n",
      "          'nfor': 2,\n",
      "          'jane': 2,\n",
      "          'march': 2,\n",
      "          'worst': 2,\n",
      "          'movie': 2,\n",
      "          'help': 2,\n",
      "          'awful': 2,\n",
      "          'kept': 2,\n",
      "          'straight': 2,\n",
      "          'faces': 2,\n",
      "          'filming': 2,\n",
      "          'woof': 1,\n",
      "          'bad': 1,\n",
      "          'faith': 1,\n",
      "          'title': 1,\n",
      "          '1992': 1,\n",
      "          'comedy': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'debra': 1,\n",
      "          'winger': 1,\n",
      "          'thats': 1,\n",
      "          'whats': 1,\n",
      "          'required': 1,\n",
      "          'watch': 1,\n",
      "          'incredulous': 1,\n",
      "          'howler': 1,\n",
      "          'asof': 1,\n",
      "          'thingsa': 1,\n",
      "          'psychologist': 1,\n",
      "          'nnot': 1,\n",
      "          'reagan': 1,\n",
      "          'administration': 1,\n",
      "          'acting': 1,\n",
      "          'stretch': 1,\n",
      "          'magnitude': 1,\n",
      "          'nalas': 1,\n",
      "          'mickey': 1,\n",
      "          'rourke': 1,\n",
      "          'hardly': 1,\n",
      "          'knew': 1,\n",
      "          'ye': 1,\n",
      "          'nstory': 1,\n",
      "          'opens': 1,\n",
      "          'campy': 1,\n",
      "          'kickwillis': 1,\n",
      "          'treating': 1,\n",
      "          'patient': 1,\n",
      "          'abruptly': 1,\n",
      "          'steps': 1,\n",
      "          'window': 1,\n",
      "          'best': 1,\n",
      "          'flying': 1,\n",
      "          'charles': 1,\n",
      "          'durning': 1,\n",
      "          'dove': 1,\n",
      "          'hudsucker': 1,\n",
      "          'proxy': 1,\n",
      "          'nshe': 1,\n",
      "          'splat': 1,\n",
      "          'ugh': 1,\n",
      "          'character': 1,\n",
      "          'spends': 1,\n",
      "          'rest': 1,\n",
      "          'colorblind': 1,\n",
      "          'nreally': 1,\n",
      "          'good': 1,\n",
      "          'doctor': 1,\n",
      "          'moves': 1,\n",
      "          'sunny': 1,\n",
      "          'l': 1,\n",
      "          'rooms': 1,\n",
      "          'old': 1,\n",
      "          'college': 1,\n",
      "          'chum': 1,\n",
      "          'scott': 1,\n",
      "          'bakula': 1,\n",
      "          'therapist': 1,\n",
      "          'whos': 1,\n",
      "          'getting': 1,\n",
      "          'someone': 1,\n",
      "          'monday': 1,\n",
      "          'evening': 1,\n",
      "          'nbuddy': 1,\n",
      "          'bites': 1,\n",
      "          'second': 1,\n",
      "          'reel': 1,\n",
      "          'surprise': 1,\n",
      "          'agrees': 1,\n",
      "          'troubles': 1,\n",
      "          'therapy': 1,\n",
      "          'man': 1,\n",
      "          'gets': 1,\n",
      "          'share': 1,\n",
      "          'cutfromnc17': 1,\n",
      "          'love': 1,\n",
      "          'scenes': 1,\n",
      "          'lovers': 1,\n",
      "          'dodging': 1,\n",
      "          'nails': 1,\n",
      "          'cars': 1,\n",
      "          'rattlesnakes': 1,\n",
      "          'nwhyd': 1,\n",
      "          'snakes': 1,\n",
      "          'ncolor': 1,\n",
      "          'night': 1,\n",
      "          'year': 1,\n",
      "          'nperiod': 1,\n",
      "          'nforget': 1,\n",
      "          'north': 1,\n",
      "          'clifford': 1,\n",
      "          'heaven': 1,\n",
      "          'us': 1,\n",
      "          'even': 1,\n",
      "          'deadly': 1,\n",
      "          'ground': 1,\n",
      "          'nhere': 1,\n",
      "          'misfire': 1,\n",
      "          'audaciously': 1,\n",
      "          'cant': 1,\n",
      "          'wonder': 1,\n",
      "          'actors': 1,\n",
      "          'starters': 1,\n",
      "          'collection': 1,\n",
      "          'mixed': 1,\n",
      "          'nuts': 1,\n",
      "          'better': 1,\n",
      "          'suited': 1,\n",
      "          'bob': 1,\n",
      "          'newhart': 1,\n",
      "          'nthese': 1,\n",
      "          'realistic': 1,\n",
      "          'portrayals': 1,\n",
      "          'mentally': 1,\n",
      "          'unhealthy': 1,\n",
      "          'nplaying': 1,\n",
      "          'prissy': 1,\n",
      "          'obsessivecompulsive': 1,\n",
      "          'cuckoos': 1,\n",
      "          'nest': 1,\n",
      "          'alumni': 1,\n",
      "          'brad': 1,\n",
      "          'dourif': 1,\n",
      "          'alone': 1,\n",
      "          'may': 1,\n",
      "          'set': 1,\n",
      "          'psychology': 1,\n",
      "          'profession': 1,\n",
      "          'back': 1,\n",
      "          'ten': 1,\n",
      "          'years': 1,\n",
      "          'plots': 1,\n",
      "          'wreck': 1,\n",
      "          'laughable': 1,\n",
      "          'dialogue': 1,\n",
      "          'pointless': 1,\n",
      "          'pov': 1,\n",
      "          'shifts': 1,\n",
      "          'one': 1,\n",
      "          'big': 1,\n",
      "          'secret': 1,\n",
      "          'solvable': 1,\n",
      "          'first': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'ndirector': 1,\n",
      "          'richard': 1,\n",
      "          'rush': 1,\n",
      "          'helmed': 1,\n",
      "          'freebie': 1,\n",
      "          'bean': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'mind': 1,\n",
      "          'nunfazed': 1,\n",
      "          'nincompoop': 1,\n",
      "          'plot': 1,\n",
      "          'cuckoo': 1,\n",
      "          'characterizations': 1,\n",
      "          'overfills': 1,\n",
      "          'enough': 1,\n",
      "          'canny': 1,\n",
      "          'camera': 1,\n",
      "          'shots': 1,\n",
      "          'zany': 1,\n",
      "          'setpieces': 1,\n",
      "          'make': 1,\n",
      "          'effort': 1,\n",
      "          'almost': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'nhis': 1,\n",
      "          'token': 1,\n",
      "          'freeway': 1,\n",
      "          'chase': 1,\n",
      "          'ok': 1,\n",
      "          'director': 1,\n",
      "          'fun': 1,\n",
      "          'vertiginous': 1,\n",
      "          'ending': 1,\n",
      "          'ala': 1,\n",
      "          'recently': 1,\n",
      "          'fatal': 1,\n",
      "          'analysis': 1,\n",
      "          'nacting': 1,\n",
      "          'credits': 1,\n",
      "          'acrosstheboard': 1,\n",
      "          'nwillis': 1,\n",
      "          'forgiven': 1,\n",
      "          'hes': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          '3': 1,\n",
      "          'speak': 1,\n",
      "          'nbut': 1,\n",
      "          'ruben': 1,\n",
      "          'blades': 1,\n",
      "          'insulting': 1,\n",
      "          'presence': 1,\n",
      "          'cop': 1,\n",
      "          'lesley': 1,\n",
      "          'ann': 1,\n",
      "          'warrens': 1,\n",
      "          'stereotypical': 1,\n",
      "          'sex': 1,\n",
      "          'addict': 1,\n",
      "          'offender': 1,\n",
      "          'mysterygirlwhosnorealmystery': 1,\n",
      "          'nshudder': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'ill': 1,\n",
      "          'never': 1,\n",
      "          'know': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 5,\n",
      "          'movie': 5,\n",
      "          'snipes': 5,\n",
      "          'murder': 4,\n",
      "          '1600': 4,\n",
      "          'white': 4,\n",
      "          'house': 4,\n",
      "          'nsnipes': 4,\n",
      "          'every': 3,\n",
      "          'lame': 3,\n",
      "          'action': 3,\n",
      "          'head': 3,\n",
      "          'security': 3,\n",
      "          'lane': 3,\n",
      "          'doesnt': 3,\n",
      "          'presidential': 2,\n",
      "          'like': 2,\n",
      "          'get': 2,\n",
      "          'conspiracy': 2,\n",
      "          'nin': 2,\n",
      "          'old': 2,\n",
      "          'flick': 2,\n",
      "          'time': 2,\n",
      "          'nits': 2,\n",
      "          'night': 2,\n",
      "          'na': 2,\n",
      "          'nthe': 2,\n",
      "          'hotshot': 2,\n",
      "          'seen': 2,\n",
      "          'clever': 2,\n",
      "          'secret': 2,\n",
      "          'service': 2,\n",
      "          'liaison': 2,\n",
      "          'miller': 2,\n",
      "          'first': 2,\n",
      "          'break': 2,\n",
      "          'interesting': 2,\n",
      "          'never': 2,\n",
      "          'bad': 2,\n",
      "          'theres': 1,\n",
      "          'election': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'seems': 1,\n",
      "          'months': 1,\n",
      "          'another': 1,\n",
      "          'painted': 1,\n",
      "          '_the_': 1,\n",
      "          'thriller': 1,\n",
      "          'year': 1,\n",
      "          '1997': 1,\n",
      "          'weve': 1,\n",
      "          'absolute': 1,\n",
      "          'power': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'shadow': 1,\n",
      "          'nthis': 1,\n",
      "          'duck': 1,\n",
      "          'gerald': 1,\n",
      "          'ford': 1,\n",
      "          'trying': 1,\n",
      "          'bring': 1,\n",
      "          'us': 1,\n",
      "          'complex': 1,\n",
      "          'plot': 1,\n",
      "          'coverup': 1,\n",
      "          'intrigue': 1,\n",
      "          'copping': 1,\n",
      "          'rehashes': 1,\n",
      "          'standbys': 1,\n",
      "          'nheres': 1,\n",
      "          'happens': 1,\n",
      "          'secretary': 1,\n",
      "          'sex': 1,\n",
      "          'unidentified': 1,\n",
      "          'guy': 1,\n",
      "          'cute': 1,\n",
      "          'butt': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'shes': 1,\n",
      "          'dead': 1,\n",
      "          'detective': 1,\n",
      "          'wesley': 1,\n",
      "          'called': 1,\n",
      "          'nhow': 1,\n",
      "          'know': 1,\n",
      "          'hes': 1,\n",
      "          'nweve': 1,\n",
      "          'traditional': 1,\n",
      "          'opener': 1,\n",
      "          'hostage': 1,\n",
      "          'negotiation': 1,\n",
      "          'scene': 1,\n",
      "          'consisting': 1,\n",
      "          'disarming': 1,\n",
      "          'suicidal': 1,\n",
      "          'exgovernment': 1,\n",
      "          'employee': 1,\n",
      "          'holding': 1,\n",
      "          'gun': 1,\n",
      "          'middle': 1,\n",
      "          'street': 1,\n",
      "          'finds': 1,\n",
      "          'shiny': 1,\n",
      "          'bald': 1,\n",
      "          'daniel': 1,\n",
      "          'benzali': 1,\n",
      "          'wont': 1,\n",
      "          'cooperate': 1,\n",
      "          'fact': 1,\n",
      "          'intervention': 1,\n",
      "          'national': 1,\n",
      "          'adviser': 1,\n",
      "          'alan': 1,\n",
      "          'alda': 1,\n",
      "          'wouldnt': 1,\n",
      "          'allowed': 1,\n",
      "          'nalda': 1,\n",
      "          'helps': 1,\n",
      "          'assigning': 1,\n",
      "          'sexy': 1,\n",
      "          'agent': 1,\n",
      "          'diane': 1,\n",
      "          'act': 1,\n",
      "          'dangerous': 1,\n",
      "          'nwell': 1,\n",
      "          'really': 1,\n",
      "          'wanted': 1,\n",
      "          'say': 1,\n",
      "          'nalmost': 1,\n",
      "          'immediately': 1,\n",
      "          'suspect': 1,\n",
      "          'found': 1,\n",
      "          'eccentric': 1,\n",
      "          'janitor': 1,\n",
      "          'flirting': 1,\n",
      "          'deceased': 1,\n",
      "          'videos': 1,\n",
      "          'buy': 1,\n",
      "          'launches': 1,\n",
      "          'independent': 1,\n",
      "          'investigation': 1,\n",
      "          'reveals': 1,\n",
      "          'planted': 1,\n",
      "          'evidence': 1,\n",
      "          'romantic': 1,\n",
      "          'involvement': 1,\n",
      "          'presidents': 1,\n",
      "          'son': 1,\n",
      "          'partner': 1,\n",
      "          'always': 1,\n",
      "          'wisecracking': 1,\n",
      "          'dennis': 1,\n",
      "          'calls': 1,\n",
      "          'awhile': 1,\n",
      "          'news': 1,\n",
      "          'believe': 1,\n",
      "          'eventually': 1,\n",
      "          'predictably': 1,\n",
      "          'comes': 1,\n",
      "          'around': 1,\n",
      "          'risks': 1,\n",
      "          'ass': 1,\n",
      "          'social': 1,\n",
      "          'storage': 1,\n",
      "          'classified': 1,\n",
      "          'information': 1,\n",
      "          'nfor': 1,\n",
      "          'hour': 1,\n",
      "          'looks': 1,\n",
      "          'could': 1,\n",
      "          'going': 1,\n",
      "          'somewhere': 1,\n",
      "          'nsure': 1,\n",
      "          'sit': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'plenty': 1,\n",
      "          'scenes': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'makes': 1,\n",
      "          'premise': 1,\n",
      "          'quite': 1,\n",
      "          'delivered': 1,\n",
      "          'upon': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'team': 1,\n",
      "          'nothing': 1,\n",
      "          'work': 1,\n",
      "          'theyre': 1,\n",
      "          'cogs': 1,\n",
      "          'machine': 1,\n",
      "          'ndennis': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'even': 1,\n",
      "          'waste': 1,\n",
      "          'talents': 1,\n",
      "          'bordello': 1,\n",
      "          'blood': 1,\n",
      "          'thats': 1,\n",
      "          'saying': 1,\n",
      "          'lot': 1,\n",
      "          'nwhen': 1,\n",
      "          'last': 1,\n",
      "          'halfhour': 1,\n",
      "          'descended': 1,\n",
      "          'metaphorically': 1,\n",
      "          'literally': 1,\n",
      "          'wet': 1,\n",
      "          'sewer': 1,\n",
      "          'busting': 1,\n",
      "          'breakintothebuilding': 1,\n",
      "          'underground': 1,\n",
      "          'climax': 1,\n",
      "          'nand': 1,\n",
      "          'finally': 1,\n",
      "          'reveal': 1,\n",
      "          'killed': 1,\n",
      "          'woman': 1,\n",
      "          'youll': 1,\n",
      "          'wish': 1,\n",
      "          'sat': 1,\n",
      "          'movies': 1,\n",
      "          'title': 1,\n",
      "          'represent': 1,\n",
      "          'address': 1,\n",
      "          'represents': 1,\n",
      "          'number': 1,\n",
      "          'satisfied': 1,\n",
      "          'customers': 1,\n",
      "          'worldwide': 1,\n",
      "          'nserving': 1,\n",
      "          'world': 1,\n",
      "          'nearly': 1,\n",
      "          '125th': 1,\n",
      "          'century': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'bad': 5,\n",
      "          'n': 4,\n",
      "          'shes': 4,\n",
      "          'cook': 4,\n",
      "          'film': 4,\n",
      "          'time': 4,\n",
      "          'seen': 3,\n",
      "          'nand': 3,\n",
      "          'dont': 3,\n",
      "          'popular': 3,\n",
      "          'nas': 3,\n",
      "          'like': 3,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'ni': 3,\n",
      "          'never': 3,\n",
      "          'ive': 2,\n",
      "          'quite': 2,\n",
      "          'see': 2,\n",
      "          'anything': 2,\n",
      "          'equally': 2,\n",
      "          'school': 2,\n",
      "          'freddie': 2,\n",
      "          'prinze': 2,\n",
      "          'jr': 2,\n",
      "          'rachel': 2,\n",
      "          'leigh': 2,\n",
      "          'nthat': 2,\n",
      "          'storyline': 2,\n",
      "          'character': 2,\n",
      "          'good': 2,\n",
      "          'think': 2,\n",
      "          'hearing': 2,\n",
      "          'aids': 2,\n",
      "          'nthats': 2,\n",
      "          'happy': 2,\n",
      "          'ah': 1,\n",
      "          '1999': 1,\n",
      "          'going': 1,\n",
      "          'along': 1,\n",
      "          'well': 1,\n",
      "          'dubious': 1,\n",
      "          'distinction': 1,\n",
      "          'worst': 1,\n",
      "          'far': 1,\n",
      "          'year': 1,\n",
      "          'frankly': 1,\n",
      "          'doubt': 1,\n",
      "          'ill': 1,\n",
      "          'least': 1,\n",
      "          'hope': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'guy': 1,\n",
      "          'played': 1,\n",
      "          'accepts': 1,\n",
      "          'bet': 1,\n",
      "          'transform': 1,\n",
      "          'geekiest': 1,\n",
      "          'girl': 1,\n",
      "          'right': 1,\n",
      "          'problem': 1,\n",
      "          '1': 1,\n",
      "          'nhow': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'comments': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'kind': 1,\n",
      "          'pretty': 1,\n",
      "          'woman': 1,\n",
      "          'except': 1,\n",
      "          'without': 1,\n",
      "          'prostitution': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'filmmakers': 1,\n",
      "          'attempted': 1,\n",
      "          'try': 1,\n",
      "          'something': 1,\n",
      "          'new': 1,\n",
      "          'material': 1,\n",
      "          'wellworn': 1,\n",
      "          'would': 1,\n",
      "          'device': 1,\n",
      "          'propell': 1,\n",
      "          'forward': 1,\n",
      "          'though': 1,\n",
      "          'relies': 1,\n",
      "          'completely': 1,\n",
      "          'lame': 1,\n",
      "          'overused': 1,\n",
      "          'formula': 1,\n",
      "          'push': 1,\n",
      "          'ahead': 1,\n",
      "          'ntheres': 1,\n",
      "          'original': 1,\n",
      "          'interesting': 1,\n",
      "          'either': 1,\n",
      "          'wasnt': 1,\n",
      "          'enough': 1,\n",
      "          'theres': 1,\n",
      "          'performance': 1,\n",
      "          'featured': 1,\n",
      "          'star': 1,\n",
      "          'simply': 1,\n",
      "          'horrible': 1,\n",
      "          'usually': 1,\n",
      "          'get': 1,\n",
      "          'personal': 1,\n",
      "          'case': 1,\n",
      "          'needs': 1,\n",
      "          'said': 1,\n",
      "          'ncook': 1,\n",
      "          'wears': 1,\n",
      "          'expression': 1,\n",
      "          'throughout': 1,\n",
      "          'flick': 1,\n",
      "          'looks': 1,\n",
      "          'miserable': 1,\n",
      "          'convinced': 1,\n",
      "          'nerd': 1,\n",
      "          'transformation': 1,\n",
      "          'unconvincing': 1,\n",
      "          'unnecessary': 1,\n",
      "          'seems': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'saying': 1,\n",
      "          'better': 1,\n",
      "          'actor': 1,\n",
      "          'ordinarily': 1,\n",
      "          'enjoy': 1,\n",
      "          'nhe': 1,\n",
      "          'coasts': 1,\n",
      "          'socalled': 1,\n",
      "          'charm': 1,\n",
      "          'establishes': 1,\n",
      "          'real': 1,\n",
      "          'nkieren': 1,\n",
      "          'culkin': 1,\n",
      "          'brother': 1,\n",
      "          'indiscernable': 1,\n",
      "          'reason': 1,\n",
      "          'hes': 1,\n",
      "          'got': 1,\n",
      "          'nno': 1,\n",
      "          'explanation': 1,\n",
      "          'given': 1,\n",
      "          'theyre': 1,\n",
      "          'brought': 1,\n",
      "          'nwere': 1,\n",
      "          'supposed': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'wore': 1,\n",
      "          'single': 1,\n",
      "          'element': 1,\n",
      "          'offensive': 1,\n",
      "          'things': 1,\n",
      "          'long': 1,\n",
      "          'sucks': 1,\n",
      "          'boils': 1,\n",
      "          'nits': 1,\n",
      "          'entertaining': 1,\n",
      "          'even': 1,\n",
      "          'passer': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'running': 1,\n",
      "          'goes': 1,\n",
      "          'slower': 1,\n",
      "          '5': 1,\n",
      "          'minute': 1,\n",
      "          'hairremoval': 1,\n",
      "          'system': 1,\n",
      "          'informercial': 1,\n",
      "          'whats': 1,\n",
      "          'worse': 1,\n",
      "          'sends': 1,\n",
      "          'message': 1,\n",
      "          'teens': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'telling': 1,\n",
      "          'hey': 1,\n",
      "          'doesnt': 1,\n",
      "          'matter': 1,\n",
      "          'youre': 1,\n",
      "          'way': 1,\n",
      "          'unimportant': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'truly': 1,\n",
      "          'dress': 1,\n",
      "          'latest': 1,\n",
      "          'fashions': 1,\n",
      "          'act': 1,\n",
      "          'bubbleheaded': 1,\n",
      "          'moron': 1,\n",
      "          'nugh': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'reeves': 5,\n",
      "          'nthe': 5,\n",
      "          'hardball': 4,\n",
      "          'kids': 4,\n",
      "          'movie': 4,\n",
      "          'heartfelt': 3,\n",
      "          'never': 3,\n",
      "          'ni': 3,\n",
      "          'see': 3,\n",
      "          'mcglone': 3,\n",
      "          'like': 3,\n",
      "          'robbins': 2,\n",
      "          'cinematic': 2,\n",
      "          'life': 2,\n",
      "          'gambler': 2,\n",
      "          'good': 2,\n",
      "          'big': 2,\n",
      "          'game': 2,\n",
      "          'anyone': 2,\n",
      "          'thats': 2,\n",
      "          'guy': 2,\n",
      "          'cant': 2,\n",
      "          'coach': 2,\n",
      "          'baseball': 2,\n",
      "          'team': 2,\n",
      "          'nreeves': 2,\n",
      "          'maybe': 2,\n",
      "          'john': 2,\n",
      "          'moment': 2,\n",
      "          'bad': 2,\n",
      "          'characters': 2,\n",
      "          'time': 2,\n",
      "          'also': 2,\n",
      "          'dont': 2,\n",
      "          'trust': 2,\n",
      "          'seen': 2,\n",
      "          'nrobbins': 2,\n",
      "          'michael': 1,\n",
      "          'quite': 1,\n",
      "          'achievement': 1,\n",
      "          'nin': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'get': 1,\n",
      "          'glancing': 1,\n",
      "          'examination': 1,\n",
      "          'ghetto': 1,\n",
      "          'funeral': 1,\n",
      "          'eulogy': 1,\n",
      "          'speeches': 1,\n",
      "          'giving': 1,\n",
      "          'cache': 1,\n",
      "          'cute': 1,\n",
      "          'including': 1,\n",
      "          'fat': 1,\n",
      "          'one': 1,\n",
      "          'asthma': 1,\n",
      "          'hardluck': 1,\n",
      "          'finds': 1,\n",
      "          'salvation': 1,\n",
      "          'woman': 1,\n",
      "          'climactic': 1,\n",
      "          'underdogs': 1,\n",
      "          'prove': 1,\n",
      "          'bigger': 1,\n",
      "          'bite': 1,\n",
      "          'ever': 1,\n",
      "          'imagined': 1,\n",
      "          'nall': 1,\n",
      "          'needed': 1,\n",
      "          'getting': 1,\n",
      "          'hit': 1,\n",
      "          'nuts': 1,\n",
      "          'food': 1,\n",
      "          'fight': 1,\n",
      "          'first': 1,\n",
      "          'film': 1,\n",
      "          'solely': 1,\n",
      "          'based': 1,\n",
      "          'clich': 1,\n",
      "          'wait': 1,\n",
      "          'deleted': 1,\n",
      "          'scenes': 1,\n",
      "          'comes': 1,\n",
      "          'dvd': 1,\n",
      "          'nobviously': 1,\n",
      "          'strikeout': 1,\n",
      "          'gets': 1,\n",
      "          'bat': 1,\n",
      "          'anywhere': 1,\n",
      "          'near': 1,\n",
      "          'ball': 1,\n",
      "          'nit': 1,\n",
      "          'stars': 1,\n",
      "          'keanu': 1,\n",
      "          'aforementioned': 1,\n",
      "          'seems': 1,\n",
      "          'owe': 1,\n",
      "          'every': 1,\n",
      "          'bookie': 1,\n",
      "          'chicago': 1,\n",
      "          'amount': 1,\n",
      "          'money': 1,\n",
      "          'rivals': 1,\n",
      "          'gross': 1,\n",
      "          'national': 1,\n",
      "          'product': 1,\n",
      "          'guam': 1,\n",
      "          'nout': 1,\n",
      "          'solutions': 1,\n",
      "          'begs': 1,\n",
      "          'successful': 1,\n",
      "          'corporate': 1,\n",
      "          'friend': 1,\n",
      "          'always': 1,\n",
      "          'welcome': 1,\n",
      "          'mike': 1,\n",
      "          'lend': 1,\n",
      "          '5': 1,\n",
      "          '000': 1,\n",
      "          'ninstead': 1,\n",
      "          'offers': 1,\n",
      "          'chance': 1,\n",
      "          'help': 1,\n",
      "          'youth': 1,\n",
      "          'projects': 1,\n",
      "          'nice': 1,\n",
      "          'weekly': 1,\n",
      "          'stipend': 1,\n",
      "          'wants': 1,\n",
      "          'keep': 1,\n",
      "          'fingers': 1,\n",
      "          'accepts': 1,\n",
      "          'offer': 1,\n",
      "          'discovers': 1,\n",
      "          'happy': 1,\n",
      "          'let': 1,\n",
      "          'handle': 1,\n",
      "          'entirely': 1,\n",
      "          'drowsyvoiced': 1,\n",
      "          'protagonist': 1,\n",
      "          'must': 1,\n",
      "          'teach': 1,\n",
      "          'sassy': 1,\n",
      "          'inner': 1,\n",
      "          'city': 1,\n",
      "          'basics': 1,\n",
      "          'absentee': 1,\n",
      "          'parents': 1,\n",
      "          'merciless': 1,\n",
      "          'gangs': 1,\n",
      "          'nand': 1,\n",
      "          'theyll': 1,\n",
      "          'play': 1,\n",
      "          'championship': 1,\n",
      "          'none': 1,\n",
      "          'glorious': 1,\n",
      "          'surprises': 1,\n",
      "          'screenplay': 1,\n",
      "          'gatins': 1,\n",
      "          'summer': 1,\n",
      "          'catch': 1,\n",
      "          'adapted': 1,\n",
      "          'daniel': 1,\n",
      "          'coyles': 1,\n",
      "          'nonfiction': 1,\n",
      "          'book': 1,\n",
      "          'arent': 1,\n",
      "          'coasts': 1,\n",
      "          'zombie': 1,\n",
      "          'nthat': 1,\n",
      "          'wouldnt': 1,\n",
      "          'ounce': 1,\n",
      "          'subtlety': 1,\n",
      "          'humanity': 1,\n",
      "          'nmost': 1,\n",
      "          'spent': 1,\n",
      "          'yelling': 1,\n",
      "          'talking': 1,\n",
      "          'slang': 1,\n",
      "          'acting': 1,\n",
      "          'surprised': 1,\n",
      "          'ntheres': 1,\n",
      "          'little': 1,\n",
      "          'naturally': 1,\n",
      "          'amusing': 1,\n",
      "          'seem': 1,\n",
      "          'know': 1,\n",
      "          'cameras': 1,\n",
      "          'rolling': 1,\n",
      "          'worst': 1,\n",
      "          'lot': 1,\n",
      "          'toughtalking': 1,\n",
      "          'younger': 1,\n",
      "          'player': 1,\n",
      "          'dewayne': 1,\n",
      "          'warren': 1,\n",
      "          'whose': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'unfolds': 1,\n",
      "          'emotional': 1,\n",
      "          'pawn': 1,\n",
      "          'tactic': 1,\n",
      "          'utterly': 1,\n",
      "          'despicable': 1,\n",
      "          'find': 1,\n",
      "          'right': 1,\n",
      "          'words': 1,\n",
      "          'express': 1,\n",
      "          'adults': 1,\n",
      "          'fare': 1,\n",
      "          'well': 1,\n",
      "          'impressively': 1,\n",
      "          'uninspiring': 1,\n",
      "          'downonhisluck': 1,\n",
      "          'loser': 1,\n",
      "          'character': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'gives': 1,\n",
      "          'another': 1,\n",
      "          'charismafree': 1,\n",
      "          'performance': 1,\n",
      "          'nevery': 1,\n",
      "          'speaks': 1,\n",
      "          'sounds': 1,\n",
      "          'got': 1,\n",
      "          'long': 1,\n",
      "          'nap': 1,\n",
      "          'gradually': 1,\n",
      "          'waking': 1,\n",
      "          'nkids': 1,\n",
      "          'supposed': 1,\n",
      "          'rally': 1,\n",
      "          'around': 1,\n",
      "          'ndiane': 1,\n",
      "          'lane': 1,\n",
      "          'costars': 1,\n",
      "          'obligatory': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'remains': 1,\n",
      "          'glowing': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'dog': 1,\n",
      "          'skip': 1,\n",
      "          'better': 1,\n",
      "          'proof': 1,\n",
      "          'nits': 1,\n",
      "          'role': 1,\n",
      "          'consists': 1,\n",
      "          'uttering': 1,\n",
      "          'lines': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'b': 1,\n",
      "          'nsweeney': 1,\n",
      "          'evil': 1,\n",
      "          'rival': 1,\n",
      "          'hawkes': 1,\n",
      "          'scummy': 1,\n",
      "          'betting': 1,\n",
      "          'buddy': 1,\n",
      "          'unoriginal': 1,\n",
      "          'youve': 1,\n",
      "          'hope': 1,\n",
      "          'wanted': 1,\n",
      "          'varsity': 1,\n",
      "          'blues': 1,\n",
      "          'funny': 1,\n",
      "          'alternately': 1,\n",
      "          'taut': 1,\n",
      "          'tale': 1,\n",
      "          'texas': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'football': 1,\n",
      "          'ali': 1,\n",
      "          'larter': 1,\n",
      "          'smothered': 1,\n",
      "          'whipped': 1,\n",
      "          'cream': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'sneering': 1,\n",
      "          'everything': 1,\n",
      "          'moved': 1,\n",
      "          'havent': 1,\n",
      "          'goofy': 1,\n",
      "          'ready': 1,\n",
      "          'rumble': 1,\n",
      "          'entirety': 1,\n",
      "          'intrigued': 1,\n",
      "          'macho': 1,\n",
      "          'man': 1,\n",
      "          'randy': 1,\n",
      "          'savage': 1,\n",
      "          'martin': 1,\n",
      "          'landau': 1,\n",
      "          'exist': 1,\n",
      "          'without': 1,\n",
      "          'serious': 1,\n",
      "          'worldwide': 1,\n",
      "          'repercussions': 1,\n",
      "          'obviously': 1,\n",
      "          'needs': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'forte': 1,\n",
      "          'making': 1,\n",
      "          'sports': 1,\n",
      "          'movies': 1,\n",
      "          'guys': 1,\n",
      "          'cutesy': 1,\n",
      "          'cuddly': 1,\n",
      "          'pap': 1,\n",
      "          'manages': 1,\n",
      "          'annoy': 1,\n",
      "          'insult': 1,\n",
      "          'audience': 1,\n",
      "          'nheres': 1,\n",
      "          'hoping': 1,\n",
      "          'happens': 1,\n",
      "          'immediate': 1,\n",
      "          'future': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'grinch': 11,\n",
      "          'christmas': 6,\n",
      "          'movie': 4,\n",
      "          'carrey': 4,\n",
      "          'nthe': 4,\n",
      "          'cindy': 4,\n",
      "          'lou': 4,\n",
      "          'whoville': 3,\n",
      "          'grinchs': 3,\n",
      "          'momsen': 3,\n",
      "          'like': 3,\n",
      "          'role': 3,\n",
      "          'seems': 3,\n",
      "          'know': 2,\n",
      "          'nits': 2,\n",
      "          'holiday': 2,\n",
      "          'would': 2,\n",
      "          'us': 2,\n",
      "          'season': 2,\n",
      "          'plot': 2,\n",
      "          'whos': 2,\n",
      "          'steal': 2,\n",
      "          'version': 2,\n",
      "          'book': 2,\n",
      "          'tv': 2,\n",
      "          'jones': 2,\n",
      "          'big': 2,\n",
      "          'one': 2,\n",
      "          'choices': 2,\n",
      "          'jeffrey': 2,\n",
      "          'taylor': 2,\n",
      "          'nshe': 2,\n",
      "          'hate': 2,\n",
      "          'filled': 2,\n",
      "          'nnot': 2,\n",
      "          'brings': 2,\n",
      "          'else': 2,\n",
      "          'stealing': 2,\n",
      "          'something': 1,\n",
      "          'presents': 1,\n",
      "          'overhyped': 1,\n",
      "          'films': 1,\n",
      "          'lots': 1,\n",
      "          'merchandising': 1,\n",
      "          'product': 1,\n",
      "          'tieins': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'seem': 1,\n",
      "          'message': 1,\n",
      "          'advertised': 1,\n",
      "          'since': 1,\n",
      "          'last': 1,\n",
      "          'whose': 1,\n",
      "          'logo': 1,\n",
      "          'currently': 1,\n",
      "          'plastered': 1,\n",
      "          'stores': 1,\n",
      "          'nhollywood': 1,\n",
      "          'expects': 1,\n",
      "          'ignore': 1,\n",
      "          'cynical': 1,\n",
      "          'greed': 1,\n",
      "          'scolds': 1,\n",
      "          'losing': 1,\n",
      "          'true': 1,\n",
      "          'spirit': 1,\n",
      "          'nyou': 1,\n",
      "          'theres': 1,\n",
      "          'evil': 1,\n",
      "          'furry': 1,\n",
      "          'green': 1,\n",
      "          'guy': 1,\n",
      "          'called': 1,\n",
      "          'jim': 1,\n",
      "          'lives': 1,\n",
      "          'mountain': 1,\n",
      "          'overlooking': 1,\n",
      "          'ndown': 1,\n",
      "          'preparing': 1,\n",
      "          'whobilation': 1,\n",
      "          'determined': 1,\n",
      "          'course': 1,\n",
      "          'liveaction': 1,\n",
      "          'beloved': 1,\n",
      "          'childrens': 1,\n",
      "          'previously': 1,\n",
      "          'adapted': 1,\n",
      "          '1966': 1,\n",
      "          'special': 1,\n",
      "          'looney': 1,\n",
      "          'tunes': 1,\n",
      "          'animator': 1,\n",
      "          'chuck': 1,\n",
      "          'rare': 1,\n",
      "          'budget': 1,\n",
      "          'hollywood': 1,\n",
      "          'release': 1,\n",
      "          'shamed': 1,\n",
      "          'thirtyyearold': 1,\n",
      "          'halfhour': 1,\n",
      "          'cartoon': 1,\n",
      "          'thats': 1,\n",
      "          'case': 1,\n",
      "          'compared': 1,\n",
      "          'ron': 1,\n",
      "          'howards': 1,\n",
      "          'hit': 1,\n",
      "          'right': 1,\n",
      "          'notes': 1,\n",
      "          'boris': 1,\n",
      "          'karloffs': 1,\n",
      "          'soft': 1,\n",
      "          'deep': 1,\n",
      "          'narration': 1,\n",
      "          'thurl': 1,\n",
      "          'ravenscroft': 1,\n",
      "          'singing': 1,\n",
      "          'mr': 1,\n",
      "          'max': 1,\n",
      "          'dog': 1,\n",
      "          'weighed': 1,\n",
      "          'gigantic': 1,\n",
      "          'antler': 1,\n",
      "          'tied': 1,\n",
      "          'head': 1,\n",
      "          'wide': 1,\n",
      "          'toothless': 1,\n",
      "          'grin': 1,\n",
      "          'nby': 1,\n",
      "          'contrast': 1,\n",
      "          'hits': 1,\n",
      "          'sour': 1,\n",
      "          'note': 1,\n",
      "          'another': 1,\n",
      "          'nfirst': 1,\n",
      "          'numerous': 1,\n",
      "          'bad': 1,\n",
      "          'price': 1,\n",
      "          'peter': 1,\n",
      "          'seaman': 1,\n",
      "          'made': 1,\n",
      "          'padding': 1,\n",
      "          'short': 1,\n",
      "          '105minute': 1,\n",
      "          'nyoung': 1,\n",
      "          'wideeyed': 1,\n",
      "          'depressed': 1,\n",
      "          'misplaced': 1,\n",
      "          'priorities': 1,\n",
      "          'parents': 1,\n",
      "          'bill': 1,\n",
      "          'irwin': 1,\n",
      "          'molly': 1,\n",
      "          'shannon': 1,\n",
      "          'begins': 1,\n",
      "          'sympathize': 1,\n",
      "          'turns': 1,\n",
      "          'surprisingly': 1,\n",
      "          'sympathetic': 1,\n",
      "          'ncindy': 1,\n",
      "          'discovers': 1,\n",
      "          'turned': 1,\n",
      "          'tearfully': 1,\n",
      "          'away': 1,\n",
      "          'grammar': 1,\n",
      "          'school': 1,\n",
      "          'publicly': 1,\n",
      "          'humiliated': 1,\n",
      "          'expressing': 1,\n",
      "          'love': 1,\n",
      "          'prettiest': 1,\n",
      "          'girl': 1,\n",
      "          'class': 1,\n",
      "          'martha': 1,\n",
      "          'may': 1,\n",
      "          'whovier': 1,\n",
      "          'played': 1,\n",
      "          'adult': 1,\n",
      "          'christine': 1,\n",
      "          'baranski': 1,\n",
      "          'nare': 1,\n",
      "          'expected': 1,\n",
      "          'want': 1,\n",
      "          'isnt': 1,\n",
      "          'even': 1,\n",
      "          'villain': 1,\n",
      "          'corrupt': 1,\n",
      "          'mayor': 1,\n",
      "          'tambor': 1,\n",
      "          'rival': 1,\n",
      "          'marthas': 1,\n",
      "          'affection': 1,\n",
      "          'characters': 1,\n",
      "          'needlessly': 1,\n",
      "          'complex': 1,\n",
      "          'oncesimple': 1,\n",
      "          'becomes': 1,\n",
      "          'convoluted': 1,\n",
      "          'actual': 1,\n",
      "          'theft': 1,\n",
      "          'afterthought': 1,\n",
      "          'casting': 1,\n",
      "          'arent': 1,\n",
      "          'better': 1,\n",
      "          'screenwriting': 1,\n",
      "          'decisions': 1,\n",
      "          'njim': 1,\n",
      "          'woefully': 1,\n",
      "          'miscast': 1,\n",
      "          'nwhile': 1,\n",
      "          'face': 1,\n",
      "          'supple': 1,\n",
      "          'rubber': 1,\n",
      "          'makeup': 1,\n",
      "          'superfluous': 1,\n",
      "          'nothing': 1,\n",
      "          'nhis': 1,\n",
      "          'accent': 1,\n",
      "          'keeps': 1,\n",
      "          'changing': 1,\n",
      "          'assume': 1,\n",
      "          'shooting': 1,\n",
      "          'karloff': 1,\n",
      "          'ends': 1,\n",
      "          'sounding': 1,\n",
      "          'weird': 1,\n",
      "          'slurry': 1,\n",
      "          'richard': 1,\n",
      "          'nixon': 1,\n",
      "          'sean': 1,\n",
      "          'connery': 1,\n",
      "          'cartman': 1,\n",
      "          'south': 1,\n",
      "          'park': 1,\n",
      "          'knowing': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'alone': 1,\n",
      "          'home': 1,\n",
      "          'falls': 1,\n",
      "          'back': 1,\n",
      "          'standup': 1,\n",
      "          'comedy': 1,\n",
      "          'clowns': 1,\n",
      "          'around': 1,\n",
      "          'ace': 1,\n",
      "          'venturastyle': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'wisecracking': 1,\n",
      "          'antics': 1,\n",
      "          'dont': 1,\n",
      "          'quite': 1,\n",
      "          'fit': 1,\n",
      "          'character': 1,\n",
      "          'embittered': 1,\n",
      "          'loner': 1,\n",
      "          'nlittle': 1,\n",
      "          'little': 1,\n",
      "          'except': 1,\n",
      "          'eyes': 1,\n",
      "          'cute': 1,\n",
      "          'smile': 1,\n",
      "          'fine': 1,\n",
      "          'limited': 1,\n",
      "          'original': 1,\n",
      "          'purpose': 1,\n",
      "          'seuss': 1,\n",
      "          'story': 1,\n",
      "          'finding': 1,\n",
      "          'santa': 1,\n",
      "          'living': 1,\n",
      "          'room': 1,\n",
      "          'tree': 1,\n",
      "          'nhowever': 1,\n",
      "          'expanded': 1,\n",
      "          'script': 1,\n",
      "          'makes': 1,\n",
      "          'important': 1,\n",
      "          'challenge': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'youre': 1,\n",
      "          'movies': 1,\n",
      "          'leave': 1,\n",
      "          'behind': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'prison': 5,\n",
      "          'christopher': 4,\n",
      "          'nthe': 4,\n",
      "          'escape': 4,\n",
      "          'following': 3,\n",
      "          'lambert': 3,\n",
      "          'even': 3,\n",
      "          'fortress': 3,\n",
      "          'begins': 3,\n",
      "          'highlander': 2,\n",
      "          'like': 2,\n",
      "          'acting': 2,\n",
      "          'meant': 2,\n",
      "          'became': 2,\n",
      "          'films': 2,\n",
      "          'often': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'talent': 2,\n",
      "          'end': 2,\n",
      "          'movie': 2,\n",
      "          'reason': 2,\n",
      "          'population': 2,\n",
      "          'njake': 2,\n",
      "          'karen': 2,\n",
      "          'brennick': 2,\n",
      "          'laughlin': 2,\n",
      "          'authorities': 2,\n",
      "          'equiped': 2,\n",
      "          'futuristic': 2,\n",
      "          'inmates': 2,\n",
      "          'help': 2,\n",
      "          'warden': 2,\n",
      "          'smith': 2,\n",
      "          'rather': 2,\n",
      "          'interesting': 2,\n",
      "          'situations': 2,\n",
      "          'predictable': 2,\n",
      "          'performance': 2,\n",
      "          'mid1980s': 1,\n",
      "          'splendid': 1,\n",
      "          'debut': 1,\n",
      "          'hugh': 1,\n",
      "          'hudsons': 1,\n",
      "          'greystoke': 1,\n",
      "          'relative': 1,\n",
      "          'success': 1,\n",
      "          'first': 1,\n",
      "          'looked': 1,\n",
      "          'lamberts': 1,\n",
      "          'career': 1,\n",
      "          'might': 1,\n",
      "          'go': 1,\n",
      "          'somewhere': 1,\n",
      "          'nbut': 1,\n",
      "          'wasnt': 1,\n",
      "          'obvious': 1,\n",
      "          'ii': 1,\n",
      "          'nin': 1,\n",
      "          'decade': 1,\n",
      "          'associated': 1,\n",
      "          'low': 1,\n",
      "          'budgets': 1,\n",
      "          'lower': 1,\n",
      "          'quality': 1,\n",
      "          'nvery': 1,\n",
      "          'fans': 1,\n",
      "          'genre': 1,\n",
      "          'learned': 1,\n",
      "          'hard': 1,\n",
      "          'way': 1,\n",
      "          'evade': 1,\n",
      "          'anything': 1,\n",
      "          'starring': 1,\n",
      "          'nwhether': 1,\n",
      "          'real': 1,\n",
      "          'lack': 1,\n",
      "          'terrible': 1,\n",
      "          'miscasting': 1,\n",
      "          'simple': 1,\n",
      "          'bad': 1,\n",
      "          'luck': 1,\n",
      "          'isnt': 1,\n",
      "          'important': 1,\n",
      "          'result': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'horrible': 1,\n",
      "          'said': 1,\n",
      "          '1993': 1,\n",
      "          'directed': 1,\n",
      "          'stuart': 1,\n",
      "          'gordon': 1,\n",
      "          'director': 1,\n",
      "          'created': 1,\n",
      "          'cult': 1,\n",
      "          '1980s': 1,\n",
      "          'horror': 1,\n",
      "          'gorefests': 1,\n",
      "          'reanimator': 1,\n",
      "          'beyond': 1,\n",
      "          'set': 1,\n",
      "          '2018': 1,\n",
      "          'nfor': 1,\n",
      "          'undisclosed': 1,\n",
      "          'usa': 1,\n",
      "          'introduced': 1,\n",
      "          'strict': 1,\n",
      "          'control': 1,\n",
      "          'couples': 1,\n",
      "          'barred': 1,\n",
      "          'one': 1,\n",
      "          'child': 1,\n",
      "          'lori': 1,\n",
      "          'broke': 1,\n",
      "          'law': 1,\n",
      "          'caught': 1,\n",
      "          'border': 1,\n",
      "          'nsentenced': 1,\n",
      "          '31': 1,\n",
      "          'years': 1,\n",
      "          'thrown': 1,\n",
      "          'privately': 1,\n",
      "          'owned': 1,\n",
      "          'correctional': 1,\n",
      "          'facility': 1,\n",
      "          'stateoftheart': 1,\n",
      "          'technology': 1,\n",
      "          'run': 1,\n",
      "          'computer': 1,\n",
      "          'called': 1,\n",
      "          'zed': 1,\n",
      "          'nalthough': 1,\n",
      "          'gismos': 1,\n",
      "          'regulate': 1,\n",
      "          'every': 1,\n",
      "          'aspect': 1,\n",
      "          'lives': 1,\n",
      "          'make': 1,\n",
      "          'impossible': 1,\n",
      "          'use': 1,\n",
      "          'violence': 1,\n",
      "          'survives': 1,\n",
      "          'many': 1,\n",
      "          'ordeals': 1,\n",
      "          'earns': 1,\n",
      "          'respect': 1,\n",
      "          'would': 1,\n",
      "          'planing': 1,\n",
      "          'nsuch': 1,\n",
      "          'become': 1,\n",
      "          'necessity': 1,\n",
      "          'poe': 1,\n",
      "          'kurtwood': 1,\n",
      "          'showing': 1,\n",
      "          'unhealthy': 1,\n",
      "          'interest': 1,\n",
      "          'nafter': 1,\n",
      "          'intriguing': 1,\n",
      "          'beginning': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'depict': 1,\n",
      "          'settings': 1,\n",
      "          'soon': 1,\n",
      "          'starts': 1,\n",
      "          'sinking': 1,\n",
      "          'mediocrity': 1,\n",
      "          'screenplay': 1,\n",
      "          'quickly': 1,\n",
      "          'degenerates': 1,\n",
      "          'whole': 1,\n",
      "          'series': 1,\n",
      "          'clich': 1,\n",
      "          'painfully': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'begin': 1,\n",
      "          'look': 1,\n",
      "          'utterly': 1,\n",
      "          'implausible': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'never': 1,\n",
      "          'tried': 1,\n",
      "          'explain': 1,\n",
      "          'country': 1,\n",
      "          'lacks': 1,\n",
      "          'resources': 1,\n",
      "          'support': 1,\n",
      "          'present': 1,\n",
      "          'happens': 1,\n",
      "          'spend': 1,\n",
      "          'bucketloads': 1,\n",
      "          'money': 1,\n",
      "          'ultraexpensive': 1,\n",
      "          'supertechnology': 1,\n",
      "          'sole': 1,\n",
      "          'intention': 1,\n",
      "          'keeping': 1,\n",
      "          'alive': 1,\n",
      "          'useless': 1,\n",
      "          'dangerous': 1,\n",
      "          'members': 1,\n",
      "          'society': 1,\n",
      "          'initially': 1,\n",
      "          'plot': 1,\n",
      "          'done': 1,\n",
      "          'wrong': 1,\n",
      "          'stereotyped': 1,\n",
      "          'characters': 1,\n",
      "          'played': 1,\n",
      "          'interested': 1,\n",
      "          'talented': 1,\n",
      "          'actors': 1,\n",
      "          'nlori': 1,\n",
      "          'although': 1,\n",
      "          'physically': 1,\n",
      "          'attractive': 1,\n",
      "          'shows': 1,\n",
      "          'ability': 1,\n",
      "          'sequoia': 1,\n",
      "          'nkurtwood': 1,\n",
      "          'uninspired': 1,\n",
      "          'capable': 1,\n",
      "          'solid': 1,\n",
      "          'yet': 1,\n",
      "          'forgettable': 1,\n",
      "          'nlamberts': 1,\n",
      "          'also': 1,\n",
      "          'good': 1,\n",
      "          'bigger': 1,\n",
      "          'couldnt': 1,\n",
      "          'destined': 1,\n",
      "          'oblivion': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'musketeer': 3,\n",
      "          'nthe': 2,\n",
      "          'dartagnan': 2,\n",
      "          'justin': 2,\n",
      "          'chambers': 2,\n",
      "          'royal': 2,\n",
      "          'suvari': 2,\n",
      "          'france': 2,\n",
      "          'one': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'universal': 1,\n",
      "          'pictures': 1,\n",
      "          'nhollywood': 1,\n",
      "          'launches': 1,\n",
      "          'another': 1,\n",
      "          'assault': 1,\n",
      "          'classic': 1,\n",
      "          'literature': 1,\n",
      "          '50': 1,\n",
      "          'million': 1,\n",
      "          'adaptation': 1,\n",
      "          'alexandre': 1,\n",
      "          'dumass': 1,\n",
      "          'novel': 1,\n",
      "          'thats': 1,\n",
      "          'strong': 1,\n",
      "          'action': 1,\n",
      "          'weak': 1,\n",
      "          'drama': 1,\n",
      "          'fusing': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          '17th': 1,\n",
      "          'century': 1,\n",
      "          'swordplay': 1,\n",
      "          'story': 1,\n",
      "          'chronicles': 1,\n",
      "          'adventures': 1,\n",
      "          'dashing': 1,\n",
      "          'leaves': 1,\n",
      "          'village': 1,\n",
      "          'gascogne': 1,\n",
      "          'headed': 1,\n",
      "          'paris': 1,\n",
      "          'join': 1,\n",
      "          'king': 1,\n",
      "          'louis': 1,\n",
      "          'xiiis': 1,\n",
      "          'elite': 1,\n",
      "          'guard': 1,\n",
      "          'musketeers': 1,\n",
      "          'search': 1,\n",
      "          'man': 1,\n",
      "          'killed': 1,\n",
      "          'parents': 1,\n",
      "          '14': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'nthis': 1,\n",
      "          'puts': 1,\n",
      "          'conflict': 1,\n",
      "          'formidable': 1,\n",
      "          'febre': 1,\n",
      "          'tim': 1,\n",
      "          'roth': 1,\n",
      "          'vicious': 1,\n",
      "          'henchman': 1,\n",
      "          'conniving': 1,\n",
      "          'cardinal': 1,\n",
      "          'richelieu': 1,\n",
      "          'stephen': 1,\n",
      "          'rea': 1,\n",
      "          'traditional': 1,\n",
      "          'trio': 1,\n",
      "          'aramis': 1,\n",
      "          'nick': 1,\n",
      "          'moran': 1,\n",
      "          'athos': 1,\n",
      "          'jan': 1,\n",
      "          'gregor': 1,\n",
      "          'kremp': 1,\n",
      "          'porthos': 1,\n",
      "          'steve': 1,\n",
      "          'speirs': 1,\n",
      "          'dont': 1,\n",
      "          'offer': 1,\n",
      "          'much': 1,\n",
      "          'help': 1,\n",
      "          'turns': 1,\n",
      "          'feisty': 1,\n",
      "          'francesca': 1,\n",
      "          'mena': 1,\n",
      "          'chambermaid': 1,\n",
      "          'queen': 1,\n",
      "          'catherine': 1,\n",
      "          'deneuve': 1,\n",
      "          'nscripter': 1,\n",
      "          'gene': 1,\n",
      "          'quintano': 1,\n",
      "          'directorcinematographer': 1,\n",
      "          'peter': 1,\n",
      "          'hyams': 1,\n",
      "          'primarily': 1,\n",
      "          'interested': 1,\n",
      "          'derringdo': 1,\n",
      "          'evidenced': 1,\n",
      "          'choreographer': 1,\n",
      "          'xinxin': 1,\n",
      "          'xiongs': 1,\n",
      "          'elaborate': 1,\n",
      "          'original': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'stunts': 1,\n",
      "          'including': 1,\n",
      "          'fastpaced': 1,\n",
      "          'stagecoach': 1,\n",
      "          'chase': 1,\n",
      "          'tavern': 1,\n",
      "          'brawl': 1,\n",
      "          'rolling': 1,\n",
      "          'barrels': 1,\n",
      "          'highwire': 1,\n",
      "          'acrobatics': 1,\n",
      "          'combatants': 1,\n",
      "          'dangling': 1,\n",
      "          'ropes': 1,\n",
      "          'ladderfight': 1,\n",
      "          'sequence': 1,\n",
      "          'nfilmed': 1,\n",
      "          'southern': 1,\n",
      "          'scenery': 1,\n",
      "          'sets': 1,\n",
      "          'costumes': 1,\n",
      "          'spectacular': 1,\n",
      "          'lighting': 1,\n",
      "          'dark': 1,\n",
      "          'editing': 1,\n",
      "          'filled': 1,\n",
      "          'choppy': 1,\n",
      "          'restless': 1,\n",
      "          'mtvish': 1,\n",
      "          'cuts': 1,\n",
      "          'nas': 1,\n",
      "          'swashbuckling': 1,\n",
      "          'bland': 1,\n",
      "          'calvin': 1,\n",
      "          'klein': 1,\n",
      "          'model': 1,\n",
      "          'buckles': 1,\n",
      "          'swashing': 1,\n",
      "          'totally': 1,\n",
      "          'lacking': 1,\n",
      "          'onscreen': 1,\n",
      "          'charisma': 1,\n",
      "          'mention': 1,\n",
      "          'acting': 1,\n",
      "          'skill': 1,\n",
      "          'nmena': 1,\n",
      "          'impressive': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'contemporary': 1,\n",
      "          'interloper': 1,\n",
      "          'court': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'cinematic': 1,\n",
      "          'shallow': 1,\n",
      "          '3': 1,\n",
      "          'n': 1,\n",
      "          'nnot': 1,\n",
      "          'time': 1,\n",
      "          'round': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'avengers': 6,\n",
      "          'lack': 4,\n",
      "          'peel': 4,\n",
      "          'steed': 4,\n",
      "          'may': 3,\n",
      "          'nat': 3,\n",
      "          'nthis': 3,\n",
      "          'early': 3,\n",
      "          'picture': 3,\n",
      "          'plot': 3,\n",
      "          'even': 3,\n",
      "          'never': 3,\n",
      "          'nthe': 3,\n",
      "          'sir': 3,\n",
      "          'august': 3,\n",
      "          'note': 2,\n",
      "          'upon': 2,\n",
      "          'would': 2,\n",
      "          'well': 2,\n",
      "          'take': 2,\n",
      "          'made': 2,\n",
      "          'originally': 2,\n",
      "          'opening': 2,\n",
      "          'studios': 2,\n",
      "          'good': 2,\n",
      "          'barely': 2,\n",
      "          'wit': 2,\n",
      "          'style': 2,\n",
      "          'n': 2,\n",
      "          'films': 2,\n",
      "          'feature': 2,\n",
      "          'characters': 2,\n",
      "          'role': 2,\n",
      "          'emma': 2,\n",
      "          'amidst': 2,\n",
      "          'fiennes': 2,\n",
      "          'new': 2,\n",
      "          'two': 2,\n",
      "          'theyre': 2,\n",
      "          'make': 2,\n",
      "          'man': 2,\n",
      "          'part': 2,\n",
      "          'pictures': 2,\n",
      "          'least': 2,\n",
      "          'entertaining': 2,\n",
      "          'sight': 2,\n",
      "          'connery': 2,\n",
      "          'far': 2,\n",
      "          'production': 2,\n",
      "          'design': 2,\n",
      "          'shot': 2,\n",
      "          'nthere': 2,\n",
      "          'visual': 2,\n",
      "          'interest': 2,\n",
      "          'trailer': 2,\n",
      "          'year': 2,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'end': 1,\n",
      "          'day': 1,\n",
      "          'reflecting': 1,\n",
      "          'debacle': 1,\n",
      "          'warning': 1,\n",
      "          'clouds': 1,\n",
      "          'loomed': 1,\n",
      "          'horizon': 1,\n",
      "          'project': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'contentious': 1,\n",
      "          'decision': 1,\n",
      "          'abandon': 1,\n",
      "          'preview': 1,\n",
      "          'press': 1,\n",
      "          'screenings': 1,\n",
      "          'scrapped': 1,\n",
      "          'plans': 1,\n",
      "          'gala': 1,\n",
      "          'premiere': 1,\n",
      "          'highlyanticipated': 1,\n",
      "          'rendition': 1,\n",
      "          'cult': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'slotted': 1,\n",
      "          'june': 1,\n",
      "          'gone': 1,\n",
      "          'headtohead': 1,\n",
      "          'rival': 1,\n",
      "          'heavy': 1,\n",
      "          'hitters': 1,\n",
      "          'eventual': 1,\n",
      "          'demotion': 1,\n",
      "          'less': 1,\n",
      "          'potent': 1,\n",
      "          'midaugust': 1,\n",
      "          'obvious': 1,\n",
      "          'indication': 1,\n",
      "          'confidence': 1,\n",
      "          'nand': 1,\n",
      "          'reason': 1,\n",
      "          'joyless': 1,\n",
      "          'exercise': 1,\n",
      "          'held': 1,\n",
      "          'together': 1,\n",
      "          'coherent': 1,\n",
      "          'lacking': 1,\n",
      "          'semblance': 1,\n",
      "          'excitement': 1,\n",
      "          'thrills': 1,\n",
      "          'nremarkable': 1,\n",
      "          'banality': 1,\n",
      "          'brutally': 1,\n",
      "          'uninvolving': 1,\n",
      "          'catastrophic': 1,\n",
      "          'mess': 1,\n",
      "          'immediately': 1,\n",
      "          'invites': 1,\n",
      "          'comparisons': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'case': 1,\n",
      "          'study': 1,\n",
      "          'substance': 1,\n",
      "          'joel': 1,\n",
      "          'schumachers': 1,\n",
      "          'muchloathed': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'indeed': 1,\n",
      "          'appalling': 1,\n",
      "          'ridiculous': 1,\n",
      "          'sequences': 1,\n",
      "          'find': 1,\n",
      "          'central': 1,\n",
      "          'dressed': 1,\n",
      "          'fuzzy': 1,\n",
      "          'oversized': 1,\n",
      "          'costumes': 1,\n",
      "          'numa': 1,\n",
      "          'thurman': 1,\n",
      "          'takes': 1,\n",
      "          'salacious': 1,\n",
      "          'catsuitclad': 1,\n",
      "          'karatechopping': 1,\n",
      "          'immortalized': 1,\n",
      "          'diana': 1,\n",
      "          'rigg': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'aforementioned': 1,\n",
      "          'schumacher': 1,\n",
      "          'disaster': 1,\n",
      "          'imbuing': 1,\n",
      "          'poison': 1,\n",
      "          'ivy': 1,\n",
      "          'dose': 1,\n",
      "          'sassiness': 1,\n",
      "          'sly': 1,\n",
      "          'gave': 1,\n",
      "          'audiences': 1,\n",
      "          'something': 1,\n",
      "          'smile': 1,\n",
      "          'cinematic': 1,\n",
      "          'carnage': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'cant': 1,\n",
      "          'said': 1,\n",
      "          'cohort': 1,\n",
      "          'ralph': 1,\n",
      "          'john': 1,\n",
      "          'taking': 1,\n",
      "          'patrick': 1,\n",
      "          'macnee': 1,\n",
      "          'demonstrate': 1,\n",
      "          'appreciable': 1,\n",
      "          'chemistry': 1,\n",
      "          'whatsoever': 1,\n",
      "          'fatally': 1,\n",
      "          'crippling': 1,\n",
      "          'volley': 1,\n",
      "          'fizzling': 1,\n",
      "          'repartee': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'trade': 1,\n",
      "          'doubleentendres': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'actors': 1,\n",
      "          'painfully': 1,\n",
      "          'aware': 1,\n",
      "          'board': 1,\n",
      "          'sinking': 1,\n",
      "          'ship': 1,\n",
      "          'rate': 1,\n",
      "          'usuallysplendid': 1,\n",
      "          'actor': 1,\n",
      "          'mr': 1,\n",
      "          'transition': 1,\n",
      "          'arthouse': 1,\n",
      "          'apollo': 1,\n",
      "          'mainstream': 1,\n",
      "          'leading': 1,\n",
      "          'tepid': 1,\n",
      "          'turn': 1,\n",
      "          'much': 1,\n",
      "          'inroad': 1,\n",
      "          'commendably': 1,\n",
      "          'seedy': 1,\n",
      "          'performance': 1,\n",
      "          'regrettablyneglected': 1,\n",
      "          'kathyrn': 1,\n",
      "          'bigelow': 1,\n",
      "          'strange': 1,\n",
      "          'days': 1,\n",
      "          'duo': 1,\n",
      "          'look': 1,\n",
      "          'admittedly': 1,\n",
      "          'heavily': 1,\n",
      "          'dependent': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'found': 1,\n",
      "          'growing': 1,\n",
      "          'increasingly': 1,\n",
      "          'distant': 1,\n",
      "          'annoyed': 1,\n",
      "          'spark': 1,\n",
      "          'cheekily': 1,\n",
      "          'ironic': 1,\n",
      "          'navigated': 1,\n",
      "          'caperesque': 1,\n",
      "          'nwhen': 1,\n",
      "          'checking': 1,\n",
      "          'wristwatch': 1,\n",
      "          'shifting': 1,\n",
      "          'restlessly': 1,\n",
      "          'seat': 1,\n",
      "          'began': 1,\n",
      "          'alleviate': 1,\n",
      "          'boredom': 1,\n",
      "          'considering': 1,\n",
      "          'might': 1,\n",
      "          'played': 1,\n",
      "          'filmmakers': 1,\n",
      "          'chose': 1,\n",
      "          'go': 1,\n",
      "          'instead': 1,\n",
      "          'erstwhile': 1,\n",
      "          'mrs': 1,\n",
      "          'kate': 1,\n",
      "          'beckinsale': 1,\n",
      "          'although': 1,\n",
      "          'notion': 1,\n",
      "          'intrigues': 1,\n",
      "          'gwyneth': 1,\n",
      "          'paltrow': 1,\n",
      "          'running': 1,\n",
      "          'veritably': 1,\n",
      "          'handle': 1,\n",
      "          'spoton': 1,\n",
      "          'english': 1,\n",
      "          'accent': 1,\n",
      "          'nif': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'itd': 1,\n",
      "          'highly': 1,\n",
      "          'incongruous': 1,\n",
      "          'vaguely': 1,\n",
      "          'twiggish': 1,\n",
      "          'young': 1,\n",
      "          'actress': 1,\n",
      "          'kicking': 1,\n",
      "          'butt': 1,\n",
      "          'story': 1,\n",
      "          'involves': 1,\n",
      "          'everbemused': 1,\n",
      "          'tandem': 1,\n",
      "          'combating': 1,\n",
      "          'malevolent': 1,\n",
      "          'de': 1,\n",
      "          'wynter': 1,\n",
      "          'sean': 1,\n",
      "          'eccentric': 1,\n",
      "          'aristocrat': 1,\n",
      "          'threatening': 1,\n",
      "          'safety': 1,\n",
      "          'nation': 1,\n",
      "          'climatecontrolling': 1,\n",
      "          'contraption': 1,\n",
      "          'also': 1,\n",
      "          'sip': 1,\n",
      "          'lot': 1,\n",
      "          'tea': 1,\n",
      "          'noverlooking': 1,\n",
      "          'goofy': 1,\n",
      "          'cloning': 1,\n",
      "          'nonsense': 1,\n",
      "          'quirky': 1,\n",
      "          'hijinx': 1,\n",
      "          'involving': 1,\n",
      "          'protagonists': 1,\n",
      "          'superiors': 1,\n",
      "          'sounds': 1,\n",
      "          'better': 1,\n",
      "          'plays': 1,\n",
      "          'rendered': 1,\n",
      "          'almost': 1,\n",
      "          'indecipherable': 1,\n",
      "          'blatant': 1,\n",
      "          'postproduction': 1,\n",
      "          'tinkering': 1,\n",
      "          'clearly': 1,\n",
      "          'evident': 1,\n",
      "          'cut': 1,\n",
      "          'shreds': 1,\n",
      "          'gripping': 1,\n",
      "          'drama': 1,\n",
      "          'heroes': 1,\n",
      "          'accordingly': 1,\n",
      "          'villainous': 1,\n",
      "          'seriously': 1,\n",
      "          'given': 1,\n",
      "          'cohesion': 1,\n",
      "          'menace': 1,\n",
      "          'conveyed': 1,\n",
      "          'buffoonish': 1,\n",
      "          'maniac': 1,\n",
      "          'decidedly': 1,\n",
      "          'uncompelling': 1,\n",
      "          'nmr': 1,\n",
      "          'whos': 1,\n",
      "          'onscreen': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'register': 1,\n",
      "          'impression': 1,\n",
      "          'approaches': 1,\n",
      "          'like': 1,\n",
      "          'fulfilling': 1,\n",
      "          'contractual': 1,\n",
      "          'obligation': 1,\n",
      "          'simultaneously': 1,\n",
      "          'chewing': 1,\n",
      "          'scenery': 1,\n",
      "          'unable': 1,\n",
      "          'hide': 1,\n",
      "          'disinterest': 1,\n",
      "          'looks': 1,\n",
      "          'genuinely': 1,\n",
      "          'handsome': 1,\n",
      "          'fine': 1,\n",
      "          'costume': 1,\n",
      "          'anthony': 1,\n",
      "          'powell': 1,\n",
      "          'crisply': 1,\n",
      "          'roger': 1,\n",
      "          'pratt': 1,\n",
      "          'nin': 1,\n",
      "          'particular': 1,\n",
      "          'gleaming': 1,\n",
      "          'stuart': 1,\n",
      "          'craig': 1,\n",
      "          'commands': 1,\n",
      "          'attention': 1,\n",
      "          'adeptly': 1,\n",
      "          'drawing': 1,\n",
      "          'elements': 1,\n",
      "          'old': 1,\n",
      "          'order': 1,\n",
      "          'depict': 1,\n",
      "          'great': 1,\n",
      "          'britain': 1,\n",
      "          'handful': 1,\n",
      "          'striking': 1,\n",
      "          'moments': 1,\n",
      "          'including': 1,\n",
      "          'attack': 1,\n",
      "          'swarm': 1,\n",
      "          'giant': 1,\n",
      "          'robotic': 1,\n",
      "          'bees': 1,\n",
      "          'nice': 1,\n",
      "          'finding': 1,\n",
      "          'way': 1,\n",
      "          'walk': 1,\n",
      "          'water': 1,\n",
      "          'unremittingly': 1,\n",
      "          'dull': 1,\n",
      "          'instances': 1,\n",
      "          'fail': 1,\n",
      "          'stir': 1,\n",
      "          'raise': 1,\n",
      "          'pulse': 1,\n",
      "          'rates': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'climax': 1,\n",
      "          'arrived': 1,\n",
      "          'slugging': 1,\n",
      "          'crashing': 1,\n",
      "          'waves': 1,\n",
      "          'thundering': 1,\n",
      "          'rain': 1,\n",
      "          'quickest': 1,\n",
      "          'escape': 1,\n",
      "          'route': 1,\n",
      "          'theatre': 1,\n",
      "          'nnot': 1,\n",
      "          'coincidentally': 1,\n",
      "          'enticing': 1,\n",
      "          'bits': 1,\n",
      "          'bravura': 1,\n",
      "          'shots': 1,\n",
      "          'assembled': 1,\n",
      "          'movies': 1,\n",
      "          'remarkable': 1,\n",
      "          'savvy': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'ironically': 1,\n",
      "          'infinitely': 1,\n",
      "          'appealing': 1,\n",
      "          'first': 1,\n",
      "          'promo': 1,\n",
      "          'rounds': 1,\n",
      "          'spring': 1,\n",
      "          'probably': 1,\n",
      "          'favourite': 1,\n",
      "          'studio': 1,\n",
      "          'nits': 1,\n",
      "          'everything': 1,\n",
      "          'saucy': 1,\n",
      "          'clever': 1,\n",
      "          'engaging': 1,\n",
      "          'na': 1,\n",
      "          'crushing': 1,\n",
      "          'disappointment': 1,\n",
      "          'one': 1,\n",
      "          'worst': 1,\n",
      "          'outings': 1,\n",
      "          'drearily': 1,\n",
      "          'awful': 1,\n",
      "          'savoured': 1,\n",
      "          'gleefully': 1,\n",
      "          'bad': 1,\n",
      "          'polished': 1,\n",
      "          'overlook': 1,\n",
      "          'deficiencies': 1,\n",
      "          'upcoming': 1,\n",
      "          'lifeless': 1,\n",
      "          'sure': 1,\n",
      "          'hope': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'stallone': 6,\n",
      "          'good': 6,\n",
      "          'scenes': 4,\n",
      "          'nin': 4,\n",
      "          'nthe': 3,\n",
      "          'really': 3,\n",
      "          'nhowever': 3,\n",
      "          'dull': 3,\n",
      "          'fact': 3,\n",
      "          'kietal': 2,\n",
      "          'rappaport': 2,\n",
      "          'involved': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'work': 2,\n",
      "          'going': 2,\n",
      "          'plot': 2,\n",
      "          'performance': 2,\n",
      "          'cant': 2,\n",
      "          'bad': 2,\n",
      "          'long': 2,\n",
      "          'action': 2,\n",
      "          'delivering': 2,\n",
      "          'well': 2,\n",
      "          'ending': 2,\n",
      "          'attempts': 1,\n",
      "          'act': 1,\n",
      "          'cop': 1,\n",
      "          'drama': 1,\n",
      "          'set': 1,\n",
      "          'neighbourhood': 1,\n",
      "          'pratically': 1,\n",
      "          'built': 1,\n",
      "          'whos': 1,\n",
      "          'nephew': 1,\n",
      "          'played': 1,\n",
      "          'michael': 1,\n",
      "          'car': 1,\n",
      "          'crash': 1,\n",
      "          'killing': 1,\n",
      "          'two': 1,\n",
      "          'black': 1,\n",
      "          'youths': 1,\n",
      "          'nkeital': 1,\n",
      "          'dosent': 1,\n",
      "          'want': 1,\n",
      "          'get': 1,\n",
      "          'anything': 1,\n",
      "          'gets': 1,\n",
      "          'rid': 1,\n",
      "          'try': 1,\n",
      "          'hell': 1,\n",
      "          'nthis': 1,\n",
      "          'brilliant': 1,\n",
      "          'nit': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'great': 1,\n",
      "          'actors': 1,\n",
      "          'first': 1,\n",
      "          'grade': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'aswell': 1,\n",
      "          'attempting': 1,\n",
      "          'deliver': 1,\n",
      "          'hold': 1,\n",
      "          'nalthough': 1,\n",
      "          'acting': 1,\n",
      "          'fantastic': 1,\n",
      "          'even': 1,\n",
      "          'isnt': 1,\n",
      "          'directing': 1,\n",
      "          'story': 1,\n",
      "          'winded': 1,\n",
      "          'nsome': 1,\n",
      "          'go': 1,\n",
      "          'nothing': 1,\n",
      "          'happening': 1,\n",
      "          'suspect': 1,\n",
      "          'trying': 1,\n",
      "          'avoid': 1,\n",
      "          'serious': 1,\n",
      "          'means': 1,\n",
      "          'dialogue': 1,\n",
      "          'warbling': 1,\n",
      "          'basically': 1,\n",
      "          'repeats': 1,\n",
      "          'points': 1,\n",
      "          'matter': 1,\n",
      "          'potential': 1,\n",
      "          'wasted': 1,\n",
      "          'cliched': 1,\n",
      "          'thing': 1,\n",
      "          'keep': 1,\n",
      "          'usual': 1,\n",
      "          'performances': 1,\n",
      "          'although': 1,\n",
      "          'given': 1,\n",
      "          'much': 1,\n",
      "          'say': 1,\n",
      "          'gives': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'done': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'uses': 1,\n",
      "          'cinemas': 1,\n",
      "          'sound': 1,\n",
      "          'system': 1,\n",
      "          'last': 1,\n",
      "          '10': 1,\n",
      "          'minutes': 1,\n",
      "          '2': 1,\n",
      "          'hour': 1,\n",
      "          'one': 1,\n",
      "          'best': 1,\n",
      "          'endings': 1,\n",
      "          '1997': 1,\n",
      "          'nif': 1,\n",
      "          'rest': 1,\n",
      "          'ncop': 1,\n",
      "          'land': 1,\n",
      "          'turns': 1,\n",
      "          'power': 1,\n",
      "          'house': 1,\n",
      "          'rather': 1,\n",
      "          'every': 1,\n",
      "          'exciting': 1,\n",
      "          'nhugely': 1,\n",
      "          'disappointing': 1,\n",
      "          'recommend': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'species': 12,\n",
      "          '2': 9,\n",
      "          'film': 4,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'natasha': 3,\n",
      "          'movie': 3,\n",
      "          'movies': 3,\n",
      "          'sex': 3,\n",
      "          'would': 3,\n",
      "          'theres': 3,\n",
      "          'way': 3,\n",
      "          'patrick': 3,\n",
      "          'first': 2,\n",
      "          'science': 2,\n",
      "          'diverted': 2,\n",
      "          'henstridge': 2,\n",
      "          'obvious': 2,\n",
      "          'nthe': 2,\n",
      "          'recommend': 2,\n",
      "          'audience': 2,\n",
      "          'least': 2,\n",
      "          'get': 2,\n",
      "          'bad': 2,\n",
      "          'enough': 2,\n",
      "          'blood': 2,\n",
      "          'gore': 2,\n",
      "          'bare': 2,\n",
      "          'nthis': 2,\n",
      "          'theater': 2,\n",
      "          'described': 2,\n",
      "          'ni': 2,\n",
      "          'played': 2,\n",
      "          'another': 2,\n",
      "          'eve': 2,\n",
      "          'marg': 2,\n",
      "          'helgenberger': 2,\n",
      "          'nmeanwhile': 2,\n",
      "          'justin': 2,\n",
      "          'like': 2,\n",
      "          'madsen': 2,\n",
      "          'one': 2,\n",
      "          'patricks': 2,\n",
      "          'mykelti': 2,\n",
      "          'williamson': 2,\n",
      "          'kind': 2,\n",
      "          'significant': 2,\n",
      "          'little': 2,\n",
      "          'moderatelysuccessful': 1,\n",
      "          'fiction': 1,\n",
      "          'yarn': 1,\n",
      "          'audiences': 1,\n",
      "          'nifty': 1,\n",
      "          'well': 1,\n",
      "          'paced': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'frequent': 1,\n",
      "          'views': 1,\n",
      "          'modelturnedactress': 1,\n",
      "          'sans': 1,\n",
      "          'clothing': 1,\n",
      "          'nhowever': 1,\n",
      "          'definitely': 1,\n",
      "          'cried': 1,\n",
      "          'sequel': 1,\n",
      "          'nand': 1,\n",
      "          'considering': 1,\n",
      "          'quality': 1,\n",
      "          'mgm': 1,\n",
      "          'stopped': 1,\n",
      "          'ahead': 1,\n",
      "          'thing': 1,\n",
      "          'distinguishes': 1,\n",
      "          'awful': 1,\n",
      "          'nif': 1,\n",
      "          'throw': 1,\n",
      "          'away': 1,\n",
      "          'plot': 1,\n",
      "          'characterized': 1,\n",
      "          'blatant': 1,\n",
      "          'disregard': 1,\n",
      "          'intelligence': 1,\n",
      "          'logic': 1,\n",
      "          'coherence': 1,\n",
      "          'consistency': 1,\n",
      "          'actually': 1,\n",
      "          'things': 1,\n",
      "          'select': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'primarily': 1,\n",
      "          'comprised': 1,\n",
      "          'teenage': 1,\n",
      "          'boys': 1,\n",
      "          'theory': 1,\n",
      "          'shouldnt': 1,\n",
      "          'able': 1,\n",
      "          'r': 1,\n",
      "          'rated': 1,\n",
      "          'connoisseurs': 1,\n",
      "          'ntheres': 1,\n",
      "          'simulated': 1,\n",
      "          'flesh': 1,\n",
      "          'prevent': 1,\n",
      "          'ever': 1,\n",
      "          'becoming': 1,\n",
      "          'boring': 1,\n",
      "          'grade': 1,\n",
      "          'z': 1,\n",
      "          'exploitation': 1,\n",
      "          'flick': 1,\n",
      "          'thats': 1,\n",
      "          'ripe': 1,\n",
      "          'mystery': 1,\n",
      "          '3000': 1,\n",
      "          'treatment': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'someplace': 1,\n",
      "          'recall': 1,\n",
      "          'hearing': 1,\n",
      "          'erotic': 1,\n",
      "          'love': 1,\n",
      "          'know': 1,\n",
      "          'used': 1,\n",
      "          'adjective': 1,\n",
      "          'peculiar': 1,\n",
      "          'notion': 1,\n",
      "          'eroticism': 1,\n",
      "          'nsure': 1,\n",
      "          'lot': 1,\n",
      "          'nudity': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'accompanied': 1,\n",
      "          'ripping': 1,\n",
      "          'open': 1,\n",
      "          'womans': 1,\n",
      "          'abdomen': 1,\n",
      "          'alien': 1,\n",
      "          'baby': 1,\n",
      "          'claws': 1,\n",
      "          'free': 1,\n",
      "          'splattering': 1,\n",
      "          'directions': 1,\n",
      "          'nanyone': 1,\n",
      "          'turned': 1,\n",
      "          'someone': 1,\n",
      "          'care': 1,\n",
      "          'sitting': 1,\n",
      "          'next': 1,\n",
      "          'suppose': 1,\n",
      "          'main': 1,\n",
      "          'attraction': 1,\n",
      "          'question': 1,\n",
      "          'yes': 1,\n",
      "          'remove': 1,\n",
      "          'top': 1,\n",
      "          'briefly': 1,\n",
      "          'nalthough': 1,\n",
      "          'character': 1,\n",
      "          'original': 1,\n",
      "          'dead': 1,\n",
      "          'government': 1,\n",
      "          'scientists': 1,\n",
      "          'still': 1,\n",
      "          'dna': 1,\n",
      "          'suicidal': 1,\n",
      "          'impulse': 1,\n",
      "          'decide': 1,\n",
      "          'create': 1,\n",
      "          'clone': 1,\n",
      "          'creature': 1,\n",
      "          'dubbed': 1,\n",
      "          'creator': 1,\n",
      "          'dr': 1,\n",
      "          'laura': 1,\n",
      "          'baker': 1,\n",
      "          'reprising': 1,\n",
      "          'role': 1,\n",
      "          'genetically': 1,\n",
      "          'engineered': 1,\n",
      "          'kinder': 1,\n",
      "          'docile': 1,\n",
      "          'man': 1,\n",
      "          'finally': 1,\n",
      "          'set': 1,\n",
      "          'foot': 1,\n",
      "          'mars': 1,\n",
      "          'na': 1,\n",
      "          'team': 1,\n",
      "          'three': 1,\n",
      "          'led': 1,\n",
      "          'ross': 1,\n",
      "          'lazard': 1,\n",
      "          'traveled': 1,\n",
      "          'red': 1,\n",
      "          'planet': 1,\n",
      "          'return': 1,\n",
      "          'earth': 1,\n",
      "          'bring': 1,\n",
      "          'something': 1,\n",
      "          'nross': 1,\n",
      "          'become': 1,\n",
      "          'halfhumanhalfalien': 1,\n",
      "          'hybrid': 1,\n",
      "          'hes': 1,\n",
      "          'soon': 1,\n",
      "          'mating': 1,\n",
      "          'crazy': 1,\n",
      "          'collecting': 1,\n",
      "          'bloodsoaked': 1,\n",
      "          'children': 1,\n",
      "          'result': 1,\n",
      "          'session': 1,\n",
      "          'nhis': 1,\n",
      "          'intention': 1,\n",
      "          'obviously': 1,\n",
      "          'world': 1,\n",
      "          'domination': 1,\n",
      "          'nstanding': 1,\n",
      "          'indomitable': 1,\n",
      "          'soldier': 1,\n",
      "          'fortune': 1,\n",
      "          'preston': 1,\n",
      "          'lennox': 1,\n",
      "          'michael': 1,\n",
      "          'fellow': 1,\n",
      "          'astronauts': 1,\n",
      "          'dennis': 1,\n",
      "          'gamble': 1,\n",
      "          'nbut': 1,\n",
      "          'learns': 1,\n",
      "          'female': 1,\n",
      "          'damping': 1,\n",
      "          'ardor': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'budget': 1,\n",
      "          'portion': 1,\n",
      "          'must': 1,\n",
      "          'gone': 1,\n",
      "          'paying': 1,\n",
      "          'handsome': 1,\n",
      "          'salaries': 1,\n",
      "          'several': 1,\n",
      "          'recognizable': 1,\n",
      "          'actors': 1,\n",
      "          'opposed': 1,\n",
      "          'nmichael': 1,\n",
      "          'back': 1,\n",
      "          'second': 1,\n",
      "          'round': 1,\n",
      "          'clearly': 1,\n",
      "          'hand': 1,\n",
      "          'grab': 1,\n",
      "          'money': 1,\n",
      "          'run': 1,\n",
      "          'nditto': 1,\n",
      "          'james': 1,\n",
      "          'cromwell': 1,\n",
      "          'plays': 1,\n",
      "          'father': 1,\n",
      "          'underused': 1,\n",
      "          'word': 1,\n",
      "          'describe': 1,\n",
      "          'involvement': 1,\n",
      "          'invisible': 1,\n",
      "          'ngeorge': 1,\n",
      "          'dzundza': 1,\n",
      "          'gets': 1,\n",
      "          'scenery': 1,\n",
      "          'chewing': 1,\n",
      "          'angrybutinept': 1,\n",
      "          'general': 1,\n",
      "          'lazards': 1,\n",
      "          'performance': 1,\n",
      "          'flat': 1,\n",
      "          'makes': 1,\n",
      "          'henstridges': 1,\n",
      "          'limited': 1,\n",
      "          'abilities': 1,\n",
      "          'look': 1,\n",
      "          'good': 1,\n",
      "          'comparison': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'whole': 1,\n",
      "          'production': 1,\n",
      "          'energy': 1,\n",
      "          'cast': 1,\n",
      "          'part': 1,\n",
      "          'wisecracking': 1,\n",
      "          'black': 1,\n",
      "          'sidekick': 1,\n",
      "          'ncomplete': 1,\n",
      "          'cheesy': 1,\n",
      "          'breasts': 1,\n",
      "          'around': 1,\n",
      "          'every': 1,\n",
      "          'narrative': 1,\n",
      "          'corner': 1,\n",
      "          'dialogue': 1,\n",
      "          'capable': 1,\n",
      "          'producing': 1,\n",
      "          'howls': 1,\n",
      "          'laughter': 1,\n",
      "          'dumped': 1,\n",
      "          'marketplace': 1,\n",
      "          'without': 1,\n",
      "          'advance': 1,\n",
      "          'screenings': 1,\n",
      "          'critics': 1,\n",
      "          'ndirector': 1,\n",
      "          'peter': 1,\n",
      "          'medak': 1,\n",
      "          'journeyman': 1,\n",
      "          'maker': 1,\n",
      "          'list': 1,\n",
      "          'mediocre': 1,\n",
      "          'resume': 1,\n",
      "          'added': 1,\n",
      "          'forgettable': 1,\n",
      "          'title': 1,\n",
      "          'appears': 1,\n",
      "          'fun': 1,\n",
      "          'said': 1,\n",
      "          'anyone': 1,\n",
      "          'trying': 1,\n",
      "          'take': 1,\n",
      "          'even': 1,\n",
      "          'scintilla': 1,\n",
      "          'seriousness': 1,\n",
      "          'ndo': 1,\n",
      "          'nabsolutely': 1,\n",
      "          'admit': 1,\n",
      "          'dopey': 1,\n",
      "          'didnt': 1,\n",
      "          'try': 1,\n",
      "          'patience': 1,\n",
      "          'degree': 1,\n",
      "          'pseudointellectual': 1,\n",
      "          'nheres': 1,\n",
      "          'hoping': 1,\n",
      "          '3': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'prinze': 4,\n",
      "          'nthe': 4,\n",
      "          'blucas': 4,\n",
      "          'summer': 3,\n",
      "          'time': 3,\n",
      "          'movie': 3,\n",
      "          'freddie': 2,\n",
      "          'jr': 2,\n",
      "          'young': 2,\n",
      "          'actor': 2,\n",
      "          'utterly': 2,\n",
      "          'boy': 2,\n",
      "          'like': 2,\n",
      "          'nwhile': 2,\n",
      "          'comedy': 2,\n",
      "          'brother': 2,\n",
      "          'one': 2,\n",
      "          'catch': 2,\n",
      "          'story': 2,\n",
      "          'love': 2,\n",
      "          'tenley': 2,\n",
      "          'cape': 2,\n",
      "          'cod': 2,\n",
      "          'baseball': 2,\n",
      "          'fighting': 2,\n",
      "          'dad': 2,\n",
      "          'fred': 2,\n",
      "          'teammates': 2,\n",
      "          'make': 2,\n",
      "          'woman': 2,\n",
      "          'ass': 2,\n",
      "          'lillard': 2,\n",
      "          'nice': 2,\n",
      "          'character': 2,\n",
      "          'film': 2,\n",
      "          'scooby': 2,\n",
      "          'doo': 2,\n",
      "          'number': 1,\n",
      "          'critics': 1,\n",
      "          'decided': 1,\n",
      "          'open': 1,\n",
      "          'season': 1,\n",
      "          'prize': 1,\n",
      "          'slamming': 1,\n",
      "          'talentless': 1,\n",
      "          'pretty': 1,\n",
      "          'career': 1,\n",
      "          'cruise': 1,\n",
      "          'control': 1,\n",
      "          'soundalike': 1,\n",
      "          'disposable': 1,\n",
      "          'teen': 1,\n",
      "          'fluff': 1,\n",
      "          'head': 1,\n",
      "          'heels': 1,\n",
      "          'boys': 1,\n",
      "          'girls': 1,\n",
      "          'shes': 1,\n",
      "          'oeuvre': 1,\n",
      "          'hard': 1,\n",
      "          'defend': 1,\n",
      "          'talent': 1,\n",
      "          'ni': 1,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'independent': 1,\n",
      "          'dark': 1,\n",
      "          'house': 1,\n",
      "          'yes': 1,\n",
      "          'gave': 1,\n",
      "          'subtle': 1,\n",
      "          'impressive': 1,\n",
      "          'performance': 1,\n",
      "          'younger': 1,\n",
      "          'americas': 1,\n",
      "          'freakiest': 1,\n",
      "          'families': 1,\n",
      "          'nprinze': 1,\n",
      "          'acting': 1,\n",
      "          'chops': 1,\n",
      "          'needs': 1,\n",
      "          'take': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'grownup': 1,\n",
      "          'movies': 1,\n",
      "          'show': 1,\n",
      "          'nonbelievers': 1,\n",
      "          'takes': 1,\n",
      "          'n': 1,\n",
      "          'certainly': 1,\n",
      "          'wont': 1,\n",
      "          'help': 1,\n",
      "          'case': 1,\n",
      "          'ninoffensive': 1,\n",
      "          'generic': 1,\n",
      "          'baseballrelated': 1,\n",
      "          'romantic': 1,\n",
      "          'little': 1,\n",
      "          'kill': 1,\n",
      "          'deals': 1,\n",
      "          'affair': 1,\n",
      "          'jessica': 1,\n",
      "          'biel': 1,\n",
      "          'wealthy': 1,\n",
      "          'girl': 1,\n",
      "          'ryan': 1,\n",
      "          'local': 1,\n",
      "          'working': 1,\n",
      "          'class': 1,\n",
      "          'family': 1,\n",
      "          'dreams': 1,\n",
      "          'becoming': 1,\n",
      "          'bigtime': 1,\n",
      "          'star': 1,\n",
      "          'nryans': 1,\n",
      "          'preoccupation': 1,\n",
      "          'new': 1,\n",
      "          'honeybunny': 1,\n",
      "          'drives': 1,\n",
      "          'elitist': 1,\n",
      "          'father': 1,\n",
      "          'bruce': 1,\n",
      "          'davison': 1,\n",
      "          'crazy': 1,\n",
      "          'endangers': 1,\n",
      "          'position': 1,\n",
      "          'pitcher': 1,\n",
      "          'league': 1,\n",
      "          'team': 1,\n",
      "          'nits': 1,\n",
      "          'wonder': 1,\n",
      "          'kid': 1,\n",
      "          'pitch': 1,\n",
      "          'occupied': 1,\n",
      "          'making': 1,\n",
      "          'bonding': 1,\n",
      "          'ward': 1,\n",
      "          'deserves': 1,\n",
      "          'better': 1,\n",
      "          'jason': 1,\n",
      "          'gedrick': 1,\n",
      "          'carousing': 1,\n",
      "          'neighborhood': 1,\n",
      "          'bar': 1,\n",
      "          'filmmakers': 1,\n",
      "          'desperately': 1,\n",
      "          'want': 1,\n",
      "          'quirky': 1,\n",
      "          'characterheavy': 1,\n",
      "          'bull': 1,\n",
      "          'durham': 1,\n",
      "          'havent': 1,\n",
      "          'got': 1,\n",
      "          'clue': 1,\n",
      "          'get': 1,\n",
      "          'nand': 1,\n",
      "          'glide': 1,\n",
      "          'clich': 1,\n",
      "          'next': 1,\n",
      "          '108': 1,\n",
      "          'minutes': 1,\n",
      "          'bit': 1,\n",
      "          'originality': 1,\n",
      "          'comes': 1,\n",
      "          'marc': 1,\n",
      "          'minor': 1,\n",
      "          'role': 1,\n",
      "          'centerfielder': 1,\n",
      "          'texas': 1,\n",
      "          'nin': 1,\n",
      "          'early': 1,\n",
      "          'barroom': 1,\n",
      "          'scene': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'demonfighting': 1,\n",
      "          'riley': 1,\n",
      "          'finn': 1,\n",
      "          'buffy': 1,\n",
      "          'vampire': 1,\n",
      "          'slayer': 1,\n",
      "          'hears': 1,\n",
      "          'compliment': 1,\n",
      "          'guy': 1,\n",
      "          'turns': 1,\n",
      "          'teammate': 1,\n",
      "          'matthew': 1,\n",
      "          'states': 1,\n",
      "          'na': 1,\n",
      "          'bubble': 1,\n",
      "          'butt': 1,\n",
      "          'nwhen': 1,\n",
      "          'gives': 1,\n",
      "          'insane': 1,\n",
      "          'nlook': 1,\n",
      "          'calmly': 1,\n",
      "          'says': 1,\n",
      "          'nothing': 1,\n",
      "          'sexual': 1,\n",
      "          'goes': 1,\n",
      "          'evaluate': 1,\n",
      "          'hindends': 1,\n",
      "          'players': 1,\n",
      "          'including': 1,\n",
      "          'lillards': 1,\n",
      "          'nspeaking': 1,\n",
      "          'asses': 1,\n",
      "          'bare': 1,\n",
      "          'nudity': 1,\n",
      "          'clause': 1,\n",
      "          'contract': 1,\n",
      "          'two': 1,\n",
      "          'stuntbutts': 1,\n",
      "          'employed': 1,\n",
      "          'couple': 1,\n",
      "          'seminude': 1,\n",
      "          'shots': 1,\n",
      "          'nblucas': 1,\n",
      "          'whose': 1,\n",
      "          'secretly': 1,\n",
      "          'dates': 1,\n",
      "          'large': 1,\n",
      "          'throughout': 1,\n",
      "          'gets': 1,\n",
      "          'another': 1,\n",
      "          'unique': 1,\n",
      "          'moment': 1,\n",
      "          'late': 1,\n",
      "          'nsick': 1,\n",
      "          'hearing': 1,\n",
      "          'fat': 1,\n",
      "          'chick': 1,\n",
      "          'jokes': 1,\n",
      "          'climbs': 1,\n",
      "          'top': 1,\n",
      "          'table': 1,\n",
      "          'loudly': 1,\n",
      "          'declares': 1,\n",
      "          'amplysized': 1,\n",
      "          'ladies': 1,\n",
      "          'speech': 1,\n",
      "          'still': 1,\n",
      "          'ends': 1,\n",
      "          'objectifying': 1,\n",
      "          'women': 1,\n",
      "          'remains': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'numbingly': 1,\n",
      "          'ordinary': 1,\n",
      "          'ntrivial': 1,\n",
      "          'tidbit': 1,\n",
      "          'marks': 1,\n",
      "          'summit': 1,\n",
      "          'nmarc': 1,\n",
      "          'appears': 1,\n",
      "          'jay': 1,\n",
      "          'silent': 1,\n",
      "          'bob': 1,\n",
      "          'strike': 1,\n",
      "          'back': 1,\n",
      "          'gang': 1,\n",
      "          'plays': 1,\n",
      "          'upcoming': 1,\n",
      "          'big': 1,\n",
      "          'budget': 1,\n",
      "          'version': 1,\n",
      "          'old': 1,\n",
      "          'cartoon': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'one': 11,\n",
      "          'alicia': 8,\n",
      "          'nthe': 6,\n",
      "          'film': 5,\n",
      "          'george': 4,\n",
      "          'like': 3,\n",
      "          'theres': 3,\n",
      "          'night': 3,\n",
      "          'lee': 3,\n",
      "          'garlington': 3,\n",
      "          'shows': 3,\n",
      "          'characters': 3,\n",
      "          'thoughts': 3,\n",
      "          'jeremy': 3,\n",
      "          'kind': 3,\n",
      "          'babysitting': 3,\n",
      "          'see': 3,\n",
      "          'ni': 3,\n",
      "          'films': 2,\n",
      "          'erotic': 2,\n",
      "          'thrillers': 2,\n",
      "          'shannon': 2,\n",
      "          'tweed': 2,\n",
      "          'nfirst': 2,\n",
      "          'care': 2,\n",
      "          'j': 2,\n",
      "          'party': 2,\n",
      "          'alicias': 2,\n",
      "          'thing': 2,\n",
      "          'nicky': 2,\n",
      "          'little': 2,\n",
      "          'segal': 2,\n",
      "          'even': 2,\n",
      "          'bed': 2,\n",
      "          'guess': 2,\n",
      "          'big': 2,\n",
      "          'shes': 2,\n",
      "          'nso': 2,\n",
      "          'sometimes': 2,\n",
      "          'featuring': 2,\n",
      "          'sadly': 2,\n",
      "          'everybody': 1,\n",
      "          'thinking': 1,\n",
      "          'nno': 1,\n",
      "          'documentary': 1,\n",
      "          'us': 1,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'cryin': 1,\n",
      "          'video': 1,\n",
      "          'nthis': 1,\n",
      "          'starring': 1,\n",
      "          'whirry': 1,\n",
      "          'zero': 1,\n",
      "          'sex': 1,\n",
      "          'almost': 1,\n",
      "          'nudity': 1,\n",
      "          'wellplotted': 1,\n",
      "          'flicks': 1,\n",
      "          'nwell': 1,\n",
      "          'anyway': 1,\n",
      "          'plot': 1,\n",
      "          'nalicia': 1,\n",
      "          'plays': 1,\n",
      "          'well': 1,\n",
      "          'babysitter': 1,\n",
      "          'taking': 1,\n",
      "          'kids': 1,\n",
      "          'parents': 1,\n",
      "          'nwalsh': 1,\n",
      "          'go': 1,\n",
      "          'trying': 1,\n",
      "          'introspective': 1,\n",
      "          'every': 1,\n",
      "          'except': 1,\n",
      "          'cases': 1,\n",
      "          'arent': 1,\n",
      "          'kosher': 1,\n",
      "          'boyfriend': 1,\n",
      "          'london': 1,\n",
      "          'gave': 1,\n",
      "          'alltime': 1,\n",
      "          'lousy': 1,\n",
      "          'performances': 1,\n",
      "          'mallrats': 1,\n",
      "          'notch': 1,\n",
      "          'better': 1,\n",
      "          'whos': 1,\n",
      "          'dorky': 1,\n",
      "          'kid': 1,\n",
      "          'hangs': 1,\n",
      "          'bully': 1,\n",
      "          'played': 1,\n",
      "          'katt': 1,\n",
      "          'suburbia': 1,\n",
      "          'hes': 1,\n",
      "          'got': 1,\n",
      "          'quiet': 1,\n",
      "          'creepiness': 1,\n",
      "          'pat': 1,\n",
      "          'nthey': 1,\n",
      "          'decide': 1,\n",
      "          'want': 1,\n",
      "          'crash': 1,\n",
      "          'job': 1,\n",
      "          'looking': 1,\n",
      "          'typical': 1,\n",
      "          'hankypanky': 1,\n",
      "          'nsomethine': 1,\n",
      "          'intercuts': 1,\n",
      "          'subplots': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'nickys': 1,\n",
      "          'dreams': 1,\n",
      "          'threeway': 1,\n",
      "          'nthinking': 1,\n",
      "          'coming': 1,\n",
      "          'home': 1,\n",
      "          'find': 1,\n",
      "          'naked': 1,\n",
      "          'bathtub': 1,\n",
      "          'covered': 1,\n",
      "          'tease': 1,\n",
      "          'worst': 1,\n",
      "          'dreaming': 1,\n",
      "          'hunk': 1,\n",
      "          'nit': 1,\n",
      "          'together': 1,\n",
      "          'nyea': 1,\n",
      "          'wanted': 1,\n",
      "          'though': 1,\n",
      "          'im': 1,\n",
      "          'used': 1,\n",
      "          'seeing': 1,\n",
      "          'mary': 1,\n",
      "          'tyler': 1,\n",
      "          'moore': 1,\n",
      "          'fooling': 1,\n",
      "          'around': 1,\n",
      "          'flirting': 1,\n",
      "          'disaster': 1,\n",
      "          'ending': 1,\n",
      "          'tragedy': 1,\n",
      "          'come': 1,\n",
      "          'nlike': 1,\n",
      "          'interesting': 1,\n",
      "          'mainly': 1,\n",
      "          'mostly': 1,\n",
      "          'fantasies': 1,\n",
      "          'mystery': 1,\n",
      "          'something': 1,\n",
      "          'nbut': 1,\n",
      "          'never': 1,\n",
      "          'explored': 1,\n",
      "          'basically': 1,\n",
      "          'series': 1,\n",
      "          'mastabatory': 1,\n",
      "          'images': 1,\n",
      "          'nonnude': 1,\n",
      "          'scantilyclad': 1,\n",
      "          'watched': 1,\n",
      "          'free': 1,\n",
      "          'previews': 1,\n",
      "          'showtime': 1,\n",
      "          'cinemax': 1,\n",
      "          'let': 1,\n",
      "          'tell': 1,\n",
      "          'way': 1,\n",
      "          'watch': 1,\n",
      "          'mean': 1,\n",
      "          'reason': 1,\n",
      "          'put': 1,\n",
      "          'kinds': 1,\n",
      "          'late': 1,\n",
      "          'theyre': 1,\n",
      "          'good': 1,\n",
      "          'sleeping': 1,\n",
      "          'pills': 1,\n",
      "          'nand': 1,\n",
      "          'fat': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ni': 16,\n",
      "          'effects': 12,\n",
      "          'lucas': 11,\n",
      "          'film': 11,\n",
      "          'phantom': 9,\n",
      "          'menace': 9,\n",
      "          'nthe': 9,\n",
      "          'special': 9,\n",
      "          'characters': 8,\n",
      "          'one': 7,\n",
      "          'see': 6,\n",
      "          'first': 6,\n",
      "          'star': 5,\n",
      "          'wars': 5,\n",
      "          'george': 5,\n",
      "          'young': 5,\n",
      "          'nand': 5,\n",
      "          'wanted': 5,\n",
      "          'movie': 5,\n",
      "          'jedi': 5,\n",
      "          'looking': 5,\n",
      "          'character': 5,\n",
      "          'anakin': 5,\n",
      "          'original': 4,\n",
      "          'movies': 4,\n",
      "          'got': 4,\n",
      "          'minutes': 4,\n",
      "          'n': 4,\n",
      "          'dont': 4,\n",
      "          'neeson': 3,\n",
      "          'portman': 3,\n",
      "          'lloyd': 3,\n",
      "          'every': 3,\n",
      "          'trilogy': 3,\n",
      "          'people': 3,\n",
      "          'time': 3,\n",
      "          'seen': 3,\n",
      "          'hype': 3,\n",
      "          'picture': 3,\n",
      "          'tired': 3,\n",
      "          'films': 3,\n",
      "          'shot': 3,\n",
      "          'fifteen': 3,\n",
      "          'scene': 3,\n",
      "          'isnt': 3,\n",
      "          'digital': 3,\n",
      "          'didnt': 3,\n",
      "          'story': 3,\n",
      "          'quigon': 3,\n",
      "          'jar': 3,\n",
      "          'tatooine': 3,\n",
      "          'darth': 3,\n",
      "          'thing': 3,\n",
      "          'like': 3,\n",
      "          '1999': 2,\n",
      "          'liam': 2,\n",
      "          'ewan': 2,\n",
      "          'mcgregor': 2,\n",
      "          'natalie': 2,\n",
      "          'jake': 2,\n",
      "          'pernilla': 2,\n",
      "          'august': 2,\n",
      "          'ahmed': 2,\n",
      "          'best': 2,\n",
      "          'nive': 2,\n",
      "          'would': 2,\n",
      "          'impossible': 2,\n",
      "          'fact': 2,\n",
      "          'nearly': 2,\n",
      "          'much': 2,\n",
      "          'many': 2,\n",
      "          'moving': 2,\n",
      "          'pretty': 2,\n",
      "          'well': 2,\n",
      "          'theater': 2,\n",
      "          'less': 2,\n",
      "          'back': 2,\n",
      "          'three': 2,\n",
      "          'nwhen': 2,\n",
      "          'series': 2,\n",
      "          'released': 2,\n",
      "          'last': 2,\n",
      "          'nbut': 2,\n",
      "          'outside': 2,\n",
      "          'knights': 2,\n",
      "          'asked': 2,\n",
      "          'magic': 2,\n",
      "          'end': 2,\n",
      "          'away': 2,\n",
      "          'force': 2,\n",
      "          'nits': 2,\n",
      "          'looked': 2,\n",
      "          'nthere': 2,\n",
      "          'attempts': 2,\n",
      "          'bad': 2,\n",
      "          'good': 2,\n",
      "          'nthis': 2,\n",
      "          'around': 2,\n",
      "          'jinn': 2,\n",
      "          'lost': 2,\n",
      "          'obiwan': 2,\n",
      "          'naboo': 2,\n",
      "          'truly': 2,\n",
      "          'binks': 2,\n",
      "          'cgi': 2,\n",
      "          'mother': 2,\n",
      "          'maul': 2,\n",
      "          'lines': 2,\n",
      "          'way': 2,\n",
      "          'nwhat': 2,\n",
      "          'role': 2,\n",
      "          'hes': 2,\n",
      "          'really': 2,\n",
      "          'interesting': 2,\n",
      "          'great': 2,\n",
      "          'look': 2,\n",
      "          'two': 2,\n",
      "          'also': 2,\n",
      "          'action': 2,\n",
      "          'found': 2,\n",
      "          'depth': 2,\n",
      "          'ive': 2,\n",
      "          'sick': 2,\n",
      "          'cant': 2,\n",
      "          'spaceships': 2,\n",
      "          'go': 2,\n",
      "          'hours': 2,\n",
      "          'episode': 1,\n",
      "          'ndirector': 1,\n",
      "          'cast': 1,\n",
      "          'ian': 1,\n",
      "          'mcdiarmid': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'oliver': 1,\n",
      "          'ford': 1,\n",
      "          'davies': 1,\n",
      "          'terence': 1,\n",
      "          'stamp': 1,\n",
      "          'frank': 1,\n",
      "          'oz': 1,\n",
      "          'kenny': 1,\n",
      "          'baker': 1,\n",
      "          'anthony': 1,\n",
      "          'daniels': 1,\n",
      "          'screenplay': 1,\n",
      "          'producers': 1,\n",
      "          'rick': 1,\n",
      "          'mccallum': 1,\n",
      "          'runtime': 1,\n",
      "          '131': 1,\n",
      "          'min': 1,\n",
      "          'nus': 1,\n",
      "          'distribution': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'mild': 1,\n",
      "          'violence': 1,\n",
      "          'thematic': 1,\n",
      "          'elements': 1,\n",
      "          'ncopyright': 1,\n",
      "          'nathaniel': 1,\n",
      "          'r': 1,\n",
      "          'atcheson': 1,\n",
      "          'na': 1,\n",
      "          'fellow': 1,\n",
      "          'critic': 1,\n",
      "          'stated': 1,\n",
      "          'belief': 1,\n",
      "          'reviewer': 1,\n",
      "          'speak': 1,\n",
      "          'review': 1,\n",
      "          'attempted': 1,\n",
      "          'obey': 1,\n",
      "          'rule': 1,\n",
      "          'recent': 1,\n",
      "          'months': 1,\n",
      "          'case': 1,\n",
      "          'person': 1,\n",
      "          'goes': 1,\n",
      "          'brings': 1,\n",
      "          'baggage': 1,\n",
      "          'means': 1,\n",
      "          'nfor': 1,\n",
      "          'calibrated': 1,\n",
      "          'creativity': 1,\n",
      "          'child': 1,\n",
      "          'masterful': 1,\n",
      "          'works': 1,\n",
      "          'art': 1,\n",
      "          'mix': 1,\n",
      "          'stories': 1,\n",
      "          'astonishing': 1,\n",
      "          'still': 1,\n",
      "          'hold': 1,\n",
      "          'darn': 1,\n",
      "          'release': 1,\n",
      "          'doesnt': 1,\n",
      "          'make': 1,\n",
      "          'dedicated': 1,\n",
      "          'non': 1,\n",
      "          'contrary': 1,\n",
      "          'empire': 1,\n",
      "          'strikes': 1,\n",
      "          'particular': 1,\n",
      "          'items': 1,\n",
      "          'short': 1,\n",
      "          'list': 1,\n",
      "          'love': 1,\n",
      "          'heard': 1,\n",
      "          'making': 1,\n",
      "          'ninefilm': 1,\n",
      "          'exited': 1,\n",
      "          'saw': 1,\n",
      "          'screenshots': 1,\n",
      "          'year': 1,\n",
      "          'ago': 1,\n",
      "          'embarked': 1,\n",
      "          'yearlong': 1,\n",
      "          'drool': 1,\n",
      "          'anticipation': 1,\n",
      "          'previews': 1,\n",
      "          'thanksgiving': 1,\n",
      "          'ready': 1,\n",
      "          'insane': 1,\n",
      "          'marketing': 1,\n",
      "          'campaign': 1,\n",
      "          'lucasfilms': 1,\n",
      "          'secretive': 1,\n",
      "          'snobbery': 1,\n",
      "          'nin': 1,\n",
      "          'weeks': 1,\n",
      "          'opened': 1,\n",
      "          'multitudes': 1,\n",
      "          'fans': 1,\n",
      "          'waited': 1,\n",
      "          'theaters': 1,\n",
      "          'stood': 1,\n",
      "          'boiling': 1,\n",
      "          'sun': 1,\n",
      "          'days': 1,\n",
      "          'advance': 1,\n",
      "          'ones': 1,\n",
      "          'hearing': 1,\n",
      "          'seeing': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutouts': 1,\n",
      "          'whenever': 1,\n",
      "          'went': 1,\n",
      "          'kfc': 1,\n",
      "          'taco': 1,\n",
      "          'bell': 1,\n",
      "          'nreader': 1,\n",
      "          'misunderstand': 1,\n",
      "          'antihype': 1,\n",
      "          'reaction': 1,\n",
      "          'unavoidable': 1,\n",
      "          'understand': 1,\n",
      "          'accept': 1,\n",
      "          'happens': 1,\n",
      "          'prequel': 1,\n",
      "          'widely': 1,\n",
      "          'beloved': 1,\n",
      "          'get': 1,\n",
      "          'nfive': 1,\n",
      "          'knew': 1,\n",
      "          'problem': 1,\n",
      "          'churning': 1,\n",
      "          'stale': 1,\n",
      "          'dialogue': 1,\n",
      "          'machinegun': 1,\n",
      "          'rapidity': 1,\n",
      "          'arent': 1,\n",
      "          'developed': 1,\n",
      "          'adventures': 1,\n",
      "          'frame': 1,\n",
      "          'entire': 1,\n",
      "          'nthese': 1,\n",
      "          'questions': 1,\n",
      "          'early': 1,\n",
      "          'nlater': 1,\n",
      "          'wheres': 1,\n",
      "          'watch': 1,\n",
      "          'nby': 1,\n",
      "          'maddened': 1,\n",
      "          'depressed': 1,\n",
      "          'ngeorge': 1,\n",
      "          'funneled': 1,\n",
      "          'wonderful': 1,\n",
      "          'pointless': 1,\n",
      "          'mindless': 1,\n",
      "          'summer': 1,\n",
      "          'blockbuster': 1,\n",
      "          'ntake': 1,\n",
      "          'title': 1,\n",
      "          'talk': 1,\n",
      "          'youre': 1,\n",
      "          'left': 1,\n",
      "          'easily': 1,\n",
      "          'vacuous': 1,\n",
      "          'embarrassment': 1,\n",
      "          'desperately': 1,\n",
      "          'explored': 1,\n",
      "          'new': 1,\n",
      "          'theme': 1,\n",
      "          'examined': 1,\n",
      "          'used': 1,\n",
      "          'theyre': 1,\n",
      "          'token': 1,\n",
      "          'created': 1,\n",
      "          'simultaneously': 1,\n",
      "          'abysmally': 1,\n",
      "          'excuse': 1,\n",
      "          'showcase': 1,\n",
      "          'want': 1,\n",
      "          'leave': 1,\n",
      "          'headache': 1,\n",
      "          'bitter': 1,\n",
      "          'taste': 1,\n",
      "          'mouth': 1,\n",
      "          'centers': 1,\n",
      "          'mostly': 1,\n",
      "          'confused': 1,\n",
      "          'apprentice': 1,\n",
      "          'kenobi': 1,\n",
      "          'scarcely': 1,\n",
      "          'line': 1,\n",
      "          'liberate': 1,\n",
      "          'planet': 1,\n",
      "          'nnaboo': 1,\n",
      "          'victim': 1,\n",
      "          'bureaucratic': 1,\n",
      "          'war': 1,\n",
      "          'trade': 1,\n",
      "          'federation': 1,\n",
      "          'contact': 1,\n",
      "          'queen': 1,\n",
      "          'amidala': 1,\n",
      "          'teenage': 1,\n",
      "          'ruler': 1,\n",
      "          'cares': 1,\n",
      "          'nafter': 1,\n",
      "          'picking': 1,\n",
      "          'completely': 1,\n",
      "          'voiced': 1,\n",
      "          'head': 1,\n",
      "          'meet': 1,\n",
      "          'skywalker': 1,\n",
      "          'nquigon': 1,\n",
      "          'knows': 1,\n",
      "          'strong': 1,\n",
      "          'take': 1,\n",
      "          'boy': 1,\n",
      "          'journeys': 1,\n",
      "          'guys': 1,\n",
      "          'sidious': 1,\n",
      "          'neither': 1,\n",
      "          'enough': 1,\n",
      "          'register': 1,\n",
      "          'anything': 1,\n",
      "          'particularly': 1,\n",
      "          'wrong': 1,\n",
      "          'synopsis': 1,\n",
      "          'form': 1,\n",
      "          'handled': 1,\n",
      "          'however': 1,\n",
      "          'unsatisfactory': 1,\n",
      "          'nfirst': 1,\n",
      "          'learn': 1,\n",
      "          'single': 1,\n",
      "          'nnot': 1,\n",
      "          'life': 1,\n",
      "          'nwell': 1,\n",
      "          'imagine': 1,\n",
      "          'nthats': 1,\n",
      "          'feels': 1,\n",
      "          'plot': 1,\n",
      "          'device': 1,\n",
      "          'probably': 1,\n",
      "          'explains': 1,\n",
      "          'looks': 1,\n",
      "          'hopeless': 1,\n",
      "          'recently': 1,\n",
      "          'retired': 1,\n",
      "          'blame': 1,\n",
      "          'honestly': 1,\n",
      "          'nobiwan': 1,\n",
      "          'forward': 1,\n",
      "          'learning': 1,\n",
      "          'even': 1,\n",
      "          'nmcgregor': 1,\n",
      "          'anyone': 1,\n",
      "          'hoping': 1,\n",
      "          'engaging': 1,\n",
      "          'actor': 1,\n",
      "          'performance': 1,\n",
      "          'urged': 1,\n",
      "          'elsewhere': 1,\n",
      "          'nsince': 1,\n",
      "          'men': 1,\n",
      "          'focus': 1,\n",
      "          'served': 1,\n",
      "          'us': 1,\n",
      "          'big': 1,\n",
      "          'emotional': 1,\n",
      "          'void': 1,\n",
      "          'centerpiece': 1,\n",
      "          'nthings': 1,\n",
      "          'start': 1,\n",
      "          'pick': 1,\n",
      "          'reach': 1,\n",
      "          'perhaps': 1,\n",
      "          'fleshedout': 1,\n",
      "          'thoughtful': 1,\n",
      "          'job': 1,\n",
      "          'hugely': 1,\n",
      "          'impressed': 1,\n",
      "          'sand': 1,\n",
      "          'speeder': 1,\n",
      "          'rarely': 1,\n",
      "          'sequence': 1,\n",
      "          'fast': 1,\n",
      "          'exciting': 1,\n",
      "          'says': 1,\n",
      "          'goodbye': 1,\n",
      "          'nalso': 1,\n",
      "          'fairly': 1,\n",
      "          'manages': 1,\n",
      "          'give': 1,\n",
      "          'little': 1,\n",
      "          'written': 1,\n",
      "          'njar': 1,\n",
      "          'annoying': 1,\n",
      "          'ever': 1,\n",
      "          'endure': 1,\n",
      "          'humans': 1,\n",
      "          'nas': 1,\n",
      "          'soon': 1,\n",
      "          'relativelybrief': 1,\n",
      "          'segment': 1,\n",
      "          'mindnumbing': 1,\n",
      "          'depthless': 1,\n",
      "          'scenes': 1,\n",
      "          'qualify': 1,\n",
      "          'extravaganzas': 1,\n",
      "          'reason': 1,\n",
      "          'obvious': 1,\n",
      "          'restraint': 1,\n",
      "          'say': 1,\n",
      "          'find': 1,\n",
      "          'final': 1,\n",
      "          'battle': 1,\n",
      "          'visually': 1,\n",
      "          'exceptional': 1,\n",
      "          'deadening': 1,\n",
      "          'tiresome': 1,\n",
      "          'nmy': 1,\n",
      "          'breaking': 1,\n",
      "          'point': 1,\n",
      "          'near': 1,\n",
      "          'getting': 1,\n",
      "          'questioned': 1,\n",
      "          'yoda': 1,\n",
      "          'masters': 1,\n",
      "          'background': 1,\n",
      "          'hundreds': 1,\n",
      "          'flying': 1,\n",
      "          'sky': 1,\n",
      "          'ncant': 1,\n",
      "          'stinking': 1,\n",
      "          'bursting': 1,\n",
      "          'seems': 1,\n",
      "          'planets': 1,\n",
      "          'backgrounds': 1,\n",
      "          'physical': 1,\n",
      "          'landscape': 1,\n",
      "          'theres': 1,\n",
      "          'question': 1,\n",
      "          'sixteen': 1,\n",
      "          'years': 1,\n",
      "          'return': 1,\n",
      "          'feeling': 1,\n",
      "          'focused': 1,\n",
      "          'forgot': 1,\n",
      "          'entirely': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'feel': 1,\n",
      "          'njohn': 1,\n",
      "          'williams': 1,\n",
      "          'familiar': 1,\n",
      "          'score': 1,\n",
      "          'help': 1,\n",
      "          'direction': 1,\n",
      "          'think': 1,\n",
      "          'comes': 1,\n",
      "          'right': 1,\n",
      "          'none': 1,\n",
      "          'longed': 1,\n",
      "          'magnetic': 1,\n",
      "          'presence': 1,\n",
      "          'han': 1,\n",
      "          'luke': 1,\n",
      "          'leia': 1,\n",
      "          'ridiculous': 1,\n",
      "          'expectations': 1,\n",
      "          'nmine': 1,\n",
      "          'werent': 1,\n",
      "          'high': 1,\n",
      "          'simply': 1,\n",
      "          'showed': 1,\n",
      "          'roots': 1,\n",
      "          'grew': 1,\n",
      "          'loving': 1,\n",
      "          'ninstead': 1,\n",
      "          'lifeless': 1,\n",
      "          'imaginative': 1,\n",
      "          'computer': 1,\n",
      "          'graphics': 1,\n",
      "          'show': 1,\n",
      "          'hate': 1,\n",
      "          'resent': 1,\n",
      "          'id': 1,\n",
      "          'forget': 1,\n",
      "          'exists': 1,\n",
      "          'yet': 1,\n",
      "          'stay': 1,\n",
      "          'hope': 1,\n",
      "          'episodes': 1,\n",
      "          'ii': 1,\n",
      "          'iii': 1,\n",
      "          'something': 1,\n",
      "          'substance': 1,\n",
      "          'pulled': 1,\n",
      "          'task': 1,\n",
      "          'destroying': 1,\n",
      "          'indestructible': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'film': 6,\n",
      "          'actors': 6,\n",
      "          'years': 5,\n",
      "          'movie': 4,\n",
      "          'harry': 4,\n",
      "          'ross': 4,\n",
      "          'doesnt': 4,\n",
      "          'past': 3,\n",
      "          'live': 3,\n",
      "          'mexico': 3,\n",
      "          'jack': 3,\n",
      "          'former': 3,\n",
      "          'rosss': 3,\n",
      "          'make': 3,\n",
      "          'better': 3,\n",
      "          'lives': 2,\n",
      "          'older': 2,\n",
      "          'come': 2,\n",
      "          'nin': 2,\n",
      "          'another': 2,\n",
      "          'noir': 2,\n",
      "          'set': 2,\n",
      "          'enjoyable': 2,\n",
      "          'watch': 2,\n",
      "          'story': 2,\n",
      "          'nhes': 2,\n",
      "          'well': 2,\n",
      "          'daughter': 2,\n",
      "          'im': 2,\n",
      "          'na': 2,\n",
      "          'catherine': 2,\n",
      "          'ames': 2,\n",
      "          'three': 2,\n",
      "          'friends': 2,\n",
      "          'gets': 2,\n",
      "          'something': 2,\n",
      "          'time': 2,\n",
      "          'jobs': 2,\n",
      "          'even': 2,\n",
      "          'turn': 2,\n",
      "          'expects': 2,\n",
      "          'excop': 2,\n",
      "          'partner': 2,\n",
      "          'exactly': 2,\n",
      "          'everyone': 2,\n",
      "          'nits': 2,\n",
      "          'side': 2,\n",
      "          'goofier': 2,\n",
      "          'relationship': 2,\n",
      "          'didnt': 2,\n",
      "          'also': 2,\n",
      "          'long': 2,\n",
      "          'run': 2,\n",
      "          'course': 2,\n",
      "          'screen': 2,\n",
      "          'across': 2,\n",
      "          'old': 2,\n",
      "          'world': 2,\n",
      "          'would': 2,\n",
      "          'secondrate': 2,\n",
      "          'people': 1,\n",
      "          'twilight': 1,\n",
      "          'attempting': 1,\n",
      "          'grips': 1,\n",
      "          'shared': 1,\n",
      "          'histories': 1,\n",
      "          'possible': 1,\n",
      "          'futures': 1,\n",
      "          'fascinating': 1,\n",
      "          'topic': 1,\n",
      "          'nfinding': 1,\n",
      "          'allstar': 1,\n",
      "          'cast': 1,\n",
      "          'stroke': 1,\n",
      "          'genius': 1,\n",
      "          'ncombining': 1,\n",
      "          'threetime': 1,\n",
      "          'oscarwinning': 1,\n",
      "          'director': 1,\n",
      "          'robert': 1,\n",
      "          'benton': 1,\n",
      "          'kramer': 1,\n",
      "          'vs': 1,\n",
      "          'nkramer': 1,\n",
      "          'creating': 1,\n",
      "          'decidedly': 1,\n",
      "          'mediocre': 1,\n",
      "          'stuff': 1,\n",
      "          'disappointment': 1,\n",
      "          'yet': 1,\n",
      "          'mystery': 1,\n",
      "          'hollywood': 1,\n",
      "          'many': 1,\n",
      "          'seen': 1,\n",
      "          'n': 1,\n",
      "          'atmosphere': 1,\n",
      "          'moody': 1,\n",
      "          'goes': 1,\n",
      "          'nowhere': 1,\n",
      "          'nover70': 1,\n",
      "          'paul': 1,\n",
      "          'newman': 1,\n",
      "          'washed': 1,\n",
      "          'copturnedprivate': 1,\n",
      "          'eyeturned': 1,\n",
      "          'man': 1,\n",
      "          'friday': 1,\n",
      "          'trying': 1,\n",
      "          'figure': 1,\n",
      "          'remains': 1,\n",
      "          'life': 1,\n",
      "          'screwed': 1,\n",
      "          'things': 1,\n",
      "          'pretty': 1,\n",
      "          'wife': 1,\n",
      "          'nnow': 1,\n",
      "          'drunk': 1,\n",
      "          'crossroads': 1,\n",
      "          'couple': 1,\n",
      "          'ago': 1,\n",
      "          'traveled': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'mel': 1,\n",
      "          'reese': 1,\n",
      "          'witherspoon': 1,\n",
      "          'underage': 1,\n",
      "          'gene': 1,\n",
      "          'hackman': 1,\n",
      "          'susan': 1,\n",
      "          'sarandon': 1,\n",
      "          'stars': 1,\n",
      "          'prime': 1,\n",
      "          'become': 1,\n",
      "          'fast': 1,\n",
      "          'none': 1,\n",
      "          'impression': 1,\n",
      "          'hanging': 1,\n",
      "          'waiting': 1,\n",
      "          'wake': 1,\n",
      "          'nto': 1,\n",
      "          'fill': 1,\n",
      "          'odd': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'njack': 1,\n",
      "          'worse': 1,\n",
      "          'shape': 1,\n",
      "          'dying': 1,\n",
      "          'cancer': 1,\n",
      "          'year': 1,\n",
      "          'nthings': 1,\n",
      "          'exciting': 1,\n",
      "          'asks': 1,\n",
      "          'drop': 1,\n",
      "          'sealed': 1,\n",
      "          'manila': 1,\n",
      "          'envelope': 1,\n",
      "          'ninstead': 1,\n",
      "          'routine': 1,\n",
      "          'errand': 1,\n",
      "          'walks': 1,\n",
      "          'barrage': 1,\n",
      "          'bullets': 1,\n",
      "          'gun': 1,\n",
      "          'full': 1,\n",
      "          'bloody': 1,\n",
      "          'holes': 1,\n",
      "          'nthis': 1,\n",
      "          'unsettling': 1,\n",
      "          'event': 1,\n",
      "          'gives': 1,\n",
      "          'detective': 1,\n",
      "          'project': 1,\n",
      "          'throw': 1,\n",
      "          'launches': 1,\n",
      "          'investigation': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'mysterious': 1,\n",
      "          'disappearance': 1,\n",
      "          'catherines': 1,\n",
      "          'first': 1,\n",
      "          'husband': 1,\n",
      "          '20': 1,\n",
      "          'nthrough': 1,\n",
      "          'series': 1,\n",
      "          'complex': 1,\n",
      "          'convoluted': 1,\n",
      "          'plot': 1,\n",
      "          'devices': 1,\n",
      "          'involve': 1,\n",
      "          'murder': 1,\n",
      "          'blackmail': 1,\n",
      "          'guns': 1,\n",
      "          'mels': 1,\n",
      "          'traveling': 1,\n",
      "          'parole': 1,\n",
      "          'officer': 1,\n",
      "          'cop': 1,\n",
      "          'buddies': 1,\n",
      "          'exlover': 1,\n",
      "          'wouldbe': 1,\n",
      "          'sidekick': 1,\n",
      "          'tale': 1,\n",
      "          'finally': 1,\n",
      "          'ends': 1,\n",
      "          'tradition': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'roads': 1,\n",
      "          'unexpected': 1,\n",
      "          'finale': 1,\n",
      "          'journey': 1,\n",
      "          'meanders': 1,\n",
      "          'towards': 1,\n",
      "          'ending': 1,\n",
      "          'one': 1,\n",
      "          'cares': 1,\n",
      "          'surprises': 1,\n",
      "          'whose': 1,\n",
      "          'face': 1,\n",
      "          'fits': 1,\n",
      "          'role': 1,\n",
      "          'scenario': 1,\n",
      "          'nby': 1,\n",
      "          'show': 1,\n",
      "          'matter': 1,\n",
      "          'storyline': 1,\n",
      "          'exemplified': 1,\n",
      "          'rubin': 1,\n",
      "          'giancarlo': 1,\n",
      "          'esposito': 1,\n",
      "          'wannabe': 1,\n",
      "          'nthese': 1,\n",
      "          'scenes': 1,\n",
      "          'obviously': 1,\n",
      "          'designed': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'however': 1,\n",
      "          'neither': 1,\n",
      "          'nrubin': 1,\n",
      "          'either': 1,\n",
      "          'explained': 1,\n",
      "          'care': 1,\n",
      "          'enough': 1,\n",
      "          'point': 1,\n",
      "          'remember': 1,\n",
      "          'running': 1,\n",
      "          'joke': 1,\n",
      "          'supposedly': 1,\n",
      "          'shot': 1,\n",
      "          'probably': 1,\n",
      "          'meant': 1,\n",
      "          'mirror': 1,\n",
      "          'questions': 1,\n",
      "          'whether': 1,\n",
      "          'still': 1,\n",
      "          'able': 1,\n",
      "          'perform': 1,\n",
      "          'funny': 1,\n",
      "          'connect': 1,\n",
      "          'keeps': 1,\n",
      "          'showing': 1,\n",
      "          'non': 1,\n",
      "          'positive': 1,\n",
      "          'often': 1,\n",
      "          'seasoned': 1,\n",
      "          'leads': 1,\n",
      "          'welldeserved': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'accomplished': 1,\n",
      "          'extraordinary': 1,\n",
      "          'nnewman': 1,\n",
      "          'grand': 1,\n",
      "          'actor': 1,\n",
      "          'seem': 1,\n",
      "          'quite': 1,\n",
      "          'suited': 1,\n",
      "          'dark': 1,\n",
      "          'style': 1,\n",
      "          'nhe': 1,\n",
      "          'bit': 1,\n",
      "          'clean': 1,\n",
      "          'understated': 1,\n",
      "          'desperate': 1,\n",
      "          'nhackman': 1,\n",
      "          'lowkey': 1,\n",
      "          'believable': 1,\n",
      "          'lacks': 1,\n",
      "          'sparkle': 1,\n",
      "          'nsarandon': 1,\n",
      "          'comes': 1,\n",
      "          'sultry': 1,\n",
      "          'babe': 1,\n",
      "          'although': 1,\n",
      "          'onedimensional': 1,\n",
      "          'lame': 1,\n",
      "          'dialog': 1,\n",
      "          'cant': 1,\n",
      "          'pull': 1,\n",
      "          'hole': 1,\n",
      "          'dug': 1,\n",
      "          'njames': 1,\n",
      "          'garner': 1,\n",
      "          'plays': 1,\n",
      "          'buddy': 1,\n",
      "          'raymond': 1,\n",
      "          'hope': 1,\n",
      "          'always': 1,\n",
      "          'treat': 1,\n",
      "          'halfheartedly': 1,\n",
      "          'struggles': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'glad': 1,\n",
      "          'shoot': 1,\n",
      "          'pecker': 1,\n",
      "          'best': 1,\n",
      "          'part': 1,\n",
      "          'look': 1,\n",
      "          'relationships': 1,\n",
      "          'change': 1,\n",
      "          'difficult': 1,\n",
      "          'choices': 1,\n",
      "          'must': 1,\n",
      "          'genuinely': 1,\n",
      "          'easy': 1,\n",
      "          'casual': 1,\n",
      "          'interactions': 1,\n",
      "          'among': 1,\n",
      "          'hint': 1,\n",
      "          'much': 1,\n",
      "          'interesting': 1,\n",
      "          'ended': 1,\n",
      "          'audience': 1,\n",
      "          'realizes': 1,\n",
      "          'hopeless': 1,\n",
      "          'reason': 1,\n",
      "          'watching': 1,\n",
      "          'nit': 1,\n",
      "          'reminds': 1,\n",
      "          'disaster': 1,\n",
      "          'movies': 1,\n",
      "          'towering': 1,\n",
      "          'inferno': 1,\n",
      "          'star': 1,\n",
      "          'power': 1,\n",
      "          'supposed': 1,\n",
      "          'ignore': 1,\n",
      "          'films': 1,\n",
      "          'problems': 1,\n",
      "          'ones': 1,\n",
      "          'saved': 1,\n",
      "          'nof': 1,\n",
      "          'dont': 1,\n",
      "          'could': 1,\n",
      "          'little': 1,\n",
      "          'nicer': 1,\n",
      "          'choosing': 1,\n",
      "          'different': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'seagal': 16,\n",
      "          'one': 12,\n",
      "          'message': 8,\n",
      "          'film': 6,\n",
      "          'ni': 5,\n",
      "          'villain': 5,\n",
      "          'movies': 4,\n",
      "          'nof': 4,\n",
      "          'course': 4,\n",
      "          'nbut': 4,\n",
      "          'doesnt': 4,\n",
      "          'movie': 4,\n",
      "          'caine': 4,\n",
      "          'speech': 4,\n",
      "          'suspense': 4,\n",
      "          'martial': 3,\n",
      "          'never': 3,\n",
      "          'also': 3,\n",
      "          'good': 3,\n",
      "          'seems': 3,\n",
      "          'guy': 3,\n",
      "          'although': 3,\n",
      "          'makes': 3,\n",
      "          'goes': 3,\n",
      "          'mind': 3,\n",
      "          'kills': 3,\n",
      "          'watch': 3,\n",
      "          'dont': 3,\n",
      "          'hes': 3,\n",
      "          'executive': 3,\n",
      "          'decision': 3,\n",
      "          'nthis': 3,\n",
      "          'even': 3,\n",
      "          'last': 3,\n",
      "          'time': 3,\n",
      "          'factory': 3,\n",
      "          'played': 3,\n",
      "          'oil': 3,\n",
      "          'john': 3,\n",
      "          'take': 3,\n",
      "          'nhe': 3,\n",
      "          'violence': 3,\n",
      "          'films': 3,\n",
      "          'seriously': 3,\n",
      "          'arts': 2,\n",
      "          'gets': 2,\n",
      "          'talks': 2,\n",
      "          'squints': 2,\n",
      "          'nthey': 2,\n",
      "          'basically': 2,\n",
      "          'art': 2,\n",
      "          'nim': 2,\n",
      "          'sure': 2,\n",
      "          'like': 2,\n",
      "          'maybe': 2,\n",
      "          'back': 2,\n",
      "          'kinda': 2,\n",
      "          'liked': 2,\n",
      "          'siege': 2,\n",
      "          'blows': 2,\n",
      "          'lot': 2,\n",
      "          'stuff': 2,\n",
      "          'bunch': 2,\n",
      "          'crap': 2,\n",
      "          'pay': 2,\n",
      "          'unless': 2,\n",
      "          'e': 2,\n",
      "          'n': 2,\n",
      "          'mean': 2,\n",
      "          'uncle': 2,\n",
      "          'mystery': 2,\n",
      "          'science': 2,\n",
      "          'theatre': 2,\n",
      "          '3000': 2,\n",
      "          'couple': 2,\n",
      "          'nin': 2,\n",
      "          'typical': 2,\n",
      "          'shallow': 2,\n",
      "          'something': 2,\n",
      "          'inuit': 2,\n",
      "          'point': 2,\n",
      "          'chen': 2,\n",
      "          'c': 2,\n",
      "          'mcginley': 2,\n",
      "          'nat': 2,\n",
      "          'far': 2,\n",
      "          'say': 2,\n",
      "          'someone': 2,\n",
      "          'skill': 2,\n",
      "          'depth': 2,\n",
      "          'either': 2,\n",
      "          'talking': 2,\n",
      "          'big': 2,\n",
      "          'corny': 2,\n",
      "          'hokey': 2,\n",
      "          'way': 2,\n",
      "          'didnt': 2,\n",
      "          'case': 2,\n",
      "          'present': 2,\n",
      "          '10': 2,\n",
      "          'minutes': 2,\n",
      "          'get': 2,\n",
      "          'trailers': 2,\n",
      "          'stupid': 2,\n",
      "          'boring': 2,\n",
      "          'star': 2,\n",
      "          'supposed': 2,\n",
      "          'look': 2,\n",
      "          'well': 2,\n",
      "          'performance': 2,\n",
      "          'nand': 2,\n",
      "          'seagals': 2,\n",
      "          'judge': 2,\n",
      "          'master': 1,\n",
      "          'steven': 1,\n",
      "          'mention': 1,\n",
      "          'director': 1,\n",
      "          'built': 1,\n",
      "          'career': 1,\n",
      "          'playing': 1,\n",
      "          'allegedly': 1,\n",
      "          'fictitious': 1,\n",
      "          'superman': 1,\n",
      "          'hurt': 1,\n",
      "          'fights': 1,\n",
      "          'hushed': 1,\n",
      "          'tone': 1,\n",
      "          'sign': 1,\n",
      "          'danger': 1,\n",
      "          'nhes': 1,\n",
      "          'consistent': 1,\n",
      "          'individual': 1,\n",
      "          'hollywood': 1,\n",
      "          'today': 1,\n",
      "          'since': 1,\n",
      "          'suck': 1,\n",
      "          'represent': 1,\n",
      "          'egotisitical': 1,\n",
      "          'tendencies': 1,\n",
      "          'guys': 1,\n",
      "          'nice': 1,\n",
      "          'talk': 1,\n",
      "          'shows': 1,\n",
      "          'tad': 1,\n",
      "          'haughty': 1,\n",
      "          'indestructable': 1,\n",
      "          'wounded': 1,\n",
      "          'supposedly': 1,\n",
      "          'mortally': 1,\n",
      "          'comes': 1,\n",
      "          'vengeance': 1,\n",
      "          'buddha': 1,\n",
      "          'baddies': 1,\n",
      "          'asses': 1,\n",
      "          'change': 1,\n",
      "          'drilled': 1,\n",
      "          'ncourse': 1,\n",
      "          'people': 1,\n",
      "          'nso': 1,\n",
      "          'usually': 1,\n",
      "          'hold': 1,\n",
      "          'see': 1,\n",
      "          'mans': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'id': 1,\n",
      "          'definitely': 1,\n",
      "          'dies': 1,\n",
      "          'special': 1,\n",
      "          'place': 1,\n",
      "          'heart': 1,\n",
      "          'watched': 1,\n",
      "          'deceased': 1,\n",
      "          'hell': 1,\n",
      "          'ripping': 1,\n",
      "          'apart': 1,\n",
      "          'la': 1,\n",
      "          'years': 1,\n",
      "          'heard': 1,\n",
      "          'plays': 1,\n",
      "          'worker': 1,\n",
      "          'mining': 1,\n",
      "          'set': 1,\n",
      "          'alaska': 1,\n",
      "          'run': 1,\n",
      "          'greasedup': 1,\n",
      "          'oscarwinner': 1,\n",
      "          'give': 1,\n",
      "          'clout': 1,\n",
      "          'michael': 1,\n",
      "          'nit': 1,\n",
      "          'wants': 1,\n",
      "          'includes': 1,\n",
      "          'dumping': 1,\n",
      "          'land': 1,\n",
      "          'naround': 1,\n",
      "          '2030': 1,\n",
      "          'minute': 1,\n",
      "          'speaks': 1,\n",
      "          'vain': 1,\n",
      "          'entrepeneurs': 1,\n",
      "          'new': 1,\n",
      "          'fire': 1,\n",
      "          'another': 1,\n",
      "          'bumped': 1,\n",
      "          'ndoes': 1,\n",
      "          'nseagal': 1,\n",
      "          'rescued': 1,\n",
      "          'inuits': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'joan': 1,\n",
      "          'act': 1,\n",
      "          'hypothetically': 1,\n",
      "          'reason': 1,\n",
      "          'none': 1,\n",
      "          'caines': 1,\n",
      "          'cliched': 1,\n",
      "          'henchmen': 1,\n",
      "          'overacting': 1,\n",
      "          'shoots': 1,\n",
      "          'cheif': 1,\n",
      "          'clan': 1,\n",
      "          'go': 1,\n",
      "          'voyage': 1,\n",
      "          'literally': 1,\n",
      "          'gives': 1,\n",
      "          'wonderfully': 1,\n",
      "          'hysterical': 1,\n",
      "          'options': 1,\n",
      "          'blow': 1,\n",
      "          'want': 1,\n",
      "          'kill': 1,\n",
      "          'breath': 1,\n",
      "          'asks': 1,\n",
      "          'arsenal': 1,\n",
      "          'problem': 1,\n",
      "          'huge': 1,\n",
      "          'woo': 1,\n",
      "          'fan': 1,\n",
      "          'paints': 1,\n",
      "          'style': 1,\n",
      "          'characterization': 1,\n",
      "          'plain': 1,\n",
      "          'cool': 1,\n",
      "          'mainly': 1,\n",
      "          'consists': 1,\n",
      "          'baddie': 1,\n",
      "          'attacking': 1,\n",
      "          'stupidly': 1,\n",
      "          'wounding': 1,\n",
      "          'killing': 1,\n",
      "          'points': 1,\n",
      "          'use': 1,\n",
      "          'cliche': 1,\n",
      "          'advantage': 1,\n",
      "          'shoot': 1,\n",
      "          'begins': 1,\n",
      "          'telling': 1,\n",
      "          'secret': 1,\n",
      "          'plan': 1,\n",
      "          'saying': 1,\n",
      "          'line': 1,\n",
      "          'says': 1,\n",
      "          'enough': 1,\n",
      "          'devise': 1,\n",
      "          'away': 1,\n",
      "          'would': 1,\n",
      "          'okay': 1,\n",
      "          'summers': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'serious': 1,\n",
      "          'wouldnt': 1,\n",
      "          'evidence': 1,\n",
      "          'idea': 1,\n",
      "          'subtle': 1,\n",
      "          'pounded': 1,\n",
      "          'viewers': 1,\n",
      "          'nthe': 1,\n",
      "          'totally': 1,\n",
      "          'cartoonish': 1,\n",
      "          'thus': 1,\n",
      "          'cant': 1,\n",
      "          'motives': 1,\n",
      "          'kind': 1,\n",
      "          'environment': 1,\n",
      "          'ahead': 1,\n",
      "          'square': 1,\n",
      "          'mile': 1,\n",
      "          'rig': 1,\n",
      "          'workers': 1,\n",
      "          'job': 1,\n",
      "          'nthen': 1,\n",
      "          'end': 1,\n",
      "          'spends': 1,\n",
      "          'giving': 1,\n",
      "          'nwhat': 1,\n",
      "          'realize': 1,\n",
      "          'takes': 1,\n",
      "          'redundant': 1,\n",
      "          'comfortably': 1,\n",
      "          'fit': 1,\n",
      "          'filled': 1,\n",
      "          'brim': 1,\n",
      "          'melodrama': 1,\n",
      "          'characters': 1,\n",
      "          'much': 1,\n",
      "          'emotional': 1,\n",
      "          'petri': 1,\n",
      "          'dish': 1,\n",
      "          'nas': 1,\n",
      "          'acting': 1,\n",
      "          'rather': 1,\n",
      "          'nperiod': 1,\n",
      "          'nnothing': 1,\n",
      "          'else': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'theres': 1,\n",
      "          'oneliners': 1,\n",
      "          'im': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'reach': 1,\n",
      "          'touch': 1,\n",
      "          'root': 1,\n",
      "          'villains': 1,\n",
      "          'unbelievably': 1,\n",
      "          'jerks': 1,\n",
      "          'nmichael': 1,\n",
      "          'whos': 1,\n",
      "          'great': 1,\n",
      "          'actor': 1,\n",
      "          'yell': 1,\n",
      "          'cold': 1,\n",
      "          'guess': 1,\n",
      "          'alfie': 1,\n",
      "          'coure': 1,\n",
      "          'expecting': 1,\n",
      "          'caliber': 1,\n",
      "          'nhis': 1,\n",
      "          'henchman': 1,\n",
      "          'horrible': 1,\n",
      "          'small': 1,\n",
      "          'god': 1,\n",
      "          'drill': 1,\n",
      "          'sergeants': 1,\n",
      "          'celluloid': 1,\n",
      "          'r': 1,\n",
      "          'lee': 1,\n",
      "          'ermey': 1,\n",
      "          'full': 1,\n",
      "          'metal': 1,\n",
      "          'jacket': 1,\n",
      "          'hired': 1,\n",
      "          'assasin': 1,\n",
      "          'squad': 1,\n",
      "          'leader': 1,\n",
      "          'obligatory': 1,\n",
      "          'dangerous': 1,\n",
      "          'ego': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'thornton': 1,\n",
      "          'ermeys': 1,\n",
      "          'assasins': 1,\n",
      "          'nanyway': 1,\n",
      "          'conclude': 1,\n",
      "          'except': 1,\n",
      "          'though': 1,\n",
      "          'latter': 1,\n",
      "          'really': 1,\n",
      "          'formula': 1,\n",
      "          'action': 1,\n",
      "          'plot': 1,\n",
      "          'excrucitating': 1,\n",
      "          'rent': 1,\n",
      "          'reccomend': 1,\n",
      "          'make': 1,\n",
      "          'skip': 1,\n",
      "          'put': 1,\n",
      "          'creating': 1,\n",
      "          'bad': 1,\n",
      "          'viewed': 1,\n",
      "          'pleasurable': 1,\n",
      "          'nmy': 1,\n",
      "          'extra': 1,\n",
      "          'fun': 1,\n",
      "          'mock': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'stereotypical': 5,\n",
      "          'love': 4,\n",
      "          'said': 4,\n",
      "          'seen': 3,\n",
      "          'best': 3,\n",
      "          'lot': 3,\n",
      "          'cross': 2,\n",
      "          'cox': 2,\n",
      "          'nwell': 2,\n",
      "          'might': 2,\n",
      "          'nthis': 2,\n",
      "          'amusing': 2,\n",
      "          'falls': 2,\n",
      "          'friend': 2,\n",
      "          'funny': 2,\n",
      "          'woman': 2,\n",
      "          'brown': 2,\n",
      "          'really': 2,\n",
      "          'arye': 1,\n",
      "          'courteney': 1,\n",
      "          'star': 1,\n",
      "          'pair': 1,\n",
      "          'bostonians': 1,\n",
      "          'meet': 1,\n",
      "          'bar': 1,\n",
      "          'go': 1,\n",
      "          'movies': 1,\n",
      "          'fall': 1,\n",
      "          'move': 1,\n",
      "          'together': 1,\n",
      "          'etc': 1,\n",
      "          'nreview': 1,\n",
      "          'havent': 1,\n",
      "          'harry': 1,\n",
      "          'met': 1,\n",
      "          'sally': 1,\n",
      "          'dont': 1,\n",
      "          'watch': 1,\n",
      "          'war': 1,\n",
      "          'television': 1,\n",
      "          'think': 1,\n",
      "          'inventive': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'ages': 1,\n",
      "          'nhowever': 1,\n",
      "          'youve': 1,\n",
      "          'course': 1,\n",
      "          'doesnt': 1,\n",
      "          'mean': 1,\n",
      "          'bad': 1,\n",
      "          'nsome': 1,\n",
      "          'overall': 1,\n",
      "          'ask': 1,\n",
      "          'whats': 1,\n",
      "          'point': 1,\n",
      "          'narye': 1,\n",
      "          'single': 1,\n",
      "          'male': 1,\n",
      "          'nkevin': 1,\n",
      "          'pollack': 1,\n",
      "          'femalefearing': 1,\n",
      "          'make': 1,\n",
      "          'rather': 1,\n",
      "          'sexist': 1,\n",
      "          'vulgar': 1,\n",
      "          'jokes': 1,\n",
      "          'werent': 1,\n",
      "          'ncouteney': 1,\n",
      "          'careerminded': 1,\n",
      "          'njulie': 1,\n",
      "          'bizarre': 1,\n",
      "          'n': 1,\n",
      "          'notice': 1,\n",
      "          'frequent': 1,\n",
      "          'use': 1,\n",
      "          'word': 1,\n",
      "          'uses': 1,\n",
      "          'formula': 1,\n",
      "          'plot': 1,\n",
      "          'basically': 1,\n",
      "          'known': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'nso': 1,\n",
      "          'good': 1,\n",
      "          'movie': 1,\n",
      "          'moments': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'julie': 1,\n",
      "          'usually': 1,\n",
      "          'find': 1,\n",
      "          'plain': 1,\n",
      "          'goofy': 1,\n",
      "          'thing': 1,\n",
      "          'nalso': 1,\n",
      "          'several': 1,\n",
      "          'sequences': 1,\n",
      "          'involving': 1,\n",
      "          'analysis': 1,\n",
      "          'human': 1,\n",
      "          'mating': 1,\n",
      "          'ritual': 1,\n",
      "          'ngee': 1,\n",
      "          'short': 1,\n",
      "          'nnot': 1,\n",
      "          'much': 1,\n",
      "          'say': 1,\n",
      "          'nit': 1,\n",
      "          'kind': 1,\n",
      "          'nwatching': 1,\n",
      "          'video': 1,\n",
      "          'complete': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'wouldnt': 1,\n",
      "          'recommend': 1,\n",
      "          'hiring': 1,\n",
      "          'baby': 1,\n",
      "          'sitter': 1,\n",
      "          'spending': 1,\n",
      "          'money': 1,\n",
      "          'see': 1,\n",
      "          'theatre': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'todd': 6,\n",
      "          'bad': 4,\n",
      "          '_soldier_': 3,\n",
      "          'film': 3,\n",
      "          'nafter': 3,\n",
      "          'wars': 3,\n",
      "          'could': 2,\n",
      "          'doesnt': 2,\n",
      "          'hollywood': 2,\n",
      "          'nif': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'future': 2,\n",
      "          'like': 2,\n",
      "          'battle': 2,\n",
      "          'guys': 2,\n",
      "          'trash': 2,\n",
      "          'see': 2,\n",
      "          'new': 2,\n",
      "          'flying': 2,\n",
      "          'planet': 2,\n",
      "          'bunch': 2,\n",
      "          'plenty': 2,\n",
      "          'hands': 1,\n",
      "          'one': 1,\n",
      "          'worst': 1,\n",
      "          'movies': 1,\n",
      "          'person': 1,\n",
      "          'ever': 1,\n",
      "          'sit': 1,\n",
      "          'jean': 1,\n",
      "          'claude': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'ni': 1,\n",
      "          'liken': 1,\n",
      "          'scifi': 1,\n",
      "          'cheese': 1,\n",
      "          'productofchoice': 1,\n",
      "          'back': 1,\n",
      "          'early': 1,\n",
      "          '80s': 1,\n",
      "          'would': 1,\n",
      "          'much': 1,\n",
      "          'compliment': 1,\n",
      "          'theater': 1,\n",
      "          'hell': 1,\n",
      "          'playing': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'day': 1,\n",
      "          'story': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'automaton': 1,\n",
      "          'man': 1,\n",
      "          'raised': 1,\n",
      "          'birth': 1,\n",
      "          'merciless': 1,\n",
      "          'soldier': 1,\n",
      "          'nottoodistant': 1,\n",
      "          'ultraconservative': 1,\n",
      "          'kind': 1,\n",
      "          'years': 1,\n",
      "          'desensitization': 1,\n",
      "          'military': 1,\n",
      "          'academy': 1,\n",
      "          'full': 1,\n",
      "          'boys': 1,\n",
      "          'becomes': 1,\n",
      "          'ground': 1,\n",
      "          'fighter': 1,\n",
      "          'series': 1,\n",
      "          'galaxy': 1,\n",
      "          'nwho': 1,\n",
      "          'enemies': 1,\n",
      "          'never': 1,\n",
      "          'revealed': 1,\n",
      "          'glimpses': 1,\n",
      "          'show': 1,\n",
      "          'matter': 1,\n",
      "          'innocent': 1,\n",
      "          'hostages': 1,\n",
      "          'wiped': 1,\n",
      "          'indifferently': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'nihilistic': 1,\n",
      "          'yes': 1,\n",
      "          'folks': 1,\n",
      "          'theres': 1,\n",
      "          'buff': 1,\n",
      "          'scarred': 1,\n",
      "          'adult': 1,\n",
      "          'accustomed': 1,\n",
      "          'carnage': 1,\n",
      "          'confrontation': 1,\n",
      "          'causes': 1,\n",
      "          'break': 1,\n",
      "          'sweat': 1,\n",
      "          'ntheres': 1,\n",
      "          'wrinkle': 1,\n",
      "          'though': 1,\n",
      "          'ntodd': 1,\n",
      "          'brethren': 1,\n",
      "          'declared': 1,\n",
      "          'obsolete': 1,\n",
      "          'batch': 1,\n",
      "          'soldiers': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'losing': 1,\n",
      "          'sanctioned': 1,\n",
      "          '_dragon_s': 1,\n",
      "          'jason': 1,\n",
      "          'scott': 1,\n",
      "          'lee': 1,\n",
      "          'seemingly': 1,\n",
      "          'dead': 1,\n",
      "          'dumped': 1,\n",
      "          'icecube': 1,\n",
      "          'tray': 1,\n",
      "          'well': 1,\n",
      "          'thats': 1,\n",
      "          'looked': 1,\n",
      "          'remote': 1,\n",
      "          'garbage': 1,\n",
      "          'predict': 1,\n",
      "          'meets': 1,\n",
      "          'outcast': 1,\n",
      "          'settlers': 1,\n",
      "          'band': 1,\n",
      "          'together': 1,\n",
      "          'fight': 1,\n",
      "          'coming': 1,\n",
      "          'destroy': 1,\n",
      "          'youre': 1,\n",
      "          'way': 1,\n",
      "          'ahead': 1,\n",
      "          'game': 1,\n",
      "          'renegade': 1,\n",
      "          'society': 1,\n",
      "          'heap': 1,\n",
      "          'clich': 1,\n",
      "          'halfexpect': 1,\n",
      "          'tina': 1,\n",
      "          'turner': 1,\n",
      "          'master': 1,\n",
      "          'blaster': 1,\n",
      "          'come': 1,\n",
      "          'strolling': 1,\n",
      "          'frame': 1,\n",
      "          'minute': 1,\n",
      "          'nits': 1,\n",
      "          'surprising': 1,\n",
      "          'brainchild': 1,\n",
      "          '_blade': 1,\n",
      "          'runner_': 1,\n",
      "          'cowriter': 1,\n",
      "          'david': 1,\n",
      "          'webb': 1,\n",
      "          'peoples': 1,\n",
      "          'nunlike': 1,\n",
      "          'mindtwisting': 1,\n",
      "          'classic': 1,\n",
      "          'contains': 1,\n",
      "          'barely': 1,\n",
      "          'enough': 1,\n",
      "          'dialogue': 1,\n",
      "          'fill': 1,\n",
      "          'three': 1,\n",
      "          'doublespaced': 1,\n",
      "          'pages': 1,\n",
      "          'nadd': 1,\n",
      "          'mix': 1,\n",
      "          '_mortal': 1,\n",
      "          'kombat_s': 1,\n",
      "          'paul': 1,\n",
      "          'anderson': 1,\n",
      "          'inept': 1,\n",
      "          'direction': 1,\n",
      "          'easy': 1,\n",
      "          'turned': 1,\n",
      "          'nand': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nremember': 1,\n",
      "          'steam': 1,\n",
      "          'irons': 1,\n",
      "          'hardware': 1,\n",
      "          'ngary': 1,\n",
      "          'busey': 1,\n",
      "          'nnuff': 1,\n",
      "          'said': 1,\n",
      "          'n_soldier_': 1,\n",
      "          'proof': 1,\n",
      "          'still': 1,\n",
      "          'ideas': 1,\n",
      "          'sitting': 1,\n",
      "          'script': 1,\n",
      "          'vaults': 1,\n",
      "          'nthat': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sad': 1,\n",
      "          'made': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'encourage': 1,\n",
      "          'aspiring': 1,\n",
      "          'screenwriters': 1,\n",
      "          'hope': 1,\n",
      "          'nnow': 1,\n",
      "          'youll': 1,\n",
      "          'excuse': 1,\n",
      "          'go': 1,\n",
      "          'weep': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'nthe': 4,\n",
      "          'film': 3,\n",
      "          'last': 3,\n",
      "          'samurai_': 3,\n",
      "          'quite': 3,\n",
      "          'endo': 3,\n",
      "          'samurai': 3,\n",
      "          'henriksen': 3,\n",
      "          'back': 2,\n",
      "          'blurb': 2,\n",
      "          '_the': 2,\n",
      "          'filled': 2,\n",
      "          'japanese': 2,\n",
      "          'john': 2,\n",
      "          'aspirations': 2,\n",
      "          'africa': 2,\n",
      "          'girlfriend': 2,\n",
      "          'african': 2,\n",
      "          'revolutionary': 2,\n",
      "          'sword': 2,\n",
      "          'end': 2,\n",
      "          'one': 2,\n",
      "          'enough': 2,\n",
      "          'nit': 2,\n",
      "          'never': 2,\n",
      "          'possible': 2,\n",
      "          'sad': 1,\n",
      "          'state': 1,\n",
      "          'affairs': 1,\n",
      "          'box': 1,\n",
      "          'exciting': 1,\n",
      "          'contained': 1,\n",
      "          'within': 1,\n",
      "          'nsuch': 1,\n",
      "          'case': 1,\n",
      "          '1990': 1,\n",
      "          'paul': 1,\n",
      "          'mayersberg': 1,\n",
      "          'nthough': 1,\n",
      "          'alludes': 1,\n",
      "          'jungle': 1,\n",
      "          'political': 1,\n",
      "          'intrigue': 1,\n",
      "          'uneasy': 1,\n",
      "          'alliances': 1,\n",
      "          'murderous': 1,\n",
      "          'enemies': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'story': 1,\n",
      "          'actually': 1,\n",
      "          'simple': 1,\n",
      "          'prosaic': 1,\n",
      "          'middleaged': 1,\n",
      "          'businessman': 1,\n",
      "          'named': 1,\n",
      "          'played': 1,\n",
      "          'fujioka': 1,\n",
      "          'assistant': 1,\n",
      "          'travel': 1,\n",
      "          'search': 1,\n",
      "          'ancestor': 1,\n",
      "          'went': 1,\n",
      "          'bring': 1,\n",
      "          'buddhism': 1,\n",
      "          'nhe': 1,\n",
      "          'hires': 1,\n",
      "          'services': 1,\n",
      "          'downattheheels': 1,\n",
      "          'vietnam': 1,\n",
      "          'veteran': 1,\n",
      "          'pilot': 1,\n",
      "          'johnny': 1,\n",
      "          'congo': 1,\n",
      "          'redoubtable': 1,\n",
      "          'lance': 1,\n",
      "          'arabella': 1,\n",
      "          'holzbog': 1,\n",
      "          'travels': 1,\n",
      "          'camp': 1,\n",
      "          'armsmerchantcumsafarihost': 1,\n",
      "          'cumislamicmissionary': 1,\n",
      "          'saxon': 1,\n",
      "          'wife': 1,\n",
      "          'lisa': 1,\n",
      "          'eilbacher': 1,\n",
      "          'nthey': 1,\n",
      "          'kidnapped': 1,\n",
      "          'guerilla': 1,\n",
      "          'witchdoctor': 1,\n",
      "          'conceal': 1,\n",
      "          'prearranged': 1,\n",
      "          'arms': 1,\n",
      "          'deal': 1,\n",
      "          'subsequently': 1,\n",
      "          'falls': 1,\n",
      "          'ncongo': 1,\n",
      "          'escapes': 1,\n",
      "          'finds': 1,\n",
      "          'endos': 1,\n",
      "          'ancestors': 1,\n",
      "          'comes': 1,\n",
      "          'guns': 1,\n",
      "          'blazing': 1,\n",
      "          'free': 1,\n",
      "          'rest': 1,\n",
      "          'kills': 1,\n",
      "          'n_the': 1,\n",
      "          'movies': 1,\n",
      "          'neither': 1,\n",
      "          'bad': 1,\n",
      "          'good': 1,\n",
      "          'enjoyable': 1,\n",
      "          'merely': 1,\n",
      "          '_there_': 1,\n",
      "          'murky': 1,\n",
      "          'plot': 1,\n",
      "          'subtexts': 1,\n",
      "          'elaborated': 1,\n",
      "          'subplots': 1,\n",
      "          'explained': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'make': 1,\n",
      "          'little': 1,\n",
      "          'sense': 1,\n",
      "          'shot': 1,\n",
      "          'tired': 1,\n",
      "          'old': 1,\n",
      "          'inscrutable': 1,\n",
      "          'zen': 1,\n",
      "          'stereotypes': 1,\n",
      "          'expected': 1,\n",
      "          'american': 1,\n",
      "          'slowpaced': 1,\n",
      "          'bit': 1,\n",
      "          'action': 1,\n",
      "          'near': 1,\n",
      "          'final': 1,\n",
      "          'duel': 1,\n",
      "          'terrorist': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'nmost': 1,\n",
      "          'acting': 1,\n",
      "          'fair': 1,\n",
      "          'exception': 1,\n",
      "          'congos': 1,\n",
      "          'nlance': 1,\n",
      "          'usual': 1,\n",
      "          'scenechewing': 1,\n",
      "          'self': 1,\n",
      "          'reasons': 1,\n",
      "          'anyone': 1,\n",
      "          'might': 1,\n",
      "          'conceivably': 1,\n",
      "          'seeing': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'sweeping': 1,\n",
      "          'scenery': 1,\n",
      "          'ni': 1,\n",
      "          'paid': 1,\n",
      "          '3': 1,\n",
      "          'discount': 1,\n",
      "          'rack': 1,\n",
      "          'best': 1,\n",
      "          'buy': 1,\n",
      "          'halfway': 1,\n",
      "          'suspect': 1,\n",
      "          'overpaid': 1,\n",
      "          'nif': 1,\n",
      "          'mood': 1,\n",
      "          'read': 1,\n",
      "          'clavell': 1,\n",
      "          'novel': 1,\n",
      "          'watch': 1,\n",
      "          'kurusawa': 1,\n",
      "          'nskip': 1,\n",
      "          'unless': 1,\n",
      "          'diehard': 1,\n",
      "          'fan': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'film': 3,\n",
      "          'want': 2,\n",
      "          'new': 2,\n",
      "          'old': 2,\n",
      "          'years': 2,\n",
      "          'nricky': 2,\n",
      "          'career': 2,\n",
      "          'sales': 2,\n",
      "          'kate': 2,\n",
      "          'nwhen': 2,\n",
      "          'g': 2,\n",
      "          'murphy': 2,\n",
      "          'television': 2,\n",
      "          'set': 2,\n",
      "          'movie': 2,\n",
      "          'nit': 2,\n",
      "          'even': 2,\n",
      "          'ni': 2,\n",
      "          'time': 2,\n",
      "          'theres': 2,\n",
      "          'screen': 2,\n",
      "          'birthdays': 1,\n",
      "          'often': 1,\n",
      "          'cause': 1,\n",
      "          'individuals': 1,\n",
      "          'access': 1,\n",
      "          'lives': 1,\n",
      "          'nare': 1,\n",
      "          'nwhat': 1,\n",
      "          'happened': 1,\n",
      "          'dreams': 1,\n",
      "          'nwith': 1,\n",
      "          'millennium': 1,\n",
      "          'collective': 1,\n",
      "          'big': 1,\n",
      "          'birthday': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'people': 1,\n",
      "          'sensing': 1,\n",
      "          'certain': 1,\n",
      "          'dissatisfaction': 1,\n",
      "          'existence': 1,\n",
      "          'standbys': 1,\n",
      "          'traditional': 1,\n",
      "          'religion': 1,\n",
      "          'science': 1,\n",
      "          'arent': 1,\n",
      "          'many': 1,\n",
      "          'anymore': 1,\n",
      "          'theyre': 1,\n",
      "          'looking': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'nwell': 1,\n",
      "          'seeing': 1,\n",
      "          'films': 1,\n",
      "          'metaphysical': 1,\n",
      "          'theme': 1,\n",
      "          'next': 1,\n",
      "          'hayman': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'crisis': 1,\n",
      "          'programming': 1,\n",
      "          'director': 1,\n",
      "          'good': 1,\n",
      "          'buy': 1,\n",
      "          'home': 1,\n",
      "          'shopping': 1,\n",
      "          'network': 1,\n",
      "          'hes': 1,\n",
      "          'going': 1,\n",
      "          'fired': 1,\n",
      "          'unless': 1,\n",
      "          'increase': 1,\n",
      "          'dramatically': 1,\n",
      "          'nnew': 1,\n",
      "          'producer': 1,\n",
      "          'newell': 1,\n",
      "          'kelly': 1,\n",
      "          'preston': 1,\n",
      "          'supposed': 1,\n",
      "          'whip': 1,\n",
      "          'things': 1,\n",
      "          'shape': 1,\n",
      "          'two': 1,\n",
      "          'fixing': 1,\n",
      "          'flat': 1,\n",
      "          'almost': 1,\n",
      "          'run': 1,\n",
      "          'age': 1,\n",
      "          'pilgrim': 1,\n",
      "          'ng': 1,\n",
      "          'wanders': 1,\n",
      "          'onto': 1,\n",
      "          'connects': 1,\n",
      "          'viewers': 1,\n",
      "          'telling': 1,\n",
      "          'dont': 1,\n",
      "          'really': 1,\n",
      "          'commercial': 1,\n",
      "          'crap': 1,\n",
      "          'nin': 1,\n",
      "          'unexplained': 1,\n",
      "          'manner': 1,\n",
      "          'causes': 1,\n",
      "          'sour': 1,\n",
      "          'saved': 1,\n",
      "          'tries': 1,\n",
      "          'much': 1,\n",
      "          'fails': 1,\n",
      "          'nits': 1,\n",
      "          'overthetop': 1,\n",
      "          'comedy': 1,\n",
      "          'heartwarming': 1,\n",
      "          'message': 1,\n",
      "          'humanity': 1,\n",
      "          '_is_': 1,\n",
      "          'mishmosh': 1,\n",
      "          'poorly': 1,\n",
      "          'directed': 1,\n",
      "          'scenes': 1,\n",
      "          'made': 1,\n",
      "          'worse': 1,\n",
      "          'insipid': 1,\n",
      "          'dialog': 1,\n",
      "          'willing': 1,\n",
      "          'put': 1,\n",
      "          'preaching': 1,\n",
      "          'messages': 1,\n",
      "          'hat': 1,\n",
      "          'nyou': 1,\n",
      "          'take': 1,\n",
      "          'smell': 1,\n",
      "          'roses': 1,\n",
      "          'nselling': 1,\n",
      "          'soul': 1,\n",
      "          'cash': 1,\n",
      "          'bad': 1,\n",
      "          'idea': 1,\n",
      "          'ngolly': 1,\n",
      "          'nim': 1,\n",
      "          'glad': 1,\n",
      "          'saw': 1,\n",
      "          'never': 1,\n",
      "          'would': 1,\n",
      "          'thought': 1,\n",
      "          'opportunity': 1,\n",
      "          'poke': 1,\n",
      "          'fun': 1,\n",
      "          'goofy': 1,\n",
      "          'products': 1,\n",
      "          'mostly': 1,\n",
      "          'missed': 1,\n",
      "          'takes': 1,\n",
      "          'chainsaw': 1,\n",
      "          'obvious': 1,\n",
      "          'chance': 1,\n",
      "          'hilarious': 1,\n",
      "          'doesnt': 1,\n",
      "          'happen': 1,\n",
      "          'bits': 1,\n",
      "          'subdued': 1,\n",
      "          'overlylong': 1,\n",
      "          'hint': 1,\n",
      "          'laughter': 1,\n",
      "          'audience': 1,\n",
      "          'nmurphy': 1,\n",
      "          'changed': 1,\n",
      "          'roles': 1,\n",
      "          'recent': 1,\n",
      "          'better': 1,\n",
      "          'nthere': 1,\n",
      "          'hints': 1,\n",
      "          'promise': 1,\n",
      "          'one': 1,\n",
      "          'picks': 1,\n",
      "          'little': 1,\n",
      "          'shavedheaded': 1,\n",
      "          'character': 1,\n",
      "          'long': 1,\n",
      "          'flowing': 1,\n",
      "          'white': 1,\n",
      "          'caftan': 1,\n",
      "          'shows': 1,\n",
      "          'others': 1,\n",
      "          'horrendous': 1,\n",
      "          'ngoldblum': 1,\n",
      "          'episodes': 1,\n",
      "          'brilliance': 1,\n",
      "          'seems': 1,\n",
      "          'replaced': 1,\n",
      "          'lifeless': 1,\n",
      "          'pod': 1,\n",
      "          'invasion': 1,\n",
      "          'body': 1,\n",
      "          'snatchers': 1,\n",
      "          'nhis': 1,\n",
      "          'relationship': 1,\n",
      "          'makes': 1,\n",
      "          'sense': 1,\n",
      "          'nthey': 1,\n",
      "          'move': 1,\n",
      "          'antagonism': 1,\n",
      "          'love': 1,\n",
      "          'somewhere': 1,\n",
      "          'npreston': 1,\n",
      "          'uninteresting': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'hidden': 1,\n",
      "          'deep': 1,\n",
      "          'inside': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'value': 1,\n",
      "          'nan': 1,\n",
      "          'attempt': 1,\n",
      "          'satirize': 1,\n",
      "          'stupid': 1,\n",
      "          'get': 1,\n",
      "          'selfparody': 1,\n",
      "          'instead': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 20,\n",
      "          'nthe': 9,\n",
      "          'virus': 6,\n",
      "          'like': 5,\n",
      "          'one': 5,\n",
      "          'terrorists': 5,\n",
      "          'mission': 4,\n",
      "          'impossible': 4,\n",
      "          'story': 4,\n",
      "          'action': 4,\n",
      "          'good': 4,\n",
      "          'way': 4,\n",
      "          'antidote': 4,\n",
      "          'nhe': 4,\n",
      "          'villain': 4,\n",
      "          'world': 4,\n",
      "          'sean': 4,\n",
      "          'nyah': 4,\n",
      "          'even': 3,\n",
      "          'nit': 3,\n",
      "          'movie': 3,\n",
      "          'looks': 3,\n",
      "          'thing': 3,\n",
      "          'violence': 3,\n",
      "          'scenes': 3,\n",
      "          'films': 3,\n",
      "          'makes': 3,\n",
      "          'make': 3,\n",
      "          'car': 3,\n",
      "          'thandie': 3,\n",
      "          'nwe': 3,\n",
      "          'sydney': 3,\n",
      "          'scientist': 3,\n",
      "          'also': 3,\n",
      "          'plane': 3,\n",
      "          'dimitri': 3,\n",
      "          'imf': 3,\n",
      "          'mask': 3,\n",
      "          'peeling': 3,\n",
      "          'team': 3,\n",
      "          'company': 3,\n",
      "          'nethan': 3,\n",
      "          'rescue': 3,\n",
      "          'i2': 2,\n",
      "          'sequel': 2,\n",
      "          'james': 2,\n",
      "          'bond': 2,\n",
      "          'fails': 2,\n",
      "          'tries': 2,\n",
      "          'without': 2,\n",
      "          'suspense': 2,\n",
      "          'commercial': 2,\n",
      "          'look': 2,\n",
      "          'cool': 2,\n",
      "          'sunglasses': 2,\n",
      "          'techie': 2,\n",
      "          'choreographed': 2,\n",
      "          'romance': 2,\n",
      "          'might': 2,\n",
      "          'opens': 2,\n",
      "          'get': 2,\n",
      "          'middle': 2,\n",
      "          'part': 2,\n",
      "          'dialogue': 2,\n",
      "          'computer': 2,\n",
      "          'point': 2,\n",
      "          'wrong': 2,\n",
      "          'nbut': 2,\n",
      "          'success': 2,\n",
      "          'star': 2,\n",
      "          'faceoff': 2,\n",
      "          'kicks': 2,\n",
      "          'two': 2,\n",
      "          'seem': 2,\n",
      "          'cruise': 2,\n",
      "          'carry': 2,\n",
      "          'role': 2,\n",
      "          'american': 2,\n",
      "          'southwest': 2,\n",
      "          'seville': 2,\n",
      "          'australia': 2,\n",
      "          'mentions': 2,\n",
      "          'called': 2,\n",
      "          'chimera': 2,\n",
      "          'hero': 2,\n",
      "          'scott': 2,\n",
      "          'talking': 2,\n",
      "          'crash': 2,\n",
      "          'ambrose': 2,\n",
      "          'package': 2,\n",
      "          'ethan': 2,\n",
      "          'hunt': 2,\n",
      "          'plan': 2,\n",
      "          'sell': 2,\n",
      "          'used': 2,\n",
      "          'still': 2,\n",
      "          'much': 2,\n",
      "          'character': 2,\n",
      "          'another': 2,\n",
      "          'mountain': 2,\n",
      "          'hopkins': 2,\n",
      "          'learns': 2,\n",
      "          'john': 2,\n",
      "          'luther': 2,\n",
      "          'jewel': 2,\n",
      "          'nin': 2,\n",
      "          'f': 2,\n",
      "          'ck': 2,\n",
      "          'first': 2,\n",
      "          'biotech': 2,\n",
      "          'getting': 2,\n",
      "          'stock': 2,\n",
      "          'made': 2,\n",
      "          'game': 2,\n",
      "          'wannabe': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'wit': 1,\n",
      "          'humor': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'spyromance': 1,\n",
      "          'extended': 1,\n",
      "          'dudes': 1,\n",
      "          'think': 1,\n",
      "          'throwaway': 1,\n",
      "          'prefers': 1,\n",
      "          'gadgets': 1,\n",
      "          'anything': 1,\n",
      "          'human': 1,\n",
      "          'coolest': 1,\n",
      "          'holes': 1,\n",
      "          'trite': 1,\n",
      "          'usage': 1,\n",
      "          'doves': 1,\n",
      "          'throughout': 1,\n",
      "          'peace': 1,\n",
      "          'symbols': 1,\n",
      "          'plays': 1,\n",
      "          'wet': 1,\n",
      "          'fantasy': 1,\n",
      "          'dream': 1,\n",
      "          'nexcept': 1,\n",
      "          'sequences': 1,\n",
      "          'dull': 1,\n",
      "          'threequarters': 1,\n",
      "          'time': 1,\n",
      "          'filled': 1,\n",
      "          'many': 1,\n",
      "          'dead': 1,\n",
      "          'spots': 1,\n",
      "          'garner': 1,\n",
      "          'concern': 1,\n",
      "          'wooden': 1,\n",
      "          'characters': 1,\n",
      "          'superficial': 1,\n",
      "          'developed': 1,\n",
      "          'nas': 1,\n",
      "          'converts': 1,\n",
      "          'advertisement': 1,\n",
      "          'sadistic': 1,\n",
      "          'responses': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'mindless': 1,\n",
      "          'cartoon': 1,\n",
      "          'difficult': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'applaud': 1,\n",
      "          'feeling': 1,\n",
      "          'put': 1,\n",
      "          'gratuitous': 1,\n",
      "          'cruelty': 1,\n",
      "          'seen': 1,\n",
      "          'nm': 1,\n",
      "          'closes': 1,\n",
      "          'fastpaced': 1,\n",
      "          'hard': 1,\n",
      "          'past': 1,\n",
      "          'drags': 1,\n",
      "          'banal': 1,\n",
      "          'invaded': 1,\n",
      "          'kept': 1,\n",
      "          'awake': 1,\n",
      "          'horrible': 1,\n",
      "          'music': 1,\n",
      "          'composed': 1,\n",
      "          'hans': 1,\n",
      "          'zimmer': 1,\n",
      "          'became': 1,\n",
      "          'loud': 1,\n",
      "          'supposedly': 1,\n",
      "          'momentous': 1,\n",
      "          'seemed': 1,\n",
      "          'uninteresting': 1,\n",
      "          'scene': 1,\n",
      "          'noticeable': 1,\n",
      "          'nits': 1,\n",
      "          'megabuck': 1,\n",
      "          'adapted': 1,\n",
      "          'popular': 1,\n",
      "          'hightech': 1,\n",
      "          'gadgetry': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'artistic': 1,\n",
      "          'task': 1,\n",
      "          'accomplish': 1,\n",
      "          'hired': 1,\n",
      "          'director': 1,\n",
      "          'actors': 1,\n",
      "          'failed': 1,\n",
      "          'produce': 1,\n",
      "          'substance': 1,\n",
      "          'njohn': 1,\n",
      "          'woo': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'chases': 1,\n",
      "          'fights': 1,\n",
      "          'midair': 1,\n",
      "          'flips': 1,\n",
      "          'kungfu': 1,\n",
      "          'slomo': 1,\n",
      "          'shots': 1,\n",
      "          'guns': 1,\n",
      "          'blazing': 1,\n",
      "          'fire': 1,\n",
      "          'explosions': 1,\n",
      "          'cant': 1,\n",
      "          'handle': 1,\n",
      "          'coproducer': 1,\n",
      "          'tom': 1,\n",
      "          'romantic': 1,\n",
      "          'interest': 1,\n",
      "          'newton': 1,\n",
      "          'miscast': 1,\n",
      "          'ncruise': 1,\n",
      "          'yuppie': 1,\n",
      "          'superhero': 1,\n",
      "          'stylish': 1,\n",
      "          'long': 1,\n",
      "          'hair': 1,\n",
      "          'innocuous': 1,\n",
      "          'smile': 1,\n",
      "          'macho': 1,\n",
      "          'actionfilm': 1,\n",
      "          'girl': 1,\n",
      "          'seems': 1,\n",
      "          'fish': 1,\n",
      "          'outofwater': 1,\n",
      "          'ntheir': 1,\n",
      "          'didnt': 1,\n",
      "          'work': 1,\n",
      "          'tepid': 1,\n",
      "          'sexy': 1,\n",
      "          'wasnt': 1,\n",
      "          'convincing': 1,\n",
      "          'dizzying': 1,\n",
      "          'speed': 1,\n",
      "          'perhaps': 1,\n",
      "          'hope': 1,\n",
      "          'befuddled': 1,\n",
      "          'audience': 1,\n",
      "          'best': 1,\n",
      "          'bet': 1,\n",
      "          'three': 1,\n",
      "          'different': 1,\n",
      "          'locations': 1,\n",
      "          'instantaneously': 1,\n",
      "          'nfirst': 1,\n",
      "          'muffled': 1,\n",
      "          'russian': 1,\n",
      "          'accent': 1,\n",
      "          'dr': 1,\n",
      "          'nekhorvich': 1,\n",
      "          'rade': 1,\n",
      "          'created': 1,\n",
      "          'deadly': 1,\n",
      "          'killer': 1,\n",
      "          'every': 1,\n",
      "          'needs': 1,\n",
      "          'worthy': 1,\n",
      "          'nwhich': 1,\n",
      "          'explains': 1,\n",
      "          'mythic': 1,\n",
      "          'theme': 1,\n",
      "          'enter': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'myths': 1,\n",
      "          'evil': 1,\n",
      "          'played': 1,\n",
      "          'dougray': 1,\n",
      "          'onedimensional': 1,\n",
      "          'gruff': 1,\n",
      "          'tone': 1,\n",
      "          'distinguish': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'got': 1,\n",
      "          'right': 1,\n",
      "          'fun': 1,\n",
      "          'nonsense': 1,\n",
      "          'nsoon': 1,\n",
      "          'diabolical': 1,\n",
      "          'someone': 1,\n",
      "          'trusts': 1,\n",
      "          'taken': 1,\n",
      "          'set': 1,\n",
      "          'automatic': 1,\n",
      "          'pilot': 1,\n",
      "          'rocky': 1,\n",
      "          'mountains': 1,\n",
      "          'nbefore': 1,\n",
      "          'parachute': 1,\n",
      "          'posing': 1,\n",
      "          'turns': 1,\n",
      "          'rogue': 1,\n",
      "          'member': 1,\n",
      "          'cialike': 1,\n",
      "          'clone': 1,\n",
      "          'steals': 1,\n",
      "          'peels': 1,\n",
      "          'latex': 1,\n",
      "          'replica': 1,\n",
      "          'posed': 1,\n",
      "          'thereby': 1,\n",
      "          'gained': 1,\n",
      "          'trust': 1,\n",
      "          'nsean': 1,\n",
      "          'group': 1,\n",
      "          'attack': 1,\n",
      "          'plague': 1,\n",
      "          'victims': 1,\n",
      "          'marked': 1,\n",
      "          'prices': 1,\n",
      "          'already': 1,\n",
      "          'saw': 1,\n",
      "          'gimmick': 1,\n",
      "          'masks': 1,\n",
      "          'original': 1,\n",
      "          'convoluted': 1,\n",
      "          'plot': 1,\n",
      "          'superior': 1,\n",
      "          'nwoo': 1,\n",
      "          'run': 1,\n",
      "          'routine': 1,\n",
      "          'ground': 1,\n",
      "          'often': 1,\n",
      "          'sides': 1,\n",
      "          'blurs': 1,\n",
      "          'ethical': 1,\n",
      "          'differences': 1,\n",
      "          'guy': 1,\n",
      "          'anyone': 1,\n",
      "          'could': 1,\n",
      "          'distorts': 1,\n",
      "          'reality': 1,\n",
      "          'sense': 1,\n",
      "          'nnext': 1,\n",
      "          'range': 1,\n",
      "          'vacation': 1,\n",
      "          'hanging': 1,\n",
      "          'fingertips': 1,\n",
      "          'climbing': 1,\n",
      "          'looking': 1,\n",
      "          'helicopter': 1,\n",
      "          'boss': 1,\n",
      "          'anthony': 1,\n",
      "          'aboard': 1,\n",
      "          'delivers': 1,\n",
      "          'via': 1,\n",
      "          'rocket': 1,\n",
      "          'launcher': 1,\n",
      "          'pair': 1,\n",
      "          'nhunt': 1,\n",
      "          'next': 1,\n",
      "          'retrieve': 1,\n",
      "          'allowed': 1,\n",
      "          'pick': 1,\n",
      "          'regular': 1,\n",
      "          'agents': 1,\n",
      "          'help': 1,\n",
      "          'billy': 1,\n",
      "          'baird': 1,\n",
      "          'polson': 1,\n",
      "          'stickell': 1,\n",
      "          'ving': 1,\n",
      "          'rhames': 1,\n",
      "          'running': 1,\n",
      "          'highgadget': 1,\n",
      "          'must': 1,\n",
      "          'thief': 1,\n",
      "          'named': 1,\n",
      "          'hall': 1,\n",
      "          'join': 1,\n",
      "          'told': 1,\n",
      "          'incentive': 1,\n",
      "          'recruit': 1,\n",
      "          'criminal': 1,\n",
      "          'charges': 1,\n",
      "          'dropped': 1,\n",
      "          'nhopkins': 1,\n",
      "          'signs': 1,\n",
      "          'tag': 1,\n",
      "          'line': 1,\n",
      "          'message': 1,\n",
      "          'selfdestruct': 1,\n",
      "          'five': 1,\n",
      "          'seconds': 1,\n",
      "          'nactually': 1,\n",
      "          'departure': 1,\n",
      "          'disposable': 1,\n",
      "          'actually': 1,\n",
      "          'selfdestructed': 1,\n",
      "          'recruits': 1,\n",
      "          'heist': 1,\n",
      "          'subsequent': 1,\n",
      "          'chase': 1,\n",
      "          'nearly': 1,\n",
      "          'runs': 1,\n",
      "          'audi': 1,\n",
      "          'sports': 1,\n",
      "          'side': 1,\n",
      "          'road': 1,\n",
      "          'falls': 1,\n",
      "          'supposed': 1,\n",
      "          'business': 1,\n",
      "          'deal': 1,\n",
      "          'valuable': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'wants': 1,\n",
      "          'inject': 1,\n",
      "          'location': 1,\n",
      "          'tracer': 1,\n",
      "          'chip': 1,\n",
      "          'spot': 1,\n",
      "          'go': 1,\n",
      "          'leads': 1,\n",
      "          'hideout': 1,\n",
      "          'seaside': 1,\n",
      "          'shares': 1,\n",
      "          'sneering': 1,\n",
      "          'villainous': 1,\n",
      "          'cohort': 1,\n",
      "          'south': 1,\n",
      "          'african': 1,\n",
      "          'hugh': 1,\n",
      "          'stamp': 1,\n",
      "          'richard': 1,\n",
      "          'roxburgh': 1,\n",
      "          'nrobert': 1,\n",
      "          'towne': 1,\n",
      "          'screenwriter': 1,\n",
      "          'contributed': 1,\n",
      "          'noted': 1,\n",
      "          'chinatown': 1,\n",
      "          'writes': 1,\n",
      "          'colorless': 1,\n",
      "          'pedestrian': 1,\n",
      "          'script': 1,\n",
      "          'funny': 1,\n",
      "          'camp': 1,\n",
      "          'aim': 1,\n",
      "          'rule': 1,\n",
      "          'interested': 1,\n",
      "          'owning': 1,\n",
      "          '51': 1,\n",
      "          'percent': 1,\n",
      "          'options': 1,\n",
      "          'infect': 1,\n",
      "          'insuring': 1,\n",
      "          'billions': 1,\n",
      "          'comes': 1,\n",
      "          'conflict': 1,\n",
      "          'important': 1,\n",
      "          'save': 1,\n",
      "          'odds': 1,\n",
      "          'finds': 1,\n",
      "          'penetrate': 1,\n",
      "          'security': 1,\n",
      "          'tight': 1,\n",
      "          'fight': 1,\n",
      "          'injected': 1,\n",
      "          'hinder': 1,\n",
      "          'seans': 1,\n",
      "          'transport': 1,\n",
      "          'person': 1,\n",
      "          'vaccine': 1,\n",
      "          'needle': 1,\n",
      "          'rescues': 1,\n",
      "          'stunt': 1,\n",
      "          'riding': 1,\n",
      "          'motorcycle': 1,\n",
      "          'using': 1,\n",
      "          'kickboxing': 1,\n",
      "          'winning': 1,\n",
      "          'shootout': 1,\n",
      "          'throwing': 1,\n",
      "          'full': 1,\n",
      "          'wayne': 1,\n",
      "          'supply': 1,\n",
      "          'grenades': 1,\n",
      "          'making': 1,\n",
      "          'use': 1,\n",
      "          'bit': 1,\n",
      "          'completely': 1,\n",
      "          'fearless': 1,\n",
      "          'larger': 1,\n",
      "          'life': 1,\n",
      "          'everyones': 1,\n",
      "          'ass': 1,\n",
      "          'nif': 1,\n",
      "          'entertained': 1,\n",
      "          'ncould': 1,\n",
      "          'lived': 1,\n",
      "          'badly': 1,\n",
      "          'watching': 1,\n",
      "          'highlight': 1,\n",
      "          'basketball': 1,\n",
      "          'seeing': 1,\n",
      "          'slamdunks': 1,\n",
      "          'excluded': 1,\n",
      "          'telecast': 1,\n",
      "          'case': 1,\n",
      "          'criticproof': 1,\n",
      "          'probability': 1,\n",
      "          'well': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'appeal': 1,\n",
      "          'demographics': 1,\n",
      "          'find': 1,\n",
      "          'ventures': 1,\n",
      "          'easy': 1,\n",
      "          'buy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 11,\n",
      "          'soldier': 9,\n",
      "          'luc': 9,\n",
      "          'van': 6,\n",
      "          'action': 6,\n",
      "          'universal': 5,\n",
      "          'battle': 4,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'group': 4,\n",
      "          'damme': 4,\n",
      "          'return': 4,\n",
      "          'many': 4,\n",
      "          'films': 4,\n",
      "          'nhe': 4,\n",
      "          'nthe': 3,\n",
      "          'could': 3,\n",
      "          'better': 3,\n",
      "          'work': 3,\n",
      "          'martial': 3,\n",
      "          'model': 3,\n",
      "          'good': 3,\n",
      "          'jeanclaude': 3,\n",
      "          'soldiers': 3,\n",
      "          'unisol': 3,\n",
      "          'program': 3,\n",
      "          'erin': 3,\n",
      "          'moments': 3,\n",
      "          'scene': 3,\n",
      "          'like': 3,\n",
      "          'engineered': 2,\n",
      "          'early': 2,\n",
      "          'entire': 2,\n",
      "          'dammes': 2,\n",
      "          'genres': 2,\n",
      "          'arts': 2,\n",
      "          'inside': 2,\n",
      "          'fellow': 2,\n",
      "          'watch': 2,\n",
      "          'truly': 2,\n",
      "          'poor': 2,\n",
      "          'plot': 2,\n",
      "          'terminator': 2,\n",
      "          'sent': 2,\n",
      "          'planet': 2,\n",
      "          't2': 2,\n",
      "          'save': 2,\n",
      "          'john': 2,\n",
      "          'newer': 2,\n",
      "          'killing': 2,\n",
      "          'former': 2,\n",
      "          'given': 2,\n",
      "          'nluc': 2,\n",
      "          'human': 2,\n",
      "          'straighttovideo': 2,\n",
      "          'seth': 2,\n",
      "          'reporter': 2,\n",
      "          'goldberg': 2,\n",
      "          'nthere': 2,\n",
      "          'fights': 2,\n",
      "          'gun': 2,\n",
      "          'almost': 2,\n",
      "          'painful': 2,\n",
      "          'saving': 2,\n",
      "          'single': 2,\n",
      "          'go': 2,\n",
      "          'getting': 2,\n",
      "          'time': 2,\n",
      "          'going': 2,\n",
      "          'strip': 2,\n",
      "          'club': 2,\n",
      "          'internet': 2,\n",
      "          'access': 2,\n",
      "          'weapons': 2,\n",
      "          'useless': 2,\n",
      "          'rodgers': 2,\n",
      "          'sure': 2,\n",
      "          'even': 2,\n",
      "          'mutters': 2,\n",
      "          'every': 2,\n",
      "          'exuniversal': 1,\n",
      "          'newermodel': 1,\n",
      "          'fighters': 1,\n",
      "          'gone': 1,\n",
      "          'bad': 1,\n",
      "          'review': 1,\n",
      "          'njeanclaude': 1,\n",
      "          'oneliner': 1,\n",
      "          'latest': 1,\n",
      "          'attempt': 1,\n",
      "          'remain': 1,\n",
      "          'relevant': 1,\n",
      "          'sums': 1,\n",
      "          'movie': 1,\n",
      "          'says': 1,\n",
      "          'done': 1,\n",
      "          'nno': 1,\n",
      "          'critic': 1,\n",
      "          'possibly': 1,\n",
      "          'sum': 1,\n",
      "          'recent': 1,\n",
      "          'choices': 1,\n",
      "          'nwhile': 1,\n",
      "          'ageing': 1,\n",
      "          'stars': 1,\n",
      "          'wisely': 1,\n",
      "          'moved': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'makes': 1,\n",
      "          'family': 1,\n",
      "          'comedies': 1,\n",
      "          'stubbornly': 1,\n",
      "          'persists': 1,\n",
      "          'sticking': 1,\n",
      "          'used': 1,\n",
      "          'guns': 1,\n",
      "          'nthis': 1,\n",
      "          'unwillingness': 1,\n",
      "          'perhaps': 1,\n",
      "          'inability': 1,\n",
      "          'move': 1,\n",
      "          'new': 1,\n",
      "          'caused': 1,\n",
      "          'enter': 1,\n",
      "          'straight': 1,\n",
      "          'video': 1,\n",
      "          'world': 1,\n",
      "          'legionnaire': 1,\n",
      "          'never': 1,\n",
      "          'seeing': 1,\n",
      "          'multiplex': 1,\n",
      "          'joins': 1,\n",
      "          'artistaction': 1,\n",
      "          'star': 1,\n",
      "          'steven': 1,\n",
      "          'seagal': 1,\n",
      "          'careers': 1,\n",
      "          'rapidly': 1,\n",
      "          'fizzle': 1,\n",
      "          'away': 1,\n",
      "          'nuniversal': 1,\n",
      "          'complete': 1,\n",
      "          'copy': 1,\n",
      "          'several': 1,\n",
      "          'decade': 1,\n",
      "          'specifically': 1,\n",
      "          '2': 1,\n",
      "          'judgement': 1,\n",
      "          'day': 1,\n",
      "          'similarly': 1,\n",
      "          'named': 1,\n",
      "          'nsoldiers': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'older': 1,\n",
      "          'supersoldier': 1,\n",
      "          'retirement': 1,\n",
      "          'circumstances': 1,\n",
      "          'forced': 1,\n",
      "          'successors': 1,\n",
      "          'schwarzeneggers': 1,\n",
      "          'tried': 1,\n",
      "          'connor': 1,\n",
      "          'machine': 1,\n",
      "          't1000': 1,\n",
      "          'rampage': 1,\n",
      "          'guessed': 1,\n",
      "          'nconsidering': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'performance': 1,\n",
      "          'amazing': 1,\n",
      "          'project': 1,\n",
      "          'ever': 1,\n",
      "          'goahead': 1,\n",
      "          'devereaux': 1,\n",
      "          'sole': 1,\n",
      "          'remaining': 1,\n",
      "          'short': 1,\n",
      "          'returned': 1,\n",
      "          'normal': 1,\n",
      "          'muscular': 1,\n",
      "          'form': 1,\n",
      "          'nin': 1,\n",
      "          'sequel': 1,\n",
      "          'technically': 1,\n",
      "          'fourth': 1,\n",
      "          'series': 1,\n",
      "          'following': 1,\n",
      "          'two': 1,\n",
      "          'duds': 1,\n",
      "          'ignored': 1,\n",
      "          'plotwise': 1,\n",
      "          'trainerconsultant': 1,\n",
      "          'sorts': 1,\n",
      "          'nworking': 1,\n",
      "          'dylan': 1,\n",
      "          'cotner': 1,\n",
      "          'xander': 1,\n",
      "          'berkeley': 1,\n",
      "          'interestingly': 1,\n",
      "          'also': 1,\n",
      "          'appeared': 1,\n",
      "          'tougher': 1,\n",
      "          'fiercer': 1,\n",
      "          'fighting': 1,\n",
      "          'force': 1,\n",
      "          'help': 1,\n",
      "          'supercomputer': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'upon': 1,\n",
      "          'hearing': 1,\n",
      "          'axed': 1,\n",
      "          'government': 1,\n",
      "          'takes': 1,\n",
      "          'control': 1,\n",
      "          'everyone': 1,\n",
      "          'building': 1,\n",
      "          'except': 1,\n",
      "          'partner': 1,\n",
      "          'maggie': 1,\n",
      "          'daughter': 1,\n",
      "          'hillary': 1,\n",
      "          'trapped': 1,\n",
      "          'rest': 1,\n",
      "          'involves': 1,\n",
      "          'trying': 1,\n",
      "          'keep': 1,\n",
      "          'alive': 1,\n",
      "          'beating': 1,\n",
      "          'nearindestructible': 1,\n",
      "          'notably': 1,\n",
      "          'romeo': 1,\n",
      "          'popular': 1,\n",
      "          'wrestler': 1,\n",
      "          'lots': 1,\n",
      "          'battles': 1,\n",
      "          'lame': 1,\n",
      "          'developments': 1,\n",
      "          'noticeable': 1,\n",
      "          'lack': 1,\n",
      "          'plausibility': 1,\n",
      "          'clich': 1,\n",
      "          'gets': 1,\n",
      "          'saddled': 1,\n",
      "          'task': 1,\n",
      "          'course': 1,\n",
      "          'night': 1,\n",
      "          'bickering': 1,\n",
      "          'falling': 1,\n",
      "          'kissing': 1,\n",
      "          'nerin': 1,\n",
      "          'patheticallywritten': 1,\n",
      "          'character': 1,\n",
      "          'people': 1,\n",
      "          'brutally': 1,\n",
      "          'gunned': 1,\n",
      "          'around': 1,\n",
      "          'yet': 1,\n",
      "          'seem': 1,\n",
      "          'frighten': 1,\n",
      "          'finds': 1,\n",
      "          'remind': 1,\n",
      "          'isnt': 1,\n",
      "          'leaving': 1,\n",
      "          'without': 1,\n",
      "          'story': 1,\n",
      "          'nwhatever': 1,\n",
      "          'nother': 1,\n",
      "          'laughable': 1,\n",
      "          'include': 1,\n",
      "          'get': 1,\n",
      "          'b': 1,\n",
      "          'rangers': 1,\n",
      "          'advice': 1,\n",
      "          'tells': 1,\n",
      "          'shows': 1,\n",
      "          'specific': 1,\n",
      "          'choose': 1,\n",
      "          'anyway': 1,\n",
      "          'guess': 1,\n",
      "          'wins': 1,\n",
      "          'nnot': 1,\n",
      "          'one': 1,\n",
      "          'originality': 1,\n",
      "          'nwhen': 1,\n",
      "          'fuelled': 1,\n",
      "          'davis': 1,\n",
      "          'loud': 1,\n",
      "          'driving': 1,\n",
      "          'music': 1,\n",
      "          'score': 1,\n",
      "          'become': 1,\n",
      "          'passable': 1,\n",
      "          'mostly': 1,\n",
      "          'full': 1,\n",
      "          'ol': 1,\n",
      "          'moves': 1,\n",
      "          'ndirector': 1,\n",
      "          'mic': 1,\n",
      "          'stunt': 1,\n",
      "          'coordinator': 1,\n",
      "          'keeps': 1,\n",
      "          'coming': 1,\n",
      "          'rapid': 1,\n",
      "          'pace': 1,\n",
      "          'token': 1,\n",
      "          'serious': 1,\n",
      "          'found': 1,\n",
      "          'nhis': 1,\n",
      "          'past': 1,\n",
      "          'evident': 1,\n",
      "          'characters': 1,\n",
      "          'thrown': 1,\n",
      "          'windows': 1,\n",
      "          'tossed': 1,\n",
      "          'buildings': 1,\n",
      "          'flying': 1,\n",
      "          'air': 1,\n",
      "          'thanks': 1,\n",
      "          'explosion': 1,\n",
      "          'nif': 1,\n",
      "          'werent': 1,\n",
      "          'old': 1,\n",
      "          'slow': 1,\n",
      "          'compared': 1,\n",
      "          'younger': 1,\n",
      "          'actors': 1,\n",
      "          'jet': 1,\n",
      "          'li': 1,\n",
      "          'probably': 1,\n",
      "          'made': 1,\n",
      "          'decent': 1,\n",
      "          'nto': 1,\n",
      "          'place': 1,\n",
      "          'blame': 1,\n",
      "          'squarely': 1,\n",
      "          'feet': 1,\n",
      "          'however': 1,\n",
      "          'injustice': 1,\n",
      "          'nim': 1,\n",
      "          'anyone': 1,\n",
      "          'robert': 1,\n",
      "          'deniro': 1,\n",
      "          'edward': 1,\n",
      "          'norton': 1,\n",
      "          'make': 1,\n",
      "          'writers': 1,\n",
      "          'william': 1,\n",
      "          'malone': 1,\n",
      "          'fasanos': 1,\n",
      "          'script': 1,\n",
      "          'sound': 1,\n",
      "          'none': 1,\n",
      "          'particularly': 1,\n",
      "          'asks': 1,\n",
      "          'aforementioned': 1,\n",
      "          'cringes': 1,\n",
      "          'looks': 1,\n",
      "          'uh': 1,\n",
      "          'uhm': 1,\n",
      "          'nthey': 1,\n",
      "          'saw': 1,\n",
      "          '60': 1,\n",
      "          'minutes': 1,\n",
      "          'neh': 1,\n",
      "          'scripts': 1,\n",
      "          'indeed': 1,\n",
      "          'grace': 1,\n",
      "          'chews': 1,\n",
      "          'obviously': 1,\n",
      "          'enjoying': 1,\n",
      "          'role': 1,\n",
      "          'immensely': 1,\n",
      "          'gives': 1,\n",
      "          'laughs': 1,\n",
      "          'things': 1,\n",
      "          'really': 1,\n",
      "          'dont': 1,\n",
      "          'guy': 1,\n",
      "          'fails': 1,\n",
      "          'kill': 1,\n",
      "          'nsadly': 1,\n",
      "          'presence': 1,\n",
      "          'enough': 1,\n",
      "          'turn': 1,\n",
      "          'anything': 1,\n",
      "          'belowaverage': 1,\n",
      "          'deserves': 1,\n",
      "          'joined': 1,\n",
      "          'sequels': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'big': 17,\n",
      "          'mommas': 9,\n",
      "          'malcolm': 8,\n",
      "          'house': 7,\n",
      "          'momma': 7,\n",
      "          'sherry': 6,\n",
      "          'lawrence': 5,\n",
      "          'one': 5,\n",
      "          'plot': 4,\n",
      "          'martin': 4,\n",
      "          'nothing': 4,\n",
      "          'time': 4,\n",
      "          'film': 4,\n",
      "          'fat': 3,\n",
      "          'suit': 3,\n",
      "          'dress': 3,\n",
      "          'idea': 3,\n",
      "          'character': 3,\n",
      "          'get': 3,\n",
      "          'way': 3,\n",
      "          'characters': 3,\n",
      "          'person': 3,\n",
      "          'laughs': 3,\n",
      "          'real': 3,\n",
      "          'highconcept': 2,\n",
      "          'summer': 2,\n",
      "          'back': 2,\n",
      "          'adam': 2,\n",
      "          'sandler': 2,\n",
      "          'incompetent': 2,\n",
      "          'surrogate': 2,\n",
      "          'parent': 2,\n",
      "          'nthe': 2,\n",
      "          'better': 2,\n",
      "          'find': 2,\n",
      "          'may': 2,\n",
      "          'lester': 2,\n",
      "          'escaped': 2,\n",
      "          'hes': 2,\n",
      "          'headed': 2,\n",
      "          'nia': 2,\n",
      "          'appears': 2,\n",
      "          'town': 2,\n",
      "          'without': 2,\n",
      "          'nbig': 2,\n",
      "          'makeup': 2,\n",
      "          'theres': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'ridiculous': 2,\n",
      "          'several': 2,\n",
      "          'every': 2,\n",
      "          'since': 2,\n",
      "          'funny': 2,\n",
      "          'involved': 2,\n",
      "          'never': 2,\n",
      "          'waste': 2,\n",
      "          'appealing': 2,\n",
      "          'might': 2,\n",
      "          'tolerable': 2,\n",
      "          'nits': 2,\n",
      "          'nthats': 1,\n",
      "          'premise': 1,\n",
      "          'fullyrealized': 1,\n",
      "          'allencompassing': 1,\n",
      "          'nsuch': 1,\n",
      "          'emphasis': 1,\n",
      "          'unheardof': 1,\n",
      "          'world': 1,\n",
      "          'hollywood': 1,\n",
      "          'entertainment': 1,\n",
      "          'none': 1,\n",
      "          'need': 1,\n",
      "          'merely': 1,\n",
      "          'look': 1,\n",
      "          'last': 1,\n",
      "          'daddy': 1,\n",
      "          'trap': 1,\n",
      "          'inherent': 1,\n",
      "          'approach': 1,\n",
      "          'pretty': 1,\n",
      "          'wellrealized': 1,\n",
      "          'rest': 1,\n",
      "          'shoulders': 1,\n",
      "          'extremely': 1,\n",
      "          'talented': 1,\n",
      "          'performer': 1,\n",
      "          'bet': 1,\n",
      "          'else': 1,\n",
      "          'worth': 1,\n",
      "          'second': 1,\n",
      "          'developed': 1,\n",
      "          'provocative': 1,\n",
      "          'theme': 1,\n",
      "          'witty': 1,\n",
      "          'twist': 1,\n",
      "          'nyou': 1,\n",
      "          '90plus': 1,\n",
      "          'minutes': 1,\n",
      "          'less': 1,\n",
      "          'nthose': 1,\n",
      "          'occasionally': 1,\n",
      "          'amusing': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'shot': 1,\n",
      "          'enjoying': 1,\n",
      "          'onenote': 1,\n",
      "          'dud': 1,\n",
      "          'nothers': 1,\n",
      "          'simply': 1,\n",
      "          'stare': 1,\n",
      "          'mouth': 1,\n",
      "          'agape': 1,\n",
      "          'sheer': 1,\n",
      "          'unapologetic': 1,\n",
      "          'laziness': 1,\n",
      "          'nlawrence': 1,\n",
      "          'plays': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'turner': 1,\n",
      "          'undercover': 1,\n",
      "          'expert': 1,\n",
      "          'stakeout': 1,\n",
      "          'assignment': 1,\n",
      "          'partner': 1,\n",
      "          'john': 1,\n",
      "          'paul': 1,\n",
      "          'giamatti': 1,\n",
      "          'ndangerous': 1,\n",
      "          'convicted': 1,\n",
      "          'bank': 1,\n",
      "          'robber': 1,\n",
      "          'murderer': 1,\n",
      "          'vesco': 1,\n",
      "          'terrence': 1,\n",
      "          'howard': 1,\n",
      "          'prison': 1,\n",
      "          'feds': 1,\n",
      "          'think': 1,\n",
      "          'former': 1,\n",
      "          'girlfriend': 1,\n",
      "          'presumedbutneverproved': 1,\n",
      "          'accomplice': 1,\n",
      "          'long': 1,\n",
      "          'nsherry': 1,\n",
      "          'however': 1,\n",
      "          'fled': 1,\n",
      "          'son': 1,\n",
      "          'trent': 1,\n",
      "          'jascha': 1,\n",
      "          'washington': 1,\n",
      "          'possibly': 1,\n",
      "          'visit': 1,\n",
      "          'grandmother': 1,\n",
      "          'hattie': 1,\n",
      "          'mae': 1,\n",
      "          'ella': 1,\n",
      "          'mitchell': 1,\n",
      "          'known': 1,\n",
      "          'nindeed': 1,\n",
      "          'knowing': 1,\n",
      "          'coming': 1,\n",
      "          'nthat': 1,\n",
      "          'leaves': 1,\n",
      "          'master': 1,\n",
      "          'disguise': 1,\n",
      "          'go': 1,\n",
      "          'heavy': 1,\n",
      "          'cover': 1,\n",
      "          'knows': 1,\n",
      "          'houses': 1,\n",
      "          'bloodlines': 1,\n",
      "          'certainly': 1,\n",
      "          'traceable': 1,\n",
      "          'mrs': 1,\n",
      "          'ndoubtfire': 1,\n",
      "          'director': 1,\n",
      "          'raja': 1,\n",
      "          'gosnell': 1,\n",
      "          'edited': 1,\n",
      "          'effects': 1,\n",
      "          'similarly': 1,\n",
      "          'created': 1,\n",
      "          'greg': 1,\n",
      "          'cannom': 1,\n",
      "          'strong': 1,\n",
      "          'whiff': 1,\n",
      "          'tootsie': 1,\n",
      "          'main': 1,\n",
      "          'attempt': 1,\n",
      "          'use': 1,\n",
      "          'alternate': 1,\n",
      "          'identity': 1,\n",
      "          'closer': 1,\n",
      "          'woman': 1,\n",
      "          'makes': 1,\n",
      "          'decision': 1,\n",
      "          'neither': 1,\n",
      "          'films': 1,\n",
      "          'made': 1,\n",
      "          'instead': 1,\n",
      "          'protagonist': 1,\n",
      "          'pose': 1,\n",
      "          'completely': 1,\n",
      "          'manufactured': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'anyone': 1,\n",
      "          'elses': 1,\n",
      "          'places': 1,\n",
      "          'position': 1,\n",
      "          'playing': 1,\n",
      "          'friend': 1,\n",
      "          'family': 1,\n",
      "          'member': 1,\n",
      "          'nsuspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'requires': 1,\n",
      "          'believe': 1,\n",
      "          'blind': 1,\n",
      "          'andor': 1,\n",
      "          'stupid': 1,\n",
      "          'notices': 1,\n",
      "          'looks': 1,\n",
      "          'sounds': 1,\n",
      "          'absolutely': 1,\n",
      "          'like': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'trumps': 1,\n",
      "          'logic': 1,\n",
      "          'probably': 1,\n",
      "          'still': 1,\n",
      "          'would': 1,\n",
      "          'worked': 1,\n",
      "          'spite': 1,\n",
      "          'utter': 1,\n",
      "          'disdain': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'managed': 1,\n",
      "          'nand': 1,\n",
      "          'misses': 1,\n",
      "          'best': 1,\n",
      "          'possible': 1,\n",
      "          'opportunity': 1,\n",
      "          'great': 1,\n",
      "          'farce': 1,\n",
      "          'ignoring': 1,\n",
      "          'simple': 1,\n",
      "          'fact': 1,\n",
      "          'set': 1,\n",
      "          'foultempered': 1,\n",
      "          'beast': 1,\n",
      "          'nurturing': 1,\n",
      "          'order': 1,\n",
      "          'information': 1,\n",
      "          'wants': 1,\n",
      "          'faintest': 1,\n",
      "          'deal': 1,\n",
      "          'comic': 1,\n",
      "          'gold': 1,\n",
      "          'mine': 1,\n",
      "          'pretending': 1,\n",
      "          'another': 1,\n",
      "          'different': 1,\n",
      "          'fall': 1,\n",
      "          'endless': 1,\n",
      "          'parade': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'reacting': 1,\n",
      "          'violently': 1,\n",
      "          'explosive': 1,\n",
      "          'diarrhea': 1,\n",
      "          'attack': 1,\n",
      "          'malcolmasmomma': 1,\n",
      "          'schooling': 1,\n",
      "          'pair': 1,\n",
      "          'cocky': 1,\n",
      "          'teens': 1,\n",
      "          'basketball': 1,\n",
      "          'trying': 1,\n",
      "          'avoid': 1,\n",
      "          'detection': 1,\n",
      "          'various': 1,\n",
      "          'prostheses': 1,\n",
      "          'give': 1,\n",
      "          'inopportune': 1,\n",
      "          'moments': 1,\n",
      "          'delivering': 1,\n",
      "          'baby': 1,\n",
      "          'midwife': 1,\n",
      "          'sequences': 1,\n",
      "          'works': 1,\n",
      "          'nmartin': 1,\n",
      "          'likeable': 1,\n",
      "          'enough': 1,\n",
      "          'times': 1,\n",
      "          'reason': 1,\n",
      "          'care': 1,\n",
      "          'whit': 1,\n",
      "          'budding': 1,\n",
      "          'romance': 1,\n",
      "          'independently': 1,\n",
      "          'significant': 1,\n",
      "          'nhes': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'commenting': 1,\n",
      "          'ineptly': 1,\n",
      "          'setup': 1,\n",
      "          'convict': 1,\n",
      "          'employed': 1,\n",
      "          'clearly': 1,\n",
      "          'filmmakers': 1,\n",
      "          'nthere': 1,\n",
      "          'token': 1,\n",
      "          'scenes': 1,\n",
      "          'looming': 1,\n",
      "          'threatening': 1,\n",
      "          'figure': 1,\n",
      "          'ultimately': 1,\n",
      "          'distraction': 1,\n",
      "          'thats': 1,\n",
      "          'really': 1,\n",
      "          'central': 1,\n",
      "          'visual': 1,\n",
      "          'incongruity': 1,\n",
      "          'accompanying': 1,\n",
      "          'lascivious': 1,\n",
      "          'glances': 1,\n",
      "          'longs': 1,\n",
      "          'posterior': 1,\n",
      "          'nim': 1,\n",
      "          'prepared': 1,\n",
      "          'underestimate': 1,\n",
      "          'people': 1,\n",
      "          'million': 1,\n",
      "          'apparently': 1,\n",
      "          'found': 1,\n",
      "          'know': 1,\n",
      "          'filmmaker': 1,\n",
      "          'tries': 1,\n",
      "          'throw': 1,\n",
      "          'concept': 1,\n",
      "          'pretend': 1,\n",
      "          'entire': 1,\n",
      "          'duck': 1,\n",
      "          'gross': 1,\n",
      "          'implausibility': 1,\n",
      "          'seasoned': 1,\n",
      "          'cleverlyconstructed': 1,\n",
      "          'lack': 1,\n",
      "          'relevant': 1,\n",
      "          '_and_': 1,\n",
      "          'sad': 1,\n",
      "          'exercise': 1,\n",
      "          'jaded': 1,\n",
      "          'presumption': 1,\n",
      "          'scene': 1,\n",
      "          'considered': 1,\n",
      "          'wacky': 1,\n",
      "          'hilarious': 1,\n",
      "          'involves': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'cindy': 10,\n",
      "          'crawford': 7,\n",
      "          'movie': 6,\n",
      "          'baldwin': 5,\n",
      "          'bad': 5,\n",
      "          'fair': 3,\n",
      "          'acting': 3,\n",
      "          'plot': 3,\n",
      "          'isnt': 3,\n",
      "          'nthe': 3,\n",
      "          'idea': 3,\n",
      "          'william': 2,\n",
      "          'steven': 2,\n",
      "          'right': 2,\n",
      "          'first': 2,\n",
      "          'game': 2,\n",
      "          'casting': 2,\n",
      "          'film': 2,\n",
      "          'cindys': 2,\n",
      "          'extraordinary': 2,\n",
      "          'skills': 2,\n",
      "          'ability': 2,\n",
      "          'look': 2,\n",
      "          'situations': 2,\n",
      "          'either': 2,\n",
      "          'wet': 2,\n",
      "          'im': 2,\n",
      "          'sure': 2,\n",
      "          'coincidence': 2,\n",
      "          'doubt': 2,\n",
      "          'looks': 2,\n",
      "          'thats': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'doesnt': 2,\n",
      "          'lines': 2,\n",
      "          'good': 2,\n",
      "          'nif': 2,\n",
      "          'ncindy': 2,\n",
      "          'kinda': 2,\n",
      "          'sort': 2,\n",
      "          'target': 2,\n",
      "          'much': 2,\n",
      "          'police': 2,\n",
      "          'writers': 2,\n",
      "          'since': 2,\n",
      "          'time': 2,\n",
      "          'starring': 1,\n",
      "          'berkoff': 1,\n",
      "          'problem': 1,\n",
      "          'supermodel': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'nnot': 1,\n",
      "          'anyone': 1,\n",
      "          'watches': 1,\n",
      "          'knows': 1,\n",
      "          'moment': 1,\n",
      "          'one': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'done': 1,\n",
      "          'drop': 1,\n",
      "          'dead': 1,\n",
      "          'gorgeous': 1,\n",
      "          'situation': 1,\n",
      "          'nand': 1,\n",
      "          'tend': 1,\n",
      "          'find': 1,\n",
      "          'soaking': 1,\n",
      "          'hot': 1,\n",
      "          'sweaty': 1,\n",
      "          'essential': 1,\n",
      "          'fact': 1,\n",
      "          'great': 1,\n",
      "          'well': 1,\n",
      "          'happy': 1,\n",
      "          'nsure': 1,\n",
      "          'nwilliam': 1,\n",
      "          'actor': 1,\n",
      "          'demonstrate': 1,\n",
      "          'nim': 1,\n",
      "          'hokey': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'latter': 1,\n",
      "          'worked': 1,\n",
      "          'surprisingly': 1,\n",
      "          'job': 1,\n",
      "          'nwhich': 1,\n",
      "          'say': 1,\n",
      "          'room': 1,\n",
      "          'improvement': 1,\n",
      "          'nalthough': 1,\n",
      "          'cheesy': 1,\n",
      "          'places': 1,\n",
      "          'nso': 1,\n",
      "          'asking': 1,\n",
      "          'arguably': 1,\n",
      "          'beautiful': 1,\n",
      "          'woman': 1,\n",
      "          'planet': 1,\n",
      "          'chose': 1,\n",
      "          'foray': 1,\n",
      "          'world': 1,\n",
      "          'cinema': 1,\n",
      "          'nwell': 1,\n",
      "          'glad': 1,\n",
      "          'asked': 1,\n",
      "          'question': 1,\n",
      "          'plays': 1,\n",
      "          'lawyer': 1,\n",
      "          'convoluted': 1,\n",
      "          'twists': 1,\n",
      "          'becomes': 1,\n",
      "          'former': 1,\n",
      "          'elite': 1,\n",
      "          'kgb': 1,\n",
      "          'agents': 1,\n",
      "          'nwhy': 1,\n",
      "          'woud': 1,\n",
      "          'someone': 1,\n",
      "          'likable': 1,\n",
      "          'ask': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'wont': 1,\n",
      "          'care': 1,\n",
      "          'story': 1,\n",
      "          'contrived': 1,\n",
      "          'funny': 1,\n",
      "          'nanyway': 1,\n",
      "          'gets': 1,\n",
      "          'blown': 1,\n",
      "          'window': 1,\n",
      "          'house': 1,\n",
      "          'without': 1,\n",
      "          'getting': 1,\n",
      "          'scratch': 1,\n",
      "          'might': 1,\n",
      "          'add': 1,\n",
      "          'placed': 1,\n",
      "          'protective': 1,\n",
      "          'custody': 1,\n",
      "          'watchful': 1,\n",
      "          'eve': 1,\n",
      "          'nwhos': 1,\n",
      "          'character': 1,\n",
      "          'max': 1,\n",
      "          'kilpatric': 1,\n",
      "          'detective': 1,\n",
      "          'seems': 1,\n",
      "          'possess': 1,\n",
      "          'fighting': 1,\n",
      "          'machine': 1,\n",
      "          'guess': 1,\n",
      "          'seen': 1,\n",
      "          'way': 1,\n",
      "          'many': 1,\n",
      "          'seagals': 1,\n",
      "          'early': 1,\n",
      "          'films': 1,\n",
      "          'point': 1,\n",
      "          'baldwins': 1,\n",
      "          'characters': 1,\n",
      "          'run': 1,\n",
      "          'killer': 1,\n",
      "          'russians': 1,\n",
      "          'everything': 1,\n",
      "          'around': 1,\n",
      "          'basic': 1,\n",
      "          'stinks': 1,\n",
      "          'loud': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'nothing': 1,\n",
      "          'acted': 1,\n",
      "          'stereotypes': 1,\n",
      "          'id': 1,\n",
      "          'hope': 1,\n",
      "          'disappears': 1,\n",
      "          'nas': 1,\n",
      "          'may': 1,\n",
      "          'indeed': 1,\n",
      "          'obscured': 1,\n",
      "          'writing': 1,\n",
      "          'goes': 1,\n",
      "          'beyond': 1,\n",
      "          'nthis': 1,\n",
      "          'obviously': 1,\n",
      "          'written': 1,\n",
      "          'mind': 1,\n",
      "          'spend': 1,\n",
      "          'finding': 1,\n",
      "          'ways': 1,\n",
      "          'capitalize': 1,\n",
      "          'nits': 1,\n",
      "          'hadnt': 1,\n",
      "          'spent': 1,\n",
      "          'half': 1,\n",
      "          'decent': 1,\n",
      "          'ms': 1,\n",
      "          'capable': 1,\n",
      "          'looking': 1,\n",
      "          'fine': 1,\n",
      "          'thank': 1,\n",
      "          'nunless': 1,\n",
      "          'huge': 1,\n",
      "          'fan': 1,\n",
      "          'disappoint': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'christmas': 6,\n",
      "          'cross': 5,\n",
      "          'minutes': 5,\n",
      "          'film': 5,\n",
      "          'effects': 4,\n",
      "          'also': 4,\n",
      "          'make': 4,\n",
      "          'look': 3,\n",
      "          'funny': 3,\n",
      "          'murray': 3,\n",
      "          'plays': 3,\n",
      "          'ghost': 3,\n",
      "          'much': 3,\n",
      "          'suffer': 3,\n",
      "          'mean': 3,\n",
      "          'isnt': 3,\n",
      "          'good': 3,\n",
      "          'ten': 3,\n",
      "          'great': 3,\n",
      "          'audience': 3,\n",
      "          'nthe': 3,\n",
      "          'comedy': 2,\n",
      "          'nscrooged': 2,\n",
      "          'played': 2,\n",
      "          'mitchum': 2,\n",
      "          'visited': 2,\n",
      "          'exec': 2,\n",
      "          'past': 2,\n",
      "          'present': 2,\n",
      "          'changes': 2,\n",
      "          'nhowever': 2,\n",
      "          'special': 2,\n",
      "          'emotional': 2,\n",
      "          'scenes': 2,\n",
      "          'last': 2,\n",
      "          'speech': 2,\n",
      "          'bad': 2,\n",
      "          'kane': 2,\n",
      "          'smacking': 2,\n",
      "          'nand': 2,\n",
      "          'take': 1,\n",
      "          'following': 1,\n",
      "          'equation': 1,\n",
      "          'na': 1,\n",
      "          'carolghostbustersscrooged': 1,\n",
      "          'nyes': 1,\n",
      "          'scrooged': 1,\n",
      "          'odd': 1,\n",
      "          'mixture': 1,\n",
      "          'sentiment': 1,\n",
      "          'horror': 1,\n",
      "          'would': 1,\n",
      "          'get': 1,\n",
      "          'mixed': 1,\n",
      "          'two': 1,\n",
      "          'elements': 1,\n",
      "          'toghether': 1,\n",
      "          'alternatively': 1,\n",
      "          'sick': 1,\n",
      "          'gross': 1,\n",
      "          'sickly': 1,\n",
      "          'soppy': 1,\n",
      "          'nbill': 1,\n",
      "          'frank': 1,\n",
      "          'v': 1,\n",
      "          'executive': 1,\n",
      "          'horrible': 1,\n",
      "          'personality': 1,\n",
      "          'nhes': 1,\n",
      "          'evil': 1,\n",
      "          'secretary': 1,\n",
      "          'actors': 1,\n",
      "          'crew': 1,\n",
      "          'everyone': 1,\n",
      "          'except': 1,\n",
      "          'vs': 1,\n",
      "          'stations': 1,\n",
      "          'boss': 1,\n",
      "          'course': 1,\n",
      "          'late': 1,\n",
      "          'robert': 1,\n",
      "          'however': 1,\n",
      "          'dead': 1,\n",
      "          'warns': 1,\n",
      "          'three': 1,\n",
      "          'ghosts': 1,\n",
      "          'future': 1,\n",
      "          'called': 1,\n",
      "          'yet': 1,\n",
      "          'come': 1,\n",
      "          'reason': 1,\n",
      "          'sure': 1,\n",
      "          'enough': 1,\n",
      "          'arrive': 1,\n",
      "          'show': 1,\n",
      "          'b': 1,\n",
      "          'way': 1,\n",
      "          'throughout': 1,\n",
      "          'simple': 1,\n",
      "          'plot': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'outlandish': 1,\n",
      "          'poor': 1,\n",
      "          'performance': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'bill': 1,\n",
      "          'nfrank': 1,\n",
      "          'hes': 1,\n",
      "          'nhe': 1,\n",
      "          'totally': 1,\n",
      "          'destroys': 1,\n",
      "          'utterly': 1,\n",
      "          'desperate': 1,\n",
      "          'saying': 1,\n",
      "          'changed': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'ok': 1,\n",
      "          'performances': 1,\n",
      "          'allen': 1,\n",
      "          'girlfriend': 1,\n",
      "          'john': 1,\n",
      "          'glover': 1,\n",
      "          'crosss': 1,\n",
      "          'partner': 1,\n",
      "          'either': 1,\n",
      "          'nsadly': 1,\n",
      "          'though': 1,\n",
      "          '25': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'style': 1,\n",
      "          'violence': 1,\n",
      "          'carol': 1,\n",
      "          'nwhoever': 1,\n",
      "          'thought': 1,\n",
      "          'head': 1,\n",
      "          'toaster': 1,\n",
      "          'fired': 1,\n",
      "          'straight': 1,\n",
      "          'away': 1,\n",
      "          'bobcat': 1,\n",
      "          'goldthwait': 1,\n",
      "          'guy': 1,\n",
      "          'annoying': 1,\n",
      "          'voice': 1,\n",
      "          'police': 1,\n",
      "          'academy': 1,\n",
      "          '3': 1,\n",
      "          'remeber': 1,\n",
      "          'correctly': 1,\n",
      "          'nwho': 1,\n",
      "          'thankfully': 1,\n",
      "          'dosent': 1,\n",
      "          'say': 1,\n",
      "          'script': 1,\n",
      "          'horrendous': 1,\n",
      "          'nmichael': 1,\n",
      "          'odonaghue': 1,\n",
      "          'churns': 1,\n",
      "          'terrible': 1,\n",
      "          'taste': 1,\n",
      "          'jokes': 1,\n",
      "          'guess': 1,\n",
      "          'whole': 1,\n",
      "          'point': 1,\n",
      "          'really': 1,\n",
      "          'direction': 1,\n",
      "          'completely': 1,\n",
      "          'must': 1,\n",
      "          'drug': 1,\n",
      "          'wrote': 1,\n",
      "          'final': 1,\n",
      "          'awful': 1,\n",
      "          'nice': 1,\n",
      "          'nothing': 1,\n",
      "          'ntheres': 1,\n",
      "          'impressive': 1,\n",
      "          'music': 1,\n",
      "          'scored': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'nbut': 1,\n",
      "          'dont': 1,\n",
      "          'appaling': 1,\n",
      "          'attempt': 1,\n",
      "          'inject': 1,\n",
      "          'spirit': 1,\n",
      "          'seeing': 1,\n",
      "          'first': 1,\n",
      "          '1': 1,\n",
      "          'hour': 1,\n",
      "          '20': 1,\n",
      "          'depressing': 1,\n",
      "          'anyway': 1,\n",
      "          'godawful': 1,\n",
      "          'nwhy': 1,\n",
      "          'didnt': 1,\n",
      "          'window': 1,\n",
      "          'ask': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'buy': 1,\n",
      "          'goose': 1,\n",
      "          'noverall': 1,\n",
      "          'youd': 1,\n",
      "          'better': 1,\n",
      "          'avoid': 1,\n",
      "          'like': 1,\n",
      "          'something': 1,\n",
      "          'avoided': 1,\n",
      "          'perhaps': 1,\n",
      "          'plague': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'henstridge': 6,\n",
      "          'film': 5,\n",
      "          'movie': 5,\n",
      "          'fear': 4,\n",
      "          'rush': 4,\n",
      "          'nthis': 4,\n",
      "          'fans': 3,\n",
      "          'lambert': 3,\n",
      "          'fake': 3,\n",
      "          'people': 2,\n",
      "          'small': 2,\n",
      "          'however': 2,\n",
      "          'two': 2,\n",
      "          'cops': 2,\n",
      "          'shot': 2,\n",
      "          'seven': 2,\n",
      "          'times': 2,\n",
      "          'clothes': 2,\n",
      "          'films': 2,\n",
      "          'even': 2,\n",
      "          'disappoint': 2,\n",
      "          'though': 2,\n",
      "          'doesnt': 2,\n",
      "          'nadrenalin': 2,\n",
      "          'boston': 2,\n",
      "          'ten': 2,\n",
      "          'years': 2,\n",
      "          'changed': 2,\n",
      "          'good': 2,\n",
      "          'go': 2,\n",
      "          'minutes': 2,\n",
      "          'scene': 2,\n",
      "          'nthe': 2,\n",
      "          'plot': 2,\n",
      "          'learn': 2,\n",
      "          'character': 2,\n",
      "          'henstridges': 2,\n",
      "          'next': 2,\n",
      "          'son': 2,\n",
      "          'nin': 2,\n",
      "          'monologue': 2,\n",
      "          'passport': 2,\n",
      "          'nlamberts': 2,\n",
      "          'cop': 2,\n",
      "          'synopsis': 1,\n",
      "          'maniac': 1,\n",
      "          'crazed': 1,\n",
      "          'virulent': 1,\n",
      "          'microphage': 1,\n",
      "          'slaughters': 1,\n",
      "          'twenty': 1,\n",
      "          'including': 1,\n",
      "          'street': 1,\n",
      "          'gang': 1,\n",
      "          'heavilyarmed': 1,\n",
      "          'troops': 1,\n",
      "          'knife': 1,\n",
      "          'neven': 1,\n",
      "          'handgun': 1,\n",
      "          'cant': 1,\n",
      "          'take': 1,\n",
      "          'despite': 1,\n",
      "          'one': 1,\n",
      "          'total': 1,\n",
      "          'ncomments': 1,\n",
      "          'notable': 1,\n",
      "          'aspect': 1,\n",
      "          'adrenalin': 1,\n",
      "          'marks': 1,\n",
      "          'striking': 1,\n",
      "          'career': 1,\n",
      "          'move': 1,\n",
      "          'natasha': 1,\n",
      "          'nnot': 1,\n",
      "          'manage': 1,\n",
      "          'keep': 1,\n",
      "          'trademark': 1,\n",
      "          'earlier': 1,\n",
      "          'species': 1,\n",
      "          'maximum': 1,\n",
      "          'risk': 1,\n",
      "          'strip': 1,\n",
      "          'naked': 1,\n",
      "          'often': 1,\n",
      "          'possible': 1,\n",
      "          'actually': 1,\n",
      "          'puts': 1,\n",
      "          'progresses': 1,\n",
      "          'probably': 1,\n",
      "          'many': 1,\n",
      "          'welcome': 1,\n",
      "          'change': 1,\n",
      "          'attractive': 1,\n",
      "          'capable': 1,\n",
      "          'actress': 1,\n",
      "          'deserves': 1,\n",
      "          'less': 1,\n",
      "          'exploitative': 1,\n",
      "          'roles': 1,\n",
      "          'admit': 1,\n",
      "          'show': 1,\n",
      "          'mess': 1,\n",
      "          'nhenstridge': 1,\n",
      "          'like': 1,\n",
      "          'every': 1,\n",
      "          'actor': 1,\n",
      "          'delivers': 1,\n",
      "          'wooden': 1,\n",
      "          'performance': 1,\n",
      "          'monumental': 1,\n",
      "          'turkey': 1,\n",
      "          'n': 1,\n",
      "          'cast': 1,\n",
      "          'also': 1,\n",
      "          'includes': 1,\n",
      "          'christopher': 1,\n",
      "          'appeared': 1,\n",
      "          'highlander': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          'nhow': 1,\n",
      "          'earth': 1,\n",
      "          'got': 1,\n",
      "          'bigname': 1,\n",
      "          'stars': 1,\n",
      "          'appear': 1,\n",
      "          'beyond': 1,\n",
      "          'set': 1,\n",
      "          'future': 1,\n",
      "          '2007': 1,\n",
      "          'nboston': 1,\n",
      "          'dramatically': 1,\n",
      "          'nit': 1,\n",
      "          'home': 1,\n",
      "          'bunch': 1,\n",
      "          'interred': 1,\n",
      "          'foreigners': 1,\n",
      "          'policed': 1,\n",
      "          'drive': 1,\n",
      "          'around': 1,\n",
      "          'cars': 1,\n",
      "          'policia': 1,\n",
      "          'printed': 1,\n",
      "          'doors': 1,\n",
      "          'nsome': 1,\n",
      "          'guy': 1,\n",
      "          'really': 1,\n",
      "          'bad': 1,\n",
      "          'virus': 1,\n",
      "          'hes': 1,\n",
      "          'killing': 1,\n",
      "          'nso': 1,\n",
      "          'brave': 1,\n",
      "          'guys': 1,\n",
      "          'nthats': 1,\n",
      "          'n76': 1,\n",
      "          'never': 1,\n",
      "          'seemed': 1,\n",
      "          'long': 1,\n",
      "          'drawnout': 1,\n",
      "          'chase': 1,\n",
      "          'dimlylit': 1,\n",
      "          'abandoned': 1,\n",
      "          'buildings': 1,\n",
      "          'turned': 1,\n",
      "          'entire': 1,\n",
      "          'development': 1,\n",
      "          'nil': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'lamberts': 1,\n",
      "          'little': 1,\n",
      "          'dialogue': 1,\n",
      "          'littered': 1,\n",
      "          'unnecessary': 1,\n",
      "          'obscenities': 1,\n",
      "          'concerns': 1,\n",
      "          'mindnumbingly': 1,\n",
      "          'idiotic': 1,\n",
      "          'arguments': 1,\n",
      "          'dark': 1,\n",
      "          'corridortunnelairduct': 1,\n",
      "          'carry': 1,\n",
      "          'flashlight': 1,\n",
      "          'na': 1,\n",
      "          'subplot': 1,\n",
      "          'exist': 1,\n",
      "          'involving': 1,\n",
      "          'characters': 1,\n",
      "          'illegal': 1,\n",
      "          'attempt': 1,\n",
      "          'get': 1,\n",
      "          'opening': 1,\n",
      "          'sounds': 1,\n",
      "          'reading': 1,\n",
      "          'cue': 1,\n",
      "          'cards': 1,\n",
      "          'gone': 1,\n",
      "          'great': 1,\n",
      "          'lengths': 1,\n",
      "          'secure': 1,\n",
      "          'ntwenty': 1,\n",
      "          'wondered': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'focused': 1,\n",
      "          'defining': 1,\n",
      "          'mind': 1,\n",
      "          'drops': 1,\n",
      "          'ground': 1,\n",
      "          'immediately': 1,\n",
      "          'recognizes': 1,\n",
      "          'fraud': 1,\n",
      "          'six': 1,\n",
      "          'feet': 1,\n",
      "          'away': 1,\n",
      "          'nmust': 1,\n",
      "          'emphasizes': 1,\n",
      "          'another': 1,\n",
      "          'fault': 1,\n",
      "          'nthings': 1,\n",
      "          'defy': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'instance': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'able': 1,\n",
      "          'talk': 1,\n",
      "          'slide': 1,\n",
      "          'ends': 1,\n",
      "          'trite': 1,\n",
      "          'manner': 1,\n",
      "          'seem': 1,\n",
      "          'fit': 1,\n",
      "          'mood': 1,\n",
      "          'filmmakers': 1,\n",
      "          'trying': 1,\n",
      "          'ni': 1,\n",
      "          'found': 1,\n",
      "          'rather': 1,\n",
      "          'bored': 1,\n",
      "          'scifihorror': 1,\n",
      "          'ndont': 1,\n",
      "          'nfear': 1,\n",
      "          'nwatch': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jay': 5,\n",
      "          'lee': 4,\n",
      "          'fool': 3,\n",
      "          'love': 3,\n",
      "          'schwimmers': 3,\n",
      "          'amy': 2,\n",
      "          'kissing': 2,\n",
      "          'chasing': 2,\n",
      "          'falls': 2,\n",
      "          'kevin': 2,\n",
      "          'film': 2,\n",
      "          'stars': 2,\n",
      "          'friend': 2,\n",
      "          'max': 2,\n",
      "          'best': 2,\n",
      "          'book': 2,\n",
      "          'samantha': 2,\n",
      "          'avital': 2,\n",
      "          'nthe': 2,\n",
      "          'trouble': 2,\n",
      "          'man': 2,\n",
      "          'girlfriend': 2,\n",
      "          'comic': 2,\n",
      "          'anyone': 2,\n",
      "          'dialogue': 2,\n",
      "          'character': 2,\n",
      "          'hes': 2,\n",
      "          'anything': 2,\n",
      "          'also': 2,\n",
      "          'nthere': 2,\n",
      "          'back': 2,\n",
      "          'postchasing': 1,\n",
      "          'slew': 1,\n",
      "          'lovetriangle': 1,\n",
      "          'movies': 1,\n",
      "          'month': 1,\n",
      "          'costarring': 1,\n",
      "          'amys': 1,\n",
      "          'april': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'object': 1,\n",
      "          'affection': 1,\n",
      "          'may': 1,\n",
      "          'well': 1,\n",
      "          'titled': 1,\n",
      "          'allan': 1,\n",
      "          'story': 1,\n",
      "          'woman': 1,\n",
      "          'gay': 1,\n",
      "          'roommate': 1,\n",
      "          'n': 1,\n",
      "          'absolutely': 1,\n",
      "          'six': 1,\n",
      "          'degrees': 1,\n",
      "          'bacon': 1,\n",
      "          'jennifer': 1,\n",
      "          'aniston': 1,\n",
      "          'nif': 1,\n",
      "          'smith': 1,\n",
      "          'could': 1,\n",
      "          'write': 1,\n",
      "          'nschwimmer': 1,\n",
      "          'womanizing': 1,\n",
      "          'chicago': 1,\n",
      "          'sportscaster': 1,\n",
      "          'editor': 1,\n",
      "          'mere': 1,\n",
      "          'twentyfour': 1,\n",
      "          'hours': 1,\n",
      "          'meeting': 1,\n",
      "          'nthey': 1,\n",
      "          'soon': 1,\n",
      "          'engaged': 1,\n",
      "          'raging': 1,\n",
      "          'libido': 1,\n",
      "          'grows': 1,\n",
      "          'suspicious': 1,\n",
      "          'samanthas': 1,\n",
      "          'fidelity': 1,\n",
      "          'nhe': 1,\n",
      "          'convinces': 1,\n",
      "          'flirt': 1,\n",
      "          'development': 1,\n",
      "          'test': 1,\n",
      "          'might': 1,\n",
      "          'secretly': 1,\n",
      "          'nto': 1,\n",
      "          'stretch': 1,\n",
      "          'flat': 1,\n",
      "          'sitcom': 1,\n",
      "          'premise': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'plot': 1,\n",
      "          'framed': 1,\n",
      "          'climactic': 1,\n",
      "          'wedding': 1,\n",
      "          'bonnie': 1,\n",
      "          'hunt': 1,\n",
      "          'recounts': 1,\n",
      "          'triangular': 1,\n",
      "          'talethe': 1,\n",
      "          'events': 1,\n",
      "          'leading': 1,\n",
      "          'nuptialsto': 1,\n",
      "          'annoying': 1,\n",
      "          'fat': 1,\n",
      "          'silly': 1,\n",
      "          'nhunt': 1,\n",
      "          'timing': 1,\n",
      "          'schwimmer': 1,\n",
      "          'spin': 1,\n",
      "          'bad': 1,\n",
      "          'mildly': 1,\n",
      "          'humorous': 1,\n",
      "          'poor': 1,\n",
      "          'miscast': 1,\n",
      "          'nso': 1,\n",
      "          'hysterically': 1,\n",
      "          'funny': 1,\n",
      "          'forced': 1,\n",
      "          'repress': 1,\n",
      "          'instincts': 1,\n",
      "          'swear': 1,\n",
      "          'yell': 1,\n",
      "          'talk': 1,\n",
      "          'oral': 1,\n",
      "          'sex': 1,\n",
      "          'scripts': 1,\n",
      "          'idea': 1,\n",
      "          'trait': 1,\n",
      "          'stress': 1,\n",
      "          'sensitive': 1,\n",
      "          'show': 1,\n",
      "          'drinking': 1,\n",
      "          'pepto': 1,\n",
      "          'bismol': 1,\n",
      "          'stewing': 1,\n",
      "          'girl': 1,\n",
      "          'nas': 1,\n",
      "          'israeli': 1,\n",
      "          'actress': 1,\n",
      "          'warm': 1,\n",
      "          'sweet': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'takes': 1,\n",
      "          'incredibly': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'realize': 1,\n",
      "          'obvious': 1,\n",
      "          'things': 1,\n",
      "          'nshe': 1,\n",
      "          'closely': 1,\n",
      "          'resembles': 1,\n",
      "          'stunningly': 1,\n",
      "          'beautiful': 1,\n",
      "          'kari': 1,\n",
      "          'wuhrer': 1,\n",
      "          'plays': 1,\n",
      "          'assistant': 1,\n",
      "          'personal': 1,\n",
      "          'temptress': 1,\n",
      "          'turning': 1,\n",
      "          'particular': 1,\n",
      "          'subplot': 1,\n",
      "          'unintentional': 1,\n",
      "          'riff': 1,\n",
      "          'vertigo': 1,\n",
      "          'handful': 1,\n",
      "          'smattering': 1,\n",
      "          'good': 1,\n",
      "          'scenes': 1,\n",
      "          'ni': 1,\n",
      "          'enjoyed': 1,\n",
      "          'moment': 1,\n",
      "          'comedy': 1,\n",
      "          'club': 1,\n",
      "          'gets': 1,\n",
      "          'asks': 1,\n",
      "          'ever': 1,\n",
      "          'hated': 1,\n",
      "          'much': 1,\n",
      "          'wanted': 1,\n",
      "          'kill': 1,\n",
      "          'nover': 1,\n",
      "          'booted': 1,\n",
      "          'stage': 1,\n",
      "          'obviously': 1,\n",
      "          'improvised': 1,\n",
      "          'lines': 1,\n",
      "          'fresher': 1,\n",
      "          'thats': 1,\n",
      "          'page': 1,\n",
      "          'nkissing': 1,\n",
      "          'never': 1,\n",
      "          'clever': 1,\n",
      "          'thursday': 1,\n",
      "          'night': 1,\n",
      "          'jokemachine': 1,\n",
      "          'friends': 1,\n",
      "          'spawned': 1,\n",
      "          'movie': 1,\n",
      "          'career': 1,\n",
      "          'save': 1,\n",
      "          'eight': 1,\n",
      "          'dollars': 1,\n",
      "          'watch': 1,\n",
      "          'three': 1,\n",
      "          'episodes': 1,\n",
      "          'series': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'surprise': 3,\n",
      "          'characters': 2,\n",
      "          'ending': 2,\n",
      "          'film': 2,\n",
      "          'go': 2,\n",
      "          'dawsons': 2,\n",
      "          'creek': 2,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'brainless': 1,\n",
      "          'teen': 1,\n",
      "          'flick': 1,\n",
      "          'one': 1,\n",
      "          'drugs': 1,\n",
      "          'sex': 1,\n",
      "          'nstars': 1,\n",
      "          'katie': 1,\n",
      "          'holmes': 1,\n",
      "          'sarah': 1,\n",
      "          'polly': 1,\n",
      "          'couldnt': 1,\n",
      "          'look': 1,\n",
      "          'bored': 1,\n",
      "          'ntheir': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutouts': 1,\n",
      "          'every': 1,\n",
      "          'cliched': 1,\n",
      "          'teenager': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'need': 1,\n",
      "          'know': 1,\n",
      "          'really': 1,\n",
      "          'hated': 1,\n",
      "          'movie': 1,\n",
      "          'neverything': 1,\n",
      "          'annoyed': 1,\n",
      "          'hell': 1,\n",
      "          'acting': 1,\n",
      "          'script': 1,\n",
      "          'plot': 1,\n",
      "          'director': 1,\n",
      "          'fluke': 1,\n",
      "          'hit': 1,\n",
      "          'swingers': 1,\n",
      "          'could': 1,\n",
      "          'well': 1,\n",
      "          'directed': 1,\n",
      "          'bunch': 1,\n",
      "          'noname': 1,\n",
      "          'actors': 1,\n",
      "          'watchabe': 1,\n",
      "          'big': 1,\n",
      "          'stars': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'drown': 1,\n",
      "          'project': 1,\n",
      "          'originality': 1,\n",
      "          'ni': 1,\n",
      "          'felt': 1,\n",
      "          'like': 1,\n",
      "          'watching': 1,\n",
      "          'episode': 1,\n",
      "          '200': 1,\n",
      "          'nalthough': 1,\n",
      "          'still': 1,\n",
      "          'would': 1,\n",
      "          'stayed': 1,\n",
      "          'red': 1,\n",
      "          'despite': 1,\n",
      "          'cast': 1,\n",
      "          'sooo': 1,\n",
      "          'predictable': 1,\n",
      "          'nsince': 1,\n",
      "          'male': 1,\n",
      "          'sudden': 1,\n",
      "          'outing': 1,\n",
      "          'closet': 1,\n",
      "          'considered': 1,\n",
      "          'hollywood': 1,\n",
      "          'anymore': 1,\n",
      "          'ngo': 1,\n",
      "          'varsity': 1,\n",
      "          'blues': 1,\n",
      "          'shes': 1,\n",
      "          'home': 1,\n",
      "          'watch': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'queen': 8,\n",
      "          'leader': 7,\n",
      "          'dutch': 6,\n",
      "          'movie': 6,\n",
      "          'lucky': 5,\n",
      "          'harlem': 4,\n",
      "          'families': 4,\n",
      "          'nthe': 4,\n",
      "          'lottery': 3,\n",
      "          'luciano': 3,\n",
      "          'queens': 3,\n",
      "          'army': 3,\n",
      "          'time': 3,\n",
      "          'many': 3,\n",
      "          'similarities': 3,\n",
      "          'way': 3,\n",
      "          'gangster': 2,\n",
      "          'war': 2,\n",
      "          'control': 2,\n",
      "          'numbers': 2,\n",
      "          'runners': 2,\n",
      "          'bets': 2,\n",
      "          'cicely': 2,\n",
      "          'tyson': 2,\n",
      "          'tim': 2,\n",
      "          'roth': 2,\n",
      "          'andy': 2,\n",
      "          'garcia': 2,\n",
      "          'bumpy': 2,\n",
      "          'johnson': 2,\n",
      "          'lawrence': 2,\n",
      "          'short': 2,\n",
      "          'reign': 2,\n",
      "          'nhis': 2,\n",
      "          'questions': 2,\n",
      "          'girlfriend': 2,\n",
      "          'vanessa': 2,\n",
      "          'williams': 2,\n",
      "          'violent': 2,\n",
      "          'dealing': 2,\n",
      "          'original': 2,\n",
      "          'story': 2,\n",
      "          'nthis': 2,\n",
      "          'godfather': 2,\n",
      "          'borrow': 2,\n",
      "          'give': 2,\n",
      "          'credit': 2,\n",
      "          'screenwriter': 2,\n",
      "          'cop': 2,\n",
      "          'relative': 2,\n",
      "          'officer': 2,\n",
      "          'family': 2,\n",
      "          'involved': 2,\n",
      "          'setup': 2,\n",
      "          'done': 2,\n",
      "          'well': 2,\n",
      "          'ni': 2,\n",
      "          'enjoyed': 2,\n",
      "          'one': 2,\n",
      "          'insult': 2,\n",
      "          'performances': 2,\n",
      "          'convincing': 2,\n",
      "          'set': 1,\n",
      "          'great': 1,\n",
      "          'depression': 1,\n",
      "          'rival': 1,\n",
      "          'go': 1,\n",
      "          'illegal': 1,\n",
      "          'gambling': 1,\n",
      "          'n': 1,\n",
      "          'take': 1,\n",
      "          'potential': 1,\n",
      "          'winners': 1,\n",
      "          'deliver': 1,\n",
      "          'private': 1,\n",
      "          'locations': 1,\n",
      "          'drawings': 1,\n",
      "          'undisputed': 1,\n",
      "          'madame': 1,\n",
      "          'challenged': 1,\n",
      "          'schulz': 1,\n",
      "          'ruthless': 1,\n",
      "          'hoodlum': 1,\n",
      "          'nby': 1,\n",
      "          'turning': 1,\n",
      "          'defies': 1,\n",
      "          'partner': 1,\n",
      "          'infamous': 1,\n",
      "          'wishes': 1,\n",
      "          'respect': 1,\n",
      "          'keep': 1,\n",
      "          'peace': 1,\n",
      "          'strengthens': 1,\n",
      "          'acquaintance': 1,\n",
      "          'ellsworth': 1,\n",
      "          'fishburne': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'becomes': 1,\n",
      "          'bodyguard': 1,\n",
      "          'nhe': 1,\n",
      "          'proves': 1,\n",
      "          'worthy': 1,\n",
      "          'thwarts': 1,\n",
      "          'assassination': 1,\n",
      "          'attempt': 1,\n",
      "          'later': 1,\n",
      "          'takes': 1,\n",
      "          'jailed': 1,\n",
      "          'tax': 1,\n",
      "          'evasion': 1,\n",
      "          'nbumpys': 1,\n",
      "          'restrained': 1,\n",
      "          'subdued': 1,\n",
      "          'declares': 1,\n",
      "          'nbloody': 1,\n",
      "          'gang': 1,\n",
      "          'warfare': 1,\n",
      "          'ensues': 1,\n",
      "          'nbumpy': 1,\n",
      "          'faces': 1,\n",
      "          'obstacles': 1,\n",
      "          'new': 1,\n",
      "          'methods': 1,\n",
      "          'l': 1,\n",
      "          'disagree': 1,\n",
      "          'solutions': 1,\n",
      "          'nmost': 1,\n",
      "          'importantly': 1,\n",
      "          'eyes': 1,\n",
      "          'become': 1,\n",
      "          'formidable': 1,\n",
      "          'foe': 1,\n",
      "          'imagined': 1,\n",
      "          'seeks': 1,\n",
      "          'help': 1,\n",
      "          'assassinate': 1,\n",
      "          'nthere': 1,\n",
      "          'movies': 1,\n",
      "          'organized': 1,\n",
      "          'crime': 1,\n",
      "          'must': 1,\n",
      "          'hard': 1,\n",
      "          'write': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'angered': 1,\n",
      "          'film': 1,\n",
      "          'arguably': 1,\n",
      "          'best': 1,\n",
      "          'nif': 1,\n",
      "          'going': 1,\n",
      "          'ideas': 1,\n",
      "          'another': 1,\n",
      "          'lesser': 1,\n",
      "          'known': 1,\n",
      "          'say': 1,\n",
      "          'millers': 1,\n",
      "          'crossing': 1,\n",
      "          'nhow': 1,\n",
      "          'could': 1,\n",
      "          'credited': 1,\n",
      "          'chris': 1,\n",
      "          'brancato': 1,\n",
      "          'mario': 1,\n",
      "          'puzo': 1,\n",
      "          'nhere': 1,\n",
      "          'major': 1,\n",
      "          'stopped': 1,\n",
      "          'counting': 1,\n",
      "          '10': 1,\n",
      "          'ncrooked': 1,\n",
      "          'assaults': 1,\n",
      "          'blood': 1,\n",
      "          'ngang': 1,\n",
      "          'extracts': 1,\n",
      "          'revenge': 1,\n",
      "          'crooked': 1,\n",
      "          'nwife': 1,\n",
      "          'partners': 1,\n",
      "          'murderous': 1,\n",
      "          'activities': 1,\n",
      "          'leaves': 1,\n",
      "          'nhigh': 1,\n",
      "          'ranking': 1,\n",
      "          'betrays': 1,\n",
      "          'nblood': 1,\n",
      "          'murdered': 1,\n",
      "          'nwar': 1,\n",
      "          'erupting': 1,\n",
      "          'nhighranking': 1,\n",
      "          'disapproves': 1,\n",
      "          'front': 1,\n",
      "          'members': 1,\n",
      "          'nnew': 1,\n",
      "          'runs': 1,\n",
      "          'differently': 1,\n",
      "          'previous': 1,\n",
      "          'nlarge': 1,\n",
      "          'meeting': 1,\n",
      "          'rather': 1,\n",
      "          'portrayal': 1,\n",
      "          'network': 1,\n",
      "          'sprinting': 1,\n",
      "          'streets': 1,\n",
      "          'collecting': 1,\n",
      "          'life': 1,\n",
      "          'people': 1,\n",
      "          'support': 1,\n",
      "          'put': 1,\n",
      "          'food': 1,\n",
      "          'table': 1,\n",
      "          'nnumber': 1,\n",
      "          'running': 1,\n",
      "          'population': 1,\n",
      "          'find': 1,\n",
      "          'work': 1,\n",
      "          'also': 1,\n",
      "          'interaction': 1,\n",
      "          'angry': 1,\n",
      "          'calm': 1,\n",
      "          'patient': 1,\n",
      "          'nafter': 1,\n",
      "          '3040': 1,\n",
      "          'minute': 1,\n",
      "          'mark': 1,\n",
      "          'start': 1,\n",
      "          'appearing': 1,\n",
      "          'order': 1,\n",
      "          'nit': 1,\n",
      "          'huge': 1,\n",
      "          'distraction': 1,\n",
      "          'intelligence': 1,\n",
      "          'nwho': 1,\n",
      "          'kidding': 1,\n",
      "          'nsome': 1,\n",
      "          'individual': 1,\n",
      "          'nandy': 1,\n",
      "          'unfortunately': 1,\n",
      "          'screen': 1,\n",
      "          'reduced': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'ntim': 1,\n",
      "          'effectively': 1,\n",
      "          'plays': 1,\n",
      "          'cocky': 1,\n",
      "          'villain': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'roles': 1,\n",
      "          'cook': 1,\n",
      "          'thief': 1,\n",
      "          'wife': 1,\n",
      "          'lover': 1,\n",
      "          'rob': 1,\n",
      "          'roy': 1,\n",
      "          'good': 1,\n",
      "          'first': 1,\n",
      "          'third': 1,\n",
      "          'make': 1,\n",
      "          'lackluster': 1,\n",
      "          'follows': 1,\n",
      "          'na': 1,\n",
      "          'couple': 1,\n",
      "          'coincidences': 1,\n",
      "          'thing': 1,\n",
      "          'dozen': 1,\n",
      "          'ndirected': 1,\n",
      "          'bill': 1,\n",
      "          'duke': 1,\n",
      "          'nellsworth': 1,\n",
      "          'nfishburne': 1,\n",
      "          'schultz': 1,\n",
      "          'nroth': 1,\n",
      "          'ngarcia': 1,\n",
      "          'francine': 1,\n",
      "          'hughes': 1,\n",
      "          'nl': 1,\n",
      "          'illinois': 1,\n",
      "          'gordon': 1,\n",
      "          'chi': 1,\n",
      "          'nmcbride': 1,\n",
      "          'nwritten': 1,\n",
      "          'randy': 1,\n",
      "          'turgeon': 1,\n",
      "          'january': 1,\n",
      "          '22': 1,\n",
      "          '1998': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'sword': 7,\n",
      "          'cromwell': 7,\n",
      "          'film': 6,\n",
      "          'xusia': 5,\n",
      "          'sorcerer': 4,\n",
      "          'scenes': 4,\n",
      "          'take': 3,\n",
      "          'ehdan': 3,\n",
      "          'talon': 3,\n",
      "          'vows': 3,\n",
      "          'alana': 3,\n",
      "          'help': 3,\n",
      "          'good': 3,\n",
      "          'would': 3,\n",
      "          'completely': 3,\n",
      "          'bloody': 3,\n",
      "          'extremely': 3,\n",
      "          'never': 3,\n",
      "          'right': 3,\n",
      "          'sorceror': 2,\n",
      "          'plotline': 2,\n",
      "          'like': 2,\n",
      "          'evil': 2,\n",
      "          'resurrects': 2,\n",
      "          'ancient': 2,\n",
      "          'kingdom': 2,\n",
      "          'bad': 2,\n",
      "          'brother': 2,\n",
      "          'ends': 2,\n",
      "          'alanas': 2,\n",
      "          'crucified': 2,\n",
      "          'battle': 2,\n",
      "          'blade': 2,\n",
      "          'even': 2,\n",
      "          'great': 2,\n",
      "          'uneven': 2,\n",
      "          'plot': 2,\n",
      "          'jumping': 2,\n",
      "          'acting': 2,\n",
      "          'needs': 2,\n",
      "          'minute': 2,\n",
      "          'moment': 2,\n",
      "          'see': 2,\n",
      "          'instead': 2,\n",
      "          'nin': 2,\n",
      "          'fantasy': 2,\n",
      "          'dont': 2,\n",
      "          'nthe': 2,\n",
      "          'score': 2,\n",
      "          'better': 2,\n",
      "          'called': 2,\n",
      "          'reviews': 2,\n",
      "          'ni': 2,\n",
      "          'hope': 2,\n",
      "          'first': 1,\n",
      "          'glance': 1,\n",
      "          'thought': 1,\n",
      "          'promise': 1,\n",
      "          'nits': 1,\n",
      "          'goes': 1,\n",
      "          'king': 1,\n",
      "          'desiring': 1,\n",
      "          'world': 1,\n",
      "          'power': 1,\n",
      "          'nhe': 1,\n",
      "          'attacks': 1,\n",
      "          'kills': 1,\n",
      "          'young': 1,\n",
      "          'prince': 1,\n",
      "          'talons': 1,\n",
      "          'parents': 1,\n",
      "          'ngiven': 1,\n",
      "          'triplebladed': 1,\n",
      "          'shoot': 1,\n",
      "          'guys': 1,\n",
      "          'gun': 1,\n",
      "          'dying': 1,\n",
      "          'father': 1,\n",
      "          'revenge': 1,\n",
      "          'neleven': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'hes': 1,\n",
      "          'established': 1,\n",
      "          'army': 1,\n",
      "          'mercaneries': 1,\n",
      "          'back': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'meets': 1,\n",
      "          'whose': 1,\n",
      "          'village': 1,\n",
      "          'attacked': 1,\n",
      "          'drunken': 1,\n",
      "          'guards': 1,\n",
      "          'kidnapped': 1,\n",
      "          'ntalon': 1,\n",
      "          'series': 1,\n",
      "          'minor': 1,\n",
      "          'escapades': 1,\n",
      "          'eventually': 1,\n",
      "          'rescuing': 1,\n",
      "          'several': 1,\n",
      "          'prisoners': 1,\n",
      "          'captured': 1,\n",
      "          'words': 1,\n",
      "          'put': 1,\n",
      "          'cross': 1,\n",
      "          'nfortunately': 1,\n",
      "          'frees': 1,\n",
      "          'rescues': 1,\n",
      "          'marrying': 1,\n",
      "          'defeats': 1,\n",
      "          'triple': 1,\n",
      "          'bladed': 1,\n",
      "          'final': 1,\n",
      "          'breaks': 1,\n",
      "          'finishes': 1,\n",
      "          'using': 1,\n",
      "          'hidden': 1,\n",
      "          'dagger': 1,\n",
      "          'nthen': 1,\n",
      "          'everything': 1,\n",
      "          'happily': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'half': 1,\n",
      "          'sounds': 1,\n",
      "          'nwhat': 1,\n",
      "          'destroyed': 1,\n",
      "          'gruesomely': 1,\n",
      "          'gory': 1,\n",
      "          'nnever': 1,\n",
      "          'story': 1,\n",
      "          'seem': 1,\n",
      "          'connect': 1,\n",
      "          'together': 1,\n",
      "          'jumps': 1,\n",
      "          'around': 1,\n",
      "          'repeatedly': 1,\n",
      "          'nthis': 1,\n",
      "          'problem': 1,\n",
      "          'noticeable': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'nafter': 1,\n",
      "          'telling': 1,\n",
      "          'leads': 1,\n",
      "          'warlock': 1,\n",
      "          'daylight': 1,\n",
      "          'stabs': 1,\n",
      "          'sends': 1,\n",
      "          'careening': 1,\n",
      "          'cliff': 1,\n",
      "          'afterwards': 1,\n",
      "          'nwait': 1,\n",
      "          'didnt': 1,\n",
      "          'say': 1,\n",
      "          'order': 1,\n",
      "          'invade': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'military': 1,\n",
      "          'force': 1,\n",
      "          'nif': 1,\n",
      "          'case': 1,\n",
      "          'dispose': 1,\n",
      "          'resurrecting': 1,\n",
      "          'nand': 1,\n",
      "          'manage': 1,\n",
      "          'anyway': 1,\n",
      "          'nthese': 1,\n",
      "          'questions': 1,\n",
      "          'answered': 1,\n",
      "          'nanother': 1,\n",
      "          'example': 1,\n",
      "          'one': 1,\n",
      "          'fighting': 1,\n",
      "          'life': 1,\n",
      "          'another': 1,\n",
      "          'wedding': 1,\n",
      "          'finally': 1,\n",
      "          'end': 1,\n",
      "          'settling': 1,\n",
      "          'tells': 1,\n",
      "          'wait': 1,\n",
      "          'rides': 1,\n",
      "          'addition': 1,\n",
      "          'destroys': 1,\n",
      "          'adventure': 1,\n",
      "          'neven': 1,\n",
      "          'attempts': 1,\n",
      "          'make': 1,\n",
      "          'exciting': 1,\n",
      "          'fire': 1,\n",
      "          'work': 1,\n",
      "          'nit': 1,\n",
      "          'fails': 1,\n",
      "          'altogether': 1,\n",
      "          'miserably': 1,\n",
      "          'thing': 1,\n",
      "          'musical': 1,\n",
      "          'contributed': 1,\n",
      "          'david': 1,\n",
      "          'whittaker': 1,\n",
      "          'short': 1,\n",
      "          'music': 1,\n",
      "          'composing': 1,\n",
      "          'career': 1,\n",
      "          'boomy': 1,\n",
      "          'adventurous': 1,\n",
      "          'powerful': 1,\n",
      "          'billion': 1,\n",
      "          'times': 1,\n",
      "          'nmy': 1,\n",
      "          'suggestion': 1,\n",
      "          'steer': 1,\n",
      "          'hell': 1,\n",
      "          'away': 1,\n",
      "          'mess': 1,\n",
      "          'buy': 1,\n",
      "          'soundtrack': 1,\n",
      "          'album': 1,\n",
      "          'find': 1,\n",
      "          'nironically': 1,\n",
      "          'though': 1,\n",
      "          'films': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'message': 1,\n",
      "          'indicating': 1,\n",
      "          'sequel': 1,\n",
      "          'tales': 1,\n",
      "          'empire': 1,\n",
      "          'follow': 1,\n",
      "          'nto': 1,\n",
      "          'relief': 1,\n",
      "          'delight': 1,\n",
      "          'got': 1,\n",
      "          'production': 1,\n",
      "          'laid': 1,\n",
      "          'egg': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'grossing': 1,\n",
      "          '39': 1,\n",
      "          'million': 1,\n",
      "          'ncritics': 1,\n",
      "          'slamming': 1,\n",
      "          'nleonard': 1,\n",
      "          'maltin': 1,\n",
      "          'rightfully': 1,\n",
      "          'second': 1,\n",
      "          'rate': 1,\n",
      "          'scripting': 1,\n",
      "          'ataglance': 1,\n",
      "          'confusing': 1,\n",
      "          'stupid': 1,\n",
      "          'unimaginative': 1,\n",
      "          'unengaging': 1,\n",
      "          'bloodfilled': 1,\n",
      "          'bore': 1,\n",
      "          'totally': 1,\n",
      "          'agree': 1,\n",
      "          'piece': 1,\n",
      "          'nwill': 1,\n",
      "          'forgotten': 1,\n",
      "          'nthere': 1,\n",
      "          'far': 1,\n",
      "          'movies': 1,\n",
      "          'get': 1,\n",
      "          'laugh': 1,\n",
      "          'review': 1,\n",
      "          'laughing': 1,\n",
      "          'fact': 1,\n",
      "          'insults': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'gruesome': 1,\n",
      "          'sickness': 1,\n",
      "          'gave': 1,\n",
      "          'throughout': 1,\n",
      "          '100': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'military': 7,\n",
      "          'brenner': 6,\n",
      "          'rape': 4,\n",
      "          'ni': 3,\n",
      "          'like': 3,\n",
      "          'investigating': 3,\n",
      "          'west': 3,\n",
      "          'point': 3,\n",
      "          'film': 2,\n",
      "          'officer': 2,\n",
      "          'paul': 2,\n",
      "          'identification': 2,\n",
      "          'might': 2,\n",
      "          'cards': 2,\n",
      "          'suspect': 2,\n",
      "          'even': 2,\n",
      "          'story': 2,\n",
      "          'gets': 2,\n",
      "          'killing': 2,\n",
      "          'nthe': 2,\n",
      "          'assigned': 2,\n",
      "          'murder': 2,\n",
      "          'generals': 2,\n",
      "          'daughter': 2,\n",
      "          'nno': 2,\n",
      "          'totally': 2,\n",
      "          'crime': 2,\n",
      "          'one': 2,\n",
      "          'occurred': 2,\n",
      "          'georgia': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'nhe': 2,\n",
      "          'deadline': 2,\n",
      "          'psychiatrist': 2,\n",
      "          'transport': 2,\n",
      "          'movie': 1,\n",
      "          'stinks': 1,\n",
      "          'nalthough': 1,\n",
      "          'professionally': 1,\n",
      "          'crafted': 1,\n",
      "          'decent': 1,\n",
      "          'performances': 1,\n",
      "          'plot': 1,\n",
      "          'bad': 1,\n",
      "          'drags': 1,\n",
      "          'abyss': 1,\n",
      "          'knew': 1,\n",
      "          'trouble': 1,\n",
      "          'opening': 1,\n",
      "          'establishment': 1,\n",
      "          'shots': 1,\n",
      "          'see': 1,\n",
      "          'detailed': 1,\n",
      "          'closeup': 1,\n",
      "          'warrant': 1,\n",
      "          'brenners': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'card': 1,\n",
      "          'wrong': 1,\n",
      "          'color': 1,\n",
      "          'nthis': 1,\n",
      "          'seem': 1,\n",
      "          'minor': 1,\n",
      "          'detail': 1,\n",
      "          'anyone': 1,\n",
      "          'spent': 1,\n",
      "          'anytime': 1,\n",
      "          'knows': 1,\n",
      "          'active': 1,\n",
      "          'duty': 1,\n",
      "          'green': 1,\n",
      "          'dependant': 1,\n",
      "          'yellow': 1,\n",
      "          'nand': 1,\n",
      "          'senior': 1,\n",
      "          'whose': 1,\n",
      "          'uniform': 1,\n",
      "          'shirt': 1,\n",
      "          'wrinkled': 1,\n",
      "          'looks': 1,\n",
      "          'recruit': 1,\n",
      "          'first': 1,\n",
      "          'day': 1,\n",
      "          'training': 1,\n",
      "          'tells': 1,\n",
      "          'doesnt': 1,\n",
      "          'right': 1,\n",
      "          'answer': 1,\n",
      "          'questions': 1,\n",
      "          'though': 1,\n",
      "          'rights': 1,\n",
      "          'central': 1,\n",
      "          'law': 1,\n",
      "          'well': 1,\n",
      "          'miranda': 1,\n",
      "          'decision': 1,\n",
      "          'nhow': 1,\n",
      "          'hard': 1,\n",
      "          'get': 1,\n",
      "          'someone': 1,\n",
      "          'familiar': 1,\n",
      "          'check': 1,\n",
      "          'facts': 1,\n",
      "          'nnow': 1,\n",
      "          'details': 1,\n",
      "          'could': 1,\n",
      "          'overlooked': 1,\n",
      "          'underlying': 1,\n",
      "          'held': 1,\n",
      "          'full': 1,\n",
      "          'holes': 1,\n",
      "          'painful': 1,\n",
      "          'sit': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'beginning': 1,\n",
      "          'undercover': 1,\n",
      "          'army': 1,\n",
      "          'investigator': 1,\n",
      "          'gun': 1,\n",
      "          'knife': 1,\n",
      "          'battle': 1,\n",
      "          'offpost': 1,\n",
      "          'houseboat': 1,\n",
      "          'windsup': 1,\n",
      "          'arms': 1,\n",
      "          'dealer': 1,\n",
      "          'local': 1,\n",
      "          'police': 1,\n",
      "          'death': 1,\n",
      "          'openly': 1,\n",
      "          'hostile': 1,\n",
      "          'discover': 1,\n",
      "          'lying': 1,\n",
      "          'nbut': 1,\n",
      "          'instead': 1,\n",
      "          'arresting': 1,\n",
      "          'least': 1,\n",
      "          'take': 1,\n",
      "          'custody': 1,\n",
      "          'questioning': 1,\n",
      "          'release': 1,\n",
      "          'nduh': 1,\n",
      "          'nultimately': 1,\n",
      "          'investigate': 1,\n",
      "          'possible': 1,\n",
      "          'commanding': 1,\n",
      "          'young': 1,\n",
      "          'captain': 1,\n",
      "          'also': 1,\n",
      "          'post': 1,\n",
      "          'nwhen': 1,\n",
      "          'finds': 1,\n",
      "          'graphic': 1,\n",
      "          'sex': 1,\n",
      "          'tapes': 1,\n",
      "          'featuring': 1,\n",
      "          'use': 1,\n",
      "          'generate': 1,\n",
      "          'list': 1,\n",
      "          'begin': 1,\n",
      "          'grilling': 1,\n",
      "          'suspects': 1,\n",
      "          'instinct': 1,\n",
      "          'suppress': 1,\n",
      "          'potentially': 1,\n",
      "          'embarrassing': 1,\n",
      "          'neventually': 1,\n",
      "          'discovers': 1,\n",
      "          'related': 1,\n",
      "          'violent': 1,\n",
      "          'gang': 1,\n",
      "          'eight': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'wont': 1,\n",
      "          'go': 1,\n",
      "          'unbelievable': 1,\n",
      "          'rationale': 1,\n",
      "          'armys': 1,\n",
      "          'suppression': 1,\n",
      "          'horrendous': 1,\n",
      "          'mention': 1,\n",
      "          'final': 1,\n",
      "          'flaw': 1,\n",
      "          'nbrenner': 1,\n",
      "          'tight': 1,\n",
      "          'implausible': 1,\n",
      "          '36hour': 1,\n",
      "          'solve': 1,\n",
      "          'case': 1,\n",
      "          'needs': 1,\n",
      "          'discuss': 1,\n",
      "          'ndoes': 1,\n",
      "          'phone': 1,\n",
      "          'doctor': 1,\n",
      "          'travels': 1,\n",
      "          'via': 1,\n",
      "          'unexplained': 1,\n",
      "          'fast': 1,\n",
      "          'question': 1,\n",
      "          'person': 1,\n",
      "          'returns': 1,\n",
      "          'miracle': 1,\n",
      "          'without': 1,\n",
      "          'worrying': 1,\n",
      "          'impact': 1,\n",
      "          'nyou': 1,\n",
      "          'warned': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'vampire': 6,\n",
      "          'crow': 6,\n",
      "          '_vampires_': 4,\n",
      "          'even': 4,\n",
      "          'scary': 3,\n",
      "          'carpenter': 3,\n",
      "          'film': 3,\n",
      "          'master': 3,\n",
      "          'named': 3,\n",
      "          'montoya': 3,\n",
      "          'guiteau': 3,\n",
      "          'first': 2,\n",
      "          'words': 2,\n",
      "          'associated': 2,\n",
      "          'nbut': 2,\n",
      "          '_the': 2,\n",
      "          'action': 2,\n",
      "          'new': 2,\n",
      "          'plot': 2,\n",
      "          'carpenters': 2,\n",
      "          'vampires_': 2,\n",
      "          'least': 2,\n",
      "          'fan': 2,\n",
      "          'nthe': 2,\n",
      "          'concerned': 2,\n",
      "          'nest': 2,\n",
      "          'vampires': 2,\n",
      "          'ntheir': 2,\n",
      "          'nto': 2,\n",
      "          'away': 2,\n",
      "          'valek': 2,\n",
      "          'nwoods': 2,\n",
      "          'jack': 2,\n",
      "          'woman': 2,\n",
      "          'katrina': 2,\n",
      "          'rest': 2,\n",
      "          'pick': 2,\n",
      "          'much': 2,\n",
      "          'n_vampires_': 2,\n",
      "          'flick': 2,\n",
      "          'seems': 2,\n",
      "          '_blade_': 2,\n",
      "          '_____': 2,\n",
      "          'wanted': 2,\n",
      "          'nthese': 1,\n",
      "          'came': 1,\n",
      "          'mind': 1,\n",
      "          'nwhen': 1,\n",
      "          'called': 1,\n",
      "          'arent': 1,\n",
      "          'wasnt': 1,\n",
      "          'gripe': 1,\n",
      "          'njohn': 1,\n",
      "          'name': 1,\n",
      "          'cuttingedge': 1,\n",
      "          'cinema': 1,\n",
      "          'intense': 1,\n",
      "          'scares': 1,\n",
      "          '_halloween_': 1,\n",
      "          'thing_': 1,\n",
      "          'prince': 1,\n",
      "          'darkness_': 1,\n",
      "          'offbeat': 1,\n",
      "          '_they': 1,\n",
      "          'live_': 1,\n",
      "          '_escape': 1,\n",
      "          'york_': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'thing': 1,\n",
      "          'cutting': 1,\n",
      "          'edge': 1,\n",
      "          'level': 1,\n",
      "          'boredom': 1,\n",
      "          'able': 1,\n",
      "          'reach': 1,\n",
      "          'nwith': 1,\n",
      "          'anemic': 1,\n",
      "          'notquitekosher': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          '_john': 1,\n",
      "          'barely': 1,\n",
      "          'enough': 1,\n",
      "          'substance': 1,\n",
      "          'slake': 1,\n",
      "          'thirst': 1,\n",
      "          'discerning': 1,\n",
      "          'genre': 1,\n",
      "          'group': 1,\n",
      "          'roaming': 1,\n",
      "          'slayers': 1,\n",
      "          'led': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'people': 1,\n",
      "          'nlike': 1,\n",
      "          'sort': 1,\n",
      "          'holy': 1,\n",
      "          'ateam': 1,\n",
      "          'soupedup': 1,\n",
      "          'van': 1,\n",
      "          'bunch': 1,\n",
      "          'invade': 1,\n",
      "          'wipe': 1,\n",
      "          'mexico': 1,\n",
      "          'shack': 1,\n",
      "          'method': 1,\n",
      "          'amusingly': 1,\n",
      "          'innovative': 1,\n",
      "          'bloodsuckers': 1,\n",
      "          'reeled': 1,\n",
      "          'harpoons': 1,\n",
      "          'flare': 1,\n",
      "          'sun': 1,\n",
      "          'like': 1,\n",
      "          'matchsticks': 1,\n",
      "          'commemorate': 1,\n",
      "          'victory': 1,\n",
      "          'loutish': 1,\n",
      "          'band': 1,\n",
      "          'decorates': 1,\n",
      "          'motel': 1,\n",
      "          'room': 1,\n",
      "          'hookers': 1,\n",
      "          'parties': 1,\n",
      "          'night': 1,\n",
      "          'celebration': 1,\n",
      "          'shortlived': 1,\n",
      "          'however': 1,\n",
      "          'ambushes': 1,\n",
      "          'singlehandedly': 1,\n",
      "          'destroys': 1,\n",
      "          'team': 1,\n",
      "          'buddy': 1,\n",
      "          'daniel': 1,\n",
      "          'baldwin': 1,\n",
      "          'escape': 1,\n",
      "          'lives': 1,\n",
      "          'along': 1,\n",
      "          'sheryl': 1,\n",
      "          'lee': 1,\n",
      "          'nalthough': 1,\n",
      "          'bitten': 1,\n",
      "          'decide': 1,\n",
      "          'keep': 1,\n",
      "          'psychic': 1,\n",
      "          'link': 1,\n",
      "          'boys': 1,\n",
      "          'hunt': 1,\n",
      "          'thomas': 1,\n",
      "          'ian': 1,\n",
      "          'griffith': 1,\n",
      "          'freaky': 1,\n",
      "          'marilyn': 1,\n",
      "          'mansontype': 1,\n",
      "          'whos': 1,\n",
      "          'mission': 1,\n",
      "          'dates': 1,\n",
      "          'back': 1,\n",
      "          '600': 1,\n",
      "          'years': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'priest': 1,\n",
      "          'tim': 1,\n",
      "          'guinee': 1,\n",
      "          'character': 1,\n",
      "          'serves': 1,\n",
      "          'pretty': 1,\n",
      "          'purpose': 1,\n",
      "          'jittery': 1,\n",
      "          'cpl': 1,\n",
      "          'nupham': 1,\n",
      "          '_saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan_': 1,\n",
      "          'nsome': 1,\n",
      "          'stuff': 1,\n",
      "          'happens': 1,\n",
      "          'middle': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'often': 1,\n",
      "          'found': 1,\n",
      "          'twitching': 1,\n",
      "          'hair': 1,\n",
      "          'corner': 1,\n",
      "          'frame': 1,\n",
      "          'interesting': 1,\n",
      "          'happening': 1,\n",
      "          'screen': 1,\n",
      "          'finally': 1,\n",
      "          'starts': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'mix': 1,\n",
      "          'assault': 1,\n",
      "          'abandoned': 1,\n",
      "          'prisonturned': 1,\n",
      "          'nonly': 1,\n",
      "          'begin': 1,\n",
      "          'resemble': 1,\n",
      "          'little': 1,\n",
      "          'late': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'inevitable': 1,\n",
      "          'final': 1,\n",
      "          'confrontation': 1,\n",
      "          'tacked': 1,\n",
      "          'rather': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'come': 1,\n",
      "          'dealing': 1,\n",
      "          '_the_': 1,\n",
      "          'ninterestingly': 1,\n",
      "          'last': 1,\n",
      "          'summers': 1,\n",
      "          'actioner': 1,\n",
      "          'derived': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'novel': 1,\n",
      "          'yet': 1,\n",
      "          'latter': 1,\n",
      "          'steeped': 1,\n",
      "          'campy': 1,\n",
      "          'cheesiness': 1,\n",
      "          'former': 1,\n",
      "          'deliberate': 1,\n",
      "          'superhero': 1,\n",
      "          'spouts': 1,\n",
      "          'glib': 1,\n",
      "          'offthecuff': 1,\n",
      "          'oneliners': 1,\n",
      "          'strolls': 1,\n",
      "          'exploding': 1,\n",
      "          'buildings': 1,\n",
      "          'ohsocool': 1,\n",
      "          'stride': 1,\n",
      "          'nand': 1,\n",
      "          'motive': 1,\n",
      "          'killing': 1,\n",
      "          'ntake': 1,\n",
      "          'wild': 1,\n",
      "          'guess': 1,\n",
      "          'n': 1,\n",
      "          'hint': 1,\n",
      "          '______': 1,\n",
      "          'killed': 1,\n",
      "          'nat': 1,\n",
      "          'decent': 1,\n",
      "          'slick': 1,\n",
      "          'stylishness': 1,\n",
      "          'lacks': 1,\n",
      "          'cheap': 1,\n",
      "          'thrills': 1,\n",
      "          'mask': 1,\n",
      "          'gossamerthin': 1,\n",
      "          'make': 1,\n",
      "          'resorts': 1,\n",
      "          'shocks': 1,\n",
      "          'generally': 1,\n",
      "          'condescending': 1,\n",
      "          'attitude': 1,\n",
      "          'towards': 1,\n",
      "          'women': 1,\n",
      "          'slaps': 1,\n",
      "          'around': 1,\n",
      "          'fun': 1,\n",
      "          'overplayed': 1,\n",
      "          'contempt': 1,\n",
      "          'religion': 1,\n",
      "          'teases': 1,\n",
      "          'incessantly': 1,\n",
      "          'whether': 1,\n",
      "          'vow': 1,\n",
      "          'celibacy': 1,\n",
      "          'made': 1,\n",
      "          'prone': 1,\n",
      "          'getting': 1,\n",
      "          'woodies': 1,\n",
      "          'nit': 1,\n",
      "          'argued': 1,\n",
      "          'maybe': 1,\n",
      "          'nif': 1,\n",
      "          'gory': 1,\n",
      "          'tense': 1,\n",
      "          'relentless': 1,\n",
      "          'exhausting': 1,\n",
      "          'n_john': 1,\n",
      "          'none': 1,\n",
      "          'ni': 1,\n",
      "          'recommended': 1,\n",
      "          'hardcore': 1,\n",
      "          'nfor': 1,\n",
      "          'looking': 1,\n",
      "          'good': 1,\n",
      "          'scare': 1,\n",
      "          'beware': 1,\n",
      "          'teeth': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'dirty': 5,\n",
      "          'work': 5,\n",
      "          'two': 5,\n",
      "          'live': 3,\n",
      "          'always': 3,\n",
      "          'norm': 3,\n",
      "          'macdonald': 3,\n",
      "          'says': 3,\n",
      "          'go': 3,\n",
      "          'car': 3,\n",
      "          'funny': 3,\n",
      "          'note': 3,\n",
      "          'self': 3,\n",
      "          'best': 2,\n",
      "          'news': 2,\n",
      "          'saturday': 2,\n",
      "          'night': 2,\n",
      "          'nin': 2,\n",
      "          'movie': 2,\n",
      "          'saying': 2,\n",
      "          'feel': 2,\n",
      "          'real': 2,\n",
      "          'one': 2,\n",
      "          'getting': 2,\n",
      "          'jack': 2,\n",
      "          'warden': 2,\n",
      "          'ntheir': 2,\n",
      "          'scene': 2,\n",
      "          'possibly': 2,\n",
      "          'television': 2,\n",
      "          'used': 2,\n",
      "          'lot': 2,\n",
      "          'revenge': 2,\n",
      "          'material': 2,\n",
      "          'like': 2,\n",
      "          'perhaps': 1,\n",
      "          'remembered': 1,\n",
      "          'recently': 1,\n",
      "          'departed': 1,\n",
      "          'anchor': 1,\n",
      "          'started': 1,\n",
      "          'segment': 1,\n",
      "          'fake': 1,\n",
      "          'times': 1,\n",
      "          'could': 1,\n",
      "          'elicit': 1,\n",
      "          'laughter': 1,\n",
      "          'blurting': 1,\n",
      "          'semioffensive': 1,\n",
      "          'phrases': 1,\n",
      "          'raspy': 1,\n",
      "          'voice': 1,\n",
      "          'coated': 1,\n",
      "          'condescending': 1,\n",
      "          'attitude': 1,\n",
      "          'nhis': 1,\n",
      "          'shtick': 1,\n",
      "          'marked': 1,\n",
      "          'crassness': 1,\n",
      "          'example': 1,\n",
      "          'girlfriend': 1,\n",
      "          'shes': 1,\n",
      "          'kicking': 1,\n",
      "          'hes': 1,\n",
      "          'fired': 1,\n",
      "          '14': 1,\n",
      "          'different': 1,\n",
      "          'jobs': 1,\n",
      "          'last': 1,\n",
      "          '3': 1,\n",
      "          'months': 1,\n",
      "          'tries': 1,\n",
      "          'calm': 1,\n",
      "          'situation': 1,\n",
      "          'maybe': 1,\n",
      "          'youll': 1,\n",
      "          'better': 1,\n",
      "          'sex': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'humor': 1,\n",
      "          'far': 1,\n",
      "          'certainly': 1,\n",
      "          'cant': 1,\n",
      "          'distance': 1,\n",
      "          'fulllength': 1,\n",
      "          'feature': 1,\n",
      "          'n': 1,\n",
      "          'nothing': 1,\n",
      "          'sophomoric': 1,\n",
      "          'comedy': 1,\n",
      "          'friends': 1,\n",
      "          'grow': 1,\n",
      "          'physically': 1,\n",
      "          'nemotionally': 1,\n",
      "          'theyve': 1,\n",
      "          'never': 1,\n",
      "          'outgrown': 1,\n",
      "          'pubescent': 1,\n",
      "          'years': 1,\n",
      "          'somewhat': 1,\n",
      "          'amusingly': 1,\n",
      "          'explored': 1,\n",
      "          'beginning': 1,\n",
      "          'flashback': 1,\n",
      "          'nalthough': 1,\n",
      "          'apparent': 1,\n",
      "          'world': 1,\n",
      "          'skills': 1,\n",
      "          'thing': 1,\n",
      "          'adept': 1,\n",
      "          'back': 1,\n",
      "          'people': 1,\n",
      "          'nif': 1,\n",
      "          'meter': 1,\n",
      "          'maid': 1,\n",
      "          'unjust': 1,\n",
      "          'giving': 1,\n",
      "          'ticket': 1,\n",
      "          'dump': 1,\n",
      "          'bunch': 1,\n",
      "          'unpopped': 1,\n",
      "          'kernels': 1,\n",
      "          'corn': 1,\n",
      "          'onto': 1,\n",
      "          'engine': 1,\n",
      "          'block': 1,\n",
      "          'watch': 1,\n",
      "          'burst': 1,\n",
      "          'apart': 1,\n",
      "          'nmitch': 1,\n",
      "          'sam': 1,\n",
      "          'artie': 1,\n",
      "          'lange': 1,\n",
      "          'need': 1,\n",
      "          'come': 1,\n",
      "          '50': 1,\n",
      "          '000': 1,\n",
      "          'period': 1,\n",
      "          'weeks': 1,\n",
      "          'sams': 1,\n",
      "          'dad': 1,\n",
      "          'heart': 1,\n",
      "          'operation': 1,\n",
      "          'idea': 1,\n",
      "          'start': 1,\n",
      "          'revengeforhire': 1,\n",
      "          'business': 1,\n",
      "          'theyll': 1,\n",
      "          'funniest': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'shoot': 1,\n",
      "          'nearby': 1,\n",
      "          'presence': 1,\n",
      "          'established': 1,\n",
      "          'lessthanhonorable': 1,\n",
      "          'estate': 1,\n",
      "          'developer': 1,\n",
      "          'hires': 1,\n",
      "          'reneges': 1,\n",
      "          'payment': 1,\n",
      "          'exact': 1,\n",
      "          'sordid': 1,\n",
      "          'brand': 1,\n",
      "          'nby': 1,\n",
      "          'default': 1,\n",
      "          'treat': 1,\n",
      "          'us': 1,\n",
      "          'outrageous': 1,\n",
      "          'plots': 1,\n",
      "          'delivers': 1,\n",
      "          'jerky': 1,\n",
      "          'boys': 1,\n",
      "          'level': 1,\n",
      "          'nexcept': 1,\n",
      "          'bit': 1,\n",
      "          'another': 1,\n",
      "          'episode': 1,\n",
      "          'involves': 1,\n",
      "          'frat': 1,\n",
      "          'brothers': 1,\n",
      "          'uninspired': 1,\n",
      "          'becomes': 1,\n",
      "          'prank': 1,\n",
      "          'phone': 1,\n",
      "          'call': 1,\n",
      "          'nalready': 1,\n",
      "          'weak': 1,\n",
      "          'spirals': 1,\n",
      "          'towards': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'constantly': 1,\n",
      "          'blurt': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'libido': 1,\n",
      "          'needs': 1,\n",
      "          'broads': 1,\n",
      "          'also': 1,\n",
      "          'includes': 1,\n",
      "          'unfunny': 1,\n",
      "          'chevy': 1,\n",
      "          'chase': 1,\n",
      "          'bumbling': 1,\n",
      "          'doctor': 1,\n",
      "          'gambling': 1,\n",
      "          'addiction': 1,\n",
      "          'nbut': 1,\n",
      "          'whats': 1,\n",
      "          'really': 1,\n",
      "          'painfully': 1,\n",
      "          'evident': 1,\n",
      "          'versatility': 1,\n",
      "          'actor': 1,\n",
      "          'nrelying': 1,\n",
      "          'trademark': 1,\n",
      "          'speaking': 1,\n",
      "          'personal': 1,\n",
      "          'recorder': 1,\n",
      "          'learn': 1,\n",
      "          'fight': 1,\n",
      "          'beat': 1,\n",
      "          'theres': 1,\n",
      "          'beer': 1,\n",
      "          'hitting': 1,\n",
      "          'rock': 1,\n",
      "          'bottom': 1,\n",
      "          'etc': 1,\n",
      "          'watching': 1,\n",
      "          'elongated': 1,\n",
      "          'rehash': 1,\n",
      "          'notsoglorious': 1,\n",
      "          'days': 1,\n",
      "          'nmuch': 1,\n",
      "          'show': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'get': 1,\n",
      "          'bits': 1,\n",
      "          'nthe': 1,\n",
      "          'rest': 1,\n",
      "          'story': 1,\n",
      "          'dead': 1,\n",
      "          'space': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wild': 8,\n",
      "          'west': 8,\n",
      "          'smith': 6,\n",
      "          'also': 6,\n",
      "          'film': 6,\n",
      "          'kline': 5,\n",
      "          'even': 5,\n",
      "          'nthe': 5,\n",
      "          'much': 4,\n",
      "          'nice': 4,\n",
      "          'affair': 3,\n",
      "          'two': 3,\n",
      "          'loveless': 3,\n",
      "          'branagh': 3,\n",
      "          'ntheres': 3,\n",
      "          'always': 3,\n",
      "          'little': 3,\n",
      "          'comes': 3,\n",
      "          'nits': 3,\n",
      "          'rather': 3,\n",
      "          'summer': 2,\n",
      "          'movies': 2,\n",
      "          'make': 2,\n",
      "          'money': 2,\n",
      "          'nwild': 2,\n",
      "          'nwill': 2,\n",
      "          'jim': 2,\n",
      "          'black': 2,\n",
      "          'top': 2,\n",
      "          'scientists': 2,\n",
      "          'artemus': 2,\n",
      "          'gordon': 2,\n",
      "          'missing': 2,\n",
      "          'pleasing': 2,\n",
      "          'one': 2,\n",
      "          'salma': 2,\n",
      "          'hayek': 2,\n",
      "          'theres': 2,\n",
      "          'appears': 2,\n",
      "          'purely': 2,\n",
      "          'none': 2,\n",
      "          'plot': 2,\n",
      "          'although': 2,\n",
      "          'doesnt': 2,\n",
      "          'character': 2,\n",
      "          'script': 2,\n",
      "          'humour': 2,\n",
      "          'could': 2,\n",
      "          'save': 2,\n",
      "          'funny': 2,\n",
      "          'racist': 2,\n",
      "          'scene': 2,\n",
      "          'way': 2,\n",
      "          'thing': 2,\n",
      "          'makes': 2,\n",
      "          'unfunny': 2,\n",
      "          'get': 2,\n",
      "          'piece': 2,\n",
      "          'nature': 1,\n",
      "          'dumb': 1,\n",
      "          'affairs': 1,\n",
      "          'usually': 1,\n",
      "          'made': 1,\n",
      "          'quick': 1,\n",
      "          'enjoyment': 1,\n",
      "          'latest': 1,\n",
      "          'follows': 1,\n",
      "          'formula': 1,\n",
      "          'except': 1,\n",
      "          'dumber': 1,\n",
      "          'less': 1,\n",
      "          'enjoying': 1,\n",
      "          'plays': 1,\n",
      "          'sheriff': 1,\n",
      "          'line': 1,\n",
      "          'sunglasses': 1,\n",
      "          'nhe': 1,\n",
      "          'called': 1,\n",
      "          'president': 1,\n",
      "          'grant': 1,\n",
      "          'go': 1,\n",
      "          'mission': 1,\n",
      "          'find': 1,\n",
      "          'government': 1,\n",
      "          'disappearing': 1,\n",
      "          'nwest': 1,\n",
      "          'paired': 1,\n",
      "          'scientist': 1,\n",
      "          'track': 1,\n",
      "          'legless': 1,\n",
      "          'mastermind': 1,\n",
      "          'named': 1,\n",
      "          'dr': 1,\n",
      "          'zany': 1,\n",
      "          'moustache': 1,\n",
      "          'nbefore': 1,\n",
      "          'pile': 1,\n",
      "          'many': 1,\n",
      "          'negatives': 1,\n",
      "          'sorry': 1,\n",
      "          'ill': 1,\n",
      "          'give': 1,\n",
      "          'chance': 1,\n",
      "          'positives': 1,\n",
      "          'credit': 1,\n",
      "          'sequence': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'bo': 1,\n",
      "          'welch': 1,\n",
      "          'eye': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'decent': 1,\n",
      "          'enough': 1,\n",
      "          'pleasant': 1,\n",
      "          'soundtrack': 1,\n",
      "          'nburied': 1,\n",
      "          'deep': 1,\n",
      "          'dross': 1,\n",
      "          'amusing': 1,\n",
      "          'jokes': 1,\n",
      "          'nand': 1,\n",
      "          'pops': 1,\n",
      "          'female': 1,\n",
      "          'interest': 1,\n",
      "          'see': 1,\n",
      "          'napart': 1,\n",
      "          'factors': 1,\n",
      "          'though': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'works': 1,\n",
      "          'nfirstly': 1,\n",
      "          'chemistry': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'zingers': 1,\n",
      "          'passing': 1,\n",
      "          'arise': 1,\n",
      "          'nboth': 1,\n",
      "          'plod': 1,\n",
      "          'standard': 1,\n",
      "          'knowing': 1,\n",
      "          'pay': 1,\n",
      "          'cheque': 1,\n",
      "          'waiting': 1,\n",
      "          'end': 1,\n",
      "          'nnot': 1,\n",
      "          'kenneth': 1,\n",
      "          'provides': 1,\n",
      "          'entertainment': 1,\n",
      "          'material': 1,\n",
      "          'present': 1,\n",
      "          'opportunity': 1,\n",
      "          'truly': 1,\n",
      "          'crazy': 1,\n",
      "          'ntherefore': 1,\n",
      "          'across': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'enjoyable': 1,\n",
      "          'performance': 1,\n",
      "          'sexy': 1,\n",
      "          'given': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'embarrassing': 1,\n",
      "          'nshe': 1,\n",
      "          'merely': 1,\n",
      "          'show': 1,\n",
      "          'body': 1,\n",
      "          'ogled': 1,\n",
      "          'nher': 1,\n",
      "          'changes': 1,\n",
      "          'whim': 1,\n",
      "          'fit': 1,\n",
      "          'mechanics': 1,\n",
      "          'sense': 1,\n",
      "          'realism': 1,\n",
      "          'put': 1,\n",
      "          'spin': 1,\n",
      "          'daft': 1,\n",
      "          'lines': 1,\n",
      "          'men': 1,\n",
      "          'display': 1,\n",
      "          'largely': 1,\n",
      "          'boils': 1,\n",
      "          'insults': 1,\n",
      "          'arent': 1,\n",
      "          'oneliners': 1,\n",
      "          'barely': 1,\n",
      "          'raise': 1,\n",
      "          'smirk': 1,\n",
      "          'somewhat': 1,\n",
      "          'intend': 1,\n",
      "          'trying': 1,\n",
      "          'wisecrack': 1,\n",
      "          'lynching': 1,\n",
      "          'actually': 1,\n",
      "          'says': 1,\n",
      "          'slavery': 1,\n",
      "          'good': 1,\n",
      "          'whole': 1,\n",
      "          'uncomfortably': 1,\n",
      "          'tragic': 1,\n",
      "          'mistake': 1,\n",
      "          'man': 1,\n",
      "          'case': 1,\n",
      "          'dress': 1,\n",
      "          'automatically': 1,\n",
      "          'isnt': 1,\n",
      "          'joke': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'pure': 1,\n",
      "          'ineptness': 1,\n",
      "          'problems': 1,\n",
      "          'njim': 1,\n",
      "          'caught': 1,\n",
      "          'kinds': 1,\n",
      "          'sticky': 1,\n",
      "          'situations': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'rely': 1,\n",
      "          'luck': 1,\n",
      "          'audience': 1,\n",
      "          'skill': 1,\n",
      "          'nplot': 1,\n",
      "          'elements': 1,\n",
      "          'introduced': 1,\n",
      "          'thrown': 1,\n",
      "          'away': 1,\n",
      "          'quickly': 1,\n",
      "          'main': 1,\n",
      "          'story': 1,\n",
      "          '80': 1,\n",
      "          'foot': 1,\n",
      "          'mechanical': 1,\n",
      "          'steam': 1,\n",
      "          'driven': 1,\n",
      "          'spider': 1,\n",
      "          'devised': 1,\n",
      "          'looks': 1,\n",
      "          'impressive': 1,\n",
      "          'particular': 1,\n",
      "          'reason': 1,\n",
      "          'built': 1,\n",
      "          'nwhy': 1,\n",
      "          'build': 1,\n",
      "          'great': 1,\n",
      "          'big': 1,\n",
      "          'tank': 1,\n",
      "          'instead': 1,\n",
      "          'ungainly': 1,\n",
      "          'fragile': 1,\n",
      "          'machinery': 1,\n",
      "          'thats': 1,\n",
      "          'begging': 1,\n",
      "          'blown': 1,\n",
      "          'ndirector': 1,\n",
      "          'barry': 1,\n",
      "          'sonnenfeld': 1,\n",
      "          'breezy': 1,\n",
      "          'look': 1,\n",
      "          'camera': 1,\n",
      "          'tricks': 1,\n",
      "          'stilted': 1,\n",
      "          'benefited': 1,\n",
      "          'sonnenfelds': 1,\n",
      "          'whacked': 1,\n",
      "          'style': 1,\n",
      "          'directing': 1,\n",
      "          'evident': 1,\n",
      "          'making': 1,\n",
      "          'drag': 1,\n",
      "          'sad': 1,\n",
      "          '_four_': 1,\n",
      "          'credited': 1,\n",
      "          'screenwriters': 1,\n",
      "          'talented': 1,\n",
      "          'director': 1,\n",
      "          'willing': 1,\n",
      "          'star': 1,\n",
      "          'cant': 1,\n",
      "          'work': 1,\n",
      "          'eventually': 1,\n",
      "          'collapses': 1,\n",
      "          'sexist': 1,\n",
      "          'mildly': 1,\n",
      "          'weight': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'get': 3,\n",
      "          'eighties': 2,\n",
      "          'film': 2,\n",
      "          'used': 2,\n",
      "          'weddings': 2,\n",
      "          'know': 2,\n",
      "          'going': 2,\n",
      "          'doesnt': 2,\n",
      "          'face': 2,\n",
      "          'nthe': 2,\n",
      "          'could': 2,\n",
      "          'nostalgia': 2,\n",
      "          'years': 2,\n",
      "          'thinking': 1,\n",
      "          'nnostalgia': 1,\n",
      "          'seventies': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'really': 1,\n",
      "          'need': 1,\n",
      "          'nrobbie': 1,\n",
      "          'hart': 1,\n",
      "          'adam': 1,\n",
      "          'sandler': 1,\n",
      "          'want': 1,\n",
      "          'rock': 1,\n",
      "          'roll': 1,\n",
      "          'star': 1,\n",
      "          '1985': 1,\n",
      "          'hes': 1,\n",
      "          'singing': 1,\n",
      "          'good': 1,\n",
      "          'time': 1,\n",
      "          'na': 1,\n",
      "          'romantic': 1,\n",
      "          'heart': 1,\n",
      "          'loves': 1,\n",
      "          'married': 1,\n",
      "          'highschool': 1,\n",
      "          'sweetie': 1,\n",
      "          'nwhen': 1,\n",
      "          'leaves': 1,\n",
      "          'waiting': 1,\n",
      "          'altar': 1,\n",
      "          'tune': 1,\n",
      "          'changes': 1,\n",
      "          'love': 1,\n",
      "          'stinks': 1,\n",
      "          'nhe': 1,\n",
      "          'meets': 1,\n",
      "          'waitress': 1,\n",
      "          'julia': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'engaged': 1,\n",
      "          'junkbonds': 1,\n",
      "          'salesman': 1,\n",
      "          'together': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'everything': 1,\n",
      "          'happen': 1,\n",
      "          'movie': 1,\n",
      "          'nsandler': 1,\n",
      "          'somewhat': 1,\n",
      "          'adequate': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'role': 1,\n",
      "          'spark': 1,\n",
      "          'nbarrymore': 1,\n",
      "          'seem': 1,\n",
      "          'able': 1,\n",
      "          'convey': 1,\n",
      "          'anything': 1,\n",
      "          'pretty': 1,\n",
      "          'nothing': 1,\n",
      "          'behind': 1,\n",
      "          'beauty': 1,\n",
      "          'attitude': 1,\n",
      "          'nboth': 1,\n",
      "          'characters': 1,\n",
      "          'nbit': 1,\n",
      "          'parts': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'jon': 1,\n",
      "          'lovitz': 1,\n",
      "          'steal': 1,\n",
      "          'show': 1,\n",
      "          'shoved': 1,\n",
      "          'nreferences': 1,\n",
      "          'deloreans': 1,\n",
      "          'madonna': 1,\n",
      "          'dallas': 1,\n",
      "          'ivana': 1,\n",
      "          'donald': 1,\n",
      "          'burt': 1,\n",
      "          'loni': 1,\n",
      "          'miami': 1,\n",
      "          'vice': 1,\n",
      "          'old': 1,\n",
      "          'fast': 1,\n",
      "          'filmmakers': 1,\n",
      "          'must': 1,\n",
      "          'realized': 1,\n",
      "          'wasnt': 1,\n",
      "          'much': 1,\n",
      "          'entertainment': 1,\n",
      "          'story': 1,\n",
      "          'thought': 1,\n",
      "          'dazzle': 1,\n",
      "          'audience': 1,\n",
      "          'humorous': 1,\n",
      "          'period': 1,\n",
      "          'allusions': 1,\n",
      "          'ntheyre': 1,\n",
      "          'funny': 1,\n",
      "          'work': 1,\n",
      "          'nwith': 1,\n",
      "          'change': 1,\n",
      "          'fronts': 1,\n",
      "          'accelerating': 1,\n",
      "          'appears': 1,\n",
      "          'great': 1,\n",
      "          'appeal': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          '14': 1,\n",
      "          'yearn': 1,\n",
      "          'past': 1,\n",
      "          'nmaybe': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'next': 1,\n",
      "          'year': 1,\n",
      "          'waxing': 1,\n",
      "          'nostalgically': 1,\n",
      "          'el': 1,\n",
      "          'nino': 1,\n",
      "          'n': 1,\n",
      "          'michael': 1,\n",
      "          'redman': 1,\n",
      "          'written': 1,\n",
      "          'column': 1,\n",
      "          '23': 1,\n",
      "          'knows': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'anything': 4,\n",
      "          'even': 4,\n",
      "          'time': 4,\n",
      "          'highlander': 4,\n",
      "          'doesnt': 4,\n",
      "          'present': 4,\n",
      "          'film': 4,\n",
      "          'series': 4,\n",
      "          'nthe': 4,\n",
      "          'know': 3,\n",
      "          'one': 3,\n",
      "          'fight': 3,\n",
      "          'little': 2,\n",
      "          'around': 2,\n",
      "          'along': 2,\n",
      "          'comes': 2,\n",
      "          'think': 2,\n",
      "          'seeing': 2,\n",
      "          'original': 2,\n",
      "          'seem': 2,\n",
      "          'noh': 2,\n",
      "          'bad': 2,\n",
      "          'dudes': 2,\n",
      "          'nthis': 2,\n",
      "          'anyone': 2,\n",
      "          'include': 2,\n",
      "          'group': 2,\n",
      "          'moment': 2,\n",
      "          'theyre': 2,\n",
      "          'nwho': 2,\n",
      "          'knows': 2,\n",
      "          'mixed': 2,\n",
      "          'every': 2,\n",
      "          'flashback': 2,\n",
      "          'scene': 2,\n",
      "          'director': 2,\n",
      "          'swordplay': 2,\n",
      "          'put': 2,\n",
      "          'lambert': 2,\n",
      "          'also': 2,\n",
      "          'could': 2,\n",
      "          'scenes': 2,\n",
      "          'nand': 2,\n",
      "          'man': 2,\n",
      "          'piece': 2,\n",
      "          'thought': 1,\n",
      "          'joblo': 1,\n",
      "          'getting': 1,\n",
      "          'soft': 1,\n",
      "          'corners': 1,\n",
      "          'rating': 1,\n",
      "          'lower': 1,\n",
      "          'standard': 1,\n",
      "          'sucks': 1,\n",
      "          'cinematic': 1,\n",
      "          'atrocity': 1,\n",
      "          'hes': 1,\n",
      "          'forced': 1,\n",
      "          'take': 1,\n",
      "          'secret': 1,\n",
      "          'weapon': 1,\n",
      "          'spray': 1,\n",
      "          'stench': 1,\n",
      "          'thick': 1,\n",
      "          'bravest': 1,\n",
      "          'moviegoer': 1,\n",
      "          'would': 1,\n",
      "          'twice': 1,\n",
      "          'waste': 1,\n",
      "          'nyes': 1,\n",
      "          'despite': 1,\n",
      "          'third': 1,\n",
      "          'sequel': 1,\n",
      "          'successful': 1,\n",
      "          'latest': 1,\n",
      "          'going': 1,\n",
      "          'stinky': 1,\n",
      "          'let': 1,\n",
      "          'count': 1,\n",
      "          'thee': 1,\n",
      "          'ways': 1,\n",
      "          'nplot': 1,\n",
      "          'understood': 1,\n",
      "          'really': 1,\n",
      "          'dude': 1,\n",
      "          'looking': 1,\n",
      "          'whack': 1,\n",
      "          'nice': 1,\n",
      "          'order': 1,\n",
      "          'gain': 1,\n",
      "          'power': 1,\n",
      "          'become': 1,\n",
      "          'mightiest': 1,\n",
      "          'immortal': 1,\n",
      "          'nsomething': 1,\n",
      "          'lines': 1,\n",
      "          'ncritique': 1,\n",
      "          'complete': 1,\n",
      "          'utter': 1,\n",
      "          'mess': 1,\n",
      "          'ndisjointed': 1,\n",
      "          'incoherent': 1,\n",
      "          'boring': 1,\n",
      "          'corny': 1,\n",
      "          'filled': 1,\n",
      "          'dialogue': 1,\n",
      "          'nthats': 1,\n",
      "          'first': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'nits': 1,\n",
      "          'confusing': 1,\n",
      "          'apparently': 1,\n",
      "          'idiotic': 1,\n",
      "          'diehard': 1,\n",
      "          'fan': 1,\n",
      "          'arrow': 1,\n",
      "          'explain': 1,\n",
      "          'njust': 1,\n",
      "          'goes': 1,\n",
      "          'inexplicable': 1,\n",
      "          'situation': 1,\n",
      "          'another': 1,\n",
      "          'none': 1,\n",
      "          'next': 1,\n",
      "          'italy': 1,\n",
      "          '1600s': 1,\n",
      "          'nwhy': 1,\n",
      "          'nwhat': 1,\n",
      "          'talking': 1,\n",
      "          'nno': 1,\n",
      "          'idea': 1,\n",
      "          'nflashbacks': 1,\n",
      "          'spontaneously': 1,\n",
      "          'cheesy': 1,\n",
      "          'sequences': 1,\n",
      "          'remember': 1,\n",
      "          'went': 1,\n",
      "          'nhullo': 1,\n",
      "          'nconfused': 1,\n",
      "          'yet': 1,\n",
      "          'ni': 1,\n",
      "          'basically': 1,\n",
      "          'stopped': 1,\n",
      "          'giving': 1,\n",
      "          'crap': 1,\n",
      "          'realized': 1,\n",
      "          'neither': 1,\n",
      "          'writer': 1,\n",
      "          'interested': 1,\n",
      "          'presenting': 1,\n",
      "          'kind': 1,\n",
      "          'semblance': 1,\n",
      "          'story': 1,\n",
      "          'nrandom': 1,\n",
      "          'mad': 1,\n",
      "          'maxlike': 1,\n",
      "          'showing': 1,\n",
      "          'motorcycles': 1,\n",
      "          '1800s': 1,\n",
      "          'honest': 1,\n",
      "          'nseriously': 1,\n",
      "          'cares': 1,\n",
      "          'shot': 1,\n",
      "          'head': 1,\n",
      "          'misery': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'sadly': 1,\n",
      "          'someone': 1,\n",
      "          'studio': 1,\n",
      "          'decided': 1,\n",
      "          'still': 1,\n",
      "          'life': 1,\n",
      "          'left': 1,\n",
      "          'nplease': 1,\n",
      "          'please': 1,\n",
      "          'love': 1,\n",
      "          'god': 1,\n",
      "          'holy': 1,\n",
      "          'world': 1,\n",
      "          'moviemaking': 1,\n",
      "          'mostly': 1,\n",
      "          'respect': 1,\n",
      "          'loved': 1,\n",
      "          'bed': 1,\n",
      "          'end': 1,\n",
      "          'neven': 1,\n",
      "          'christopher': 1,\n",
      "          'knew': 1,\n",
      "          'enough': 1,\n",
      "          'play': 1,\n",
      "          'second': 1,\n",
      "          'fiddle': 1,\n",
      "          'adrian': 1,\n",
      "          'paul': 1,\n",
      "          'tries': 1,\n",
      "          'best': 1,\n",
      "          'muddled': 1,\n",
      "          'material': 1,\n",
      "          'come': 1,\n",
      "          'plenty': 1,\n",
      "          'slomo': 1,\n",
      "          'action': 1,\n",
      "          'fastmotion': 1,\n",
      "          'lots': 1,\n",
      "          'smoke': 1,\n",
      "          'everywhere': 1,\n",
      "          'spectacular': 1,\n",
      "          'nnope': 1,\n",
      "          'done': 1,\n",
      "          'without': 1,\n",
      "          'zooming': 1,\n",
      "          'face': 1,\n",
      "          'closeups': 1,\n",
      "          'yipes': 1,\n",
      "          'aging': 1,\n",
      "          'gracefully': 1,\n",
      "          'boy': 1,\n",
      "          'havent': 1,\n",
      "          'gotten': 1,\n",
      "          'greatest': 1,\n",
      "          'overacting': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'years': 1,\n",
      "          'plays': 1,\n",
      "          'kell': 1,\n",
      "          'bruce': 1,\n",
      "          'payne': 1,\n",
      "          'get': 1,\n",
      "          'ham': 1,\n",
      "          'trophy': 1,\n",
      "          'literally': 1,\n",
      "          'chewing': 1,\n",
      "          'scenery': 1,\n",
      "          'gets': 1,\n",
      "          'near': 1,\n",
      "          'noveracting': 1,\n",
      "          'hobby': 1,\n",
      "          'guy': 1,\n",
      "          'na': 1,\n",
      "          'living': 1,\n",
      "          'nhes': 1,\n",
      "          'funny': 1,\n",
      "          'purposely': 1,\n",
      "          'though': 1,\n",
      "          'nall': 1,\n",
      "          'stinks': 1,\n",
      "          'nnuff': 1,\n",
      "          'said': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bats': 18,\n",
      "          'nthe': 9,\n",
      "          'movie': 7,\n",
      "          'could': 5,\n",
      "          'like': 4,\n",
      "          'film': 4,\n",
      "          'fun': 3,\n",
      "          'big': 3,\n",
      "          'scientist': 3,\n",
      "          'dr': 3,\n",
      "          'horror': 2,\n",
      "          'something': 2,\n",
      "          'style': 2,\n",
      "          'nsomething': 2,\n",
      "          'supporting': 2,\n",
      "          'mainly': 2,\n",
      "          'premise': 2,\n",
      "          'amusing': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'terribly': 2,\n",
      "          'audience': 2,\n",
      "          'ni': 2,\n",
      "          'lot': 2,\n",
      "          'people': 2,\n",
      "          'ugly': 2,\n",
      "          'nthey': 2,\n",
      "          'virus': 2,\n",
      "          'smart': 2,\n",
      "          'bunch': 2,\n",
      "          'texas': 2,\n",
      "          'sheriff': 2,\n",
      "          'make': 2,\n",
      "          'nbut': 2,\n",
      "          'screen': 2,\n",
      "          'poorly': 2,\n",
      "          'cheesy': 2,\n",
      "          'attack': 2,\n",
      "          'every': 2,\n",
      "          'casper': 2,\n",
      "          'flying': 2,\n",
      "          'became': 2,\n",
      "          'constructed': 2,\n",
      "          'nin': 2,\n",
      "          'one': 2,\n",
      "          'comic': 2,\n",
      "          'gunton': 2,\n",
      "          'entire': 2,\n",
      "          'swarm': 2,\n",
      "          'even': 2,\n",
      "          'way': 2,\n",
      "          'insulting': 1,\n",
      "          'slap': 1,\n",
      "          'across': 1,\n",
      "          'face': 1,\n",
      "          'dedicated': 1,\n",
      "          'fan': 1,\n",
      "          'nto': 1,\n",
      "          'pull': 1,\n",
      "          'need': 1,\n",
      "          'sense': 1,\n",
      "          'wit': 1,\n",
      "          'heavy': 1,\n",
      "          'dosage': 1,\n",
      "          'humor': 1,\n",
      "          'back': 1,\n",
      "          'process': 1,\n",
      "          'fright': 1,\n",
      "          'factor': 1,\n",
      "          'ever': 1,\n",
      "          'declines': 1,\n",
      "          'underground': 1,\n",
      "          'worm': 1,\n",
      "          'thriller': 1,\n",
      "          'tremors': 1,\n",
      "          'perfect': 1,\n",
      "          'mixture': 1,\n",
      "          'elements': 1,\n",
      "          'return': 1,\n",
      "          'tremendous': 1,\n",
      "          'nwith': 1,\n",
      "          'notable': 1,\n",
      "          'exception': 1,\n",
      "          'wisecracking': 1,\n",
      "          'player': 1,\n",
      "          'plays': 1,\n",
      "          'straightarrow': 1,\n",
      "          'njudging': 1,\n",
      "          'ridiculous': 1,\n",
      "          'exactly': 1,\n",
      "          'wise': 1,\n",
      "          'move': 1,\n",
      "          'attempts': 1,\n",
      "          'capture': 1,\n",
      "          'essence': 1,\n",
      "          'alfred': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'birds': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'ndone': 1,\n",
      "          'right': 1,\n",
      "          'adequately': 1,\n",
      "          'halloween': 1,\n",
      "          'cinema': 1,\n",
      "          'prime': 1,\n",
      "          'example': 1,\n",
      "          'formula': 1,\n",
      "          'done': 1,\n",
      "          'wrong': 1,\n",
      "          'thing': 1,\n",
      "          'festering': 1,\n",
      "          'pile': 1,\n",
      "          'guano': 1,\n",
      "          'intelligible': 1,\n",
      "          'filmmakers': 1,\n",
      "          'anticipate': 1,\n",
      "          'core': 1,\n",
      "          'recite': 1,\n",
      "          'following': 1,\n",
      "          'paragraph': 1,\n",
      "          'manner': 1,\n",
      "          'reach': 1,\n",
      "          'individuals': 1,\n",
      "          'aimed': 1,\n",
      "          'toward': 1,\n",
      "          'nthose': 1,\n",
      "          'guys': 1,\n",
      "          'hollywood': 1,\n",
      "          'made': 1,\n",
      "          'nthese': 1,\n",
      "          'nice': 1,\n",
      "          'eat': 1,\n",
      "          'nboy': 1,\n",
      "          'infected': 1,\n",
      "          'bogus': 1,\n",
      "          'makes': 1,\n",
      "          'superduper': 1,\n",
      "          'ntheyve': 1,\n",
      "          'got': 1,\n",
      "          'claws': 1,\n",
      "          'red': 1,\n",
      "          'eyes': 1,\n",
      "          'friendly': 1,\n",
      "          'na': 1,\n",
      "          'whole': 1,\n",
      "          'get': 1,\n",
      "          'killed': 1,\n",
      "          'guy': 1,\n",
      "          'lady': 1,\n",
      "          'brought': 1,\n",
      "          'kill': 1,\n",
      "          'guns': 1,\n",
      "          'cool': 1,\n",
      "          'things': 1,\n",
      "          'fight': 1,\n",
      "          'pretty': 1,\n",
      "          'sorta': 1,\n",
      "          'hard': 1,\n",
      "          'swoop': 1,\n",
      "          'shoot': 1,\n",
      "          'go': 1,\n",
      "          'away': 1,\n",
      "          'good': 1,\n",
      "          'probably': 1,\n",
      "          'violent': 1,\n",
      "          'preschoolers': 1,\n",
      "          'directed': 1,\n",
      "          'louis': 1,\n",
      "          'morneau': 1,\n",
      "          'ventured': 1,\n",
      "          'straight': 1,\n",
      "          'video': 1,\n",
      "          'stores': 1,\n",
      "          'non': 1,\n",
      "          'small': 1,\n",
      "          'perhaps': 1,\n",
      "          'derived': 1,\n",
      "          'lower': 1,\n",
      "          'expectations': 1,\n",
      "          'sitting': 1,\n",
      "          'crapper': 1,\n",
      "          'almost': 1,\n",
      "          'awkward': 1,\n",
      "          'although': 1,\n",
      "          'moments': 1,\n",
      "          'becomes': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'written': 1,\n",
      "          'acted': 1,\n",
      "          'executed': 1,\n",
      "          'glaring': 1,\n",
      "          'ineptitude': 1,\n",
      "          'neven': 1,\n",
      "          'sequences': 1,\n",
      "          'rushed': 1,\n",
      "          'jittery': 1,\n",
      "          'properly': 1,\n",
      "          'enjoyed': 1,\n",
      "          'story': 1,\n",
      "          'emmett': 1,\n",
      "          'kimsey': 1,\n",
      "          'lou': 1,\n",
      "          'diamond': 1,\n",
      "          'phillips': 1,\n",
      "          'embodies': 1,\n",
      "          'pathetic': 1,\n",
      "          'stereotype': 1,\n",
      "          'smalltown': 1,\n",
      "          'authority': 1,\n",
      "          'figure': 1,\n",
      "          'usually': 1,\n",
      "          'portrays': 1,\n",
      "          'chomps': 1,\n",
      "          'cigar': 1,\n",
      "          'struts': 1,\n",
      "          'contentedly': 1,\n",
      "          'boots': 1,\n",
      "          'etc': 1,\n",
      "          'sheila': 1,\n",
      "          'dina': 1,\n",
      "          'meyer': 1,\n",
      "          'specializes': 1,\n",
      "          'mammals': 1,\n",
      "          'classified': 1,\n",
      "          'best': 1,\n",
      "          'field': 1,\n",
      "          'nmeyer': 1,\n",
      "          'uses': 1,\n",
      "          'technical': 1,\n",
      "          'terms': 1,\n",
      "          'designed': 1,\n",
      "          'seem': 1,\n",
      "          'intellectually': 1,\n",
      "          'capable': 1,\n",
      "          'everything': 1,\n",
      "          'recycled': 1,\n",
      "          'beyond': 1,\n",
      "          'recognition': 1,\n",
      "          'nher': 1,\n",
      "          'memories': 1,\n",
      "          'hooked': 1,\n",
      "          'topic': 1,\n",
      "          'sounds': 1,\n",
      "          'suspiciously': 1,\n",
      "          'oceanographic': 1,\n",
      "          'student': 1,\n",
      "          'matt': 1,\n",
      "          'hoopers': 1,\n",
      "          'tale': 1,\n",
      "          'infatuated': 1,\n",
      "          'sharks': 1,\n",
      "          'jaws': 1,\n",
      "          'neverything': 1,\n",
      "          'revolving': 1,\n",
      "          'around': 1,\n",
      "          'tired': 1,\n",
      "          'drivel': 1,\n",
      "          'desperately': 1,\n",
      "          'requires': 1,\n",
      "          'directorial': 1,\n",
      "          'acting': 1,\n",
      "          'capabilities': 1,\n",
      "          'spruce': 1,\n",
      "          'cast': 1,\n",
      "          'straw': 1,\n",
      "          'voices': 1,\n",
      "          'dubbed': 1,\n",
      "          'later': 1,\n",
      "          'fact': 1,\n",
      "          'may': 1,\n",
      "          'worked': 1,\n",
      "          'better': 1,\n",
      "          'end': 1,\n",
      "          'ntake': 1,\n",
      "          'glance': 1,\n",
      "          'caspers': 1,\n",
      "          'batloathing': 1,\n",
      "          'sidekick': 1,\n",
      "          'jimmy': 1,\n",
      "          'leon': 1,\n",
      "          'youll': 1,\n",
      "          'immediate': 1,\n",
      "          'deja': 1,\n",
      "          'vu': 1,\n",
      "          'hes': 1,\n",
      "          'exact': 1,\n",
      "          'humorous': 1,\n",
      "          'buddy': 1,\n",
      "          'caricature': 1,\n",
      "          'specifically': 1,\n",
      "          'timed': 1,\n",
      "          'relief': 1,\n",
      "          'none': 1,\n",
      "          'interludes': 1,\n",
      "          'funny': 1,\n",
      "          'role': 1,\n",
      "          'deranged': 1,\n",
      "          'mad': 1,\n",
      "          'mccabe': 1,\n",
      "          'reliable': 1,\n",
      "          'bob': 1,\n",
      "          'gets': 1,\n",
      "          'cornered': 1,\n",
      "          'hideously': 1,\n",
      "          'idiotic': 1,\n",
      "          'character': 1,\n",
      "          'nmccabe': 1,\n",
      "          'accidentally': 1,\n",
      "          'released': 1,\n",
      "          'two': 1,\n",
      "          'experimental': 1,\n",
      "          'test': 1,\n",
      "          'subjects': 1,\n",
      "          'spread': 1,\n",
      "          'town': 1,\n",
      "          'gallup': 1,\n",
      "          'enormous': 1,\n",
      "          'creatures': 1,\n",
      "          'appears': 1,\n",
      "          'inconspicuously': 1,\n",
      "          'contemplating': 1,\n",
      "          'else': 1,\n",
      "          'damn': 1,\n",
      "          'going': 1,\n",
      "          'want': 1,\n",
      "          'money': 1,\n",
      "          'must': 1,\n",
      "          'say': 1,\n",
      "          'ntheres': 1,\n",
      "          'occasional': 1,\n",
      "          'moment': 1,\n",
      "          'look': 1,\n",
      "          'moderately': 1,\n",
      "          'convincing': 1,\n",
      "          'represented': 1,\n",
      "          'digital': 1,\n",
      "          'imagery': 1,\n",
      "          'nonly': 1,\n",
      "          'bits': 1,\n",
      "          'bloody': 1,\n",
      "          'action': 1,\n",
      "          'hint': 1,\n",
      "          'campy': 1,\n",
      "          'absurdly': 1,\n",
      "          'stupid': 1,\n",
      "          'climax': 1,\n",
      "          'late': 1,\n",
      "          'game': 1,\n",
      "          'decent': 1,\n",
      "          'recovery': 1,\n",
      "          'ncharacters': 1,\n",
      "          'experiment': 1,\n",
      "          'slaughtering': 1,\n",
      "          'gunfire': 1,\n",
      "          'nlets': 1,\n",
      "          'explore': 1,\n",
      "          'logic': 1,\n",
      "          'really': 1,\n",
      "          'efficient': 1,\n",
      "          'decrease': 1,\n",
      "          'bat': 1,\n",
      "          'population': 1,\n",
      "          'nyou': 1,\n",
      "          'empty': 1,\n",
      "          'clip': 1,\n",
      "          'winged': 1,\n",
      "          'serpents': 1,\n",
      "          'wound': 1,\n",
      "          '18': 1,\n",
      "          '000': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'behavior': 1,\n",
      "          'represents': 1,\n",
      "          'regular': 1,\n",
      "          'level': 1,\n",
      "          'intelligence': 1,\n",
      "          'behind': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 24,\n",
      "          'characters': 10,\n",
      "          'character': 9,\n",
      "          'even': 9,\n",
      "          'nthe': 7,\n",
      "          'party': 7,\n",
      "          'high': 6,\n",
      "          'school': 6,\n",
      "          'denise': 5,\n",
      "          'everything': 5,\n",
      "          'nwe': 5,\n",
      "          'actually': 5,\n",
      "          'bunch': 5,\n",
      "          'stereotypes': 5,\n",
      "          'follow': 5,\n",
      "          'though': 5,\n",
      "          'many': 4,\n",
      "          'us': 4,\n",
      "          'one': 4,\n",
      "          'main': 4,\n",
      "          'bit': 4,\n",
      "          'dont': 4,\n",
      "          'thing': 4,\n",
      "          'really': 4,\n",
      "          'like': 4,\n",
      "          'work': 4,\n",
      "          'cant': 3,\n",
      "          'films': 3,\n",
      "          'point': 3,\n",
      "          'totally': 3,\n",
      "          'almost': 3,\n",
      "          'going': 3,\n",
      "          'wigger': 3,\n",
      "          'etc': 3,\n",
      "          'take': 3,\n",
      "          'let': 3,\n",
      "          'big': 3,\n",
      "          'shes': 3,\n",
      "          'give': 3,\n",
      "          'two': 3,\n",
      "          'things': 3,\n",
      "          'feel': 3,\n",
      "          'least': 3,\n",
      "          'try': 3,\n",
      "          'interesting': 2,\n",
      "          'part': 2,\n",
      "          'hardly': 2,\n",
      "          'wait': 2,\n",
      "          'easily': 2,\n",
      "          'lauren': 2,\n",
      "          'ambrose': 2,\n",
      "          'goes': 2,\n",
      "          'moment': 2,\n",
      "          'nicely': 2,\n",
      "          'basically': 2,\n",
      "          'sit': 2,\n",
      "          'go': 2,\n",
      "          'first': 2,\n",
      "          'ni': 2,\n",
      "          'would': 2,\n",
      "          'much': 2,\n",
      "          'queen': 2,\n",
      "          'nerd': 2,\n",
      "          'dominions': 2,\n",
      "          'alienated': 2,\n",
      "          'writer': 2,\n",
      "          'superficial': 2,\n",
      "          'lame': 2,\n",
      "          'likable': 2,\n",
      "          'several': 2,\n",
      "          'admirable': 2,\n",
      "          'nhowever': 2,\n",
      "          'perhaps': 2,\n",
      "          'tell': 2,\n",
      "          'nand': 2,\n",
      "          'american': 2,\n",
      "          'grafitti': 2,\n",
      "          'dazed': 2,\n",
      "          'confused': 2,\n",
      "          'little': 2,\n",
      "          'keg': 2,\n",
      "          'aimless': 2,\n",
      "          'driving': 2,\n",
      "          'around': 2,\n",
      "          'preston': 2,\n",
      "          'whos': 2,\n",
      "          'amanda': 2,\n",
      "          'love': 2,\n",
      "          'entirety': 2,\n",
      "          'mike': 2,\n",
      "          'note': 2,\n",
      "          'hes': 2,\n",
      "          'vonnegut': 2,\n",
      "          'okay': 2,\n",
      "          'plot': 2,\n",
      "          'finally': 2,\n",
      "          'gets': 2,\n",
      "          'kenny': 2,\n",
      "          'seth': 2,\n",
      "          'green': 2,\n",
      "          'get': 2,\n",
      "          'ultimately': 2,\n",
      "          'entertaining': 2,\n",
      "          'satirize': 2,\n",
      "          'couple': 2,\n",
      "          'capture': 2,\n",
      "          'time': 2,\n",
      "          'doesnt': 2,\n",
      "          'nshes': 2,\n",
      "          'realized': 2,\n",
      "          'well': 2,\n",
      "          'movies': 2,\n",
      "          'happens': 1,\n",
      "          'human': 1,\n",
      "          'relate': 1,\n",
      "          'nthat': 1,\n",
      "          'sole': 1,\n",
      "          'sarcastic': 1,\n",
      "          'member': 1,\n",
      "          'mocks': 1,\n",
      "          'sits': 1,\n",
      "          'couch': 1,\n",
      "          'looks': 1,\n",
      "          'bored': 1,\n",
      "          'wisely': 1,\n",
      "          'holds': 1,\n",
      "          'showing': 1,\n",
      "          'alienation': 1,\n",
      "          'midst': 1,\n",
      "          'large': 1,\n",
      "          'ntoo': 1,\n",
      "          'nfor': 1,\n",
      "          'members': 1,\n",
      "          'audience': 1,\n",
      "          'read': 1,\n",
      "          'mirror': 1,\n",
      "          'whats': 1,\n",
      "          'watching': 1,\n",
      "          'wondering': 1,\n",
      "          'weve': 1,\n",
      "          'bothered': 1,\n",
      "          'see': 1,\n",
      "          'long': 1,\n",
      "          'probably': 1,\n",
      "          'never': 1,\n",
      "          'felt': 1,\n",
      "          'desire': 1,\n",
      "          'place': 1,\n",
      "          'highly': 1,\n",
      "          'recommend': 1,\n",
      "          'satirized': 1,\n",
      "          'nafter': 1,\n",
      "          'filled': 1,\n",
      "          'pathetic': 1,\n",
      "          'went': 1,\n",
      "          'neveryones': 1,\n",
      "          'jock': 1,\n",
      "          'homecoming': 1,\n",
      "          'trekkies': 1,\n",
      "          'xphiles': 1,\n",
      "          'wannabe': 1,\n",
      "          'spirit': 1,\n",
      "          'girl': 1,\n",
      "          'pothead': 1,\n",
      "          'weirdly': 1,\n",
      "          'enough': 1,\n",
      "          'shows': 1,\n",
      "          'losers': 1,\n",
      "          'nexcept': 1,\n",
      "          'rolls': 1,\n",
      "          'eyes': 1,\n",
      "          'becomes': 1,\n",
      "          'speaks': 1,\n",
      "          'yearbook': 1,\n",
      "          'entry': 1,\n",
      "          'something': 1,\n",
      "          'done': 1,\n",
      "          'quotes': 1,\n",
      "          'oscar': 1,\n",
      "          'wilde': 1,\n",
      "          'definite': 1,\n",
      "          'pointers': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'writers': 1,\n",
      "          'directors': 1,\n",
      "          'major': 1,\n",
      "          'misteps': 1,\n",
      "          'way': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'making': 1,\n",
      "          'said': 1,\n",
      "          'portrays': 1,\n",
      "          'ignorant': 1,\n",
      "          'instead': 1,\n",
      "          'sticking': 1,\n",
      "          'lie': 1,\n",
      "          'make': 1,\n",
      "          'heroes': 1,\n",
      "          'moronic': 1,\n",
      "          'shread': 1,\n",
      "          'humanity': 1,\n",
      "          'realism': 1,\n",
      "          'tries': 1,\n",
      "          'boring': 1,\n",
      "          'overly': 1,\n",
      "          'melodramatic': 1,\n",
      "          'tales': 1,\n",
      "          'cared': 1,\n",
      "          'andor': 1,\n",
      "          'identified': 1,\n",
      "          'certainly': 1,\n",
      "          'want': 1,\n",
      "          'revisit': 1,\n",
      "          'state': 1,\n",
      "          'nheres': 1,\n",
      "          'quick': 1,\n",
      "          'lowdown': 1,\n",
      "          'graduation': 1,\n",
      "          'seniors': 1,\n",
      "          'last': 1,\n",
      "          'night': 1,\n",
      "          'otherwise': 1,\n",
      "          'known': 1,\n",
      "          'lesser': 1,\n",
      "          'extent': 1,\n",
      "          'cliche': 1,\n",
      "          'formal': 1,\n",
      "          'followed': 1,\n",
      "          'drove': 1,\n",
      "          'aimlessly': 1,\n",
      "          'latter': 1,\n",
      "          'featured': 1,\n",
      "          'outdoor': 1,\n",
      "          'n': 1,\n",
      "          'opts': 1,\n",
      "          'indoor': 1,\n",
      "          'albeit': 1,\n",
      "          'imwhiningbecauseicantgetagirliwant': 1,\n",
      "          'brand': 1,\n",
      "          'people': 1,\n",
      "          'mostly': 1,\n",
      "          'trail': 1,\n",
      "          'ethan': 1,\n",
      "          'embry': 1,\n",
      "          'pining': 1,\n",
      "          'homcoming': 1,\n",
      "          'overrated': 1,\n",
      "          'jennifer': 1,\n",
      "          'hewitt': 1,\n",
      "          'thinks': 1,\n",
      "          'shared': 1,\n",
      "          'freshman': 1,\n",
      "          'year': 1,\n",
      "          'freaking': 1,\n",
      "          'pop': 1,\n",
      "          'tart': 1,\n",
      "          'nnow': 1,\n",
      "          'broken': 1,\n",
      "          'football': 1,\n",
      "          'player': 1,\n",
      "          'boyfriend': 1,\n",
      "          'peter': 1,\n",
      "          'facinelli': 1,\n",
      "          'decides': 1,\n",
      "          'written': 1,\n",
      "          'declaring': 1,\n",
      "          'hopes': 1,\n",
      "          'hell': 1,\n",
      "          'build': 1,\n",
      "          'guts': 1,\n",
      "          'nthough': 1,\n",
      "          'leaving': 1,\n",
      "          'multiweek': 1,\n",
      "          'intensive': 1,\n",
      "          'writing': 1,\n",
      "          'program': 1,\n",
      "          'hosted': 1,\n",
      "          'none': 1,\n",
      "          'kurt': 1,\n",
      "          'ingenius': 1,\n",
      "          'icky': 1,\n",
      "          'noxema': 1,\n",
      "          'spokesperson': 1,\n",
      "          'nsince': 1,\n",
      "          'incredibly': 1,\n",
      "          'track': 1,\n",
      "          'record': 1,\n",
      "          'wouldnt': 1,\n",
      "          'able': 1,\n",
      "          'carry': 1,\n",
      "          'commercial': 1,\n",
      "          'alone': 1,\n",
      "          'feature': 1,\n",
      "          'william': 1,\n",
      "          'charlie': 1,\n",
      "          'korsmo': 1,\n",
      "          'surfacing': 1,\n",
      "          'dick': 1,\n",
      "          'tracy': 1,\n",
      "          'come': 1,\n",
      "          'ridiculous': 1,\n",
      "          'plan': 1,\n",
      "          'publically': 1,\n",
      "          'sabotage': 1,\n",
      "          'humiliated': 1,\n",
      "          'years': 1,\n",
      "          'caught': 1,\n",
      "          'drinking': 1,\n",
      "          'decided': 1,\n",
      "          'laid': 1,\n",
      "          'uh': 1,\n",
      "          'huh': 1,\n",
      "          'exceptional': 1,\n",
      "          'unfortunately': 1,\n",
      "          'stuck': 1,\n",
      "          'bathroom': 1,\n",
      "          'ask': 1,\n",
      "          'allowed': 1,\n",
      "          'laws': 1,\n",
      "          'cliches': 1,\n",
      "          'b': 1,\n",
      "          'nary': 1,\n",
      "          'characterization': 1,\n",
      "          'involved': 1,\n",
      "          'awhile': 1,\n",
      "          'nugh': 1,\n",
      "          'comparison': 1,\n",
      "          'getting': 1,\n",
      "          'another': 1,\n",
      "          'embraced': 1,\n",
      "          'made': 1,\n",
      "          'humans': 1,\n",
      "          'schoolers': 1,\n",
      "          'mention': 1,\n",
      "          'extremely': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          '80s': 1,\n",
      "          'notably': 1,\n",
      "          'sixteen': 1,\n",
      "          'candles': 1,\n",
      "          'difference': 1,\n",
      "          'managed': 1,\n",
      "          'embrace': 1,\n",
      "          'equally': 1,\n",
      "          'fashion': 1,\n",
      "          'nthis': 1,\n",
      "          'forgets': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'uninteresting': 1,\n",
      "          'nthen': 1,\n",
      "          'says': 1,\n",
      "          'seriously': 1,\n",
      "          'fun': 1,\n",
      "          'good': 1,\n",
      "          'nbut': 1,\n",
      "          'liked': 1,\n",
      "          'direction': 1,\n",
      "          'except': 1,\n",
      "          'toooverthetop': 1,\n",
      "          'features': 1,\n",
      "          'waytooglossy': 1,\n",
      "          'jump': 1,\n",
      "          'cuts': 1,\n",
      "          'oxymoron': 1,\n",
      "          'obscurities': 1,\n",
      "          'ngenerally': 1,\n",
      "          'elfont': 1,\n",
      "          'kaplan': 1,\n",
      "          'graceful': 1,\n",
      "          'camera': 1,\n",
      "          'movement': 1,\n",
      "          'manage': 1,\n",
      "          'altmanesque': 1,\n",
      "          'hokey': 1,\n",
      "          'decade': 1,\n",
      "          'played': 1,\n",
      "          'young': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'radio': 1,\n",
      "          'days': 1,\n",
      "          'desintegration': 1,\n",
      "          'believable': 1,\n",
      "          'course': 1,\n",
      "          'wonderful': 1,\n",
      "          'could': 1,\n",
      "          'used': 1,\n",
      "          'changed': 1,\n",
      "          'thought': 1,\n",
      "          'far': 1,\n",
      "          'witty': 1,\n",
      "          'half': 1,\n",
      "          'belong': 1,\n",
      "          'whenever': 1,\n",
      "          'appears': 1,\n",
      "          'automatically': 1,\n",
      "          'gives': 1,\n",
      "          'delightfully': 1,\n",
      "          'satirical': 1,\n",
      "          'tone': 1,\n",
      "          'cynic': 1,\n",
      "          'intellectual': 1,\n",
      "          'provides': 1,\n",
      "          'entertainment': 1,\n",
      "          'damages': 1,\n",
      "          'already': 1,\n",
      "          'damaged': 1,\n",
      "          'nshe': 1,\n",
      "          'may': 1,\n",
      "          'ruin': 1,\n",
      "          'screen': 1,\n",
      "          'think': 1,\n",
      "          'entertained': 1,\n",
      "          'na': 1,\n",
      "          'mikes': 1,\n",
      "          'suffers': 1,\n",
      "          'epiphany': 1,\n",
      "          'throughout': 1,\n",
      "          'end': 1,\n",
      "          'acts': 1,\n",
      "          'forgotten': 1,\n",
      "          'sacrificial': 1,\n",
      "          'lamb': 1,\n",
      "          'general': 1,\n",
      "          'bitchy': 1,\n",
      "          'inability': 1,\n",
      "          'shack': 1,\n",
      "          'break': 1,\n",
      "          'jenna': 1,\n",
      "          'eflmans': 1,\n",
      "          'uncredited': 1,\n",
      "          'cameo': 1,\n",
      "          'angel': 1,\n",
      "          'didnt': 1,\n",
      "          'nice': 1,\n",
      "          'nbasically': 1,\n",
      "          'worst': 1,\n",
      "          'real': 1,\n",
      "          'reason': 1,\n",
      "          'im': 1,\n",
      "          'giving': 1,\n",
      "          'low': 1,\n",
      "          'rating': 1,\n",
      "          'refuses': 1,\n",
      "          'fully': 1,\n",
      "          'insists': 1,\n",
      "          'complete': 1,\n",
      "          'inane': 1,\n",
      "          'unlike': 1,\n",
      "          'anything': 1,\n",
      "          'wed': 1,\n",
      "          'arent': 1,\n",
      "          'motions': 1,\n",
      "          'worn': 1,\n",
      "          'subplots': 1,\n",
      "          'acid': 1,\n",
      "          'test': 1,\n",
      "          'portraying': 1,\n",
      "          'answer': 1,\n",
      "          'nnice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'rising': 7,\n",
      "          'simon': 7,\n",
      "          'mercury': 6,\n",
      "          'nthe': 6,\n",
      "          'man': 5,\n",
      "          'like': 5,\n",
      "          'may': 4,\n",
      "          'government': 4,\n",
      "          'autistic': 4,\n",
      "          'even': 4,\n",
      "          'action': 4,\n",
      "          'good': 4,\n",
      "          'willis': 4,\n",
      "          'miko': 3,\n",
      "          'hughes': 3,\n",
      "          'hard': 3,\n",
      "          'elements': 3,\n",
      "          'agent': 3,\n",
      "          'bruce': 3,\n",
      "          'art': 3,\n",
      "          'evil': 3,\n",
      "          'hit': 3,\n",
      "          'looks': 3,\n",
      "          'exfootball': 3,\n",
      "          'player': 3,\n",
      "          'one': 3,\n",
      "          'film': 2,\n",
      "          'called': 2,\n",
      "          'doesnt': 2,\n",
      "          'routine': 2,\n",
      "          'thriller': 2,\n",
      "          'buddy': 2,\n",
      "          'story': 2,\n",
      "          'make': 2,\n",
      "          'young': 2,\n",
      "          'performance': 2,\n",
      "          'particular': 2,\n",
      "          'plot': 2,\n",
      "          'see': 2,\n",
      "          'nmercury': 2,\n",
      "          'thrillers': 2,\n",
      "          'exceptionally': 2,\n",
      "          'movie': 2,\n",
      "          'possible': 2,\n",
      "          'hero': 2,\n",
      "          'well': 2,\n",
      "          'outing': 2,\n",
      "          'tension': 2,\n",
      "          'tough': 2,\n",
      "          'fbi': 2,\n",
      "          'heart': 2,\n",
      "          'gold': 2,\n",
      "          'time': 2,\n",
      "          'parents': 2,\n",
      "          'everyone': 2,\n",
      "          'best': 2,\n",
      "          'course': 2,\n",
      "          'baldwin': 2,\n",
      "          'nfor': 2,\n",
      "          'real': 2,\n",
      "          'isnt': 2,\n",
      "          'star': 2,\n",
      "          'title': 1,\n",
      "          'describe': 1,\n",
      "          'trajectory': 1,\n",
      "          'taken': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'combines': 1,\n",
      "          'coverups': 1,\n",
      "          'cloying': 1,\n",
      "          'poorlymotivated': 1,\n",
      "          'hook': 1,\n",
      "          'supposed': 1,\n",
      "          'unique': 1,\n",
      "          'protagonist': 1,\n",
      "          'nhowever': 1,\n",
      "          'aside': 1,\n",
      "          'giving': 1,\n",
      "          'actor': 1,\n",
      "          'chance': 1,\n",
      "          'win': 1,\n",
      "          'raves': 1,\n",
      "          'aspect': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'nothing': 1,\n",
      "          'convenient': 1,\n",
      "          'device': 1,\n",
      "          'nthose': 1,\n",
      "          'expecting': 1,\n",
      "          'semithorough': 1,\n",
      "          'exploration': 1,\n",
      "          'condition': 1,\n",
      "          'disappointed': 1,\n",
      "          'treats': 1,\n",
      "          'autism': 1,\n",
      "          'degree': 1,\n",
      "          'efficiency': 1,\n",
      "          'many': 1,\n",
      "          'accord': 1,\n",
      "          'alcoholism': 1,\n",
      "          'script': 1,\n",
      "          'tiresome': 1,\n",
      "          'toswallow': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'whether': 1,\n",
      "          'problem': 1,\n",
      "          'original': 1,\n",
      "          'book': 1,\n",
      "          'simple': 1,\n",
      "          'screenplay': 1,\n",
      "          'adaptation': 1,\n",
      "          'easily': 1,\n",
      "          'exceeds': 1,\n",
      "          'intangible': 1,\n",
      "          'threshold': 1,\n",
      "          'beyond': 1,\n",
      "          'suspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'longer': 1,\n",
      "          'nonce': 1,\n",
      "          'certain': 1,\n",
      "          'standby': 1,\n",
      "          'highlevel': 1,\n",
      "          'conspiracy': 1,\n",
      "          'maverick': 1,\n",
      "          'law': 1,\n",
      "          'enforcement': 1,\n",
      "          'recycled': 1,\n",
      "          'effect': 1,\n",
      "          'nwhile': 1,\n",
      "          'play': 1,\n",
      "          'anyone': 1,\n",
      "          'hollywood': 1,\n",
      "          'leaves': 1,\n",
      "          'marooned': 1,\n",
      "          'situations': 1,\n",
      "          'characterized': 1,\n",
      "          'little': 1,\n",
      "          'much': 1,\n",
      "          'nonsense': 1,\n",
      "          'begins': 1,\n",
      "          'formulaic': 1,\n",
      "          'sequence': 1,\n",
      "          'jeffries': 1,\n",
      "          'confronted': 1,\n",
      "          'failure': 1,\n",
      "          'nunable': 1,\n",
      "          'resolve': 1,\n",
      "          'hostage': 1,\n",
      "          'crisis': 1,\n",
      "          'forced': 1,\n",
      "          'observe': 1,\n",
      "          'two': 1,\n",
      "          'teenagers': 1,\n",
      "          'shot': 1,\n",
      "          'death': 1,\n",
      "          'event': 1,\n",
      "          'weighs': 1,\n",
      "          'heavily': 1,\n",
      "          'conscience': 1,\n",
      "          'heavyhandedly': 1,\n",
      "          'establishes': 1,\n",
      "          'motivation': 1,\n",
      "          'protecting': 1,\n",
      "          '9year': 1,\n",
      "          'old': 1,\n",
      "          'lynch': 1,\n",
      "          'discovers': 1,\n",
      "          'child': 1,\n",
      "          'hiding': 1,\n",
      "          'closet': 1,\n",
      "          'gunned': 1,\n",
      "          'nsoon': 1,\n",
      "          'run': 1,\n",
      "          'seemingly': 1,\n",
      "          'fleeing': 1,\n",
      "          'lives': 1,\n",
      "          'bonding': 1,\n",
      "          'always': 1,\n",
      "          'step': 1,\n",
      "          'behind': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'helped': 1,\n",
      "          'friend': 1,\n",
      "          'defies': 1,\n",
      "          'orders': 1,\n",
      "          'help': 1,\n",
      "          'chi': 1,\n",
      "          'mcbride': 1,\n",
      "          'supporting': 1,\n",
      "          'female': 1,\n",
      "          'become': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'nwhy': 1,\n",
      "          'danger': 1,\n",
      "          'turned': 1,\n",
      "          'swiss': 1,\n",
      "          'cheese': 1,\n",
      "          'napparently': 1,\n",
      "          'spent': 1,\n",
      "          'millions': 1,\n",
      "          'dollars': 1,\n",
      "          'developing': 1,\n",
      "          'ultrasecret': 1,\n",
      "          'code': 1,\n",
      "          'nto': 1,\n",
      "          'sure': 1,\n",
      "          'cant': 1,\n",
      "          'cracked': 1,\n",
      "          'intuitive': 1,\n",
      "          'thing': 1,\n",
      "          'place': 1,\n",
      "          'sample': 1,\n",
      "          'nerds': 1,\n",
      "          'puzzle': 1,\n",
      "          'magazine': 1,\n",
      "          'nof': 1,\n",
      "          'solve': 1,\n",
      "          'except': 1,\n",
      "          'nwhen': 1,\n",
      "          'calls': 1,\n",
      "          'phone': 1,\n",
      "          'number': 1,\n",
      "          'listed': 1,\n",
      "          'solution': 1,\n",
      "          'gets': 1,\n",
      "          'nsa': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'coldhearted': 1,\n",
      "          'sneering': 1,\n",
      "          'alec': 1,\n",
      "          'decides': 1,\n",
      "          'eliminated': 1,\n",
      "          'country': 1,\n",
      "          'nbut': 1,\n",
      "          'hasnt': 1,\n",
      "          'counted': 1,\n",
      "          'though': 1,\n",
      "          'audience': 1,\n",
      "          'nits': 1,\n",
      "          'get': 1,\n",
      "          'worked': 1,\n",
      "          'anything': 1,\n",
      "          'quite': 1,\n",
      "          'things': 1,\n",
      "          'rather': 1,\n",
      "          'poorly': 1,\n",
      "          'desperate': 1,\n",
      "          'find': 1,\n",
      "          'manages': 1,\n",
      "          'manufacture': 1,\n",
      "          'timetotime': 1,\n",
      "          'exciting': 1,\n",
      "          'scenes': 1,\n",
      "          'crouched': 1,\n",
      "          'avoiding': 1,\n",
      "          'passing': 1,\n",
      "          'trains': 1,\n",
      "          'arent': 1,\n",
      "          'pulsepounding': 1,\n",
      "          'climactic': 1,\n",
      "          'struggle': 1,\n",
      "          'hohum': 1,\n",
      "          'affair': 1,\n",
      "          'leads': 1,\n",
      "          'finale': 1,\n",
      "          'painful': 1,\n",
      "          'obviousness': 1,\n",
      "          'noverall': 1,\n",
      "          'director': 1,\n",
      "          'harold': 1,\n",
      "          'becker': 1,\n",
      "          'constantly': 1,\n",
      "          'struggling': 1,\n",
      "          'failing': 1,\n",
      "          'generate': 1,\n",
      "          'moment': 1,\n",
      "          'derivative': 1,\n",
      "          'obligatory': 1,\n",
      "          'nbruce': 1,\n",
      "          'seems': 1,\n",
      "          'fading': 1,\n",
      "          'nthis': 1,\n",
      "          'fourth': 1,\n",
      "          'straight': 1,\n",
      "          'lackluster': 1,\n",
      "          'following': 1,\n",
      "          'last': 1,\n",
      "          'standing': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'jackal': 1,\n",
      "          'nwillis': 1,\n",
      "          'terrible': 1,\n",
      "          'kind': 1,\n",
      "          'role': 1,\n",
      "          'sleepwalk': 1,\n",
      "          'often': 1,\n",
      "          'nalec': 1,\n",
      "          'combining': 1,\n",
      "          'characters': 1,\n",
      "          'glengarry': 1,\n",
      "          'glenn': 1,\n",
      "          'ross': 1,\n",
      "          'malice': 1,\n",
      "          'scenery': 1,\n",
      "          'chewing': 1,\n",
      "          'surprisingly': 1,\n",
      "          'lacking': 1,\n",
      "          'menace': 1,\n",
      "          'films': 1,\n",
      "          'heather': 1,\n",
      "          'langenkamps': 1,\n",
      "          'son': 1,\n",
      "          'wes': 1,\n",
      "          'cravens': 1,\n",
      "          'new': 1,\n",
      "          'nightmare': 1,\n",
      "          'job': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'playing': 1,\n",
      "          'individual': 1,\n",
      "          '50': 1,\n",
      "          'years': 1,\n",
      "          'younger': 1,\n",
      "          'joins': 1,\n",
      "          'likes': 1,\n",
      "          'rain': 1,\n",
      "          'replacement': 1,\n",
      "          'killers': 1,\n",
      "          'u': 1,\n",
      "          'marshals': 1,\n",
      "          'heap': 1,\n",
      "          'pallid': 1,\n",
      "          '1998': 1,\n",
      "          'adventure': 1,\n",
      "          'theater': 1,\n",
      "          'year': 1,\n",
      "          'nhopefully': 1,\n",
      "          'advent': 1,\n",
      "          'summer': 1,\n",
      "          'change': 1,\n",
      "          'nuntil': 1,\n",
      "          'choices': 1,\n",
      "          'video': 1,\n",
      "          'nand': 1,\n",
      "          'youre': 1,\n",
      "          'determined': 1,\n",
      "          'check': 1,\n",
      "          'morning': 1,\n",
      "          'sky': 1,\n",
      "          'early': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'days': 5,\n",
      "          '28': 5,\n",
      "          'life': 4,\n",
      "          'alcohol': 3,\n",
      "          'nfor': 3,\n",
      "          'big': 3,\n",
      "          'thing': 3,\n",
      "          'important': 3,\n",
      "          'place': 3,\n",
      "          'like': 3,\n",
      "          'actually': 3,\n",
      "          'watch': 3,\n",
      "          'drugs': 2,\n",
      "          'seen': 2,\n",
      "          'young': 2,\n",
      "          'problems': 2,\n",
      "          'one': 2,\n",
      "          'stories': 2,\n",
      "          'sandra': 2,\n",
      "          'bullock': 2,\n",
      "          'woman': 2,\n",
      "          'party': 2,\n",
      "          'nthis': 2,\n",
      "          'west': 2,\n",
      "          'elizabeth': 2,\n",
      "          'perkins': 2,\n",
      "          'stay': 2,\n",
      "          'rehab': 2,\n",
      "          'must': 2,\n",
      "          'realize': 2,\n",
      "          'nthe': 2,\n",
      "          'nit': 2,\n",
      "          'na': 2,\n",
      "          'girl': 2,\n",
      "          'interrupted': 2,\n",
      "          'great': 2,\n",
      "          'betty': 2,\n",
      "          'thomas': 2,\n",
      "          'many': 2,\n",
      "          'characters': 2,\n",
      "          'issues': 2,\n",
      "          'nand': 2,\n",
      "          'steve': 2,\n",
      "          'nin': 2,\n",
      "          'lost': 2,\n",
      "          'aspect': 2,\n",
      "          'youre': 2,\n",
      "          'bad': 1,\n",
      "          'nnot': 1,\n",
      "          'good': 1,\n",
      "          'ngot': 1,\n",
      "          'njust': 1,\n",
      "          'though': 1,\n",
      "          'youve': 1,\n",
      "          'enough': 1,\n",
      "          'brave': 1,\n",
      "          'women': 1,\n",
      "          'dealing': 1,\n",
      "          'personal': 1,\n",
      "          'screen': 1,\n",
      "          'insanity': 1,\n",
      "          'alcoholism': 1,\n",
      "          'hollywood': 1,\n",
      "          'releases': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'deep': 1,\n",
      "          'emotional': 1,\n",
      "          'finding': 1,\n",
      "          'n28': 1,\n",
      "          'practically': 1,\n",
      "          'visualization': 1,\n",
      "          'usual': 1,\n",
      "          'meaningful': 1,\n",
      "          'true': 1,\n",
      "          'people': 1,\n",
      "          'proudly': 1,\n",
      "          'retelling': 1,\n",
      "          'aameetings': 1,\n",
      "          'ngwennie': 1,\n",
      "          'drowned': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'behavior': 1,\n",
      "          'course': 1,\n",
      "          'estranged': 1,\n",
      "          'sister': 1,\n",
      "          'nher': 1,\n",
      "          'existence': 1,\n",
      "          'filled': 1,\n",
      "          'endless': 1,\n",
      "          'parties': 1,\n",
      "          'comic': 1,\n",
      "          'episodes': 1,\n",
      "          'nsuch': 1,\n",
      "          'got': 1,\n",
      "          'drunk': 1,\n",
      "          'boyfriend': 1,\n",
      "          'jasper': 1,\n",
      "          'dominic': 1,\n",
      "          'borrowed': 1,\n",
      "          'sisters': 1,\n",
      "          'wedding': 1,\n",
      "          'limo': 1,\n",
      "          'crashed': 1,\n",
      "          'someones': 1,\n",
      "          'house': 1,\n",
      "          'time': 1,\n",
      "          'pay': 1,\n",
      "          'day': 1,\n",
      "          'courtordered': 1,\n",
      "          'nhere': 1,\n",
      "          'save': 1,\n",
      "          'redemption': 1,\n",
      "          'willpower': 1,\n",
      "          'commitment': 1,\n",
      "          'nmost': 1,\n",
      "          'direction': 1,\n",
      "          'understand': 1,\n",
      "          'feels': 1,\n",
      "          'program': 1,\n",
      "          'whining': 1,\n",
      "          'moaning': 1,\n",
      "          'things': 1,\n",
      "          'said': 1,\n",
      "          'written': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'classic': 1,\n",
      "          'cautionary': 1,\n",
      "          'tale': 1,\n",
      "          'nan': 1,\n",
      "          'echo': 1,\n",
      "          'fat': 1,\n",
      "          'expensive': 1,\n",
      "          'clich': 1,\n",
      "          'shadow': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'likewise': 1,\n",
      "          'followed': 1,\n",
      "          'footsteps': 1,\n",
      "          'masterpieces': 1,\n",
      "          'cuckoos': 1,\n",
      "          'nest': 1,\n",
      "          'trainspotting': 1,\n",
      "          'ndirector': 1,\n",
      "          'stuffed': 1,\n",
      "          'failures': 1,\n",
      "          'errors': 1,\n",
      "          'impossible': 1,\n",
      "          'sum': 1,\n",
      "          'review': 1,\n",
      "          'paranoid': 1,\n",
      "          'reason': 1,\n",
      "          'decided': 1,\n",
      "          'make': 1,\n",
      "          'dramacomedy': 1,\n",
      "          'njokes': 1,\n",
      "          'funny': 1,\n",
      "          'almost': 1,\n",
      "          'deliberately': 1,\n",
      "          'delude': 1,\n",
      "          'really': 1,\n",
      "          'complex': 1,\n",
      "          'alienation': 1,\n",
      "          'despair': 1,\n",
      "          'terror': 1,\n",
      "          'confusion': 1,\n",
      "          'loneliness': 1,\n",
      "          'awesome': 1,\n",
      "          'power': 1,\n",
      "          'strength': 1,\n",
      "          'character': 1,\n",
      "          'takes': 1,\n",
      "          'overcome': 1,\n",
      "          'become': 1,\n",
      "          'clean': 1,\n",
      "          'nisnt': 1,\n",
      "          'filmmakers': 1,\n",
      "          'wanted': 1,\n",
      "          'show': 1,\n",
      "          'first': 1,\n",
      "          'neven': 1,\n",
      "          'transition': 1,\n",
      "          'process': 1,\n",
      "          'seems': 1,\n",
      "          'walk': 1,\n",
      "          'park': 1,\n",
      "          'idea': 1,\n",
      "          'hell': 1,\n",
      "          'cozy': 1,\n",
      "          'homey': 1,\n",
      "          'happy': 1,\n",
      "          'alcoholics': 1,\n",
      "          'cheerful': 1,\n",
      "          'drug': 1,\n",
      "          'addicts': 1,\n",
      "          'allowed': 1,\n",
      "          'smoke': 1,\n",
      "          'drink': 1,\n",
      "          'tv': 1,\n",
      "          '11': 1,\n",
      "          'simply': 1,\n",
      "          'light': 1,\n",
      "          'simplified': 1,\n",
      "          'unnecessary': 1,\n",
      "          'sweet': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'nbut': 1,\n",
      "          'worst': 1,\n",
      "          'thinks': 1,\n",
      "          'saying': 1,\n",
      "          'something': 1,\n",
      "          'significance': 1,\n",
      "          'nthat': 1,\n",
      "          'tries': 1,\n",
      "          'educate': 1,\n",
      "          'audience': 1,\n",
      "          'extremely': 1,\n",
      "          'predictable': 1,\n",
      "          'primitive': 1,\n",
      "          'story': 1,\n",
      "          'n': 1,\n",
      "          'need': 1,\n",
      "          'say': 1,\n",
      "          'says': 1,\n",
      "          'dr': 1,\n",
      "          'cornell': 1,\n",
      "          'buscemi': 1,\n",
      "          'revelation': 1,\n",
      "          'century': 1,\n",
      "          'thats': 1,\n",
      "          'simple': 1,\n",
      "          'fact': 1,\n",
      "          'would': 1,\n",
      "          'rather': 1,\n",
      "          'space': 1,\n",
      "          'return': 1,\n",
      "          'nas': 1,\n",
      "          'acting': 1,\n",
      "          'acceptable': 1,\n",
      "          'hardly': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'opportunity': 1,\n",
      "          'demonstrate': 1,\n",
      "          'capable': 1,\n",
      "          'speed': 1,\n",
      "          'nshe': 1,\n",
      "          'handles': 1,\n",
      "          'part': 1,\n",
      "          'surprising': 1,\n",
      "          'professionalism': 1,\n",
      "          'ease': 1,\n",
      "          'certainly': 1,\n",
      "          'saves': 1,\n",
      "          'complete': 1,\n",
      "          'flop': 1,\n",
      "          'ndominic': 1,\n",
      "          'shines': 1,\n",
      "          'source': 1,\n",
      "          'gwenies': 1,\n",
      "          'devilish': 1,\n",
      "          'temptations': 1,\n",
      "          'buscemis': 1,\n",
      "          'talents': 1,\n",
      "          'wasted': 1,\n",
      "          'unnoticeable': 1,\n",
      "          'shallow': 1,\n",
      "          'nalthough': 1,\n",
      "          'intellectually': 1,\n",
      "          'greater': 1,\n",
      "          'achievement': 1,\n",
      "          'superior': 1,\n",
      "          'visual': 1,\n",
      "          'nthere': 1,\n",
      "          'nice': 1,\n",
      "          'flash': 1,\n",
      "          'back': 1,\n",
      "          'sequences': 1,\n",
      "          'occasionally': 1,\n",
      "          'impressive': 1,\n",
      "          'pacing': 1,\n",
      "          'overall': 1,\n",
      "          'technical': 1,\n",
      "          'ground': 1,\n",
      "          'floor': 1,\n",
      "          'weve': 1,\n",
      "          'lot': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'better': 1,\n",
      "          'nclean': 1,\n",
      "          'sober': 1,\n",
      "          'laugh': 1,\n",
      "          'man': 1,\n",
      "          'loves': 1,\n",
      "          'leaving': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'stronger': 1,\n",
      "          'films': 1,\n",
      "          'made': 1,\n",
      "          'nso': 1,\n",
      "          'whats': 1,\n",
      "          'point': 1,\n",
      "          'words': 1,\n",
      "          'doesnt': 1,\n",
      "          'contribute': 1,\n",
      "          'moviemaking': 1,\n",
      "          'business': 1,\n",
      "          'level': 1,\n",
      "          'nif': 1,\n",
      "          'caught': 1,\n",
      "          'snowstorm': 1,\n",
      "          'bolts': 1,\n",
      "          'lightning': 1,\n",
      "          'fall': 1,\n",
      "          'sky': 1,\n",
      "          'standing': 1,\n",
      "          'front': 1,\n",
      "          'movie': 1,\n",
      "          'theatre': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'go': 1,\n",
      "          'nunder': 1,\n",
      "          'circumstances': 1,\n",
      "          'away': 1,\n",
      "          'equals': 1,\n",
      "          '8': 1,\n",
      "          '103': 1,\n",
      "          'minutes': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'nthe': 6,\n",
      "          'even': 4,\n",
      "          'one': 3,\n",
      "          'good': 3,\n",
      "          'doesnt': 3,\n",
      "          'scene': 3,\n",
      "          'raiders': 2,\n",
      "          'lost': 2,\n",
      "          'ark': 2,\n",
      "          'jackie': 2,\n",
      "          'phantom': 2,\n",
      "          'many': 2,\n",
      "          'movies': 2,\n",
      "          'nits': 2,\n",
      "          'hard': 2,\n",
      "          'ive': 2,\n",
      "          'seen': 2,\n",
      "          'least': 2,\n",
      "          'stupid': 2,\n",
      "          'list': 2,\n",
      "          'sequence': 2,\n",
      "          'looks': 2,\n",
      "          'like': 2,\n",
      "          'given': 2,\n",
      "          'got': 2,\n",
      "          'nwe': 2,\n",
      "          'go': 2,\n",
      "          'jungle': 2,\n",
      "          'well': 2,\n",
      "          'nthere': 2,\n",
      "          'isnt': 2,\n",
      "          'thing': 2,\n",
      "          'girl': 2,\n",
      "          'else': 2,\n",
      "          'another': 2,\n",
      "          'hokey': 2,\n",
      "          'script': 2,\n",
      "          'sure': 2,\n",
      "          'capsule': 1,\n",
      "          'combine': 1,\n",
      "          'quart': 1,\n",
      "          'dash': 1,\n",
      "          'chan': 1,\n",
      "          'sans': 1,\n",
      "          'two': 1,\n",
      "          'teaspoons': 1,\n",
      "          'gun': 1,\n",
      "          'swordplay': 1,\n",
      "          'dollop': 1,\n",
      "          'cgi': 1,\n",
      "          'nsimmer': 1,\n",
      "          '100': 1,\n",
      "          'minutes': 1,\n",
      "          'nyields': 1,\n",
      "          'zilch': 1,\n",
      "          'depressing': 1,\n",
      "          'tired': 1,\n",
      "          'retread': 1,\n",
      "          'earlier': 1,\n",
      "          'better': 1,\n",
      "          'fifteenminute': 1,\n",
      "          'mark': 1,\n",
      "          'started': 1,\n",
      "          'cataloguing': 1,\n",
      "          'loud': 1,\n",
      "          'make': 1,\n",
      "          'actionadventure': 1,\n",
      "          'simply': 1,\n",
      "          'recycle': 1,\n",
      "          'predecessors': 1,\n",
      "          'recycling': 1,\n",
      "          'gracefully': 1,\n",
      "          'allegedly': 1,\n",
      "          'based': 1,\n",
      "          'longrunning': 1,\n",
      "          'comic': 1,\n",
      "          'name': 1,\n",
      "          'bother': 1,\n",
      "          'graceful': 1,\n",
      "          'incompetent': 1,\n",
      "          'ways': 1,\n",
      "          'ill': 1,\n",
      "          'try': 1,\n",
      "          'film': 1,\n",
      "          'opens': 1,\n",
      "          'prelude': 1,\n",
      "          'slashed': 1,\n",
      "          'ribbons': 1,\n",
      "          'editing': 1,\n",
      "          'heavy': 1,\n",
      "          'voiceover': 1,\n",
      "          'compensate': 1,\n",
      "          'whatever': 1,\n",
      "          'thrown': 1,\n",
      "          'swear': 1,\n",
      "          'god': 1,\n",
      "          'recycles': 1,\n",
      "          'truckchase': 1,\n",
      "          'notefornote': 1,\n",
      "          'possibly': 1,\n",
      "          'shotforshot': 1,\n",
      "          'right': 1,\n",
      "          'moment': 1,\n",
      "          'indy': 1,\n",
      "          'wrenched': 1,\n",
      "          'open': 1,\n",
      "          'door': 1,\n",
      "          'slung': 1,\n",
      "          'drivers': 1,\n",
      "          'brush': 1,\n",
      "          'goes': 1,\n",
      "          'rip': 1,\n",
      "          'ropebridge': 1,\n",
      "          'sorcerer': 1,\n",
      "          'nsorcerer': 1,\n",
      "          'may': 1,\n",
      "          'remember': 1,\n",
      "          'remake': 1,\n",
      "          'french': 1,\n",
      "          'wages': 1,\n",
      "          'fear': 1,\n",
      "          'bunch': 1,\n",
      "          'lowlifes': 1,\n",
      "          'paid': 1,\n",
      "          'piles': 1,\n",
      "          'money': 1,\n",
      "          'drive': 1,\n",
      "          'truck': 1,\n",
      "          'loaded': 1,\n",
      "          'nitro': 1,\n",
      "          'horrible': 1,\n",
      "          'terrain': 1,\n",
      "          'nboth': 1,\n",
      "          'versions': 1,\n",
      "          'far': 1,\n",
      "          'interesting': 1,\n",
      "          'flick': 1,\n",
      "          'job': 1,\n",
      "          'back': 1,\n",
      "          'salt': 1,\n",
      "          'mines': 1,\n",
      "          'nanyway': 1,\n",
      "          'cinematic': 1,\n",
      "          'theft': 1,\n",
      "          'stop': 1,\n",
      "          'lack': 1,\n",
      "          'inspiration': 1,\n",
      "          'single': 1,\n",
      "          'havent': 1,\n",
      "          'us': 1,\n",
      "          'way': 1,\n",
      "          'remotely': 1,\n",
      "          'evokes': 1,\n",
      "          'interest': 1,\n",
      "          'wheres': 1,\n",
      "          'na': 1,\n",
      "          'bad': 1,\n",
      "          'tough': 1,\n",
      "          'secret': 1,\n",
      "          'cave': 1,\n",
      "          'hideaway': 1,\n",
      "          'seems': 1,\n",
      "          'inspired': 1,\n",
      "          'dr': 1,\n",
      "          'nno': 1,\n",
      "          'anything': 1,\n",
      "          'boardroom': 1,\n",
      "          'meeting': 1,\n",
      "          'drips': 1,\n",
      "          'greed': 1,\n",
      "          'venality': 1,\n",
      "          'magical': 1,\n",
      "          'artifacts': 1,\n",
      "          'terrible': 1,\n",
      "          'power': 1,\n",
      "          'caryhiroyuki': 1,\n",
      "          'tagawa': 1,\n",
      "          'wasted': 1,\n",
      "          'role': 1,\n",
      "          'gets': 1,\n",
      "          'wear': 1,\n",
      "          'fu': 1,\n",
      "          'manchu': 1,\n",
      "          'mustache': 1,\n",
      "          'sneer': 1,\n",
      "          'lot': 1,\n",
      "          'generally': 1,\n",
      "          'humiliate': 1,\n",
      "          'nwhat': 1,\n",
      "          'plot': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'sets': 1,\n",
      "          'alternate': 1,\n",
      "          'big': 1,\n",
      "          'tiny': 1,\n",
      "          'still': 1,\n",
      "          'lines': 1,\n",
      "          'begging': 1,\n",
      "          'mst3ked': 1,\n",
      "          'im': 1,\n",
      "          'mike': 1,\n",
      "          'bots': 1,\n",
      "          'get': 1,\n",
      "          'cash': 1,\n",
      "          'theyll': 1,\n",
      "          'stick': 1,\n",
      "          'sked': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          'billy': 1,\n",
      "          'zane': 1,\n",
      "          'hes': 1,\n",
      "          'actor': 1,\n",
      "          'tries': 1,\n",
      "          'sending': 1,\n",
      "          'dead': 1,\n",
      "          'alley': 1,\n",
      "          'nall': 1,\n",
      "          'say': 1,\n",
      "          'pray': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'although': 1,\n",
      "          'final': 1,\n",
      "          'nail': 1,\n",
      "          'coffin': 1,\n",
      "          'comicbook': 1,\n",
      "          'superhero': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 7,\n",
      "          'dick': 6,\n",
      "          'girls': 5,\n",
      "          'nthe': 5,\n",
      "          'movie': 5,\n",
      "          'two': 4,\n",
      "          'dunst': 4,\n",
      "          'nixon': 4,\n",
      "          'woodward': 4,\n",
      "          'bernstein': 4,\n",
      "          'presidential': 3,\n",
      "          'scandal': 3,\n",
      "          'williams': 3,\n",
      "          'watergate': 3,\n",
      "          'every': 3,\n",
      "          'throat': 3,\n",
      "          'humor': 3,\n",
      "          'comedy': 3,\n",
      "          'ni': 3,\n",
      "          'cast': 3,\n",
      "          'see': 3,\n",
      "          'characters': 3,\n",
      "          'could': 3,\n",
      "          'trying': 2,\n",
      "          'room': 2,\n",
      "          'liddy': 2,\n",
      "          'deadon': 2,\n",
      "          'nwhen': 2,\n",
      "          'trip': 2,\n",
      "          'dog': 2,\n",
      "          'thanks': 2,\n",
      "          'make': 2,\n",
      "          'deep': 2,\n",
      "          'one': 2,\n",
      "          'band': 2,\n",
      "          'stop': 2,\n",
      "          'smarter': 2,\n",
      "          'juvenile': 2,\n",
      "          'made': 2,\n",
      "          'major': 2,\n",
      "          'audience': 2,\n",
      "          'course': 2,\n",
      "          'mccullochs': 2,\n",
      "          'given': 2,\n",
      "          'constant': 2,\n",
      "          'excellent': 2,\n",
      "          'particular': 2,\n",
      "          'nothing': 2,\n",
      "          'nas': 2,\n",
      "          'best': 2,\n",
      "          'though': 2,\n",
      "          'new': 1,\n",
      "          'entry': 1,\n",
      "          'revisionist': 1,\n",
      "          'history': 1,\n",
      "          'genre': 1,\n",
      "          'filmmaking': 1,\n",
      "          'suggests': 1,\n",
      "          'nottoobright': 1,\n",
      "          'teenage': 1,\n",
      "          'cause': 1,\n",
      "          'uncovering': 1,\n",
      "          'nations': 1,\n",
      "          'biggest': 1,\n",
      "          'nkirsten': 1,\n",
      "          'michelle': 1,\n",
      "          'star': 1,\n",
      "          'betsy': 1,\n",
      "          'arlene': 1,\n",
      "          'deliver': 1,\n",
      "          'fan': 1,\n",
      "          'letter': 1,\n",
      "          'arlenes': 1,\n",
      "          'hotel': 1,\n",
      "          'accidentally': 1,\n",
      "          'stumble': 1,\n",
      "          'across': 1,\n",
      "          'g': 1,\n",
      "          'gordon': 1,\n",
      "          'played': 1,\n",
      "          'harry': 1,\n",
      "          'shearer': 1,\n",
      "          'infamous': 1,\n",
      "          'breakin': 1,\n",
      "          'recognize': 1,\n",
      "          'later': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'field': 1,\n",
      "          'ushered': 1,\n",
      "          'conference': 1,\n",
      "          'questioned': 1,\n",
      "          'know': 1,\n",
      "          'leave': 1,\n",
      "          'official': 1,\n",
      "          'walkers': 1,\n",
      "          'manage': 1,\n",
      "          'unwittingly': 1,\n",
      "          'uncover': 1,\n",
      "          'bit': 1,\n",
      "          'performing': 1,\n",
      "          'duties': 1,\n",
      "          'clue': 1,\n",
      "          'getting': 1,\n",
      "          'involved': 1,\n",
      "          'discover': 1,\n",
      "          'another': 1,\n",
      "          'performance': 1,\n",
      "          'dan': 1,\n",
      "          'hedaya': 1,\n",
      "          'actually': 1,\n",
      "          'favors': 1,\n",
      "          'slightly': 1,\n",
      "          'unlike': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'abusive': 1,\n",
      "          'checkers': 1,\n",
      "          'conversations': 1,\n",
      "          'always': 1,\n",
      "          'recorded': 1,\n",
      "          'quit': 1,\n",
      "          'become': 1,\n",
      "          'disillusioned': 1,\n",
      "          'nduring': 1,\n",
      "          'prank': 1,\n",
      "          'phone': 1,\n",
      "          'call': 1,\n",
      "          'events': 1,\n",
      "          'set': 1,\n",
      "          'motion': 1,\n",
      "          'eventually': 1,\n",
      "          'lead': 1,\n",
      "          'presidents': 1,\n",
      "          'resignation': 1,\n",
      "          'nthis': 1,\n",
      "          'starts': 1,\n",
      "          'promisingly': 1,\n",
      "          'aged': 1,\n",
      "          'arguing': 1,\n",
      "          'obvious': 1,\n",
      "          'larry': 1,\n",
      "          'kingtype': 1,\n",
      "          'talk': 1,\n",
      "          'show': 1,\n",
      "          'featuring': 1,\n",
      "          'cameo': 1,\n",
      "          'french': 1,\n",
      "          'stewart': 1,\n",
      "          'revealing': 1,\n",
      "          'identity': 1,\n",
      "          'nfrom': 1,\n",
      "          'subjected': 1,\n",
      "          'bodily': 1,\n",
      "          'function': 1,\n",
      "          'bad': 1,\n",
      "          'joke': 1,\n",
      "          'derive': 1,\n",
      "          'type': 1,\n",
      "          'supposed': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'scream': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'playing': 1,\n",
      "          'steps': 1,\n",
      "          'lincoln': 1,\n",
      "          'memorial': 1,\n",
      "          'manages': 1,\n",
      "          'right': 1,\n",
      "          'screams': 1,\n",
      "          'letting': 1,\n",
      "          'run': 1,\n",
      "          'life': 1,\n",
      "          'nmuch': 1,\n",
      "          'horror': 1,\n",
      "          'everyone': 1,\n",
      "          'standing': 1,\n",
      "          'within': 1,\n",
      "          'earshot': 1,\n",
      "          'nseveral': 1,\n",
      "          'variations': 1,\n",
      "          'wordplay': 1,\n",
      "          'surface': 1,\n",
      "          'throughout': 1,\n",
      "          'nif': 1,\n",
      "          'would': 1,\n",
      "          'less': 1,\n",
      "          'likely': 1,\n",
      "          'fault': 1,\n",
      "          'bathroom': 1,\n",
      "          'apparently': 1,\n",
      "          'relatively': 1,\n",
      "          'younger': 1,\n",
      "          'people': 1,\n",
      "          'player': 1,\n",
      "          'introduced': 1,\n",
      "          'shoved': 1,\n",
      "          'audiences': 1,\n",
      "          'least': 1,\n",
      "          'subtle': 1,\n",
      "          'way': 1,\n",
      "          'possible': 1,\n",
      "          'dont': 1,\n",
      "          'recall': 1,\n",
      "          'oliver': 1,\n",
      "          'stones': 1,\n",
      "          'pander': 1,\n",
      "          'wasnt': 1,\n",
      "          'aimed': 1,\n",
      "          'squarely': 1,\n",
      "          '1320': 1,\n",
      "          'yearold': 1,\n",
      "          'going': 1,\n",
      "          'redeeming': 1,\n",
      "          'thing': 1,\n",
      "          'remarkable': 1,\n",
      "          'supporting': 1,\n",
      "          'wanted': 1,\n",
      "          'ferrell': 1,\n",
      "          'nthose': 1,\n",
      "          'sole': 1,\n",
      "          'basis': 1,\n",
      "          'rating': 1,\n",
      "          'wish': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'unfortunately': 1,\n",
      "          'relegated': 1,\n",
      "          'final': 1,\n",
      "          'halfhour': 1,\n",
      "          'ntheir': 1,\n",
      "          'bickering': 1,\n",
      "          'fighting': 1,\n",
      "          'get': 1,\n",
      "          'story': 1,\n",
      "          'highlight': 1,\n",
      "          'especially': 1,\n",
      "          'thwarting': 1,\n",
      "          'ferrells': 1,\n",
      "          'attempts': 1,\n",
      "          'gather': 1,\n",
      "          'information': 1,\n",
      "          'narrative': 1,\n",
      "          'revealed': 1,\n",
      "          'named': 1,\n",
      "          'ill': 1,\n",
      "          'planned': 1,\n",
      "          'porno': 1,\n",
      "          'theater': 1,\n",
      "          'betsys': 1,\n",
      "          'brother': 1,\n",
      "          'members': 1,\n",
      "          'portrayals': 1,\n",
      "          'work': 1,\n",
      "          'nid': 1,\n",
      "          'like': 1,\n",
      "          'portray': 1,\n",
      "          'script': 1,\n",
      "          'suited': 1,\n",
      "          'towards': 1,\n",
      "          'comedic': 1,\n",
      "          'abilities': 1,\n",
      "          'leads': 1,\n",
      "          'definitely': 1,\n",
      "          'better': 1,\n",
      "          'nthey': 1,\n",
      "          'come': 1,\n",
      "          'described': 1,\n",
      "          'romy': 1,\n",
      "          'michele': 1,\n",
      "          'early': 1,\n",
      "          'years': 1,\n",
      "          'highly': 1,\n",
      "          'dubious': 1,\n",
      "          'distinction': 1,\n",
      "          'nstay': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'interesting': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'suggestively': 1,\n",
      "          'sucking': 1,\n",
      "          'lollipops': 1,\n",
      "          'emblazoned': 1,\n",
      "          'title': 1,\n",
      "          'nan': 1,\n",
      "          'idea': 1,\n",
      "          'marred': 1,\n",
      "          'poor': 1,\n",
      "          'execution': 1,\n",
      "          'great': 1,\n",
      "          'nless': 1,\n",
      "          'displayed': 1,\n",
      "          'scenes': 1,\n",
      "          'wonderful': 1,\n",
      "          'satire': 1,\n",
      "          'presidency': 1,\n",
      "          'seen': 1,\n",
      "          'eyes': 1,\n",
      "          'naive': 1,\n",
      "          'fifteen': 1,\n",
      "          'year': 1,\n",
      "          'olds': 1,\n",
      "          'stands': 1,\n",
      "          'offers': 1,\n",
      "          'filmmaker': 1,\n",
      "          'kevin': 1,\n",
      "          'smith': 1,\n",
      "          'accurately': 1,\n",
      "          'defines': 1,\n",
      "          'poopie': 1,\n",
      "          'jokes': 1,\n",
      "          'nand': 1,\n",
      "          'funny': 1,\n",
      "          'npg13': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 5,\n",
      "          'urban': 4,\n",
      "          'horror': 4,\n",
      "          'legends': 4,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'never': 3,\n",
      "          'legend': 3,\n",
      "          'nurban': 3,\n",
      "          'killer': 3,\n",
      "          'character': 3,\n",
      "          'original': 2,\n",
      "          'put': 2,\n",
      "          'misery': 2,\n",
      "          'final': 2,\n",
      "          'cut': 2,\n",
      "          'script': 2,\n",
      "          'become': 2,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'project': 2,\n",
      "          'people': 2,\n",
      "          'victims': 2,\n",
      "          'films': 2,\n",
      "          'dead': 2,\n",
      "          'fiction': 2,\n",
      "          'killings': 2,\n",
      "          'like': 2,\n",
      "          'recurring': 2,\n",
      "          'seen': 2,\n",
      "          'words': 1,\n",
      "          'thought': 1,\n",
      "          'id': 1,\n",
      "          'write': 1,\n",
      "          'sequel': 1,\n",
      "          'lacks': 1,\n",
      "          'grace': 1,\n",
      "          'wit': 1,\n",
      "          'power': 1,\n",
      "          'nput': 1,\n",
      "          'gun': 1,\n",
      "          'head': 1,\n",
      "          'pull': 1,\n",
      "          'trigger': 1,\n",
      "          'nbetter': 1,\n",
      "          'yet': 1,\n",
      "          'genre': 1,\n",
      "          'nwhen': 1,\n",
      "          'youve': 1,\n",
      "          'finished': 1,\n",
      "          'watching': 1,\n",
      "          'youll': 1,\n",
      "          'share': 1,\n",
      "          'grim': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'thanks': 1,\n",
      "          'horrible': 1,\n",
      "          'acting': 1,\n",
      "          'terrible': 1,\n",
      "          'ridiculous': 1,\n",
      "          'directing': 1,\n",
      "          'common': 1,\n",
      "          'today': 1,\n",
      "          'smorgasbord': 1,\n",
      "          'stolen': 1,\n",
      "          'movie': 1,\n",
      "          'ideas': 1,\n",
      "          'mainly': 1,\n",
      "          'scream': 1,\n",
      "          'fabulous': 1,\n",
      "          'perfect': 1,\n",
      "          'teeth': 1,\n",
      "          'skin': 1,\n",
      "          'creepy': 1,\n",
      "          'school': 1,\n",
      "          'dog': 1,\n",
      "          'eating': 1,\n",
      "          'freshly': 1,\n",
      "          'removed': 1,\n",
      "          'kidney': 1,\n",
      "          'movies': 1,\n",
      "          'hapless': 1,\n",
      "          'delivers': 1,\n",
      "          'story': 1,\n",
      "          'bunch': 1,\n",
      "          'students': 1,\n",
      "          'working': 1,\n",
      "          'thesis': 1,\n",
      "          'win': 1,\n",
      "          'coveted': 1,\n",
      "          'hitchcock': 1,\n",
      "          'award': 1,\n",
      "          'guarantees': 1,\n",
      "          'winner': 1,\n",
      "          'director': 1,\n",
      "          'deal': 1,\n",
      "          'hollywood': 1,\n",
      "          'none': 1,\n",
      "          'female': 1,\n",
      "          'filmmaker': 1,\n",
      "          'jennifer': 1,\n",
      "          'morrison': 1,\n",
      "          'freaky': 1,\n",
      "          'girl': 1,\n",
      "          'stir': 1,\n",
      "          'echoes': 1,\n",
      "          'writes': 1,\n",
      "          'based': 1,\n",
      "          'serial': 1,\n",
      "          'kills': 1,\n",
      "          'according': 1,\n",
      "          'tales': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'entire': 1,\n",
      "          'crew': 1,\n",
      "          'starts': 1,\n",
      "          'getting': 1,\n",
      "          'bumped': 1,\n",
      "          'urbanlegendary': 1,\n",
      "          'homicides': 1,\n",
      "          'bodies': 1,\n",
      "          'always': 1,\n",
      "          'missing': 1,\n",
      "          'often': 1,\n",
      "          'witness': 1,\n",
      "          'wears': 1,\n",
      "          'fencing': 1,\n",
      "          'mask': 1,\n",
      "          'long': 1,\n",
      "          'black': 1,\n",
      "          'overcoat': 1,\n",
      "          'looking': 1,\n",
      "          'scorned': 1,\n",
      "          'olympian': 1,\n",
      "          'avenge': 1,\n",
      "          'defeat': 1,\n",
      "          'sydney': 1,\n",
      "          'nwhy': 1,\n",
      "          'scary': 1,\n",
      "          'explained': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'golden': 1,\n",
      "          'rule': 1,\n",
      "          'sequels': 1,\n",
      "          'must': 1,\n",
      "          'least': 1,\n",
      "          'continuitys': 1,\n",
      "          'sake': 1,\n",
      "          'minor': 1,\n",
      "          'cared': 1,\n",
      "          'anyway': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'central': 1,\n",
      "          'problem': 1,\n",
      "          'already': 1,\n",
      "          'shes': 1,\n",
      "          'utterly': 1,\n",
      "          'clueless': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'around': 1,\n",
      "          'ncall': 1,\n",
      "          'suspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'nthis': 1,\n",
      "          'also': 1,\n",
      "          'prime': 1,\n",
      "          'example': 1,\n",
      "          'completely': 1,\n",
      "          'water': 1,\n",
      "          'last': 1,\n",
      "          'decent': 1,\n",
      "          'seemed': 1,\n",
      "          'snuff': 1,\n",
      "          'stalking': 1,\n",
      "          'crazy': 1,\n",
      "          'motivation': 1,\n",
      "          'tired': 1,\n",
      "          'clich': 1,\n",
      "          'everyone': 1,\n",
      "          'seems': 1,\n",
      "          'forgotten': 1,\n",
      "          'real': 1,\n",
      "          'unknown': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'godzilla': 15,\n",
      "          'new': 7,\n",
      "          'movie': 6,\n",
      "          'film': 6,\n",
      "          'nthe': 5,\n",
      "          'ngodzilla': 5,\n",
      "          'day': 5,\n",
      "          'york': 5,\n",
      "          'monster': 4,\n",
      "          'isnt': 4,\n",
      "          'special': 4,\n",
      "          'say': 4,\n",
      "          'like': 4,\n",
      "          'nin': 4,\n",
      "          'nicks': 4,\n",
      "          'king': 3,\n",
      "          'emmerich': 3,\n",
      "          'effects': 3,\n",
      "          'see': 3,\n",
      "          'even': 3,\n",
      "          'ntheres': 3,\n",
      "          'lizard': 3,\n",
      "          'never': 3,\n",
      "          'movies': 3,\n",
      "          'big': 3,\n",
      "          'would': 3,\n",
      "          'around': 3,\n",
      "          'time': 3,\n",
      "          'matter': 3,\n",
      "          'plot': 2,\n",
      "          'summer': 2,\n",
      "          'monsters': 2,\n",
      "          'pretty': 2,\n",
      "          'disaster': 2,\n",
      "          'likely': 2,\n",
      "          'nthats': 2,\n",
      "          'theyre': 2,\n",
      "          'nthis': 2,\n",
      "          'devlin': 2,\n",
      "          'computergenerated': 2,\n",
      "          'visuals': 2,\n",
      "          'write': 2,\n",
      "          'nindependence': 2,\n",
      "          'nand': 2,\n",
      "          'could': 2,\n",
      "          'although': 2,\n",
      "          'close': 2,\n",
      "          'manhattan': 2,\n",
      "          'park': 2,\n",
      "          'independence': 2,\n",
      "          'really': 2,\n",
      "          'kong': 2,\n",
      "          'chosen': 2,\n",
      "          'may': 2,\n",
      "          'capable': 2,\n",
      "          'many': 2,\n",
      "          'supposed': 2,\n",
      "          'stop': 2,\n",
      "          'rather': 2,\n",
      "          'nhe': 2,\n",
      "          'building': 2,\n",
      "          'hand': 2,\n",
      "          'military': 2,\n",
      "          'nick': 2,\n",
      "          'theory': 2,\n",
      "          'french': 2,\n",
      "          'first': 2,\n",
      "          'pitillo': 2,\n",
      "          'animal': 2,\n",
      "          'hank': 2,\n",
      "          'azaria': 2,\n",
      "          'nthen': 2,\n",
      "          'jean': 2,\n",
      "          'reno': 2,\n",
      "          'city': 2,\n",
      "          'times': 2,\n",
      "          'plays': 2,\n",
      "          'one': 2,\n",
      "          'ebert': 2,\n",
      "          'gene': 2,\n",
      "          'doesnt': 2,\n",
      "          'want': 2,\n",
      "          'arent': 2,\n",
      "          'much': 2,\n",
      "          'ultimate': 1,\n",
      "          'culmination': 1,\n",
      "          'cares': 1,\n",
      "          'na': 1,\n",
      "          'loose': 1,\n",
      "          'remake': 1,\n",
      "          '1954': 1,\n",
      "          'classic': 1,\n",
      "          'japanese': 1,\n",
      "          'thin': 1,\n",
      "          'story': 1,\n",
      "          'department': 1,\n",
      "          'roland': 1,\n",
      "          'dean': 1,\n",
      "          'devlins': 1,\n",
      "          'bigbudget': 1,\n",
      "          'lizardstompsmanhattan': 1,\n",
      "          'flick': 1,\n",
      "          'written': 1,\n",
      "          'brain': 1,\n",
      "          'dead': 1,\n",
      "          'mind': 1,\n",
      "          'script': 1,\n",
      "          'dumbed': 1,\n",
      "          'lobotomized': 1,\n",
      "          'lives': 1,\n",
      "          'dies': 1,\n",
      "          'alone': 1,\n",
      "          'npresumably': 1,\n",
      "          'primary': 1,\n",
      "          'target': 1,\n",
      "          'group': 1,\n",
      "          'teenage': 1,\n",
      "          'boys': 1,\n",
      "          'demographic': 1,\n",
      "          'shell': 1,\n",
      "          '7': 1,\n",
      "          'repeatedly': 1,\n",
      "          'images': 1,\n",
      "          'monsterinstigated': 1,\n",
      "          'carnage': 1,\n",
      "          'females': 1,\n",
      "          'age': 1,\n",
      "          'groups': 1,\n",
      "          'immune': 1,\n",
      "          'seduction': 1,\n",
      "          'readily': 1,\n",
      "          'susceptible': 1,\n",
      "          'third': 1,\n",
      "          'straight': 1,\n",
      "          'row': 1,\n",
      "          'demonstrated': 1,\n",
      "          'mastery': 1,\n",
      "          'far': 1,\n",
      "          'important': 1,\n",
      "          'making': 1,\n",
      "          'money': 1,\n",
      "          'ability': 1,\n",
      "          'direct': 1,\n",
      "          'actors': 1,\n",
      "          'nstargate': 1,\n",
      "          'financial': 1,\n",
      "          'success': 1,\n",
      "          'runaway': 1,\n",
      "          'hit': 1,\n",
      "          'already': 1,\n",
      "          'drowning': 1,\n",
      "          'hype': 1,\n",
      "          'merchandising': 1,\n",
      "          'tieins': 1,\n",
      "          'opens': 1,\n",
      "          'virtually': 1,\n",
      "          'guaranteed': 1,\n",
      "          'least': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'nnice': 1,\n",
      "          'numbers': 1,\n",
      "          'penned': 1,\n",
      "          'nottooprecocious': 1,\n",
      "          'grade': 1,\n",
      "          'school': 1,\n",
      "          'kid': 1,\n",
      "          'completely': 1,\n",
      "          'without': 1,\n",
      "          'merit': 1,\n",
      "          'certain': 1,\n",
      "          'visceral': 1,\n",
      "          'thrill': 1,\n",
      "          'inherent': 1,\n",
      "          'watching': 1,\n",
      "          'giant': 1,\n",
      "          'rip': 1,\n",
      "          'way': 1,\n",
      "          'wears': 1,\n",
      "          'quickly': 1,\n",
      "          'nfrankly': 1,\n",
      "          'competent': 1,\n",
      "          'stunning': 1,\n",
      "          'nothing': 1,\n",
      "          'jurassic': 1,\n",
      "          'meets': 1,\n",
      "          'aliens': 1,\n",
      "          'little': 1,\n",
      "          'thrown': 1,\n",
      "          'bad': 1,\n",
      "          'measure': 1,\n",
      "          'nmaybe': 1,\n",
      "          'require': 1,\n",
      "          'george': 1,\n",
      "          'lucas': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'take': 1,\n",
      "          'next': 1,\n",
      "          'level': 1,\n",
      "          'pushes': 1,\n",
      "          'envelope': 1,\n",
      "          'preferring': 1,\n",
      "          'remain': 1,\n",
      "          'within': 1,\n",
      "          'comfort': 1,\n",
      "          'zone': 1,\n",
      "          'imagination': 1,\n",
      "          'replaced': 1,\n",
      "          'crass': 1,\n",
      "          'formulaic': 1,\n",
      "          'approach': 1,\n",
      "          'disallows': 1,\n",
      "          'creativity': 1,\n",
      "          'n': 1,\n",
      "          'disturbing': 1,\n",
      "          'know': 1,\n",
      "          '51st': 1,\n",
      "          'cannes': 1,\n",
      "          'festival': 1,\n",
      "          'nworst': 1,\n",
      "          'exciting': 1,\n",
      "          'nwith': 1,\n",
      "          'possible': 1,\n",
      "          'exception': 1,\n",
      "          'mildly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'car': 1,\n",
      "          'chase': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'sequence': 1,\n",
      "          'raises': 1,\n",
      "          'pulse': 1,\n",
      "          'neven': 1,\n",
      "          'scenes': 1,\n",
      "          'dozens': 1,\n",
      "          'aircraft': 1,\n",
      "          'attacking': 1,\n",
      "          'devoid': 1,\n",
      "          'tension': 1,\n",
      "          'suspense': 1,\n",
      "          'yawnprovoking': 1,\n",
      "          'dumb': 1,\n",
      "          'full': 1,\n",
      "          'adrenaline': 1,\n",
      "          'moments': 1,\n",
      "          'getting': 1,\n",
      "          'audience': 1,\n",
      "          'involved': 1,\n",
      "          'action': 1,\n",
      "          'aspect': 1,\n",
      "          'production': 1,\n",
      "          'others': 1,\n",
      "          'lacking': 1,\n",
      "          'nactually': 1,\n",
      "          'part': 1,\n",
      "          'problem': 1,\n",
      "          'sure': 1,\n",
      "          'rooting': 1,\n",
      "          'green': 1,\n",
      "          'attitude': 1,\n",
      "          'paperthin': 1,\n",
      "          'humans': 1,\n",
      "          'trying': 1,\n",
      "          'summed': 1,\n",
      "          'simply': 1,\n",
      "          'nafter': 1,\n",
      "          'sinking': 1,\n",
      "          'ships': 1,\n",
      "          'leaving': 1,\n",
      "          'footprints': 1,\n",
      "          'tropical': 1,\n",
      "          'islands': 1,\n",
      "          'shows': 1,\n",
      "          'apple': 1,\n",
      "          'usual': 1,\n",
      "          'tourist': 1,\n",
      "          'things': 1,\n",
      "          'stops': 1,\n",
      "          'madison': 1,\n",
      "          'square': 1,\n",
      "          'garden': 1,\n",
      "          'visits': 1,\n",
      "          'chrysler': 1,\n",
      "          'goes': 1,\n",
      "          'walk': 1,\n",
      "          'central': 1,\n",
      "          'takes': 1,\n",
      "          'subway': 1,\n",
      "          'process': 1,\n",
      "          'knocks': 1,\n",
      "          'buildings': 1,\n",
      "          'steps': 1,\n",
      "          'countless': 1,\n",
      "          'cabs': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'trouble': 1,\n",
      "          'traffic': 1,\n",
      "          'jams': 1,\n",
      "          'non': 1,\n",
      "          'elite': 1,\n",
      "          'u': 1,\n",
      "          'army': 1,\n",
      "          'unit': 1,\n",
      "          'led': 1,\n",
      "          'slightly': 1,\n",
      "          'lessarrogantthanusual': 1,\n",
      "          'man': 1,\n",
      "          'kevin': 1,\n",
      "          'dunn': 1,\n",
      "          'biologist': 1,\n",
      "          'named': 1,\n",
      "          'tatopoulos': 1,\n",
      "          'opinion': 1,\n",
      "          'guy': 1,\n",
      "          'actually': 1,\n",
      "          'grown': 1,\n",
      "          'enormous': 1,\n",
      "          'proportions': 1,\n",
      "          'result': 1,\n",
      "          'radiation': 1,\n",
      "          'given': 1,\n",
      "          'atomic': 1,\n",
      "          'bomb': 1,\n",
      "          'tests': 1,\n",
      "          'south': 1,\n",
      "          'pacific': 1,\n",
      "          'words': 1,\n",
      "          'mutated': 1,\n",
      "          'aberration': 1,\n",
      "          'incipient': 1,\n",
      "          'creature': 1,\n",
      "          'kind': 1,\n",
      "          'nas': 1,\n",
      "          'luck': 1,\n",
      "          'old': 1,\n",
      "          'girlfriend': 1,\n",
      "          'audrey': 1,\n",
      "          'maria': 1,\n",
      "          'reporter': 1,\n",
      "          'based': 1,\n",
      "          'tv': 1,\n",
      "          'station': 1,\n",
      "          'nalong': 1,\n",
      "          'cameraman': 1,\n",
      "          'friend': 1,\n",
      "          'decides': 1,\n",
      "          'follow': 1,\n",
      "          'trails': 1,\n",
      "          'rejected': 1,\n",
      "          'member': 1,\n",
      "          'secret': 1,\n",
      "          'service': 1,\n",
      "          'recruits': 1,\n",
      "          'assignment': 1,\n",
      "          'ninstead': 1,\n",
      "          'stomping': 1,\n",
      "          'tokyo': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'destroyed': 1,\n",
      "          'recent': 1,\n",
      "          'deep': 1,\n",
      "          'impact': 1,\n",
      "          'armageddon': 1,\n",
      "          'becoming': 1,\n",
      "          'boring': 1,\n",
      "          'whole': 1,\n",
      "          'tradition': 1,\n",
      "          'roaming': 1,\n",
      "          'started': 1,\n",
      "          'ape': 1,\n",
      "          '30': 1,\n",
      "          'feet': 1,\n",
      "          'tall': 1,\n",
      "          'climb': 1,\n",
      "          'empire': 1,\n",
      "          'state': 1,\n",
      "          'nat': 1,\n",
      "          'ten': 1,\n",
      "          'height': 1,\n",
      "          'knock': 1,\n",
      "          'contains': 1,\n",
      "          'lame': 1,\n",
      "          'attempts': 1,\n",
      "          'humor': 1,\n",
      "          'ongoing': 1,\n",
      "          'feud': 1,\n",
      "          'wife': 1,\n",
      "          'sitcom': 1,\n",
      "          'material': 1,\n",
      "          'unfunny': 1,\n",
      "          'repetitive': 1,\n",
      "          'gag': 1,\n",
      "          'pronounce': 1,\n",
      "          'last': 1,\n",
      "          'name': 1,\n",
      "          'properly': 1,\n",
      "          'tame': 1,\n",
      "          'attack': 1,\n",
      "          'critics': 1,\n",
      "          'roger': 1,\n",
      "          'siskel': 1,\n",
      "          'nboth': 1,\n",
      "          'popular': 1,\n",
      "          'personalities': 1,\n",
      "          'alter': 1,\n",
      "          'egos': 1,\n",
      "          'mayor': 1,\n",
      "          'played': 1,\n",
      "          'michael': 1,\n",
      "          'lerner': 1,\n",
      "          'lorry': 1,\n",
      "          'goldman': 1,\n",
      "          'campaign': 1,\n",
      "          'manager': 1,\n",
      "          'neberts': 1,\n",
      "          'reelection': 1,\n",
      "          'slogan': 1,\n",
      "          'surprisingly': 1,\n",
      "          'thumbs': 1,\n",
      "          'siskelebert': 1,\n",
      "          'stuff': 1,\n",
      "          'amusing': 1,\n",
      "          'used': 1,\n",
      "          'grows': 1,\n",
      "          'tiresome': 1,\n",
      "          'characters': 1,\n",
      "          'dont': 1,\n",
      "          'serve': 1,\n",
      "          'real': 1,\n",
      "          'purpose': 1,\n",
      "          'keep': 1,\n",
      "          'popping': 1,\n",
      "          'saddled': 1,\n",
      "          'unimpressive': 1,\n",
      "          'cast': 1,\n",
      "          'largely': 1,\n",
      "          'risk': 1,\n",
      "          'human': 1,\n",
      "          'performance': 1,\n",
      "          'upstaging': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'good': 1,\n",
      "          'performances': 1,\n",
      "          'done': 1,\n",
      "          'share': 1,\n",
      "          'solid': 1,\n",
      "          'acting': 1,\n",
      "          'past': 1,\n",
      "          'alist': 1,\n",
      "          'names': 1,\n",
      "          'considering': 1,\n",
      "          'quality': 1,\n",
      "          'writing': 1,\n",
      "          'pacino': 1,\n",
      "          'deniro': 1,\n",
      "          'hard': 1,\n",
      "          'pressed': 1,\n",
      "          'shine': 1,\n",
      "          'nmaria': 1,\n",
      "          'dear': 1,\n",
      "          'god': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'great': 1,\n",
      "          'expectations': 1,\n",
      "          'present': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'nultimately': 1,\n",
      "          'critic': 1,\n",
      "          'ntristar': 1,\n",
      "          'assumed': 1,\n",
      "          'selfproclaimed': 1,\n",
      "          'event': 1,\n",
      "          'motion': 1,\n",
      "          'pictures': 1,\n",
      "          'criticproof': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'wordofmouthproof': 1,\n",
      "          'nthose': 1,\n",
      "          'friends': 1,\n",
      "          'nso': 1,\n",
      "          'go': 1,\n",
      "          'record': 1,\n",
      "          'assert': 1,\n",
      "          'idiotic': 1,\n",
      "          'blockbuster': 1,\n",
      "          'spitting': 1,\n",
      "          'wind': 1,\n",
      "          'nemmerich': 1,\n",
      "          'master': 1,\n",
      "          'illusionists': 1,\n",
      "          'waving': 1,\n",
      "          'wands': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'audiences': 1,\n",
      "          'smoke': 1,\n",
      "          'mirrors': 1,\n",
      "          'nits': 1,\n",
      "          'probably': 1,\n",
      "          'hope': 1,\n",
      "          'moviegoers': 1,\n",
      "          'wake': 1,\n",
      "          'realize': 1,\n",
      "          'theyve': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nand': 6,\n",
      "          'n': 6,\n",
      "          'nhe': 3,\n",
      "          'work': 3,\n",
      "          'never': 3,\n",
      "          'nthe': 3,\n",
      "          'film': 3,\n",
      "          'filming': 3,\n",
      "          'doesnt': 3,\n",
      "          'tries': 3,\n",
      "          'moved': 2,\n",
      "          'nthen': 2,\n",
      "          'took': 2,\n",
      "          'shakespeares': 2,\n",
      "          'read': 2,\n",
      "          'cover': 2,\n",
      "          'camera': 2,\n",
      "          'result': 2,\n",
      "          'romeo': 2,\n",
      "          'complete': 2,\n",
      "          'failure': 2,\n",
      "          'films': 2,\n",
      "          'nthis': 2,\n",
      "          'action': 2,\n",
      "          'ni': 2,\n",
      "          'play': 2,\n",
      "          'look': 2,\n",
      "          'hes': 2,\n",
      "          'us': 2,\n",
      "          'recently': 1,\n",
      "          'one': 1,\n",
      "          'night': 1,\n",
      "          'young': 1,\n",
      "          'director': 1,\n",
      "          'named': 1,\n",
      "          'baz': 1,\n",
      "          'luhrmann': 1,\n",
      "          'couldnt': 1,\n",
      "          'sleep': 1,\n",
      "          'tumbled': 1,\n",
      "          'bed': 1,\n",
      "          'television': 1,\n",
      "          'watched': 1,\n",
      "          'mtv': 1,\n",
      "          'hour': 1,\n",
      "          'kitchen': 1,\n",
      "          'spent': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'eating': 1,\n",
      "          'spoiled': 1,\n",
      "          'food': 1,\n",
      "          'volume': 1,\n",
      "          'really': 1,\n",
      "          'paying': 1,\n",
      "          'attention': 1,\n",
      "          'words': 1,\n",
      "          'plot': 1,\n",
      "          'climax': 1,\n",
      "          'video': 1,\n",
      "          'pressed': 1,\n",
      "          'button': 1,\n",
      "          'nwilliam': 1,\n",
      "          'juliet': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'nthough': 1,\n",
      "          'fair': 1,\n",
      "          'interesting': 1,\n",
      "          'idea': 1,\n",
      "          'core': 1,\n",
      "          'make': 1,\n",
      "          'shakespeare': 1,\n",
      "          'appealing': 1,\n",
      "          'crowds': 1,\n",
      "          'done': 1,\n",
      "          'moving': 1,\n",
      "          'around': 1,\n",
      "          'rapid': 1,\n",
      "          'rate': 1,\n",
      "          'cant': 1,\n",
      "          'see': 1,\n",
      "          'going': 1,\n",
      "          'dialogue': 1,\n",
      "          'voice': 1,\n",
      "          'shooting': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'like': 1,\n",
      "          'calvin': 1,\n",
      "          'klein': 1,\n",
      "          'model': 1,\n",
      "          'making': 1,\n",
      "          'frame': 1,\n",
      "          'go': 1,\n",
      "          'still': 1,\n",
      "          'flashing': 1,\n",
      "          'characters': 1,\n",
      "          'name': 1,\n",
      "          'bottom': 1,\n",
      "          'long': 1,\n",
      "          'tedious': 1,\n",
      "          'sequences': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'mean': 1,\n",
      "          'man': 1,\n",
      "          '90s': 1,\n",
      "          'dude': 1,\n",
      "          'nhowever': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'terrible': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'examples': 1,\n",
      "          'batman': 1,\n",
      "          'robin': 1,\n",
      "          'island': 1,\n",
      "          'doctor': 1,\n",
      "          'moreau': 1,\n",
      "          'rule': 1,\n",
      "          'apply': 1,\n",
      "          'takes': 1,\n",
      "          'seriously': 1,\n",
      "          'nthat': 1,\n",
      "          'major': 1,\n",
      "          'fault': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'pointed': 1,\n",
      "          'friend': 1,\n",
      "          'alex': 1,\n",
      "          'singing': 1,\n",
      "          'songs': 1,\n",
      "          'leonard': 1,\n",
      "          'bernstein': 1,\n",
      "          'throughout': 1,\n",
      "          'original': 1,\n",
      "          'powerful': 1,\n",
      "          'piece': 1,\n",
      "          'author': 1,\n",
      "          'remained': 1,\n",
      "          'neutral': 1,\n",
      "          'didnt': 1,\n",
      "          'take': 1,\n",
      "          'sides': 1,\n",
      "          'nhere': 1,\n",
      "          'clear': 1,\n",
      "          'supposed': 1,\n",
      "          'side': 1,\n",
      "          'way': 1,\n",
      "          'begining': 1,\n",
      "          'hero': 1,\n",
      "          'dicaprios': 1,\n",
      "          'awful': 1,\n",
      "          'performance': 1,\n",
      "          'help': 1,\n",
      "          'nluhrmann': 1,\n",
      "          'decides': 1,\n",
      "          'wants': 1,\n",
      "          'entertain': 1,\n",
      "          'enlighten': 1,\n",
      "          'mess': 1,\n",
      "          'nyou': 1,\n",
      "          'feel': 1,\n",
      "          'striving': 1,\n",
      "          'something': 1,\n",
      "          'isnt': 1,\n",
      "          'pull': 1,\n",
      "          'mix': 1,\n",
      "          'drag': 1,\n",
      "          'queens': 1,\n",
      "          'filmed': 1,\n",
      "          'purposefully': 1,\n",
      "          'arty': 1,\n",
      "          'angles': 1,\n",
      "          'hard': 1,\n",
      "          'nkey': 1,\n",
      "          'word': 1,\n",
      "          'oh': 1,\n",
      "          'water': 1,\n",
      "          'npretty': 1,\n",
      "          'nwhat': 1,\n",
      "          'represent': 1,\n",
      "          'nwhy': 1,\n",
      "          'people': 1,\n",
      "          'ugly': 1,\n",
      "          'things': 1,\n",
      "          'scrambled': 1,\n",
      "          'away': 1,\n",
      "          'tv': 1,\n",
      "          'set': 1,\n",
      "          'feeling': 1,\n",
      "          'guilty': 1,\n",
      "          'could': 1,\n",
      "          'keep': 1,\n",
      "          'straight': 1,\n",
      "          'face': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'person': 4,\n",
      "          'wife': 4,\n",
      "          'nthe': 4,\n",
      "          'movie': 4,\n",
      "          'would': 4,\n",
      "          'david': 3,\n",
      "          'kill': 3,\n",
      "          'films': 3,\n",
      "          'make': 3,\n",
      "          'think': 3,\n",
      "          'might': 3,\n",
      "          'film': 3,\n",
      "          'suspense': 3,\n",
      "          'crisis': 2,\n",
      "          'may': 2,\n",
      "          'one': 2,\n",
      "          'nas': 2,\n",
      "          'steven': 2,\n",
      "          'nhes': 2,\n",
      "          'money': 2,\n",
      "          'nin': 2,\n",
      "          'matter': 2,\n",
      "          'paltrow': 2,\n",
      "          'life': 2,\n",
      "          'new': 2,\n",
      "          'lover': 2,\n",
      "          'million': 2,\n",
      "          'nstevens': 2,\n",
      "          'murder': 2,\n",
      "          'summer': 2,\n",
      "          'style': 2,\n",
      "          'nand': 2,\n",
      "          'much': 2,\n",
      "          'every': 2,\n",
      "          'turn': 2,\n",
      "          'walking': 2,\n",
      "          'sense': 2,\n",
      "          'first': 2,\n",
      "          'happen': 2,\n",
      "          'going': 2,\n",
      "          'deciding': 2,\n",
      "          'plan': 2,\n",
      "          'choice': 2,\n",
      "          'nwhy': 2,\n",
      "          'times': 1,\n",
      "          'people': 1,\n",
      "          'driven': 1,\n",
      "          'desperate': 1,\n",
      "          'measures': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'constitutes': 1,\n",
      "          'differs': 1,\n",
      "          'nwhat': 1,\n",
      "          'disastrous': 1,\n",
      "          'situation': 1,\n",
      "          'seen': 1,\n",
      "          'challenge': 1,\n",
      "          'another': 1,\n",
      "          'deepak': 1,\n",
      "          'chopra': 1,\n",
      "          'known': 1,\n",
      "          'say': 1,\n",
      "          'ride': 1,\n",
      "          'rider': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'clearthinking': 1,\n",
      "          'always': 1,\n",
      "          'reaction': 1,\n",
      "          'problems': 1,\n",
      "          'nwall': 1,\n",
      "          'street': 1,\n",
      "          'wheeler': 1,\n",
      "          'dealer': 1,\n",
      "          'taylor': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'man': 1,\n",
      "          'troubles': 1,\n",
      "          'sunk': 1,\n",
      "          'illegal': 1,\n",
      "          'financial': 1,\n",
      "          'activities': 1,\n",
      "          'blown': 1,\n",
      "          'face': 1,\n",
      "          'days': 1,\n",
      "          'lose': 1,\n",
      "          'nhis': 1,\n",
      "          'emily': 1,\n",
      "          'gwyneth': 1,\n",
      "          'highlyplaced': 1,\n",
      "          'un': 1,\n",
      "          'interpreter': 1,\n",
      "          'happy': 1,\n",
      "          'either': 1,\n",
      "          'nher': 1,\n",
      "          'marriage': 1,\n",
      "          'cold': 1,\n",
      "          'unfulfilling': 1,\n",
      "          'nunknown': 1,\n",
      "          'shaw': 1,\n",
      "          'viggo': 1,\n",
      "          'mortensen': 1,\n",
      "          'painter': 1,\n",
      "          'excon': 1,\n",
      "          'history': 1,\n",
      "          'bilking': 1,\n",
      "          'wealthy': 1,\n",
      "          'women': 1,\n",
      "          'nemily': 1,\n",
      "          'prime': 1,\n",
      "          'target': 1,\n",
      "          'shes': 1,\n",
      "          'worth': 1,\n",
      "          '100': 1,\n",
      "          'solution': 1,\n",
      "          'predicament': 1,\n",
      "          'offer': 1,\n",
      "          'half': 1,\n",
      "          'artist': 1,\n",
      "          'accepts': 1,\n",
      "          'underway': 1,\n",
      "          'ndrawing': 1,\n",
      "          'frederick': 1,\n",
      "          'knotts': 1,\n",
      "          'play': 1,\n",
      "          'loosely': 1,\n",
      "          'based': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'dial': 1,\n",
      "          'alltoo': 1,\n",
      "          'typical': 1,\n",
      "          'releases': 1,\n",
      "          'nall': 1,\n",
      "          'substance': 1,\n",
      "          'theres': 1,\n",
      "          'really': 1,\n",
      "          'ndirector': 1,\n",
      "          'andrew': 1,\n",
      "          'davis': 1,\n",
      "          'accomplished': 1,\n",
      "          'witness': 1,\n",
      "          'bestforgotten': 1,\n",
      "          'made': 1,\n",
      "          'exactly': 1,\n",
      "          'wrong': 1,\n",
      "          'choices': 1,\n",
      "          'almost': 1,\n",
      "          'ndouglas': 1,\n",
      "          'shown': 1,\n",
      "          'us': 1,\n",
      "          'skillful': 1,\n",
      "          'actors': 1,\n",
      "          'previous': 1,\n",
      "          'nmortensen': 1,\n",
      "          'showed': 1,\n",
      "          'promise': 1,\n",
      "          'past': 1,\n",
      "          'nhere': 1,\n",
      "          'three': 1,\n",
      "          'uninterestingly': 1,\n",
      "          'roles': 1,\n",
      "          'oddly': 1,\n",
      "          'waxen': 1,\n",
      "          'faces': 1,\n",
      "          'shows': 1,\n",
      "          'suchet': 1,\n",
      "          'york': 1,\n",
      "          'detective': 1,\n",
      "          'mohamed': 1,\n",
      "          'karaman': 1,\n",
      "          'onscreen': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'likable': 1,\n",
      "          'disappears': 1,\n",
      "          'concern': 1,\n",
      "          'create': 1,\n",
      "          'nsurprises': 1,\n",
      "          'important': 1,\n",
      "          'audience': 1,\n",
      "          'keeps': 1,\n",
      "          'waiting': 1,\n",
      "          'something': 1,\n",
      "          'nothing': 1,\n",
      "          'ever': 1,\n",
      "          'nnearly': 1,\n",
      "          'event': 1,\n",
      "          'telegraphed': 1,\n",
      "          'advance': 1,\n",
      "          'ncloseup': 1,\n",
      "          'object': 1,\n",
      "          'action': 1,\n",
      "          'easy': 1,\n",
      "          'guess': 1,\n",
      "          'whats': 1,\n",
      "          'plods': 1,\n",
      "          'towards': 1,\n",
      "          'inevitable': 1,\n",
      "          'conclusion': 1,\n",
      "          'keep': 1,\n",
      "          'expecting': 1,\n",
      "          'plot': 1,\n",
      "          'twist': 1,\n",
      "          'worthwhile': 1,\n",
      "          'nits': 1,\n",
      "          'hopeless': 1,\n",
      "          'quest': 1,\n",
      "          'story': 1,\n",
      "          'doesnt': 1,\n",
      "          'loaded': 1,\n",
      "          'neven': 1,\n",
      "          'unfriendly': 1,\n",
      "          'relations': 1,\n",
      "          'youd': 1,\n",
      "          'could': 1,\n",
      "          'talked': 1,\n",
      "          'difficulty': 1,\n",
      "          'rather': 1,\n",
      "          'nwhen': 1,\n",
      "          'decide': 1,\n",
      "          'dire': 1,\n",
      "          'makes': 1,\n",
      "          'unreasonable': 1,\n",
      "          'nif': 1,\n",
      "          'hire': 1,\n",
      "          'someone': 1,\n",
      "          'nno': 1,\n",
      "          'sleazy': 1,\n",
      "          'chance': 1,\n",
      "          'opportunity': 1,\n",
      "          'breakin': 1,\n",
      "          'apartment': 1,\n",
      "          'take': 1,\n",
      "          'davids': 1,\n",
      "          'loft': 1,\n",
      "          'bad': 1,\n",
      "          'neighborhood': 1,\n",
      "          'nwhile': 1,\n",
      "          'among': 1,\n",
      "          'numerous': 1,\n",
      "          'well': 1,\n",
      "          'skip': 1,\n",
      "          'nyoull': 1,\n",
      "          'find': 1,\n",
      "          'offers': 1,\n",
      "          'watching': 1,\n",
      "          'weather': 1,\n",
      "          'channel': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 11,\n",
      "          'virus': 7,\n",
      "          'monster': 6,\n",
      "          'nthe': 4,\n",
      "          'big': 4,\n",
      "          'boat': 3,\n",
      "          'would': 3,\n",
      "          'better': 2,\n",
      "          'russian': 2,\n",
      "          'space': 2,\n",
      "          'mir': 2,\n",
      "          'transmit': 2,\n",
      "          'something': 2,\n",
      "          'lots': 2,\n",
      "          'satellites': 2,\n",
      "          'donald': 2,\n",
      "          'sutherland': 2,\n",
      "          'looking': 2,\n",
      "          'least': 2,\n",
      "          'many': 2,\n",
      "          'reason': 2,\n",
      "          'isnt': 2,\n",
      "          'really': 2,\n",
      "          'nso': 2,\n",
      "          'upon': 2,\n",
      "          'borg': 2,\n",
      "          'alien': 2,\n",
      "          'lifeform': 2,\n",
      "          'machines': 2,\n",
      "          'spare': 2,\n",
      "          'blah': 2,\n",
      "          'ni': 2,\n",
      "          'could': 2,\n",
      "          'plot': 2,\n",
      "          'say': 2,\n",
      "          'thing': 2,\n",
      "          'man': 2,\n",
      "          'movies': 2,\n",
      "          'nfor': 2,\n",
      "          'example': 2,\n",
      "          'aliens': 2,\n",
      "          'actually': 2,\n",
      "          'makes': 2,\n",
      "          'real': 2,\n",
      "          'person': 2,\n",
      "          'ever': 2,\n",
      "          'scary': 2,\n",
      "          'without': 1,\n",
      "          'nany': 1,\n",
      "          'hurdle': 1,\n",
      "          'large': 1,\n",
      "          'overcome': 1,\n",
      "          'pretty': 1,\n",
      "          'damn': 1,\n",
      "          'good': 1,\n",
      "          'otherwise': 1,\n",
      "          'nsadly': 1,\n",
      "          'deliver': 1,\n",
      "          'level': 1,\n",
      "          'opens': 1,\n",
      "          'station': 1,\n",
      "          'never': 1,\n",
      "          'find': 1,\n",
      "          'nsudddenly': 1,\n",
      "          'wave': 1,\n",
      "          'colorful': 1,\n",
      "          'lightning': 1,\n",
      "          'comes': 1,\n",
      "          'flying': 1,\n",
      "          'winds': 1,\n",
      "          'destroying': 1,\n",
      "          'using': 1,\n",
      "          'aforementioned': 1,\n",
      "          'ncut': 1,\n",
      "          'seven': 1,\n",
      "          'days': 1,\n",
      "          'later': 1,\n",
      "          'meet': 1,\n",
      "          'band': 1,\n",
      "          'seafaring': 1,\n",
      "          'vultures': 1,\n",
      "          'nsee': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'sailing': 1,\n",
      "          'around': 1,\n",
      "          'deadinthewater': 1,\n",
      "          'ships': 1,\n",
      "          'rescue': 1,\n",
      "          'collect': 1,\n",
      "          'reward': 1,\n",
      "          'money': 1,\n",
      "          'nat': 1,\n",
      "          'think': 1,\n",
      "          'thats': 1,\n",
      "          'nalong': 1,\n",
      "          'things': 1,\n",
      "          'film': 1,\n",
      "          'middle': 1,\n",
      "          'ocean': 1,\n",
      "          'explained': 1,\n",
      "          'stumble': 1,\n",
      "          'decide': 1,\n",
      "          'haul': 1,\n",
      "          'back': 1,\n",
      "          'waters': 1,\n",
      "          'problem': 1,\n",
      "          'crew': 1,\n",
      "          'starts': 1,\n",
      "          'disappearing': 1,\n",
      "          'onebyone': 1,\n",
      "          'turning': 1,\n",
      "          'nyes': 1,\n",
      "          'ncomplete': 1,\n",
      "          'red': 1,\n",
      "          'laser': 1,\n",
      "          'beam': 1,\n",
      "          'place': 1,\n",
      "          'eye': 1,\n",
      "          'napparently': 1,\n",
      "          'survive': 1,\n",
      "          'inside': 1,\n",
      "          'electrical': 1,\n",
      "          'creates': 1,\n",
      "          'makeshift': 1,\n",
      "          'uses': 1,\n",
      "          'humans': 1,\n",
      "          'parts': 1,\n",
      "          'nblah': 1,\n",
      "          'go': 1,\n",
      "          'forever': 1,\n",
      "          'describing': 1,\n",
      "          'ludicrous': 1,\n",
      "          'socalled': 1,\n",
      "          'wont': 1,\n",
      "          'nsuffice': 1,\n",
      "          'original': 1,\n",
      "          'play': 1,\n",
      "          'irish': 1,\n",
      "          'neverything': 1,\n",
      "          'else': 1,\n",
      "          'taken': 1,\n",
      "          'resemble': 1,\n",
      "          'found': 1,\n",
      "          'littleseen': 1,\n",
      "          'japanese': 1,\n",
      "          'tetsuothe': 1,\n",
      "          'iron': 1,\n",
      "          'nand': 1,\n",
      "          'right': 1,\n",
      "          'funny': 1,\n",
      "          'expecting': 1,\n",
      "          'enjoy': 1,\n",
      "          'soft': 1,\n",
      "          'spot': 1,\n",
      "          'cheesy': 1,\n",
      "          'like': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'underappreciated': 1,\n",
      "          'deep': 1,\n",
      "          'rising': 1,\n",
      "          'nbut': 1,\n",
      "          'mentioned': 1,\n",
      "          'earlier': 1,\n",
      "          'doesnt': 1,\n",
      "          'even': 1,\n",
      "          'nit': 1,\n",
      "          'pile': 1,\n",
      "          'circuits': 1,\n",
      "          'wires': 1,\n",
      "          'expects': 1,\n",
      "          'audience': 1,\n",
      "          'fear': 1,\n",
      "          'ridiculous': 1,\n",
      "          'contraption': 1,\n",
      "          'n': 1,\n",
      "          'type': 1,\n",
      "          'wonder': 1,\n",
      "          'screenwriter': 1,\n",
      "          'thinking': 1,\n",
      "          'wrote': 1,\n",
      "          'nbesides': 1,\n",
      "          'lame': 1,\n",
      "          'chock': 1,\n",
      "          'full': 1,\n",
      "          'dialogue': 1,\n",
      "          'situations': 1,\n",
      "          'allow': 1,\n",
      "          'get': 1,\n",
      "          'scene': 1,\n",
      "          'late': 1,\n",
      "          'one': 1,\n",
      "          'characters': 1,\n",
      "          'attempts': 1,\n",
      "          'negotiate': 1,\n",
      "          'nnow': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'came': 1,\n",
      "          'viewed': 1,\n",
      "          'mankind': 1,\n",
      "          'eliminated': 1,\n",
      "          'doubt': 1,\n",
      "          'attempt': 1,\n",
      "          'nthat': 1,\n",
      "          'much': 1,\n",
      "          'sense': 1,\n",
      "          'baby': 1,\n",
      "          'squirrel': 1,\n",
      "          'calmly': 1,\n",
      "          'asking': 1,\n",
      "          'fierce': 1,\n",
      "          'predator': 1,\n",
      "          'life': 1,\n",
      "          'nfinally': 1,\n",
      "          'filmmakers': 1,\n",
      "          'done': 1,\n",
      "          'make': 1,\n",
      "          'little': 1,\n",
      "          'nas': 1,\n",
      "          'frightening': 1,\n",
      "          'box': 1,\n",
      "          'cookies': 1,\n",
      "          'nskip': 1,\n",
      "          'nif': 1,\n",
      "          'cool': 1,\n",
      "          'want': 1,\n",
      "          'rent': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'granddaddy': 1,\n",
      "          'genre': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'jurassic': 6,\n",
      "          'park': 6,\n",
      "          'kirbys': 4,\n",
      "          'young': 4,\n",
      "          'new': 4,\n",
      "          'nthe': 4,\n",
      "          'dr': 3,\n",
      "          'grant': 3,\n",
      "          'man': 3,\n",
      "          'lost': 3,\n",
      "          'iii': 3,\n",
      "          'neill': 2,\n",
      "          'longer': 2,\n",
      "          'isla': 2,\n",
      "          'rather': 2,\n",
      "          'william': 2,\n",
      "          'h': 2,\n",
      "          'macy': 2,\n",
      "          'family': 2,\n",
      "          'site': 2,\n",
      "          'world': 2,\n",
      "          'given': 2,\n",
      "          'eric': 2,\n",
      "          'morgan': 2,\n",
      "          'election': 2,\n",
      "          'goes': 2,\n",
      "          'billy': 2,\n",
      "          'son': 2,\n",
      "          'couple': 2,\n",
      "          'michael': 2,\n",
      "          'jeter': 2,\n",
      "          'n': 2,\n",
      "          'october': 2,\n",
      "          'sky': 2,\n",
      "          'head': 2,\n",
      "          'alan': 1,\n",
      "          'sam': 1,\n",
      "          'becoming': 1,\n",
      "          'disillusioned': 1,\n",
      "          'npaleontology': 1,\n",
      "          'sexy': 1,\n",
      "          'science': 1,\n",
      "          'since': 1,\n",
      "          'ingen': 1,\n",
      "          'corporation': 1,\n",
      "          'cloned': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'nhis': 1,\n",
      "          'lectures': 1,\n",
      "          'bring': 1,\n",
      "          'people': 1,\n",
      "          'interested': 1,\n",
      "          'adventures': 1,\n",
      "          'nubla': 1,\n",
      "          'research': 1,\n",
      "          'funding': 1,\n",
      "          'dollars': 1,\n",
      "          'drying': 1,\n",
      "          'nwhen': 1,\n",
      "          'fargo': 1,\n",
      "          'tea': 1,\n",
      "          'leoni': 1,\n",
      "          'ask': 1,\n",
      "          'guide': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'anniversary': 1,\n",
      "          'flyover': 1,\n",
      "          'sorna': 1,\n",
      "          'notorious': 1,\n",
      "          'b': 1,\n",
      "          'hes': 1,\n",
      "          'disdainful': 1,\n",
      "          'wave': 1,\n",
      "          'checkbook': 1,\n",
      "          'reconsiders': 1,\n",
      "          'nhowever': 1,\n",
      "          'havent': 1,\n",
      "          'real': 1,\n",
      "          'agenda': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'audience': 1,\n",
      "          'tipped': 1,\n",
      "          'film': 1,\n",
      "          'begins': 1,\n",
      "          'showing': 1,\n",
      "          'us': 1,\n",
      "          'trevor': 1,\n",
      "          'patriot': 1,\n",
      "          'boy': 1,\n",
      "          'ben': 1,\n",
      "          'mark': 1,\n",
      "          'harelik': 1,\n",
      "          'going': 1,\n",
      "          'paragliding': 1,\n",
      "          'adventure': 1,\n",
      "          'island': 1,\n",
      "          'awry': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'cheesy': 1,\n",
      "          'rear': 1,\n",
      "          'projection': 1,\n",
      "          'ngrants': 1,\n",
      "          'established': 1,\n",
      "          'back': 1,\n",
      "          'home': 1,\n",
      "          'right': 1,\n",
      "          'hand': 1,\n",
      "          'brennan': 1,\n",
      "          'alessandro': 1,\n",
      "          'nivola': 1,\n",
      "          'loves': 1,\n",
      "          'labours': 1,\n",
      "          'dig': 1,\n",
      "          'montana': 1,\n",
      "          'sorely': 1,\n",
      "          'lacking': 1,\n",
      "          'funds': 1,\n",
      "          'nhe': 1,\n",
      "          'also': 1,\n",
      "          'pays': 1,\n",
      "          'visit': 1,\n",
      "          'old': 1,\n",
      "          'flame': 1,\n",
      "          'ellie': 1,\n",
      "          'sattler': 1,\n",
      "          'laura': 1,\n",
      "          'dern': 1,\n",
      "          'married': 1,\n",
      "          'another': 1,\n",
      "          'calls': 1,\n",
      "          'dinosaur': 1,\n",
      "          'apparently': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'dredging': 1,\n",
      "          'films': 1,\n",
      "          'poorly': 1,\n",
      "          'imagined': 1,\n",
      "          'finale': 1,\n",
      "          'ngrant': 1,\n",
      "          'takes': 1,\n",
      "          'along': 1,\n",
      "          'trip': 1,\n",
      "          'really': 1,\n",
      "          'illegal': 1,\n",
      "          'gambit': 1,\n",
      "          'save': 1,\n",
      "          'paraglider': 1,\n",
      "          'arent': 1,\n",
      "          'millionaires': 1,\n",
      "          'making': 1,\n",
      "          'grants': 1,\n",
      "          'check': 1,\n",
      "          'bogus': 1,\n",
      "          'theyre': 1,\n",
      "          'separated': 1,\n",
      "          'well': 1,\n",
      "          'amandas': 1,\n",
      "          'boyfriend': 1,\n",
      "          'makes': 1,\n",
      "          'much': 1,\n",
      "          'sense': 1,\n",
      "          'meaning': 1,\n",
      "          'gooey': 1,\n",
      "          'dynamics': 1,\n",
      "          'waiting': 1,\n",
      "          'dino': 1,\n",
      "          'dining': 1,\n",
      "          'hired': 1,\n",
      "          'hands': 1,\n",
      "          'obvious': 1,\n",
      "          'bait': 1,\n",
      "          'threesome': 1,\n",
      "          'led': 1,\n",
      "          'mr': 1,\n",
      "          'udesky': 1,\n",
      "          'gift': 1,\n",
      "          'didnt': 1,\n",
      "          'anyone': 1,\n",
      "          'consider': 1,\n",
      "          'casting': 1,\n",
      "          'together': 1,\n",
      "          'related': 1,\n",
      "          'little': 1,\n",
      "          'odd': 1,\n",
      "          'nas': 1,\n",
      "          'directed': 1,\n",
      "          'joe': 1,\n",
      "          'johnston': 1,\n",
      "          'jumanji': 1,\n",
      "          'spielberg': 1,\n",
      "          'produced': 1,\n",
      "          'one': 1,\n",
      "          'risible': 1,\n",
      "          'script': 1,\n",
      "          'peter': 1,\n",
      "          'buchman': 1,\n",
      "          'team': 1,\n",
      "          'alexander': 1,\n",
      "          'payne': 1,\n",
      "          'jim': 1,\n",
      "          'taylor': 1,\n",
      "          'nothing': 1,\n",
      "          'quickie': 1,\n",
      "          'monster': 1,\n",
      "          'flick': 1,\n",
      "          'dinos': 1,\n",
      "          'spinosauraus': 1,\n",
      "          'trex': 1,\n",
      "          'pteranodons': 1,\n",
      "          'plot': 1,\n",
      "          'series': 1,\n",
      "          'coincidences': 1,\n",
      "          'combined': 1,\n",
      "          'extreme': 1,\n",
      "          'leaps': 1,\n",
      "          'faith': 1,\n",
      "          'trifecta': 1,\n",
      "          'stupid': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'tricks': 1,\n",
      "          'effects': 1,\n",
      "          'shot': 1,\n",
      "          'television': 1,\n",
      "          'cinematographer': 1,\n",
      "          'shelly': 1,\n",
      "          'johnson': 1,\n",
      "          'murky': 1,\n",
      "          'looking': 1,\n",
      "          'times': 1,\n",
      "          'nfilm': 1,\n",
      "          'editing': 1,\n",
      "          'robert': 1,\n",
      "          'dalva': 1,\n",
      "          'presumably': 1,\n",
      "          'done': 1,\n",
      "          'machete': 1,\n",
      "          'keep': 1,\n",
      "          '90': 1,\n",
      "          'minute': 1,\n",
      "          'run': 1,\n",
      "          'time': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'reason': 1,\n",
      "          'explain': 1,\n",
      "          'ridiculous': 1,\n",
      "          'ending': 1,\n",
      "          'features': 1,\n",
      "          'survivors': 1,\n",
      "          'confronting': 1,\n",
      "          'pack': 1,\n",
      "          'raptors': 1,\n",
      "          'saved': 1,\n",
      "          'ludicrous': 1,\n",
      "          'logic': 1,\n",
      "          'jumps': 1,\n",
      "          'within': 1,\n",
      "          'minutes': 1,\n",
      "          'noriginal': 1,\n",
      "          'music': 1,\n",
      "          'davis': 1,\n",
      "          'repeats': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'original': 1,\n",
      "          'themes': 1,\n",
      "          'nwhile': 1,\n",
      "          'attempt': 1,\n",
      "          'inject': 1,\n",
      "          'humor': 1,\n",
      "          'humanity': 1,\n",
      "          'proceedings': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'plodding': 1,\n",
      "          'unexceptional': 1,\n",
      "          'probably': 1,\n",
      "          'provide': 1,\n",
      "          'quick': 1,\n",
      "          'entertainment': 1,\n",
      "          'go': 1,\n",
      "          'knowing': 1,\n",
      "          'expect': 1,\n",
      "          'crowd': 1,\n",
      "          'maybe': 1,\n",
      "          'liked': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wire': 6,\n",
      "          'barb': 5,\n",
      "          'anderson': 4,\n",
      "          'babe': 3,\n",
      "          'movie': 3,\n",
      "          'breasts': 3,\n",
      "          'one': 3,\n",
      "          'pamela': 2,\n",
      "          'characters': 2,\n",
      "          'call': 2,\n",
      "          'casablanca': 2,\n",
      "          'former': 2,\n",
      "          'resistance': 2,\n",
      "          'airport': 2,\n",
      "          'film': 2,\n",
      "          'lees': 1,\n",
      "          'first': 1,\n",
      "          'foray': 1,\n",
      "          'films': 1,\n",
      "          'highlights': 1,\n",
      "          'fact': 1,\n",
      "          'talent': 1,\n",
      "          'lies': 1,\n",
      "          'silicone': 1,\n",
      "          'enhanced': 1,\n",
      "          'assets': 1,\n",
      "          'nbeing': 1,\n",
      "          'notable': 1,\n",
      "          'member': 1,\n",
      "          'cast': 1,\n",
      "          'camera': 1,\n",
      "          'lingers': 1,\n",
      "          'lustily': 1,\n",
      "          'n': 1,\n",
      "          'body': 1,\n",
      "          'every': 1,\n",
      "          'opportunity': 1,\n",
      "          'making': 1,\n",
      "          'catch': 1,\n",
      "          'line': 1,\n",
      "          'dont': 1,\n",
      "          'sound': 1,\n",
      "          'ironic': 1,\n",
      "          'indeed': 1,\n",
      "          'nfrom': 1,\n",
      "          'opening': 1,\n",
      "          'treated': 1,\n",
      "          'striptease': 1,\n",
      "          'routine': 1,\n",
      "          'ending': 1,\n",
      "          'hurling': 1,\n",
      "          'stiletto': 1,\n",
      "          'smack': 1,\n",
      "          'eyes': 1,\n",
      "          'lusty': 1,\n",
      "          'male': 1,\n",
      "          'happened': 1,\n",
      "          'nthroughout': 1,\n",
      "          'ample': 1,\n",
      "          'footage': 1,\n",
      "          'enormous': 1,\n",
      "          'cleavage': 1,\n",
      "          'andersons': 1,\n",
      "          'least': 1,\n",
      "          'female': 1,\n",
      "          'extras': 1,\n",
      "          'nthis': 1,\n",
      "          'alone': 1,\n",
      "          'enough': 1,\n",
      "          'retitle': 1,\n",
      "          'nfor': 1,\n",
      "          'plot': 1,\n",
      "          'rehashes': 1,\n",
      "          'storyline': 1,\n",
      "          'nit': 1,\n",
      "          '2017': 1,\n",
      "          'middle': 1,\n",
      "          'second': 1,\n",
      "          'american': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'fighter': 1,\n",
      "          'runs': 1,\n",
      "          'joint': 1,\n",
      "          'steel': 1,\n",
      "          'harbour': 1,\n",
      "          'called': 1,\n",
      "          'hammerhead': 1,\n",
      "          'nknown': 1,\n",
      "          'attracting': 1,\n",
      "          'fighters': 1,\n",
      "          'sorts': 1,\n",
      "          'bar': 1,\n",
      "          'attracts': 1,\n",
      "          'attention': 1,\n",
      "          'government': 1,\n",
      "          'forces': 1,\n",
      "          'appear': 1,\n",
      "          'dressed': 1,\n",
      "          'nazistyle': 1,\n",
      "          'uniforms': 1,\n",
      "          'nin': 1,\n",
      "          'bashing': 1,\n",
      "          'helpless': 1,\n",
      "          'males': 1,\n",
      "          'showing': 1,\n",
      "          'trademark': 1,\n",
      "          'help': 1,\n",
      "          'lover': 1,\n",
      "          'wife': 1,\n",
      "          'get': 1,\n",
      "          'side': 1,\n",
      "          'town': 1,\n",
      "          'past': 1,\n",
      "          'governmentcontrolled': 1,\n",
      "          'areas': 1,\n",
      "          'freedom': 1,\n",
      "          'neven': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'except': 1,\n",
      "          'plane': 1,\n",
      "          'background': 1,\n",
      "          'modern': 1,\n",
      "          'private': 1,\n",
      "          'jet': 1,\n",
      "          'nthere': 1,\n",
      "          'hardly': 1,\n",
      "          'significant': 1,\n",
      "          'moments': 1,\n",
      "          'gets': 1,\n",
      "          'impression': 1,\n",
      "          'designed': 1,\n",
      "          'young': 1,\n",
      "          'teenagers': 1,\n",
      "          'familiar': 1,\n",
      "          'dark': 1,\n",
      "          'horse': 1,\n",
      "          'comics': 1,\n",
      "          'version': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'leaves': 1,\n",
      "          'confirmation': 1,\n",
      "          'di': 1,\n",
      "          'stunts': 1,\n",
      "          'nwho': 1,\n",
      "          'could': 1,\n",
      "          'fight': 1,\n",
      "          'jump': 1,\n",
      "          'skimpy': 1,\n",
      "          'strapless': 1,\n",
      "          'leather': 1,\n",
      "          'top': 1,\n",
      "          'yet': 1,\n",
      "          'keep': 1,\n",
      "          'spilling': 1,\n",
      "          'nonly': 1,\n",
      "          'stuntwoman': 1,\n",
      "          'nnot': 1,\n",
      "          'lee': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'snake': 6,\n",
      "          'movie': 6,\n",
      "          'giant': 5,\n",
      "          'anaconda': 5,\n",
      "          'one': 4,\n",
      "          'team': 3,\n",
      "          'sarone': 3,\n",
      "          'catch': 3,\n",
      "          'nour': 3,\n",
      "          'first': 3,\n",
      "          'nbut': 3,\n",
      "          'viewer': 3,\n",
      "          'see': 3,\n",
      "          'credits': 3,\n",
      "          'nso': 2,\n",
      "          'tribe': 2,\n",
      "          'stoltz': 2,\n",
      "          'terri': 2,\n",
      "          'nthey': 2,\n",
      "          'well': 2,\n",
      "          'soon': 2,\n",
      "          'group': 2,\n",
      "          'without': 2,\n",
      "          'zoo': 2,\n",
      "          'nwe': 2,\n",
      "          'dont': 2,\n",
      "          'looking': 2,\n",
      "          'around': 2,\n",
      "          'victim': 2,\n",
      "          'would': 2,\n",
      "          'shows': 2,\n",
      "          'rest': 2,\n",
      "          'scenes': 2,\n",
      "          'may': 2,\n",
      "          'go': 2,\n",
      "          'real': 2,\n",
      "          'work': 2,\n",
      "          'humanities': 1,\n",
      "          'quest': 1,\n",
      "          'knowledge': 1,\n",
      "          'never': 1,\n",
      "          'ends': 1,\n",
      "          'scientists': 1,\n",
      "          'filmmakers': 1,\n",
      "          'travel': 1,\n",
      "          'amazon': 1,\n",
      "          'search': 1,\n",
      "          'legendary': 1,\n",
      "          'indian': 1,\n",
      "          'party': 1,\n",
      "          'consists': 1,\n",
      "          'anthropologist': 1,\n",
      "          'steven': 1,\n",
      "          'cale': 1,\n",
      "          'eric': 1,\n",
      "          'camera': 1,\n",
      "          'consisting': 1,\n",
      "          'flores': 1,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'danny': 1,\n",
      "          'rich': 1,\n",
      "          'ice': 1,\n",
      "          'cube': 1,\n",
      "          'gary': 1,\n",
      "          'dixon': 1,\n",
      "          'owen': 1,\n",
      "          'wilson': 1,\n",
      "          'denise': 1,\n",
      "          'kahlberg': 1,\n",
      "          'kari': 1,\n",
      "          'wuhrer': 1,\n",
      "          'warren': 1,\n",
      "          'westridge': 1,\n",
      "          'jonathan': 1,\n",
      "          'hyde': 1,\n",
      "          'nearly': 1,\n",
      "          'journey': 1,\n",
      "          'meet': 1,\n",
      "          'paul': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'whose': 1,\n",
      "          'boat': 1,\n",
      "          'stuck': 1,\n",
      "          'shore': 1,\n",
      "          'agree': 1,\n",
      "          'give': 1,\n",
      "          'ride': 1,\n",
      "          'next': 1,\n",
      "          'village': 1,\n",
      "          'nhe': 1,\n",
      "          'claims': 1,\n",
      "          'know': 1,\n",
      "          'area': 1,\n",
      "          'useful': 1,\n",
      "          'locating': 1,\n",
      "          'native': 1,\n",
      "          'nvery': 1,\n",
      "          'friendliness': 1,\n",
      "          'backfires': 1,\n",
      "          'turns': 1,\n",
      "          'hunter': 1,\n",
      "          'scruples': 1,\n",
      "          'wants': 1,\n",
      "          'sell': 1,\n",
      "          'wait': 1,\n",
      "          'long': 1,\n",
      "          'nshe': 1,\n",
      "          'panther': 1,\n",
      "          'hors': 1,\n",
      "          'doevre': 1,\n",
      "          'main': 1,\n",
      "          'course': 1,\n",
      "          'heroes': 1,\n",
      "          'paddle': 1,\n",
      "          'amazonas': 1,\n",
      "          'pool': 1,\n",
      "          'backyard': 1,\n",
      "          'nno': 1,\n",
      "          'wonder': 1,\n",
      "          'animals': 1,\n",
      "          'mistake': 1,\n",
      "          'splashing': 1,\n",
      "          'dinner': 1,\n",
      "          'bell': 1,\n",
      "          'polite': 1,\n",
      "          'swallows': 1,\n",
      "          'big': 1,\n",
      "          'gulp': 1,\n",
      "          'nenjoy': 1,\n",
      "          'much': 1,\n",
      "          'attempt': 1,\n",
      "          'want': 1,\n",
      "          'fishing': 1,\n",
      "          'pole': 1,\n",
      "          'villain': 1,\n",
      "          'soft': 1,\n",
      "          'side': 1,\n",
      "          'stops': 1,\n",
      "          'shooting': 1,\n",
      "          'ntoo': 1,\n",
      "          'bad': 1,\n",
      "          'strangle': 1,\n",
      "          'another': 1,\n",
      "          'member': 1,\n",
      "          'expedition': 1,\n",
      "          'none': 1,\n",
      "          'goes': 1,\n",
      "          'others': 1,\n",
      "          'neric': 1,\n",
      "          'stung': 1,\n",
      "          'wasp': 1,\n",
      "          'right': 1,\n",
      "          'beginning': 1,\n",
      "          'mercifully': 1,\n",
      "          'unconcious': 1,\n",
      "          'adventure': 1,\n",
      "          'crew': 1,\n",
      "          'keeps': 1,\n",
      "          'entertaining': 1,\n",
      "          'although': 1,\n",
      "          'way': 1,\n",
      "          'makers': 1,\n",
      "          'planned': 1,\n",
      "          'nhowever': 1,\n",
      "          'rather': 1,\n",
      "          'boring': 1,\n",
      "          'nwhenever': 1,\n",
      "          'leading': 1,\n",
      "          'lady': 1,\n",
      "          'laugh': 1,\n",
      "          'reminds': 1,\n",
      "          'us': 1,\n",
      "          'favorite': 1,\n",
      "          'character': 1,\n",
      "          'famous': 1,\n",
      "          'animated': 1,\n",
      "          'even': 1,\n",
      "          'aweinspiring': 1,\n",
      "          'monster': 1,\n",
      "          'nher': 1,\n",
      "          'attacks': 1,\n",
      "          'always': 1,\n",
      "          'follow': 1,\n",
      "          'plan': 1,\n",
      "          'last': 1,\n",
      "          'hypnotic': 1,\n",
      "          'look': 1,\n",
      "          'shes': 1,\n",
      "          'kid': 1,\n",
      "          'speedily': 1,\n",
      "          'wraps': 1,\n",
      "          'starts': 1,\n",
      "          'gush': 1,\n",
      "          'nmostly': 1,\n",
      "          'act': 1,\n",
      "          'devouring': 1,\n",
      "          'looks': 1,\n",
      "          'nice': 1,\n",
      "          'wiggles': 1,\n",
      "          'away': 1,\n",
      "          'bulging': 1,\n",
      "          'middle': 1,\n",
      "          'part': 1,\n",
      "          'nwhoever': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'wanted': 1,\n",
      "          'study': 1,\n",
      "          'snakes': 1,\n",
      "          'nmaybe': 1,\n",
      "          'model': 1,\n",
      "          'looked': 1,\n",
      "          'animatronics': 1,\n",
      "          'somewhat': 1,\n",
      "          'believable': 1,\n",
      "          'didnt': 1,\n",
      "          'strangling': 1,\n",
      "          'ndont': 1,\n",
      "          'fx': 1,\n",
      "          'everything': 1,\n",
      "          'uptodate': 1,\n",
      "          'likes': 1,\n",
      "          'watch': 1,\n",
      "          'end': 1,\n",
      "          'hisher': 1,\n",
      "          'surprise': 1,\n",
      "          'expert': 1,\n",
      "          'consultant': 1,\n",
      "          'doubt': 1,\n",
      "          'though': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'final': 1,\n",
      "          'result': 1,\n",
      "          'na': 1,\n",
      "          'known': 1,\n",
      "          'american': 1,\n",
      "          'science': 1,\n",
      "          'magazine': 1,\n",
      "          'also': 1,\n",
      "          'mentioned': 1,\n",
      "          'refrain': 1,\n",
      "          'naming': 1,\n",
      "          'avoid': 1,\n",
      "          'damage': 1,\n",
      "          'reputation': 1,\n",
      "          'majority': 1,\n",
      "          'left': 1,\n",
      "          'theater': 1,\n",
      "          'start': 1,\n",
      "          'rolling': 1,\n",
      "          'anyway': 1,\n",
      "          'nwhat': 1,\n",
      "          'kind': 1,\n",
      "          'audience': 1,\n",
      "          'target': 1,\n",
      "          'nhard': 1,\n",
      "          'say': 1,\n",
      "          'nthis': 1,\n",
      "          'cant': 1,\n",
      "          'serious': 1,\n",
      "          'horror': 1,\n",
      "          'nsee': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'eastwood': 11,\n",
      "          'nthe': 7,\n",
      "          'power': 6,\n",
      "          'film': 6,\n",
      "          'clint': 6,\n",
      "          'one': 5,\n",
      "          'men': 5,\n",
      "          'absolute': 4,\n",
      "          'like': 4,\n",
      "          'story': 4,\n",
      "          'two': 4,\n",
      "          'man': 4,\n",
      "          'scene': 4,\n",
      "          'trap': 4,\n",
      "          'produced': 3,\n",
      "          'could': 3,\n",
      "          'ever': 3,\n",
      "          'screenplay': 3,\n",
      "          'buildup': 3,\n",
      "          'hit': 3,\n",
      "          'directed': 2,\n",
      "          'set': 2,\n",
      "          'nit': 2,\n",
      "          'script': 2,\n",
      "          'nnot': 2,\n",
      "          'even': 2,\n",
      "          'audience': 2,\n",
      "          'convenient': 2,\n",
      "          'secret': 2,\n",
      "          'service': 2,\n",
      "          'enough': 2,\n",
      "          'played': 2,\n",
      "          'wife': 2,\n",
      "          'nwhile': 2,\n",
      "          'robbing': 2,\n",
      "          'woman': 2,\n",
      "          'nhe': 2,\n",
      "          'president': 2,\n",
      "          'dramatic': 2,\n",
      "          'suspense': 2,\n",
      "          'resolved': 2,\n",
      "          'exciting': 2,\n",
      "          'tense': 2,\n",
      "          'end': 2,\n",
      "          'giving': 2,\n",
      "          'police': 2,\n",
      "          'course': 2,\n",
      "          'preparing': 2,\n",
      "          'arrives': 2,\n",
      "          'get': 2,\n",
      "          'brilliant': 2,\n",
      "          'nhowever': 2,\n",
      "          'simply': 2,\n",
      "          'minutes': 2,\n",
      "          'line': 2,\n",
      "          'relationship': 2,\n",
      "          'father': 2,\n",
      "          'daughter': 2,\n",
      "          'nhow': 2,\n",
      "          'ndirector': 2,\n",
      "          'new': 1,\n",
      "          'attempts': 1,\n",
      "          'thriller': 1,\n",
      "          'world': 1,\n",
      "          'hypocritical': 1,\n",
      "          'presidents': 1,\n",
      "          'murderous': 1,\n",
      "          'political': 1,\n",
      "          'staff': 1,\n",
      "          'thrilling': 1,\n",
      "          'lecture': 1,\n",
      "          'mating': 1,\n",
      "          'habits': 1,\n",
      "          'south': 1,\n",
      "          'american': 1,\n",
      "          'grasshopper': 1,\n",
      "          'none': 1,\n",
      "          'wonder': 1,\n",
      "          'utterly': 1,\n",
      "          'absurd': 1,\n",
      "          'written': 1,\n",
      "          'william': 1,\n",
      "          'goldman': 1,\n",
      "          'interested': 1,\n",
      "          'plot': 1,\n",
      "          'unbelievable': 1,\n",
      "          'contrived': 1,\n",
      "          'writing': 1,\n",
      "          'lacks': 1,\n",
      "          'consistency': 1,\n",
      "          'intelligence': 1,\n",
      "          'ncontinually': 1,\n",
      "          'underestimating': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'information': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'ndetails': 1,\n",
      "          'essential': 1,\n",
      "          'improbably': 1,\n",
      "          'annoying': 1,\n",
      "          'would': 1,\n",
      "          'unprepared': 1,\n",
      "          'carry': 1,\n",
      "          'nightvision': 1,\n",
      "          'goggles': 1,\n",
      "          'car': 1,\n",
      "          'noddly': 1,\n",
      "          'initial': 1,\n",
      "          'setup': 1,\n",
      "          'offers': 1,\n",
      "          'interesting': 1,\n",
      "          'possibilities': 1,\n",
      "          'na': 1,\n",
      "          'masterful': 1,\n",
      "          'jewelthief': 1,\n",
      "          'witnesses': 1,\n",
      "          'murder': 1,\n",
      "          'powerful': 1,\n",
      "          'millionaire': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'nmarshall': 1,\n",
      "          'marshalls': 1,\n",
      "          'mansions': 1,\n",
      "          'forced': 1,\n",
      "          'hide': 1,\n",
      "          'bedrooms': 1,\n",
      "          'vault': 1,\n",
      "          'nthere': 1,\n",
      "          'twoway': 1,\n",
      "          'mirror': 1,\n",
      "          'sees': 1,\n",
      "          'another': 1,\n",
      "          'engage': 1,\n",
      "          'passionate': 1,\n",
      "          'foreplay': 1,\n",
      "          'ntheir': 1,\n",
      "          'game': 1,\n",
      "          'love': 1,\n",
      "          'quickly': 1,\n",
      "          'turns': 1,\n",
      "          'violent': 1,\n",
      "          'struggle': 1,\n",
      "          'starts': 1,\n",
      "          'beating': 1,\n",
      "          'nin': 1,\n",
      "          'self': 1,\n",
      "          'defense': 1,\n",
      "          'grabs': 1,\n",
      "          'letteropener': 1,\n",
      "          'stabs': 1,\n",
      "          'elbow': 1,\n",
      "          'nshe': 1,\n",
      "          'raises': 1,\n",
      "          'arm': 1,\n",
      "          'stab': 1,\n",
      "          'fatally': 1,\n",
      "          'shot': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'america': 1,\n",
      "          'nwhere': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'acting': 1,\n",
      "          'nclint': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'gene': 1,\n",
      "          'hackman': 1,\n",
      "          'give': 1,\n",
      "          'typecast': 1,\n",
      "          'decent': 1,\n",
      "          'performances': 1,\n",
      "          'cinematography': 1,\n",
      "          'sufficient': 1,\n",
      "          'wild': 1,\n",
      "          'erratic': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'dark': 1,\n",
      "          'mysterious': 1,\n",
      "          'psychologically': 1,\n",
      "          'suspenseful': 1,\n",
      "          'scenes': 1,\n",
      "          'calm': 1,\n",
      "          'warm': 1,\n",
      "          'dialogue': 1,\n",
      "          'neven': 1,\n",
      "          'music': 1,\n",
      "          'bombastic': 1,\n",
      "          'usually': 1,\n",
      "          'tends': 1,\n",
      "          'thrillersuspense': 1,\n",
      "          'genre': 1,\n",
      "          'fault': 1,\n",
      "          'clearly': 1,\n",
      "          'lies': 1,\n",
      "          'alone': 1,\n",
      "          'setting': 1,\n",
      "          'misuse': 1,\n",
      "          'true': 1,\n",
      "          'possessors': 1,\n",
      "          'intrigue': 1,\n",
      "          'doublecrossing': 1,\n",
      "          'resolve': 1,\n",
      "          'climax': 1,\n",
      "          'nrather': 1,\n",
      "          'situations': 1,\n",
      "          'left': 1,\n",
      "          'dangling': 1,\n",
      "          'viewer': 1,\n",
      "          'uneasy': 1,\n",
      "          'sense': 1,\n",
      "          'incompleteness': 1,\n",
      "          'nan': 1,\n",
      "          'example': 1,\n",
      "          'promising': 1,\n",
      "          'attempt': 1,\n",
      "          'arrest': 1,\n",
      "          'small': 1,\n",
      "          'restaurant': 1,\n",
      "          'npolice': 1,\n",
      "          'officers': 1,\n",
      "          'everywhere': 1,\n",
      "          'incognito': 1,\n",
      "          'nat': 1,\n",
      "          'time': 1,\n",
      "          'kill': 1,\n",
      "          'nall': 1,\n",
      "          'three': 1,\n",
      "          'parties': 1,\n",
      "          'unaware': 1,\n",
      "          'others': 1,\n",
      "          'presence': 1,\n",
      "          'nthis': 1,\n",
      "          'tremendously': 1,\n",
      "          'wondering': 1,\n",
      "          'might': 1,\n",
      "          'suspect': 1,\n",
      "          'difficult': 1,\n",
      "          'position': 1,\n",
      "          'probably': 1,\n",
      "          'plan': 1,\n",
      "          'involving': 1,\n",
      "          'ingenious': 1,\n",
      "          'preparations': 1,\n",
      "          'miss': 1,\n",
      "          'confusion': 1,\n",
      "          'walks': 1,\n",
      "          'away': 1,\n",
      "          'took': 1,\n",
      "          'ten': 1,\n",
      "          'nten': 1,\n",
      "          'close': 1,\n",
      "          'ups': 1,\n",
      "          'loading': 1,\n",
      "          'weapons': 1,\n",
      "          'intercut': 1,\n",
      "          'less': 1,\n",
      "          '20': 1,\n",
      "          'seconds': 1,\n",
      "          'nparallel': 1,\n",
      "          'catching': 1,\n",
      "          'real': 1,\n",
      "          'killer': 1,\n",
      "          'cliche': 1,\n",
      "          'emotional': 1,\n",
      "          'tale': 1,\n",
      "          'estranged': 1,\n",
      "          'blames': 1,\n",
      "          'never': 1,\n",
      "          'either': 1,\n",
      "          'jail': 1,\n",
      "          'house': 1,\n",
      "          'somewhere': 1,\n",
      "          'nof': 1,\n",
      "          'takes': 1,\n",
      "          'turn': 1,\n",
      "          'better': 1,\n",
      "          'adventure': 1,\n",
      "          'happy': 1,\n",
      "          'family': 1,\n",
      "          'nagain': 1,\n",
      "          'commendable': 1,\n",
      "          'tries': 1,\n",
      "          'deviate': 1,\n",
      "          'mainstream': 1,\n",
      "          'room': 1,\n",
      "          'subplot': 1,\n",
      "          'trying': 1,\n",
      "          'second': 1,\n",
      "          'subtle': 1,\n",
      "          'original': 1,\n",
      "          'preferably': 1,\n",
      "          'unpredictable': 1,\n",
      "          'neverything': 1,\n",
      "          'funding': 1,\n",
      "          'successfully': 1,\n",
      "          'many': 1,\n",
      "          'outstanding': 1,\n",
      "          'films': 1,\n",
      "          'unforgiven': 1,\n",
      "          'believe': 1,\n",
      "          'project': 1,\n",
      "          'ni': 1,\n",
      "          'sad': 1,\n",
      "          'say': 1,\n",
      "          'respect': 1,\n",
      "          'actordirectorproducer': 1,\n",
      "          'diminished': 1,\n",
      "          'substantially': 1,\n",
      "          'due': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantino': 1,\n",
      "          'said': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'movie': 1,\n",
      "          'bad': 1,\n",
      "          'obviously': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'phone': 9,\n",
      "          'movie': 6,\n",
      "          'get': 5,\n",
      "          'characters': 5,\n",
      "          'n': 5,\n",
      "          'calls': 4,\n",
      "          'nthe': 4,\n",
      "          'friends': 4,\n",
      "          'net': 3,\n",
      "          'despite': 3,\n",
      "          'moments': 3,\n",
      "          'enough': 3,\n",
      "          'ever': 2,\n",
      "          'web': 2,\n",
      "          'nthat': 2,\n",
      "          'relationships': 2,\n",
      "          'best': 2,\n",
      "          'sex': 2,\n",
      "          'would': 2,\n",
      "          'nas': 2,\n",
      "          'talking': 2,\n",
      "          'ndenise': 2,\n",
      "          'funny': 2,\n",
      "          'one': 2,\n",
      "          'callwaiting': 2,\n",
      "          'answering': 2,\n",
      "          'denise': 2,\n",
      "          'idea': 2,\n",
      "          'good': 2,\n",
      "          'still': 2,\n",
      "          'nand': 2,\n",
      "          'salwens': 2,\n",
      "          'movies': 2,\n",
      "          'party': 2,\n",
      "          'going': 2,\n",
      "          'martin': 2,\n",
      "          'courtesy': 2,\n",
      "          'barbara': 2,\n",
      "          'cordless': 2,\n",
      "          'everyone': 2,\n",
      "          'friend': 2,\n",
      "          'gales': 2,\n",
      "          'appears': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'feel': 1,\n",
      "          'youre': 1,\n",
      "          'spending': 1,\n",
      "          'whole': 1,\n",
      "          'life': 1,\n",
      "          'ouch': 1,\n",
      "          'eating': 1,\n",
      "          'breathing': 1,\n",
      "          'excreting': 1,\n",
      "          'sites': 1,\n",
      "          'meaningful': 1,\n",
      "          'formed': 1,\n",
      "          'nif': 1,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'hal': 1,\n",
      "          'salwen': 1,\n",
      "          'could': 1,\n",
      "          'shoot': 1,\n",
      "          'entire': 1,\n",
      "          'typing': 1,\n",
      "          'computers': 1,\n",
      "          'settles': 1,\n",
      "          'electronic': 1,\n",
      "          'generation': 1,\n",
      "          'caught': 1,\n",
      "          'work': 1,\n",
      "          'insecurities': 1,\n",
      "          'prefer': 1,\n",
      "          'live': 1,\n",
      "          'fantasies': 1,\n",
      "          'nits': 1,\n",
      "          'satire': 1,\n",
      "          'sometimes': 1,\n",
      "          'let': 1,\n",
      "          'handphones': 1,\n",
      "          'machines': 1,\n",
      "          'run': 1,\n",
      "          'lives': 1,\n",
      "          'problem': 1,\n",
      "          'na': 1,\n",
      "          'darn': 1,\n",
      "          '80': 1,\n",
      "          'minutelong': 1,\n",
      "          'attempt': 1,\n",
      "          'plots': 1,\n",
      "          'subplots': 1,\n",
      "          'genuinely': 1,\n",
      "          'predict': 1,\n",
      "          'outcome': 1,\n",
      "          'within': 1,\n",
      "          'first': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'nyou': 1,\n",
      "          'drift': 1,\n",
      "          'series': 1,\n",
      "          'shots': 1,\n",
      "          'explaining': 1,\n",
      "          'couldnt': 1,\n",
      "          'make': 1,\n",
      "          'nobody': 1,\n",
      "          'meeting': 1,\n",
      "          'anybody': 1,\n",
      "          'film': 1,\n",
      "          'rather': 1,\n",
      "          'nheres': 1,\n",
      "          'plot': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'telefixated': 1,\n",
      "          'limbo': 1,\n",
      "          'loud': 1,\n",
      "          'quirky': 1,\n",
      "          'stranger': 1,\n",
      "          'announce': 1,\n",
      "          'pregnant': 1,\n",
      "          'child': 1,\n",
      "          'sperm': 1,\n",
      "          'donated': 1,\n",
      "          'local': 1,\n",
      "          'bank': 1,\n",
      "          'progresses': 1,\n",
      "          'slamming': 1,\n",
      "          'long': 1,\n",
      "          'conversations': 1,\n",
      "          'babys': 1,\n",
      "          'name': 1,\n",
      "          'involved': 1,\n",
      "          'doublelines': 1,\n",
      "          'nin': 1,\n",
      "          'tigher': 1,\n",
      "          'tantalizing': 1,\n",
      "          'subplot': 1,\n",
      "          'jerry': 1,\n",
      "          'set': 1,\n",
      "          'blind': 1,\n",
      "          'date': 1,\n",
      "          'neither': 1,\n",
      "          'turns': 1,\n",
      "          'nboth': 1,\n",
      "          'profess': 1,\n",
      "          'complicated': 1,\n",
      "          'schedules': 1,\n",
      "          'meet': 1,\n",
      "          'nwith': 1,\n",
      "          'repeated': 1,\n",
      "          'comes': 1,\n",
      "          'glitch': 1,\n",
      "          'person': 1,\n",
      "          'simply': 1,\n",
      "          'faking': 1,\n",
      "          'scores': 1,\n",
      "          'inspired': 1,\n",
      "          'nmousy': 1,\n",
      "          'metamorphoses': 1,\n",
      "          'vamp': 1,\n",
      "          'shares': 1,\n",
      "          'excitement': 1,\n",
      "          'denises': 1,\n",
      "          'delivery': 1,\n",
      "          'conference': 1,\n",
      "          'call': 1,\n",
      "          'handphone': 1,\n",
      "          'barbaras': 1,\n",
      "          'gale': 1,\n",
      "          'killed': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'taling': 1,\n",
      "          'animatedly': 1,\n",
      "          'another': 1,\n",
      "          'machine': 1,\n",
      "          'overlychatty': 1,\n",
      "          'aunt': 1,\n",
      "          'recounts': 1,\n",
      "          'knicked': 1,\n",
      "          'ear': 1,\n",
      "          'lodged': 1,\n",
      "          'brain': 1,\n",
      "          'nbut': 1,\n",
      "          'sustain': 1,\n",
      "          'pace': 1,\n",
      "          'sags': 1,\n",
      "          'dialogue': 1,\n",
      "          'drags': 1,\n",
      "          'much': 1,\n",
      "          'acting': 1,\n",
      "          'required': 1,\n",
      "          'telephonetouters': 1,\n",
      "          'ending': 1,\n",
      "          'literally': 1,\n",
      "          'nonevent': 1,\n",
      "          'expected': 1,\n",
      "          'chicken': 1,\n",
      "          'turn': 1,\n",
      "          'frank': 1,\n",
      "          'throws': 1,\n",
      "          'memory': 1,\n",
      "          'promising': 1,\n",
      "          'nwe': 1,\n",
      "          'point': 1,\n",
      "          'intent': 1,\n",
      "          'flogging': 1,\n",
      "          'terribly90s': 1,\n",
      "          'statement': 1,\n",
      "          'coming': 1,\n",
      "          'ears': 1,\n",
      "          'npun': 1,\n",
      "          'intended': 1,\n",
      "          'ntheres': 1,\n",
      "          'even': 1,\n",
      "          'site': 1,\n",
      "          'win': 1,\n",
      "          'cellular': 1,\n",
      "          'phones': 1,\n",
      "          'havent': 1,\n",
      "          'things': 1,\n",
      "          'already': 1,\n",
      "          'nwatch': 1,\n",
      "          'find': 1,\n",
      "          'philosophy': 1,\n",
      "          'compelling': 1,\n",
      "          'earful': 1,\n",
      "          'flying': 1,\n",
      "          'inkpots': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'video': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'bring': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'film': 8,\n",
      "          'one': 5,\n",
      "          'first': 5,\n",
      "          'movie': 5,\n",
      "          'book': 4,\n",
      "          'shadows': 4,\n",
      "          'blair': 4,\n",
      "          'witch': 4,\n",
      "          'neven': 4,\n",
      "          'old': 4,\n",
      "          'cute': 4,\n",
      "          'chick': 4,\n",
      "          'na': 3,\n",
      "          'inevitable': 3,\n",
      "          'nwe': 3,\n",
      "          'nits': 3,\n",
      "          'big': 3,\n",
      "          'sequel': 3,\n",
      "          'n': 3,\n",
      "          'real': 3,\n",
      "          'would': 3,\n",
      "          'woods': 3,\n",
      "          'people': 3,\n",
      "          'unaccomplished': 3,\n",
      "          'actors': 3,\n",
      "          'michael': 2,\n",
      "          'redman': 2,\n",
      "          '2000': 2,\n",
      "          'lives': 2,\n",
      "          'know': 2,\n",
      "          'even': 2,\n",
      "          'always': 2,\n",
      "          'nin': 2,\n",
      "          'story': 2,\n",
      "          'doesnt': 2,\n",
      "          'project': 2,\n",
      "          'made': 2,\n",
      "          'screen': 2,\n",
      "          'lightning': 2,\n",
      "          'bottle': 2,\n",
      "          'new': 2,\n",
      "          'nit': 2,\n",
      "          'easy': 2,\n",
      "          'group': 2,\n",
      "          'kids': 2,\n",
      "          'night': 2,\n",
      "          'stuff': 2,\n",
      "          'happens': 2,\n",
      "          'research': 2,\n",
      "          'house': 2,\n",
      "          'bad': 2,\n",
      "          'promise': 2,\n",
      "          'films': 2,\n",
      "          'across': 2,\n",
      "          'hours': 2,\n",
      "          'see': 2,\n",
      "          'triumph': 2,\n",
      "          'remained': 1,\n",
      "          'nbook': 1,\n",
      "          '2': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          'ncertain': 1,\n",
      "          'things': 1,\n",
      "          'ndeath': 1,\n",
      "          'sorrow': 1,\n",
      "          'love': 1,\n",
      "          'heartbreak': 1,\n",
      "          'pain': 1,\n",
      "          'joy': 1,\n",
      "          'expect': 1,\n",
      "          'events': 1,\n",
      "          'theyre': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'part': 1,\n",
      "          'human': 1,\n",
      "          'condition': 1,\n",
      "          'also': 1,\n",
      "          'become': 1,\n",
      "          'accustomed': 1,\n",
      "          'occurrences': 1,\n",
      "          'society': 1,\n",
      "          'nas': 1,\n",
      "          'near': 1,\n",
      "          'fall': 1,\n",
      "          'election': 1,\n",
      "          'several': 1,\n",
      "          'hitting': 1,\n",
      "          'us': 1,\n",
      "          'face': 1,\n",
      "          'npoliticians': 1,\n",
      "          'exaggerate': 1,\n",
      "          'importance': 1,\n",
      "          'nour': 1,\n",
      "          'side': 1,\n",
      "          'right': 1,\n",
      "          'wrong': 1,\n",
      "          'end': 1,\n",
      "          'voters': 1,\n",
      "          'usually': 1,\n",
      "          'forced': 1,\n",
      "          'choose': 1,\n",
      "          'lesser': 1,\n",
      "          'two': 1,\n",
      "          'whocares': 1,\n",
      "          'hollywood': 1,\n",
      "          'indisputable': 1,\n",
      "          'makes': 1,\n",
      "          'money': 1,\n",
      "          'original': 1,\n",
      "          'merit': 1,\n",
      "          'complete': 1,\n",
      "          'success': 1,\n",
      "          'fluke': 1,\n",
      "          'budget': 1,\n",
      "          '1': 1,\n",
      "          '75': 1,\n",
      "          'exploded': 1,\n",
      "          'raking': 1,\n",
      "          'huge': 1,\n",
      "          'profits': 1,\n",
      "          'concept': 1,\n",
      "          'brilliant': 1,\n",
      "          'filmmakers': 1,\n",
      "          'created': 1,\n",
      "          'remarkable': 1,\n",
      "          'buzz': 1,\n",
      "          'might': 1,\n",
      "          'convincing': 1,\n",
      "          '_must_': 1,\n",
      "          'authentic': 1,\n",
      "          'nwhy': 1,\n",
      "          'else': 1,\n",
      "          'amateurish': 1,\n",
      "          'footage': 1,\n",
      "          'caught': 1,\n",
      "          'proves': 1,\n",
      "          'cant': 1,\n",
      "          'pour': 1,\n",
      "          'nyou': 1,\n",
      "          'give': 1,\n",
      "          'effort': 1,\n",
      "          'credit': 1,\n",
      "          'course': 1,\n",
      "          'wouldnt': 1,\n",
      "          'worked': 1,\n",
      "          'ninstead': 1,\n",
      "          'acknowledges': 1,\n",
      "          'concentrates': 1,\n",
      "          'hysteria': 1,\n",
      "          'following': 1,\n",
      "          'release': 1,\n",
      "          'great': 1,\n",
      "          'scheme': 1,\n",
      "          'possibly': 1,\n",
      "          'entertaining': 1,\n",
      "          'way': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'work': 1,\n",
      "          'either': 1,\n",
      "          'nfive': 1,\n",
      "          'spend': 1,\n",
      "          'scene': 1,\n",
      "          'nweird': 1,\n",
      "          'retreat': 1,\n",
      "          'factory': 1,\n",
      "          'weirder': 1,\n",
      "          'nsome': 1,\n",
      "          'die': 1,\n",
      "          'theres': 1,\n",
      "          'blood': 1,\n",
      "          'knives': 1,\n",
      "          'none': 1,\n",
      "          'characters': 1,\n",
      "          'lick': 1,\n",
      "          'common': 1,\n",
      "          'sense': 1,\n",
      "          'nwhile': 1,\n",
      "          'supposedly': 1,\n",
      "          'serious': 1,\n",
      "          'sets': 1,\n",
      "          'circle': 1,\n",
      "          'surveillance': 1,\n",
      "          'cameras': 1,\n",
      "          'ruins': 1,\n",
      "          'vows': 1,\n",
      "          'stay': 1,\n",
      "          'alert': 1,\n",
      "          'awaiting': 1,\n",
      "          'visitation': 1,\n",
      "          'nthen': 1,\n",
      "          'proceed': 1,\n",
      "          'get': 1,\n",
      "          'totally': 1,\n",
      "          'trashed': 1,\n",
      "          'drugs': 1,\n",
      "          'alcohol': 1,\n",
      "          'party': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'heavy': 1,\n",
      "          'metal': 1,\n",
      "          'music': 1,\n",
      "          'plan': 1,\n",
      "          'cast': 1,\n",
      "          'shows': 1,\n",
      "          'early': 1,\n",
      "          'couple': 1,\n",
      "          'tour': 1,\n",
      "          'guide': 1,\n",
      "          'former': 1,\n",
      "          'mental': 1,\n",
      "          'patient': 1,\n",
      "          'turned': 1,\n",
      "          'ebay': 1,\n",
      "          'aficionado': 1,\n",
      "          'goth': 1,\n",
      "          'amazon': 1,\n",
      "          'princess': 1,\n",
      "          'adds': 1,\n",
      "          'bit': 1,\n",
      "          'comedic': 1,\n",
      "          'relief': 1,\n",
      "          'obligatory': 1,\n",
      "          'hot': 1,\n",
      "          'babe': 1,\n",
      "          'spiritual': 1,\n",
      "          'cinematic': 1,\n",
      "          'descendent': 1,\n",
      "          'hippie': 1,\n",
      "          'rock': 1,\n",
      "          'roll': 1,\n",
      "          'disco': 1,\n",
      "          'wiccan': 1,\n",
      "          'came': 1,\n",
      "          'situation': 1,\n",
      "          'video': 1,\n",
      "          'shot': 1,\n",
      "          'days': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'come': 1,\n",
      "          'ntheres': 1,\n",
      "          'character': 1,\n",
      "          'care': 1,\n",
      "          'start': 1,\n",
      "          'shouting': 1,\n",
      "          'reason': 1,\n",
      "          'nalthough': 1,\n",
      "          'passes': 1,\n",
      "          'plot': 1,\n",
      "          'starts': 1,\n",
      "          'solid': 1,\n",
      "          'idea': 1,\n",
      "          'ruined': 1,\n",
      "          'poor': 1,\n",
      "          'execution': 1,\n",
      "          'followup': 1,\n",
      "          'successful': 1,\n",
      "          'horror': 1,\n",
      "          'ever': 1,\n",
      "          'nothing': 1,\n",
      "          'slasher': 1,\n",
      "          'ntheyre': 1,\n",
      "          'trapped': 1,\n",
      "          'weird': 1,\n",
      "          'nthey': 1,\n",
      "          'stupidly': 1,\n",
      "          'separate': 1,\n",
      "          'various': 1,\n",
      "          'rooms': 1,\n",
      "          'nthere': 1,\n",
      "          'strange': 1,\n",
      "          'noises': 1,\n",
      "          'scary': 1,\n",
      "          'apparitions': 1,\n",
      "          'disappear': 1,\n",
      "          'never': 1,\n",
      "          'nseasoned': 1,\n",
      "          'documentary': 1,\n",
      "          'director': 1,\n",
      "          'joe': 1,\n",
      "          'berlinger': 1,\n",
      "          'better': 1,\n",
      "          'features': 1,\n",
      "          'mostly': 1,\n",
      "          'cheap': 1,\n",
      "          'tricks': 1,\n",
      "          'unnecessary': 1,\n",
      "          'gore': 1,\n",
      "          'nfor': 1,\n",
      "          'storyline': 1,\n",
      "          'filled': 1,\n",
      "          'surprises': 1,\n",
      "          'oddly': 1,\n",
      "          'predicable': 1,\n",
      "          'rare': 1,\n",
      "          'style': 1,\n",
      "          'substance': 1,\n",
      "          'tedium': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'town': 6,\n",
      "          'country': 6,\n",
      "          'get': 5,\n",
      "          'film': 5,\n",
      "          'porter': 4,\n",
      "          'beatty': 3,\n",
      "          'sexual': 3,\n",
      "          'great': 3,\n",
      "          'wealthy': 3,\n",
      "          'time': 3,\n",
      "          'never': 3,\n",
      "          'nbut': 3,\n",
      "          'life': 3,\n",
      "          'hollywood': 3,\n",
      "          'griffin': 3,\n",
      "          'like': 3,\n",
      "          'doesnt': 3,\n",
      "          'diane': 2,\n",
      "          'keaton': 2,\n",
      "          'goldie': 2,\n",
      "          'hawn': 2,\n",
      "          'shandling': 2,\n",
      "          'pair': 2,\n",
      "          'romantic': 2,\n",
      "          'comedy': 2,\n",
      "          'farce': 2,\n",
      "          'deal': 2,\n",
      "          'impossibly': 2,\n",
      "          'much': 2,\n",
      "          'free': 2,\n",
      "          'would': 2,\n",
      "          'end': 2,\n",
      "          'see': 2,\n",
      "          'story': 2,\n",
      "          'kind': 2,\n",
      "          'people': 2,\n",
      "          'script': 2,\n",
      "          'naught': 2,\n",
      "          'nand': 2,\n",
      "          'nporter': 2,\n",
      "          'nhis': 2,\n",
      "          'ellie': 2,\n",
      "          'surface': 2,\n",
      "          'best': 2,\n",
      "          'friends': 2,\n",
      "          'mona': 2,\n",
      "          'ni': 2,\n",
      "          'around': 2,\n",
      "          'character': 2,\n",
      "          'problems': 2,\n",
      "          'know': 2,\n",
      "          'want': 2,\n",
      "          'cast': 2,\n",
      "          'given': 2,\n",
      "          'material': 2,\n",
      "          'anyway': 2,\n",
      "          'one': 2,\n",
      "          'movie': 2,\n",
      "          'production': 2,\n",
      "          'warren': 1,\n",
      "          'gary': 1,\n",
      "          'star': 1,\n",
      "          'married': 1,\n",
      "          'couples': 1,\n",
      "          'whose': 1,\n",
      "          'complacent': 1,\n",
      "          'lives': 1,\n",
      "          'shaken': 1,\n",
      "          'director': 1,\n",
      "          'peter': 1,\n",
      "          'chelsoms': 1,\n",
      "          'version': 1,\n",
      "          'classic': 1,\n",
      "          'screwball': 1,\n",
      "          'drawing': 1,\n",
      "          'room': 1,\n",
      "          '30s': 1,\n",
      "          'dealt': 1,\n",
      "          'innuendo': 1,\n",
      "          'relied': 1,\n",
      "          'wit': 1,\n",
      "          'commotion': 1,\n",
      "          'noise': 1,\n",
      "          'place': 1,\n",
      "          'viewer': 1,\n",
      "          'thick': 1,\n",
      "          'duplicitous': 1,\n",
      "          'action': 1,\n",
      "          'nback': 1,\n",
      "          'scions': 1,\n",
      "          'society': 1,\n",
      "          'wrapped': 1,\n",
      "          'sorts': 1,\n",
      "          'peccadilloes': 1,\n",
      "          'spouses': 1,\n",
      "          'lovers': 1,\n",
      "          'everything': 1,\n",
      "          'come': 1,\n",
      "          'right': 1,\n",
      "          'philadelphia': 1,\n",
      "          'n': 1,\n",
      "          'protagonists': 1,\n",
      "          'jobs': 1,\n",
      "          'seem': 1,\n",
      "          'work': 1,\n",
      "          'misconduct': 1,\n",
      "          'several': 1,\n",
      "          'levels': 1,\n",
      "          'almost': 1,\n",
      "          'original': 1,\n",
      "          'michael': 1,\n",
      "          'laughlin': 1,\n",
      "          'buck': 1,\n",
      "          'henry': 1,\n",
      "          'tcs': 1,\n",
      "          'downfall': 1,\n",
      "          'nthere': 1,\n",
      "          'obviously': 1,\n",
      "          'talent': 1,\n",
      "          'front': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'involved': 1,\n",
      "          'without': 1,\n",
      "          'likable': 1,\n",
      "          'least': 1,\n",
      "          'interesting': 1,\n",
      "          'carry': 1,\n",
      "          'efforts': 1,\n",
      "          'thats': 1,\n",
      "          'stoddard': 1,\n",
      "          'highpowered': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'architect': 1,\n",
      "          'good': 1,\n",
      "          'indeed': 1,\n",
      "          '25year': 1,\n",
      "          'marriage': 1,\n",
      "          'appears': 1,\n",
      "          'perfect': 1,\n",
      "          'cracks': 1,\n",
      "          'pristine': 1,\n",
      "          'wife': 1,\n",
      "          'suspicious': 1,\n",
      "          'whereabouts': 1,\n",
      "          'kids': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'garry': 1,\n",
      "          'midst': 1,\n",
      "          'divorce': 1,\n",
      "          'tries': 1,\n",
      "          'control': 1,\n",
      "          'late': 1,\n",
      "          'man': 1,\n",
      "          'fighting': 1,\n",
      "          'quicksand': 1,\n",
      "          'struggle': 1,\n",
      "          'sinks': 1,\n",
      "          'deeper': 1,\n",
      "          'nat': 1,\n",
      "          '90minute': 1,\n",
      "          'mark': 1,\n",
      "          'asked': 1,\n",
      "          'whats': 1,\n",
      "          'point': 1,\n",
      "          'wasnt': 1,\n",
      "          'entertained': 1,\n",
      "          'laughed': 1,\n",
      "          'three': 1,\n",
      "          'times': 1,\n",
      "          'silly': 1,\n",
      "          'little': 1,\n",
      "          'pratfalls': 1,\n",
      "          'spent': 1,\n",
      "          'marking': 1,\n",
      "          'til': 1,\n",
      "          'nwarren': 1,\n",
      "          'wanders': 1,\n",
      "          'bewildered': 1,\n",
      "          'fog': 1,\n",
      "          'making': 1,\n",
      "          'thinking': 1,\n",
      "          'part': 1,\n",
      "          'anatomy': 1,\n",
      "          'head': 1,\n",
      "          'nkeatons': 1,\n",
      "          'empty': 1,\n",
      "          'headed': 1,\n",
      "          'flake': 1,\n",
      "          'cant': 1,\n",
      "          'obvious': 1,\n",
      "          'screws': 1,\n",
      "          'supporting': 1,\n",
      "          'nothing': 1,\n",
      "          'sometimes': 1,\n",
      "          'harm': 1,\n",
      "          'forced': 1,\n",
      "          'use': 1,\n",
      "          'nnastassja': 1,\n",
      "          'kinski': 1,\n",
      "          'plays': 1,\n",
      "          'cellist': 1,\n",
      "          'fling': 1,\n",
      "          'actress': 1,\n",
      "          'eerily': 1,\n",
      "          'failed': 1,\n",
      "          'age': 1,\n",
      "          'years': 1,\n",
      "          'miscast': 1,\n",
      "          'airheaded': 1,\n",
      "          'musician': 1,\n",
      "          'belong': 1,\n",
      "          'njenna': 1,\n",
      "          'elfman': 1,\n",
      "          'sweet': 1,\n",
      "          'smart': 1,\n",
      "          'ditz': 1,\n",
      "          'joins': 1,\n",
      "          'tacked': 1,\n",
      "          'misadventures': 1,\n",
      "          'nandie': 1,\n",
      "          'macdowell': 1,\n",
      "          'absolutely': 1,\n",
      "          'painful': 1,\n",
      "          'watch': 1,\n",
      "          'heiress': 1,\n",
      "          'nwho': 1,\n",
      "          'comes': 1,\n",
      "          'saving': 1,\n",
      "          'grace': 1,\n",
      "          'quirky': 1,\n",
      "          'perfs': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'marian': 1,\n",
      "          'seldes': 1,\n",
      "          'macdowells': 1,\n",
      "          'strange': 1,\n",
      "          'parents': 1,\n",
      "          'nglib': 1,\n",
      "          'rationalization': 1,\n",
      "          'infidelity': 1,\n",
      "          'speak': 1,\n",
      "          'english': 1,\n",
      "          'count': 1,\n",
      "          'staple': 1,\n",
      "          'screenplay': 1,\n",
      "          'morality': 1,\n",
      "          'seems': 1,\n",
      "          'away': 1,\n",
      "          'go': 1,\n",
      "          'characters': 1,\n",
      "          'mostly': 1,\n",
      "          'wouldnt': 1,\n",
      "          'mind': 1,\n",
      "          'befriend': 1,\n",
      "          'actors': 1,\n",
      "          'hamstrung': 1,\n",
      "          'weak': 1,\n",
      "          'nhelmer': 1,\n",
      "          'chelsom': 1,\n",
      "          'made': 1,\n",
      "          'outstanding': 1,\n",
      "          'offbeat': 1,\n",
      "          'funny': 1,\n",
      "          'bones': 1,\n",
      "          'mired': 1,\n",
      "          'mess': 1,\n",
      "          'puts': 1,\n",
      "          'imprint': 1,\n",
      "          'values': 1,\n",
      "          'high': 1,\n",
      "          'expects': 1,\n",
      "          'big': 1,\n",
      "          'budget': 1,\n",
      "          'opulent': 1,\n",
      "          'sets': 1,\n",
      "          'caroline': 1,\n",
      "          'hanania': 1,\n",
      "          'lavish': 1,\n",
      "          'wardrobes': 1,\n",
      "          'molly': 1,\n",
      "          'maginnis': 1,\n",
      "          'topnotch': 1,\n",
      "          'photography': 1,\n",
      "          'william': 1,\n",
      "          'fraker': 1,\n",
      "          'save': 1,\n",
      "          'long': 1,\n",
      "          'list': 1,\n",
      "          'distribution': 1,\n",
      "          'might': 1,\n",
      "          'better': 1,\n",
      "          'said': 1,\n",
      "          'give': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ship': 9,\n",
      "          'hackman': 6,\n",
      "          'scene': 5,\n",
      "          'poseidon': 4,\n",
      "          'adventure': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'new': 4,\n",
      "          'years': 3,\n",
      "          'people': 3,\n",
      "          'see': 3,\n",
      "          'buttons': 3,\n",
      "          'winters': 3,\n",
      "          'ballroom': 3,\n",
      "          'top': 3,\n",
      "          'water': 3,\n",
      "          'borgnine': 2,\n",
      "          'cruise': 2,\n",
      "          'begins': 2,\n",
      "          'theres': 2,\n",
      "          'ntheres': 2,\n",
      "          'stevens': 2,\n",
      "          'hippie': 2,\n",
      "          'turns': 2,\n",
      "          'man': 2,\n",
      "          'red': 2,\n",
      "          'brother': 2,\n",
      "          'albertson': 2,\n",
      "          'live': 2,\n",
      "          'beautiful': 2,\n",
      "          'get': 2,\n",
      "          'first': 2,\n",
      "          'giant': 2,\n",
      "          'bottom': 2,\n",
      "          'way': 2,\n",
      "          'two': 2,\n",
      "          'scenes': 2,\n",
      "          'rooms': 2,\n",
      "          'nits': 2,\n",
      "          'one': 2,\n",
      "          'even': 2,\n",
      "          'swimming': 2,\n",
      "          'three': 2,\n",
      "          'seventeen': 2,\n",
      "          'much': 2,\n",
      "          'crown': 1,\n",
      "          'jewel': 1,\n",
      "          '1970s': 1,\n",
      "          'irwin': 1,\n",
      "          'allen': 1,\n",
      "          'disaster': 1,\n",
      "          'movies': 1,\n",
      "          'features': 1,\n",
      "          'allstar': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'gene': 1,\n",
      "          'ernest': 1,\n",
      "          'spouting': 1,\n",
      "          'laughable': 1,\n",
      "          'dramatic': 1,\n",
      "          'dialogue': 1,\n",
      "          'history': 1,\n",
      "          'trapped': 1,\n",
      "          'story': 1,\n",
      "          'u': 1,\n",
      "          'nposeidons': 1,\n",
      "          'big': 1,\n",
      "          'introduced': 1,\n",
      "          'ensemble': 1,\n",
      "          'soon': 1,\n",
      "          'passengers': 1,\n",
      "          'left': 1,\n",
      "          'alive': 1,\n",
      "          'nlets': 1,\n",
      "          'age': 1,\n",
      "          'preacher': 1,\n",
      "          'advises': 1,\n",
      "          'pray': 1,\n",
      "          'part': 1,\n",
      "          'god': 1,\n",
      "          'within': 1,\n",
      "          'excop': 1,\n",
      "          'busted': 1,\n",
      "          'hooker': 1,\n",
      "          'stella': 1,\n",
      "          'six': 1,\n",
      "          'times': 1,\n",
      "          'married': 1,\n",
      "          'singer': 1,\n",
      "          'got': 1,\n",
      "          'morning': 1,\n",
      "          'company': 1,\n",
      "          'lonely': 1,\n",
      "          'killed': 1,\n",
      "          'nand': 1,\n",
      "          'round': 1,\n",
      "          'group': 1,\n",
      "          'elderly': 1,\n",
      "          'couple': 1,\n",
      "          'jack': 1,\n",
      "          'shelley': 1,\n",
      "          'aboard': 1,\n",
      "          'teenage': 1,\n",
      "          'girl': 1,\n",
      "          'sailing': 1,\n",
      "          'alone': 1,\n",
      "          'adventurous': 1,\n",
      "          'scotsman': 1,\n",
      "          'roddy': 1,\n",
      "          'mcdowall': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'little': 1,\n",
      "          'well': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'straight': 1,\n",
      "          'faced': 1,\n",
      "          'captain': 1,\n",
      "          'leslie': 1,\n",
      "          'nielson': 1,\n",
      "          'looks': 1,\n",
      "          'horror': 1,\n",
      "          'tidal': 1,\n",
      "          'wave': 1,\n",
      "          'headed': 1,\n",
      "          'right': 1,\n",
      "          'neveryones': 1,\n",
      "          'time': 1,\n",
      "          'shortly': 1,\n",
      "          'past': 1,\n",
      "          'midnight': 1,\n",
      "          'year': 1,\n",
      "          'side': 1,\n",
      "          'completely': 1,\n",
      "          'upside': 1,\n",
      "          'second': 1,\n",
      "          'incommand': 1,\n",
      "          'wants': 1,\n",
      "          'everyone': 1,\n",
      "          'wait': 1,\n",
      "          'help': 1,\n",
      "          'arrives': 1,\n",
      "          'rebel': 1,\n",
      "          'leads': 1,\n",
      "          'small': 1,\n",
      "          'band': 1,\n",
      "          'followers': 1,\n",
      "          'quest': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'overturned': 1,\n",
      "          'neither': 1,\n",
      "          'lot': 1,\n",
      "          'bottoms': 1,\n",
      "          'women': 1,\n",
      "          'crew': 1,\n",
      "          'conveniently': 1,\n",
      "          'wearing': 1,\n",
      "          'hot': 1,\n",
      "          'pants': 1,\n",
      "          'camera': 1,\n",
      "          'shoots': 1,\n",
      "          'upwards': 1,\n",
      "          'climb': 1,\n",
      "          'ladders': 1,\n",
      "          'christmas': 1,\n",
      "          'trees': 1,\n",
      "          'nthus': 1,\n",
      "          'hour': 1,\n",
      "          'hushed': 1,\n",
      "          'trips': 1,\n",
      "          'long': 1,\n",
      "          'corridors': 1,\n",
      "          'burning': 1,\n",
      "          'etc': 1,\n",
      "          'slowly': 1,\n",
      "          'fills': 1,\n",
      "          'behind': 1,\n",
      "          'race': 1,\n",
      "          'clock': 1,\n",
      "          'mildly': 1,\n",
      "          'interesting': 1,\n",
      "          'works': 1,\n",
      "          'bad': 1,\n",
      "          'laugh': 1,\n",
      "          'melodrama': 1,\n",
      "          'comes': 1,\n",
      "          'inbetween': 1,\n",
      "          'nonthrilling': 1,\n",
      "          'action': 1,\n",
      "          'note': 1,\n",
      "          'borgnines': 1,\n",
      "          'onenote': 1,\n",
      "          'performance': 1,\n",
      "          'cranky': 1,\n",
      "          'old': 1,\n",
      "          'argues': 1,\n",
      "          'every': 1,\n",
      "          'step': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'although': 1,\n",
      "          'since': 1,\n",
      "          'isnt': 1,\n",
      "          'sex': 1,\n",
      "          'never': 1,\n",
      "          'find': 1,\n",
      "          'really': 1,\n",
      "          'wonder': 1,\n",
      "          'theyll': 1,\n",
      "          'grandsons': 1,\n",
      "          'birth': 1,\n",
      "          'nshelley': 1,\n",
      "          'provides': 1,\n",
      "          'hilarious': 1,\n",
      "          'toward': 1,\n",
      "          'end': 1,\n",
      "          'flooded': 1,\n",
      "          'next': 1,\n",
      "          'preparing': 1,\n",
      "          'dive': 1,\n",
      "          'rope': 1,\n",
      "          'rest': 1,\n",
      "          'pull': 1,\n",
      "          'along': 1,\n",
      "          'nwinters': 1,\n",
      "          'whiny': 1,\n",
      "          'fat': 1,\n",
      "          'woman': 1,\n",
      "          'throughout': 1,\n",
      "          'notso': 1,\n",
      "          'affectionately': 1,\n",
      "          'calls': 1,\n",
      "          'fatass': 1,\n",
      "          'finally': 1,\n",
      "          'finds': 1,\n",
      "          'purpose': 1,\n",
      "          'n': 1,\n",
      "          'underwater': 1,\n",
      "          'champ': 1,\n",
      "          'york': 1,\n",
      "          'running': 1,\n",
      "          'brags': 1,\n",
      "          'ask': 1,\n",
      "          'could': 1,\n",
      "          'shes': 1,\n",
      "          'skirt': 1,\n",
      "          'billowing': 1,\n",
      "          'around': 1,\n",
      "          'hips': 1,\n",
      "          'showing': 1,\n",
      "          'cellulite': 1,\n",
      "          'call': 1,\n",
      "          'shellulite': 1,\n",
      "          'nridden': 1,\n",
      "          'thighs': 1,\n",
      "          'funny': 1,\n",
      "          'innately': 1,\n",
      "          'disgusting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'pretty': 1,\n",
      "          'sums': 1,\n",
      "          'whole': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'loser': 10,\n",
      "          'heckerling': 6,\n",
      "          'paul': 6,\n",
      "          'guy': 4,\n",
      "          'npaul': 4,\n",
      "          'alcott': 4,\n",
      "          'film': 4,\n",
      "          'comic': 4,\n",
      "          'characters': 4,\n",
      "          'casting': 3,\n",
      "          'nin': 3,\n",
      "          'found': 3,\n",
      "          'nshe': 3,\n",
      "          'like': 3,\n",
      "          'appealing': 3,\n",
      "          'kind': 3,\n",
      "          'dora': 3,\n",
      "          'professor': 3,\n",
      "          'even': 3,\n",
      "          'scenes': 3,\n",
      "          'nice': 3,\n",
      "          'arent': 3,\n",
      "          'ninstead': 3,\n",
      "          'would': 3,\n",
      "          'isnt': 3,\n",
      "          'amy': 2,\n",
      "          'heckerlings': 2,\n",
      "          'us': 2,\n",
      "          'clueless': 2,\n",
      "          'understand': 2,\n",
      "          'may': 2,\n",
      "          'also': 2,\n",
      "          'ngiving': 2,\n",
      "          'actors': 2,\n",
      "          'script': 2,\n",
      "          'makes': 2,\n",
      "          'films': 2,\n",
      "          'swell': 2,\n",
      "          'biggs': 2,\n",
      "          'boy': 2,\n",
      "          'finds': 2,\n",
      "          'gives': 2,\n",
      "          'roommates': 2,\n",
      "          'suvari': 2,\n",
      "          'slightly': 2,\n",
      "          'ntheyre': 2,\n",
      "          'two': 2,\n",
      "          'kids': 2,\n",
      "          'love': 2,\n",
      "          'people': 2,\n",
      "          'ni': 2,\n",
      "          'make': 2,\n",
      "          'watch': 2,\n",
      "          'establishing': 2,\n",
      "          'theres': 2,\n",
      "          'situations': 2,\n",
      "          'shows': 2,\n",
      "          'turns': 2,\n",
      "          'character': 2,\n",
      "          'hes': 2,\n",
      "          'giving': 2,\n",
      "          'nand': 2,\n",
      "          'manipulative': 2,\n",
      "          'one': 2,\n",
      "          'exaggerations': 2,\n",
      "          'somehow': 2,\n",
      "          'hope': 2,\n",
      "          'sequence': 2,\n",
      "          'hall': 2,\n",
      "          'watching': 1,\n",
      "          'occurred': 1,\n",
      "          'true': 1,\n",
      "          'genius': 1,\n",
      "          'filmmaker': 1,\n",
      "          'fast': 1,\n",
      "          'times': 1,\n",
      "          'ridgemont': 1,\n",
      "          'high': 1,\n",
      "          'gave': 1,\n",
      "          'sean': 1,\n",
      "          'penns': 1,\n",
      "          'jeff': 1,\n",
      "          'spicoli': 1,\n",
      "          'look': 1,\n",
      "          'whos': 1,\n",
      "          'talking': 1,\n",
      "          'turned': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'wisecracking': 1,\n",
      "          'baby': 1,\n",
      "          'provided': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'first': 1,\n",
      "          'career': 1,\n",
      "          'revival': 1,\n",
      "          'star': 1,\n",
      "          'vehicle': 1,\n",
      "          'adorableness': 1,\n",
      "          'alicia': 1,\n",
      "          'silverstone': 1,\n",
      "          'seems': 1,\n",
      "          'instinctively': 1,\n",
      "          'find': 1,\n",
      "          'performers': 1,\n",
      "          'audience': 1,\n",
      "          'spite': 1,\n",
      "          'flaws': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'starting': 1,\n",
      "          'understands': 1,\n",
      "          'creates': 1,\n",
      "          'likeable': 1,\n",
      "          'movies': 1,\n",
      "          'appeal': 1,\n",
      "          '_is_': 1,\n",
      "          'movie': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'awful': 1,\n",
      "          'nnaturally': 1,\n",
      "          'protagonist': 1,\n",
      "          'allaround': 1,\n",
      "          'tannek': 1,\n",
      "          'jason': 1,\n",
      "          'smalltown': 1,\n",
      "          'gets': 1,\n",
      "          'scholarship': 1,\n",
      "          'nyu': 1,\n",
      "          'instantly': 1,\n",
      "          'island': 1,\n",
      "          'compassion': 1,\n",
      "          'diligence': 1,\n",
      "          'coldhearted': 1,\n",
      "          'big': 1,\n",
      "          'city': 1,\n",
      "          'seat': 1,\n",
      "          'subway': 1,\n",
      "          'elderly': 1,\n",
      "          'woman': 1,\n",
      "          'adam': 1,\n",
      "          'zak': 1,\n",
      "          'orth': 1,\n",
      "          'chris': 1,\n",
      "          'tom': 1,\n",
      "          'sadoski': 1,\n",
      "          'noah': 1,\n",
      "          'jimmi': 1,\n",
      "          'simpson': 1,\n",
      "          'guys': 1,\n",
      "          'blast': 1,\n",
      "          'music': 1,\n",
      "          'let': 1,\n",
      "          'waterbeds': 1,\n",
      "          'leak': 1,\n",
      "          'adores': 1,\n",
      "          'girls': 1,\n",
      "          'afar': 1,\n",
      "          'case': 1,\n",
      "          'lovely': 1,\n",
      "          'diamond': 1,\n",
      "          'mena': 1,\n",
      "          'ndora': 1,\n",
      "          'problems': 1,\n",
      "          'including': 1,\n",
      "          'shortage': 1,\n",
      "          'funds': 1,\n",
      "          'pay': 1,\n",
      "          'tuition': 1,\n",
      "          'relationship': 1,\n",
      "          'edward': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'thats': 1,\n",
      "          'onesided': 1,\n",
      "          'conscientious': 1,\n",
      "          'animals': 1,\n",
      "          'homeless': 1,\n",
      "          'clearly': 1,\n",
      "          'belong': 1,\n",
      "          'together': 1,\n",
      "          'must': 1,\n",
      "          'confess': 1,\n",
      "          'suckered': 1,\n",
      "          'njason': 1,\n",
      "          'engaging': 1,\n",
      "          'performer': 1,\n",
      "          'whose': 1,\n",
      "          'unconventional': 1,\n",
      "          'looks': 1,\n",
      "          'easier': 1,\n",
      "          'embrace': 1,\n",
      "          'coquette': 1,\n",
      "          'undercurrent': 1,\n",
      "          'intelligence': 1,\n",
      "          'pleasant': 1,\n",
      "          'enough': 1,\n",
      "          'plenty': 1,\n",
      "          'respective': 1,\n",
      "          'antagonists': 1,\n",
      "          'nthen': 1,\n",
      "          'gradually': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'virtually': 1,\n",
      "          'nothing': 1,\n",
      "          'sort': 1,\n",
      "          'theory': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'scarcely': 1,\n",
      "          'laugh': 1,\n",
      "          'entire': 1,\n",
      "          'notable': 1,\n",
      "          'exception': 1,\n",
      "          'cameo': 1,\n",
      "          'scenestealing': 1,\n",
      "          'actor': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'clerk': 1,\n",
      "          'taking': 1,\n",
      "          'time': 1,\n",
      "          'funny': 1,\n",
      "          'spends': 1,\n",
      "          '98': 1,\n",
      "          'minutes': 1,\n",
      "          'making': 1,\n",
      "          'pathetic': 1,\n",
      "          'none': 1,\n",
      "          'ear': 1,\n",
      "          'quirky': 1,\n",
      "          'dialogue': 1,\n",
      "          'sparked': 1,\n",
      "          'interest': 1,\n",
      "          'lively': 1,\n",
      "          'plotting': 1,\n",
      "          'surprisingly': 1,\n",
      "          'since': 1,\n",
      "          'cluelesss': 1,\n",
      "          'plot': 1,\n",
      "          'came': 1,\n",
      "          'via': 1,\n",
      "          'jane': 1,\n",
      "          'austens': 1,\n",
      "          'emma': 1,\n",
      "          'simply': 1,\n",
      "          'pity': 1,\n",
      "          'party': 1,\n",
      "          'nsince': 1,\n",
      "          'composed': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'might': 1,\n",
      "          'think': 1,\n",
      "          'interesting': 1,\n",
      "          'least': 1,\n",
      "          'complicated': 1,\n",
      "          'either': 1,\n",
      "          'perfect': 1,\n",
      "          'unredeemable': 1,\n",
      "          'reason': 1,\n",
      "          'flawless': 1,\n",
      "          'consequently': 1,\n",
      "          'central': 1,\n",
      "          'absolutely': 1,\n",
      "          'growing': 1,\n",
      "          'nhis': 1,\n",
      "          'inconsiderate': 1,\n",
      "          'theyre': 1,\n",
      "          'actively': 1,\n",
      "          'evilblackmailing': 1,\n",
      "          'drugging': 1,\n",
      "          'women': 1,\n",
      "          'rohypnol': 1,\n",
      "          'generally': 1,\n",
      "          'humanity': 1,\n",
      "          'bad': 1,\n",
      "          'name': 1,\n",
      "          'house': 1,\n",
      "          'slave': 1,\n",
      "          'ndoras': 1,\n",
      "          'unthinking': 1,\n",
      "          'devotion': 1,\n",
      "          'whiff': 1,\n",
      "          'basic': 1,\n",
      "          'human': 1,\n",
      "          'frailty': 1,\n",
      "          'explored': 1,\n",
      "          'sufficient': 1,\n",
      "          'detail': 1,\n",
      "          'ntheres': 1,\n",
      "          'ambiguity': 1,\n",
      "          '30second': 1,\n",
      "          'snippet': 1,\n",
      "          'alan': 1,\n",
      "          'cummings': 1,\n",
      "          'broadway': 1,\n",
      "          'performance': 1,\n",
      "          'emcee': 1,\n",
      "          'cabaret': 1,\n",
      "          'rest': 1,\n",
      "          'thing': 1,\n",
      "          'turn': 1,\n",
      "          'supporting': 1,\n",
      "          'another': 1,\n",
      "          'flatten': 1,\n",
      "          'leads': 1,\n",
      "          'easily': 1,\n",
      "          'digestible': 1,\n",
      "          'mush': 1,\n",
      "          'help': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'ncomic': 1,\n",
      "          'nstill': 1,\n",
      "          'spent': 1,\n",
      "          'much': 1,\n",
      "          'holding': 1,\n",
      "          'ridiculous': 1,\n",
      "          'salvage': 1,\n",
      "          'tedium': 1,\n",
      "          'justify': 1,\n",
      "          'desire': 1,\n",
      "          'nthat': 1,\n",
      "          'dissolved': 1,\n",
      "          'moment': 1,\n",
      "          'underscored': 1,\n",
      "          'throes': 1,\n",
      "          'unrequited': 1,\n",
      "          'simon': 1,\n",
      "          'garfunkels': 1,\n",
      "          'scarborough': 1,\n",
      "          'faircanticle': 1,\n",
      "          'knowing': 1,\n",
      "          'winka': 1,\n",
      "          'reference': 1,\n",
      "          'graduate': 1,\n",
      "          'hint': 1,\n",
      "          'becoming': 1,\n",
      "          'overlysensitive': 1,\n",
      "          'clichheckerling': 1,\n",
      "          'plays': 1,\n",
      "          'deadly': 1,\n",
      "          'straight': 1,\n",
      "          'neven': 1,\n",
      "          'scream': 1,\n",
      "          'light': 1,\n",
      "          'touch': 1,\n",
      "          'bit': 1,\n",
      "          'poke': 1,\n",
      "          'protagonists': 1,\n",
      "          'foibles': 1,\n",
      "          'impossible': 1,\n",
      "          'stray': 1,\n",
      "          'gospel': 1,\n",
      "          'saint': 1,\n",
      "          'ncluelesss': 1,\n",
      "          'cher': 1,\n",
      "          'selfabsorption': 1,\n",
      "          'tendencies': 1,\n",
      "          'balance': 1,\n",
      "          'cuteness': 1,\n",
      "          'leaden': 1,\n",
      "          'hand': 1,\n",
      "          'material': 1,\n",
      "          'demands': 1,\n",
      "          'friskiness': 1,\n",
      "          'show': 1,\n",
      "          'wit': 1,\n",
      "          'involves': 1,\n",
      "          'naming': 1,\n",
      "          'pauls': 1,\n",
      "          'dorm': 1,\n",
      "          'hunts': 1,\n",
      "          'erstwhile': 1,\n",
      "          'bowery': 1,\n",
      "          'huntz': 1,\n",
      "          'nher': 1,\n",
      "          'gift': 1,\n",
      "          'proved': 1,\n",
      "          'curse': 1,\n",
      "          'nloser': 1,\n",
      "          'crashing': 1,\n",
      "          'bore': 1,\n",
      "          'gee': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'n': 10,\n",
      "          'john': 7,\n",
      "          'baptist': 3,\n",
      "          'newfoundland': 3,\n",
      "          'sent': 2,\n",
      "          'world': 2,\n",
      "          'must': 2,\n",
      "          'hope': 2,\n",
      "          'nit': 2,\n",
      "          '4': 2,\n",
      "          'reason': 2,\n",
      "          'one': 2,\n",
      "          'result': 2,\n",
      "          'like': 2,\n",
      "          'capsule': 1,\n",
      "          'heaven': 1,\n",
      "          'see': 1,\n",
      "          'worth': 1,\n",
      "          'saving': 1,\n",
      "          'nhe': 1,\n",
      "          'find': 1,\n",
      "          'sign': 1,\n",
      "          'people': 1,\n",
      "          'nthis': 1,\n",
      "          'little': 1,\n",
      "          'tv': 1,\n",
      "          'skit': 1,\n",
      "          'movie': 1,\n",
      "          'form': 1,\n",
      "          'watchable': 1,\n",
      "          'apparently': 1,\n",
      "          'released': 1,\n",
      "          'theaters': 1,\n",
      "          'canada': 1,\n",
      "          'unlikely': 1,\n",
      "          'seen': 1,\n",
      "          'international': 1,\n",
      "          'market': 1,\n",
      "          'diverting': 1,\n",
      "          'hardly': 1,\n",
      "          'serious': 1,\n",
      "          'piece': 1,\n",
      "          'cinema': 1,\n",
      "          '0': 1,\n",
      "          'minor': 1,\n",
      "          'spoilers': 1,\n",
      "          'review': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'w': 1,\n",
      "          'doyle': 1,\n",
      "          'st': 1,\n",
      "          'ngets': 1,\n",
      "          'invitation': 1,\n",
      "          'live': 1,\n",
      "          'family': 1,\n",
      "          'nthat': 1,\n",
      "          'extraordinary': 1,\n",
      "          'hospitality': 1,\n",
      "          'count': 1,\n",
      "          'script': 1,\n",
      "          'lot': 1,\n",
      "          'holes': 1,\n",
      "          'friend': 1,\n",
      "          'adopts': 1,\n",
      "          'surprisingly': 1,\n",
      "          'militant': 1,\n",
      "          'planning': 1,\n",
      "          'actions': 1,\n",
      "          'destabilize': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'look': 1,\n",
      "          'middle': 1,\n",
      "          'eastern': 1,\n",
      "          'somehow': 1,\n",
      "          'expects': 1,\n",
      "          'dramatic': 1,\n",
      "          'conspiracy': 1,\n",
      "          'vatican': 1,\n",
      "          'riding': 1,\n",
      "          'visit': 1,\n",
      "          'though': 1,\n",
      "          'seems': 1,\n",
      "          'small': 1,\n",
      "          'compared': 1,\n",
      "          'end': 1,\n",
      "          'big': 1,\n",
      "          'yucks': 1,\n",
      "          'seeing': 1,\n",
      "          'nun': 1,\n",
      "          'give': 1,\n",
      "          'pope': 1,\n",
      "          'pedicure': 1,\n",
      "          'evil': 1,\n",
      "          'popes': 1,\n",
      "          'aid': 1,\n",
      "          'praying': 1,\n",
      "          'mendes': 1,\n",
      "          'goat': 1,\n",
      "          'large': 1,\n",
      "          'part': 1,\n",
      "          'satire': 1,\n",
      "          'life': 1,\n",
      "          'taking': 1,\n",
      "          'licks': 1,\n",
      "          'things': 1,\n",
      "          'poor': 1,\n",
      "          'produce': 1,\n",
      "          'nthe': 1,\n",
      "          'good': 1,\n",
      "          'tomato': 1,\n",
      "          'grocery': 1,\n",
      "          'virtue': 1,\n",
      "          'miracle': 1,\n",
      "          'fallen': 1,\n",
      "          'truck': 1,\n",
      "          'toronto': 1,\n",
      "          'based': 1,\n",
      "          '20minute': 1,\n",
      "          'short': 1,\n",
      "          'film': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'gadget': 8,\n",
      "          'movie': 6,\n",
      "          'inspector': 5,\n",
      "          'go': 4,\n",
      "          'one': 4,\n",
      "          'features': 3,\n",
      "          'make': 3,\n",
      "          'trying': 3,\n",
      "          'film': 3,\n",
      "          'films': 3,\n",
      "          'like': 3,\n",
      "          'yet': 3,\n",
      "          'john': 3,\n",
      "          'save': 3,\n",
      "          'father': 3,\n",
      "          'good': 3,\n",
      "          'really': 3,\n",
      "          'slug': 3,\n",
      "          'rule': 2,\n",
      "          'try': 2,\n",
      "          'liveaction': 2,\n",
      "          'kids': 2,\n",
      "          'entertainment': 2,\n",
      "          'nthis': 2,\n",
      "          'popular': 2,\n",
      "          'worst': 2,\n",
      "          'expensive': 2,\n",
      "          'childrens': 2,\n",
      "          'nit': 2,\n",
      "          'running': 2,\n",
      "          'time': 2,\n",
      "          'nits': 2,\n",
      "          'want': 2,\n",
      "          'days': 2,\n",
      "          'fancy': 2,\n",
      "          'effects': 2,\n",
      "          'long': 2,\n",
      "          'dr': 2,\n",
      "          'brenda': 2,\n",
      "          'dream': 2,\n",
      "          'would': 2,\n",
      "          'becoming': 2,\n",
      "          'kinds': 2,\n",
      "          'bang': 2,\n",
      "          'nin': 2,\n",
      "          'evil': 2,\n",
      "          'dollar': 2,\n",
      "          'director': 2,\n",
      "          'replaced': 2,\n",
      "          'see': 2,\n",
      "          'nthey': 2,\n",
      "          'probably': 2,\n",
      "          'ntheres': 2,\n",
      "          'studios': 2,\n",
      "          'death': 2,\n",
      "          'script': 2,\n",
      "          'could': 2,\n",
      "          'disney': 1,\n",
      "          'sticktowhatyoudobest': 1,\n",
      "          'states': 1,\n",
      "          'disneys': 1,\n",
      "          'animated': 1,\n",
      "          'invariably': 1,\n",
      "          'sublime': 1,\n",
      "          'whenever': 1,\n",
      "          'hand': 1,\n",
      "          'fail': 1,\n",
      "          'miserably': 1,\n",
      "          'goes': 1,\n",
      "          'double': 1,\n",
      "          'occasions': 1,\n",
      "          'adaptation': 1,\n",
      "          'cartoon': 1,\n",
      "          'remember': 1,\n",
      "          '1996': 1,\n",
      "          'version': 1,\n",
      "          '101': 1,\n",
      "          'dalmations': 1,\n",
      "          'nim': 1,\n",
      "          'still': 1,\n",
      "          'forget': 1,\n",
      "          'nthat': 1,\n",
      "          'proves': 1,\n",
      "          'dependable': 1,\n",
      "          'ever': 1,\n",
      "          'insulting': 1,\n",
      "          'despicable': 1,\n",
      "          'piece': 1,\n",
      "          'trash': 1,\n",
      "          'pass': 1,\n",
      "          'viable': 1,\n",
      "          'bore': 1,\n",
      "          'anyone': 1,\n",
      "          'five': 1,\n",
      "          'prove': 1,\n",
      "          'unbearable': 1,\n",
      "          'adults': 1,\n",
      "          'even': 1,\n",
      "          'relatively': 1,\n",
      "          'skinny': 1,\n",
      "          '80': 1,\n",
      "          'minutes': 1,\n",
      "          'local': 1,\n",
      "          'blockbuster': 1,\n",
      "          'rent': 1,\n",
      "          'something': 1,\n",
      "          'brains': 1,\n",
      "          'important': 1,\n",
      "          'budgets': 1,\n",
      "          'wit': 1,\n",
      "          'compensated': 1,\n",
      "          'lack': 1,\n",
      "          'njust': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'began': 1,\n",
      "          'convince': 1,\n",
      "          'hope': 1,\n",
      "          'actor': 1,\n",
      "          'career': 1,\n",
      "          'takes': 1,\n",
      "          'nosedive': 1,\n",
      "          'hell': 1,\n",
      "          'role': 1,\n",
      "          'brown': 1,\n",
      "          'depressed': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'big': 1,\n",
      "          'heart': 1,\n",
      "          'hopes': 1,\n",
      "          'day': 1,\n",
      "          'become': 1,\n",
      "          'real': 1,\n",
      "          'policemen': 1,\n",
      "          'help': 1,\n",
      "          'people': 1,\n",
      "          'around': 1,\n",
      "          'nhe': 1,\n",
      "          'dreams': 1,\n",
      "          'heroic': 1,\n",
      "          'deeds': 1,\n",
      "          'subsequent': 1,\n",
      "          'admiration': 1,\n",
      "          'crush': 1,\n",
      "          'bradford': 1,\n",
      "          'joely': 1,\n",
      "          'fisher': 1,\n",
      "          'nbut': 1,\n",
      "          'bizarre': 1,\n",
      "          'coincidences': 1,\n",
      "          'seems': 1,\n",
      "          'longer': 1,\n",
      "          'njohn': 1,\n",
      "          'breaks': 1,\n",
      "          'every': 1,\n",
      "          'bone': 1,\n",
      "          'body': 1,\n",
      "          'brendas': 1,\n",
      "          'ndr': 1,\n",
      "          'working': 1,\n",
      "          'project': 1,\n",
      "          'halfman': 1,\n",
      "          'halfmachine': 1,\n",
      "          'superpoliceman': 1,\n",
      "          'fight': 1,\n",
      "          'crime': 1,\n",
      "          'nfeeling': 1,\n",
      "          'indebted': 1,\n",
      "          'decides': 1,\n",
      "          'life': 1,\n",
      "          'making': 1,\n",
      "          'subject': 1,\n",
      "          'realizing': 1,\n",
      "          'policeman': 1,\n",
      "          'nnow': 1,\n",
      "          'says': 1,\n",
      "          'insert': 1,\n",
      "          'name': 1,\n",
      "          'gizmo': 1,\n",
      "          'use': 1,\n",
      "          'nifty': 1,\n",
      "          'gadgets': 1,\n",
      "          'capture': 1,\n",
      "          'crooks': 1,\n",
      "          'bandits': 1,\n",
      "          'mangle': 1,\n",
      "          'murderers': 1,\n",
      "          'meantime': 1,\n",
      "          'claw': 1,\n",
      "          'rupert': 1,\n",
      "          'everett': 1,\n",
      "          'man': 1,\n",
      "          'responsible': 1,\n",
      "          'murder': 1,\n",
      "          'doctors': 1,\n",
      "          'building': 1,\n",
      "          'carbon': 1,\n",
      "          'copy': 1,\n",
      "          'except': 1,\n",
      "          'browns': 1,\n",
      "          'nemesis': 1,\n",
      "          'nclaw': 1,\n",
      "          'plans': 1,\n",
      "          'world': 1,\n",
      "          'domination': 1,\n",
      "          'leaves': 1,\n",
      "          'mobile': 1,\n",
      "          'voice': 1,\n",
      "          'l': 1,\n",
      "          'nhughley': 1,\n",
      "          'humanity': 1,\n",
      "          'wrath': 1,\n",
      "          'nstate': 1,\n",
      "          'art': 1,\n",
      "          'fly': 1,\n",
      "          'mad': 1,\n",
      "          'pace': 1,\n",
      "          '90': 1,\n",
      "          'million': 1,\n",
      "          'david': 1,\n",
      "          'kelogg': 1,\n",
      "          'never': 1,\n",
      "          'sets': 1,\n",
      "          'convincing': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nhad': 1,\n",
      "          'gizmos': 1,\n",
      "          'bills': 1,\n",
      "          'wound': 1,\n",
      "          'effect': 1,\n",
      "          'nwhat': 1,\n",
      "          'screen': 1,\n",
      "          'raw': 1,\n",
      "          'ingredients': 1,\n",
      "          'meal': 1,\n",
      "          'fx': 1,\n",
      "          'amounts': 1,\n",
      "          'nothing': 1,\n",
      "          'npart': 1,\n",
      "          'charm': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          'sly': 1,\n",
      "          'irreverence': 1,\n",
      "          'gone': 1,\n",
      "          'toilet': 1,\n",
      "          'condescending': 1,\n",
      "          'ncan': 1,\n",
      "          'admire': 1,\n",
      "          'hero': 1,\n",
      "          'goodytwoshoes': 1,\n",
      "          'screams': 1,\n",
      "          'hey': 1,\n",
      "          'nyou': 1,\n",
      "          'ran': 1,\n",
      "          'stop': 1,\n",
      "          'sign': 1,\n",
      "          'nwhile': 1,\n",
      "          'hanging': 1,\n",
      "          'back': 1,\n",
      "          'bumper': 1,\n",
      "          'quickly': 1,\n",
      "          'moving': 1,\n",
      "          'vehicle': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'todays': 1,\n",
      "          'children': 1,\n",
      "          'respond': 1,\n",
      "          'better': 1,\n",
      "          'somebody': 1,\n",
      "          'dashing': 1,\n",
      "          'someone': 1,\n",
      "          'ultracool': 1,\n",
      "          'receive': 1,\n",
      "          'enough': 1,\n",
      "          'preaching': 1,\n",
      "          'parents': 1,\n",
      "          'insult': 1,\n",
      "          'intelligence': 1,\n",
      "          'assume': 1,\n",
      "          'action': 1,\n",
      "          'figure': 1,\n",
      "          'kick': 1,\n",
      "          'butt': 1,\n",
      "          'addition': 1,\n",
      "          'complex': 1,\n",
      "          'complaints': 1,\n",
      "          'theres': 1,\n",
      "          'also': 1,\n",
      "          'simple': 1,\n",
      "          'stuff': 1,\n",
      "          'boring': 1,\n",
      "          'formulaic': 1,\n",
      "          'achingly': 1,\n",
      "          'implausible': 1,\n",
      "          'feeling': 1,\n",
      "          'cares': 1,\n",
      "          'story': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'year': 1,\n",
      "          'feels': 1,\n",
      "          'made': 1,\n",
      "          'assembly': 1,\n",
      "          'line': 1,\n",
      "          'commercial': 1,\n",
      "          'sprite': 1,\n",
      "          'thats': 1,\n",
      "          'irrelevant': 1,\n",
      "          'theaters': 1,\n",
      "          'spoofs': 1,\n",
      "          'way': 1,\n",
      "          'major': 1,\n",
      "          'deal': 1,\n",
      "          'projects': 1,\n",
      "          'consists': 1,\n",
      "          'studio': 1,\n",
      "          'suits': 1,\n",
      "          'discussing': 1,\n",
      "          'fictitious': 1,\n",
      "          'thank': 1,\n",
      "          'god': 1,\n",
      "          'called': 1,\n",
      "          'neach': 1,\n",
      "          'executive': 1,\n",
      "          'gleefully': 1,\n",
      "          'presents': 1,\n",
      "          'different': 1,\n",
      "          'merchandise': 1,\n",
      "          'tiein': 1,\n",
      "          'taco': 1,\n",
      "          'nslug': 1,\n",
      "          'stick': 1,\n",
      "          'nat': 1,\n",
      "          'end': 1,\n",
      "          'asks': 1,\n",
      "          'nanother': 1,\n",
      "          'answers': 1,\n",
      "          'well': 1,\n",
      "          'dont': 1,\n",
      "          'friday': 1,\n",
      "          'contains': 1,\n",
      "          'sort': 1,\n",
      "          'logical': 1,\n",
      "          'contradictions': 1,\n",
      "          'blatantly': 1,\n",
      "          'obvious': 1,\n",
      "          'adherence': 1,\n",
      "          'formula': 1,\n",
      "          'eliminated': 1,\n",
      "          'attention': 1,\n",
      "          'payed': 1,\n",
      "          'coincidence': 1,\n",
      "          'comes': 1,\n",
      "          'animation': 1,\n",
      "          'nanimated': 1,\n",
      "          'take': 1,\n",
      "          'maker': 1,\n",
      "          'becomes': 1,\n",
      "          'labor': 1,\n",
      "          'love': 1,\n",
      "          'filmmakers': 1,\n",
      "          'put': 1,\n",
      "          'care': 1,\n",
      "          'pride': 1,\n",
      "          'work': 1,\n",
      "          'nthese': 1,\n",
      "          'banged': 1,\n",
      "          'quicker': 1,\n",
      "          'percentage': 1,\n",
      "          'turn': 1,\n",
      "          'worthless': 1,\n",
      "          'sloppy': 1,\n",
      "          'impersonal': 1,\n",
      "          'nthe': 1,\n",
      "          'factories': 1,\n",
      "          'assembled': 1,\n",
      "          'products': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'nas': 5,\n",
      "          'phil': 4,\n",
      "          'like': 4,\n",
      "          'deedles': 4,\n",
      "          'film': 4,\n",
      "          'stunts': 4,\n",
      "          'deedle': 3,\n",
      "          'meet': 3,\n",
      "          'bad': 3,\n",
      "          'one': 3,\n",
      "          'yellowstone': 3,\n",
      "          'worst': 3,\n",
      "          'stew': 2,\n",
      "          'nthis': 2,\n",
      "          'humor': 2,\n",
      "          'n': 2,\n",
      "          'looking': 2,\n",
      "          'nand': 2,\n",
      "          'boyum': 2,\n",
      "          'whose': 2,\n",
      "          'long': 2,\n",
      "          'background': 2,\n",
      "          'road': 2,\n",
      "          'classic': 2,\n",
      "          'nmeet': 2,\n",
      "          'nit': 2,\n",
      "          'us': 2,\n",
      "          'dialog': 2,\n",
      "          'point': 2,\n",
      "          'birthday': 2,\n",
      "          'camp': 2,\n",
      "          'two': 2,\n",
      "          'nthe': 2,\n",
      "          'prairie': 2,\n",
      "          'movies': 2,\n",
      "          'little': 2,\n",
      "          'dog': 2,\n",
      "          'petey': 2,\n",
      "          'hennings': 2,\n",
      "          'make': 2,\n",
      "          'look': 2,\n",
      "          'lips': 2,\n",
      "          'many': 2,\n",
      "          'stunt': 2,\n",
      "          'back': 2,\n",
      "          'nthey': 2,\n",
      "          'worm': 2,\n",
      "          'jeffrey': 2,\n",
      "          'circus': 2,\n",
      "          'twin': 1,\n",
      "          'surfer': 1,\n",
      "          'dudes': 1,\n",
      "          'lay': 1,\n",
      "          'bandaged': 1,\n",
      "          'unconscious': 1,\n",
      "          'hospital': 1,\n",
      "          'comes': 1,\n",
      "          'first': 1,\n",
      "          'chooses': 1,\n",
      "          'coolest': 1,\n",
      "          'way': 1,\n",
      "          'wake': 1,\n",
      "          'brother': 1,\n",
      "          'nyanking': 1,\n",
      "          'iv': 1,\n",
      "          'uses': 1,\n",
      "          'water': 1,\n",
      "          'pistol': 1,\n",
      "          'soak': 1,\n",
      "          'brothers': 1,\n",
      "          'face': 1,\n",
      "          'bit': 1,\n",
      "          'lame': 1,\n",
      "          'physical': 1,\n",
      "          'typical': 1,\n",
      "          'disneys': 1,\n",
      "          'endured': 1,\n",
      "          'watched': 1,\n",
      "          'stopped': 1,\n",
      "          'wife': 1,\n",
      "          'screening': 1,\n",
      "          'since': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'shed': 1,\n",
      "          'start': 1,\n",
      "          'sticking': 1,\n",
      "          'finger': 1,\n",
      "          'throat': 1,\n",
      "          'shes': 1,\n",
      "          'right': 1,\n",
      "          'ndirected': 1,\n",
      "          'without': 1,\n",
      "          'imagination': 1,\n",
      "          'steve': 1,\n",
      "          'mainly': 1,\n",
      "          'second': 1,\n",
      "          'unit': 1,\n",
      "          'direction': 1,\n",
      "          'limps': 1,\n",
      "          'along': 1,\n",
      "          'best': 1,\n",
      "          'nboyum': 1,\n",
      "          'attempts': 1,\n",
      "          'keep': 1,\n",
      "          'pace': 1,\n",
      "          'moving': 1,\n",
      "          'staging': 1,\n",
      "          'namazingly': 1,\n",
      "          'someone': 1,\n",
      "          'seems': 1,\n",
      "          'incapable': 1,\n",
      "          'finding': 1,\n",
      "          'fresh': 1,\n",
      "          'ones': 1,\n",
      "          'car': 1,\n",
      "          'go': 1,\n",
      "          'five': 1,\n",
      "          'different': 1,\n",
      "          'times': 1,\n",
      "          'maybe': 1,\n",
      "          'nbut': 1,\n",
      "          'whos': 1,\n",
      "          'counting': 1,\n",
      "          'script': 1,\n",
      "          'james': 1,\n",
      "          'herzfeld': 1,\n",
      "          'tapeheads': 1,\n",
      "          'decade': 1,\n",
      "          'ago': 1,\n",
      "          'awful': 1,\n",
      "          'considered': 1,\n",
      "          'cult': 1,\n",
      "          'however': 1,\n",
      "          'painfully': 1,\n",
      "          'rather': 1,\n",
      "          'laughably': 1,\n",
      "          'probably': 1,\n",
      "          'theaters': 1,\n",
      "          'tornado': 1,\n",
      "          'danger': 1,\n",
      "          'becoming': 1,\n",
      "          'anything': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nherzfeld': 1,\n",
      "          'treats': 1,\n",
      "          'gratingly': 1,\n",
      "          'abysmal': 1,\n",
      "          'includes': 1,\n",
      "          'geysers': 1,\n",
      "          'geezer': 1,\n",
      "          'id': 1,\n",
      "          'put': 1,\n",
      "          'haystack': 1,\n",
      "          'opens': 1,\n",
      "          'twins': 1,\n",
      "          'describe': 1,\n",
      "          'modestly': 1,\n",
      "          'walking': 1,\n",
      "          'kodak': 1,\n",
      "          'moment': 1,\n",
      "          'celebrating': 1,\n",
      "          '18th': 1,\n",
      "          'ride': 1,\n",
      "          'parasail': 1,\n",
      "          'high': 1,\n",
      "          'waters': 1,\n",
      "          'waikiki': 1,\n",
      "          'truant': 1,\n",
      "          'officer': 1,\n",
      "          'pursues': 1,\n",
      "          'jet': 1,\n",
      "          'ski': 1,\n",
      "          'heirs': 1,\n",
      "          'fabulous': 1,\n",
      "          'fortune': 1,\n",
      "          'empire': 1,\n",
      "          'boys': 1,\n",
      "          'sent': 1,\n",
      "          'father': 1,\n",
      "          'broken': 1,\n",
      "          'spirit': 1,\n",
      "          'transform': 1,\n",
      "          'laidback': 1,\n",
      "          'beach': 1,\n",
      "          'bums': 1,\n",
      "          'men': 1,\n",
      "          'arrive': 1,\n",
      "          'wetsuits': 1,\n",
      "          'theyve': 1,\n",
      "          'got': 1,\n",
      "          'surfboards': 1,\n",
      "          'skateboards': 1,\n",
      "          'hawaiian': 1,\n",
      "          'drink': 1,\n",
      "          'machine': 1,\n",
      "          'size': 1,\n",
      "          'armoire': 1,\n",
      "          'ntheir': 1,\n",
      "          'gone': 1,\n",
      "          'business': 1,\n",
      "          'mistaken': 1,\n",
      "          'new': 1,\n",
      "          'park': 1,\n",
      "          'rangers': 1,\n",
      "          'rest': 1,\n",
      "          'fighting': 1,\n",
      "          'parks': 1,\n",
      "          'overpopulation': 1,\n",
      "          'dogs': 1,\n",
      "          'well': 1,\n",
      "          'deranged': 1,\n",
      "          'exranger': 1,\n",
      "          'played': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'stop': 1,\n",
      "          'old': 1,\n",
      "          'faithful': 1,\n",
      "          'billionth': 1,\n",
      "          'celebration': 1,\n",
      "          'scheduled': 1,\n",
      "          'later': 1,\n",
      "          'week': 1,\n",
      "          'nhopper': 1,\n",
      "          'made': 1,\n",
      "          'wonderful': 1,\n",
      "          'carried': 1,\n",
      "          'away': 1,\n",
      "          'recent': 1,\n",
      "          'favorite': 1,\n",
      "          'propensity': 1,\n",
      "          'choosing': 1,\n",
      "          'truly': 1,\n",
      "          'odoriferous': 1,\n",
      "          'material': 1,\n",
      "          'isnt': 1,\n",
      "          'acting': 1,\n",
      "          'arguably': 1,\n",
      "          'hes': 1,\n",
      "          'ever': 1,\n",
      "          'nsteve': 1,\n",
      "          'van': 1,\n",
      "          'wormer': 1,\n",
      "          'paul': 1,\n",
      "          'walker': 1,\n",
      "          'give': 1,\n",
      "          'lifeless': 1,\n",
      "          'performances': 1,\n",
      "          'actor': 1,\n",
      "          'demonstrable': 1,\n",
      "          'talent': 1,\n",
      "          'cute': 1,\n",
      "          'named': 1,\n",
      "          'neven': 1,\n",
      "          'cinematography': 1,\n",
      "          'david': 1,\n",
      "          'prosaic': 1,\n",
      "          'manages': 1,\n",
      "          'dull': 1,\n",
      "          'nto': 1,\n",
      "          'add': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'fond': 1,\n",
      "          'inappropriate': 1,\n",
      "          'closeups': 1,\n",
      "          'serve': 1,\n",
      "          'remind': 1,\n",
      "          'inanity': 1,\n",
      "          'nput': 1,\n",
      "          'tenfoot': 1,\n",
      "          'pair': 1,\n",
      "          'screen': 1,\n",
      "          'naturally': 1,\n",
      "          'pay': 1,\n",
      "          'extra': 1,\n",
      "          'attention': 1,\n",
      "          'said': 1,\n",
      "          'nalthough': 1,\n",
      "          'says': 1,\n",
      "          'notes': 1,\n",
      "          'proud': 1,\n",
      "          'appropriate': 1,\n",
      "          'families': 1,\n",
      "          'wonders': 1,\n",
      "          'skateboarders': 1,\n",
      "          'attempt': 1,\n",
      "          'lying': 1,\n",
      "          'skateboard': 1,\n",
      "          'negotiating': 1,\n",
      "          'busy': 1,\n",
      "          'twisting': 1,\n",
      "          'mountain': 1,\n",
      "          'much': 1,\n",
      "          'fun': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'try': 1,\n",
      "          'variation': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'asks': 1,\n",
      "          'njust': 1,\n",
      "          'suspect': 1,\n",
      "          'cant': 1,\n",
      "          'takes': 1,\n",
      "          'turn': 1,\n",
      "          'downhill': 1,\n",
      "          'nits': 1,\n",
      "          'low': 1,\n",
      "          'may': 1,\n",
      "          'airline': 1,\n",
      "          'barf': 1,\n",
      "          'bag': 1,\n",
      "          'nafter': 1,\n",
      "          'phils': 1,\n",
      "          'girlfriend': 1,\n",
      "          'digs': 1,\n",
      "          'big': 1,\n",
      "          'mount': 1,\n",
      "          'moist': 1,\n",
      "          'soil': 1,\n",
      "          'suck': 1,\n",
      "          'nlike': 1,\n",
      "          'lovers': 1,\n",
      "          'eating': 1,\n",
      "          'spaghetti': 1,\n",
      "          'lady': 1,\n",
      "          'tramp': 1,\n",
      "          'finally': 1,\n",
      "          'kiss': 1,\n",
      "          'pull': 1,\n",
      "          'faces': 1,\n",
      "          'full': 1,\n",
      "          'dirt': 1,\n",
      "          'encased': 1,\n",
      "          'ingested': 1,\n",
      "          'runs': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'bathroom': 1,\n",
      "          'would': 1,\n",
      "          'acceptable': 1,\n",
      "          'kids': 1,\n",
      "          'around': 1,\n",
      "          '6': 1,\n",
      "          'nmy': 1,\n",
      "          'son': 1,\n",
      "          'friend': 1,\n",
      "          'nickolas': 1,\n",
      "          'almost': 1,\n",
      "          '9': 1,\n",
      "          'gave': 1,\n",
      "          'show': 1,\n",
      "          'thought': 1,\n",
      "          'scenes': 1,\n",
      "          'among': 1,\n",
      "          'favorites': 1,\n",
      "          'nnickolas': 1,\n",
      "          'also': 1,\n",
      "          'mentioned': 1,\n",
      "          'scene': 1,\n",
      "          'bear': 1,\n",
      "          'drives': 1,\n",
      "          'jeep': 1,\n",
      "          'especially': 1,\n",
      "          'liked': 1,\n",
      "          'elephant': 1,\n",
      "          'referred': 1,\n",
      "          'dumbo': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 6,\n",
      "          'story': 6,\n",
      "          'human': 6,\n",
      "          'robot': 4,\n",
      "          'future': 4,\n",
      "          'andrew': 4,\n",
      "          'nit': 4,\n",
      "          'nthe': 4,\n",
      "          'years': 4,\n",
      "          'science': 3,\n",
      "          'shows': 3,\n",
      "          'makes': 3,\n",
      "          'nthis': 3,\n",
      "          'still': 3,\n",
      "          'us': 3,\n",
      "          'possible': 3,\n",
      "          'nwhen': 3,\n",
      "          'really': 3,\n",
      "          'time': 3,\n",
      "          'seemed': 3,\n",
      "          'family': 2,\n",
      "          'columbus': 2,\n",
      "          'point': 2,\n",
      "          'isaac': 2,\n",
      "          'asimov': 2,\n",
      "          'fiction': 2,\n",
      "          'wants': 2,\n",
      "          'imagine': 2,\n",
      "          'difficult': 2,\n",
      "          'house': 2,\n",
      "          'nsoon': 2,\n",
      "          'williams': 2,\n",
      "          'mr': 2,\n",
      "          'martin': 2,\n",
      "          'sam': 2,\n",
      "          'neill': 2,\n",
      "          'nandrew': 2,\n",
      "          'emotions': 2,\n",
      "          'one': 2,\n",
      "          'serious': 2,\n",
      "          'obvious': 2,\n",
      "          'think': 2,\n",
      "          'lack': 2,\n",
      "          'society': 2,\n",
      "          'far': 2,\n",
      "          'reality': 2,\n",
      "          'reasons': 2,\n",
      "          'primitive': 2,\n",
      "          'world': 2,\n",
      "          'fashion': 2,\n",
      "          'today': 2,\n",
      "          'ni': 2,\n",
      "          'change': 2,\n",
      "          'unlikely': 2,\n",
      "          'hard': 2,\n",
      "          'doesnt': 2,\n",
      "          'magical': 2,\n",
      "          'bicentennial': 1,\n",
      "          'man': 1,\n",
      "          'without': 1,\n",
      "          'external': 1,\n",
      "          'motive': 1,\n",
      "          'exception': 1,\n",
      "          'providing': 1,\n",
      "          'minimum': 1,\n",
      "          'dose': 1,\n",
      "          'entertainment': 1,\n",
      "          'nchris': 1,\n",
      "          'director': 1,\n",
      "          'gave': 1,\n",
      "          'mrs': 1,\n",
      "          'doubtfire': 1,\n",
      "          'plays': 1,\n",
      "          'sentimental': 1,\n",
      "          'strings': 1,\n",
      "          'mushy': 1,\n",
      "          'dialogue': 1,\n",
      "          'make': 1,\n",
      "          'nbased': 1,\n",
      "          'short': 1,\n",
      "          'supposed': 1,\n",
      "          'nstarting': 1,\n",
      "          'distant': 1,\n",
      "          'concentrates': 1,\n",
      "          'wealthy': 1,\n",
      "          'buys': 1,\n",
      "          'android': 1,\n",
      "          'help': 1,\n",
      "          'children': 1,\n",
      "          'called': 1,\n",
      "          'robin': 1,\n",
      "          'abilities': 1,\n",
      "          'owner': 1,\n",
      "          'curious': 1,\n",
      "          'interested': 1,\n",
      "          'art': 1,\n",
      "          'music': 1,\n",
      "          'enjoys': 1,\n",
      "          'making': 1,\n",
      "          'clocks': 1,\n",
      "          'clearly': 1,\n",
      "          'genuine': 1,\n",
      "          'small': 1,\n",
      "          'failure': 1,\n",
      "          'electrical': 1,\n",
      "          'circuits': 1,\n",
      "          'positronic': 1,\n",
      "          'brain': 1,\n",
      "          'accidentally': 1,\n",
      "          'gained': 1,\n",
      "          'soul': 1,\n",
      "          'unique': 1,\n",
      "          'evil': 1,\n",
      "          'creators': 1,\n",
      "          'worried': 1,\n",
      "          'nthen': 1,\n",
      "          'decides': 1,\n",
      "          'teach': 1,\n",
      "          'things': 1,\n",
      "          'wasnt': 1,\n",
      "          'programmed': 1,\n",
      "          'leave': 1,\n",
      "          'pursuit': 1,\n",
      "          'freedom': 1,\n",
      "          'destiny': 1,\n",
      "          'love': 1,\n",
      "          'described': 1,\n",
      "          'disney': 1,\n",
      "          'version': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'shines': 1,\n",
      "          'biggest': 1,\n",
      "          'gem': 1,\n",
      "          'crown': 1,\n",
      "          'never': 1,\n",
      "          'since': 1,\n",
      "          'subject': 1,\n",
      "          'humanity': 1,\n",
      "          'stands': 1,\n",
      "          'big': 1,\n",
      "          'controversy': 1,\n",
      "          'nwhat': 1,\n",
      "          'thoughts': 1,\n",
      "          'nis': 1,\n",
      "          'become': 1,\n",
      "          'nat': 1,\n",
      "          'say': 1,\n",
      "          'nthese': 1,\n",
      "          'tough': 1,\n",
      "          'questions': 1,\n",
      "          'require': 1,\n",
      "          'thurral': 1,\n",
      "          'approach': 1,\n",
      "          'didnt': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'meditating': 1,\n",
      "          'question': 1,\n",
      "          'longer': 1,\n",
      "          'machine': 1,\n",
      "          'tells': 1,\n",
      "          'racial': 1,\n",
      "          'discrimination': 1,\n",
      "          'understanding': 1,\n",
      "          'complex': 1,\n",
      "          'emotional': 1,\n",
      "          'beginning': 1,\n",
      "          'audience': 1,\n",
      "          'immediately': 1,\n",
      "          'accepts': 1,\n",
      "          'troubles': 1,\n",
      "          'nin': 1,\n",
      "          'words': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'nfurther': 1,\n",
      "          'annoying': 1,\n",
      "          'problems': 1,\n",
      "          'nto': 1,\n",
      "          'day': 1,\n",
      "          'filmmaker': 1,\n",
      "          'dared': 1,\n",
      "          'speculate': 1,\n",
      "          '50': 1,\n",
      "          'done': 1,\n",
      "          'filmmakers': 1,\n",
      "          'well': 1,\n",
      "          'aware': 1,\n",
      "          'fact': 1,\n",
      "          'knowledge': 1,\n",
      "          'imagination': 1,\n",
      "          'perform': 1,\n",
      "          'task': 1,\n",
      "          'ncolumbus': 1,\n",
      "          'first': 1,\n",
      "          'crossed': 1,\n",
      "          'line': 1,\n",
      "          'result': 1,\n",
      "          'might': 1,\n",
      "          'unrealistic': 1,\n",
      "          'incredibly': 1,\n",
      "          'disappointing': 1,\n",
      "          'effort': 1,\n",
      "          'simply': 1,\n",
      "          'frozen': 1,\n",
      "          'nneither': 1,\n",
      "          'culture': 1,\n",
      "          'values': 1,\n",
      "          'changed': 1,\n",
      "          '200': 1,\n",
      "          'nmom': 1,\n",
      "          'working': 1,\n",
      "          'kitchen': 1,\n",
      "          'dishes': 1,\n",
      "          'back': 1,\n",
      "          'late': 1,\n",
      "          '17th': 1,\n",
      "          'century': 1,\n",
      "          'compare': 1,\n",
      "          'live': 1,\n",
      "          'youll': 1,\n",
      "          'see': 1,\n",
      "          'slightly': 1,\n",
      "          'bigger': 1,\n",
      "          'difference': 1,\n",
      "          'saying': 1,\n",
      "          'everything': 1,\n",
      "          'rights': 1,\n",
      "          'even': 1,\n",
      "          'progress': 1,\n",
      "          'technology': 1,\n",
      "          'suppose': 1,\n",
      "          'watch': 1,\n",
      "          'sort': 1,\n",
      "          'bizarre': 1,\n",
      "          'fairytale': 1,\n",
      "          'nrobin': 1,\n",
      "          'hidden': 1,\n",
      "          'behind': 1,\n",
      "          'c': 1,\n",
      "          'speaking': 1,\n",
      "          'robotic': 1,\n",
      "          'way': 1,\n",
      "          'nas': 1,\n",
      "          'always': 1,\n",
      "          'decent': 1,\n",
      "          'job': 1,\n",
      "          'nbut': 1,\n",
      "          'matter': 1,\n",
      "          'sentimentality': 1,\n",
      "          'length': 1,\n",
      "          'turns': 1,\n",
      "          'picture': 1,\n",
      "          'tiresome': 1,\n",
      "          'experience': 1,\n",
      "          'npretty': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'last': 1,\n",
      "          'meet': 1,\n",
      "          'joe': 1,\n",
      "          'black': 1,\n",
      "          'unresolved': 1,\n",
      "          'presented': 1,\n",
      "          'splendor': 1,\n",
      "          'professionalism': 1,\n",
      "          'deserve': 1,\n",
      "          'ngreat': 1,\n",
      "          'actors': 1,\n",
      "          'talented': 1,\n",
      "          'crew': 1,\n",
      "          'worked': 1,\n",
      "          'achieve': 1,\n",
      "          'something': 1,\n",
      "          'instantly': 1,\n",
      "          'forgotten': 1,\n",
      "          'wrote': 1,\n",
      "          'away': 1,\n",
      "          'neverything': 1,\n",
      "          'nnow': 1,\n",
      "          'asimovs': 1,\n",
      "          'know': 1,\n",
      "          'perfect': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'nfor': 1,\n",
      "          'young': 1,\n",
      "          'generation': 1,\n",
      "          'amazed': 1,\n",
      "          'julius': 1,\n",
      "          'vernes': 1,\n",
      "          '20': 1,\n",
      "          '000': 1,\n",
      "          'leagues': 1,\n",
      "          'sea': 1,\n",
      "          'cant': 1,\n",
      "          'accept': 1,\n",
      "          'potential': 1,\n",
      "          'nlet': 1,\n",
      "          'hope': 1,\n",
      "          'next': 1,\n",
      "          'nwill': 1,\n",
      "          'rewarding': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 15,\n",
      "          'nthe': 11,\n",
      "          'one': 6,\n",
      "          'series': 6,\n",
      "          'set': 6,\n",
      "          'nthis': 5,\n",
      "          'freeze': 5,\n",
      "          'nnow': 5,\n",
      "          'robin': 5,\n",
      "          'batman': 5,\n",
      "          'scenes': 5,\n",
      "          'almost': 4,\n",
      "          'even': 4,\n",
      "          'look': 4,\n",
      "          'tv': 4,\n",
      "          'schumacher': 3,\n",
      "          'scene': 3,\n",
      "          'mr': 3,\n",
      "          'back': 3,\n",
      "          'poison': 3,\n",
      "          'ivy': 3,\n",
      "          'less': 3,\n",
      "          'nshe': 3,\n",
      "          'plant': 3,\n",
      "          'performance': 3,\n",
      "          'nhis': 3,\n",
      "          'nthere': 3,\n",
      "          'comes': 3,\n",
      "          'old': 3,\n",
      "          'action': 3,\n",
      "          'effects': 3,\n",
      "          'warner': 2,\n",
      "          'brothers': 2,\n",
      "          'franchise': 2,\n",
      "          'successfully': 2,\n",
      "          'talented': 2,\n",
      "          'another': 2,\n",
      "          'client': 2,\n",
      "          'thought': 2,\n",
      "          'reason': 2,\n",
      "          'characters': 2,\n",
      "          'point': 2,\n",
      "          'alicia': 2,\n",
      "          'silverstones': 2,\n",
      "          'batgirl': 2,\n",
      "          'dr': 2,\n",
      "          'dialogue': 2,\n",
      "          'cure': 2,\n",
      "          'wife': 2,\n",
      "          'man': 2,\n",
      "          'course': 2,\n",
      "          'world': 2,\n",
      "          'live': 2,\n",
      "          'logic': 2,\n",
      "          'wanted': 2,\n",
      "          'would': 2,\n",
      "          'breed': 2,\n",
      "          'life': 2,\n",
      "          'animal': 2,\n",
      "          'age': 2,\n",
      "          'destroying': 2,\n",
      "          'trying': 2,\n",
      "          'films': 2,\n",
      "          'burt': 2,\n",
      "          'ward': 2,\n",
      "          'bruce': 2,\n",
      "          'wayne': 2,\n",
      "          'time': 2,\n",
      "          'keep': 2,\n",
      "          'performances': 2,\n",
      "          'brings': 2,\n",
      "          'question': 2,\n",
      "          'forever': 2,\n",
      "          'nand': 2,\n",
      "          'except': 2,\n",
      "          'nothing': 2,\n",
      "          'good': 2,\n",
      "          'villains': 2,\n",
      "          'part': 2,\n",
      "          'freezes': 2,\n",
      "          'michael': 2,\n",
      "          'growing': 2,\n",
      "          'sex': 2,\n",
      "          'come': 2,\n",
      "          'may': 2,\n",
      "          'nmr': 2,\n",
      "          'team': 2,\n",
      "          'nevery': 2,\n",
      "          'succeeded': 2,\n",
      "          'special': 2,\n",
      "          'dykstra': 2,\n",
      "          'njoel': 2,\n",
      "          'nit': 2,\n",
      "          'continuation': 1,\n",
      "          'joel': 1,\n",
      "          'killed': 1,\n",
      "          'cash': 1,\n",
      "          'cow': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'grand': 1,\n",
      "          'disappointment': 1,\n",
      "          'tremendous': 1,\n",
      "          'line': 1,\n",
      "          'people': 1,\n",
      "          'involved': 1,\n",
      "          'navika': 1,\n",
      "          'goldsmans': 1,\n",
      "          'screenplay': 1,\n",
      "          'cluttered': 1,\n",
      "          'mess': 1,\n",
      "          'suspense': 1,\n",
      "          'built': 1,\n",
      "          'coming': 1,\n",
      "          'heals': 1,\n",
      "          'marvelously': 1,\n",
      "          'written': 1,\n",
      "          'project': 1,\n",
      "          'shock': 1,\n",
      "          'gives': 1,\n",
      "          'rise': 1,\n",
      "          'thoughts': 1,\n",
      "          'latter': 1,\n",
      "          'fluke': 1,\n",
      "          'nsituations': 1,\n",
      "          'developed': 1,\n",
      "          'executed': 1,\n",
      "          'get': 1,\n",
      "          'glaringly': 1,\n",
      "          'brought': 1,\n",
      "          'appearance': 1,\n",
      "          'happens': 1,\n",
      "          'alfreds': 1,\n",
      "          'niece': 1,\n",
      "          'story': 1,\n",
      "          'victor': 1,\n",
      "          'told': 1,\n",
      "          'completely': 1,\n",
      "          'afterthought': 1,\n",
      "          'nwhile': 1,\n",
      "          'working': 1,\n",
      "          'tragic': 1,\n",
      "          'decease': 1,\n",
      "          'contracted': 1,\n",
      "          'injured': 1,\n",
      "          'cryogenic': 1,\n",
      "          'procedure': 1,\n",
      "          'becomes': 1,\n",
      "          'survive': 1,\n",
      "          'sub': 1,\n",
      "          'zero': 1,\n",
      "          'environment': 1,\n",
      "          'become': 1,\n",
      "          'terrorist': 1,\n",
      "          'intent': 1,\n",
      "          'turning': 1,\n",
      "          'frozen': 1,\n",
      "          'planet': 1,\n",
      "          'little': 1,\n",
      "          'subplot': 1,\n",
      "          'escapes': 1,\n",
      "          'nif': 1,\n",
      "          'find': 1,\n",
      "          'bring': 1,\n",
      "          'brink': 1,\n",
      "          'death': 1,\n",
      "          'want': 1,\n",
      "          'warmth': 1,\n",
      "          'indeed': 1,\n",
      "          'cold': 1,\n",
      "          'hearted': 1,\n",
      "          'development': 1,\n",
      "          'contradictory': 1,\n",
      "          'wants': 1,\n",
      "          'form': 1,\n",
      "          'defend': 1,\n",
      "          'like': 1,\n",
      "          'joins': 1,\n",
      "          'plan': 1,\n",
      "          'start': 1,\n",
      "          'new': 1,\n",
      "          'ice': 1,\n",
      "          'therefore': 1,\n",
      "          'giving': 1,\n",
      "          'creations': 1,\n",
      "          'defense': 1,\n",
      "          'mechanism': 1,\n",
      "          'nbatman': 1,\n",
      "          'longer': 1,\n",
      "          'dark': 1,\n",
      "          'knight': 1,\n",
      "          'earlier': 1,\n",
      "          'adoptive': 1,\n",
      "          'son': 1,\n",
      "          'father': 1,\n",
      "          'figure': 1,\n",
      "          'constantly': 1,\n",
      "          'spouting': 1,\n",
      "          'homilies': 1,\n",
      "          'family': 1,\n",
      "          'relationships': 1,\n",
      "          'really': 1,\n",
      "          'ngeorge': 1,\n",
      "          'clooney': 1,\n",
      "          'tries': 1,\n",
      "          'vain': 1,\n",
      "          'rolling': 1,\n",
      "          'eyes': 1,\n",
      "          'reciting': 1,\n",
      "          'given': 1,\n",
      "          'nto': 1,\n",
      "          'say': 1,\n",
      "          'workmanlike': 1,\n",
      "          'generous': 1,\n",
      "          'best': 1,\n",
      "          'still': 1,\n",
      "          'e': 1,\n",
      "          'r': 1,\n",
      "          'nbruce': 1,\n",
      "          'unromantic': 1,\n",
      "          'evening': 1,\n",
      "          'girlfriend': 1,\n",
      "          'played': 1,\n",
      "          'elle': 1,\n",
      "          'macpherson': 1,\n",
      "          'bruces': 1,\n",
      "          'latent': 1,\n",
      "          'homosexuality': 1,\n",
      "          'spark': 1,\n",
      "          'passion': 1,\n",
      "          'nicole': 1,\n",
      "          'kidmans': 1,\n",
      "          'psychologist': 1,\n",
      "          'anyone': 1,\n",
      "          'alfred': 1,\n",
      "          'relationship': 1,\n",
      "          'reserved': 1,\n",
      "          'nrobin': 1,\n",
      "          'charismatic': 1,\n",
      "          'last': 1,\n",
      "          'hes': 1,\n",
      "          'spoiled': 1,\n",
      "          'kid': 1,\n",
      "          'nin': 1,\n",
      "          'batmans': 1,\n",
      "          'partner': 1,\n",
      "          'friend': 1,\n",
      "          'suffering': 1,\n",
      "          'ego': 1,\n",
      "          'deficiency': 1,\n",
      "          'nrobins': 1,\n",
      "          'attraction': 1,\n",
      "          'believable': 1,\n",
      "          'boy': 1,\n",
      "          'around': 1,\n",
      "          '15': 1,\n",
      "          'later': 1,\n",
      "          'flirtation': 1,\n",
      "          'smacks': 1,\n",
      "          'incest': 1,\n",
      "          'though': 1,\n",
      "          'related': 1,\n",
      "          'traditional': 1,\n",
      "          'sense': 1,\n",
      "          'nchris': 1,\n",
      "          'odonnell': 1,\n",
      "          'considered': 1,\n",
      "          'rising': 1,\n",
      "          'star': 1,\n",
      "          'burns': 1,\n",
      "          'reentry': 1,\n",
      "          'needs': 1,\n",
      "          'spanking': 1,\n",
      "          'said': 1,\n",
      "          'better': 1,\n",
      "          'young': 1,\n",
      "          'actress': 1,\n",
      "          'reads': 1,\n",
      "          'lines': 1,\n",
      "          'aplomb': 1,\n",
      "          'dubbing': 1,\n",
      "          'actor': 1,\n",
      "          'godzilla': 1,\n",
      "          'cast': 1,\n",
      "          'strictly': 1,\n",
      "          'commercial': 1,\n",
      "          'value': 1,\n",
      "          'knew': 1,\n",
      "          'us': 1,\n",
      "          'narnold': 1,\n",
      "          'scharzenegger': 1,\n",
      "          'walks': 1,\n",
      "          'concern': 1,\n",
      "          'someone': 1,\n",
      "          'waiting': 1,\n",
      "          'payday': 1,\n",
      "          'rediculous': 1,\n",
      "          'imprisonment': 1,\n",
      "          'guards': 1,\n",
      "          'least': 1,\n",
      "          'foot': 1,\n",
      "          'taller': 1,\n",
      "          'arnold': 1,\n",
      "          'yet': 1,\n",
      "          'fall': 1,\n",
      "          'hand': 1,\n",
      "          'unbelievable': 1,\n",
      "          'fights': 1,\n",
      "          'caught': 1,\n",
      "          'nits': 1,\n",
      "          'ludicrous': 1,\n",
      "          'seeing': 1,\n",
      "          'jackson': 1,\n",
      "          'gang': 1,\n",
      "          'member': 1,\n",
      "          'numu': 1,\n",
      "          'thurman': 1,\n",
      "          'struts': 1,\n",
      "          'coos': 1,\n",
      "          'way': 1,\n",
      "          'showing': 1,\n",
      "          'discomfort': 1,\n",
      "          'symbol': 1,\n",
      "          'status': 1,\n",
      "          'nher': 1,\n",
      "          'hither': 1,\n",
      "          'appeal': 1,\n",
      "          'west': 1,\n",
      "          'sextette': 1,\n",
      "          '1978': 1,\n",
      "          'worthy': 1,\n",
      "          'notice': 1,\n",
      "          'pat': 1,\n",
      "          'hingle': 1,\n",
      "          'gough': 1,\n",
      "          'nthese': 1,\n",
      "          'two': 1,\n",
      "          'seasoned': 1,\n",
      "          'veterans': 1,\n",
      "          'carry': 1,\n",
      "          'dignity': 1,\n",
      "          'sorely': 1,\n",
      "          'lacking': 1,\n",
      "          'rest': 1,\n",
      "          'nwithout': 1,\n",
      "          'going': 1,\n",
      "          'intricacies': 1,\n",
      "          'plot': 1,\n",
      "          'always': 1,\n",
      "          'mind': 1,\n",
      "          'first': 1,\n",
      "          'super': 1,\n",
      "          'manage': 1,\n",
      "          'hire': 1,\n",
      "          'many': 1,\n",
      "          'thugs': 1,\n",
      "          'abandon': 1,\n",
      "          'final': 1,\n",
      "          'reel': 1,\n",
      "          'introduced': 1,\n",
      "          'hockey': 1,\n",
      "          'playing': 1,\n",
      "          'hoodlums': 1,\n",
      "          'seem': 1,\n",
      "          'stepped': 1,\n",
      "          'kiss': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'villain': 1,\n",
      "          'minor': 1,\n",
      "          'ones': 1,\n",
      "          'individual': 1,\n",
      "          'day': 1,\n",
      "          'glow': 1,\n",
      "          'paint': 1,\n",
      "          'face': 1,\n",
      "          'sort': 1,\n",
      "          'elaborate': 1,\n",
      "          'costume': 1,\n",
      "          'nwith': 1,\n",
      "          'retrograding': 1,\n",
      "          'incarnation': 1,\n",
      "          'thing': 1,\n",
      "          'missing': 1,\n",
      "          'superimposed': 1,\n",
      "          'titles': 1,\n",
      "          'detailing': 1,\n",
      "          'pows': 1,\n",
      "          'ngwaaaas': 1,\n",
      "          'clangs': 1,\n",
      "          'associated': 1,\n",
      "          'nyou': 1,\n",
      "          'wonder': 1,\n",
      "          'william': 1,\n",
      "          'dozier': 1,\n",
      "          'producer': 1,\n",
      "          'collecting': 1,\n",
      "          'royalties': 1,\n",
      "          'john': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'barbara': 1,\n",
      "          'ling': 1,\n",
      "          'primary': 1,\n",
      "          'stars': 1,\n",
      "          'case': 1,\n",
      "          'extravagance': 1,\n",
      "          'pursuit': 1,\n",
      "          'ivys': 1,\n",
      "          'lair': 1,\n",
      "          'batcave': 1,\n",
      "          'hideout': 1,\n",
      "          'enough': 1,\n",
      "          'neon': 1,\n",
      "          'fiberglass': 1,\n",
      "          'epa': 1,\n",
      "          'paperwork': 1,\n",
      "          'years': 1,\n",
      "          'realistic': 1,\n",
      "          'piece': 1,\n",
      "          'neverything': 1,\n",
      "          'maximum': 1,\n",
      "          'exposure': 1,\n",
      "          'strange': 1,\n",
      "          'cartoon': 1,\n",
      "          'rushed': 1,\n",
      "          'cgi': 1,\n",
      "          'homage': 1,\n",
      "          'thrown': 1,\n",
      "          'gene': 1,\n",
      "          'warren': 1,\n",
      "          'work': 1,\n",
      "          'machine': 1,\n",
      "          'wroth': 1,\n",
      "          'glaring': 1,\n",
      "          'color': 1,\n",
      "          'art': 1,\n",
      "          'obscured': 1,\n",
      "          'directed': 1,\n",
      "          'flair': 1,\n",
      "          'ncamera': 1,\n",
      "          'angles': 1,\n",
      "          'poorly': 1,\n",
      "          'chosen': 1,\n",
      "          'rehashing': 1,\n",
      "          'ups': 1,\n",
      "          'nmaster': 1,\n",
      "          'shots': 1,\n",
      "          'pepper': 1,\n",
      "          'flow': 1,\n",
      "          'kinetic': 1,\n",
      "          'quality': 1,\n",
      "          'director': 1,\n",
      "          'none': 1,\n",
      "          'lost': 1,\n",
      "          'boys': 1,\n",
      "          'cousins': 1,\n",
      "          'underrated': 1,\n",
      "          'know': 1,\n",
      "          'nbut': 1,\n",
      "          'mated': 1,\n",
      "          'made': 1,\n",
      "          'movie': 1,\n",
      "          'style': 1,\n",
      "          'individuality': 1,\n",
      "          'cinematic': 1,\n",
      "          'equivalent': 1,\n",
      "          'jello': 1,\n",
      "          'pretty': 1,\n",
      "          'empty': 1,\n",
      "          'unfortunate': 1,\n",
      "          'surprisingly': 1,\n",
      "          'strong': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'warners': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'nkill': 1,\n",
      "          'schumachers': 1,\n",
      "          'loud': 1,\n",
      "          'colorful': 1,\n",
      "          'packed': 1,\n",
      "          'ultimately': 1,\n",
      "          'nboring': 1,\n",
      "          'nstars': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 3,\n",
      "          'heart': 3,\n",
      "          'novalee': 3,\n",
      "          'boyfriend': 3,\n",
      "          'walmart': 3,\n",
      "          'na': 3,\n",
      "          'one': 3,\n",
      "          'characters': 2,\n",
      "          'acting': 2,\n",
      "          'nthis': 2,\n",
      "          'family': 2,\n",
      "          'tragic': 2,\n",
      "          'natalie': 2,\n",
      "          'portman': 2,\n",
      "          'decides': 2,\n",
      "          'wacky': 2,\n",
      "          'librarian': 2,\n",
      "          'work': 2,\n",
      "          'seems': 2,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'films': 1,\n",
      "          'constructed': 1,\n",
      "          'strong': 1,\n",
      "          'dialogue': 1,\n",
      "          'original': 1,\n",
      "          'memorable': 1,\n",
      "          'plot': 1,\n",
      "          'points': 1,\n",
      "          'solid': 1,\n",
      "          'none': 1,\n",
      "          'best': 1,\n",
      "          'examples': 1,\n",
      "          'hollywood': 1,\n",
      "          'completely': 1,\n",
      "          'ignore': 1,\n",
      "          'qualities': 1,\n",
      "          'found': 1,\n",
      "          'new': 1,\n",
      "          'opus': 1,\n",
      "          'power': 1,\n",
      "          'love': 1,\n",
      "          'redemption': 1,\n",
      "          'follows': 1,\n",
      "          'mean': 1,\n",
      "          'life': 1,\n",
      "          'nation': 1,\n",
      "          'nhitting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'road': 1,\n",
      "          'hick': 1,\n",
      "          'guitarplaying': 1,\n",
      "          'rustedout': 1,\n",
      "          'gm': 1,\n",
      "          'dreams': 1,\n",
      "          'blue': 1,\n",
      "          'skies': 1,\n",
      "          'bakersfield': 1,\n",
      "          'sipping': 1,\n",
      "          'chocolate': 1,\n",
      "          'milk': 1,\n",
      "          'beneath': 1,\n",
      "          'plastic': 1,\n",
      "          'umbrella': 1,\n",
      "          'unborn': 1,\n",
      "          'baby': 1,\n",
      "          'due': 1,\n",
      "          'month': 1,\n",
      "          'nstopping': 1,\n",
      "          'nearby': 1,\n",
      "          'quick': 1,\n",
      "          'rest': 1,\n",
      "          'novalees': 1,\n",
      "          'take': 1,\n",
      "          'leaves': 1,\n",
      "          'nnovalee': 1,\n",
      "          'secretly': 1,\n",
      "          'hole': 1,\n",
      "          'shes': 1,\n",
      "          'brightest': 1,\n",
      "          'bulb': 1,\n",
      "          'stagelights': 1,\n",
      "          'keith': 1,\n",
      "          'david': 1,\n",
      "          'comes': 1,\n",
      "          'rescue': 1,\n",
      "          'goes': 1,\n",
      "          'labor': 1,\n",
      "          'night': 1,\n",
      "          'camped': 1,\n",
      "          'outdoors': 1,\n",
      "          'section': 1,\n",
      "          'store': 1,\n",
      "          'nthen': 1,\n",
      "          'moves': 1,\n",
      "          'befriends': 1,\n",
      "          'everyone': 1,\n",
      "          'town': 1,\n",
      "          'including': 1,\n",
      "          'ashley': 1,\n",
      "          'judds': 1,\n",
      "          'character': 1,\n",
      "          'five': 1,\n",
      "          'kids': 1,\n",
      "          'still': 1,\n",
      "          'parttime': 1,\n",
      "          'nurse': 1,\n",
      "          'fights': 1,\n",
      "          'religious': 1,\n",
      "          'freaks': 1,\n",
      "          'survives': 1,\n",
      "          'tornado': 1,\n",
      "          'breaks': 1,\n",
      "          'saved': 1,\n",
      "          'receives': 1,\n",
      "          'inheritance': 1,\n",
      "          'builds': 1,\n",
      "          'martha': 1,\n",
      "          'stewartesque': 1,\n",
      "          'house': 1,\n",
      "          'becomes': 1,\n",
      "          'awardwinning': 1,\n",
      "          'photographer': 1,\n",
      "          'manages': 1,\n",
      "          'always': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'stepped': 1,\n",
      "          'cosmo': 1,\n",
      "          'shoot': 1,\n",
      "          'anything': 1,\n",
      "          'kid': 1,\n",
      "          'terrible': 1,\n",
      "          'nthe': 1,\n",
      "          'directing': 1,\n",
      "          'awful': 1,\n",
      "          'director': 1,\n",
      "          'matt': 1,\n",
      "          'williams': 1,\n",
      "          'index': 1,\n",
      "          'card': 1,\n",
      "          'six': 1,\n",
      "          'angles': 1,\n",
      "          'written': 1,\n",
      "          'used': 1,\n",
      "          'every': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'pathetic': 1,\n",
      "          'ugly': 1,\n",
      "          'good': 1,\n",
      "          'disjointed': 1,\n",
      "          'pacing': 1,\n",
      "          'key': 1,\n",
      "          'scenes': 1,\n",
      "          'time': 1,\n",
      "          'structure': 1,\n",
      "          'confusing': 1,\n",
      "          'would': 1,\n",
      "          'throw': 1,\n",
      "          'steve': 1,\n",
      "          'prefontaine': 1,\n",
      "          'subplot': 1,\n",
      "          'actually': 1,\n",
      "          'validates': 1,\n",
      "          'actions': 1,\n",
      "          'abandoned': 1,\n",
      "          'parking': 1,\n",
      "          'lot': 1,\n",
      "          'nan': 1,\n",
      "          'embarrassing': 1,\n",
      "          'display': 1,\n",
      "          'emotions': 1,\n",
      "          'making': 1,\n",
      "          'audience': 1,\n",
      "          'ill': 1,\n",
      "          'ntaking': 1,\n",
      "          'two': 1,\n",
      "          'great': 1,\n",
      "          'comedic': 1,\n",
      "          'screenwriters': 1,\n",
      "          'babaloo': 1,\n",
      "          'mandel': 1,\n",
      "          'lowell': 1,\n",
      "          'ganz': 1,\n",
      "          'forcing': 1,\n",
      "          'write': 1,\n",
      "          'drama': 1,\n",
      "          'par': 1,\n",
      "          'oprahs': 1,\n",
      "          'book': 1,\n",
      "          'club': 1,\n",
      "          'naltogether': 1,\n",
      "          'feeling': 1,\n",
      "          'trapped': 1,\n",
      "          'home': 1,\n",
      "          'watching': 1,\n",
      "          'bad': 1,\n",
      "          'television': 1,\n",
      "          'miniseries': 1,\n",
      "          'wishing': 1,\n",
      "          'end': 1,\n",
      "          'remote': 1,\n",
      "          'broken': 1,\n",
      "          'nhowever': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'never': 1,\n",
      "          'answers': 1,\n",
      "          'poignant': 1,\n",
      "          'question': 1,\n",
      "          'brought': 1,\n",
      "          'nno': 1,\n",
      "          'ever': 1,\n",
      "          'find': 1,\n",
      "          'piece': 1,\n",
      "          'junk': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 14,\n",
      "          'hammer': 12,\n",
      "          'nthe': 9,\n",
      "          'hammers': 9,\n",
      "          'jury': 8,\n",
      "          'book': 7,\n",
      "          'film': 6,\n",
      "          'one': 6,\n",
      "          'character': 6,\n",
      "          'spillanes': 5,\n",
      "          'like': 5,\n",
      "          'spillane': 5,\n",
      "          'updating': 4,\n",
      "          'sex': 4,\n",
      "          'code': 4,\n",
      "          'mike': 3,\n",
      "          'carrera': 3,\n",
      "          'alan': 3,\n",
      "          'king': 3,\n",
      "          'charles': 3,\n",
      "          'paul': 3,\n",
      "          'sorvino': 3,\n",
      "          'detective': 3,\n",
      "          'best': 3,\n",
      "          'books': 3,\n",
      "          'version': 3,\n",
      "          'made': 3,\n",
      "          'way': 3,\n",
      "          'violence': 3,\n",
      "          'wrote': 3,\n",
      "          'could': 3,\n",
      "          'never': 3,\n",
      "          'screen': 3,\n",
      "          'woman': 3,\n",
      "          'television': 3,\n",
      "          'personal': 3,\n",
      "          'barbara': 2,\n",
      "          'bennett': 2,\n",
      "          'laurene': 2,\n",
      "          'landon': 2,\n",
      "          'velda': 2,\n",
      "          'kalecki': 2,\n",
      "          'pat': 2,\n",
      "          'chambers': 2,\n",
      "          'judson': 2,\n",
      "          'scott': 2,\n",
      "          'nin': 2,\n",
      "          '1982': 2,\n",
      "          'vietnam': 2,\n",
      "          'vet': 2,\n",
      "          'still': 2,\n",
      "          'updated': 2,\n",
      "          'original': 2,\n",
      "          'cheesy': 2,\n",
      "          'seek': 2,\n",
      "          'death': 2,\n",
      "          'police': 2,\n",
      "          'tale': 2,\n",
      "          'cia': 2,\n",
      "          'clinic': 2,\n",
      "          'nmany': 2,\n",
      "          'take': 2,\n",
      "          'turns': 2,\n",
      "          'interest': 2,\n",
      "          'n': 2,\n",
      "          'includes': 2,\n",
      "          'treatment': 2,\n",
      "          'production': 2,\n",
      "          'takes': 2,\n",
      "          'aspect': 2,\n",
      "          'many': 2,\n",
      "          'great': 2,\n",
      "          'deal': 2,\n",
      "          'nudity': 2,\n",
      "          'violent': 2,\n",
      "          'especially': 2,\n",
      "          'nit': 2,\n",
      "          'features': 2,\n",
      "          'shot': 2,\n",
      "          'misogynistic': 2,\n",
      "          'much': 2,\n",
      "          'played': 2,\n",
      "          'well': 2,\n",
      "          'script': 2,\n",
      "          'written': 2,\n",
      "          'effective': 2,\n",
      "          'movies': 2,\n",
      "          'ncohen': 2,\n",
      "          'nhe': 2,\n",
      "          'quickly': 2,\n",
      "          'heffron': 2,\n",
      "          'three': 2,\n",
      "          'make': 2,\n",
      "          'scenes': 2,\n",
      "          'despite': 2,\n",
      "          'madefortv': 2,\n",
      "          'central': 2,\n",
      "          'lost': 2,\n",
      "          'first': 2,\n",
      "          'get': 2,\n",
      "          'bad': 2,\n",
      "          'moral': 2,\n",
      "          'always': 2,\n",
      "          'notion': 2,\n",
      "          'law': 2,\n",
      "          'terms': 2,\n",
      "          'wife': 2,\n",
      "          'nmaybe': 2,\n",
      "          'appeared': 2,\n",
      "          'short': 2,\n",
      "          'stars': 1,\n",
      "          'armand': 1,\n",
      "          'assante': 1,\n",
      "          'dr': 1,\n",
      "          'ncharlotte': 1,\n",
      "          'geoffrey': 1,\n",
      "          'lewis': 1,\n",
      "          'joe': 1,\n",
      "          'butler': 1,\n",
      "          'hendricks': 1,\n",
      "          'barry': 1,\n",
      "          'snider': 1,\n",
      "          'romero': 1,\n",
      "          'julia': 1,\n",
      "          'barr': 1,\n",
      "          'norma': 1,\n",
      "          'childs': 1,\n",
      "          'mpaa': 1,\n",
      "          'rating': 1,\n",
      "          'r': 1,\n",
      "          'review': 1,\n",
      "          'mickey': 1,\n",
      "          '1947': 1,\n",
      "          'novel': 1,\n",
      "          'hardboiled': 1,\n",
      "          'drives': 1,\n",
      "          'shiny': 1,\n",
      "          'bronze': 1,\n",
      "          'trans': 1,\n",
      "          'dresses': 1,\n",
      "          'johnson': 1,\n",
      "          'miami': 1,\n",
      "          'vice': 1,\n",
      "          'less': 1,\n",
      "          'pastels': 1,\n",
      "          'sworn': 1,\n",
      "          'alcohol': 1,\n",
      "          'nhowever': 1,\n",
      "          'smokes': 1,\n",
      "          'lucky': 1,\n",
      "          'strikes': 1,\n",
      "          'detests': 1,\n",
      "          'forms': 1,\n",
      "          'authority': 1,\n",
      "          'kills': 1,\n",
      "          'whim': 1,\n",
      "          'nbeyond': 1,\n",
      "          'retains': 1,\n",
      "          'little': 1,\n",
      "          'resemblance': 1,\n",
      "          'pulpy': 1,\n",
      "          'pageturner': 1,\n",
      "          'probably': 1,\n",
      "          'infamous': 1,\n",
      "          'often': 1,\n",
      "          'reviled': 1,\n",
      "          'mystery': 1,\n",
      "          'writers': 1,\n",
      "          'starts': 1,\n",
      "          'bang': 1,\n",
      "          'howler': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'sequence': 1,\n",
      "          'cheap': 1,\n",
      "          'steal': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'series': 1,\n",
      "          'complete': 1,\n",
      "          'graphics': 1,\n",
      "          'overbearing': 1,\n",
      "          'jazz': 1,\n",
      "          'score': 1,\n",
      "          'bill': 1,\n",
      "          'conti': 1,\n",
      "          'rocky': 1,\n",
      "          'nafter': 1,\n",
      "          'begin': 1,\n",
      "          'murder': 1,\n",
      "          'jack': 1,\n",
      "          'williams': 1,\n",
      "          'frederick': 1,\n",
      "          'downs': 1,\n",
      "          'onearmed': 1,\n",
      "          'friend': 1,\n",
      "          'nhammer': 1,\n",
      "          'declares': 1,\n",
      "          'vengeance': 1,\n",
      "          'jacks': 1,\n",
      "          'help': 1,\n",
      "          'devoted': 1,\n",
      "          'secretary': 1,\n",
      "          'blond': 1,\n",
      "          'shapely': 1,\n",
      "          'alternately': 1,\n",
      "          'friendly': 1,\n",
      "          'antagonistic': 1,\n",
      "          'chief': 1,\n",
      "          'immediately': 1,\n",
      "          'killers': 1,\n",
      "          'trail': 1,\n",
      "          'nhere': 1,\n",
      "          'splits': 1,\n",
      "          'completely': 1,\n",
      "          'dives': 1,\n",
      "          'convoluted': 1,\n",
      "          'improbable': 1,\n",
      "          'government': 1,\n",
      "          'conspiracy': 1,\n",
      "          'mind': 1,\n",
      "          'control': 1,\n",
      "          'tactics': 1,\n",
      "          'involving': 1,\n",
      "          'mafia': 1,\n",
      "          'buddies': 1,\n",
      "          'kinky': 1,\n",
      "          'characters': 1,\n",
      "          'appear': 1,\n",
      "          'slightly': 1,\n",
      "          'different': 1,\n",
      "          'roles': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'numbers': 1,\n",
      "          'runner': 1,\n",
      "          'narcotics': 1,\n",
      "          'dealer': 1,\n",
      "          'suave': 1,\n",
      "          'mob': 1,\n",
      "          'boss': 1,\n",
      "          'nand': 1,\n",
      "          'importantly': 1,\n",
      "          'suspicious': 1,\n",
      "          'love': 1,\n",
      "          'charlotte': 1,\n",
      "          'morphs': 1,\n",
      "          'runofthemill': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'coordinator': 1,\n",
      "          'founder': 1,\n",
      "          'several': 1,\n",
      "          'cinematic': 1,\n",
      "          'renditions': 1,\n",
      "          'including': 1,\n",
      "          '1953': 1,\n",
      "          '3d': 1,\n",
      "          'differs': 1,\n",
      "          'earlier': 1,\n",
      "          'versions': 1,\n",
      "          'major': 1,\n",
      "          'given': 1,\n",
      "          'due': 1,\n",
      "          'hollywoods': 1,\n",
      "          'nalthough': 1,\n",
      "          'closer': 1,\n",
      "          'core': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'received': 1,\n",
      "          'criticism': 1,\n",
      "          'took': 1,\n",
      "          'new': 1,\n",
      "          'license': 1,\n",
      "          'extremes': 1,\n",
      "          'argued': 1,\n",
      "          'surpassed': 1,\n",
      "          'nrest': 1,\n",
      "          'assured': 1,\n",
      "          'thoroughly': 1,\n",
      "          'toward': 1,\n",
      "          'women': 1,\n",
      "          'neck': 1,\n",
      "          'slashed': 1,\n",
      "          'set': 1,\n",
      "          'twins': 1,\n",
      "          'forced': 1,\n",
      "          'strip': 1,\n",
      "          'stabbed': 1,\n",
      "          'psychotic': 1,\n",
      "          'sexual': 1,\n",
      "          'deviant': 1,\n",
      "          'programmed': 1,\n",
      "          'another': 1,\n",
      "          'pointblank': 1,\n",
      "          'belly': 1,\n",
      "          'nno': 1,\n",
      "          'would': 1,\n",
      "          'deny': 1,\n",
      "          'writing': 1,\n",
      "          'definite': 1,\n",
      "          'nature': 1,\n",
      "          'seems': 1,\n",
      "          'step': 1,\n",
      "          'giving': 1,\n",
      "          'glorious': 1,\n",
      "          'constant': 1,\n",
      "          'equation': 1,\n",
      "          'intention': 1,\n",
      "          'erotic': 1,\n",
      "          'quite': 1,\n",
      "          'unsettling': 1,\n",
      "          'nits': 1,\n",
      "          'surprise': 1,\n",
      "          'fades': 1,\n",
      "          'black': 1,\n",
      "          'dead': 1,\n",
      "          'floor': 1,\n",
      "          'troubled': 1,\n",
      "          'wellsupported': 1,\n",
      "          'studio': 1,\n",
      "          'explanation': 1,\n",
      "          'didnt': 1,\n",
      "          'theaters': 1,\n",
      "          'people': 1,\n",
      "          'forgotten': 1,\n",
      "          'ever': 1,\n",
      "          'larry': 1,\n",
      "          'cohen': 1,\n",
      "          'known': 1,\n",
      "          'creatively': 1,\n",
      "          'nonetheless': 1,\n",
      "          'monster': 1,\n",
      "          'alive': 1,\n",
      "          '1974': 1,\n",
      "          'two': 1,\n",
      "          'sequels': 1,\n",
      "          'q': 1,\n",
      "          '1981': 1,\n",
      "          'stuff': 1,\n",
      "          '1985': 1,\n",
      "          'thinking': 1,\n",
      "          'going': 1,\n",
      "          'helm': 1,\n",
      "          'project': 1,\n",
      "          'yanked': 1,\n",
      "          'directors': 1,\n",
      "          'chair': 1,\n",
      "          'weeks': 1,\n",
      "          'worth': 1,\n",
      "          'shooting': 1,\n",
      "          'already': 1,\n",
      "          '100': 1,\n",
      "          '000': 1,\n",
      "          'budget': 1,\n",
      "          'replaced': 1,\n",
      "          'richard': 1,\n",
      "          'worked': 1,\n",
      "          'last': 1,\n",
      "          'decades': 1,\n",
      "          'handful': 1,\n",
      "          'undistinguished': 1,\n",
      "          'dozens': 1,\n",
      "          'projects': 1,\n",
      "          'nheffron': 1,\n",
      "          'obviously': 1,\n",
      "          'brought': 1,\n",
      "          'talent': 1,\n",
      "          'rapidly': 1,\n",
      "          'efficiently': 1,\n",
      "          'shows': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'none': 1,\n",
      "          'clumsily': 1,\n",
      "          'although': 1,\n",
      "          'ring': 1,\n",
      "          'true': 1,\n",
      "          'flat': 1,\n",
      "          'trite': 1,\n",
      "          'invariably': 1,\n",
      "          'dull': 1,\n",
      "          'numerous': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'shootouts': 1,\n",
      "          'stunts': 1,\n",
      "          'heffrons': 1,\n",
      "          'background': 1,\n",
      "          'dominant': 1,\n",
      "          'tone': 1,\n",
      "          'graphic': 1,\n",
      "          'fullfrontal': 1,\n",
      "          'air': 1,\n",
      "          'quickie': 1,\n",
      "          'real': 1,\n",
      "          'punch': 1,\n",
      "          'depth': 1,\n",
      "          'nbut': 1,\n",
      "          'problems': 1,\n",
      "          'run': 1,\n",
      "          'deeper': 1,\n",
      "          'technical': 1,\n",
      "          'fault': 1,\n",
      "          'whose': 1,\n",
      "          'shuffle': 1,\n",
      "          'fifties': 1,\n",
      "          'eighties': 1,\n",
      "          'nbecause': 1,\n",
      "          'mysteries': 1,\n",
      "          'person': 1,\n",
      "          'events': 1,\n",
      "          'filtered': 1,\n",
      "          'persona': 1,\n",
      "          'nwe': 1,\n",
      "          'really': 1,\n",
      "          'impression': 1,\n",
      "          'firstperson': 1,\n",
      "          'voiceover': 1,\n",
      "          'narration': 1,\n",
      "          'dont': 1,\n",
      "          'nconsequently': 1,\n",
      "          'texture': 1,\n",
      "          'storytelling': 1,\n",
      "          'period': 1,\n",
      "          'detrimentally': 1,\n",
      "          'idea': 1,\n",
      "          'thrown': 1,\n",
      "          'wind': 1,\n",
      "          'ndespite': 1,\n",
      "          'characterization': 1,\n",
      "          'hardnosed': 1,\n",
      "          'killer': 1,\n",
      "          'stuck': 1,\n",
      "          'fervently': 1,\n",
      "          'title': 1,\n",
      "          'refers': 1,\n",
      "          'antiestablishment': 1,\n",
      "          'nunlike': 1,\n",
      "          'private': 1,\n",
      "          'eyes': 1,\n",
      "          'guys': 1,\n",
      "          'turn': 1,\n",
      "          'pursues': 1,\n",
      "          'criminal': 1,\n",
      "          'exacts': 1,\n",
      "          'punishment': 1,\n",
      "          'seen': 1,\n",
      "          'adheres': 1,\n",
      "          'strictly': 1,\n",
      "          'conduct': 1,\n",
      "          'morality': 1,\n",
      "          'forgoes': 1,\n",
      "          'comes': 1,\n",
      "          'amoral': 1,\n",
      "          'societys': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'professionalism': 1,\n",
      "          'away': 1,\n",
      "          'minutes': 1,\n",
      "          'showing': 1,\n",
      "          'rolling': 1,\n",
      "          'sack': 1,\n",
      "          'client': 1,\n",
      "          'paid': 1,\n",
      "          'find': 1,\n",
      "          'unfaithful': 1,\n",
      "          'scene': 1,\n",
      "          'intended': 1,\n",
      "          'laughs': 1,\n",
      "          'cheapens': 1,\n",
      "          'accounts': 1,\n",
      "          'lousy': 1,\n",
      "          'start': 1,\n",
      "          'blame': 1,\n",
      "          'cant': 1,\n",
      "          'laid': 1,\n",
      "          'assantes': 1,\n",
      "          'shoulders': 1,\n",
      "          'unnecessary': 1,\n",
      "          'marlon': 1,\n",
      "          'brandonlike': 1,\n",
      "          'mumbling': 1,\n",
      "          'delivers': 1,\n",
      "          'fine': 1,\n",
      "          'performance': 1,\n",
      "          'nspillane': 1,\n",
      "          'described': 1,\n",
      "          'physical': 1,\n",
      "          'attributes': 1,\n",
      "          'dozen': 1,\n",
      "          'actor': 1,\n",
      "          'conceivably': 1,\n",
      "          'portray': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'lack': 1,\n",
      "          'description': 1,\n",
      "          'read': 1,\n",
      "          'strong': 1,\n",
      "          'looks': 1,\n",
      "          'therefore': 1,\n",
      "          'almost': 1,\n",
      "          'incarnation': 1,\n",
      "          'somehow': 1,\n",
      "          'fall': 1,\n",
      "          'expectations': 1,\n",
      "          '1963s': 1,\n",
      "          'girl': 1,\n",
      "          'hunters': 1,\n",
      "          'generally': 1,\n",
      "          'considered': 1,\n",
      "          'rest': 1,\n",
      "          'actors': 1,\n",
      "          'unnoteworthy': 1,\n",
      "          'nwith': 1,\n",
      "          'exceptions': 1,\n",
      "          'everyone': 1,\n",
      "          'upandcomers': 1,\n",
      "          'basically': 1,\n",
      "          'went': 1,\n",
      "          'nowhere': 1,\n",
      "          'ended': 1,\n",
      "          'working': 1,\n",
      "          'stint': 1,\n",
      "          'dallas': 1,\n",
      "          'mideighties': 1,\n",
      "          'adds': 1,\n",
      "          'atmosphere': 1,\n",
      "          'someday': 1,\n",
      "          'someone': 1,\n",
      "          'manage': 1,\n",
      "          'right': 1,\n",
      "          'elements': 1,\n",
      "          'together': 1,\n",
      "          'rendition': 1,\n",
      "          'certainly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 9,\n",
      "          'one': 4,\n",
      "          'comedy': 3,\n",
      "          'doesnt': 3,\n",
      "          'nthe': 3,\n",
      "          'thurgood': 3,\n",
      "          'williams': 3,\n",
      "          'role': 3,\n",
      "          'marijuana': 2,\n",
      "          'run': 2,\n",
      "          'make': 2,\n",
      "          'chong': 2,\n",
      "          'four': 2,\n",
      "          'chappelle': 2,\n",
      "          'police': 2,\n",
      "          '000': 2,\n",
      "          'bail': 2,\n",
      "          'raise': 2,\n",
      "          'pretty': 2,\n",
      "          'nnot': 2,\n",
      "          'obvious': 2,\n",
      "          'nearly': 2,\n",
      "          'character': 2,\n",
      "          'level': 2,\n",
      "          'much': 2,\n",
      "          'another': 2,\n",
      "          'nto': 2,\n",
      "          'work': 2,\n",
      "          'tone': 2,\n",
      "          'nher': 2,\n",
      "          'drugs': 2,\n",
      "          'nostalgia': 1,\n",
      "          '70s': 1,\n",
      "          'continues': 1,\n",
      "          'see': 1,\n",
      "          'revival': 1,\n",
      "          'decades': 1,\n",
      "          'greatest': 1,\n",
      "          'achievements': 1,\n",
      "          'nhowever': 1,\n",
      "          'half': 1,\n",
      "          'baked': 1,\n",
      "          'quite': 1,\n",
      "          'brain': 1,\n",
      "          'cells': 1,\n",
      "          'appreciate': 1,\n",
      "          'questionable': 1,\n",
      "          'talents': 1,\n",
      "          'cheech': 1,\n",
      "          'plot': 1,\n",
      "          'follows': 1,\n",
      "          'misadventures': 1,\n",
      "          'neerdowell': 1,\n",
      "          'stoners': 1,\n",
      "          'ntheres': 1,\n",
      "          'groups': 1,\n",
      "          'unofficial': 1,\n",
      "          'leader': 1,\n",
      "          'david': 1,\n",
      "          'scarface': 1,\n",
      "          'guillermo': 1,\n",
      "          'diaz': 1,\n",
      "          'brian': 1,\n",
      "          'jim': 1,\n",
      "          'breuer': 1,\n",
      "          'kenny': 1,\n",
      "          'harland': 1,\n",
      "          'nkenny': 1,\n",
      "          'gets': 1,\n",
      "          'trouble': 1,\n",
      "          'munchie': 1,\n",
      "          'feeds': 1,\n",
      "          'snack': 1,\n",
      "          'foods': 1,\n",
      "          'diabetic': 1,\n",
      "          'horse': 1,\n",
      "          'nwhen': 1,\n",
      "          'animal': 1,\n",
      "          'keels': 1,\n",
      "          'finds': 1,\n",
      "          'accused': 1,\n",
      "          'killing': 1,\n",
      "          'officer': 1,\n",
      "          'facing': 1,\n",
      "          '1': 1,\n",
      "          'nhis': 1,\n",
      "          'friends': 1,\n",
      "          'promise': 1,\n",
      "          'money': 1,\n",
      "          '10': 1,\n",
      "          'bond': 1,\n",
      "          'idea': 1,\n",
      "          'nthat': 1,\n",
      "          'stumbles': 1,\n",
      "          'upon': 1,\n",
      "          'stash': 1,\n",
      "          'pharmaceutical': 1,\n",
      "          'tested': 1,\n",
      "          'company': 1,\n",
      "          'works': 1,\n",
      "          'janitor': 1,\n",
      "          'nsoon': 1,\n",
      "          'three': 1,\n",
      "          'guys': 1,\n",
      "          'dealing': 1,\n",
      "          'dope': 1,\n",
      "          'funds': 1,\n",
      "          'avoiding': 1,\n",
      "          'cops': 1,\n",
      "          'rival': 1,\n",
      "          'dealer': 1,\n",
      "          'sampson': 1,\n",
      "          'simpson': 1,\n",
      "          'clarence': 1,\n",
      "          'iii': 1,\n",
      "          'nfor': 1,\n",
      "          'humorless': 1,\n",
      "          'try': 1,\n",
      "          'njust': 1,\n",
      "          'comic': 1,\n",
      "          'setups': 1,\n",
      "          'payoffs': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'leads': 1,\n",
      "          'playing': 1,\n",
      "          'nonly': 1,\n",
      "          'stands': 1,\n",
      "          'still': 1,\n",
      "          'performing': 1,\n",
      "          'humorfree': 1,\n",
      "          'rocket': 1,\n",
      "          'man': 1,\n",
      "          'hes': 1,\n",
      "          'imprisoned': 1,\n",
      "          'throughout': 1,\n",
      "          'giving': 1,\n",
      "          'needed': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'mostly': 1,\n",
      "          'swapping': 1,\n",
      "          'set': 1,\n",
      "          'gags': 1,\n",
      "          'help': 1,\n",
      "          'packed': 1,\n",
      "          'full': 1,\n",
      "          'cameos': 1,\n",
      "          'nsteven': 1,\n",
      "          'wright': 1,\n",
      "          'tommy': 1,\n",
      "          'janeane': 1,\n",
      "          'garofalo': 1,\n",
      "          'willie': 1,\n",
      "          'nelson': 1,\n",
      "          'snoop': 1,\n",
      "          'doggy': 1,\n",
      "          'dogg': 1,\n",
      "          'jon': 1,\n",
      "          'stewart': 1,\n",
      "          'appearances': 1,\n",
      "          'point': 1,\n",
      "          'nnone': 1,\n",
      "          'beyond': 1,\n",
      "          'simple': 1,\n",
      "          'hey': 1,\n",
      "          'thats': 1,\n",
      "          '_____': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'funniest': 1,\n",
      "          'comes': 1,\n",
      "          'bland': 1,\n",
      "          'pothead': 1,\n",
      "          'lead': 1,\n",
      "          'second': 1,\n",
      "          'potobsessed': 1,\n",
      "          'rapper': 1,\n",
      "          'sir': 1,\n",
      "          'smokealot': 1,\n",
      "          'ngranted': 1,\n",
      "          'onejoke': 1,\n",
      "          'arent': 1,\n",
      "          'ton': 1,\n",
      "          'laughs': 1,\n",
      "          'needs': 1,\n",
      "          'every': 1,\n",
      "          'scrape': 1,\n",
      "          'top': 1,\n",
      "          'move': 1,\n",
      "          'contrasting': 1,\n",
      "          'rest': 1,\n",
      "          'given': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'mary': 1,\n",
      "          'jane': 1,\n",
      "          'rachel': 1,\n",
      "          'true': 1,\n",
      "          'public': 1,\n",
      "          'service': 1,\n",
      "          'announcement': 1,\n",
      "          'inform': 1,\n",
      "          'us': 1,\n",
      "          'including': 1,\n",
      "          'pot': 1,\n",
      "          'wrong': 1,\n",
      "          'seems': 1,\n",
      "          'fabricated': 1,\n",
      "          'merely': 1,\n",
      "          'defense': 1,\n",
      "          'promotes': 1,\n",
      "          'use': 1,\n",
      "          'camp': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'sticking': 1,\n",
      "          'rebel': 1,\n",
      "          'eagerly': 1,\n",
      "          'tries': 1,\n",
      "          'claim': 1,\n",
      "          'nyet': 1,\n",
      "          'end': 1,\n",
      "          'really': 1,\n",
      "          'matter': 1,\n",
      "          'nwatching': 1,\n",
      "          'clean': 1,\n",
      "          'sober': 1,\n",
      "          'bound': 1,\n",
      "          'recognize': 1,\n",
      "          'truly': 1,\n",
      "          'awful': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'film': 8,\n",
      "          'nthe': 6,\n",
      "          'movie': 5,\n",
      "          'one': 5,\n",
      "          'rooms': 3,\n",
      "          'jennifer': 3,\n",
      "          'beals': 3,\n",
      "          'antonio': 3,\n",
      "          'banderas': 3,\n",
      "          'tarantino': 3,\n",
      "          'biggest': 3,\n",
      "          'year': 3,\n",
      "          'plot': 3,\n",
      "          'worst': 3,\n",
      "          'room': 3,\n",
      "          'man': 3,\n",
      "          'christmas': 2,\n",
      "          'day': 2,\n",
      "          'upbeat': 2,\n",
      "          'comedy': 2,\n",
      "          'theater': 2,\n",
      "          'nfour': 2,\n",
      "          'roth': 2,\n",
      "          'quentin': 2,\n",
      "          'valeria': 2,\n",
      "          'golino': 2,\n",
      "          'madonna': 2,\n",
      "          'willis': 2,\n",
      "          'tomei': 2,\n",
      "          'alicia': 2,\n",
      "          'witt': 2,\n",
      "          'ione': 2,\n",
      "          'skye': 2,\n",
      "          'four': 2,\n",
      "          'supposed': 2,\n",
      "          'word': 2,\n",
      "          'directors': 2,\n",
      "          'big': 2,\n",
      "          'cast': 2,\n",
      "          'turned': 2,\n",
      "          'could': 2,\n",
      "          'great': 2,\n",
      "          'hotel': 2,\n",
      "          'wrote': 2,\n",
      "          'nit': 2,\n",
      "          'nthis': 2,\n",
      "          'every': 2,\n",
      "          'trash': 2,\n",
      "          'suite': 2,\n",
      "          'bellboy': 2,\n",
      "          'finger': 2,\n",
      "          'call': 2,\n",
      "          'classic': 2,\n",
      "          'reviews': 2,\n",
      "          'saw': 1,\n",
      "          'expecting': 1,\n",
      "          'nboy': 1,\n",
      "          'dissapointment': 1,\n",
      "          'nafter': 1,\n",
      "          'hour': 1,\n",
      "          'ready': 1,\n",
      "          'change': 1,\n",
      "          'roomsinto': 1,\n",
      "          'another': 1,\n",
      "          'nread': 1,\n",
      "          'see': 1,\n",
      "          'say': 1,\n",
      "          'nstarring': 1,\n",
      "          'tim': 1,\n",
      "          'bruce': 1,\n",
      "          'marisa': 1,\n",
      "          'lili': 1,\n",
      "          'taylor': 1,\n",
      "          'npossible': 1,\n",
      "          'stars': 1,\n",
      "          'n': 1,\n",
      "          'hits': 1,\n",
      "          'nkey': 1,\n",
      "          'hollywood': 1,\n",
      "          'robert': 1,\n",
      "          'rodriguez': 1,\n",
      "          'alexander': 1,\n",
      "          'rockwell': 1,\n",
      "          'alison': 1,\n",
      "          'anders': 1,\n",
      "          'directing': 1,\n",
      "          'popular': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'much': 1,\n",
      "          'flop': 1,\n",
      "          'new': 1,\n",
      "          'years': 1,\n",
      "          'eve': 1,\n",
      "          'bellboys': 1,\n",
      "          'first': 1,\n",
      "          'job': 1,\n",
      "          'nhe': 1,\n",
      "          'encounters': 1,\n",
      "          'many': 1,\n",
      "          'mysterious': 1,\n",
      "          'kinky': 1,\n",
      "          'guests': 1,\n",
      "          'tries': 1,\n",
      "          'handle': 1,\n",
      "          'problems': 1,\n",
      "          'ntarantino': 1,\n",
      "          'told': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'dark': 1,\n",
      "          'nanders': 1,\n",
      "          'directed': 1,\n",
      "          'tale': 1,\n",
      "          'coven': 1,\n",
      "          'witches': 1,\n",
      "          'second': 1,\n",
      "          'better': 1,\n",
      "          'lacking': 1,\n",
      "          'accuses': 1,\n",
      "          'sleeping': 1,\n",
      "          'wife': 1,\n",
      "          'third': 1,\n",
      "          'best': 1,\n",
      "          'roomm': 1,\n",
      "          'two': 1,\n",
      "          'rambunctous': 1,\n",
      "          'kids': 1,\n",
      "          'final': 1,\n",
      "          'star': 1,\n",
      "          'wanting': 1,\n",
      "          'chop': 1,\n",
      "          'someones': 1,\n",
      "          'plain': 1,\n",
      "          'nthere': 1,\n",
      "          'nothing': 1,\n",
      "          'even': 1,\n",
      "          'makes': 1,\n",
      "          'quality': 1,\n",
      "          'funny': 1,\n",
      "          'didnt': 1,\n",
      "          'hear': 1,\n",
      "          'laugh': 1,\n",
      "          'throughout': 1,\n",
      "          'whole': 1,\n",
      "          'ntim': 1,\n",
      "          'horrible': 1,\n",
      "          'bumbling': 1,\n",
      "          'mumbling': 1,\n",
      "          'ruins': 1,\n",
      "          'joke': 1,\n",
      "          'supporting': 1,\n",
      "          'loses': 1,\n",
      "          'meaning': 1,\n",
      "          'support': 1,\n",
      "          'mentionable': 1,\n",
      "          'actorsactresses': 1,\n",
      "          'nmarisa': 1,\n",
      "          'appears': 1,\n",
      "          'stupid': 1,\n",
      "          'cameo': 1,\n",
      "          'role': 1,\n",
      "          'perhaps': 1,\n",
      "          'like': 1,\n",
      "          'plaza': 1,\n",
      "          'wasnt': 1,\n",
      "          'nas': 1,\n",
      "          'trashy': 1,\n",
      "          'people': 1,\n",
      "          'ndo': 1,\n",
      "          'chopping': 1,\n",
      "          'madonnas': 1,\n",
      "          'chest': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'showing': 1,\n",
      "          'nlook': 1,\n",
      "          'kens': 1,\n",
      "          'kritic': 1,\n",
      "          'korner': 1,\n",
      "          'coming': 1,\n",
      "          'soon': 1,\n",
      "          'nplease': 1,\n",
      "          'check': 1,\n",
      "          'newsgroups': 1,\n",
      "          'section': 1,\n",
      "          'updated': 1,\n",
      "          'np': 1,\n",
      "          'made': 1,\n",
      "          'number': 1,\n",
      "          '1': 1,\n",
      "          'top': 1,\n",
      "          'ten': 1,\n",
      "          'list': 1,\n",
      "          '1995': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'anna': 8,\n",
      "          'king': 8,\n",
      "          'nthe': 6,\n",
      "          'movie': 5,\n",
      "          'nthis': 4,\n",
      "          'comes': 4,\n",
      "          'british': 3,\n",
      "          'siam': 3,\n",
      "          'kings': 3,\n",
      "          'ways': 3,\n",
      "          'film': 2,\n",
      "          'lavish': 2,\n",
      "          'sets': 2,\n",
      "          'emotional': 2,\n",
      "          'much': 2,\n",
      "          'make': 2,\n",
      "          'two': 2,\n",
      "          'stoic': 2,\n",
      "          'schoolteacher': 2,\n",
      "          'son': 2,\n",
      "          'yunfat': 2,\n",
      "          'whole': 2,\n",
      "          'way': 2,\n",
      "          'father': 2,\n",
      "          'like': 2,\n",
      "          'suspect': 2,\n",
      "          'ever': 2,\n",
      "          'develop': 2,\n",
      "          'scene': 2,\n",
      "          'one': 2,\n",
      "          'classic': 2,\n",
      "          'viewer': 2,\n",
      "          'remains': 2,\n",
      "          'nwe': 2,\n",
      "          'never': 2,\n",
      "          'characters': 2,\n",
      "          'epic': 2,\n",
      "          'tennant': 2,\n",
      "          'ni': 2,\n",
      "          'least': 1,\n",
      "          'fourth': 1,\n",
      "          'adaptation': 1,\n",
      "          'margaret': 1,\n",
      "          'landons': 1,\n",
      "          'fact': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'big': 1,\n",
      "          'expensive': 1,\n",
      "          'soulless': 1,\n",
      "          'nthough': 1,\n",
      "          'goodlooking': 1,\n",
      "          'fancy': 1,\n",
      "          'costumes': 1,\n",
      "          'luscious': 1,\n",
      "          'cinematography': 1,\n",
      "          'little': 1,\n",
      "          'compensate': 1,\n",
      "          'wasteland': 1,\n",
      "          'peter': 1,\n",
      "          'krikes': 1,\n",
      "          'steve': 1,\n",
      "          'meersons': 1,\n",
      "          'script': 1,\n",
      "          'nso': 1,\n",
      "          'money': 1,\n",
      "          'spent': 1,\n",
      "          'pretty': 1,\n",
      "          'pictures': 1,\n",
      "          'forgot': 1,\n",
      "          'actually': 1,\n",
      "          'interesting': 1,\n",
      "          'jodie': 1,\n",
      "          'fosters': 1,\n",
      "          'first': 1,\n",
      "          'since': 1,\n",
      "          'jawdroppingly': 1,\n",
      "          'brilliant': 1,\n",
      "          'contact': 1,\n",
      "          'came': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'isnt': 1,\n",
      "          'best': 1,\n",
      "          'choice': 1,\n",
      "          'show': 1,\n",
      "          'acting': 1,\n",
      "          'chops': 1,\n",
      "          'nshes': 1,\n",
      "          'trapped': 1,\n",
      "          'role': 1,\n",
      "          'leonowens': 1,\n",
      "          'uptight': 1,\n",
      "          'widowed': 1,\n",
      "          'thailand': 1,\n",
      "          'instruct': 1,\n",
      "          'chow': 1,\n",
      "          'west': 1,\n",
      "          'england': 1,\n",
      "          'world': 1,\n",
      "          'likes': 1,\n",
      "          'puts': 1,\n",
      "          'charge': 1,\n",
      "          'educating': 1,\n",
      "          'royal': 1,\n",
      "          'family': 1,\n",
      "          '58': 1,\n",
      "          'kids': 1,\n",
      "          '10': 1,\n",
      "          'impressive': 1,\n",
      "          'eldest': 1,\n",
      "          'prince': 1,\n",
      "          'none': 1,\n",
      "          'happy': 1,\n",
      "          'offended': 1,\n",
      "          'nwhy': 1,\n",
      "          'punish': 1,\n",
      "          'imperialist': 1,\n",
      "          'soon': 1,\n",
      "          'gets': 1,\n",
      "          'know': 1,\n",
      "          'stern': 1,\n",
      "          'motherwholovesyou': 1,\n",
      "          'personality': 1,\n",
      "          'better': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'attack': 1,\n",
      "          'neighboring': 1,\n",
      "          'colony': 1,\n",
      "          'burma': 1,\n",
      "          'close': 1,\n",
      "          'advisors': 1,\n",
      "          'britains': 1,\n",
      "          'arouses': 1,\n",
      "          'suspicion': 1,\n",
      "          'putting': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'position': 1,\n",
      "          'nshe': 1,\n",
      "          'sure': 1,\n",
      "          'seems': 1,\n",
      "          'involvement': 1,\n",
      "          'crisis': 1,\n",
      "          'works': 1,\n",
      "          'diffuse': 1,\n",
      "          'prejudices': 1,\n",
      "          'nhe': 1,\n",
      "          'though': 1,\n",
      "          'selfrighteous': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'influenced': 1,\n",
      "          'eloquent': 1,\n",
      "          'slowly': 1,\n",
      "          'quietly': 1,\n",
      "          'affections': 1,\n",
      "          'nthere': 1,\n",
      "          'middle': 1,\n",
      "          'younger': 1,\n",
      "          'daughters': 1,\n",
      "          'dies': 1,\n",
      "          'nits': 1,\n",
      "          'deathbed': 1,\n",
      "          'girls': 1,\n",
      "          'mournful': 1,\n",
      "          'eyes': 1,\n",
      "          'staring': 1,\n",
      "          'tries': 1,\n",
      "          'semi': 1,\n",
      "          'successfully': 1,\n",
      "          'maintain': 1,\n",
      "          'composure': 1,\n",
      "          'nanna': 1,\n",
      "          'cries': 1,\n",
      "          'bit': 1,\n",
      "          'sequence': 1,\n",
      "          'purpose': 1,\n",
      "          'evoke': 1,\n",
      "          'strong': 1,\n",
      "          'response': 1,\n",
      "          'nim': 1,\n",
      "          'usually': 1,\n",
      "          'sucker': 1,\n",
      "          'scenes': 1,\n",
      "          'yet': 1,\n",
      "          'time': 1,\n",
      "          'sitting': 1,\n",
      "          'emotions': 1,\n",
      "          'untouched': 1,\n",
      "          'true': 1,\n",
      "          'emotionally': 1,\n",
      "          'barren': 1,\n",
      "          'connections': 1,\n",
      "          'given': 1,\n",
      "          'reason': 1,\n",
      "          'care': 1,\n",
      "          'ludicrously': 1,\n",
      "          'long': 1,\n",
      "          'directed': 1,\n",
      "          'andy': 1,\n",
      "          'whose': 1,\n",
      "          'last': 1,\n",
      "          'favorites': 1,\n",
      "          '1998': 1,\n",
      "          'doubt': 1,\n",
      "          'tennants': 1,\n",
      "          'ability': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'decent': 1,\n",
      "          'aside': 1,\n",
      "          'psychologically': 1,\n",
      "          'inept': 1,\n",
      "          'also': 1,\n",
      "          'technologically': 1,\n",
      "          'deficient': 1,\n",
      "          'scenery': 1,\n",
      "          'gorgeous': 1,\n",
      "          'camerawork': 1,\n",
      "          'nothing': 1,\n",
      "          'convey': 1,\n",
      "          'grandeur': 1,\n",
      "          'neven': 1,\n",
      "          'terrence': 1,\n",
      "          'malick': 1,\n",
      "          'managed': 1,\n",
      "          'flora': 1,\n",
      "          'fauna': 1,\n",
      "          'otherwise': 1,\n",
      "          'abysmal': 1,\n",
      "          'thin': 1,\n",
      "          'red': 1,\n",
      "          'line': 1,\n",
      "          'muster': 1,\n",
      "          '75': 1,\n",
      "          'million': 1,\n",
      "          'worth': 1,\n",
      "          'props': 1,\n",
      "          'shoot': 1,\n",
      "          'malaysia': 1,\n",
      "          'feel': 1,\n",
      "          'camera': 1,\n",
      "          'restricted': 1,\n",
      "          'immediate': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'wide': 1,\n",
      "          'tracking': 1,\n",
      "          'shots': 1,\n",
      "          'sweeping': 1,\n",
      "          'zooms': 1,\n",
      "          'fill': 1,\n",
      "          'us': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'awe': 1,\n",
      "          'liked': 1,\n",
      "          'foster': 1,\n",
      "          'give': 1,\n",
      "          'entertaining': 1,\n",
      "          'terribly': 1,\n",
      "          'involving': 1,\n",
      "          'performances': 1,\n",
      "          'lead': 1,\n",
      "          'roles': 1,\n",
      "          'nfosters': 1,\n",
      "          'generally': 1,\n",
      "          'persona': 1,\n",
      "          'serves': 1,\n",
      "          'well': 1,\n",
      "          'playing': 1,\n",
      "          'reserved': 1,\n",
      "          'formal': 1,\n",
      "          'rather': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'character': 1,\n",
      "          'nyunfat': 1,\n",
      "          'especially': 1,\n",
      "          'effective': 1,\n",
      "          'perfectly': 1,\n",
      "          'conveying': 1,\n",
      "          'siams': 1,\n",
      "          'sangfroid': 1,\n",
      "          'permeated': 1,\n",
      "          'violent': 1,\n",
      "          'outbursts': 1,\n",
      "          'nwhat': 1,\n",
      "          'inability': 1,\n",
      "          'involve': 1,\n",
      "          'situations': 1,\n",
      "          'cast': 1,\n",
      "          'great': 1,\n",
      "          'director': 1,\n",
      "          'talented': 1,\n",
      "          'budget': 1,\n",
      "          'illadvised': 1,\n",
      "          'remake': 1,\n",
      "          'rogers': 1,\n",
      "          'hammerstein': 1,\n",
      "          'unable': 1,\n",
      "          'utilize': 1,\n",
      "          'things': 1,\n",
      "          'form': 1,\n",
      "          'compelling': 1,\n",
      "          'emotionless': 1,\n",
      "          'costume': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'nthe': 6,\n",
      "          'robin': 5,\n",
      "          'dialogue': 5,\n",
      "          'brooks': 4,\n",
      "          'none': 4,\n",
      "          'could': 4,\n",
      "          'man': 4,\n",
      "          'richard': 4,\n",
      "          'funny': 4,\n",
      "          'simply': 4,\n",
      "          'hood': 3,\n",
      "          'men': 3,\n",
      "          'film': 3,\n",
      "          'movies': 3,\n",
      "          'nmel': 3,\n",
      "          'comic': 3,\n",
      "          'acting': 3,\n",
      "          'good': 3,\n",
      "          'plot': 3,\n",
      "          'scenes': 3,\n",
      "          'nhe': 3,\n",
      "          'also': 3,\n",
      "          'offensive': 3,\n",
      "          'tights': 2,\n",
      "          'like': 2,\n",
      "          'blazing': 2,\n",
      "          'saddles': 2,\n",
      "          'young': 2,\n",
      "          'frankenstein': 2,\n",
      "          'well': 2,\n",
      "          'look': 2,\n",
      "          'humor': 2,\n",
      "          'even': 2,\n",
      "          'one': 2,\n",
      "          'worst': 2,\n",
      "          'prince': 2,\n",
      "          'nthis': 2,\n",
      "          'ideas': 2,\n",
      "          'around': 2,\n",
      "          'hard': 2,\n",
      "          'plays': 2,\n",
      "          'captured': 2,\n",
      "          'king': 2,\n",
      "          'see': 2,\n",
      "          'evil': 2,\n",
      "          'lewis': 2,\n",
      "          'tries': 2,\n",
      "          'maid': 2,\n",
      "          'marian': 2,\n",
      "          'excruciating': 2,\n",
      "          'actor': 2,\n",
      "          'nperhaps': 2,\n",
      "          'miserable': 2,\n",
      "          'theatre': 2,\n",
      "          'audience': 2,\n",
      "          'visual': 2,\n",
      "          'jokes': 2,\n",
      "          'old': 2,\n",
      "          'another': 1,\n",
      "          'melbrooksproduced': 1,\n",
      "          'classic': 1,\n",
      "          'tradition': 1,\n",
      "          'known': 1,\n",
      "          'regular': 1,\n",
      "          'life': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'sharp': 1,\n",
      "          'wit': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'easy': 1,\n",
      "          'going': 1,\n",
      "          'fun': 1,\n",
      "          'devoid': 1,\n",
      "          'charm': 1,\n",
      "          'spaceballs': 1,\n",
      "          'lacking': 1,\n",
      "          'solid': 1,\n",
      "          'history': 1,\n",
      "          'world': 1,\n",
      "          'nit': 1,\n",
      "          'short': 1,\n",
      "          'seen': 1,\n",
      "          'mel': 1,\n",
      "          'anybody': 1,\n",
      "          'else': 1,\n",
      "          'produce': 1,\n",
      "          'borrows': 1,\n",
      "          'heavily': 1,\n",
      "          'wellreceived': 1,\n",
      "          'kevin': 1,\n",
      "          'costner': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'thieves': 1,\n",
      "          'surprising': 1,\n",
      "          'used': 1,\n",
      "          'great': 1,\n",
      "          'effect': 1,\n",
      "          'mainly': 1,\n",
      "          'parodying': 1,\n",
      "          'orginal': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'however': 1,\n",
      "          'uses': 1,\n",
      "          'launch': 1,\n",
      "          'several': 1,\n",
      "          'air': 1,\n",
      "          'connect': 1,\n",
      "          'explained': 1,\n",
      "          'later': 1,\n",
      "          'shuffled': 1,\n",
      "          'order': 1,\n",
      "          'would': 1,\n",
      "          'pressed': 1,\n",
      "          'notice': 1,\n",
      "          'ncary': 1,\n",
      "          'elwes': 1,\n",
      "          'princess': 1,\n",
      "          'bride': 1,\n",
      "          'fame': 1,\n",
      "          'loxley': 1,\n",
      "          'crusades': 1,\n",
      "          'fighting': 1,\n",
      "          'escapes': 1,\n",
      "          'joining': 1,\n",
      "          'named': 1,\n",
      "          'achoo': 1,\n",
      "          'sure': 1,\n",
      "          'obvious': 1,\n",
      "          'joke': 1,\n",
      "          'fights': 1,\n",
      "          'england': 1,\n",
      "          'reclaim': 1,\n",
      "          'name': 1,\n",
      "          'throne': 1,\n",
      "          'john': 1,\n",
      "          'played': 1,\n",
      "          'love': 1,\n",
      "          'attempts': 1,\n",
      "          'overthrow': 1,\n",
      "          'sheriff': 1,\n",
      "          'rottingham': 1,\n",
      "          'na': 1,\n",
      "          'adventure': 1,\n",
      "          'sadly': 1,\n",
      "          'unused': 1,\n",
      "          'nelwes': 1,\n",
      "          'excellent': 1,\n",
      "          'comics': 1,\n",
      "          'nneither': 1,\n",
      "          'words': 1,\n",
      "          'work': 1,\n",
      "          'lines': 1,\n",
      "          'arent': 1,\n",
      "          'believable': 1,\n",
      "          'example': 1,\n",
      "          'group': 1,\n",
      "          'merry': 1,\n",
      "          'encounter': 1,\n",
      "          'playing': 1,\n",
      "          'macaulay': 1,\n",
      "          'culkin': 1,\n",
      "          'clone': 1,\n",
      "          'hit': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          'particular': 1,\n",
      "          'scene': 1,\n",
      "          'place': 1,\n",
      "          'badly': 1,\n",
      "          'acted': 1,\n",
      "          'followed': 1,\n",
      "          'many': 1,\n",
      "          'equal': 1,\n",
      "          'really': 1,\n",
      "          'felt': 1,\n",
      "          'leaving': 1,\n",
      "          'nmuch': 1,\n",
      "          'continued': 1,\n",
      "          'watches': 1,\n",
      "          'throughout': 1,\n",
      "          'left': 1,\n",
      "          'nchuckles': 1,\n",
      "          'far': 1,\n",
      "          'mostly': 1,\n",
      "          'dealt': 1,\n",
      "          'beaten': 1,\n",
      "          'horse': 1,\n",
      "          'rentawreck': 1,\n",
      "          'whatsoever': 1,\n",
      "          'nscenes': 1,\n",
      "          'classics': 1,\n",
      "          'archery': 1,\n",
      "          'contest': 1,\n",
      "          'ruined': 1,\n",
      "          'poor': 1,\n",
      "          'largest': 1,\n",
      "          'problem': 1,\n",
      "          'basic': 1,\n",
      "          'received': 1,\n",
      "          'key': 1,\n",
      "          'unlock': 1,\n",
      "          'chastity': 1,\n",
      "          'belt': 1,\n",
      "          'witty': 1,\n",
      "          'circumcisiongiving': 1,\n",
      "          'rabbi': 1,\n",
      "          'others': 1,\n",
      "          'jewish': 1,\n",
      "          'either': 1,\n",
      "          'trying': 1,\n",
      "          'large': 1,\n",
      "          'fails': 1,\n",
      "          'addition': 1,\n",
      "          'blind': 1,\n",
      "          'stumbles': 1,\n",
      "          'falling': 1,\n",
      "          'cliffs': 1,\n",
      "          'walking': 1,\n",
      "          'ledges': 1,\n",
      "          'general': 1,\n",
      "          'buffoon': 1,\n",
      "          'humorous': 1,\n",
      "          'potential': 1,\n",
      "          'made': 1,\n",
      "          'terribly': 1,\n",
      "          'reason': 1,\n",
      "          'surprise': 1,\n",
      "          'end': 1,\n",
      "          'worth': 1,\n",
      "          'waiting': 1,\n",
      "          'stand': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'unfunny': 1,\n",
      "          'puns': 1,\n",
      "          'ancient': 1,\n",
      "          'bad': 1,\n",
      "          'nif': 1,\n",
      "          'cant': 1,\n",
      "          'dont': 1,\n",
      "          'bother': 1,\n",
      "          'watching': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'sphere': 9,\n",
      "          'film': 7,\n",
      "          'crichton': 5,\n",
      "          'movie': 5,\n",
      "          'squid': 4,\n",
      "          'seems': 3,\n",
      "          'dull': 3,\n",
      "          'budget': 3,\n",
      "          'hoffman': 3,\n",
      "          'scene': 3,\n",
      "          'nbut': 3,\n",
      "          'scenes': 3,\n",
      "          'much': 3,\n",
      "          'theres': 3,\n",
      "          'films': 2,\n",
      "          'entertaining': 2,\n",
      "          'nhowever': 2,\n",
      "          'wrong': 2,\n",
      "          '100': 2,\n",
      "          'million': 2,\n",
      "          'good': 2,\n",
      "          'director': 2,\n",
      "          'barry': 2,\n",
      "          'levison': 2,\n",
      "          'disclosure': 2,\n",
      "          'long': 2,\n",
      "          'huge': 2,\n",
      "          'goodman': 2,\n",
      "          'peter': 2,\n",
      "          'coyote': 2,\n",
      "          'mathematician': 2,\n",
      "          'jackson': 2,\n",
      "          'stone': 2,\n",
      "          'massive': 2,\n",
      "          'went': 2,\n",
      "          'along': 2,\n",
      "          'throughout': 2,\n",
      "          'sillier': 2,\n",
      "          'help': 2,\n",
      "          'either': 2,\n",
      "          'probably': 2,\n",
      "          'hell': 2,\n",
      "          'audience': 2,\n",
      "          'goes': 2,\n",
      "          'hes': 2,\n",
      "          'drama': 2,\n",
      "          'action': 2,\n",
      "          'like': 2,\n",
      "          'every': 2,\n",
      "          'line': 2,\n",
      "          'hoping': 2,\n",
      "          'would': 2,\n",
      "          'bit': 2,\n",
      "          'picture': 2,\n",
      "          'see': 2,\n",
      "          'though': 2,\n",
      "          'plot': 2,\n",
      "          'abyss': 2,\n",
      "          'although': 2,\n",
      "          'successful': 1,\n",
      "          'books': 1,\n",
      "          'movies': 1,\n",
      "          'michael': 1,\n",
      "          'well': 1,\n",
      "          'nwith': 1,\n",
      "          'early': 1,\n",
      "          'successes': 1,\n",
      "          'westworld': 1,\n",
      "          '1973': 1,\n",
      "          'coma': 1,\n",
      "          '1978': 1,\n",
      "          'recent': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          '1993': 1,\n",
      "          'taken': 1,\n",
      "          'turn': 1,\n",
      "          'somewhere': 1,\n",
      "          'nthis': 1,\n",
      "          'mess': 1,\n",
      "          'winded': 1,\n",
      "          'disappointment': 1,\n",
      "          'nconsidering': 1,\n",
      "          'star': 1,\n",
      "          'cast': 1,\n",
      "          'story': 1,\n",
      "          'majorly': 1,\n",
      "          'disappointing': 1,\n",
      "          'opens': 1,\n",
      "          'norman': 1,\n",
      "          'psychologist': 1,\n",
      "          'thinks': 1,\n",
      "          'visiting': 1,\n",
      "          'airplane': 1,\n",
      "          'crash': 1,\n",
      "          'console': 1,\n",
      "          'survivors': 1,\n",
      "          'arrives': 1,\n",
      "          'told': 1,\n",
      "          'supervisor': 1,\n",
      "          'barnes': 1,\n",
      "          'actually': 1,\n",
      "          'investigating': 1,\n",
      "          'spacecraft': 1,\n",
      "          'nalong': 1,\n",
      "          'harry': 1,\n",
      "          'adams': 1,\n",
      "          'biologist': 1,\n",
      "          'beth': 1,\n",
      "          'halperin': 1,\n",
      "          'ted': 1,\n",
      "          'fielding': 1,\n",
      "          'liev': 1,\n",
      "          'schrieber': 1,\n",
      "          'nthey': 1,\n",
      "          'investigate': 1,\n",
      "          'spaceship': 1,\n",
      "          'find': 1,\n",
      "          'inside': 1,\n",
      "          'meet': 1,\n",
      "          'alien': 1,\n",
      "          'intelligence': 1,\n",
      "          'called': 1,\n",
      "          'jerry': 1,\n",
      "          'basically': 1,\n",
      "          'weird': 1,\n",
      "          'crap': 1,\n",
      "          'happens': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'something': 1,\n",
      "          'way': 1,\n",
      "          'starts': 1,\n",
      "          'enough': 1,\n",
      "          'gets': 1,\n",
      "          'jaunts': 1,\n",
      "          'never': 1,\n",
      "          'fully': 1,\n",
      "          'explaining': 1,\n",
      "          'going': 1,\n",
      "          'actors': 1,\n",
      "          'directing': 1,\n",
      "          'dont': 1,\n",
      "          'nhoffman': 1,\n",
      "          'autopilot': 1,\n",
      "          'almost': 1,\n",
      "          'embarrassed': 1,\n",
      "          'churning': 1,\n",
      "          'lines': 1,\n",
      "          'wondering': 1,\n",
      "          'nstone': 1,\n",
      "          'useless': 1,\n",
      "          'displaying': 1,\n",
      "          'emotion': 1,\n",
      "          'fails': 1,\n",
      "          'convince': 1,\n",
      "          'feelings': 1,\n",
      "          'person': 1,\n",
      "          'fun': 1,\n",
      "          'whos': 1,\n",
      "          'funny': 1,\n",
      "          'slowly': 1,\n",
      "          'crazy': 1,\n",
      "          'entering': 1,\n",
      "          'hardly': 1,\n",
      "          'end': 1,\n",
      "          'hams': 1,\n",
      "          'officer': 1,\n",
      "          'killed': 1,\n",
      "          'halfway': 1,\n",
      "          'levinson': 1,\n",
      "          'directed': 1,\n",
      "          'better': 1,\n",
      "          'adaptation': 1,\n",
      "          '1994': 1,\n",
      "          'messes': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'boring': 1,\n",
      "          'suffer': 1,\n",
      "          'overkill': 1,\n",
      "          'throwing': 1,\n",
      "          'camera': 1,\n",
      "          'place': 1,\n",
      "          'godawful': 1,\n",
      "          'speed': 1,\n",
      "          '2': 1,\n",
      "          '1997': 1,\n",
      "          'writing': 1,\n",
      "          'doesnt': 1,\n",
      "          'nalthough': 1,\n",
      "          'great': 1,\n",
      "          'plots': 1,\n",
      "          'terrible': 1,\n",
      "          'dialogue': 1,\n",
      "          'practically': 1,\n",
      "          'dud': 1,\n",
      "          'speech': 1,\n",
      "          'simple': 1,\n",
      "          'intelligent': 1,\n",
      "          'npractically': 1,\n",
      "          'stating': 1,\n",
      "          'obvious': 1,\n",
      "          'nnone': 1,\n",
      "          'smart': 1,\n",
      "          'nalso': 1,\n",
      "          'go': 1,\n",
      "          'impressive': 1,\n",
      "          'nice': 1,\n",
      "          'special': 1,\n",
      "          'effect': 1,\n",
      "          'shots': 1,\n",
      "          'anyones': 1,\n",
      "          'guess': 1,\n",
      "          'ntheres': 1,\n",
      "          'giant': 1,\n",
      "          'attack': 1,\n",
      "          'even': 1,\n",
      "          'ni': 1,\n",
      "          'assume': 1,\n",
      "          'trying': 1,\n",
      "          'build': 1,\n",
      "          'tension': 1,\n",
      "          'showing': 1,\n",
      "          'handled': 1,\n",
      "          'correctly': 1,\n",
      "          'whole': 1,\n",
      "          'done': 1,\n",
      "          'badly': 1,\n",
      "          'could': 1,\n",
      "          'stupid': 1,\n",
      "          'nfinally': 1,\n",
      "          'idea': 1,\n",
      "          'genre': 1,\n",
      "          'nlevison': 1,\n",
      "          'cant': 1,\n",
      "          'handle': 1,\n",
      "          'nit': 1,\n",
      "          'leaps': 1,\n",
      "          'hokey': 1,\n",
      "          'scifi': 1,\n",
      "          'horror': 1,\n",
      "          'finally': 1,\n",
      "          'shiningevent': 1,\n",
      "          'horizon': 1,\n",
      "          'psychological': 1,\n",
      "          'thriller': 1,\n",
      "          'nand': 1,\n",
      "          'course': 1,\n",
      "          '1988': 1,\n",
      "          'defense': 1,\n",
      "          'write': 1,\n",
      "          'released': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'rubbish': 1,\n",
      "          'nits': 1,\n",
      "          'bad': 1,\n",
      "          'right': 1,\n",
      "          'jump': 1,\n",
      "          'nothing': 1,\n",
      "          'scary': 1,\n",
      "          'occasionally': 1,\n",
      "          'interesting': 1,\n",
      "          'overall': 1,\n",
      "          'big': 1,\n",
      "          'waste': 1,\n",
      "          'fine': 1,\n",
      "          'talent': 1,\n",
      "          'lot': 1,\n",
      "          'money': 1,\n",
      "          'potentially': 1,\n",
      "          'nnot': 1,\n",
      "          'really': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'review': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'bottle': 10,\n",
      "          'message': 8,\n",
      "          'film': 5,\n",
      "          'movie': 5,\n",
      "          'theresa': 5,\n",
      "          'finds': 5,\n",
      "          'type': 4,\n",
      "          'letter': 4,\n",
      "          'garrett': 4,\n",
      "          'man': 3,\n",
      "          'since': 3,\n",
      "          'great': 3,\n",
      "          'one': 3,\n",
      "          'find': 3,\n",
      "          'know': 3,\n",
      "          'say': 3,\n",
      "          'characters': 3,\n",
      "          'last': 2,\n",
      "          'drama': 2,\n",
      "          'woman': 2,\n",
      "          'luck': 2,\n",
      "          'ultimately': 2,\n",
      "          'story': 2,\n",
      "          'trying': 2,\n",
      "          'make': 2,\n",
      "          'robin': 2,\n",
      "          'wright': 2,\n",
      "          'penn': 2,\n",
      "          'chicago': 2,\n",
      "          'tribune': 2,\n",
      "          'love': 2,\n",
      "          'named': 2,\n",
      "          'catherine': 2,\n",
      "          'around': 2,\n",
      "          'based': 2,\n",
      "          'theresas': 2,\n",
      "          'costner': 2,\n",
      "          'immediately': 2,\n",
      "          'garretts': 2,\n",
      "          'years': 2,\n",
      "          'wouldnt': 2,\n",
      "          'melodrama': 2,\n",
      "          'city': 2,\n",
      "          'nit': 2,\n",
      "          'seems': 2,\n",
      "          'set': 2,\n",
      "          'main': 2,\n",
      "          'nthe': 2,\n",
      "          'dialogue': 2,\n",
      "          'felt': 2,\n",
      "          'read': 2,\n",
      "          'similar': 2,\n",
      "          'director': 1,\n",
      "          'luis': 1,\n",
      "          'mandokis': 1,\n",
      "          'superb': 1,\n",
      "          'serious': 1,\n",
      "          '1994': 1,\n",
      "          'loves': 1,\n",
      "          'run': 1,\n",
      "          'latest': 1,\n",
      "          'picture': 1,\n",
      "          'worst': 1,\n",
      "          'romance': 1,\n",
      "          'tugs': 1,\n",
      "          'relentlessly': 1,\n",
      "          'violently': 1,\n",
      "          'heartstrings': 1,\n",
      "          'miraculously': 1,\n",
      "          'manages': 1,\n",
      "          'dry': 1,\n",
      "          'eyes': 1,\n",
      "          'rather': 1,\n",
      "          'tear': 1,\n",
      "          'neverything': 1,\n",
      "          'occurs': 1,\n",
      "          'telegraphed': 1,\n",
      "          'way': 1,\n",
      "          'advance': 1,\n",
      "          'done': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'beforeand': 1,\n",
      "          'much': 1,\n",
      "          'betterso': 1,\n",
      "          'theres': 1,\n",
      "          'absence': 1,\n",
      "          'suspense': 1,\n",
      "          'moves': 1,\n",
      "          'deliberate': 1,\n",
      "          'pace': 1,\n",
      "          'meaningful': 1,\n",
      "          'statements': 1,\n",
      "          'plot': 1,\n",
      "          'developments': 1,\n",
      "          'becomes': 1,\n",
      "          'tedious': 1,\n",
      "          'bore': 1,\n",
      "          'sit': 1,\n",
      "          'n': 1,\n",
      "          'begins': 1,\n",
      "          'osborne': 1,\n",
      "          'single': 1,\n",
      "          'mother': 1,\n",
      "          'researcher': 1,\n",
      "          'washed': 1,\n",
      "          'shore': 1,\n",
      "          'jogging': 1,\n",
      "          'day': 1,\n",
      "          'ninside': 1,\n",
      "          'anonymous': 1,\n",
      "          'addressed': 1,\n",
      "          'mystery': 1,\n",
      "          'taken': 1,\n",
      "          'aback': 1,\n",
      "          'honesty': 1,\n",
      "          'sweetness': 1,\n",
      "          'shows': 1,\n",
      "          'work': 1,\n",
      "          'objection': 1,\n",
      "          'editor': 1,\n",
      "          'placed': 1,\n",
      "          'newspaper': 1,\n",
      "          'nsoon': 1,\n",
      "          'heavy': 1,\n",
      "          'research': 1,\n",
      "          'conducted': 1,\n",
      "          'wrote': 1,\n",
      "          'ship': 1,\n",
      "          'logo': 1,\n",
      "          'top': 1,\n",
      "          'typed': 1,\n",
      "          'traced': 1,\n",
      "          'blake': 1,\n",
      "          'traveling': 1,\n",
      "          'outer': 1,\n",
      "          'banks': 1,\n",
      "          'boating': 1,\n",
      "          'town': 1,\n",
      "          'north': 1,\n",
      "          'carolina': 1,\n",
      "          'specifics': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'turns': 1,\n",
      "          'handsome': 1,\n",
      "          'rugged': 1,\n",
      "          'age': 1,\n",
      "          'played': 1,\n",
      "          'kevin': 1,\n",
      "          'nshe': 1,\n",
      "          'charmed': 1,\n",
      "          'hesitant': 1,\n",
      "          'unveil': 1,\n",
      "          'truth': 1,\n",
      "          'late': 1,\n",
      "          'wife': 1,\n",
      "          'died': 1,\n",
      "          'earlier': 1,\n",
      "          'ndo': 1,\n",
      "          'think': 1,\n",
      "          'headed': 1,\n",
      "          'nmost': 1,\n",
      "          'likely': 1,\n",
      "          'call': 1,\n",
      "          'giving': 1,\n",
      "          'away': 1,\n",
      "          'anything': 1,\n",
      "          'pictures': 1,\n",
      "          'end': 1,\n",
      "          'fallen': 1,\n",
      "          'deep': 1,\n",
      "          'artificial': 1,\n",
      "          'didnt': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'buy': 1,\n",
      "          'second': 1,\n",
      "          'nif': 1,\n",
      "          'positive': 1,\n",
      "          'things': 1,\n",
      "          'performances': 1,\n",
      "          'paul': 1,\n",
      "          'newman': 1,\n",
      "          'stubborn': 1,\n",
      "          'loving': 1,\n",
      "          'father': 1,\n",
      "          'far': 1,\n",
      "          'par': 1,\n",
      "          'wasteful': 1,\n",
      "          'shaggy': 1,\n",
      "          'dog': 1,\n",
      "          'cinematography': 1,\n",
      "          'caleb': 1,\n",
      "          'deschanel': 1,\n",
      "          'takes': 1,\n",
      "          'advantage': 1,\n",
      "          'beautiful': 1,\n",
      "          'eastern': 1,\n",
      "          'coast': 1,\n",
      "          'paints': 1,\n",
      "          'equally': 1,\n",
      "          'alluring': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'yet': 1,\n",
      "          'redeem': 1,\n",
      "          'lessthanstellar': 1,\n",
      "          'films': 1,\n",
      "          'made': 1,\n",
      "          'recently': 1,\n",
      "          'bad': 1,\n",
      "          'want': 1,\n",
      "          'another': 1,\n",
      "          'near': 1,\n",
      "          'water': 1,\n",
      "          'ridiculous': 1,\n",
      "          'centerpieces': 1,\n",
      "          'stormswept': 1,\n",
      "          'sea': 1,\n",
      "          'actors': 1,\n",
      "          'sadly': 1,\n",
      "          'wasted': 1,\n",
      "          'including': 1,\n",
      "          'illeana': 1,\n",
      "          'douglas': 1,\n",
      "          'underused': 1,\n",
      "          'actress': 1,\n",
      "          'always': 1,\n",
      "          'get': 1,\n",
      "          'stuck': 1,\n",
      "          'friend': 1,\n",
      "          'roles': 1,\n",
      "          'playing': 1,\n",
      "          'penns': 1,\n",
      "          'confidante': 1,\n",
      "          'coworker': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'plays': 1,\n",
      "          'like': 1,\n",
      "          'humdrum': 1,\n",
      "          'trite': 1,\n",
      "          'television': 1,\n",
      "          'lifetime': 1,\n",
      "          'channel': 1,\n",
      "          'spends': 1,\n",
      "          'deal': 1,\n",
      "          'time': 1,\n",
      "          'getting': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'stimulating': 1,\n",
      "          'entertaining': 1,\n",
      "          'nusually': 1,\n",
      "          'person': 1,\n",
      "          'practically': 1,\n",
      "          'salivate': 1,\n",
      "          'dialogueladen': 1,\n",
      "          'sequences': 1,\n",
      "          'doubt': 1,\n",
      "          'develop': 1,\n",
      "          'relationships': 1,\n",
      "          'rang': 1,\n",
      "          'resounding': 1,\n",
      "          'falseness': 1,\n",
      "          'written': 1,\n",
      "          'people': 1,\n",
      "          'really': 1,\n",
      "          'talking': 1,\n",
      "          'nwhen': 1,\n",
      "          'little': 1,\n",
      "          'interest': 1,\n",
      "          'particularly': 1,\n",
      "          'interesting': 1,\n",
      "          'trouble': 1,\n",
      "          'ni': 1,\n",
      "          'swear': 1,\n",
      "          'watching': 1,\n",
      "          'screenplay': 1,\n",
      "          'entirety': 1,\n",
      "          'arriving': 1,\n",
      "          'theater': 1,\n",
      "          'heck': 1,\n",
      "          'actuality': 1,\n",
      "          'im': 1,\n",
      "          'even': 1,\n",
      "          'familiar': 1,\n",
      "          'novel': 1,\n",
      "          'nicholas': 1,\n",
      "          'sparks': 1,\n",
      "          'nalways': 1,\n",
      "          'step': 1,\n",
      "          'ahead': 1,\n",
      "          'ran': 1,\n",
      "          'closely': 1,\n",
      "          'tightly': 1,\n",
      "          'constraints': 1,\n",
      "          'triedandtrue': 1,\n",
      "          'hollywood': 1,\n",
      "          'strip': 1,\n",
      "          'often': 1,\n",
      "          'seemed': 1,\n",
      "          'almost': 1,\n",
      "          'danger': 1,\n",
      "          'tearing': 1,\n",
      "          'nnobody': 1,\n",
      "          'wins': 1,\n",
      "          'prizes': 1,\n",
      "          'guessing': 1,\n",
      "          'eventually': 1,\n",
      "          'secret': 1,\n",
      "          'several': 1,\n",
      "          'obstacles': 1,\n",
      "          'come': 1,\n",
      "          'within': 1,\n",
      "          'ways': 1,\n",
      "          'living': 1,\n",
      "          'happily': 1,\n",
      "          'ever': 1,\n",
      "          'nthis': 1,\n",
      "          'exact': 1,\n",
      "          'problem': 1,\n",
      "          'occurred': 1,\n",
      "          'watch': 1,\n",
      "          'realize': 1,\n",
      "          'mean': 1,\n",
      "          'meg': 1,\n",
      "          'ryannicolas': 1,\n",
      "          'cage': 1,\n",
      "          'romantic': 1,\n",
      "          'angels': 1,\n",
      "          'nalthough': 1,\n",
      "          'deeply': 1,\n",
      "          'touched': 1,\n",
      "          'heartfelt': 1,\n",
      "          'perhaps': 1,\n",
      "          'filmakers': 1,\n",
      "          'might': 1,\n",
      "          'better': 1,\n",
      "          'finding': 1,\n",
      "          'preferably': 1,\n",
      "          'filming': 1,\n",
      "          'began': 1,\n",
      "          'memo': 1,\n",
      "          'screenwriters': 1,\n",
      "          'use': 1,\n",
      "          'brain': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'really': 4,\n",
      "          'little': 4,\n",
      "          'funny': 4,\n",
      "          'nthe': 4,\n",
      "          'far': 4,\n",
      "          'scenes': 4,\n",
      "          'nthere': 3,\n",
      "          'involving': 3,\n",
      "          'thing': 3,\n",
      "          'ni': 2,\n",
      "          'guess': 2,\n",
      "          'caddyshack': 2,\n",
      "          'laughs': 2,\n",
      "          'caddy': 2,\n",
      "          'club': 2,\n",
      "          'cast': 2,\n",
      "          'unknown': 2,\n",
      "          'fairly': 2,\n",
      "          'completely': 2,\n",
      "          'real': 2,\n",
      "          'rest': 2,\n",
      "          'camera': 2,\n",
      "          'story': 2,\n",
      "          'murray': 2,\n",
      "          'nmost': 2,\n",
      "          'dangerfield': 2,\n",
      "          'knight': 2,\n",
      "          'painfully': 2,\n",
      "          'chevy': 2,\n",
      "          'chase': 2,\n",
      "          'nim': 2,\n",
      "          'sure': 2,\n",
      "          'writers': 2,\n",
      "          'comedy': 2,\n",
      "          'remember': 1,\n",
      "          'enjoying': 1,\n",
      "          'saw': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'memory': 1,\n",
      "          'sucks': 1,\n",
      "          'arent': 1,\n",
      "          'great': 1,\n",
      "          'ncaddyshack': 1,\n",
      "          'name': 1,\n",
      "          'implies': 1,\n",
      "          'less': 1,\n",
      "          'centers': 1,\n",
      "          'one': 1,\n",
      "          'young': 1,\n",
      "          'working': 1,\n",
      "          'exclusive': 1,\n",
      "          'country': 1,\n",
      "          'nmichael': 1,\n",
      "          'okeefe': 1,\n",
      "          'plays': 1,\n",
      "          'said': 1,\n",
      "          'nwhy': 1,\n",
      "          'untalented': 1,\n",
      "          'actor': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'beyond': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'plot': 1,\n",
      "          'series': 1,\n",
      "          'opportunities': 1,\n",
      "          'mug': 1,\n",
      "          'call': 1,\n",
      "          'subplot': 1,\n",
      "          'mentally': 1,\n",
      "          'disturbed': 1,\n",
      "          'greens': 1,\n",
      "          'keeper': 1,\n",
      "          'bill': 1,\n",
      "          'private': 1,\n",
      "          'war': 1,\n",
      "          'gopher': 1,\n",
      "          'ruining': 1,\n",
      "          'course': 1,\n",
      "          'marginal': 1,\n",
      "          'come': 1,\n",
      "          'rodney': 1,\n",
      "          'ted': 1,\n",
      "          'mugging': 1,\n",
      "          'overacting': 1,\n",
      "          'limited': 1,\n",
      "          'success': 1,\n",
      "          'nbill': 1,\n",
      "          'slightly': 1,\n",
      "          'amusing': 1,\n",
      "          'places': 1,\n",
      "          'wasted': 1,\n",
      "          'biggest': 1,\n",
      "          'waste': 1,\n",
      "          'didnt': 1,\n",
      "          'even': 1,\n",
      "          'crack': 1,\n",
      "          'smile': 1,\n",
      "          'face': 1,\n",
      "          'characters': 1,\n",
      "          'lame': 1,\n",
      "          'zenlike': 1,\n",
      "          'approach': 1,\n",
      "          'golfing': 1,\n",
      "          'decent': 1,\n",
      "          'interaction': 1,\n",
      "          'infrequent': 1,\n",
      "          'carry': 1,\n",
      "          'thats': 1,\n",
      "          'get': 1,\n",
      "          'basing': 1,\n",
      "          'around': 1,\n",
      "          'kid': 1,\n",
      "          'thinking': 1,\n",
      "          'think': 1,\n",
      "          'something': 1,\n",
      "          'removed': 1,\n",
      "          'putting': 1,\n",
      "          'pen': 1,\n",
      "          'paper': 1,\n",
      "          'nnothing': 1,\n",
      "          'works': 1,\n",
      "          'nit': 1,\n",
      "          'wouldnt': 1,\n",
      "          'taken': 1,\n",
      "          'genius': 1,\n",
      "          'figure': 1,\n",
      "          'wasnt': 1,\n",
      "          'going': 1,\n",
      "          'fly': 1,\n",
      "          'couldnt': 1,\n",
      "          'possibly': 1,\n",
      "          'nits': 1,\n",
      "          'brain': 1,\n",
      "          'damaged': 1,\n",
      "          'world': 1,\n",
      "          'oneness': 1,\n",
      "          'golf': 1,\n",
      "          'ball': 1,\n",
      "          'supposed': 1,\n",
      "          'nin': 1,\n",
      "          'reality': 1,\n",
      "          'embarrassing': 1,\n",
      "          'watch': 1,\n",
      "          'scene': 1,\n",
      "          'pool': 1,\n",
      "          'caddies': 1,\n",
      "          'go': 1,\n",
      "          'wild': 1,\n",
      "          'hot': 1,\n",
      "          'babe': 1,\n",
      "          'walking': 1,\n",
      "          'bikini': 1,\n",
      "          'nolive': 1,\n",
      "          'oil': 1,\n",
      "          'would': 1,\n",
      "          'filled': 1,\n",
      "          'swimsuit': 1,\n",
      "          'better': 1,\n",
      "          'girl': 1,\n",
      "          'neverything': 1,\n",
      "          'implausible': 1,\n",
      "          'concerned': 1,\n",
      "          'nmaybe': 1,\n",
      "          'drunk': 1,\n",
      "          'mind': 1,\n",
      "          'high': 1,\n",
      "          'sort': 1,\n",
      "          'illegal': 1,\n",
      "          'narcotic': 1,\n",
      "          'might': 1,\n",
      "          'nbut': 1,\n",
      "          'us': 1,\n",
      "          'stay': 1,\n",
      "          'hell': 1,\n",
      "          'away': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'libby': 7,\n",
      "          'fugitive': 6,\n",
      "          'jones': 5,\n",
      "          'time': 5,\n",
      "          'movie': 4,\n",
      "          'tommy': 3,\n",
      "          'lee': 3,\n",
      "          'innocent': 3,\n",
      "          'nthe': 3,\n",
      "          'double': 3,\n",
      "          'jeopardy': 3,\n",
      "          'one': 3,\n",
      "          'parole': 3,\n",
      "          'officer': 3,\n",
      "          'judd': 3,\n",
      "          'husband': 3,\n",
      "          'bruce': 3,\n",
      "          'movies': 3,\n",
      "          'son': 3,\n",
      "          'like': 3,\n",
      "          'trying': 2,\n",
      "          'kill': 2,\n",
      "          'another': 2,\n",
      "          'action': 2,\n",
      "          'good': 2,\n",
      "          'nthere': 2,\n",
      "          'greenwood': 2,\n",
      "          'needed': 2,\n",
      "          'money': 2,\n",
      "          'prison': 2,\n",
      "          'parsons': 2,\n",
      "          'never': 2,\n",
      "          'crime': 2,\n",
      "          'still': 2,\n",
      "          'decides': 2,\n",
      "          'way': 2,\n",
      "          'break': 2,\n",
      "          'continue': 2,\n",
      "          'scene': 2,\n",
      "          'picture': 2,\n",
      "          'get': 2,\n",
      "          'oscar': 2,\n",
      "          'chases': 1,\n",
      "          'victim': 1,\n",
      "          'around': 1,\n",
      "          'america': 1,\n",
      "          'prove': 1,\n",
      "          'spouse': 1,\n",
      "          'nnot': 1,\n",
      "          'quite': 1,\n",
      "          'plot': 1,\n",
      "          'copycat': 1,\n",
      "          'without': 1,\n",
      "          'excitement': 1,\n",
      "          'acting': 1,\n",
      "          'original': 1,\n",
      "          'slight': 1,\n",
      "          'differences': 1,\n",
      "          'besides': 1,\n",
      "          'bad': 1,\n",
      "          'plays': 1,\n",
      "          'us': 1,\n",
      "          'marshall': 1,\n",
      "          'clever': 1,\n",
      "          'huh': 1,\n",
      "          'noh': 1,\n",
      "          'ashley': 1,\n",
      "          'framed': 1,\n",
      "          'collect': 1,\n",
      "          'two': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'life': 1,\n",
      "          'insurance': 1,\n",
      "          'armed': 1,\n",
      "          'man': 1,\n",
      "          'nboth': 1,\n",
      "          'video': 1,\n",
      "          'nmake': 1,\n",
      "          'wise': 1,\n",
      "          'choice': 1,\n",
      "          'pick': 1,\n",
      "          'many': 1,\n",
      "          'flaws': 1,\n",
      "          'laughable': 1,\n",
      "          'nwhile': 1,\n",
      "          'serving': 1,\n",
      "          'discovers': 1,\n",
      "          'charged': 1,\n",
      "          'committing': 1,\n",
      "          'twice': 1,\n",
      "          'nlearning': 1,\n",
      "          'alive': 1,\n",
      "          'serve': 1,\n",
      "          'find': 1,\n",
      "          'retrieve': 1,\n",
      "          'necessary': 1,\n",
      "          'nwhen': 1,\n",
      "          'strict': 1,\n",
      "          'travis': 1,\n",
      "          'lehman': 1,\n",
      "          'stands': 1,\n",
      "          'rules': 1,\n",
      "          'knows': 1,\n",
      "          'plan': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'gets': 1,\n",
      "          'caught': 1,\n",
      "          'shes': 1,\n",
      "          'going': 1,\n",
      "          'back': 1,\n",
      "          'jail': 1,\n",
      "          'ndirector': 1,\n",
      "          'beresford': 1,\n",
      "          'spends': 1,\n",
      "          'much': 1,\n",
      "          'convince': 1,\n",
      "          'audience': 1,\n",
      "          'misses': 1,\n",
      "          'nevery': 1,\n",
      "          'given': 1,\n",
      "          'shot': 1,\n",
      "          'staring': 1,\n",
      "          'crying': 1,\n",
      "          'nin': 1,\n",
      "          'valuable': 1,\n",
      "          'wasted': 1,\n",
      "          'shots': 1,\n",
      "          'takes': 1,\n",
      "          'away': 1,\n",
      "          'opportunities': 1,\n",
      "          'something': 1,\n",
      "          'nall': 1,\n",
      "          'type': 1,\n",
      "          'short': 1,\n",
      "          'tells': 1,\n",
      "          'friend': 1,\n",
      "          'miss': 1,\n",
      "          'nnothing': 1,\n",
      "          'nothing': 1,\n",
      "          'less': 1,\n",
      "          'ndr': 1,\n",
      "          'kimble': 1,\n",
      "          'didnt': 1,\n",
      "          'look': 1,\n",
      "          'dead': 1,\n",
      "          'wife': 1,\n",
      "          'primary': 1,\n",
      "          'concern': 1,\n",
      "          'save': 1,\n",
      "          'nlibby': 1,\n",
      "          'times': 1,\n",
      "          'shows': 1,\n",
      "          'determination': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'nashley': 1,\n",
      "          'excellent': 1,\n",
      "          'actors': 1,\n",
      "          'typecast': 1,\n",
      "          'rest': 1,\n",
      "          'careers': 1,\n",
      "          'kind': 1,\n",
      "          'doomed': 1,\n",
      "          'costar': 1,\n",
      "          'nwinning': 1,\n",
      "          'must': 1,\n",
      "          'convinced': 1,\n",
      "          'audiences': 1,\n",
      "          'tired': 1,\n",
      "          'idomyjobwhethertheyareinnocentorguilty': 1,\n",
      "          'roles': 1,\n",
      "          'npeople': 1,\n",
      "          'pay': 1,\n",
      "          'see': 1,\n",
      "          'makes': 1,\n",
      "          'plenty': 1,\n",
      "          'guess': 1,\n",
      "          'right': 1,\n",
      "          'nthough': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'win': 1,\n",
      "          'ultimate': 1,\n",
      "          'mistake': 1,\n",
      "          'script': 1,\n",
      "          'eventually': 1,\n",
      "          'becomes': 1,\n",
      "          'neven': 1,\n",
      "          'excused': 1,\n",
      "          'disobeying': 1,\n",
      "          'number': 1,\n",
      "          'crimes': 1,\n",
      "          'commits': 1,\n",
      "          'run': 1,\n",
      "          'numerous': 1,\n",
      "          'count': 1,\n",
      "          'nburglary': 1,\n",
      "          'assault': 1,\n",
      "          'grand': 1,\n",
      "          'theft': 1,\n",
      "          'auto': 1,\n",
      "          'libbys': 1,\n",
      "          'slipups': 1,\n",
      "          'message': 1,\n",
      "          'small': 1,\n",
      "          'laws': 1,\n",
      "          'long': 1,\n",
      "          'youre': 1,\n",
      "          'major': 1,\n",
      "          'nhopefully': 1,\n",
      "          'criminals': 1,\n",
      "          'wont': 1,\n",
      "          'use': 1,\n",
      "          'reference': 1,\n",
      "          'court': 1,\n",
      "          'nthat': 1,\n",
      "          'would': 1,\n",
      "          'plain': 1,\n",
      "          'stupid': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'josh': 6,\n",
      "          'cooper': 5,\n",
      "          'life': 4,\n",
      "          'student': 3,\n",
      "          'roommate': 3,\n",
      "          'nso': 2,\n",
      "          '_dead_man_on_campus_': 2,\n",
      "          'academic': 2,\n",
      "          'sex': 2,\n",
      "          'two': 2,\n",
      "          'students': 2,\n",
      "          'suicide': 2,\n",
      "          'cohn': 2,\n",
      "          'time': 2,\n",
      "          'build': 2,\n",
      "          'booze': 2,\n",
      "          'said': 2,\n",
      "          'nthe': 2,\n",
      "          'cliff': 2,\n",
      "          'grow': 2,\n",
      "          'fond': 1,\n",
      "          'writers': 1,\n",
      "          'use': 1,\n",
      "          'cheap': 1,\n",
      "          'easy': 1,\n",
      "          'puns': 1,\n",
      "          'completely': 1,\n",
      "          'using': 1,\n",
      "          'situation': 1,\n",
      "          'merits': 1,\n",
      "          'witness': 1,\n",
      "          'review': 1,\n",
      "          '_pecker_': 1,\n",
      "          'couple': 1,\n",
      "          'issues': 1,\n",
      "          'ago': 1,\n",
      "          'goes': 1,\n",
      "          'juvenile': 1,\n",
      "          'collegeset': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'dead': 1,\n",
      "          'arrival': 1,\n",
      "          'nstraitlaced': 1,\n",
      "          'med': 1,\n",
      "          'tom': 1,\n",
      "          'everett': 1,\n",
      "          'scott': 1,\n",
      "          'manages': 1,\n",
      "          'remain': 1,\n",
      "          'somewhat': 1,\n",
      "          'likable': 1,\n",
      "          'throughout': 1,\n",
      "          'blemishfree': 1,\n",
      "          'record': 1,\n",
      "          'breaks': 1,\n",
      "          'fs': 1,\n",
      "          'thanks': 1,\n",
      "          'influence': 1,\n",
      "          'everpartying': 1,\n",
      "          'markpaul': 1,\n",
      "          'gosselaar': 1,\n",
      "          'introduces': 1,\n",
      "          'boozefilled': 1,\n",
      "          'nights': 1,\n",
      "          'come': 1,\n",
      "          'university': 1,\n",
      "          'nwith': 1,\n",
      "          'threat': 1,\n",
      "          'losing': 1,\n",
      "          'scholarship': 1,\n",
      "          'cleaning': 1,\n",
      "          'toilets': 1,\n",
      "          'dad': 1,\n",
      "          'looming': 1,\n",
      "          'goodhearted': 1,\n",
      "          'slackers': 1,\n",
      "          'neasylook': 1,\n",
      "          'loophole': 1,\n",
      "          'find': 1,\n",
      "          'form': 1,\n",
      "          'unbelievable': 1,\n",
      "          'rule': 1,\n",
      "          'school': 1,\n",
      "          'charter': 1,\n",
      "          'states': 1,\n",
      "          'commits': 1,\n",
      "          'surviving': 1,\n",
      "          'shall': 1,\n",
      "          'receive': 1,\n",
      "          'straight': 1,\n",
      "          'instead': 1,\n",
      "          'studying': 1,\n",
      "          'attempt': 1,\n",
      "          'seek': 1,\n",
      "          'depressed': 1,\n",
      "          'move': 1,\n",
      "          'dorm': 1,\n",
      "          'room': 1,\n",
      "          'drive': 1,\n",
      "          'semester': 1,\n",
      "          'ends': 1,\n",
      "          'ndirector': 1,\n",
      "          'alan': 1,\n",
      "          'screenwriters': 1,\n",
      "          'michael': 1,\n",
      "          'traeger': 1,\n",
      "          'mike': 1,\n",
      "          'white': 1,\n",
      "          'working': 1,\n",
      "          'story': 1,\n",
      "          'anthony': 1,\n",
      "          'abrams': 1,\n",
      "          'adam': 1,\n",
      "          'larson': 1,\n",
      "          'broder': 1,\n",
      "          'take': 1,\n",
      "          'sweet': 1,\n",
      "          'head': 1,\n",
      "          'steam': 1,\n",
      "          'comes': 1,\n",
      "          'coopers': 1,\n",
      "          'diabolical': 1,\n",
      "          'plot': 1,\n",
      "          'nuntil': 1,\n",
      "          'usual': 1,\n",
      "          'boring': 1,\n",
      "          'cliches': 1,\n",
      "          'college': 1,\n",
      "          'fill': 1,\n",
      "          'made': 1,\n",
      "          'feel': 1,\n",
      "          'longer': 1,\n",
      "          '_saved_by_the_bell_': 1,\n",
      "          'alumnus': 1,\n",
      "          'gosselaars': 1,\n",
      "          'sitcombred': 1,\n",
      "          'mugging': 1,\n",
      "          'nthat': 1,\n",
      "          'company': 1,\n",
      "          'comic': 1,\n",
      "          'momentum': 1,\n",
      "          'mishandle': 1,\n",
      "          'introduction': 1,\n",
      "          'manic': 1,\n",
      "          'psychotic': 1,\n",
      "          'lochlyn': 1,\n",
      "          'munro': 1,\n",
      "          'potential': 1,\n",
      "          'brings': 1,\n",
      "          'demented': 1,\n",
      "          'uninspired': 1,\n",
      "          'proceedings': 1,\n",
      "          'hastily': 1,\n",
      "          'written': 1,\n",
      "          'favor': 1,\n",
      "          'less': 1,\n",
      "          'interesting': 1,\n",
      "          'candidates': 1,\n",
      "          'paranoid': 1,\n",
      "          'nerd': 1,\n",
      "          'buckley': 1,\n",
      "          'randy': 1,\n",
      "          'pearlstein': 1,\n",
      "          'british': 1,\n",
      "          'death': 1,\n",
      "          'rocker': 1,\n",
      "          'matt': 1,\n",
      "          'corey': 1,\n",
      "          'page': 1,\n",
      "          'none': 1,\n",
      "          'wishes': 1,\n",
      "          'would': 1,\n",
      "          'reappear': 1,\n",
      "          'say': 1,\n",
      "          'careful': 1,\n",
      "          'wish': 1,\n",
      "          'nnot': 1,\n",
      "          'surprisingly': 1,\n",
      "          'resurface': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'character': 1,\n",
      "          'best': 1,\n",
      "          'taken': 1,\n",
      "          'small': 1,\n",
      "          'dose': 1,\n",
      "          'almost': 1,\n",
      "          'immediately': 1,\n",
      "          'extended': 1,\n",
      "          'boorish': 1,\n",
      "          'sociopathic': 1,\n",
      "          'antics': 1,\n",
      "          'loses': 1,\n",
      "          'novelty': 1,\n",
      "          'nwhatever': 1,\n",
      "          'morbid': 1,\n",
      "          'appeal': 1,\n",
      "          'farfetched': 1,\n",
      "          'premise': 1,\n",
      "          'quickly': 1,\n",
      "          'evaporates': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'characters': 1,\n",
      "          'especially': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'grate': 1,\n",
      "          'getgo': 1,\n",
      "          'n_dead_man_': 1,\n",
      "          'doesnt': 1,\n",
      "          'tiresome': 1,\n",
      "          'already': 1,\n",
      "          '_is_': 1,\n",
      "          'clever': 1,\n",
      "          'opening': 1,\n",
      "          'titles': 1,\n",
      "          'nas': 1,\n",
      "          'slogs': 1,\n",
      "          'along': 1,\n",
      "          'cheesy': 1,\n",
      "          'happyforallparties': 1,\n",
      "          'conclusion': 1,\n",
      "          '_dead_man_': 1,\n",
      "          'lives': 1,\n",
      "          'title': 1,\n",
      "          'somenot': 1,\n",
      "          'movie': 1,\n",
      "          'even': 1,\n",
      "          'tired': 1,\n",
      "          'die': 1,\n",
      "          'still': 1,\n",
      "          'insists': 1,\n",
      "          'going': 1,\n",
      "          'nlike': 1,\n",
      "          'zombie': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'project': 6,\n",
      "          'reeves': 5,\n",
      "          'keanu': 5,\n",
      "          'really': 5,\n",
      "          'much': 4,\n",
      "          'get': 4,\n",
      "          'doesnt': 4,\n",
      "          'nthe': 4,\n",
      "          'time': 4,\n",
      "          'n': 4,\n",
      "          'great': 3,\n",
      "          'morgan': 3,\n",
      "          'freeman': 3,\n",
      "          'fugitive': 3,\n",
      "          'rachel': 3,\n",
      "          'could': 3,\n",
      "          'help': 3,\n",
      "          'nhe': 3,\n",
      "          'world': 3,\n",
      "          'ford': 3,\n",
      "          'characters': 3,\n",
      "          'well': 3,\n",
      "          'andrew': 2,\n",
      "          'davis': 2,\n",
      "          'give': 2,\n",
      "          'us': 2,\n",
      "          'weisz': 2,\n",
      "          'eddie': 2,\n",
      "          'kasalivich': 2,\n",
      "          'machinist': 2,\n",
      "          'university': 2,\n",
      "          'chicago': 2,\n",
      "          'making': 2,\n",
      "          'hydrogen': 2,\n",
      "          'solution': 2,\n",
      "          'nthis': 2,\n",
      "          'energy': 2,\n",
      "          'problems': 2,\n",
      "          'paul': 2,\n",
      "          'shannon': 2,\n",
      "          'leader': 2,\n",
      "          'quickly': 2,\n",
      "          'released': 2,\n",
      "          'like': 2,\n",
      "          'thing': 2,\n",
      "          'english': 2,\n",
      "          'chase': 2,\n",
      "          'chain': 2,\n",
      "          'reaction': 2,\n",
      "          'given': 2,\n",
      "          'better': 2,\n",
      "          'alone': 2,\n",
      "          'didnt': 2,\n",
      "          'know': 2,\n",
      "          'nwe': 2,\n",
      "          'dont': 2,\n",
      "          'still': 2,\n",
      "          'probably': 2,\n",
      "          'hit': 2,\n",
      "          'boy': 1,\n",
      "          'nkeanu': 1,\n",
      "          'acting': 1,\n",
      "          'together': 1,\n",
      "          'director': 1,\n",
      "          'back': 1,\n",
      "          'another': 1,\n",
      "          'thriller': 1,\n",
      "          'beautiful': 1,\n",
      "          'stealing': 1,\n",
      "          'beauty': 1,\n",
      "          'thrown': 1,\n",
      "          'boot': 1,\n",
      "          'nhow': 1,\n",
      "          'blockbuster': 1,\n",
      "          'nall': 1,\n",
      "          'diehard': 1,\n",
      "          'fans': 1,\n",
      "          'read': 1,\n",
      "          'nol': 1,\n",
      "          'ado': 1,\n",
      "          'nothing': 1,\n",
      "          'plays': 1,\n",
      "          'studying': 1,\n",
      "          'nto': 1,\n",
      "          'pay': 1,\n",
      "          'rent': 1,\n",
      "          'takes': 1,\n",
      "          'job': 1,\n",
      "          'machinery': 1,\n",
      "          'conducted': 1,\n",
      "          'nby': 1,\n",
      "          'happy': 1,\n",
      "          'coincidence': 1,\n",
      "          'also': 1,\n",
      "          'happens': 1,\n",
      "          'stumble': 1,\n",
      "          'final': 1,\n",
      "          'problem': 1,\n",
      "          'thus': 1,\n",
      "          'one': 1,\n",
      "          'knows': 1,\n",
      "          'key': 1,\n",
      "          'performing': 1,\n",
      "          'feat': 1,\n",
      "          'miracle': 1,\n",
      "          'physics': 1,\n",
      "          'holds': 1,\n",
      "          'promise': 1,\n",
      "          'taking': 1,\n",
      "          'water': 1,\n",
      "          'giving': 1,\n",
      "          'put': 1,\n",
      "          'na': 1,\n",
      "          'potential': 1,\n",
      "          'earths': 1,\n",
      "          'without': 1,\n",
      "          'pollution': 1,\n",
      "          'cost': 1,\n",
      "          'nsurely': 1,\n",
      "          'nobody': 1,\n",
      "          'nmorgan': 1,\n",
      "          'projects': 1,\n",
      "          'sponsor': 1,\n",
      "          'works': 1,\n",
      "          'powerful': 1,\n",
      "          'organization': 1,\n",
      "          'disagrees': 1,\n",
      "          'paternal': 1,\n",
      "          'technology': 1,\n",
      "          'public': 1,\n",
      "          'figures': 1,\n",
      "          'disintegrate': 1,\n",
      "          'anarchy': 1,\n",
      "          'results': 1,\n",
      "          'nso': 1,\n",
      "          'murders': 1,\n",
      "          'blows': 1,\n",
      "          'short': 1,\n",
      "          'scene': 1,\n",
      "          'sort': 1,\n",
      "          'mini': 1,\n",
      "          'id4': 1,\n",
      "          'citydevastation': 1,\n",
      "          'tries': 1,\n",
      "          'simulate': 1,\n",
      "          'experiment': 1,\n",
      "          'hitech': 1,\n",
      "          'hushhush': 1,\n",
      "          'location': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'intrepid': 1,\n",
      "          'physicist': 1,\n",
      "          'manage': 1,\n",
      "          'away': 1,\n",
      "          'follows': 1,\n",
      "          'fugitivelike': 1,\n",
      "          'using': 1,\n",
      "          'dissimilar': 1,\n",
      "          'rehash': 1,\n",
      "          'script': 1,\n",
      "          'dying': 1,\n",
      "          'comparison': 1,\n",
      "          'nboth': 1,\n",
      "          'movies': 1,\n",
      "          'use': 1,\n",
      "          'main': 1,\n",
      "          'city': 1,\n",
      "          'since': 1,\n",
      "          'place': 1,\n",
      "          'change': 1,\n",
      "          'guess': 1,\n",
      "          'cant': 1,\n",
      "          'blame': 1,\n",
      "          'setting': 1,\n",
      "          'paucity': 1,\n",
      "          'atmosphere': 1,\n",
      "          'trouble': 1,\n",
      "          'harrison': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'fred': 1,\n",
      "          'ward': 1,\n",
      "          'ncredit': 1,\n",
      "          'arent': 1,\n",
      "          'chance': 1,\n",
      "          'empathise': 1,\n",
      "          'nwhere': 1,\n",
      "          'able': 1,\n",
      "          'work': 1,\n",
      "          'within': 1,\n",
      "          'confines': 1,\n",
      "          'evoke': 1,\n",
      "          'sympathy': 1,\n",
      "          'doesn9t': 1,\n",
      "          'seem': 1,\n",
      "          'believeable': 1,\n",
      "          'character': 1,\n",
      "          'never': 1,\n",
      "          'develop': 1,\n",
      "          'nit': 1,\n",
      "          'might': 1,\n",
      "          'investment': 1,\n",
      "          'film': 1,\n",
      "          'depth': 1,\n",
      "          'spend': 1,\n",
      "          'less': 1,\n",
      "          'sequences': 1,\n",
      "          'frankly': 1,\n",
      "          'quite': 1,\n",
      "          'boring': 1,\n",
      "          'nharrison': 1,\n",
      "          'man': 1,\n",
      "          'trust': 1,\n",
      "          'came': 1,\n",
      "          'across': 1,\n",
      "          'real': 1,\n",
      "          'nin': 1,\n",
      "          'isnt': 1,\n",
      "          'nnow': 1,\n",
      "          'would': 1,\n",
      "          'fine': 1,\n",
      "          'fleeing': 1,\n",
      "          'couple': 1,\n",
      "          'chemistry': 1,\n",
      "          'portray': 1,\n",
      "          'paranoia': 1,\n",
      "          'vulnerability': 1,\n",
      "          'confusion': 1,\n",
      "          'thinking': 1,\n",
      "          'hes': 1,\n",
      "          'speed': 1,\n",
      "          'sandra': 1,\n",
      "          'bullock': 1,\n",
      "          'accent': 1,\n",
      "          'drive': 1,\n",
      "          'bus': 1,\n",
      "          'hardly': 1,\n",
      "          'contributes': 1,\n",
      "          'anything': 1,\n",
      "          'producers': 1,\n",
      "          'thought': 1,\n",
      "          'hey': 1,\n",
      "          'nlets': 1,\n",
      "          'rope': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nwell': 1,\n",
      "          'screen': 1,\n",
      "          'unfortunately': 1,\n",
      "          'either': 1,\n",
      "          'come': 1,\n",
      "          'always': 1,\n",
      "          'full': 1,\n",
      "          'load': 1,\n",
      "          'cigars': 1,\n",
      "          'cigar': 1,\n",
      "          'holder': 1,\n",
      "          'nits': 1,\n",
      "          'fault': 1,\n",
      "          'nonce': 1,\n",
      "          'take': 1,\n",
      "          'build': 1,\n",
      "          'nsomeone': 1,\n",
      "          'must': 1,\n",
      "          'convinced': 1,\n",
      "          'round': 1,\n",
      "          'cinema': 1,\n",
      "          'dollars': 1,\n",
      "          'best': 1,\n",
      "          'earned': 1,\n",
      "          'run': 1,\n",
      "          'headless': 1,\n",
      "          'chicken': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'good': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'wrongfully': 5,\n",
      "          'accused': 5,\n",
      "          'n': 4,\n",
      "          'proft': 4,\n",
      "          'gun': 3,\n",
      "          'movie': 3,\n",
      "          'however': 3,\n",
      "          'like': 3,\n",
      "          'nielsen': 2,\n",
      "          'man': 2,\n",
      "          'hysterical': 2,\n",
      "          'naked': 2,\n",
      "          'wavering': 2,\n",
      "          'spoof': 2,\n",
      "          'committed': 2,\n",
      "          'since': 2,\n",
      "          'nthe': 2,\n",
      "          'nielsens': 2,\n",
      "          'really': 2,\n",
      "          'needs': 2,\n",
      "          'instead': 2,\n",
      "          'harrison': 2,\n",
      "          'u': 2,\n",
      "          'youre': 2,\n",
      "          'sure': 2,\n",
      "          'stick': 2,\n",
      "          'colleague': 2,\n",
      "          'us': 1,\n",
      "          'think': 1,\n",
      "          'leslie': 1,\n",
      "          'bumbling': 1,\n",
      "          'hapless': 1,\n",
      "          'straight': 1,\n",
      "          'films': 1,\n",
      "          'crack': 1,\n",
      "          'immediate': 1,\n",
      "          'smile': 1,\n",
      "          'forgive': 1,\n",
      "          'whatever': 1,\n",
      "          'hes': 1,\n",
      "          'starring': 1,\n",
      "          'spoofs': 1,\n",
      "          'less': 1,\n",
      "          'forgivable': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'sendup': 1,\n",
      "          'question': 1,\n",
      "          'third': 1,\n",
      "          'parody': 1,\n",
      "          'last': 1,\n",
      "          'isnt': 1,\n",
      "          'quite': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'humorless': 1,\n",
      "          'dracula': 1,\n",
      "          'dead': 1,\n",
      "          'loving': 1,\n",
      "          'spy': 1,\n",
      "          'hard': 1,\n",
      "          'mighty': 1,\n",
      "          'good': 1,\n",
      "          'thing': 1,\n",
      "          'nnielsen': 1,\n",
      "          'still': 1,\n",
      "          'tiptop': 1,\n",
      "          'comedic': 1,\n",
      "          'form': 1,\n",
      "          'able': 1,\n",
      "          'ever': 1,\n",
      "          'deadpan': 1,\n",
      "          'way': 1,\n",
      "          'even': 1,\n",
      "          'horrible': 1,\n",
      "          'puns': 1,\n",
      "          'screenplay': 1,\n",
      "          'plays': 1,\n",
      "          'talents': 1,\n",
      "          'relying': 1,\n",
      "          'one': 1,\n",
      "          'soon': 1,\n",
      "          'meshes': 1,\n",
      "          'together': 1,\n",
      "          'premises': 1,\n",
      "          'fugitive': 1,\n",
      "          'patriot': 1,\n",
      "          'games': 1,\n",
      "          'casting': 1,\n",
      "          'always': 1,\n",
      "          'game': 1,\n",
      "          'star': 1,\n",
      "          'ryan': 1,\n",
      "          'get': 1,\n",
      "          'master': 1,\n",
      "          'violinist': 1,\n",
      "          'drawn': 1,\n",
      "          'affair': 1,\n",
      "          'married': 1,\n",
      "          'temptress': 1,\n",
      "          'kelly': 1,\n",
      "          'le': 1,\n",
      "          'brock': 1,\n",
      "          'nshe': 1,\n",
      "          'sets': 1,\n",
      "          'take': 1,\n",
      "          'rap': 1,\n",
      "          'murder': 1,\n",
      "          'husband': 1,\n",
      "          'michael': 1,\n",
      "          'york': 1,\n",
      "          'crime': 1,\n",
      "          'actually': 1,\n",
      "          'onearmed': 1,\n",
      "          'onelegged': 1,\n",
      "          'oneeyed': 1,\n",
      "          'aaron': 1,\n",
      "          'pearl': 1,\n",
      "          'nharrison': 1,\n",
      "          'arrested': 1,\n",
      "          'found': 1,\n",
      "          'guilty': 1,\n",
      "          'sentenced': 1,\n",
      "          'death': 1,\n",
      "          'escapes': 1,\n",
      "          'prison': 1,\n",
      "          'bus': 1,\n",
      "          'course': 1,\n",
      "          'pursued': 1,\n",
      "          'determined': 1,\n",
      "          'marshal': 1,\n",
      "          'named': 1,\n",
      "          'fergus': 1,\n",
      "          'falls': 1,\n",
      "          'richard': 1,\n",
      "          'crenna': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'riffing': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'already': 1,\n",
      "          'smirky': 1,\n",
      "          'oscarwinning': 1,\n",
      "          'role': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'mystery': 1,\n",
      "          'brunette': 1,\n",
      "          'melinda': 1,\n",
      "          'mcgraw': 1,\n",
      "          'assassination': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'secretary': 1,\n",
      "          'general': 1,\n",
      "          'matters': 1,\n",
      "          'gets': 1,\n",
      "          'assured': 1,\n",
      "          'start': 1,\n",
      "          'inconcert': 1,\n",
      "          'touted': 1,\n",
      "          'lord': 1,\n",
      "          'violin': 1,\n",
      "          'barechested': 1,\n",
      "          'posters': 1,\n",
      "          'pulling': 1,\n",
      "          'jimi': 1,\n",
      "          'hendrix': 1,\n",
      "          'musical': 1,\n",
      "          'instrument': 1,\n",
      "          'hundreds': 1,\n",
      "          'tuxedoclad': 1,\n",
      "          'mosh': 1,\n",
      "          'front': 1,\n",
      "          'stage': 1,\n",
      "          'nnice': 1,\n",
      "          'touch': 1,\n",
      "          'nmost': 1,\n",
      "          'scenes': 1,\n",
      "          'follow': 1,\n",
      "          'never': 1,\n",
      "          'top': 1,\n",
      "          'opener': 1,\n",
      "          'exceptions': 1,\n",
      "          'mentos': 1,\n",
      "          'baywatch': 1,\n",
      "          'goofs': 1,\n",
      "          'nmovie': 1,\n",
      "          'parodies': 1,\n",
      "          'crammed': 1,\n",
      "          'almostsubliminal': 1,\n",
      "          'rate': 1,\n",
      "          'empty': 1,\n",
      "          'nwhen': 1,\n",
      "          'giant': 1,\n",
      "          'snake': 1,\n",
      "          'lunges': 1,\n",
      "          'onto': 1,\n",
      "          'screen': 1,\n",
      "          'snatches': 1,\n",
      "          'cast': 1,\n",
      "          'member': 1,\n",
      "          'la': 1,\n",
      "          'anaconda': 1,\n",
      "          'baseball': 1,\n",
      "          'players': 1,\n",
      "          'disappear': 1,\n",
      "          'field': 1,\n",
      "          'dreams': 1,\n",
      "          'esque': 1,\n",
      "          'cornfield': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'laugh': 1,\n",
      "          'nother': 1,\n",
      "          'moments': 1,\n",
      "          'interlude': 1,\n",
      "          'fishing': 1,\n",
      "          'shop': 1,\n",
      "          'unfocused': 1,\n",
      "          'supposed': 1,\n",
      "          'laughing': 1,\n",
      "          'nthere': 1,\n",
      "          'seem': 1,\n",
      "          'cheap': 1,\n",
      "          'references': 1,\n",
      "          'frenzied': 1,\n",
      "          'sendups': 1,\n",
      "          'possible': 1,\n",
      "          'directorwriter': 1,\n",
      "          'pat': 1,\n",
      "          'bombarding': 1,\n",
      "          'viewer': 1,\n",
      "          'careless': 1,\n",
      "          'mixture': 1,\n",
      "          'two': 1,\n",
      "          'guarantees': 1,\n",
      "          'something': 1,\n",
      "          'nand': 1,\n",
      "          'sticks': 1,\n",
      "          'well': 1,\n",
      "          'particularly': 1,\n",
      "          'jabs': 1,\n",
      "          'genre': 1,\n",
      "          'conventions': 1,\n",
      "          'stylized': 1,\n",
      "          'flashbacks': 1,\n",
      "          'hardboiled': 1,\n",
      "          'dialogue': 1,\n",
      "          'collaborated': 1,\n",
      "          'great': 1,\n",
      "          'bits': 1,\n",
      "          'ontarget': 1,\n",
      "          'allow': 1,\n",
      "          'remember': 1,\n",
      "          'almosthalfwaythere': 1,\n",
      "          'lamebrained': 1,\n",
      "          'failure': 1,\n",
      "          'might': 1,\n",
      "          'cursed': 1,\n",
      "          'begin': 1,\n",
      "          'opening': 1,\n",
      "          'fast': 1,\n",
      "          'heels': 1,\n",
      "          'mafia': 1,\n",
      "          'jim': 1,\n",
      "          'abrahams': 1,\n",
      "          'baseketball': 1,\n",
      "          'david': 1,\n",
      "          'zucker': 1,\n",
      "          'strong': 1,\n",
      "          'possibility': 1,\n",
      "          'nobody': 1,\n",
      "          'going': 1,\n",
      "          'accusing': 1,\n",
      "          'funniest': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'snakes': 6,\n",
      "          'anaconda': 5,\n",
      "          'one': 5,\n",
      "          'movie': 5,\n",
      "          'worth': 4,\n",
      "          'would': 4,\n",
      "          'ni': 4,\n",
      "          'guy': 4,\n",
      "          'n': 4,\n",
      "          'could': 4,\n",
      "          'evil': 4,\n",
      "          'even': 3,\n",
      "          'friend': 3,\n",
      "          'snake': 3,\n",
      "          'anacondas': 3,\n",
      "          'people': 3,\n",
      "          'cant': 3,\n",
      "          'character': 3,\n",
      "          'trying': 3,\n",
      "          'plot': 3,\n",
      "          'dude': 3,\n",
      "          'dont': 2,\n",
      "          'nits': 2,\n",
      "          'rydains': 2,\n",
      "          'come': 2,\n",
      "          'nas': 2,\n",
      "          'tell': 2,\n",
      "          'human': 2,\n",
      "          'kill': 2,\n",
      "          'eat': 2,\n",
      "          'like': 2,\n",
      "          'everybody': 2,\n",
      "          'funny': 2,\n",
      "          'nthat': 2,\n",
      "          'nthe': 2,\n",
      "          'writers': 2,\n",
      "          'scene': 2,\n",
      "          'young': 2,\n",
      "          'im': 2,\n",
      "          'work': 2,\n",
      "          'crap': 2,\n",
      "          'comebacks': 2,\n",
      "          'go': 2,\n",
      "          'find': 2,\n",
      "          'nthis': 2,\n",
      "          'get': 2,\n",
      "          'harrier': 2,\n",
      "          'please': 1,\n",
      "          'mind': 1,\n",
      "          'windbag': 1,\n",
      "          'letting': 1,\n",
      "          'bit': 1,\n",
      "          'steam': 1,\n",
      "          'njust': 1,\n",
      "          'want': 1,\n",
      "          'warn': 1,\n",
      "          'yall': 1,\n",
      "          'waste': 1,\n",
      "          'hardearned': 1,\n",
      "          '99cent': 1,\n",
      "          'video': 1,\n",
      "          'rental': 1,\n",
      "          'ndont': 1,\n",
      "          'listen': 1,\n",
      "          'ebert': 1,\n",
      "          'clue': 1,\n",
      "          'hes': 1,\n",
      "          'talking': 1,\n",
      "          'nbtw': 1,\n",
      "          'accompanied': 1,\n",
      "          'required': 1,\n",
      "          'watch': 1,\n",
      "          'assignment': 1,\n",
      "          'reviews': 1,\n",
      "          'movies': 1,\n",
      "          'local': 1,\n",
      "          'paper': 1,\n",
      "          'nnow': 1,\n",
      "          'ill': 1,\n",
      "          'actually': 1,\n",
      "          'back': 1,\n",
      "          'huffing': 1,\n",
      "          'puffing': 1,\n",
      "          'nhere': 1,\n",
      "          'goes': 1,\n",
      "          'nmovie': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'wait': 1,\n",
      "          'usa': 1,\n",
      "          'night': 1,\n",
      "          'neven': 1,\n",
      "          'doubt': 1,\n",
      "          'price': 1,\n",
      "          'jolt': 1,\n",
      "          'help': 1,\n",
      "          'stay': 1,\n",
      "          'late': 1,\n",
      "          'nwhy': 1,\n",
      "          'hate': 1,\n",
      "          'nlet': 1,\n",
      "          'count': 1,\n",
      "          'ways': 1,\n",
      "          'nfirst': 1,\n",
      "          'gets': 1,\n",
      "          'way': 1,\n",
      "          'many': 1,\n",
      "          'facts': 1,\n",
      "          'wrong': 1,\n",
      "          'ophiophile': 1,\n",
      "          'lover': 1,\n",
      "          'never': 1,\n",
      "          'reach': 1,\n",
      "          'length': 1,\n",
      "          '40': 1,\n",
      "          'feet': 1,\n",
      "          'b': 1,\n",
      "          'theyre': 1,\n",
      "          'scared': 1,\n",
      "          'c': 1,\n",
      "          'cases': 1,\n",
      "          'eating': 1,\n",
      "          'adult': 1,\n",
      "          'humans': 1,\n",
      "          'extremely': 1,\n",
      "          'rare': 1,\n",
      "          'shoulders': 1,\n",
      "          'wide': 1,\n",
      "          'fit': 1,\n",
      "          'mouth': 1,\n",
      "          'constrictor': 1,\n",
      "          'outrun': 1,\n",
      "          'trouble': 1,\n",
      "          'especially': 1,\n",
      "          'heavy': 1,\n",
      "          'ones': 1,\n",
      "          'e': 1,\n",
      "          'need': 1,\n",
      "          'least': 1,\n",
      "          '6': 1,\n",
      "          'months': 1,\n",
      "          'sitting': 1,\n",
      "          'butt': 1,\n",
      "          'digest': 1,\n",
      "          'huge': 1,\n",
      "          'meal': 1,\n",
      "          'therefore': 1,\n",
      "          'couldnt': 1,\n",
      "          'run': 1,\n",
      "          'around': 1,\n",
      "          'gobbling': 1,\n",
      "          'else': 1,\n",
      "          'cast': 1,\n",
      "          'f': 1,\n",
      "          'vocal': 1,\n",
      "          'cords': 1,\n",
      "          'make': 1,\n",
      "          'squealing': 1,\n",
      "          'noises': 1,\n",
      "          'nwhew': 1,\n",
      "          'prepared': 1,\n",
      "          'suspend': 1,\n",
      "          'reality': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'suspenseful': 1,\n",
      "          'exciting': 1,\n",
      "          'watching': 1,\n",
      "          'paint': 1,\n",
      "          'peel': 1,\n",
      "          'nmy': 1,\n",
      "          'successfully': 1,\n",
      "          'predicted': 1,\n",
      "          'live': 1,\n",
      "          'end': 1,\n",
      "          'nanybody': 1,\n",
      "          'bad': 1,\n",
      "          'going': 1,\n",
      "          'die': 1,\n",
      "          'eventually': 1,\n",
      "          'pity': 1,\n",
      "          'reasons': 1,\n",
      "          'didnt': 1,\n",
      "          'give': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'nhe': 1,\n",
      "          'likable': 1,\n",
      "          'nwho': 1,\n",
      "          'wouldnt': 1,\n",
      "          'enjoy': 1,\n",
      "          'somebody': 1,\n",
      "          'looks': 1,\n",
      "          'deranged': 1,\n",
      "          'walt': 1,\n",
      "          'whitman': 1,\n",
      "          'nanaconda': 1,\n",
      "          'cute': 1,\n",
      "          'moments': 1,\n",
      "          'arguments': 1,\n",
      "          'ice': 1,\n",
      "          'cubes': 1,\n",
      "          'british': 1,\n",
      "          'instance': 1,\n",
      "          'nhowever': 1,\n",
      "          'small': 1,\n",
      "          'flashes': 1,\n",
      "          'wit': 1,\n",
      "          'hour': 1,\n",
      "          'twentyeight': 1,\n",
      "          'minutes': 1,\n",
      "          'boring': 1,\n",
      "          'schlock': 1,\n",
      "          'blew': 1,\n",
      "          'multitude': 1,\n",
      "          'opportunities': 1,\n",
      "          'insert': 1,\n",
      "          'lines': 1,\n",
      "          'quite': 1,\n",
      "          'disappointed': 1,\n",
      "          'tells': 1,\n",
      "          'lady': 1,\n",
      "          'jungle': 1,\n",
      "          'makes': 1,\n",
      "          'horny': 1,\n",
      "          'ndid': 1,\n",
      "          'retort': 1,\n",
      "          'clever': 1,\n",
      "          'egowithering': 1,\n",
      "          'comeback': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'ngee': 1,\n",
      "          'thats': 1,\n",
      "          'dumber': 1,\n",
      "          'nshe': 1,\n",
      "          'told': 1,\n",
      "          'knothole': 1,\n",
      "          'something': 1,\n",
      "          'p': 1,\n",
      "          'admit': 1,\n",
      "          'surprised': 1,\n",
      "          'outcome': 1,\n",
      "          'hint': 1,\n",
      "          'involves': 1,\n",
      "          'miss': 1,\n",
      "          'still': 1,\n",
      "          'basically': 1,\n",
      "          'excuse': 1,\n",
      "          'boatload': 1,\n",
      "          'dangerous': 1,\n",
      "          'territory': 1,\n",
      "          'snarfed': 1,\n",
      "          'ridiculous': 1,\n",
      "          'computergenerated': 1,\n",
      "          'eyes': 1,\n",
      "          'fangs': 1,\n",
      "          'vipers': 1,\n",
      "          'fasterthangravity': 1,\n",
      "          'downward': 1,\n",
      "          'acceleration': 1,\n",
      "          'jet': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'instant': 1,\n",
      "          'digestion': 1,\n",
      "          'snarf': 1,\n",
      "          'countless': 1,\n",
      "          'victims': 1,\n",
      "          'tried': 1,\n",
      "          'throw': 1,\n",
      "          'sort': 1,\n",
      "          'twist': 1,\n",
      "          'call': 1,\n",
      "          'knot': 1,\n",
      "          'made': 1,\n",
      "          'sense': 1,\n",
      "          'sick': 1,\n",
      "          'guys': 1,\n",
      "          'gfriend': 1,\n",
      "          'kisses': 1,\n",
      "          'suddenly': 1,\n",
      "          'hates': 1,\n",
      "          'said': 1,\n",
      "          'starts': 1,\n",
      "          'clear': 1,\n",
      "          'understandable': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'someone': 1,\n",
      "          'explain': 1,\n",
      "          'id': 1,\n",
      "          'grateful': 1,\n",
      "          'nall': 1,\n",
      "          'oldguy': 1,\n",
      "          'double': 1,\n",
      "          'agents': 1,\n",
      "          'looked': 1,\n",
      "          'wasnt': 1,\n",
      "          'inspired': 1,\n",
      "          'acting': 1,\n",
      "          'save': 1,\n",
      "          'blame': 1,\n",
      "          'actors': 1,\n",
      "          'though': 1,\n",
      "          'fault': 1,\n",
      "          'cruddy': 1,\n",
      "          'script': 1,\n",
      "          'concludes': 1,\n",
      "          'diatribe': 1,\n",
      "          'shameless': 1,\n",
      "          'exploitation': 1,\n",
      "          'perpetuation': 1,\n",
      "          'public': 1,\n",
      "          'fear': 1,\n",
      "          'ncomments': 1,\n",
      "          'flames': 1,\n",
      "          'anyone': 1,\n",
      "          'nrydain': 1,\n",
      "          'atomic': 1,\n",
      "          'cheese': 1,\n",
      "          'fresh': 1,\n",
      "          'chernobyl': 1,\n",
      "          'dairies': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'nhe': 6,\n",
      "          'film': 6,\n",
      "          'also': 5,\n",
      "          '810': 4,\n",
      "          '510': 4,\n",
      "          'mrs': 4,\n",
      "          'know': 3,\n",
      "          'last': 3,\n",
      "          'summer': 3,\n",
      "          '7': 3,\n",
      "          'first': 3,\n",
      "          'based': 3,\n",
      "          'script': 3,\n",
      "          'go': 3,\n",
      "          'teacher': 3,\n",
      "          'nthis': 3,\n",
      "          'williamson': 3,\n",
      "          'holmes': 3,\n",
      "          'character': 3,\n",
      "          'kevin': 3,\n",
      "          'tvs': 3,\n",
      "          'written': 2,\n",
      "          'man': 2,\n",
      "          'created': 2,\n",
      "          'tv': 2,\n",
      "          'dawsons': 2,\n",
      "          'creek': 2,\n",
      "          'said': 2,\n",
      "          'watson': 2,\n",
      "          'tingle': 2,\n",
      "          'fact': 2,\n",
      "          'onedimensional': 2,\n",
      "          'characters': 2,\n",
      "          'thrills': 2,\n",
      "          'ass': 2,\n",
      "          'played': 2,\n",
      "          'unfortunately': 2,\n",
      "          'exorcist': 2,\n",
      "          'marisa': 2,\n",
      "          'coughlan': 2,\n",
      "          'poor': 2,\n",
      "          'mans': 2,\n",
      "          'version': 2,\n",
      "          'provided': 2,\n",
      "          'anything': 2,\n",
      "          'williamsons': 2,\n",
      "          'mirren': 2,\n",
      "          'see': 2,\n",
      "          'actor': 2,\n",
      "          'killing': 2,\n",
      "          'deemed': 1,\n",
      "          'one': 1,\n",
      "          'hottest': 1,\n",
      "          'writers': 1,\n",
      "          'hollywood': 1,\n",
      "          'wrote': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'screenplay': 1,\n",
      "          'scream': 1,\n",
      "          'added': 1,\n",
      "          'successful': 1,\n",
      "          'nscript': 1,\n",
      "          'mix': 1,\n",
      "          'popular': 1,\n",
      "          'series': 1,\n",
      "          'nso': 1,\n",
      "          'asked': 1,\n",
      "          'direct': 1,\n",
      "          'ever': 1,\n",
      "          'everyone': 1,\n",
      "          'grandma': 1,\n",
      "          'sure': 1,\n",
      "          'nuhhm': 1,\n",
      "          'question': 1,\n",
      "          'anyone': 1,\n",
      "          'bother': 1,\n",
      "          'reading': 1,\n",
      "          'stupid': 1,\n",
      "          'nplot': 1,\n",
      "          'ace': 1,\n",
      "          'student': 1,\n",
      "          'leigh': 1,\n",
      "          'ann': 1,\n",
      "          'mistakenly': 1,\n",
      "          'caught': 1,\n",
      "          'cheating': 1,\n",
      "          'papers': 1,\n",
      "          'bitchiest': 1,\n",
      "          'west': 1,\n",
      "          'set': 1,\n",
      "          'lose': 1,\n",
      "          'scholarship': 1,\n",
      "          'college': 1,\n",
      "          'nwhen': 1,\n",
      "          'friends': 1,\n",
      "          'visit': 1,\n",
      "          'home': 1,\n",
      "          'order': 1,\n",
      "          'explain': 1,\n",
      "          'side': 1,\n",
      "          'story': 1,\n",
      "          'end': 1,\n",
      "          'tying': 1,\n",
      "          'slowly': 1,\n",
      "          'trying': 1,\n",
      "          'talk': 1,\n",
      "          'sense': 1,\n",
      "          'hardheaded': 1,\n",
      "          'woman': 1,\n",
      "          'ncritique': 1,\n",
      "          'much': 1,\n",
      "          'bad': 1,\n",
      "          'sucks': 1,\n",
      "          'chockfull': 1,\n",
      "          'contains': 1,\n",
      "          'actual': 1,\n",
      "          'humor': 1,\n",
      "          'able': 1,\n",
      "          'zone': 1,\n",
      "          'zero': 1,\n",
      "          'tension': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'size': 1,\n",
      "          'big': 1,\n",
      "          'lame': 1,\n",
      "          'pop': 1,\n",
      "          'tunes': 1,\n",
      "          'mask': 1,\n",
      "          'nothing': 1,\n",
      "          'going': 1,\n",
      "          'molly': 1,\n",
      "          'ringwald': 1,\n",
      "          'vivica': 1,\n",
      "          'fox': 1,\n",
      "          'lesley': 1,\n",
      "          'anne': 1,\n",
      "          'warren': 1,\n",
      "          'tossed': 1,\n",
      "          'away': 1,\n",
      "          'throwaway': 1,\n",
      "          'roles': 1,\n",
      "          'ni': 1,\n",
      "          'primed': 1,\n",
      "          'interesting': 1,\n",
      "          'premise': 1,\n",
      "          'thinking': 1,\n",
      "          'misery': 1,\n",
      "          '9': 1,\n",
      "          '5': 1,\n",
      "          'went': 1,\n",
      "          'nowhere': 1,\n",
      "          'bright': 1,\n",
      "          'foundation': 1,\n",
      "          'making': 1,\n",
      "          'references': 1,\n",
      "          'dr': 1,\n",
      "          'nzhivago': 1,\n",
      "          'doubt': 1,\n",
      "          'many': 1,\n",
      "          'target': 1,\n",
      "          'market': 1,\n",
      "          'appreciate': 1,\n",
      "          'forgot': 1,\n",
      "          'suspense': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'decisions': 1,\n",
      "          'unbelievable': 1,\n",
      "          'motivations': 1,\n",
      "          'simply': 1,\n",
      "          'boring': 1,\n",
      "          'us': 1,\n",
      "          'trite': 1,\n",
      "          'dialogue': 1,\n",
      "          'nsure': 1,\n",
      "          'katie': 1,\n",
      "          'cute': 1,\n",
      "          'costar': 1,\n",
      "          'reasonably': 1,\n",
      "          'amusing': 1,\n",
      "          'impression': 1,\n",
      "          'worth': 1,\n",
      "          'two': 1,\n",
      "          'points': 1,\n",
      "          'three': 1,\n",
      "          'ten': 1,\n",
      "          'forgive': 1,\n",
      "          'biggest': 1,\n",
      "          'rival': 1,\n",
      "          'tingles': 1,\n",
      "          'complete': 1,\n",
      "          'unprofessionalism': 1,\n",
      "          'let': 1,\n",
      "          'others': 1,\n",
      "          'around': 1,\n",
      "          'teachers': 1,\n",
      "          'allowed': 1,\n",
      "          'behave': 1,\n",
      "          'way': 1,\n",
      "          'nowadays': 1,\n",
      "          'transparent': 1,\n",
      "          'romance': 1,\n",
      "          'longhaired': 1,\n",
      "          'dude': 1,\n",
      "          'hired': 1,\n",
      "          'skeet': 1,\n",
      "          'ulrich': 1,\n",
      "          'johnny': 1,\n",
      "          'depp': 1,\n",
      "          'nall': 1,\n",
      "          'laughable': 1,\n",
      "          'insight': 1,\n",
      "          'demonstrated': 1,\n",
      "          'genuine': 1,\n",
      "          'lack': 1,\n",
      "          'directorial': 1,\n",
      "          'skills': 1,\n",
      "          'alongside': 1,\n",
      "          'juvenile': 1,\n",
      "          'helen': 1,\n",
      "          'great': 1,\n",
      "          'role': 1,\n",
      "          'chew': 1,\n",
      "          'forgetting': 1,\n",
      "          'give': 1,\n",
      "          'believability': 1,\n",
      "          'humanity': 1,\n",
      "          'capacity': 1,\n",
      "          'comprehend': 1,\n",
      "          'nno': 1,\n",
      "          'hip': 1,\n",
      "          'lines': 1,\n",
      "          'cheap': 1,\n",
      "          'dull': 1,\n",
      "          'time': 1,\n",
      "          'theater': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'funny': 1,\n",
      "          'teenage': 1,\n",
      "          'detroit': 1,\n",
      "          'rock': 1,\n",
      "          'city': 1,\n",
      "          'thank': 1,\n",
      "          'drunken': 1,\n",
      "          'sorry': 1,\n",
      "          'morning': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'stars': 1,\n",
      "          'father': 1,\n",
      "          'fisherman': 1,\n",
      "          'nkevin': 1,\n",
      "          'used': 1,\n",
      "          'knowledge': 1,\n",
      "          'fishing': 1,\n",
      "          'hooks': 1,\n",
      "          'winches': 1,\n",
      "          'creating': 1,\n",
      "          'killer': 1,\n",
      "          'huge': 1,\n",
      "          'fan': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'coincidentally': 1,\n",
      "          'dawson': 1,\n",
      "          'leery': 1,\n",
      "          'show': 1,\n",
      "          'aspiring': 1,\n",
      "          'nin': 1,\n",
      "          'even': 1,\n",
      "          'landed': 1,\n",
      "          'bit': 1,\n",
      "          'part': 1,\n",
      "          'another': 1,\n",
      "          'world': 1,\n",
      "          'nalso': 1,\n",
      "          'gone': 1,\n",
      "          'record': 1,\n",
      "          'say': 1,\n",
      "          'unsupportive': 1,\n",
      "          'english': 1,\n",
      "          'told': 1,\n",
      "          'would': 1,\n",
      "          'never': 1,\n",
      "          'amount': 1,\n",
      "          'inspiration': 1,\n",
      "          'loosely': 1,\n",
      "          'book': 1,\n",
      "          'mr': 1,\n",
      "          'griffin': 1,\n",
      "          'writer': 1,\n",
      "          'nlois': 1,\n",
      "          'duncan': 1,\n",
      "          'come': 1,\n",
      "          'gay': 1,\n",
      "          'nhelen': 1,\n",
      "          'born': 1,\n",
      "          'london': 1,\n",
      "          'england': 1,\n",
      "          'name': 1,\n",
      "          'ilynea': 1,\n",
      "          'lydia': 1,\n",
      "          'mironoff': 1,\n",
      "          'nshe': 1,\n",
      "          'married': 1,\n",
      "          'director': 1,\n",
      "          'taylor': 1,\n",
      "          'hackford': 1,\n",
      "          'whose': 1,\n",
      "          'works': 1,\n",
      "          'include': 1,\n",
      "          'devils': 1,\n",
      "          'advocate': 1,\n",
      "          'officer': 1,\n",
      "          'gentleman': 1,\n",
      "          '8': 1,\n",
      "          'originally': 1,\n",
      "          'titled': 1,\n",
      "          'ntingle': 1,\n",
      "          'changed': 1,\n",
      "          'columbine': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'shooting': 1,\n",
      "          'incident': 1,\n",
      "          'nactress': 1,\n",
      "          'star': 1,\n",
      "          'next': 1,\n",
      "          'project': 1,\n",
      "          'called': 1,\n",
      "          'wasteland': 1,\n",
      "          'barry': 1,\n",
      "          'full': 1,\n",
      "          'feature': 1,\n",
      "          'seth': 1,\n",
      "          'malibu': 1,\n",
      "          'shores': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'carrie': 4,\n",
      "          'n': 4,\n",
      "          'sex': 3,\n",
      "          'little': 3,\n",
      "          'nas': 3,\n",
      "          'isnt': 3,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'school': 2,\n",
      "          'girls': 2,\n",
      "          'boys': 2,\n",
      "          'black': 2,\n",
      "          'like': 2,\n",
      "          'rage': 2,\n",
      "          '2': 2,\n",
      "          'rest': 2,\n",
      "          'rachel': 2,\n",
      "          'horror': 2,\n",
      "          'asks': 2,\n",
      "          'gets': 2,\n",
      "          'girlfriend': 2,\n",
      "          'would': 2,\n",
      "          'neven': 2,\n",
      "          'teenagers': 2,\n",
      "          'typical': 1,\n",
      "          'cinematic': 1,\n",
      "          'high': 1,\n",
      "          'football': 1,\n",
      "          'jocks': 1,\n",
      "          'dump': 1,\n",
      "          'scores': 1,\n",
      "          'dutifully': 1,\n",
      "          'recorded': 1,\n",
      "          'books': 1,\n",
      "          'sexual': 1,\n",
      "          'acts': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'guys': 1,\n",
      "          'hang': 1,\n",
      "          'nearby': 1,\n",
      "          'guzzling': 1,\n",
      "          'beer': 1,\n",
      "          'grunting': 1,\n",
      "          'pigs': 1,\n",
      "          'nin': 1,\n",
      "          'robert': 1,\n",
      "          'mandels': 1,\n",
      "          'terminally': 1,\n",
      "          'bland': 1,\n",
      "          'sequel': 1,\n",
      "          'single': 1,\n",
      "          'original': 1,\n",
      "          'moment': 1,\n",
      "          'nonly': 1,\n",
      "          'amy': 1,\n",
      "          'irving': 1,\n",
      "          'returns': 1,\n",
      "          'talent': 1,\n",
      "          'sequels': 1,\n",
      "          'cast': 1,\n",
      "          'impossible': 1,\n",
      "          'determine': 1,\n",
      "          'given': 1,\n",
      "          'stupefying': 1,\n",
      "          'mediocrity': 1,\n",
      "          'rafael': 1,\n",
      "          'moreus': 1,\n",
      "          'script': 1,\n",
      "          'storys': 1,\n",
      "          'lead': 1,\n",
      "          'emily': 1,\n",
      "          'bergl': 1,\n",
      "          'gives': 1,\n",
      "          'least': 1,\n",
      "          'scary': 1,\n",
      "          'performances': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'exactly': 1,\n",
      "          'fault': 1,\n",
      "          'director': 1,\n",
      "          'actors': 1,\n",
      "          'precisely': 1,\n",
      "          'nsporadically': 1,\n",
      "          'lame': 1,\n",
      "          'lifeless': 1,\n",
      "          'cause': 1,\n",
      "          'lockers': 1,\n",
      "          'windows': 1,\n",
      "          'fly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'open': 1,\n",
      "          'generally': 1,\n",
      "          'mopes': 1,\n",
      "          'around': 1,\n",
      "          'looking': 1,\n",
      "          'victim': 1,\n",
      "          'nher': 1,\n",
      "          'fellow': 1,\n",
      "          'students': 1,\n",
      "          'delight': 1,\n",
      "          'tormenting': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'get': 1,\n",
      "          'revenge': 1,\n",
      "          'obligatory': 1,\n",
      "          'ending': 1,\n",
      "          'bloodbath': 1,\n",
      "          'decapitate': 1,\n",
      "          'castrate': 1,\n",
      "          'crush': 1,\n",
      "          'burning': 1,\n",
      "          'timbers': 1,\n",
      "          'marks': 1,\n",
      "          'time': 1,\n",
      "          'big': 1,\n",
      "          'finale': 1,\n",
      "          'throws': 1,\n",
      "          'repugnant': 1,\n",
      "          'scenes': 1,\n",
      "          'hoping': 1,\n",
      "          'turn': 1,\n",
      "          'audiences': 1,\n",
      "          'stomachs': 1,\n",
      "          'nrachels': 1,\n",
      "          'commits': 1,\n",
      "          'horrible': 1,\n",
      "          'realistic': 1,\n",
      "          'suicide': 1,\n",
      "          'boy': 1,\n",
      "          'made': 1,\n",
      "          'love': 1,\n",
      "          'night': 1,\n",
      "          'spurns': 1,\n",
      "          'major': 1,\n",
      "          'points': 1,\n",
      "          'book': 1,\n",
      "          'buddies': 1,\n",
      "          'say': 1,\n",
      "          'gotten': 1,\n",
      "          'death': 1,\n",
      "          'helpless': 1,\n",
      "          'puppy': 1,\n",
      "          'run': 1,\n",
      "          'see': 1,\n",
      "          'poor': 1,\n",
      "          'body': 1,\n",
      "          'flipping': 1,\n",
      "          'truck': 1,\n",
      "          'completely': 1,\n",
      "          'blas': 1,\n",
      "          'doesnt': 1,\n",
      "          'offend': 1,\n",
      "          'girl': 1,\n",
      "          'offed': 1,\n",
      "          'yesterday': 1,\n",
      "          'kids': 1,\n",
      "          'conscience': 1,\n",
      "          'nresponds': 1,\n",
      "          'nonplussed': 1,\n",
      "          'wasnt': 1,\n",
      "          'anybody': 1,\n",
      "          'nremarkably': 1,\n",
      "          'devoid': 1,\n",
      "          'energy': 1,\n",
      "          'especially': 1,\n",
      "          'flick': 1,\n",
      "          'makes': 1,\n",
      "          'yearn': 1,\n",
      "          'fast': 1,\n",
      "          'forward': 1,\n",
      "          'button': 1,\n",
      "          'theaters': 1,\n",
      "          'armrest': 1,\n",
      "          'nwith': 1,\n",
      "          'material': 1,\n",
      "          'bad': 1,\n",
      "          'films': 1,\n",
      "          'hope': 1,\n",
      "          'go': 1,\n",
      "          'parody': 1,\n",
      "          'smart': 1,\n",
      "          'enough': 1,\n",
      "          'realize': 1,\n",
      "          'mandatory': 1,\n",
      "          'epilogue': 1,\n",
      "          'pointless': 1,\n",
      "          'predictable': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '45': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'graphic': 1,\n",
      "          'violence': 1,\n",
      "          'teen': 1,\n",
      "          'alcohol': 1,\n",
      "          'abuse': 1,\n",
      "          'nudity': 1,\n",
      "          'profanity': 1,\n",
      "          'acceptable': 1,\n",
      "          'older': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'nthere': 3,\n",
      "          'one': 2,\n",
      "          'hour': 2,\n",
      "          'aliens': 2,\n",
      "          'nthis': 2,\n",
      "          'scare': 2,\n",
      "          'camera': 2,\n",
      "          'crew': 2,\n",
      "          'new': 2,\n",
      "          'work': 2,\n",
      "          'man': 1,\n",
      "          'wierd': 1,\n",
      "          'nsimilar': 1,\n",
      "          'conspiracy': 1,\n",
      "          'theory': 1,\n",
      "          'couldnt': 1,\n",
      "          'decide': 1,\n",
      "          'genre': 1,\n",
      "          'first': 1,\n",
      "          'standard': 1,\n",
      "          'stock': 1,\n",
      "          'clone': 1,\n",
      "          'nicely': 1,\n",
      "          'created': 1,\n",
      "          'eerie': 1,\n",
      "          'atmosphere': 1,\n",
      "          'ship': 1,\n",
      "          'last': 1,\n",
      "          'half': 1,\n",
      "          'makers': 1,\n",
      "          'blew': 1,\n",
      "          'script': 1,\n",
      "          'airlock': 1,\n",
      "          'decided': 1,\n",
      "          'screw': 1,\n",
      "          'lets': 1,\n",
      "          'kill': 1,\n",
      "          'everybody': 1,\n",
      "          'nfrom': 1,\n",
      "          'forget': 1,\n",
      "          'scifi': 1,\n",
      "          'nmovie': 1,\n",
      "          'becomes': 1,\n",
      "          '100': 1,\n",
      "          'horror': 1,\n",
      "          'nwhat': 1,\n",
      "          'really': 1,\n",
      "          'dissappointed': 1,\n",
      "          'tried': 1,\n",
      "          'entirely': 1,\n",
      "          'wrong': 1,\n",
      "          'way': 1,\n",
      "          'ninstead': 1,\n",
      "          'using': 1,\n",
      "          'clever': 1,\n",
      "          'tricks': 1,\n",
      "          'trying': 1,\n",
      "          'build': 1,\n",
      "          'uses': 1,\n",
      "          'loud': 1,\n",
      "          'noises': 1,\n",
      "          'sudden': 1,\n",
      "          'shifts': 1,\n",
      "          'short': 1,\n",
      "          'quick': 1,\n",
      "          'bursts': 1,\n",
      "          'gore': 1,\n",
      "          'yawn': 1,\n",
      "          'everyones': 1,\n",
      "          'nseen': 1,\n",
      "          'knows': 1,\n",
      "          'expect': 1,\n",
      "          'thing': 1,\n",
      "          'done': 1,\n",
      "          'well': 1,\n",
      "          'lead': 1,\n",
      "          'finding': 1,\n",
      "          'happened': 1,\n",
      "          'previous': 1,\n",
      "          'skeletons': 1,\n",
      "          'lying': 1,\n",
      "          'around': 1,\n",
      "          'mangled': 1,\n",
      "          'mashed': 1,\n",
      "          'nthen': 1,\n",
      "          'finally': 1,\n",
      "          'painfully': 1,\n",
      "          'restored': 1,\n",
      "          'views': 1,\n",
      "          'video': 1,\n",
      "          'acting': 1,\n",
      "          'isnt': 1,\n",
      "          'bad': 1,\n",
      "          'considering': 1,\n",
      "          'actors': 1,\n",
      "          'anyway': 1,\n",
      "          'complex': 1,\n",
      "          'interesting': 1,\n",
      "          'dialogue': 1,\n",
      "          'speak': 1,\n",
      "          'nice': 1,\n",
      "          'camerawork': 1,\n",
      "          'certain': 1,\n",
      "          'sequences': 1,\n",
      "          'though': 1,\n",
      "          'like': 1,\n",
      "          'hull': 1,\n",
      "          'near': 1,\n",
      "          'bridge': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'breached': 1,\n",
      "          'pans': 1,\n",
      "          'back': 1,\n",
      "          'follow': 1,\n",
      "          'specific': 1,\n",
      "          'objects': 1,\n",
      "          'bounce': 1,\n",
      "          'across': 1,\n",
      "          'deck': 1,\n",
      "          'sucked': 1,\n",
      "          'space': 1,\n",
      "          'could': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'nit': 1,\n",
      "          'good': 1,\n",
      "          'experienced': 1,\n",
      "          'cast': 1,\n",
      "          'deserved': 1,\n",
      "          'nothing': 1,\n",
      "          'us': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'hellraiser': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'king': 19,\n",
      "          'film': 7,\n",
      "          'nthe': 6,\n",
      "          'etc': 6,\n",
      "          'anna': 5,\n",
      "          'animated': 4,\n",
      "          'would': 4,\n",
      "          'worst': 4,\n",
      "          'movie': 4,\n",
      "          'richardson': 3,\n",
      "          'kings': 3,\n",
      "          'children': 3,\n",
      "          'nnot': 3,\n",
      "          'even': 3,\n",
      "          'could': 3,\n",
      "          'written': 3,\n",
      "          'play': 3,\n",
      "          'dialogue': 3,\n",
      "          'personality': 3,\n",
      "          'classic': 2,\n",
      "          'miranda': 2,\n",
      "          'saim': 2,\n",
      "          'vidnovic': 2,\n",
      "          'prime': 2,\n",
      "          'pages': 2,\n",
      "          'ni': 2,\n",
      "          'take': 2,\n",
      "          'every': 2,\n",
      "          'screenplay': 2,\n",
      "          'oscar': 2,\n",
      "          'within': 2,\n",
      "          'time': 2,\n",
      "          'bit': 2,\n",
      "          'terrible': 2,\n",
      "          'whole': 2,\n",
      "          'songs': 2,\n",
      "          'song': 2,\n",
      "          'used': 2,\n",
      "          'shows': 2,\n",
      "          'never': 2,\n",
      "          'dont': 2,\n",
      "          'voices': 2,\n",
      "          'completely': 2,\n",
      "          'change': 2,\n",
      "          'supposed': 2,\n",
      "          'share': 2,\n",
      "          'well': 2,\n",
      "          'hate': 2,\n",
      "          'films': 2,\n",
      "          'animation': 2,\n",
      "          'among': 2,\n",
      "          'warner': 1,\n",
      "          'brothers': 1,\n",
      "          'musical': 1,\n",
      "          'feature': 1,\n",
      "          'recycles': 1,\n",
      "          'story': 1,\n",
      "          'woman': 1,\n",
      "          'challenges': 1,\n",
      "          'heart': 1,\n",
      "          'obvious': 1,\n",
      "          'results': 1,\n",
      "          'nwhen': 1,\n",
      "          'british': 1,\n",
      "          'schoolteacher': 1,\n",
      "          'travels': 1,\n",
      "          'educate': 1,\n",
      "          'martin': 1,\n",
      "          'learns': 1,\n",
      "          'treating': 1,\n",
      "          'people': 1,\n",
      "          'unfairly': 1,\n",
      "          'must': 1,\n",
      "          'say': 1,\n",
      "          'something': 1,\n",
      "          'greedy': 1,\n",
      "          'ruler': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'minister': 1,\n",
      "          'ian': 1,\n",
      "          'stereotypical': 1,\n",
      "          'villain': 1,\n",
      "          'plots': 1,\n",
      "          'overthrow': 1,\n",
      "          'taking': 1,\n",
      "          'throne': 1,\n",
      "          'last': 1,\n",
      "          'predictable': 1,\n",
      "          'main': 1,\n",
      "          'subplot': 1,\n",
      "          'deals': 1,\n",
      "          'son': 1,\n",
      "          'allen': 1,\n",
      "          'hong': 1,\n",
      "          'love': 1,\n",
      "          'servant': 1,\n",
      "          'tuptim': 1,\n",
      "          'armi': 1,\n",
      "          'arabe': 1,\n",
      "          'conflicts': 1,\n",
      "          'feelings': 1,\n",
      "          'ancient': 1,\n",
      "          'laws': 1,\n",
      "          'lone': 1,\n",
      "          'strong': 1,\n",
      "          'character': 1,\n",
      "          'save': 1,\n",
      "          'unbelievably': 1,\n",
      "          'horrible': 1,\n",
      "          'waste': 1,\n",
      "          'talent': 1,\n",
      "          'problems': 1,\n",
      "          'fill': 1,\n",
      "          'blank': 1,\n",
      "          'journal': 1,\n",
      "          'note': 1,\n",
      "          'major': 1,\n",
      "          'difficulties': 1,\n",
      "          'elaborate': 1,\n",
      "          'detail': 1,\n",
      "          'arthur': 1,\n",
      "          'rankin': 1,\n",
      "          'peter': 1,\n",
      "          'bakalian': 1,\n",
      "          'jacqeline': 1,\n",
      "          'feather': 1,\n",
      "          'david': 1,\n",
      "          'seidler': 1,\n",
      "          'based': 1,\n",
      "          'upon': 1,\n",
      "          'richard': 1,\n",
      "          'rodgers': 1,\n",
      "          'hammerstein': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'obnoxious': 1,\n",
      "          'shout': 1,\n",
      "          'cringe': 1,\n",
      "          'nliterally': 1,\n",
      "          'nspeaking': 1,\n",
      "          'cringing': 1,\n",
      "          'quite': 1,\n",
      "          'rather': 1,\n",
      "          'short': 1,\n",
      "          'display': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nbesides': 1,\n",
      "          'repetitive': 1,\n",
      "          'seem': 1,\n",
      "          'place': 1,\n",
      "          'unlike': 1,\n",
      "          'lyrics': 1,\n",
      "          'unmagical': 1,\n",
      "          'sole': 1,\n",
      "          'cleverly': 1,\n",
      "          'getting': 1,\n",
      "          'know': 1,\n",
      "          'great': 1,\n",
      "          'outdoors': 1,\n",
      "          'exposed': 1,\n",
      "          'nunlike': 1,\n",
      "          'disney': 1,\n",
      "          'features': 1,\n",
      "          'add': 1,\n",
      "          'uneffective': 1,\n",
      "          'ntake': 1,\n",
      "          'following': 1,\n",
      "          'scenario': 1,\n",
      "          'example': 1,\n",
      "          'sheer': 1,\n",
      "          'horror': 1,\n",
      "          'music': 1,\n",
      "          'nyoure': 1,\n",
      "          'hunted': 1,\n",
      "          'dragon': 1,\n",
      "          'nwhat': 1,\n",
      "          'nsing': 1,\n",
      "          'happy': 1,\n",
      "          'nmartin': 1,\n",
      "          'without': 1,\n",
      "          'effort': 1,\n",
      "          'emotion': 1,\n",
      "          'hear': 1,\n",
      "          'saying': 1,\n",
      "          'two': 1,\n",
      "          'negatives': 1,\n",
      "          'make': 1,\n",
      "          'positive': 1,\n",
      "          'nbelieve': 1,\n",
      "          'nwith': 1,\n",
      "          'along': 1,\n",
      "          'awful': 1,\n",
      "          'voice': 1,\n",
      "          'track': 1,\n",
      "          'unbelievable': 1,\n",
      "          'mild': 1,\n",
      "          'signs': 1,\n",
      "          'thing': 1,\n",
      "          'changes': 1,\n",
      "          'says': 1,\n",
      "          'progresses': 1,\n",
      "          'nno': 1,\n",
      "          'beginning': 1,\n",
      "          'none': 1,\n",
      "          'end': 1,\n",
      "          'nand': 1,\n",
      "          'characters': 1,\n",
      "          'nhey': 1,\n",
      "          'thought': 1,\n",
      "          'nisnt': 1,\n",
      "          'plot': 1,\n",
      "          'ministers': 1,\n",
      "          'hideous': 1,\n",
      "          'sidekick': 1,\n",
      "          'darrell': 1,\n",
      "          'hammond': 1,\n",
      "          'brings': 1,\n",
      "          'cringes': 1,\n",
      "          'oh': 1,\n",
      "          'nanother': 1,\n",
      "          'one': 1,\n",
      "          'teeth': 1,\n",
      "          'fell': 1,\n",
      "          'nhardyharhar': 1,\n",
      "          'nhe': 1,\n",
      "          'bring': 1,\n",
      "          'laughs': 1,\n",
      "          'kidlets': 1,\n",
      "          'age': 1,\n",
      "          'five': 1,\n",
      "          'cringed': 1,\n",
      "          'watching': 1,\n",
      "          'nby': 1,\n",
      "          'way': 1,\n",
      "          'review': 1,\n",
      "          'going': 1,\n",
      "          'may': 1,\n",
      "          'think': 1,\n",
      "          'reasoning': 1,\n",
      "          'due': 1,\n",
      "          'liking': 1,\n",
      "          'hence': 1,\n",
      "          'disgrace': 1,\n",
      "          'nanimated': 1,\n",
      "          '1994s': 1,\n",
      "          'lion': 1,\n",
      "          '1998s': 1,\n",
      "          'prince': 1,\n",
      "          'egypt': 1,\n",
      "          'favorite': 1,\n",
      "          'movies': 1,\n",
      "          'team': 1,\n",
      "          'design': 1,\n",
      "          'settings': 1,\n",
      "          'makes': 1,\n",
      "          'easier': 1,\n",
      "          'mind': 1,\n",
      "          'annoying': 1,\n",
      "          'realize': 1,\n",
      "          'day': 1,\n",
      "          'night': 1,\n",
      "          'switch': 1,\n",
      "          'back': 1,\n",
      "          'fourth': 1,\n",
      "          'seconds': 1,\n",
      "          'read': 1,\n",
      "          'seen': 1,\n",
      "          'winning': 1,\n",
      "          '1956': 1,\n",
      "          'adaption': 1,\n",
      "          'tell': 1,\n",
      "          '1999': 1,\n",
      "          'version': 1,\n",
      "          'butchers': 1,\n",
      "          'magical': 1,\n",
      "          'interesting': 1,\n",
      "          'nif': 1,\n",
      "          'wasnt': 1,\n",
      "          'feeling': 1,\n",
      "          'earn': 1,\n",
      "          'title': 1,\n",
      "          'decade': 1,\n",
      "          'ninstead': 1,\n",
      "          'go': 1,\n",
      "          'years': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'avoid': 1,\n",
      "          'costs': 1,\n",
      "          'young': 1,\n",
      "          'target': 1,\n",
      "          'audience': 1,\n",
      "          'enjoy': 1,\n",
      "          'slightest': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'nthe': 15,\n",
      "          'bear': 9,\n",
      "          'movie': 9,\n",
      "          'clan': 8,\n",
      "          'cave': 7,\n",
      "          'ayla': 5,\n",
      "          'hannah': 5,\n",
      "          'audience': 5,\n",
      "          'ni': 5,\n",
      "          'like': 5,\n",
      "          'man': 4,\n",
      "          'serious': 4,\n",
      "          'book': 4,\n",
      "          'people': 4,\n",
      "          'earthquake': 3,\n",
      "          'neanderthal': 3,\n",
      "          'daryl': 3,\n",
      "          'tries': 3,\n",
      "          'bad': 3,\n",
      "          'film': 3,\n",
      "          'im': 3,\n",
      "          'na': 3,\n",
      "          'get': 3,\n",
      "          'makeup': 3,\n",
      "          'films': 3,\n",
      "          'think': 3,\n",
      "          'cromagnon': 2,\n",
      "          'mother': 2,\n",
      "          'lion': 2,\n",
      "          'sex': 2,\n",
      "          'blond': 2,\n",
      "          'challenges': 2,\n",
      "          'find': 2,\n",
      "          'movies': 2,\n",
      "          'quite': 2,\n",
      "          'point': 2,\n",
      "          'even': 2,\n",
      "          'turkey': 2,\n",
      "          'dealing': 2,\n",
      "          'upon': 2,\n",
      "          'novel': 2,\n",
      "          'read': 2,\n",
      "          'never': 2,\n",
      "          'sure': 2,\n",
      "          'better': 2,\n",
      "          'immediately': 2,\n",
      "          'much': 2,\n",
      "          'fur': 2,\n",
      "          'prehistory': 2,\n",
      "          'looks': 2,\n",
      "          'nas': 2,\n",
      "          'interested': 2,\n",
      "          'wont': 2,\n",
      "          'nthis': 2,\n",
      "          'nit': 2,\n",
      "          'message': 2,\n",
      "          'new': 2,\n",
      "          'nwe': 2,\n",
      "          'lot': 2,\n",
      "          'time': 2,\n",
      "          'characters': 2,\n",
      "          'seen': 2,\n",
      "          'mind': 2,\n",
      "          'music': 2,\n",
      "          'sounds': 2,\n",
      "          'though': 2,\n",
      "          'probably': 2,\n",
      "          'scenes': 2,\n",
      "          'synopsis': 1,\n",
      "          'loses': 1,\n",
      "          'escapes': 1,\n",
      "          'certain': 1,\n",
      "          'death': 1,\n",
      "          'nreluctantly': 1,\n",
      "          'rescued': 1,\n",
      "          'likes': 1,\n",
      "          'doggystyle': 1,\n",
      "          'grows': 1,\n",
      "          'become': 1,\n",
      "          'feminist': 1,\n",
      "          'supermodel': 1,\n",
      "          'patriarchy': 1,\n",
      "          'throwing': 1,\n",
      "          'rocks': 1,\n",
      "          'giving': 1,\n",
      "          'birth': 1,\n",
      "          'without': 1,\n",
      "          'mate': 1,\n",
      "          'ncomments': 1,\n",
      "          'allow': 1,\n",
      "          'state': 1,\n",
      "          'record': 1,\n",
      "          'appealing': 1,\n",
      "          'presence': 1,\n",
      "          'nshe': 1,\n",
      "          'proved': 1,\n",
      "          'charming': 1,\n",
      "          'intelligent': 1,\n",
      "          'astronomer': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'roxanne': 1,\n",
      "          'equally': 1,\n",
      "          'creepy': 1,\n",
      "          'pris': 1,\n",
      "          'scifi': 1,\n",
      "          'classic': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'clearly': 1,\n",
      "          'capitalize': 1,\n",
      "          'selling': 1,\n",
      "          'poster': 1,\n",
      "          'art': 1,\n",
      "          'bears': 1,\n",
      "          'striking': 1,\n",
      "          'closeup': 1,\n",
      "          'tribal': 1,\n",
      "          'paint': 1,\n",
      "          'video': 1,\n",
      "          'box': 1,\n",
      "          'prominently': 1,\n",
      "          'features': 1,\n",
      "          'name': 1,\n",
      "          'lettering': 1,\n",
      "          'size': 1,\n",
      "          'title': 1,\n",
      "          'nnot': 1,\n",
      "          'starring': 1,\n",
      "          'role': 1,\n",
      "          'unfortunately': 1,\n",
      "          'save': 1,\n",
      "          'unbelievable': 1,\n",
      "          'exercise': 1,\n",
      "          'cheese': 1,\n",
      "          'nits': 1,\n",
      "          'uniquely': 1,\n",
      "          'prehistoric': 1,\n",
      "          'actually': 1,\n",
      "          'miserably': 1,\n",
      "          'fails': 1,\n",
      "          'oddly': 1,\n",
      "          'fascinating': 1,\n",
      "          'ridiculous': 1,\n",
      "          'attempt': 1,\n",
      "          'drama': 1,\n",
      "          'leaves': 1,\n",
      "          'somehow': 1,\n",
      "          'transfixed': 1,\n",
      "          'wanting': 1,\n",
      "          'see': 1,\n",
      "          'dud': 1,\n",
      "          'plays': 1,\n",
      "          'based': 1,\n",
      "          'popular': 1,\n",
      "          'jean': 1,\n",
      "          'auel': 1,\n",
      "          'nto': 1,\n",
      "          'day': 1,\n",
      "          'possesses': 1,\n",
      "          'loyal': 1,\n",
      "          'cult': 1,\n",
      "          'following': 1,\n",
      "          'remember': 1,\n",
      "          'dear': 1,\n",
      "          'friend': 1,\n",
      "          'mine': 1,\n",
      "          'dogeared': 1,\n",
      "          'copy': 1,\n",
      "          'child': 1,\n",
      "          'socalled': 1,\n",
      "          'dirty': 1,\n",
      "          'parts': 1,\n",
      "          'blacked': 1,\n",
      "          'marker': 1,\n",
      "          'grandmother': 1,\n",
      "          'hope': 1,\n",
      "          '10': 1,\n",
      "          '000': 1,\n",
      "          'times': 1,\n",
      "          'adaptation': 1,\n",
      "          'nif': 1,\n",
      "          'complete': 1,\n",
      "          'loss': 1,\n",
      "          'explain': 1,\n",
      "          'popularity': 1,\n",
      "          'opens': 1,\n",
      "          'comically': 1,\n",
      "          'absurd': 1,\n",
      "          'scene': 1,\n",
      "          'young': 1,\n",
      "          'looking': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'e': 1,\n",
      "          'ntramps': 1,\n",
      "          'woods': 1,\n",
      "          'nwith': 1,\n",
      "          'cute': 1,\n",
      "          'little': 1,\n",
      "          'ponytails': 1,\n",
      "          'wrapped': 1,\n",
      "          'audiences': 1,\n",
      "          'expectations': 1,\n",
      "          'convincing': 1,\n",
      "          'portrayal': 1,\n",
      "          'shattered': 1,\n",
      "          'nwhat': 1,\n",
      "          'follows': 1,\n",
      "          'laughably': 1,\n",
      "          'choreographed': 1,\n",
      "          'sequence': 1,\n",
      "          'swallows': 1,\n",
      "          'aylas': 1,\n",
      "          'blonde': 1,\n",
      "          'pants': 1,\n",
      "          'er': 1,\n",
      "          'nleggings': 1,\n",
      "          'ntearful': 1,\n",
      "          'cameraman': 1,\n",
      "          'shakes': 1,\n",
      "          'camera': 1,\n",
      "          'well': 1,\n",
      "          'slowly': 1,\n",
      "          'recedes': 1,\n",
      "          'hungry': 1,\n",
      "          'becomes': 1,\n",
      "          'lunch': 1,\n",
      "          'screaming': 1,\n",
      "          'sixyearold': 1,\n",
      "          'manages': 1,\n",
      "          'outrun': 1,\n",
      "          'king': 1,\n",
      "          'wild': 1,\n",
      "          'safe': 1,\n",
      "          'detail': 1,\n",
      "          'story': 1,\n",
      "          'seems': 1,\n",
      "          'enough': 1,\n",
      "          'illustrate': 1,\n",
      "          'really': 1,\n",
      "          'stupid': 1,\n",
      "          'gives': 1,\n",
      "          'chance': 1,\n",
      "          'suspend': 1,\n",
      "          'disbelief': 1,\n",
      "          'nalso': 1,\n",
      "          'obvious': 1,\n",
      "          'comparison': 1,\n",
      "          'appearance': 1,\n",
      "          'rise': 1,\n",
      "          'feminism': 1,\n",
      "          'century': 1,\n",
      "          'subtle': 1,\n",
      "          'burning': 1,\n",
      "          'wonderbra': 1,\n",
      "          'front': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'doesnt': 1,\n",
      "          'suggest': 1,\n",
      "          'whacks': 1,\n",
      "          'twobyfour': 1,\n",
      "          'gorgeous': 1,\n",
      "          'woman': 1,\n",
      "          'social': 1,\n",
      "          'laws': 1,\n",
      "          'bunch': 1,\n",
      "          'gaudy': 1,\n",
      "          'brown': 1,\n",
      "          'wigs': 1,\n",
      "          'nshes': 1,\n",
      "          'theyre': 1,\n",
      "          'old': 1,\n",
      "          'memories': 1,\n",
      "          'nyep': 1,\n",
      "          'apparently': 1,\n",
      "          'received': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'nomination': 1,\n",
      "          'best': 1,\n",
      "          'surprises': 1,\n",
      "          'depends': 1,\n",
      "          'obviously': 1,\n",
      "          'unconvincing': 1,\n",
      "          'stated': 1,\n",
      "          'stepped': 1,\n",
      "          'shower': 1,\n",
      "          'rest': 1,\n",
      "          'dark': 1,\n",
      "          'sort': 1,\n",
      "          'smeared': 1,\n",
      "          'look': 1,\n",
      "          'dirt': 1,\n",
      "          'facepainting': 1,\n",
      "          'thats': 1,\n",
      "          'occasionally': 1,\n",
      "          'perhaps': 1,\n",
      "          'notable': 1,\n",
      "          'work': 1,\n",
      "          'also': 1,\n",
      "          'suffers': 1,\n",
      "          'age': 1,\n",
      "          'trappings': 1,\n",
      "          'nmaybe': 1,\n",
      "          'sounded': 1,\n",
      "          'fresh': 1,\n",
      "          'original': 1,\n",
      "          '1985': 1,\n",
      "          'dated': 1,\n",
      "          'cliched': 1,\n",
      "          'poorly': 1,\n",
      "          'conceived': 1,\n",
      "          'elevator': 1,\n",
      "          'nadd': 1,\n",
      "          'fauxmysticism': 1,\n",
      "          'including': 1,\n",
      "          'spirit': 1,\n",
      "          'animals': 1,\n",
      "          'dream': 1,\n",
      "          'visions': 1,\n",
      "          'narrator': 1,\n",
      "          'psychic': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'hear': 1,\n",
      "          '1900': 1,\n",
      "          'number': 1,\n",
      "          'problems': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'one': 1,\n",
      "          'inoffensive': 1,\n",
      "          'offensive': 1,\n",
      "          'ive': 1,\n",
      "          'contains': 1,\n",
      "          'several': 1,\n",
      "          'sans': 1,\n",
      "          'nudity': 1,\n",
      "          'violence': 1,\n",
      "          'mostly': 1,\n",
      "          'consists': 1,\n",
      "          'hunting': 1,\n",
      "          'funniest': 1,\n",
      "          'moment': 1,\n",
      "          'occurs': 1,\n",
      "          'love': 1,\n",
      "          'attempts': 1,\n",
      "          'rescue': 1,\n",
      "          'ferocious': 1,\n",
      "          'bites': 1,\n",
      "          'head': 1,\n",
      "          'sees': 1,\n",
      "          'rolling': 1,\n",
      "          'nalthough': 1,\n",
      "          'may': 1,\n",
      "          'sound': 1,\n",
      "          'gratuitous': 1,\n",
      "          'cheesy': 1,\n",
      "          'bother': 1,\n",
      "          'nhowever': 1,\n",
      "          'wrote': 1,\n",
      "          'beginning': 1,\n",
      "          'review': 1,\n",
      "          'distinction': 1,\n",
      "          'originality': 1,\n",
      "          'ntypically': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'early': 1,\n",
      "          'fantasy': 1,\n",
      "          'involving': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'exist': 1,\n",
      "          'raquel': 1,\n",
      "          'welch': 1,\n",
      "          'come': 1,\n",
      "          'hard': 1,\n",
      "          'still': 1,\n",
      "          'unique': 1,\n",
      "          'setting': 1,\n",
      "          'awarded': 1,\n",
      "          'two': 1,\n",
      "          'stars': 1,\n",
      "          'fans': 1,\n",
      "          'would': 1,\n",
      "          'disappointed': 1,\n",
      "          'version': 1,\n",
      "          'however': 1,\n",
      "          'basing': 1,\n",
      "          'observation': 1,\n",
      "          'fact': 1,\n",
      "          'almost': 1,\n",
      "          'invariably': 1,\n",
      "          'shudder': 1,\n",
      "          'could': 1,\n",
      "          'otherwise': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'tonya': 5,\n",
      "          'film': 5,\n",
      "          'harding': 4,\n",
      "          'movies': 3,\n",
      "          'salaries': 2,\n",
      "          'many': 2,\n",
      "          'main': 2,\n",
      "          'quite': 2,\n",
      "          'even': 2,\n",
      "          'breakaway': 2,\n",
      "          'figure': 2,\n",
      "          'skater': 2,\n",
      "          'star': 2,\n",
      "          'thompson': 2,\n",
      "          'myra': 2,\n",
      "          'anything': 2,\n",
      "          'life': 2,\n",
      "          'hollywood': 1,\n",
      "          'top': 1,\n",
      "          'actors': 1,\n",
      "          'getting': 1,\n",
      "          'obscenely': 1,\n",
      "          'large': 1,\n",
      "          'days': 1,\n",
      "          'find': 1,\n",
      "          'reason': 1,\n",
      "          'skyrocketing': 1,\n",
      "          'movie': 1,\n",
      "          'budgets': 1,\n",
      "          'nactors': 1,\n",
      "          'demand': 1,\n",
      "          'might': 1,\n",
      "          'greedy': 1,\n",
      "          'instances': 1,\n",
      "          'justified': 1,\n",
      "          'films': 1,\n",
      "          'would': 1,\n",
      "          'never': 1,\n",
      "          'watched': 1,\n",
      "          'made': 1,\n",
      "          'without': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'participation': 1,\n",
      "          'nproof': 1,\n",
      "          'found': 1,\n",
      "          'realm': 1,\n",
      "          'lowbudget': 1,\n",
      "          'one': 1,\n",
      "          'fine': 1,\n",
      "          'example': 1,\n",
      "          '1995': 1,\n",
      "          'thriller': 1,\n",
      "          'directed': 1,\n",
      "          'sean': 1,\n",
      "          'dash': 1,\n",
      "          'starring': 1,\n",
      "          'famous': 1,\n",
      "          'nface': 1,\n",
      "          'prominently': 1,\n",
      "          'featured': 1,\n",
      "          'poster': 1,\n",
      "          'terri': 1,\n",
      "          'plays': 1,\n",
      "          'attractive': 1,\n",
      "          'woman': 1,\n",
      "          'works': 1,\n",
      "          'courier': 1,\n",
      "          'gangster': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'decides': 1,\n",
      "          'retire': 1,\n",
      "          'employers': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'nrealising': 1,\n",
      "          'suddenly': 1,\n",
      "          'became': 1,\n",
      "          'worthless': 1,\n",
      "          'starts': 1,\n",
      "          'running': 1,\n",
      "          'followed': 1,\n",
      "          'professional': 1,\n",
      "          'assassins': 1,\n",
      "          'nterri': 1,\n",
      "          'actual': 1,\n",
      "          'instead': 1,\n",
      "          'becomes': 1,\n",
      "          'understandable': 1,\n",
      "          'scenes': 1,\n",
      "          'feature': 1,\n",
      "          'former': 1,\n",
      "          'nalthough': 1,\n",
      "          'displays': 1,\n",
      "          'convincing': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'abilities': 1,\n",
      "          'acting': 1,\n",
      "          'leaves': 1,\n",
      "          'much': 1,\n",
      "          'desired': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'disappointing': 1,\n",
      "          'efforts': 1,\n",
      "          'hardly': 1,\n",
      "          'place': 1,\n",
      "          'lacks': 1,\n",
      "          'originality': 1,\n",
      "          'believable': 1,\n",
      "          'characters': 1,\n",
      "          'situations': 1,\n",
      "          'actually': 1,\n",
      "          'represents': 1,\n",
      "          'gave': 1,\n",
      "          'bfilms': 1,\n",
      "          'bad': 1,\n",
      "          'name': 1,\n",
      "          'nmartin': 1,\n",
      "          'sheens': 1,\n",
      "          'brother': 1,\n",
      "          'joe': 1,\n",
      "          'estevez': 1,\n",
      "          'whose': 1,\n",
      "          'character': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'entered': 1,\n",
      "          'another': 1,\n",
      "          'set': 1,\n",
      "          'bright': 1,\n",
      "          'spot': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'appears': 1,\n",
      "          'little': 1,\n",
      "          'late': 1,\n",
      "          'prevent': 1,\n",
      "          'viewers': 1,\n",
      "          'realising': 1,\n",
      "          'hardings': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'debut': 1,\n",
      "          'proved': 1,\n",
      "          'last': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'ford': 7,\n",
      "          'like': 6,\n",
      "          'make': 6,\n",
      "          'get': 6,\n",
      "          'six': 5,\n",
      "          'days': 5,\n",
      "          'seven': 5,\n",
      "          'nights': 5,\n",
      "          'harrison': 5,\n",
      "          'heche': 5,\n",
      "          'nthe': 5,\n",
      "          'n': 5,\n",
      "          'script': 4,\n",
      "          'good': 4,\n",
      "          'fianc': 4,\n",
      "          'e': 4,\n",
      "          'story': 4,\n",
      "          'anne': 3,\n",
      "          'even': 3,\n",
      "          'action': 3,\n",
      "          'actors': 3,\n",
      "          'see': 3,\n",
      "          'island': 3,\n",
      "          'ni': 3,\n",
      "          'subplot': 3,\n",
      "          'movie': 3,\n",
      "          'film': 3,\n",
      "          'movies': 2,\n",
      "          'people': 2,\n",
      "          'reitman': 2,\n",
      "          'lot': 2,\n",
      "          'hard': 2,\n",
      "          'worth': 2,\n",
      "          'ten': 2,\n",
      "          'cents': 2,\n",
      "          'new': 2,\n",
      "          'character': 2,\n",
      "          'throw': 2,\n",
      "          'pirates': 2,\n",
      "          'sequences': 2,\n",
      "          'scripts': 2,\n",
      "          'instance': 2,\n",
      "          'alone': 2,\n",
      "          'nso': 2,\n",
      "          'nwell': 2,\n",
      "          'well': 2,\n",
      "          'nbut': 2,\n",
      "          'wait': 2,\n",
      "          'schwimmer': 2,\n",
      "          'crash': 2,\n",
      "          'know': 2,\n",
      "          'theyll': 2,\n",
      "          'funny': 2,\n",
      "          'five': 2,\n",
      "          'noh': 2,\n",
      "          'sex': 2,\n",
      "          'really': 2,\n",
      "          'woman': 2,\n",
      "          'bimbo': 2,\n",
      "          'feel': 2,\n",
      "          'guilty': 2,\n",
      "          'nthen': 2,\n",
      "          'kiss': 2,\n",
      "          'completely': 2,\n",
      "          'picture': 2,\n",
      "          'films': 2,\n",
      "          'least': 2,\n",
      "          'pirate': 2,\n",
      "          'dumb': 2,\n",
      "          'think': 2,\n",
      "          'feels': 2,\n",
      "          'glimpse': 2,\n",
      "          'nthis': 2,\n",
      "          'device': 2,\n",
      "          'summer': 2,\n",
      "          'didnt': 2,\n",
      "          'mad': 1,\n",
      "          'talented': 1,\n",
      "          'ivan': 1,\n",
      "          'put': 1,\n",
      "          'work': 1,\n",
      "          'written': 1,\n",
      "          'michael': 1,\n",
      "          'browning': 1,\n",
      "          'decided': 1,\n",
      "          'instead': 1,\n",
      "          'thinking': 1,\n",
      "          'ideas': 1,\n",
      "          'hed': 1,\n",
      "          'rehash': 1,\n",
      "          'cliches': 1,\n",
      "          'omit': 1,\n",
      "          'slightest': 1,\n",
      "          'bit': 1,\n",
      "          'development': 1,\n",
      "          'drugdealing': 1,\n",
      "          'provide': 1,\n",
      "          'highlevel': 1,\n",
      "          'explosions': 1,\n",
      "          'nthere': 1,\n",
      "          'highprofile': 1,\n",
      "          'truman': 1,\n",
      "          'show': 1,\n",
      "          'nsix': 1,\n",
      "          'simply': 1,\n",
      "          'waste': 1,\n",
      "          'nlets': 1,\n",
      "          'nwe': 1,\n",
      "          'feisty': 1,\n",
      "          'magazine': 1,\n",
      "          'editor': 1,\n",
      "          'crusty': 1,\n",
      "          'old': 1,\n",
      "          'pilot': 1,\n",
      "          'david': 1,\n",
      "          'ntheyll': 1,\n",
      "          'vacation': 1,\n",
      "          'spot': 1,\n",
      "          'shell': 1,\n",
      "          'called': 1,\n",
      "          'back': 1,\n",
      "          'nyessssss': 1,\n",
      "          'minutes': 1,\n",
      "          'nshucks': 1,\n",
      "          'ive': 1,\n",
      "          'got': 1,\n",
      "          'distracting': 1,\n",
      "          'attractive': 1,\n",
      "          'acts': 1,\n",
      "          'kisses': 1,\n",
      "          'otherwise': 1,\n",
      "          'nobody': 1,\n",
      "          'want': 1,\n",
      "          'vindicated': 1,\n",
      "          'already': 1,\n",
      "          'cheated': 1,\n",
      "          'obvious': 1,\n",
      "          'reason': 1,\n",
      "          'accidentally': 1,\n",
      "          'run': 1,\n",
      "          'try': 1,\n",
      "          'kill': 1,\n",
      "          'yes': 1,\n",
      "          'ninstead': 1,\n",
      "          'using': 1,\n",
      "          'characterization': 1,\n",
      "          'propel': 1,\n",
      "          'events': 1,\n",
      "          'random': 1,\n",
      "          'yet': 1,\n",
      "          'totally': 1,\n",
      "          'predictable': 1,\n",
      "          'nimagine': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'boring': 1,\n",
      "          'great': 1,\n",
      "          'job': 1,\n",
      "          'sparks': 1,\n",
      "          'fly': 1,\n",
      "          'brownings': 1,\n",
      "          'inane': 1,\n",
      "          'dialogue': 1,\n",
      "          'drowned': 1,\n",
      "          'sheer': 1,\n",
      "          'force': 1,\n",
      "          'talent': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'energy': 1,\n",
      "          'performers': 1,\n",
      "          'bring': 1,\n",
      "          'screen': 1,\n",
      "          'found': 1,\n",
      "          'laughing': 1,\n",
      "          'pretty': 1,\n",
      "          'nschwimmer': 1,\n",
      "          'also': 1,\n",
      "          'manages': 1,\n",
      "          'milk': 1,\n",
      "          'scenes': 1,\n",
      "          'whatever': 1,\n",
      "          'nand': 1,\n",
      "          'made': 1,\n",
      "          'tries': 1,\n",
      "          'things': 1,\n",
      "          'exciting': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'profoundly': 1,\n",
      "          'prepared': 1,\n",
      "          'pleasantly': 1,\n",
      "          'sidetracked': 1,\n",
      "          'nits': 1,\n",
      "          'start': 1,\n",
      "          'contempt': 1,\n",
      "          'surfaces': 1,\n",
      "          'hacked': 1,\n",
      "          'pieces': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprised': 1,\n",
      "          'inept': 1,\n",
      "          'subplots': 1,\n",
      "          'edited': 1,\n",
      "          'ones': 1,\n",
      "          'bad': 1,\n",
      "          'come': 1,\n",
      "          'let': 1,\n",
      "          'audible': 1,\n",
      "          'groan': 1,\n",
      "          'first': 1,\n",
      "          'ships': 1,\n",
      "          'id': 1,\n",
      "          'shake': 1,\n",
      "          'producers': 1,\n",
      "          'shoulders': 1,\n",
      "          'scream': 1,\n",
      "          'pick': 1,\n",
      "          'awful': 1,\n",
      "          'outright': 1,\n",
      "          'stupid': 1,\n",
      "          'elements': 1,\n",
      "          'subtly': 1,\n",
      "          'horrifying': 1,\n",
      "          'nfor': 1,\n",
      "          'take': 1,\n",
      "          'serious': 1,\n",
      "          'problem': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'reduces': 1,\n",
      "          'chance': 1,\n",
      "          'complexity': 1,\n",
      "          'weak': 1,\n",
      "          'plot': 1,\n",
      "          'actions': 1,\n",
      "          'makes': 1,\n",
      "          'okay': 1,\n",
      "          'nin': 1,\n",
      "          'lacks': 1,\n",
      "          'intelligent': 1,\n",
      "          'subtlety': 1,\n",
      "          'find': 1,\n",
      "          'odd': 1,\n",
      "          'strangely': 1,\n",
      "          'insulting': 1,\n",
      "          'ended': 1,\n",
      "          'season': 1,\n",
      "          'doesnt': 1,\n",
      "          'mean': 1,\n",
      "          'n1998': 1,\n",
      "          'far': 1,\n",
      "          'one': 1,\n",
      "          'worst': 1,\n",
      "          'years': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'blockbusters': 1,\n",
      "          'nwhen': 1,\n",
      "          'line': 1,\n",
      "          'heard': 1,\n",
      "          'front': 1,\n",
      "          'ask': 1,\n",
      "          'two': 1,\n",
      "          'tickets': 1,\n",
      "          'name': 1,\n",
      "          'suppose': 1,\n",
      "          'care': 1,\n",
      "          'bothers': 1,\n",
      "          'bigbudget': 1,\n",
      "          'pictures': 1,\n",
      "          'dont': 1,\n",
      "          'realize': 1,\n",
      "          'becoming': 1,\n",
      "          'parodies': 1,\n",
      "          'ngood': 1,\n",
      "          'sign': 1,\n",
      "          'hollywood': 1,\n",
      "          'insists': 1,\n",
      "          'making': 1,\n",
      "          'flicks': 1,\n",
      "          'rake': 1,\n",
      "          'cash': 1,\n",
      "          'could': 1,\n",
      "          'assume': 1,\n",
      "          'wed': 1,\n",
      "          'spend': 1,\n",
      "          'money': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'stigmata': 12,\n",
      "          'film': 12,\n",
      "          'frankie': 8,\n",
      "          'nthe': 7,\n",
      "          'one': 6,\n",
      "          'church': 6,\n",
      "          'story': 6,\n",
      "          'catholic': 6,\n",
      "          'like': 5,\n",
      "          'n': 5,\n",
      "          'nim': 5,\n",
      "          'fact': 5,\n",
      "          'camera': 5,\n",
      "          'anything': 4,\n",
      "          'priest': 4,\n",
      "          'pryce': 4,\n",
      "          'wainwright': 4,\n",
      "          'character': 4,\n",
      "          'seems': 4,\n",
      "          'though': 4,\n",
      "          'films': 3,\n",
      "          'another': 3,\n",
      "          'horror': 3,\n",
      "          'arquette': 3,\n",
      "          'page': 3,\n",
      "          'rosary': 3,\n",
      "          'nas': 3,\n",
      "          'turns': 3,\n",
      "          'kiernan': 3,\n",
      "          'byrne': 3,\n",
      "          'bleeding': 3,\n",
      "          'nfather': 3,\n",
      "          'supposed': 3,\n",
      "          'time': 3,\n",
      "          'something': 3,\n",
      "          'starts': 3,\n",
      "          'shes': 3,\n",
      "          'eventually': 3,\n",
      "          'gospel': 3,\n",
      "          'music': 3,\n",
      "          'would': 3,\n",
      "          'interesting': 3,\n",
      "          'sure': 3,\n",
      "          'trickery': 3,\n",
      "          'see': 3,\n",
      "          'scary': 3,\n",
      "          'nif': 3,\n",
      "          'get': 3,\n",
      "          'characters': 3,\n",
      "          'doesnt': 3,\n",
      "          'posessed': 3,\n",
      "          'nothing': 3,\n",
      "          'much': 3,\n",
      "          'many': 3,\n",
      "          'clearly': 2,\n",
      "          'ni': 2,\n",
      "          'seen': 2,\n",
      "          'sense': 2,\n",
      "          'summer': 2,\n",
      "          'really': 2,\n",
      "          'hairdresser': 2,\n",
      "          'priests': 2,\n",
      "          'investigation': 2,\n",
      "          'father': 2,\n",
      "          'andrew': 2,\n",
      "          'mysterious': 2,\n",
      "          'statue': 2,\n",
      "          'religious': 2,\n",
      "          'signs': 2,\n",
      "          'nhis': 2,\n",
      "          'wounds': 2,\n",
      "          'atheist': 2,\n",
      "          'cardinal': 2,\n",
      "          'houseman': 2,\n",
      "          'dead': 2,\n",
      "          'video': 2,\n",
      "          'worse': 2,\n",
      "          'trying': 2,\n",
      "          'slowmotion': 2,\n",
      "          'doubleexposure': 2,\n",
      "          'director': 2,\n",
      "          'school': 2,\n",
      "          'little': 2,\n",
      "          'audience': 2,\n",
      "          'nmaybe': 2,\n",
      "          'explain': 2,\n",
      "          'start': 2,\n",
      "          'scenes': 2,\n",
      "          'shots': 2,\n",
      "          'superfluous': 2,\n",
      "          'reason': 2,\n",
      "          'whatsoever': 2,\n",
      "          'bother': 2,\n",
      "          'remotely': 2,\n",
      "          'help': 2,\n",
      "          'given': 2,\n",
      "          'plot': 2,\n",
      "          'development': 2,\n",
      "          'need': 2,\n",
      "          'point': 2,\n",
      "          'back': 2,\n",
      "          'first': 2,\n",
      "          'almost': 2,\n",
      "          'neven': 2,\n",
      "          'still': 2,\n",
      "          'dramatic': 2,\n",
      "          'im': 2,\n",
      "          'simple': 2,\n",
      "          'spirit': 2,\n",
      "          'later': 2,\n",
      "          'st': 2,\n",
      "          'thomas': 2,\n",
      "          'means': 2,\n",
      "          'dog': 2,\n",
      "          'taken': 1,\n",
      "          'warning': 1,\n",
      "          'releasing': 1,\n",
      "          'similarlythemed': 1,\n",
      "          'relatively': 1,\n",
      "          'close': 1,\n",
      "          'nof': 1,\n",
      "          'four': 1,\n",
      "          'supernatural': 1,\n",
      "          'flicks': 1,\n",
      "          'released': 1,\n",
      "          'year': 1,\n",
      "          'worst': 1,\n",
      "          'suppose': 1,\n",
      "          'coming': 1,\n",
      "          'nafter': 1,\n",
      "          'blair': 1,\n",
      "          'witch': 1,\n",
      "          'thoroughly': 1,\n",
      "          'creeped': 1,\n",
      "          'sixth': 1,\n",
      "          'mildly': 1,\n",
      "          'spooky': 1,\n",
      "          'stir': 1,\n",
      "          'echoes': 1,\n",
      "          'moments': 1,\n",
      "          'wasnt': 1,\n",
      "          'id': 1,\n",
      "          'lose': 1,\n",
      "          'sleep': 1,\n",
      "          'nclearly': 1,\n",
      "          'quality': 1,\n",
      "          'slowly': 1,\n",
      "          'dropping': 1,\n",
      "          'nis': 1,\n",
      "          'surprise': 1,\n",
      "          'dullest': 1,\n",
      "          'horribly': 1,\n",
      "          'executed': 1,\n",
      "          'piece': 1,\n",
      "          'mtvinfluenced': 1,\n",
      "          'tripe': 1,\n",
      "          'long': 1,\n",
      "          'nno': 1,\n",
      "          'npatricia': 1,\n",
      "          'plays': 1,\n",
      "          'pittsburgh': 1,\n",
      "          'receives': 1,\n",
      "          'gift': 1,\n",
      "          'globetrotting': 1,\n",
      "          'mother': 1,\n",
      "          'belonged': 1,\n",
      "          'recentlydeceased': 1,\n",
      "          'brazilian': 1,\n",
      "          'gabriel': 1,\n",
      "          'appearance': 1,\n",
      "          'investigator': 1,\n",
      "          'made': 1,\n",
      "          'career': 1,\n",
      "          'disproving': 1,\n",
      "          'believes': 1,\n",
      "          'soon': 1,\n",
      "          'called': 1,\n",
      "          'however': 1,\n",
      "          'exhibiting': 1,\n",
      "          'person': 1,\n",
      "          'inflicted': 1,\n",
      "          'jesus': 1,\n",
      "          'christ': 1,\n",
      "          'initially': 1,\n",
      "          'skeptical': 1,\n",
      "          'considering': 1,\n",
      "          'witnesses': 1,\n",
      "          'attacks': 1,\n",
      "          'dedicates': 1,\n",
      "          'finding': 1,\n",
      "          'going': 1,\n",
      "          'nhe': 1,\n",
      "          'begins': 1,\n",
      "          'suspect': 1,\n",
      "          'boss': 1,\n",
      "          'jonathan': 1,\n",
      "          'concealing': 1,\n",
      "          'could': 1,\n",
      "          'bring': 1,\n",
      "          'working': 1,\n",
      "          'translation': 1,\n",
      "          'fifth': 1,\n",
      "          'excommunicated': 1,\n",
      "          'new': 1,\n",
      "          'rupert': 1,\n",
      "          'mean': 1,\n",
      "          'sort': 1,\n",
      "          'ok': 1,\n",
      "          'gets': 1,\n",
      "          'nindeed': 1,\n",
      "          'good': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'prove': 1,\n",
      "          'endless': 1,\n",
      "          'parade': 1,\n",
      "          'extreme': 1,\n",
      "          'closeups': 1,\n",
      "          'whoaaaaaa': 1,\n",
      "          'swelled': 1,\n",
      "          'head': 1,\n",
      "          'hollywood': 1,\n",
      "          'yes': 1,\n",
      "          'becomes': 1,\n",
      "          'headacheinducing': 1,\n",
      "          'nwhat': 1,\n",
      "          'needed': 1,\n",
      "          'second': 1,\n",
      "          'audio': 1,\n",
      "          'track': 1,\n",
      "          'played': 1,\n",
      "          'dialogue': 1,\n",
      "          'screaming': 1,\n",
      "          'nlook': 1,\n",
      "          'excellent': 1,\n",
      "          'hed': 1,\n",
      "          'decided': 1,\n",
      "          'half': 1,\n",
      "          'water': 1,\n",
      "          'dripping': 1,\n",
      "          'reverse': 1,\n",
      "          'included': 1,\n",
      "          'random': 1,\n",
      "          'egg': 1,\n",
      "          'frying': 1,\n",
      "          'ooh': 1,\n",
      "          'underlying': 1,\n",
      "          'meaning': 1,\n",
      "          'behind': 1,\n",
      "          'didnt': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'safe': 1,\n",
      "          'involved': 1,\n",
      "          'comes': 1,\n",
      "          'shot': 1,\n",
      "          'two': 1,\n",
      "          'patricia': 1,\n",
      "          'arquettes': 1,\n",
      "          'collapsing': 1,\n",
      "          'bed': 1,\n",
      "          'narrrrrrrghhhh': 1,\n",
      "          'nthen': 1,\n",
      "          'wouldnt': 1,\n",
      "          'engaging': 1,\n",
      "          'nthough': 1,\n",
      "          'wainwrights': 1,\n",
      "          'vanity': 1,\n",
      "          'certainly': 1,\n",
      "          'seem': 1,\n",
      "          'nearly': 1,\n",
      "          'unworkable': 1,\n",
      "          'script': 1,\n",
      "          'nwhere': 1,\n",
      "          'continuity': 1,\n",
      "          'ncase': 1,\n",
      "          'assume': 1,\n",
      "          'identify': 1,\n",
      "          'sympathize': 1,\n",
      "          'arent': 1,\n",
      "          'extent': 1,\n",
      "          'hardworking': 1,\n",
      "          'somehow': 1,\n",
      "          'afford': 1,\n",
      "          'cavernous': 1,\n",
      "          'apartment': 1,\n",
      "          'top': 1,\n",
      "          'floor': 1,\n",
      "          'building': 1,\n",
      "          'kind': 1,\n",
      "          'cute': 1,\n",
      "          'lets': 1,\n",
      "          'brightest': 1,\n",
      "          'bulb': 1,\n",
      "          'drawer': 1,\n",
      "          'either': 1,\n",
      "          'naccording': 1,\n",
      "          'thing': 1,\n",
      "          'receiving': 1,\n",
      "          'wrists': 1,\n",
      "          'ngo': 1,\n",
      "          'clubbing': 1,\n",
      "          'nsure': 1,\n",
      "          'makes': 1,\n",
      "          'narquette': 1,\n",
      "          'give': 1,\n",
      "          'old': 1,\n",
      "          'college': 1,\n",
      "          'try': 1,\n",
      "          'onedimensional': 1,\n",
      "          'appear': 1,\n",
      "          'sleepwalking': 1,\n",
      "          'nscenes': 1,\n",
      "          'probably': 1,\n",
      "          'sexually': 1,\n",
      "          'charged': 1,\n",
      "          'fall': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'flat': 1,\n",
      "          'setup': 1,\n",
      "          'romantic': 1,\n",
      "          'subplot': 1,\n",
      "          'clumsily': 1,\n",
      "          'handled': 1,\n",
      "          'reaches': 1,\n",
      "          'becoming': 1,\n",
      "          'laughable': 1,\n",
      "          'pages': 1,\n",
      "          'life': 1,\n",
      "          'falling': 1,\n",
      "          'apart': 1,\n",
      "          'eyes': 1,\n",
      "          'finds': 1,\n",
      "          'hit': 1,\n",
      "          'wanders': 1,\n",
      "          'hair': 1,\n",
      "          'salon': 1,\n",
      "          'curiously': 1,\n",
      "          'interested': 1,\n",
      "          'advances': 1,\n",
      "          'andrews': 1,\n",
      "          'doubt': 1,\n",
      "          'pops': 1,\n",
      "          'suddenly': 1,\n",
      "          'silly': 1,\n",
      "          'may': 1,\n",
      "          'well': 1,\n",
      "          'wear': 1,\n",
      "          'curled': 1,\n",
      "          'mustache': 1,\n",
      "          'cackle': 1,\n",
      "          'ill': 1,\n",
      "          'pretty': 1,\n",
      "          'depth': 1,\n",
      "          'afforded': 1,\n",
      "          'ntrust': 1,\n",
      "          'revealing': 1,\n",
      "          'telling': 1,\n",
      "          'villain': 1,\n",
      "          'nwhats': 1,\n",
      "          'faced': 1,\n",
      "          'dull': 1,\n",
      "          'prospect': 1,\n",
      "          'annoying': 1,\n",
      "          'tricks': 1,\n",
      "          'loud': 1,\n",
      "          'jammed': 1,\n",
      "          'throats': 1,\n",
      "          'contend': 1,\n",
      "          'direction': 1,\n",
      "          'veers': 1,\n",
      "          'ends': 1,\n",
      "          'totally': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'nfirst': 1,\n",
      "          'even': 1,\n",
      "          'details': 1,\n",
      "          'merely': 1,\n",
      "          'touching': 1,\n",
      "          'nhow': 1,\n",
      "          'come': 1,\n",
      "          'chosen': 1,\n",
      "          'since': 1,\n",
      "          'mentions': 1,\n",
      "          'devout': 1,\n",
      "          'believers': 1,\n",
      "          'ever': 1,\n",
      "          'received': 1,\n",
      "          'nactually': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'occurs': 1,\n",
      "          'holy': 1,\n",
      "          'evil': 1,\n",
      "          'think': 1,\n",
      "          'nwhich': 1,\n",
      "          'answer': 1,\n",
      "          'question': 1,\n",
      "          'course': 1,\n",
      "          'possessing': 1,\n",
      "          'entity': 1,\n",
      "          'scene': 1,\n",
      "          'determined': 1,\n",
      "          'whichever': 1,\n",
      "          'effects': 1,\n",
      "          'flashy': 1,\n",
      "          'work': 1,\n",
      "          'mr': 1,\n",
      "          'wants': 1,\n",
      "          'use': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'ending': 1,\n",
      "          'ridiculously': 1,\n",
      "          'neat': 1,\n",
      "          'wrapup': 1,\n",
      "          'filmmakers': 1,\n",
      "          'compound': 1,\n",
      "          'problem': 1,\n",
      "          'ultimately': 1,\n",
      "          'turning': 1,\n",
      "          'diatribe': 1,\n",
      "          'research': 1,\n",
      "          'youll': 1,\n",
      "          'find': 1,\n",
      "          'suppressed': 1,\n",
      "          'claim': 1,\n",
      "          'readily': 1,\n",
      "          'available': 1,\n",
      "          'local': 1,\n",
      "          'library': 1,\n",
      "          'ntheres': 1,\n",
      "          'catholics': 1,\n",
      "          'worry': 1,\n",
      "          'stigmatas': 1,\n",
      "          'religion': 1,\n",
      "          'offbase': 1,\n",
      "          'cant': 1,\n",
      "          'confused': 1,\n",
      "          'resembling': 1,\n",
      "          'real': 1,\n",
      "          'wanted': 1,\n",
      "          'portray': 1,\n",
      "          'mobsters': 1,\n",
      "          'gone': 1,\n",
      "          'allout': 1,\n",
      "          'equipped': 1,\n",
      "          'sharkskin': 1,\n",
      "          'suits': 1,\n",
      "          'tommy': 1,\n",
      "          'guns': 1,\n",
      "          'far': 1,\n",
      "          'care': 1,\n",
      "          'cartoonish': 1,\n",
      "          'misrepresentation': 1,\n",
      "          'considered': 1,\n",
      "          'realistic': 1,\n",
      "          'nits': 1,\n",
      "          'rare': 1,\n",
      "          'fails': 1,\n",
      "          'levels': 1,\n",
      "          'nit': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'definitely': 1,\n",
      "          'pretends': 1,\n",
      "          'tried': 1,\n",
      "          'pass': 1,\n",
      "          'absolutely': 1,\n",
      "          'attempt': 1,\n",
      "          'cover': 1,\n",
      "          'none': 1,\n",
      "          'weight': 1,\n",
      "          'initial': 1,\n",
      "          'shock': 1,\n",
      "          'seeing': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'dulled': 1,\n",
      "          'happens': 1,\n",
      "          'nlike': 1,\n",
      "          'mtv': 1,\n",
      "          'generation': 1,\n",
      "          'suffers': 1,\n",
      "          'overkill': 1,\n",
      "          'nso': 1,\n",
      "          'overdone': 1,\n",
      "          'effect': 1,\n",
      "          'leaving': 1,\n",
      "          'us': 1,\n",
      "          'pick': 1,\n",
      "          'flaws': 1,\n",
      "          'also': 1,\n",
      "          'figure': 1,\n",
      "          'quotation': 1,\n",
      "          'take': 1,\n",
      "          'earthshattering': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'hear': 1,\n",
      "          'saying': 1,\n",
      "          'sounds': 1,\n",
      "          'every': 1,\n",
      "          'fiveyearold': 1,\n",
      "          'learns': 1,\n",
      "          'day': 1,\n",
      "          'sunday': 1,\n",
      "          'flash': 1,\n",
      "          'whole': 1,\n",
      "          'ado': 1,\n",
      "          'days': 1,\n",
      "          'usually': 1,\n",
      "          'produce': 1,\n",
      "          'monstrous': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'zardoz': 9,\n",
      "          'boorman': 7,\n",
      "          'film': 6,\n",
      "          'one': 5,\n",
      "          'made': 5,\n",
      "          'like': 5,\n",
      "          'movie': 4,\n",
      "          'connery': 4,\n",
      "          'movies': 4,\n",
      "          'immortals': 4,\n",
      "          'talent': 3,\n",
      "          'nboorman': 3,\n",
      "          'world': 3,\n",
      "          'never': 3,\n",
      "          'nthe': 3,\n",
      "          'people': 3,\n",
      "          'live': 3,\n",
      "          'aged': 3,\n",
      "          'frayn': 3,\n",
      "          'flying': 3,\n",
      "          'stone': 3,\n",
      "          'head': 3,\n",
      "          'boormans': 2,\n",
      "          'takes': 2,\n",
      "          'time': 2,\n",
      "          'career': 2,\n",
      "          'two': 2,\n",
      "          'things': 2,\n",
      "          'equally': 2,\n",
      "          'ii': 2,\n",
      "          'sean': 2,\n",
      "          'although': 2,\n",
      "          'man': 2,\n",
      "          'deliverance': 2,\n",
      "          'arthurian': 2,\n",
      "          'nhis': 2,\n",
      "          'show': 2,\n",
      "          'nif': 2,\n",
      "          'anything': 2,\n",
      "          'grand': 2,\n",
      "          'around': 2,\n",
      "          'n': 2,\n",
      "          'place': 2,\n",
      "          'among': 2,\n",
      "          'even': 2,\n",
      "          'wizard': 2,\n",
      "          'oz': 2,\n",
      "          'take': 2,\n",
      "          'moved': 2,\n",
      "          'outlands': 2,\n",
      "          'vortex': 2,\n",
      "          'group': 2,\n",
      "          'life': 2,\n",
      "          'old': 2,\n",
      "          'society': 2,\n",
      "          'everyone': 2,\n",
      "          'breaks': 2,\n",
      "          'rules': 2,\n",
      "          'enough': 2,\n",
      "          'eternal': 2,\n",
      "          'none': 2,\n",
      "          'mustache': 2,\n",
      "          'giant': 2,\n",
      "          'bunch': 2,\n",
      "          'outlanders': 2,\n",
      "          'whose': 2,\n",
      "          'statements': 2,\n",
      "          'good': 2,\n",
      "          'zed': 2,\n",
      "          'back': 2,\n",
      "          'hilarious': 2,\n",
      "          'exactly': 2,\n",
      "          'didnt': 2,\n",
      "          'looking': 2,\n",
      "          'would': 2,\n",
      "          'imagine': 2,\n",
      "          'nhe': 2,\n",
      "          'thing': 2,\n",
      "          'nis': 2,\n",
      "          'john': 1,\n",
      "          'goofy': 1,\n",
      "          'cinematic': 1,\n",
      "          'debacle': 1,\n",
      "          'fundamentally': 1,\n",
      "          'misconceived': 1,\n",
      "          'laughably': 1,\n",
      "          'executed': 1,\n",
      "          'bizarre': 1,\n",
      "          'enjoyment': 1,\n",
      "          'quality': 1,\n",
      "          'nnot': 1,\n",
      "          'since': 1,\n",
      "          'rampant': 1,\n",
      "          'bumblings': 1,\n",
      "          'edward': 1,\n",
      "          'wood': 1,\n",
      "          'jr': 1,\n",
      "          'silly': 1,\n",
      "          'serious': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'woods': 1,\n",
      "          'explained': 1,\n",
      "          'money': 1,\n",
      "          'hand': 1,\n",
      "          'court': 1,\n",
      "          'excuses': 1,\n",
      "          'explain': 1,\n",
      "          'followup': 1,\n",
      "          'awful': 1,\n",
      "          'exorcist': 1,\n",
      "          'heretic': 1,\n",
      "          'obviously': 1,\n",
      "          'sizable': 1,\n",
      "          'budget': 1,\n",
      "          'matinee': 1,\n",
      "          'idol': 1,\n",
      "          'star': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'wouldnt': 1,\n",
      "          'know': 1,\n",
      "          'indeed': 1,\n",
      "          'nthis': 1,\n",
      "          'slick': 1,\n",
      "          'modern': 1,\n",
      "          'masterpiece': 1,\n",
      "          '1972': 1,\n",
      "          'well': 1,\n",
      "          'autobiographical': 1,\n",
      "          'war': 1,\n",
      "          'drama': 1,\n",
      "          'hope': 1,\n",
      "          'glory': 1,\n",
      "          '1987': 1,\n",
      "          'slightly': 1,\n",
      "          'overconceived': 1,\n",
      "          'epic': 1,\n",
      "          'excalibur': 1,\n",
      "          '1981': 1,\n",
      "          'fatherson': 1,\n",
      "          'jungle': 1,\n",
      "          'adventure': 1,\n",
      "          'emerald': 1,\n",
      "          'forest': 1,\n",
      "          '1985': 1,\n",
      "          'films': 1,\n",
      "          'lacking': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'imagination': 1,\n",
      "          'sometimes': 1,\n",
      "          'comes': 1,\n",
      "          'cost': 1,\n",
      "          'coherence': 1,\n",
      "          'taste': 1,\n",
      "          'hes': 1,\n",
      "          'ambitious': 1,\n",
      "          'succeeds': 1,\n",
      "          'fashion': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'bigger': 1,\n",
      "          'harder': 1,\n",
      "          'fall': 1,\n",
      "          'falls': 1,\n",
      "          'resounding': 1,\n",
      "          'impact': 1,\n",
      "          'heard': 1,\n",
      "          'miles': 1,\n",
      "          'meant': 1,\n",
      "          'grandest': 1,\n",
      "          'mystical': 1,\n",
      "          'obsession': 1,\n",
      "          'screenplay': 1,\n",
      "          'tries': 1,\n",
      "          'elicit': 1,\n",
      "          'mythological': 1,\n",
      "          'connotations': 1,\n",
      "          'legends': 1,\n",
      "          'book': 1,\n",
      "          'figures': 1,\n",
      "          'plot': 1,\n",
      "          'nbut': 1,\n",
      "          'despite': 1,\n",
      "          'reaching': 1,\n",
      "          'resulting': 1,\n",
      "          'unintentionally': 1,\n",
      "          'funny': 1,\n",
      "          'intentionally': 1,\n",
      "          'enigmatical': 1,\n",
      "          'compelling': 1,\n",
      "          'events': 1,\n",
      "          'distant': 1,\n",
      "          'year': 1,\n",
      "          '2293': 1,\n",
      "          'little': 1,\n",
      "          'typical': 1,\n",
      "          'futuristic': 1,\n",
      "          'movieness': 1,\n",
      "          'found': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'seems': 1,\n",
      "          'backwards': 1,\n",
      "          'riding': 1,\n",
      "          'horses': 1,\n",
      "          'shooting': 1,\n",
      "          'oldstyle': 1,\n",
      "          'guns': 1,\n",
      "          'living': 1,\n",
      "          'large': 1,\n",
      "          'victorian': 1,\n",
      "          'mansions': 1,\n",
      "          'nits': 1,\n",
      "          'middle': 1,\n",
      "          'ages': 1,\n",
      "          'space': 1,\n",
      "          'age': 1,\n",
      "          'divided': 1,\n",
      "          'distinct': 1,\n",
      "          'hemispheres': 1,\n",
      "          'poor': 1,\n",
      "          'pathetic': 1,\n",
      "          'select': 1,\n",
      "          'wealthy': 1,\n",
      "          'intellectuals': 1,\n",
      "          'comfort': 1,\n",
      "          'everlasting': 1,\n",
      "          'nthese': 1,\n",
      "          'grow': 1,\n",
      "          'engage': 1,\n",
      "          'sexual': 1,\n",
      "          'activity': 1,\n",
      "          'possess': 1,\n",
      "          'psychological': 1,\n",
      "          'powers': 1,\n",
      "          'sort': 1,\n",
      "          'quasiutopian': 1,\n",
      "          'marxist': 1,\n",
      "          'equal': 1,\n",
      "          'contributes': 1,\n",
      "          'nhowever': 1,\n",
      "          'person': 1,\n",
      "          'punished': 1,\n",
      "          'many': 1,\n",
      "          'years': 1,\n",
      "          'someone': 1,\n",
      "          'point': 1,\n",
      "          'senility': 1,\n",
      "          'imprisoned': 1,\n",
      "          'existence': 1,\n",
      "          'geriatric': 1,\n",
      "          'home': 1,\n",
      "          'others': 1,\n",
      "          'criminals': 1,\n",
      "          'arthur': 1,\n",
      "          'niall': 1,\n",
      "          'buggy': 1,\n",
      "          'squirmy': 1,\n",
      "          'goatee': 1,\n",
      "          'tattooed': 1,\n",
      "          'face': 1,\n",
      "          'charged': 1,\n",
      "          'keeping': 1,\n",
      "          'order': 1,\n",
      "          'forcing': 1,\n",
      "          'residents': 1,\n",
      "          'farm': 1,\n",
      "          'fed': 1,\n",
      "          'nlike': 1,\n",
      "          'adopts': 1,\n",
      "          'godlike': 1,\n",
      "          'status': 1,\n",
      "          'part': 1,\n",
      "          'carved': 1,\n",
      "          'menacing': 1,\n",
      "          'opening': 1,\n",
      "          'images': 1,\n",
      "          'dead': 1,\n",
      "          'giveaway': 1,\n",
      "          'lunacy': 1,\n",
      "          'come': 1,\n",
      "          'ncalling': 1,\n",
      "          'gathers': 1,\n",
      "          'makes': 1,\n",
      "          'called': 1,\n",
      "          'exterminators': 1,\n",
      "          'purpose': 1,\n",
      "          'kill': 1,\n",
      "          'cant': 1,\n",
      "          'procreate': 1,\n",
      "          'resources': 1,\n",
      "          'nfrom': 1,\n",
      "          'inside': 1,\n",
      "          'bellows': 1,\n",
      "          'seriously': 1,\n",
      "          'laughinducting': 1,\n",
      "          'gun': 1,\n",
      "          'penis': 1,\n",
      "          'evil': 1,\n",
      "          'nthat': 1,\n",
      "          'line': 1,\n",
      "          'alone': 1,\n",
      "          'worth': 1,\n",
      "          'cult': 1,\n",
      "          'following': 1,\n",
      "          'day': 1,\n",
      "          'exterminator': 1,\n",
      "          'named': 1,\n",
      "          'sneaks': 1,\n",
      "          'zardozs': 1,\n",
      "          'pushes': 1,\n",
      "          'goes': 1,\n",
      "          'nonce': 1,\n",
      "          'label': 1,\n",
      "          'brutal': 1,\n",
      "          'study': 1,\n",
      "          'lab': 1,\n",
      "          'rat': 1,\n",
      "          'taking': 1,\n",
      "          'great': 1,\n",
      "          'perverse': 1,\n",
      "          'care': 1,\n",
      "          'exploring': 1,\n",
      "          'sexuality': 1,\n",
      "          'mystery': 1,\n",
      "          'nthey': 1,\n",
      "          'seem': 1,\n",
      "          'especially': 1,\n",
      "          'interested': 1,\n",
      "          'ability': 1,\n",
      "          'gain': 1,\n",
      "          'erection': 1,\n",
      "          'downright': 1,\n",
      "          'sequence': 1,\n",
      "          'scantilyclad': 1,\n",
      "          'female': 1,\n",
      "          'scientists': 1,\n",
      "          'erotic': 1,\n",
      "          'footage': 1,\n",
      "          'video': 1,\n",
      "          'screen': 1,\n",
      "          'attempt': 1,\n",
      "          'determine': 1,\n",
      "          'gets': 1,\n",
      "          'worked': 1,\n",
      "          'ni': 1,\n",
      "          'say': 1,\n",
      "          'nit': 1,\n",
      "          'obvious': 1,\n",
      "          'intend': 1,\n",
      "          'straightest': 1,\n",
      "          'faces': 1,\n",
      "          'hard': 1,\n",
      "          'believing': 1,\n",
      "          'production': 1,\n",
      "          'forward': 1,\n",
      "          'get': 1,\n",
      "          'slightest': 1,\n",
      "          'inkling': 1,\n",
      "          'patently': 1,\n",
      "          'ridiculous': 1,\n",
      "          'becoming': 1,\n",
      "          'njust': 1,\n",
      "          'give': 1,\n",
      "          'giggles': 1,\n",
      "          'spends': 1,\n",
      "          'running': 1,\n",
      "          'red': 1,\n",
      "          'loin': 1,\n",
      "          'cloth': 1,\n",
      "          'resembles': 1,\n",
      "          'diaper': 1,\n",
      "          'mane': 1,\n",
      "          'hair': 1,\n",
      "          'braided': 1,\n",
      "          'halfway': 1,\n",
      "          'wyatt': 1,\n",
      "          'earpstyle': 1,\n",
      "          'handlebar': 1,\n",
      "          'pair': 1,\n",
      "          'thighhigh': 1,\n",
      "          'patent': 1,\n",
      "          'leather': 1,\n",
      "          'boots': 1,\n",
      "          'look': 1,\n",
      "          'appropriate': 1,\n",
      "          'cheap': 1,\n",
      "          'hollywood': 1,\n",
      "          'hooker': 1,\n",
      "          'right': 1,\n",
      "          'critical': 1,\n",
      "          'financial': 1,\n",
      "          'success': 1,\n",
      "          'reason': 1,\n",
      "          'studio': 1,\n",
      "          'greenlight': 1,\n",
      "          'effort': 1,\n",
      "          'attracted': 1,\n",
      "          'rich': 1,\n",
      "          'sides': 1,\n",
      "          'camera': 1,\n",
      "          'including': 1,\n",
      "          'cinematographer': 1,\n",
      "          'geoffrey': 1,\n",
      "          'unsworth': 1,\n",
      "          '2001': 1,\n",
      "          'striking': 1,\n",
      "          'visuals': 1,\n",
      "          'besides': 1,\n",
      "          'inadvertent': 1,\n",
      "          'humor': 1,\n",
      "          'nsean': 1,\n",
      "          'last': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          '1971': 1,\n",
      "          'perhaps': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'got': 1,\n",
      "          'wonder': 1,\n",
      "          'end': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'intended': 1,\n",
      "          'make': 1,\n",
      "          'treatise': 1,\n",
      "          'infallibility': 1,\n",
      "          'condemnation': 1,\n",
      "          'consider': 1,\n",
      "          'growing': 1,\n",
      "          'bad': 1,\n",
      "          'social': 1,\n",
      "          'statement': 1,\n",
      "          'something': 1,\n",
      "          'inherent': 1,\n",
      "          'negativity': 1,\n",
      "          'class': 1,\n",
      "          'distinctions': 1,\n",
      "          'violence': 1,\n",
      "          'creates': 1,\n",
      "          'nkarl': 1,\n",
      "          'marx': 1,\n",
      "          'might': 1,\n",
      "          'timothy': 1,\n",
      "          'leary': 1,\n",
      "          'ncome': 1,\n",
      "          'think': 1,\n",
      "          'maybe': 1,\n",
      "          'extended': 1,\n",
      "          'lsd': 1,\n",
      "          'trip': 1,\n",
      "          'npeople': 1,\n",
      "          'high': 1,\n",
      "          'illicit': 1,\n",
      "          'substances': 1,\n",
      "          'ones': 1,\n",
      "          'enjoying': 1,\n",
      "          'asinine': 1,\n",
      "          'silliness': 1,\n",
      "          'completely': 1,\n",
      "          'unintentional': 1,\n",
      "          'comedy': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'kids': 6,\n",
      "          'nthe': 5,\n",
      "          'show': 3,\n",
      "          'film': 3,\n",
      "          'tv': 3,\n",
      "          'make': 3,\n",
      "          'drug': 3,\n",
      "          'hall': 2,\n",
      "          'watching': 2,\n",
      "          'big': 2,\n",
      "          'go': 2,\n",
      "          'makes': 2,\n",
      "          'candy': 2,\n",
      "          'story': 2,\n",
      "          'new': 2,\n",
      "          'nin': 2,\n",
      "          'several': 2,\n",
      "          'cooper': 2,\n",
      "          'roritor': 2,\n",
      "          'best': 2,\n",
      "          'laughs': 2,\n",
      "          'enough': 2,\n",
      "          'one': 2,\n",
      "          'thompsons': 2,\n",
      "          'acquired': 1,\n",
      "          'taste': 1,\n",
      "          'nit': 1,\n",
      "          'took': 1,\n",
      "          'least': 1,\n",
      "          'season': 1,\n",
      "          'hbo': 1,\n",
      "          'became': 1,\n",
      "          'believer': 1,\n",
      "          'nmaybe': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'movies': 1,\n",
      "          'would': 1,\n",
      "          'grow': 1,\n",
      "          'screen': 1,\n",
      "          'nmy': 1,\n",
      "          'recommendation': 1,\n",
      "          'unless': 1,\n",
      "          'fan': 1,\n",
      "          'skip': 1,\n",
      "          'nas': 1,\n",
      "          'firstand': 1,\n",
      "          'likely': 1,\n",
      "          'onlyattempt': 1,\n",
      "          'full': 1,\n",
      "          'length': 1,\n",
      "          'lacks': 1,\n",
      "          'qualities': 1,\n",
      "          'made': 1,\n",
      "          'comedy': 1,\n",
      "          'work': 1,\n",
      "          'na': 1,\n",
      "          'bigbudget': 1,\n",
      "          'glossy': 1,\n",
      "          'production': 1,\n",
      "          'lack': 1,\n",
      "          'spontaneity': 1,\n",
      "          'permeates': 1,\n",
      "          'motions': 1,\n",
      "          'get': 1,\n",
      "          'feeling': 1,\n",
      "          'arent': 1,\n",
      "          'really': 1,\n",
      "          'fun': 1,\n",
      "          'nand': 1,\n",
      "          'difficult': 1,\n",
      "          'audience': 1,\n",
      "          'enjoy': 1,\n",
      "          'antics': 1,\n",
      "          'nbrain': 1,\n",
      "          'bunch': 1,\n",
      "          'skits': 1,\n",
      "          'tied': 1,\n",
      "          'together': 1,\n",
      "          'pharmaceutical': 1,\n",
      "          'company': 1,\n",
      "          'develops': 1,\n",
      "          'cure': 1,\n",
      "          'depression': 1,\n",
      "          'typical': 1,\n",
      "          'sketchcomedy': 1,\n",
      "          'tradition': 1,\n",
      "          'actor': 1,\n",
      "          'plays': 1,\n",
      "          'roles': 1,\n",
      "          'ndoctor': 1,\n",
      "          'kevin': 1,\n",
      "          'mcdonald': 1,\n",
      "          'team': 1,\n",
      "          'create': 1,\n",
      "          'nthen': 1,\n",
      "          'pressure': 1,\n",
      "          'mark': 1,\n",
      "          'mckinney': 1,\n",
      "          'founder': 1,\n",
      "          'president': 1,\n",
      "          'pharmaceuticals': 1,\n",
      "          'dr': 1,\n",
      "          'releases': 1,\n",
      "          'marketplace': 1,\n",
      "          'ensuing': 1,\n",
      "          'distribution': 1,\n",
      "          'happy': 1,\n",
      "          'pill': 1,\n",
      "          'throughout': 1,\n",
      "          'populace': 1,\n",
      "          'drives': 1,\n",
      "          'rest': 1,\n",
      "          'nat': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'brain': 1,\n",
      "          'still': 1,\n",
      "          'seems': 1,\n",
      "          'long': 1,\n",
      "          'thing': 1,\n",
      "          'sketch': 1,\n",
      "          'comedyand': 1,\n",
      "          'exceptionis': 1,\n",
      "          'ability': 1,\n",
      "          'quickly': 1,\n",
      "          'deliver': 1,\n",
      "          'another': 1,\n",
      "          'quick': 1,\n",
      "          'skit': 1,\n",
      "          'nbut': 1,\n",
      "          'additional': 1,\n",
      "          'setup': 1,\n",
      "          'necessary': 1,\n",
      "          'telling': 1,\n",
      "          'longer': 1,\n",
      "          'coherent': 1,\n",
      "          'dont': 1,\n",
      "          'come': 1,\n",
      "          'fast': 1,\n",
      "          'nstrangely': 1,\n",
      "          'even': 1,\n",
      "          'tame': 1,\n",
      "          'cable': 1,\n",
      "          'movie': 1,\n",
      "          'attempts': 1,\n",
      "          'risquenessmostly': 1,\n",
      "          'pointing': 1,\n",
      "          'gayness': 1,\n",
      "          'scott': 1,\n",
      "          'charactersbut': 1,\n",
      "          'seem': 1,\n",
      "          'almost': 1,\n",
      "          'forced': 1,\n",
      "          'live': 1,\n",
      "          'pg': 1,\n",
      "          'rating': 1,\n",
      "          'none': 1,\n",
      "          'bits': 1,\n",
      "          'though': 1,\n",
      "          'use': 1,\n",
      "          'naked': 1,\n",
      "          'buttocks': 1,\n",
      "          'see': 1,\n",
      "          'charging': 1,\n",
      "          'battlegoing': 1,\n",
      "          'sex': 1,\n",
      "          'guys': 1,\n",
      "          'taking': 1,\n",
      "          'shower': 1,\n",
      "          'classic': 1,\n",
      "          'genre': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'pulled': 1,\n",
      "          'delicate': 1,\n",
      "          'balancing': 1,\n",
      "          'act': 1,\n",
      "          'plot': 1,\n",
      "          'advancement': 1,\n",
      "          'punchline': 1,\n",
      "          'delivery': 1,\n",
      "          'holy': 1,\n",
      "          'grail': 1,\n",
      "          'unfortunately': 1,\n",
      "          'task': 1,\n",
      "          'nthere': 1,\n",
      "          'amusing': 1,\n",
      "          'moments': 1,\n",
      "          'sure': 1,\n",
      "          'experience': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'carpenters': 5,\n",
      "          'vampires': 5,\n",
      "          'john': 4,\n",
      "          'carpenter': 4,\n",
      "          'story': 4,\n",
      "          'time': 3,\n",
      "          'film': 3,\n",
      "          'made': 3,\n",
      "          'even': 3,\n",
      "          'like': 3,\n",
      "          'crow': 3,\n",
      "          'vampire': 3,\n",
      "          'one': 3,\n",
      "          'nand': 3,\n",
      "          'horror': 2,\n",
      "          'halloween': 2,\n",
      "          'good': 2,\n",
      "          '1995': 2,\n",
      "          'something': 2,\n",
      "          'lost': 2,\n",
      "          'sequel': 2,\n",
      "          'nit': 2,\n",
      "          'filmed': 2,\n",
      "          'nthe': 2,\n",
      "          'woods': 2,\n",
      "          'along': 2,\n",
      "          'baldwin': 2,\n",
      "          'katrina': 2,\n",
      "          'sheryl': 2,\n",
      "          'lee': 2,\n",
      "          'attack': 2,\n",
      "          'valek': 2,\n",
      "          'bitten': 2,\n",
      "          'couple': 2,\n",
      "          'many': 2,\n",
      "          'seen': 2,\n",
      "          'better': 2,\n",
      "          'isnt': 2,\n",
      "          'work': 2,\n",
      "          'nthere': 2,\n",
      "          'characters': 2,\n",
      "          'excitement': 2,\n",
      "          'said': 2,\n",
      "          'great': 1,\n",
      "          'director': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'best': 1,\n",
      "          '1978s': 1,\n",
      "          'masterpiece': 1,\n",
      "          'also': 1,\n",
      "          '1980s': 1,\n",
      "          'fog': 1,\n",
      "          '1987s': 1,\n",
      "          'underrated': 1,\n",
      "          'prince': 1,\n",
      "          'darkness': 1,\n",
      "          'nheck': 1,\n",
      "          'mouth': 1,\n",
      "          'madness': 1,\n",
      "          'nbut': 1,\n",
      "          'terribly': 1,\n",
      "          'wrong': 1,\n",
      "          'happened': 1,\n",
      "          '1992': 1,\n",
      "          'terrible': 1,\n",
      "          'comedy': 1,\n",
      "          'memoirs': 1,\n",
      "          'invisible': 1,\n",
      "          'man': 1,\n",
      "          'nsomehow': 1,\n",
      "          'touch': 1,\n",
      "          'junk': 1,\n",
      "          'failed': 1,\n",
      "          'remake': 1,\n",
      "          'village': 1,\n",
      "          'damned': 1,\n",
      "          'uninspired': 1,\n",
      "          '1996': 1,\n",
      "          'escape': 1,\n",
      "          'l': 1,\n",
      "          'movies': 1,\n",
      "          'however': 1,\n",
      "          'look': 1,\n",
      "          'cinematic': 1,\n",
      "          'works': 1,\n",
      "          'art': 1,\n",
      "          'compared': 1,\n",
      "          'latest': 1,\n",
      "          'nif': 1,\n",
      "          'definately': 1,\n",
      "          'wouldnt': 1,\n",
      "          'want': 1,\n",
      "          'put': 1,\n",
      "          'name': 1,\n",
      "          'title': 1,\n",
      "          'sad': 1,\n",
      "          'state': 1,\n",
      "          'affairs': 1,\n",
      "          'make': 1,\n",
      "          'misguided': 1,\n",
      "          'flatly': 1,\n",
      "          'written': 1,\n",
      "          'simple': 1,\n",
      "          'njack': 1,\n",
      "          'james': 1,\n",
      "          'hunter': 1,\n",
      "          'partners': 1,\n",
      "          'montoya': 1,\n",
      "          'daniel': 1,\n",
      "          'prostitute': 1,\n",
      "          'survives': 1,\n",
      "          'master': 1,\n",
      "          'thomas': 1,\n",
      "          'ian': 1,\n",
      "          'griffith': 1,\n",
      "          'nsince': 1,\n",
      "          'previously': 1,\n",
      "          'takes': 1,\n",
      "          'anyone': 1,\n",
      "          'becomes': 1,\n",
      "          'telepathically': 1,\n",
      "          'linked': 1,\n",
      "          'turn': 1,\n",
      "          'days': 1,\n",
      "          'later': 1,\n",
      "          'hoping': 1,\n",
      "          'find': 1,\n",
      "          'help': 1,\n",
      "          'seems': 1,\n",
      "          'valeks': 1,\n",
      "          'mission': 1,\n",
      "          'steal': 1,\n",
      "          'black': 1,\n",
      "          'wooden': 1,\n",
      "          'cross': 1,\n",
      "          'roman': 1,\n",
      "          'catholic': 1,\n",
      "          'church': 1,\n",
      "          'enable': 1,\n",
      "          'become': 1,\n",
      "          'powerful': 1,\n",
      "          'sunlight': 1,\n",
      "          'destroy': 1,\n",
      "          'nmy': 1,\n",
      "          'question': 1,\n",
      "          'played': 1,\n",
      "          'nwell': 1,\n",
      "          'answer': 1,\n",
      "          'times': 1,\n",
      "          'version': 1,\n",
      "          'n': 1,\n",
      "          'sadly': 1,\n",
      "          'enough': 1,\n",
      "          'unscary': 1,\n",
      "          'films': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'suspenseful': 1,\n",
      "          'moment': 1,\n",
      "          'whole': 1,\n",
      "          '105minute': 1,\n",
      "          'running': 1,\n",
      "          'nonstop': 1,\n",
      "          'sequences': 1,\n",
      "          'stylelessly': 1,\n",
      "          'without': 1,\n",
      "          'interesting': 1,\n",
      "          'camera': 1,\n",
      "          'usually': 1,\n",
      "          'trademark': 1,\n",
      "          'come': 1,\n",
      "          'screenplay': 1,\n",
      "          'far': 1,\n",
      "          'tell': 1,\n",
      "          'nearly': 1,\n",
      "          'nonexistent': 1,\n",
      "          'development': 1,\n",
      "          'attempt': 1,\n",
      "          'flesh': 1,\n",
      "          'njames': 1,\n",
      "          'actor': 1,\n",
      "          'nothing': 1,\n",
      "          'say': 1,\n",
      "          'pseudo': 1,\n",
      "          'clever': 1,\n",
      "          'lines': 1,\n",
      "          'dialogue': 1,\n",
      "          'ndaniel': 1,\n",
      "          'potential': 1,\n",
      "          'character': 1,\n",
      "          'comes': 1,\n",
      "          'dense': 1,\n",
      "          'faring': 1,\n",
      "          'much': 1,\n",
      "          'laura': 1,\n",
      "          'palmer': 1,\n",
      "          'twin': 1,\n",
      "          'peaks': 1,\n",
      "          'female': 1,\n",
      "          'plays': 1,\n",
      "          'offensive': 1,\n",
      "          'stereotypical': 1,\n",
      "          'whore': 1,\n",
      "          'ounce': 1,\n",
      "          'intelligence': 1,\n",
      "          'vamires': 1,\n",
      "          'disheartening': 1,\n",
      "          'coming': 1,\n",
      "          'exfan': 1,\n",
      "          'nhe': 1,\n",
      "          'turned': 1,\n",
      "          'directing': 1,\n",
      "          'h20': 1,\n",
      "          'couldnt': 1,\n",
      "          'yet': 1,\n",
      "          'asked': 1,\n",
      "          'would': 1,\n",
      "          'happy': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'thats': 1,\n",
      "          'definite': 1,\n",
      "          'sign': 1,\n",
      "          'finally': 1,\n",
      "          'trace': 1,\n",
      "          'lasting': 1,\n",
      "          'talent': 1,\n",
      "          'mention': 1,\n",
      "          'significant': 1,\n",
      "          'number': 1,\n",
      "          'iq': 1,\n",
      "          'points': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'guys': 5,\n",
      "          'roxbury': 5,\n",
      "          'nthe': 5,\n",
      "          'one': 4,\n",
      "          'characters': 4,\n",
      "          'bob': 3,\n",
      "          'heads': 3,\n",
      "          'love': 3,\n",
      "          'sketch': 3,\n",
      "          'would': 3,\n",
      "          'skits': 3,\n",
      "          'steve': 3,\n",
      "          'nthere': 3,\n",
      "          'film': 3,\n",
      "          'two': 2,\n",
      "          'nightclub': 2,\n",
      "          'enough': 2,\n",
      "          '_saturday_night_live_': 2,\n",
      "          'presumably': 2,\n",
      "          'takes': 2,\n",
      "          '_roxbury_': 2,\n",
      "          'doug': 2,\n",
      "          'kattan': 2,\n",
      "          'ferrell': 2,\n",
      "          'nthat': 2,\n",
      "          'fact': 2,\n",
      "          'films': 2,\n",
      "          'new': 2,\n",
      "          'doors': 2,\n",
      "          'thats': 2,\n",
      "          'comic': 2,\n",
      "          'run': 2,\n",
      "          'rather': 2,\n",
      "          'club': 2,\n",
      "          'father': 2,\n",
      "          'big': 2,\n",
      "          'people': 2,\n",
      "          'seen': 2,\n",
      "          'lot': 2,\n",
      "          'lack': 2,\n",
      "          'inspiration': 2,\n",
      "          'nafter': 2,\n",
      "          'watching': 2,\n",
      "          'party': 1,\n",
      "          'haddaways': 1,\n",
      "          'dance': 1,\n",
      "          'hit': 1,\n",
      "          'nwhile': 1,\n",
      "          'getting': 1,\n",
      "          'trouble': 1,\n",
      "          'nits': 1,\n",
      "          'barely': 1,\n",
      "          'sustain': 1,\n",
      "          'threeminute': 1,\n",
      "          'skit': 1,\n",
      "          '_snl_': 1,\n",
      "          'producer': 1,\n",
      "          'lorne': 1,\n",
      "          'michaels': 1,\n",
      "          '_clueless_': 1,\n",
      "          'creator': 1,\n",
      "          'amy': 1,\n",
      "          'heckerling': 1,\n",
      "          'paramount': 1,\n",
      "          'pictures': 1,\n",
      "          'saw': 1,\n",
      "          'something': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'television': 1,\n",
      "          'institutions': 1,\n",
      "          'recurring': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'feature': 1,\n",
      "          'nemphasis': 1,\n",
      "          'word': 1,\n",
      "          'n_a_night_at_the_roxbury_': 1,\n",
      "          'alreadythin': 1,\n",
      "          'concept': 1,\n",
      "          'tediously': 1,\n",
      "          'stretches': 1,\n",
      "          'far': 1,\n",
      "          'beyond': 1,\n",
      "          'breaking': 1,\n",
      "          'pointand': 1,\n",
      "          'viewers': 1,\n",
      "          'patience': 1,\n",
      "          'levels': 1,\n",
      "          'first': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'play': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'original': 1,\n",
      "          'nwith': 1,\n",
      "          'nblaring': 1,\n",
      "          'soundtrack': 1,\n",
      "          'brotherly': 1,\n",
      "          'duo': 1,\n",
      "          'butabi': 1,\n",
      "          'chris': 1,\n",
      "          'scope': 1,\n",
      "          'hotties': 1,\n",
      "          'clubs': 1,\n",
      "          'bump': 1,\n",
      "          'select': 1,\n",
      "          'violent': 1,\n",
      "          'pelvic': 1,\n",
      "          'thrusts': 1,\n",
      "          'crucial': 1,\n",
      "          'difference': 1,\n",
      "          'howeverthese': 1,\n",
      "          'speak': 1,\n",
      "          'little': 1,\n",
      "          'used': 1,\n",
      "          'justification': 1,\n",
      "          'existence': 1,\n",
      "          'butabis': 1,\n",
      "          'newfound': 1,\n",
      "          'capacity': 1,\n",
      "          'speech': 1,\n",
      "          'open': 1,\n",
      "          'whole': 1,\n",
      "          'set': 1,\n",
      "          'opened': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'fortenberry': 1,\n",
      "          'screenwriters': 1,\n",
      "          'koren': 1,\n",
      "          'sure': 1,\n",
      "          'lead': 1,\n",
      "          'dead': 1,\n",
      "          'ends': 1,\n",
      "          'story': 1,\n",
      "          'per': 1,\n",
      "          'se': 1,\n",
      "          'loosely': 1,\n",
      "          'structured': 1,\n",
      "          'linked': 1,\n",
      "          'series': 1,\n",
      "          'subplots': 1,\n",
      "          'brothers': 1,\n",
      "          'literally': 1,\n",
      "          'get': 1,\n",
      "          'car': 1,\n",
      "          'richard': 1,\n",
      "          'grieco': 1,\n",
      "          '_21_jump_street_': 1,\n",
      "          'fame': 1,\n",
      "          'gain': 1,\n",
      "          'entrance': 1,\n",
      "          'exclusive': 1,\n",
      "          'meet': 1,\n",
      "          'hotshot': 1,\n",
      "          'owner': 1,\n",
      "          'chazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'conspicuously': 1,\n",
      "          'uncreditedcan': 1,\n",
      "          'blame': 1,\n",
      "          'interest': 1,\n",
      "          'idea': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'bros': 1,\n",
      "          'overbearing': 1,\n",
      "          'dan': 1,\n",
      "          'hedaya': 1,\n",
      "          'wants': 1,\n",
      "          'stop': 1,\n",
      "          'clubbing': 1,\n",
      "          'nwhen': 1,\n",
      "          'refuses': 1,\n",
      "          'dimwitted': 1,\n",
      "          'obeys': 1,\n",
      "          'rift': 1,\n",
      "          'created': 1,\n",
      "          'narrative': 1,\n",
      "          'messiness': 1,\n",
      "          'forgivable': 1,\n",
      "          'went': 1,\n",
      "          'slightest': 1,\n",
      "          'bit': 1,\n",
      "          'funny': 1,\n",
      "          'virtually': 1,\n",
      "          'none': 1,\n",
      "          'assembled': 1,\n",
      "          'press': 1,\n",
      "          'audience': 1,\n",
      "          'mostly': 1,\n",
      "          'sat': 1,\n",
      "          'stonily': 1,\n",
      "          'silent': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'exception': 1,\n",
      "          'laugh': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'nalas': 1,\n",
      "          'jokea': 1,\n",
      "          'lazy': 1,\n",
      "          'takeoff': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          '_jerry_maguire_will': 1,\n",
      "          'strike': 1,\n",
      "          'chord': 1,\n",
      "          'ngranted': 1,\n",
      "          '_have_': 1,\n",
      "          '_jerry_maguire_': 1,\n",
      "          'best': 1,\n",
      "          'joke': 1,\n",
      "          'completely': 1,\n",
      "          'dependent': 1,\n",
      "          'ones': 1,\n",
      "          'familiarity': 1,\n",
      "          'another': 1,\n",
      "          'says': 1,\n",
      "          '_roxbury_s': 1,\n",
      "          'traced': 1,\n",
      "          'back': 1,\n",
      "          'insipid': 1,\n",
      "          'nlike': 1,\n",
      "          'many': 1,\n",
      "          'current': 1,\n",
      "          'incarnation': 1,\n",
      "          'onejoke': 1,\n",
      "          'never': 1,\n",
      "          'suggests': 1,\n",
      "          'life': 1,\n",
      "          'survive': 1,\n",
      "          'outside': 1,\n",
      "          'context': 1,\n",
      "          'snl': 1,\n",
      "          'come': 1,\n",
      "          'away': 1,\n",
      "          'nbump': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'women': 1,\n",
      "          '_a_night_at_the_roxbury_': 1,\n",
      "          'youll': 1,\n",
      "          'left': 1,\n",
      "          'exactly': 1,\n",
      "          'nneg': 1}),\n",
      " Counter({'comic': 5,\n",
      "          'film': 5,\n",
      "          'like': 4,\n",
      "          'say': 4,\n",
      "          'nthe': 4,\n",
      "          'dont': 4,\n",
      "          'book': 3,\n",
      "          'moore': 3,\n",
      "          'campbell': 3,\n",
      "          'ripper': 3,\n",
      "          'hells': 3,\n",
      "          'world': 2,\n",
      "          'never': 2,\n",
      "          'really': 2,\n",
      "          'hell': 2,\n",
      "          'whole': 2,\n",
      "          'called': 2,\n",
      "          'jack': 2,\n",
      "          'starting': 2,\n",
      "          'little': 2,\n",
      "          'nin': 2,\n",
      "          'get': 2,\n",
      "          'hughes': 2,\n",
      "          'direct': 2,\n",
      "          'seems': 2,\n",
      "          'ghetto': 2,\n",
      "          'whitechapel': 2,\n",
      "          'end': 2,\n",
      "          'nits': 2,\n",
      "          'place': 2,\n",
      "          'first': 2,\n",
      "          'turns': 2,\n",
      "          'peter': 2,\n",
      "          'enough': 2,\n",
      "          'depp': 2,\n",
      "          'graham': 2,\n",
      "          'even': 2,\n",
      "          'ni': 2,\n",
      "          'identity': 2,\n",
      "          'good': 2,\n",
      "          'make': 2,\n",
      "          'see': 2,\n",
      "          'wasnt': 2,\n",
      "          'strong': 2,\n",
      "          'accent': 2,\n",
      "          'films': 1,\n",
      "          'adapted': 1,\n",
      "          'books': 1,\n",
      "          'plenty': 1,\n",
      "          'success': 1,\n",
      "          'whether': 1,\n",
      "          'theyre': 1,\n",
      "          'superheroes': 1,\n",
      "          'batman': 1,\n",
      "          'superman': 1,\n",
      "          'spawn': 1,\n",
      "          'geared': 1,\n",
      "          'toward': 1,\n",
      "          'kids': 1,\n",
      "          'casper': 1,\n",
      "          'arthouse': 1,\n",
      "          'crowd': 1,\n",
      "          'ghost': 1,\n",
      "          'theres': 1,\n",
      "          'nfor': 1,\n",
      "          'starters': 1,\n",
      "          'created': 1,\n",
      "          'alan': 1,\n",
      "          'eddie': 1,\n",
      "          'brought': 1,\n",
      "          'medium': 1,\n",
      "          'new': 1,\n",
      "          'level': 1,\n",
      "          'mid': 1,\n",
      "          '80s': 1,\n",
      "          '12part': 1,\n",
      "          'series': 1,\n",
      "          'watchmen': 1,\n",
      "          'nto': 1,\n",
      "          'thoroughly': 1,\n",
      "          'researched': 1,\n",
      "          'subject': 1,\n",
      "          'would': 1,\n",
      "          'saying': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'look': 1,\n",
      "          'odd': 1,\n",
      "          'graphic': 1,\n",
      "          'novel': 1,\n",
      "          '500': 1,\n",
      "          'pages': 1,\n",
      "          'long': 1,\n",
      "          'includes': 1,\n",
      "          'nearly': 1,\n",
      "          '30': 1,\n",
      "          'consist': 1,\n",
      "          'nothing': 1,\n",
      "          'footnotes': 1,\n",
      "          'words': 1,\n",
      "          'dismiss': 1,\n",
      "          'source': 1,\n",
      "          'nif': 1,\n",
      "          'past': 1,\n",
      "          'thing': 1,\n",
      "          'might': 1,\n",
      "          'find': 1,\n",
      "          'another': 1,\n",
      "          'stumbling': 1,\n",
      "          'block': 1,\n",
      "          'directors': 1,\n",
      "          'albert': 1,\n",
      "          'allen': 1,\n",
      "          'ngetting': 1,\n",
      "          'brothers': 1,\n",
      "          'almost': 1,\n",
      "          'ludicrous': 1,\n",
      "          'casting': 1,\n",
      "          'carrot': 1,\n",
      "          'top': 1,\n",
      "          'well': 1,\n",
      "          'anything': 1,\n",
      "          'riddle': 1,\n",
      "          'better': 1,\n",
      "          'thats': 1,\n",
      "          'set': 1,\n",
      "          'features': 1,\n",
      "          'violent': 1,\n",
      "          'street': 1,\n",
      "          'crime': 1,\n",
      "          'mad': 1,\n",
      "          'geniuses': 1,\n",
      "          'behind': 1,\n",
      "          'menace': 1,\n",
      "          'ii': 1,\n",
      "          'society': 1,\n",
      "          'question': 1,\n",
      "          'course': 1,\n",
      "          '1888': 1,\n",
      "          'londons': 1,\n",
      "          'east': 1,\n",
      "          'filthy': 1,\n",
      "          'sooty': 1,\n",
      "          'whores': 1,\n",
      "          'unfortunates': 1,\n",
      "          'nervous': 1,\n",
      "          'mysterious': 1,\n",
      "          'psychopath': 1,\n",
      "          'carving': 1,\n",
      "          'profession': 1,\n",
      "          'surgical': 1,\n",
      "          'precision': 1,\n",
      "          'nwhen': 1,\n",
      "          'stiff': 1,\n",
      "          'copper': 1,\n",
      "          'godley': 1,\n",
      "          'robbie': 1,\n",
      "          'coltrane': 1,\n",
      "          'calls': 1,\n",
      "          'inspector': 1,\n",
      "          'frederick': 1,\n",
      "          'abberline': 1,\n",
      "          'johnny': 1,\n",
      "          'blow': 1,\n",
      "          'crack': 1,\n",
      "          'case': 1,\n",
      "          'nabberline': 1,\n",
      "          'widower': 1,\n",
      "          'prophetic': 1,\n",
      "          'dreams': 1,\n",
      "          'unsuccessfully': 1,\n",
      "          'tries': 1,\n",
      "          'quell': 1,\n",
      "          'copious': 1,\n",
      "          'amounts': 1,\n",
      "          'absinthe': 1,\n",
      "          'opium': 1,\n",
      "          'nupon': 1,\n",
      "          'arriving': 1,\n",
      "          'befriends': 1,\n",
      "          'unfortunate': 1,\n",
      "          'named': 1,\n",
      "          'mary': 1,\n",
      "          'kelly': 1,\n",
      "          'heather': 1,\n",
      "          'isnt': 1,\n",
      "          'proceeds': 1,\n",
      "          'investigate': 1,\n",
      "          'horribly': 1,\n",
      "          'gruesome': 1,\n",
      "          'crimes': 1,\n",
      "          'police': 1,\n",
      "          'surgeon': 1,\n",
      "          'cant': 1,\n",
      "          'stomach': 1,\n",
      "          'think': 1,\n",
      "          'anyone': 1,\n",
      "          'needs': 1,\n",
      "          'briefed': 1,\n",
      "          'wont': 1,\n",
      "          'go': 1,\n",
      "          'particulars': 1,\n",
      "          'unique': 1,\n",
      "          'interesting': 1,\n",
      "          'theory': 1,\n",
      "          'killer': 1,\n",
      "          'reasons': 1,\n",
      "          'chooses': 1,\n",
      "          'slay': 1,\n",
      "          'bother': 1,\n",
      "          'cloaking': 1,\n",
      "          'screenwriters': 1,\n",
      "          'terry': 1,\n",
      "          'hayes': 1,\n",
      "          'vertical': 1,\n",
      "          'limit': 1,\n",
      "          'rafael': 1,\n",
      "          'yglesias': 1,\n",
      "          'les': 1,\n",
      "          'mis': 1,\n",
      "          'rables': 1,\n",
      "          'job': 1,\n",
      "          'keeping': 1,\n",
      "          'hidden': 1,\n",
      "          'viewers': 1,\n",
      "          'funny': 1,\n",
      "          'watch': 1,\n",
      "          'locals': 1,\n",
      "          'blindly': 1,\n",
      "          'point': 1,\n",
      "          'finger': 1,\n",
      "          'blame': 1,\n",
      "          'jews': 1,\n",
      "          'indians': 1,\n",
      "          'englishman': 1,\n",
      "          'could': 1,\n",
      "          'capable': 1,\n",
      "          'committing': 1,\n",
      "          'ghastly': 1,\n",
      "          'acts': 1,\n",
      "          'nand': 1,\n",
      "          'ending': 1,\n",
      "          'whistling': 1,\n",
      "          'stonecutters': 1,\n",
      "          'song': 1,\n",
      "          'simpsons': 1,\n",
      "          'days': 1,\n",
      "          'holds': 1,\n",
      "          'back': 1,\n",
      "          'electric': 1,\n",
      "          'carwho': 1,\n",
      "          'made': 1,\n",
      "          'steve': 1,\n",
      "          'guttenberg': 1,\n",
      "          'star': 1,\n",
      "          'ndont': 1,\n",
      "          'worry': 1,\n",
      "          'itll': 1,\n",
      "          'sense': 1,\n",
      "          'nnow': 1,\n",
      "          'onto': 1,\n",
      "          'appearance': 1,\n",
      "          'certainly': 1,\n",
      "          'dark': 1,\n",
      "          'bleak': 1,\n",
      "          'surprising': 1,\n",
      "          'much': 1,\n",
      "          'looks': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'planet': 1,\n",
      "          'apes': 1,\n",
      "          'times': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          '2': 1,\n",
      "          'print': 1,\n",
      "          'saw': 1,\n",
      "          'completely': 1,\n",
      "          'finished': 1,\n",
      "          'color': 1,\n",
      "          'music': 1,\n",
      "          'finalized': 1,\n",
      "          'comments': 1,\n",
      "          'marilyn': 1,\n",
      "          'manson': 1,\n",
      "          'cinematographer': 1,\n",
      "          'deming': 1,\n",
      "          'word': 1,\n",
      "          'ably': 1,\n",
      "          'captures': 1,\n",
      "          'dreariness': 1,\n",
      "          'victorianera': 1,\n",
      "          'london': 1,\n",
      "          'helped': 1,\n",
      "          'flashy': 1,\n",
      "          'killing': 1,\n",
      "          'scenes': 1,\n",
      "          'remind': 1,\n",
      "          'crazy': 1,\n",
      "          'flashbacks': 1,\n",
      "          'twin': 1,\n",
      "          'peaks': 1,\n",
      "          'though': 1,\n",
      "          'violence': 1,\n",
      "          'pales': 1,\n",
      "          'comparison': 1,\n",
      "          'blackandwhite': 1,\n",
      "          'noscar': 1,\n",
      "          'winner': 1,\n",
      "          'martin': 1,\n",
      "          'childs': 1,\n",
      "          'shakespeare': 1,\n",
      "          'love': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'original': 1,\n",
      "          'prague': 1,\n",
      "          'surroundings': 1,\n",
      "          'one': 1,\n",
      "          'creepy': 1,\n",
      "          'neven': 1,\n",
      "          'acting': 1,\n",
      "          'solid': 1,\n",
      "          'dreamy': 1,\n",
      "          'turning': 1,\n",
      "          'typically': 1,\n",
      "          'performance': 1,\n",
      "          'deftly': 1,\n",
      "          'handling': 1,\n",
      "          'british': 1,\n",
      "          'nians': 1,\n",
      "          'holm': 1,\n",
      "          'joe': 1,\n",
      "          'goulds': 1,\n",
      "          'secret': 1,\n",
      "          'richardson': 1,\n",
      "          '102': 1,\n",
      "          'dalmatians': 1,\n",
      "          'log': 1,\n",
      "          'great': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'big': 1,\n",
      "          'surprise': 1,\n",
      "          'cringed': 1,\n",
      "          'time': 1,\n",
      "          'opened': 1,\n",
      "          'mouth': 1,\n",
      "          'imagining': 1,\n",
      "          'attempt': 1,\n",
      "          'irish': 1,\n",
      "          'actually': 1,\n",
      "          'half': 1,\n",
      "          'bad': 1,\n",
      "          'however': 1,\n",
      "          'n2': 1,\n",
      "          '00': 1,\n",
      "          'r': 1,\n",
      "          'violencegore': 1,\n",
      "          'sexuality': 1,\n",
      "          'language': 1,\n",
      "          'drug': 1,\n",
      "          'content': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          '_election_': 7,\n",
      "          '_rushmore_': 6,\n",
      "          'gets': 6,\n",
      "          'film': 5,\n",
      "          'school': 5,\n",
      "          'even': 4,\n",
      "          'high': 4,\n",
      "          'broderick': 4,\n",
      "          'witherspoon': 4,\n",
      "          'plot': 4,\n",
      "          'student': 4,\n",
      "          'significant': 4,\n",
      "          'like': 4,\n",
      "          'every': 3,\n",
      "          'films': 3,\n",
      "          'matthew': 3,\n",
      "          'ntracy': 3,\n",
      "          'flick': 3,\n",
      "          'nand': 3,\n",
      "          'going': 3,\n",
      "          'extraordinary': 3,\n",
      "          'relationship': 3,\n",
      "          'affair': 3,\n",
      "          'mr': 3,\n",
      "          'movie': 2,\n",
      "          'studio': 2,\n",
      "          'comedy': 2,\n",
      "          'reese': 2,\n",
      "          'way': 2,\n",
      "          'pauls': 2,\n",
      "          'sister': 2,\n",
      "          'made': 2,\n",
      "          'reviews': 2,\n",
      "          'baggage': 2,\n",
      "          'nwhat': 2,\n",
      "          'similarities': 2,\n",
      "          'president': 2,\n",
      "          'number': 2,\n",
      "          'clubs': 2,\n",
      "          'involved': 2,\n",
      "          'play': 2,\n",
      "          'nmax': 2,\n",
      "          'fischer': 2,\n",
      "          'tension': 2,\n",
      "          'potential': 2,\n",
      "          'teacher': 2,\n",
      "          'single': 2,\n",
      "          'parent': 2,\n",
      "          'home': 2,\n",
      "          'contributed': 2,\n",
      "          'drive': 2,\n",
      "          'male': 2,\n",
      "          'bumbling': 2,\n",
      "          'adult': 2,\n",
      "          'pursues': 2,\n",
      "          'extramarital': 2,\n",
      "          'caught': 2,\n",
      "          'whole': 2,\n",
      "          'life': 2,\n",
      "          'ruined': 2,\n",
      "          'nhe': 2,\n",
      "          'bee': 2,\n",
      "          'yet': 2,\n",
      "          'neven': 2,\n",
      "          'fantastic': 2,\n",
      "          'since': 2,\n",
      "          'comes': 1,\n",
      "          'along': 1,\n",
      "          'suspect': 1,\n",
      "          'indication': 1,\n",
      "          'stinker': 1,\n",
      "          'everybodys': 1,\n",
      "          'surprise': 1,\n",
      "          'perhaps': 1,\n",
      "          'becomes': 1,\n",
      "          'critical': 1,\n",
      "          'darling': 1,\n",
      "          'nmtv': 1,\n",
      "          '_election': 1,\n",
      "          'starring': 1,\n",
      "          'current': 1,\n",
      "          'example': 1,\n",
      "          'ndid': 1,\n",
      "          'anybody': 1,\n",
      "          'know': 1,\n",
      "          'existed': 1,\n",
      "          'week': 1,\n",
      "          'opened': 1,\n",
      "          'deceptively': 1,\n",
      "          'simple': 1,\n",
      "          'ngeorge': 1,\n",
      "          'washington': 1,\n",
      "          'carver': 1,\n",
      "          'elections': 1,\n",
      "          'overachiever': 1,\n",
      "          'hand': 1,\n",
      "          'raised': 1,\n",
      "          'nearly': 1,\n",
      "          'question': 1,\n",
      "          'nmr': 1,\n",
      "          'sick': 1,\n",
      "          'megalomaniac': 1,\n",
      "          'encourages': 1,\n",
      "          'paul': 1,\n",
      "          'popularbutslow': 1,\n",
      "          'jock': 1,\n",
      "          'run': 1,\n",
      "          'nihilistic': 1,\n",
      "          'jumps': 1,\n",
      "          'race': 1,\n",
      "          'well': 1,\n",
      "          'personal': 1,\n",
      "          'reasons': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'sleeper': 1,\n",
      "          'success': 1,\n",
      "          'expectations': 1,\n",
      "          'low': 1,\n",
      "          'fact': 1,\n",
      "          'quality': 1,\n",
      "          'stuff': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'right': 1,\n",
      "          'nyou': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'glowing': 1,\n",
      "          'contrast': 1,\n",
      "          'negative': 1,\n",
      "          'reviewers': 1,\n",
      "          'likely': 1,\n",
      "          'n_election': 1,\n",
      "          'good': 1,\n",
      "          'live': 1,\n",
      "          'hype': 1,\n",
      "          'makes': 1,\n",
      "          'disappointing': 1,\n",
      "          'contains': 1,\n",
      "          'details': 1,\n",
      "          'lifted': 1,\n",
      "          'directly': 1,\n",
      "          'released': 1,\n",
      "          'months': 1,\n",
      "          'earlier': 1,\n",
      "          'staggering': 1,\n",
      "          'sting': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'several': 1,\n",
      "          'stings': 1,\n",
      "          'happened': 1,\n",
      "          'nhow': 1,\n",
      "          'individual': 1,\n",
      "          'screenplay': 1,\n",
      "          'novel': 1,\n",
      "          'contain': 1,\n",
      "          'many': 1,\n",
      "          'points': 1,\n",
      "          'probably': 1,\n",
      "          'aware': 1,\n",
      "          'two': 1,\n",
      "          'different': 1,\n",
      "          'studios': 1,\n",
      "          'genre': 1,\n",
      "          'geeks': 1,\n",
      "          'revenge': 1,\n",
      "          'hadnt': 1,\n",
      "          'fully': 1,\n",
      "          'formed': 1,\n",
      "          'strengths': 1,\n",
      "          'rely': 1,\n",
      "          'upon': 1,\n",
      "          'performances': 1,\n",
      "          'newcomer': 1,\n",
      "          'jessica': 1,\n",
      "          'campbell': 1,\n",
      "          'antisocial': 1,\n",
      "          'tammy': 1,\n",
      "          'nbroderick': 1,\n",
      "          'playing': 1,\n",
      "          'rooney': 1,\n",
      "          'role': 1,\n",
      "          '_ferris': 1,\n",
      "          'bueller_': 1,\n",
      "          'seems': 1,\n",
      "          'fun': 1,\n",
      "          'hes': 1,\n",
      "          'nwitherspoon': 1,\n",
      "          'revelation': 1,\n",
      "          'nits': 1,\n",
      "          'early': 1,\n",
      "          'year': 1,\n",
      "          'teenagers': 1,\n",
      "          'little': 1,\n",
      "          'clout': 1,\n",
      "          'money': 1,\n",
      "          'deserves': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'campbells': 1,\n",
      "          'character': 1,\n",
      "          'speech': 1,\n",
      "          'gymnasium': 1,\n",
      "          'youre': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'thats': 1,\n",
      "          'bothering': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'nthere': 1,\n",
      "          'amount': 1,\n",
      "          'sexuality': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'coming': 1,\n",
      "          'mtv': 1,\n",
      "          'expect': 1,\n",
      "          'less': 1,\n",
      "          'nbut': 1,\n",
      "          'starts': 1,\n",
      "          'light': 1,\n",
      "          'airy': 1,\n",
      "          'sitcom': 1,\n",
      "          'nas': 1,\n",
      "          'screws': 1,\n",
      "          'tighten': 1,\n",
      "          'tensions': 1,\n",
      "          'mount': 1,\n",
      "          'alexander': 1,\n",
      "          'payne': 1,\n",
      "          'decides': 1,\n",
      "          'add': 1,\n",
      "          'elements': 1,\n",
      "          'frankly': 1,\n",
      "          'distract': 1,\n",
      "          'story': 1,\n",
      "          'nit': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'doesnt': 1,\n",
      "          'tracys': 1,\n",
      "          'determination': 1,\n",
      "          'win': 1,\n",
      "          'costs': 1,\n",
      "          'throw': 1,\n",
      "          'studentteacher': 1,\n",
      "          'theres': 1,\n",
      "          'logical': 1,\n",
      "          'reason': 1,\n",
      "          'ntheres': 1,\n",
      "          'lot': 1,\n",
      "          'tonal': 1,\n",
      "          'nosedive': 1,\n",
      "          'takes': 1,\n",
      "          'explicitly': 1,\n",
      "          'sexdriven': 1,\n",
      "          'mark': 1,\n",
      "          'disappointment': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'two': 3,\n",
      "          'shop': 3,\n",
      "          'nbut': 3,\n",
      "          'much': 3,\n",
      "          'youve': 2,\n",
      "          'got': 2,\n",
      "          'mail': 2,\n",
      "          'better': 2,\n",
      "          'stars': 2,\n",
      "          'share': 2,\n",
      "          'screen': 2,\n",
      "          'around': 2,\n",
      "          'corner': 2,\n",
      "          'manipulation': 2,\n",
      "          'something': 2,\n",
      "          'movie': 2,\n",
      "          'important': 2,\n",
      "          'even': 2,\n",
      "          'plays': 2,\n",
      "          'fox': 2,\n",
      "          'insanely': 2,\n",
      "          'likeable': 2,\n",
      "          'book': 2,\n",
      "          'ryan': 2,\n",
      "          'kelley': 2,\n",
      "          'love': 2,\n",
      "          'true': 2,\n",
      "          'identity': 2,\n",
      "          'year': 2,\n",
      "          'works': 1,\n",
      "          'alot': 1,\n",
      "          'deserves': 1,\n",
      "          'nin': 1,\n",
      "          'order': 1,\n",
      "          'make': 1,\n",
      "          'film': 1,\n",
      "          'success': 1,\n",
      "          'cast': 1,\n",
      "          'extremely': 1,\n",
      "          'popular': 1,\n",
      "          'attractive': 1,\n",
      "          'hours': 1,\n",
      "          'collect': 1,\n",
      "          'profits': 1,\n",
      "          'nno': 1,\n",
      "          'real': 1,\n",
      "          'acting': 1,\n",
      "          'involved': 1,\n",
      "          'original': 1,\n",
      "          'inventive': 1,\n",
      "          'bone': 1,\n",
      "          'body': 1,\n",
      "          'basically': 1,\n",
      "          'complete': 1,\n",
      "          'reshoot': 1,\n",
      "          'adding': 1,\n",
      "          'modern': 1,\n",
      "          'twists': 1,\n",
      "          'nessentially': 1,\n",
      "          'goes': 1,\n",
      "          'defies': 1,\n",
      "          'concepts': 1,\n",
      "          'good': 1,\n",
      "          'contemporary': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nits': 1,\n",
      "          'overly': 1,\n",
      "          'sentimental': 1,\n",
      "          'times': 1,\n",
      "          'terribly': 1,\n",
      "          'mushy': 1,\n",
      "          'mention': 1,\n",
      "          'manipulative': 1,\n",
      "          'oh': 1,\n",
      "          'enjoyable': 1,\n",
      "          'must': 1,\n",
      "          'casting': 1,\n",
      "          'makes': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'absolutely': 1,\n",
      "          'hated': 1,\n",
      "          'previous': 1,\n",
      "          'ryanhanks': 1,\n",
      "          'teaming': 1,\n",
      "          'sleepless': 1,\n",
      "          'seattle': 1,\n",
      "          'nit': 1,\n",
      "          'couldnt': 1,\n",
      "          'directing': 1,\n",
      "          'films': 1,\n",
      "          'helmed': 1,\n",
      "          'woman': 1,\n",
      "          'ni': 1,\n",
      "          'havent': 1,\n",
      "          'quite': 1,\n",
      "          'yet': 1,\n",
      "          'figured': 1,\n",
      "          'liked': 1,\n",
      "          'really': 1,\n",
      "          'nif': 1,\n",
      "          'like': 1,\n",
      "          'question': 1,\n",
      "          'nagain': 1,\n",
      "          'storyline': 1,\n",
      "          'cliched': 1,\n",
      "          'come': 1,\n",
      "          'ntom': 1,\n",
      "          'hanks': 1,\n",
      "          'joe': 1,\n",
      "          'owner': 1,\n",
      "          'discount': 1,\n",
      "          'chain': 1,\n",
      "          'meg': 1,\n",
      "          'kathleen': 1,\n",
      "          'proprietor': 1,\n",
      "          'familyrun': 1,\n",
      "          'childrens': 1,\n",
      "          'called': 1,\n",
      "          'nice': 1,\n",
      "          'homage': 1,\n",
      "          'nfox': 1,\n",
      "          'soon': 1,\n",
      "          'become': 1,\n",
      "          'bitter': 1,\n",
      "          'rivals': 1,\n",
      "          'new': 1,\n",
      "          'books': 1,\n",
      "          'store': 1,\n",
      "          'opening': 1,\n",
      "          'right': 1,\n",
      "          'across': 1,\n",
      "          'block': 1,\n",
      "          'small': 1,\n",
      "          'business': 1,\n",
      "          'nlittle': 1,\n",
      "          'know': 1,\n",
      "          'already': 1,\n",
      "          'internet': 1,\n",
      "          'neither': 1,\n",
      "          'party': 1,\n",
      "          'knows': 1,\n",
      "          'persons': 1,\n",
      "          'nthe': 1,\n",
      "          'rest': 1,\n",
      "          'story': 1,\n",
      "          'isnt': 1,\n",
      "          'serve': 1,\n",
      "          'mere': 1,\n",
      "          'backdrop': 1,\n",
      "          'nsure': 1,\n",
      "          'mildly': 1,\n",
      "          'interesting': 1,\n",
      "          'subplots': 1,\n",
      "          'fail': 1,\n",
      "          'comparison': 1,\n",
      "          'utter': 1,\n",
      "          'cuteness': 1,\n",
      "          'main': 1,\n",
      "          'relationship': 1,\n",
      "          'nall': 1,\n",
      "          'course': 1,\n",
      "          'leads': 1,\n",
      "          'predictable': 1,\n",
      "          'climax': 1,\n",
      "          'foreseeable': 1,\n",
      "          'ending': 1,\n",
      "          'damn': 1,\n",
      "          'cute': 1,\n",
      "          'welldone': 1,\n",
      "          'doubt': 1,\n",
      "          'entire': 1,\n",
      "          'contains': 1,\n",
      "          'scene': 1,\n",
      "          'evokes': 1,\n",
      "          'pure': 1,\n",
      "          'joy': 1,\n",
      "          'part': 1,\n",
      "          'nwhen': 1,\n",
      "          'discovers': 1,\n",
      "          'online': 1,\n",
      "          'filled': 1,\n",
      "          'lack': 1,\n",
      "          'word': 1,\n",
      "          'happiness': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'actually': 1,\n",
      "          'left': 1,\n",
      "          'theater': 1,\n",
      "          'smiling': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'shark': 15,\n",
      "          'jaws': 8,\n",
      "          'film': 7,\n",
      "          'nthe': 6,\n",
      "          'us': 6,\n",
      "          'spielberg': 5,\n",
      "          'act': 5,\n",
      "          'one': 5,\n",
      "          'performance': 5,\n",
      "          'first': 4,\n",
      "          'time': 4,\n",
      "          'sharks': 4,\n",
      "          'brody': 4,\n",
      "          'shaw': 4,\n",
      "          'underwater': 3,\n",
      "          'outstanding': 3,\n",
      "          'like': 3,\n",
      "          'second': 3,\n",
      "          'great': 3,\n",
      "          'new': 3,\n",
      "          'island': 3,\n",
      "          'right': 3,\n",
      "          'vaughn': 3,\n",
      "          'summer': 3,\n",
      "          'hooper': 3,\n",
      "          'robert': 3,\n",
      "          'orca': 3,\n",
      "          'movies': 3,\n",
      "          'actually': 3,\n",
      "          'screen': 2,\n",
      "          'movie': 2,\n",
      "          'opens': 2,\n",
      "          'comes': 2,\n",
      "          'williams': 2,\n",
      "          'taking': 2,\n",
      "          'water': 2,\n",
      "          'lets': 2,\n",
      "          'know': 2,\n",
      "          'floating': 2,\n",
      "          'never': 2,\n",
      "          'nhe': 2,\n",
      "          'production': 2,\n",
      "          'subjective': 2,\n",
      "          'shots': 2,\n",
      "          'nhes': 2,\n",
      "          'tension': 2,\n",
      "          'bit': 2,\n",
      "          'terrifying': 2,\n",
      "          'doesnt': 2,\n",
      "          'police': 2,\n",
      "          'town': 2,\n",
      "          'several': 2,\n",
      "          'mayor': 2,\n",
      "          'money': 2,\n",
      "          'dreyfuss': 2,\n",
      "          'perfect': 2,\n",
      "          'old': 2,\n",
      "          'quint': 2,\n",
      "          'entire': 2,\n",
      "          'men': 2,\n",
      "          'n': 2,\n",
      "          'sense': 2,\n",
      "          'pacing': 2,\n",
      "          '1975': 2,\n",
      "          'makes': 2,\n",
      "          'technical': 2,\n",
      "          'mechanical': 2,\n",
      "          'none': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nscheider': 2,\n",
      "          'nhowever': 2,\n",
      "          'story': 2,\n",
      "          'see': 2,\n",
      "          'different': 2,\n",
      "          'rare': 1,\n",
      "          'grabs': 1,\n",
      "          'attention': 1,\n",
      "          'shows': 1,\n",
      "          'single': 1,\n",
      "          'image': 1,\n",
      "          'blackness': 1,\n",
      "          'distant': 1,\n",
      "          'alienlike': 1,\n",
      "          'sounds': 1,\n",
      "          'nthen': 1,\n",
      "          'ominous': 1,\n",
      "          'bars': 1,\n",
      "          'composer': 1,\n",
      "          'john': 1,\n",
      "          'infamous': 1,\n",
      "          'score': 1,\n",
      "          'ndahdum': 1,\n",
      "          'nfrom': 1,\n",
      "          'director': 1,\n",
      "          'steven': 1,\n",
      "          'wastes': 1,\n",
      "          'midnight': 1,\n",
      "          'swim': 1,\n",
      "          'beautiful': 1,\n",
      "          'girl': 1,\n",
      "          'turns': 1,\n",
      "          'deadly': 1,\n",
      "          'nright': 1,\n",
      "          'away': 1,\n",
      "          'vulnerable': 1,\n",
      "          'ocean': 1,\n",
      "          'attacked': 1,\n",
      "          'relinquishes': 1,\n",
      "          'grip': 1,\n",
      "          'nperhaps': 1,\n",
      "          'builds': 1,\n",
      "          'works': 1,\n",
      "          'theatrical': 1,\n",
      "          'nunlike': 1,\n",
      "          'many': 1,\n",
      "          'modern': 1,\n",
      "          'filmmakers': 1,\n",
      "          'deal': 1,\n",
      "          'restraint': 1,\n",
      "          'refuses': 1,\n",
      "          'show': 1,\n",
      "          'middle': 1,\n",
      "          'nuntil': 1,\n",
      "          'merely': 1,\n",
      "          'suggests': 1,\n",
      "          'presence': 1,\n",
      "          'creepy': 1,\n",
      "          'music': 1,\n",
      "          'building': 1,\n",
      "          'climax': 1,\n",
      "          'arrival': 1,\n",
      "          'truly': 1,\n",
      "          'let': 1,\n",
      "          'get': 1,\n",
      "          'bored': 1,\n",
      "          'imagery': 1,\n",
      "          'chief': 1,\n",
      "          'martin': 1,\n",
      "          'roy': 1,\n",
      "          'scheider': 1,\n",
      "          'york': 1,\n",
      "          'cop': 1,\n",
      "          'taken': 1,\n",
      "          'easy': 1,\n",
      "          'peaceful': 1,\n",
      "          'job': 1,\n",
      "          'running': 1,\n",
      "          'station': 1,\n",
      "          'amity': 1,\n",
      "          'fictitious': 1,\n",
      "          'england': 1,\n",
      "          'resort': 1,\n",
      "          'hasnt': 1,\n",
      "          'murder': 1,\n",
      "          'gun': 1,\n",
      "          'fired': 1,\n",
      "          '25': 1,\n",
      "          'years': 1,\n",
      "          'shaken': 1,\n",
      "          'vicious': 1,\n",
      "          'white': 1,\n",
      "          'attacks': 1,\n",
      "          'fourth': 1,\n",
      "          'july': 1,\n",
      "          'larry': 1,\n",
      "          'murray': 1,\n",
      "          'hamilton': 1,\n",
      "          'want': 1,\n",
      "          'shut': 1,\n",
      "          'beaches': 1,\n",
      "          'reliant': 1,\n",
      "          'tourist': 1,\n",
      "          'nbrody': 1,\n",
      "          'joined': 1,\n",
      "          'matt': 1,\n",
      "          'richard': 1,\n",
      "          'young': 1,\n",
      "          'ambitious': 1,\n",
      "          'expert': 1,\n",
      "          'marine': 1,\n",
      "          'institute': 1,\n",
      "          'nhooper': 1,\n",
      "          'fascinated': 1,\n",
      "          'determined': 1,\n",
      "          'help': 1,\n",
      "          'stop': 1,\n",
      "          'knowledge': 1,\n",
      "          'exact': 1,\n",
      "          'workings': 1,\n",
      "          'engine': 1,\n",
      "          'eating': 1,\n",
      "          'machine': 1,\n",
      "          'make': 1,\n",
      "          'much': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'relents': 1,\n",
      "          'join': 1,\n",
      "          'crusty': 1,\n",
      "          'killer': 1,\n",
      "          'named': 1,\n",
      "          'decrepit': 1,\n",
      "          'boat': 1,\n",
      "          'search': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'three': 1,\n",
      "          'hunt': 1,\n",
      "          'inevitably': 1,\n",
      "          'hunted': 1,\n",
      "          'thriller': 1,\n",
      "          'keen': 1,\n",
      "          'humor': 1,\n",
      "          'incredible': 1,\n",
      "          'horror': 1,\n",
      "          'nit': 1,\n",
      "          'ten': 1,\n",
      "          'rolled': 1,\n",
      "          'wonder': 1,\n",
      "          'took': 1,\n",
      "          'america': 1,\n",
      "          'storm': 1,\n",
      "          'enough': 1,\n",
      "          'crown': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'champ': 1,\n",
      "          'unceremoniously': 1,\n",
      "          'dethroned': 1,\n",
      "          '1977': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'neven': 1,\n",
      "          'today': 1,\n",
      "          'fascination': 1,\n",
      "          'par': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'psycho': 1,\n",
      "          'seems': 1,\n",
      "          'age': 1,\n",
      "          'nalthough': 1,\n",
      "          'grand': 1,\n",
      "          'technology': 1,\n",
      "          'exists': 1,\n",
      "          'sequences': 1,\n",
      "          'including': 1,\n",
      "          'obsolete': 1,\n",
      "          'could': 1,\n",
      "          'improve': 1,\n",
      "          'would': 1,\n",
      "          'lead': 1,\n",
      "          'overkill': 1,\n",
      "          'limitations': 1,\n",
      "          'faced': 1,\n",
      "          'may': 1,\n",
      "          'produced': 1,\n",
      "          'better': 1,\n",
      "          'forced': 1,\n",
      "          'rely': 1,\n",
      "          'traditional': 1,\n",
      "          'cinematic': 1,\n",
      "          'elements': 1,\n",
      "          'characterization': 1,\n",
      "          'sharp': 1,\n",
      "          'editing': 1,\n",
      "          'creative': 1,\n",
      "          'photography': 1,\n",
      "          'instead': 1,\n",
      "          'simply': 1,\n",
      "          'dousing': 1,\n",
      "          'audience': 1,\n",
      "          'digital': 1,\n",
      "          'effects': 1,\n",
      "          'known': 1,\n",
      "          'actors': 1,\n",
      "          'made': 1,\n",
      "          'draw': 1,\n",
      "          'redford': 1,\n",
      "          'paul': 1,\n",
      "          'newman': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'guaranteed': 1,\n",
      "          'successful': 1,\n",
      "          'careers': 1,\n",
      "          'gave': 1,\n",
      "          'refused': 1,\n",
      "          'overshadowed': 1,\n",
      "          'hits': 1,\n",
      "          'notes': 1,\n",
      "          'sympathetic': 1,\n",
      "          'husband': 1,\n",
      "          'father': 1,\n",
      "          'caught': 1,\n",
      "          'political': 1,\n",
      "          'quagmire': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'warns': 1,\n",
      "          'ndreyfuss': 1,\n",
      "          'previously': 1,\n",
      "          'seen': 1,\n",
      "          'american': 1,\n",
      "          'graffiti': 1,\n",
      "          '1973': 1,\n",
      "          'apprenticeship': 1,\n",
      "          'duddy': 1,\n",
      "          'kravitz': 1,\n",
      "          '1974': 1,\n",
      "          'gives': 1,\n",
      "          'surprisingly': 1,\n",
      "          'mature': 1,\n",
      "          'complex': 1,\n",
      "          'someone': 1,\n",
      "          'literally': 1,\n",
      "          'played': 1,\n",
      "          'kids': 1,\n",
      "          'teenagers': 1,\n",
      "          'gnarled': 1,\n",
      "          'captain': 1,\n",
      "          'ahab': 1,\n",
      "          'sorely': 1,\n",
      "          'overlooked': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'nbordering': 1,\n",
      "          'parody': 1,\n",
      "          'plays': 1,\n",
      "          'grizzled': 1,\n",
      "          'loner': 1,\n",
      "          'whose': 1,\n",
      "          'machismo': 1,\n",
      "          'borders': 1,\n",
      "          'masochism': 1,\n",
      "          'slightly': 1,\n",
      "          'deranged': 1,\n",
      "          'shaws': 1,\n",
      "          'almost': 1,\n",
      "          'caricature': 1,\n",
      "          'scene': 1,\n",
      "          'late': 1,\n",
      "          'deck': 1,\n",
      "          'comparing': 1,\n",
      "          'scars': 1,\n",
      "          'nquint': 1,\n",
      "          'drawn': 1,\n",
      "          'telling': 1,\n",
      "          'experiences': 1,\n",
      "          'aboard': 1,\n",
      "          'u': 1,\n",
      "          'nindianapolis': 1,\n",
      "          'navy': 1,\n",
      "          'ship': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'ii': 1,\n",
      "          'sunk': 1,\n",
      "          'japanese': 1,\n",
      "          'nhis': 1,\n",
      "          'tale': 1,\n",
      "          'week': 1,\n",
      "          '1': 1,\n",
      "          '000': 1,\n",
      "          'swarms': 1,\n",
      "          'slowly': 1,\n",
      "          'devoured': 1,\n",
      "          'hairraising': 1,\n",
      "          'anything': 1,\n",
      "          'put': 1,\n",
      "          'nshaw': 1,\n",
      "          'delivers': 1,\n",
      "          'long': 1,\n",
      "          'take': 1,\n",
      "          'best': 1,\n",
      "          'acting': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'cant': 1,\n",
      "          'leave': 1,\n",
      "          'black': 1,\n",
      "          'eyes': 1,\n",
      "          'endless': 1,\n",
      "          'rows': 1,\n",
      "          'teeth': 1,\n",
      "          'insatiable': 1,\n",
      "          'urge': 1,\n",
      "          'eat': 1,\n",
      "          'basically': 1,\n",
      "          'epitome': 1,\n",
      "          'mankinds': 1,\n",
      "          'fears': 1,\n",
      "          'unknown': 1,\n",
      "          'threatening': 1,\n",
      "          'nature': 1,\n",
      "          'na': 1,\n",
      "          'nemesis': 1,\n",
      "          'real': 1,\n",
      "          'survived': 1,\n",
      "          'sinch': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'whites': 1,\n",
      "          'exist': 1,\n",
      "          'large': 1,\n",
      "          'threat': 1,\n",
      "          'nevery': 1,\n",
      "          'spielbergs': 1,\n",
      "          'feel': 1,\n",
      "          'queasy': 1,\n",
      "          'look': 1,\n",
      "          'bunch': 1,\n",
      "          'writihing': 1,\n",
      "          'dangling': 1,\n",
      "          'completely': 1,\n",
      "          'unprotected': 1,\n",
      "          'legs': 1,\n",
      "          'ready': 1,\n",
      "          'chomped': 1,\n",
      "          'combination': 1,\n",
      "          'actual': 1,\n",
      "          'footage': 1,\n",
      "          'five': 1,\n",
      "          'nicknamed': 1,\n",
      "          'bruce': 1,\n",
      "          'crew': 1,\n",
      "          'built': 1,\n",
      "          'shot': 1,\n",
      "          'angles': 1,\n",
      "          'nmany': 1,\n",
      "          'forgotten': 1,\n",
      "          'sort': 1,\n",
      "          'precursor': 1,\n",
      "          'waterworld': 1,\n",
      "          '1995': 1,\n",
      "          'soggy': 1,\n",
      "          'cost': 1,\n",
      "          'overruns': 1,\n",
      "          'universal': 1,\n",
      "          'studios': 1,\n",
      "          'worried': 1,\n",
      "          'bomb': 1,\n",
      "          'nbut': 1,\n",
      "          'overcame': 1,\n",
      "          'obstacles': 1,\n",
      "          'delivered': 1,\n",
      "          'finest': 1,\n",
      "          'primal': 1,\n",
      "          'scarethrillers': 1,\n",
      "          'ever': 1,\n",
      "          'come': 1,\n",
      "          'hollywood': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'like': 9,\n",
      "          'jackie': 8,\n",
      "          'chan': 7,\n",
      "          'youve': 4,\n",
      "          'got': 4,\n",
      "          'one': 4,\n",
      "          'money': 4,\n",
      "          'sanders': 4,\n",
      "          'condor': 4,\n",
      "          'movie': 4,\n",
      "          'nin': 3,\n",
      "          'doesnt': 3,\n",
      "          'nthis': 3,\n",
      "          'nazi': 3,\n",
      "          'secret': 3,\n",
      "          'base': 3,\n",
      "          'moviemaking': 2,\n",
      "          'nfl': 2,\n",
      "          'dollar': 2,\n",
      "          'spent': 2,\n",
      "          'defensive': 2,\n",
      "          'less': 2,\n",
      "          'lions': 2,\n",
      "          'running': 2,\n",
      "          'back': 2,\n",
      "          'huge': 2,\n",
      "          'block': 2,\n",
      "          'movies': 2,\n",
      "          'films': 2,\n",
      "          'enough': 2,\n",
      "          'njackie': 2,\n",
      "          'nhe': 2,\n",
      "          'across': 2,\n",
      "          'motorcycle': 2,\n",
      "          'except': 2,\n",
      "          'worry': 2,\n",
      "          'thats': 2,\n",
      "          'goes': 2,\n",
      "          'stunts': 2,\n",
      "          'pay': 2,\n",
      "          'things': 2,\n",
      "          'sequence': 2,\n",
      "          'chase': 2,\n",
      "          'even': 2,\n",
      "          'hes': 2,\n",
      "          'kungfu': 2,\n",
      "          'lost': 2,\n",
      "          'desert': 2,\n",
      "          'two': 2,\n",
      "          'legs': 2,\n",
      "          'broken': 2,\n",
      "          'fight': 2,\n",
      "          'exactly': 2,\n",
      "          'go': 2,\n",
      "          'raiders': 2,\n",
      "          'could': 2,\n",
      "          'lot': 1,\n",
      "          'general': 1,\n",
      "          'manager': 1,\n",
      "          'team': 1,\n",
      "          'postsalary': 1,\n",
      "          'cap': 1,\n",
      "          'era': 1,\n",
      "          'know': 1,\n",
      "          'allocate': 1,\n",
      "          'resources': 1,\n",
      "          'nevery': 1,\n",
      "          'freeagent': 1,\n",
      "          'tackle': 1,\n",
      "          'spend': 1,\n",
      "          'linebackers': 1,\n",
      "          'safeties': 1,\n",
      "          'centers': 1,\n",
      "          'leads': 1,\n",
      "          'teams': 1,\n",
      "          'detroit': 1,\n",
      "          'boast': 1,\n",
      "          'superstar': 1,\n",
      "          'contract': 1,\n",
      "          'field': 1,\n",
      "          'five': 1,\n",
      "          'guys': 1,\n",
      "          'named': 1,\n",
      "          'herb': 1,\n",
      "          'end': 1,\n",
      "          'spawn': 1,\n",
      "          'specialeffects': 1,\n",
      "          'budget': 1,\n",
      "          'hire': 1,\n",
      "          'recognizable': 1,\n",
      "          'actors': 1,\n",
      "          'barry': 1,\n",
      "          'spins': 1,\n",
      "          'darts': 1,\n",
      "          'screen': 1,\n",
      "          'cutting': 1,\n",
      "          'line': 1,\n",
      "          'nwatching': 1,\n",
      "          'operation': 1,\n",
      "          'drives': 1,\n",
      "          'crowded': 1,\n",
      "          'streets': 1,\n",
      "          'madrid': 1,\n",
      "          'fleeing': 1,\n",
      "          'armada': 1,\n",
      "          'pursuers': 1,\n",
      "          'identical': 1,\n",
      "          'black': 1,\n",
      "          'compact': 1,\n",
      "          'cars': 1,\n",
      "          'reminiscent': 1,\n",
      "          'daylight': 1,\n",
      "          'chicago': 1,\n",
      "          'bears': 1,\n",
      "          'hot': 1,\n",
      "          'pursuit': 1,\n",
      "          'rescuing': 1,\n",
      "          'runaway': 1,\n",
      "          'baby': 1,\n",
      "          'carriages': 1,\n",
      "          'nbut': 1,\n",
      "          'star': 1,\n",
      "          'anybody': 1,\n",
      "          'nalmost': 1,\n",
      "          'every': 1,\n",
      "          'cent': 1,\n",
      "          'invested': 1,\n",
      "          'rest': 1,\n",
      "          'hospital': 1,\n",
      "          'bills': 1,\n",
      "          'leaves': 1,\n",
      "          '75': 1,\n",
      "          'cents': 1,\n",
      "          'directors': 1,\n",
      "          'directs': 1,\n",
      "          'scripts': 1,\n",
      "          'dubbing': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'mention': 1,\n",
      "          'hideous': 1,\n",
      "          'title': 1,\n",
      "          'also': 1,\n",
      "          'explains': 1,\n",
      "          'shot': 1,\n",
      "          'odd': 1,\n",
      "          'places': 1,\n",
      "          'morocco': 1,\n",
      "          'spain': 1,\n",
      "          'n': 1,\n",
      "          'chans': 1,\n",
      "          'first': 1,\n",
      "          'release': 1,\n",
      "          'country': 1,\n",
      "          'rumble': 1,\n",
      "          'bronx': 1,\n",
      "          'supposedly': 1,\n",
      "          'set': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'filmed': 1,\n",
      "          'vancouver': 1,\n",
      "          'scenes': 1,\n",
      "          'canadian': 1,\n",
      "          'rockies': 1,\n",
      "          'clearly': 1,\n",
      "          'visible': 1,\n",
      "          'nheck': 1,\n",
      "          'haircut': 1,\n",
      "          'looks': 1,\n",
      "          'much': 1,\n",
      "          'personal': 1,\n",
      "          'hairstylist': 1,\n",
      "          'plays': 1,\n",
      "          'character': 1,\n",
      "          'always': 1,\n",
      "          'played': 1,\n",
      "          'mixture': 1,\n",
      "          'bruce': 1,\n",
      "          'lee': 1,\n",
      "          'tim': 1,\n",
      "          'allen': 1,\n",
      "          'master': 1,\n",
      "          'slapstickfu': 1,\n",
      "          'sent': 1,\n",
      "          'un': 1,\n",
      "          'retrieve': 1,\n",
      "          'cache': 1,\n",
      "          'gold': 1,\n",
      "          'north': 1,\n",
      "          'african': 1,\n",
      "          'chased': 1,\n",
      "          'horde': 1,\n",
      "          'neonazi': 1,\n",
      "          'sympathizers': 1,\n",
      "          'stereotypical': 1,\n",
      "          'arabs': 1,\n",
      "          'political': 1,\n",
      "          'correctness': 1,\n",
      "          'joined': 1,\n",
      "          'three': 1,\n",
      "          'women': 1,\n",
      "          'little': 1,\n",
      "          'scream': 1,\n",
      "          'save': 1,\n",
      "          'us': 1,\n",
      "          'misuse': 1,\n",
      "          'firearms': 1,\n",
      "          'nthe': 1,\n",
      "          'villain': 1,\n",
      "          'old': 1,\n",
      "          'whose': 1,\n",
      "          'carried': 1,\n",
      "          'everywhere': 1,\n",
      "          'pathetic': 1,\n",
      "          'evil': 1,\n",
      "          'nen': 1,\n",
      "          'route': 1,\n",
      "          'extended': 1,\n",
      "          'scene': 1,\n",
      "          'hilarious': 1,\n",
      "          'moroccan': 1,\n",
      "          'version': 1,\n",
      "          'motel': 1,\n",
      "          '6': 1,\n",
      "          'neonazis': 1,\n",
      "          'confrontations': 1,\n",
      "          'savage': 1,\n",
      "          'natives': 1,\n",
      "          'nonce': 1,\n",
      "          'long': 1,\n",
      "          'chopsocky': 1,\n",
      "          'followed': 1,\n",
      "          'centerpiece': 1,\n",
      "          'windtunnel': 1,\n",
      "          'better': 1,\n",
      "          'faceoff': 1,\n",
      "          'wellchoreographed': 1,\n",
      "          'sequences': 1,\n",
      "          'giant': 1,\n",
      "          'kevlar': 1,\n",
      "          'hamster': 1,\n",
      "          'balls': 1,\n",
      "          'smashedup': 1,\n",
      "          'crates': 1,\n",
      "          'bananas': 1,\n",
      "          'scorpions': 1,\n",
      "          'nignore': 1,\n",
      "          'gaping': 1,\n",
      "          'holes': 1,\n",
      "          'plot': 1,\n",
      "          'villains': 1,\n",
      "          'escape': 1,\n",
      "          'didnt': 1,\n",
      "          'take': 1,\n",
      "          'key': 1,\n",
      "          'ndont': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'japanese': 1,\n",
      "          'girl': 1,\n",
      "          'hitchhiking': 1,\n",
      "          'sahara': 1,\n",
      "          'njust': 1,\n",
      "          'see': 1,\n",
      "          'noperation': 1,\n",
      "          'pretentions': 1,\n",
      "          'ark': 1,\n",
      "          'knockoff': 1,\n",
      "          'wonders': 1,\n",
      "          'franchise': 1,\n",
      "          'blocking': 1,\n",
      "          'lawrence': 1,\n",
      "          'kazdan': 1,\n",
      "          'screenplay': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'score': 1,\n",
      "          'spielberg': 1,\n",
      "          'directing': 1,\n",
      "          'george': 1,\n",
      "          'lucas': 1,\n",
      "          'producing': 1,\n",
      "          'might': 1,\n",
      "          'nhowever': 1,\n",
      "          'something': 1,\n",
      "          'special': 1,\n",
      "          'talent': 1,\n",
      "          'mainstream': 1,\n",
      "          'hollywood': 1,\n",
      "          'ought': 1,\n",
      "          'utilize': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'lumumba': 10,\n",
      "          'nthe': 9,\n",
      "          'story': 7,\n",
      "          'man': 4,\n",
      "          'patrice': 4,\n",
      "          'life': 4,\n",
      "          'first': 3,\n",
      "          'government': 3,\n",
      "          'african': 3,\n",
      "          'belgian': 3,\n",
      "          'told': 3,\n",
      "          'peck': 3,\n",
      "          'new': 3,\n",
      "          'political': 3,\n",
      "          'time': 3,\n",
      "          'world': 3,\n",
      "          'independence': 3,\n",
      "          'nations': 3,\n",
      "          'country': 3,\n",
      "          'history': 3,\n",
      "          'side': 3,\n",
      "          'good': 3,\n",
      "          'young': 2,\n",
      "          'congo': 2,\n",
      "          'months': 2,\n",
      "          'powerful': 2,\n",
      "          'position': 2,\n",
      "          'troops': 2,\n",
      "          'two': 2,\n",
      "          'nthis': 2,\n",
      "          'fall': 2,\n",
      "          'lumumbas': 2,\n",
      "          'eriq': 2,\n",
      "          'ebouaney': 2,\n",
      "          'death': 2,\n",
      "          'true': 2,\n",
      "          'npeck': 2,\n",
      "          'pascal': 2,\n",
      "          'leader': 2,\n",
      "          'men': 2,\n",
      "          'black': 2,\n",
      "          'national': 2,\n",
      "          'nhis': 2,\n",
      "          'small': 2,\n",
      "          'mnc': 2,\n",
      "          'known': 2,\n",
      "          'colonial': 2,\n",
      "          'right': 2,\n",
      "          'place': 2,\n",
      "          'leadership': 2,\n",
      "          'minister': 2,\n",
      "          'supporting': 2,\n",
      "          'masters': 2,\n",
      "          'struggling': 2,\n",
      "          'strive': 2,\n",
      "          'us': 2,\n",
      "          'period': 2,\n",
      "          'give': 2,\n",
      "          'honest': 2,\n",
      "          'n': 2,\n",
      "          'feel': 2,\n",
      "          'nit': 2,\n",
      "          'family': 2,\n",
      "          'docudrama': 2,\n",
      "          'june': 1,\n",
      "          '30': 1,\n",
      "          '1960': 1,\n",
      "          'selftaught': 1,\n",
      "          'idealistic': 1,\n",
      "          'yet': 1,\n",
      "          'pragmatic': 1,\n",
      "          'became': 1,\n",
      "          'age': 1,\n",
      "          '36': 1,\n",
      "          'head': 1,\n",
      "          'newly': 1,\n",
      "          'independent': 1,\n",
      "          'state': 1,\n",
      "          'formerly': 1,\n",
      "          'ntwo': 1,\n",
      "          'later': 1,\n",
      "          'ousted': 1,\n",
      "          'hunted': 1,\n",
      "          'captured': 1,\n",
      "          'brutally': 1,\n",
      "          'murdered': 1,\n",
      "          'along': 1,\n",
      "          'aides': 1,\n",
      "          'littleknown': 1,\n",
      "          'meteoric': 1,\n",
      "          'rise': 1,\n",
      "          'international': 1,\n",
      "          'filmmaker': 1,\n",
      "          'raoul': 1,\n",
      "          'npatrice': 1,\n",
      "          'previously': 1,\n",
      "          'helmer': 1,\n",
      "          '1991': 1,\n",
      "          'award': 1,\n",
      "          'winning': 1,\n",
      "          'documentary': 1,\n",
      "          'prophet': 1,\n",
      "          'virtually': 1,\n",
      "          'guaranteeing': 1,\n",
      "          'fictional': 1,\n",
      "          'account': 1,\n",
      "          'patriot': 1,\n",
      "          'remains': 1,\n",
      "          'subject': 1,\n",
      "          'cowriter': 1,\n",
      "          'bonitzer': 1,\n",
      "          'begins': 1,\n",
      "          'end': 1,\n",
      "          'nwe': 1,\n",
      "          'watch': 1,\n",
      "          'white': 1,\n",
      "          'perform': 1,\n",
      "          'gruesome': 1,\n",
      "          'task': 1,\n",
      "          'dismembering': 1,\n",
      "          'bodies': 1,\n",
      "          'three': 1,\n",
      "          'nimages': 1,\n",
      "          'hatchets': 1,\n",
      "          'saws': 1,\n",
      "          'fastemptying': 1,\n",
      "          'whiskey': 1,\n",
      "          'bottles': 1,\n",
      "          'accompany': 1,\n",
      "          'grisly': 1,\n",
      "          'image': 1,\n",
      "          'njump': 1,\n",
      "          'back': 1,\n",
      "          'years': 1,\n",
      "          'meeting': 1,\n",
      "          'among': 1,\n",
      "          'leaders': 1,\n",
      "          'belgianowned': 1,\n",
      "          'na': 1,\n",
      "          'third': 1,\n",
      "          'class': 1,\n",
      "          'postal': 1,\n",
      "          'worker': 1,\n",
      "          'speaks': 1,\n",
      "          'mind': 1,\n",
      "          'heads': 1,\n",
      "          'tribes': 1,\n",
      "          'proclaiming': 1,\n",
      "          'tribal': 1,\n",
      "          'regional': 1,\n",
      "          'mobile': 1,\n",
      "          'party': 1,\n",
      "          'congolese': 1,\n",
      "          'movement': 1,\n",
      "          'gaining': 1,\n",
      "          'prominence': 1,\n",
      "          'leaves': 1,\n",
      "          'clerical': 1,\n",
      "          'job': 1,\n",
      "          'sell': 1,\n",
      "          'beer': 1,\n",
      "          'get': 1,\n",
      "          'face': 1,\n",
      "          'bustling': 1,\n",
      "          'capital': 1,\n",
      "          'stanleyville': 1,\n",
      "          'nat': 1,\n",
      "          'empires': 1,\n",
      "          'falling': 1,\n",
      "          'around': 1,\n",
      "          'savvy': 1,\n",
      "          'chesslike': 1,\n",
      "          'manipulation': 1,\n",
      "          'achieves': 1,\n",
      "          'nas': 1,\n",
      "          'date': 1,\n",
      "          'approaches': 1,\n",
      "          'tactically': 1,\n",
      "          'positions': 1,\n",
      "          'prime': 1,\n",
      "          'defense': 1,\n",
      "          'presidency': 1,\n",
      "          'joseph': 1,\n",
      "          'kasa': 1,\n",
      "          'vubu': 1,\n",
      "          'maka': 1,\n",
      "          'kotto': 1,\n",
      "          'coalition': 1,\n",
      "          'created': 1,\n",
      "          'soon': 1,\n",
      "          'starts': 1,\n",
      "          'apart': 1,\n",
      "          'former': 1,\n",
      "          'continue': 1,\n",
      "          'exert': 1,\n",
      "          'influence': 1,\n",
      "          'nation': 1,\n",
      "          'maintain': 1,\n",
      "          'economic': 1,\n",
      "          'hold': 1,\n",
      "          'countrys': 1,\n",
      "          'vast': 1,\n",
      "          'natural': 1,\n",
      "          'resources': 1,\n",
      "          'copper': 1,\n",
      "          'diamonds': 1,\n",
      "          'gold': 1,\n",
      "          'nlumumba': 1,\n",
      "          'wont': 1,\n",
      "          'seek': 1,\n",
      "          'help': 1,\n",
      "          'knowing': 1,\n",
      "          'would': 1,\n",
      "          'try': 1,\n",
      "          'create': 1,\n",
      "          'de': 1,\n",
      "          'facto': 1,\n",
      "          'american': 1,\n",
      "          'control': 1,\n",
      "          'fledgling': 1,\n",
      "          'initial': 1,\n",
      "          'investigation': 1,\n",
      "          'soviet': 1,\n",
      "          'assistance': 1,\n",
      "          'immediately': 1,\n",
      "          'tags': 1,\n",
      "          'communist': 1,\n",
      "          'integrity': 1,\n",
      "          'overshadowed': 1,\n",
      "          'cold': 1,\n",
      "          'war': 1,\n",
      "          'threat': 1,\n",
      "          'russian': 1,\n",
      "          'domination': 1,\n",
      "          'situation': 1,\n",
      "          'goes': 1,\n",
      "          'bad': 1,\n",
      "          'worse': 1,\n",
      "          'army': 1,\n",
      "          'mutinies': 1,\n",
      "          'remaining': 1,\n",
      "          'whites': 1,\n",
      "          'begin': 1,\n",
      "          'evacuate': 1,\n",
      "          'arm': 1,\n",
      "          'violently': 1,\n",
      "          'intervene': 1,\n",
      "          'lucrative': 1,\n",
      "          'katanga': 1,\n",
      "          'province': 1,\n",
      "          'succeeds': 1,\n",
      "          'rival': 1,\n",
      "          'moise': 1,\n",
      "          'tschombe': 1,\n",
      "          'nzonzi': 1,\n",
      "          'refused': 1,\n",
      "          'access': 1,\n",
      "          'returns': 1,\n",
      "          'conference': 1,\n",
      "          'abroad': 1,\n",
      "          'tumultuous': 1,\n",
      "          'little': 1,\n",
      "          'modern': 1,\n",
      "          'saw': 1,\n",
      "          'score': 1,\n",
      "          'sometimesodious': 1,\n",
      "          'colonialists': 1,\n",
      "          'ruled': 1,\n",
      "          'much': 1,\n",
      "          'european': 1,\n",
      "          'seats': 1,\n",
      "          'power': 1,\n",
      "          'centuries': 1,\n",
      "          'focuses': 1,\n",
      "          'familiar': 1,\n",
      "          'material': 1,\n",
      "          'strives': 1,\n",
      "          'portrayal': 1,\n",
      "          'friend': 1,\n",
      "          'foes': 1,\n",
      "          'movements': 1,\n",
      "          'gripped': 1,\n",
      "          'africa': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          '50s': 1,\n",
      "          '60s': 1,\n",
      "          'takes': 1,\n",
      "          'many': 1,\n",
      "          'including': 1,\n",
      "          'nigeria': 1,\n",
      "          'somalia': 1,\n",
      "          'born': 1,\n",
      "          'varying': 1,\n",
      "          'degrees': 1,\n",
      "          'success': 1,\n",
      "          'failure': 1,\n",
      "          'usually': 1,\n",
      "          'dependent': 1,\n",
      "          'upon': 1,\n",
      "          'colonized': 1,\n",
      "          'nsome': 1,\n",
      "          'better': 1,\n",
      "          'others': 1,\n",
      "          'effort': 1,\n",
      "          'involved': 1,\n",
      "          'quite': 1,\n",
      "          'ambitious': 1,\n",
      "          'crew': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'bring': 1,\n",
      "          'slice': 1,\n",
      "          'might': 1,\n",
      "          'gone': 1,\n",
      "          'unexplored': 1,\n",
      "          'decades': 1,\n",
      "          'nproduction': 1,\n",
      "          'values': 1,\n",
      "          'rate': 1,\n",
      "          'must': 1,\n",
      "          'standards': 1,\n",
      "          'budget': 1,\n",
      "          'realistic': 1,\n",
      "          'settings': 1,\n",
      "          'nicely': 1,\n",
      "          'maintained': 1,\n",
      "          'production': 1,\n",
      "          'traveled': 1,\n",
      "          'zimbabwe': 1,\n",
      "          'mozambique': 1,\n",
      "          'screenplay': 1,\n",
      "          'covers': 1,\n",
      "          'lot': 1,\n",
      "          'ground': 1,\n",
      "          'yeomans': 1,\n",
      "          'work': 1,\n",
      "          'providing': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'detailed': 1,\n",
      "          'trying': 1,\n",
      "          'justice': 1,\n",
      "          'things': 1,\n",
      "          'evenly': 1,\n",
      "          'linear': 1,\n",
      "          'straightforward': 1,\n",
      "          'manner': 1,\n",
      "          'teaches': 1,\n",
      "          'preaches': 1,\n",
      "          'concentrates': 1,\n",
      "          'deeds': 1,\n",
      "          'bit': 1,\n",
      "          'stalwart': 1,\n",
      "          'saint': 1,\n",
      "          'doesnt': 1,\n",
      "          'embellish': 1,\n",
      "          'larger': 1,\n",
      "          'persona': 1,\n",
      "          'patrices': 1,\n",
      "          'handled': 1,\n",
      "          'several': 1,\n",
      "          'perfunctory': 1,\n",
      "          'brief': 1,\n",
      "          'interludes': 1,\n",
      "          'show': 1,\n",
      "          'talking': 1,\n",
      "          'one': 1,\n",
      "          'children': 1,\n",
      "          'embracing': 1,\n",
      "          'wife': 1,\n",
      "          'lamenting': 1,\n",
      "          'child': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'intent': 1,\n",
      "          'flesh': 1,\n",
      "          'short': 1,\n",
      "          'shrift': 1,\n",
      "          'given': 1,\n",
      "          'lopsided': 1,\n",
      "          'nhigh': 1,\n",
      "          'marks': 1,\n",
      "          'go': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'actor': 1,\n",
      "          'gives': 1,\n",
      "          'convincing': 1,\n",
      "          'charismatic': 1,\n",
      "          'performance': 1,\n",
      "          'multifaceted': 1,\n",
      "          'politically': 1,\n",
      "          'deft': 1,\n",
      "          'people': 1,\n",
      "          'force': 1,\n",
      "          'driving': 1,\n",
      "          'ambitions': 1,\n",
      "          'nin': 1,\n",
      "          'tradition': 1,\n",
      "          'cast': 1,\n",
      "          'outshine': 1,\n",
      "          'star': 1,\n",
      "          'complementing': 1,\n",
      "          'efforts': 1,\n",
      "          'instead': 1,\n",
      "          'solid': 1,\n",
      "          'interesting': 1,\n",
      "          'educational': 1,\n",
      "          'appeal': 1,\n",
      "          'film': 1,\n",
      "          'buffs': 1,\n",
      "          'politicos': 1,\n",
      "          'intelligence': 1,\n",
      "          'telling': 1,\n",
      "          'anything': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'hollywood': 1,\n",
      "          'b': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'derek': 7,\n",
      "          'american': 6,\n",
      "          'history': 6,\n",
      "          'x': 6,\n",
      "          'kaye': 5,\n",
      "          'nits': 5,\n",
      "          'way': 5,\n",
      "          'hes': 5,\n",
      "          'racism': 4,\n",
      "          'norton': 4,\n",
      "          'skinhead': 4,\n",
      "          'brother': 4,\n",
      "          'danny': 4,\n",
      "          'tony': 3,\n",
      "          'makes': 3,\n",
      "          'hard': 3,\n",
      "          'two': 3,\n",
      "          'becomes': 3,\n",
      "          'character': 3,\n",
      "          'nthe': 3,\n",
      "          'men': 3,\n",
      "          'interesting': 3,\n",
      "          'people': 3,\n",
      "          'make': 3,\n",
      "          'lot': 3,\n",
      "          'director': 2,\n",
      "          'new': 2,\n",
      "          'final': 2,\n",
      "          'wonder': 2,\n",
      "          'found': 2,\n",
      "          'good': 2,\n",
      "          'look': 2,\n",
      "          'powerful': 2,\n",
      "          'edward': 2,\n",
      "          'years': 2,\n",
      "          'role': 2,\n",
      "          'one': 2,\n",
      "          'work': 2,\n",
      "          'performances': 2,\n",
      "          'young': 2,\n",
      "          'man': 2,\n",
      "          'furlong': 2,\n",
      "          'dangelo': 2,\n",
      "          'lien': 2,\n",
      "          'flashback': 2,\n",
      "          'black': 2,\n",
      "          'prison': 2,\n",
      "          'point': 2,\n",
      "          'nin': 2,\n",
      "          'school': 2,\n",
      "          'violence': 2,\n",
      "          'nwhat': 2,\n",
      "          'beliefs': 2,\n",
      "          'movie': 2,\n",
      "          'right': 2,\n",
      "          'partially': 2,\n",
      "          'smart': 2,\n",
      "          'killed': 2,\n",
      "          'depth': 2,\n",
      "          'story': 2,\n",
      "          'like': 2,\n",
      "          'movies': 2,\n",
      "          'last': 2,\n",
      "          'scene': 2,\n",
      "          'apparently': 1,\n",
      "          'major': 1,\n",
      "          'battle': 1,\n",
      "          'line': 1,\n",
      "          'regarding': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'details': 1,\n",
      "          'fight': 1,\n",
      "          'seems': 1,\n",
      "          'happy': 1,\n",
      "          'product': 1,\n",
      "          'nearly': 1,\n",
      "          'removed': 1,\n",
      "          'name': 1,\n",
      "          'credits': 1,\n",
      "          'altogether': 1,\n",
      "          'nive': 1,\n",
      "          'heard': 1,\n",
      "          'kind': 1,\n",
      "          'thing': 1,\n",
      "          'happening': 1,\n",
      "          'much': 1,\n",
      "          'input': 1,\n",
      "          'studio': 1,\n",
      "          'films': 1,\n",
      "          'produce': 1,\n",
      "          'nas': 1,\n",
      "          'extremely': 1,\n",
      "          'kayes': 1,\n",
      "          'focused': 1,\n",
      "          'touchy': 1,\n",
      "          'subject': 1,\n",
      "          'charismatic': 1,\n",
      "          'performance': 1,\n",
      "          'believe': 1,\n",
      "          'since': 1,\n",
      "          'nortons': 1,\n",
      "          'fantastic': 1,\n",
      "          'primal': 1,\n",
      "          'fear': 1,\n",
      "          'starring': 1,\n",
      "          'making': 1,\n",
      "          'star': 1,\n",
      "          'nnorton': 1,\n",
      "          'performers': 1,\n",
      "          'best': 1,\n",
      "          'year': 1,\n",
      "          'nhe': 1,\n",
      "          'plays': 1,\n",
      "          'named': 1,\n",
      "          'vinyard': 1,\n",
      "          'living': 1,\n",
      "          'venice': 1,\n",
      "          'beach': 1,\n",
      "          'mother': 1,\n",
      "          'beverly': 1,\n",
      "          'sister': 1,\n",
      "          'davin': 1,\n",
      "          'jennifer': 1,\n",
      "          'opens': 1,\n",
      "          'brutally': 1,\n",
      "          'kills': 1,\n",
      "          'vandalizing': 1,\n",
      "          'car': 1,\n",
      "          'nwe': 1,\n",
      "          'find': 1,\n",
      "          'lands': 1,\n",
      "          'seen': 1,\n",
      "          'eyes': 1,\n",
      "          'presenttime': 1,\n",
      "          'high': 1,\n",
      "          'eager': 1,\n",
      "          'follow': 1,\n",
      "          'footsteps': 1,\n",
      "          'nmuch': 1,\n",
      "          'told': 1,\n",
      "          'see': 1,\n",
      "          'path': 1,\n",
      "          'leads': 1,\n",
      "          'dereks': 1,\n",
      "          'adoption': 1,\n",
      "          'white': 1,\n",
      "          'supremacy': 1,\n",
      "          'nwhen': 1,\n",
      "          'released': 1,\n",
      "          'served': 1,\n",
      "          'three': 1,\n",
      "          'finds': 1,\n",
      "          'fullblown': 1,\n",
      "          'however': 1,\n",
      "          'given': 1,\n",
      "          'tries': 1,\n",
      "          'get': 1,\n",
      "          'understand': 1,\n",
      "          'comes': 1,\n",
      "          'bad': 1,\n",
      "          'things': 1,\n",
      "          'stupid': 1,\n",
      "          'thoughtless': 1,\n",
      "          'intelligent': 1,\n",
      "          'articulate': 1,\n",
      "          'voice': 1,\n",
      "          'disturbingly': 1,\n",
      "          'straightforward': 1,\n",
      "          'terms': 1,\n",
      "          'controversial': 1,\n",
      "          'preach': 1,\n",
      "          'note': 1,\n",
      "          'material': 1,\n",
      "          'nbecause': 1,\n",
      "          'mainstream': 1,\n",
      "          'redemption': 1,\n",
      "          'phase': 1,\n",
      "          'main': 1,\n",
      "          'may': 1,\n",
      "          'think': 1,\n",
      "          'sympathetic': 1,\n",
      "          'ni': 1,\n",
      "          'disagree': 1,\n",
      "          'although': 1,\n",
      "          'advocate': 1,\n",
      "          'presents': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'also': 1,\n",
      "          'reasons': 1,\n",
      "          'believable': 1,\n",
      "          'father': 1,\n",
      "          'arbitrarily': 1,\n",
      "          'group': 1,\n",
      "          'clear': 1,\n",
      "          'passionate': 1,\n",
      "          'punk': 1,\n",
      "          'looking': 1,\n",
      "          'excuse': 1,\n",
      "          'beat': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'helps': 1,\n",
      "          'actor': 1,\n",
      "          'talented': 1,\n",
      "          'play': 1,\n",
      "          'part': 1,\n",
      "          'astonishing': 1,\n",
      "          'frightening': 1,\n",
      "          'looks': 1,\n",
      "          'shaved': 1,\n",
      "          'head': 1,\n",
      "          'swastika': 1,\n",
      "          'chest': 1,\n",
      "          'addition': 1,\n",
      "          'getting': 1,\n",
      "          'perfect': 1,\n",
      "          'requires': 1,\n",
      "          'intelligence': 1,\n",
      "          'whole': 1,\n",
      "          'shouting': 1,\n",
      "          'ease': 1,\n",
      "          'neven': 1,\n",
      "          'meanest': 1,\n",
      "          'likable': 1,\n",
      "          'quality': 1,\n",
      "          'thats': 1,\n",
      "          'gutsy': 1,\n",
      "          'approach': 1,\n",
      "          'telling': 1,\n",
      "          'adds': 1,\n",
      "          'subplot': 1,\n",
      "          'principal': 1,\n",
      "          'dannys': 1,\n",
      "          'avery': 1,\n",
      "          'brooks': 1,\n",
      "          'obsessed': 1,\n",
      "          'purging': 1,\n",
      "          'hatred': 1,\n",
      "          'terrific': 1,\n",
      "          'standouts': 1,\n",
      "          'nvisually': 1,\n",
      "          'nkaye': 1,\n",
      "          'indulges': 1,\n",
      "          'artistic': 1,\n",
      "          'choices': 1,\n",
      "          'nicely': 1,\n",
      "          'lots': 1,\n",
      "          'slowmotion': 1,\n",
      "          'strange': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'add': 1,\n",
      "          'moody': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nbut': 1,\n",
      "          'lately': 1,\n",
      "          'skims': 1,\n",
      "          'past': 1,\n",
      "          'greatness': 1,\n",
      "          'minutes': 1,\n",
      "          'nalthough': 1,\n",
      "          'climactic': 1,\n",
      "          'moving': 1,\n",
      "          'picture': 1,\n",
      "          'ends': 1,\n",
      "          'pretentious': 1,\n",
      "          'preachy': 1,\n",
      "          'resolution': 1,\n",
      "          'featuring': 1,\n",
      "          'brief': 1,\n",
      "          'narration': 1,\n",
      "          'nfor': 1,\n",
      "          'subtle': 1,\n",
      "          'felt': 1,\n",
      "          'slap': 1,\n",
      "          'face': 1,\n",
      "          'handfed': 1,\n",
      "          'theme': 1,\n",
      "          'simplistic': 1,\n",
      "          'nit': 1,\n",
      "          'exactly': 1,\n",
      "          'disliked': 1,\n",
      "          'version': 1,\n",
      "          'nperhaps': 1,\n",
      "          'problem': 1,\n",
      "          'imagine': 1,\n",
      "          'least': 1,\n",
      "          'pleased': 1,\n",
      "          'time': 1,\n",
      "          'many': 1,\n",
      "          'timid': 1,\n",
      "          'weak': 1,\n",
      "          'manages': 1,\n",
      "          'compelling': 1,\n",
      "          'argument': 1,\n",
      "          'without': 1,\n",
      "          'advocating': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'alda': 6,\n",
      "          'wedding': 5,\n",
      "          'nand': 5,\n",
      "          'film': 5,\n",
      "          'one': 4,\n",
      "          'ringwald': 4,\n",
      "          'comic': 4,\n",
      "          'performance': 4,\n",
      "          'sheedy': 4,\n",
      "          'betsys': 3,\n",
      "          'nthe': 3,\n",
      "          'lapaglia': 3,\n",
      "          'acting': 3,\n",
      "          'aldas': 3,\n",
      "          'molly': 2,\n",
      "          'humor': 2,\n",
      "          'nas': 2,\n",
      "          'characters': 2,\n",
      "          'far': 2,\n",
      "          'screen': 2,\n",
      "          'looks': 2,\n",
      "          'make': 2,\n",
      "          'ringwalds': 2,\n",
      "          'brides': 2,\n",
      "          'family': 2,\n",
      "          'father': 2,\n",
      "          'two': 2,\n",
      "          'character': 2,\n",
      "          'however': 2,\n",
      "          'nlapaglia': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'partly': 2,\n",
      "          'know': 2,\n",
      "          'star': 2,\n",
      "          'colleagues': 1,\n",
      "          'surprised': 1,\n",
      "          'told': 1,\n",
      "          'willing': 1,\n",
      "          'see': 1,\n",
      "          'shocked': 1,\n",
      "          'hear': 1,\n",
      "          'actually': 1,\n",
      "          'liked': 1,\n",
      "          'nher': 1,\n",
      "          'reaction': 1,\n",
      "          'understandable': 1,\n",
      "          'consider': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'hasnt': 1,\n",
      "          'made': 1,\n",
      "          'worthwhile': 1,\n",
      "          'since': 1,\n",
      "          '1986': 1,\n",
      "          'nbut': 1,\n",
      "          'fact': 1,\n",
      "          'also': 1,\n",
      "          'alan': 1,\n",
      "          'making': 1,\n",
      "          'duds': 1,\n",
      "          'last': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'involved': 1,\n",
      "          'several': 1,\n",
      "          'noteworthy': 1,\n",
      "          'projects': 1,\n",
      "          'including': 1,\n",
      "          'crimes': 1,\n",
      "          'misdemeanors': 1,\n",
      "          'new': 1,\n",
      "          'life': 1,\n",
      "          'nwritten': 1,\n",
      "          'directed': 1,\n",
      "          'vibrant': 1,\n",
      "          'sliceoflife': 1,\n",
      "          'mixing': 1,\n",
      "          'dramatic': 1,\n",
      "          'moments': 1,\n",
      "          'big': 1,\n",
      "          'bowl': 1,\n",
      "          'whimsical': 1,\n",
      "          'naldas': 1,\n",
      "          'elixir': 1,\n",
      "          'smooth': 1,\n",
      "          'refreshingand': 1,\n",
      "          'welcome': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'usual': 1,\n",
      "          'summer': 1,\n",
      "          'fare': 1,\n",
      "          'bride': 1,\n",
      "          'groom': 1,\n",
      "          'dylan': 1,\n",
      "          'walsh': 1,\n",
      "          'pivotal': 1,\n",
      "          'least': 1,\n",
      "          'interesting': 1,\n",
      "          'nwalsh': 1,\n",
      "          'nonentity': 1,\n",
      "          'presence': 1,\n",
      "          'door': 1,\n",
      "          'knob': 1,\n",
      "          'nringwald': 1,\n",
      "          'simply': 1,\n",
      "          'unbearable': 1,\n",
      "          'easily': 1,\n",
      "          'weakest': 1,\n",
      "          'link': 1,\n",
      "          'chain': 1,\n",
      "          'nshe': 1,\n",
      "          'hideous': 1,\n",
      "          'shortcropped': 1,\n",
      "          'orange': 1,\n",
      "          'hair': 1,\n",
      "          'red': 1,\n",
      "          'lipstick': 1,\n",
      "          'grotesque': 1,\n",
      "          'outfits': 1,\n",
      "          'nshes': 1,\n",
      "          'supposed': 1,\n",
      "          'dress': 1,\n",
      "          'designer': 1,\n",
      "          'like': 1,\n",
      "          'clown': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'matches': 1,\n",
      "          'appearance': 1,\n",
      "          'nthankfully': 1,\n",
      "          'keeps': 1,\n",
      "          'time': 1,\n",
      "          'minimum': 1,\n",
      "          'interested': 1,\n",
      "          'colorful': 1,\n",
      "          'periphery': 1,\n",
      "          'device': 1,\n",
      "          'bring': 1,\n",
      "          'together': 1,\n",
      "          'workingclass': 1,\n",
      "          'italian': 1,\n",
      "          'grooms': 1,\n",
      "          'rich': 1,\n",
      "          'gentile': 1,\n",
      "          'nringwalds': 1,\n",
      "          'folks': 1,\n",
      "          'homey': 1,\n",
      "          'downtoearth': 1,\n",
      "          'freespirited': 1,\n",
      "          'madeline': 1,\n",
      "          'kahn': 1,\n",
      "          'practical': 1,\n",
      "          'mother': 1,\n",
      "          'ally': 1,\n",
      "          'lonely': 1,\n",
      "          'sister': 1,\n",
      "          'nwalshs': 1,\n",
      "          'clan': 1,\n",
      "          'hand': 1,\n",
      "          'prim': 1,\n",
      "          'proper': 1,\n",
      "          'ostentatious': 1,\n",
      "          'nwhen': 1,\n",
      "          'families': 1,\n",
      "          'meet': 1,\n",
      "          'mingle': 1,\n",
      "          'movie': 1,\n",
      "          'becomes': 1,\n",
      "          'story': 1,\n",
      "          'culture': 1,\n",
      "          'clash': 1,\n",
      "          'puts': 1,\n",
      "          'money': 1,\n",
      "          'versus': 1,\n",
      "          'values': 1,\n",
      "          'nally': 1,\n",
      "          'wonderfully': 1,\n",
      "          'understated': 1,\n",
      "          'films': 1,\n",
      "          'pleasant': 1,\n",
      "          'surprises': 1,\n",
      "          'nsheedy': 1,\n",
      "          'expresses': 1,\n",
      "          'eyes': 1,\n",
      "          'entire': 1,\n",
      "          'body': 1,\n",
      "          'nits': 1,\n",
      "          'anthony': 1,\n",
      "          'seizes': 1,\n",
      "          'spotlight': 1,\n",
      "          'plays': 1,\n",
      "          'stevie': 1,\n",
      "          'dee': 1,\n",
      "          'suave': 1,\n",
      "          'overly': 1,\n",
      "          'polite': 1,\n",
      "          'mafioso': 1,\n",
      "          'formally': 1,\n",
      "          'courting': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'chivalry': 1,\n",
      "          'nlapaglias': 1,\n",
      "          'sincere': 1,\n",
      "          'dimwitted': 1,\n",
      "          'riot': 1,\n",
      "          'whats': 1,\n",
      "          'uncanny': 1,\n",
      "          'dead': 1,\n",
      "          'ringer': 1,\n",
      "          'robert': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'alec': 1,\n",
      "          'baldwin': 1,\n",
      "          'thrown': 1,\n",
      "          'good': 1,\n",
      "          'measure': 1,\n",
      "          'seems': 1,\n",
      "          'attended': 1,\n",
      "          'school': 1,\n",
      "          'gangster': 1,\n",
      "          'inspired': 1,\n",
      "          'tribute': 1,\n",
      "          'rolemodel': 1,\n",
      "          'ripoff': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'whether': 1,\n",
      "          'say': 1,\n",
      "          'born': 1,\n",
      "          'reborn': 1,\n",
      "          'lapaglias': 1,\n",
      "          'overthetop': 1,\n",
      "          'missed': 1,\n",
      "          'scrumptious': 1,\n",
      "          'extends': 1,\n",
      "          'well': 1,\n",
      "          'beyond': 1,\n",
      "          'njoe': 1,\n",
      "          'pesci': 1,\n",
      "          'particular': 1,\n",
      "          'sinks': 1,\n",
      "          'teeth': 1,\n",
      "          'role': 1,\n",
      "          'unscrupulous': 1,\n",
      "          'brotherinlaw': 1,\n",
      "          'slum': 1,\n",
      "          'lord': 1,\n",
      "          'mob': 1,\n",
      "          'ties': 1,\n",
      "          'cheating': 1,\n",
      "          'wife': 1,\n",
      "          'catherine': 1,\n",
      "          'ohara': 1,\n",
      "          'nalda': 1,\n",
      "          'faced': 1,\n",
      "          'challenge': 1,\n",
      "          'directing': 1,\n",
      "          'somehow': 1,\n",
      "          'finds': 1,\n",
      "          'right': 1,\n",
      "          'touch': 1,\n",
      "          'financiallystrapped': 1,\n",
      "          'carpenter': 1,\n",
      "          'whose': 1,\n",
      "          'dreams': 1,\n",
      "          'bigger': 1,\n",
      "          'wallet': 1,\n",
      "          'adopts': 1,\n",
      "          'psychological': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'tries': 1,\n",
      "          'plan': 1,\n",
      "          'pay': 1,\n",
      "          'filmmaker': 1,\n",
      "          'style': 1,\n",
      "          'remarkably': 1,\n",
      "          'restrained': 1,\n",
      "          'tasteful': 1,\n",
      "          'doesnt': 1,\n",
      "          'genius': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'possess': 1,\n",
      "          'inspiration': 1,\n",
      "          'movies': 1,\n",
      "          'ten': 1,\n",
      "          'times': 1,\n",
      "          'entertaining': 1,\n",
      "          'slop': 1,\n",
      "          'usually': 1,\n",
      "          'passes': 1,\n",
      "          'comedy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'lumumba': 5,\n",
      "          'npecks': 3,\n",
      "          'particularly': 2,\n",
      "          'janssens': 2,\n",
      "          'life': 2,\n",
      "          'like': 2,\n",
      "          'ebouaney': 2,\n",
      "          'bloody': 1,\n",
      "          'clashes': 1,\n",
      "          'independence': 1,\n",
      "          'refused': 1,\n",
      "          'pander': 1,\n",
      "          'belgians': 1,\n",
      "          'continued': 1,\n",
      "          'condescending': 1,\n",
      "          'paternalistic': 1,\n",
      "          'relationship': 1,\n",
      "          'congo': 1,\n",
      "          'ntheir': 1,\n",
      "          'officers': 1,\n",
      "          'general': 1,\n",
      "          'rudi': 1,\n",
      "          'delhem': 1,\n",
      "          'force': 1,\n",
      "          'publique': 1,\n",
      "          'congos': 1,\n",
      "          'army': 1,\n",
      "          'caused': 1,\n",
      "          'rebellions': 1,\n",
      "          'undermining': 1,\n",
      "          'outraged': 1,\n",
      "          'rape': 1,\n",
      "          'murder': 1,\n",
      "          'belgian': 1,\n",
      "          'nationals': 1,\n",
      "          'nwith': 1,\n",
      "          'unrest': 1,\n",
      "          'building': 1,\n",
      "          'moise': 1,\n",
      "          'tshombe': 1,\n",
      "          'pascal': 1,\n",
      "          'nzonzi': 1,\n",
      "          'province': 1,\n",
      "          'katanga': 1,\n",
      "          'contained': 1,\n",
      "          '70': 1,\n",
      "          'percent': 1,\n",
      "          'countrys': 1,\n",
      "          'resources': 1,\n",
      "          'proclaimed': 1,\n",
      "          'secession': 1,\n",
      "          'nlumumba': 1,\n",
      "          'replaced': 1,\n",
      "          'making': 1,\n",
      "          'mobutu': 1,\n",
      "          'colonel': 1,\n",
      "          'went': 1,\n",
      "          'pacification': 1,\n",
      "          'ntour': 1,\n",
      "          'congolese': 1,\n",
      "          'president': 1,\n",
      "          'joseph': 1,\n",
      "          'kasa': 1,\n",
      "          'vubu': 1,\n",
      "          'maka': 1,\n",
      "          'kotto': 1,\n",
      "          'late': 1,\n",
      "          'nwhen': 1,\n",
      "          'want': 1,\n",
      "          'drown': 1,\n",
      "          'dog': 1,\n",
      "          'say': 1,\n",
      "          'rabies': 1,\n",
      "          'prophesies': 1,\n",
      "          'fate': 1,\n",
      "          'npeck': 1,\n",
      "          'bonitzer': 1,\n",
      "          'exemplary': 1,\n",
      "          'job': 1,\n",
      "          'telling': 1,\n",
      "          'complicated': 1,\n",
      "          'tale': 1,\n",
      "          'myriad': 1,\n",
      "          'players': 1,\n",
      "          'although': 1,\n",
      "          'frequently': 1,\n",
      "          'succumb': 1,\n",
      "          'cliche': 1,\n",
      "          'regarding': 1,\n",
      "          'lumumbas': 1,\n",
      "          'private': 1,\n",
      "          'script': 1,\n",
      "          'illuminates': 1,\n",
      "          'bantu': 1,\n",
      "          'sayings': 1,\n",
      "          'hand': 1,\n",
      "          'gives': 1,\n",
      "          'rules': 1,\n",
      "          'uses': 1,\n",
      "          'american': 1,\n",
      "          'ambassador': 1,\n",
      "          'direction': 1,\n",
      "          'less': 1,\n",
      "          'assured': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'unfortunately': 1,\n",
      "          'playing': 1,\n",
      "          'standard': 1,\n",
      "          'television': 1,\n",
      "          'fare': 1,\n",
      "          'nhes': 1,\n",
      "          'served': 1,\n",
      "          'well': 1,\n",
      "          'though': 1,\n",
      "          'casting': 1,\n",
      "          'title': 1,\n",
      "          'role': 1,\n",
      "          'nebouaney': 1,\n",
      "          'dynamic': 1,\n",
      "          'radiating': 1,\n",
      "          'characters': 1,\n",
      "          'fierce': 1,\n",
      "          'passion': 1,\n",
      "          'people': 1,\n",
      "          'country': 1,\n",
      "          'nlumumbas': 1,\n",
      "          'intelligence': 1,\n",
      "          'ability': 1,\n",
      "          'strategize': 1,\n",
      "          'even': 1,\n",
      "          'hes': 1,\n",
      "          'cornered': 1,\n",
      "          'insurmountable': 1,\n",
      "          'odds': 1,\n",
      "          'given': 1,\n",
      "          'subject': 1,\n",
      "          'lead': 1,\n",
      "          'actor': 1,\n",
      "          'elevate': 1,\n",
      "          'film': 1,\n",
      "          'mediocre': 1,\n",
      "          'production': 1,\n",
      "          'n': 1,\n",
      "          'story': 1,\n",
      "          'deserves': 1,\n",
      "          'told': 1,\n",
      "          'ebouaneys': 1,\n",
      "          'performance': 1,\n",
      "          'makes': 1,\n",
      "          'tragedy': 1,\n",
      "          'personally': 1,\n",
      "          'felt': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'monkey': 8,\n",
      "          'kung': 6,\n",
      "          'fu': 6,\n",
      "          'film': 5,\n",
      "          'iron': 5,\n",
      "          'drunken': 5,\n",
      "          'master': 5,\n",
      "          'action': 4,\n",
      "          '2': 4,\n",
      "          'asian': 3,\n",
      "          'nbut': 3,\n",
      "          'chinese': 3,\n",
      "          'niron': 3,\n",
      "          'wong': 3,\n",
      "          'feihong': 3,\n",
      "          'death': 2,\n",
      "          'sea': 2,\n",
      "          'stunt': 2,\n",
      "          'matrix': 2,\n",
      "          'floating': 2,\n",
      "          'nin': 2,\n",
      "          'fighting': 2,\n",
      "          'hero': 2,\n",
      "          'films': 2,\n",
      "          'like': 2,\n",
      "          'crouching': 2,\n",
      "          'tiger': 2,\n",
      "          'moments': 2,\n",
      "          'american': 1,\n",
      "          'slowly': 1,\n",
      "          'drowning': 1,\n",
      "          'wirefu': 1,\n",
      "          'copycats': 1,\n",
      "          'nits': 1,\n",
      "          'pretty': 1,\n",
      "          'leaving': 1,\n",
      "          'likes': 1,\n",
      "          'schwartznager': 1,\n",
      "          'stallone': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'wearing': 1,\n",
      "          'cement': 1,\n",
      "          'galoshes': 1,\n",
      "          'bottom': 1,\n",
      "          'nsometimes': 1,\n",
      "          'mix': 1,\n",
      "          'results': 1,\n",
      "          'mindblowing': 1,\n",
      "          'spectacle': 1,\n",
      "          'unlike': 1,\n",
      "          'nquality': 1,\n",
      "          'amazing': 1,\n",
      "          'exciting': 1,\n",
      "          'work': 1,\n",
      "          '1999s': 1,\n",
      "          'real': 1,\n",
      "          'gem': 1,\n",
      "          'often': 1,\n",
      "          'hollywood': 1,\n",
      "          'gets': 1,\n",
      "          'wrong': 1,\n",
      "          'even': 1,\n",
      "          'pay': 1,\n",
      "          'directors': 1,\n",
      "          'nflying': 1,\n",
      "          'ninjas': 1,\n",
      "          'karate': 1,\n",
      "          'masters': 1,\n",
      "          'replaced': 1,\n",
      "          'soaring': 1,\n",
      "          'bronx': 1,\n",
      "          'detectives': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'kicking': 1,\n",
      "          'scientists': 1,\n",
      "          'nmostly': 1,\n",
      "          'laughable': 1,\n",
      "          'hollywoods': 1,\n",
      "          'rush': 1,\n",
      "          'emulate': 1,\n",
      "          'success': 1,\n",
      "          'trademark': 1,\n",
      "          'choreography': 1,\n",
      "          'become': 1,\n",
      "          'joke': 1,\n",
      "          'art': 1,\n",
      "          'form': 1,\n",
      "          'latest': 1,\n",
      "          'import': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'get': 1,\n",
      "          'right': 1,\n",
      "          'actually': 1,\n",
      "          'reissue': 1,\n",
      "          '1993': 1,\n",
      "          'story': 1,\n",
      "          '19th': 1,\n",
      "          'vigilante': 1,\n",
      "          'rongguang': 1,\n",
      "          'yu': 1,\n",
      "          'unique': 1,\n",
      "          'style': 1,\n",
      "          'shaolin': 1,\n",
      "          'rights': 1,\n",
      "          'oppressed': 1,\n",
      "          'bellies': 1,\n",
      "          'hungry': 1,\n",
      "          'also': 1,\n",
      "          'piece': 1,\n",
      "          'narrative': 1,\n",
      "          'legendary': 1,\n",
      "          'recently': 1,\n",
      "          'seen': 1,\n",
      "          'one': 1,\n",
      "          'overlooked': 1,\n",
      "          'possibly': 1,\n",
      "          'best': 1,\n",
      "          '2000': 1,\n",
      "          'released': 1,\n",
      "          'u': 1,\n",
      "          'legend': 1,\n",
      "          'nunlike': 1,\n",
      "          'stars': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'adult': 1,\n",
      "          'finds': 1,\n",
      "          'much': 1,\n",
      "          'younger': 1,\n",
      "          'szeman': 1,\n",
      "          'tsang': 1,\n",
      "          'father': 1,\n",
      "          'keiying': 1,\n",
      "          'yen': 1,\n",
      "          'chi': 1,\n",
      "          'dan': 1,\n",
      "          'thrust': 1,\n",
      "          'middle': 1,\n",
      "          'monkeys': 1,\n",
      "          'fight': 1,\n",
      "          'oppression': 1,\n",
      "          'succeeds': 1,\n",
      "          'since': 1,\n",
      "          'times': 1,\n",
      "          'styles': 1,\n",
      "          'especially': 1,\n",
      "          'devolve': 1,\n",
      "          'ridiculous': 1,\n",
      "          'twinkletoed': 1,\n",
      "          'hidden': 1,\n",
      "          'dragon': 1,\n",
      "          'director': 1,\n",
      "          'yuen': 1,\n",
      "          'wo': 1,\n",
      "          'ping': 1,\n",
      "          'eventually': 1,\n",
      "          'remembers': 1,\n",
      "          'bring': 1,\n",
      "          'scenes': 1,\n",
      "          'back': 1,\n",
      "          'earth': 1,\n",
      "          'heart': 1,\n",
      "          'hardcore': 1,\n",
      "          'rather': 1,\n",
      "          'kind': 1,\n",
      "          'drama': 1,\n",
      "          'la': 1,\n",
      "          'nhowever': 1,\n",
      "          'brief': 1,\n",
      "          'profoundness': 1,\n",
      "          'shared': 1,\n",
      "          'characters': 1,\n",
      "          'pass': 1,\n",
      "          'outlaw': 1,\n",
      "          'goodhearted': 1,\n",
      "          'misguided': 1,\n",
      "          'enemy': 1,\n",
      "          'chief': 1,\n",
      "          'fox': 1,\n",
      "          'others': 1,\n",
      "          'manages': 1,\n",
      "          'transcend': 1,\n",
      "          'mindless': 1,\n",
      "          'nature': 1,\n",
      "          'touch': 1,\n",
      "          'hearts': 1,\n",
      "          'minds': 1,\n",
      "          'audience': 1,\n",
      "          'nwhile': 1,\n",
      "          'way': 1,\n",
      "          'equal': 1,\n",
      "          'masterpiece': 1,\n",
      "          'dances': 1,\n",
      "          'quite': 1,\n",
      "          'nicely': 1,\n",
      "          'invading': 1,\n",
      "          'tune': 1,\n",
      "          'naka': 1,\n",
      "          'siunin': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'feihung': 1,\n",
      "          'tsi': 1,\n",
      "          'titmalau': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'race': 5,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'key': 4,\n",
      "          'would': 4,\n",
      "          'rat': 3,\n",
      "          'another': 3,\n",
      "          'first': 3,\n",
      "          'n': 3,\n",
      "          'sinclair': 3,\n",
      "          'las': 3,\n",
      "          'vegas': 3,\n",
      "          'together': 3,\n",
      "          'gets': 3,\n",
      "          'man': 3,\n",
      "          'driver': 3,\n",
      "          'performances': 2,\n",
      "          'comedy': 2,\n",
      "          'cast': 2,\n",
      "          'comes': 2,\n",
      "          'bets': 2,\n",
      "          'game': 2,\n",
      "          'contestant': 2,\n",
      "          'locker': 2,\n",
      "          'silver': 2,\n",
      "          'city': 2,\n",
      "          'money': 2,\n",
      "          'jokes': 2,\n",
      "          'little': 2,\n",
      "          'bit': 2,\n",
      "          'america': 2,\n",
      "          'gamblers': 2,\n",
      "          'country': 2,\n",
      "          'also': 2,\n",
      "          'jon': 2,\n",
      "          'lovitz': 2,\n",
      "          'beverly': 2,\n",
      "          'kathy': 2,\n",
      "          'family': 2,\n",
      "          'duane': 2,\n",
      "          'tracy': 2,\n",
      "          'zucker': 2,\n",
      "          'racer': 2,\n",
      "          'bizarre': 2,\n",
      "          'watching': 1,\n",
      "          'last': 1,\n",
      "          'week': 1,\n",
      "          'noticed': 1,\n",
      "          'cheeks': 1,\n",
      "          'sore': 1,\n",
      "          'realized': 1,\n",
      "          'laughing': 1,\n",
      "          'aloud': 1,\n",
      "          'held': 1,\n",
      "          'grin': 1,\n",
      "          'virtually': 1,\n",
      "          'films': 1,\n",
      "          '112': 1,\n",
      "          'minutes': 1,\n",
      "          'nsaturday': 1,\n",
      "          'night': 1,\n",
      "          'attended': 1,\n",
      "          'sneak': 1,\n",
      "          'preview': 1,\n",
      "          'damned': 1,\n",
      "          'didnt': 1,\n",
      "          'enjoy': 1,\n",
      "          'much': 1,\n",
      "          'second': 1,\n",
      "          'time': 1,\n",
      "          'great': 1,\n",
      "          'goofy': 1,\n",
      "          'delight': 1,\n",
      "          'dandy': 1,\n",
      "          'mix': 1,\n",
      "          'energetic': 1,\n",
      "          'inspired': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'flatout': 1,\n",
      "          'silliness': 1,\n",
      "          'nhands': 1,\n",
      "          'fun': 1,\n",
      "          'film': 1,\n",
      "          'summer': 1,\n",
      "          'begins': 1,\n",
      "          'zippy': 1,\n",
      "          'retrostyle': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'torn': 1,\n",
      "          'straight': 1,\n",
      "          '60s': 1,\n",
      "          'slapstick': 1,\n",
      "          'featuring': 1,\n",
      "          'animated': 1,\n",
      "          'photos': 1,\n",
      "          'attached': 1,\n",
      "          'herkyjerky': 1,\n",
      "          'bodies': 1,\n",
      "          'bounding': 1,\n",
      "          'around': 1,\n",
      "          'screen': 1,\n",
      "          'nthen': 1,\n",
      "          'setup': 1,\n",
      "          'ndonald': 1,\n",
      "          'john': 1,\n",
      "          'cleese': 1,\n",
      "          'extremely': 1,\n",
      "          'rich': 1,\n",
      "          'owner': 1,\n",
      "          'venetian': 1,\n",
      "          'hotel': 1,\n",
      "          'casino': 1,\n",
      "          'enjoys': 1,\n",
      "          'concocting': 1,\n",
      "          'unusual': 1,\n",
      "          'high': 1,\n",
      "          'rolling': 1,\n",
      "          'clients': 1,\n",
      "          'nto': 1,\n",
      "          'end': 1,\n",
      "          'places': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'special': 1,\n",
      "          'tokens': 1,\n",
      "          'slot': 1,\n",
      "          'machines': 1,\n",
      "          'ngathering': 1,\n",
      "          'lucky': 1,\n",
      "          'token': 1,\n",
      "          'holders': 1,\n",
      "          'explains': 1,\n",
      "          'today': 1,\n",
      "          'chance': 1,\n",
      "          'play': 1,\n",
      "          'odds': 1,\n",
      "          'winning': 1,\n",
      "          'one': 1,\n",
      "          'six': 1,\n",
      "          'competition': 1,\n",
      "          'simple': 1,\n",
      "          'opens': 1,\n",
      "          'containing': 1,\n",
      "          '2': 1,\n",
      "          'million': 1,\n",
      "          'cash': 1,\n",
      "          'nthere': 1,\n",
      "          'transmitter': 1,\n",
      "          'every': 1,\n",
      "          'cronies': 1,\n",
      "          'keep': 1,\n",
      "          'track': 1,\n",
      "          'ahead': 1,\n",
      "          'rules': 1,\n",
      "          'whichever': 1,\n",
      "          'reaches': 1,\n",
      "          'nsince': 1,\n",
      "          'wrong': 1,\n",
      "          'spoil': 1,\n",
      "          'lets': 1,\n",
      "          'use': 1,\n",
      "          'next': 1,\n",
      "          'paragraphs': 1,\n",
      "          'profile': 1,\n",
      "          'racers': 1,\n",
      "          'ndecked': 1,\n",
      "          'flashy': 1,\n",
      "          'trashy': 1,\n",
      "          'clothing': 1,\n",
      "          'sporting': 1,\n",
      "          'big': 1,\n",
      "          'hair': 1,\n",
      "          'vera': 1,\n",
      "          'baker': 1,\n",
      "          'whoopi': 1,\n",
      "          'goldberg': 1,\n",
      "          'town': 1,\n",
      "          'reunite': 1,\n",
      "          'daughter': 1,\n",
      "          'gave': 1,\n",
      "          'adoption': 1,\n",
      "          'baby': 1,\n",
      "          'nshe': 1,\n",
      "          'finds': 1,\n",
      "          'grownup': 1,\n",
      "          'merrill': 1,\n",
      "          'lanai': 1,\n",
      "          'chapman': 1,\n",
      "          'erudite': 1,\n",
      "          'conservative': 1,\n",
      "          'wary': 1,\n",
      "          'stranger': 1,\n",
      "          'trying': 1,\n",
      "          'jump': 1,\n",
      "          'life': 1,\n",
      "          'nthrown': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'women': 1,\n",
      "          'share': 1,\n",
      "          'fierce': 1,\n",
      "          'competitive': 1,\n",
      "          'nature': 1,\n",
      "          'nowen': 1,\n",
      "          'templeton': 1,\n",
      "          'cuba': 1,\n",
      "          'gooding': 1,\n",
      "          'jr': 1,\n",
      "          'currently': 1,\n",
      "          'hated': 1,\n",
      "          'nan': 1,\n",
      "          'nfl': 1,\n",
      "          'referee': 1,\n",
      "          'cost': 1,\n",
      "          'enormous': 1,\n",
      "          'amounts': 1,\n",
      "          'blowing': 1,\n",
      "          'call': 1,\n",
      "          'highprofile': 1,\n",
      "          'nafter': 1,\n",
      "          'escaping': 1,\n",
      "          'vengeful': 1,\n",
      "          'cab': 1,\n",
      "          'owen': 1,\n",
      "          'new': 1,\n",
      "          'mexico': 1,\n",
      "          'masquerading': 1,\n",
      "          'busload': 1,\n",
      "          'lucy': 1,\n",
      "          'ricardo': 1,\n",
      "          'impersonators': 1,\n",
      "          'heading': 1,\n",
      "          'convention': 1,\n",
      "          'nmr': 1,\n",
      "          'pollini': 1,\n",
      "          'rowan': 1,\n",
      "          'atkinson': 1,\n",
      "          'cheerful': 1,\n",
      "          'odd': 1,\n",
      "          'italian': 1,\n",
      "          'holiday': 1,\n",
      "          'nhe': 1,\n",
      "          'narcoleptic': 1,\n",
      "          'falls': 1,\n",
      "          'asleep': 1,\n",
      "          'inopportune': 1,\n",
      "          'times': 1,\n",
      "          'npollini': 1,\n",
      "          'hitches': 1,\n",
      "          'ride': 1,\n",
      "          'zack': 1,\n",
      "          'wayne': 1,\n",
      "          'knight': 1,\n",
      "          'hypertense': 1,\n",
      "          'ambulance': 1,\n",
      "          'carrying': 1,\n",
      "          'human': 1,\n",
      "          'heart': 1,\n",
      "          'across': 1,\n",
      "          'transplant': 1,\n",
      "          'operation': 1,\n",
      "          'nrandy': 1,\n",
      "          'pear': 1,\n",
      "          'promised': 1,\n",
      "          'wife': 1,\n",
      "          'najimy': 1,\n",
      "          'two': 1,\n",
      "          'kids': 1,\n",
      "          'funfilled': 1,\n",
      "          'vacation': 1,\n",
      "          'nfearful': 1,\n",
      "          'angry': 1,\n",
      "          'involvement': 1,\n",
      "          'claims': 1,\n",
      "          'must': 1,\n",
      "          'travel': 1,\n",
      "          'job': 1,\n",
      "          'interview': 1,\n",
      "          'nbeverly': 1,\n",
      "          'insists': 1,\n",
      "          'stay': 1,\n",
      "          'hop': 1,\n",
      "          'minivan': 1,\n",
      "          'tear': 1,\n",
      "          'desert': 1,\n",
      "          'nbrothers': 1,\n",
      "          'seth': 1,\n",
      "          'green': 1,\n",
      "          'blaine': 1,\n",
      "          'vince': 1,\n",
      "          'vieluf': 1,\n",
      "          'cody': 1,\n",
      "          'young': 1,\n",
      "          'crooked': 1,\n",
      "          'stupid': 1,\n",
      "          'nblaine': 1,\n",
      "          'speech': 1,\n",
      "          'impediment': 1,\n",
      "          'due': 1,\n",
      "          'poorly': 1,\n",
      "          'selfdone': 1,\n",
      "          'tongue': 1,\n",
      "          'piercing': 1,\n",
      "          'person': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'understanding': 1,\n",
      "          'boys': 1,\n",
      "          'stop': 1,\n",
      "          'nothing': 1,\n",
      "          'reach': 1,\n",
      "          'goal': 1,\n",
      "          'nfinally': 1,\n",
      "          'nick': 1,\n",
      "          'shaffer': 1,\n",
      "          'breckin': 1,\n",
      "          'meyer': 1,\n",
      "          'nononsense': 1,\n",
      "          'lawyerintraining': 1,\n",
      "          'recruits': 1,\n",
      "          'helicopter': 1,\n",
      "          'pilot': 1,\n",
      "          'faucet': 1,\n",
      "          'amy': 1,\n",
      "          'smart': 1,\n",
      "          'journey': 1,\n",
      "          'nat': 1,\n",
      "          'glance': 1,\n",
      "          'seem': 1,\n",
      "          'blandly': 1,\n",
      "          'wholesome': 1,\n",
      "          'changes': 1,\n",
      "          'buzzes': 1,\n",
      "          'home': 1,\n",
      "          'boyfriend': 1,\n",
      "          'shawn': 1,\n",
      "          'dean': 1,\n",
      "          'cain': 1,\n",
      "          'spies': 1,\n",
      "          'swimming': 1,\n",
      "          'woman': 1,\n",
      "          'ndirector': 1,\n",
      "          'jerry': 1,\n",
      "          'airplane': 1,\n",
      "          'ghost': 1,\n",
      "          'leaps': 1,\n",
      "          'periodically': 1,\n",
      "          'returning': 1,\n",
      "          'mr': 1,\n",
      "          'grisham': 1,\n",
      "          'dave': 1,\n",
      "          'thomas': 1,\n",
      "          'personalityimpaired': 1,\n",
      "          'right': 1,\n",
      "          'hand': 1,\n",
      "          'continue': 1,\n",
      "          'cooking': 1,\n",
      "          'nas': 1,\n",
      "          'production': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'momentum': 1,\n",
      "          'zooms': 1,\n",
      "          'past': 1,\n",
      "          'missteps': 1,\n",
      "          'nhigh': 1,\n",
      "          'points': 1,\n",
      "          'include': 1,\n",
      "          'involving': 1,\n",
      "          'bates': 1,\n",
      "          'roadside': 1,\n",
      "          'squirrel': 1,\n",
      "          'salesperson': 1,\n",
      "          'intricately': 1,\n",
      "          'set': 1,\n",
      "          'gag': 1,\n",
      "          'carries': 1,\n",
      "          'museum': 1,\n",
      "          'outdoor': 1,\n",
      "          'rally': 1,\n",
      "          'utterly': 1,\n",
      "          'tasteless': 1,\n",
      "          'screamingly': 1,\n",
      "          'funny': 1,\n",
      "          'payoff': 1,\n",
      "          'nhad': 1,\n",
      "          'part': 1,\n",
      "          'filmmaking': 1,\n",
      "          'team': 1,\n",
      "          'ditched': 1,\n",
      "          'joke': 1,\n",
      "          'dropped': 1,\n",
      "          'babys': 1,\n",
      "          'clothes': 1,\n",
      "          'instead': 1,\n",
      "          'get': 1,\n",
      "          'lost': 1,\n",
      "          'cleavage': 1,\n",
      "          'dozing': 1,\n",
      "          'society': 1,\n",
      "          'matron': 1,\n",
      "          'nit': 1,\n",
      "          'drawn': 1,\n",
      "          'laugh': 1,\n",
      "          'without': 1,\n",
      "          'squirminducing': 1,\n",
      "          'hint': 1,\n",
      "          'child': 1,\n",
      "          'molestation': 1,\n",
      "          'ni': 1,\n",
      "          'selected': 1,\n",
      "          'different': 1,\n",
      "          'band': 1,\n",
      "          'concert': 1,\n",
      "          'sequence': 1,\n",
      "          'nmy': 1,\n",
      "          'god': 1,\n",
      "          'really': 1,\n",
      "          'need': 1,\n",
      "          'yet': 1,\n",
      "          'smash': 1,\n",
      "          'mouth': 1,\n",
      "          'performing': 1,\n",
      "          'star': 1,\n",
      "          'nbut': 1,\n",
      "          'enough': 1,\n",
      "          'carping': 1,\n",
      "          'riot': 1,\n",
      "          'terrific': 1,\n",
      "          'noholdsbarred': 1,\n",
      "          'diverse': 1,\n",
      "          'nsee': 1,\n",
      "          'see': 1,\n",
      "          'dvd': 1,\n",
      "          'buy': 1,\n",
      "          'hilarious': 1,\n",
      "          'surely': 1,\n",
      "          'outtakes': 1,\n",
      "          'die': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'angels': 7,\n",
      "          'movie': 5,\n",
      "          'city': 5,\n",
      "          'never': 4,\n",
      "          'even': 4,\n",
      "          'much': 4,\n",
      "          'maggie': 4,\n",
      "          'us': 4,\n",
      "          'film': 3,\n",
      "          'going': 3,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'ryan': 3,\n",
      "          'quite': 3,\n",
      "          'ive': 2,\n",
      "          'something': 2,\n",
      "          'films': 2,\n",
      "          'seen': 2,\n",
      "          'well': 2,\n",
      "          'experience': 2,\n",
      "          'presented': 2,\n",
      "          'poetic': 2,\n",
      "          'ending': 2,\n",
      "          'though': 2,\n",
      "          'nbut': 2,\n",
      "          'seth': 2,\n",
      "          'angel': 2,\n",
      "          'humans': 2,\n",
      "          'doctor': 2,\n",
      "          'begins': 2,\n",
      "          'patient': 2,\n",
      "          'taste': 2,\n",
      "          'touch': 2,\n",
      "          'make': 2,\n",
      "          'desire': 2,\n",
      "          'seems': 2,\n",
      "          'nice': 2,\n",
      "          'nits': 2,\n",
      "          'roles': 2,\n",
      "          'one': 2,\n",
      "          'two': 2,\n",
      "          'impressive': 2,\n",
      "          'goers': 2,\n",
      "          'final': 2,\n",
      "          'know': 2,\n",
      "          'enough': 2,\n",
      "          'noticed': 1,\n",
      "          'lately': 1,\n",
      "          'thought': 1,\n",
      "          'npseudo': 1,\n",
      "          'substance': 1,\n",
      "          'hollywood': 1,\n",
      "          'faking': 1,\n",
      "          'deep': 1,\n",
      "          'meanings': 1,\n",
      "          'nhave': 1,\n",
      "          'ever': 1,\n",
      "          'really': 1,\n",
      "          'enjoyed': 1,\n",
      "          'look': 1,\n",
      "          'back': 1,\n",
      "          'realize': 1,\n",
      "          'missing': 1,\n",
      "          'nmore': 1,\n",
      "          'filmmakers': 1,\n",
      "          'seem': 1,\n",
      "          'putting': 1,\n",
      "          'rehearsed': 1,\n",
      "          'melodramatic': 1,\n",
      "          'evoke': 1,\n",
      "          'strong': 1,\n",
      "          'connotations': 1,\n",
      "          'great': 1,\n",
      "          'step': 1,\n",
      "          'aside': 1,\n",
      "          'reflect': 1,\n",
      "          'may': 1,\n",
      "          'discover': 1,\n",
      "          'nothing': 1,\n",
      "          'elegantly': 1,\n",
      "          'fluff': 1,\n",
      "          'nim': 1,\n",
      "          'trying': 1,\n",
      "          'say': 1,\n",
      "          'bad': 1,\n",
      "          'nit': 1,\n",
      "          'lot': 1,\n",
      "          'somewhere': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'faltered': 1,\n",
      "          'nsomehow': 1,\n",
      "          'underneath': 1,\n",
      "          'seemingly': 1,\n",
      "          'beauty': 1,\n",
      "          'gigantic': 1,\n",
      "          'hole': 1,\n",
      "          'somebody': 1,\n",
      "          'covered': 1,\n",
      "          'iridescent': 1,\n",
      "          'performances': 1,\n",
      "          'glossy': 1,\n",
      "          'cinematography': 1,\n",
      "          'predictable': 1,\n",
      "          'shattered': 1,\n",
      "          'hopes': 1,\n",
      "          'saw': 1,\n",
      "          'coming': 1,\n",
      "          'added': 1,\n",
      "          'disappointment': 1,\n",
      "          'hour': 1,\n",
      "          'worth': 1,\n",
      "          'time': 1,\n",
      "          'nnicolas': 1,\n",
      "          'cage': 1,\n",
      "          'guardian': 1,\n",
      "          'hundreds': 1,\n",
      "          'likely': 1,\n",
      "          'thousands': 1,\n",
      "          'millions': 1,\n",
      "          'spends': 1,\n",
      "          'eternity': 1,\n",
      "          'watching': 1,\n",
      "          'citizens': 1,\n",
      "          'mortality': 1,\n",
      "          'aware': 1,\n",
      "          'celestial': 1,\n",
      "          'intervention': 1,\n",
      "          'occurs': 1,\n",
      "          'life': 1,\n",
      "          'nmeg': 1,\n",
      "          'subdued': 1,\n",
      "          'performance': 1,\n",
      "          'yet': 1,\n",
      "          'plays': 1,\n",
      "          'ponder': 1,\n",
      "          'exactly': 1,\n",
      "          'fighting': 1,\n",
      "          'fight': 1,\n",
      "          'keep': 1,\n",
      "          'someone': 1,\n",
      "          'alive': 1,\n",
      "          'nafter': 1,\n",
      "          'losing': 1,\n",
      "          'surgery': 1,\n",
      "          'table': 1,\n",
      "          'questions': 1,\n",
      "          'envelope': 1,\n",
      "          'oversee': 1,\n",
      "          'patients': 1,\n",
      "          'transition': 1,\n",
      "          'afterlife': 1,\n",
      "          'immediately': 1,\n",
      "          'captivated': 1,\n",
      "          'nhe': 1,\n",
      "          'following': 1,\n",
      "          'observing': 1,\n",
      "          'falling': 1,\n",
      "          'love': 1,\n",
      "          'everyday': 1,\n",
      "          'nangels': 1,\n",
      "          'quickly': 1,\n",
      "          'learn': 1,\n",
      "          'human': 1,\n",
      "          'sensations': 1,\n",
      "          'ability': 1,\n",
      "          'anyone': 1,\n",
      "          'nseths': 1,\n",
      "          'adoration': 1,\n",
      "          'resist': 1,\n",
      "          'eventually': 1,\n",
      "          'appear': 1,\n",
      "          'regularly': 1,\n",
      "          'although': 1,\n",
      "          'thing': 1,\n",
      "          'taboo': 1,\n",
      "          'among': 1,\n",
      "          'angelic': 1,\n",
      "          'community': 1,\n",
      "          'interestingly': 1,\n",
      "          'dressed': 1,\n",
      "          'black': 1,\n",
      "          'reminiscent': 1,\n",
      "          'hitmen': 1,\n",
      "          'traditional': 1,\n",
      "          'glowing': 1,\n",
      "          'white': 1,\n",
      "          'entities': 1,\n",
      "          'mere': 1,\n",
      "          'attempt': 1,\n",
      "          'uniqueness': 1,\n",
      "          'ncage': 1,\n",
      "          'wonderfully': 1,\n",
      "          'versatile': 1,\n",
      "          'actor': 1,\n",
      "          'think': 1,\n",
      "          'faceoff': 1,\n",
      "          'raising': 1,\n",
      "          'arizona': 1,\n",
      "          'could': 1,\n",
      "          'happen': 1,\n",
      "          'combo': 1,\n",
      "          'slips': 1,\n",
      "          'role': 1,\n",
      "          'heavenly': 1,\n",
      "          'agent': 1,\n",
      "          'nicely': 1,\n",
      "          'threatens': 1,\n",
      "          'sappiness': 1,\n",
      "          'see': 1,\n",
      "          'pick': 1,\n",
      "          'courage': 1,\n",
      "          'fire': 1,\n",
      "          'arent': 1,\n",
      "          'comparable': 1,\n",
      "          'deviate': 1,\n",
      "          'usual': 1,\n",
      "          'intelligently': 1,\n",
      "          'ditzy': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'side': 1,\n",
      "          'rarely': 1,\n",
      "          'chance': 1,\n",
      "          'enjoy': 1,\n",
      "          'leads': 1,\n",
      "          'job': 1,\n",
      "          'dennis': 1,\n",
      "          'franz': 1,\n",
      "          'grabs': 1,\n",
      "          'interpretation': 1,\n",
      "          'hospital': 1,\n",
      "          'knows': 1,\n",
      "          'meets': 1,\n",
      "          'eye': 1,\n",
      "          'shame': 1,\n",
      "          'falters': 1,\n",
      "          'stages': 1,\n",
      "          'leaving': 1,\n",
      "          'realization': 1,\n",
      "          'emotionally': 1,\n",
      "          'incredible': 1,\n",
      "          'didnt': 1,\n",
      "          'get': 1,\n",
      "          'nthey': 1,\n",
      "          'struggle': 1,\n",
      "          'impacting': 1,\n",
      "          'conclusion': 1,\n",
      "          'wind': 1,\n",
      "          'painful': 1,\n",
      "          'thud': 1,\n",
      "          'rather': 1,\n",
      "          'exhilarating': 1,\n",
      "          'high': 1,\n",
      "          'nfilmmakers': 1,\n",
      "          'impression': 1,\n",
      "          'linger': 1,\n",
      "          'remember': 1,\n",
      "          'convey': 1,\n",
      "          'others': 1,\n",
      "          'thru': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'telling': 1,\n",
      "          '60': 1,\n",
      "          'minutes': 1,\n",
      "          'glorious': 1,\n",
      "          'masterpiece': 1,\n",
      "          'sure': 1,\n",
      "          'leave': 1,\n",
      "          'disheartening': 1,\n",
      "          'mediocrity': 1,\n",
      "          'mouths': 1,\n",
      "          'nbased': 1,\n",
      "          'german': 1,\n",
      "          'wings': 1,\n",
      "          'english': 1,\n",
      "          'title': 1,\n",
      "          'course': 1,\n",
      "          'ninety': 1,\n",
      "          'percent': 1,\n",
      "          'success': 1,\n",
      "          'people': 1,\n",
      "          'forgive': 1,\n",
      "          'shortcomings': 1,\n",
      "          'devastatingly': 1,\n",
      "          'disappointing': 1,\n",
      "          'nmost': 1,\n",
      "          'noncynics': 1,\n",
      "          'anyway': 1,\n",
      "          'wrapped': 1,\n",
      "          'surreal': 1,\n",
      "          'atmosphere': 1,\n",
      "          'give': 1,\n",
      "          'criticism': 1,\n",
      "          'needs': 1,\n",
      "          'criticized': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'beautifully': 1,\n",
      "          'captivating': 1,\n",
      "          'probably': 1,\n",
      "          'satisfy': 1,\n",
      "          'viewers': 1,\n",
      "          'appreciate': 1,\n",
      "          'delve': 1,\n",
      "          'rich': 1,\n",
      "          'emotional': 1,\n",
      "          'territories': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bobby': 6,\n",
      "          'hearts': 3,\n",
      "          'stand': 3,\n",
      "          'lives': 2,\n",
      "          'small': 2,\n",
      "          'davis': 2,\n",
      "          'friends': 2,\n",
      "          'carol': 2,\n",
      "          'boorem': 2,\n",
      "          'hopkins': 2,\n",
      "          'ted': 2,\n",
      "          'film': 2,\n",
      "          'good': 2,\n",
      "          'despite': 2,\n",
      "          'attention': 2,\n",
      "          'whose': 2,\n",
      "          'movies': 2,\n",
      "          'synopsis': 1,\n",
      "          'garfield': 1,\n",
      "          'yelchin': 1,\n",
      "          'town': 1,\n",
      "          'mirthless': 1,\n",
      "          'widowed': 1,\n",
      "          'mother': 1,\n",
      "          'hope': 1,\n",
      "          'nbobbys': 1,\n",
      "          'world': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'especially': 1,\n",
      "          'spritely': 1,\n",
      "          'nthen': 1,\n",
      "          'one': 1,\n",
      "          'day': 1,\n",
      "          'new': 1,\n",
      "          'boarder': 1,\n",
      "          'arrives': 1,\n",
      "          'bobbys': 1,\n",
      "          'house': 1,\n",
      "          'nted': 1,\n",
      "          'brautigan': 1,\n",
      "          'enigmatic': 1,\n",
      "          'man': 1,\n",
      "          'takes': 1,\n",
      "          'immediate': 1,\n",
      "          'liking': 1,\n",
      "          'nas': 1,\n",
      "          'bond': 1,\n",
      "          'deepens': 1,\n",
      "          'becomes': 1,\n",
      "          'privy': 1,\n",
      "          'teds': 1,\n",
      "          'great': 1,\n",
      "          'secret': 1,\n",
      "          'event': 1,\n",
      "          'change': 1,\n",
      "          'forever': 1,\n",
      "          'nreview': 1,\n",
      "          'enchanting': 1,\n",
      "          'movie': 1,\n",
      "          'atlantis': 1,\n",
      "          'easily': 1,\n",
      "          'recalls': 1,\n",
      "          'another': 1,\n",
      "          'kinginspired': 1,\n",
      "          'comingofage': 1,\n",
      "          'terms': 1,\n",
      "          'setting': 1,\n",
      "          'sentiment': 1,\n",
      "          'conveys': 1,\n",
      "          'n': 1,\n",
      "          'tribute': 1,\n",
      "          'magic': 1,\n",
      "          'childhood': 1,\n",
      "          'summers': 1,\n",
      "          'days': 1,\n",
      "          'seem': 1,\n",
      "          'neverending': 1,\n",
      "          'nothing': 1,\n",
      "          'means': 1,\n",
      "          'closest': 1,\n",
      "          'nunlike': 1,\n",
      "          'supernatural': 1,\n",
      "          'element': 1,\n",
      "          'although': 1,\n",
      "          'key': 1,\n",
      "          'plot': 1,\n",
      "          'prominent': 1,\n",
      "          'nlike': 1,\n",
      "          'mostly': 1,\n",
      "          'characterdriven': 1,\n",
      "          'benefits': 1,\n",
      "          'greatly': 1,\n",
      "          'superb': 1,\n",
      "          'casting': 1,\n",
      "          'nyelchin': 1,\n",
      "          'finding': 1,\n",
      "          'mix': 1,\n",
      "          'innocence': 1,\n",
      "          'resignation': 1,\n",
      "          'nmore': 1,\n",
      "          'splendid': 1,\n",
      "          'still': 1,\n",
      "          'praised': 1,\n",
      "          'highly': 1,\n",
      "          'work': 1,\n",
      "          'along': 1,\n",
      "          'came': 1,\n",
      "          'spider': 1,\n",
      "          'simply': 1,\n",
      "          'radiant': 1,\n",
      "          'nand': 1,\n",
      "          'playing': 1,\n",
      "          'quiet': 1,\n",
      "          'introspective': 1,\n",
      "          'character': 1,\n",
      "          'nonetheless': 1,\n",
      "          'commands': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'onscreen': 1,\n",
      "          'nless': 1,\n",
      "          'successful': 1,\n",
      "          'strident': 1,\n",
      "          'elizabeth': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'overly': 1,\n",
      "          'cartoonish': 1,\n",
      "          'ni': 1,\n",
      "          'also': 1,\n",
      "          'found': 1,\n",
      "          'odd': 1,\n",
      "          'carols': 1,\n",
      "          'friend': 1,\n",
      "          'sully': 1,\n",
      "          'death': 1,\n",
      "          'adult': 1,\n",
      "          'sets': 1,\n",
      "          'flashback': 1,\n",
      "          'framing': 1,\n",
      "          'device': 1,\n",
      "          'paid': 1,\n",
      "          'virtually': 1,\n",
      "          'nbut': 1,\n",
      "          'hicks': 1,\n",
      "          'direction': 1,\n",
      "          'lovely': 1,\n",
      "          'without': 1,\n",
      "          'cloying': 1,\n",
      "          'general': 1,\n",
      "          'lack': 1,\n",
      "          'incident': 1,\n",
      "          'never': 1,\n",
      "          'ceases': 1,\n",
      "          'weave': 1,\n",
      "          'spell': 1,\n",
      "          'audience': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 4,\n",
      "          'slave': 4,\n",
      "          'cinque': 3,\n",
      "          'slavery': 3,\n",
      "          'characters': 3,\n",
      "          'life': 3,\n",
      "          'movie': 2,\n",
      "          'story': 2,\n",
      "          'long': 2,\n",
      "          'hounsou': 2,\n",
      "          'kidnapped': 2,\n",
      "          'since': 2,\n",
      "          'men': 2,\n",
      "          'court': 2,\n",
      "          'legally': 2,\n",
      "          'slaves': 2,\n",
      "          'born': 2,\n",
      "          'adams': 2,\n",
      "          'anthony': 2,\n",
      "          'hopkins': 2,\n",
      "          'dramatic': 2,\n",
      "          'making': 2,\n",
      "          'fictional': 2,\n",
      "          'real': 2,\n",
      "          'guys': 2,\n",
      "          'synopsis': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'todays': 1,\n",
      "          'finest': 1,\n",
      "          'directors': 1,\n",
      "          'attempts': 1,\n",
      "          'spice': 1,\n",
      "          '1800s': 1,\n",
      "          'courtroom': 1,\n",
      "          'battle': 1,\n",
      "          'fate': 1,\n",
      "          'prisoner': 1,\n",
      "          'djimon': 1,\n",
      "          'young': 1,\n",
      "          'angry': 1,\n",
      "          'man': 1,\n",
      "          'sierra': 1,\n",
      "          'leone': 1,\n",
      "          'fellow': 1,\n",
      "          'prisoners': 1,\n",
      "          'ncinque': 1,\n",
      "          'friends': 1,\n",
      "          'landed': 1,\n",
      "          'ship': 1,\n",
      "          'shores': 1,\n",
      "          'america': 1,\n",
      "          'escaping': 1,\n",
      "          'spanish': 1,\n",
      "          'traders': 1,\n",
      "          'americans': 1,\n",
      "          'dont': 1,\n",
      "          'speak': 1,\n",
      "          'cinques': 1,\n",
      "          'language': 1,\n",
      "          'black': 1,\n",
      "          'hauled': 1,\n",
      "          'determine': 1,\n",
      "          'whether': 1,\n",
      "          'ntechnically': 1,\n",
      "          'international': 1,\n",
      "          'trade': 1,\n",
      "          'outlawed': 1,\n",
      "          'time': 1,\n",
      "          'people': 1,\n",
      "          'like': 1,\n",
      "          'couldnt': 1,\n",
      "          'considered': 1,\n",
      "          'nlawyers': 1,\n",
      "          'baldwin': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'must': 1,\n",
      "          'prove': 1,\n",
      "          'others': 1,\n",
      "          'captured': 1,\n",
      "          'rather': 1,\n",
      "          'order': 1,\n",
      "          'get': 1,\n",
      "          'prison': 1,\n",
      "          'free': 1,\n",
      "          'nthree': 1,\n",
      "          'lengthy': 1,\n",
      "          'cases': 1,\n",
      "          'portrayed': 1,\n",
      "          'spielbergs': 1,\n",
      "          'trademark': 1,\n",
      "          'panache': 1,\n",
      "          'flashy': 1,\n",
      "          'beginning': 1,\n",
      "          'lots': 1,\n",
      "          'facial': 1,\n",
      "          'closeups': 1,\n",
      "          'big': 1,\n",
      "          'music': 1,\n",
      "          'imagery': 1,\n",
      "          'na': 1,\n",
      "          'final': 1,\n",
      "          'speech': 1,\n",
      "          'followed': 1,\n",
      "          'anticlimax': 1,\n",
      "          'subtitles': 1,\n",
      "          'show': 1,\n",
      "          'eventually': 1,\n",
      "          'happened': 1,\n",
      "          'various': 1,\n",
      "          'nopinion': 1,\n",
      "          'easier': 1,\n",
      "          'nin': 1,\n",
      "          'fiction': 1,\n",
      "          'invents': 1,\n",
      "          'purposeful': 1,\n",
      "          'clearcut': 1,\n",
      "          'good': 1,\n",
      "          'bad': 1,\n",
      "          'puts': 1,\n",
      "          'conflict': 1,\n",
      "          'takes': 1,\n",
      "          'tale': 1,\n",
      "          'exciting': 1,\n",
      "          'conclusion': 1,\n",
      "          'nreal': 1,\n",
      "          'however': 1,\n",
      "          'consists': 1,\n",
      "          'stretches': 1,\n",
      "          'boredom': 1,\n",
      "          'moments': 1,\n",
      "          'stand': 1,\n",
      "          'around': 1,\n",
      "          'think': 1,\n",
      "          'thoughts': 1,\n",
      "          'nothing': 1,\n",
      "          'come': 1,\n",
      "          'go': 1,\n",
      "          'events': 1,\n",
      "          'resolved': 1,\n",
      "          'nspielberg': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'visually': 1,\n",
      "          'spicy': 1,\n",
      "          'historically': 1,\n",
      "          'accurate': 1,\n",
      "          'ndjimon': 1,\n",
      "          'turn': 1,\n",
      "          'excellent': 1,\n",
      "          'performances': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'negotiator': 10,\n",
      "          'police': 9,\n",
      "          'roman': 8,\n",
      "          'film': 7,\n",
      "          'actor': 6,\n",
      "          'one': 6,\n",
      "          'nthe': 5,\n",
      "          'also': 5,\n",
      "          'spacey': 5,\n",
      "          'good': 5,\n",
      "          'must': 4,\n",
      "          'situation': 4,\n",
      "          'nin': 4,\n",
      "          'nwhen': 4,\n",
      "          'character': 4,\n",
      "          'walsh': 4,\n",
      "          'best': 4,\n",
      "          'talk': 3,\n",
      "          'criminal': 3,\n",
      "          'able': 3,\n",
      "          'hes': 3,\n",
      "          'jackson': 3,\n",
      "          'internal': 3,\n",
      "          'affairs': 3,\n",
      "          'scenes': 3,\n",
      "          'soon': 3,\n",
      "          'inspector': 3,\n",
      "          'hostage': 3,\n",
      "          'role': 3,\n",
      "          'commander': 3,\n",
      "          'morse': 3,\n",
      "          'played': 3,\n",
      "          'person': 2,\n",
      "          'going': 2,\n",
      "          'often': 2,\n",
      "          'turn': 2,\n",
      "          'moments': 2,\n",
      "          'think': 2,\n",
      "          'feet': 2,\n",
      "          'without': 2,\n",
      "          'quickly': 2,\n",
      "          'dominate': 2,\n",
      "          'end': 2,\n",
      "          'conflict': 2,\n",
      "          'really': 2,\n",
      "          'nit': 2,\n",
      "          'pretty': 2,\n",
      "          'smart': 2,\n",
      "          'l': 2,\n",
      "          'partner': 2,\n",
      "          'romans': 2,\n",
      "          'becomes': 2,\n",
      "          'forced': 2,\n",
      "          'office': 2,\n",
      "          'actually': 2,\n",
      "          'nalthough': 2,\n",
      "          'interesting': 2,\n",
      "          'premise': 2,\n",
      "          'prove': 2,\n",
      "          'innocence': 2,\n",
      "          'niebaum': 2,\n",
      "          'nwalsh': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'gray': 2,\n",
      "          'negotiations': 2,\n",
      "          'sabian': 2,\n",
      "          'become': 2,\n",
      "          'protagonist': 2,\n",
      "          'notable': 2,\n",
      "          'audience': 2,\n",
      "          'time': 2,\n",
      "          'trying': 2,\n",
      "          'anything': 2,\n",
      "          'acting': 2,\n",
      "          'nhis': 2,\n",
      "          'set': 2,\n",
      "          'man': 2,\n",
      "          'says': 2,\n",
      "          'however': 2,\n",
      "          'expect': 2,\n",
      "          'take': 2,\n",
      "          'nas': 2,\n",
      "          'cast': 2,\n",
      "          'rifkin': 2,\n",
      "          'spencer': 2,\n",
      "          'level': 2,\n",
      "          'giamatti': 2,\n",
      "          'provides': 2,\n",
      "          'performances': 2,\n",
      "          'talented': 2,\n",
      "          'men': 2,\n",
      "          'actors': 2,\n",
      "          'two': 2,\n",
      "          'entirely': 1,\n",
      "          'unenviable': 1,\n",
      "          'job': 1,\n",
      "          'ground': 1,\n",
      "          'zero': 1,\n",
      "          'attempting': 1,\n",
      "          'dangerous': 1,\n",
      "          'whatever': 1,\n",
      "          'intends': 1,\n",
      "          'nlives': 1,\n",
      "          'stake': 1,\n",
      "          'usually': 1,\n",
      "          'armed': 1,\n",
      "          'likely': 1,\n",
      "          'mentally': 1,\n",
      "          'unstable': 1,\n",
      "          'prone': 1,\n",
      "          'notice': 1,\n",
      "          'therefore': 1,\n",
      "          'something': 1,\n",
      "          'psychologist': 1,\n",
      "          'sham': 1,\n",
      "          'artist': 1,\n",
      "          'addition': 1,\n",
      "          'officer': 1,\n",
      "          'either': 1,\n",
      "          'work': 1,\n",
      "          'toward': 1,\n",
      "          'goal': 1,\n",
      "          'ending': 1,\n",
      "          'confrontation': 1,\n",
      "          'violence': 1,\n",
      "          'failing': 1,\n",
      "          'prepared': 1,\n",
      "          'facilitate': 1,\n",
      "          'conclusion': 1,\n",
      "          'crisis': 1,\n",
      "          'firepower': 1,\n",
      "          'nmost': 1,\n",
      "          'enter': 1,\n",
      "          'little': 1,\n",
      "          'intelligence': 1,\n",
      "          'scenario': 1,\n",
      "          'possible': 1,\n",
      "          'gain': 1,\n",
      "          'control': 1,\n",
      "          'conversation': 1,\n",
      "          'influence': 1,\n",
      "          'perpetrator': 1,\n",
      "          'thinking': 1,\n",
      "          'wants': 1,\n",
      "          'takes': 1,\n",
      "          'nbut': 1,\n",
      "          'hostageholding': 1,\n",
      "          'nwhat': 1,\n",
      "          'fact': 1,\n",
      "          'knows': 1,\n",
      "          'tricks': 1,\n",
      "          'turning': 1,\n",
      "          'favor': 1,\n",
      "          'circumstance': 1,\n",
      "          'forms': 1,\n",
      "          'basis': 1,\n",
      "          'f': 1,\n",
      "          'gary': 1,\n",
      "          'grays': 1,\n",
      "          'danny': 1,\n",
      "          'samuel': 1,\n",
      "          'tipped': 1,\n",
      "          'corruption': 1,\n",
      "          'within': 1,\n",
      "          'chicago': 1,\n",
      "          'force': 1,\n",
      "          'turns': 1,\n",
      "          'shot': 1,\n",
      "          'death': 1,\n",
      "          'finds': 1,\n",
      "          'incriminating': 1,\n",
      "          'evidence': 1,\n",
      "          'home': 1,\n",
      "          'prime': 1,\n",
      "          'suspect': 1,\n",
      "          'embezzling': 1,\n",
      "          'disability': 1,\n",
      "          'fund': 1,\n",
      "          'murder': 1,\n",
      "          'nfaced': 1,\n",
      "          'scorn': 1,\n",
      "          'department': 1,\n",
      "          'close': 1,\n",
      "          'scrutiny': 1,\n",
      "          'media': 1,\n",
      "          'badge': 1,\n",
      "          'typical': 1,\n",
      "          'captains': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'quite': 1,\n",
      "          'remember': 1,\n",
      "          'captain': 1,\n",
      "          'said': 1,\n",
      "          'hate': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprise': 1,\n",
      "          'nluckily': 1,\n",
      "          'shakes': 1,\n",
      "          'conventionalism': 1,\n",
      "          'concentrates': 1,\n",
      "          'mentioned': 1,\n",
      "          'nafter': 1,\n",
      "          'offered': 1,\n",
      "          'takeitorleaveit': 1,\n",
      "          'deal': 1,\n",
      "          'district': 1,\n",
      "          'attorney': 1,\n",
      "          'resolves': 1,\n",
      "          'walking': 1,\n",
      "          'j': 1,\n",
      "          'taking': 1,\n",
      "          'others': 1,\n",
      "          'proclaiming': 1,\n",
      "          'framed': 1,\n",
      "          'actions': 1,\n",
      "          'seem': 1,\n",
      "          'due': 1,\n",
      "          'compressed': 1,\n",
      "          'nature': 1,\n",
      "          'motivational': 1,\n",
      "          'buildup': 1,\n",
      "          'redeems': 1,\n",
      "          'involving': 1,\n",
      "          'us': 1,\n",
      "          'fellow': 1,\n",
      "          'chris': 1,\n",
      "          'kevin': 1,\n",
      "          'ensue': 1,\n",
      "          'njackson': 1,\n",
      "          'superb': 1,\n",
      "          'miscast': 1,\n",
      "          'popular': 1,\n",
      "          'identified': 1,\n",
      "          'exceptions': 1,\n",
      "          'found': 1,\n",
      "          'jackie': 1,\n",
      "          'brown': 1,\n",
      "          'difficult': 1,\n",
      "          'believing': 1,\n",
      "          'carry': 1,\n",
      "          'threats': 1,\n",
      "          'script': 1,\n",
      "          'clearly': 1,\n",
      "          'sets': 1,\n",
      "          'guy': 1,\n",
      "          'nhow': 1,\n",
      "          'believe': 1,\n",
      "          'shoot': 1,\n",
      "          'matter': 1,\n",
      "          'tried': 1,\n",
      "          'kill': 1,\n",
      "          'earlier': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'preconception': 1,\n",
      "          'saps': 1,\n",
      "          'wouldbe': 1,\n",
      "          'suspenseful': 1,\n",
      "          'left': 1,\n",
      "          'largely': 1,\n",
      "          'attributed': 1,\n",
      "          'jacksons': 1,\n",
      "          'ability': 1,\n",
      "          'nalmost': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'steals': 1,\n",
      "          'looking': 1,\n",
      "          'back': 1,\n",
      "          'appears': 1,\n",
      "          'already': 1,\n",
      "          'run': 1,\n",
      "          'third': 1,\n",
      "          'course': 1,\n",
      "          'nmade': 1,\n",
      "          'kind': 1,\n",
      "          'negotiating': 1,\n",
      "          'superman': 1,\n",
      "          'first': 1,\n",
      "          'look': 1,\n",
      "          'hopelessly': 1,\n",
      "          'get': 1,\n",
      "          'family': 1,\n",
      "          'moving': 1,\n",
      "          'vacation': 1,\n",
      "          'n': 1,\n",
      "          'blowing': 1,\n",
      "          'sears': 1,\n",
      "          'tower': 1,\n",
      "          'cant': 1,\n",
      "          'wife': 1,\n",
      "          'bedroom': 1,\n",
      "          'daughter': 1,\n",
      "          'phone': 1,\n",
      "          'gets': 1,\n",
      "          'call': 1,\n",
      "          'action': 1,\n",
      "          'changes': 1,\n",
      "          'gears': 1,\n",
      "          'nsoon': 1,\n",
      "          'negotiate': 1,\n",
      "          'swat': 1,\n",
      "          'david': 1,\n",
      "          'itching': 1,\n",
      "          'send': 1,\n",
      "          'team': 1,\n",
      "          'keeping': 1,\n",
      "          'wary': 1,\n",
      "          'fbi': 1,\n",
      "          'agents': 1,\n",
      "          'waiting': 1,\n",
      "          'operation': 1,\n",
      "          'fail': 1,\n",
      "          'nthis': 1,\n",
      "          'complex': 1,\n",
      "          'pressures': 1,\n",
      "          'reflected': 1,\n",
      "          'well': 1,\n",
      "          'second': 1,\n",
      "          'measures': 1,\n",
      "          'nicely': 1,\n",
      "          'ngray': 1,\n",
      "          'lucked': 1,\n",
      "          'ndavid': 1,\n",
      "          'beck': 1,\n",
      "          'ron': 1,\n",
      "          'frost': 1,\n",
      "          'john': 1,\n",
      "          'chief': 1,\n",
      "          'al': 1,\n",
      "          'travis': 1,\n",
      "          'competent': 1,\n",
      "          'hold': 1,\n",
      "          'problem': 1,\n",
      "          'bit': 1,\n",
      "          'typecasting': 1,\n",
      "          'results': 1,\n",
      "          'choices': 1,\n",
      "          'similar': 1,\n",
      "          'rock': 1,\n",
      "          'confidential': 1,\n",
      "          'detective': 1,\n",
      "          'cop': 1,\n",
      "          'land': 1,\n",
      "          'nwith': 1,\n",
      "          'forgiven': 1,\n",
      "          'nalso': 1,\n",
      "          'supporting': 1,\n",
      "          'paul': 1,\n",
      "          'rudy': 1,\n",
      "          'hostages': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'initially': 1,\n",
      "          'slimy': 1,\n",
      "          'looks': 1,\n",
      "          'shifty': 1,\n",
      "          'laugh': 1,\n",
      "          'even': 1,\n",
      "          'nfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'distract': 1,\n",
      "          'seriousness': 1,\n",
      "          'rest': 1,\n",
      "          'instead': 1,\n",
      "          'nice': 1,\n",
      "          'breathers': 1,\n",
      "          'tension': 1,\n",
      "          'manages': 1,\n",
      "          'sustain': 1,\n",
      "          'throughout': 1,\n",
      "          'nj': 1,\n",
      "          'suspicious': 1,\n",
      "          'clocks': 1,\n",
      "          'final': 1,\n",
      "          'nsadly': 1,\n",
      "          'underrated': 1,\n",
      "          'passed': 1,\n",
      "          'away': 1,\n",
      "          'late': 1,\n",
      "          'february': 1,\n",
      "          'year': 1,\n",
      "          'released': 1,\n",
      "          'pleasantville': 1,\n",
      "          'mark': 1,\n",
      "          'last': 1,\n",
      "          'appeared': 1,\n",
      "          'dozens': 1,\n",
      "          'movies': 1,\n",
      "          'morning': 1,\n",
      "          'vietnam': 1,\n",
      "          'backdraft': 1,\n",
      "          'nixon': 1,\n",
      "          'nfor': 1,\n",
      "          'check': 1,\n",
      "          'sling': 1,\n",
      "          'blade': 1,\n",
      "          'plays': 1,\n",
      "          'mental': 1,\n",
      "          'patient': 1,\n",
      "          'sharing': 1,\n",
      "          'ward': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'thornton': 1,\n",
      "          'jack': 1,\n",
      "          'nicholson': 1,\n",
      "          'accepted': 1,\n",
      "          'oscar': 1,\n",
      "          'march': 1,\n",
      "          'credited': 1,\n",
      "          'success': 1,\n",
      "          'performed': 1,\n",
      "          'together': 1,\n",
      "          'dedicated': 1,\n",
      "          'may': 1,\n",
      "          'certainly': 1,\n",
      "          'characterizes': 1,\n",
      "          'type': 1,\n",
      "          'famous': 1,\n",
      "          'playing': 1,\n",
      "          'plotline': 1,\n",
      "          'parallels': 1,\n",
      "          'reality': 1,\n",
      "          'nwere': 1,\n",
      "          'served': 1,\n",
      "          'equally': 1,\n",
      "          'deft': 1,\n",
      "          'negotiators': 1,\n",
      "          'battling': 1,\n",
      "          'resolve': 1,\n",
      "          'manner': 1,\n",
      "          'suit': 1,\n",
      "          'given': 1,\n",
      "          'wonderfully': 1,\n",
      "          'thrown': 1,\n",
      "          'movie': 1,\n",
      "          'wed': 1,\n",
      "          'like': 1,\n",
      "          'see': 1,\n",
      "          'nboth': 1,\n",
      "          'provide': 1,\n",
      "          'entertainment': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'music': 6,\n",
      "          'band': 6,\n",
      "          'metal': 5,\n",
      "          'heavy': 4,\n",
      "          'singer': 4,\n",
      "          'like': 4,\n",
      "          'one': 4,\n",
      "          'also': 4,\n",
      "          'young': 3,\n",
      "          'man': 3,\n",
      "          'loves': 3,\n",
      "          'dreams': 3,\n",
      "          'hard': 3,\n",
      "          'way': 3,\n",
      "          'whole': 3,\n",
      "          'movie': 3,\n",
      "          '810': 3,\n",
      "          'real': 2,\n",
      "          'im': 2,\n",
      "          'movies': 2,\n",
      "          'luck': 2,\n",
      "          'would': 2,\n",
      "          'work': 2,\n",
      "          'rock': 2,\n",
      "          'fun': 2,\n",
      "          'love': 2,\n",
      "          'even': 2,\n",
      "          'live': 2,\n",
      "          'performances': 2,\n",
      "          'wahlberg': 2,\n",
      "          'original': 2,\n",
      "          'much': 2,\n",
      "          'nhe': 2,\n",
      "          'plot': 1,\n",
      "          'especially': 1,\n",
      "          'steel': 1,\n",
      "          'dragon': 1,\n",
      "          'hes': 1,\n",
      "          'devoted': 1,\n",
      "          'tribute': 1,\n",
      "          'sings': 1,\n",
      "          'gets': 1,\n",
      "          'launched': 1,\n",
      "          'stardom': 1,\n",
      "          'group': 1,\n",
      "          'get': 1,\n",
      "          'rid': 1,\n",
      "          'lead': 1,\n",
      "          'call': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'ncritique': 1,\n",
      "          'sucker': 1,\n",
      "          'na': 1,\n",
      "          'humble': 1,\n",
      "          'background': 1,\n",
      "          'lofty': 1,\n",
      "          'works': 1,\n",
      "          'devotes': 1,\n",
      "          'time': 1,\n",
      "          'energy': 1,\n",
      "          'patience': 1,\n",
      "          'ultimately': 1,\n",
      "          'hits': 1,\n",
      "          'bigtime': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'boy': 1,\n",
      "          'certain': 1,\n",
      "          'yup': 1,\n",
      "          'always': 1,\n",
      "          'finds': 1,\n",
      "          'types': 1,\n",
      "          'equations': 1,\n",
      "          'although': 1,\n",
      "          'generally': 1,\n",
      "          'tied': 1,\n",
      "          'closely': 1,\n",
      "          'need': 1,\n",
      "          'new': 1,\n",
      "          'nhis': 1,\n",
      "          'entry': 1,\n",
      "          'adaptation': 1,\n",
      "          'n': 1,\n",
      "          'roll': 1,\n",
      "          'lifestyle': 1,\n",
      "          'fills': 1,\n",
      "          'rest': 1,\n",
      "          'really': 1,\n",
      "          'watch': 1,\n",
      "          'nalthough': 1,\n",
      "          'preface': 1,\n",
      "          'saying': 1,\n",
      "          'thing': 1,\n",
      "          'definitely': 1,\n",
      "          'enhance': 1,\n",
      "          'appreciation': 1,\n",
      "          'past': 1,\n",
      "          'scene': 1,\n",
      "          'around': 1,\n",
      "          'nmetal': 1,\n",
      "          'first': 1,\n",
      "          'teen': 1,\n",
      "          'though': 1,\n",
      "          'genre': 1,\n",
      "          'isnt': 1,\n",
      "          'prominent': 1,\n",
      "          'anymore': 1,\n",
      "          'still': 1,\n",
      "          'check': 1,\n",
      "          'motley': 1,\n",
      "          'crue': 1,\n",
      "          'twisted': 1,\n",
      "          'sister': 1,\n",
      "          'anthrax': 1,\n",
      "          'cds': 1,\n",
      "          'every': 1,\n",
      "          'nthats': 1,\n",
      "          'say': 1,\n",
      "          'wont': 1,\n",
      "          'dont': 1,\n",
      "          'play': 1,\n",
      "          'big': 1,\n",
      "          'part': 1,\n",
      "          'blast': 1,\n",
      "          'watching': 1,\n",
      "          'listening': 1,\n",
      "          'nbut': 1,\n",
      "          'greater': 1,\n",
      "          'draw': 1,\n",
      "          'standout': 1,\n",
      "          'performance': 1,\n",
      "          'given': 1,\n",
      "          'mark': 1,\n",
      "          'nwow': 1,\n",
      "          'hand': 1,\n",
      "          'fella': 1,\n",
      "          'major': 1,\n",
      "          'props': 1,\n",
      "          'totally': 1,\n",
      "          'becomes': 1,\n",
      "          'geekgod': 1,\n",
      "          'incidentally': 1,\n",
      "          'god': 1,\n",
      "          'films': 1,\n",
      "          'title': 1,\n",
      "          'better': 1,\n",
      "          'ask': 1,\n",
      "          'quite': 1,\n",
      "          'taken': 1,\n",
      "          'character': 1,\n",
      "          'pretty': 1,\n",
      "          'came': 1,\n",
      "          'regular': 1,\n",
      "          'guy': 1,\n",
      "          'extremely': 1,\n",
      "          'passionate': 1,\n",
      "          'goals': 1,\n",
      "          'ethic': 1,\n",
      "          'willing': 1,\n",
      "          'anything': 1,\n",
      "          'order': 1,\n",
      "          'fulfill': 1,\n",
      "          'naniston': 1,\n",
      "          'surprisingly': 1,\n",
      "          'good': 1,\n",
      "          'girlfriend': 1,\n",
      "          'romance': 1,\n",
      "          'angle': 1,\n",
      "          'sweet': 1,\n",
      "          'didnt': 1,\n",
      "          'pull': 1,\n",
      "          'enough': 1,\n",
      "          'emotional': 1,\n",
      "          'scenes': 1,\n",
      "          'ni': 1,\n",
      "          'impressed': 1,\n",
      "          'musicians': 1,\n",
      "          'played': 1,\n",
      "          'zakk': 1,\n",
      "          'wylde': 1,\n",
      "          'ozzy': 1,\n",
      "          'osbourne': 1,\n",
      "          'jeff': 1,\n",
      "          'pilson': 1,\n",
      "          'dokken': 1,\n",
      "          'stephan': 1,\n",
      "          'jenkins': 1,\n",
      "          'third': 1,\n",
      "          'eye': 1,\n",
      "          'blind': 1,\n",
      "          'blas': 1,\n",
      "          'elias': 1,\n",
      "          'slaughter': 1,\n",
      "          'actor': 1,\n",
      "          'dominic': 1,\n",
      "          'west': 1,\n",
      "          'kirk': 1,\n",
      "          'cuddy': 1,\n",
      "          'made': 1,\n",
      "          'biggest': 1,\n",
      "          'impression': 1,\n",
      "          'among': 1,\n",
      "          'members': 1,\n",
      "          'nits': 1,\n",
      "          'note': 1,\n",
      "          'based': 1,\n",
      "          'reallife': 1,\n",
      "          'tale': 1,\n",
      "          'used': 1,\n",
      "          'sing': 1,\n",
      "          'judas': 1,\n",
      "          'priest': 1,\n",
      "          'cover': 1,\n",
      "          'went': 1,\n",
      "          'become': 1,\n",
      "          'actual': 1,\n",
      "          'admitted': 1,\n",
      "          'gay': 1,\n",
      "          'njust': 1,\n",
      "          'record': 1,\n",
      "          'certainly': 1,\n",
      "          'recommending': 1,\n",
      "          'originality': 1,\n",
      "          'surprise': 1,\n",
      "          'elements': 1,\n",
      "          'since': 1,\n",
      "          'stuff': 1,\n",
      "          'already': 1,\n",
      "          'covered': 1,\n",
      "          'another': 1,\n",
      "          'uplifting': 1,\n",
      "          'wellpaced': 1,\n",
      "          'solid': 1,\n",
      "          'central': 1,\n",
      "          'showing': 1,\n",
      "          'energetic': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'dig': 1,\n",
      "          'heavier': 1,\n",
      "          'side': 1,\n",
      "          'soundtrack': 1,\n",
      "          'rocks': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'ncan': 1,\n",
      "          'come': 1,\n",
      "          'true': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'nalmost': 1,\n",
      "          'famous': 1,\n",
      "          'blow': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          '910': 1,\n",
      "          'detroit': 1,\n",
      "          'city': 1,\n",
      "          'girlfight': 1,\n",
      "          '610': 1,\n",
      "          'goodfellas': 1,\n",
      "          '1010': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'matron': 5,\n",
      "          'film': 4,\n",
      "          'james': 4,\n",
      "          'nthe': 4,\n",
      "          'pills': 3,\n",
      "          'kenneth': 3,\n",
      "          'jacques': 3,\n",
      "          'hawtrey': 3,\n",
      "          'good': 3,\n",
      "          'seems': 3,\n",
      "          'movie': 3,\n",
      "          'great': 2,\n",
      "          'still': 2,\n",
      "          'nsid': 2,\n",
      "          'head': 2,\n",
      "          'gang': 2,\n",
      "          'hospital': 2,\n",
      "          'williams': 2,\n",
      "          'sir': 2,\n",
      "          'bernard': 2,\n",
      "          'hattie': 2,\n",
      "          'charles': 2,\n",
      "          'dr': 2,\n",
      "          'goode': 2,\n",
      "          'nthis': 2,\n",
      "          'time': 2,\n",
      "          'needs': 2,\n",
      "          'prove': 2,\n",
      "          'go': 2,\n",
      "          'thinks': 2,\n",
      "          'nthere': 2,\n",
      "          'expectant': 2,\n",
      "          'every': 2,\n",
      "          'scene': 2,\n",
      "          'cyril': 2,\n",
      "          'nurse': 2,\n",
      "          'barbara': 2,\n",
      "          'sid': 2,\n",
      "          'carry': 1,\n",
      "          'last': 1,\n",
      "          'carryon': 1,\n",
      "          'opinion': 1,\n",
      "          'nmade': 1,\n",
      "          '1972': 1,\n",
      "          'features': 1,\n",
      "          'regulars': 1,\n",
      "          'genre': 1,\n",
      "          'plays': 1,\n",
      "          'crooks': 1,\n",
      "          'intent': 1,\n",
      "          'stealing': 1,\n",
      "          'contraceptive': 1,\n",
      "          'local': 1,\n",
      "          'maternity': 1,\n",
      "          'selling': 1,\n",
      "          'make': 1,\n",
      "          'profit': 1,\n",
      "          'cutting': 1,\n",
      "          'also': 1,\n",
      "          'hypochondriac': 1,\n",
      "          'retakes': 1,\n",
      "          'role': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'jokes': 1,\n",
      "          'come': 1,\n",
      "          'fast': 1,\n",
      "          'laughs': 1,\n",
      "          'humorous': 1,\n",
      "          'antics': 1,\n",
      "          'man': 1,\n",
      "          'visiting': 1,\n",
      "          'doctor': 1,\n",
      "          'sworn': 1,\n",
      "          'secrecy': 1,\n",
      "          'assure': 1,\n",
      "          'anything': 1,\n",
      "          'say': 1,\n",
      "          'today': 1,\n",
      "          'one': 1,\n",
      "          'ear': 1,\n",
      "          'straight': 1,\n",
      "          'nbernard': 1,\n",
      "          'sex': 1,\n",
      "          'change': 1,\n",
      "          'cameos': 1,\n",
      "          'joan': 1,\n",
      "          'sims': 1,\n",
      "          'mother': 1,\n",
      "          'many': 1,\n",
      "          'weeks': 1,\n",
      "          'overdue': 1,\n",
      "          'eating': 1,\n",
      "          'constantly': 1,\n",
      "          'connor': 1,\n",
      "          'father': 1,\n",
      "          'hes': 1,\n",
      "          'work': 1,\n",
      "          'railway': 1,\n",
      "          'station': 1,\n",
      "          'including': 1,\n",
      "          'son': 1,\n",
      "          'cope': 1,\n",
      "          'try': 1,\n",
      "          'find': 1,\n",
      "          'getting': 1,\n",
      "          'dress': 1,\n",
      "          'live': 1,\n",
      "          'nurses': 1,\n",
      "          'home': 1,\n",
      "          'nhe': 1,\n",
      "          'share': 1,\n",
      "          'room': 1,\n",
      "          'ball': 1,\n",
      "          'windsor': 1,\n",
      "          'soon': 1,\n",
      "          'sees': 1,\n",
      "          'ends': 1,\n",
      "          'attempted': 1,\n",
      "          'robbery': 1,\n",
      "          'hospitals': 1,\n",
      "          'panic': 1,\n",
      "          'ensuing': 1,\n",
      "          'performances': 1,\n",
      "          'however': 1,\n",
      "          'character': 1,\n",
      "          'little': 1,\n",
      "          'subdued': 1,\n",
      "          'quieter': 1,\n",
      "          'previous': 1,\n",
      "          'matrons': 1,\n",
      "          'nwilliams': 1,\n",
      "          'usual': 1,\n",
      "          'top': 1,\n",
      "          'form': 1,\n",
      "          'isnt': 1,\n",
      "          'given': 1,\n",
      "          'part': 1,\n",
      "          'would': 1,\n",
      "          'forgive': 1,\n",
      "          'anyone': 1,\n",
      "          'forget': 1,\n",
      "          'although': 1,\n",
      "          'first': 1,\n",
      "          'appears': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'gone': 1,\n",
      "          'scarce': 1,\n",
      "          'screen': 1,\n",
      "          'steal': 1,\n",
      "          'nby': 1,\n",
      "          'making': 1,\n",
      "          'use': 1,\n",
      "          'windsors': 1,\n",
      "          'talent': 1,\n",
      "          'full': 1,\n",
      "          'effect': 1,\n",
      "          'flounder': 1,\n",
      "          'certainly': 1,\n",
      "          'makes': 1,\n",
      "          'storyline': 1,\n",
      "          'appealing': 1,\n",
      "          'characters': 1,\n",
      "          'genuinely': 1,\n",
      "          'funny': 1,\n",
      "          'could': 1,\n",
      "          'watch': 1,\n",
      "          'get': 1,\n",
      "          'bored': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 9,\n",
      "          'capone': 9,\n",
      "          'ness': 8,\n",
      "          'untouchables': 7,\n",
      "          'also': 6,\n",
      "          'scenes': 5,\n",
      "          'action': 4,\n",
      "          'begins': 4,\n",
      "          'man': 4,\n",
      "          'great': 4,\n",
      "          'evil': 3,\n",
      "          'may': 3,\n",
      "          'men': 3,\n",
      "          'laws': 3,\n",
      "          'first': 3,\n",
      "          'hatred': 3,\n",
      "          'amount': 3,\n",
      "          'member': 3,\n",
      "          'nhe': 3,\n",
      "          'excellent': 2,\n",
      "          'real': 2,\n",
      "          'life': 2,\n",
      "          'place': 2,\n",
      "          'perfectly': 2,\n",
      "          'beautifully': 2,\n",
      "          'acting': 2,\n",
      "          'score': 2,\n",
      "          'clever': 2,\n",
      "          'chicago': 2,\n",
      "          'run': 2,\n",
      "          'nelliot': 2,\n",
      "          'small': 2,\n",
      "          'trying': 2,\n",
      "          'stop': 2,\n",
      "          'peace': 2,\n",
      "          'order': 2,\n",
      "          'nhowever': 2,\n",
      "          'played': 2,\n",
      "          'one': 2,\n",
      "          'capones': 2,\n",
      "          'contains': 2,\n",
      "          'nfrom': 2,\n",
      "          'point': 2,\n",
      "          'must': 2,\n",
      "          'films': 2,\n",
      "          'group': 2,\n",
      "          'walk': 2,\n",
      "          'nas': 2,\n",
      "          'image': 2,\n",
      "          'mind': 2,\n",
      "          'matrix': 2,\n",
      "          'members': 2,\n",
      "          'perfect': 2,\n",
      "          'character': 2,\n",
      "          'grows': 2,\n",
      "          'nhis': 2,\n",
      "          'role': 2,\n",
      "          'plays': 2,\n",
      "          'malone': 2,\n",
      "          'make': 2,\n",
      "          'final': 2,\n",
      "          'attack': 2,\n",
      "          'stone': 2,\n",
      "          'valuable': 2,\n",
      "          'adds': 2,\n",
      "          'train': 2,\n",
      "          'station': 2,\n",
      "          'well': 2,\n",
      "          'ultimate': 1,\n",
      "          'match': 1,\n",
      "          'good': 1,\n",
      "          'movie': 1,\n",
      "          'looks': 1,\n",
      "          'deeper': 1,\n",
      "          'already': 1,\n",
      "          'examined': 1,\n",
      "          'rivalry': 1,\n",
      "          'nbased': 1,\n",
      "          '1959': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'title': 1,\n",
      "          'exaggeration': 1,\n",
      "          'events': 1,\n",
      "          'took': 1,\n",
      "          'fits': 1,\n",
      "          'together': 1,\n",
      "          'filmed': 1,\n",
      "          'sequences': 1,\n",
      "          'memorable': 1,\n",
      "          'script': 1,\n",
      "          'takes': 1,\n",
      "          'prohibition': 1,\n",
      "          'era': 1,\n",
      "          'mobsters': 1,\n",
      "          'led': 1,\n",
      "          'ruthless': 1,\n",
      "          'al': 1,\n",
      "          'underground': 1,\n",
      "          'market': 1,\n",
      "          'liquor': 1,\n",
      "          'demanding': 1,\n",
      "          'public': 1,\n",
      "          'force': 1,\n",
      "          'known': 1,\n",
      "          'attempt': 1,\n",
      "          'impossible': 1,\n",
      "          'maintain': 1,\n",
      "          'soon': 1,\n",
      "          'learns': 1,\n",
      "          'stabilize': 1,\n",
      "          'bend': 1,\n",
      "          'fact': 1,\n",
      "          'apparent': 1,\n",
      "          'deniro': 1,\n",
      "          'declaring': 1,\n",
      "          'violent': 1,\n",
      "          'firm': 1,\n",
      "          'believer': 1,\n",
      "          'following': 1,\n",
      "          'quickly': 1,\n",
      "          'transfers': 1,\n",
      "          'next': 1,\n",
      "          'scene': 1,\n",
      "          'bombs': 1,\n",
      "          'restaurant': 1,\n",
      "          'many': 1,\n",
      "          'innocent': 1,\n",
      "          'people': 1,\n",
      "          'including': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'know': 1,\n",
      "          'kills': 1,\n",
      "          'without': 1,\n",
      "          'hesitation': 1,\n",
      "          'lying': 1,\n",
      "          'bastard': 1,\n",
      "          'nright': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'de': 1,\n",
      "          'palma': 1,\n",
      "          'created': 1,\n",
      "          'towards': 1,\n",
      "          'shows': 1,\n",
      "          'brought': 1,\n",
      "          'costs': 1,\n",
      "          'nthis': 1,\n",
      "          'developed': 1,\n",
      "          'hero': 1,\n",
      "          'even': 1,\n",
      "          'introduced': 1,\n",
      "          'ni': 1,\n",
      "          'found': 1,\n",
      "          'approach': 1,\n",
      "          'duration': 1,\n",
      "          'time': 1,\n",
      "          'admiration': 1,\n",
      "          'equal': 1,\n",
      "          'gets': 1,\n",
      "          'better': 1,\n",
      "          'nwith': 1,\n",
      "          'formation': 1,\n",
      "          'wearing': 1,\n",
      "          'long': 1,\n",
      "          'dark': 1,\n",
      "          'overcoats': 1,\n",
      "          'hats': 1,\n",
      "          'nthey': 1,\n",
      "          'unison': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'streets': 1,\n",
      "          'observed': 1,\n",
      "          'feared': 1,\n",
      "          'citizens': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nholding': 1,\n",
      "          'shot': 1,\n",
      "          'guns': 1,\n",
      "          'pistols': 1,\n",
      "          'hands': 1,\n",
      "          'criminals': 1,\n",
      "          'vigilantes': 1,\n",
      "          'influenced': 1,\n",
      "          'future': 1,\n",
      "          'none': 1,\n",
      "          'comes': 1,\n",
      "          'neo': 1,\n",
      "          'morpheus': 1,\n",
      "          'trinity': 1,\n",
      "          'rest': 1,\n",
      "          'gang': 1,\n",
      "          'come': 1,\n",
      "          'virtual': 1,\n",
      "          'world': 1,\n",
      "          'nwearing': 1,\n",
      "          'futuristic': 1,\n",
      "          'outfits': 1,\n",
      "          '1930s': 1,\n",
      "          'style': 1,\n",
      "          'similarities': 1,\n",
      "          'two': 1,\n",
      "          'countless': 1,\n",
      "          'n': 1,\n",
      "          'hippest': 1,\n",
      "          'bravest': 1,\n",
      "          'heroes': 1,\n",
      "          'four': 1,\n",
      "          'ones': 1,\n",
      "          'willing': 1,\n",
      "          'go': 1,\n",
      "          'army': 1,\n",
      "          'neach': 1,\n",
      "          'special': 1,\n",
      "          'characteristics': 1,\n",
      "          'separated': 1,\n",
      "          'others': 1,\n",
      "          'ingenuity': 1,\n",
      "          'kevin': 1,\n",
      "          'costner': 1,\n",
      "          'surely': 1,\n",
      "          'course': 1,\n",
      "          'determined': 1,\n",
      "          'follow': 1,\n",
      "          'matter': 1,\n",
      "          'unfair': 1,\n",
      "          'develops': 1,\n",
      "          'beliefs': 1,\n",
      "          'involving': 1,\n",
      "          'law': 1,\n",
      "          'shattered': 1,\n",
      "          'realizes': 1,\n",
      "          'trusted': 1,\n",
      "          'actually': 1,\n",
      "          'side': 1,\n",
      "          'lose': 1,\n",
      "          'stability': 1,\n",
      "          'adversaries': 1,\n",
      "          'begin': 1,\n",
      "          'murder': 1,\n",
      "          'friends': 1,\n",
      "          'anger': 1,\n",
      "          'becomes': 1,\n",
      "          'thunderous': 1,\n",
      "          'longer': 1,\n",
      "          'hold': 1,\n",
      "          'nsean': 1,\n",
      "          'connery': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'best': 1,\n",
      "          'supporting': 1,\n",
      "          'actor': 1,\n",
      "          'aging': 1,\n",
      "          'cop': 1,\n",
      "          'decides': 1,\n",
      "          'nmalone': 1,\n",
      "          'acts': 1,\n",
      "          'mentor': 1,\n",
      "          'teaches': 1,\n",
      "          'way': 1,\n",
      "          'things': 1,\n",
      "          'knife': 1,\n",
      "          'gun': 1,\n",
      "          'nconnery': 1,\n",
      "          'exact': 1,\n",
      "          'wit': 1,\n",
      "          'experience': 1,\n",
      "          'needed': 1,\n",
      "          'nandy': 1,\n",
      "          'garcia': 1,\n",
      "          'wonderful': 1,\n",
      "          'job': 1,\n",
      "          'george': 1,\n",
      "          'young': 1,\n",
      "          'becoming': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'teach': 1,\n",
      "          'lessons': 1,\n",
      "          'taught': 1,\n",
      "          'ncharles': 1,\n",
      "          'martin': 1,\n",
      "          'smith': 1,\n",
      "          'fantastic': 1,\n",
      "          'attempts': 1,\n",
      "          'use': 1,\n",
      "          'income': 1,\n",
      "          'tax': 1,\n",
      "          'offense': 1,\n",
      "          'nsmith': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'choreographed': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'nalso': 1,\n",
      "          'similar': 1,\n",
      "          'exciting': 1,\n",
      "          'intense': 1,\n",
      "          'westernlike': 1,\n",
      "          'battle': 1,\n",
      "          'famous': 1,\n",
      "          'confrontation': 1,\n",
      "          'steps': 1,\n",
      "          'thought': 1,\n",
      "          'executed': 1,\n",
      "          'ingeniously': 1,\n",
      "          'excitement': 1,\n",
      "          'nits': 1,\n",
      "          'pounding': 1,\n",
      "          'drum': 1,\n",
      "          'beats': 1,\n",
      "          'act': 1,\n",
      "          'rhythm': 1,\n",
      "          'actors': 1,\n",
      "          'combination': 1,\n",
      "          'music': 1,\n",
      "          'impressive': 1,\n",
      "          'effective': 1,\n",
      "          'nalthough': 1,\n",
      "          'excessively': 1,\n",
      "          'glorified': 1,\n",
      "          'pure': 1,\n",
      "          'entertainment': 1,\n",
      "          'unique': 1,\n",
      "          'blend': 1,\n",
      "          'directing': 1,\n",
      "          'nsome': 1,\n",
      "          'baseball': 1,\n",
      "          'bat': 1,\n",
      "          'stuck': 1,\n",
      "          'years': 1,\n",
      "          'seeing': 1,\n",
      "          'vivid': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'roger': 8,\n",
      "          'characters': 6,\n",
      "          'rabbit': 5,\n",
      "          'cartoon': 5,\n",
      "          'film': 4,\n",
      "          'framed': 3,\n",
      "          'takes': 3,\n",
      "          'work': 3,\n",
      "          'hoskins': 3,\n",
      "          'get': 3,\n",
      "          'rogers': 3,\n",
      "          'rent': 2,\n",
      "          'animation': 2,\n",
      "          'real': 2,\n",
      "          'great': 2,\n",
      "          'may': 2,\n",
      "          'nthe': 2,\n",
      "          'mind': 2,\n",
      "          'eddie': 2,\n",
      "          'valiant': 2,\n",
      "          'bob': 2,\n",
      "          'nmaroon': 2,\n",
      "          'photos': 2,\n",
      "          'act': 2,\n",
      "          'acme': 2,\n",
      "          'toontown': 2,\n",
      "          'rest': 2,\n",
      "          'movie': 2,\n",
      "          'way': 2,\n",
      "          'judge': 2,\n",
      "          'doom': 2,\n",
      "          'one': 2,\n",
      "          'nwho': 2,\n",
      "          'williams': 2,\n",
      "          'frame': 2,\n",
      "          'young': 2,\n",
      "          'seen': 1,\n",
      "          '10': 1,\n",
      "          'years': 1,\n",
      "          'remembering': 1,\n",
      "          'much': 1,\n",
      "          'besides': 1,\n",
      "          'liked': 1,\n",
      "          'decided': 1,\n",
      "          'recently': 1,\n",
      "          'nwatching': 1,\n",
      "          'struck': 1,\n",
      "          'brilliant': 1,\n",
      "          'naside': 1,\n",
      "          'fact': 1,\n",
      "          'milestone': 1,\n",
      "          'movies': 1,\n",
      "          'first': 1,\n",
      "          'combine': 1,\n",
      "          'actors': 1,\n",
      "          'interact': 1,\n",
      "          'make': 1,\n",
      "          'convincingly': 1,\n",
      "          'entertainment': 1,\n",
      "          'also': 1,\n",
      "          'quite': 1,\n",
      "          'effective': 1,\n",
      "          'comedymystery': 1,\n",
      "          'nwhile': 1,\n",
      "          'plot': 1,\n",
      "          'somewhat': 1,\n",
      "          'familiar': 1,\n",
      "          'original': 1,\n",
      "          'especially': 1,\n",
      "          'baby': 1,\n",
      "          'herman': 1,\n",
      "          'watching': 1,\n",
      "          'together': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'story': 1,\n",
      "          'begins': 1,\n",
      "          'hollywood': 1,\n",
      "          '1947': 1,\n",
      "          'ncartoon': 1,\n",
      "          'star': 1,\n",
      "          'blowing': 1,\n",
      "          'trouble': 1,\n",
      "          'keeping': 1,\n",
      "          'hardboiled': 1,\n",
      "          'private': 1,\n",
      "          'detective': 1,\n",
      "          'called': 1,\n",
      "          'studio': 1,\n",
      "          'head': 1,\n",
      "          'r': 1,\n",
      "          'k': 1,\n",
      "          'alan': 1,\n",
      "          'tilvern': 1,\n",
      "          'try': 1,\n",
      "          'help': 1,\n",
      "          'back': 1,\n",
      "          'thinks': 1,\n",
      "          'wife': 1,\n",
      "          'jessicas': 1,\n",
      "          'possible': 1,\n",
      "          'unfaithfulness': 1,\n",
      "          'might': 1,\n",
      "          'cause': 1,\n",
      "          'distraction': 1,\n",
      "          'tells': 1,\n",
      "          'costs': 1,\n",
      "          'money': 1,\n",
      "          'reshoots': 1,\n",
      "          'nvaliant': 1,\n",
      "          'jessica': 1,\n",
      "          'playing': 1,\n",
      "          'patty': 1,\n",
      "          'cake': 1,\n",
      "          'marvin': 1,\n",
      "          'stubby': 1,\n",
      "          'kaye': 1,\n",
      "          'owner': 1,\n",
      "          'live': 1,\n",
      "          'maroon': 1,\n",
      "          'nupon': 1,\n",
      "          'seeing': 1,\n",
      "          'emotionally': 1,\n",
      "          'destroyed': 1,\n",
      "          'soon': 1,\n",
      "          'found': 1,\n",
      "          'dead': 1,\n",
      "          'prime': 1,\n",
      "          'suspect': 1,\n",
      "          'follows': 1,\n",
      "          'run': 1,\n",
      "          'around': 1,\n",
      "          'town': 1,\n",
      "          'eventually': 1,\n",
      "          'trying': 1,\n",
      "          'clear': 1,\n",
      "          'good': 1,\n",
      "          'name': 1,\n",
      "          'nalong': 1,\n",
      "          'meet': 1,\n",
      "          'christopher': 1,\n",
      "          'lloyd': 1,\n",
      "          'judgejuryand': 1,\n",
      "          'executioner': 1,\n",
      "          'type': 1,\n",
      "          'whos': 1,\n",
      "          'discovered': 1,\n",
      "          'kill': 1,\n",
      "          'toon': 1,\n",
      "          '4': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'including': 1,\n",
      "          'special': 1,\n",
      "          'achievement': 1,\n",
      "          'award': 1,\n",
      "          'richard': 1,\n",
      "          'direction': 1,\n",
      "          'creation': 1,\n",
      "          'teams': 1,\n",
      "          'went': 1,\n",
      "          'hand': 1,\n",
      "          'drew': 1,\n",
      "          'ndirector': 1,\n",
      "          'robert': 1,\n",
      "          'zemekis': 1,\n",
      "          'must': 1,\n",
      "          'given': 1,\n",
      "          'equal': 1,\n",
      "          'amount': 1,\n",
      "          'praise': 1,\n",
      "          'overseeing': 1,\n",
      "          'entire': 1,\n",
      "          'production': 1,\n",
      "          'included': 1,\n",
      "          'hundreds': 1,\n",
      "          'animators': 1,\n",
      "          'nalso': 1,\n",
      "          'performance': 1,\n",
      "          'credited': 1,\n",
      "          'nhe': 1,\n",
      "          'addition': 1,\n",
      "          'human': 1,\n",
      "          'cast': 1,\n",
      "          'finds': 1,\n",
      "          'right': 1,\n",
      "          'note': 1,\n",
      "          'play': 1,\n",
      "          'scenes': 1,\n",
      "          'costars': 1,\n",
      "          'naccording': 1,\n",
      "          'internet': 1,\n",
      "          'database': 1,\n",
      "          'studied': 1,\n",
      "          'daughter': 1,\n",
      "          'learn': 1,\n",
      "          'imaginary': 1,\n",
      "          'guess': 1,\n",
      "          'hard': 1,\n",
      "          'paid': 1,\n",
      "          'rare': 1,\n",
      "          'none': 1,\n",
      "          'presented': 1,\n",
      "          'challenge': 1,\n",
      "          'filmmakers': 1,\n",
      "          'enjoyed': 1,\n",
      "          'whole': 1,\n",
      "          'family': 1,\n",
      "          'although': 1,\n",
      "          'viewers': 1,\n",
      "          'little': 1,\n",
      "          'scared': 1,\n",
      "          'ndo': 1,\n",
      "          'favor': 1,\n",
      "          'ppppplease': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'stahl': 7,\n",
      "          'permanent': 6,\n",
      "          'midnight': 6,\n",
      "          'stiller': 5,\n",
      "          'theres': 3,\n",
      "          'something': 3,\n",
      "          'successful': 3,\n",
      "          'film': 3,\n",
      "          'nstiller': 2,\n",
      "          'playing': 2,\n",
      "          'called': 2,\n",
      "          'jerry': 2,\n",
      "          'one': 2,\n",
      "          'writer': 2,\n",
      "          'pushes': 2,\n",
      "          'like': 2,\n",
      "          'trainspotting': 2,\n",
      "          'nthe': 2,\n",
      "          'appears': 2,\n",
      "          'em': 2,\n",
      "          'n': 2,\n",
      "          'hollywood': 2,\n",
      "          '000aweek': 2,\n",
      "          'tv': 2,\n",
      "          'heroin': 2,\n",
      "          'habit': 2,\n",
      "          'stahls': 2,\n",
      "          'words': 2,\n",
      "          'performance': 2,\n",
      "          'drug': 2,\n",
      "          'burroughs': 2,\n",
      "          'nstahl': 2,\n",
      "          'time': 2,\n",
      "          'around': 2,\n",
      "          'ben': 1,\n",
      "          'makes': 1,\n",
      "          'popular': 1,\n",
      "          'choice': 1,\n",
      "          'among': 1,\n",
      "          'casting': 1,\n",
      "          'directors': 1,\n",
      "          'days': 1,\n",
      "          'currently': 1,\n",
      "          'three': 1,\n",
      "          'projects': 1,\n",
      "          'circulation': 1,\n",
      "          'actor': 1,\n",
      "          'lay': 1,\n",
      "          'claim': 1,\n",
      "          'nhes': 1,\n",
      "          'mary': 1,\n",
      "          'still': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'nand': 1,\n",
      "          'hes': 1,\n",
      "          'acerbic': 1,\n",
      "          'friends': 1,\n",
      "          'neighbors': 1,\n",
      "          'talkative': 1,\n",
      "          'sexuallyfrustrated': 1,\n",
      "          'drama': 1,\n",
      "          'coach': 1,\n",
      "          'jerri': 1,\n",
      "          'nnow': 1,\n",
      "          'plays': 1,\n",
      "          'another': 1,\n",
      "          'heroinaddicted': 1,\n",
      "          'television': 1,\n",
      "          'last': 1,\n",
      "          'name': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'industry': 1,\n",
      "          'bankable': 1,\n",
      "          'stars': 1,\n",
      "          'drugaddiction': 1,\n",
      "          'pictures': 1,\n",
      "          'minute': 1,\n",
      "          'theyve': 1,\n",
      "          'proved': 1,\n",
      "          'commercially': 1,\n",
      "          'newan': 1,\n",
      "          'mcgregor': 1,\n",
      "          'springs': 1,\n",
      "          'mind': 1,\n",
      "          'turns': 1,\n",
      "          'emma': 1,\n",
      "          'brassed': 1,\n",
      "          'received': 1,\n",
      "          'greater': 1,\n",
      "          'respect': 1,\n",
      "          'admiration': 1,\n",
      "          'mindblowing': 1,\n",
      "          'realization': 1,\n",
      "          'renton': 1,\n",
      "          'danny': 1,\n",
      "          'boyles': 1,\n",
      "          'transatlantic': 1,\n",
      "          'junkfest': 1,\n",
      "          'philosophy': 1,\n",
      "          'simple': 1,\n",
      "          'want': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'make': 1,\n",
      "          'drugs': 1,\n",
      "          'based': 1,\n",
      "          'true': 1,\n",
      "          'life': 1,\n",
      "          'experiences': 1,\n",
      "          'mideighties': 1,\n",
      "          '5': 1,\n",
      "          'job': 1,\n",
      "          'churning': 1,\n",
      "          'plotlines': 1,\n",
      "          'disposable': 1,\n",
      "          'sitcoms': 1,\n",
      "          '6': 1,\n",
      "          'na': 1,\n",
      "          'size': 1,\n",
      "          'utah': 1,\n",
      "          'nas': 1,\n",
      "          'contributes': 1,\n",
      "          'commanding': 1,\n",
      "          'nunlike': 1,\n",
      "          'ways': 1,\n",
      "          'chronicling': 1,\n",
      "          'highs': 1,\n",
      "          'lows': 1,\n",
      "          'abuse': 1,\n",
      "          'instead': 1,\n",
      "          'focuses': 1,\n",
      "          'concept': 1,\n",
      "          'addiction': 1,\n",
      "          'maintenance': 1,\n",
      "          'none': 1,\n",
      "          'earliest': 1,\n",
      "          'observations': 1,\n",
      "          'casual': 1,\n",
      "          'reference': 1,\n",
      "          'naked': 1,\n",
      "          'lunch': 1,\n",
      "          'author': 1,\n",
      "          'william': 1,\n",
      "          'asked': 1,\n",
      "          'shoots': 1,\n",
      "          'first': 1,\n",
      "          'thing': 1,\n",
      "          'morning': 1,\n",
      "          'responds': 1,\n",
      "          'shave': 1,\n",
      "          'rarely': 1,\n",
      "          'puncturing': 1,\n",
      "          'veins': 1,\n",
      "          'thrill': 1,\n",
      "          'talk': 1,\n",
      "          'mother': 1,\n",
      "          'phone': 1,\n",
      "          'show': 1,\n",
      "          'work': 1,\n",
      "          'even': 1,\n",
      "          'pay': 1,\n",
      "          'bills': 1,\n",
      "          'nwhile': 1,\n",
      "          'occasionally': 1,\n",
      "          'wobbles': 1,\n",
      "          'along': 1,\n",
      "          'writing': 1,\n",
      "          'adapted': 1,\n",
      "          'autobiography': 1,\n",
      "          'director': 1,\n",
      "          'david': 1,\n",
      "          'veloz': 1,\n",
      "          'controlled': 1,\n",
      "          'pointed': 1,\n",
      "          'shows': 1,\n",
      "          'moved': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'l': 1,\n",
      "          'toagain': 1,\n",
      "          'authors': 1,\n",
      "          'escape': 1,\n",
      "          'scene': 1,\n",
      "          'yeah': 1,\n",
      "          'right': 1,\n",
      "          'entered': 1,\n",
      "          'convenient': 1,\n",
      "          'marriage': 1,\n",
      "          'british': 1,\n",
      "          'exec': 1,\n",
      "          'elizabeth': 1,\n",
      "          'hurley': 1,\n",
      "          'impossibly': 1,\n",
      "          'polite': 1,\n",
      "          'youd': 1,\n",
      "          'swear': 1,\n",
      "          'single': 1,\n",
      "          'profanity': 1,\n",
      "          'dubbed': 1,\n",
      "          'conceived': 1,\n",
      "          'child': 1,\n",
      "          'random': 1,\n",
      "          'hirings': 1,\n",
      "          'firings': 1,\n",
      "          'narrates': 1,\n",
      "          'motel': 1,\n",
      "          'bedroom': 1,\n",
      "          'sympathetic': 1,\n",
      "          'lover': 1,\n",
      "          'kitty': 1,\n",
      "          'norristowns': 1,\n",
      "          'maria': 1,\n",
      "          'bello': 1,\n",
      "          'spent': 1,\n",
      "          'rehab': 1,\n",
      "          'njaneane': 1,\n",
      "          'garofalo': 1,\n",
      "          'wastedand': 1,\n",
      "          'miscastas': 1,\n",
      "          'heavilybespectacled': 1,\n",
      "          'talent': 1,\n",
      "          'agent': 1,\n",
      "          'fails': 1,\n",
      "          'get': 1,\n",
      "          'hooks': 1,\n",
      "          'dopedup': 1,\n",
      "          'wordsmith': 1,\n",
      "          'thats': 1,\n",
      "          'jaded': 1,\n",
      "          'clinic': 1,\n",
      "          'counselor': 1,\n",
      "          'unshaven': 1,\n",
      "          'take': 1,\n",
      "          'note': 1,\n",
      "          'lots': 1,\n",
      "          'mascara': 1,\n",
      "          'eyes': 1,\n",
      "          'stumble': 1,\n",
      "          'looking': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'credit': 1,\n",
      "          'never': 1,\n",
      "          'pillpopping': 1,\n",
      "          'needlejabbing': 1,\n",
      "          'top': 1,\n",
      "          'ubiquitous': 1,\n",
      "          'reason': 1,\n",
      "          'see': 1,\n",
      "          'dark': 1,\n",
      "          'comic': 1,\n",
      "          'strangely': 1,\n",
      "          'absorbing': 1,\n",
      "          'study': 1,\n",
      "          'assisted': 1,\n",
      "          'living': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'gibson': 3,\n",
      "          'ransom': 3,\n",
      "          'played': 3,\n",
      "          'sinise': 3,\n",
      "          'movie': 3,\n",
      "          'performance': 2,\n",
      "          'ngibson': 2,\n",
      "          'tom': 2,\n",
      "          'forrest': 2,\n",
      "          'gump': 2,\n",
      "          'kidnap': 2,\n",
      "          'nthe': 2,\n",
      "          'plot': 2,\n",
      "          'makes': 2,\n",
      "          'nbut': 2,\n",
      "          'phones': 2,\n",
      "          'phil': 1,\n",
      "          'curtolo': 1,\n",
      "          'mel': 1,\n",
      "          'braveheart': 1,\n",
      "          'gave': 1,\n",
      "          'gripping': 1,\n",
      "          'father': 1,\n",
      "          'young': 1,\n",
      "          'kidnapped': 1,\n",
      "          'boy': 1,\n",
      "          'ron': 1,\n",
      "          'howards': 1,\n",
      "          'plays': 1,\n",
      "          'mullen': 1,\n",
      "          'wealthy': 1,\n",
      "          'business': 1,\n",
      "          'tycoon': 1,\n",
      "          'whose': 1,\n",
      "          'past': 1,\n",
      "          'actions': 1,\n",
      "          'coming': 1,\n",
      "          'back': 1,\n",
      "          'haunt': 1,\n",
      "          'deranged': 1,\n",
      "          'psychopath': 1,\n",
      "          'gary': 1,\n",
      "          'band': 1,\n",
      "          'lowlife': 1,\n",
      "          'thugs': 1,\n",
      "          'son': 1,\n",
      "          '2': 1,\n",
      "          'million': 1,\n",
      "          'ntom': 1,\n",
      "          'wife': 1,\n",
      "          'kate': 1,\n",
      "          'rene': 1,\n",
      "          'russo': 1,\n",
      "          'tin': 1,\n",
      "          'cup': 1,\n",
      "          'instructed': 1,\n",
      "          'inform': 1,\n",
      "          'police': 1,\n",
      "          'contacted': 1,\n",
      "          'fbi': 1,\n",
      "          'nminutes': 1,\n",
      "          'later': 1,\n",
      "          'elite': 1,\n",
      "          'team': 1,\n",
      "          'agents': 1,\n",
      "          'led': 1,\n",
      "          'delroy': 1,\n",
      "          'lindo': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'toms': 1,\n",
      "          'house': 1,\n",
      "          'wiring': 1,\n",
      "          'every': 1,\n",
      "          'phone': 1,\n",
      "          'sounds': 1,\n",
      "          'average': 1,\n",
      "          'like': 1,\n",
      "          'movies': 1,\n",
      "          'youve': 1,\n",
      "          'already': 1,\n",
      "          'seen': 1,\n",
      "          'nothing': 1,\n",
      "          'nthat': 1,\n",
      "          'halfway': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'goes': 1,\n",
      "          'fox': 1,\n",
      "          '5': 1,\n",
      "          'news': 1,\n",
      "          'room': 1,\n",
      "          'live': 1,\n",
      "          'broadcast': 1,\n",
      "          'saying': 1,\n",
      "          'close': 1,\n",
      "          'ever': 1,\n",
      "          'get': 1,\n",
      "          'ninstead': 1,\n",
      "          'offering': 1,\n",
      "          'money': 1,\n",
      "          'reward': 1,\n",
      "          'head': 1,\n",
      "          'dead': 1,\n",
      "          'alive': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'thickened': 1,\n",
      "          'unusually': 1,\n",
      "          'slow': 1,\n",
      "          'start': 1,\n",
      "          'turned': 1,\n",
      "          'suspensefilled': 1,\n",
      "          'action': 1,\n",
      "          'great': 1,\n",
      "          'stunts': 1,\n",
      "          'last': 1,\n",
      "          'half': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'nanother': 1,\n",
      "          'thing': 1,\n",
      "          'carries': 1,\n",
      "          'superb': 1,\n",
      "          'performances': 1,\n",
      "          'collide': 1,\n",
      "          'game': 1,\n",
      "          'wits': 1,\n",
      "          'cellular': 1,\n",
      "          'nowen': 1,\n",
      "          'gleiberman': 1,\n",
      "          'entertainment': 1,\n",
      "          'weekly': 1,\n",
      "          'commented': 1,\n",
      "          'subject': 1,\n",
      "          'wonder': 1,\n",
      "          'kidnappers': 1,\n",
      "          'cell': 1,\n",
      "          'nbefore': 1,\n",
      "          'mostly': 1,\n",
      "          'good': 1,\n",
      "          'guys': 1,\n",
      "          'first': 1,\n",
      "          'mice': 1,\n",
      "          'men': 1,\n",
      "          'recently': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'surprisingly': 1,\n",
      "          'devilish': 1,\n",
      "          'cold': 1,\n",
      "          'portrayal': 1,\n",
      "          'copgonebad': 1,\n",
      "          'course': 1,\n",
      "          'oscarworthy': 1,\n",
      "          'nalthough': 1,\n",
      "          'scenes': 1,\n",
      "          'quite': 1,\n",
      "          'predictable': 1,\n",
      "          'entertaining': 1,\n",
      "          'suspenseful': 1,\n",
      "          'n': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'trek': 8,\n",
      "          'baku': 8,\n",
      "          'star': 7,\n",
      "          'series': 4,\n",
      "          'nthe': 3,\n",
      "          'first': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'ni': 3,\n",
      "          'ninsurrection': 3,\n",
      "          'sona': 3,\n",
      "          'deal': 3,\n",
      "          'federation': 3,\n",
      "          'one': 2,\n",
      "          'movie': 2,\n",
      "          'nsometimes': 2,\n",
      "          'exception': 2,\n",
      "          'little': 2,\n",
      "          'insurrection': 2,\n",
      "          'actually': 2,\n",
      "          'really': 2,\n",
      "          'exciting': 2,\n",
      "          'next': 2,\n",
      "          'say': 2,\n",
      "          'light': 2,\n",
      "          'episode': 2,\n",
      "          'us': 2,\n",
      "          'race': 2,\n",
      "          'people': 2,\n",
      "          'old': 2,\n",
      "          'rings': 2,\n",
      "          'planet': 2,\n",
      "          'abraham': 2,\n",
      "          'move': 2,\n",
      "          'keep': 2,\n",
      "          'picard': 2,\n",
      "          'also': 2,\n",
      "          'characters': 2,\n",
      "          'nthis': 2,\n",
      "          'order': 2,\n",
      "          'enjoy': 2,\n",
      "          'good': 2,\n",
      "          'like': 2,\n",
      "          'moral': 2,\n",
      "          'big': 2,\n",
      "          'observe': 1,\n",
      "          'expect': 1,\n",
      "          'see': 1,\n",
      "          'serious': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'purpose': 1,\n",
      "          'provide': 1,\n",
      "          'flashy': 1,\n",
      "          'innocent': 1,\n",
      "          'fun': 1,\n",
      "          'stories': 1,\n",
      "          'compelling': 1,\n",
      "          'theyre': 1,\n",
      "          'nbut': 1,\n",
      "          'provides': 1,\n",
      "          'endless': 1,\n",
      "          'shots': 1,\n",
      "          'amazed': 1,\n",
      "          'faces': 1,\n",
      "          'ive': 1,\n",
      "          'never': 1,\n",
      "          'bored': 1,\n",
      "          'enterprises': 1,\n",
      "          'numerous': 1,\n",
      "          'missions': 1,\n",
      "          'nstar': 1,\n",
      "          'gotten': 1,\n",
      "          'negative': 1,\n",
      "          'reviews': 1,\n",
      "          'friend': 1,\n",
      "          'mine': 1,\n",
      "          'thinks': 1,\n",
      "          'worst': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'nits': 1,\n",
      "          'often': 1,\n",
      "          'hilarious': 1,\n",
      "          'engaged': 1,\n",
      "          'left': 1,\n",
      "          'ready': 1,\n",
      "          'nsome': 1,\n",
      "          'bit': 1,\n",
      "          'long': 1,\n",
      "          'nothers': 1,\n",
      "          'cheesy': 1,\n",
      "          'boring': 1,\n",
      "          'simply': 1,\n",
      "          'enjoyed': 1,\n",
      "          'second': 1,\n",
      "          'feature': 1,\n",
      "          'strictly': 1,\n",
      "          'generation': 1,\n",
      "          'cast': 1,\n",
      "          'introduces': 1,\n",
      "          'called': 1,\n",
      "          'three': 1,\n",
      "          'hundred': 1,\n",
      "          'years': 1,\n",
      "          'appear': 1,\n",
      "          'younger': 1,\n",
      "          'age': 1,\n",
      "          'due': 1,\n",
      "          'strange': 1,\n",
      "          'radiation': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'peaceful': 1,\n",
      "          'cant': 1,\n",
      "          'horde': 1,\n",
      "          'fountain': 1,\n",
      "          'youth': 1,\n",
      "          'leave': 1,\n",
      "          'archenemies': 1,\n",
      "          'led': 1,\n",
      "          'ruafo': 1,\n",
      "          'f': 1,\n",
      "          'nmurray': 1,\n",
      "          'mess': 1,\n",
      "          'everything': 1,\n",
      "          'horribly': 1,\n",
      "          'disfigured': 1,\n",
      "          'rely': 1,\n",
      "          'daily': 1,\n",
      "          'reconstructive': 1,\n",
      "          'surgery': 1,\n",
      "          'aesthetically': 1,\n",
      "          'acceptable': 1,\n",
      "          'strike': 1,\n",
      "          'elsewhere': 1,\n",
      "          'exploit': 1,\n",
      "          'secret': 1,\n",
      "          'dying': 1,\n",
      "          'nthats': 1,\n",
      "          'captain': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'steps': 1,\n",
      "          'realizes': 1,\n",
      "          'moving': 1,\n",
      "          'would': 1,\n",
      "          'kill': 1,\n",
      "          'helps': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'woman': 1,\n",
      "          'donna': 1,\n",
      "          'murphy': 1,\n",
      "          'nso': 1,\n",
      "          'trusty': 1,\n",
      "          'crew': 1,\n",
      "          'defies': 1,\n",
      "          'natural': 1,\n",
      "          'habitat': 1,\n",
      "          'nwhen': 1,\n",
      "          'dealing': 1,\n",
      "          'much': 1,\n",
      "          'history': 1,\n",
      "          'entirely': 1,\n",
      "          'necessary': 1,\n",
      "          'reintroduce': 1,\n",
      "          'believe': 1,\n",
      "          'nonfans': 1,\n",
      "          'hard': 1,\n",
      "          'time': 1,\n",
      "          'getting': 1,\n",
      "          'understand': 1,\n",
      "          'approach': 1,\n",
      "          'however': 1,\n",
      "          'surprisingly': 1,\n",
      "          'job': 1,\n",
      "          'new': 1,\n",
      "          'aspects': 1,\n",
      "          'nstewart': 1,\n",
      "          'bold': 1,\n",
      "          'always': 1,\n",
      "          'magnetic': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'perfectly': 1,\n",
      "          'capable': 1,\n",
      "          'holding': 1,\n",
      "          'entire': 1,\n",
      "          'together': 1,\n",
      "          'njonathan': 1,\n",
      "          'frakes': 1,\n",
      "          'directed': 1,\n",
      "          'funny': 1,\n",
      "          'commander': 1,\n",
      "          'riker': 1,\n",
      "          'subplot': 1,\n",
      "          'data': 1,\n",
      "          'brent': 1,\n",
      "          'spiner': 1,\n",
      "          'discovering': 1,\n",
      "          'lost': 1,\n",
      "          'childhood': 1,\n",
      "          'fairly': 1,\n",
      "          'interesting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'makes': 1,\n",
      "          'perfect': 1,\n",
      "          'villain': 1,\n",
      "          'overacting': 1,\n",
      "          'crazy': 1,\n",
      "          'nfrakes': 1,\n",
      "          'showed': 1,\n",
      "          'similar': 1,\n",
      "          'aptitude': 1,\n",
      "          'direction': 1,\n",
      "          'contact': 1,\n",
      "          'attractive': 1,\n",
      "          'lot': 1,\n",
      "          'action': 1,\n",
      "          'apparently': 1,\n",
      "          'utilize': 1,\n",
      "          'computer': 1,\n",
      "          'animation': 1,\n",
      "          'result': 1,\n",
      "          'pleasing': 1,\n",
      "          'eye': 1,\n",
      "          'particularly': 1,\n",
      "          'climactic': 1,\n",
      "          'scenes': 1,\n",
      "          'employ': 1,\n",
      "          'giant': 1,\n",
      "          'space': 1,\n",
      "          'ship': 1,\n",
      "          'suck': 1,\n",
      "          'clean': 1,\n",
      "          'impressively': 1,\n",
      "          'sharp': 1,\n",
      "          'look': 1,\n",
      "          'nif': 1,\n",
      "          'complaint': 1,\n",
      "          'tries': 1,\n",
      "          'take': 1,\n",
      "          'stance': 1,\n",
      "          'appropriate': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'wanted': 1,\n",
      "          '600': 1,\n",
      "          'save': 1,\n",
      "          'lives': 1,\n",
      "          'thousands': 1,\n",
      "          'nbetter': 1,\n",
      "          'yet': 1,\n",
      "          'couldnt': 1,\n",
      "          'coexisted': 1,\n",
      "          'feels': 1,\n",
      "          'spring': 1,\n",
      "          'kinds': 1,\n",
      "          'questions': 1,\n",
      "          'audience': 1,\n",
      "          'nwith': 1,\n",
      "          'inherent': 1,\n",
      "          'camp': 1,\n",
      "          'factor': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'wellequipped': 1,\n",
      "          'issues': 1,\n",
      "          'prefer': 1,\n",
      "          'spectacle': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cable': 8,\n",
      "          'guy': 7,\n",
      "          'rather': 4,\n",
      "          'steven': 4,\n",
      "          'carrey': 3,\n",
      "          'nthe': 3,\n",
      "          'didnt': 3,\n",
      "          'like': 3,\n",
      "          'movie': 3,\n",
      "          'stevens': 3,\n",
      "          'whole': 2,\n",
      "          'characters': 2,\n",
      "          'darker': 2,\n",
      "          'nas': 2,\n",
      "          'film': 2,\n",
      "          'critics': 2,\n",
      "          'time': 2,\n",
      "          'really': 2,\n",
      "          'fact': 2,\n",
      "          'hbo': 2,\n",
      "          'every': 2,\n",
      "          'day': 2,\n",
      "          'nand': 2,\n",
      "          'relationship': 2,\n",
      "          'girlfriend': 2,\n",
      "          'think': 2,\n",
      "          'friend': 2,\n",
      "          'nalso': 2,\n",
      "          'thats': 2,\n",
      "          'scenes': 2,\n",
      "          'karaoke': 2,\n",
      "          'jam': 2,\n",
      "          'liar': 2,\n",
      "          'comes': 2,\n",
      "          'wait': 2,\n",
      "          'fully': 1,\n",
      "          'loaded': 1,\n",
      "          'entertainment': 1,\n",
      "          'review': 1,\n",
      "          'website': 1,\n",
      "          'coming': 1,\n",
      "          'july': 1,\n",
      "          'nfrom': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'truman': 1,\n",
      "          'burbank': 1,\n",
      "          'jim': 1,\n",
      "          'run': 1,\n",
      "          'gamut': 1,\n",
      "          'comic': 1,\n",
      "          'yet': 1,\n",
      "          'sympathetic': 1,\n",
      "          'n1996s': 1,\n",
      "          'supposed': 1,\n",
      "          'big': 1,\n",
      "          'breakthrough': 1,\n",
      "          'role': 1,\n",
      "          'zany': 1,\n",
      "          'humor': 1,\n",
      "          'dramatic': 1,\n",
      "          'acting': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'results': 1,\n",
      "          'well': 1,\n",
      "          'lessthanstellar': 1,\n",
      "          'nnot': 1,\n",
      "          'hot': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'also': 1,\n",
      "          'panned': 1,\n",
      "          'far': 1,\n",
      "          'know': 1,\n",
      "          'gene': 1,\n",
      "          'siskel': 1,\n",
      "          'ones': 1,\n",
      "          'willing': 1,\n",
      "          'admit': 1,\n",
      "          'dug': 1,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'theatres': 1,\n",
      "          'super': 1,\n",
      "          'criticmode': 1,\n",
      "          'nhowever': 1,\n",
      "          'due': 1,\n",
      "          'shows': 1,\n",
      "          'single': 1,\n",
      "          'ive': 1,\n",
      "          'lean': 1,\n",
      "          'back': 1,\n",
      "          'relax': 1,\n",
      "          'take': 1,\n",
      "          'surprise': 1,\n",
      "          'grew': 1,\n",
      "          'plot': 1,\n",
      "          'simple': 1,\n",
      "          'broderick': 1,\n",
      "          'plays': 1,\n",
      "          'named': 1,\n",
      "          'befriends': 1,\n",
      "          'played': 1,\n",
      "          'stalked': 1,\n",
      "          'tries': 1,\n",
      "          'break': 1,\n",
      "          'nsee': 1,\n",
      "          'problems': 1,\n",
      "          'robin': 1,\n",
      "          'leslie': 1,\n",
      "          'mann': 1,\n",
      "          'doesnt': 1,\n",
      "          'room': 1,\n",
      "          'life': 1,\n",
      "          'new': 1,\n",
      "          'guys': 1,\n",
      "          'antics': 1,\n",
      "          'creeping': 1,\n",
      "          'ncarrey': 1,\n",
      "          'gives': 1,\n",
      "          'various': 1,\n",
      "          'aliases': 1,\n",
      "          'later': 1,\n",
      "          'find': 1,\n",
      "          'tv': 1,\n",
      "          'larry': 1,\n",
      "          'tate': 1,\n",
      "          'chip': 1,\n",
      "          'douglas': 1,\n",
      "          'ricky': 1,\n",
      "          'ricardo': 1,\n",
      "          'etc': 1,\n",
      "          'apparently': 1,\n",
      "          'lives': 1,\n",
      "          'van': 1,\n",
      "          'many': 1,\n",
      "          'enjoy': 1,\n",
      "          'newer': 1,\n",
      "          'lessmanic': 1,\n",
      "          'performance': 1,\n",
      "          'thought': 1,\n",
      "          'interesting': 1,\n",
      "          'welldone': 1,\n",
      "          'nfor': 1,\n",
      "          'enjoyable': 1,\n",
      "          'several': 1,\n",
      "          'individual': 1,\n",
      "          'apartment': 1,\n",
      "          'medieval': 1,\n",
      "          'fight': 1,\n",
      "          'theme': 1,\n",
      "          'restaurant': 1,\n",
      "          'bathroom': 1,\n",
      "          'beating': 1,\n",
      "          'la': 1,\n",
      "          'name': 1,\n",
      "          'nperhaps': 1,\n",
      "          'carreys': 1,\n",
      "          'humorous': 1,\n",
      "          'side': 1,\n",
      "          'makes': 1,\n",
      "          'funny': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'something': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'hear': 1,\n",
      "          'version': 1,\n",
      "          'jefferson': 1,\n",
      "          'airplanes': 1,\n",
      "          'somebody': 1,\n",
      "          'love': 1,\n",
      "          'sung': 1,\n",
      "          'aformentioned': 1,\n",
      "          'bad': 1,\n",
      "          'spots': 1,\n",
      "          'ni': 1,\n",
      "          'particularly': 1,\n",
      "          'felt': 1,\n",
      "          'focus': 1,\n",
      "          'used': 1,\n",
      "          'best': 1,\n",
      "          'ending': 1,\n",
      "          'fooled': 1,\n",
      "          'moment': 1,\n",
      "          'contrived': 1,\n",
      "          'somewhat': 1,\n",
      "          'dissapointing': 1,\n",
      "          'nstill': 1,\n",
      "          'found': 1,\n",
      "          'worthwhile': 1,\n",
      "          'venture': 1,\n",
      "          'youre': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'cant': 1,\n",
      "          'anything': 1,\n",
      "          'rent': 1,\n",
      "          'suggest': 1,\n",
      "          'try': 1,\n",
      "          'till': 1,\n",
      "          'wont': 1,\n",
      "          'long': 1,\n",
      "          'nhell': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bulworth': 11,\n",
      "          'film': 11,\n",
      "          'n': 10,\n",
      "          'hes': 6,\n",
      "          'political': 5,\n",
      "          'funny': 4,\n",
      "          'beatty': 4,\n",
      "          'ni': 4,\n",
      "          'also': 3,\n",
      "          'character': 3,\n",
      "          'care': 3,\n",
      "          'story': 3,\n",
      "          'nthe': 3,\n",
      "          'politics': 3,\n",
      "          'work': 3,\n",
      "          'adds': 3,\n",
      "          'satire': 2,\n",
      "          'recent': 2,\n",
      "          'didnt': 2,\n",
      "          'intelligent': 2,\n",
      "          'nbulworth': 2,\n",
      "          'far': 2,\n",
      "          'nits': 2,\n",
      "          'picture': 2,\n",
      "          'like': 2,\n",
      "          'democratic': 2,\n",
      "          'see': 2,\n",
      "          'television': 2,\n",
      "          'almost': 2,\n",
      "          'goes': 2,\n",
      "          'weekend': 2,\n",
      "          'platt': 2,\n",
      "          'speech': 2,\n",
      "          'people': 2,\n",
      "          'suddenly': 2,\n",
      "          'doesnt': 2,\n",
      "          'isnt': 2,\n",
      "          'man': 2,\n",
      "          'nina': 2,\n",
      "          'despite': 2,\n",
      "          'way': 2,\n",
      "          'although': 2,\n",
      "          'fun': 2,\n",
      "          'much': 2,\n",
      "          'watch': 2,\n",
      "          'always': 2,\n",
      "          'good': 2,\n",
      "          'supporting': 2,\n",
      "          'may': 2,\n",
      "          'offensive': 2,\n",
      "          'ended': 1,\n",
      "          'allowed': 1,\n",
      "          'sigh': 1,\n",
      "          'relief': 1,\n",
      "          'possible': 1,\n",
      "          'enjoy': 1,\n",
      "          'nthere': 1,\n",
      "          'several': 1,\n",
      "          'films': 1,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'wag': 1,\n",
      "          'dog': 1,\n",
      "          'instance': 1,\n",
      "          'found': 1,\n",
      "          'heartless': 1,\n",
      "          'primary': 1,\n",
      "          'colors': 1,\n",
      "          'unbearable': 1,\n",
      "          'unwatchable': 1,\n",
      "          'awfulness': 1,\n",
      "          'better': 1,\n",
      "          'execution': 1,\n",
      "          'lasting': 1,\n",
      "          'impression': 1,\n",
      "          'tremendously': 1,\n",
      "          'emotional': 1,\n",
      "          'center': 1,\n",
      "          'writerdirectorstar': 1,\n",
      "          'warren': 1,\n",
      "          'allows': 1,\n",
      "          'audience': 1,\n",
      "          'identify': 1,\n",
      "          'turn': 1,\n",
      "          'actually': 1,\n",
      "          'nbeatty': 1,\n",
      "          'plays': 1,\n",
      "          'incumbent': 1,\n",
      "          'senator': 1,\n",
      "          'jay': 1,\n",
      "          'billington': 1,\n",
      "          'opens': 1,\n",
      "          'sobbing': 1,\n",
      "          'watches': 1,\n",
      "          'spots': 1,\n",
      "          'nhe': 1,\n",
      "          'hasnt': 1,\n",
      "          'slept': 1,\n",
      "          'days': 1,\n",
      "          'eaten': 1,\n",
      "          'instantaneously': 1,\n",
      "          'insane': 1,\n",
      "          'stark': 1,\n",
      "          'raving': 1,\n",
      "          'mad': 1,\n",
      "          'outright': 1,\n",
      "          'anyway': 1,\n",
      "          'definitely': 1,\n",
      "          'bonkers': 1,\n",
      "          'final': 1,\n",
      "          'campaign': 1,\n",
      "          'assistant': 1,\n",
      "          'murphy': 1,\n",
      "          'oliver': 1,\n",
      "          'written': 1,\n",
      "          'feed': 1,\n",
      "          'group': 1,\n",
      "          'black': 1,\n",
      "          'church': 1,\n",
      "          'ghetto': 1,\n",
      "          'begins': 1,\n",
      "          'track': 1,\n",
      "          'starts': 1,\n",
      "          'honest': 1,\n",
      "          'mean': 1,\n",
      "          'one': 1,\n",
      "          'lady': 1,\n",
      "          'asks': 1,\n",
      "          'party': 1,\n",
      "          'african': 1,\n",
      "          'american': 1,\n",
      "          'community': 1,\n",
      "          'well': 1,\n",
      "          'shouts': 1,\n",
      "          'laughing': 1,\n",
      "          'obvious': 1,\n",
      "          'propelled': 1,\n",
      "          'device': 1,\n",
      "          'puts': 1,\n",
      "          'contract': 1,\n",
      "          'life': 1,\n",
      "          'muses': 1,\n",
      "          'later': 1,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'make': 1,\n",
      "          'decisions': 1,\n",
      "          'youre': 1,\n",
      "          'suicidal': 1,\n",
      "          'keeps': 1,\n",
      "          'seeing': 1,\n",
      "          'sunglasses': 1,\n",
      "          'graham': 1,\n",
      "          'beckel': 1,\n",
      "          'believes': 1,\n",
      "          'hitman': 1,\n",
      "          'meets': 1,\n",
      "          'halle': 1,\n",
      "          'berry': 1,\n",
      "          'becomes': 1,\n",
      "          'infatuated': 1,\n",
      "          'short': 1,\n",
      "          'span': 1,\n",
      "          'bulworths': 1,\n",
      "          'nononsense': 1,\n",
      "          'truth': 1,\n",
      "          'methods': 1,\n",
      "          'become': 1,\n",
      "          'national': 1,\n",
      "          'sensation': 1,\n",
      "          'shoots': 1,\n",
      "          'ahead': 1,\n",
      "          'polls': 1,\n",
      "          'fact': 1,\n",
      "          'appearing': 1,\n",
      "          'wearing': 1,\n",
      "          'gang': 1,\n",
      "          'clothes': 1,\n",
      "          'spewing': 1,\n",
      "          'profanity': 1,\n",
      "          'coherent': 1,\n",
      "          'sentences': 1,\n",
      "          'nbeattys': 1,\n",
      "          'sides': 1,\n",
      "          'camera': 1,\n",
      "          'excellent': 1,\n",
      "          'nhis': 1,\n",
      "          'script': 1,\n",
      "          'direction': 1,\n",
      "          'extremely': 1,\n",
      "          'sharp': 1,\n",
      "          'surprisingly': 1,\n",
      "          'strong': 1,\n",
      "          'characterization': 1,\n",
      "          'nhere': 1,\n",
      "          'whos': 1,\n",
      "          'reached': 1,\n",
      "          'limit': 1,\n",
      "          'lashing': 1,\n",
      "          'back': 1,\n",
      "          'screwing': 1,\n",
      "          'entire': 1,\n",
      "          'structure': 1,\n",
      "          'take': 1,\n",
      "          'clear': 1,\n",
      "          'shot': 1,\n",
      "          'parties': 1,\n",
      "          'affiliations': 1,\n",
      "          'general': 1,\n",
      "          'everything': 1,\n",
      "          'run': 1,\n",
      "          'rich': 1,\n",
      "          'antirich': 1,\n",
      "          'sentiments': 1,\n",
      "          'get': 1,\n",
      "          'bit': 1,\n",
      "          'tiresome': 1,\n",
      "          'end': 1,\n",
      "          'nsome': 1,\n",
      "          'segments': 1,\n",
      "          'simply': 1,\n",
      "          'hilarious': 1,\n",
      "          'lengthy': 1,\n",
      "          'rap': 1,\n",
      "          'delivers': 1,\n",
      "          'luncheon': 1,\n",
      "          'dedicated': 1,\n",
      "          'nmuch': 1,\n",
      "          'completely': 1,\n",
      "          'absurd': 1,\n",
      "          'thats': 1,\n",
      "          'part': 1,\n",
      "          'angry': 1,\n",
      "          'serious': 1,\n",
      "          'core': 1,\n",
      "          'package': 1,\n",
      "          'created': 1,\n",
      "          'accessible': 1,\n",
      "          'attempts': 1,\n",
      "          'genre': 1,\n",
      "          'nwhat': 1,\n",
      "          'feeling': 1,\n",
      "          'beattys': 1,\n",
      "          'portrayal': 1,\n",
      "          'performance': 1,\n",
      "          'deserves': 1,\n",
      "          'recognition': 1,\n",
      "          'higher': 1,\n",
      "          'scale': 1,\n",
      "          'subtle': 1,\n",
      "          'ways': 1,\n",
      "          'flesh': 1,\n",
      "          'without': 1,\n",
      "          'dialogue': 1,\n",
      "          'hugely': 1,\n",
      "          'noticeable': 1,\n",
      "          'actions': 1,\n",
      "          'shortcomings': 1,\n",
      "          'human': 1,\n",
      "          'entirely': 1,\n",
      "          'sympathetic': 1,\n",
      "          'likable': 1,\n",
      "          'beginning': 1,\n",
      "          'cast': 1,\n",
      "          'vast': 1,\n",
      "          'colorful': 1,\n",
      "          'nberry': 1,\n",
      "          'luminous': 1,\n",
      "          'repertoire': 1,\n",
      "          'solid': 1,\n",
      "          'roles': 1,\n",
      "          'ndon': 1,\n",
      "          'cheadle': 1,\n",
      "          'role': 1,\n",
      "          'drug': 1,\n",
      "          'dealer': 1,\n",
      "          'uses': 1,\n",
      "          'guntoting': 1,\n",
      "          'toddlers': 1,\n",
      "          'dirty': 1,\n",
      "          'noliver': 1,\n",
      "          'actor': 1,\n",
      "          'careful': 1,\n",
      "          'someday': 1,\n",
      "          'fear': 1,\n",
      "          'induce': 1,\n",
      "          'heart': 1,\n",
      "          'attack': 1,\n",
      "          'intensity': 1,\n",
      "          'acting': 1,\n",
      "          'though': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'southern': 1,\n",
      "          'accent': 1,\n",
      "          'list': 1,\n",
      "          'mastered': 1,\n",
      "          'inflections': 1,\n",
      "          'nis': 1,\n",
      "          'suppose': 1,\n",
      "          'wasnt': 1,\n",
      "          'offended': 1,\n",
      "          'hardly': 1,\n",
      "          'think': 1,\n",
      "          'find': 1,\n",
      "          'blindsided': 1,\n",
      "          'honesty': 1,\n",
      "          'perfect': 1,\n",
      "          'course': 1,\n",
      "          'ending': 1,\n",
      "          'quite': 1,\n",
      "          'scenes': 1,\n",
      "          'feel': 1,\n",
      "          'forced': 1,\n",
      "          'eclectic': 1,\n",
      "          'dance': 1,\n",
      "          'sequence': 1,\n",
      "          'fantastic': 1,\n",
      "          'nbut': 1,\n",
      "          'minor': 1,\n",
      "          'quibbles': 1,\n",
      "          'otherwise': 1,\n",
      "          'brilliant': 1,\n",
      "          'smart': 1,\n",
      "          'uproariously': 1,\n",
      "          'proves': 1,\n",
      "          'scratch': 1,\n",
      "          'deeper': 1,\n",
      "          'surface': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'stretch': 12,\n",
      "          'spoon': 11,\n",
      "          'get': 8,\n",
      "          'gridlockd': 7,\n",
      "          'eyes': 6,\n",
      "          'shakur': 6,\n",
      "          'nthe': 5,\n",
      "          'nin': 5,\n",
      "          'drug': 5,\n",
      "          'characters': 4,\n",
      "          'police': 3,\n",
      "          'play': 3,\n",
      "          'roth': 3,\n",
      "          'cookie': 3,\n",
      "          'new': 3,\n",
      "          'years': 3,\n",
      "          'time': 3,\n",
      "          'enough': 3,\n",
      "          'hall': 3,\n",
      "          'day': 3,\n",
      "          'falling': 3,\n",
      "          'expect': 3,\n",
      "          'world': 3,\n",
      "          'much': 3,\n",
      "          'plays': 3,\n",
      "          'life': 3,\n",
      "          'films': 2,\n",
      "          'screen': 2,\n",
      "          'going': 2,\n",
      "          'chance': 2,\n",
      "          'could': 2,\n",
      "          'social': 2,\n",
      "          'make': 2,\n",
      "          'pure': 2,\n",
      "          'talent': 2,\n",
      "          'two': 2,\n",
      "          'addiction': 2,\n",
      "          'living': 2,\n",
      "          'rehab': 2,\n",
      "          'also': 2,\n",
      "          'find': 2,\n",
      "          'clean': 2,\n",
      "          'government': 2,\n",
      "          'might': 2,\n",
      "          'vondie': 2,\n",
      "          'curtis': 2,\n",
      "          'odyssey': 2,\n",
      "          'urban': 2,\n",
      "          'entire': 2,\n",
      "          'case': 2,\n",
      "          'another': 2,\n",
      "          'system': 2,\n",
      "          'dfens': 2,\n",
      "          'none': 2,\n",
      "          'moments': 2,\n",
      "          'nhall': 2,\n",
      "          'perhaps': 2,\n",
      "          'stretchs': 2,\n",
      "          'dreper': 2,\n",
      "          'scene': 2,\n",
      "          'scares': 2,\n",
      "          'events': 2,\n",
      "          'seen': 2,\n",
      "          'call': 1,\n",
      "          '911': 1,\n",
      "          'cliche': 1,\n",
      "          'must': 1,\n",
      "          'window': 1,\n",
      "          'soul': 1,\n",
      "          'finest': 1,\n",
      "          'actors': 1,\n",
      "          'working': 1,\n",
      "          'command': 1,\n",
      "          'gaze': 1,\n",
      "          'paul': 1,\n",
      "          'newman': 1,\n",
      "          'ralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'nyou': 1,\n",
      "          'look': 1,\n",
      "          'men': 1,\n",
      "          'tell': 1,\n",
      "          'without': 1,\n",
      "          'saying': 1,\n",
      "          'word': 1,\n",
      "          'something': 1,\n",
      "          'minds': 1,\n",
      "          'real': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'discover': 1,\n",
      "          'tupac': 1,\n",
      "          'great': 1,\n",
      "          'actor': 1,\n",
      "          'unique': 1,\n",
      "          'quality': 1,\n",
      "          'oddly': 1,\n",
      "          'effective': 1,\n",
      "          'combination': 1,\n",
      "          'gritty': 1,\n",
      "          'drama': 1,\n",
      "          'satire': 1,\n",
      "          'costar': 1,\n",
      "          'tim': 1,\n",
      "          'take': 1,\n",
      "          'sketchy': 1,\n",
      "          'exciting': 1,\n",
      "          'watch': 1,\n",
      "          'energy': 1,\n",
      "          'chemistry': 1,\n",
      "          'nshakur': 1,\n",
      "          'ezekiel': 1,\n",
      "          'whitmore': 1,\n",
      "          'alexander': 1,\n",
      "          'rome': 1,\n",
      "          'detroit': 1,\n",
      "          'buddies': 1,\n",
      "          'share': 1,\n",
      "          'spoken': 1,\n",
      "          'wordjazz': 1,\n",
      "          'trio': 1,\n",
      "          'apartment': 1,\n",
      "          'thandie': 1,\n",
      "          'newton': 1,\n",
      "          'nwhen': 1,\n",
      "          'eve': 1,\n",
      "          'party': 1,\n",
      "          'ends': 1,\n",
      "          'comatose': 1,\n",
      "          'overdose': 1,\n",
      "          'begin': 1,\n",
      "          'wonder': 1,\n",
      "          'borrowed': 1,\n",
      "          'nthey': 1,\n",
      "          'soon': 1,\n",
      "          'resolution': 1,\n",
      "          'proves': 1,\n",
      "          'easier': 1,\n",
      "          'said': 1,\n",
      "          'done': 1,\n",
      "          'nas': 1,\n",
      "          'though': 1,\n",
      "          'temptation': 1,\n",
      "          'fix': 1,\n",
      "          'hindrance': 1,\n",
      "          'attempts': 1,\n",
      "          'hitting': 1,\n",
      "          'road': 1,\n",
      "          'block': 1,\n",
      "          'bureaucracy': 1,\n",
      "          'confusion': 1,\n",
      "          'red': 1,\n",
      "          'tape': 1,\n",
      "          'least': 1,\n",
      "          'obstacles': 1,\n",
      "          'however': 1,\n",
      "          'suspects': 1,\n",
      "          'murder': 1,\n",
      "          'dealer': 1,\n",
      "          'run': 1,\n",
      "          'nasty': 1,\n",
      "          'thug': 1,\n",
      "          'order': 1,\n",
      "          'buy': 1,\n",
      "          'accept': 1,\n",
      "          'surreal': 1,\n",
      "          'rather': 1,\n",
      "          'realism': 1,\n",
      "          'unless': 1,\n",
      "          'sleep': 1,\n",
      "          'hospital': 1,\n",
      "          'bringing': 1,\n",
      "          'offices': 1,\n",
      "          'thankful': 1,\n",
      "          'help': 1,\n",
      "          'ngridlockd': 1,\n",
      "          'may': 1,\n",
      "          'actually': 1,\n",
      "          'response': 1,\n",
      "          'fatuous': 1,\n",
      "          'commentary': 1,\n",
      "          '1991s': 1,\n",
      "          'found': 1,\n",
      "          'besieged': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'white': 1,\n",
      "          'male': 1,\n",
      "          'venting': 1,\n",
      "          'righteous': 1,\n",
      "          'anger': 1,\n",
      "          'trek': 1,\n",
      "          'inner': 1,\n",
      "          'city': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'personalized': 1,\n",
      "          'license': 1,\n",
      "          'plate': 1,\n",
      "          'echoed': 1,\n",
      "          'lord': 1,\n",
      "          'drepers': 1,\n",
      "          'plates': 1,\n",
      "          'whips': 1,\n",
      "          'gun': 1,\n",
      "          'cant': 1,\n",
      "          'breakfast': 1,\n",
      "          'mcdonalds': 1,\n",
      "          'unarmed': 1,\n",
      "          'demands': 1,\n",
      "          'placed': 1,\n",
      "          'center': 1,\n",
      "          'nand': 1,\n",
      "          'unhinged': 1,\n",
      "          'became': 1,\n",
      "          'heroic': 1,\n",
      "          'surrogate': 1,\n",
      "          'audiences': 1,\n",
      "          'writerdirector': 1,\n",
      "          'refuses': 1,\n",
      "          'let': 1,\n",
      "          'hook': 1,\n",
      "          'part': 1,\n",
      "          'situation': 1,\n",
      "          'bureaucrat': 1,\n",
      "          'responds': 1,\n",
      "          'tirade': 1,\n",
      "          'question': 1,\n",
      "          'stop': 1,\n",
      "          'nbecause': 1,\n",
      "          'picked': 1,\n",
      "          '_today_': 1,\n",
      "          'frustrating': 1,\n",
      "          'cathartic': 1,\n",
      "          'yield': 1,\n",
      "          'easy': 1,\n",
      "          'answers': 1,\n",
      "          'interesting': 1,\n",
      "          'things': 1,\n",
      "          'say': 1,\n",
      "          'na': 1,\n",
      "          'significant': 1,\n",
      "          'chunk': 1,\n",
      "          'devoted': 1,\n",
      "          'flight': 1,\n",
      "          'subplots': 1,\n",
      "          'serve': 1,\n",
      "          'thoroughly': 1,\n",
      "          'predictable': 1,\n",
      "          'one': 1,\n",
      "          'getting': 1,\n",
      "          'chummy': 1,\n",
      "          'officer': 1,\n",
      "          'presents': 1,\n",
      "          'old': 1,\n",
      "          'chestnut': 1,\n",
      "          'mistakenlysuspected': 1,\n",
      "          'heroes': 1,\n",
      "          'public': 1,\n",
      "          'place': 1,\n",
      "          'watching': 1,\n",
      "          'television': 1,\n",
      "          'news': 1,\n",
      "          'report': 1,\n",
      "          'crime': 1,\n",
      "          'shows': 1,\n",
      "          'pictures': 1,\n",
      "          'sequence': 1,\n",
      "          'seems': 1,\n",
      "          'designed': 1,\n",
      "          'merely': 1,\n",
      "          'excuse': 1,\n",
      "          'running': 1,\n",
      "          'primary': 1,\n",
      "          'plot': 1,\n",
      "          'standing': 1,\n",
      "          'line': 1,\n",
      "          'sitting': 1,\n",
      "          'gratuitous': 1,\n",
      "          'inserts': 1,\n",
      "          'paraphernalia': 1,\n",
      "          'flashbacks': 1,\n",
      "          'main': 1,\n",
      "          'making': 1,\n",
      "          'particular': 1,\n",
      "          'effort': 1,\n",
      "          'point': 1,\n",
      "          'wasting': 1,\n",
      "          'selfdestructive': 1,\n",
      "          'behavior': 1,\n",
      "          'noh': 1,\n",
      "          'irony': 1,\n",
      "          'ntupac': 1,\n",
      "          'made': 1,\n",
      "          'career': 1,\n",
      "          'music': 1,\n",
      "          'movies': 1,\n",
      "          'playing': 1,\n",
      "          'hard': 1,\n",
      "          'back': 1,\n",
      "          'gets': 1,\n",
      "          'someone': 1,\n",
      "          'way': 1,\n",
      "          'go': 1,\n",
      "          'know': 1,\n",
      "          'nspoon': 1,\n",
      "          'idea': 1,\n",
      "          'character': 1,\n",
      "          'best': 1,\n",
      "          'written': 1,\n",
      "          'displays': 1,\n",
      "          'intelligence': 1,\n",
      "          'survival': 1,\n",
      "          'instinct': 1,\n",
      "          'struggle': 1,\n",
      "          'nmostly': 1,\n",
      "          'comes': 1,\n",
      "          'hardness': 1,\n",
      "          'infamous': 1,\n",
      "          'gangsta': 1,\n",
      "          'nit': 1,\n",
      "          'conscience': 1,\n",
      "          'appetite': 1,\n",
      "          'gleeful': 1,\n",
      "          'selfdestructiveness': 1,\n",
      "          'reveals': 1,\n",
      "          'hiv': 1,\n",
      "          'positive': 1,\n",
      "          'even': 1,\n",
      "          'preparing': 1,\n",
      "          'shoot': 1,\n",
      "          'obstacle': 1,\n",
      "          'spoons': 1,\n",
      "          'goal': 1,\n",
      "          'agency': 1,\n",
      "          'enemy': 1,\n",
      "          'ngridlockds': 1,\n",
      "          'cruelly': 1,\n",
      "          'comic': 1,\n",
      "          'finds': 1,\n",
      "          'helping': 1,\n",
      "          'emergency': 1,\n",
      "          'room': 1,\n",
      "          'repeatedly': 1,\n",
      "          'stabbing': 1,\n",
      "          'tiny': 1,\n",
      "          'pocket': 1,\n",
      "          'knife': 1,\n",
      "          'becomes': 1,\n",
      "          'appropriate': 1,\n",
      "          'symbol': 1,\n",
      "          'company': 1,\n",
      "          'keeps': 1,\n",
      "          'slowly': 1,\n",
      "          'drained': 1,\n",
      "          'nwith': 1,\n",
      "          'friends': 1,\n",
      "          'like': 1,\n",
      "          'doesnt': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'need': 1,\n",
      "          'enemies': 1,\n",
      "          'looks': 1,\n",
      "          'tired': 1,\n",
      "          'man': 1,\n",
      "          'tragedy': 1,\n",
      "          'wont': 1,\n",
      "          'chances': 1,\n",
      "          'see': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'film': 6,\n",
      "          'day': 3,\n",
      "          'story': 3,\n",
      "          'bank': 3,\n",
      "          'gets': 3,\n",
      "          'john': 3,\n",
      "          'early': 3,\n",
      "          'star': 3,\n",
      "          'trek': 3,\n",
      "          'scene': 3,\n",
      "          'budget': 2,\n",
      "          'comedy': 2,\n",
      "          'life': 2,\n",
      "          'two': 2,\n",
      "          'spend': 2,\n",
      "          'premise': 2,\n",
      "          'still': 2,\n",
      "          'get': 2,\n",
      "          'half': 2,\n",
      "          'zoe': 2,\n",
      "          'french': 2,\n",
      "          'art': 2,\n",
      "          'writerdirector': 2,\n",
      "          'failed': 2,\n",
      "          'job': 2,\n",
      "          'go': 2,\n",
      "          'pulp': 2,\n",
      "          'fiction': 2,\n",
      "          'nin': 2,\n",
      "          'road': 2,\n",
      "          'wellville': 2,\n",
      "          'boyle': 2,\n",
      "          'doesnt': 2,\n",
      "          'bowels': 2,\n",
      "          'nhe': 2,\n",
      "          'many': 2,\n",
      "          'direction': 2,\n",
      "          'nwhat': 2,\n",
      "          'ends': 2,\n",
      "          'cant': 2,\n",
      "          'scifi': 2,\n",
      "          'else': 2,\n",
      "          'ndirector': 2,\n",
      "          'fans': 2,\n",
      "          'james': 2,\n",
      "          'interesting': 2,\n",
      "          'costars': 2,\n",
      "          'generations': 2,\n",
      "          'best': 2,\n",
      "          'goes': 2,\n",
      "          '34th': 2,\n",
      "          'street': 2,\n",
      "          'claus': 2,\n",
      "          'nothing': 2,\n",
      "          'expect': 2,\n",
      "          'hilarious': 1,\n",
      "          'ultralow': 1,\n",
      "          'school': 1,\n",
      "          'dropout': 1,\n",
      "          'kevin': 1,\n",
      "          'smith': 1,\n",
      "          'chronicles': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'slackers': 1,\n",
      "          'brian': 1,\n",
      "          'ohalloran': 1,\n",
      "          'jeff': 1,\n",
      "          'anderson': 1,\n",
      "          'nthey': 1,\n",
      "          'ignoring': 1,\n",
      "          'customers': 1,\n",
      "          'discussing': 1,\n",
      "          'everything': 1,\n",
      "          'fellatio': 1,\n",
      "          'selffulfillment': 1,\n",
      "          'strictly': 1,\n",
      "          'sitcom': 1,\n",
      "          'photography': 1,\n",
      "          'grainy': 1,\n",
      "          'getout': 1,\n",
      "          'could': 1,\n",
      "          'ten': 1,\n",
      "          'times': 1,\n",
      "          'films': 1,\n",
      "          'reported': 1,\n",
      "          '27': 1,\n",
      "          '000': 1,\n",
      "          'dialogue': 1,\n",
      "          'good': 1,\n",
      "          'noriginally': 1,\n",
      "          'rated': 1,\n",
      "          'nc17': 1,\n",
      "          'language': 1,\n",
      "          'nnot': 1,\n",
      "          'recommended': 1,\n",
      "          'viewers': 1,\n",
      "          'sensitive': 1,\n",
      "          'ears': 1,\n",
      "          'nkilling': 1,\n",
      "          'nremake': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogs': 1,\n",
      "          'youre': 1,\n",
      "          'halfway': 1,\n",
      "          'killing': 1,\n",
      "          'roger': 1,\n",
      "          'avarys': 1,\n",
      "          'slowmoving': 1,\n",
      "          'bastille': 1,\n",
      "          'robbery': 1,\n",
      "          'neric': 1,\n",
      "          'stoltz': 1,\n",
      "          'stars': 1,\n",
      "          'american': 1,\n",
      "          'paris': 1,\n",
      "          'way': 1,\n",
      "          'head': 1,\n",
      "          'hooks': 1,\n",
      "          'band': 1,\n",
      "          'nihilistic': 1,\n",
      "          'robbers': 1,\n",
      "          'nhes': 1,\n",
      "          'safecracker': 1,\n",
      "          'whos': 1,\n",
      "          'blissful': 1,\n",
      "          'unaware': 1,\n",
      "          'botch': 1,\n",
      "          'word': 1,\n",
      "          'nthough': 1,\n",
      "          'intriguing': 1,\n",
      "          'fronts': 1,\n",
      "          'paced': 1,\n",
      "          'speed': 1,\n",
      "          'avary': 1,\n",
      "          'cowrote': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantino': 1,\n",
      "          'english': 1,\n",
      "          'nbased': 1,\n",
      "          'novel': 1,\n",
      "          'coraghessan': 1,\n",
      "          'far': 1,\n",
      "          'nbowels': 1,\n",
      "          'explored': 1,\n",
      "          'dr': 1,\n",
      "          'harvey': 1,\n",
      "          'kellogg': 1,\n",
      "          'bucktoothed': 1,\n",
      "          'bespectacled': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          '1900s': 1,\n",
      "          'advocated': 1,\n",
      "          'abstinence': 1,\n",
      "          'vegetarianism': 1,\n",
      "          'frequent': 1,\n",
      "          'defecation': 1,\n",
      "          'also': 1,\n",
      "          'invented': 1,\n",
      "          'cornflake': 1,\n",
      "          'nreally': 1,\n",
      "          'ncheckingin': 1,\n",
      "          'kelloggs': 1,\n",
      "          'battle': 1,\n",
      "          'creek': 1,\n",
      "          'sanitarium': 1,\n",
      "          'matthew': 1,\n",
      "          'broderick': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'wellknown': 1,\n",
      "          'faces': 1,\n",
      "          'nleave': 1,\n",
      "          'laughter': 1,\n",
      "          'door': 1,\n",
      "          'marvel': 1,\n",
      "          'unfunny': 1,\n",
      "          'antics': 1,\n",
      "          'cusack': 1,\n",
      "          'michael': 1,\n",
      "          'lerner': 1,\n",
      "          'lara': 1,\n",
      "          'flynn': 1,\n",
      "          'neville': 1,\n",
      "          'dana': 1,\n",
      "          'carvey': 1,\n",
      "          'impeccable': 1,\n",
      "          'sequences': 1,\n",
      "          'amusing': 1,\n",
      "          'novelty': 1,\n",
      "          'quickly': 1,\n",
      "          'wears': 1,\n",
      "          'alan': 1,\n",
      "          'parkers': 1,\n",
      "          'tries': 1,\n",
      "          'darnedness': 1,\n",
      "          'turn': 1,\n",
      "          'doodoo': 1,\n",
      "          'drama': 1,\n",
      "          'something': 1,\n",
      "          'print': 1,\n",
      "          'nphew': 1,\n",
      "          'nstargate': 1,\n",
      "          'nlawrence': 1,\n",
      "          'arabia': 1,\n",
      "          'meets': 1,\n",
      "          'wars': 1,\n",
      "          'nthis': 1,\n",
      "          'epic': 1,\n",
      "          'sheer': 1,\n",
      "          'spectacle': 1,\n",
      "          'anything': 1,\n",
      "          'roland': 1,\n",
      "          'emmerich': 1,\n",
      "          'universal': 1,\n",
      "          'solider': 1,\n",
      "          'shamelessly': 1,\n",
      "          'rips': 1,\n",
      "          'lucas': 1,\n",
      "          'spielberg': 1,\n",
      "          'cosmic': 1,\n",
      "          'cliche': 1,\n",
      "          'lay': 1,\n",
      "          'hands': 1,\n",
      "          'overlong': 1,\n",
      "          'characters': 1,\n",
      "          'cardboard': 1,\n",
      "          'script': 1,\n",
      "          'filled': 1,\n",
      "          'laughable': 1,\n",
      "          'details': 1,\n",
      "          'modern': 1,\n",
      "          'history': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'theres': 1,\n",
      "          'plenty': 1,\n",
      "          'watch': 1,\n",
      "          'nscifi': 1,\n",
      "          'enjoy': 1,\n",
      "          'sculpted': 1,\n",
      "          'sands': 1,\n",
      "          'morphing': 1,\n",
      "          'headdresses': 1,\n",
      "          'surprisingly': 1,\n",
      "          'spunky': 1,\n",
      "          'spader': 1,\n",
      "          'plays': 1,\n",
      "          'egyptologist': 1,\n",
      "          'prove': 1,\n",
      "          'theory': 1,\n",
      "          'somebody': 1,\n",
      "          'built': 1,\n",
      "          'pyramids': 1,\n",
      "          'nless': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'jaye': 1,\n",
      "          'davidson': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          'fame': 1,\n",
      "          'nstar': 1,\n",
      "          'ntrek': 1,\n",
      "          'may': 1,\n",
      "          'forgiving': 1,\n",
      "          'rest': 1,\n",
      "          'us': 1,\n",
      "          'sluggish': 1,\n",
      "          'mixed': 1,\n",
      "          'bag': 1,\n",
      "          'long': 1,\n",
      "          'cast': 1,\n",
      "          'earnest': 1,\n",
      "          'lacks': 1,\n",
      "          'punch': 1,\n",
      "          'nand': 1,\n",
      "          'n': 1,\n",
      "          'example': 1,\n",
      "          'latter': 1,\n",
      "          'klingon': 1,\n",
      "          'comeuppance': 1,\n",
      "          'delivers': 1,\n",
      "          'none': 1,\n",
      "          'impact': 1,\n",
      "          'similar': 1,\n",
      "          'ii': 1,\n",
      "          'noriginal': 1,\n",
      "          'enterprise': 1,\n",
      "          'captain': 1,\n",
      "          'kirk': 1,\n",
      "          'appears': 1,\n",
      "          'though': 1,\n",
      "          'cut': 1,\n",
      "          'shatner': 1,\n",
      "          'turns': 1,\n",
      "          'screen': 1,\n",
      "          'plead': 1,\n",
      "          'nremarkably': 1,\n",
      "          'unremarkable': 1,\n",
      "          'nmiracle': 1,\n",
      "          'season': 1,\n",
      "          'specialist': 1,\n",
      "          'et': 1,\n",
      "          'al': 1,\n",
      "          'maybe': 1,\n",
      "          'remake': 1,\n",
      "          'miracle': 1,\n",
      "          'necessary': 1,\n",
      "          'njohn': 1,\n",
      "          'hughes': 1,\n",
      "          'certainly': 1,\n",
      "          'believes': 1,\n",
      "          'santa': 1,\n",
      "          'les': 1,\n",
      "          'mayfielddirected': 1,\n",
      "          'production': 1,\n",
      "          'tarnish': 1,\n",
      "          'memory': 1,\n",
      "          '1947': 1,\n",
      "          'original': 1,\n",
      "          'romance': 1,\n",
      "          'dylan': 1,\n",
      "          'mcdermott': 1,\n",
      "          'elizabeth': 1,\n",
      "          'perkins': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'makes': 1,\n",
      "          'strong': 1,\n",
      "          'case': 1,\n",
      "          'richard': 1,\n",
      "          'attenborough': 1,\n",
      "          'definitive': 1,\n",
      "          'kriss': 1,\n",
      "          'kringle': 1,\n",
      "          'nhis': 1,\n",
      "          'chemistry': 1,\n",
      "          'children': 1,\n",
      "          'moisten': 1,\n",
      "          'eye': 1,\n",
      "          'nno': 1,\n",
      "          'alarm': 1,\n",
      "          'njunior': 1,\n",
      "          'narnold': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'pregnant': 1,\n",
      "          'nsure': 1,\n",
      "          'billy': 1,\n",
      "          'crystal': 1,\n",
      "          'rabbit': 1,\n",
      "          'test': 1,\n",
      "          'sight': 1,\n",
      "          'schwarz': 1,\n",
      "          'bulging': 1,\n",
      "          'belly': 1,\n",
      "          'casting': 1,\n",
      "          'coup': 1,\n",
      "          'comparable': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'tootsie': 1,\n",
      "          'onejoke': 1,\n",
      "          'actually': 1,\n",
      "          'better': 1,\n",
      "          'along': 1,\n",
      "          'ivan': 1,\n",
      "          'reitman': 1,\n",
      "          'dave': 1,\n",
      "          'twins': 1,\n",
      "          'wisely': 1,\n",
      "          'keeps': 1,\n",
      "          'farce': 1,\n",
      "          'minimum': 1,\n",
      "          'first': 1,\n",
      "          'hour': 1,\n",
      "          'moves': 1,\n",
      "          'slower': 1,\n",
      "          'might': 1,\n",
      "          'ndont': 1,\n",
      "          'yuks': 1,\n",
      "          'danny': 1,\n",
      "          'devito': 1,\n",
      "          'beat': 1,\n",
      "          'romantic': 1,\n",
      "          'scenes': 1,\n",
      "          'emma': 1,\n",
      "          'arnie': 1,\n",
      "          'nhows': 1,\n",
      "          'collision': 1,\n",
      "          'acting': 1,\n",
      "          'styles': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'music': 5,\n",
      "          'film': 5,\n",
      "          'time': 4,\n",
      "          'audience': 3,\n",
      "          'watching': 3,\n",
      "          'nthe': 3,\n",
      "          'one': 3,\n",
      "          'band': 3,\n",
      "          'love': 3,\n",
      "          'minutes': 3,\n",
      "          'us': 2,\n",
      "          'monterey': 2,\n",
      "          'pop': 2,\n",
      "          'otis': 2,\n",
      "          'redding': 2,\n",
      "          'jimi': 2,\n",
      "          'hendrix': 2,\n",
      "          'janis': 2,\n",
      "          'joplin': 2,\n",
      "          'mamas': 2,\n",
      "          'papas': 2,\n",
      "          'reveal': 2,\n",
      "          'ending': 2,\n",
      "          'concert': 2,\n",
      "          'show': 2,\n",
      "          'seats': 2,\n",
      "          'moments': 2,\n",
      "          'get': 2,\n",
      "          'nand': 2,\n",
      "          'nits': 2,\n",
      "          'nall': 2,\n",
      "          'bands': 2,\n",
      "          'still': 2,\n",
      "          'screen': 2,\n",
      "          'thats': 2,\n",
      "          'much': 2,\n",
      "          'stuck': 2,\n",
      "          'werent': 1,\n",
      "          'yet': 1,\n",
      "          'born': 1,\n",
      "          '1960s': 1,\n",
      "          'rock': 1,\n",
      "          'n': 1,\n",
      "          'rolled': 1,\n",
      "          'around': 1,\n",
      "          'affords': 1,\n",
      "          'affectionate': 1,\n",
      "          'glimpse': 1,\n",
      "          'influenced': 1,\n",
      "          'parents': 1,\n",
      "          'hippies': 1,\n",
      "          'nfrom': 1,\n",
      "          'jefferson': 1,\n",
      "          'airplane': 1,\n",
      "          'documentary': 1,\n",
      "          'jampacked': 1,\n",
      "          'contagious': 1,\n",
      "          'energy': 1,\n",
      "          'nbut': 1,\n",
      "          'give': 1,\n",
      "          'fair': 1,\n",
      "          'warning': 1,\n",
      "          'rest': 1,\n",
      "          'justice': 1,\n",
      "          'deserves': 1,\n",
      "          'nshot': 1,\n",
      "          '1969': 1,\n",
      "          'outdoor': 1,\n",
      "          'precluded': 1,\n",
      "          'woodstock': 1,\n",
      "          'defies': 1,\n",
      "          'stereotype': 1,\n",
      "          'general': 1,\n",
      "          'population': 1,\n",
      "          'nsure': 1,\n",
      "          'painted': 1,\n",
      "          'faces': 1,\n",
      "          'smoke': 1,\n",
      "          'joints': 1,\n",
      "          'npennebaker': 1,\n",
      "          'war': 1,\n",
      "          'room': 1,\n",
      "          'moon': 1,\n",
      "          'broadway': 1,\n",
      "          'surprisingly': 1,\n",
      "          'chooses': 1,\n",
      "          'broad': 1,\n",
      "          'spectrum': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'talented': 1,\n",
      "          'musicians': 1,\n",
      "          'stir': 1,\n",
      "          'soul': 1,\n",
      "          'excitement': 1,\n",
      "          'starts': 1,\n",
      "          'even': 1,\n",
      "          'begins': 1,\n",
      "          'na': 1,\n",
      "          'young': 1,\n",
      "          'girl': 1,\n",
      "          'cleaning': 1,\n",
      "          'thousands': 1,\n",
      "          'asked': 1,\n",
      "          'interviewer': 1,\n",
      "          'replies': 1,\n",
      "          'feels': 1,\n",
      "          'lucky': 1,\n",
      "          'nthere': 1,\n",
      "          'organized': 1,\n",
      "          'craziness': 1,\n",
      "          'john': 1,\n",
      "          'phillips': 1,\n",
      "          'leader': 1,\n",
      "          'organizers': 1,\n",
      "          'tries': 1,\n",
      "          'touch': 1,\n",
      "          'dionne': 1,\n",
      "          'warwick': 1,\n",
      "          'tuning': 1,\n",
      "          'member': 1,\n",
      "          'remarks': 1,\n",
      "          'finally': 1,\n",
      "          'decent': 1,\n",
      "          'sound': 1,\n",
      "          'system': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'first': 1,\n",
      "          'isnt': 1,\n",
      "          'vanity': 1,\n",
      "          'playing': 1,\n",
      "          'appreciation': 1,\n",
      "          'twoway': 1,\n",
      "          'street': 1,\n",
      "          'nthis': 1,\n",
      "          'interaction': 1,\n",
      "          'performer': 1,\n",
      "          'continues': 1,\n",
      "          'throughout': 1,\n",
      "          'becomes': 1,\n",
      "          'infectious': 1,\n",
      "          'impossible': 1,\n",
      "          'tear': 1,\n",
      "          'eyes': 1,\n",
      "          'away': 1,\n",
      "          'belts': 1,\n",
      "          'ballad': 1,\n",
      "          'ball': 1,\n",
      "          'chain': 1,\n",
      "          'lyrics': 1,\n",
      "          'wild': 1,\n",
      "          'thing': 1,\n",
      "          'may': 1,\n",
      "          'complicated': 1,\n",
      "          'mime': 1,\n",
      "          'sex': 1,\n",
      "          'guitar': 1,\n",
      "          'captivating': 1,\n",
      "          'singing': 1,\n",
      "          'neven': 1,\n",
      "          'dont': 1,\n",
      "          'recognize': 1,\n",
      "          'every': 1,\n",
      "          'see': 1,\n",
      "          'stage': 1,\n",
      "          'imagine': 1,\n",
      "          'enthralled': 1,\n",
      "          'work': 1,\n",
      "          'public': 1,\n",
      "          'sitting': 1,\n",
      "          'drawback': 1,\n",
      "          'unfortunately': 1,\n",
      "          'must': 1,\n",
      "          'big': 1,\n",
      "          'names': 1,\n",
      "          'today': 1,\n",
      "          'got': 1,\n",
      "          'approximately': 1,\n",
      "          '7': 1,\n",
      "          '10': 1,\n",
      "          'nin': 1,\n",
      "          'contrast': 1,\n",
      "          'last': 1,\n",
      "          'camera': 1,\n",
      "          'wholly': 1,\n",
      "          'forgettable': 1,\n",
      "          'gets': 1,\n",
      "          'entire': 1,\n",
      "          '18': 1,\n",
      "          'nfor': 1,\n",
      "          '78': 1,\n",
      "          'long': 1,\n",
      "          'large': 1,\n",
      "          'chunk': 1,\n",
      "          'especially': 1,\n",
      "          'previous': 1,\n",
      "          'acts': 1,\n",
      "          'stimulating': 1,\n",
      "          'precious': 1,\n",
      "          'rare': 1,\n",
      "          'look': 1,\n",
      "          'period': 1,\n",
      "          'holds': 1,\n",
      "          'sway': 1,\n",
      "          'variety': 1,\n",
      "          'well': 1,\n",
      "          'beautifully': 1,\n",
      "          'shot': 1,\n",
      "          'performances': 1,\n",
      "          'easy': 1,\n",
      "          'become': 1,\n",
      "          'immersed': 1,\n",
      "          'nif': 1,\n",
      "          'ever': 1,\n",
      "          'question': 1,\n",
      "          'popular': 1,\n",
      "          'quickly': 1,\n",
      "          'dispelled': 1,\n",
      "          'almost': 1,\n",
      "          'depressing': 1,\n",
      "          'think': 1,\n",
      "          'moving': 1,\n",
      "          'doesnt': 1,\n",
      "          'made': 1,\n",
      "          'anymore': 1,\n",
      "          'ninstead': 1,\n",
      "          'nsync': 1,\n",
      "          'backstreet': 1,\n",
      "          'boys': 1,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'modeling': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 17,\n",
      "          'would': 8,\n",
      "          'scorsese': 6,\n",
      "          'criminal': 6,\n",
      "          'ironic': 6,\n",
      "          'years': 5,\n",
      "          'best': 5,\n",
      "          'played': 5,\n",
      "          'effective': 5,\n",
      "          'among': 5,\n",
      "          'mafia': 4,\n",
      "          'goodfellas': 4,\n",
      "          'life': 4,\n",
      "          'hill': 4,\n",
      "          'violence': 4,\n",
      "          'make': 4,\n",
      "          'characters': 4,\n",
      "          'great': 4,\n",
      "          'another': 3,\n",
      "          'organised': 3,\n",
      "          'crime': 3,\n",
      "          'influence': 3,\n",
      "          'new': 3,\n",
      "          'black': 3,\n",
      "          'films': 3,\n",
      "          '1990s': 3,\n",
      "          'henry': 3,\n",
      "          'gradually': 3,\n",
      "          'de': 3,\n",
      "          'friends': 3,\n",
      "          'drug': 3,\n",
      "          'nscorsese': 3,\n",
      "          'also': 3,\n",
      "          'truly': 3,\n",
      "          'scenes': 3,\n",
      "          'soundtrack': 3,\n",
      "          'shots': 3,\n",
      "          'became': 3,\n",
      "          'popular': 3,\n",
      "          'narrator': 3,\n",
      "          'character': 3,\n",
      "          'coppolas': 2,\n",
      "          'loyalty': 2,\n",
      "          'vision': 2,\n",
      "          'mean': 2,\n",
      "          'streets': 2,\n",
      "          'dealt': 2,\n",
      "          'movies': 2,\n",
      "          'later': 2,\n",
      "          'york': 2,\n",
      "          'american': 2,\n",
      "          'nthis': 2,\n",
      "          'one': 2,\n",
      "          'ngoodfellas': 2,\n",
      "          'based': 2,\n",
      "          'book': 2,\n",
      "          'screenplay': 2,\n",
      "          'nthe': 2,\n",
      "          'liotta': 2,\n",
      "          'gets': 2,\n",
      "          'sorvino': 2,\n",
      "          'nafter': 2,\n",
      "          'couple': 2,\n",
      "          'tommy': 2,\n",
      "          'pesci': 2,\n",
      "          'robert': 2,\n",
      "          'niro': 2,\n",
      "          'history': 2,\n",
      "          'connected': 2,\n",
      "          'future': 2,\n",
      "          'wife': 2,\n",
      "          'karen': 2,\n",
      "          'bracco': 2,\n",
      "          'afterwards': 2,\n",
      "          'husband': 2,\n",
      "          'despite': 2,\n",
      "          'nbut': 2,\n",
      "          'apart': 2,\n",
      "          'homicidal': 2,\n",
      "          'excellent': 2,\n",
      "          'represents': 2,\n",
      "          'work': 2,\n",
      "          'full': 2,\n",
      "          'talented': 2,\n",
      "          'filmmaker': 2,\n",
      "          'paranoia': 2,\n",
      "          'manages': 2,\n",
      "          'funny': 2,\n",
      "          'two': 2,\n",
      "          'audience': 2,\n",
      "          'material': 2,\n",
      "          'bloodshed': 2,\n",
      "          'humour': 2,\n",
      "          'talents': 2,\n",
      "          'original': 2,\n",
      "          'structure': 2,\n",
      "          'plot': 2,\n",
      "          'used': 2,\n",
      "          'instead': 2,\n",
      "          'distance': 2,\n",
      "          'choice': 2,\n",
      "          'times': 2,\n",
      "          'songs': 2,\n",
      "          'large': 2,\n",
      "          'although': 2,\n",
      "          'doesnt': 2,\n",
      "          'element': 2,\n",
      "          'supporting': 2,\n",
      "          'memorable': 2,\n",
      "          'hand': 2,\n",
      "          'common': 1,\n",
      "          'many': 1,\n",
      "          'cases': 1,\n",
      "          'complaint': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          '1972': 1,\n",
      "          'masterpiece': 1,\n",
      "          'godfather': 1,\n",
      "          'glamorising': 1,\n",
      "          'presented': 1,\n",
      "          'institution': 1,\n",
      "          'guided': 1,\n",
      "          'ancient': 1,\n",
      "          'tradition': 1,\n",
      "          'virtues': 1,\n",
      "          'like': 1,\n",
      "          'honour': 1,\n",
      "          'solidarity': 1,\n",
      "          'suitable': 1,\n",
      "          'gentler': 1,\n",
      "          'kinder': 1,\n",
      "          'ages': 1,\n",
      "          'nmartin': 1,\n",
      "          'italoamerican': 1,\n",
      "          'moviemaker': 1,\n",
      "          'confronted': 1,\n",
      "          'perspective': 1,\n",
      "          'downtoearth': 1,\n",
      "          '1973': 1,\n",
      "          'movie': 1,\n",
      "          'lower': 1,\n",
      "          'echelons': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'unspectacular': 1,\n",
      "          'artsy': 1,\n",
      "          'compete': 1,\n",
      "          'portrayals': 1,\n",
      "          'nseventeen': 1,\n",
      "          'returned': 1,\n",
      "          'darker': 1,\n",
      "          'side': 1,\n",
      "          'epic': 1,\n",
      "          'comedy': 1,\n",
      "          'today': 1,\n",
      "          'considered': 1,\n",
      "          'influential': 1,\n",
      "          'owes': 1,\n",
      "          'initial': 1,\n",
      "          'success': 1,\n",
      "          'popularity': 1,\n",
      "          'fact': 1,\n",
      "          'true': 1,\n",
      "          'story': 1,\n",
      "          'told': 1,\n",
      "          'bestseller': 1,\n",
      "          'wiseguy': 1,\n",
      "          'nicholas': 1,\n",
      "          'pileggi': 1,\n",
      "          'cowrite': 1,\n",
      "          'well': 1,\n",
      "          'chronicled': 1,\n",
      "          'thirty': 1,\n",
      "          'ray': 1,\n",
      "          'irishitalian': 1,\n",
      "          'nat': 1,\n",
      "          'age': 1,\n",
      "          '13': 1,\n",
      "          'recruited': 1,\n",
      "          'organisation': 1,\n",
      "          'paulie': 1,\n",
      "          'cicero': 1,\n",
      "          'paul': 1,\n",
      "          'local': 1,\n",
      "          'mob': 1,\n",
      "          'boss': 1,\n",
      "          'climbs': 1,\n",
      "          'ladder': 1,\n",
      "          'starting': 1,\n",
      "          'small': 1,\n",
      "          'errands': 1,\n",
      "          'together': 1,\n",
      "          'childhood': 1,\n",
      "          'friend': 1,\n",
      "          'vito': 1,\n",
      "          'joe': 1,\n",
      "          'joins': 1,\n",
      "          'crew': 1,\n",
      "          'expert': 1,\n",
      "          'thieves': 1,\n",
      "          'led': 1,\n",
      "          'jimmy': 1,\n",
      "          'conway': 1,\n",
      "          'nthree': 1,\n",
      "          'spend': 1,\n",
      "          'associates': 1,\n",
      "          'gathering': 1,\n",
      "          'enormous': 1,\n",
      "          'wealth': 1,\n",
      "          'enterprises': 1,\n",
      "          'culminate': 1,\n",
      "          'spectacular': 1,\n",
      "          'robberies': 1,\n",
      "          'nwealth': 1,\n",
      "          'privileges': 1,\n",
      "          'men': 1,\n",
      "          'enough': 1,\n",
      "          'seduce': 1,\n",
      "          'lorraine': 1,\n",
      "          'remain': 1,\n",
      "          'loyal': 1,\n",
      "          'infidelities': 1,\n",
      "          'domestic': 1,\n",
      "          'abuse': 1,\n",
      "          'arrests': 1,\n",
      "          'even': 1,\n",
      "          'accomplice': 1,\n",
      "          'private': 1,\n",
      "          'dealing': 1,\n",
      "          'business': 1,\n",
      "          'perfect': 1,\n",
      "          'world': 1,\n",
      "          'wiseguys': 1,\n",
      "          'begins': 1,\n",
      "          'fall': 1,\n",
      "          'tommys': 1,\n",
      "          'unpredictable': 1,\n",
      "          'outbursts': 1,\n",
      "          'jimmys': 1,\n",
      "          'reluctance': 1,\n",
      "          'share': 1,\n",
      "          'part': 1,\n",
      "          'loot': 1,\n",
      "          'partners': 1,\n",
      "          'finally': 1,\n",
      "          'henrys': 1,\n",
      "          'habit': 1,\n",
      "          'lead': 1,\n",
      "          'downfall': 1,\n",
      "          'question': 1,\n",
      "          'example': 1,\n",
      "          'genius': 1,\n",
      "          'glory': 1,\n",
      "          'managed': 1,\n",
      "          'create': 1,\n",
      "          'complete': 1,\n",
      "          'contradictions': 1,\n",
      "          'ripped': 1,\n",
      "          'hands': 1,\n",
      "          'less': 1,\n",
      "          'nworld': 1,\n",
      "          'depicted': 1,\n",
      "          'ordinary': 1,\n",
      "          'fascinating': 1,\n",
      "          'spares': 1,\n",
      "          'effort': 1,\n",
      "          'show': 1,\n",
      "          'us': 1,\n",
      "          'hypocrisy': 1,\n",
      "          'inherent': 1,\n",
      "          'yet': 1,\n",
      "          'seductive': 1,\n",
      "          'exposed': 1,\n",
      "          'half': 1,\n",
      "          'hours': 1,\n",
      "          'three': 1,\n",
      "          'decades': 1,\n",
      "          'notorious': 1,\n",
      "          'real': 1,\n",
      "          'events': 1,\n",
      "          'understands': 1,\n",
      "          'chose': 1,\n",
      "          'dangerous': 1,\n",
      "          'paths': 1,\n",
      "          'trading': 1,\n",
      "          'superficial': 1,\n",
      "          'shortlasting': 1,\n",
      "          'glamour': 1,\n",
      "          'prosperity': 1,\n",
      "          'dullness': 1,\n",
      "          'poverty': 1,\n",
      "          'honest': 1,\n",
      "          'citizens': 1,\n",
      "          'break': 1,\n",
      "          'viewers': 1,\n",
      "          'moralistic': 1,\n",
      "          'inhibitions': 1,\n",
      "          'showing': 1,\n",
      "          'revolting': 1,\n",
      "          'depict': 1,\n",
      "          'personal': 1,\n",
      "          'tragedies': 1,\n",
      "          'broken': 1,\n",
      "          'homes': 1,\n",
      "          'human': 1,\n",
      "          'depravity': 1,\n",
      "          'murder': 1,\n",
      "          'uncompromising': 1,\n",
      "          'reality': 1,\n",
      "          'manner': 1,\n",
      "          'amusing': 1,\n",
      "          'nwith': 1,\n",
      "          'use': 1,\n",
      "          'manipulative': 1,\n",
      "          'dialogue': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'narrators': 1,\n",
      "          'commentary': 1,\n",
      "          'standards': 1,\n",
      "          'tarantino': 1,\n",
      "          'era': 1,\n",
      "          'neven': 1,\n",
      "          'dont': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'skills': 1,\n",
      "          'potentially': 1,\n",
      "          'disturbing': 1,\n",
      "          'becomes': 1,\n",
      "          'eye': 1,\n",
      "          'pleasing': 1,\n",
      "          'entertaining': 1,\n",
      "          'admit': 1,\n",
      "          'displays': 1,\n",
      "          'creative': 1,\n",
      "          'nfirst': 1,\n",
      "          'might': 1,\n",
      "          'notice': 1,\n",
      "          'unusual': 1,\n",
      "          'relatively': 1,\n",
      "          'minor': 1,\n",
      "          'subplot': 1,\n",
      "          'prologue': 1,\n",
      "          'nthen': 1,\n",
      "          'single': 1,\n",
      "          'switches': 1,\n",
      "          'second': 1,\n",
      "          'middle': 1,\n",
      "          'switch': 1,\n",
      "          'back': 1,\n",
      "          'shortly': 1,\n",
      "          'multiple': 1,\n",
      "          'points': 1,\n",
      "          'views': 1,\n",
      "          'terms': 1,\n",
      "          'narration': 1,\n",
      "          'various': 1,\n",
      "          'subjective': 1,\n",
      "          'lengthens': 1,\n",
      "          'towards': 1,\n",
      "          'situation': 1,\n",
      "          'nsame': 1,\n",
      "          'comes': 1,\n",
      "          'extremely': 1,\n",
      "          'nnostalgia': 1,\n",
      "          'good': 1,\n",
      "          'old': 1,\n",
      "          'illustrated': 1,\n",
      "          'easylistening': 1,\n",
      "          '1950s': 1,\n",
      "          'pop': 1,\n",
      "          'depression': 1,\n",
      "          'bad': 1,\n",
      "          'find': 1,\n",
      "          'expression': 1,\n",
      "          'neurotic': 1,\n",
      "          'rock': 1,\n",
      "          'late': 1,\n",
      "          '1960s': 1,\n",
      "          '1970s': 1,\n",
      "          'comment': 1,\n",
      "          'almost': 1,\n",
      "          'pastoral': 1,\n",
      "          'easy': 1,\n",
      "          'listening': 1,\n",
      "          'tunes': 1,\n",
      "          'strong': 1,\n",
      "          'contrast': 1,\n",
      "          'nhowever': 1,\n",
      "          'thing': 1,\n",
      "          'associated': 1,\n",
      "          'continuos': 1,\n",
      "          'feature': 1,\n",
      "          'moving': 1,\n",
      "          'rooms': 1,\n",
      "          'interacting': 1,\n",
      "          'dozens': 1,\n",
      "          'hundreds': 1,\n",
      "          'people': 1,\n",
      "          'nsuch': 1,\n",
      "          'require': 1,\n",
      "          'skill': 1,\n",
      "          'patience': 1,\n",
      "          'shootings': 1,\n",
      "          'directors': 1,\n",
      "          'nfragmentary': 1,\n",
      "          'straight': 1,\n",
      "          'bases': 1,\n",
      "          'series': 1,\n",
      "          'loosely': 1,\n",
      "          'vignettes': 1,\n",
      "          'gives': 1,\n",
      "          'interesting': 1,\n",
      "          'opportunity': 1,\n",
      "          'nhe': 1,\n",
      "          'uses': 1,\n",
      "          'experiment': 1,\n",
      "          'successful': 1,\n",
      "          'experiments': 1,\n",
      "          'hilarious': 1,\n",
      "          'day': 1,\n",
      "          'segment': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'nanother': 1,\n",
      "          'essential': 1,\n",
      "          'superb': 1,\n",
      "          'collection': 1,\n",
      "          'acting': 1,\n",
      "          'respectable': 1,\n",
      "          'happen': 1,\n",
      "          'quiet': 1,\n",
      "          'businesslike': 1,\n",
      "          'member': 1,\n",
      "          'trio': 1,\n",
      "          'overshadowed': 1,\n",
      "          'colleagues': 1,\n",
      "          'njoe': 1,\n",
      "          'deserved': 1,\n",
      "          'oscar': 1,\n",
      "          'role': 1,\n",
      "          'psychopath': 1,\n",
      "          'lines': 1,\n",
      "          'including': 1,\n",
      "          'adlibs': 1,\n",
      "          'probably': 1,\n",
      "          'represent': 1,\n",
      "          'nray': 1,\n",
      "          'equally': 1,\n",
      "          'perhaps': 1,\n",
      "          'look': 1,\n",
      "          'nominal': 1,\n",
      "          'hero': 1,\n",
      "          'nliottas': 1,\n",
      "          'looks': 1,\n",
      "          'somewhat': 1,\n",
      "          'hollywoodised': 1,\n",
      "          'glamorous': 1,\n",
      "          'bunch': 1,\n",
      "          'lowlevel': 1,\n",
      "          'street': 1,\n",
      "          'thugs': 1,\n",
      "          'nliotta': 1,\n",
      "          'improves': 1,\n",
      "          'general': 1,\n",
      "          'impression': 1,\n",
      "          'realistic': 1,\n",
      "          'menacing': 1,\n",
      "          'portrayal': 1,\n",
      "          'addiction': 1,\n",
      "          'nlorraine': 1,\n",
      "          'believable': 1,\n",
      "          'descends': 1,\n",
      "          'moral': 1,\n",
      "          'cesspool': 1,\n",
      "          'npaul': 1,\n",
      "          'patriarch': 1,\n",
      "          'mafioso': 1,\n",
      "          'cast': 1,\n",
      "          'chuck': 1,\n",
      "          'low': 1,\n",
      "          'pestering': 1,\n",
      "          'smalltime': 1,\n",
      "          'gangster': 1,\n",
      "          'unknowingly': 1,\n",
      "          'digs': 1,\n",
      "          'grave': 1,\n",
      "          'nas': 1,\n",
      "          'combination': 1,\n",
      "          'clever': 1,\n",
      "          'sociological': 1,\n",
      "          'study': 1,\n",
      "          'innovative': 1,\n",
      "          'filmmaking': 1,\n",
      "          'something': 1,\n",
      "          'could': 1,\n",
      "          'art': 1,\n",
      "          'entertainment': 1,\n",
      "          'time': 1,\n",
      "          'nbecause': 1,\n",
      "          'achievement': 1,\n",
      "          'filmmakers': 1,\n",
      "          'cinematic': 1,\n",
      "          'gem': 1,\n",
      "          'deserves': 1,\n",
      "          'rightful': 1,\n",
      "          'place': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'blair': 14,\n",
      "          'witch': 14,\n",
      "          'film': 12,\n",
      "          'project': 8,\n",
      "          'nthe': 8,\n",
      "          'first': 8,\n",
      "          'sequel': 5,\n",
      "          'movie': 5,\n",
      "          'woods': 5,\n",
      "          'book': 4,\n",
      "          'different': 4,\n",
      "          'story': 4,\n",
      "          'nin': 4,\n",
      "          'original': 4,\n",
      "          'one': 3,\n",
      "          'nits': 3,\n",
      "          'nafter': 3,\n",
      "          'get': 3,\n",
      "          'hysteria': 3,\n",
      "          'strange': 3,\n",
      "          'lost': 3,\n",
      "          'nbut': 3,\n",
      "          'simply': 3,\n",
      "          'n': 3,\n",
      "          'incredibly': 3,\n",
      "          'shadows': 3,\n",
      "          'less': 3,\n",
      "          'doesnt': 3,\n",
      "          'completely': 2,\n",
      "          'even': 2,\n",
      "          'horror': 2,\n",
      "          'success': 2,\n",
      "          'practically': 2,\n",
      "          'small': 2,\n",
      "          'town': 2,\n",
      "          'business': 2,\n",
      "          'like': 2,\n",
      "          'nthere': 2,\n",
      "          'people': 2,\n",
      "          'back': 2,\n",
      "          'nthis': 2,\n",
      "          'experience': 2,\n",
      "          'nthey': 2,\n",
      "          'time': 2,\n",
      "          'nightmares': 2,\n",
      "          'soon': 2,\n",
      "          'berlinger': 2,\n",
      "          'background': 2,\n",
      "          'opening': 2,\n",
      "          'similar': 2,\n",
      "          'ground': 2,\n",
      "          'makes': 2,\n",
      "          'way': 2,\n",
      "          'important': 2,\n",
      "          'acting': 2,\n",
      "          'cinematography': 2,\n",
      "          'look': 2,\n",
      "          'nand': 2,\n",
      "          'obviously': 2,\n",
      "          'predecessor': 2,\n",
      "          'imagination': 2,\n",
      "          'effect': 2,\n",
      "          'artistic': 2,\n",
      "          'bad': 2,\n",
      "          'certainly': 2,\n",
      "          'films': 2,\n",
      "          'perhaps': 1,\n",
      "          'kind': 1,\n",
      "          'unique': 1,\n",
      "          'played': 1,\n",
      "          'merit': 1,\n",
      "          'managing': 1,\n",
      "          'scare': 1,\n",
      "          'experienced': 1,\n",
      "          'fans': 1,\n",
      "          'senses': 1,\n",
      "          'made': 1,\n",
      "          'inevitable': 1,\n",
      "          'suspect': 1,\n",
      "          'anyone': 1,\n",
      "          'much': 1,\n",
      "          'wanted': 1,\n",
      "          'release': 1,\n",
      "          'tourists': 1,\n",
      "          'invaded': 1,\n",
      "          'burkettsville': 1,\n",
      "          'order': 1,\n",
      "          'glimpse': 1,\n",
      "          'nlocals': 1,\n",
      "          'turned': 1,\n",
      "          'mass': 1,\n",
      "          'great': 1,\n",
      "          'opportunity': 1,\n",
      "          'selling': 1,\n",
      "          'twigsculptures': 1,\n",
      "          'stones': 1,\n",
      "          'dirt': 1,\n",
      "          'exasperated': 1,\n",
      "          'local': 1,\n",
      "          'sheriff': 1,\n",
      "          'patrols': 1,\n",
      "          'bullhorn': 1,\n",
      "          'shouting': 1,\n",
      "          'go': 1,\n",
      "          'home': 1,\n",
      "          'goddamned': 1,\n",
      "          'njeff': 1,\n",
      "          'used': 1,\n",
      "          'sudden': 1,\n",
      "          'popularity': 1,\n",
      "          'advantage': 1,\n",
      "          'got': 1,\n",
      "          'released': 1,\n",
      "          'mental': 1,\n",
      "          'institution': 1,\n",
      "          'created': 1,\n",
      "          'mobile': 1,\n",
      "          'attracts': 1,\n",
      "          'thousands': 1,\n",
      "          'customers': 1,\n",
      "          'internet': 1,\n",
      "          'nas': 1,\n",
      "          'starts': 1,\n",
      "          'leading': 1,\n",
      "          'groups': 1,\n",
      "          'hunt': 1,\n",
      "          'namong': 1,\n",
      "          'five': 1,\n",
      "          'strangers': 1,\n",
      "          'stephen': 1,\n",
      "          'girlfriend': 1,\n",
      "          'pregnant': 1,\n",
      "          'tristen': 1,\n",
      "          'writing': 1,\n",
      "          'caused': 1,\n",
      "          'called': 1,\n",
      "          'history': 1,\n",
      "          'kim': 1,\n",
      "          'dresses': 1,\n",
      "          'black': 1,\n",
      "          'psychic': 1,\n",
      "          'powers': 1,\n",
      "          'last': 1,\n",
      "          'member': 1,\n",
      "          'crew': 1,\n",
      "          'erica': 1,\n",
      "          'young': 1,\n",
      "          'beautiful': 1,\n",
      "          'witchwannabe': 1,\n",
      "          'constantly': 1,\n",
      "          'quotes': 1,\n",
      "          'wiccan': 1,\n",
      "          'lore': 1,\n",
      "          'saying': 1,\n",
      "          'rule': 1,\n",
      "          'wicca': 1,\n",
      "          'harm': 1,\n",
      "          'whatever': 1,\n",
      "          'come': 1,\n",
      "          'threefold': 1,\n",
      "          'group': 1,\n",
      "          'plunges': 1,\n",
      "          'begin': 1,\n",
      "          'argue': 1,\n",
      "          'approaches': 1,\n",
      "          'non': 1,\n",
      "          'night': 1,\n",
      "          'decide': 1,\n",
      "          'spend': 1,\n",
      "          'stars': 1,\n",
      "          'amidst': 1,\n",
      "          'ruins': 1,\n",
      "          'parrs': 1,\n",
      "          'abandoned': 1,\n",
      "          'house': 1,\n",
      "          'things': 1,\n",
      "          'start': 1,\n",
      "          'happening': 1,\n",
      "          'nwhen': 1,\n",
      "          'wake': 1,\n",
      "          'equipment': 1,\n",
      "          'gone': 1,\n",
      "          'tapes': 1,\n",
      "          'remain': 1,\n",
      "          'discover': 1,\n",
      "          'markings': 1,\n",
      "          'bodies': 1,\n",
      "          'somehow': 1,\n",
      "          'loops': 1,\n",
      "          'uncontrollably': 1,\n",
      "          'forth': 1,\n",
      "          'haunted': 1,\n",
      "          'hallucinations': 1,\n",
      "          'horrible': 1,\n",
      "          'see': 1,\n",
      "          'difference': 1,\n",
      "          'dreams': 1,\n",
      "          'reality': 1,\n",
      "          'thing': 1,\n",
      "          'sure': 1,\n",
      "          'brought': 1,\n",
      "          'something': 1,\n",
      "          'someone': 1,\n",
      "          'ndocumentary': 1,\n",
      "          'director': 1,\n",
      "          'joe': 1,\n",
      "          'paradice': 1,\n",
      "          'helms': 1,\n",
      "          '2': 1,\n",
      "          'leaving': 1,\n",
      "          'creators': 1,\n",
      "          'dan': 1,\n",
      "          'myrick': 1,\n",
      "          'ed': 1,\n",
      "          'sanches': 1,\n",
      "          'scenesthe': 1,\n",
      "          'documentary': 1,\n",
      "          'showing': 1,\n",
      "          'townspeople': 1,\n",
      "          'affected': 1,\n",
      "          'promising': 1,\n",
      "          'approach': 1,\n",
      "          'instead': 1,\n",
      "          'trying': 1,\n",
      "          'cover': 1,\n",
      "          'goes': 1,\n",
      "          'outside': 1,\n",
      "          'stand': 1,\n",
      "          'gets': 1,\n",
      "          'confused': 1,\n",
      "          'sidetracked': 1,\n",
      "          'never': 1,\n",
      "          'resolved': 1,\n",
      "          'ends': 1,\n",
      "          'anticlimaxic': 1,\n",
      "          'epilogue': 1,\n",
      "          'typical': 1,\n",
      "          'hollywood': 1,\n",
      "          'nmore': 1,\n",
      "          'money': 1,\n",
      "          'spent': 1,\n",
      "          'worked': 1,\n",
      "          'doomed': 1,\n",
      "          'fail': 1,\n",
      "          'suspense': 1,\n",
      "          'could': 1,\n",
      "          'repeated': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'situations': 1,\n",
      "          'quantity': 1,\n",
      "          'quality': 1,\n",
      "          'profit': 1,\n",
      "          'artistical': 1,\n",
      "          'values': 1,\n",
      "          'nfrom': 1,\n",
      "          'scenes': 1,\n",
      "          'camera': 1,\n",
      "          'gracefully': 1,\n",
      "          'panes': 1,\n",
      "          'bloodyred': 1,\n",
      "          'forest': 1,\n",
      "          'carter': 1,\n",
      "          'burwells': 1,\n",
      "          'john': 1,\n",
      "          'malkovich': 1,\n",
      "          'fargo': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'realize': 1,\n",
      "          'exception': 1,\n",
      "          'title': 1,\n",
      "          'absolutely': 1,\n",
      "          'nothing': 1,\n",
      "          'nwas': 1,\n",
      "          'filmed': 1,\n",
      "          'handheld': 1,\n",
      "          'videocameras': 1,\n",
      "          'nfeatured': 1,\n",
      "          'mostly': 1,\n",
      "          'based': 1,\n",
      "          'improvisation': 1,\n",
      "          'technical': 1,\n",
      "          'aspect': 1,\n",
      "          'close': 1,\n",
      "          'perfection': 1,\n",
      "          'creating': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nwith': 1,\n",
      "          'graceful': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'flashy': 1,\n",
      "          'editing': 1,\n",
      "          'polished': 1,\n",
      "          'impossible': 1,\n",
      "          'associate': 1,\n",
      "          'installment': 1,\n",
      "          'though': 1,\n",
      "          'directs': 1,\n",
      "          'energy': 1,\n",
      "          'pace': 1,\n",
      "          'adrenaline': 1,\n",
      "          'rush': 1,\n",
      "          'body': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'misunderstood': 1,\n",
      "          'nature': 1,\n",
      "          'key': 1,\n",
      "          'simplicity': 1,\n",
      "          'simple': 1,\n",
      "          'nthat': 1,\n",
      "          'allowed': 1,\n",
      "          'audience': 1,\n",
      "          'fill': 1,\n",
      "          'gaps': 1,\n",
      "          'empty': 1,\n",
      "          'screen': 1,\n",
      "          'projected': 1,\n",
      "          'frightening': 1,\n",
      "          'powerful': 1,\n",
      "          'lasting': 1,\n",
      "          'entir': 1,\n",
      "          'e': 1,\n",
      "          'everyone': 1,\n",
      "          'feels': 1,\n",
      "          'controlled': 1,\n",
      "          'restrict': 1,\n",
      "          'nhere': 1,\n",
      "          'little': 1,\n",
      "          'left': 1,\n",
      "          'complex': 1,\n",
      "          'clever': 1,\n",
      "          'screenwriters': 1,\n",
      "          'conclusion': 1,\n",
      "          'satisfied': 1,\n",
      "          'talent': 1,\n",
      "          'originality': 1,\n",
      "          'nit': 1,\n",
      "          'resorts': 1,\n",
      "          'fancy': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'create': 1,\n",
      "          'right': 1,\n",
      "          'always': 1,\n",
      "          'succeed': 1,\n",
      "          'importantly': 1,\n",
      "          'stands': 1,\n",
      "          'almost': 1,\n",
      "          'connection': 1,\n",
      "          'allow': 1,\n",
      "          'destroy': 1,\n",
      "          'end': 1,\n",
      "          'cant': 1,\n",
      "          'call': 1,\n",
      "          'effort': 1,\n",
      "          'scary': 1,\n",
      "          'fact': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'might': 1,\n",
      "          'cross': 1,\n",
      "          'scream': 1,\n",
      "          'element': 1,\n",
      "          'remains': 1,\n",
      "          'constant': 1,\n",
      "          'two': 1,\n",
      "          'solid': 1,\n",
      "          'jeffrey': 1,\n",
      "          'donovan': 1,\n",
      "          'tristine': 1,\n",
      "          'skyler': 1,\n",
      "          'mentioned': 1,\n",
      "          'incredible': 1,\n",
      "          'sense': 1,\n",
      "          'surrealism': 1,\n",
      "          'common': 1,\n",
      "          'knowledge': 1,\n",
      "          'exceptions': 1,\n",
      "          'every': 1,\n",
      "          'worse': 1,\n",
      "          'worth': 1,\n",
      "          'making': 1,\n",
      "          'nto': 1,\n",
      "          'seemed': 1,\n",
      "          'completed': 1,\n",
      "          'limits': 1,\n",
      "          'commercial': 1,\n",
      "          'assured': 1,\n",
      "          'already': 1,\n",
      "          'forward': 1,\n",
      "          '3': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'city': 8,\n",
      "          'nthe': 8,\n",
      "          'john': 6,\n",
      "          'also': 6,\n",
      "          'dark': 5,\n",
      "          'story': 5,\n",
      "          'films': 4,\n",
      "          'human': 4,\n",
      "          'old': 4,\n",
      "          'man': 4,\n",
      "          'look': 4,\n",
      "          'idea': 4,\n",
      "          'appears': 4,\n",
      "          'world': 4,\n",
      "          'never': 4,\n",
      "          'movies': 3,\n",
      "          'might': 3,\n",
      "          'much': 3,\n",
      "          'memory': 3,\n",
      "          'made': 3,\n",
      "          'could': 3,\n",
      "          'way': 3,\n",
      "          'time': 3,\n",
      "          'dont': 3,\n",
      "          'begin': 3,\n",
      "          'seemingly': 3,\n",
      "          'fact': 3,\n",
      "          'mysterious': 3,\n",
      "          'know': 3,\n",
      "          'either': 3,\n",
      "          'nbut': 3,\n",
      "          'schreber': 3,\n",
      "          'emma': 3,\n",
      "          'like': 3,\n",
      "          'reasons': 3,\n",
      "          'makes': 3,\n",
      "          'able': 3,\n",
      "          'real': 3,\n",
      "          'aliens': 3,\n",
      "          'things': 2,\n",
      "          'start': 2,\n",
      "          'life': 2,\n",
      "          'nwith': 2,\n",
      "          'nearly': 2,\n",
      "          'theme': 2,\n",
      "          'absolutely': 2,\n",
      "          'setting': 2,\n",
      "          'ntheres': 2,\n",
      "          'game': 2,\n",
      "          'premise': 2,\n",
      "          'unlike': 2,\n",
      "          'nwe': 2,\n",
      "          'actually': 2,\n",
      "          'whole': 2,\n",
      "          'murdoch': 2,\n",
      "          'whats': 2,\n",
      "          'going': 2,\n",
      "          'right': 2,\n",
      "          'goes': 2,\n",
      "          'feeling': 2,\n",
      "          'nthis': 2,\n",
      "          'interesting': 2,\n",
      "          'follow': 2,\n",
      "          'since': 2,\n",
      "          'nin': 2,\n",
      "          'plot': 2,\n",
      "          'killer': 2,\n",
      "          'hurt': 2,\n",
      "          'characters': 2,\n",
      "          'dr': 2,\n",
      "          'connelly': 2,\n",
      "          'throughout': 2,\n",
      "          'nhe': 2,\n",
      "          'complex': 2,\n",
      "          'scenes': 2,\n",
      "          'us': 2,\n",
      "          'see': 2,\n",
      "          'every': 2,\n",
      "          'nhowever': 2,\n",
      "          'come': 2,\n",
      "          'humans': 2,\n",
      "          'somehow': 2,\n",
      "          'night': 2,\n",
      "          'one': 2,\n",
      "          'nfor': 2,\n",
      "          'process': 2,\n",
      "          'change': 2,\n",
      "          'proyas': 2,\n",
      "          'consistently': 2,\n",
      "          'within': 2,\n",
      "          'yet': 2,\n",
      "          'expected': 2,\n",
      "          'seems': 2,\n",
      "          'seen': 1,\n",
      "          'may': 1,\n",
      "          '31': 1,\n",
      "          '1999': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'rented': 1,\n",
      "          'none': 1,\n",
      "          'best': 1,\n",
      "          'make': 1,\n",
      "          'really': 1,\n",
      "          'wonder': 1,\n",
      "          'analyze': 1,\n",
      "          'everyday': 1,\n",
      "          'thought': 1,\n",
      "          'otherwise': 1,\n",
      "          'secondary': 1,\n",
      "          'issue': 1,\n",
      "          'get': 1,\n",
      "          'entire': 1,\n",
      "          'committed': 1,\n",
      "          'philosophizing': 1,\n",
      "          'theorizing': 1,\n",
      "          'defines': 1,\n",
      "          'poignant': 1,\n",
      "          'beautifullyconstructed': 1,\n",
      "          'kind': 1,\n",
      "          'happen': 1,\n",
      "          'movie': 1,\n",
      "          'roleplaying': 1,\n",
      "          'computer': 1,\n",
      "          'called': 1,\n",
      "          'ja': 1,\n",
      "          'v': 1,\n",
      "          'wherein': 1,\n",
      "          'player': 1,\n",
      "          'takes': 1,\n",
      "          'role': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'got': 1,\n",
      "          'goal': 1,\n",
      "          'gather': 1,\n",
      "          'many': 1,\n",
      "          'clues': 1,\n",
      "          'possible': 1,\n",
      "          'figure': 1,\n",
      "          'along': 1,\n",
      "          'overcome': 1,\n",
      "          'conflict': 1,\n",
      "          'control': 1,\n",
      "          'protagonist': 1,\n",
      "          'meeting': 1,\n",
      "          'ordinary': 1,\n",
      "          'living': 1,\n",
      "          'extremely': 1,\n",
      "          'dirty': 1,\n",
      "          'reality': 1,\n",
      "          'isnt': 1,\n",
      "          'neogothic': 1,\n",
      "          'la': 1,\n",
      "          'batman': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'fully': 1,\n",
      "          'developed': 1,\n",
      "          'almost': 1,\n",
      "          'different': 1,\n",
      "          'genre': 1,\n",
      "          'completely': 1,\n",
      "          'nlater': 1,\n",
      "          'learn': 1,\n",
      "          'name': 1,\n",
      "          'sewell': 1,\n",
      "          'something': 1,\n",
      "          'theres': 1,\n",
      "          'dead': 1,\n",
      "          'body': 1,\n",
      "          'corner': 1,\n",
      "          'enhance': 1,\n",
      "          'paranoia': 1,\n",
      "          'hurried': 1,\n",
      "          'call': 1,\n",
      "          'telling': 1,\n",
      "          'leave': 1,\n",
      "          'immediately': 1,\n",
      "          'chilling': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'alone': 1,\n",
      "          'long': 1,\n",
      "          'define': 1,\n",
      "          'bizarre': 1,\n",
      "          'horrific': 1,\n",
      "          'tone': 1,\n",
      "          'doesnt': 1,\n",
      "          'hes': 1,\n",
      "          'viewers': 1,\n",
      "          'sympathize': 1,\n",
      "          'identify': 1,\n",
      "          'stories': 1,\n",
      "          'impossible': 1,\n",
      "          'history': 1,\n",
      "          'character': 1,\n",
      "          'feelings': 1,\n",
      "          'values': 1,\n",
      "          'morals': 1,\n",
      "          'etc': 1,\n",
      "          'weve': 1,\n",
      "          'observed': 1,\n",
      "          'case': 1,\n",
      "          'total': 1,\n",
      "          'amnesia': 1,\n",
      "          'excellent': 1,\n",
      "          'tool': 1,\n",
      "          'towards': 1,\n",
      "          'characterization': 1,\n",
      "          'developing': 1,\n",
      "          'mood': 1,\n",
      "          'outlining': 1,\n",
      "          'neventually': 1,\n",
      "          'semblance': 1,\n",
      "          'begins': 1,\n",
      "          'unfold': 1,\n",
      "          'serial': 1,\n",
      "          'wanted': 1,\n",
      "          'police': 1,\n",
      "          'met': 1,\n",
      "          'inspector': 1,\n",
      "          'frank': 1,\n",
      "          'bumstead': 1,\n",
      "          'quiet': 1,\n",
      "          'unemotional': 1,\n",
      "          'softspoken': 1,\n",
      "          'deadpan': 1,\n",
      "          'trail': 1,\n",
      "          'ntwo': 1,\n",
      "          'important': 1,\n",
      "          'introduced': 1,\n",
      "          'daniel': 1,\n",
      "          'p': 1,\n",
      "          'sutherland': 1,\n",
      "          'neurotic': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'claims': 1,\n",
      "          'johns': 1,\n",
      "          'doctor': 1,\n",
      "          'jazz': 1,\n",
      "          'singer': 1,\n",
      "          'dolled': 1,\n",
      "          'caraciture': 1,\n",
      "          'dick': 1,\n",
      "          'tracy': 1,\n",
      "          'serials': 1,\n",
      "          'given': 1,\n",
      "          'leading': 1,\n",
      "          'lady': 1,\n",
      "          'filmnoir': 1,\n",
      "          'nit': 1,\n",
      "          'contacted': 1,\n",
      "          'continually': 1,\n",
      "          'revealed': 1,\n",
      "          'course': 1,\n",
      "          'contacts': 1,\n",
      "          'helps': 1,\n",
      "          'reveal': 1,\n",
      "          'back': 1,\n",
      "          'nothing': 1,\n",
      "          'fascinating': 1,\n",
      "          'continual': 1,\n",
      "          'confusion': 1,\n",
      "          'vertigo': 1,\n",
      "          'neverything': 1,\n",
      "          'filmmakers': 1,\n",
      "          'want': 1,\n",
      "          'significance': 1,\n",
      "          'considering': 1,\n",
      "          'intricate': 1,\n",
      "          'detail': 1,\n",
      "          'single': 1,\n",
      "          'shot': 1,\n",
      "          'lighting': 1,\n",
      "          'art': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'direction': 1,\n",
      "          'overall': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'seem': 1,\n",
      "          'afford': 1,\n",
      "          'gratuities': 1,\n",
      "          'keeping': 1,\n",
      "          'reaching': 1,\n",
      "          'maximum': 1,\n",
      "          'potential': 1,\n",
      "          'nby': 1,\n",
      "          'continuing': 1,\n",
      "          'wanders': 1,\n",
      "          'around': 1,\n",
      "          'strange': 1,\n",
      "          'place': 1,\n",
      "          'realize': 1,\n",
      "          'hoax': 1,\n",
      "          'neveryone': 1,\n",
      "          'subject': 1,\n",
      "          'experiment': 1,\n",
      "          'conducted': 1,\n",
      "          'race': 1,\n",
      "          'understand': 1,\n",
      "          'tick': 1,\n",
      "          'efforts': 1,\n",
      "          'save': 1,\n",
      "          'extinction': 1,\n",
      "          'tagline': 1,\n",
      "          'says': 1,\n",
      "          'last': 1,\n",
      "          'went': 1,\n",
      "          'clearly': 1,\n",
      "          'explained': 1,\n",
      "          'possesses': 1,\n",
      "          'telekinetic': 1,\n",
      "          'powers': 1,\n",
      "          'pretty': 1,\n",
      "          'whatever': 1,\n",
      "          'mind': 1,\n",
      "          'conceive': 1,\n",
      "          'known': 1,\n",
      "          'tuning': 1,\n",
      "          'bald': 1,\n",
      "          'men': 1,\n",
      "          'pasty': 1,\n",
      "          'skin': 1,\n",
      "          'possess': 1,\n",
      "          'power': 1,\n",
      "          'en': 1,\n",
      "          'masse': 1,\n",
      "          'use': 1,\n",
      "          'midnight': 1,\n",
      "          'nat': 1,\n",
      "          'fall': 1,\n",
      "          'asleep': 1,\n",
      "          'changes': 1,\n",
      "          'awake': 1,\n",
      "          'continue': 1,\n",
      "          'left': 1,\n",
      "          'new': 1,\n",
      "          'certainly': 1,\n",
      "          'director': 1,\n",
      "          'coscreenwriter': 1,\n",
      "          'alex': 1,\n",
      "          'keep': 1,\n",
      "          'regard': 1,\n",
      "          'provide': 1,\n",
      "          'explanations': 1,\n",
      "          'assistant': 1,\n",
      "          'strangers': 1,\n",
      "          'synthesize': 1,\n",
      "          'chemical': 1,\n",
      "          'form': 1,\n",
      "          'mix': 1,\n",
      "          'match': 1,\n",
      "          'memories': 1,\n",
      "          'citys': 1,\n",
      "          'population': 1,\n",
      "          'creates': 1,\n",
      "          'good': 1,\n",
      "          'deal': 1,\n",
      "          'deep': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'philosophies': 1,\n",
      "          'applied': 1,\n",
      "          'errs': 1,\n",
      "          'playing': 1,\n",
      "          'versus': 1,\n",
      "          'heart': 1,\n",
      "          'person': 1,\n",
      "          'main': 1,\n",
      "          'closely': 1,\n",
      "          'intertwined': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'happened': 1,\n",
      "          'go': 1,\n",
      "          'emotions': 1,\n",
      "          'comes': 1,\n",
      "          'distant': 1,\n",
      "          'static': 1,\n",
      "          'cold': 1,\n",
      "          'mediocre': 1,\n",
      "          'performances': 1,\n",
      "          'help': 1,\n",
      "          'example': 1,\n",
      "          'realizes': 1,\n",
      "          'probably': 1,\n",
      "          'wife': 1,\n",
      "          'feel': 1,\n",
      "          'emotional': 1,\n",
      "          'bond': 1,\n",
      "          'crucial': 1,\n",
      "          'believe': 1,\n",
      "          'genuine': 1,\n",
      "          'love': 1,\n",
      "          'part': 1,\n",
      "          'climax': 1,\n",
      "          'ending': 1,\n",
      "          'nand': 1,\n",
      "          'thats': 1,\n",
      "          'inferring': 1,\n",
      "          'quite': 1,\n",
      "          'manages': 1,\n",
      "          'convey': 1,\n",
      "          'fullest': 1,\n",
      "          'sense': 1,\n",
      "          'nironically': 1,\n",
      "          'first': 1,\n",
      "          'crow': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'similar': 1,\n",
      "          'struggling': 1,\n",
      "          'find': 1,\n",
      "          'hope': 1,\n",
      "          'spirit': 1,\n",
      "          'identical': 1,\n",
      "          'twisted': 1,\n",
      "          'messenger': 1,\n",
      "          'mistaken': 1,\n",
      "          'message': 1,\n",
      "          'nstill': 1,\n",
      "          'means': 1,\n",
      "          'bad': 1,\n",
      "          'entertaining': 1,\n",
      "          'enjoyable': 1,\n",
      "          'lot': 1,\n",
      "          'notably': 1,\n",
      "          'sheer': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'accounts': 1,\n",
      "          'least': 1,\n",
      "          'half': 1,\n",
      "          'tell': 1,\n",
      "          'original': 1,\n",
      "          'hollywood': 1,\n",
      "          'years': 1,\n",
      "          'ndark': 1,\n",
      "          'escape': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dogma': 5,\n",
      "          'last': 4,\n",
      "          'dogmas': 4,\n",
      "          'smith': 4,\n",
      "          'nits': 4,\n",
      "          'one': 4,\n",
      "          'films': 3,\n",
      "          'point': 3,\n",
      "          'bartleby': 3,\n",
      "          'n': 3,\n",
      "          'much': 3,\n",
      "          'nothing': 2,\n",
      "          'still': 2,\n",
      "          'form': 2,\n",
      "          'bethany': 2,\n",
      "          'faith': 2,\n",
      "          'heaven': 2,\n",
      "          'makes': 2,\n",
      "          'god': 2,\n",
      "          'two': 2,\n",
      "          'new': 2,\n",
      "          'would': 2,\n",
      "          'heard': 2,\n",
      "          'silent': 2,\n",
      "          'bob': 2,\n",
      "          'smiths': 2,\n",
      "          'nat': 2,\n",
      "          'rock': 2,\n",
      "          'damon': 2,\n",
      "          'affleck': 2,\n",
      "          'ever': 2,\n",
      "          'way': 2,\n",
      "          'sins': 2,\n",
      "          'director': 2,\n",
      "          'least': 2,\n",
      "          'ndogma': 2,\n",
      "          'big': 2,\n",
      "          'person': 2,\n",
      "          'time': 2,\n",
      "          'enough': 2,\n",
      "          'feel': 2,\n",
      "          'movies': 2,\n",
      "          'nsmith': 2,\n",
      "          'also': 2,\n",
      "          'ni': 2,\n",
      "          'disclaimer': 2,\n",
      "          'temptation': 2,\n",
      "          'scorseses': 2,\n",
      "          'thats': 2,\n",
      "          'catholic': 2,\n",
      "          'religion': 2,\n",
      "          'im': 2,\n",
      "          'linda': 1,\n",
      "          'fiorentino': 1,\n",
      "          'disappeared': 1,\n",
      "          'radar': 1,\n",
      "          'deservedly': 1,\n",
      "          'heralded': 1,\n",
      "          'turn': 1,\n",
      "          'cable': 1,\n",
      "          'pic': 1,\n",
      "          'seduction': 1,\n",
      "          'cast': 1,\n",
      "          'lead': 1,\n",
      "          'short': 1,\n",
      "          'inexplicable': 1,\n",
      "          'nshes': 1,\n",
      "          'fine': 1,\n",
      "          'abortion': 1,\n",
      "          'clinic': 1,\n",
      "          'worker': 1,\n",
      "          'whos': 1,\n",
      "          'lost': 1,\n",
      "          'none': 1,\n",
      "          'night': 1,\n",
      "          'visitor': 1,\n",
      "          'fiery': 1,\n",
      "          'entrance': 1,\n",
      "          'bethanys': 1,\n",
      "          'bedroom': 1,\n",
      "          'nhe': 1,\n",
      "          'metatron': 1,\n",
      "          'alan': 1,\n",
      "          'rickman': 1,\n",
      "          'voice': 1,\n",
      "          'needs': 1,\n",
      "          'help': 1,\n",
      "          'must': 1,\n",
      "          'stop': 1,\n",
      "          'fallen': 1,\n",
      "          'angels': 1,\n",
      "          'entering': 1,\n",
      "          'jersey': 1,\n",
      "          'churchthe': 1,\n",
      "          'fate': 1,\n",
      "          'universe': 1,\n",
      "          'depends': 1,\n",
      "          'ngod': 1,\n",
      "          'himherself': 1,\n",
      "          'heshe': 1,\n",
      "          'missing': 1,\n",
      "          'taken': 1,\n",
      "          'human': 1,\n",
      "          'somewhere': 1,\n",
      "          'earth': 1,\n",
      "          'never': 1,\n",
      "          'nbethany': 1,\n",
      "          'joined': 1,\n",
      "          'road': 1,\n",
      "          'trip': 1,\n",
      "          'garden': 1,\n",
      "          'state': 1,\n",
      "          'prophets': 1,\n",
      "          'jay': 1,\n",
      "          'jason': 1,\n",
      "          'mewes': 1,\n",
      "          'kevin': 1,\n",
      "          'doubleduty': 1,\n",
      "          'slacker': 1,\n",
      "          'minstrels': 1,\n",
      "          'appeared': 1,\n",
      "          'thus': 1,\n",
      "          'far': 1,\n",
      "          'drops': 1,\n",
      "          'naked': 1,\n",
      "          'sky': 1,\n",
      "          'rufus': 1,\n",
      "          'undocumented': 1,\n",
      "          'black': 1,\n",
      "          'thirteenth': 1,\n",
      "          'apostle': 1,\n",
      "          'offers': 1,\n",
      "          'assistance': 1,\n",
      "          'divine': 1,\n",
      "          'stripper': 1,\n",
      "          'serendipity': 1,\n",
      "          'salma': 1,\n",
      "          'hayek': 1,\n",
      "          'wild': 1,\n",
      "          'ride': 1,\n",
      "          'ntheyre': 1,\n",
      "          'pursuit': 1,\n",
      "          'loki': 1,\n",
      "          'respectivelythis': 1,\n",
      "          'probably': 1,\n",
      "          'sharpest': 1,\n",
      "          'either': 1,\n",
      "          'banished': 1,\n",
      "          'wisconsin': 1,\n",
      "          'discovered': 1,\n",
      "          'dogmatic': 1,\n",
      "          'loophole': 1,\n",
      "          'enable': 1,\n",
      "          'return': 1,\n",
      "          'nloki': 1,\n",
      "          'decides': 1,\n",
      "          'wreak': 1,\n",
      "          'havoc': 1,\n",
      "          'along': 1,\n",
      "          'knowledge': 1,\n",
      "          'absolved': 1,\n",
      "          'pearly': 1,\n",
      "          'gates': 1,\n",
      "          'terrorizes': 1,\n",
      "          'boardroom': 1,\n",
      "          'full': 1,\n",
      "          'suits': 1,\n",
      "          'angry': 1,\n",
      "          'combination': 1,\n",
      "          'words': 1,\n",
      "          'bullets': 1,\n",
      "          'nasty': 1,\n",
      "          'guiltily': 1,\n",
      "          'enjoyable': 1,\n",
      "          'little': 1,\n",
      "          'scene': 1,\n",
      "          'asks': 1,\n",
      "          'corrupt': 1,\n",
      "          'nwings': 1,\n",
      "          'desire': 1,\n",
      "          'aint': 1,\n",
      "          'nsince': 1,\n",
      "          'debuting': 1,\n",
      "          'clerks': 1,\n",
      "          'grown': 1,\n",
      "          'particularly': 1,\n",
      "          'terms': 1,\n",
      "          'working': 1,\n",
      "          'actors': 1,\n",
      "          'chris': 1,\n",
      "          'weak': 1,\n",
      "          'linkbetween': 1,\n",
      "          'jokes': 1,\n",
      "          'hes': 1,\n",
      "          'wooden': 1,\n",
      "          'nhis': 1,\n",
      "          'nofrills': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'hasnt': 1,\n",
      "          'changed': 1,\n",
      "          'years': 1,\n",
      "          'though': 1,\n",
      "          'widescreen': 1,\n",
      "          'compositions': 1,\n",
      "          'blockbuster': 1,\n",
      "          'affectations': 1,\n",
      "          'writinghis': 1,\n",
      "          'characters': 1,\n",
      "          'sit': 1,\n",
      "          'around': 1,\n",
      "          'delivering': 1,\n",
      "          'caustic': 1,\n",
      "          'hilarious': 1,\n",
      "          'speech': 1,\n",
      "          'another': 1,\n",
      "          'chips': 1,\n",
      "          'away': 1,\n",
      "          'religious': 1,\n",
      "          'issuesnamely': 1,\n",
      "          'hypocrisy': 1,\n",
      "          'accompanies': 1,\n",
      "          'organized': 1,\n",
      "          'system': 1,\n",
      "          'beliefseloquently': 1,\n",
      "          'articulately': 1,\n",
      "          'monologues': 1,\n",
      "          'sound': 1,\n",
      "          'like': 1,\n",
      "          'blatant': 1,\n",
      "          'exposition': 1,\n",
      "          'nas': 1,\n",
      "          'well': 1,\n",
      "          'verbal': 1,\n",
      "          'introduction': 1,\n",
      "          'seems': 1,\n",
      "          'take': 1,\n",
      "          'forever': 1,\n",
      "          'nany': 1,\n",
      "          'movie': 1,\n",
      "          'weighty': 1,\n",
      "          'talk': 1,\n",
      "          'hard': 1,\n",
      "          'maintaining': 1,\n",
      "          'momentum': 1,\n",
      "          'hurlyburly': 1,\n",
      "          'anyone': 1,\n",
      "          'eventually': 1,\n",
      "          'pacing': 1,\n",
      "          'goes': 1,\n",
      "          'slack': 1,\n",
      "          'na': 1,\n",
      "          'long': 1,\n",
      "          'diatribe': 1,\n",
      "          'late': 1,\n",
      "          'game': 1,\n",
      "          'laments': 1,\n",
      "          'destiny': 1,\n",
      "          'celestial': 1,\n",
      "          'beings': 1,\n",
      "          'comes': 1,\n",
      "          'weve': 1,\n",
      "          'nbecause': 1,\n",
      "          'change': 1,\n",
      "          'heart': 1,\n",
      "          'initially': 1,\n",
      "          'good': 1,\n",
      "          'cop': 1,\n",
      "          'lokis': 1,\n",
      "          'bad': 1,\n",
      "          'drives': 1,\n",
      "          'climax': 1,\n",
      "          'said': 1,\n",
      "          'rant': 1,\n",
      "          'given': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'screen': 1,\n",
      "          'nsure': 1,\n",
      "          'deserved': 1,\n",
      "          'moment': 1,\n",
      "          'steals': 1,\n",
      "          'scenes': 1,\n",
      "          'together': 1,\n",
      "          'prior': 1,\n",
      "          'ultimately': 1,\n",
      "          'film': 1,\n",
      "          'us': 1,\n",
      "          'bloated': 1,\n",
      "          'nlike': 1,\n",
      "          'tarantino': 1,\n",
      "          'videoage': 1,\n",
      "          'sponge': 1,\n",
      "          'became': 1,\n",
      "          'samplemad': 1,\n",
      "          'indie': 1,\n",
      "          'filmmaker': 1,\n",
      "          'pays': 1,\n",
      "          'welcome': 1,\n",
      "          'homage': 1,\n",
      "          'eclectic': 1,\n",
      "          'batch': 1,\n",
      "          'including': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'crusade': 1,\n",
      "          'best': 1,\n",
      "          'harrison': 1,\n",
      "          'ford': 1,\n",
      "          'weird': 1,\n",
      "          'sciencea': 1,\n",
      "          'shit': 1,\n",
      "          'demon': 1,\n",
      "          'attacks': 1,\n",
      "          'heroes': 1,\n",
      "          'kitchen': 1,\n",
      "          'sink': 1,\n",
      "          'brand': 1,\n",
      "          'humour': 1,\n",
      "          'dexterous': 1,\n",
      "          'maneuvering': 1,\n",
      "          'satirical': 1,\n",
      "          'cardinal': 1,\n",
      "          'played': 1,\n",
      "          'george': 1,\n",
      "          'carlin': 1,\n",
      "          'attempts': 1,\n",
      "          'mount': 1,\n",
      "          'publicity': 1,\n",
      "          'campaign': 1,\n",
      "          'slogan': 1,\n",
      "          'catholicism': 1,\n",
      "          'wow': 1,\n",
      "          'scatalogical': 1,\n",
      "          'ensures': 1,\n",
      "          'lover': 1,\n",
      "          'comedy': 1,\n",
      "          'leave': 1,\n",
      "          'feeling': 1,\n",
      "          'malnourished': 1,\n",
      "          'bust': 1,\n",
      "          'ed': 1,\n",
      "          'gut': 1,\n",
      "          'several': 1,\n",
      "          'occasions': 1,\n",
      "          'nproceedings': 1,\n",
      "          'get': 1,\n",
      "          'right': 1,\n",
      "          'foot': 1,\n",
      "          'opening': 1,\n",
      "          'funniest': 1,\n",
      "          'unlikely': 1,\n",
      "          'put': 1,\n",
      "          'protestors': 1,\n",
      "          'ease': 1,\n",
      "          'read': 1,\n",
      "          'actually': 1,\n",
      "          'see': 1,\n",
      "          'nthe': 1,\n",
      "          'prerelease': 1,\n",
      "          'ballyhoo': 1,\n",
      "          'tradition': 1,\n",
      "          'christs': 1,\n",
      "          'martin': 1,\n",
      "          '1988': 1,\n",
      "          'adaptation': 1,\n",
      "          'nikos': 1,\n",
      "          'kazantzakis': 1,\n",
      "          'controversial': 1,\n",
      "          'novel': 1,\n",
      "          'directly': 1,\n",
      "          'linked': 1,\n",
      "          'pictures': 1,\n",
      "          'content': 1,\n",
      "          'rumours': 1,\n",
      "          'heresy': 1,\n",
      "          'ntheres': 1,\n",
      "          'famous': 1,\n",
      "          'anecdote': 1,\n",
      "          'fletch': 1,\n",
      "          'michael': 1,\n",
      "          'ritchie': 1,\n",
      "          'inviting': 1,\n",
      "          'picketers': 1,\n",
      "          'christ': 1,\n",
      "          'screening': 1,\n",
      "          'dime': 1,\n",
      "          'could': 1,\n",
      "          'know': 1,\n",
      "          'certain': 1,\n",
      "          'rallying': 1,\n",
      "          'watched': 1,\n",
      "          'nevery': 1,\n",
      "          'single': 1,\n",
      "          'refused': 1,\n",
      "          'scorsese': 1,\n",
      "          'lot': 1,\n",
      "          'common': 1,\n",
      "          'question': 1,\n",
      "          'jesus': 1,\n",
      "          'hollow': 1,\n",
      "          'shells': 1,\n",
      "          'without': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'denouement': 1,\n",
      "          'follows': 1,\n",
      "          'thrilling': 1,\n",
      "          'showdown': 1,\n",
      "          'worth': 1,\n",
      "          'wait': 1,\n",
      "          'lovein': 1,\n",
      "          'veritable': 1,\n",
      "          'recruitment': 1,\n",
      "          'poster': 1,\n",
      "          'felt': 1,\n",
      "          'sentimental': 1,\n",
      "          'dont': 1,\n",
      "          'belong': 1,\n",
      "          'nnow': 1,\n",
      "          'powerful': 1,\n",
      "          'filmmaking': 1,\n",
      "          'sincere': 1,\n",
      "          'devotion': 1,\n",
      "          'spirituality': 1,\n",
      "          'shines': 1,\n",
      "          'make': 1,\n",
      "          'forgive': 1,\n",
      "          'editorial': 1,\n",
      "          'nmy': 1,\n",
      "          'nwhen': 1,\n",
      "          'league': 1,\n",
      "          'beats': 1,\n",
      "          'imaginary': 1,\n",
      "          'crimes': 1,\n",
      "          'doctrine': 1,\n",
      "          'roundabout': 1,\n",
      "          'theyre': 1,\n",
      "          'attacking': 1,\n",
      "          'live': 1,\n",
      "          'freedom': 1,\n",
      "          'expression': 1,\n",
      "          'celluloid': 1,\n",
      "          'therefore': 1,\n",
      "          'although': 1,\n",
      "          'biblethumper': 1,\n",
      "          'qualified': 1,\n",
      "          'criticize': 1,\n",
      "          'william': 1,\n",
      "          'donohue': 1,\n",
      "          'followers': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'characters': 10,\n",
      "          'obiwan': 8,\n",
      "          'nthe': 8,\n",
      "          'one': 8,\n",
      "          'film': 8,\n",
      "          'young': 7,\n",
      "          'lucas': 7,\n",
      "          'quigon': 6,\n",
      "          'queen': 5,\n",
      "          'kenobi': 4,\n",
      "          'anakin': 4,\n",
      "          'doesnt': 4,\n",
      "          'nbut': 4,\n",
      "          'jedi': 4,\n",
      "          'time': 4,\n",
      "          'future': 4,\n",
      "          'nothing': 4,\n",
      "          'films': 4,\n",
      "          'darth': 4,\n",
      "          'making': 4,\n",
      "          'like': 4,\n",
      "          'jar': 4,\n",
      "          'youve': 3,\n",
      "          'heard': 3,\n",
      "          'jinn': 3,\n",
      "          'mcgregor': 3,\n",
      "          'also': 3,\n",
      "          'humanity': 3,\n",
      "          'effects': 3,\n",
      "          'isnt': 3,\n",
      "          'presence': 3,\n",
      "          'nhe': 3,\n",
      "          'nand': 3,\n",
      "          'makes': 3,\n",
      "          'role': 3,\n",
      "          'good': 3,\n",
      "          'job': 3,\n",
      "          'ni': 3,\n",
      "          'never': 3,\n",
      "          'star': 3,\n",
      "          'wars': 3,\n",
      "          'empire': 3,\n",
      "          'nbecause': 3,\n",
      "          'tatooine': 3,\n",
      "          'actually': 3,\n",
      "          'gets': 3,\n",
      "          'course': 3,\n",
      "          'n': 3,\n",
      "          'hype': 2,\n",
      "          'seen': 2,\n",
      "          'amidala': 2,\n",
      "          'liam': 2,\n",
      "          'neeson': 2,\n",
      "          'jake': 2,\n",
      "          'way': 2,\n",
      "          'skywalker': 2,\n",
      "          'nif': 2,\n",
      "          'first': 2,\n",
      "          'may': 2,\n",
      "          'enough': 2,\n",
      "          'digitalized': 2,\n",
      "          'lightsaber': 2,\n",
      "          'amazing': 2,\n",
      "          'theres': 2,\n",
      "          'struggle': 2,\n",
      "          'master': 2,\n",
      "          'character': 2,\n",
      "          'apparently': 2,\n",
      "          'dont': 2,\n",
      "          'nearly': 2,\n",
      "          'mother': 2,\n",
      "          'luke': 2,\n",
      "          'planet': 2,\n",
      "          'stilted': 2,\n",
      "          'though': 2,\n",
      "          'hes': 2,\n",
      "          'nhowever': 2,\n",
      "          'surprisingly': 2,\n",
      "          'spark': 2,\n",
      "          'really': 2,\n",
      "          'profound': 2,\n",
      "          'nin': 2,\n",
      "          'fact': 2,\n",
      "          'seems': 2,\n",
      "          'preexisting': 2,\n",
      "          'would': 2,\n",
      "          'america': 2,\n",
      "          'recently': 2,\n",
      "          'nfor': 2,\n",
      "          'main': 2,\n",
      "          'palpatine': 2,\n",
      "          'scary': 2,\n",
      "          'strikes': 2,\n",
      "          'back': 2,\n",
      "          'nso': 2,\n",
      "          'meaningful': 2,\n",
      "          'c3po': 2,\n",
      "          'make': 2,\n",
      "          'appearances': 2,\n",
      "          'much': 2,\n",
      "          'look': 2,\n",
      "          'planets': 2,\n",
      "          'foreshadowing': 2,\n",
      "          'see': 2,\n",
      "          'many': 2,\n",
      "          'plot': 2,\n",
      "          'want': 2,\n",
      "          'two': 2,\n",
      "          'evil': 2,\n",
      "          'becomes': 2,\n",
      "          'often': 2,\n",
      "          'boy': 2,\n",
      "          'nthats': 2,\n",
      "          'cute': 2,\n",
      "          'kid': 2,\n",
      "          'vader': 2,\n",
      "          'ahead': 2,\n",
      "          'entire': 2,\n",
      "          'train': 2,\n",
      "          'apprentice': 2,\n",
      "          'end': 2,\n",
      "          'fun': 2,\n",
      "          'next': 2,\n",
      "          'nyouve': 1,\n",
      "          'faces': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'professional': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'ewan': 1,\n",
      "          'trainspotting': 1,\n",
      "          'lloyd': 1,\n",
      "          'jingle': 1,\n",
      "          'read': 1,\n",
      "          'reviews': 1,\n",
      "          'probably': 1,\n",
      "          'fails': 1,\n",
      "          'live': 1,\n",
      "          'magic': 1,\n",
      "          'trilogy': 1,\n",
      "          'nyou': 1,\n",
      "          'ones': 1,\n",
      "          'kiddiefriendly': 1,\n",
      "          'content': 1,\n",
      "          'adults': 1,\n",
      "          'nbelieve': 1,\n",
      "          'stunning': 1,\n",
      "          'creatures': 1,\n",
      "          'amazingly': 1,\n",
      "          'realistic': 1,\n",
      "          'duels': 1,\n",
      "          'amidalas': 1,\n",
      "          'sumptuous': 1,\n",
      "          'robes': 1,\n",
      "          'fit': 1,\n",
      "          'worn': 1,\n",
      "          'elizabeth': 1,\n",
      "          'something': 1,\n",
      "          'missing': 1,\n",
      "          'budget': 1,\n",
      "          'everything': 1,\n",
      "          'money': 1,\n",
      "          'cant': 1,\n",
      "          'buy': 1,\n",
      "          'actors': 1,\n",
      "          'best': 1,\n",
      "          'flesh': 1,\n",
      "          'broadstroked': 1,\n",
      "          'flat': 1,\n",
      "          'successful': 1,\n",
      "          'quiet': 1,\n",
      "          'dignity': 1,\n",
      "          'wise': 1,\n",
      "          'commanding': 1,\n",
      "          'anchor': 1,\n",
      "          'george': 1,\n",
      "          'spent': 1,\n",
      "          'fleshing': 1,\n",
      "          'nportmans': 1,\n",
      "          'mcgregors': 1,\n",
      "          'fare': 1,\n",
      "          'well': 1,\n",
      "          'namidala': 1,\n",
      "          'leia': 1,\n",
      "          'peaceful': 1,\n",
      "          'invaded': 1,\n",
      "          'trade': 1,\n",
      "          'federation': 1,\n",
      "          'comes': 1,\n",
      "          'stoic': 1,\n",
      "          'caricatured': 1,\n",
      "          'appears': 1,\n",
      "          'vulcan': 1,\n",
      "          'geisha': 1,\n",
      "          'former': 1,\n",
      "          'life': 1,\n",
      "          'although': 1,\n",
      "          'endearing': 1,\n",
      "          'little': 1,\n",
      "          'screen': 1,\n",
      "          'robin': 1,\n",
      "          'jinns': 1,\n",
      "          'batman': 1,\n",
      "          'manfully': 1,\n",
      "          'infuse': 1,\n",
      "          'small': 1,\n",
      "          'supporting': 1,\n",
      "          'genuine': 1,\n",
      "          'insight': 1,\n",
      "          'absolutely': 1,\n",
      "          'nails': 1,\n",
      "          'alec': 1,\n",
      "          'guiness': 1,\n",
      "          'episode': 1,\n",
      "          '4': 1,\n",
      "          '6': 1,\n",
      "          'scottish': 1,\n",
      "          'accent': 1,\n",
      "          'might': 1,\n",
      "          'otherwise': 1,\n",
      "          'bank': 1,\n",
      "          'knowledge': 1,\n",
      "          'quite': 1,\n",
      "          'bit': 1,\n",
      "          'thats': 1,\n",
      "          'problems': 1,\n",
      "          'call': 1,\n",
      "          'fan': 1,\n",
      "          'especially': 1,\n",
      "          'considering': 1,\n",
      "          'means': 1,\n",
      "          'fanatic': 1,\n",
      "          'days': 1,\n",
      "          'ive': 1,\n",
      "          'always': 1,\n",
      "          'enjoyed': 1,\n",
      "          'along': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'person': 1,\n",
      "          'hasnt': 1,\n",
      "          'even': 1,\n",
      "          'bother': 1,\n",
      "          'brushup': 1,\n",
      "          'names': 1,\n",
      "          'obscure': 1,\n",
      "          'hopelessly': 1,\n",
      "          'lost': 1,\n",
      "          'example': 1,\n",
      "          'nefarious': 1,\n",
      "          'senator': 1,\n",
      "          'steeped': 1,\n",
      "          'trivia': 1,\n",
      "          'emperor': 1,\n",
      "          'hooded': 1,\n",
      "          'apparition': 1,\n",
      "          'vaders': 1,\n",
      "          'return': 1,\n",
      "          'obviously': 1,\n",
      "          'appearance': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'meant': 1,\n",
      "          'stir': 1,\n",
      "          'echoes': 1,\n",
      "          'later': 1,\n",
      "          'series': 1,\n",
      "          'thus': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'nr2d2': 1,\n",
      "          'token': 1,\n",
      "          'obvious': 1,\n",
      "          'banking': 1,\n",
      "          'audiences': 1,\n",
      "          'fondness': 1,\n",
      "          'add': 1,\n",
      "          'nsame': 1,\n",
      "          'goes': 1,\n",
      "          'jabba': 1,\n",
      "          'hutt': 1,\n",
      "          'mean': 1,\n",
      "          'corpulent': 1,\n",
      "          'lazy': 1,\n",
      "          'neven': 1,\n",
      "          'guest': 1,\n",
      "          'desert': 1,\n",
      "          'world': 1,\n",
      "          'grew': 1,\n",
      "          'coruscant': 1,\n",
      "          'cloud': 1,\n",
      "          'city': 1,\n",
      "          'alderaan': 1,\n",
      "          'leias': 1,\n",
      "          'home': 1,\n",
      "          'blown': 1,\n",
      "          'show': 1,\n",
      "          'mentioned': 1,\n",
      "          'briefly': 1,\n",
      "          'passing': 1,\n",
      "          'nwhats': 1,\n",
      "          'result': 1,\n",
      "          'tying': 1,\n",
      "          'points': 1,\n",
      "          'answer': 1,\n",
      "          'empty': 1,\n",
      "          'ntheres': 1,\n",
      "          'meat': 1,\n",
      "          'substance': 1,\n",
      "          'love': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'alien': 1,\n",
      "          'distracted': 1,\n",
      "          'strange': 1,\n",
      "          'looking': 1,\n",
      "          'aliens': 1,\n",
      "          'looked': 1,\n",
      "          'gila': 1,\n",
      "          'monsters': 1,\n",
      "          'mouths': 1,\n",
      "          'barely': 1,\n",
      "          'moved': 1,\n",
      "          'muppets': 1,\n",
      "          'actual': 1,\n",
      "          'binks': 1,\n",
      "          'silly': 1,\n",
      "          'roger': 1,\n",
      "          'rabbitish': 1,\n",
      "          'amphibious': 1,\n",
      "          'intended': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'annoying': 1,\n",
      "          'fast': 1,\n",
      "          'nunlike': 1,\n",
      "          'chewbacca': 1,\n",
      "          'got': 1,\n",
      "          'youll': 1,\n",
      "          'pardon': 1,\n",
      "          'expression': 1,\n",
      "          'interactions': 1,\n",
      "          'human': 1,\n",
      "          'left': 1,\n",
      "          'interact': 1,\n",
      "          'mostly': 1,\n",
      "          'others': 1,\n",
      "          'kind': 1,\n",
      "          'times': 1,\n",
      "          'seem': 1,\n",
      "          'expensive': 1,\n",
      "          'teenage': 1,\n",
      "          'mutant': 1,\n",
      "          'ninja': 1,\n",
      "          'turtles': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'dialogue': 1,\n",
      "          'corny': 1,\n",
      "          'sometimes': 1,\n",
      "          'downright': 1,\n",
      "          'infantile': 1,\n",
      "          'thereby': 1,\n",
      "          'rendering': 1,\n",
      "          'bystanders': 1,\n",
      "          'noddly': 1,\n",
      "          'judgment': 1,\n",
      "          'said': 1,\n",
      "          'designed': 1,\n",
      "          'kids': 1,\n",
      "          'nwell': 1,\n",
      "          'done': 1,\n",
      "          'hero': 1,\n",
      "          'hard': 1,\n",
      "          'feel': 1,\n",
      "          'kinship': 1,\n",
      "          'identify': 1,\n",
      "          'eightyearold': 1,\n",
      "          'lloyds': 1,\n",
      "          'fault': 1,\n",
      "          'asked': 1,\n",
      "          'another': 1,\n",
      "          'mistake': 1,\n",
      "          'tyke': 1,\n",
      "          'nwarning': 1,\n",
      "          'spoilers': 1,\n",
      "          'opinion': 1,\n",
      "          'anakins': 1,\n",
      "          'blond': 1,\n",
      "          'flowing': 1,\n",
      "          'hair': 1,\n",
      "          'rosy': 1,\n",
      "          'cheeks': 1,\n",
      "          'aggression': 1,\n",
      "          'throughout': 1,\n",
      "          'doting': 1,\n",
      "          'pernilla': 1,\n",
      "          'august': 1,\n",
      "          'english': 1,\n",
      "          'language': 1,\n",
      "          'slave': 1,\n",
      "          'gross': 1,\n",
      "          'flying': 1,\n",
      "          'gnome': 1,\n",
      "          'indication': 1,\n",
      "          'audience': 1,\n",
      "          'hearts': 1,\n",
      "          'roses': 1,\n",
      "          'yodas': 1,\n",
      "          'hesitation': 1,\n",
      "          'allowing': 1,\n",
      "          'nhis': 1,\n",
      "          'explanation': 1,\n",
      "          'clouded': 1,\n",
      "          'warning': 1,\n",
      "          'major': 1,\n",
      "          'spoiler': 1,\n",
      "          'nenter': 1,\n",
      "          'risk': 1,\n",
      "          'nof': 1,\n",
      "          'noble': 1,\n",
      "          'dies': 1,\n",
      "          'hand': 1,\n",
      "          'maul': 1,\n",
      "          'scarylooking': 1,\n",
      "          'sith': 1,\n",
      "          'lord': 1,\n",
      "          'excels': 1,\n",
      "          'arts': 1,\n",
      "          'turned': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'nthis': 1,\n",
      "          'dude': 1,\n",
      "          'maybe': 1,\n",
      "          'lines': 1,\n",
      "          'establishes': 1,\n",
      "          'moves': 1,\n",
      "          'doublesided': 1,\n",
      "          'facial': 1,\n",
      "          'makeup': 1,\n",
      "          'chance': 1,\n",
      "          'ways': 1,\n",
      "          'force': 1,\n",
      "          'quigons': 1,\n",
      "          'padawan': 1,\n",
      "          'level': 1,\n",
      "          'knightdom': 1,\n",
      "          'must': 1,\n",
      "          'take': 1,\n",
      "          'training': 1,\n",
      "          'saga': 1,\n",
      "          'begins': 1,\n",
      "          'ndid': 1,\n",
      "          'story': 1,\n",
      "          'need': 1,\n",
      "          'told': 1,\n",
      "          'say': 1,\n",
      "          'worthwhile': 1,\n",
      "          'nabsolutely': 1,\n",
      "          'enter': 1,\n",
      "          'theater': 1,\n",
      "          'jedisize': 1,\n",
      "          'expectations': 1,\n",
      "          'simply': 1,\n",
      "          'treated': 1,\n",
      "          'enjoyable': 1,\n",
      "          'visual': 1,\n",
      "          'spectacle': 1,\n",
      "          'pod': 1,\n",
      "          'races': 1,\n",
      "          'triumph': 1,\n",
      "          'computer': 1,\n",
      "          'animation': 1,\n",
      "          'backgrounds': 1,\n",
      "          'astonishing': 1,\n",
      "          'sight': 1,\n",
      "          'yoda': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'origins': 1,\n",
      "          'simpler': 1,\n",
      "          'happier': 1,\n",
      "          'nabove': 1,\n",
      "          'nnot': 1,\n",
      "          'deep': 1,\n",
      "          'nmaybe': 1,\n",
      "          'hire': 1,\n",
      "          'lawrence': 1,\n",
      "          'kasdan': 1,\n",
      "          'cowrite': 1,\n",
      "          'script': 1,\n",
      "          'guy': 1,\n",
      "          'directed': 1,\n",
      "          'direct': 1,\n",
      "          'lacking': 1,\n",
      "          'thing': 1,\n",
      "          'needs': 1,\n",
      "          'potential': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'tibbs': 15,\n",
      "          'film': 8,\n",
      "          'nhe': 6,\n",
      "          'best': 5,\n",
      "          'nthe': 4,\n",
      "          'see': 4,\n",
      "          'characters': 4,\n",
      "          'nas': 4,\n",
      "          'given': 4,\n",
      "          'heat': 4,\n",
      "          'night': 4,\n",
      "          'would': 4,\n",
      "          'detective': 3,\n",
      "          'white': 3,\n",
      "          'shot': 3,\n",
      "          'face': 3,\n",
      "          'bars': 3,\n",
      "          'investigation': 3,\n",
      "          'town': 3,\n",
      "          'matter': 3,\n",
      "          'nit': 3,\n",
      "          'n': 3,\n",
      "          'jewison': 3,\n",
      "          'racism': 3,\n",
      "          'excellent': 3,\n",
      "          'also': 3,\n",
      "          'officer': 3,\n",
      "          'character': 3,\n",
      "          'end': 3,\n",
      "          'african': 2,\n",
      "          'american': 2,\n",
      "          'vergil': 2,\n",
      "          'main': 2,\n",
      "          'message': 2,\n",
      "          'completely': 2,\n",
      "          'rest': 2,\n",
      "          'bigots': 2,\n",
      "          'still': 2,\n",
      "          'seen': 2,\n",
      "          'show': 2,\n",
      "          'nthis': 2,\n",
      "          'one': 2,\n",
      "          'three': 2,\n",
      "          'films': 2,\n",
      "          'afraid': 2,\n",
      "          'hurricane': 2,\n",
      "          'classic': 2,\n",
      "          'memorable': 2,\n",
      "          '1967': 2,\n",
      "          'poitier': 2,\n",
      "          'police': 2,\n",
      "          'around': 2,\n",
      "          'always': 2,\n",
      "          'nhowever': 2,\n",
      "          'steiger': 2,\n",
      "          'actor': 2,\n",
      "          'sheriff': 2,\n",
      "          'shows': 2,\n",
      "          'refer': 2,\n",
      "          'movies': 2,\n",
      "          'minutes': 2,\n",
      "          'realistic': 2,\n",
      "          'believe': 2,\n",
      "          'something': 2,\n",
      "          'day': 2,\n",
      "          'rushed': 2,\n",
      "          'towards': 2,\n",
      "          'questions': 1,\n",
      "          'suspected': 1,\n",
      "          'murderer': 1,\n",
      "          'inside': 1,\n",
      "          'jail': 1,\n",
      "          'cell': 1,\n",
      "          'wonderful': 1,\n",
      "          'eyecatching': 1,\n",
      "          'instantaneously': 1,\n",
      "          'presents': 1,\n",
      "          'entire': 1,\n",
      "          'covered': 1,\n",
      "          'shadows': 1,\n",
      "          'prison': 1,\n",
      "          'nto': 1,\n",
      "          'blocking': 1,\n",
      "          'separated': 1,\n",
      "          'black': 1,\n",
      "          'conducting': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'southern': 1,\n",
      "          'full': 1,\n",
      "          'violent': 1,\n",
      "          'innocent': 1,\n",
      "          'threat': 1,\n",
      "          'simply': 1,\n",
      "          'color': 1,\n",
      "          'skin': 1,\n",
      "          'fair': 1,\n",
      "          'chance': 1,\n",
      "          'exactly': 1,\n",
      "          'instead': 1,\n",
      "          'others': 1,\n",
      "          'chosen': 1,\n",
      "          'different': 1,\n",
      "          'dangerous': 1,\n",
      "          'amazes': 1,\n",
      "          'captures': 1,\n",
      "          'whole': 1,\n",
      "          'theme': 1,\n",
      "          'seconds': 1,\n",
      "          'perhaps': 1,\n",
      "          'may': 1,\n",
      "          'powerful': 1,\n",
      "          'image': 1,\n",
      "          'first': 1,\n",
      "          'norman': 1,\n",
      "          'directed': 1,\n",
      "          'concerning': 1,\n",
      "          'america': 1,\n",
      "          'njewison': 1,\n",
      "          'keen': 1,\n",
      "          'style': 1,\n",
      "          'displaying': 1,\n",
      "          'various': 1,\n",
      "          'cases': 1,\n",
      "          'neither': 1,\n",
      "          'pedantic': 1,\n",
      "          'overly': 1,\n",
      "          'sentimental': 1,\n",
      "          'nin': 1,\n",
      "          'job': 1,\n",
      "          'creating': 1,\n",
      "          'detailed': 1,\n",
      "          'equal': 1,\n",
      "          'analyses': 1,\n",
      "          'abused': 1,\n",
      "          'abusers': 1,\n",
      "          'tell': 1,\n",
      "          'absolute': 1,\n",
      "          'truth': 1,\n",
      "          'corrupt': 1,\n",
      "          'society': 1,\n",
      "          'past': 1,\n",
      "          'present': 1,\n",
      "          'npreceding': 1,\n",
      "          'original': 1,\n",
      "          'soldiers': 1,\n",
      "          'story': 1,\n",
      "          'recently': 1,\n",
      "          'released': 1,\n",
      "          'contains': 1,\n",
      "          'lines': 1,\n",
      "          'picture': 1,\n",
      "          'focuses': 1,\n",
      "          'played': 1,\n",
      "          'superbly': 1,\n",
      "          'sidney': 1,\n",
      "          'fearless': 1,\n",
      "          'philadelphia': 1,\n",
      "          'refuses': 1,\n",
      "          'give': 1,\n",
      "          'wanted': 1,\n",
      "          'ntibbs': 1,\n",
      "          'man': 1,\n",
      "          'rarely': 1,\n",
      "          'loses': 1,\n",
      "          'temper': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'constantly': 1,\n",
      "          'facing': 1,\n",
      "          'abuse': 1,\n",
      "          'hero': 1,\n",
      "          'five': 1,\n",
      "          'men': 1,\n",
      "          'chains': 1,\n",
      "          'perfect': 1,\n",
      "          'protagonist': 1,\n",
      "          'npoitier': 1,\n",
      "          'gives': 1,\n",
      "          'noteworthy': 1,\n",
      "          'voice': 1,\n",
      "          'nnever': 1,\n",
      "          'nervous': 1,\n",
      "          'commanding': 1,\n",
      "          'speech': 1,\n",
      "          'patterns': 1,\n",
      "          'manipulative': 1,\n",
      "          'range': 1,\n",
      "          'stentorian': 1,\n",
      "          'soothing': 1,\n",
      "          'unlike': 1,\n",
      "          'denzel': 1,\n",
      "          'washington': 1,\n",
      "          'dominated': 1,\n",
      "          'cast': 1,\n",
      "          'shares': 1,\n",
      "          'spotlight': 1,\n",
      "          'rod': 1,\n",
      "          'performance': 1,\n",
      "          'helps': 1,\n",
      "          'warns': 1,\n",
      "          'dangers': 1,\n",
      "          'great': 1,\n",
      "          'amount': 1,\n",
      "          'skill': 1,\n",
      "          'role': 1,\n",
      "          'starts': 1,\n",
      "          'racist': 1,\n",
      "          'blind': 1,\n",
      "          'townspeople': 1,\n",
      "          'boy': 1,\n",
      "          'suspiciously': 1,\n",
      "          'keep': 1,\n",
      "          'eye': 1,\n",
      "          'progresses': 1,\n",
      "          'though': 1,\n",
      "          'gradual': 1,\n",
      "          'change': 1,\n",
      "          'begins': 1,\n",
      "          'hardships': 1,\n",
      "          'faces': 1,\n",
      "          'sees': 1,\n",
      "          'foolishness': 1,\n",
      "          'neighbors': 1,\n",
      "          'nwhat': 1,\n",
      "          'really': 1,\n",
      "          'enjoyed': 1,\n",
      "          'steigers': 1,\n",
      "          'abandon': 1,\n",
      "          'friends': 1,\n",
      "          'connect': 1,\n",
      "          'could': 1,\n",
      "          'mister': 1,\n",
      "          'rather': 1,\n",
      "          'settled': 1,\n",
      "          'virgil': 1,\n",
      "          'ninstead': 1,\n",
      "          'apparent': 1,\n",
      "          'eventually': 1,\n",
      "          'going': 1,\n",
      "          'world': 1,\n",
      "          'differently': 1,\n",
      "          'future': 1,\n",
      "          'nmost': 1,\n",
      "          'reversing': 1,\n",
      "          'beliefs': 1,\n",
      "          'influences': 1,\n",
      "          'action': 1,\n",
      "          'since': 1,\n",
      "          'nearly': 1,\n",
      "          'impossible': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'next': 1,\n",
      "          'njewisons': 1,\n",
      "          'determination': 1,\n",
      "          'make': 1,\n",
      "          'possible': 1,\n",
      "          'obvious': 1,\n",
      "          'appropriate': 1,\n",
      "          'difference': 1,\n",
      "          'north': 1,\n",
      "          'south': 1,\n",
      "          'major': 1,\n",
      "          'city': 1,\n",
      "          'small': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          '1960s': 1,\n",
      "          'displays': 1,\n",
      "          'perfectly': 1,\n",
      "          'actual': 1,\n",
      "          'although': 1,\n",
      "          'focus': 1,\n",
      "          'lacks': 1,\n",
      "          'interest': 1,\n",
      "          'seemed': 1,\n",
      "          'especially': 1,\n",
      "          'feel': 1,\n",
      "          'like': 1,\n",
      "          'giving': 1,\n",
      "          'credible': 1,\n",
      "          'explanation': 1,\n",
      "          'involving': 1,\n",
      "          'murder': 1,\n",
      "          'victim': 1,\n",
      "          'nthere': 1,\n",
      "          'way': 1,\n",
      "          'many': 1,\n",
      "          'added': 1,\n",
      "          'last': 1,\n",
      "          'fifteen': 1,\n",
      "          'scenes': 1,\n",
      "          'time': 1,\n",
      "          'period': 1,\n",
      "          'inane': 1,\n",
      "          'sam': 1,\n",
      "          'suspect': 1,\n",
      "          'needed': 1,\n",
      "          'nalso': 1,\n",
      "          'vigilant': 1,\n",
      "          'homicide': 1,\n",
      "          'discoveries': 1,\n",
      "          'came': 1,\n",
      "          'nowhere': 1,\n",
      "          'found': 1,\n",
      "          'important': 1,\n",
      "          'case': 1,\n",
      "          'details': 1,\n",
      "          'never': 1,\n",
      "          'answered': 1,\n",
      "          'ending': 1,\n",
      "          'mistake': 1,\n",
      "          'otherwise': 1,\n",
      "          'congratulations': 1,\n",
      "          'scott': 1,\n",
      "          'wilson': 1,\n",
      "          'managed': 1,\n",
      "          'two': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'cold': 1,\n",
      "          'blood': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'wonder': 7,\n",
      "          'boys': 7,\n",
      "          'film': 7,\n",
      "          'like': 6,\n",
      "          'nthe': 6,\n",
      "          'douglas': 5,\n",
      "          'man': 5,\n",
      "          'would': 5,\n",
      "          'nhe': 4,\n",
      "          'found': 4,\n",
      "          'im': 4,\n",
      "          'films': 4,\n",
      "          'comedy': 4,\n",
      "          'plays': 3,\n",
      "          'may': 3,\n",
      "          'grady': 3,\n",
      "          'ngrady': 3,\n",
      "          'put': 3,\n",
      "          'maguire': 3,\n",
      "          'great': 3,\n",
      "          'hannah': 3,\n",
      "          'maybe': 3,\n",
      "          'wish': 3,\n",
      "          'movie': 3,\n",
      "          'place': 3,\n",
      "          'movies': 3,\n",
      "          'characters': 3,\n",
      "          'writer': 2,\n",
      "          'professor': 2,\n",
      "          'believe': 2,\n",
      "          'performance': 2,\n",
      "          'part': 2,\n",
      "          'gordon': 2,\n",
      "          'gecko': 2,\n",
      "          'character': 2,\n",
      "          'nin': 2,\n",
      "          'much': 2,\n",
      "          'think': 2,\n",
      "          'played': 2,\n",
      "          'role': 2,\n",
      "          'open': 2,\n",
      "          'isnt': 2,\n",
      "          'old': 2,\n",
      "          'writers': 2,\n",
      "          'workshop': 2,\n",
      "          'first': 2,\n",
      "          'narration': 2,\n",
      "          'one': 2,\n",
      "          'points': 2,\n",
      "          'student': 2,\n",
      "          'nleer': 2,\n",
      "          'seems': 2,\n",
      "          'dry': 2,\n",
      "          'wit': 2,\n",
      "          'nhes': 2,\n",
      "          'little': 2,\n",
      "          'jarmusch': 2,\n",
      "          'dog': 2,\n",
      "          'happen': 2,\n",
      "          'depth': 2,\n",
      "          'fits': 2,\n",
      "          'cort': 2,\n",
      "          'artistic': 2,\n",
      "          'holmes': 2,\n",
      "          'beautiful': 2,\n",
      "          'plot': 2,\n",
      "          'line': 2,\n",
      "          'age': 2,\n",
      "          'sex': 2,\n",
      "          'desire': 2,\n",
      "          'life': 2,\n",
      "          'jones': 2,\n",
      "          'hand': 2,\n",
      "          'completely': 2,\n",
      "          'nthere': 2,\n",
      "          'somewhere': 2,\n",
      "          'rather': 2,\n",
      "          'sara': 2,\n",
      "          'word': 2,\n",
      "          'actor': 2,\n",
      "          'tom': 2,\n",
      "          'among': 2,\n",
      "          'thats': 2,\n",
      "          'bit': 2,\n",
      "          'literary': 2,\n",
      "          'rarely': 2,\n",
      "          'american': 2,\n",
      "          'privy': 2,\n",
      "          'types': 2,\n",
      "          'hanson': 2,\n",
      "          'story': 2,\n",
      "          'often': 2,\n",
      "          'early': 2,\n",
      "          'gags': 2,\n",
      "          'jokes': 2,\n",
      "          'party': 2,\n",
      "          'michael': 1,\n",
      "          'aged': 1,\n",
      "          'livedin': 1,\n",
      "          'naturalism': 1,\n",
      "          'best': 1,\n",
      "          'never': 1,\n",
      "          'since': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'spent': 1,\n",
      "          'greater': 1,\n",
      "          'career': 1,\n",
      "          'playing': 1,\n",
      "          'variations': 1,\n",
      "          'shark': 1,\n",
      "          'suit': 1,\n",
      "          'personified': 1,\n",
      "          'mid80s': 1,\n",
      "          'performances': 1,\n",
      "          'tended': 1,\n",
      "          'exaggerate': 1,\n",
      "          'vehemence': 1,\n",
      "          'cutthroat': 1,\n",
      "          'businessmen': 1,\n",
      "          'frothing': 1,\n",
      "          'mouth': 1,\n",
      "          'projecting': 1,\n",
      "          'bad': 1,\n",
      "          'intentions': 1,\n",
      "          'world': 1,\n",
      "          'nyoud': 1,\n",
      "          'keep': 1,\n",
      "          'evil': 1,\n",
      "          'wrapped': 1,\n",
      "          'tightly': 1,\n",
      "          'underneath': 1,\n",
      "          'goodnatured': 1,\n",
      "          'veneer': 1,\n",
      "          'nicholas': 1,\n",
      "          'van': 1,\n",
      "          'orton': 1,\n",
      "          'straight': 1,\n",
      "          'showy': 1,\n",
      "          'tour': 1,\n",
      "          'de': 1,\n",
      "          'force': 1,\n",
      "          'simple': 1,\n",
      "          'yet': 1,\n",
      "          'truthful': 1,\n",
      "          'embodies': 1,\n",
      "          'craggy': 1,\n",
      "          'predilection': 1,\n",
      "          'pot': 1,\n",
      "          'pink': 1,\n",
      "          'bathrobes': 1,\n",
      "          'instructs': 1,\n",
      "          'working': 1,\n",
      "          'tirelessly': 1,\n",
      "          'follow': 1,\n",
      "          'novel': 1,\n",
      "          'map': 1,\n",
      "          'nwhen': 1,\n",
      "          'encounter': 1,\n",
      "          'curmudgeon': 1,\n",
      "          'midst': 1,\n",
      "          'hear': 1,\n",
      "          'sardonic': 1,\n",
      "          'soundtrack': 1,\n",
      "          'students': 1,\n",
      "          'bombard': 1,\n",
      "          'unfair': 1,\n",
      "          'criticisms': 1,\n",
      "          'jealousy': 1,\n",
      "          'ntheir': 1,\n",
      "          'target': 1,\n",
      "          'writerly': 1,\n",
      "          'named': 1,\n",
      "          'james': 1,\n",
      "          'leer': 1,\n",
      "          'always': 1,\n",
      "          'understated': 1,\n",
      "          'tobey': 1,\n",
      "          'full': 1,\n",
      "          'potential': 1,\n",
      "          'develops': 1,\n",
      "          'mild': 1,\n",
      "          'affection': 1,\n",
      "          'kind': 1,\n",
      "          'youth': 1,\n",
      "          'mechanically': 1,\n",
      "          'block': 1,\n",
      "          'emotions': 1,\n",
      "          'speaks': 1,\n",
      "          'intellectualized': 1,\n",
      "          'monotone': 1,\n",
      "          'hint': 1,\n",
      "          'around': 1,\n",
      "          'edges': 1,\n",
      "          'portentous': 1,\n",
      "          'gloomy': 1,\n",
      "          'modeling': 1,\n",
      "          'depressed': 1,\n",
      "          'though': 1,\n",
      "          'act': 1,\n",
      "          'calculated': 1,\n",
      "          'reminds': 1,\n",
      "          'selfimposed': 1,\n",
      "          'outcast': 1,\n",
      "          'director': 1,\n",
      "          'jim': 1,\n",
      "          'dead': 1,\n",
      "          'ghost': 1,\n",
      "          'nwhenever': 1,\n",
      "          'catch': 1,\n",
      "          'interview': 1,\n",
      "          'see': 1,\n",
      "          'speaking': 1,\n",
      "          'toneless': 1,\n",
      "          'manner': 1,\n",
      "          'monotonous': 1,\n",
      "          'drawl': 1,\n",
      "          'supposedly': 1,\n",
      "          'masking': 1,\n",
      "          'contempt': 1,\n",
      "          'interviewer': 1,\n",
      "          'exclusively': 1,\n",
      "          'dressed': 1,\n",
      "          'black': 1,\n",
      "          'spiked': 1,\n",
      "          'hair': 1,\n",
      "          'dyed': 1,\n",
      "          'snow': 1,\n",
      "          'white': 1,\n",
      "          'similar': 1,\n",
      "          'guy': 1,\n",
      "          'equates': 1,\n",
      "          'quirks': 1,\n",
      "          'ntobey': 1,\n",
      "          'well': 1,\n",
      "          'nwith': 1,\n",
      "          'round': 1,\n",
      "          'sweeteerie': 1,\n",
      "          'face': 1,\n",
      "          'resembles': 1,\n",
      "          'bud': 1,\n",
      "          'harold': 1,\n",
      "          'maude': 1,\n",
      "          'nbut': 1,\n",
      "          'unlike': 1,\n",
      "          'easier': 1,\n",
      "          'warm': 1,\n",
      "          'hes': 1,\n",
      "          'messed': 1,\n",
      "          'kid': 1,\n",
      "          'reaching': 1,\n",
      "          'credibility': 1,\n",
      "          'nkatie': 1,\n",
      "          'talented': 1,\n",
      "          'writing': 1,\n",
      "          'itching': 1,\n",
      "          'get': 1,\n",
      "          'gradys': 1,\n",
      "          'pants': 1,\n",
      "          'nthis': 1,\n",
      "          'trouble': 1,\n",
      "          'ndouglas': 1,\n",
      "          'beginning': 1,\n",
      "          'resemble': 1,\n",
      "          'jerry': 1,\n",
      "          'springer': 1,\n",
      "          'actually': 1,\n",
      "          'paid': 1,\n",
      "          'numerous': 1,\n",
      "          'documented': 1,\n",
      "          'occasions': 1,\n",
      "          'nat': 1,\n",
      "          'extremely': 1,\n",
      "          'difficult': 1,\n",
      "          'someone': 1,\n",
      "          'jealous': 1,\n",
      "          'throwing': 1,\n",
      "          'lowly': 1,\n",
      "          'internet': 1,\n",
      "          'critic': 1,\n",
      "          'least': 1,\n",
      "          'still': 1,\n",
      "          'teeth': 1,\n",
      "          'douglass': 1,\n",
      "          'real': 1,\n",
      "          'companion': 1,\n",
      "          'breathtaking': 1,\n",
      "          'catherine': 1,\n",
      "          'zeta': 1,\n",
      "          'nseeing': 1,\n",
      "          'two': 1,\n",
      "          'together': 1,\n",
      "          'looks': 1,\n",
      "          'lot': 1,\n",
      "          'kidnapping': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'mind': 1,\n",
      "          'shifted': 1,\n",
      "          'task': 1,\n",
      "          'reviewing': 1,\n",
      "          'wonderful': 1,\n",
      "          'pontificating': 1,\n",
      "          'hell': 1,\n",
      "          'chivalrously': 1,\n",
      "          'ask': 1,\n",
      "          'resists': 1,\n",
      "          'charms': 1,\n",
      "          'gaskell': 1,\n",
      "          'droll': 1,\n",
      "          'frances': 1,\n",
      "          'mcdormand': 1,\n",
      "          'also': 1,\n",
      "          'married': 1,\n",
      "          'another': 1,\n",
      "          'nokay': 1,\n",
      "          'chivalrous': 1,\n",
      "          'spoken': 1,\n",
      "          'says': 1,\n",
      "          'junkie': 1,\n",
      "          'printed': 1,\n",
      "          'nlucky': 1,\n",
      "          'manufactured': 1,\n",
      "          'drug': 1,\n",
      "          'choice': 1,\n",
      "          'nrobert': 1,\n",
      "          'downy': 1,\n",
      "          'j': 1,\n",
      "          'r': 1,\n",
      "          'bisexual': 1,\n",
      "          'editor': 1,\n",
      "          'makes': 1,\n",
      "          'entrance': 1,\n",
      "          'towering': 1,\n",
      "          'transvestite': 1,\n",
      "          'arm': 1,\n",
      "          'ndowny': 1,\n",
      "          'mastered': 1,\n",
      "          'gleefully': 1,\n",
      "          'hyper': 1,\n",
      "          'articulate': 1,\n",
      "          'many': 1,\n",
      "          'hipster': 1,\n",
      "          'intellectual': 1,\n",
      "          'arrogant': 1,\n",
      "          'likeable': 1,\n",
      "          'utter': 1,\n",
      "          'arrogance': 1,\n",
      "          'perfectly': 1,\n",
      "          'cast': 1,\n",
      "          'remains': 1,\n",
      "          'joyous': 1,\n",
      "          'presence': 1,\n",
      "          'typical': 1,\n",
      "          'hanksian': 1,\n",
      "          'comic': 1,\n",
      "          'leading': 1,\n",
      "          'edgy': 1,\n",
      "          'ni': 1,\n",
      "          'nsearching': 1,\n",
      "          'elements': 1,\n",
      "          'pointless': 1,\n",
      "          'meanders': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'charm': 1,\n",
      "          'nand': 1,\n",
      "          'biased': 1,\n",
      "          'towards': 1,\n",
      "          'takes': 1,\n",
      "          'academia': 1,\n",
      "          'greatly': 1,\n",
      "          'fond': 1,\n",
      "          'explored': 1,\n",
      "          'cinema': 1,\n",
      "          'neveryone': 1,\n",
      "          'subgenre': 1,\n",
      "          'war': 1,\n",
      "          'westerns': 1,\n",
      "          'dance': 1,\n",
      "          'nim': 1,\n",
      "          'e': 1,\n",
      "          'nthose': 1,\n",
      "          'individuals': 1,\n",
      "          'enthralled': 1,\n",
      "          'written': 1,\n",
      "          'inclined': 1,\n",
      "          'wise': 1,\n",
      "          'knock': 1,\n",
      "          'grade': 1,\n",
      "          'half': 1,\n",
      "          'notch': 1,\n",
      "          'direction': 1,\n",
      "          'curtis': 1,\n",
      "          'akin': 1,\n",
      "          'european': 1,\n",
      "          'leisurely': 1,\n",
      "          'pace': 1,\n",
      "          'situations': 1,\n",
      "          'grow': 1,\n",
      "          'generic': 1,\n",
      "          'mapped': 1,\n",
      "          'nsometimes': 1,\n",
      "          'dialogue': 1,\n",
      "          'clever': 1,\n",
      "          'problem': 1,\n",
      "          'nanother': 1,\n",
      "          'minor': 1,\n",
      "          'quibble': 1,\n",
      "          'introverted': 1,\n",
      "          'progresses': 1,\n",
      "          'begins': 1,\n",
      "          'nfor': 1,\n",
      "          'works': 1,\n",
      "          'subtle': 1,\n",
      "          'drama': 1,\n",
      "          'insight': 1,\n",
      "          'lowkey': 1,\n",
      "          'chuckleworthy': 1,\n",
      "          'throwaway': 1,\n",
      "          'robert': 1,\n",
      "          'altman': 1,\n",
      "          'h': 1,\n",
      "          'long': 1,\n",
      "          'goodbye': 1,\n",
      "          'exist': 1,\n",
      "          'asides': 1,\n",
      "          'fringes': 1,\n",
      "          'broader': 1,\n",
      "          'killing': 1,\n",
      "          'blind': 1,\n",
      "          'incessant': 1,\n",
      "          'smoking': 1,\n",
      "          'marijuana': 1,\n",
      "          'ineffective': 1,\n",
      "          'nearly': 1,\n",
      "          'memorable': 1,\n",
      "          'things': 1,\n",
      "          'ncurtis': 1,\n",
      "          'last': 1,\n",
      "          'la': 1,\n",
      "          'confidential': 1,\n",
      "          'toiled': 1,\n",
      "          'exploitation': 1,\n",
      "          'fare': 1,\n",
      "          'losin': 1,\n",
      "          'cruise': 1,\n",
      "          'rocks': 1,\n",
      "          'cradle': 1,\n",
      "          'graduated': 1,\n",
      "          'meaningful': 1,\n",
      "          'directs': 1,\n",
      "          'appropriately': 1,\n",
      "          'dour': 1,\n",
      "          'style': 1,\n",
      "          'coming': 1,\n",
      "          'false': 1,\n",
      "          'gloom': 1,\n",
      "          'morose': 1,\n",
      "          'crooning': 1,\n",
      "          'leonard': 1,\n",
      "          'cohen': 1,\n",
      "          'seem': 1,\n",
      "          'odd': 1,\n",
      "          'song': 1,\n",
      "          'background': 1,\n",
      "          'piece': 1,\n",
      "          'literature': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'nits': 1,\n",
      "          'cinematic': 1,\n",
      "          'equivalent': 1,\n",
      "          'good': 1,\n",
      "          'read': 1,\n",
      "          'novelistic': 1,\n",
      "          'approach': 1,\n",
      "          'themes': 1,\n",
      "          'nmany': 1,\n",
      "          'find': 1,\n",
      "          'slight': 1,\n",
      "          'savor': 1,\n",
      "          'subtleties': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'also': 6,\n",
      "          'many': 6,\n",
      "          'zoolander': 5,\n",
      "          'dumb': 5,\n",
      "          'ni': 5,\n",
      "          'movie': 4,\n",
      "          '710': 4,\n",
      "          'derek': 3,\n",
      "          'stupid': 3,\n",
      "          'comedies': 3,\n",
      "          'seriously': 3,\n",
      "          'youre': 3,\n",
      "          'see': 3,\n",
      "          'film': 3,\n",
      "          'powers': 3,\n",
      "          'doesnt': 2,\n",
      "          'fashion': 2,\n",
      "          'country': 2,\n",
      "          'nwill': 2,\n",
      "          'world': 2,\n",
      "          'look': 2,\n",
      "          'funny': 2,\n",
      "          'dont': 2,\n",
      "          'time': 2,\n",
      "          'something': 2,\n",
      "          'could': 2,\n",
      "          'simply': 2,\n",
      "          'others': 2,\n",
      "          'instead': 2,\n",
      "          'character': 2,\n",
      "          'nice': 2,\n",
      "          'nand': 2,\n",
      "          'type': 2,\n",
      "          'films': 2,\n",
      "          'well': 2,\n",
      "          'david': 2,\n",
      "          'liked': 2,\n",
      "          'nbut': 2,\n",
      "          'work': 2,\n",
      "          'strike': 2,\n",
      "          'taylor': 2,\n",
      "          'get': 2,\n",
      "          'less': 2,\n",
      "          'dude': 2,\n",
      "          'monkey': 2,\n",
      "          'trailer': 2,\n",
      "          'austin': 2,\n",
      "          '510': 2,\n",
      "          '810': 2,\n",
      "          'plot': 1,\n",
      "          'male': 1,\n",
      "          'model': 1,\n",
      "          'nhe': 1,\n",
      "          'impressionable': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'secretly': 1,\n",
      "          'hired': 1,\n",
      "          'trained': 1,\n",
      "          'secret': 1,\n",
      "          'even': 1,\n",
      "          'know': 1,\n",
      "          'underground': 1,\n",
      "          'syndicate': 1,\n",
      "          'assassinate': 1,\n",
      "          'prime': 1,\n",
      "          'minister': 1,\n",
      "          'malaysia': 1,\n",
      "          'wants': 1,\n",
      "          'abolish': 1,\n",
      "          'child': 1,\n",
      "          'labor': 1,\n",
      "          'fulfill': 1,\n",
      "          'dirty': 1,\n",
      "          'deed': 1,\n",
      "          'ever': 1,\n",
      "          'grace': 1,\n",
      "          'new': 1,\n",
      "          'nis': 1,\n",
      "          'nfind': 1,\n",
      "          'ncritique': 1,\n",
      "          'theres': 1,\n",
      "          'place': 1,\n",
      "          'nfilms': 1,\n",
      "          'pretend': 1,\n",
      "          'take': 1,\n",
      "          'based': 1,\n",
      "          'idiotic': 1,\n",
      "          'premises': 1,\n",
      "          'filled': 1,\n",
      "          'jokes': 1,\n",
      "          'ntheres': 1,\n",
      "          'would': 1,\n",
      "          'argue': 1,\n",
      "          'difficult': 1,\n",
      "          'period': 1,\n",
      "          'history': 1,\n",
      "          'might': 1,\n",
      "          'ideal': 1,\n",
      "          'circumstance': 1,\n",
      "          'relax': 1,\n",
      "          'watching': 1,\n",
      "          'completely': 1,\n",
      "          'frivolous': 1,\n",
      "          'nwell': 1,\n",
      "          'mood': 1,\n",
      "          'mindless': 1,\n",
      "          'entertainment': 1,\n",
      "          'ben': 1,\n",
      "          'stiller': 1,\n",
      "          'cast': 1,\n",
      "          'assembled': 1,\n",
      "          'one': 1,\n",
      "          'original': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'usually': 1,\n",
      "          'subjective': 1,\n",
      "          'unfunny': 1,\n",
      "          'grant': 1,\n",
      "          'consider': 1,\n",
      "          'personally': 1,\n",
      "          'enjoyed': 1,\n",
      "          'part': 1,\n",
      "          'cracked': 1,\n",
      "          'loudly': 1,\n",
      "          'couple': 1,\n",
      "          'specific': 1,\n",
      "          'sequences': 1,\n",
      "          'loved': 1,\n",
      "          'unrestrained': 1,\n",
      "          'whipping': 1,\n",
      "          'released': 1,\n",
      "          'upon': 1,\n",
      "          'industry': 1,\n",
      "          'nsnap': 1,\n",
      "          'nit': 1,\n",
      "          'several': 1,\n",
      "          'reallife': 1,\n",
      "          'models': 1,\n",
      "          'small': 1,\n",
      "          'roles': 1,\n",
      "          'taking': 1,\n",
      "          'person': 1,\n",
      "          'likes': 1,\n",
      "          'celebrity': 1,\n",
      "          'cameos': 1,\n",
      "          'dozens': 1,\n",
      "          'famous': 1,\n",
      "          'faces': 1,\n",
      "          'show': 1,\n",
      "          'including': 1,\n",
      "          'vince': 1,\n",
      "          'vaughn': 1,\n",
      "          'billy': 1,\n",
      "          'zane': 1,\n",
      "          'winona': 1,\n",
      "          'ryder': 1,\n",
      "          'christian': 1,\n",
      "          'slater': 1,\n",
      "          'duchovny': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'especially': 1,\n",
      "          'andy': 1,\n",
      "          'dicks': 1,\n",
      "          'complete': 1,\n",
      "          'makeover': 1,\n",
      "          'masseuse': 1,\n",
      "          'nhilarious': 1,\n",
      "          'bound': 1,\n",
      "          'stuff': 1,\n",
      "          'na': 1,\n",
      "          'particulars': 1,\n",
      "          'didnt': 1,\n",
      "          'fancy': 1,\n",
      "          'included': 1,\n",
      "          'bulimia': 1,\n",
      "          'orgy': 1,\n",
      "          'sequence': 1,\n",
      "          'christine': 1,\n",
      "          'breakdance': 1,\n",
      "          'fighting': 1,\n",
      "          'never': 1,\n",
      "          'use': 1,\n",
      "          'real': 1,\n",
      "          'countries': 1,\n",
      "          'plots': 1,\n",
      "          'like': 1,\n",
      "          'make': 1,\n",
      "          'zeroing': 1,\n",
      "          'certain': 1,\n",
      "          'people': 1,\n",
      "          'done': 1,\n",
      "          'general': 1,\n",
      "          'since': 1,\n",
      "          'wasnt': 1,\n",
      "          'interesting': 1,\n",
      "          'seemed': 1,\n",
      "          'slow': 1,\n",
      "          'things': 1,\n",
      "          'every': 1,\n",
      "          'missteps': 1,\n",
      "          'nothing': 1,\n",
      "          'compared': 1,\n",
      "          'memorable': 1,\n",
      "          'scenes': 1,\n",
      "          'definitely': 1,\n",
      "          'almost': 1,\n",
      "          'pissed': 1,\n",
      "          'gas': 1,\n",
      "          'station': 1,\n",
      "          'disaster': 1,\n",
      "          'absolutely': 1,\n",
      "          'adored': 1,\n",
      "          'walkoff': 1,\n",
      "          'contest': 1,\n",
      "          'bowie': 1,\n",
      "          'judge': 1,\n",
      "          'appreciated': 1,\n",
      "          'zoolanders': 1,\n",
      "          'moronic': 1,\n",
      "          'oneliners': 1,\n",
      "          'merman': 1,\n",
      "          'nmerman': 1,\n",
      "          'dare': 1,\n",
      "          'photo': 1,\n",
      "          'shoot': 1,\n",
      "          'head': 1,\n",
      "          'seeing': 1,\n",
      "          'nmonkey': 1,\n",
      "          'really': 1,\n",
      "          'soundtrack': 1,\n",
      "          'pace': 1,\n",
      "          'zipped': 1,\n",
      "          'zagged': 1,\n",
      "          'established': 1,\n",
      "          'rhythm': 1,\n",
      "          'nagain': 1,\n",
      "          'note': 1,\n",
      "          'everyone': 1,\n",
      "          'guess': 1,\n",
      "          'laughed': 1,\n",
      "          'likely': 1,\n",
      "          'enjoy': 1,\n",
      "          'quips': 1,\n",
      "          'actual': 1,\n",
      "          'picture': 1,\n",
      "          'nif': 1,\n",
      "          'thought': 1,\n",
      "          'skip': 1,\n",
      "          'dodo': 1,\n",
      "          'bird': 1,\n",
      "          'go': 1,\n",
      "          'rent': 1,\n",
      "          'obvious': 1,\n",
      "          'influence': 1,\n",
      "          'nblue': 1,\n",
      "          'steel': 1,\n",
      "          'baby': 1,\n",
      "          'yeah': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'naustin': 1,\n",
      "          '2': 1,\n",
      "          'deuce': 1,\n",
      "          'bigalow': 1,\n",
      "          'wheres': 1,\n",
      "          'car': 1,\n",
      "          'freddy': 1,\n",
      "          'got': 1,\n",
      "          'fingered': 1,\n",
      "          'jay': 1,\n",
      "          'silent': 1,\n",
      "          'bob': 1,\n",
      "          'back': 1,\n",
      "          'joe': 1,\n",
      "          'dirt': 1,\n",
      "          'meet': 1,\n",
      "          'parents': 1,\n",
      "          'say': 1,\n",
      "          'isnt': 1,\n",
      "          '310': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'unzipped': 7,\n",
      "          'fashion': 6,\n",
      "          'mizrahi': 4,\n",
      "          'film': 3,\n",
      "          'designer': 3,\n",
      "          'show': 3,\n",
      "          'isaac': 2,\n",
      "          'documentary': 2,\n",
      "          'scenes': 2,\n",
      "          'nthe': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'like': 2,\n",
      "          'cindy': 2,\n",
      "          'crawford': 2,\n",
      "          'keeve': 2,\n",
      "          'mizrahis': 2,\n",
      "          'however': 2,\n",
      "          'nwhile': 2,\n",
      "          'industry': 2,\n",
      "          'everything': 2,\n",
      "          'look': 2,\n",
      "          'style': 2,\n",
      "          'almost': 2,\n",
      "          'variety': 2,\n",
      "          'including': 2,\n",
      "          'number': 2,\n",
      "          'models': 2,\n",
      "          'used': 2,\n",
      "          'mm': 2,\n",
      "          'blackandwhite': 2,\n",
      "          'color': 2,\n",
      "          'movie': 2,\n",
      "          'perspective': 2,\n",
      "          'cinematic': 1,\n",
      "          'portrait': 1,\n",
      "          'artist': 1,\n",
      "          'whose': 1,\n",
      "          'palette': 1,\n",
      "          'fabric': 1,\n",
      "          'nostensibly': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'requires': 1,\n",
      "          'stretching': 1,\n",
      "          'meaning': 1,\n",
      "          'nmany': 1,\n",
      "          'appear': 1,\n",
      "          'staged': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'cuttingandpasting': 1,\n",
      "          'done': 1,\n",
      "          'editing': 1,\n",
      "          'room': 1,\n",
      "          'cinema': 1,\n",
      "          'verite': 1,\n",
      "          'effect': 1,\n",
      "          'conceit': 1,\n",
      "          'genuine': 1,\n",
      "          'spontaneity': 1,\n",
      "          'premium': 1,\n",
      "          'everyone': 1,\n",
      "          'aware': 1,\n",
      "          'playing': 1,\n",
      "          'camera': 1,\n",
      "          'especially': 1,\n",
      "          'wouldbe': 1,\n",
      "          'actresses': 1,\n",
      "          'ndirector': 1,\n",
      "          'douglas': 1,\n",
      "          'lover': 1,\n",
      "          'time': 1,\n",
      "          'freely': 1,\n",
      "          'admits': 1,\n",
      "          'couldnt': 1,\n",
      "          'care': 1,\n",
      "          'less': 1,\n",
      "          'truth': 1,\n",
      "          'interested': 1,\n",
      "          'capturing': 1,\n",
      "          'spirit': 1,\n",
      "          'love': 1,\n",
      "          'ndespite': 1,\n",
      "          'violating': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'rule': 1,\n",
      "          'legitimate': 1,\n",
      "          'making': 1,\n",
      "          'remarkably': 1,\n",
      "          'enjoyable': 1,\n",
      "          'piece': 1,\n",
      "          'entertainment': 1,\n",
      "          'sheds': 1,\n",
      "          'little': 1,\n",
      "          'light': 1,\n",
      "          'behindthescenes': 1,\n",
      "          'world': 1,\n",
      "          'presents': 1,\n",
      "          'fascinating': 1,\n",
      "          'incomplete': 1,\n",
      "          'picture': 1,\n",
      "          'nthis': 1,\n",
      "          'man': 1,\n",
      "          'perfect': 1,\n",
      "          'subject': 1,\n",
      "          'kind': 1,\n",
      "          'study': 1,\n",
      "          'hes': 1,\n",
      "          'funny': 1,\n",
      "          'energetic': 1,\n",
      "          'eminently': 1,\n",
      "          'quotable': 1,\n",
      "          'nhe': 1,\n",
      "          'unusual': 1,\n",
      "          'views': 1,\n",
      "          'women': 1,\n",
      "          'wanting': 1,\n",
      "          'cows': 1,\n",
      "          'mary': 1,\n",
      "          'tyler': 1,\n",
      "          'moore': 1,\n",
      "          'jackie': 1,\n",
      "          'kennedy': 1,\n",
      "          'shaped': 1,\n",
      "          'country': 1,\n",
      "          'impossible': 1,\n",
      "          'nowadays': 1,\n",
      "          'without': 1,\n",
      "          'right': 1,\n",
      "          'dogs': 1,\n",
      "          'nunzipped': 1,\n",
      "          'also': 1,\n",
      "          'gives': 1,\n",
      "          'glimpse': 1,\n",
      "          'creative': 1,\n",
      "          'process': 1,\n",
      "          'turns': 1,\n",
      "          'idea': 1,\n",
      "          'dress': 1,\n",
      "          'nits': 1,\n",
      "          'certainly': 1,\n",
      "          'different': 1,\n",
      "          'anyone': 1,\n",
      "          'would': 1,\n",
      "          'imagine': 1,\n",
      "          'draws': 1,\n",
      "          'sources': 1,\n",
      "          'nanook': 1,\n",
      "          'north': 1,\n",
      "          'old': 1,\n",
      "          'bette': 1,\n",
      "          'davis': 1,\n",
      "          'movies': 1,\n",
      "          'enlists': 1,\n",
      "          'aid': 1,\n",
      "          'ouija': 1,\n",
      "          'board': 1,\n",
      "          'help': 1,\n",
      "          'form': 1,\n",
      "          'collection': 1,\n",
      "          'nin': 1,\n",
      "          'particular': 1,\n",
      "          'traces': 1,\n",
      "          'development': 1,\n",
      "          'fall': 1,\n",
      "          '1994': 1,\n",
      "          'line': 1,\n",
      "          'inception': 1,\n",
      "          'spring': 1,\n",
      "          'final': 1,\n",
      "          'highlights': 1,\n",
      "          'prominent': 1,\n",
      "          'naomi': 1,\n",
      "          'campbell': 1,\n",
      "          'kate': 1,\n",
      "          'bush': 1,\n",
      "          'linda': 1,\n",
      "          'evangelista': 1,\n",
      "          'non': 1,\n",
      "          'technical': 1,\n",
      "          'side': 1,\n",
      "          'interesting': 1,\n",
      "          'choices': 1,\n",
      "          'made': 1,\n",
      "          'filming': 1,\n",
      "          'na': 1,\n",
      "          'stocks': 1,\n",
      "          'super': 1,\n",
      "          '8': 1,\n",
      "          '16': 1,\n",
      "          '35': 1,\n",
      "          'nthere': 1,\n",
      "          'purpose': 1,\n",
      "          'beyond': 1,\n",
      "          'simple': 1,\n",
      "          'artiness': 1,\n",
      "          'stock': 1,\n",
      "          'often': 1,\n",
      "          'serves': 1,\n",
      "          'emotional': 1,\n",
      "          'key': 1,\n",
      "          'climactic': 1,\n",
      "          'audiences': 1,\n",
      "          'behindthe': 1,\n",
      "          'sequences': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'viewers': 1,\n",
      "          'put': 1,\n",
      "          'treatment': 1,\n",
      "          'isnt': 1,\n",
      "          'expose': 1,\n",
      "          'per': 1,\n",
      "          'se': 1,\n",
      "          'enough': 1,\n",
      "          'clips': 1,\n",
      "          'petulant': 1,\n",
      "          'make': 1,\n",
      "          'viewer': 1,\n",
      "          'realize': 1,\n",
      "          'tame': 1,\n",
      "          'robert': 1,\n",
      "          'altman': 1,\n",
      "          'ready': 1,\n",
      "          'wear': 1,\n",
      "          'noverall': 1,\n",
      "          'far': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'viewed': 1,\n",
      "          'succeed': 1,\n",
      "          'nwhen': 1,\n",
      "          'declares': 1,\n",
      "          'frustrating': 1,\n",
      "          'except': 1,\n",
      "          'designing': 1,\n",
      "          'clothes': 1,\n",
      "          'thats': 1,\n",
      "          'beautiful': 1,\n",
      "          'liberating': 1,\n",
      "          'fits': 1,\n",
      "          'perfectly': 1,\n",
      "          'image': 1,\n",
      "          'constructed': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dora': 4,\n",
      "          'nshe': 3,\n",
      "          'letters': 3,\n",
      "          'find': 3,\n",
      "          'josu': 3,\n",
      "          'montenegro': 2,\n",
      "          'station': 2,\n",
      "          'states': 2,\n",
      "          'lost': 2,\n",
      "          'love': 2,\n",
      "          'shes': 2,\n",
      "          'never': 2,\n",
      "          'son': 2,\n",
      "          'father': 2,\n",
      "          'religious': 2,\n",
      "          'like': 2,\n",
      "          'nit': 2,\n",
      "          'backdrop': 2,\n",
      "          'nthe': 2,\n",
      "          'amount': 2,\n",
      "          'true': 2,\n",
      "          'nhe': 2,\n",
      "          'discoveries': 2,\n",
      "          'fernanda': 1,\n",
      "          'sits': 1,\n",
      "          'behind': 1,\n",
      "          'makeshift': 1,\n",
      "          'desk': 1,\n",
      "          'rios': 1,\n",
      "          'major': 1,\n",
      "          'train': 1,\n",
      "          'colorful': 1,\n",
      "          'demeanor': 1,\n",
      "          'offers': 1,\n",
      "          'service': 1,\n",
      "          'unheard': 1,\n",
      "          'writes': 1,\n",
      "          'illiterate': 1,\n",
      "          'pass': 1,\n",
      "          'try': 1,\n",
      "          'relatives': 1,\n",
      "          'search': 1,\n",
      "          'debts': 1,\n",
      "          'nshes': 1,\n",
      "          'quirky': 1,\n",
      "          'elderly': 1,\n",
      "          'caring': 1,\n",
      "          'ntotally': 1,\n",
      "          'trustworthy': 1,\n",
      "          'right': 1,\n",
      "          'nnot': 1,\n",
      "          'chance': 1,\n",
      "          'nonce': 1,\n",
      "          'home': 1,\n",
      "          'sends': 1,\n",
      "          'saving': 1,\n",
      "          'money': 1,\n",
      "          'postage': 1,\n",
      "          'relishing': 1,\n",
      "          'drama': 1,\n",
      "          'contained': 1,\n",
      "          'therein': 1,\n",
      "          'neighbor': 1,\n",
      "          'irene': 1,\n",
      "          'mar': 1,\n",
      "          'lia': 1,\n",
      "          'p': 1,\n",
      "          'ra': 1,\n",
      "          'none': 1,\n",
      "          'sent': 1,\n",
      "          'young': 1,\n",
      "          'mother': 1,\n",
      "          'nineyear': 1,\n",
      "          'old': 1,\n",
      "          'looking': 1,\n",
      "          'nshortly': 1,\n",
      "          'thereafter': 1,\n",
      "          'gets': 1,\n",
      "          'hit': 1,\n",
      "          'bus': 1,\n",
      "          'orphaned': 1,\n",
      "          'ndays': 1,\n",
      "          'go': 1,\n",
      "          'boy': 1,\n",
      "          'named': 1,\n",
      "          'roams': 1,\n",
      "          'around': 1,\n",
      "          'hungry': 1,\n",
      "          'desperate': 1,\n",
      "          'somewhat': 1,\n",
      "          'clueless': 1,\n",
      "          'predictament': 1,\n",
      "          'nthrough': 1,\n",
      "          'series': 1,\n",
      "          'circumstances': 1,\n",
      "          'precious': 1,\n",
      "          'elaborate': 1,\n",
      "          'upon': 1,\n",
      "          'somehow': 1,\n",
      "          'takes': 1,\n",
      "          'responsibility': 1,\n",
      "          'trying': 1,\n",
      "          'nthis': 1,\n",
      "          'means': 1,\n",
      "          'leaving': 1,\n",
      "          'security': 1,\n",
      "          'rio': 1,\n",
      "          'traveling': 1,\n",
      "          'outskirts': 1,\n",
      "          'brazil': 1,\n",
      "          'unpaved': 1,\n",
      "          'roads': 1,\n",
      "          'devotees': 1,\n",
      "          'povertystricken': 1,\n",
      "          'become': 1,\n",
      "          'commonplace': 1,\n",
      "          'nfilms': 1,\n",
      "          'remind': 1,\n",
      "          'enjoy': 1,\n",
      "          'foreign': 1,\n",
      "          'films': 1,\n",
      "          'opportunity': 1,\n",
      "          'get': 1,\n",
      "          'fresh': 1,\n",
      "          'breath': 1,\n",
      "          'another': 1,\n",
      "          'part': 1,\n",
      "          'world': 1,\n",
      "          'distant': 1,\n",
      "          'entertainingly': 1,\n",
      "          'heartwrenchingly': 1,\n",
      "          'nand': 1,\n",
      "          'yet': 1,\n",
      "          'merely': 1,\n",
      "          'focus': 1,\n",
      "          'minute': 1,\n",
      "          'transformation': 1,\n",
      "          'learns': 1,\n",
      "          'little': 1,\n",
      "          'kid': 1,\n",
      "          'without': 1,\n",
      "          'cloying': 1,\n",
      "          'sentimental': 1,\n",
      "          'interesting': 1,\n",
      "          'dedication': 1,\n",
      "          'film': 1,\n",
      "          'ndora': 1,\n",
      "          'amoral': 1,\n",
      "          'scamartist': 1,\n",
      "          'could': 1,\n",
      "          'care': 1,\n",
      "          'less': 1,\n",
      "          'bickering': 1,\n",
      "          'candlelighting': 1,\n",
      "          'catholics': 1,\n",
      "          'versus': 1,\n",
      "          'bumpersticker': 1,\n",
      "          'mentality': 1,\n",
      "          'evangelicals': 1,\n",
      "          'nbut': 1,\n",
      "          'neither': 1,\n",
      "          'side': 1,\n",
      "          'trivialized': 1,\n",
      "          'even': 1,\n",
      "          'begins': 1,\n",
      "          'develop': 1,\n",
      "          'affection': 1,\n",
      "          'nondrinking': 1,\n",
      "          'evangelical': 1,\n",
      "          'sees': 1,\n",
      "          'problems': 1,\n",
      "          'initially': 1,\n",
      "          'nfernanda': 1,\n",
      "          'surprisingly': 1,\n",
      "          'got': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'delicate': 1,\n",
      "          'performance': 1,\n",
      "          'marvel': 1,\n",
      "          'vinicius': 1,\n",
      "          'de': 1,\n",
      "          'oliveira': 1,\n",
      "          'plays': 1,\n",
      "          'j': 1,\n",
      "          'r': 1,\n",
      "          'mie': 1,\n",
      "          'renier': 1,\n",
      "          '_la': 1,\n",
      "          'promesse_': 1,\n",
      "          'giorgio': 1,\n",
      "          'cantarini': 1,\n",
      "          '_life': 1,\n",
      "          'beautiful_': 1,\n",
      "          'prove': 1,\n",
      "          'acting': 1,\n",
      "          'may': 1,\n",
      "          'outside': 1,\n",
      "          'united': 1,\n",
      "          'natural': 1,\n",
      "          'grating': 1,\n",
      "          'nsend': 1,\n",
      "          'memo': 1,\n",
      "          'jonathan': 1,\n",
      "          'taylor': 1,\n",
      "          'thomas': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'star': 7,\n",
      "          'wars': 7,\n",
      "          'nthe': 7,\n",
      "          'nit': 6,\n",
      "          'jedi': 6,\n",
      "          'get': 5,\n",
      "          'see': 4,\n",
      "          'far': 4,\n",
      "          'phantom': 4,\n",
      "          'menace': 4,\n",
      "          'know': 4,\n",
      "          'although': 4,\n",
      "          'events': 3,\n",
      "          'ni': 3,\n",
      "          'film': 3,\n",
      "          'republic': 3,\n",
      "          'naboo': 3,\n",
      "          'anakin': 3,\n",
      "          'like': 3,\n",
      "          'often': 3,\n",
      "          'away': 3,\n",
      "          'feel': 3,\n",
      "          'years': 2,\n",
      "          'think': 2,\n",
      "          'actually': 2,\n",
      "          'seeing': 2,\n",
      "          'generated': 2,\n",
      "          'people': 2,\n",
      "          'place': 2,\n",
      "          'planet': 2,\n",
      "          'force': 2,\n",
      "          'way': 2,\n",
      "          'young': 2,\n",
      "          'skywalker': 2,\n",
      "          'boy': 2,\n",
      "          'trained': 2,\n",
      "          'give': 2,\n",
      "          'beginning': 2,\n",
      "          'computer': 2,\n",
      "          'though': 2,\n",
      "          'effects': 2,\n",
      "          'lacks': 2,\n",
      "          'human': 2,\n",
      "          'installment': 2,\n",
      "          'saga': 2,\n",
      "          'go': 2,\n",
      "          'things': 2,\n",
      "          'also': 2,\n",
      "          'didnt': 2,\n",
      "          'nostalgia': 2,\n",
      "          'exciting': 2,\n",
      "          'story': 2,\n",
      "          'works': 2,\n",
      "          'event': 1,\n",
      "          'upon': 1,\n",
      "          'us': 1,\n",
      "          'npeople': 1,\n",
      "          'waited': 1,\n",
      "          'twentytwo': 1,\n",
      "          'prequel': 1,\n",
      "          'diehard': 1,\n",
      "          'fans': 1,\n",
      "          'camping': 1,\n",
      "          'theaters': 1,\n",
      "          'months': 1,\n",
      "          'tickets': 1,\n",
      "          'dont': 1,\n",
      "          'america': 1,\n",
      "          'ever': 1,\n",
      "          'recover': 1,\n",
      "          'hurricane': 1,\n",
      "          'caused': 1,\n",
      "          'bit': 1,\n",
      "          'exaggeration': 1,\n",
      "          'say': 1,\n",
      "          'highly': 1,\n",
      "          'anticipated': 1,\n",
      "          'history': 1,\n",
      "          'nanyone': 1,\n",
      "          'tells': 1,\n",
      "          'either': 1,\n",
      "          'lying': 1,\n",
      "          'clueless': 1,\n",
      "          'clearly': 1,\n",
      "          'obvious': 1,\n",
      "          'waiting': 1,\n",
      "          'hype': 1,\n",
      "          'anticlimactic': 1,\n",
      "          'second': 1,\n",
      "          'coming': 1,\n",
      "          'lord': 1,\n",
      "          'could': 1,\n",
      "          'live': 1,\n",
      "          'kind': 1,\n",
      "          'buzz': 1,\n",
      "          'weak': 1,\n",
      "          'word': 1,\n",
      "          'epsode': 1,\n",
      "          'effortlessly': 1,\n",
      "          'nbut': 1,\n",
      "          'mean': 1,\n",
      "          'bad': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'terrific': 1,\n",
      "          'strongly': 1,\n",
      "          'suspect': 1,\n",
      "          'many': 1,\n",
      "          'dissappointed': 1,\n",
      "          'simply': 1,\n",
      "          'surrendered': 1,\n",
      "          'media': 1,\n",
      "          'machine': 1,\n",
      "          'inevitable': 1,\n",
      "          'backlash': 1,\n",
      "          'set': 1,\n",
      "          'decades': 1,\n",
      "          'original': 1,\n",
      "          '1977': 1,\n",
      "          'took': 1,\n",
      "          'focuses': 1,\n",
      "          'fledgling': 1,\n",
      "          'planets': 1,\n",
      "          'conflict': 1,\n",
      "          'raging': 1,\n",
      "          'trade': 1,\n",
      "          'federation': 1,\n",
      "          'angry': 1,\n",
      "          'tax': 1,\n",
      "          'raise': 1,\n",
      "          'recently': 1,\n",
      "          'put': 1,\n",
      "          'invaded': 1,\n",
      "          'small': 1,\n",
      "          'peaceful': 1,\n",
      "          'sent': 1,\n",
      "          'two': 1,\n",
      "          'knights': 1,\n",
      "          'actively': 1,\n",
      "          'communicate': 1,\n",
      "          'affectionately': 1,\n",
      "          'known': 1,\n",
      "          'quigon': 1,\n",
      "          'jinn': 1,\n",
      "          'liam': 1,\n",
      "          'neeson': 1,\n",
      "          'obiwan': 1,\n",
      "          'kenobi': 1,\n",
      "          'ewan': 1,\n",
      "          'mcgregor': 1,\n",
      "          'negotiate': 1,\n",
      "          'nunable': 1,\n",
      "          'stop': 1,\n",
      "          'tide': 1,\n",
      "          'occur': 1,\n",
      "          'queen': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'escape': 1,\n",
      "          'head': 1,\n",
      "          'coruscant': 1,\n",
      "          'try': 1,\n",
      "          'senate': 1,\n",
      "          'intervene': 1,\n",
      "          'non': 1,\n",
      "          'sidetracked': 1,\n",
      "          'called': 1,\n",
      "          'tatooine': 1,\n",
      "          'meet': 1,\n",
      "          'movies': 1,\n",
      "          'real': 1,\n",
      "          'focal': 1,\n",
      "          'point': 1,\n",
      "          'jake': 1,\n",
      "          'lloyd': 1,\n",
      "          'nhe': 1,\n",
      "          'innocent': 1,\n",
      "          'slave': 1,\n",
      "          'strong': 1,\n",
      "          'qui': 1,\n",
      "          'gon': 1,\n",
      "          'determined': 1,\n",
      "          'take': 1,\n",
      "          'counsel': 1,\n",
      "          'nas': 1,\n",
      "          'selfrespecting': 1,\n",
      "          'fan': 1,\n",
      "          'grow': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'birth': 1,\n",
      "          'luke': 1,\n",
      "          'nfrom': 1,\n",
      "          'evident': 1,\n",
      "          'actors': 1,\n",
      "          'naround': 1,\n",
      "          '70': 1,\n",
      "          'characters': 1,\n",
      "          'one': 1,\n",
      "          'form': 1,\n",
      "          'another': 1,\n",
      "          'seamless': 1,\n",
      "          'soul': 1,\n",
      "          'played': 1,\n",
      "          'incredibly': 1,\n",
      "          'instrumental': 1,\n",
      "          'part': 1,\n",
      "          'moviemaking': 1,\n",
      "          'decade': 1,\n",
      "          'cinema': 1,\n",
      "          'still': 1,\n",
      "          'art': 1,\n",
      "          'nearly': 1,\n",
      "          'defies': 1,\n",
      "          'nthis': 1,\n",
      "          'lightest': 1,\n",
      "          'thus': 1,\n",
      "          'plenty': 1,\n",
      "          'broad': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'around': 1,\n",
      "          'much': 1,\n",
      "          'courtesy': 1,\n",
      "          'irritating': 1,\n",
      "          'knew': 1,\n",
      "          'character': 1,\n",
      "          'named': 1,\n",
      "          'jarjar': 1,\n",
      "          'binks': 1,\n",
      "          'nhes': 1,\n",
      "          'essentially': 1,\n",
      "          'computeranimated': 1,\n",
      "          'sidekick': 1,\n",
      "          'says': 1,\n",
      "          'exqueeze': 1,\n",
      "          'nand': 1,\n",
      "          'mesa': 1,\n",
      "          'okeday': 1,\n",
      "          'amusing': 1,\n",
      "          'inherently': 1,\n",
      "          'annoying': 1,\n",
      "          'visual': 1,\n",
      "          'astounding': 1,\n",
      "          'director': 1,\n",
      "          'george': 1,\n",
      "          'lucas': 1,\n",
      "          'chickens': 1,\n",
      "          'cutting': 1,\n",
      "          'thrilling': 1,\n",
      "          'triumph': 1,\n",
      "          'nif': 1,\n",
      "          'plot': 1,\n",
      "          'acting': 1,\n",
      "          'makes': 1,\n",
      "          'imagination': 1,\n",
      "          'excitement': 1,\n",
      "          'climactic': 1,\n",
      "          'lightsaber': 1,\n",
      "          'battle': 1,\n",
      "          'oh': 1,\n",
      "          'come': 1,\n",
      "          'already': 1,\n",
      "          'among': 1,\n",
      "          'outrageously': 1,\n",
      "          'entertaining': 1,\n",
      "          'defines': 1,\n",
      "          'term': 1,\n",
      "          'popcorn': 1,\n",
      "          'nwhat': 1,\n",
      "          'made': 1,\n",
      "          'surrender': 1,\n",
      "          '12': 1,\n",
      "          'stars': 1,\n",
      "          'score': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'neven': 1,\n",
      "          'seem': 1,\n",
      "          'man': 1,\n",
      "          'scores': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'comes': 1,\n",
      "          'days': 1,\n",
      "          'work': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'brilliant': 1,\n",
      "          'nhis': 1,\n",
      "          'use': 1,\n",
      "          'opera': 1,\n",
      "          'climax': 1,\n",
      "          'really': 1,\n",
      "          'add': 1,\n",
      "          'punch': 1,\n",
      "          'ingenious': 1,\n",
      "          'utilizing': 1,\n",
      "          'imperial': 1,\n",
      "          'march': 1,\n",
      "          'sort': 1,\n",
      "          'prophecy': 1,\n",
      "          'chilling': 1,\n",
      "          'probably': 1,\n",
      "          'effective': 1,\n",
      "          'pop': 1,\n",
      "          'nwhen': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'ago': 1,\n",
      "          'galaxy': 1,\n",
      "          'familiar': 1,\n",
      "          'music': 1,\n",
      "          'plays': 1,\n",
      "          'words': 1,\n",
      "          'appear': 1,\n",
      "          'screen': 1,\n",
      "          'youll': 1,\n",
      "          'tingle': 1,\n",
      "          'even': 1,\n",
      "          'first': 1,\n",
      "          'came': 1,\n",
      "          '77': 1,\n",
      "          'feels': 1,\n",
      "          'oddly': 1,\n",
      "          'introduced': 1,\n",
      "          'whose': 1,\n",
      "          'innocence': 1,\n",
      "          'taken': 1,\n",
      "          'soon': 1,\n",
      "          'cross': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'perfect': 1,\n",
      "          'example': 1,\n",
      "          'dramatic': 1,\n",
      "          'irony': 1,\n",
      "          'masters': 1,\n",
      "          'aspire': 1,\n",
      "          'arts': 1,\n",
      "          'harm': 1,\n",
      "          'good': 1,\n",
      "          'nwe': 1,\n",
      "          'involved': 1,\n",
      "          'cherished': 1,\n",
      "          'lacking': 1,\n",
      "          'aspects': 1,\n",
      "          'worthy': 1,\n",
      "          'action': 1,\n",
      "          'flick': 1,\n",
      "          'visually': 1,\n",
      "          'eyepopping': 1,\n",
      "          'paralyzingly': 1,\n",
      "          'elicitor': 1,\n",
      "          'memories': 1,\n",
      "          'piece': 1,\n",
      "          'exquisite': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'na': 4,\n",
      "          'life': 4,\n",
      "          'less': 4,\n",
      "          'ordinary': 4,\n",
      "          'movie': 3,\n",
      "          'somewhat': 3,\n",
      "          'film': 3,\n",
      "          'comes': 2,\n",
      "          'nsome': 2,\n",
      "          'people': 2,\n",
      "          'call': 2,\n",
      "          'grasp': 2,\n",
      "          'definitely': 2,\n",
      "          'typical': 2,\n",
      "          'audience': 2,\n",
      "          'works': 2,\n",
      "          'us': 2,\n",
      "          'trainspotting': 2,\n",
      "          'know': 2,\n",
      "          'mcgregor': 2,\n",
      "          'nyou': 2,\n",
      "          'bet': 2,\n",
      "          'even': 2,\n",
      "          'dollar': 2,\n",
      "          'sometimes': 1,\n",
      "          'along': 1,\n",
      "          'falls': 1,\n",
      "          'askew': 1,\n",
      "          'rest': 1,\n",
      "          'original': 1,\n",
      "          'artsy': 1,\n",
      "          'abstract': 1,\n",
      "          'simply': 1,\n",
      "          'trash': 1,\n",
      "          'sure': 1,\n",
      "          'bring': 1,\n",
      "          'mixed': 1,\n",
      "          'feelings': 1,\n",
      "          'ndefinitely': 1,\n",
      "          'generationx': 1,\n",
      "          'aimed': 1,\n",
      "          'everything': 1,\n",
      "          'claymation': 1,\n",
      "          'profane': 1,\n",
      "          'angels': 1,\n",
      "          'karaokebased': 1,\n",
      "          'musical': 1,\n",
      "          'dream': 1,\n",
      "          'sequence': 1,\n",
      "          'nwhew': 1,\n",
      "          'nanyone': 1,\n",
      "          '30s': 1,\n",
      "          'probably': 1,\n",
      "          'going': 1,\n",
      "          'enjoyed': 1,\n",
      "          'nits': 1,\n",
      "          'silly': 1,\n",
      "          'outrageous': 1,\n",
      "          'romance': 1,\n",
      "          'story': 1,\n",
      "          'right': 1,\n",
      "          'lot': 1,\n",
      "          'hype': 1,\n",
      "          'surrounding': 1,\n",
      "          'due': 1,\n",
      "          'fact': 1,\n",
      "          'team': 1,\n",
      "          'brought': 1,\n",
      "          'nwell': 1,\n",
      "          'sorry': 1,\n",
      "          'folks': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'cant': 1,\n",
      "          'really': 1,\n",
      "          'compare': 1,\n",
      "          'nwhether': 1,\n",
      "          'films': 1,\n",
      "          'favor': 1,\n",
      "          'beyond': 1,\n",
      "          'nbut': 1,\n",
      "          'ewan': 1,\n",
      "          'never': 1,\n",
      "          'pleasure': 1,\n",
      "          'watching': 1,\n",
      "          'charmed': 1,\n",
      "          'nhe': 1,\n",
      "          'great': 1,\n",
      "          'ncameron': 1,\n",
      "          'diazs': 1,\n",
      "          'character': 1,\n",
      "          'uneven': 1,\n",
      "          'bit': 1,\n",
      "          'hard': 1,\n",
      "          'nthe': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'difficult': 1,\n",
      "          'care': 1,\n",
      "          'thus': 1,\n",
      "          'discouraging': 1,\n",
      "          'hopes': 1,\n",
      "          'seeing': 1,\n",
      "          'unite': 1,\n",
      "          'immediately': 1,\n",
      "          'sucked': 1,\n",
      "          'caring': 1,\n",
      "          'identifying': 1,\n",
      "          'nmisguided': 1,\n",
      "          'nloveable': 1,\n",
      "          'delight': 1,\n",
      "          'bonus': 1,\n",
      "          'realized': 1,\n",
      "          'filmed': 1,\n",
      "          'hometown': 1,\n",
      "          'salt': 1,\n",
      "          'lake': 1,\n",
      "          'city': 1,\n",
      "          'utah': 1,\n",
      "          'nthis': 1,\n",
      "          'one': 1,\n",
      "          'thing': 1,\n",
      "          'didnt': 1,\n",
      "          'sat': 1,\n",
      "          'five': 1,\n",
      "          'order': 1,\n",
      "          'nachos': 1,\n",
      "          'three': 1,\n",
      "          'coke': 1,\n",
      "          'nmaybe': 1,\n",
      "          'knowing': 1,\n",
      "          'premise': 1,\n",
      "          'behind': 1,\n",
      "          'made': 1,\n",
      "          'pleasant': 1,\n",
      "          'surprise': 1,\n",
      "          'think': 1,\n",
      "          'known': 1,\n",
      "          'would': 1,\n",
      "          'happy': 1,\n",
      "          'quirky': 1,\n",
      "          'eccentric': 1,\n",
      "          'downright': 1,\n",
      "          'charming': 1,\n",
      "          'nnot': 1,\n",
      "          'everyone': 1,\n",
      "          'definite': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'night': 1,\n",
      "          'movies': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'thing': 9,\n",
      "          'hanks': 4,\n",
      "          'nice': 3,\n",
      "          'wonders': 3,\n",
      "          'nthe': 3,\n",
      "          'film': 3,\n",
      "          'days': 3,\n",
      "          'tom': 2,\n",
      "          'hankss': 2,\n",
      "          'moment': 2,\n",
      "          'nit': 2,\n",
      "          'becomes': 2,\n",
      "          '60s': 2,\n",
      "          'nostalgia': 2,\n",
      "          'bland': 2,\n",
      "          '1964': 2,\n",
      "          'theres': 2,\n",
      "          'lead': 2,\n",
      "          'films': 2,\n",
      "          'scott': 2,\n",
      "          'success': 2,\n",
      "          'tyler': 2,\n",
      "          'innocent': 2,\n",
      "          'spirit': 2,\n",
      "          'period': 2,\n",
      "          'music': 2,\n",
      "          'long': 2,\n",
      "          'end': 2,\n",
      "          'work': 2,\n",
      "          'song': 2,\n",
      "          'try': 2,\n",
      "          'n': 1,\n",
      "          'r': 1,\n",
      "          'screenwriting': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'qualities': 1,\n",
      "          'would': 1,\n",
      "          'associate': 1,\n",
      "          'beloved': 1,\n",
      "          'screen': 1,\n",
      "          'actor': 1,\n",
      "          'fun': 1,\n",
      "          'lively': 1,\n",
      "          'ohsonice': 1,\n",
      "          'latter': 1,\n",
      "          'quality': 1,\n",
      "          'however': 1,\n",
      "          'hindrance': 1,\n",
      "          'trifle': 1,\n",
      "          'sweet': 1,\n",
      "          'teeters': 1,\n",
      "          'becoming': 1,\n",
      "          'milquetoast': 1,\n",
      "          'nthat': 1,\n",
      "          'focuses': 1,\n",
      "          'teen': 1,\n",
      "          'rock': 1,\n",
      "          'band': 1,\n",
      "          'erie': 1,\n",
      "          'pennsylvania': 1,\n",
      "          'suddenly': 1,\n",
      "          'thrust': 1,\n",
      "          'national': 1,\n",
      "          'spotlight': 1,\n",
      "          'score': 1,\n",
      "          'major': 1,\n",
      "          'dance': 1,\n",
      "          'hit': 1,\n",
      "          'called': 1,\n",
      "          'course': 1,\n",
      "          'groups': 1,\n",
      "          'members': 1,\n",
      "          'naturally': 1,\n",
      "          'diverse': 1,\n",
      "          'group': 1,\n",
      "          'brooding': 1,\n",
      "          'singer': 1,\n",
      "          'songwriter': 1,\n",
      "          'jimmy': 1,\n",
      "          'johnathon': 1,\n",
      "          'schaech': 1,\n",
      "          'girlcrazy': 1,\n",
      "          'lenny': 1,\n",
      "          'steve': 1,\n",
      "          'zahn': 1,\n",
      "          'guitarist': 1,\n",
      "          'goofy': 1,\n",
      "          'geeky': 1,\n",
      "          'type': 1,\n",
      "          'known': 1,\n",
      "          'bass': 1,\n",
      "          'player': 1,\n",
      "          'ethan': 1,\n",
      "          'embry': 1,\n",
      "          'center': 1,\n",
      "          'guy': 1,\n",
      "          'everett': 1,\n",
      "          'drummer': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'aspirations': 1,\n",
      "          'jazz': 1,\n",
      "          'nalong': 1,\n",
      "          'ride': 1,\n",
      "          'jimmys': 1,\n",
      "          'perpetually': 1,\n",
      "          'neglected': 1,\n",
      "          'galpal': 1,\n",
      "          'faye': 1,\n",
      "          'liv': 1,\n",
      "          'nhanks': 1,\n",
      "          'proves': 1,\n",
      "          'capable': 1,\n",
      "          'writerdirector': 1,\n",
      "          'deftly': 1,\n",
      "          'recreating': 1,\n",
      "          'calls': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'reflected': 1,\n",
      "          'clothes': 1,\n",
      "          'settings': 1,\n",
      "          'also': 1,\n",
      "          'like': 1,\n",
      "          'recent': 1,\n",
      "          'grace': 1,\n",
      "          'heart': 1,\n",
      "          'expressly': 1,\n",
      "          'written': 1,\n",
      "          'hand': 1,\n",
      "          'writing': 1,\n",
      "          'four': 1,\n",
      "          'tunesbut': 1,\n",
      "          'infectious': 1,\n",
      "          'title': 1,\n",
      "          'cut': 1,\n",
      "          'adam': 1,\n",
      "          'schlesinger': 1,\n",
      "          'guaranteed': 1,\n",
      "          'stay': 1,\n",
      "          'head': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'still': 1,\n",
      "          'playing': 1,\n",
      "          'mind': 1,\n",
      "          'write': 1,\n",
      "          'come': 1,\n",
      "          'surprise': 1,\n",
      "          'director': 1,\n",
      "          'works': 1,\n",
      "          'well': 1,\n",
      "          'actors': 1,\n",
      "          'eliciting': 1,\n",
      "          'charming': 1,\n",
      "          'likable': 1,\n",
      "          'entire': 1,\n",
      "          'cast': 1,\n",
      "          'notably': 1,\n",
      "          'lookalike': 1,\n",
      "          'remarkable': 1,\n",
      "          'delivering': 1,\n",
      "          'biggest': 1,\n",
      "          'best': 1,\n",
      "          'dramatic': 1,\n",
      "          'young': 1,\n",
      "          'ensemble': 1,\n",
      "          'natural': 1,\n",
      "          'truly': 1,\n",
      "          'convince': 1,\n",
      "          'teens': 1,\n",
      "          'early': 1,\n",
      "          'appear': 1,\n",
      "          '90s': 1,\n",
      "          'grungers': 1,\n",
      "          'playacting': 1,\n",
      "          'retro': 1,\n",
      "          'nyet': 1,\n",
      "          'light': 1,\n",
      "          'frothy': 1,\n",
      "          'charms': 1,\n",
      "          'nearly': 1,\n",
      "          'fault': 1,\n",
      "          'nwhile': 1,\n",
      "          'unbridled': 1,\n",
      "          'innocence': 1,\n",
      "          'refreshing': 1,\n",
      "          'change': 1,\n",
      "          'sinful': 1,\n",
      "          'cinema': 1,\n",
      "          'around': 1,\n",
      "          'enough': 1,\n",
      "          'conflict': 1,\n",
      "          'keep': 1,\n",
      "          'things': 1,\n",
      "          'consistently': 1,\n",
      "          'interesting': 1,\n",
      "          'neveryone': 1,\n",
      "          'happy': 1,\n",
      "          'basking': 1,\n",
      "          'glow': 1,\n",
      "          'overnight': 1,\n",
      "          'marvelling': 1,\n",
      "          'allexcept': 1,\n",
      "          'toward': 1,\n",
      "          'even': 1,\n",
      "          'tone': 1,\n",
      "          'quickly': 1,\n",
      "          'reverts': 1,\n",
      "          'sweetness': 1,\n",
      "          'ending': 1,\n",
      "          'appropriately': 1,\n",
      "          'feelgood': 1,\n",
      "          'note': 1,\n",
      "          'nthere': 1,\n",
      "          'isnt': 1,\n",
      "          'much': 1,\n",
      "          'edge': 1,\n",
      "          'throughout': 1,\n",
      "          'thingthe': 1,\n",
      "          'remotely': 1,\n",
      "          'edgy': 1,\n",
      "          'turn': 1,\n",
      "          'managerand': 1,\n",
      "          'thus': 1,\n",
      "          'danger': 1,\n",
      "          'nbut': 1,\n",
      "          'little': 1,\n",
      "          'niceness': 1,\n",
      "          'goes': 1,\n",
      "          'way': 1,\n",
      "          'denying': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'impossible': 1,\n",
      "          'hate': 1,\n",
      "          'nits': 1,\n",
      "          'inoffensive': 1,\n",
      "          'enjoyable': 1,\n",
      "          'piece': 1,\n",
      "          'sure': 1,\n",
      "          'leave': 1,\n",
      "          'audiences': 1,\n",
      "          'smiling': 1,\n",
      "          'humming': 1,\n",
      "          'singing': 1,\n",
      "          'quite': 1,\n",
      "          'npossibly': 1,\n",
      "          'nto': 1,\n",
      "          'paraphrase': 1,\n",
      "          'passage': 1,\n",
      "          'though': 1,\n",
      "          'forget': 1,\n",
      "          'hard': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'play': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'doctor': 10,\n",
      "          'nthe': 6,\n",
      "          'master': 5,\n",
      "          'movie': 5,\n",
      "          'time': 4,\n",
      "          'series': 4,\n",
      "          'daleks': 4,\n",
      "          'good': 4,\n",
      "          'role': 4,\n",
      "          'would': 4,\n",
      "          'lot': 3,\n",
      "          'eric': 3,\n",
      "          'roberts': 3,\n",
      "          'nis': 3,\n",
      "          'shows': 3,\n",
      "          'star': 3,\n",
      "          'back': 2,\n",
      "          'motto': 2,\n",
      "          'pilot': 2,\n",
      "          'fox': 2,\n",
      "          'network': 2,\n",
      "          'revival': 2,\n",
      "          'british': 2,\n",
      "          'show': 2,\n",
      "          'smart': 2,\n",
      "          'news': 2,\n",
      "          'people': 2,\n",
      "          'well': 2,\n",
      "          'called': 2,\n",
      "          'including': 2,\n",
      "          'appears': 2,\n",
      "          'played': 2,\n",
      "          'acting': 2,\n",
      "          'mcgann': 2,\n",
      "          'nhe': 2,\n",
      "          'actor': 2,\n",
      "          'ashbrook': 2,\n",
      "          'dr': 2,\n",
      "          'grace': 2,\n",
      "          'holloway': 2,\n",
      "          'companion': 2,\n",
      "          'kisses': 2,\n",
      "          'screen': 2,\n",
      "          'female': 2,\n",
      "          'american': 2,\n",
      "          'chang': 2,\n",
      "          'problem': 2,\n",
      "          'always': 2,\n",
      "          'occasion': 2,\n",
      "          'said': 2,\n",
      "          'like': 2,\n",
      "          'less': 2,\n",
      "          'one': 2,\n",
      "          'ni': 2,\n",
      "          'theyre': 2,\n",
      "          'fans': 2,\n",
      "          'script': 2,\n",
      "          'whole': 2,\n",
      "          'plot': 2,\n",
      "          'help': 2,\n",
      "          'wouldve': 2,\n",
      "          'hes': 1,\n",
      "          'nwas': 1,\n",
      "          'television': 1,\n",
      "          'call': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'says': 1,\n",
      "          'cult': 1,\n",
      "          'classic': 1,\n",
      "          'tv': 1,\n",
      "          'spawned': 1,\n",
      "          'means': 1,\n",
      "          'execs': 1,\n",
      "          'exactly': 1,\n",
      "          'know': 1,\n",
      "          'chosen': 1,\n",
      "          'simple': 1,\n",
      "          'lord': 1,\n",
      "          'scientist': 1,\n",
      "          'thirteen': 1,\n",
      "          'lives': 1,\n",
      "          'traveled': 1,\n",
      "          'around': 1,\n",
      "          'type': 1,\n",
      "          'forty': 1,\n",
      "          'spaceship': 1,\n",
      "          'tardis': 1,\n",
      "          'outsmarting': 1,\n",
      "          'kind': 1,\n",
      "          'alien': 1,\n",
      "          'baddies': 1,\n",
      "          'evil': 1,\n",
      "          'feature': 1,\n",
      "          'badly': 1,\n",
      "          'nas': 1,\n",
      "          'something': 1,\n",
      "          'missing': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'really': 1,\n",
      "          'nhell': 1,\n",
      "          'npaul': 1,\n",
      "          'seven': 1,\n",
      "          'guys': 1,\n",
      "          'whove': 1,\n",
      "          'predecessor': 1,\n",
      "          'offscreen': 1,\n",
      "          'friend': 1,\n",
      "          'sylvester': 1,\n",
      "          'mccoy': 1,\n",
      "          'regeneration': 1,\n",
      "          'scene': 1,\n",
      "          'looks': 1,\n",
      "          'right': 1,\n",
      "          'brilliant': 1,\n",
      "          'slips': 1,\n",
      "          'effortlessly': 1,\n",
      "          'way': 1,\n",
      "          'two': 1,\n",
      "          'favorites': 1,\n",
      "          'jon': 1,\n",
      "          'pertwee': 1,\n",
      "          'tom': 1,\n",
      "          'baker': 1,\n",
      "          'ndaphne': 1,\n",
      "          'brings': 1,\n",
      "          'class': 1,\n",
      "          'doctors': 1,\n",
      "          'first': 1,\n",
      "          'typical': 1,\n",
      "          'screams': 1,\n",
      "          'spends': 1,\n",
      "          'free': 1,\n",
      "          'making': 1,\n",
      "          'coffee': 1,\n",
      "          'tough': 1,\n",
      "          'spunky': 1,\n",
      "          'nyoung': 1,\n",
      "          'yee': 1,\n",
      "          'jee': 1,\n",
      "          'tso': 1,\n",
      "          'promise': 1,\n",
      "          'lee': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'stuff': 1,\n",
      "          'usually': 1,\n",
      "          'plays': 1,\n",
      "          'punk': 1,\n",
      "          'kid': 1,\n",
      "          'dies': 1,\n",
      "          'end': 1,\n",
      "          'film': 1,\n",
      "          'included': 1,\n",
      "          'imho': 1,\n",
      "          'wastes': 1,\n",
      "          'talent': 1,\n",
      "          'none': 1,\n",
      "          'say': 1,\n",
      "          'mcganns': 1,\n",
      "          'dress': 1,\n",
      "          'nbut': 1,\n",
      "          'broke': 1,\n",
      "          'slowly': 1,\n",
      "          'wounded': 1,\n",
      "          'sounding': 1,\n",
      "          'song': 1,\n",
      "          'lyric': 1,\n",
      "          'ndress': 1,\n",
      "          'nfor': 1,\n",
      "          'nyou': 1,\n",
      "          'need': 1,\n",
      "          'slow': 1,\n",
      "          'reliant': 1,\n",
      "          'moving': 1,\n",
      "          'hands': 1,\n",
      "          'act': 1,\n",
      "          'whos': 1,\n",
      "          'also': 1,\n",
      "          'nexecutive': 1,\n",
      "          'producer': 1,\n",
      "          'phil': 1,\n",
      "          'segal': 1,\n",
      "          'casted': 1,\n",
      "          'insisted': 1,\n",
      "          'dunno': 1,\n",
      "          'thought': 1,\n",
      "          'casting': 1,\n",
      "          'reading': 1,\n",
      "          'flash': 1,\n",
      "          'rides': 1,\n",
      "          'sisters': 1,\n",
      "          'coattails': 1,\n",
      "          'hit': 1,\n",
      "          'makes': 1,\n",
      "          'nothing': 1,\n",
      "          'past': 1,\n",
      "          'nthey': 1,\n",
      "          'references': 1,\n",
      "          'subtle': 1,\n",
      "          'non': 1,\n",
      "          'notice': 1,\n",
      "          'whovians': 1,\n",
      "          'classy': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'featuring': 1,\n",
      "          'spit': 1,\n",
      "          'slime': 1,\n",
      "          'mouth': 1,\n",
      "          'nice': 1,\n",
      "          'dialogue': 1,\n",
      "          'love': 1,\n",
      "          'stand': 1,\n",
      "          'alone': 1,\n",
      "          'viewing': 1,\n",
      "          'nonfans': 1,\n",
      "          'enjoy': 1,\n",
      "          'nso': 1,\n",
      "          'nsimple': 1,\n",
      "          'last': 1,\n",
      "          'legs': 1,\n",
      "          'sends': 1,\n",
      "          'rescue': 1,\n",
      "          'put': 1,\n",
      "          'trial': 1,\n",
      "          'planet': 1,\n",
      "          'skaro': 1,\n",
      "          'exterminate': 1,\n",
      "          'attempts': 1,\n",
      "          'take': 1,\n",
      "          'remains': 1,\n",
      "          'gallifrey': 1,\n",
      "          'accidentally': 1,\n",
      "          'land': 1,\n",
      "          'san': 1,\n",
      "          'francisco': 1,\n",
      "          '1999': 1,\n",
      "          'december': 1,\n",
      "          '31': 1,\n",
      "          'young': 1,\n",
      "          'street': 1,\n",
      "          'hood': 1,\n",
      "          'lees': 1,\n",
      "          'opens': 1,\n",
      "          'eye': 1,\n",
      "          'harmony': 1,\n",
      "          'suck': 1,\n",
      "          'earth': 1,\n",
      "          'midnight': 1,\n",
      "          'surgeon': 1,\n",
      "          'doesnt': 1,\n",
      "          'close': 1,\n",
      "          'nvirtually': 1,\n",
      "          'told': 1,\n",
      "          'featured': 1,\n",
      "          'started': 1,\n",
      "          'courtroom': 1,\n",
      "          'drama': 1,\n",
      "          'rewriting': 1,\n",
      "          'went': 1,\n",
      "          'set': 1,\n",
      "          'nthat': 1,\n",
      "          'made': 1,\n",
      "          'hell': 1,\n",
      "          'interesting': 1,\n",
      "          'gotten': 1,\n",
      "          'four': 1,\n",
      "          'rating': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 11,\n",
      "          'life': 7,\n",
      "          'burnham': 6,\n",
      "          'performance': 6,\n",
      "          'film': 5,\n",
      "          'lester': 5,\n",
      "          'man': 5,\n",
      "          'nhis': 5,\n",
      "          'growing': 5,\n",
      "          'nthe': 5,\n",
      "          'character': 5,\n",
      "          'almost': 5,\n",
      "          'years': 5,\n",
      "          'bening': 4,\n",
      "          'beauty': 4,\n",
      "          'birch': 4,\n",
      "          'chris': 4,\n",
      "          'daughter': 4,\n",
      "          'family': 4,\n",
      "          'spacey': 3,\n",
      "          'american': 3,\n",
      "          'bentley': 3,\n",
      "          'cooper': 3,\n",
      "          'ball': 3,\n",
      "          'wife': 3,\n",
      "          'nand': 3,\n",
      "          'job': 3,\n",
      "          'starts': 3,\n",
      "          'nshe': 3,\n",
      "          'best': 3,\n",
      "          'young': 3,\n",
      "          'also': 3,\n",
      "          'come': 3,\n",
      "          'characters': 3,\n",
      "          'fitts': 3,\n",
      "          'caught': 3,\n",
      "          'subtle': 3,\n",
      "          'carolyn': 3,\n",
      "          'jinks': 2,\n",
      "          'cohen': 2,\n",
      "          'production': 2,\n",
      "          'kevin': 2,\n",
      "          'annette': 2,\n",
      "          'thora': 2,\n",
      "          'allison': 2,\n",
      "          'janney': 2,\n",
      "          'mena': 2,\n",
      "          'suvari': 2,\n",
      "          'wes': 2,\n",
      "          'alan': 2,\n",
      "          'designer': 2,\n",
      "          'conrad': 2,\n",
      "          'hall': 2,\n",
      "          'directed': 2,\n",
      "          'sam': 2,\n",
      "          'mendes': 2,\n",
      "          'think': 2,\n",
      "          'im': 2,\n",
      "          'ni': 2,\n",
      "          'lost': 2,\n",
      "          'something': 2,\n",
      "          'didnt': 2,\n",
      "          'dialogue': 2,\n",
      "          'year': 2,\n",
      "          'old': 2,\n",
      "          'suffering': 2,\n",
      "          'series': 2,\n",
      "          'ncarolyn': 2,\n",
      "          'prototypical': 2,\n",
      "          'career': 2,\n",
      "          'woman': 2,\n",
      "          'home': 2,\n",
      "          'denial': 2,\n",
      "          'self': 2,\n",
      "          'resentment': 2,\n",
      "          'na': 2,\n",
      "          'girl': 2,\n",
      "          'frightening': 2,\n",
      "          'nnot': 2,\n",
      "          'ncolonel': 2,\n",
      "          'angry': 2,\n",
      "          'ricky': 2,\n",
      "          'next': 2,\n",
      "          'door': 2,\n",
      "          'many': 2,\n",
      "          'hit': 2,\n",
      "          'insightful': 2,\n",
      "          'depth': 2,\n",
      "          'tries': 2,\n",
      "          'time': 2,\n",
      "          'marvelous': 2,\n",
      "          'turns': 2,\n",
      "          'become': 2,\n",
      "          'nmr': 2,\n",
      "          'may': 2,\n",
      "          'nthora': 2,\n",
      "          'cast': 2,\n",
      "          'child': 2,\n",
      "          'yet': 2,\n",
      "          'finn': 2,\n",
      "          'complete': 2,\n",
      "          'simply': 2,\n",
      "          'dreamworks': 1,\n",
      "          'pictures': 1,\n",
      "          'presents': 1,\n",
      "          'company': 1,\n",
      "          'peter': 1,\n",
      "          'gallagher': 1,\n",
      "          'coproducers': 1,\n",
      "          'stan': 1,\n",
      "          'wlodkowski': 1,\n",
      "          'music': 1,\n",
      "          'thomas': 1,\n",
      "          'newman': 1,\n",
      "          'costume': 1,\n",
      "          'julie': 1,\n",
      "          'weiss': 1,\n",
      "          'editor': 1,\n",
      "          'tariq': 1,\n",
      "          'anway': 1,\n",
      "          'greenbury': 1,\n",
      "          'naomi': 1,\n",
      "          'shohan': 1,\n",
      "          'director': 1,\n",
      "          'photography': 1,\n",
      "          'l': 1,\n",
      "          'c': 1,\n",
      "          'nproduced': 1,\n",
      "          'bruce': 1,\n",
      "          'dan': 1,\n",
      "          'written': 1,\n",
      "          'n': 1,\n",
      "          'gigantic': 1,\n",
      "          'loser': 1,\n",
      "          'theyre': 1,\n",
      "          'right': 1,\n",
      "          'always': 1,\n",
      "          'feel': 1,\n",
      "          'sedated': 1,\n",
      "          'nwith': 1,\n",
      "          'piece': 1,\n",
      "          'fully': 1,\n",
      "          'introduced': 1,\n",
      "          '42': 1,\n",
      "          'trapped': 1,\n",
      "          'within': 1,\n",
      "          'nlester': 1,\n",
      "          'works': 1,\n",
      "          'advertising': 1,\n",
      "          'agency': 1,\n",
      "          'dissatisfaction': 1,\n",
      "          'midlife': 1,\n",
      "          'crisis': 1,\n",
      "          'nestranged': 1,\n",
      "          'crack': 1,\n",
      "          'stress': 1,\n",
      "          'becomes': 1,\n",
      "          'nothing': 1,\n",
      "          'mastubatory': 1,\n",
      "          'fantasies': 1,\n",
      "          'sullen': 1,\n",
      "          'apathy': 1,\n",
      "          'homemaker': 1,\n",
      "          'carefully': 1,\n",
      "          'tends': 1,\n",
      "          'rose': 1,\n",
      "          'garden': 1,\n",
      "          'decorates': 1,\n",
      "          'furnishings': 1,\n",
      "          'nbut': 1,\n",
      "          'inside': 1,\n",
      "          'desperate': 1,\n",
      "          'nunsuccessful': 1,\n",
      "          'profession': 1,\n",
      "          'real': 1,\n",
      "          'estate': 1,\n",
      "          'agent': 1,\n",
      "          'drives': 1,\n",
      "          'states': 1,\n",
      "          'loathing': 1,\n",
      "          'feed': 1,\n",
      "          'towards': 1,\n",
      "          'third': 1,\n",
      "          'member': 1,\n",
      "          'antifamily': 1,\n",
      "          'jane': 1,\n",
      "          'carolyns': 1,\n",
      "          'going': 1,\n",
      "          'typical': 1,\n",
      "          'stages': 1,\n",
      "          'adolescence': 1,\n",
      "          'terms': 1,\n",
      "          'families': 1,\n",
      "          'dysfunction': 1,\n",
      "          'nthis': 1,\n",
      "          'funny': 1,\n",
      "          'slice': 1,\n",
      "          'refreshingly': 1,\n",
      "          'simple': 1,\n",
      "          'given': 1,\n",
      "          'less': 1,\n",
      "          'needed': 1,\n",
      "          'identify': 1,\n",
      "          'nsome': 1,\n",
      "          'telling': 1,\n",
      "          'serve': 1,\n",
      "          'highlight': 1,\n",
      "          'nmost': 1,\n",
      "          'notably': 1,\n",
      "          'barbara': 1,\n",
      "          'catatonic': 1,\n",
      "          'retired': 1,\n",
      "          'marine': 1,\n",
      "          'colonel': 1,\n",
      "          'seems': 1,\n",
      "          'either': 1,\n",
      "          'recovering': 1,\n",
      "          'stroke': 1,\n",
      "          'frightened': 1,\n",
      "          'rage': 1,\n",
      "          'singularly': 1,\n",
      "          'son': 1,\n",
      "          'moved': 1,\n",
      "          'neighborhood': 1,\n",
      "          'burnhams': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'neighbors': 1,\n",
      "          'nanymore': 1,\n",
      "          'detail': 1,\n",
      "          'personalities': 1,\n",
      "          'marvelously': 1,\n",
      "          'diverse': 1,\n",
      "          'would': 1,\n",
      "          'deprive': 1,\n",
      "          'pleasures': 1,\n",
      "          'surprises': 1,\n",
      "          'nalan': 1,\n",
      "          'coexecutive': 1,\n",
      "          'producer': 1,\n",
      "          'tv': 1,\n",
      "          'cybil': 1,\n",
      "          'creator': 1,\n",
      "          'new': 1,\n",
      "          'sitcom': 1,\n",
      "          'oh': 1,\n",
      "          'grow': 1,\n",
      "          'fashioned': 1,\n",
      "          'expertly': 1,\n",
      "          'tuned': 1,\n",
      "          'screenplays': 1,\n",
      "          'screen': 1,\n",
      "          'past': 1,\n",
      "          'ten': 1,\n",
      "          'rings': 1,\n",
      "          'falsely': 1,\n",
      "          'personality': 1,\n",
      "          'achingly': 1,\n",
      "          'honest': 1,\n",
      "          'plot': 1,\n",
      "          'detailing': 1,\n",
      "          'last': 1,\n",
      "          'find': 1,\n",
      "          'worth': 1,\n",
      "          'resoundingly': 1,\n",
      "          'cliched': 1,\n",
      "          'original': 1,\n",
      "          'bring': 1,\n",
      "          'mind': 1,\n",
      "          'work': 1,\n",
      "          'graduate': 1,\n",
      "          'lolita': 1,\n",
      "          'nkevin': 1,\n",
      "          'pragmatic': 1,\n",
      "          'performances': 1,\n",
      "          'everyman': 1,\n",
      "          'middle': 1,\n",
      "          'spiraling': 1,\n",
      "          'age': 1,\n",
      "          'nfinally': 1,\n",
      "          'unable': 1,\n",
      "          'deal': 1,\n",
      "          'soul': 1,\n",
      "          'return': 1,\n",
      "          'youth': 1,\n",
      "          'nhe': 1,\n",
      "          'quits': 1,\n",
      "          'actually': 1,\n",
      "          'blackmailing': 1,\n",
      "          'employer': 1,\n",
      "          'salary': 1,\n",
      "          'smoking': 1,\n",
      "          'pot': 1,\n",
      "          'fantasizes': 1,\n",
      "          'daughters': 1,\n",
      "          'girlfriend': 1,\n",
      "          'angela': 1,\n",
      "          'working': 1,\n",
      "          'finally': 1,\n",
      "          'takes': 1,\n",
      "          'local': 1,\n",
      "          'fast': 1,\n",
      "          'food': 1,\n",
      "          'outlet': 1,\n",
      "          'spaceys': 1,\n",
      "          'remarkably': 1,\n",
      "          'ingenuous': 1,\n",
      "          'certain': 1,\n",
      "          'oscar': 1,\n",
      "          'assured': 1,\n",
      "          'see': 1,\n",
      "          'name': 1,\n",
      "          'among': 1,\n",
      "          'five': 1,\n",
      "          'nominees': 1,\n",
      "          'nannette': 1,\n",
      "          'insecure': 1,\n",
      "          'maintaining': 1,\n",
      "          'facade': 1,\n",
      "          'normalcy': 1,\n",
      "          'nunable': 1,\n",
      "          'cope': 1,\n",
      "          'disillusionment': 1,\n",
      "          'forces': 1,\n",
      "          'maintain': 1,\n",
      "          'demeanor': 1,\n",
      "          'driving': 1,\n",
      "          'desperation': 1,\n",
      "          'adultery': 1,\n",
      "          'possibly': 1,\n",
      "          'murder': 1,\n",
      "          'nms': 1,\n",
      "          'makes': 1,\n",
      "          'compelling': 1,\n",
      "          'identifiable': 1,\n",
      "          'anyone': 1,\n",
      "          'slow': 1,\n",
      "          'methodical': 1,\n",
      "          'turn': 1,\n",
      "          'happy': 1,\n",
      "          'maker': 1,\n",
      "          'charnel': 1,\n",
      "          'house': 1,\n",
      "          'martha': 1,\n",
      "          'stewart': 1,\n",
      "          'express': 1,\n",
      "          'words': 1,\n",
      "          'holds': 1,\n",
      "          'talents': 1,\n",
      "          'njane': 1,\n",
      "          'innocent': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'rebellious': 1,\n",
      "          'ready': 1,\n",
      "          'abandon': 1,\n",
      "          'moment': 1,\n",
      "          'nher': 1,\n",
      "          'distrust': 1,\n",
      "          'isolation': 1,\n",
      "          'parents': 1,\n",
      "          'view': 1,\n",
      "          'warning': 1,\n",
      "          'trophy': 1,\n",
      "          'nwhen': 1,\n",
      "          'praises': 1,\n",
      "          'cheerleading': 1,\n",
      "          'team': 1,\n",
      "          'proud': 1,\n",
      "          'honey': 1,\n",
      "          'nyou': 1,\n",
      "          'screw': 1,\n",
      "          'bitterness': 1,\n",
      "          'palpable': 1,\n",
      "          'actress': 1,\n",
      "          'watch': 1,\n",
      "          'npraise': 1,\n",
      "          'must': 1,\n",
      "          'go': 1,\n",
      "          'brings': 1,\n",
      "          'another': 1,\n",
      "          'father': 1,\n",
      "          'role': 1,\n",
      "          'resonance': 1,\n",
      "          'military': 1,\n",
      "          'upbringing': 1,\n",
      "          'masking': 1,\n",
      "          'desire': 1,\n",
      "          'repulsed': 1,\n",
      "          'even': 1,\n",
      "          'comprehend': 1,\n",
      "          'nwes': 1,\n",
      "          'fine': 1,\n",
      "          'enigma': 1,\n",
      "          'boy': 1,\n",
      "          'foe': 1,\n",
      "          'friend': 1,\n",
      "          'deceitful': 1,\n",
      "          'calculating': 1,\n",
      "          'whose': 1,\n",
      "          'voyeuristic': 1,\n",
      "          'proclivities': 1,\n",
      "          'mask': 1,\n",
      "          'deeper': 1,\n",
      "          'profound': 1,\n",
      "          'understanding': 1,\n",
      "          'adults': 1,\n",
      "          'around': 1,\n",
      "          'bentleys': 1,\n",
      "          'troublesome': 1,\n",
      "          'note': 1,\n",
      "          'nthat': 1,\n",
      "          'grand': 1,\n",
      "          'liar': 1,\n",
      "          'faults': 1,\n",
      "          'ndirector': 1,\n",
      "          'handles': 1,\n",
      "          'particulars': 1,\n",
      "          'settings': 1,\n",
      "          'sure': 1,\n",
      "          'composed': 1,\n",
      "          'style': 1,\n",
      "          'neither': 1,\n",
      "          'intrusive': 1,\n",
      "          'nscenes': 1,\n",
      "          'walking': 1,\n",
      "          'rain': 1,\n",
      "          'carry': 1,\n",
      "          'ominous': 1,\n",
      "          'fission': 1,\n",
      "          'calls': 1,\n",
      "          'attention': 1,\n",
      "          'emotions': 1,\n",
      "          'cinematography': 1,\n",
      "          'wonderful': 1,\n",
      "          'capturing': 1,\n",
      "          'season': 1,\n",
      "          'harsh': 1,\n",
      "          'fall': 1,\n",
      "          'never': 1,\n",
      "          'looked': 1,\n",
      "          'inviting': 1,\n",
      "          'depressing': 1,\n",
      "          'nevery': 1,\n",
      "          'nuance': 1,\n",
      "          'begs': 1,\n",
      "          'audience': 1,\n",
      "          'examine': 1,\n",
      "          'nit': 1,\n",
      "          'discussed': 1,\n",
      "          'debated': 1,\n",
      "          'well': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'good': 7,\n",
      "          'movie': 5,\n",
      "          'nhe': 5,\n",
      "          'nits': 4,\n",
      "          'nwill': 4,\n",
      "          'knows': 4,\n",
      "          'sean': 4,\n",
      "          'hunting': 3,\n",
      "          'thats': 3,\n",
      "          'like': 3,\n",
      "          'quite': 3,\n",
      "          'get': 3,\n",
      "          'nlambeau': 3,\n",
      "          'mathematics': 3,\n",
      "          'time': 3,\n",
      "          'therapy': 3,\n",
      "          'sessions': 3,\n",
      "          'lambeau': 3,\n",
      "          'take': 3,\n",
      "          'foster': 3,\n",
      "          'child': 3,\n",
      "          'great': 3,\n",
      "          'damon': 2,\n",
      "          'genius': 2,\n",
      "          'character': 2,\n",
      "          'doesnt': 2,\n",
      "          'nthis': 2,\n",
      "          'nin': 2,\n",
      "          'anything': 2,\n",
      "          'works': 2,\n",
      "          'hes': 2,\n",
      "          'janitor': 2,\n",
      "          'construction': 2,\n",
      "          'fights': 2,\n",
      "          'math': 2,\n",
      "          'prison': 2,\n",
      "          'long': 2,\n",
      "          'agrees': 2,\n",
      "          'go': 2,\n",
      "          'nhes': 2,\n",
      "          'wills': 2,\n",
      "          'einstein': 2,\n",
      "          'isnt': 2,\n",
      "          'would': 2,\n",
      "          'lambeaus': 2,\n",
      "          'psychology': 2,\n",
      "          'know': 2,\n",
      "          'college': 2,\n",
      "          'williams': 2,\n",
      "          'attacks': 2,\n",
      "          'nbut': 2,\n",
      "          'nlike': 2,\n",
      "          'mother': 2,\n",
      "          'quiet': 2,\n",
      "          'actor': 2,\n",
      "          'right': 2,\n",
      "          'learn': 2,\n",
      "          'life': 2,\n",
      "          'help': 2,\n",
      "          'grow': 2,\n",
      "          'didnt': 2,\n",
      "          'direction': 2,\n",
      "          'nif': 2,\n",
      "          'drama': 2,\n",
      "          'melodrama': 2,\n",
      "          'nit': 2,\n",
      "          'matt': 1,\n",
      "          'natural': 1,\n",
      "          'nfor': 1,\n",
      "          'usually': 1,\n",
      "          'death': 1,\n",
      "          'sentence': 1,\n",
      "          'trait': 1,\n",
      "          'associated': 1,\n",
      "          'brother': 1,\n",
      "          'calls': 1,\n",
      "          'world': 1,\n",
      "          'movies': 1,\n",
      "          'phenomenon': 1,\n",
      "          'powder': 1,\n",
      "          'nforgive': 1,\n",
      "          'spoiling': 1,\n",
      "          'ending': 1,\n",
      "          'die': 1,\n",
      "          'formula': 1,\n",
      "          'fact': 1,\n",
      "          'fresh': 1,\n",
      "          'original': 1,\n",
      "          'study': 1,\n",
      "          'surprising': 1,\n",
      "          'considering': 1,\n",
      "          'written': 1,\n",
      "          'two': 1,\n",
      "          'actors': 1,\n",
      "          'costar': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'whatever': 1,\n",
      "          'kind': 1,\n",
      "          'job': 1,\n",
      "          'nfirst': 1,\n",
      "          'noffscreen': 1,\n",
      "          'speed': 1,\n",
      "          'reads': 1,\n",
      "          'books': 1,\n",
      "          'academic': 1,\n",
      "          'subject': 1,\n",
      "          'interests': 1,\n",
      "          'nonscreen': 1,\n",
      "          'hangs': 1,\n",
      "          'friends': 1,\n",
      "          'picking': 1,\n",
      "          'robust': 1,\n",
      "          'romanticizedhemingway': 1,\n",
      "          'fashion': 1,\n",
      "          'stellan': 1,\n",
      "          'skarsgard': 1,\n",
      "          'breaking': 1,\n",
      "          'waves': 1,\n",
      "          'professor': 1,\n",
      "          'learns': 1,\n",
      "          'special': 1,\n",
      "          'talent': 1,\n",
      "          'advanced': 1,\n",
      "          'nhaving': 1,\n",
      "          'confirmed': 1,\n",
      "          'fluke': 1,\n",
      "          'savant': 1,\n",
      "          'education': 1,\n",
      "          'system': 1,\n",
      "          'firmly': 1,\n",
      "          'rejected': 1,\n",
      "          'nfinally': 1,\n",
      "          'lands': 1,\n",
      "          'jail': 1,\n",
      "          'one': 1,\n",
      "          'probation': 1,\n",
      "          'instead': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'discussing': 1,\n",
      "          'barely': 1,\n",
      "          'decides': 1,\n",
      "          'treats': 1,\n",
      "          'son': 1,\n",
      "          'proud': 1,\n",
      "          'amazed': 1,\n",
      "          'accomplishments': 1,\n",
      "          'encourages': 1,\n",
      "          'tries': 1,\n",
      "          'give': 1,\n",
      "          'structure': 1,\n",
      "          'knowing': 1,\n",
      "          'little': 1,\n",
      "          'discipline': 1,\n",
      "          'could': 1,\n",
      "          'bigger': 1,\n",
      "          'really': 1,\n",
      "          'interested': 1,\n",
      "          'academia': 1,\n",
      "          'best': 1,\n",
      "          'field': 1,\n",
      "          'therefore': 1,\n",
      "          'spend': 1,\n",
      "          'office': 1,\n",
      "          'explaining': 1,\n",
      "          'people': 1,\n",
      "          'rather': 1,\n",
      "          'work': 1,\n",
      "          'breaks': 1,\n",
      "          'heart': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'attends': 1,\n",
      "          'mandated': 1,\n",
      "          'shreds': 1,\n",
      "          'therapists': 1,\n",
      "          'list': 1,\n",
      "          'read': 1,\n",
      "          'enough': 1,\n",
      "          'tricks': 1,\n",
      "          'trade': 1,\n",
      "          'keep': 1,\n",
      "          'affecting': 1,\n",
      "          'nshrink': 1,\n",
      "          'shrink': 1,\n",
      "          'refuses': 1,\n",
      "          'return': 1,\n",
      "          'mockery': 1,\n",
      "          'nlambeaus': 1,\n",
      "          'last': 1,\n",
      "          'hope': 1,\n",
      "          'old': 1,\n",
      "          'roommate': 1,\n",
      "          'teacher': 1,\n",
      "          'smalltime': 1,\n",
      "          'community': 1,\n",
      "          'nknowing': 1,\n",
      "          'going': 1,\n",
      "          'try': 1,\n",
      "          'shred': 1,\n",
      "          'robin': 1,\n",
      "          'favor': 1,\n",
      "          'chance': 1,\n",
      "          'meet': 1,\n",
      "          'next': 1,\n",
      "          'ntrue': 1,\n",
      "          'form': 1,\n",
      "          'finds': 1,\n",
      "          'seans': 1,\n",
      "          'emotional': 1,\n",
      "          'weakness': 1,\n",
      "          'unlike': 1,\n",
      "          'shrinks': 1,\n",
      "          'continues': 1,\n",
      "          'fussy': 1,\n",
      "          'defensive': 1,\n",
      "          'able': 1,\n",
      "          'stride': 1,\n",
      "          'patience': 1,\n",
      "          'approach': 1,\n",
      "          'nrobin': 1,\n",
      "          'excellent': 1,\n",
      "          'role': 1,\n",
      "          'range': 1,\n",
      "          'roles': 1,\n",
      "          'depth': 1,\n",
      "          'awakenings': 1,\n",
      "          'comes': 1,\n",
      "          'point': 1,\n",
      "          'shy': 1,\n",
      "          'man': 1,\n",
      "          'accomplishes': 1,\n",
      "          'something': 1,\n",
      "          'personal': 1,\n",
      "          'importance': 1,\n",
      "          'smile': 1,\n",
      "          'pure': 1,\n",
      "          'joy': 1,\n",
      "          'spreads': 1,\n",
      "          'eyes': 1,\n",
      "          'nwilliams': 1,\n",
      "          'name': 1,\n",
      "          'make': 1,\n",
      "          'audience': 1,\n",
      "          'cry': 1,\n",
      "          'smiling': 1,\n",
      "          'ni': 1,\n",
      "          'compared': 1,\n",
      "          'entirely': 1,\n",
      "          'fair': 1,\n",
      "          'nemotionally': 1,\n",
      "          'lot': 1,\n",
      "          'thought': 1,\n",
      "          'made': 1,\n",
      "          'rational': 1,\n",
      "          'decisions': 1,\n",
      "          'wants': 1,\n",
      "          'nsean': 1,\n",
      "          'girlfriend': 1,\n",
      "          'pals': 1,\n",
      "          'start': 1,\n",
      "          'asking': 1,\n",
      "          'particularly': 1,\n",
      "          'needing': 1,\n",
      "          'nhis': 1,\n",
      "          'exceptional': 1,\n",
      "          'gift': 1,\n",
      "          'singled': 1,\n",
      "          'love': 1,\n",
      "          'kept': 1,\n",
      "          'pushing': 1,\n",
      "          'say': 1,\n",
      "          'bad': 1,\n",
      "          'walks': 1,\n",
      "          'line': 1,\n",
      "          'sentimental': 1,\n",
      "          'uplifiting': 1,\n",
      "          'straight': 1,\n",
      "          'emotions': 1,\n",
      "          'subtle': 1,\n",
      "          'emotionally': 1,\n",
      "          'engaging': 1,\n",
      "          'larger': 1,\n",
      "          'problem': 1,\n",
      "          'per': 1,\n",
      "          'se': 1,\n",
      "          'times': 1,\n",
      "          'relatively': 1,\n",
      "          'small': 1,\n",
      "          'complaint': 1,\n",
      "          'na': 1,\n",
      "          'allows': 1,\n",
      "          'characters': 1,\n",
      "          'happen': 1,\n",
      "          'takes': 1,\n",
      "          'script': 1,\n",
      "          'acting': 1,\n",
      "          'ngood': 1,\n",
      "          'three': 1,\n",
      "          'inclined': 1,\n",
      "          'see': 1,\n",
      "          'means': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'pleasantville': 5,\n",
      "          'fine': 4,\n",
      "          'ideas': 3,\n",
      "          'ross': 3,\n",
      "          'well': 3,\n",
      "          'witherspoon': 3,\n",
      "          'end': 3,\n",
      "          'daniels': 3,\n",
      "          'theres': 2,\n",
      "          'one': 2,\n",
      "          'nalthough': 2,\n",
      "          'fox': 2,\n",
      "          'line': 2,\n",
      "          'cinema': 2,\n",
      "          'like': 2,\n",
      "          'production': 2,\n",
      "          'change': 2,\n",
      "          'atmosphere': 2,\n",
      "          'true': 2,\n",
      "          'brings': 2,\n",
      "          'life': 2,\n",
      "          'picture': 2,\n",
      "          'together': 2,\n",
      "          'two': 2,\n",
      "          'quite': 2,\n",
      "          'named': 2,\n",
      "          'nmaguire': 2,\n",
      "          'perfect': 2,\n",
      "          'town': 2,\n",
      "          'jeff': 2,\n",
      "          'j': 2,\n",
      "          'nwalsh': 2,\n",
      "          'simply': 2,\n",
      "          'entire': 2,\n",
      "          'performance': 2,\n",
      "          'walsh': 2,\n",
      "          'point': 2,\n",
      "          'thing': 1,\n",
      "          'common': 1,\n",
      "          'hollywoods': 1,\n",
      "          'major': 1,\n",
      "          'studios': 1,\n",
      "          'productions': 1,\n",
      "          'moving': 1,\n",
      "          'toward': 1,\n",
      "          'mainstream': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'new': 1,\n",
      "          'spawned': 1,\n",
      "          'subsidiaries': 1,\n",
      "          'specialize': 1,\n",
      "          'independant': 1,\n",
      "          'controversial': 1,\n",
      "          'motion': 1,\n",
      "          'pictures': 1,\n",
      "          'searchlight': 1,\n",
      "          'respectively': 1,\n",
      "          'obvious': 1,\n",
      "          'significant': 1,\n",
      "          'movement': 1,\n",
      "          'underway': 1,\n",
      "          'promote': 1,\n",
      "          'inventive': 1,\n",
      "          'theater': 1,\n",
      "          'nso': 1,\n",
      "          'gary': 1,\n",
      "          'comes': 1,\n",
      "          'along': 1,\n",
      "          'wrapped': 1,\n",
      "          'blanket': 1,\n",
      "          'innovative': 1,\n",
      "          'served': 1,\n",
      "          'platter': 1,\n",
      "          'welcome': 1,\n",
      "          'pace': 1,\n",
      "          'frequent': 1,\n",
      "          'cineplexes': 1,\n",
      "          'buzz': 1,\n",
      "          'cheery': 1,\n",
      "          'lighthearted': 1,\n",
      "          'mistaken': 1,\n",
      "          'nothought': 1,\n",
      "          'nquite': 1,\n",
      "          'opposite': 1,\n",
      "          'fact': 1,\n",
      "          'director': 1,\n",
      "          'skillfully': 1,\n",
      "          'narrative': 1,\n",
      "          'intense': 1,\n",
      "          'intelligent': 1,\n",
      "          'undertones': 1,\n",
      "          'screen': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'joys': 1,\n",
      "          'living': 1,\n",
      "          'fullest': 1,\n",
      "          'social': 1,\n",
      "          'ills': 1,\n",
      "          'segregation': 1,\n",
      "          'captures': 1,\n",
      "          'essence': 1,\n",
      "          'statementmaking': 1,\n",
      "          'nnot': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'carried': 1,\n",
      "          'weight': 1,\n",
      "          'theme': 1,\n",
      "          'widescale': 1,\n",
      "          'distribution': 1,\n",
      "          'even': 1,\n",
      "          'mass': 1,\n",
      "          'audiences': 1,\n",
      "          'fail': 1,\n",
      "          'see': 1,\n",
      "          'ingenuity': 1,\n",
      "          'work': 1,\n",
      "          'still': 1,\n",
      "          'testament': 1,\n",
      "          'considered': 1,\n",
      "          'worthy': 1,\n",
      "          'enough': 1,\n",
      "          'nkudos': 1,\n",
      "          'staff': 1,\n",
      "          'putting': 1,\n",
      "          'nit': 1,\n",
      "          'stars': 1,\n",
      "          'tobey': 1,\n",
      "          'maguire': 1,\n",
      "          'reese': 1,\n",
      "          'nineties': 1,\n",
      "          'teenagers': 1,\n",
      "          'bit': 1,\n",
      "          'luck': 1,\n",
      "          'find': 1,\n",
      "          'zapped': 1,\n",
      "          'fifties': 1,\n",
      "          'sitcom': 1,\n",
      "          'reserved': 1,\n",
      "          'bud': 1,\n",
      "          'parker': 1,\n",
      "          'pseudoworld': 1,\n",
      "          'rebellious': 1,\n",
      "          'mary': 1,\n",
      "          'sue': 1,\n",
      "          'made': 1,\n",
      "          'fatherknowsbest': 1,\n",
      "          'times': 1,\n",
      "          'nits': 1,\n",
      "          'long': 1,\n",
      "          'sets': 1,\n",
      "          'begins': 1,\n",
      "          'teach': 1,\n",
      "          'townspeople': 1,\n",
      "          'unlikely': 1,\n",
      "          'way': 1,\n",
      "          'really': 1,\n",
      "          'nsoon': 1,\n",
      "          'hues': 1,\n",
      "          'color': 1,\n",
      "          'creep': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'world': 1,\n",
      "          'embrace': 1,\n",
      "          'passion': 1,\n",
      "          'realism': 1,\n",
      "          'others': 1,\n",
      "          'fear': 1,\n",
      "          'strangeness': 1,\n",
      "          'nat': 1,\n",
      "          'soda': 1,\n",
      "          'shop': 1,\n",
      "          'ownerturnedpainter': 1,\n",
      "          'mr': 1,\n",
      "          'johnson': 1,\n",
      "          'closeminded': 1,\n",
      "          'mayor': 1,\n",
      "          'chamber': 1,\n",
      "          'commerce': 1,\n",
      "          'sides': 1,\n",
      "          'fronts': 1,\n",
      "          'clash': 1,\n",
      "          'soon': 1,\n",
      "          'involves': 1,\n",
      "          'nfine': 1,\n",
      "          'performances': 1,\n",
      "          'turned': 1,\n",
      "          'around': 1,\n",
      "          'effective': 1,\n",
      "          'leads': 1,\n",
      "          'complements': 1,\n",
      "          'go': 1,\n",
      "          'latest': 1,\n",
      "          'final': 1,\n",
      "          'posthumous': 1,\n",
      "          'ndaniels': 1,\n",
      "          'awe': 1,\n",
      "          'inspiration': 1,\n",
      "          'hope': 1,\n",
      "          'character': 1,\n",
      "          'whereas': 1,\n",
      "          'drips': 1,\n",
      "          'sinister': 1,\n",
      "          'closemindedness': 1,\n",
      "          'almost': 1,\n",
      "          'sense': 1,\n",
      "          'gene': 1,\n",
      "          'hackmans': 1,\n",
      "          'envy': 1,\n",
      "          'nfor': 1,\n",
      "          'commendable': 1,\n",
      "          'last': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'complementary': 1,\n",
      "          'exclamation': 1,\n",
      "          'career': 1,\n",
      "          'nalso': 1,\n",
      "          'lesser': 1,\n",
      "          'note': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'joan': 1,\n",
      "          'allen': 1,\n",
      "          'viewing': 1,\n",
      "          'cast': 1,\n",
      "          'works': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'dislike': 1,\n",
      "          'dynamic': 1,\n",
      "          'nature': 1,\n",
      "          'makes': 1,\n",
      "          'want': 1,\n",
      "          'serious': 1,\n",
      "          'dont': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'indy': 6,\n",
      "          'snakes': 5,\n",
      "          'action': 5,\n",
      "          'film': 5,\n",
      "          'best': 5,\n",
      "          'get': 4,\n",
      "          'movie': 4,\n",
      "          'ford': 4,\n",
      "          'indiana': 4,\n",
      "          'ark': 4,\n",
      "          'adventure': 4,\n",
      "          'could': 4,\n",
      "          'well': 4,\n",
      "          'script': 4,\n",
      "          'spielberg': 3,\n",
      "          'harrison': 3,\n",
      "          'time': 3,\n",
      "          'jones': 3,\n",
      "          'nif': 3,\n",
      "          'like': 3,\n",
      "          'souls': 3,\n",
      "          'nthe': 3,\n",
      "          'story': 2,\n",
      "          'george': 2,\n",
      "          'lucas': 2,\n",
      "          'one': 2,\n",
      "          'stars': 2,\n",
      "          'world': 2,\n",
      "          'good': 2,\n",
      "          'thats': 2,\n",
      "          'hands': 2,\n",
      "          'romance': 2,\n",
      "          'interesting': 2,\n",
      "          'line': 2,\n",
      "          'cast': 2,\n",
      "          'fun': 2,\n",
      "          'dont': 2,\n",
      "          'enjoy': 2,\n",
      "          'youre': 2,\n",
      "          'youll': 2,\n",
      "          'humor': 2,\n",
      "          'travelling': 2,\n",
      "          'different': 2,\n",
      "          'sequels': 2,\n",
      "          'whip': 2,\n",
      "          'picture': 2,\n",
      "          'fire': 2,\n",
      "          'originally': 2,\n",
      "          'sequence': 2,\n",
      "          'every': 2,\n",
      "          'cut': 2,\n",
      "          'gun': 2,\n",
      "          'nalso': 2,\n",
      "          'opening': 2,\n",
      "          'nthis': 2,\n",
      "          'shot': 2,\n",
      "          'c3po': 2,\n",
      "          'nwhen': 2,\n",
      "          'face': 2,\n",
      "          'see': 2,\n",
      "          'slap': 1,\n",
      "          'together': 1,\n",
      "          'based': 1,\n",
      "          'legendary': 1,\n",
      "          'directed': 1,\n",
      "          'virtuoso': 1,\n",
      "          'director': 1,\n",
      "          'steven': 1,\n",
      "          'starring': 1,\n",
      "          'biggest': 1,\n",
      "          'boxoffice': 1,\n",
      "          'nyou': 1,\n",
      "          'hotfudgerockin': 1,\n",
      "          'nplot': 1,\n",
      "          'professorarcheologist': 1,\n",
      "          'sets': 1,\n",
      "          'find': 1,\n",
      "          'longlost': 1,\n",
      "          'mystical': 1,\n",
      "          'covenant': 1,\n",
      "          'nazis': 1,\n",
      "          'grubby': 1,\n",
      "          'fingers': 1,\n",
      "          'nadventures': 1,\n",
      "          'mucho': 1,\n",
      "          'ensues': 1,\n",
      "          'ncritique': 1,\n",
      "          'astounding': 1,\n",
      "          'packed': 1,\n",
      "          'nonstop': 1,\n",
      "          'stunts': 1,\n",
      "          'galore': 1,\n",
      "          'great': 1,\n",
      "          'oneliners': 1,\n",
      "          'solid': 1,\n",
      "          'catchy': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'squeeze': 1,\n",
      "          'twohour': 1,\n",
      "          'thrill': 1,\n",
      "          'ride': 1,\n",
      "          'movies': 1,\n",
      "          'period': 1,\n",
      "          'young': 1,\n",
      "          'cool': 1,\n",
      "          'sequences': 1,\n",
      "          'grossout': 1,\n",
      "          'factor': 1,\n",
      "          'times': 1,\n",
      "          'little': 1,\n",
      "          'older': 1,\n",
      "          'appreciate': 1,\n",
      "          'plot': 1,\n",
      "          'yes': 1,\n",
      "          'mountains': 1,\n",
      "          'nwatching': 1,\n",
      "          'made': 1,\n",
      "          'feel': 1,\n",
      "          'kid': 1,\n",
      "          'dreaming': 1,\n",
      "          'fantasizing': 1,\n",
      "          'fighting': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'countries': 1,\n",
      "          'making': 1,\n",
      "          'impossible': 1,\n",
      "          'possible': 1,\n",
      "          'nharrison': 1,\n",
      "          'perfect': 1,\n",
      "          'everyman': 1,\n",
      "          'brains': 1,\n",
      "          'scientist': 1,\n",
      "          'brawn': 1,\n",
      "          'outdoors': 1,\n",
      "          'adventurer': 1,\n",
      "          'manages': 1,\n",
      "          'achieve': 1,\n",
      "          'ideal': 1,\n",
      "          'balance': 1,\n",
      "          'nnow': 1,\n",
      "          'really': 1,\n",
      "          'want': 1,\n",
      "          'check': 1,\n",
      "          'night': 1,\n",
      "          'two': 1,\n",
      "          'rent': 1,\n",
      "          'jug': 1,\n",
      "          'iced': 1,\n",
      "          'coke': 1,\n",
      "          'truckloads': 1,\n",
      "          'nachos': 1,\n",
      "          'salsa': 1,\n",
      "          'hat': 1,\n",
      "          'prepare': 1,\n",
      "          'gag': 1,\n",
      "          'actionmovie': 1,\n",
      "          'heaven': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'nominated': 1,\n",
      "          'eight': 1,\n",
      "          '1981': 1,\n",
      "          'oscar': 1,\n",
      "          'nominations': 1,\n",
      "          'including': 1,\n",
      "          'nit': 1,\n",
      "          'lost': 1,\n",
      "          'award': 1,\n",
      "          'chariots': 1,\n",
      "          'manage': 1,\n",
      "          'win': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'editing': 1,\n",
      "          'sound': 1,\n",
      "          'nactor': 1,\n",
      "          'tom': 1,\n",
      "          'selleck': 1,\n",
      "          'committed': 1,\n",
      "          'hit': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'magnum': 1,\n",
      "          'p': 1,\n",
      "          'nin': 1,\n",
      "          'filming': 1,\n",
      "          'producers': 1,\n",
      "          'scoured': 1,\n",
      "          'pet': 1,\n",
      "          'shop': 1,\n",
      "          'london': 1,\n",
      "          'south': 1,\n",
      "          'england': 1,\n",
      "          'snake': 1,\n",
      "          'lay': 1,\n",
      "          'nhence': 1,\n",
      "          'identifiable': 1,\n",
      "          'many': 1,\n",
      "          'geographical': 1,\n",
      "          'areas': 1,\n",
      "          'nhowever': 1,\n",
      "          'set': 1,\n",
      "          'became': 1,\n",
      "          'clear': 1,\n",
      "          'nearly': 1,\n",
      "          'enough': 1,\n",
      "          'several': 1,\n",
      "          'hoses': 1,\n",
      "          'lengths': 1,\n",
      "          'used': 1,\n",
      "          'nlooking': 1,\n",
      "          'closely': 1,\n",
      "          'tell': 1,\n",
      "          'real': 1,\n",
      "          'nan': 1,\n",
      "          'early': 1,\n",
      "          'draft': 1,\n",
      "          'shanghai': 1,\n",
      "          'recover': 1,\n",
      "          'piece': 1,\n",
      "          'staff': 1,\n",
      "          'ra': 1,\n",
      "          'nduring': 1,\n",
      "          'escape': 1,\n",
      "          'museum': 1,\n",
      "          'housed': 1,\n",
      "          'sheltered': 1,\n",
      "          'machine': 1,\n",
      "          'behind': 1,\n",
      "          'giant': 1,\n",
      "          'rolling': 1,\n",
      "          'gong': 1,\n",
      "          'marion': 1,\n",
      "          'flee': 1,\n",
      "          'chaos': 1,\n",
      "          'caused': 1,\n",
      "          'wild': 1,\n",
      "          'minecart': 1,\n",
      "          'chase': 1,\n",
      "          'nboth': 1,\n",
      "          'scenes': 1,\n",
      "          'ended': 1,\n",
      "          '1984s': 1,\n",
      "          'temple': 1,\n",
      "          'doom': 1,\n",
      "          'begins': 1,\n",
      "          'peak': 1,\n",
      "          'jungle': 1,\n",
      "          'reminiscent': 1,\n",
      "          'paramount': 1,\n",
      "          'pictures': 1,\n",
      "          'logo': 1,\n",
      "          'type': 1,\n",
      "          'present': 1,\n",
      "          'njocks': 1,\n",
      "          'airplane': 1,\n",
      "          'beginning': 1,\n",
      "          'registration': 1,\n",
      "          'number': 1,\n",
      "          'obcpo': 1,\n",
      "          'reference': 1,\n",
      "          'obiwan': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          '9': 1,\n",
      "          '510': 1,\n",
      "          'hieroglyphics': 1,\n",
      "          'include': 1,\n",
      "          'engravings': 1,\n",
      "          'r2d2': 1,\n",
      "          'nthey': 1,\n",
      "          'seen': 1,\n",
      "          'post': 1,\n",
      "          'right': 1,\n",
      "          'sallah': 1,\n",
      "          'remove': 1,\n",
      "          'included': 1,\n",
      "          'long': 1,\n",
      "          'fight': 1,\n",
      "          'swordsman': 1,\n",
      "          'nas': 1,\n",
      "          'legend': 1,\n",
      "          'actor': 1,\n",
      "          'suffering': 1,\n",
      "          'diarrhea': 1,\n",
      "          'asked': 1,\n",
      "          'scene': 1,\n",
      "          'shortened': 1,\n",
      "          'nspielberg': 1,\n",
      "          'said': 1,\n",
      "          'way': 1,\n",
      "          'shorten': 1,\n",
      "          'pulled': 1,\n",
      "          'guy': 1,\n",
      "          'entire': 1,\n",
      "          'crew': 1,\n",
      "          'laughed': 1,\n",
      "          'filmed': 1,\n",
      "          'first': 1,\n",
      "          'falls': 1,\n",
      "          'cobra': 1,\n",
      "          'reflection': 1,\n",
      "          'glass': 1,\n",
      "          'dividing': 1,\n",
      "          'also': 1,\n",
      "          'fingerprints': 1,\n",
      "          'stuff': 1,\n",
      "          'dragging': 1,\n",
      "          'along': 1,\n",
      "          'ground': 1,\n",
      "          'hanging': 1,\n",
      "          'onto': 1,\n",
      "          'nazi': 1,\n",
      "          'soldiers': 1,\n",
      "          'truck': 1,\n",
      "          'inside': 1,\n",
      "          'pad': 1,\n",
      "          'hes': 1,\n",
      "          'dragged': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'films': 8,\n",
      "          'nthe': 6,\n",
      "          'run': 5,\n",
      "          'jamaican': 5,\n",
      "          'action': 5,\n",
      "          'cop': 4,\n",
      "          'capone': 3,\n",
      "          'john': 3,\n",
      "          'also': 3,\n",
      "          'right': 3,\n",
      "          'time': 3,\n",
      "          'well': 3,\n",
      "          'character': 3,\n",
      "          'pretty': 3,\n",
      "          'us': 3,\n",
      "          'third': 3,\n",
      "          'world': 3,\n",
      "          'tings': 2,\n",
      "          'dont': 2,\n",
      "          'campbell': 2,\n",
      "          'partner': 2,\n",
      "          'shot': 2,\n",
      "          'video': 2,\n",
      "          'movie': 2,\n",
      "          'little': 2,\n",
      "          'ncapone': 2,\n",
      "          'back': 2,\n",
      "          'discovers': 2,\n",
      "          'crime': 2,\n",
      "          'boss': 2,\n",
      "          'wonie': 2,\n",
      "          'carl': 2,\n",
      "          'bradshaw': 2,\n",
      "          'left': 2,\n",
      "          'friend': 2,\n",
      "          'ratty': 2,\n",
      "          'danvers': 2,\n",
      "          'make': 2,\n",
      "          'handled': 2,\n",
      "          'take': 2,\n",
      "          'woo': 2,\n",
      "          'scenes': 2,\n",
      "          'hong': 2,\n",
      "          'kong': 2,\n",
      "          'effects': 2,\n",
      "          'good': 2,\n",
      "          'could': 2,\n",
      "          'reggae': 2,\n",
      "          'song': 2,\n",
      "          'boxoffice': 2,\n",
      "          'jamaica': 2,\n",
      "          'pictures': 2,\n",
      "          'company': 2,\n",
      "          'released': 2,\n",
      "          'entertaining': 2,\n",
      "          'ntings': 1,\n",
      "          'nsound': 1,\n",
      "          'advice': 1,\n",
      "          'paul': 1,\n",
      "          'squaddie': 1,\n",
      "          'floyd': 1,\n",
      "          'winston': 1,\n",
      "          'bell': 1,\n",
      "          'njamaican': 1,\n",
      "          'entirely': 1,\n",
      "          'featuring': 1,\n",
      "          'standard': 1,\n",
      "          'plot': 1,\n",
      "          'mixed': 1,\n",
      "          'dash': 1,\n",
      "          'woostyled': 1,\n",
      "          'brotherhood': 1,\n",
      "          'morals': 1,\n",
      "          'gunplay': 1,\n",
      "          'tough': 1,\n",
      "          'nails': 1,\n",
      "          'super': 1,\n",
      "          'gets': 1,\n",
      "          'transfer': 1,\n",
      "          'hometown': 1,\n",
      "          'kingston': 1,\n",
      "          'successfully': 1,\n",
      "          'taking': 1,\n",
      "          'gangsters': 1,\n",
      "          'broken': 1,\n",
      "          'home': 1,\n",
      "          'lady': 1,\n",
      "          'killed': 1,\n",
      "          'front': 1,\n",
      "          'nwhen': 1,\n",
      "          'arrives': 1,\n",
      "          'ghetto': 1,\n",
      "          'grew': 1,\n",
      "          'gotten': 1,\n",
      "          'worse': 1,\n",
      "          'thanks': 1,\n",
      "          'mainly': 1,\n",
      "          'veteran': 1,\n",
      "          'named': 1,\n",
      "          'hand': 1,\n",
      "          'amputated': 1,\n",
      "          'replaced': 1,\n",
      "          'grasping': 1,\n",
      "          'hook': 1,\n",
      "          'smuggling': 1,\n",
      "          'guns': 1,\n",
      "          'inside': 1,\n",
      "          'shipments': 1,\n",
      "          'charity': 1,\n",
      "          'supplies': 1,\n",
      "          'area': 1,\n",
      "          'churches': 1,\n",
      "          'much': 1,\n",
      "          'disappointment': 1,\n",
      "          'finds': 1,\n",
      "          'childhood': 1,\n",
      "          'mark': 1,\n",
      "          'helping': 1,\n",
      "          'ntorn': 1,\n",
      "          'job': 1,\n",
      "          'protecting': 1,\n",
      "          'best': 1,\n",
      "          'must': 1,\n",
      "          'hard': 1,\n",
      "          'decisions': 1,\n",
      "          'order': 1,\n",
      "          'things': 1,\n",
      "          'ndirected': 1,\n",
      "          'deftly': 1,\n",
      "          'first': 1,\n",
      "          'filmmaker': 1,\n",
      "          'chris': 1,\n",
      "          'browne': 1,\n",
      "          'assistant': 1,\n",
      "          'director': 1,\n",
      "          'american': 1,\n",
      "          'stella': 1,\n",
      "          'got': 1,\n",
      "          'groove': 1,\n",
      "          'instinct': 1,\n",
      "          'one': 1,\n",
      "          'hardly': 1,\n",
      "          'notices': 1,\n",
      "          'nshots': 1,\n",
      "          'efficiently': 1,\n",
      "          'quickly': 1,\n",
      "          'nuances': 1,\n",
      "          'aforementioned': 1,\n",
      "          'although': 1,\n",
      "          'isnt': 1,\n",
      "          'hyperkinetic': 1,\n",
      "          'woos': 1,\n",
      "          'kind': 1,\n",
      "          'flair': 1,\n",
      "          'though': 1,\n",
      "          'eventually': 1,\n",
      "          'begin': 1,\n",
      "          'life': 1,\n",
      "          'beyond': 1,\n",
      "          'obviously': 1,\n",
      "          'patterned': 1,\n",
      "          'makeup': 1,\n",
      "          'particularly': 1,\n",
      "          'flawless': 1,\n",
      "          'squib': 1,\n",
      "          'work': 1,\n",
      "          'display': 1,\n",
      "          'team': 1,\n",
      "          'cast': 1,\n",
      "          'superb': 1,\n",
      "          'listening': 1,\n",
      "          'dialogue': 1,\n",
      "          'spoken': 1,\n",
      "          'thick': 1,\n",
      "          'accents': 1,\n",
      "          'half': 1,\n",
      "          'subtitled': 1,\n",
      "          'extensive': 1,\n",
      "          'use': 1,\n",
      "          'slang': 1,\n",
      "          'adds': 1,\n",
      "          'interest': 1,\n",
      "          'npaul': 1,\n",
      "          'loose': 1,\n",
      "          'cannon': 1,\n",
      "          'essays': 1,\n",
      "          'role': 1,\n",
      "          'perfectly': 1,\n",
      "          'displaying': 1,\n",
      "          'amount': 1,\n",
      "          'menace': 1,\n",
      "          'compassion': 1,\n",
      "          'times': 1,\n",
      "          'nmark': 1,\n",
      "          'evokes': 1,\n",
      "          'sympathy': 1,\n",
      "          'parttime': 1,\n",
      "          'gun': 1,\n",
      "          'smuggler': 1,\n",
      "          'trying': 1,\n",
      "          'help': 1,\n",
      "          'community': 1,\n",
      "          'building': 1,\n",
      "          'football': 1,\n",
      "          'fields': 1,\n",
      "          'organizing': 1,\n",
      "          'block': 1,\n",
      "          'parties': 1,\n",
      "          'bring': 1,\n",
      "          'people': 1,\n",
      "          'together': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'given': 1,\n",
      "          'least': 1,\n",
      "          'seems': 1,\n",
      "          'ineffective': 1,\n",
      "          'largely': 1,\n",
      "          'underlings': 1,\n",
      "          'seem': 1,\n",
      "          'way': 1,\n",
      "          'intended': 1,\n",
      "          'portrayed': 1,\n",
      "          'music': 1,\n",
      "          'composed': 1,\n",
      "          'songs': 1,\n",
      "          'soundtrack': 1,\n",
      "          'produced': 1,\n",
      "          'grammy': 1,\n",
      "          'award': 1,\n",
      "          'winning': 1,\n",
      "          'artists': 1,\n",
      "          'sly': 1,\n",
      "          'robbie': 1,\n",
      "          'worked': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'likes': 1,\n",
      "          'rolling': 1,\n",
      "          'stones': 1,\n",
      "          'maxi': 1,\n",
      "          'priest': 1,\n",
      "          'bob': 1,\n",
      "          'dylan': 1,\n",
      "          'james': 1,\n",
      "          'brown': 1,\n",
      "          'grace': 1,\n",
      "          'jones': 1,\n",
      "          'herbie': 1,\n",
      "          'hancock': 1,\n",
      "          'bootsy': 1,\n",
      "          'collins': 1,\n",
      "          'carly': 1,\n",
      "          'simon': 1,\n",
      "          'among': 1,\n",
      "          'others': 1,\n",
      "          'end': 1,\n",
      "          'credit': 1,\n",
      "          'group': 1,\n",
      "          'red': 1,\n",
      "          'dragon': 1,\n",
      "          'decent': 1,\n",
      "          'carries': 1,\n",
      "          'theme': 1,\n",
      "          'established': 1,\n",
      "          'early': 1,\n",
      "          'quote': 1,\n",
      "          'opens': 1,\n",
      "          'review': 1,\n",
      "          'noddly': 1,\n",
      "          'enough': 1,\n",
      "          'desmond': 1,\n",
      "          'ballentine': 1,\n",
      "          'plays': 1,\n",
      "          'deportee': 1,\n",
      "          'known': 1,\n",
      "          'pioneer': 1,\n",
      "          'realm': 1,\n",
      "          'gangsta': 1,\n",
      "          'performer': 1,\n",
      "          'ninjaman': 1,\n",
      "          'doesnt': 1,\n",
      "          'contribute': 1,\n",
      "          'single': 1,\n",
      "          'see': 1,\n",
      "          'virtually': 1,\n",
      "          'unheard': 1,\n",
      "          'nat': 1,\n",
      "          'writing': 1,\n",
      "          'put': 1,\n",
      "          'limited': 1,\n",
      "          'theatrical': 1,\n",
      "          'release': 1,\n",
      "          'coming': 1,\n",
      "          'sixmonth': 1,\n",
      "          'breaking': 1,\n",
      "          'holds': 1,\n",
      "          'position': 1,\n",
      "          'highest': 1,\n",
      "          'grossing': 1,\n",
      "          'bringing': 1,\n",
      "          '21': 1,\n",
      "          'million': 1,\n",
      "          'roughly': 1,\n",
      "          '500': 1,\n",
      "          '000': 1,\n",
      "          'npalm': 1,\n",
      "          'offbeat': 1,\n",
      "          'sixstring': 1,\n",
      "          'samurai': 1,\n",
      "          'releasing': 1,\n",
      "          'considering': 1,\n",
      "          'main': 1,\n",
      "          'focus': 1,\n",
      "          'dvd': 1,\n",
      "          'market': 1,\n",
      "          'imagine': 1,\n",
      "          'disc': 1,\n",
      "          'available': 1,\n",
      "          'theaters': 1,\n",
      "          'nchris': 1,\n",
      "          'blackwell': 1,\n",
      "          'founder': 1,\n",
      "          'palm': 1,\n",
      "          'involved': 1,\n",
      "          'production': 1,\n",
      "          'another': 1,\n",
      "          'smash': 1,\n",
      "          '1981': 1,\n",
      "          'entitled': 1,\n",
      "          'countryman': 1,\n",
      "          'id': 1,\n",
      "          'say': 1,\n",
      "          'track': 1,\n",
      "          'record': 1,\n",
      "          'noverall': 1,\n",
      "          'homage': 1,\n",
      "          'ringo': 1,\n",
      "          'lam': 1,\n",
      "          'tsui': 1,\n",
      "          'hark': 1,\n",
      "          'many': 1,\n",
      "          'directors': 1,\n",
      "          'nif': 1,\n",
      "          'thing': 1,\n",
      "          'mind': 1,\n",
      "          'intermittent': 1,\n",
      "          'subtitles': 1,\n",
      "          'cant': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'performances': 1,\n",
      "          'story': 1,\n",
      "          'solid': 1,\n",
      "          'cliched': 1,\n",
      "          'tight': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'country': 1,\n",
      "          'like': 1,\n",
      "          'apparently': 1,\n",
      "          'cops': 1,\n",
      "          'honors': 1,\n",
      "          'deserved': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'alone': 9,\n",
      "          'home': 8,\n",
      "          'nthe': 8,\n",
      "          'kevin': 7,\n",
      "          'nhe': 6,\n",
      "          'family': 6,\n",
      "          'slapstick': 4,\n",
      "          'true': 4,\n",
      "          'way': 4,\n",
      "          'night': 4,\n",
      "          'movies': 3,\n",
      "          'going': 3,\n",
      "          'doesnt': 3,\n",
      "          'get': 3,\n",
      "          'kids': 3,\n",
      "          'kid': 3,\n",
      "          'big': 3,\n",
      "          'never': 3,\n",
      "          'see': 3,\n",
      "          'goes': 3,\n",
      "          'man': 3,\n",
      "          'santa': 3,\n",
      "          'last': 3,\n",
      "          'first': 2,\n",
      "          '2': 2,\n",
      "          '3': 2,\n",
      "          'nbut': 2,\n",
      "          'actually': 2,\n",
      "          'lot': 2,\n",
      "          'cartoon': 2,\n",
      "          'mcalisters': 2,\n",
      "          'airport': 2,\n",
      "          'older': 2,\n",
      "          'learns': 2,\n",
      "          'milk': 2,\n",
      "          'back': 2,\n",
      "          'non': 2,\n",
      "          'setup': 2,\n",
      "          'without': 2,\n",
      "          'nits': 2,\n",
      "          'missing': 2,\n",
      "          'put': 2,\n",
      "          'wish': 2,\n",
      "          'come': 2,\n",
      "          'furnace': 2,\n",
      "          'scary': 2,\n",
      "          'snowshovel': 2,\n",
      "          'murderer': 2,\n",
      "          'culkin': 2,\n",
      "          'cute': 2,\n",
      "          'much': 2,\n",
      "          'kevins': 2,\n",
      "          'character': 2,\n",
      "          'act': 2,\n",
      "          'movie': 2,\n",
      "          'holiday': 2,\n",
      "          'original': 2,\n",
      "          'problem': 2,\n",
      "          'im': 2,\n",
      "          'gon': 2,\n",
      "          'na': 2,\n",
      "          'glance': 1,\n",
      "          'appears': 1,\n",
      "          'brainless': 1,\n",
      "          'intended': 1,\n",
      "          'minds': 1,\n",
      "          '8year': 1,\n",
      "          'olds': 1,\n",
      "          'nthats': 1,\n",
      "          'id': 1,\n",
      "          'bet': 1,\n",
      "          'money': 1,\n",
      "          'opening': 1,\n",
      "          'soon': 1,\n",
      "          '15': 1,\n",
      "          'france': 1,\n",
      "          'holidays': 1,\n",
      "          'nfour': 1,\n",
      "          'adults': 1,\n",
      "          'eleven': 1,\n",
      "          'spending': 1,\n",
      "          'together': 1,\n",
      "          'heading': 1,\n",
      "          'en': 1,\n",
      "          'masse': 1,\n",
      "          'littlest': 1,\n",
      "          'victim': 1,\n",
      "          'cruelty': 1,\n",
      "          'nkevins': 1,\n",
      "          'patience': 1,\n",
      "          'runs': 1,\n",
      "          'plaincheese': 1,\n",
      "          'pizza': 1,\n",
      "          'already': 1,\n",
      "          'eaten': 1,\n",
      "          'hes': 1,\n",
      "          'starve': 1,\n",
      "          'attacks': 1,\n",
      "          'bully': 1,\n",
      "          'brother': 1,\n",
      "          'buzz': 1,\n",
      "          'teasing': 1,\n",
      "          'fight': 1,\n",
      "          'disrupts': 1,\n",
      "          'alreadychaotic': 1,\n",
      "          'dinner': 1,\n",
      "          'spilling': 1,\n",
      "          'soft': 1,\n",
      "          'drinks': 1,\n",
      "          'table': 1,\n",
      "          'cousins': 1,\n",
      "          'uncle': 1,\n",
      "          'kneejerk': 1,\n",
      "          'reaction': 1,\n",
      "          'everyone': 1,\n",
      "          'blame': 1,\n",
      "          'nnobody': 1,\n",
      "          'came': 1,\n",
      "          'rescue': 1,\n",
      "          'teased': 1,\n",
      "          'point': 1,\n",
      "          'fingers': 1,\n",
      "          'fights': 1,\n",
      "          'ultimate': 1,\n",
      "          'punishment': 1,\n",
      "          'comes': 1,\n",
      "          'mom': 1,\n",
      "          'catherine': 1,\n",
      "          'ohara': 1,\n",
      "          'sends': 1,\n",
      "          'spare': 1,\n",
      "          'bedroom': 1,\n",
      "          'attic': 1,\n",
      "          'stairs': 1,\n",
      "          'tells': 1,\n",
      "          'families': 1,\n",
      "          'suck': 1,\n",
      "          'hopes': 1,\n",
      "          'nthat': 1,\n",
      "          'power': 1,\n",
      "          'knocking': 1,\n",
      "          'alarm': 1,\n",
      "          'clocks': 1,\n",
      "          'wake': 1,\n",
      "          'hurry': 1,\n",
      "          'nin': 1,\n",
      "          'surprisingly': 1,\n",
      "          'plausible': 1,\n",
      "          'mistakenly': 1,\n",
      "          'accounted': 1,\n",
      "          'heads': 1,\n",
      "          'interesting': 1,\n",
      "          'subtle': 1,\n",
      "          'parents': 1,\n",
      "          'noticed': 1,\n",
      "          'deliberate': 1,\n",
      "          'desire': 1,\n",
      "          'separate': 1,\n",
      "          'children': 1,\n",
      "          'nfirst': 1,\n",
      "          'delegate': 1,\n",
      "          'headcount': 1,\n",
      "          'sibling': 1,\n",
      "          'second': 1,\n",
      "          'coach': 1,\n",
      "          'fly': 1,\n",
      "          'class': 1,\n",
      "          'ntheyre': 1,\n",
      "          'twothirds': 1,\n",
      "          'across': 1,\n",
      "          'atlantic': 1,\n",
      "          'realize': 1,\n",
      "          'child': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'believes': 1,\n",
      "          'somehow': 1,\n",
      "          'nhes': 1,\n",
      "          'finally': 1,\n",
      "          'rid': 1,\n",
      "          'nlife': 1,\n",
      "          'dream': 1,\n",
      "          'jump': 1,\n",
      "          'beds': 1,\n",
      "          'watch': 1,\n",
      "          'rrated': 1,\n",
      "          'eat': 1,\n",
      "          'gobs': 1,\n",
      "          'ice': 1,\n",
      "          'cream': 1,\n",
      "          'potato': 1,\n",
      "          'chips': 1,\n",
      "          'dig': 1,\n",
      "          'brothers': 1,\n",
      "          'secret': 1,\n",
      "          'box': 1,\n",
      "          'nslowly': 1,\n",
      "          'novelty': 1,\n",
      "          'wears': 1,\n",
      "          'settles': 1,\n",
      "          'mundane': 1,\n",
      "          'grooms': 1,\n",
      "          'laundry': 1,\n",
      "          'shopping': 1,\n",
      "          'bought': 1,\n",
      "          'eggs': 1,\n",
      "          'fabric': 1,\n",
      "          'softener': 1,\n",
      "          'also': 1,\n",
      "          'starts': 1,\n",
      "          'miss': 1,\n",
      "          'company': 1,\n",
      "          'security': 1,\n",
      "          'bring': 1,\n",
      "          'basement': 1,\n",
      "          'monster': 1,\n",
      "          'old': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'two': 1,\n",
      "          'crooks': 1,\n",
      "          'trying': 1,\n",
      "          'break': 1,\n",
      "          'house': 1,\n",
      "          'nmacaulay': 1,\n",
      "          'isnt': 1,\n",
      "          'actor': 1,\n",
      "          'nstill': 1,\n",
      "          'grows': 1,\n",
      "          'thanks': 1,\n",
      "          'good': 1,\n",
      "          'direction': 1,\n",
      "          'editing': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'acting': 1,\n",
      "          'little': 1,\n",
      "          'emotional': 1,\n",
      "          'impact': 1,\n",
      "          'scene': 1,\n",
      "          'searches': 1,\n",
      "          'seasonal': 1,\n",
      "          'getting': 1,\n",
      "          'car': 1,\n",
      "          'nkevin': 1,\n",
      "          'asks': 1,\n",
      "          'pass': 1,\n",
      "          'request': 1,\n",
      "          'wants': 1,\n",
      "          'real': 1,\n",
      "          'learned': 1,\n",
      "          'deal': 1,\n",
      "          'nyou': 1,\n",
      "          'turn': 1,\n",
      "          'lights': 1,\n",
      "          'anymore': 1,\n",
      "          'church': 1,\n",
      "          'one': 1,\n",
      "          'evening': 1,\n",
      "          'sees': 1,\n",
      "          'turns': 1,\n",
      "          'nice': 1,\n",
      "          'nthey': 1,\n",
      "          'talk': 1,\n",
      "          'fears': 1,\n",
      "          'age': 1,\n",
      "          'make': 1,\n",
      "          'less': 1,\n",
      "          'afraid': 1,\n",
      "          'nfinally': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'confronts': 1,\n",
      "          'fear': 1,\n",
      "          'bandits': 1,\n",
      "          'head': 1,\n",
      "          'literally': 1,\n",
      "          'nthis': 1,\n",
      "          'full': 1,\n",
      "          'violent': 1,\n",
      "          'comedic': 1,\n",
      "          'genuine': 1,\n",
      "          'dramatic': 1,\n",
      "          'dessert': 1,\n",
      "          'fun': 1,\n",
      "          'overwhelm': 1,\n",
      "          'rest': 1,\n",
      "          'whole': 1,\n",
      "          'great': 1,\n",
      "          'njohn': 1,\n",
      "          'williams': 1,\n",
      "          'score': 1,\n",
      "          'sound': 1,\n",
      "          'feel': 1,\n",
      "          'music': 1,\n",
      "          'disadvantage': 1,\n",
      "          'overplayed': 1,\n",
      "          'malls': 1,\n",
      "          'christmas': 1,\n",
      "          'setting': 1,\n",
      "          'mood': 1,\n",
      "          'gatherings': 1,\n",
      "          'flaws': 1,\n",
      "          'smallest': 1,\n",
      "          'well': 1,\n",
      "          'nas': 1,\n",
      "          'said': 1,\n",
      "          'repeated': 1,\n",
      "          'viewings': 1,\n",
      "          'reveal': 1,\n",
      "          'columbus': 1,\n",
      "          'covered': 1,\n",
      "          'culkins': 1,\n",
      "          'insight': 1,\n",
      "          'biggest': 1,\n",
      "          'cartoony': 1,\n",
      "          'coda': 1,\n",
      "          'villains': 1,\n",
      "          'threaten': 1,\n",
      "          'life': 1,\n",
      "          'five': 1,\n",
      "          'times': 1,\n",
      "          'ninstead': 1,\n",
      "          'say': 1,\n",
      "          'kill': 1,\n",
      "          'nsome': 1,\n",
      "          'might': 1,\n",
      "          'argue': 1,\n",
      "          'tone': 1,\n",
      "          'strongly': 1,\n",
      "          'disagree': 1,\n",
      "          'nmixing': 1,\n",
      "          'comedy': 1,\n",
      "          'specific': 1,\n",
      "          'viable': 1,\n",
      "          'threats': 1,\n",
      "          'murder': 1,\n",
      "          'sociopathic': 1,\n",
      "          'fauxpas': 1,\n",
      "          'nill': 1,\n",
      "          'probably': 1,\n",
      "          'skipped': 1,\n",
      "          'enjoy': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'year': 1,\n",
      "          'ndont': 1,\n",
      "          'let': 1,\n",
      "          'impressions': 1,\n",
      "          'others': 1,\n",
      "          'detract': 1,\n",
      "          'offer': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'comedy': 7,\n",
      "          'goodman': 7,\n",
      "          'nthe': 7,\n",
      "          'like': 6,\n",
      "          'would': 5,\n",
      "          'ni': 5,\n",
      "          'many': 4,\n",
      "          'story': 4,\n",
      "          'john': 3,\n",
      "          'teenagers': 3,\n",
      "          'mant': 3,\n",
      "          'comedies': 3,\n",
      "          'laugh': 3,\n",
      "          'intelligent': 3,\n",
      "          'characters': 3,\n",
      "          'one': 3,\n",
      "          'favorite': 3,\n",
      "          'brings': 2,\n",
      "          'key': 2,\n",
      "          'west': 2,\n",
      "          'cuban': 2,\n",
      "          'missile': 2,\n",
      "          'crisis': 2,\n",
      "          'nhe': 2,\n",
      "          'escape': 2,\n",
      "          'see': 2,\n",
      "          'four': 2,\n",
      "          'review': 2,\n",
      "          'really': 2,\n",
      "          'enjoyed': 2,\n",
      "          'matinee': 2,\n",
      "          'also': 2,\n",
      "          'particularly': 2,\n",
      "          'nso': 2,\n",
      "          'recommend': 2,\n",
      "          'looking': 2,\n",
      "          'light': 2,\n",
      "          'way': 2,\n",
      "          'reason': 2,\n",
      "          'today': 2,\n",
      "          'watch': 2,\n",
      "          'movie': 2,\n",
      "          'found': 2,\n",
      "          'happen': 2,\n",
      "          'highly': 2,\n",
      "          'often': 2,\n",
      "          'scene': 2,\n",
      "          'tried': 2,\n",
      "          'nwhile': 2,\n",
      "          'humorous': 2,\n",
      "          'none': 2,\n",
      "          'people': 2,\n",
      "          'movies': 2,\n",
      "          'films': 2,\n",
      "          'real': 2,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '40': 1,\n",
      "          'starring': 1,\n",
      "          'kathy': 1,\n",
      "          'moriarty': 1,\n",
      "          'bunch': 1,\n",
      "          'directed': 1,\n",
      "          'joe': 1,\n",
      "          'dante': 1,\n",
      "          'written': 1,\n",
      "          'charles': 1,\n",
      "          'hass': 1,\n",
      "          'nsummary': 1,\n",
      "          'lawrence': 1,\n",
      "          'woolsley': 1,\n",
      "          'new': 1,\n",
      "          'horror': 1,\n",
      "          'nto': 1,\n",
      "          'premiere': 1,\n",
      "          'height': 1,\n",
      "          'hopes': 1,\n",
      "          'capitalize': 1,\n",
      "          'tense': 1,\n",
      "          'moment': 1,\n",
      "          'providing': 1,\n",
      "          'town': 1,\n",
      "          'nwe': 1,\n",
      "          'events': 1,\n",
      "          'stories': 1,\n",
      "          'life': 1,\n",
      "          'affects': 1,\n",
      "          'nquick': 1,\n",
      "          'easy': 1,\n",
      "          'mixture': 1,\n",
      "          'tension': 1,\n",
      "          'blended': 1,\n",
      "          'nicely': 1,\n",
      "          'nunlike': 1,\n",
      "          'tries': 1,\n",
      "          'succeeds': 1,\n",
      "          'getting': 1,\n",
      "          'past': 1,\n",
      "          'stage': 1,\n",
      "          'anything': 1,\n",
      "          'makers': 1,\n",
      "          'cared': 1,\n",
      "          'telling': 1,\n",
      "          'performances': 1,\n",
      "          'principals': 1,\n",
      "          'right': 1,\n",
      "          'mark': 1,\n",
      "          'schlock': 1,\n",
      "          'master': 1,\n",
      "          'definitely': 1,\n",
      "          'anyone': 1,\n",
      "          'hearted': 1,\n",
      "          'yet': 1,\n",
      "          'interesting': 1,\n",
      "          'spend': 1,\n",
      "          'couple': 1,\n",
      "          'hours': 1,\n",
      "          'nlonger': 1,\n",
      "          'detailed': 1,\n",
      "          'beware': 1,\n",
      "          'spoilers': 1,\n",
      "          'primary': 1,\n",
      "          'tell': 1,\n",
      "          'ntoo': 1,\n",
      "          'subscribe': 1,\n",
      "          'notion': 1,\n",
      "          'need': 1,\n",
      "          'make': 1,\n",
      "          'nyou': 1,\n",
      "          'lot': 1,\n",
      "          'leave': 1,\n",
      "          'theatre': 1,\n",
      "          'take': 1,\n",
      "          'nothing': 1,\n",
      "          'nmatinee': 1,\n",
      "          'left': 1,\n",
      "          'picture': 1,\n",
      "          'thinking': 1,\n",
      "          'faced': 1,\n",
      "          'wondering': 1,\n",
      "          'nbut': 1,\n",
      "          'importantly': 1,\n",
      "          'caring': 1,\n",
      "          'centers': 1,\n",
      "          'around': 1,\n",
      "          'character': 1,\n",
      "          'believe': 1,\n",
      "          'finest': 1,\n",
      "          'comedic': 1,\n",
      "          'actors': 1,\n",
      "          'business': 1,\n",
      "          'expressive': 1,\n",
      "          'physically': 1,\n",
      "          'vocally': 1,\n",
      "          'felt': 1,\n",
      "          'least': 1,\n",
      "          'deserved': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'work': 1,\n",
      "          'barton': 1,\n",
      "          'fink': 1,\n",
      "          'lost': 1,\n",
      "          'due': 1,\n",
      "          'commanding': 1,\n",
      "          'nature': 1,\n",
      "          'however': 1,\n",
      "          'star': 1,\n",
      "          'actually': 1,\n",
      "          'center': 1,\n",
      "          'discovering': 1,\n",
      "          'want': 1,\n",
      "          'background': 1,\n",
      "          'minute': 1,\n",
      "          'could': 1,\n",
      "          'end': 1,\n",
      "          'thought': 1,\n",
      "          'kids': 1,\n",
      "          'reaction': 1,\n",
      "          'realistic': 1,\n",
      "          'nthey': 1,\n",
      "          'block': 1,\n",
      "          'concerns': 1,\n",
      "          'world': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'kept': 1,\n",
      "          'creeping': 1,\n",
      "          'back': 1,\n",
      "          'fear': 1,\n",
      "          'chaos': 1,\n",
      "          'time': 1,\n",
      "          'centered': 1,\n",
      "          'drama': 1,\n",
      "          'teens': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'overlap': 1,\n",
      "          'nseveral': 1,\n",
      "          'aspects': 1,\n",
      "          'panic': 1,\n",
      "          'shown': 1,\n",
      "          'example': 1,\n",
      "          'fighting': 1,\n",
      "          'last': 1,\n",
      "          'cans': 1,\n",
      "          'boxes': 1,\n",
      "          'food': 1,\n",
      "          'grocery': 1,\n",
      "          'store': 1,\n",
      "          'nif': 1,\n",
      "          'think': 1,\n",
      "          'threat': 1,\n",
      "          'nuclear': 1,\n",
      "          'annihilation': 1,\n",
      "          'seems': 1,\n",
      "          'hardly': 1,\n",
      "          'backdrop': 1,\n",
      "          'works': 1,\n",
      "          'nanother': 1,\n",
      "          'b': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'go': 1,\n",
      "          'plan': 1,\n",
      "          '9': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'n': 1,\n",
      "          'note': 1,\n",
      "          'say': 1,\n",
      "          'nnever': 1,\n",
      "          'got': 1,\n",
      "          'made': 1,\n",
      "          'nserves': 1,\n",
      "          'mostly': 1,\n",
      "          'dantes': 1,\n",
      "          'homage': 1,\n",
      "          'bfilms': 1,\n",
      "          'loves': 1,\n",
      "          'anybody': 1,\n",
      "          'good': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'gag': 1,\n",
      "          'wellthought': 1,\n",
      "          'problems': 1,\n",
      "          'told': 1,\n",
      "          'hilarious': 1,\n",
      "          'nenjoy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'see': 5,\n",
      "          'ago': 4,\n",
      "          'image': 4,\n",
      "          'nit': 4,\n",
      "          'played': 4,\n",
      "          'film': 4,\n",
      "          'one': 4,\n",
      "          'fail': 4,\n",
      "          'years': 3,\n",
      "          'stars': 3,\n",
      "          'nwhen': 3,\n",
      "          'sky_': 3,\n",
      "          'like': 3,\n",
      "          'way': 3,\n",
      "          'character': 3,\n",
      "          'far': 3,\n",
      "          'traveling': 2,\n",
      "          'throughout': 2,\n",
      "          'become': 2,\n",
      "          'commonplace': 2,\n",
      "          'lines': 2,\n",
      "          'going': 2,\n",
      "          'offers': 2,\n",
      "          'much': 2,\n",
      "          'white': 2,\n",
      "          'dot': 2,\n",
      "          'forty': 2,\n",
      "          'advanced': 2,\n",
      "          'generations': 2,\n",
      "          '_october': 2,\n",
      "          'homer': 2,\n",
      "          'make': 2,\n",
      "          'rocket': 2,\n",
      "          'best': 2,\n",
      "          'know': 2,\n",
      "          'science': 2,\n",
      "          'nbut': 2,\n",
      "          'means': 2,\n",
      "          'knows': 2,\n",
      "          'rockets': 2,\n",
      "          'coalmining': 2,\n",
      "          'must': 2,\n",
      "          'sons': 2,\n",
      "          'nthe': 2,\n",
      "          'revolution': 2,\n",
      "          'us': 2,\n",
      "          'knew': 2,\n",
      "          'inspirational': 2,\n",
      "          '_star': 1,\n",
      "          'wars_': 1,\n",
      "          'came': 1,\n",
      "          'twenty': 1,\n",
      "          'millenium': 1,\n",
      "          'falcon': 1,\n",
      "          'moves': 1,\n",
      "          'constellations': 1,\n",
      "          'meteor': 1,\n",
      "          'showers': 1,\n",
      "          'cool': 1,\n",
      "          'spaceships': 1,\n",
      "          'han': 1,\n",
      "          'solo': 1,\n",
      "          'goes': 1,\n",
      "          'light': 1,\n",
      "          'speed': 1,\n",
      "          'change': 1,\n",
      "          'bright': 1,\n",
      "          'towards': 1,\n",
      "          'viewer': 1,\n",
      "          'converge': 1,\n",
      "          'invisible': 1,\n",
      "          'point': 1,\n",
      "          'ncool': 1,\n",
      "          'n_october': 1,\n",
      "          'simpler': 1,\n",
      "          'imagethat': 1,\n",
      "          'single': 1,\n",
      "          'horizontally': 1,\n",
      "          'across': 1,\n",
      "          'night': 1,\n",
      "          'sky': 1,\n",
      "          'nwas': 1,\n",
      "          'really': 1,\n",
      "          'sputnik': 1,\n",
      "          'launched': 1,\n",
      "          'satellites': 1,\n",
      "          'ever': 1,\n",
      "          'existed': 1,\n",
      "          'nhave': 1,\n",
      "          'technologically': 1,\n",
      "          'forgotten': 1,\n",
      "          'nearly': 1,\n",
      "          'two': 1,\n",
      "          'people': 1,\n",
      "          'stood': 1,\n",
      "          'outside': 1,\n",
      "          'breathlessly': 1,\n",
      "          'thentechnological': 1,\n",
      "          'achievement': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'russians': 1,\n",
      "          'sounds': 1,\n",
      "          'hokey': 1,\n",
      "          'scene': 1,\n",
      "          'occurs': 1,\n",
      "          'near': 1,\n",
      "          'beginning': 1,\n",
      "          'found': 1,\n",
      "          'caught': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'hickam': 1,\n",
      "          'jake': 1,\n",
      "          'gyllenhaal': 1,\n",
      "          'ndetermined': 1,\n",
      "          'dent': 1,\n",
      "          'space': 1,\n",
      "          'race': 1,\n",
      "          'becomes': 1,\n",
      "          'transfixed': 1,\n",
      "          'desire': 1,\n",
      "          'could': 1,\n",
      "          'fly': 1,\n",
      "          'films': 1,\n",
      "          'ending': 1,\n",
      "          'buy': 1,\n",
      "          'ticket': 1,\n",
      "          'lovely': 1,\n",
      "          'teacher': 1,\n",
      "          'miss': 1,\n",
      "          'riley': 1,\n",
      "          'laura': 1,\n",
      "          'dern': 1,\n",
      "          'suggests': 1,\n",
      "          'enters': 1,\n",
      "          'findings': 1,\n",
      "          'national': 1,\n",
      "          'fair': 1,\n",
      "          'exactly': 1,\n",
      "          'win': 1,\n",
      "          'joy': 1,\n",
      "          'little': 1,\n",
      "          'details': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'clearly': 1,\n",
      "          'strongest': 1,\n",
      "          'student': 1,\n",
      "          'class': 1,\n",
      "          'nif': 1,\n",
      "          'strengths': 1,\n",
      "          'whatsoever': 1,\n",
      "          'undeterring': 1,\n",
      "          'vision': 1,\n",
      "          'good': 1,\n",
      "          'organizer': 1,\n",
      "          'may': 1,\n",
      "          'lose': 1,\n",
      "          'reputation': 1,\n",
      "          'associating': 1,\n",
      "          'nerdiest': 1,\n",
      "          'kid': 1,\n",
      "          'school': 1,\n",
      "          'father': 1,\n",
      "          'forbids': 1,\n",
      "          'shoot': 1,\n",
      "          'company': 1,\n",
      "          'property': 1,\n",
      "          'entire': 1,\n",
      "          'town': 1,\n",
      "          'walk': 1,\n",
      "          'eight': 1,\n",
      "          'miles': 1,\n",
      "          'set': 1,\n",
      "          'nhomers': 1,\n",
      "          'dad': 1,\n",
      "          'chris': 1,\n",
      "          'cooper': 1,\n",
      "          'favorite': 1,\n",
      "          'actor': 1,\n",
      "          'mine': 1,\n",
      "          'since': 1,\n",
      "          '_lone': 1,\n",
      "          'star_': 1,\n",
      "          'nhere': 1,\n",
      "          'plays': 1,\n",
      "          'antithesis': 1,\n",
      "          '_matewan_': 1,\n",
      "          'instead': 1,\n",
      "          'organizing': 1,\n",
      "          'union': 1,\n",
      "          'rallies': 1,\n",
      "          'head': 1,\n",
      "          'coalminers': 1,\n",
      "          'constantly': 1,\n",
      "          'wringing': 1,\n",
      "          'hands': 1,\n",
      "          'unions': 1,\n",
      "          'nthis': 1,\n",
      "          'great': 1,\n",
      "          'unnoticed': 1,\n",
      "          'performances': 1,\n",
      "          'year': 1,\n",
      "          'note': 1,\n",
      "          'multidimensional': 1,\n",
      "          'nhe': 1,\n",
      "          'last': 1,\n",
      "          'nemesis': 1,\n",
      "          'likely': 1,\n",
      "          'interferes': 1,\n",
      "          'dreams': 1,\n",
      "          'truly': 1,\n",
      "          'loves': 1,\n",
      "          'son': 1,\n",
      "          'wants': 1,\n",
      "          'succeed': 1,\n",
      "          'nthrough': 1,\n",
      "          'nbecause': 1,\n",
      "          'weve': 1,\n",
      "          'come': 1,\n",
      "          'modern': 1,\n",
      "          'technology': 1,\n",
      "          'allowed': 1,\n",
      "          'society': 1,\n",
      "          'rate': 1,\n",
      "          'faster': 1,\n",
      "          'generation': 1,\n",
      "          'nwe': 1,\n",
      "          'dont': 1,\n",
      "          'understand': 1,\n",
      "          'industrial': 1,\n",
      "          'raise': 1,\n",
      "          'family': 1,\n",
      "          'paradigm': 1,\n",
      "          'shifting': 1,\n",
      "          'fathers': 1,\n",
      "          'feet': 1,\n",
      "          'life': 1,\n",
      "          'nso': 1,\n",
      "          'merely': 1,\n",
      "          'feelgood': 1,\n",
      "          'food': 1,\n",
      "          'thought': 1,\n",
      "          'nand': 1,\n",
      "          'type': 1,\n",
      "          'take': 1,\n",
      "          'something': 1,\n",
      "          'nbtw': 1,\n",
      "          'final': 1,\n",
      "          'simple': 1,\n",
      "          'strong': 1,\n",
      "          'contrast': 1,\n",
      "          'aforementioned': 1,\n",
      "          'horizontalmoving': 1,\n",
      "          'nightsky': 1,\n",
      "          'background': 1,\n",
      "          'nanother': 1,\n",
      "          'sure': 1,\n",
      "          'breathtaking': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'effects': 6,\n",
      "          'matrix': 5,\n",
      "          'special': 5,\n",
      "          'world': 5,\n",
      "          'sat': 4,\n",
      "          'nbut': 4,\n",
      "          'keanu': 3,\n",
      "          'reeves': 3,\n",
      "          'nnow': 3,\n",
      "          'first': 3,\n",
      "          'half': 3,\n",
      "          'big': 3,\n",
      "          'fishburne': 2,\n",
      "          'nsome': 2,\n",
      "          'may': 2,\n",
      "          'wait': 2,\n",
      "          'im': 2,\n",
      "          'saying': 2,\n",
      "          'like': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'trailer': 2,\n",
      "          'think': 2,\n",
      "          'story': 2,\n",
      "          'nok': 2,\n",
      "          'live': 2,\n",
      "          'real': 2,\n",
      "          'anything': 2,\n",
      "          'wants': 2,\n",
      "          'hour': 2,\n",
      "          'nthe': 2,\n",
      "          'entertained': 2,\n",
      "          'minutes': 2,\n",
      "          'warning': 1,\n",
      "          'contains': 1,\n",
      "          'nrated': 1,\n",
      "          'r': 1,\n",
      "          'scifi': 1,\n",
      "          'violence': 1,\n",
      "          'nstarring': 1,\n",
      "          'laurence': 1,\n",
      "          'joe': 1,\n",
      "          'panteliano': 1,\n",
      "          'disappointed': 1,\n",
      "          'nill': 1,\n",
      "          'tell': 1,\n",
      "          'ni': 1,\n",
      "          'waiting': 1,\n",
      "          'something': 1,\n",
      "          'happen': 1,\n",
      "          'know': 1,\n",
      "          'loved': 1,\n",
      "          'didnt': 1,\n",
      "          'nwhat': 1,\n",
      "          'extremely': 1,\n",
      "          'slow': 1,\n",
      "          'seeing': 1,\n",
      "          'makes': 1,\n",
      "          'whole': 1,\n",
      "          'entire': 1,\n",
      "          'one': 1,\n",
      "          'show': 1,\n",
      "          'ndont': 1,\n",
      "          'fooled': 1,\n",
      "          'nand': 1,\n",
      "          'chunks': 1,\n",
      "          'talky': 1,\n",
      "          'moments': 1,\n",
      "          'admit': 1,\n",
      "          'acting': 1,\n",
      "          'par': 1,\n",
      "          'deserving': 1,\n",
      "          'rating': 1,\n",
      "          'nwell': 1,\n",
      "          'take': 1,\n",
      "          'actually': 1,\n",
      "          'inside': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'known': 1,\n",
      "          'na': 1,\n",
      "          'man': 1,\n",
      "          'played': 1,\n",
      "          'find': 1,\n",
      "          'kidnapped': 1,\n",
      "          'almost': 1,\n",
      "          'coaxed': 1,\n",
      "          'go': 1,\n",
      "          'nhe': 1,\n",
      "          'finds': 1,\n",
      "          'fight': 1,\n",
      "          'skipping': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'send': 1,\n",
      "          'back': 1,\n",
      "          'destroy': 1,\n",
      "          'nlaurence': 1,\n",
      "          'guide': 1,\n",
      "          'sorts': 1,\n",
      "          'plays': 1,\n",
      "          'character': 1,\n",
      "          'well': 1,\n",
      "          'theatre': 1,\n",
      "          'wondering': 1,\n",
      "          'nyeah': 1,\n",
      "          'enough': 1,\n",
      "          'really': 1,\n",
      "          'decieving': 1,\n",
      "          'making': 1,\n",
      "          'people': 1,\n",
      "          'laden': 1,\n",
      "          'second': 1,\n",
      "          'explosive': 1,\n",
      "          'saves': 1,\n",
      "          'fighting': 1,\n",
      "          'breathtaking': 1,\n",
      "          'sound': 1,\n",
      "          'music': 1,\n",
      "          'effective': 1,\n",
      "          'last': 1,\n",
      "          'kept': 1,\n",
      "          'us': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          '20': 1,\n",
      "          'least': 1,\n",
      "          '40': 1,\n",
      "          'long': 1,\n",
      "          'none': 1,\n",
      "          'would': 1,\n",
      "          'wished': 1,\n",
      "          'better': 1,\n",
      "          'say': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'house': 3,\n",
      "          'made': 3,\n",
      "          'na': 3,\n",
      "          'bunch': 3,\n",
      "          '1962': 2,\n",
      "          'movie': 2,\n",
      "          'nand': 2,\n",
      "          'trying': 2,\n",
      "          'going': 2,\n",
      "          'goes': 2,\n",
      "          'around': 2,\n",
      "          'wan': 2,\n",
      "          'boon': 2,\n",
      "          'man': 2,\n",
      "          'nhes': 2,\n",
      "          'may': 2,\n",
      "          'nbluto': 2,\n",
      "          'kind': 2,\n",
      "          'guy': 2,\n",
      "          'omegas': 2,\n",
      "          'deltas': 2,\n",
      "          'go': 2,\n",
      "          'national': 1,\n",
      "          'lampoons': 1,\n",
      "          'animal': 1,\n",
      "          '1978': 1,\n",
      "          'set': 1,\n",
      "          'remains': 1,\n",
      "          'one': 1,\n",
      "          'fuck': 1,\n",
      "          'noise': 1,\n",
      "          'funniest': 1,\n",
      "          'ever': 1,\n",
      "          'isnt': 1,\n",
      "          'opinion': 1,\n",
      "          'either': 1,\n",
      "          'everybody': 1,\n",
      "          'knows': 1,\n",
      "          'thats': 1,\n",
      "          'gazillion': 1,\n",
      "          'inferior': 1,\n",
      "          'ripoffs': 1,\n",
      "          'duplicate': 1,\n",
      "          'success': 1,\n",
      "          'n': 1,\n",
      "          'pcu': 1,\n",
      "          'anyone': 1,\n",
      "          'first': 1,\n",
      "          'person': 1,\n",
      "          'bring': 1,\n",
      "          'glory': 1,\n",
      "          'daze': 1,\n",
      "          'gets': 1,\n",
      "          'decked': 1,\n",
      "          'nanimal': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'fictional': 1,\n",
      "          'faber': 1,\n",
      "          'college': 1,\n",
      "          'circa': 1,\n",
      "          'omega': 1,\n",
      "          'frat': 1,\n",
      "          'calls': 1,\n",
      "          'shots': 1,\n",
      "          'nthese': 1,\n",
      "          'guys': 1,\n",
      "          'wholesome': 1,\n",
      "          'cleancut': 1,\n",
      "          'modelcitizens': 1,\n",
      "          'ni': 1,\n",
      "          'e': 1,\n",
      "          'assholes': 1,\n",
      "          'ngreg': 1,\n",
      "          'leader': 1,\n",
      "          'mandy': 1,\n",
      "          'pepperidge': 1,\n",
      "          'since': 1,\n",
      "          'silly': 1,\n",
      "          'bastard': 1,\n",
      "          'doesnt': 1,\n",
      "          'believe': 1,\n",
      "          'premarital': 1,\n",
      "          'sex': 1,\n",
      "          'relationship': 1,\n",
      "          'never': 1,\n",
      "          'quick': 1,\n",
      "          'jackoff': 1,\n",
      "          'stars': 1,\n",
      "          'nneidermeyer': 1,\n",
      "          'supremebozo': 1,\n",
      "          'walking': 1,\n",
      "          'dick': 1,\n",
      "          'kicking': 1,\n",
      "          'freshman': 1,\n",
      "          'ass': 1,\n",
      "          'impress': 1,\n",
      "          'muff': 1,\n",
      "          'nalso': 1,\n",
      "          'hanging': 1,\n",
      "          'losers': 1,\n",
      "          'babs': 1,\n",
      "          'future': 1,\n",
      "          'universal': 1,\n",
      "          'studios': 1,\n",
      "          'employee': 1,\n",
      "          'serious': 1,\n",
      "          'bitch': 1,\n",
      "          'nnow': 1,\n",
      "          'lets': 1,\n",
      "          'take': 1,\n",
      "          'peak': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'delta': 1,\n",
      "          'nover': 1,\n",
      "          'anything': 1,\n",
      "          'throw': 1,\n",
      "          'shit': 1,\n",
      "          'window': 1,\n",
      "          'nokay': 1,\n",
      "          'nyou': 1,\n",
      "          'crush': 1,\n",
      "          'beer': 1,\n",
      "          'cans': 1,\n",
      "          'forehead': 1,\n",
      "          'pour': 1,\n",
      "          'honeymustard': 1,\n",
      "          'chest': 1,\n",
      "          'ngo': 1,\n",
      "          'right': 1,\n",
      "          'ahead': 1,\n",
      "          'frats': 1,\n",
      "          'leaders': 1,\n",
      "          'otter': 1,\n",
      "          'tim': 1,\n",
      "          'matheson': 1,\n",
      "          'peter': 1,\n",
      "          'riegert': 1,\n",
      "          'notter': 1,\n",
      "          'ladies': 1,\n",
      "          'another': 1,\n",
      "          'girl': 1,\n",
      "          'every': 1,\n",
      "          'night': 1,\n",
      "          'comedian': 1,\n",
      "          'got': 1,\n",
      "          'steadydate': 1,\n",
      "          'katy': 1,\n",
      "          'karen': 1,\n",
      "          'allen': 1,\n",
      "          'shes': 1,\n",
      "          'sick': 1,\n",
      "          'playing': 1,\n",
      "          'secondfiddle': 1,\n",
      "          'bottle': 1,\n",
      "          'j': 1,\n",
      "          'nthen': 1,\n",
      "          'others': 1,\n",
      "          'pinto': 1,\n",
      "          'wimp': 1,\n",
      "          'flounder': 1,\n",
      "          'blimp': 1,\n",
      "          'day': 1,\n",
      "          'biker': 1,\n",
      "          'stork': 1,\n",
      "          'braindamage': 1,\n",
      "          'last': 1,\n",
      "          'least': 1,\n",
      "          'played': 1,\n",
      "          'late': 1,\n",
      "          'great': 1,\n",
      "          'john': 1,\n",
      "          'belushi': 1,\n",
      "          'slugs': 1,\n",
      "          'back': 1,\n",
      "          'entire': 1,\n",
      "          'fifths': 1,\n",
      "          'whiskey': 1,\n",
      "          'proclaim': 1,\n",
      "          'needed': 1,\n",
      "          'puts': 1,\n",
      "          'creamfilled': 1,\n",
      "          'snowball': 1,\n",
      "          'mouth': 1,\n",
      "          'puffs': 1,\n",
      "          'cheeks': 1,\n",
      "          'spits': 1,\n",
      "          'says': 1,\n",
      "          'im': 1,\n",
      "          'zit': 1,\n",
      "          'get': 1,\n",
      "          'story': 1,\n",
      "          'follows': 1,\n",
      "          'getting': 1,\n",
      "          'kicked': 1,\n",
      "          'campus': 1,\n",
      "          'knowing': 1,\n",
      "          'fighting': 1,\n",
      "          'stupid': 1,\n",
      "          'decide': 1,\n",
      "          'style': 1,\n",
      "          'throwing': 1,\n",
      "          'wild': 1,\n",
      "          'toga': 1,\n",
      "          'party': 1,\n",
      "          'ruining': 1,\n",
      "          'homecoming': 1,\n",
      "          'parade': 1,\n",
      "          'nthis': 1,\n",
      "          'fucnniest': 1,\n",
      "          'int': 1,\n",
      "          'history': 1,\n",
      "          'world': 1,\n",
      "          'ndo': 1,\n",
      "          'favor': 1,\n",
      "          'see': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'young': 6,\n",
      "          'damon': 6,\n",
      "          'rainmaker': 5,\n",
      "          'hunting': 5,\n",
      "          'good': 4,\n",
      "          'wills': 4,\n",
      "          'actor': 3,\n",
      "          'mcconaughey': 3,\n",
      "          'ndamon': 3,\n",
      "          'role': 3,\n",
      "          'john': 3,\n",
      "          'grisham': 3,\n",
      "          'case': 3,\n",
      "          'insurance': 3,\n",
      "          'rudys': 3,\n",
      "          'nthe': 3,\n",
      "          'affleck': 3,\n",
      "          'come': 3,\n",
      "          'hollywood': 2,\n",
      "          'major': 2,\n",
      "          'years': 2,\n",
      "          'matt': 2,\n",
      "          'grishams': 2,\n",
      "          'take': 2,\n",
      "          'plays': 2,\n",
      "          'attorney': 2,\n",
      "          'finds': 2,\n",
      "          'also': 2,\n",
      "          'wife': 2,\n",
      "          'danes': 2,\n",
      "          'directed': 2,\n",
      "          'best': 2,\n",
      "          'mit': 2,\n",
      "          'college': 2,\n",
      "          'friend': 2,\n",
      "          'life': 2,\n",
      "          'though': 2,\n",
      "          'one': 2,\n",
      "          'every': 1,\n",
      "          'year': 1,\n",
      "          'crowns': 1,\n",
      "          'new': 1,\n",
      "          'boy': 1,\n",
      "          'pegged': 1,\n",
      "          'movie': 1,\n",
      "          'stardom': 1,\n",
      "          'ninheriting': 1,\n",
      "          'mantle': 1,\n",
      "          'last': 1,\n",
      "          'winner': 1,\n",
      "          'matthew': 1,\n",
      "          'like': 1,\n",
      "          'proves': 1,\n",
      "          'fresh': 1,\n",
      "          'face': 1,\n",
      "          'evidenced': 1,\n",
      "          'two': 1,\n",
      "          'radically': 1,\n",
      "          'different': 1,\n",
      "          'projects': 1,\n",
      "          'currently': 1,\n",
      "          'releasejohn': 1,\n",
      "          'first': 1,\n",
      "          'starring': 1,\n",
      "          'la': 1,\n",
      "          'adaptationin': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          'coppolas': 1,\n",
      "          'wetbehindtheears': 1,\n",
      "          'rudy': 1,\n",
      "          'baylor': 1,\n",
      "          'immediately': 1,\n",
      "          'passing': 1,\n",
      "          'bar': 1,\n",
      "          'exam': 1,\n",
      "          'representing': 1,\n",
      "          'mother': 1,\n",
      "          'mary': 1,\n",
      "          'kay': 1,\n",
      "          'place': 1,\n",
      "          'terminally': 1,\n",
      "          'ill': 1,\n",
      "          'man': 1,\n",
      "          'whitworth': 1,\n",
      "          'bigleague': 1,\n",
      "          'suit': 1,\n",
      "          'negligent': 1,\n",
      "          'company': 1,\n",
      "          'nwhile': 1,\n",
      "          'films': 1,\n",
      "          'main': 1,\n",
      "          'concern': 1,\n",
      "          'time': 1,\n",
      "          'protect': 1,\n",
      "          'claire': 1,\n",
      "          'abusive': 1,\n",
      "          'husband': 1,\n",
      "          'melrose': 1,\n",
      "          'placer': 1,\n",
      "          'andrew': 1,\n",
      "          'shue': 1,\n",
      "          'mercifully': 1,\n",
      "          'brief': 1,\n",
      "          'nwritten': 1,\n",
      "          'screen': 1,\n",
      "          'coppola': 1,\n",
      "          'film': 1,\n",
      "          'yet': 1,\n",
      "          'mostly': 1,\n",
      "          'seriously': 1,\n",
      "          'ncoppolas': 1,\n",
      "          'notableand': 1,\n",
      "          'effectivecontribution': 1,\n",
      "          'triedandtrue': 1,\n",
      "          'formula': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'largely': 1,\n",
      "          'comes': 1,\n",
      "          'presence': 1,\n",
      "          'danny': 1,\n",
      "          'devito': 1,\n",
      "          'unlicensed': 1,\n",
      "          'cocounsel': 1,\n",
      "          'golden': 1,\n",
      "          'globe': 1,\n",
      "          'nominee': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'companys': 1,\n",
      "          'hotshot': 1,\n",
      "          'inclusion': 1,\n",
      "          'battered': 1,\n",
      "          'subplot': 1,\n",
      "          'feels': 1,\n",
      "          'rather': 1,\n",
      "          'superfluous': 1,\n",
      "          'superb': 1,\n",
      "          'always': 1,\n",
      "          'nthen': 1,\n",
      "          'course': 1,\n",
      "          'nicely': 1,\n",
      "          'juggles': 1,\n",
      "          'weighty': 1,\n",
      "          'spousal': 1,\n",
      "          'abuse': 1,\n",
      "          'humorous': 1,\n",
      "          'often': 1,\n",
      "          'comical': 1,\n",
      "          'naivete': 1,\n",
      "          'requirements': 1,\n",
      "          'without': 1,\n",
      "          'missing': 1,\n",
      "          'beat': 1,\n",
      "          'nas': 1,\n",
      "          'showcases': 1,\n",
      "          'depth': 1,\n",
      "          'talent': 1,\n",
      "          'gus': 1,\n",
      "          'van': 1,\n",
      "          'sant': 1,\n",
      "          'written': 1,\n",
      "          'ben': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'troubled': 1,\n",
      "          'construction': 1,\n",
      "          'workerjanitor': 1,\n",
      "          'happens': 1,\n",
      "          'supergenius': 1,\n",
      "          'nin': 1,\n",
      "          'attempt': 1,\n",
      "          'steer': 1,\n",
      "          'brilliant': 1,\n",
      "          'mind': 1,\n",
      "          'right': 1,\n",
      "          'direction': 1,\n",
      "          'math': 1,\n",
      "          'professor': 1,\n",
      "          'stellan': 1,\n",
      "          'skarsgard': 1,\n",
      "          'taps': 1,\n",
      "          'old': 1,\n",
      "          'community': 1,\n",
      "          'psychologist': 1,\n",
      "          'sean': 1,\n",
      "          'mcguire': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'counsel': 1,\n",
      "          'abrasive': 1,\n",
      "          'standoffish': 1,\n",
      "          'try': 1,\n",
      "          'help': 1,\n",
      "          'terms': 1,\n",
      "          'turbulent': 1,\n",
      "          'ngood': 1,\n",
      "          'touchyfeely': 1,\n",
      "          'enterprise': 1,\n",
      "          'plot': 1,\n",
      "          'synopsis': 1,\n",
      "          'suggests': 1,\n",
      "          'simply': 1,\n",
      "          'dismiss': 1,\n",
      "          'would': 1,\n",
      "          'discount': 1,\n",
      "          'true': 1,\n",
      "          'emotional': 1,\n",
      "          'chords': 1,\n",
      "          'damons': 1,\n",
      "          'intelligent': 1,\n",
      "          'script': 1,\n",
      "          'touches': 1,\n",
      "          'neven': 1,\n",
      "          '_very_': 1,\n",
      "          'people': 1,\n",
      "          'directly': 1,\n",
      "          'relate': 1,\n",
      "          'burden': 1,\n",
      "          'superhuman': 1,\n",
      "          'intelligence': 1,\n",
      "          'insecurities': 1,\n",
      "          'suffers': 1,\n",
      "          'universal': 1,\n",
      "          'material': 1,\n",
      "          'brought': 1,\n",
      "          'terrific': 1,\n",
      "          'ensemble': 1,\n",
      "          'actors': 1,\n",
      "          'nwilliams': 1,\n",
      "          'delivers': 1,\n",
      "          'nice': 1,\n",
      "          'dramatic': 1,\n",
      "          'turn': 1,\n",
      "          'hot': 1,\n",
      "          'upandcoming': 1,\n",
      "          'chasing': 1,\n",
      "          'amy': 1,\n",
      "          'turns': 1,\n",
      "          'warm': 1,\n",
      "          'charming': 1,\n",
      "          'performance': 1,\n",
      "          'everappealing': 1,\n",
      "          'minnie': 1,\n",
      "          'driver': 1,\n",
      "          'shines': 1,\n",
      "          'harvardschooled': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'clear': 1,\n",
      "          'standout': 1,\n",
      "          'cast': 1,\n",
      "          'bravely': 1,\n",
      "          'soften': 1,\n",
      "          'prickly': 1,\n",
      "          'nature': 1,\n",
      "          'natural': 1,\n",
      "          'ease': 1,\n",
      "          'audience': 1,\n",
      "          'hard': 1,\n",
      "          '_not_': 1,\n",
      "          'care': 1,\n",
      "          'nso': 1,\n",
      "          'many': 1,\n",
      "          'names': 1,\n",
      "          'go': 1,\n",
      "          'fluctuations': 1,\n",
      "          'hype': 1,\n",
      "          'machine': 1,\n",
      "          'based': 1,\n",
      "          'impressive': 1,\n",
      "          'work': 1,\n",
      "          'especially': 1,\n",
      "          'safe': 1,\n",
      "          'bet': 1,\n",
      "          'name': 1,\n",
      "          'hearing': 1,\n",
      "          'lot': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'memento': 6,\n",
      "          'leonard': 4,\n",
      "          'n': 3,\n",
      "          'time': 2,\n",
      "          'movie': 2,\n",
      "          'film': 2,\n",
      "          'never': 2,\n",
      "          'nand': 2,\n",
      "          'top': 2,\n",
      "          'synopsis': 1,\n",
      "          'shelby': 1,\n",
      "          'pearce': 1,\n",
      "          'former': 1,\n",
      "          'insurance': 1,\n",
      "          'investigator': 1,\n",
      "          'trail': 1,\n",
      "          'man': 1,\n",
      "          'killed': 1,\n",
      "          'wife': 1,\n",
      "          'nleonard': 1,\n",
      "          'clues': 1,\n",
      "          'murderers': 1,\n",
      "          'identity': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'suffers': 1,\n",
      "          'condition': 1,\n",
      "          'inhibits': 1,\n",
      "          'creation': 1,\n",
      "          'shortterm': 1,\n",
      "          'memories': 1,\n",
      "          'meaning': 1,\n",
      "          'always': 1,\n",
      "          'forgetting': 1,\n",
      "          'happened': 1,\n",
      "          'minutes': 1,\n",
      "          'earlier': 1,\n",
      "          'nbecause': 1,\n",
      "          'forced': 1,\n",
      "          'rely': 1,\n",
      "          'notes': 1,\n",
      "          'leaves': 1,\n",
      "          'traces': 1,\n",
      "          'investigation': 1,\n",
      "          'back': 1,\n",
      "          'apparent': 1,\n",
      "          'culmination': 1,\n",
      "          'nreview': 1,\n",
      "          'sort': 1,\n",
      "          'wish': 1,\n",
      "          'id': 1,\n",
      "          'written': 1,\n",
      "          'think': 1,\n",
      "          'higher': 1,\n",
      "          'praise': 1,\n",
      "          'ni': 1,\n",
      "          'envious': 1,\n",
      "          'nolan': 1,\n",
      "          'concocted': 1,\n",
      "          'brilliant': 1,\n",
      "          'involved': 1,\n",
      "          'original': 1,\n",
      "          'nan': 1,\n",
      "          'instant': 1,\n",
      "          'noir': 1,\n",
      "          'classic': 1,\n",
      "          'virtually': 1,\n",
      "          'flawless': 1,\n",
      "          'nthe': 1,\n",
      "          'script': 1,\n",
      "          'unlike': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'notable': 1,\n",
      "          'achievement': 1,\n",
      "          'days': 1,\n",
      "          'recycled': 1,\n",
      "          'hollywood': 1,\n",
      "          'homogeneity': 1,\n",
      "          'nalthough': 1,\n",
      "          'idea': 1,\n",
      "          'starting': 1,\n",
      "          'conclusion': 1,\n",
      "          'plotline': 1,\n",
      "          'moving': 1,\n",
      "          'backward': 1,\n",
      "          'start': 1,\n",
      "          'entirely': 1,\n",
      "          'new': 1,\n",
      "          'witnessed': 1,\n",
      "          'executed': 1,\n",
      "          'flair': 1,\n",
      "          'coherence': 1,\n",
      "          'endlessly': 1,\n",
      "          'exciting': 1,\n",
      "          'inventive': 1,\n",
      "          'rare': 1,\n",
      "          'story': 1,\n",
      "          'keeps': 1,\n",
      "          'viewers': 1,\n",
      "          'guessing': 1,\n",
      "          'mulling': 1,\n",
      "          'connotations': 1,\n",
      "          'long': 1,\n",
      "          'leaving': 1,\n",
      "          'theatre': 1,\n",
      "          'merely': 1,\n",
      "          'exercise': 1,\n",
      "          'cerebrality': 1,\n",
      "          'plenty': 1,\n",
      "          'action': 1,\n",
      "          'unexpected': 1,\n",
      "          'dose': 1,\n",
      "          'humour': 1,\n",
      "          'keep': 1,\n",
      "          'proceedings': 1,\n",
      "          'lively': 1,\n",
      "          'nnolans': 1,\n",
      "          'direction': 1,\n",
      "          'equally': 1,\n",
      "          'effective': 1,\n",
      "          'losing': 1,\n",
      "          'crispness': 1,\n",
      "          'clarity': 1,\n",
      "          'despite': 1,\n",
      "          'challenging': 1,\n",
      "          'gimmick': 1,\n",
      "          'everything': 1,\n",
      "          'performances': 1,\n",
      "          'rise': 1,\n",
      "          'occasion': 1,\n",
      "          'npierce': 1,\n",
      "          'terrific': 1,\n",
      "          'troubled': 1,\n",
      "          'moss': 1,\n",
      "          'shows': 1,\n",
      "          'great': 1,\n",
      "          'range': 1,\n",
      "          'enigmatic': 1,\n",
      "          'natalie': 1,\n",
      "          'pantolianos': 1,\n",
      "          'teddy': 1,\n",
      "          'achieves': 1,\n",
      "          'splendidly': 1,\n",
      "          'affable': 1,\n",
      "          'yet': 1,\n",
      "          'sinister': 1,\n",
      "          'quality': 1,\n",
      "          'may': 1,\n",
      "          'years': 1,\n",
      "          'best': 1,\n",
      "          'screenplay': 1,\n",
      "          'certainly': 1,\n",
      "          'amongst': 1,\n",
      "          'theatrical': 1,\n",
      "          'attractions': 1,\n",
      "          '2001': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'shanta': 7,\n",
      "          'earth': 6,\n",
      "          'nit': 6,\n",
      "          'india': 5,\n",
      "          'muslim': 5,\n",
      "          'men': 5,\n",
      "          'dil': 5,\n",
      "          'hindu': 4,\n",
      "          'navaz': 4,\n",
      "          'nbut': 4,\n",
      "          'country': 3,\n",
      "          'sikh': 3,\n",
      "          'story': 3,\n",
      "          'lenny': 3,\n",
      "          'group': 3,\n",
      "          'like': 3,\n",
      "          'movie': 3,\n",
      "          'dramas': 3,\n",
      "          'may': 3,\n",
      "          'time': 2,\n",
      "          'independence': 2,\n",
      "          'bitter': 2,\n",
      "          'indian': 2,\n",
      "          'pakistani': 2,\n",
      "          'parsee': 2,\n",
      "          'place': 2,\n",
      "          'might': 2,\n",
      "          'small': 2,\n",
      "          'circle': 2,\n",
      "          'hasan': 2,\n",
      "          'deepa': 2,\n",
      "          'mehtas': 2,\n",
      "          'nin': 2,\n",
      "          'political': 2,\n",
      "          'tension': 2,\n",
      "          'growing': 2,\n",
      "          'little': 2,\n",
      "          'last': 2,\n",
      "          'still': 2,\n",
      "          'make': 2,\n",
      "          'easy': 2,\n",
      "          'violence': 2,\n",
      "          'around': 2,\n",
      "          'sense': 2,\n",
      "          'live': 2,\n",
      "          'man': 2,\n",
      "          'navazs': 2,\n",
      "          'things': 2,\n",
      "          'us': 2,\n",
      "          'closure': 2,\n",
      "          'level': 2,\n",
      "          'resolution': 2,\n",
      "          'decades': 2,\n",
      "          'nearth': 2,\n",
      "          'issues': 2,\n",
      "          'movies': 2,\n",
      "          'films': 2,\n",
      "          'nuclear': 2,\n",
      "          'understanding': 2,\n",
      "          'much': 2,\n",
      "          'harsh': 1,\n",
      "          'unconsoling': 1,\n",
      "          'drama': 1,\n",
      "          'gained': 1,\n",
      "          'britain': 1,\n",
      "          'ensuing': 1,\n",
      "          'turmoil': 1,\n",
      "          'engulfed': 1,\n",
      "          'subcontinent': 1,\n",
      "          'npeople': 1,\n",
      "          'supposedly': 1,\n",
      "          'loved': 1,\n",
      "          'land': 1,\n",
      "          'god': 1,\n",
      "          'found': 1,\n",
      "          'conflict': 1,\n",
      "          'divided': 1,\n",
      "          'factions': 1,\n",
      "          'fighting': 1,\n",
      "          'streets': 1,\n",
      "          'takes': 1,\n",
      "          'lahore': 1,\n",
      "          'partition': 1,\n",
      "          'afterward': 1,\n",
      "          'regardless': 1,\n",
      "          'citizens': 1,\n",
      "          'call': 1,\n",
      "          'action': 1,\n",
      "          'seen': 1,\n",
      "          'eyes': 1,\n",
      "          'maaia': 1,\n",
      "          'sethna': 1,\n",
      "          'young': 1,\n",
      "          'girl': 1,\n",
      "          'really': 1,\n",
      "          'nanny': 1,\n",
      "          'nshanta': 1,\n",
      "          'male': 1,\n",
      "          'admirers': 1,\n",
      "          'ntwo': 1,\n",
      "          'suitors': 1,\n",
      "          'rahul': 1,\n",
      "          'khanna': 1,\n",
      "          'aamir': 1,\n",
      "          'khan': 1,\n",
      "          'otherssikh': 1,\n",
      "          'muslimare': 1,\n",
      "          'older': 1,\n",
      "          'married': 1,\n",
      "          'appreciate': 1,\n",
      "          'played': 1,\n",
      "          'stirringly': 1,\n",
      "          'beautiful': 1,\n",
      "          'nandita': 1,\n",
      "          'das': 1,\n",
      "          'n': 1,\n",
      "          'also': 1,\n",
      "          'starred': 1,\n",
      "          'previous': 1,\n",
      "          'film': 1,\n",
      "          'fire': 1,\n",
      "          'first': 1,\n",
      "          'part': 1,\n",
      "          'thematic': 1,\n",
      "          'trilogy': 1,\n",
      "          'conclude': 1,\n",
      "          'water': 1,\n",
      "          'early': 1,\n",
      "          'scene': 1,\n",
      "          'sitting': 1,\n",
      "          'park': 1,\n",
      "          'talking': 1,\n",
      "          'day': 1,\n",
      "          'nears': 1,\n",
      "          'none': 1,\n",
      "          'remarks': 1,\n",
      "          'jokingly': 1,\n",
      "          'probably': 1,\n",
      "          'one': 1,\n",
      "          'places': 1,\n",
      "          'city': 1,\n",
      "          'different': 1,\n",
      "          'religions': 1,\n",
      "          'get': 1,\n",
      "          'along': 1,\n",
      "          'nhe': 1,\n",
      "          'wrong': 1,\n",
      "          'barbed': 1,\n",
      "          'comments': 1,\n",
      "          'spoken': 1,\n",
      "          'jokes': 1,\n",
      "          'undercurrent': 1,\n",
      "          'fanaticism': 1,\n",
      "          'tenor': 1,\n",
      "          'exchanges': 1,\n",
      "          'grows': 1,\n",
      "          'darker': 1,\n",
      "          'progresses': 1,\n",
      "          'perceive': 1,\n",
      "          'squabbles': 1,\n",
      "          'trajectory': 1,\n",
      "          'ends': 1,\n",
      "          'mass': 1,\n",
      "          'slaughter': 1,\n",
      "          'represents': 1,\n",
      "          'united': 1,\n",
      "          'ideal': 1,\n",
      "          'motherlandone': 1,\n",
      "          'love': 1,\n",
      "          'inspires': 1,\n",
      "          'peacably': 1,\n",
      "          'together': 1,\n",
      "          'sundered': 1,\n",
      "          'state': 1,\n",
      "          'na': 1,\n",
      "          'persecuted': 1,\n",
      "          'hides': 1,\n",
      "          'flees': 1,\n",
      "          'nanother': 1,\n",
      "          'murdered': 1,\n",
      "          'friends': 1,\n",
      "          'meet': 1,\n",
      "          'rife': 1,\n",
      "          'images': 1,\n",
      "          'breakage': 1,\n",
      "          'destruction': 1,\n",
      "          'plate': 1,\n",
      "          'shattered': 1,\n",
      "          'floor': 1,\n",
      "          'stuffed': 1,\n",
      "          'toy': 1,\n",
      "          'torn': 1,\n",
      "          'apart': 1,\n",
      "          'upset': 1,\n",
      "          'child': 1,\n",
      "          'brutally': 1,\n",
      "          'escalates': 1,\n",
      "          'held': 1,\n",
      "          'tied': 1,\n",
      "          'two': 1,\n",
      "          'cars': 1,\n",
      "          'ripped': 1,\n",
      "          'half': 1,\n",
      "          'opposing': 1,\n",
      "          'movement': 1,\n",
      "          'vehicles': 1,\n",
      "          'visceral': 1,\n",
      "          'effective': 1,\n",
      "          'metaphor': 1,\n",
      "          'destroyed': 1,\n",
      "          'painfully': 1,\n",
      "          'crux': 1,\n",
      "          'earths': 1,\n",
      "          'plot': 1,\n",
      "          'transformation': 1,\n",
      "          'undergone': 1,\n",
      "          'nhis': 1,\n",
      "          'sisters': 1,\n",
      "          'killed': 1,\n",
      "          'brutal': 1,\n",
      "          'fashion': 1,\n",
      "          'hindus': 1,\n",
      "          'ndil': 1,\n",
      "          'seeks': 1,\n",
      "          'solace': 1,\n",
      "          'asks': 1,\n",
      "          'desperation': 1,\n",
      "          'marry': 1,\n",
      "          'loves': 1,\n",
      "          'tenderly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'refuses': 1,\n",
      "          'offer': 1,\n",
      "          'combination': 1,\n",
      "          'familial': 1,\n",
      "          'anguish': 1,\n",
      "          'romantic': 1,\n",
      "          'rejection': 1,\n",
      "          'twists': 1,\n",
      "          'inside': 1,\n",
      "          'see': 1,\n",
      "          'seduced': 1,\n",
      "          'mob': 1,\n",
      "          'mentality': 1,\n",
      "          'cause': 1,\n",
      "          'gives': 1,\n",
      "          'motive': 1,\n",
      "          'vent': 1,\n",
      "          'anger': 1,\n",
      "          'hate': 1,\n",
      "          'ndespite': 1,\n",
      "          'later': 1,\n",
      "          'credit': 1,\n",
      "          'simply': 1,\n",
      "          'denounce': 1,\n",
      "          'shows': 1,\n",
      "          'circumstances': 1,\n",
      "          'decent': 1,\n",
      "          'enough': 1,\n",
      "          'monstrous': 1,\n",
      "          'conclusionthe': 1,\n",
      "          'consequence': 1,\n",
      "          'transformationis': 1,\n",
      "          'rather': 1,\n",
      "          'abrupt': 1,\n",
      "          'tells': 1,\n",
      "          'end': 1,\n",
      "          'stops': 1,\n",
      "          'appropriate': 1,\n",
      "          'finish': 1,\n",
      "          'giving': 1,\n",
      "          'would': 1,\n",
      "          'imparted': 1,\n",
      "          'least': 1,\n",
      "          'aesthetic': 1,\n",
      "          'satisfaction': 1,\n",
      "          'pakistanthey': 1,\n",
      "          'war': 1,\n",
      "          'large': 1,\n",
      "          'scale': 1,\n",
      "          'nsince': 1,\n",
      "          'personal': 1,\n",
      "          'mirror': 1,\n",
      "          'struggles': 1,\n",
      "          'nation': 1,\n",
      "          'right': 1,\n",
      "          'terminus': 1,\n",
      "          'nthere': 1,\n",
      "          'healing': 1,\n",
      "          'despite': 1,\n",
      "          'needless': 1,\n",
      "          'tackedon': 1,\n",
      "          'ending': 1,\n",
      "          'voiceover': 1,\n",
      "          'narration': 1,\n",
      "          'adult': 1,\n",
      "          'framing': 1,\n",
      "          'ways': 1,\n",
      "          'unexceptional': 1,\n",
      "          'reinvent': 1,\n",
      "          'wheel': 1,\n",
      "          'following': 1,\n",
      "          'instead': 1,\n",
      "          'standard': 1,\n",
      "          'pattern': 1,\n",
      "          'historical': 1,\n",
      "          'directon': 1,\n",
      "          'assured': 1,\n",
      "          'addresses': 1,\n",
      "          'run': 1,\n",
      "          'deep': 1,\n",
      "          'zhang': 1,\n",
      "          'yimous': 1,\n",
      "          'tian': 1,\n",
      "          'zhuangzhuangs': 1,\n",
      "          'blue': 1,\n",
      "          'kite': 1,\n",
      "          'china': 1,\n",
      "          'show': 1,\n",
      "          'agonies': 1,\n",
      "          'endured': 1,\n",
      "          'unremarkable': 1,\n",
      "          'people': 1,\n",
      "          'bad': 1,\n",
      "          'luck': 1,\n",
      "          'caught': 1,\n",
      "          'smashed': 1,\n",
      "          'crucible': 1,\n",
      "          'history': 1,\n",
      "          'nsuch': 1,\n",
      "          'strike': 1,\n",
      "          'inherently': 1,\n",
      "          'valuable': 1,\n",
      "          'even': 1,\n",
      "          'flawed': 1,\n",
      "          'nthey': 1,\n",
      "          'biased': 1,\n",
      "          'inaccurate': 1,\n",
      "          'bear': 1,\n",
      "          'weight': 1,\n",
      "          'human': 1,\n",
      "          'hardship': 1,\n",
      "          'confers': 1,\n",
      "          'nobility': 1,\n",
      "          'gravity': 1,\n",
      "          'inventive': 1,\n",
      "          'often': 1,\n",
      "          'lack': 1,\n",
      "          'notable': 1,\n",
      "          'three': 1,\n",
      "          'banned': 1,\n",
      "          'native': 1,\n",
      "          'countries': 1,\n",
      "          'events': 1,\n",
      "          'shown': 1,\n",
      "          'happened': 1,\n",
      "          'ago': 1,\n",
      "          'touch': 1,\n",
      "          'nerve': 1,\n",
      "          'tackled': 1,\n",
      "          'particular': 1,\n",
      "          'urgency': 1,\n",
      "          'light': 1,\n",
      "          'test': 1,\n",
      "          'bombings': 1,\n",
      "          'took': 1,\n",
      "          'year': 1,\n",
      "          'near': 1,\n",
      "          'future': 1,\n",
      "          'pakistan': 1,\n",
      "          'launch': 1,\n",
      "          'missiles': 1,\n",
      "          'nat': 1,\n",
      "          'tests': 1,\n",
      "          'reasons': 1,\n",
      "          'happen': 1,\n",
      "          'seeing': 1,\n",
      "          'better': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'whos': 4,\n",
      "          'travolta': 4,\n",
      "          'pulp': 4,\n",
      "          'fiction': 4,\n",
      "          'shorty': 4,\n",
      "          'movie': 4,\n",
      "          'travoltas': 3,\n",
      "          'career': 3,\n",
      "          'along': 3,\n",
      "          'contract': 3,\n",
      "          'nget': 3,\n",
      "          'boss': 3,\n",
      "          'one': 3,\n",
      "          'year': 2,\n",
      "          'look': 2,\n",
      "          'movies': 2,\n",
      "          'make': 2,\n",
      "          'nbut': 2,\n",
      "          'back': 2,\n",
      "          'better': 2,\n",
      "          'isnt': 2,\n",
      "          'everything': 2,\n",
      "          'hollywood': 2,\n",
      "          'know': 2,\n",
      "          'devil': 2,\n",
      "          'yes': 2,\n",
      "          'hackman': 2,\n",
      "          'mob': 2,\n",
      "          'game': 2,\n",
      "          'hackmans': 2,\n",
      "          'star': 2,\n",
      "          'devito': 2,\n",
      "          'nit': 2,\n",
      "          'doesnt': 2,\n",
      "          'definitely': 2,\n",
      "          'ago': 1,\n",
      "          'john': 1,\n",
      "          'consisted': 1,\n",
      "          'talking': 1,\n",
      "          'notice': 1,\n",
      "          'never': 1,\n",
      "          'called': 1,\n",
      "          'talented': 1,\n",
      "          '1991': 1,\n",
      "          'bomb': 1,\n",
      "          'shout': 1,\n",
      "          'bad': 1,\n",
      "          'enough': 1,\n",
      "          'people': 1,\n",
      "          'scream': 1,\n",
      "          'somewhere': 1,\n",
      "          'line': 1,\n",
      "          'got': 1,\n",
      "          'starring': 1,\n",
      "          'role': 1,\n",
      "          'tarantino': 1,\n",
      "          'masterpiece': 1,\n",
      "          'soared': 1,\n",
      "          'nweird': 1,\n",
      "          'someone': 1,\n",
      "          'whose': 1,\n",
      "          'par': 1,\n",
      "          'bee': 1,\n",
      "          'gees': 1,\n",
      "          '1978': 1,\n",
      "          'would': 1,\n",
      "          'experience': 1,\n",
      "          'fame': 1,\n",
      "          'fortune': 1,\n",
      "          'barry': 1,\n",
      "          'robin': 1,\n",
      "          'maurice': 1,\n",
      "          'gibb': 1,\n",
      "          'could': 1,\n",
      "          '1993': 1,\n",
      "          'straighttothecutoutbin': 1,\n",
      "          'album': 1,\n",
      "          'aptly': 1,\n",
      "          'named': 1,\n",
      "          'size': 1,\n",
      "          'course': 1,\n",
      "          'learned': 1,\n",
      "          'sales': 1,\n",
      "          'scene': 1,\n",
      "          'think': 1,\n",
      "          'nfour': 1,\n",
      "          'words': 1,\n",
      "          'nand': 1,\n",
      "          'nothing': 1,\n",
      "          'newt': 1,\n",
      "          'gingrichs': 1,\n",
      "          'america': 1,\n",
      "          'nno': 1,\n",
      "          'satan': 1,\n",
      "          'much': 1,\n",
      "          'humane': 1,\n",
      "          'nanyway': 1,\n",
      "          'sold': 1,\n",
      "          'soul': 1,\n",
      "          'hairy': 1,\n",
      "          'host': 1,\n",
      "          'netherworld': 1,\n",
      "          'nhow': 1,\n",
      "          'ni': 1,\n",
      "          'document': 1,\n",
      "          'question': 1,\n",
      "          'namazing': 1,\n",
      "          'buy': 1,\n",
      "          'collectors': 1,\n",
      "          'shops': 1,\n",
      "          'hundred': 1,\n",
      "          'dollars': 1,\n",
      "          'continues': 1,\n",
      "          'vein': 1,\n",
      "          'crime': 1,\n",
      "          'minion': 1,\n",
      "          'chili': 1,\n",
      "          'palmer': 1,\n",
      "          'nhe': 1,\n",
      "          'goes': 1,\n",
      "          'collect': 1,\n",
      "          'mafias': 1,\n",
      "          'money': 1,\n",
      "          'bgrade': 1,\n",
      "          'director': 1,\n",
      "          'gene': 1,\n",
      "          'suddenly': 1,\n",
      "          'finds': 1,\n",
      "          'wants': 1,\n",
      "          'nsure': 1,\n",
      "          'ruthless': 1,\n",
      "          'criminal': 1,\n",
      "          'like': 1,\n",
      "          'far': 1,\n",
      "          'honest': 1,\n",
      "          'guess': 1,\n",
      "          'thats': 1,\n",
      "          'beside': 1,\n",
      "          'point': 1,\n",
      "          'npalmer': 1,\n",
      "          'determined': 1,\n",
      "          'get': 1,\n",
      "          'next': 1,\n",
      "          'project': 1,\n",
      "          'made': 1,\n",
      "          'sets': 1,\n",
      "          'convince': 1,\n",
      "          'big': 1,\n",
      "          'martin': 1,\n",
      "          'weir': 1,\n",
      "          'danny': 1,\n",
      "          'bringing': 1,\n",
      "          'downandout': 1,\n",
      "          'horror': 1,\n",
      "          'actress': 1,\n",
      "          'karen': 1,\n",
      "          'flores': 1,\n",
      "          'rene': 1,\n",
      "          'russo': 1,\n",
      "          'already': 1,\n",
      "          'affairs': 1,\n",
      "          'take': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'oddsmaker': 1,\n",
      "          'predict': 1,\n",
      "          'soon': 1,\n",
      "          'hitting': 1,\n",
      "          'sheets': 1,\n",
      "          'well': 1,\n",
      "          'customary': 1,\n",
      "          'sexual': 1,\n",
      "          'tension': 1,\n",
      "          'denial': 1,\n",
      "          'used': 1,\n",
      "          'every': 1,\n",
      "          'comedy': 1,\n",
      "          'nto': 1,\n",
      "          'speechless': 1,\n",
      "          'works': 1,\n",
      "          'case': 1,\n",
      "          'unlike': 1,\n",
      "          'nalthough': 1,\n",
      "          'interesting': 1,\n",
      "          'note': 1,\n",
      "          'tony': 1,\n",
      "          'danza': 1,\n",
      "          'signed': 1,\n",
      "          'also': 1,\n",
      "          'ncomplicating': 1,\n",
      "          'matters': 1,\n",
      "          'somewhat': 1,\n",
      "          'mobsters': 1,\n",
      "          'backed': 1,\n",
      "          'films': 1,\n",
      "          'want': 1,\n",
      "          'trying': 1,\n",
      "          'track': 1,\n",
      "          'defecting': 1,\n",
      "          'means': 1,\n",
      "          'level': 1,\n",
      "          'despite': 1,\n",
      "          'obvious': 1,\n",
      "          'similarities': 1,\n",
      "          'nthis': 1,\n",
      "          'near': 1,\n",
      "          'amount': 1,\n",
      "          'originality': 1,\n",
      "          'depth': 1,\n",
      "          'entertaining': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'even': 1,\n",
      "          'halloween': 1,\n",
      "          'vi': 1,\n",
      "          'kind': 1,\n",
      "          'mixes': 1,\n",
      "          'intelligent': 1,\n",
      "          'humor': 1,\n",
      "          'action': 1,\n",
      "          'violence': 1,\n",
      "          'nim': 1,\n",
      "          'going': 1,\n",
      "          'check': 1,\n",
      "          'novel': 1,\n",
      "          'based': 1,\n",
      "          'nare': 1,\n",
      "          'getting': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'jerry': 7,\n",
      "          'conspiracy': 5,\n",
      "          'good': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'fletcher': 4,\n",
      "          'performance': 4,\n",
      "          'character': 4,\n",
      "          'surprised': 4,\n",
      "          'alice': 4,\n",
      "          'advance': 3,\n",
      "          'screening': 3,\n",
      "          'theory': 3,\n",
      "          'get': 3,\n",
      "          'see': 3,\n",
      "          'time': 3,\n",
      "          'next': 3,\n",
      "          'almost': 3,\n",
      "          'one': 3,\n",
      "          'audience': 3,\n",
      "          'throughout': 3,\n",
      "          'jerrys': 3,\n",
      "          'nand': 3,\n",
      "          'theories': 3,\n",
      "          'continually': 3,\n",
      "          'basically': 2,\n",
      "          'something': 2,\n",
      "          'like': 2,\n",
      "          'fastpaced': 2,\n",
      "          'mel': 2,\n",
      "          'gibson': 2,\n",
      "          'witty': 2,\n",
      "          'ngibsons': 2,\n",
      "          'terrific': 2,\n",
      "          'lethal': 2,\n",
      "          'weapon': 2,\n",
      "          'films': 2,\n",
      "          'around': 2,\n",
      "          'even': 2,\n",
      "          'imagine': 2,\n",
      "          'going': 2,\n",
      "          'nhe': 2,\n",
      "          'action': 2,\n",
      "          'situations': 2,\n",
      "          'nfor': 2,\n",
      "          'instance': 2,\n",
      "          'especially': 2,\n",
      "          'seem': 2,\n",
      "          'sutton': 2,\n",
      "          'truth': 2,\n",
      "          'life': 2,\n",
      "          'constantly': 2,\n",
      "          'sure': 2,\n",
      "          'fortunate': 1,\n",
      "          'enough': 1,\n",
      "          'attend': 1,\n",
      "          'upcoming': 1,\n",
      "          'thriller': 1,\n",
      "          'nthis': 1,\n",
      "          'course': 1,\n",
      "          'big': 1,\n",
      "          'deal': 1,\n",
      "          'reviewing': 1,\n",
      "          'movies': 1,\n",
      "          'hobby': 1,\n",
      "          'never': 1,\n",
      "          'chance': 1,\n",
      "          'nnot': 1,\n",
      "          'able': 1,\n",
      "          'stars': 1,\n",
      "          'fasttalking': 1,\n",
      "          'comical': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'similar': 1,\n",
      "          'martin': 1,\n",
      "          'riggs': 1,\n",
      "          'ngibson': 1,\n",
      "          'teams': 1,\n",
      "          'richard': 1,\n",
      "          'donner': 1,\n",
      "          'maverick': 1,\n",
      "          'combination': 1,\n",
      "          'works': 1,\n",
      "          'better': 1,\n",
      "          'indeed': 1,\n",
      "          'unique': 1,\n",
      "          'ntry': 1,\n",
      "          'toneddowned': 1,\n",
      "          'version': 1,\n",
      "          'travis': 1,\n",
      "          'bickle': 1,\n",
      "          'jittery': 1,\n",
      "          'guy': 1,\n",
      "          'knowledge': 1,\n",
      "          'government': 1,\n",
      "          'coverups': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'nin': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'nto': 1,\n",
      "          'begin': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'accepting': 1,\n",
      "          'gold': 1,\n",
      "          'trophies': 1,\n",
      "          'spring': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nsecondly': 1,\n",
      "          'gibsons': 1,\n",
      "          'provided': 1,\n",
      "          'fantastic': 1,\n",
      "          'previews': 1,\n",
      "          'led': 1,\n",
      "          'believe': 1,\n",
      "          'allout': 1,\n",
      "          'flick': 1,\n",
      "          'viewing': 1,\n",
      "          'opposite': 1,\n",
      "          'certain': 1,\n",
      "          'sense': 1,\n",
      "          'uncountable': 1,\n",
      "          'number': 1,\n",
      "          'oneliners': 1,\n",
      "          'hilarious': 1,\n",
      "          'tends': 1,\n",
      "          'side': 1,\n",
      "          'apartment': 1,\n",
      "          'security': 1,\n",
      "          'memorable': 1,\n",
      "          'last': 1,\n",
      "          'plot': 1,\n",
      "          'nwriter': 1,\n",
      "          'brian': 1,\n",
      "          'helgeland': 1,\n",
      "          'created': 1,\n",
      "          'story': 1,\n",
      "          'watching': 1,\n",
      "          'left': 1,\n",
      "          'wonder': 1,\n",
      "          'fletchers': 1,\n",
      "          'farfetched': 1,\n",
      "          'first': 1,\n",
      "          'helgelands': 1,\n",
      "          'opinions': 1,\n",
      "          'nmel': 1,\n",
      "          'isnt': 1,\n",
      "          'standout': 1,\n",
      "          'njulia': 1,\n",
      "          'roberts': 1,\n",
      "          'department': 1,\n",
      "          'justice': 1,\n",
      "          'employee': 1,\n",
      "          'cant': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'visits': 1,\n",
      "          'hopes': 1,\n",
      "          'also': 1,\n",
      "          'seems': 1,\n",
      "          'obsessed': 1,\n",
      "          'love': 1,\n",
      "          'nbut': 1,\n",
      "          'whenever': 1,\n",
      "          'approaches': 1,\n",
      "          'another': 1,\n",
      "          'shrugs': 1,\n",
      "          'beliefs': 1,\n",
      "          'noting': 1,\n",
      "          'day': 1,\n",
      "          'slap': 1,\n",
      "          'restraining': 1,\n",
      "          'order': 1,\n",
      "          'njerry': 1,\n",
      "          'obviously': 1,\n",
      "          'determined': 1,\n",
      "          'seek': 1,\n",
      "          'continues': 1,\n",
      "          'research': 1,\n",
      "          'information': 1,\n",
      "          'printed': 1,\n",
      "          'newsletter': 1,\n",
      "          'title': 1,\n",
      "          'nalthough': 1,\n",
      "          'five': 1,\n",
      "          'subscribers': 1,\n",
      "          'puts': 1,\n",
      "          'large': 1,\n",
      "          'amount': 1,\n",
      "          'effort': 1,\n",
      "          'work': 1,\n",
      "          'publishes': 1,\n",
      "          'edition': 1,\n",
      "          'nvery': 1,\n",
      "          'soon': 1,\n",
      "          'abducted': 1,\n",
      "          'tortured': 1,\n",
      "          'sinister': 1,\n",
      "          'man': 1,\n",
      "          'refers': 1,\n",
      "          'dr': 1,\n",
      "          'jonas': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'nafter': 1,\n",
      "          'barely': 1,\n",
      "          'escaping': 1,\n",
      "          'alive': 1,\n",
      "          'forced': 1,\n",
      "          'turn': 1,\n",
      "          'person': 1,\n",
      "          'trust': 1,\n",
      "          'remainder': 1,\n",
      "          'always': 1,\n",
      "          'full': 1,\n",
      "          'suspense': 1,\n",
      "          'put': 1,\n",
      "          'jeopardy': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'learn': 1,\n",
      "          'nmany': 1,\n",
      "          'things': 1,\n",
      "          'explained': 1,\n",
      "          'characters': 1,\n",
      "          'meaning': 1,\n",
      "          'book': 1,\n",
      "          'catcher': 1,\n",
      "          'rye': 1,\n",
      "          'ties': 1,\n",
      "          'assassins': 1,\n",
      "          'reason': 1,\n",
      "          'lone': 1,\n",
      "          'gunmen': 1,\n",
      "          'three': 1,\n",
      "          'names': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'nlee': 1,\n",
      "          'harvey': 1,\n",
      "          'oswald': 1,\n",
      "          'james': 1,\n",
      "          'earl': 1,\n",
      "          'ray': 1,\n",
      "          'real': 1,\n",
      "          'behind': 1,\n",
      "          'grateful': 1,\n",
      "          'dead': 1,\n",
      "          'nmake': 1,\n",
      "          'listen': 1,\n",
      "          'closely': 1,\n",
      "          'throwing': 1,\n",
      "          'interesting': 1,\n",
      "          'tidbits': 1,\n",
      "          'ndefinitely': 1,\n",
      "          'hits': 1,\n",
      "          'theaters': 1,\n",
      "          'august': 1,\n",
      "          '8th': 1,\n",
      "          'make': 1,\n",
      "          'standing': 1,\n",
      "          'line': 1,\n",
      "          'ni': 1,\n",
      "          'nearly': 1,\n",
      "          'positive': 1,\n",
      "          'everyone': 1,\n",
      "          'enjoy': 1,\n",
      "          'actionthriller': 1,\n",
      "          'dialogue': 1,\n",
      "          'numerous': 1,\n",
      "          'suspenseful': 1,\n",
      "          'arent': 1,\n",
      "          'still': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mulan': 7,\n",
      "          'animated': 4,\n",
      "          'one': 3,\n",
      "          'make': 3,\n",
      "          'disney': 2,\n",
      "          'studios': 2,\n",
      "          'formula': 2,\n",
      "          'hard': 2,\n",
      "          'case': 2,\n",
      "          'character': 2,\n",
      "          'female': 2,\n",
      "          'time': 2,\n",
      "          'uncle': 2,\n",
      "          'least': 2,\n",
      "          'disneys': 2,\n",
      "          'like': 2,\n",
      "          'man': 2,\n",
      "          'imperial': 2,\n",
      "          'annual': 1,\n",
      "          'fulllength': 1,\n",
      "          'features': 1,\n",
      "          'pat': 1,\n",
      "          'remember': 1,\n",
      "          'youre': 1,\n",
      "          'watching': 1,\n",
      "          'given': 1,\n",
      "          'moment': 1,\n",
      "          'n': 1,\n",
      "          '36th': 1,\n",
      "          'adventure': 1,\n",
      "          'latest': 1,\n",
      "          'point': 1,\n",
      "          'nonce': 1,\n",
      "          'tale': 1,\n",
      "          'focused': 1,\n",
      "          'around': 1,\n",
      "          'strong': 1,\n",
      "          'central': 1,\n",
      "          'usual': 1,\n",
      "          'whose': 1,\n",
      "          'heroinesariel': 1,\n",
      "          'belle': 1,\n",
      "          'pocahontas': 1,\n",
      "          'mulanget': 1,\n",
      "          'equal': 1,\n",
      "          'screen': 1,\n",
      "          'heroes': 1,\n",
      "          'recent': 1,\n",
      "          'years': 1,\n",
      "          'nadd': 1,\n",
      "          'requisite': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'wisecracking': 1,\n",
      "          'sidekick': 1,\n",
      "          'two': 1,\n",
      "          'pep': 1,\n",
      "          'soundtrack': 1,\n",
      "          'handful': 1,\n",
      "          'strategically': 1,\n",
      "          'placed': 1,\n",
      "          'show': 1,\n",
      "          'tunes': 1,\n",
      "          'introspective': 1,\n",
      "          'number': 1,\n",
      "          'pool': 1,\n",
      "          'looking': 1,\n",
      "          'mirror': 1,\n",
      "          'rousing': 1,\n",
      "          'anthem': 1,\n",
      "          'cutesy': 1,\n",
      "          'montagebacked': 1,\n",
      "          'crowd': 1,\n",
      "          'pleaser': 1,\n",
      "          'pose': 1,\n",
      "          'threats': 1,\n",
      "          'engaging': 1,\n",
      "          'lead': 1,\n",
      "          'tie': 1,\n",
      "          'things': 1,\n",
      "          'neatly': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'nbobs': 1,\n",
      "          'nbetter': 1,\n",
      "          'walts': 1,\n",
      "          'nkids': 1,\n",
      "          'doubt': 1,\n",
      "          'go': 1,\n",
      "          'gaga': 1,\n",
      "          'fast': 1,\n",
      "          'food': 1,\n",
      "          'tieins': 1,\n",
      "          'familiarity': 1,\n",
      "          'leave': 1,\n",
      "          'grownupsthis': 1,\n",
      "          'reviewer': 1,\n",
      "          'includedwishing': 1,\n",
      "          'little': 1,\n",
      "          'nmaybe': 1,\n",
      "          'feature': 1,\n",
      "          'withoutshock': 1,\n",
      "          'nhorror': 1,\n",
      "          'nsongs': 1,\n",
      "          'example': 1,\n",
      "          'maybe': 1,\n",
      "          'film': 1,\n",
      "          'cheeky': 1,\n",
      "          'chihuahua': 1,\n",
      "          'called': 1,\n",
      "          'pepe': 1,\n",
      "          'longs': 1,\n",
      "          'become': 1,\n",
      "          'matador': 1,\n",
      "          'trinidad': 1,\n",
      "          'nhow': 1,\n",
      "          'simply': 1,\n",
      "          'ditching': 1,\n",
      "          'sidekicks': 1,\n",
      "          'altogether': 1,\n",
      "          'nit': 1,\n",
      "          'isnt': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'happen': 1,\n",
      "          'nlike': 1,\n",
      "          'previous': 1,\n",
      "          'entries': 1,\n",
      "          'slow': 1,\n",
      "          'mark': 1,\n",
      "          'nthe': 1,\n",
      "          'animation': 1,\n",
      "          'tends': 1,\n",
      "          'suffer': 1,\n",
      "          'slackness': 1,\n",
      "          'early': 1,\n",
      "          'going': 1,\n",
      "          'humorous': 1,\n",
      "          'element': 1,\n",
      "          'madcap': 1,\n",
      "          'dragon': 1,\n",
      "          'wannabe': 1,\n",
      "          'guise': 1,\n",
      "          'loquacious': 1,\n",
      "          'lizard': 1,\n",
      "          'dry': 1,\n",
      "          'mouth': 1,\n",
      "          'courtesy': 1,\n",
      "          'eddie': 1,\n",
      "          'murphys': 1,\n",
      "          'vocal': 1,\n",
      "          'talents': 1,\n",
      "          'plays': 1,\n",
      "          'inappropriate': 1,\n",
      "          'necessary': 1,\n",
      "          'formulawise': 1,\n",
      "          'afterthought': 1,\n",
      "          'nhowever': 1,\n",
      "          'hour': 1,\n",
      "          'everything': 1,\n",
      "          'comes': 1,\n",
      "          'together': 1,\n",
      "          'clicks': 1,\n",
      "          'nhighlights': 1,\n",
      "          'include': 1,\n",
      "          'spectacular': 1,\n",
      "          'cavalry': 1,\n",
      "          'charge': 1,\n",
      "          'snowcovered': 1,\n",
      "          'pass': 1,\n",
      "          'due': 1,\n",
      "          'sophistication': 1,\n",
      "          'todays': 1,\n",
      "          'computergenerated': 1,\n",
      "          'imagery': 1,\n",
      "          'tell': 1,\n",
      "          'real': 1,\n",
      "          'thing': 1,\n",
      "          'memorable': 1,\n",
      "          'showstopping': 1,\n",
      "          'musical': 1,\n",
      "          'interlude': 1,\n",
      "          'ill': 1,\n",
      "          'penned': 1,\n",
      "          'matthew': 1,\n",
      "          'wilder': 1,\n",
      "          'david': 1,\n",
      "          'zippel': 1,\n",
      "          'last': 1,\n",
      "          'nvoiced': 1,\n",
      "          'mingna': 1,\n",
      "          'wen': 1,\n",
      "          'strongest': 1,\n",
      "          'date': 1,\n",
      "          'nwhen': 1,\n",
      "          'hordes': 1,\n",
      "          'huns': 1,\n",
      "          'pour': 1,\n",
      "          'chinas': 1,\n",
      "          'great': 1,\n",
      "          'wall': 1,\n",
      "          'threaten': 1,\n",
      "          'overthrow': 1,\n",
      "          'palace': 1,\n",
      "          'emperor': 1,\n",
      "          'decrees': 1,\n",
      "          'every': 1,\n",
      "          'family': 1,\n",
      "          'land': 1,\n",
      "          'dispatch': 1,\n",
      "          'serve': 1,\n",
      "          'army': 1,\n",
      "          'nsince': 1,\n",
      "          'mulans': 1,\n",
      "          'father': 1,\n",
      "          'infirm': 1,\n",
      "          'proud': 1,\n",
      "          'highspirited': 1,\n",
      "          'steals': 1,\n",
      "          'fathers': 1,\n",
      "          'armor': 1,\n",
      "          'incognito': 1,\n",
      "          'signs': 1,\n",
      "          'face': 1,\n",
      "          'mongolian': 1,\n",
      "          'menace': 1,\n",
      "          'nattracted': 1,\n",
      "          'distracted': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'shang': 1,\n",
      "          'b': 1,\n",
      "          'nwong': 1,\n",
      "          'outmatches': 1,\n",
      "          'fellow': 1,\n",
      "          'combatants': 1,\n",
      "          'smarts': 1,\n",
      "          'wit': 1,\n",
      "          'physical': 1,\n",
      "          'ability': 1,\n",
      "          'nshes': 1,\n",
      "          'woman': 1,\n",
      "          '90s': 1,\n",
      "          'couple': 1,\n",
      "          'millennia': 1,\n",
      "          'ahead': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'good': 3,\n",
      "          'movie': 2,\n",
      "          'less': 2,\n",
      "          'twister': 2,\n",
      "          'plot': 2,\n",
      "          'one': 2,\n",
      "          'effects': 2,\n",
      "          'tommy': 2,\n",
      "          'small': 2,\n",
      "          'quake': 2,\n",
      "          'nthen': 2,\n",
      "          'hours': 2,\n",
      "          'nthe': 2,\n",
      "          'ni': 2,\n",
      "          'nit': 2,\n",
      "          'interesting': 2,\n",
      "          'expecting': 1,\n",
      "          'thrilling': 1,\n",
      "          'ntwister': 1,\n",
      "          'real': 1,\n",
      "          'simpithize': 1,\n",
      "          'nbut': 1,\n",
      "          'amazing': 1,\n",
      "          'hoping': 1,\n",
      "          'would': 1,\n",
      "          'volcano': 1,\n",
      "          'nvolcano': 1,\n",
      "          'starts': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'emo': 1,\n",
      "          'nhe': 1,\n",
      "          'worrys': 1,\n",
      "          'earthquake': 1,\n",
      "          'enough': 1,\n",
      "          'leave': 1,\n",
      "          'daughter': 1,\n",
      "          'home': 1,\n",
      "          'baby': 1,\n",
      "          'sitter': 1,\n",
      "          'nthere': 1,\n",
      "          'another': 1,\n",
      "          'geologist': 1,\n",
      "          'points': 1,\n",
      "          'takes': 1,\n",
      "          'geologic': 1,\n",
      "          'event': 1,\n",
      "          'heat': 1,\n",
      "          'millions': 1,\n",
      "          'gallons': 1,\n",
      "          'water': 1,\n",
      "          '12': 1,\n",
      "          'na': 1,\n",
      "          'later': 1,\n",
      "          'large': 1,\n",
      "          'amount': 1,\n",
      "          'ash': 1,\n",
      "          'start': 1,\n",
      "          'fall': 1,\n",
      "          'nstarts': 1,\n",
      "          'volcanic': 1,\n",
      "          'eruption': 1,\n",
      "          'liked': 1,\n",
      "          'great': 1,\n",
      "          'hoped': 1,\n",
      "          'still': 1,\n",
      "          'none': 1,\n",
      "          'excellent': 1,\n",
      "          'special': 1,\n",
      "          'best': 1,\n",
      "          'view': 1,\n",
      "          'nhelecopters': 1,\n",
      "          'flying': 1,\n",
      "          'streets': 1,\n",
      "          'volcanos': 1,\n",
      "          'nalso': 1,\n",
      "          'side': 1,\n",
      "          'stories': 1,\n",
      "          'made': 1,\n",
      "          'nso': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'animated': 2,\n",
      "          'great': 2,\n",
      "          'disneys': 1,\n",
      "          '35th': 1,\n",
      "          'feature': 1,\n",
      "          'retooling': 1,\n",
      "          'olympian': 1,\n",
      "          'legend': 1,\n",
      "          'crossed': 1,\n",
      "          'well': 1,\n",
      "          'superman': 1,\n",
      "          'story': 1,\n",
      "          'surprisingly': 1,\n",
      "          'soft': 1,\n",
      "          'center': 1,\n",
      "          'ngreat': 1,\n",
      "          'wit': 1,\n",
      "          'art': 1,\n",
      "          'villain': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'hades': 1,\n",
      "          'lord': 1,\n",
      "          'underworld': 1,\n",
      "          'local': 1,\n",
      "          'lounge': 1,\n",
      "          'act': 1,\n",
      "          'cant': 1,\n",
      "          'quite': 1,\n",
      "          'stifle': 1,\n",
      "          'yawns': 1,\n",
      "          'induced': 1,\n",
      "          'bland': 1,\n",
      "          'hero': 1,\n",
      "          'colorfully': 1,\n",
      "          'monotonous': 1,\n",
      "          'sidekick': 1,\n",
      "          'danny': 1,\n",
      "          'devito': 1,\n",
      "          'satyrical': 1,\n",
      "          'trainer': 1,\n",
      "          'phil': 1,\n",
      "          'largely': 1,\n",
      "          'unremarkable': 1,\n",
      "          'soundtrack': 1,\n",
      "          'n': 1,\n",
      "          'none': 1,\n",
      "          'alan': 1,\n",
      "          'menkendavid': 1,\n",
      "          'zippel': 1,\n",
      "          'tunes': 1,\n",
      "          'particular': 1,\n",
      "          'ly': 1,\n",
      "          'noteworthy': 1,\n",
      "          'nsome': 1,\n",
      "          'lack': 1,\n",
      "          'lyrical': 1,\n",
      "          'snap': 1,\n",
      "          'nothers': 1,\n",
      "          'need': 1,\n",
      "          'memorable': 1,\n",
      "          'melodies': 1,\n",
      "          'nboring': 1,\n",
      "          'ballads': 1,\n",
      "          'expect': 1,\n",
      "          'boring': 1,\n",
      "          'production': 1,\n",
      "          'numbers': 1,\n",
      "          'nso': 1,\n",
      "          'hercules': 1,\n",
      "          'bit': 1,\n",
      "          'long': 1,\n",
      "          'sit': 1,\n",
      "          'wont': 1,\n",
      "          'stay': 1,\n",
      "          'bored': 1,\n",
      "          'nthe': 1,\n",
      "          'highlights': 1,\n",
      "          'include': 1,\n",
      "          'nifty': 1,\n",
      "          'round': 1,\n",
      "          'action': 1,\n",
      "          'herc': 1,\n",
      "          'battling': 1,\n",
      "          'cgi': 1,\n",
      "          'hydra': 1,\n",
      "          'steady': 1,\n",
      "          'stream': 1,\n",
      "          'anachronisms': 1,\n",
      "          'somebody': 1,\n",
      "          'call': 1,\n",
      "          'ixii': 1,\n",
      "          'pop': 1,\n",
      "          'references': 1,\n",
      "          'lets': 1,\n",
      "          'get': 1,\n",
      "          'ready': 1,\n",
      "          'rumble': 1,\n",
      "          'la': 1,\n",
      "          'aladdin': 1,\n",
      "          'several': 1,\n",
      "          'longoverdue': 1,\n",
      "          'jabs': 1,\n",
      "          'mouses': 1,\n",
      "          'marketing': 1,\n",
      "          'merchandising': 1,\n",
      "          'depart': 1,\n",
      "          'ments': 1,\n",
      "          'nwhile': 1,\n",
      "          'rocksolid': 1,\n",
      "          'hunchback': 1,\n",
      "          'still': 1,\n",
      "          'new': 1,\n",
      "          'world': 1,\n",
      "          'improvement': 1,\n",
      "          'pocohontas': 1,\n",
      "          'ndirected': 1,\n",
      "          'ron': 1,\n",
      "          'clements': 1,\n",
      "          'john': 1,\n",
      "          'musker': 1,\n",
      "          'voice': 1,\n",
      "          'credits': 1,\n",
      "          'including': 1,\n",
      "          'tate': 1,\n",
      "          'donovan': 1,\n",
      "          'susan': 1,\n",
      "          'egan': 1,\n",
      "          'bob': 1,\n",
      "          'goldthwait': 1,\n",
      "          'matt': 1,\n",
      "          'frewer': 1,\n",
      "          'samantha': 1,\n",
      "          'eggar': 1,\n",
      "          'paul': 1,\n",
      "          'shaffer': 1,\n",
      "          'lighting': 1,\n",
      "          'bolt': 1,\n",
      "          'zeus': 1,\n",
      "          'rip': 1,\n",
      "          'torn': 1,\n",
      "          'whos': 1,\n",
      "          'good': 1,\n",
      "          'summer': 1,\n",
      "          'also': 1,\n",
      "          'appearing': 1,\n",
      "          'trial': 1,\n",
      "          'error': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'shrek': 12,\n",
      "          'nthe': 7,\n",
      "          'nfor': 4,\n",
      "          'characters': 4,\n",
      "          'farquaad': 4,\n",
      "          'disney': 4,\n",
      "          'offers': 3,\n",
      "          'big': 3,\n",
      "          'jokes': 3,\n",
      "          'found': 3,\n",
      "          'lord': 3,\n",
      "          'castle': 3,\n",
      "          'like': 3,\n",
      "          'three': 3,\n",
      "          'snow': 3,\n",
      "          'white': 3,\n",
      "          'make': 3,\n",
      "          'though': 3,\n",
      "          'come': 3,\n",
      "          'farquaads': 3,\n",
      "          'film': 3,\n",
      "          'short': 3,\n",
      "          'different': 2,\n",
      "          'laughs': 2,\n",
      "          'family': 2,\n",
      "          'films': 2,\n",
      "          'fairy': 2,\n",
      "          'tale': 2,\n",
      "          'nall': 2,\n",
      "          'ride': 2,\n",
      "          'although': 2,\n",
      "          'disturbing': 2,\n",
      "          'nbut': 2,\n",
      "          'several': 2,\n",
      "          'life': 2,\n",
      "          'green': 2,\n",
      "          'ogre': 2,\n",
      "          'using': 2,\n",
      "          'nshrek': 2,\n",
      "          'take': 2,\n",
      "          'pinocchio': 2,\n",
      "          'bad': 2,\n",
      "          'seven': 2,\n",
      "          'magic': 2,\n",
      "          'mirror': 2,\n",
      "          'shown': 2,\n",
      "          'lovely': 2,\n",
      "          'princess': 2,\n",
      "          'fiona': 2,\n",
      "          'brings': 2,\n",
      "          'donkey': 2,\n",
      "          'eddie': 2,\n",
      "          'murphy': 2,\n",
      "          'learn': 2,\n",
      "          'well': 2,\n",
      "          'movie': 2,\n",
      "          'world': 2,\n",
      "          'one': 2,\n",
      "          'behind': 2,\n",
      "          'katzenberg': 2,\n",
      "          'two': 2,\n",
      "          'others': 2,\n",
      "          'people': 2,\n",
      "          'look': 2,\n",
      "          'moral': 2,\n",
      "          'good': 2,\n",
      "          'computeranimated': 1,\n",
      "          'comedy': 1,\n",
      "          'designed': 1,\n",
      "          'enjoyed': 1,\n",
      "          'levels': 1,\n",
      "          'groups': 1,\n",
      "          'children': 1,\n",
      "          'imaginative': 1,\n",
      "          'visuals': 1,\n",
      "          'appealing': 1,\n",
      "          'new': 1,\n",
      "          'mixed': 1,\n",
      "          'host': 1,\n",
      "          'familiar': 1,\n",
      "          'faces': 1,\n",
      "          'loads': 1,\n",
      "          'action': 1,\n",
      "          'barrage': 1,\n",
      "          'including': 1,\n",
      "          'numerous': 1,\n",
      "          'gags': 1,\n",
      "          'related': 1,\n",
      "          'body': 1,\n",
      "          'functions': 1,\n",
      "          'yucky': 1,\n",
      "          'substances': 1,\n",
      "          'apparently': 1,\n",
      "          'requisite': 1,\n",
      "          'contemporary': 1,\n",
      "          'adults': 1,\n",
      "          'fractured': 1,\n",
      "          'packed': 1,\n",
      "          'rude': 1,\n",
      "          'sail': 1,\n",
      "          'heads': 1,\n",
      "          'kids': 1,\n",
      "          'snappy': 1,\n",
      "          'couple': 1,\n",
      "          'points': 1,\n",
      "          'first': 1,\n",
      "          'basics': 1,\n",
      "          'nbased': 1,\n",
      "          'loosely': 1,\n",
      "          '1990': 1,\n",
      "          'childrens': 1,\n",
      "          'story': 1,\n",
      "          'follows': 1,\n",
      "          'momentous': 1,\n",
      "          'days': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'rotund': 1,\n",
      "          'voiced': 1,\n",
      "          'mike': 1,\n",
      "          'myers': 1,\n",
      "          'pleasant': 1,\n",
      "          'scottish': 1,\n",
      "          'accent': 1,\n",
      "          'fond': 1,\n",
      "          'grumpy': 1,\n",
      "          'fellow': 1,\n",
      "          'living': 1,\n",
      "          'solitary': 1,\n",
      "          'deep': 1,\n",
      "          'swamp': 1,\n",
      "          'local': 1,\n",
      "          'nobleman': 1,\n",
      "          'disturbs': 1,\n",
      "          'peace': 1,\n",
      "          'npetty': 1,\n",
      "          'tyrant': 1,\n",
      "          'away': 1,\n",
      "          'awk': 1,\n",
      "          'middle': 1,\n",
      "          'basis': 1,\n",
      "          'string': 1,\n",
      "          'impolite': 1,\n",
      "          'oneliners': 1,\n",
      "          'owns': 1,\n",
      "          'land': 1,\n",
      "          'resides': 1,\n",
      "          'nhe': 1,\n",
      "          'proceeds': 1,\n",
      "          'turn': 1,\n",
      "          'ogres': 1,\n",
      "          'yard': 1,\n",
      "          'ellis': 1,\n",
      "          'island': 1,\n",
      "          'storybook': 1,\n",
      "          'banishes': 1,\n",
      "          'fanciful': 1,\n",
      "          'beings': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'finds': 1,\n",
      "          'surrounded': 1,\n",
      "          'legends': 1,\n",
      "          'blind': 1,\n",
      "          'mice': 1,\n",
      "          'wolf': 1,\n",
      "          'dwarfs': 1,\n",
      "          'bears': 1,\n",
      "          'name': 1,\n",
      "          'nan': 1,\n",
      "          'enraged': 1,\n",
      "          'storms': 1,\n",
      "          'find': 1,\n",
      "          'john': 1,\n",
      "          'lithgow': 1,\n",
      "          'ready': 1,\n",
      "          'bargain': 1,\n",
      "          'nlord': 1,\n",
      "          'obnoxious': 1,\n",
      "          'wants': 1,\n",
      "          'become': 1,\n",
      "          'king': 1,\n",
      "          'way': 1,\n",
      "          'rescue': 1,\n",
      "          'damsel': 1,\n",
      "          'distress': 1,\n",
      "          'wife': 1,\n",
      "          'unveils': 1,\n",
      "          'choices': 1,\n",
      "          'presentation': 1,\n",
      "          'straight': 1,\n",
      "          'dating': 1,\n",
      "          'game': 1,\n",
      "          'cheeky': 1,\n",
      "          'announcer': 1,\n",
      "          'purrs': 1,\n",
      "          'even': 1,\n",
      "          'lives': 1,\n",
      "          'men': 1,\n",
      "          'shes': 1,\n",
      "          'easy': 1,\n",
      "          'nfarquaad': 1,\n",
      "          'selects': 1,\n",
      "          'cameron': 1,\n",
      "          'diaz': 1,\n",
      "          'deal': 1,\n",
      "          'snatches': 1,\n",
      "          'dragonprotected': 1,\n",
      "          'lava': 1,\n",
      "          'moatfilled': 1,\n",
      "          'held': 1,\n",
      "          'captive': 1,\n",
      "          'throne': 1,\n",
      "          'allow': 1,\n",
      "          'pests': 1,\n",
      "          'move': 1,\n",
      "          'back': 1,\n",
      "          'grounds': 1,\n",
      "          'reluctantly': 1,\n",
      "          'agrees': 1,\n",
      "          'sets': 1,\n",
      "          'quest': 1,\n",
      "          'accompanied': 1,\n",
      "          'motormouthed': 1,\n",
      "          'determined': 1,\n",
      "          'grump': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'nthey': 1,\n",
      "          'finally': 1,\n",
      "          'hook': 1,\n",
      "          'helpless': 1,\n",
      "          'maiden': 1,\n",
      "          'expected': 1,\n",
      "          'meet': 1,\n",
      "          'matter': 1,\n",
      "          'dragon': 1,\n",
      "          'surprises': 1,\n",
      "          'references': 1,\n",
      "          'great': 1,\n",
      "          'many': 1,\n",
      "          'flicks': 1,\n",
      "          'babe': 1,\n",
      "          'thatll': 1,\n",
      "          'nthatll': 1,\n",
      "          'graduate': 1,\n",
      "          'lions': 1,\n",
      "          'share': 1,\n",
      "          'expense': 1,\n",
      "          'wonderful': 1,\n",
      "          'publicdomain': 1,\n",
      "          'made': 1,\n",
      "          'icons': 1,\n",
      "          'various': 1,\n",
      "          'hits': 1,\n",
      "          'referred': 1,\n",
      "          'possessed': 1,\n",
      "          'toy': 1,\n",
      "          'spies': 1,\n",
      "          'sleeping': 1,\n",
      "          'cabin': 1,\n",
      "          'bellows': 1,\n",
      "          'get': 1,\n",
      "          'dead': 1,\n",
      "          'broad': 1,\n",
      "          'table': 1,\n",
      "          'n': 1,\n",
      "          'biggest': 1,\n",
      "          'slams': 1,\n",
      "          'visits': 1,\n",
      "          'royal': 1,\n",
      "          'domicile': 1,\n",
      "          'closely': 1,\n",
      "          'resembles': 1,\n",
      "          'certain': 1,\n",
      "          'kingdom': 1,\n",
      "          'souvenir': 1,\n",
      "          'stands': 1,\n",
      "          'queue': 1,\n",
      "          'lines': 1,\n",
      "          'display': 1,\n",
      "          'animatronic': 1,\n",
      "          'figures': 1,\n",
      "          'sing': 1,\n",
      "          'palace': 1,\n",
      "          'rules': 1,\n",
      "          'relentlessly': 1,\n",
      "          'peppy': 1,\n",
      "          'tune': 1,\n",
      "          'sounds': 1,\n",
      "          'lot': 1,\n",
      "          'small': 1,\n",
      "          'nwhich': 1,\n",
      "          'point': 1,\n",
      "          'number': 1,\n",
      "          'ni': 1,\n",
      "          'laughed': 1,\n",
      "          'swipes': 1,\n",
      "          'mentality': 1,\n",
      "          'bit': 1,\n",
      "          'sad': 1,\n",
      "          'acrimony': 1,\n",
      "          'dreamworks': 1,\n",
      "          'honcho': 1,\n",
      "          'jeff': 1,\n",
      "          'wheel': 1,\n",
      "          'michael': 1,\n",
      "          'eisner': 1,\n",
      "          'known': 1,\n",
      "          'years': 1,\n",
      "          'companies': 1,\n",
      "          'tried': 1,\n",
      "          'sabotage': 1,\n",
      "          'video': 1,\n",
      "          'releases': 1,\n",
      "          'issuing': 1,\n",
      "          'similar': 1,\n",
      "          'competing': 1,\n",
      "          'productions': 1,\n",
      "          'day': 1,\n",
      "          'nand': 1,\n",
      "          'entire': 1,\n",
      "          'attack': 1,\n",
      "          'former': 1,\n",
      "          'employer': 1,\n",
      "          'nheres': 1,\n",
      "          'suggestion': 1,\n",
      "          'boys': 1,\n",
      "          'grow': 1,\n",
      "          'nput': 1,\n",
      "          'past': 1,\n",
      "          'ntheres': 1,\n",
      "          'room': 1,\n",
      "          'sandbox': 1,\n",
      "          'cant': 1,\n",
      "          'play': 1,\n",
      "          'nice': 1,\n",
      "          'go': 1,\n",
      "          'rooms': 1,\n",
      "          'area': 1,\n",
      "          'troubling': 1,\n",
      "          'came': 1,\n",
      "          'portrayal': 1,\n",
      "          'nbeyond': 1,\n",
      "          'irreverence': 1,\n",
      "          'actually': 1,\n",
      "          'message': 1,\n",
      "          'beyond': 1,\n",
      "          'physical': 1,\n",
      "          'appearances': 1,\n",
      "          'true': 1,\n",
      "          'beauty': 1,\n",
      "          'lies': 1,\n",
      "          'within': 1,\n",
      "          'nits': 1,\n",
      "          'notion': 1,\n",
      "          'betrays': 1,\n",
      "          'incessantly': 1,\n",
      "          'taking': 1,\n",
      "          'cheap': 1,\n",
      "          'shots': 1,\n",
      "          'diminutive': 1,\n",
      "          'stature': 1,\n",
      "          'ndo': 1,\n",
      "          'really': 1,\n",
      "          'need': 1,\n",
      "          'reinforcing': 1,\n",
      "          'idea': 1,\n",
      "          'mocking': 1,\n",
      "          'acceptable': 1,\n",
      "          'pompous': 1,\n",
      "          'selfish': 1,\n",
      "          'behavior': 1,\n",
      "          'enough': 1,\n",
      "          'target': 1,\n",
      "          'zingers': 1,\n",
      "          'nadding': 1,\n",
      "          'simply': 1,\n",
      "          'mean': 1,\n",
      "          'nstill': 1,\n",
      "          'rollicking': 1,\n",
      "          'time': 1,\n",
      "          'computer': 1,\n",
      "          'animation': 1,\n",
      "          'mostly': 1,\n",
      "          'impressive': 1,\n",
      "          'key': 1,\n",
      "          'animated': 1,\n",
      "          'rubber': 1,\n",
      "          'squeeze': 1,\n",
      "          'toys': 1,\n",
      "          'human': 1,\n",
      "          'movements': 1,\n",
      "          'often': 1,\n",
      "          'jerky': 1,\n",
      "          'voice': 1,\n",
      "          'work': 1,\n",
      "          'strong': 1,\n",
      "          'particularly': 1,\n",
      "          'fast': 1,\n",
      "          'furious': 1,\n",
      "          'tainted': 1,\n",
      "          'may': 1,\n",
      "          'nto': 1,\n",
      "          'trot': 1,\n",
      "          'clich': 1,\n",
      "          'fun': 1,\n",
      "          'ages': 1,\n",
      "          'nparents': 1,\n",
      "          'remind': 1,\n",
      "          'young': 1,\n",
      "          'ones': 1,\n",
      "          'home': 1,\n",
      "          'taunting': 1,\n",
      "          'tall': 1,\n",
      "          'skinny': 1,\n",
      "          'fat': 1,\n",
      "          'etc': 1,\n",
      "          'thing': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'food': 7,\n",
      "          'something': 7,\n",
      "          'film': 6,\n",
      "          'tampopo': 6,\n",
      "          'family': 6,\n",
      "          'eat': 5,\n",
      "          'scene': 5,\n",
      "          'shop': 5,\n",
      "          'nthe': 5,\n",
      "          'bowl': 4,\n",
      "          'ramen': 4,\n",
      "          'one': 4,\n",
      "          'noodle': 4,\n",
      "          'noodles': 3,\n",
      "          'day': 3,\n",
      "          'goro': 3,\n",
      "          'tampopos': 3,\n",
      "          'people': 3,\n",
      "          'help': 3,\n",
      "          'make': 3,\n",
      "          'nthis': 3,\n",
      "          'soup': 3,\n",
      "          'store': 3,\n",
      "          'next': 3,\n",
      "          'also': 3,\n",
      "          'even': 3,\n",
      "          'wife': 3,\n",
      "          'meal': 3,\n",
      "          'way': 2,\n",
      "          'nthere': 2,\n",
      "          'man': 2,\n",
      "          'master': 2,\n",
      "          'would': 2,\n",
      "          'says': 2,\n",
      "          'meant': 2,\n",
      "          'parody': 2,\n",
      "          'experience': 2,\n",
      "          'process': 2,\n",
      "          'sum': 2,\n",
      "          'brings': 2,\n",
      "          'sense': 2,\n",
      "          'making': 2,\n",
      "          'western': 2,\n",
      "          'na': 2,\n",
      "          'comes': 2,\n",
      "          'finds': 2,\n",
      "          'small': 2,\n",
      "          'ngoro': 2,\n",
      "          'less': 2,\n",
      "          'filled': 2,\n",
      "          'little': 2,\n",
      "          'owner': 2,\n",
      "          'door': 2,\n",
      "          'nshe': 2,\n",
      "          'joy': 2,\n",
      "          'comical': 2,\n",
      "          'effective': 2,\n",
      "          'viewer': 2,\n",
      "          'watch': 2,\n",
      "          'kitchen': 2,\n",
      "          'prepares': 2,\n",
      "          'vignettes': 2,\n",
      "          'mother': 2,\n",
      "          'home': 2,\n",
      "          'children': 2,\n",
      "          'obviously': 2,\n",
      "          'last': 2,\n",
      "          'life': 2,\n",
      "          'dinner': 2,\n",
      "          'knows': 2,\n",
      "          'normalcy': 2,\n",
      "          'nin': 2,\n",
      "          'moment': 2,\n",
      "          'showdown': 2,\n",
      "          'watching': 1,\n",
      "          'first': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'japanese': 1,\n",
      "          'never': 1,\n",
      "          'old': 1,\n",
      "          'teaching': 1,\n",
      "          'young': 1,\n",
      "          'soupy': 1,\n",
      "          'teach': 1,\n",
      "          'eager': 1,\n",
      "          'apprentice': 1,\n",
      "          'n': 1,\n",
      "          'caress': 1,\n",
      "          'chopsticks': 1,\n",
      "          'put': 1,\n",
      "          'roast': 1,\n",
      "          'pork': 1,\n",
      "          'side': 1,\n",
      "          'apologize': 1,\n",
      "          'saying': 1,\n",
      "          'see': 1,\n",
      "          'soon': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'earnestness': 1,\n",
      "          'underneath': 1,\n",
      "          'silliness': 1,\n",
      "          'makes': 1,\n",
      "          'take': 1,\n",
      "          'certain': 1,\n",
      "          'degree': 1,\n",
      "          'sobriety': 1,\n",
      "          'nyou': 1,\n",
      "          'begin': 1,\n",
      "          'appreciate': 1,\n",
      "          'merely': 1,\n",
      "          'like': 1,\n",
      "          'enjoy': 1,\n",
      "          'rather': 1,\n",
      "          'nexperiencing': 1,\n",
      "          'engages': 1,\n",
      "          'senses': 1,\n",
      "          'fulfilling': 1,\n",
      "          'terms': 1,\n",
      "          'weaving': 1,\n",
      "          'total': 1,\n",
      "          'pleasure': 1,\n",
      "          'parts': 1,\n",
      "          'ntrust': 1,\n",
      "          'really': 1,\n",
      "          'want': 1,\n",
      "          'go': 1,\n",
      "          'find': 1,\n",
      "          'point': 1,\n",
      "          'njuzo': 1,\n",
      "          'itamis': 1,\n",
      "          'serious': 1,\n",
      "          'forefront': 1,\n",
      "          'story': 1,\n",
      "          'follow': 1,\n",
      "          'pattern': 1,\n",
      "          'american': 1,\n",
      "          'set': 1,\n",
      "          'modern': 1,\n",
      "          'japan': 1,\n",
      "          'stranger': 1,\n",
      "          'tsutomu': 1,\n",
      "          'yamazaki': 1,\n",
      "          'town': 1,\n",
      "          'nobuko': 1,\n",
      "          'miyamoto': 1,\n",
      "          'proprietor': 1,\n",
      "          'holeinthewall': 1,\n",
      "          'trying': 1,\n",
      "          'fend': 1,\n",
      "          'insults': 1,\n",
      "          'local': 1,\n",
      "          'strongman': 1,\n",
      "          'pisken': 1,\n",
      "          'rikiya': 1,\n",
      "          'yasuoka': 1,\n",
      "          'defend': 1,\n",
      "          'honor': 1,\n",
      "          'woman': 1,\n",
      "          'gets': 1,\n",
      "          'fight': 1,\n",
      "          'ringleader': 1,\n",
      "          'henchmen': 1,\n",
      "          'emerging': 1,\n",
      "          'bloodied': 1,\n",
      "          'victorious': 1,\n",
      "          'ambition': 1,\n",
      "          'flock': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'problem': 1,\n",
      "          'fare': 1,\n",
      "          'popular': 1,\n",
      "          'appetizing': 1,\n",
      "          'nhowever': 1,\n",
      "          'agrees': 1,\n",
      "          'quest': 1,\n",
      "          'seek': 1,\n",
      "          'wisdom': 1,\n",
      "          'elderly': 1,\n",
      "          'expert': 1,\n",
      "          'enlist': 1,\n",
      "          'aid': 1,\n",
      "          'wealthy': 1,\n",
      "          'patron': 1,\n",
      "          'friends': 1,\n",
      "          'former': 1,\n",
      "          'enemy': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'absolute': 1,\n",
      "          'gems': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'tries': 1,\n",
      "          'buy': 1,\n",
      "          'recipe': 1,\n",
      "          'delicious': 1,\n",
      "          'another': 1,\n",
      "          'price': 1,\n",
      "          'high': 1,\n",
      "          'secretly': 1,\n",
      "          'sell': 1,\n",
      "          'affordable': 1,\n",
      "          'ntampopo': 1,\n",
      "          'meets': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'leads': 1,\n",
      "          'back': 1,\n",
      "          'room': 1,\n",
      "          'protests': 1,\n",
      "          'thinking': 1,\n",
      "          'perhaps': 1,\n",
      "          'ulterior': 1,\n",
      "          'motives': 1,\n",
      "          'insists': 1,\n",
      "          'njust': 1,\n",
      "          'bolt': 1,\n",
      "          'exit': 1,\n",
      "          'shows': 1,\n",
      "          'gap': 1,\n",
      "          'wall': 1,\n",
      "          'adjoining': 1,\n",
      "          'peers': 1,\n",
      "          'takes': 1,\n",
      "          'notes': 1,\n",
      "          'watches': 1,\n",
      "          'cook': 1,\n",
      "          'face': 1,\n",
      "          'felt': 1,\n",
      "          'audience': 1,\n",
      "          'filling': 1,\n",
      "          'trepidation': 1,\n",
      "          'relief': 1,\n",
      "          'discovery': 1,\n",
      "          'ntheres': 1,\n",
      "          'interesting': 1,\n",
      "          'introduces': 1,\n",
      "          'son': 1,\n",
      "          'bunch': 1,\n",
      "          'street': 1,\n",
      "          'despite': 1,\n",
      "          'economic': 1,\n",
      "          'trappings': 1,\n",
      "          'gourmets': 1,\n",
      "          'sommeliers': 1,\n",
      "          'nwe': 1,\n",
      "          'sneaks': 1,\n",
      "          'restaurant': 1,\n",
      "          'expertly': 1,\n",
      "          'french': 1,\n",
      "          'omelet': 1,\n",
      "          'bring': 1,\n",
      "          'laugh': 1,\n",
      "          'matter': 1,\n",
      "          'whether': 1,\n",
      "          'rich': 1,\n",
      "          'poor': 1,\n",
      "          'everyone': 1,\n",
      "          'common': 1,\n",
      "          'enjoyment': 1,\n",
      "          'shared': 1,\n",
      "          'number': 1,\n",
      "          'unrelated': 1,\n",
      "          'appearing': 1,\n",
      "          'throughout': 1,\n",
      "          'illustrate': 1,\n",
      "          'accentuate': 1,\n",
      "          'role': 1,\n",
      "          'peoples': 1,\n",
      "          'lives': 1,\n",
      "          'particularly': 1,\n",
      "          'involves': 1,\n",
      "          'tended': 1,\n",
      "          'doctor': 1,\n",
      "          'nsurrounded': 1,\n",
      "          'hours': 1,\n",
      "          'nher': 1,\n",
      "          'husband': 1,\n",
      "          'seeing': 1,\n",
      "          'worsened': 1,\n",
      "          'condition': 1,\n",
      "          'demands': 1,\n",
      "          'get': 1,\n",
      "          'husbands': 1,\n",
      "          'intention': 1,\n",
      "          'mean': 1,\n",
      "          'desperate': 1,\n",
      "          'deprived': 1,\n",
      "          'essential': 1,\n",
      "          'part': 1,\n",
      "          'near': 1,\n",
      "          'miracle': 1,\n",
      "          'drags': 1,\n",
      "          'quick': 1,\n",
      "          'awaiting': 1,\n",
      "          'nas': 1,\n",
      "          'eats': 1,\n",
      "          'looks': 1,\n",
      "          'smiles': 1,\n",
      "          'npreparing': 1,\n",
      "          'comfort': 1,\n",
      "          'brief': 1,\n",
      "          'enjoys': 1,\n",
      "          'nthen': 1,\n",
      "          'falls': 1,\n",
      "          'dead': 1,\n",
      "          'nfor': 1,\n",
      "          'stunned': 1,\n",
      "          'father': 1,\n",
      "          'yells': 1,\n",
      "          'keep': 1,\n",
      "          'eating': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'ncrying': 1,\n",
      "          'finishes': 1,\n",
      "          'awkward': 1,\n",
      "          'moving': 1,\n",
      "          'beautiful': 1,\n",
      "          'nby': 1,\n",
      "          'including': 1,\n",
      "          'itami': 1,\n",
      "          'ran': 1,\n",
      "          'risk': 1,\n",
      "          'creating': 1,\n",
      "          'disjointed': 1,\n",
      "          'surprisingly': 1,\n",
      "          'interrupt': 1,\n",
      "          'pacing': 1,\n",
      "          'main': 1,\n",
      "          'storyline': 1,\n",
      "          'ninstead': 1,\n",
      "          'contribute': 1,\n",
      "          'idea': 1,\n",
      "          'goal': 1,\n",
      "          'able': 1,\n",
      "          'serve': 1,\n",
      "          'exceptional': 1,\n",
      "          'worthy': 1,\n",
      "          'noble': 1,\n",
      "          'nbecause': 1,\n",
      "          'parodies': 1,\n",
      "          'construction': 1,\n",
      "          'plot': 1,\n",
      "          'fairly': 1,\n",
      "          'predictable': 1,\n",
      "          'still': 1,\n",
      "          'enjoyable': 1,\n",
      "          'familiar': 1,\n",
      "          'good': 1,\n",
      "          'guys': 1,\n",
      "          'come': 1,\n",
      "          'together': 1,\n",
      "          'final': 1,\n",
      "          'case': 1,\n",
      "          'nif': 1,\n",
      "          'succeeded': 1,\n",
      "          'nits': 1,\n",
      "          'pretty': 1,\n",
      "          'obvious': 1,\n",
      "          'outcome': 1,\n",
      "          'changes': 1,\n",
      "          'whole': 1,\n",
      "          'perspective': 1,\n",
      "          'consume': 1,\n",
      "          'every': 1,\n",
      "          'afford': 1,\n",
      "          'cut': 1,\n",
      "          'slack': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jedi': 8,\n",
      "          'star': 6,\n",
      "          'return': 5,\n",
      "          'vader': 5,\n",
      "          'emperor': 5,\n",
      "          'nthe': 4,\n",
      "          'empire': 4,\n",
      "          'back': 4,\n",
      "          'evil': 4,\n",
      "          'special': 4,\n",
      "          'effects': 4,\n",
      "          'wars': 3,\n",
      "          'nreturn': 3,\n",
      "          'final': 3,\n",
      "          'films': 3,\n",
      "          'strikes': 3,\n",
      "          'jabba': 3,\n",
      "          'hutt': 3,\n",
      "          'space': 3,\n",
      "          'death': 3,\n",
      "          'luke': 3,\n",
      "          'old': 2,\n",
      "          'lucas': 2,\n",
      "          'easily': 2,\n",
      "          'innovative': 2,\n",
      "          'teddy': 2,\n",
      "          'darth': 2,\n",
      "          'time': 2,\n",
      "          'nwith': 2,\n",
      "          'creature': 2,\n",
      "          'ian': 2,\n",
      "          'mcdiarmid': 2,\n",
      "          'mark': 2,\n",
      "          'hamill': 2,\n",
      "          'carrie': 2,\n",
      "          'fisher': 2,\n",
      "          'billy': 2,\n",
      "          'dee': 2,\n",
      "          'williams': 2,\n",
      "          'home': 2,\n",
      "          'han': 2,\n",
      "          'harrison': 2,\n",
      "          'ford': 2,\n",
      "          'clutches': 2,\n",
      "          'jabbas': 2,\n",
      "          'added': 2,\n",
      "          'come': 2,\n",
      "          'nfrom': 2,\n",
      "          'group': 2,\n",
      "          'nas': 2,\n",
      "          'battle': 2,\n",
      "          'ewoks': 2,\n",
      "          'suitably': 2,\n",
      "          'previous': 2,\n",
      "          'many': 2,\n",
      "          'ships': 2,\n",
      "          'one': 2,\n",
      "          'watching': 2,\n",
      "          'fun': 2,\n",
      "          'us': 2,\n",
      "          'new': 2,\n",
      "          'theres': 1,\n",
      "          'saying': 1,\n",
      "          'states': 1,\n",
      "          'something': 1,\n",
      "          'leaving': 1,\n",
      "          'best': 1,\n",
      "          'last': 1,\n",
      "          'ngeorge': 1,\n",
      "          'certainly': 1,\n",
      "          'followed': 1,\n",
      "          'adage': 1,\n",
      "          'crafting': 1,\n",
      "          'original': 1,\n",
      "          'trilogy': 1,\n",
      "          'installment': 1,\n",
      "          'series': 1,\n",
      "          'actionpacked': 1,\n",
      "          'entertaining': 1,\n",
      "          'three': 1,\n",
      "          'dark': 1,\n",
      "          'eerie': 1,\n",
      "          'atmosphere': 1,\n",
      "          'oozed': 1,\n",
      "          'every': 1,\n",
      "          'frame': 1,\n",
      "          'gone': 1,\n",
      "          'ninstead': 1,\n",
      "          'good': 1,\n",
      "          'triumphing': 1,\n",
      "          'decisively': 1,\n",
      "          'resolution': 1,\n",
      "          'love': 1,\n",
      "          'triangle': 1,\n",
      "          'walking': 1,\n",
      "          'bears': 1,\n",
      "          'neven': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'intimidating': 1,\n",
      "          'around': 1,\n",
      "          'arrival': 1,\n",
      "          'apparitionlike': 1,\n",
      "          'played': 1,\n",
      "          'turned': 1,\n",
      "          'somewhat': 1,\n",
      "          'henchman': 1,\n",
      "          'picks': 1,\n",
      "          'unspecified': 1,\n",
      "          'conclusion': 1,\n",
      "          'nluke': 1,\n",
      "          'skywalker': 1,\n",
      "          'princess': 1,\n",
      "          'leia': 1,\n",
      "          'lando': 1,\n",
      "          'calrissian': 1,\n",
      "          'chewbacca': 1,\n",
      "          'peter': 1,\n",
      "          'mayhew': 1,\n",
      "          'c3p0': 1,\n",
      "          'anthony': 1,\n",
      "          'daniels': 1,\n",
      "          'r2d2': 1,\n",
      "          'kenny': 1,\n",
      "          'baker': 1,\n",
      "          'rescue': 1,\n",
      "          'mission': 1,\n",
      "          'lukes': 1,\n",
      "          'planet': 1,\n",
      "          'tatooine': 1,\n",
      "          'ntheir': 1,\n",
      "          'goal': 1,\n",
      "          'save': 1,\n",
      "          'solo': 1,\n",
      "          'intergalactic': 1,\n",
      "          'gangster': 1,\n",
      "          'nit': 1,\n",
      "          'creepylooking': 1,\n",
      "          'stone': 1,\n",
      "          'fortress': 1,\n",
      "          'guarded': 1,\n",
      "          'hognosed': 1,\n",
      "          'beasts': 1,\n",
      "          'play': 1,\n",
      "          'hysterical': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'music': 1,\n",
      "          'dreaded': 1,\n",
      "          'beast': 1,\n",
      "          'outside': 1,\n",
      "          'sand': 1,\n",
      "          'barge': 1,\n",
      "          'top': 1,\n",
      "          'notch': 1,\n",
      "          'soon': 1,\n",
      "          'freed': 1,\n",
      "          'cryofreeze': 1,\n",
      "          'rescued': 1,\n",
      "          'outer': 1,\n",
      "          'rebel': 1,\n",
      "          'alliance': 1,\n",
      "          'face': 1,\n",
      "          'empires': 1,\n",
      "          'newest': 1,\n",
      "          'threat': 1,\n",
      "          'second': 1,\n",
      "          'powerful': 1,\n",
      "          'activated': 1,\n",
      "          'could': 1,\n",
      "          'spell': 1,\n",
      "          'doom': 1,\n",
      "          'anyone': 1,\n",
      "          'stands': 1,\n",
      "          'nso': 1,\n",
      "          'fleet': 1,\n",
      "          'prepares': 1,\n",
      "          'company': 1,\n",
      "          'travel': 1,\n",
      "          'forest': 1,\n",
      "          'moon': 1,\n",
      "          'endor': 1,\n",
      "          'knock': 1,\n",
      "          'shield': 1,\n",
      "          'defends': 1,\n",
      "          'attacks': 1,\n",
      "          'nthere': 1,\n",
      "          'befriended': 1,\n",
      "          'bearlike': 1,\n",
      "          'native': 1,\n",
      "          'race': 1,\n",
      "          'fearing': 1,\n",
      "          'presence': 1,\n",
      "          'endangering': 1,\n",
      "          'turns': 1,\n",
      "          'interesting': 1,\n",
      "          'elements': 1,\n",
      "          'scenes': 1,\n",
      "          'pitted': 1,\n",
      "          'tense': 1,\n",
      "          'wellacted': 1,\n",
      "          'technical': 1,\n",
      "          'pointofview': 1,\n",
      "          'battles': 1,\n",
      "          'amazing': 1,\n",
      "          'hindering': 1,\n",
      "          'anything': 1,\n",
      "          'depicted': 1,\n",
      "          'nnot': 1,\n",
      "          'speed': 1,\n",
      "          'range': 1,\n",
      "          'movement': 1,\n",
      "          'dramatically': 1,\n",
      "          'improved': 1,\n",
      "          'non': 1,\n",
      "          'level': 1,\n",
      "          'almost': 1,\n",
      "          'worth': 1,\n",
      "          'nin': 1,\n",
      "          'edition': 1,\n",
      "          'even': 1,\n",
      "          'making': 1,\n",
      "          'incredibly': 1,\n",
      "          'watch': 1,\n",
      "          'acting': 1,\n",
      "          'stronger': 1,\n",
      "          'nby': 1,\n",
      "          '1983': 1,\n",
      "          'matured': 1,\n",
      "          'onscreen': 1,\n",
      "          'personas': 1,\n",
      "          'chemistry': 1,\n",
      "          'amongst': 1,\n",
      "          'trio': 1,\n",
      "          'terrific': 1,\n",
      "          'gives': 1,\n",
      "          'another': 1,\n",
      "          'human': 1,\n",
      "          'hero': 1,\n",
      "          'root': 1,\n",
      "          'nnewcomer': 1,\n",
      "          'plays': 1,\n",
      "          'creepy': 1,\n",
      "          'cunning': 1,\n",
      "          'although': 1,\n",
      "          'hes': 1,\n",
      "          'imposing': 1,\n",
      "          'nalthough': 1,\n",
      "          'great': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'generates': 1,\n",
      "          'greater': 1,\n",
      "          'sense': 1,\n",
      "          'enjoyment': 1,\n",
      "          'spectacular': 1,\n",
      "          'adorable': 1,\n",
      "          'sinister': 1,\n",
      "          'millenium': 1,\n",
      "          'falcon': 1,\n",
      "          'vaders': 1,\n",
      "          'incredible': 1,\n",
      "          'betrayal': 1,\n",
      "          'destruction': 1,\n",
      "          'always': 1,\n",
      "          'lovable': 1,\n",
      "          'yoda': 1,\n",
      "          'concludes': 1,\n",
      "          'greatest': 1,\n",
      "          'trilogies': 1,\n",
      "          'ever': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'made': 1,\n",
      "          'huge': 1,\n",
      "          'bang': 1,\n",
      "          'ncongratulations': 1,\n",
      "          'george': 1,\n",
      "          'whose': 1,\n",
      "          'mind': 1,\n",
      "          'entertains': 1,\n",
      "          'continue': 1,\n",
      "          'entertain': 1,\n",
      "          'generations': 1,\n",
      "          'n': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'giant': 20,\n",
      "          'nthe': 11,\n",
      "          'iron': 10,\n",
      "          'film': 8,\n",
      "          'hogarth': 8,\n",
      "          'story': 5,\n",
      "          'many': 4,\n",
      "          'films': 4,\n",
      "          'n': 4,\n",
      "          'young': 4,\n",
      "          'takes': 4,\n",
      "          'mansley': 4,\n",
      "          'actually': 4,\n",
      "          'characters': 4,\n",
      "          'audience': 3,\n",
      "          'cant': 3,\n",
      "          'children': 3,\n",
      "          'time': 3,\n",
      "          'voice': 3,\n",
      "          'mother': 3,\n",
      "          'robot': 3,\n",
      "          'dean': 3,\n",
      "          'kind': 3,\n",
      "          'family': 3,\n",
      "          'simple': 3,\n",
      "          'nits': 3,\n",
      "          'go': 3,\n",
      "          'work': 3,\n",
      "          'character': 3,\n",
      "          'rather': 3,\n",
      "          'real': 3,\n",
      "          'get': 3,\n",
      "          'childrens': 2,\n",
      "          'contempt': 2,\n",
      "          'movies': 2,\n",
      "          'kids': 2,\n",
      "          'handle': 2,\n",
      "          'serious': 2,\n",
      "          'thoughtful': 2,\n",
      "          'discussions': 2,\n",
      "          'brad': 2,\n",
      "          'bird': 2,\n",
      "          'late': 2,\n",
      "          'animated': 2,\n",
      "          'simpsons': 2,\n",
      "          'holds': 2,\n",
      "          'people': 2,\n",
      "          'making': 2,\n",
      "          'adults': 2,\n",
      "          'nhogarth': 2,\n",
      "          'eli': 2,\n",
      "          'marienthal': 2,\n",
      "          'jennifer': 2,\n",
      "          'aniston': 2,\n",
      "          'nafter': 2,\n",
      "          'watching': 2,\n",
      "          'away': 2,\n",
      "          'forest': 2,\n",
      "          'investigate': 2,\n",
      "          'nhe': 2,\n",
      "          'comes': 2,\n",
      "          'food': 2,\n",
      "          'befriends': 2,\n",
      "          'around': 2,\n",
      "          'keep': 2,\n",
      "          'connick': 2,\n",
      "          'jr': 2,\n",
      "          'becomes': 2,\n",
      "          'boy': 2,\n",
      "          'elements': 2,\n",
      "          'ability': 2,\n",
      "          'several': 2,\n",
      "          'messages': 2,\n",
      "          'ones': 2,\n",
      "          'teaches': 2,\n",
      "          'wants': 2,\n",
      "          'sequence': 2,\n",
      "          'though': 2,\n",
      "          'wont': 2,\n",
      "          'disney': 2,\n",
      "          'could': 2,\n",
      "          'enough': 2,\n",
      "          'make': 2,\n",
      "          'cartoon': 2,\n",
      "          'way': 2,\n",
      "          'quite': 2,\n",
      "          'well': 2,\n",
      "          'drawn': 2,\n",
      "          'features': 2,\n",
      "          'comic': 2,\n",
      "          'agent': 2,\n",
      "          'things': 2,\n",
      "          'paranoia': 2,\n",
      "          'na': 2,\n",
      "          'clearly': 2,\n",
      "          'also': 2,\n",
      "          'humor': 2,\n",
      "          'enjoy': 2,\n",
      "          'one': 2,\n",
      "          'clever': 2,\n",
      "          'nuclear': 2,\n",
      "          'much': 2,\n",
      "          'treat': 1,\n",
      "          'target': 1,\n",
      "          'utter': 1,\n",
      "          'ntoo': 1,\n",
      "          'write': 1,\n",
      "          'direct': 1,\n",
      "          'assume': 1,\n",
      "          'meaningful': 1,\n",
      "          'issues': 1,\n",
      "          'directed': 1,\n",
      "          'cowritten': 1,\n",
      "          'series': 1,\n",
      "          'king': 1,\n",
      "          'hill': 1,\n",
      "          'assumes': 1,\n",
      "          'entertained': 1,\n",
      "          'absolutely': 1,\n",
      "          'thats': 1,\n",
      "          'enjoyable': 1,\n",
      "          'alike': 1,\n",
      "          'hughes': 1,\n",
      "          'spirited': 1,\n",
      "          'lad': 1,\n",
      "          'lives': 1,\n",
      "          'hardworking': 1,\n",
      "          'single': 1,\n",
      "          'annie': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'maine': 1,\n",
      "          'staying': 1,\n",
      "          'scary': 1,\n",
      "          'night': 1,\n",
      "          'treks': 1,\n",
      "          'stolen': 1,\n",
      "          'antenna': 1,\n",
      "          'ruined': 1,\n",
      "          'tv': 1,\n",
      "          'reception': 1,\n",
      "          'across': 1,\n",
      "          'vin': 1,\n",
      "          'diesel': 1,\n",
      "          'space': 1,\n",
      "          'eats': 1,\n",
      "          'metal': 1,\n",
      "          'saving': 1,\n",
      "          'nicknamed': 1,\n",
      "          'electric': 1,\n",
      "          'shock': 1,\n",
      "          'creature': 1,\n",
      "          'pet': 1,\n",
      "          'sorts': 1,\n",
      "          'nbecause': 1,\n",
      "          'damage': 1,\n",
      "          'suffered': 1,\n",
      "          'upon': 1,\n",
      "          'landing': 1,\n",
      "          'forgotten': 1,\n",
      "          'original': 1,\n",
      "          'mission': 1,\n",
      "          'follows': 1,\n",
      "          'like': 1,\n",
      "          'lost': 1,\n",
      "          'puppy': 1,\n",
      "          'nrealizing': 1,\n",
      "          'barn': 1,\n",
      "          'needs': 1,\n",
      "          'junkyard': 1,\n",
      "          'owned': 1,\n",
      "          'harry': 1,\n",
      "          'eccentric': 1,\n",
      "          'artist': 1,\n",
      "          'assembles': 1,\n",
      "          'sculptures': 1,\n",
      "          'scrap': 1,\n",
      "          'spare': 1,\n",
      "          'nit': 1,\n",
      "          'soon': 1,\n",
      "          'apparent': 1,\n",
      "          'secret': 1,\n",
      "          'forever': 1,\n",
      "          'government': 1,\n",
      "          'spook': 1,\n",
      "          'named': 1,\n",
      "          'kent': 1,\n",
      "          'christopher': 1,\n",
      "          'mcdonald': 1,\n",
      "          'brought': 1,\n",
      "          'mysterious': 1,\n",
      "          'sightings': 1,\n",
      "          'surrounding': 1,\n",
      "          'area': 1,\n",
      "          'considers': 1,\n",
      "          'threat': 1,\n",
      "          'national': 1,\n",
      "          'security': 1,\n",
      "          'suspects': 1,\n",
      "          'knows': 1,\n",
      "          'something': 1,\n",
      "          'residence': 1,\n",
      "          'hogarths': 1,\n",
      "          'house': 1,\n",
      "          'lodger': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'begins': 1,\n",
      "          'exhibit': 1,\n",
      "          'ominous': 1,\n",
      "          'behavior': 1,\n",
      "          'suggests': 1,\n",
      "          'built': 1,\n",
      "          'weapon': 1,\n",
      "          'exactly': 1,\n",
      "          'ought': 1,\n",
      "          'talk': 1,\n",
      "          'alien': 1,\n",
      "          'drops': 1,\n",
      "          'sky': 1,\n",
      "          'similar': 1,\n",
      "          'spielberg': 1,\n",
      "          'classic': 1,\n",
      "          'e': 1,\n",
      "          'comparisons': 1,\n",
      "          'deserved': 1,\n",
      "          'case': 1,\n",
      "          'better': 1,\n",
      "          'spielbergs': 1,\n",
      "          'sentimental': 1,\n",
      "          'without': 1,\n",
      "          'turning': 1,\n",
      "          'sappy': 1,\n",
      "          'delivers': 1,\n",
      "          'important': 1,\n",
      "          'choose': 1,\n",
      "          'fate': 1,\n",
      "          'programming': 1,\n",
      "          'become': 1,\n",
      "          'hero': 1,\n",
      "          'final': 1,\n",
      "          'touching': 1,\n",
      "          'appropriate': 1,\n",
      "          'give': 1,\n",
      "          'say': 1,\n",
      "          'disappointed': 1,\n",
      "          'animation': 1,\n",
      "          'standards': 1,\n",
      "          'tarzan': 1,\n",
      "          'good': 1,\n",
      "          'forget': 1,\n",
      "          'youre': 1,\n",
      "          'computeranimated': 1,\n",
      "          'human': 1,\n",
      "          'handdrawn': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'faces': 1,\n",
      "          'done': 1,\n",
      "          'realistically': 1,\n",
      "          'personalities': 1,\n",
      "          'credible': 1,\n",
      "          'exaggerated': 1,\n",
      "          'allow': 1,\n",
      "          'cartoonish': 1,\n",
      "          'expressions': 1,\n",
      "          'provide': 1,\n",
      "          'relief': 1,\n",
      "          'nfine': 1,\n",
      "          'turned': 1,\n",
      "          'surprisingly': 1,\n",
      "          'convincing': 1,\n",
      "          'waitress': 1,\n",
      "          'nharry': 1,\n",
      "          'nice': 1,\n",
      "          'characterization': 1,\n",
      "          'really': 1,\n",
      "          'enjoyed': 1,\n",
      "          'john': 1,\n",
      "          'mahoney': 1,\n",
      "          'tvs': 1,\n",
      "          'frasier': 1,\n",
      "          'army': 1,\n",
      "          'general': 1,\n",
      "          'called': 1,\n",
      "          'nunlike': 1,\n",
      "          'developed': 1,\n",
      "          'personality': 1,\n",
      "          'stereotype': 1,\n",
      "          'integral': 1,\n",
      "          'plot': 1,\n",
      "          'superfluous': 1,\n",
      "          'comicrelief': 1,\n",
      "          'sidekick': 1,\n",
      "          'clich': 1,\n",
      "          'still': 1,\n",
      "          'hasnt': 1,\n",
      "          'ditched': 1,\n",
      "          'ndean': 1,\n",
      "          'example': 1,\n",
      "          'stereotypical': 1,\n",
      "          'beatnik': 1,\n",
      "          'profile': 1,\n",
      "          'seems': 1,\n",
      "          'suggest': 1,\n",
      "          'presented': 1,\n",
      "          'emotions': 1,\n",
      "          'thoughts': 1,\n",
      "          'motivations': 1,\n",
      "          'neven': 1,\n",
      "          'heavy': 1,\n",
      "          'villain': 1,\n",
      "          'bad': 1,\n",
      "          'simply': 1,\n",
      "          'fear': 1,\n",
      "          'lesser': 1,\n",
      "          'feature': 1,\n",
      "          'would': 1,\n",
      "          'paperthin': 1,\n",
      "          'stereotypes': 1,\n",
      "          'figure': 1,\n",
      "          'mind': 1,\n",
      "          'put': 1,\n",
      "          'little': 1,\n",
      "          'pays': 1,\n",
      "          'isnt': 1,\n",
      "          'deliver': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'funny': 1,\n",
      "          'scenes': 1,\n",
      "          'certain': 1,\n",
      "          'dive': 1,\n",
      "          'pool': 1,\n",
      "          'handled': 1,\n",
      "          'director': 1,\n",
      "          'sense': 1,\n",
      "          'timing': 1,\n",
      "          'worked': 1,\n",
      "          'years': 1,\n",
      "          'attempt': 1,\n",
      "          'outlast': 1,\n",
      "          'another': 1,\n",
      "          'trying': 1,\n",
      "          'stay': 1,\n",
      "          'awake': 1,\n",
      "          'nicely': 1,\n",
      "          'timed': 1,\n",
      "          'extremely': 1,\n",
      "          'even': 1,\n",
      "          'jabs': 1,\n",
      "          'americas': 1,\n",
      "          'early': 1,\n",
      "          'stages': 1,\n",
      "          'cold': 1,\n",
      "          'war': 1,\n",
      "          'satirizing': 1,\n",
      "          'lame': 1,\n",
      "          'safety': 1,\n",
      "          'shown': 1,\n",
      "          'grade': 1,\n",
      "          'school': 1,\n",
      "          'students': 1,\n",
      "          'tell': 1,\n",
      "          'duck': 1,\n",
      "          'cover': 1,\n",
      "          'event': 1,\n",
      "          'attack': 1,\n",
      "          'satirical': 1,\n",
      "          'edge': 1,\n",
      "          'edgy': 1,\n",
      "          'refreshing': 1,\n",
      "          'ninstead': 1,\n",
      "          'seeing': 1,\n",
      "          'bonked': 1,\n",
      "          'head': 1,\n",
      "          'welltimed': 1,\n",
      "          'gags': 1,\n",
      "          'seem': 1,\n",
      "          'required': 1,\n",
      "          'imagination': 1,\n",
      "          'come': 1,\n",
      "          'nwhen': 1,\n",
      "          'right': 1,\n",
      "          'straightforward': 1,\n",
      "          'quaint': 1,\n",
      "          'ultimately': 1,\n",
      "          'charming': 1,\n",
      "          'nthough': 1,\n",
      "          'complex': 1,\n",
      "          'plotting': 1,\n",
      "          'noir': 1,\n",
      "          'next': 1,\n",
      "          'person': 1,\n",
      "          'entertainment': 1,\n",
      "          'akin': 1,\n",
      "          'bedtime': 1,\n",
      "          'stories': 1,\n",
      "          'father': 1,\n",
      "          'told': 1,\n",
      "          'hanging': 1,\n",
      "          'every': 1,\n",
      "          'word': 1,\n",
      "          'sets': 1,\n",
      "          'others': 1,\n",
      "          'namely': 1,\n",
      "          'dialogue': 1,\n",
      "          'spades': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'pignon': 3,\n",
      "          'job': 3,\n",
      "          'closet': 2,\n",
      "          'hes': 2,\n",
      "          'condom': 2,\n",
      "          'factory': 2,\n",
      "          'nbut': 2,\n",
      "          'belone': 2,\n",
      "          'man': 2,\n",
      "          'pignons': 2,\n",
      "          'gay': 2,\n",
      "          'sexual': 2,\n",
      "          'gerard': 2,\n",
      "          'depardieu': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'miramax': 1,\n",
      "          'films': 1,\n",
      "          'nin': 1,\n",
      "          'hilarious': 1,\n",
      "          'french': 1,\n",
      "          'farce': 1,\n",
      "          'shy': 1,\n",
      "          'boring': 1,\n",
      "          'accountant': 1,\n",
      "          'daniel': 1,\n",
      "          'auteil': 1,\n",
      "          'named': 1,\n",
      "          'francois': 1,\n",
      "          'discovers': 1,\n",
      "          'going': 1,\n",
      "          'fired': 1,\n",
      "          'nlonely': 1,\n",
      "          'distraught': 1,\n",
      "          'contemplates': 1,\n",
      "          'suicide': 1,\n",
      "          'runs': 1,\n",
      "          'michel': 1,\n",
      "          'aumont': 1,\n",
      "          'elderly': 1,\n",
      "          'homosexual': 1,\n",
      "          'neighbor': 1,\n",
      "          'suggests': 1,\n",
      "          'sex': 1,\n",
      "          'discrimination': 1,\n",
      "          'lawsuit': 1,\n",
      "          'intimidate': 1,\n",
      "          'management': 1,\n",
      "          'nas': 1,\n",
      "          'evidence': 1,\n",
      "          'concocts': 1,\n",
      "          'provocative': 1,\n",
      "          'photographs': 1,\n",
      "          'locked': 1,\n",
      "          'leatherclad': 1,\n",
      "          'embrace': 1,\n",
      "          'another': 1,\n",
      "          'mails': 1,\n",
      "          'anonymously': 1,\n",
      "          'boss': 1,\n",
      "          'nwhen': 1,\n",
      "          'racy': 1,\n",
      "          'snapshots': 1,\n",
      "          'start': 1,\n",
      "          'circulating': 1,\n",
      "          'around': 1,\n",
      "          'get': 1,\n",
      "          'back': 1,\n",
      "          'suddenly': 1,\n",
      "          'finds': 1,\n",
      "          'focus': 1,\n",
      "          'attention': 1,\n",
      "          'openly': 1,\n",
      "          'nhis': 1,\n",
      "          'lusty': 1,\n",
      "          'supervisor': 1,\n",
      "          'michele': 1,\n",
      "          'laroque': 1,\n",
      "          'intrigued': 1,\n",
      "          'wonders': 1,\n",
      "          'perhaps': 1,\n",
      "          'could': 1,\n",
      "          'change': 1,\n",
      "          'preferences': 1,\n",
      "          'neven': 1,\n",
      "          'exwife': 1,\n",
      "          'alexandra': 1,\n",
      "          'vandernoot': 1,\n",
      "          'indifferent': 1,\n",
      "          'teenage': 1,\n",
      "          'son': 1,\n",
      "          'stanislas': 1,\n",
      "          'crevillen': 1,\n",
      "          'drop': 1,\n",
      "          'disdain': 1,\n",
      "          'everyone': 1,\n",
      "          'enchanted': 1,\n",
      "          'na': 1,\n",
      "          'mucho': 1,\n",
      "          'macho': 1,\n",
      "          'coworker': 1,\n",
      "          'felix': 1,\n",
      "          'selfrighteous': 1,\n",
      "          'homophobe': 1,\n",
      "          'stunned': 1,\n",
      "          'repulsed': 1,\n",
      "          'forced': 1,\n",
      "          'pr': 1,\n",
      "          'director': 1,\n",
      "          'thierry': 1,\n",
      "          'lhermite': 1,\n",
      "          'grovel': 1,\n",
      "          'court': 1,\n",
      "          'friendship': 1,\n",
      "          'risk': 1,\n",
      "          'losing': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'francis': 1,\n",
      "          'verber': 1,\n",
      "          'artfully': 1,\n",
      "          'milks': 1,\n",
      "          'farcical': 1,\n",
      "          'comedy': 1,\n",
      "          'dissects': 1,\n",
      "          'hypocrisy': 1,\n",
      "          'political': 1,\n",
      "          'correctness': 1,\n",
      "          'veering': 1,\n",
      "          'offtrack': 1,\n",
      "          'occasionally': 1,\n",
      "          'pedophilia': 1,\n",
      "          'ndaniel': 1,\n",
      "          'auteuil': 1,\n",
      "          'widow': 1,\n",
      "          'saintpierre': 1,\n",
      "          'delightful': 1,\n",
      "          'particularly': 1,\n",
      "          'blownup': 1,\n",
      "          'perched': 1,\n",
      "          'head': 1,\n",
      "          'riding': 1,\n",
      "          'float': 1,\n",
      "          'pride': 1,\n",
      "          'parade': 1,\n",
      "          'delivers': 1,\n",
      "          'one': 1,\n",
      "          'restrained': 1,\n",
      "          'effective': 1,\n",
      "          'performances': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'frankly': 1,\n",
      "          'adult': 1,\n",
      "          '8': 1,\n",
      "          'nits': 1,\n",
      "          'clever': 1,\n",
      "          'fact': 1,\n",
      "          'hollywood': 1,\n",
      "          'already': 1,\n",
      "          'planning': 1,\n",
      "          'remake': 1,\n",
      "          'english': 1,\n",
      "          'like': 1,\n",
      "          'la': 1,\n",
      "          'cage': 1,\n",
      "          'aux': 1,\n",
      "          'folles': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nits': 7,\n",
      "          'film': 7,\n",
      "          'maximus': 5,\n",
      "          'commodus': 5,\n",
      "          'reed': 5,\n",
      "          'gladiator': 5,\n",
      "          'able': 4,\n",
      "          'sequence': 4,\n",
      "          'digital': 4,\n",
      "          'roman': 3,\n",
      "          'crowe': 3,\n",
      "          'phoenix': 3,\n",
      "          'great': 3,\n",
      "          'opening': 3,\n",
      "          'nthe': 3,\n",
      "          'one': 3,\n",
      "          'real': 3,\n",
      "          'effects': 3,\n",
      "          'emperor': 2,\n",
      "          'russell': 2,\n",
      "          'nhowever': 2,\n",
      "          'nmaximus': 2,\n",
      "          'executioners': 2,\n",
      "          'later': 2,\n",
      "          'proximo': 2,\n",
      "          'oliver': 2,\n",
      "          'looking': 2,\n",
      "          'gladiators': 2,\n",
      "          'money': 2,\n",
      "          'new': 2,\n",
      "          'colisseum': 2,\n",
      "          'battle': 2,\n",
      "          'style': 2,\n",
      "          'used': 2,\n",
      "          'effective': 2,\n",
      "          'exactly': 2,\n",
      "          'tell': 2,\n",
      "          'blood': 2,\n",
      "          'whos': 2,\n",
      "          'thats': 2,\n",
      "          'nsome': 2,\n",
      "          'nbut': 2,\n",
      "          'still': 2,\n",
      "          'role': 2,\n",
      "          'computer': 2,\n",
      "          'never': 2,\n",
      "          'say': 2,\n",
      "          'lets': 2,\n",
      "          'movie': 2,\n",
      "          'best': 2,\n",
      "          'scene': 2,\n",
      "          'movies': 2,\n",
      "          'character': 2,\n",
      "          'good': 2,\n",
      "          'performance': 2,\n",
      "          'always': 2,\n",
      "          'fine': 2,\n",
      "          'probably': 2,\n",
      "          'like': 2,\n",
      "          'work': 2,\n",
      "          'fiction': 2,\n",
      "          'marcus': 1,\n",
      "          'aurelius': 1,\n",
      "          'richard': 1,\n",
      "          'harris': 1,\n",
      "          'chooses': 1,\n",
      "          'trusted': 1,\n",
      "          'general': 1,\n",
      "          'successor': 1,\n",
      "          'emperors': 1,\n",
      "          'evil': 1,\n",
      "          'son': 1,\n",
      "          'joaquin': 1,\n",
      "          'murders': 1,\n",
      "          'father': 1,\n",
      "          'announcement': 1,\n",
      "          'made': 1,\n",
      "          'well': 1,\n",
      "          'family': 1,\n",
      "          'sentenced': 1,\n",
      "          'executed': 1,\n",
      "          'escape': 1,\n",
      "          'captured': 1,\n",
      "          'sold': 1,\n",
      "          'slave': 1,\n",
      "          'nproximo': 1,\n",
      "          'earn': 1,\n",
      "          'former': 1,\n",
      "          'reluctantly': 1,\n",
      "          'uses': 1,\n",
      "          'skills': 1,\n",
      "          'prove': 1,\n",
      "          'powerful': 1,\n",
      "          'nwhen': 1,\n",
      "          'announces': 1,\n",
      "          'games': 1,\n",
      "          'held': 1,\n",
      "          'takes': 1,\n",
      "          'sees': 1,\n",
      "          'chance': 1,\n",
      "          'exact': 1,\n",
      "          'revenge': 1,\n",
      "          'ngladiator': 1,\n",
      "          'begins': 1,\n",
      "          'army': 1,\n",
      "          'germania': 1,\n",
      "          'actually': 1,\n",
      "          'maintain': 1,\n",
      "          'interest': 1,\n",
      "          'required': 1,\n",
      "          '40': 1,\n",
      "          'minutes': 1,\n",
      "          'exposition': 1,\n",
      "          'kick': 1,\n",
      "          'ass': 1,\n",
      "          'moviemaking': 1,\n",
      "          'downfall': 1,\n",
      "          'editing': 1,\n",
      "          'choppy': 1,\n",
      "          'slowmotion': 1,\n",
      "          'unsettling': 1,\n",
      "          'distracting': 1,\n",
      "          'similar': 1,\n",
      "          'saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'actual': 1,\n",
      "          'battles': 1,\n",
      "          'thrilling': 1,\n",
      "          'also': 1,\n",
      "          'bit': 1,\n",
      "          'disjointed': 1,\n",
      "          'nmany': 1,\n",
      "          'times': 1,\n",
      "          'unclear': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'nall': 1,\n",
      "          'audience': 1,\n",
      "          'spilled': 1,\n",
      "          'nwere': 1,\n",
      "          'sure': 1,\n",
      "          'hand': 1,\n",
      "          'though': 1,\n",
      "          'ntheres': 1,\n",
      "          'instance': 1,\n",
      "          'earlier': 1,\n",
      "          'disappointing': 1,\n",
      "          'comes': 1,\n",
      "          'escapes': 1,\n",
      "          'flashes': 1,\n",
      "          'quick': 1,\n",
      "          'cuts': 1,\n",
      "          'free': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'nrussell': 1,\n",
      "          'become': 1,\n",
      "          'major': 1,\n",
      "          'star': 1,\n",
      "          'gleefully': 1,\n",
      "          'top': 1,\n",
      "          'generated': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          '1995s': 1,\n",
      "          'virtuosity': 1,\n",
      "          'nfor': 1,\n",
      "          'whatever': 1,\n",
      "          'reason': 1,\n",
      "          'stardom': 1,\n",
      "          'arrived': 1,\n",
      "          'nfrom': 1,\n",
      "          'moviegoers': 1,\n",
      "          'go': 1,\n",
      "          'see': 1,\n",
      "          'nhe': 1,\n",
      "          'gets': 1,\n",
      "          'moments': 1,\n",
      "          'recent': 1,\n",
      "          'reveals': 1,\n",
      "          'identity': 1,\n",
      "          'rousing': 1,\n",
      "          'chilling': 1,\n",
      "          'njoaquin': 1,\n",
      "          'job': 1,\n",
      "          'making': 1,\n",
      "          'person': 1,\n",
      "          'cartoon': 1,\n",
      "          'could': 1,\n",
      "          'easily': 1,\n",
      "          'happened': 1,\n",
      "          'ncommodus': 1,\n",
      "          'conniving': 1,\n",
      "          'sneaky': 1,\n",
      "          'whiny': 1,\n",
      "          'get': 1,\n",
      "          'silly': 1,\n",
      "          'creepy': 1,\n",
      "          'noliver': 1,\n",
      "          'died': 1,\n",
      "          'filming': 1,\n",
      "          'huge': 1,\n",
      "          'loss': 1,\n",
      "          'acting': 1,\n",
      "          'world': 1,\n",
      "          'nive': 1,\n",
      "          'fascinated': 1,\n",
      "          'nhes': 1,\n",
      "          'talented': 1,\n",
      "          'performers': 1,\n",
      "          'career': 1,\n",
      "          'ended': 1,\n",
      "          'direct': 1,\n",
      "          'video': 1,\n",
      "          'junk': 1,\n",
      "          'twilight': 1,\n",
      "          'years': 1,\n",
      "          'ironic': 1,\n",
      "          'would': 1,\n",
      "          'gotten': 1,\n",
      "          'back': 1,\n",
      "          'gives': 1,\n",
      "          'fun': 1,\n",
      "          'sincere': 1,\n",
      "          'dedicated': 1,\n",
      "          'surely': 1,\n",
      "          'missed': 1,\n",
      "          'nreeds': 1,\n",
      "          'death': 1,\n",
      "          'presented': 1,\n",
      "          'filmmakers': 1,\n",
      "          'obvious': 1,\n",
      "          'problem': 1,\n",
      "          'scenes': 1,\n",
      "          'completed': 1,\n",
      "          'nrather': 1,\n",
      "          'recast': 1,\n",
      "          'end': 1,\n",
      "          'reshooting': 1,\n",
      "          'deal': 1,\n",
      "          'footage': 1,\n",
      "          'version': 1,\n",
      "          'created': 1,\n",
      "          'reported': 1,\n",
      "          'cost': 1,\n",
      "          '2': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'nironically': 1,\n",
      "          'ever': 1,\n",
      "          'earned': 1,\n",
      "          'single': 1,\n",
      "          'nanyway': 1,\n",
      "          'effect': 1,\n",
      "          'aware': 1,\n",
      "          'twenty': 1,\n",
      "          'seconds': 1,\n",
      "          'arent': 1,\n",
      "          'wont': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'convincing': 1,\n",
      "          'however': 1,\n",
      "          'nand': 1,\n",
      "          'noticable': 1,\n",
      "          'take': 1,\n",
      "          'immediately': 1,\n",
      "          'sad': 1,\n",
      "          'distractions': 1,\n",
      "          'nmovies': 1,\n",
      "          'fall': 1,\n",
      "          'empire': 1,\n",
      "          'spartacus': 1,\n",
      "          'seemed': 1,\n",
      "          'okay': 1,\n",
      "          'without': 1,\n",
      "          'use': 1,\n",
      "          'nkeep': 1,\n",
      "          'mind': 1,\n",
      "          'based': 1,\n",
      "          'people': 1,\n",
      "          'events': 1,\n",
      "          'entirely': 1,\n",
      "          'entertainment': 1,\n",
      "          'another': 1,\n",
      "          'add': 1,\n",
      "          'list': 1,\n",
      "          'damn': 1,\n",
      "          'flicks': 1,\n",
      "          'released': 1,\n",
      "          '2000': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'great': 7,\n",
      "          'one': 6,\n",
      "          'guido': 5,\n",
      "          'people': 4,\n",
      "          'best': 4,\n",
      "          'benigni': 3,\n",
      "          'society': 3,\n",
      "          'nbenignis': 3,\n",
      "          'nit': 3,\n",
      "          'wife': 3,\n",
      "          'nits': 3,\n",
      "          'nhe': 3,\n",
      "          'nperhaps': 3,\n",
      "          'moments': 2,\n",
      "          'na': 2,\n",
      "          'town': 2,\n",
      "          'nthey': 2,\n",
      "          'fascist': 2,\n",
      "          'president': 2,\n",
      "          'nheil': 2,\n",
      "          'nthis': 2,\n",
      "          'clown': 2,\n",
      "          'also': 2,\n",
      "          'jew': 2,\n",
      "          'chaplins': 2,\n",
      "          'ni': 2,\n",
      "          'speech': 2,\n",
      "          'character': 2,\n",
      "          'must': 2,\n",
      "          'subject': 2,\n",
      "          'concept': 2,\n",
      "          'scenes': 2,\n",
      "          'half': 2,\n",
      "          'although': 2,\n",
      "          'language': 2,\n",
      "          'dora': 2,\n",
      "          'son': 2,\n",
      "          'seeing': 2,\n",
      "          'nfor': 2,\n",
      "          'big': 2,\n",
      "          'nwith': 2,\n",
      "          'even': 2,\n",
      "          'around': 2,\n",
      "          'alternate': 2,\n",
      "          'reality': 2,\n",
      "          'muster': 2,\n",
      "          'holocaust': 2,\n",
      "          'awards': 2,\n",
      "          'nwhat': 1,\n",
      "          'stunning': 1,\n",
      "          'touching': 1,\n",
      "          'heartwrenching': 1,\n",
      "          'heartwarming': 1,\n",
      "          'lifeaffirming': 1,\n",
      "          'miraculous': 1,\n",
      "          'nfrom': 1,\n",
      "          'opening': 1,\n",
      "          '_life': 1,\n",
      "          'beautiful_': 1,\n",
      "          'walks': 1,\n",
      "          'fine': 1,\n",
      "          'line': 1,\n",
      "          'serious': 1,\n",
      "          'tragedy': 1,\n",
      "          'uplifting': 1,\n",
      "          'comedy': 1,\n",
      "          'car': 1,\n",
      "          'brakes': 1,\n",
      "          'speeds': 1,\n",
      "          'roberto': 1,\n",
      "          'motions': 1,\n",
      "          'move': 1,\n",
      "          'way': 1,\n",
      "          'mistake': 1,\n",
      "          'traveling': 1,\n",
      "          'day': 1,\n",
      "          'nhuh': 1,\n",
      "          'nshortly': 1,\n",
      "          'thereafter': 1,\n",
      "          'drives': 1,\n",
      "          'stare': 1,\n",
      "          'blank': 1,\n",
      "          'faces': 1,\n",
      "          'standard': 1,\n",
      "          'somehow': 1,\n",
      "          'fresh': 1,\n",
      "          'postmodern': 1,\n",
      "          'stuff': 1,\n",
      "          'triumphs': 1,\n",
      "          'antisemitic': 1,\n",
      "          'lives': 1,\n",
      "          'ngranted': 1,\n",
      "          '_the': 1,\n",
      "          'dictator_': 1,\n",
      "          'comes': 1,\n",
      "          'mindcharlie': 1,\n",
      "          'almost': 1,\n",
      "          'masterpiece': 1,\n",
      "          'think': 1,\n",
      "          'lib': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'trumps': 1,\n",
      "          'gd': 1,\n",
      "          'essential': 1,\n",
      "          'point': 1,\n",
      "          'jewish': 1,\n",
      "          'barber': 1,\n",
      "          'gives': 1,\n",
      "          'climax': 1,\n",
      "          'break': 1,\n",
      "          'completely': 1,\n",
      "          'nbenigni': 1,\n",
      "          'given': 1,\n",
      "          'similar': 1,\n",
      "          'situation': 1,\n",
      "          'mistaken': 1,\n",
      "          'dignitary': 1,\n",
      "          'explain': 1,\n",
      "          'classroom': 1,\n",
      "          'filled': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'schoolchildren': 1,\n",
      "          'scientists': 1,\n",
      "          'concluded': 1,\n",
      "          'aryans': 1,\n",
      "          'superior': 1,\n",
      "          'race': 1,\n",
      "          'stays': 1,\n",
      "          'delivers': 1,\n",
      "          'keeping': 1,\n",
      "          'matter': 1,\n",
      "          'intact': 1,\n",
      "          'showing': 1,\n",
      "          'absurdity': 1,\n",
      "          'satirical': 1,\n",
      "          'modern': 1,\n",
      "          'cinema': 1,\n",
      "          'nthere': 1,\n",
      "          'many': 1,\n",
      "          'especially': 1,\n",
      "          'first': 1,\n",
      "          'bright': 1,\n",
      "          'loopy': 1,\n",
      "          'funny': 1,\n",
      "          'silly': 1,\n",
      "          'nslapstick': 1,\n",
      "          'reigns': 1,\n",
      "          'subtitled': 1,\n",
      "          'doubt': 1,\n",
      "          'universal': 1,\n",
      "          'conveyed': 1,\n",
      "          'nand': 1,\n",
      "          'focus': 1,\n",
      "          'courtship': 1,\n",
      "          'played': 1,\n",
      "          'nicoletta': 1,\n",
      "          'braschi': 1,\n",
      "          'benignis': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'silent': 1,\n",
      "          'undercurrent': 1,\n",
      "          'creeps': 1,\n",
      "          'clearly': 1,\n",
      "          'racist': 1,\n",
      "          'evidenced': 1,\n",
      "          'aforementioned': 1,\n",
      "          'scene': 1,\n",
      "          'others': 1,\n",
      "          'soon': 1,\n",
      "          'affect': 1,\n",
      "          'family': 1,\n",
      "          'nthe': 1,\n",
      "          'second': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'unnamed': 1,\n",
      "          'concentration': 1,\n",
      "          'camp': 1,\n",
      "          'insistence': 1,\n",
      "          'fiveyear': 1,\n",
      "          'old': 1,\n",
      "          'giosue9': 1,\n",
      "          'giorgio': 1,\n",
      "          'cantarini': 1,\n",
      "          'deported': 1,\n",
      "          'nguido': 1,\n",
      "          'horrors': 1,\n",
      "          'desperate': 1,\n",
      "          'protect': 1,\n",
      "          'child': 1,\n",
      "          'separated': 1,\n",
      "          'find': 1,\n",
      "          'ways': 1,\n",
      "          'communicate': 1,\n",
      "          'right': 1,\n",
      "          'controversial': 1,\n",
      "          'part': 1,\n",
      "          'convinces': 1,\n",
      "          'youngster': 1,\n",
      "          'elaborate': 1,\n",
      "          'game': 1,\n",
      "          'rules': 1,\n",
      "          'include': 1,\n",
      "          'hiding': 1,\n",
      "          'quiet': 1,\n",
      "          'learning': 1,\n",
      "          'ask': 1,\n",
      "          'seconds': 1,\n",
      "          'nwhich': 1,\n",
      "          'raises': 1,\n",
      "          'questions': 1,\n",
      "          'deal': 1,\n",
      "          'pain': 1,\n",
      "          'persecution': 1,\n",
      "          'injustice': 1,\n",
      "          'worst': 1,\n",
      "          'level': 1,\n",
      "          'said': 1,\n",
      "          'tragedies': 1,\n",
      "          'bring': 1,\n",
      "          'finding': 1,\n",
      "          'strengths': 1,\n",
      "          'realize': 1,\n",
      "          'nother': 1,\n",
      "          'times': 1,\n",
      "          'deteriorate': 1,\n",
      "          'become': 1,\n",
      "          'overwhelmed': 1,\n",
      "          'little': 1,\n",
      "          'strength': 1,\n",
      "          'incentive': 1,\n",
      "          'swim': 1,\n",
      "          'nsometimes': 1,\n",
      "          'giggle': 1,\n",
      "          'vacant': 1,\n",
      "          'emotion': 1,\n",
      "          'behind': 1,\n",
      "          'yearning': 1,\n",
      "          'brightness': 1,\n",
      "          'soothe': 1,\n",
      "          'wounds': 1,\n",
      "          'realizes': 1,\n",
      "          'fool': 1,\n",
      "          'sees': 1,\n",
      "          'slurs': 1,\n",
      "          'vandalism': 1,\n",
      "          'feeling': 1,\n",
      "          'weight': 1,\n",
      "          'verbal': 1,\n",
      "          'attacks': 1,\n",
      "          'still': 1,\n",
      "          'audacity': 1,\n",
      "          'see': 1,\n",
      "          'everyone': 1,\n",
      "          'perhaps': 1,\n",
      "          'antagonists': 1,\n",
      "          'laugh': 1,\n",
      "          'nhis': 1,\n",
      "          'liberty': 1,\n",
      "          'stripped': 1,\n",
      "          'dignity': 1,\n",
      "          'certainly': 1,\n",
      "          'dignities': 1,\n",
      "          'obvious': 1,\n",
      "          'onset': 1,\n",
      "          'someone': 1,\n",
      "          'much': 1,\n",
      "          'fascism': 1,\n",
      "          'preposterousness': 1,\n",
      "          'aryan': 1,\n",
      "          'nation': 1,\n",
      "          'grinning': 1,\n",
      "          'joyful': 1,\n",
      "          'demeanor': 1,\n",
      "          'form': 1,\n",
      "          'denial': 1,\n",
      "          'could': 1,\n",
      "          'unlike': 1,\n",
      "          'different': 1,\n",
      "          '_brazil_': 1,\n",
      "          'example': 1,\n",
      "          'fortitude': 1,\n",
      "          'weapons': 1,\n",
      "          'wit': 1,\n",
      "          'nwhatever': 1,\n",
      "          'purposes': 1,\n",
      "          'debate': 1,\n",
      "          'sure': 1,\n",
      "          'sign': 1,\n",
      "          'threedimensional': 1,\n",
      "          'characters': 1,\n",
      "          'stranded': 1,\n",
      "          'amidst': 1,\n",
      "          'terrifyingly': 1,\n",
      "          'risky': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'works': 1,\n",
      "          'important': 1,\n",
      "          'footnote': 1,\n",
      "          'intended': 1,\n",
      "          'accurate': 1,\n",
      "          'reflection': 1,\n",
      "          'atrocities': 1,\n",
      "          'trivialized': 1,\n",
      "          'far': 1,\n",
      "          'dont': 1,\n",
      "          'broadcast': 1,\n",
      "          'explicitly': 1,\n",
      "          'shown': 1,\n",
      "          'horrorless': 1,\n",
      "          'believe': 1,\n",
      "          'cautious': 1,\n",
      "          'preserve': 1,\n",
      "          'tone': 1,\n",
      "          'like': 1,\n",
      "          'theory': 1,\n",
      "          'guidos': 1,\n",
      "          'nhowever': 1,\n",
      "          'criticism': 1,\n",
      "          'rewriting': 1,\n",
      "          'history': 1,\n",
      "          'wasnt': 1,\n",
      "          'bad': 1,\n",
      "          'seems': 1,\n",
      "          'simply': 1,\n",
      "          'offtarget': 1,\n",
      "          'audience': 1,\n",
      "          'cannes': 1,\n",
      "          'toronto': 1,\n",
      "          'definite': 1,\n",
      "          'shooin': 1,\n",
      "          'foreign': 1,\n",
      "          'hopefully': 1,\n",
      "          'picture': 1,\n",
      "          'well': 1,\n",
      "          'made': 1,\n",
      "          'honorary': 1,\n",
      "          'jerusalem': 1,\n",
      "          'swept': 1,\n",
      "          'italian': 1,\n",
      "          'academy': 1,\n",
      "          'ncontroversy': 1,\n",
      "          'notwithstanding': 1,\n",
      "          'films': 1,\n",
      "          'year': 1,\n",
      "          'writing': 1,\n",
      "          'beat': 1,\n",
      "          'nmasterful': 1,\n",
      "          'nmiraculous': 1,\n",
      "          'mustsee': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'great': 7,\n",
      "          'expectations': 7,\n",
      "          'estella': 6,\n",
      "          'finn': 5,\n",
      "          'artist': 4,\n",
      "          '1998': 4,\n",
      "          'dickens': 4,\n",
      "          'novel': 3,\n",
      "          'named': 3,\n",
      "          'pip': 3,\n",
      "          'life': 3,\n",
      "          'convict': 3,\n",
      "          'benefactor': 3,\n",
      "          'become': 3,\n",
      "          'day': 3,\n",
      "          'becomes': 3,\n",
      "          'paltrow': 3,\n",
      "          'romanced': 3,\n",
      "          'version': 2,\n",
      "          'charles': 2,\n",
      "          'nin': 2,\n",
      "          'classic': 2,\n",
      "          'learns': 2,\n",
      "          'escaped': 2,\n",
      "          'lifetime': 2,\n",
      "          'infatuation': 2,\n",
      "          'snobbish': 2,\n",
      "          'nthe': 2,\n",
      "          'story': 2,\n",
      "          'anonymous': 2,\n",
      "          'london': 2,\n",
      "          'upper': 2,\n",
      "          'class': 2,\n",
      "          'gentleman': 2,\n",
      "          'npip': 2,\n",
      "          'leaves': 2,\n",
      "          'groomed': 2,\n",
      "          'one': 2,\n",
      "          'classy': 2,\n",
      "          'enough': 2,\n",
      "          'marry': 2,\n",
      "          'nbut': 2,\n",
      "          'new': 2,\n",
      "          'florida': 2,\n",
      "          'hawke': 2,\n",
      "          'robert': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'finns': 2,\n",
      "          'romance': 2,\n",
      "          'gwyneth': 2,\n",
      "          'raised': 2,\n",
      "          'ms': 2,\n",
      "          'dinsmoor': 2,\n",
      "          'bancroft': 2,\n",
      "          'nhe': 2,\n",
      "          'tease': 2,\n",
      "          'love': 2,\n",
      "          'ingredients': 1,\n",
      "          'starving': 1,\n",
      "          'lusting': 1,\n",
      "          'beautiful': 1,\n",
      "          'woman': 1,\n",
      "          'childhood': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'modernized': 1,\n",
      "          'original': 1,\n",
      "          'orphan': 1,\n",
      "          'boy': 1,\n",
      "          'friendship': 1,\n",
      "          'relationship': 1,\n",
      "          'bitter': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n",
      "          'miss': 1,\n",
      "          'havisham': 1,\n",
      "          'hopeless': 1,\n",
      "          'havishams': 1,\n",
      "          'adopted': 1,\n",
      "          'daughter': 1,\n",
      "          'gist': 1,\n",
      "          'sends': 1,\n",
      "          'way': 1,\n",
      "          'complicating': 1,\n",
      "          'things': 1,\n",
      "          'arrogant': 1,\n",
      "          'b': 1,\n",
      "          'nuntil': 1,\n",
      "          'secret': 1,\n",
      "          'poor': 1,\n",
      "          'lad': 1,\n",
      "          'ethan': 1,\n",
      "          'talent': 1,\n",
      "          'drawing': 1,\n",
      "          'early': 1,\n",
      "          'memory': 1,\n",
      "          'helping': 1,\n",
      "          'soon': 1,\n",
      "          'focus': 1,\n",
      "          'develops': 1,\n",
      "          'lifelong': 1,\n",
      "          'crust': 1,\n",
      "          'girl': 1,\n",
      "          'psychological': 1,\n",
      "          'emotional': 1,\n",
      "          'issues': 1,\n",
      "          'due': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'environment': 1,\n",
      "          'nestella': 1,\n",
      "          'wealth': 1,\n",
      "          'anne': 1,\n",
      "          'eccentric': 1,\n",
      "          'aged': 1,\n",
      "          'embittered': 1,\n",
      "          'manhating': 1,\n",
      "          'single': 1,\n",
      "          'aunt': 1,\n",
      "          'whose': 1,\n",
      "          'groom': 1,\n",
      "          'left': 1,\n",
      "          'abandoned': 1,\n",
      "          'altar': 1,\n",
      "          'marriage': 1,\n",
      "          'nthis': 1,\n",
      "          'causes': 1,\n",
      "          'fear': 1,\n",
      "          'daylight': 1,\n",
      "          'relationships': 1,\n",
      "          'thinks': 1,\n",
      "          'case': 1,\n",
      "          'snobbery': 1,\n",
      "          'nwhen': 1,\n",
      "          'young': 1,\n",
      "          'man': 1,\n",
      "          'sets': 1,\n",
      "          'york': 1,\n",
      "          'connections': 1,\n",
      "          'publicity': 1,\n",
      "          'famous': 1,\n",
      "          'nfinn': 1,\n",
      "          'successful': 1,\n",
      "          'might': 1,\n",
      "          'nwhat': 1,\n",
      "          'happen': 1,\n",
      "          'nopinion': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'look': 1,\n",
      "          'youve': 1,\n",
      "          'found': 1,\n",
      "          'nethan': 1,\n",
      "          'romantic': 1,\n",
      "          'lead': 1,\n",
      "          'n': 1,\n",
      "          'winona': 1,\n",
      "          'ryder': 1,\n",
      "          'reality': 1,\n",
      "          'bites': 1,\n",
      "          'julie': 1,\n",
      "          'delpy': 1,\n",
      "          'sunrise': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'gattaca': 1,\n",
      "          'nnow': 1,\n",
      "          'gets': 1,\n",
      "          'chase': 1,\n",
      "          'railthin': 1,\n",
      "          'blonde': 1,\n",
      "          'nhawke': 1,\n",
      "          'plays': 1,\n",
      "          'lovestruck': 1,\n",
      "          'earnest': 1,\n",
      "          'unchanged': 1,\n",
      "          'throughout': 1,\n",
      "          'film': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'portrays': 1,\n",
      "          'alternating': 1,\n",
      "          'infuriating': 1,\n",
      "          'ice': 1,\n",
      "          'princess': 1,\n",
      "          'estellas': 1,\n",
      "          'whole': 1,\n",
      "          'purpose': 1,\n",
      "          'get': 1,\n",
      "          'men': 1,\n",
      "          'fall': 1,\n",
      "          'hurt': 1,\n",
      "          'rather': 1,\n",
      "          'intimate': 1,\n",
      "          'nanne': 1,\n",
      "          'goes': 1,\n",
      "          'little': 1,\n",
      "          'overboard': 1,\n",
      "          'deranged': 1,\n",
      "          'pessimistic': 1,\n",
      "          'carries': 1,\n",
      "          'part': 1,\n",
      "          'suitably': 1,\n",
      "          'difference': 1,\n",
      "          'adaptation': 1,\n",
      "          'ripe': 1,\n",
      "          'deep': 1,\n",
      "          'timeless': 1,\n",
      "          'themes': 1,\n",
      "          'struggle': 1,\n",
      "          'whereas': 1,\n",
      "          'artsy': 1,\n",
      "          'less': 1,\n",
      "          'complicated': 1,\n",
      "          '1990s': 1,\n",
      "          'dealing': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'cole': 6,\n",
      "          'sixth': 3,\n",
      "          'sense': 3,\n",
      "          'malcolm': 3,\n",
      "          'us': 3,\n",
      "          'time': 3,\n",
      "          'troubled': 2,\n",
      "          'kind': 2,\n",
      "          'shot': 2,\n",
      "          'child': 2,\n",
      "          'willis': 2,\n",
      "          'even': 2,\n",
      "          'malcolms': 2,\n",
      "          'big': 2,\n",
      "          'nonly': 2,\n",
      "          'closet': 2,\n",
      "          'dead': 2,\n",
      "          'doctor': 2,\n",
      "          'first': 2,\n",
      "          'something': 2,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'moment': 1,\n",
      "          'recently': 1,\n",
      "          'particularly': 1,\n",
      "          'character': 1,\n",
      "          'senses': 1,\n",
      "          'danger': 1,\n",
      "          'paranormal': 1,\n",
      "          'room': 1,\n",
      "          'temperature': 1,\n",
      "          'inexplicably': 1,\n",
      "          'plummets': 1,\n",
      "          'freezing': 1,\n",
      "          'difference': 1,\n",
      "          'happens': 1,\n",
      "          'lili': 1,\n",
      "          'taylors': 1,\n",
      "          'nell': 1,\n",
      "          'haunting': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'hero': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'named': 1,\n",
      "          'rich': 1,\n",
      "          'creation': 1,\n",
      "          'wish': 1,\n",
      "          'nothing': 1,\n",
      "          'ghosts': 1,\n",
      "          'haunt': 1,\n",
      "          'take': 1,\n",
      "          'hike': 1,\n",
      "          'seasons': 1,\n",
      "          'changed': 1,\n",
      "          'since': 1,\n",
      "          'expatient': 1,\n",
      "          'jaded': 1,\n",
      "          'psychologist': 1,\n",
      "          'crowe': 1,\n",
      "          'comfort': 1,\n",
      "          'bedroom': 1,\n",
      "          'ndesperate': 1,\n",
      "          'get': 1,\n",
      "          'career': 1,\n",
      "          'back': 1,\n",
      "          'track': 1,\n",
      "          'expense': 1,\n",
      "          'crumbling': 1,\n",
      "          'marriage': 1,\n",
      "          'williams': 1,\n",
      "          'rushmore': 1,\n",
      "          'councils': 1,\n",
      "          'deeply': 1,\n",
      "          'osment': 1,\n",
      "          'preteen': 1,\n",
      "          'displays': 1,\n",
      "          'quirks': 1,\n",
      "          'wouldbe': 1,\n",
      "          'killer': 1,\n",
      "          'scars': 1,\n",
      "          'body': 1,\n",
      "          'antisocial': 1,\n",
      "          'behaviour': 1,\n",
      "          'reluctance': 1,\n",
      "          'reveal': 1,\n",
      "          'secret': 1,\n",
      "          'locked': 1,\n",
      "          'bullies': 1,\n",
      "          'hospitalized': 1,\n",
      "          'result': 1,\n",
      "          'divulge': 1,\n",
      "          'spinetingling': 1,\n",
      "          'scene': 1,\n",
      "          'sees': 1,\n",
      "          'people': 1,\n",
      "          'walking': 1,\n",
      "          'among': 1,\n",
      "          'nmalcolm': 1,\n",
      "          'assumes': 1,\n",
      "          'given': 1,\n",
      "          'profession': 1,\n",
      "          'reasonably': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'psychic': 1,\n",
      "          'sincerity': 1,\n",
      "          'coles': 1,\n",
      "          'anguished': 1,\n",
      "          'confession': 1,\n",
      "          'prevents': 1,\n",
      "          'taking': 1,\n",
      "          'drastic': 1,\n",
      "          'measures': 1,\n",
      "          'nhe': 1,\n",
      "          'instead': 1,\n",
      "          'pursue': 1,\n",
      "          'supernatural': 1,\n",
      "          'angle': 1,\n",
      "          'becoming': 1,\n",
      "          'surrogate': 1,\n",
      "          'father': 1,\n",
      "          'lives': 1,\n",
      "          'single': 1,\n",
      "          'mother': 1,\n",
      "          'lynn': 1,\n",
      "          'collette': 1,\n",
      "          'process': 1,\n",
      "          'common': 1,\n",
      "          'ghost': 1,\n",
      "          'poltergeist': 1,\n",
      "          'n': 1,\n",
      "          'though': 1,\n",
      "          'shyamalan': 1,\n",
      "          'somewhat': 1,\n",
      "          'unforgiveably': 1,\n",
      "          'crib': 1,\n",
      "          'selfrearranging': 1,\n",
      "          'kitchen': 1,\n",
      "          'business': 1,\n",
      "          'latter': 1,\n",
      "          'nits': 1,\n",
      "          'far': 1,\n",
      "          'heartwarming': 1,\n",
      "          'frightening': 1,\n",
      "          'film': 1,\n",
      "          'would': 1,\n",
      "          'none': 1,\n",
      "          'worse': 1,\n",
      "          'wear': 1,\n",
      "          'without': 1,\n",
      "          'pulp': 1,\n",
      "          'shocks': 1,\n",
      "          'ncole': 1,\n",
      "          'attracts': 1,\n",
      "          'reasons': 1,\n",
      "          'unknown': 1,\n",
      "          'theyre': 1,\n",
      "          'harm': 1,\n",
      "          'reallythey': 1,\n",
      "          'want': 1,\n",
      "          'heard': 1,\n",
      "          'means': 1,\n",
      "          'scaring': 1,\n",
      "          'bejesus': 1,\n",
      "          'innocent': 1,\n",
      "          'gradeschooler': 1,\n",
      "          'nperhaps': 1,\n",
      "          'apparitions': 1,\n",
      "          'seem': 1,\n",
      "          'ghastly': 1,\n",
      "          'really': 1,\n",
      "          'looking': 1,\n",
      "          'situation': 1,\n",
      "          'eyes': 1,\n",
      "          'eightyearold': 1,\n",
      "          'nthats': 1,\n",
      "          'right': 1,\n",
      "          'years': 1,\n",
      "          'gives': 1,\n",
      "          'spotlight': 1,\n",
      "          'costar': 1,\n",
      "          'nwe': 1,\n",
      "          'appreciate': 1,\n",
      "          'domestic': 1,\n",
      "          'dilemma': 1,\n",
      "          'identify': 1,\n",
      "          'recalling': 1,\n",
      "          'fears': 1,\n",
      "          'bogeyman': 1,\n",
      "          'monster': 1,\n",
      "          'thing': 1,\n",
      "          'bed': 1,\n",
      "          'nboth': 1,\n",
      "          'actors': 1,\n",
      "          'deliver': 1,\n",
      "          'immensely': 1,\n",
      "          'likable': 1,\n",
      "          'performances': 1,\n",
      "          'dynamic': 1,\n",
      "          'manifest': 1,\n",
      "          'nwillis': 1,\n",
      "          'convinces': 1,\n",
      "          'hes': 1,\n",
      "          'unable': 1,\n",
      "          'horndog': 1,\n",
      "          'shrink': 1,\n",
      "          'overheated': 1,\n",
      "          'color': 1,\n",
      "          'night': 1,\n",
      "          'nosment': 1,\n",
      "          'phenomenal': 1,\n",
      "          'true': 1,\n",
      "          'professional': 1,\n",
      "          'resists': 1,\n",
      "          'mugging': 1,\n",
      "          'camera': 1,\n",
      "          'like': 1,\n",
      "          'stars': 1,\n",
      "          'much': 1,\n",
      "          'experience': 1,\n",
      "          'television': 1,\n",
      "          'commercials': 1,\n",
      "          'atmospherically': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'cinematographer': 1,\n",
      "          'tak': 1,\n",
      "          'fujimoto': 1,\n",
      "          'actually': 1,\n",
      "          'dramaits': 1,\n",
      "          'spooky': 1,\n",
      "          'effective': 1,\n",
      "          'ad': 1,\n",
      "          'campaign': 1,\n",
      "          'misleading': 1,\n",
      "          'expecting': 1,\n",
      "          'different': 1,\n",
      "          'noticerather': 1,\n",
      "          'feelthe': 1,\n",
      "          'movies': 1,\n",
      "          'running': 1,\n",
      "          'shy': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'story': 1,\n",
      "          'unfurls': 1,\n",
      "          'slowly': 1,\n",
      "          'engrossingly': 1,\n",
      "          'unexpected': 1,\n",
      "          'finish': 1,\n",
      "          'definitely': 1,\n",
      "          'worth': 1,\n",
      "          'wait': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'said': 1,\n",
      "          'twist': 1,\n",
      "          'ending': 1,\n",
      "          'bulletproof': 1,\n",
      "          'admired': 1,\n",
      "          'audacity': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'like': 10,\n",
      "          'movies': 6,\n",
      "          'film': 6,\n",
      "          'done': 5,\n",
      "          'way': 5,\n",
      "          'nthe': 5,\n",
      "          'count': 4,\n",
      "          'horror': 4,\n",
      "          'nosferatu': 4,\n",
      "          'orlock': 4,\n",
      "          'really': 3,\n",
      "          'intended': 3,\n",
      "          'good': 3,\n",
      "          'mean': 3,\n",
      "          'nand': 3,\n",
      "          'even': 3,\n",
      "          'new': 3,\n",
      "          'home': 3,\n",
      "          'hutter': 3,\n",
      "          'one': 3,\n",
      "          'nbut': 3,\n",
      "          'version': 3,\n",
      "          'dracula': 2,\n",
      "          'frightening': 2,\n",
      "          'old': 2,\n",
      "          'ni': 2,\n",
      "          'get': 2,\n",
      "          'named': 2,\n",
      "          'idea': 2,\n",
      "          'vampire': 2,\n",
      "          'well': 2,\n",
      "          'films': 2,\n",
      "          'times': 2,\n",
      "          'nthis': 2,\n",
      "          'much': 2,\n",
      "          'watching': 2,\n",
      "          'original': 2,\n",
      "          'back': 2,\n",
      "          'art': 2,\n",
      "          'seen': 2,\n",
      "          'intellectual': 2,\n",
      "          'ground': 2,\n",
      "          'little': 2,\n",
      "          'thinking': 2,\n",
      "          'modern': 2,\n",
      "          'slasher': 2,\n",
      "          'gore': 2,\n",
      "          'made': 2,\n",
      "          'attention': 2,\n",
      "          'see': 2,\n",
      "          'movie': 2,\n",
      "          'blood': 2,\n",
      "          'nhe': 2,\n",
      "          'fiancee': 2,\n",
      "          'next': 2,\n",
      "          'hutters': 2,\n",
      "          'time': 2,\n",
      "          'copy': 2,\n",
      "          'arrow': 2,\n",
      "          'color': 2,\n",
      "          'nif': 2,\n",
      "          'turn': 2,\n",
      "          'hollywood': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'death': 1,\n",
      "          'pun': 1,\n",
      "          'honest': 1,\n",
      "          'nits': 1,\n",
      "          'shame': 1,\n",
      "          'probably': 1,\n",
      "          'bmovie': 1,\n",
      "          'monsters': 1,\n",
      "          'come': 1,\n",
      "          'nare': 1,\n",
      "          'people': 1,\n",
      "          'going': 1,\n",
      "          'scared': 1,\n",
      "          'big': 1,\n",
      "          'green': 1,\n",
      "          'guy': 1,\n",
      "          'frankenstein': 1,\n",
      "          'moves': 1,\n",
      "          'speed': 1,\n",
      "          'five': 1,\n",
      "          'miles': 1,\n",
      "          'per': 1,\n",
      "          'hour': 1,\n",
      "          'nhell': 1,\n",
      "          'hell': 1,\n",
      "          'also': 1,\n",
      "          'carried': 1,\n",
      "          'kind': 1,\n",
      "          'sensual': 1,\n",
      "          'feeling': 1,\n",
      "          'commonly': 1,\n",
      "          'associated': 1,\n",
      "          'many': 1,\n",
      "          'possible': 1,\n",
      "          'exception': 1,\n",
      "          'dusk': 1,\n",
      "          'till': 1,\n",
      "          'dawn': 1,\n",
      "          'lately': 1,\n",
      "          'either': 1,\n",
      "          'precisely': 1,\n",
      "          'fun': 1,\n",
      "          'got': 1,\n",
      "          'go': 1,\n",
      "          'making': 1,\n",
      "          'considered': 1,\n",
      "          'form': 1,\n",
      "          'make': 1,\n",
      "          'cash': 1,\n",
      "          'nowadays': 1,\n",
      "          'exactly': 1,\n",
      "          'nive': 1,\n",
      "          'fan': 1,\n",
      "          'since': 1,\n",
      "          'eight': 1,\n",
      "          'years': 1,\n",
      "          'day': 1,\n",
      "          'cover': 1,\n",
      "          'covers': 1,\n",
      "          'nlet': 1,\n",
      "          'backtrack': 1,\n",
      "          'minute': 1,\n",
      "          'nwhen': 1,\n",
      "          'say': 1,\n",
      "          'dont': 1,\n",
      "          'tackles': 1,\n",
      "          'philosophical': 1,\n",
      "          'questions': 1,\n",
      "          'anything': 1,\n",
      "          'order': 1,\n",
      "          'work': 1,\n",
      "          'bit': 1,\n",
      "          'involved': 1,\n",
      "          'nwith': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'whatnot': 1,\n",
      "          'simply': 1,\n",
      "          'sit': 1,\n",
      "          'chair': 1,\n",
      "          'frightened': 1,\n",
      "          'shown': 1,\n",
      "          'nthose': 1,\n",
      "          'could': 1,\n",
      "          'fifth': 1,\n",
      "          'grader': 1,\n",
      "          'makeup': 1,\n",
      "          'kit': 1,\n",
      "          'require': 1,\n",
      "          'viewer': 1,\n",
      "          'actually': 1,\n",
      "          'pay': 1,\n",
      "          'ponder': 1,\n",
      "          'happening': 1,\n",
      "          'screen': 1,\n",
      "          'nyou': 1,\n",
      "          'barely': 1,\n",
      "          'violence': 1,\n",
      "          'less': 1,\n",
      "          'mans': 1,\n",
      "          'flick': 1,\n",
      "          'title': 1,\n",
      "          'max': 1,\n",
      "          'shreck': 1,\n",
      "          'strange': 1,\n",
      "          'hermitlike': 1,\n",
      "          'opens': 1,\n",
      "          'looking': 1,\n",
      "          'buy': 1,\n",
      "          'employs': 1,\n",
      "          'help': 1,\n",
      "          'gustav': 1,\n",
      "          'von': 1,\n",
      "          'wangenhein': 1,\n",
      "          'real': 1,\n",
      "          'estate': 1,\n",
      "          'salesman': 1,\n",
      "          'something': 1,\n",
      "          'effect': 1,\n",
      "          'nice': 1,\n",
      "          'ellen': 1,\n",
      "          'greta': 1,\n",
      "          'schroeder': 1,\n",
      "          'nupon': 1,\n",
      "          'orders': 1,\n",
      "          'boss': 1,\n",
      "          'treks': 1,\n",
      "          'transylvanian': 1,\n",
      "          'mountains': 1,\n",
      "          'visit': 1,\n",
      "          'orlocks': 1,\n",
      "          'castle': 1,\n",
      "          'speak': 1,\n",
      "          'happens': 1,\n",
      "          'right': 1,\n",
      "          'door': 1,\n",
      "          'morning': 1,\n",
      "          'wakes': 1,\n",
      "          'find': 1,\n",
      "          'teeth': 1,\n",
      "          'marks': 1,\n",
      "          'neck': 1,\n",
      "          'nreally': 1,\n",
      "          'sign': 1,\n",
      "          'discovers': 1,\n",
      "          'reading': 1,\n",
      "          'undead': 1,\n",
      "          'feeds': 1,\n",
      "          'living': 1,\n",
      "          'humans': 1,\n",
      "          'pieces': 1,\n",
      "          'together': 1,\n",
      "          'late': 1,\n",
      "          'already': 1,\n",
      "          'embarked': 1,\n",
      "          'hometown': 1,\n",
      "          'via': 1,\n",
      "          'boat': 1,\n",
      "          'nwill': 1,\n",
      "          'reach': 1,\n",
      "          'destination': 1,\n",
      "          'save': 1,\n",
      "          'deadly': 1,\n",
      "          'clutches': 1,\n",
      "          'character': 1,\n",
      "          'course': 1,\n",
      "          'reason': 1,\n",
      "          'name': 1,\n",
      "          'changed': 1,\n",
      "          'unauthorized': 1,\n",
      "          'account': 1,\n",
      "          'bram': 1,\n",
      "          'strockers': 1,\n",
      "          'novel': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'interesting': 1,\n",
      "          'side': 1,\n",
      "          'note': 1,\n",
      "          'nprobably': 1,\n",
      "          'fine': 1,\n",
      "          'purchasing': 1,\n",
      "          'entertainments': 1,\n",
      "          'digitally': 1,\n",
      "          'restored': 1,\n",
      "          'cut': 1,\n",
      "          'available': 1,\n",
      "          'stores': 1,\n",
      "          'nhowever': 1,\n",
      "          'quite': 1,\n",
      "          'different': 1,\n",
      "          'maunaus': 1,\n",
      "          'masterpiece': 1,\n",
      "          'sporting': 1,\n",
      "          'soundtrack': 1,\n",
      "          'band': 1,\n",
      "          'type': 1,\n",
      "          'onegative': 1,\n",
      "          'tinting': 1,\n",
      "          '1984': 1,\n",
      "          'langs': 1,\n",
      "          'metropolis': 1,\n",
      "          'nnow': 1,\n",
      "          'appreciate': 1,\n",
      "          'entertainment': 1,\n",
      "          'trying': 1,\n",
      "          'bringing': 1,\n",
      "          'classic': 1,\n",
      "          'wider': 1,\n",
      "          'audience': 1,\n",
      "          'might': 1,\n",
      "          'otherwise': 1,\n",
      "          'skipped': 1,\n",
      "          'alas': 1,\n",
      "          'originally': 1,\n",
      "          'thats': 1,\n",
      "          'bag': 1,\n",
      "          'may': 1,\n",
      "          'newer': 1,\n",
      "          'better': 1,\n",
      "          'neither': 1,\n",
      "          'suggest': 1,\n",
      "          'investing': 1,\n",
      "          'money': 1,\n",
      "          'pop': 1,\n",
      "          'vcr': 1,\n",
      "          'enjoy': 1,\n",
      "          'youre': 1,\n",
      "          'ill': 1,\n",
      "          'future': 1,\n",
      "          'viewings': 1,\n",
      "          'television': 1,\n",
      "          'hit': 1,\n",
      "          'mute': 1,\n",
      "          'bach': 1,\n",
      "          'mozart': 1,\n",
      "          'whatever': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'dim': 1,\n",
      "          'lights': 1,\n",
      "          'prepare': 1,\n",
      "          'view': 1,\n",
      "          'truly': 1,\n",
      "          'greatest': 1,\n",
      "          'ever': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 6,\n",
      "          'syndrome': 5,\n",
      "          'film': 5,\n",
      "          'stendhal': 5,\n",
      "          'argento': 4,\n",
      "          'films': 4,\n",
      "          'argentos': 4,\n",
      "          'nthe': 4,\n",
      "          'art': 3,\n",
      "          'morricone': 3,\n",
      "          'several': 3,\n",
      "          'alfredo': 3,\n",
      "          'nbut': 3,\n",
      "          'nits': 3,\n",
      "          'painting': 2,\n",
      "          'may': 2,\n",
      "          'afterwards': 2,\n",
      "          'dario': 2,\n",
      "          'soundtrack': 2,\n",
      "          'ennio': 2,\n",
      "          'quite': 2,\n",
      "          'nit': 2,\n",
      "          'young': 2,\n",
      "          'director': 2,\n",
      "          'anna': 2,\n",
      "          'kretschmann': 2,\n",
      "          'gallery': 2,\n",
      "          'often': 2,\n",
      "          'themes': 2,\n",
      "          'perhaps': 2,\n",
      "          'effective': 2,\n",
      "          'last': 2,\n",
      "          'italy': 2,\n",
      "          'efforts': 2,\n",
      "          'since': 2,\n",
      "          'career': 2,\n",
      "          'long': 2,\n",
      "          'stendhals': 1,\n",
      "          'condition': 1,\n",
      "          'presence': 1,\n",
      "          'person': 1,\n",
      "          'becomes': 1,\n",
      "          'engulfed': 1,\n",
      "          'hallucinates': 1,\n",
      "          'suffer': 1,\n",
      "          'symptoms': 1,\n",
      "          'depression': 1,\n",
      "          'suicidal': 1,\n",
      "          'behaviour': 1,\n",
      "          'personality': 1,\n",
      "          'disorder': 1,\n",
      "          'ngrim': 1,\n",
      "          'stuff': 1,\n",
      "          'sure': 1,\n",
      "          'subject': 1,\n",
      "          'remarkable': 1,\n",
      "          'italys': 1,\n",
      "          'master': 1,\n",
      "          'horror': 1,\n",
      "          'thriller': 1,\n",
      "          'nboasting': 1,\n",
      "          'unforgettable': 1,\n",
      "          'grandfather': 1,\n",
      "          'music': 1,\n",
      "          'magnificent': 1,\n",
      "          'return': 1,\n",
      "          'form': 1,\n",
      "          'follows': 1,\n",
      "          'disappointing': 1,\n",
      "          'american': 1,\n",
      "          'debut': 1,\n",
      "          'trauma': 1,\n",
      "          '1992': 1,\n",
      "          'patchy': 1,\n",
      "          'opera': 1,\n",
      "          '1987': 1,\n",
      "          'mediocre': 1,\n",
      "          'produced': 1,\n",
      "          'italian': 1,\n",
      "          'michele': 1,\n",
      "          'soavi': 1,\n",
      "          'late': 1,\n",
      "          '1980s': 1,\n",
      "          'nbased': 1,\n",
      "          'novel': 1,\n",
      "          'graziella': 1,\n",
      "          'magherini': 1,\n",
      "          'stars': 1,\n",
      "          'daughter': 1,\n",
      "          'asia': 1,\n",
      "          'roman': 1,\n",
      "          'police': 1,\n",
      "          'inspector': 1,\n",
      "          'manni': 1,\n",
      "          'pursuit': 1,\n",
      "          'brutal': 1,\n",
      "          'rapistkiller': 1,\n",
      "          'nvisiting': 1,\n",
      "          'florence': 1,\n",
      "          'follow': 1,\n",
      "          'leads': 1,\n",
      "          'lured': 1,\n",
      "          'killer': 1,\n",
      "          'thomas': 1,\n",
      "          'favourite': 1,\n",
      "          'haunt': 1,\n",
      "          'hopes': 1,\n",
      "          'identify': 1,\n",
      "          'exactly': 1,\n",
      "          'tail': 1,\n",
      "          'nat': 1,\n",
      "          'overwhelmed': 1,\n",
      "          'faints': 1,\n",
      "          'nposing': 1,\n",
      "          'bystander': 1,\n",
      "          'briefly': 1,\n",
      "          'comes': 1,\n",
      "          'aid': 1,\n",
      "          'identified': 1,\n",
      "          'pursuer': 1,\n",
      "          'strange': 1,\n",
      "          'game': 1,\n",
      "          'cat': 1,\n",
      "          'mouse': 1,\n",
      "          'begins': 1,\n",
      "          'na': 1,\n",
      "          'gripping': 1,\n",
      "          'story': 1,\n",
      "          'evolves': 1,\n",
      "          'coherent': 1,\n",
      "          'surprise': 1,\n",
      "          'familiar': 1,\n",
      "          'lumpy': 1,\n",
      "          'narratives': 1,\n",
      "          'simple': 1,\n",
      "          'cophuntingkiller': 1,\n",
      "          'scenario': 1,\n",
      "          'disturbing': 1,\n",
      "          'compelling': 1,\n",
      "          'study': 1,\n",
      "          'central': 1,\n",
      "          'characters': 1,\n",
      "          'psychological': 1,\n",
      "          'disintegration': 1,\n",
      "          'script': 1,\n",
      "          'explores': 1,\n",
      "          'psychosexual': 1,\n",
      "          'intelligence': 1,\n",
      "          'candour': 1,\n",
      "          'much': 1,\n",
      "          'sensitive': 1,\n",
      "          'viewers': 1,\n",
      "          'dark': 1,\n",
      "          'emerges': 1,\n",
      "          'artful': 1,\n",
      "          'european': 1,\n",
      "          'thrillers': 1,\n",
      "          'ten': 1,\n",
      "          'years': 1,\n",
      "          'nargento': 1,\n",
      "          'working': 1,\n",
      "          'native': 1,\n",
      "          'fully': 1,\n",
      "          'exploits': 1,\n",
      "          'opportunities': 1,\n",
      "          'use': 1,\n",
      "          'architecture': 1,\n",
      "          'symbolic': 1,\n",
      "          'statements': 1,\n",
      "          'departure': 1,\n",
      "          'points': 1,\n",
      "          'brilliant': 1,\n",
      "          'hallucinogenic': 1,\n",
      "          'sequences': 1,\n",
      "          'neffects': 1,\n",
      "          'whiz': 1,\n",
      "          'sergio': 1,\n",
      "          'stivaletti': 1,\n",
      "          'serves': 1,\n",
      "          'well': 1,\n",
      "          'cinematography': 1,\n",
      "          'giuseppe': 1,\n",
      "          'rotunno': 1,\n",
      "          'consistently': 1,\n",
      "          'excellent': 1,\n",
      "          'opening': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'segues': 1,\n",
      "          'hallucination': 1,\n",
      "          'flashback': 1,\n",
      "          'realtime': 1,\n",
      "          'tremendous': 1,\n",
      "          'style': 1,\n",
      "          'nproof': 1,\n",
      "          'inspired': 1,\n",
      "          'remains': 1,\n",
      "          'worlds': 1,\n",
      "          'exhilarating': 1,\n",
      "          'filmmakers': 1,\n",
      "          'cast': 1,\n",
      "          'generally': 1,\n",
      "          'good': 1,\n",
      "          'though': 1,\n",
      "          'marred': 1,\n",
      "          'times': 1,\n",
      "          'dubbing': 1,\n",
      "          'english': 1,\n",
      "          'renders': 1,\n",
      "          'speech': 1,\n",
      "          'emotionless': 1,\n",
      "          'nasia': 1,\n",
      "          'performance': 1,\n",
      "          'turns': 1,\n",
      "          'risky': 1,\n",
      "          'awkward': 1,\n",
      "          'fascinating': 1,\n",
      "          'difficult': 1,\n",
      "          'role': 1,\n",
      "          'given': 1,\n",
      "          'relative': 1,\n",
      "          'inexperience': 1,\n",
      "          'screen': 1,\n",
      "          'deserves': 1,\n",
      "          'applause': 1,\n",
      "          'nthomas': 1,\n",
      "          'chillingly': 1,\n",
      "          'marco': 1,\n",
      "          'leonardi': 1,\n",
      "          'cinema': 1,\n",
      "          'paradiso': 1,\n",
      "          'possibly': 1,\n",
      "          'gorgeous': 1,\n",
      "          'looking': 1,\n",
      "          'man': 1,\n",
      "          'okay': 1,\n",
      "          'annas': 1,\n",
      "          'work': 1,\n",
      "          'colleague': 1,\n",
      "          'increasingly': 1,\n",
      "          'confused': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'syndromes': 1,\n",
      "          'single': 1,\n",
      "          'striking': 1,\n",
      "          'element': 1,\n",
      "          'morricones': 1,\n",
      "          'nactive': 1,\n",
      "          '1960s': 1,\n",
      "          'scored': 1,\n",
      "          '100': 1,\n",
      "          'must': 1,\n",
      "          'rate': 1,\n",
      "          'finest': 1,\n",
      "          'mostly': 1,\n",
      "          'variation': 1,\n",
      "          'theme': 1,\n",
      "          'slow': 1,\n",
      "          'circular': 1,\n",
      "          'melody': 1,\n",
      "          'strings': 1,\n",
      "          'wordless': 1,\n",
      "          'female': 1,\n",
      "          'vocal': 1,\n",
      "          'possessed': 1,\n",
      "          'extraordinary': 1,\n",
      "          'haunting': 1,\n",
      "          'beauty': 1,\n",
      "          'lingers': 1,\n",
      "          'three': 1,\n",
      "          'decades': 1,\n",
      "          'worked': 1,\n",
      "          'together': 1,\n",
      "          'nthis': 1,\n",
      "          'welcome': 1,\n",
      "          'reunion': 1,\n",
      "          'nif': 1,\n",
      "          'fault': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'drags': 1,\n",
      "          'little': 1,\n",
      "          'doesnt': 1,\n",
      "          'reach': 1,\n",
      "          'completely': 1,\n",
      "          'satisfying': 1,\n",
      "          'climax': 1,\n",
      "          'closing': 1,\n",
      "          'scenes': 1,\n",
      "          'already': 1,\n",
      "          'offered': 1,\n",
      "          'us': 1,\n",
      "          'enough': 1,\n",
      "          'qualify': 1,\n",
      "          'best': 1,\n",
      "          'n': 1,\n",
      "          'note': 1,\n",
      "          'see': 1,\n",
      "          'uncut': 1,\n",
      "          'print': 1,\n",
      "          'japanese': 1,\n",
      "          'laserdisc': 1,\n",
      "          'ndubs': 1,\n",
      "          'version': 1,\n",
      "          'available': 1,\n",
      "          'various': 1,\n",
      "          'video': 1,\n",
      "          'dealers': 1,\n",
      "          'world': 1,\n",
      "          'wide': 1,\n",
      "          'web': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'brady': 6,\n",
      "          'butcher': 5,\n",
      "          'boy': 5,\n",
      "          'francie': 5,\n",
      "          'jordans': 4,\n",
      "          'nits': 4,\n",
      "          'reas': 3,\n",
      "          'irish': 3,\n",
      "          'like': 3,\n",
      "          'voice': 3,\n",
      "          'film': 3,\n",
      "          'da': 3,\n",
      "          'town': 3,\n",
      "          'worth': 3,\n",
      "          'owens': 3,\n",
      "          'nugent': 3,\n",
      "          'many': 3,\n",
      "          'us': 3,\n",
      "          'eyes': 2,\n",
      "          'na': 2,\n",
      "          'schoolboy': 2,\n",
      "          'nimagine': 2,\n",
      "          'one': 2,\n",
      "          'nrea': 2,\n",
      "          'performance': 2,\n",
      "          'much': 2,\n",
      "          'every': 2,\n",
      "          'mrs': 2,\n",
      "          'n': 2,\n",
      "          'pigs': 2,\n",
      "          'make': 2,\n",
      "          'close': 1,\n",
      "          'moment': 1,\n",
      "          'imagine': 1,\n",
      "          'sound': 1,\n",
      "          'stephen': 1,\n",
      "          'gaelic': 1,\n",
      "          'brogue': 1,\n",
      "          'silky': 1,\n",
      "          'smooth': 1,\n",
      "          'pint': 1,\n",
      "          'guinness': 1,\n",
      "          'lackadaisical': 1,\n",
      "          'naughty': 1,\n",
      "          'little': 1,\n",
      "          'flirts': 1,\n",
      "          'gambols': 1,\n",
      "          'nan': 1,\n",
      "          'acerbic': 1,\n",
      "          'singsong': 1,\n",
      "          'metered': 1,\n",
      "          'evokes': 1,\n",
      "          'startling': 1,\n",
      "          'imagery': 1,\n",
      "          'language': 1,\n",
      "          'anthony': 1,\n",
      "          'burgess': 1,\n",
      "          'clockwork': 1,\n",
      "          'orange': 1,\n",
      "          'deliciously': 1,\n",
      "          'conjures': 1,\n",
      "          'scenes': 1,\n",
      "          'porcine': 1,\n",
      "          'puerile': 1,\n",
      "          'delicatessen': 1,\n",
      "          'tin': 1,\n",
      "          'drum': 1,\n",
      "          'youll': 1,\n",
      "          'get': 1,\n",
      "          'good': 1,\n",
      "          'sense': 1,\n",
      "          'expect': 1,\n",
      "          'nneil': 1,\n",
      "          'latest': 1,\n",
      "          'stars': 1,\n",
      "          'rea': 1,\n",
      "          'ways': 1,\n",
      "          'accomplished': 1,\n",
      "          'actor': 1,\n",
      "          'notable': 1,\n",
      "          'star': 1,\n",
      "          'turn': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          'contributes': 1,\n",
      "          'restrained': 1,\n",
      "          'managed': 1,\n",
      "          'small': 1,\n",
      "          'drunk': 1,\n",
      "          'unnamed': 1,\n",
      "          'community': 1,\n",
      "          '1960s': 1,\n",
      "          'nbut': 1,\n",
      "          'walltowall': 1,\n",
      "          'narration': 1,\n",
      "          'title': 1,\n",
      "          'bradys': 1,\n",
      "          'son': 1,\n",
      "          'francis': 1,\n",
      "          'makes': 1,\n",
      "          'watching': 1,\n",
      "          'listening': 1,\n",
      "          'nand': 1,\n",
      "          'thats': 1,\n",
      "          'half': 1,\n",
      "          'fun': 1,\n",
      "          'nplaying': 1,\n",
      "          'young': 1,\n",
      "          'newcomer': 1,\n",
      "          'eamonn': 1,\n",
      "          'without': 1,\n",
      "          'doubt': 1,\n",
      "          'revelation': 1,\n",
      "          'nfor': 1,\n",
      "          'voiceover': 1,\n",
      "          'permeates': 1,\n",
      "          'almost': 1,\n",
      "          'scene': 1,\n",
      "          'commands': 1,\n",
      "          'virtually': 1,\n",
      "          'frame': 1,\n",
      "          'impossible': 1,\n",
      "          'take': 1,\n",
      "          'nwith': 1,\n",
      "          'crop': 1,\n",
      "          'carrotcolored': 1,\n",
      "          'hair': 1,\n",
      "          'ruddy': 1,\n",
      "          'complexion': 1,\n",
      "          'overall': 1,\n",
      "          'grubby': 1,\n",
      "          'appearance': 1,\n",
      "          'unlikely': 1,\n",
      "          'hero': 1,\n",
      "          'refusing': 1,\n",
      "          'done': 1,\n",
      "          'alcoholic': 1,\n",
      "          'trumpetplaying': 1,\n",
      "          'father': 1,\n",
      "          'depressive': 1,\n",
      "          'suicidal': 1,\n",
      "          'mother': 1,\n",
      "          'neighboring': 1,\n",
      "          'bespectacled': 1,\n",
      "          'monster': 1,\n",
      "          'known': 1,\n",
      "          'fiona': 1,\n",
      "          'shaw': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'everything': 1,\n",
      "          'ok': 1,\n",
      "          'came': 1,\n",
      "          'nnow': 1,\n",
      "          'poses': 1,\n",
      "          'threat': 1,\n",
      "          'safety': 1,\n",
      "          'security': 1,\n",
      "          'bully': 1,\n",
      "          'best': 1,\n",
      "          'pal': 1,\n",
      "          'joe': 1,\n",
      "          'alan': 1,\n",
      "          'boyle': 1,\n",
      "          'looming': 1,\n",
      "          'commie': 1,\n",
      "          'menace': 1,\n",
      "          'set': 1,\n",
      "          'time': 1,\n",
      "          'fear': 1,\n",
      "          'nuclear': 1,\n",
      "          'obliteration': 1,\n",
      "          'first': 1,\n",
      "          'foremost': 1,\n",
      "          'minds': 1,\n",
      "          'screams': 1,\n",
      "          'menagerie': 1,\n",
      "          'youre': 1,\n",
      "          'start': 1,\n",
      "          'related': 1,\n",
      "          'image': 1,\n",
      "          'nafter': 1,\n",
      "          'shipped': 1,\n",
      "          'garage': 1,\n",
      "          'psychiatric': 1,\n",
      "          'observation': 1,\n",
      "          'downs': 1,\n",
      "          'bottle': 1,\n",
      "          'whiskey': 1,\n",
      "          'finally': 1,\n",
      "          'loses': 1,\n",
      "          'grip': 1,\n",
      "          'fantasy': 1,\n",
      "          'world': 1,\n",
      "          'cowboys': 1,\n",
      "          'indians': 1,\n",
      "          'lone': 1,\n",
      "          'ranger': 1,\n",
      "          'comicbook': 1,\n",
      "          'characters': 1,\n",
      "          'nsquealing': 1,\n",
      "          'stuck': 1,\n",
      "          'pig': 1,\n",
      "          'likes': 1,\n",
      "          'nugents': 1,\n",
      "          'living': 1,\n",
      "          'room': 1,\n",
      "          'floor': 1,\n",
      "          'whisked': 1,\n",
      "          'away': 1,\n",
      "          'catholic': 1,\n",
      "          'remand': 1,\n",
      "          'home': 1,\n",
      "          'boney': 1,\n",
      "          'arsed': 1,\n",
      "          'bogmen': 1,\n",
      "          'ever': 1,\n",
      "          'fertile': 1,\n",
      "          'imaginationand': 1,\n",
      "          'clever': 1,\n",
      "          'chicaneryrunneth': 1,\n",
      "          'ndirector': 1,\n",
      "          'vivid': 1,\n",
      "          'treatment': 1,\n",
      "          'pat': 1,\n",
      "          'mccabes': 1,\n",
      "          'nightmare': 1,\n",
      "          'novel': 1,\n",
      "          'produces': 1,\n",
      "          'sometimes': 1,\n",
      "          'disturbing': 1,\n",
      "          'dark': 1,\n",
      "          'comedy': 1,\n",
      "          'littered': 1,\n",
      "          'surreal': 1,\n",
      "          'touches': 1,\n",
      "          'sin': 1,\n",
      "          'ad': 1,\n",
      "          'oconnor': 1,\n",
      "          'playing': 1,\n",
      "          'virgin': 1,\n",
      "          'mary': 1,\n",
      "          'outlandish': 1,\n",
      "          'trailers': 1,\n",
      "          'instead': 1,\n",
      "          'remarkable': 1,\n",
      "          'focuses': 1,\n",
      "          'effects': 1,\n",
      "          'external': 1,\n",
      "          'influences': 1,\n",
      "          'friendship': 1,\n",
      "          'two': 1,\n",
      "          'boys': 1,\n",
      "          'chums': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'allowing': 1,\n",
      "          'empathize': 1,\n",
      "          'plight': 1,\n",
      "          'presence': 1,\n",
      "          'extraordinary': 1,\n",
      "          'behavior': 1,\n",
      "          'bleak': 1,\n",
      "          'black': 1,\n",
      "          'fundamentally': 1,\n",
      "          'funny': 1,\n",
      "          'talks': 1,\n",
      "          'beautifully': 1,\n",
      "          'drags': 1,\n",
      "          'though': 1,\n",
      "          'admirably': 1,\n",
      "          'tandem': 1,\n",
      "          'sure': 1,\n",
      "          'hand': 1,\n",
      "          'contributions': 1,\n",
      "          'savoring': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'zero': 7,\n",
      "          'funny': 7,\n",
      "          'private': 6,\n",
      "          'one': 6,\n",
      "          'ni': 6,\n",
      "          'kind': 6,\n",
      "          'character': 5,\n",
      "          'nzero': 5,\n",
      "          'hes': 5,\n",
      "          'great': 5,\n",
      "          'effect': 4,\n",
      "          'investigator': 4,\n",
      "          'like': 4,\n",
      "          'makes': 4,\n",
      "          'stark': 4,\n",
      "          'ever': 3,\n",
      "          'job': 3,\n",
      "          'actually': 3,\n",
      "          'many': 3,\n",
      "          'nhis': 3,\n",
      "          'gloria': 3,\n",
      "          'first': 3,\n",
      "          'find': 3,\n",
      "          'kasdan': 3,\n",
      "          'seen': 3,\n",
      "          'also': 3,\n",
      "          'humor': 3,\n",
      "          'gets': 2,\n",
      "          'dont': 2,\n",
      "          'last': 2,\n",
      "          'best': 2,\n",
      "          'every': 2,\n",
      "          'fact': 2,\n",
      "          'certainly': 2,\n",
      "          'talents': 2,\n",
      "          'eye': 2,\n",
      "          'even': 2,\n",
      "          'steve': 2,\n",
      "          'stiller': 2,\n",
      "          'normal': 2,\n",
      "          'guy': 2,\n",
      "          'side': 2,\n",
      "          'zeros': 2,\n",
      "          'greatness': 2,\n",
      "          'scene': 2,\n",
      "          'turns': 2,\n",
      "          'something': 2,\n",
      "          'nothing': 2,\n",
      "          'young': 2,\n",
      "          'kim': 2,\n",
      "          'dickens': 2,\n",
      "          'without': 2,\n",
      "          'feelings': 2,\n",
      "          'particular': 2,\n",
      "          'genre': 2,\n",
      "          'comes': 2,\n",
      "          'away': 2,\n",
      "          'kasdans': 2,\n",
      "          'writerdirector': 2,\n",
      "          'original': 2,\n",
      "          'involving': 2,\n",
      "          'characters': 2,\n",
      "          'really': 2,\n",
      "          'sound': 2,\n",
      "          'n': 2,\n",
      "          'ill': 2,\n",
      "          'point': 2,\n",
      "          'talent': 2,\n",
      "          'see': 2,\n",
      "          'cant': 2,\n",
      "          'theater': 2,\n",
      "          'title': 1,\n",
      "          'main': 1,\n",
      "          'daryl': 1,\n",
      "          'bill': 1,\n",
      "          'pullman': 1,\n",
      "          'although': 1,\n",
      "          'understand': 1,\n",
      "          'truly': 1,\n",
      "          'means': 1,\n",
      "          'line': 1,\n",
      "          'dialogue': 1,\n",
      "          'perhaps': 1,\n",
      "          'lived': 1,\n",
      "          'least': 1,\n",
      "          'hed': 1,\n",
      "          'think': 1,\n",
      "          'nhowever': 1,\n",
      "          'socially': 1,\n",
      "          'inept': 1,\n",
      "          'eccentric': 1,\n",
      "          'possible': 1,\n",
      "          'way': 1,\n",
      "          'bewildering': 1,\n",
      "          'already': 1,\n",
      "          'nzeros': 1,\n",
      "          'accomplice': 1,\n",
      "          'arlo': 1,\n",
      "          'ben': 1,\n",
      "          'business': 1,\n",
      "          'speaks': 1,\n",
      "          'clients': 1,\n",
      "          'explains': 1,\n",
      "          'nthe': 1,\n",
      "          'opening': 1,\n",
      "          'explaining': 1,\n",
      "          'virtues': 1,\n",
      "          'soontobe': 1,\n",
      "          'client': 1,\n",
      "          'gregory': 1,\n",
      "          'ryan': 1,\n",
      "          'oneal': 1,\n",
      "          'nit': 1,\n",
      "          'lost': 1,\n",
      "          'key': 1,\n",
      "          'safe': 1,\n",
      "          'deposit': 1,\n",
      "          'box': 1,\n",
      "          'blackmailed': 1,\n",
      "          'apparently': 1,\n",
      "          'knows': 1,\n",
      "          'takes': 1,\n",
      "          'case': 1,\n",
      "          'plot': 1,\n",
      "          'thickens': 1,\n",
      "          'path': 1,\n",
      "          'leads': 1,\n",
      "          'pretty': 1,\n",
      "          'paramedic': 1,\n",
      "          'named': 1,\n",
      "          'sullivan': 1,\n",
      "          'ndespite': 1,\n",
      "          'luminous': 1,\n",
      "          'seeminglyharmless': 1,\n",
      "          'presence': 1,\n",
      "          'blackmailing': 1,\n",
      "          'nthrough': 1,\n",
      "          'investigations': 1,\n",
      "          'learns': 1,\n",
      "          'developing': 1,\n",
      "          'reclusive': 1,\n",
      "          'behavior': 1,\n",
      "          'new': 1,\n",
      "          'confusing': 1,\n",
      "          'affinity': 1,\n",
      "          'towards': 1,\n",
      "          'mystery': 1,\n",
      "          'idly': 1,\n",
      "          'enjoy': 1,\n",
      "          'movies': 1,\n",
      "          'investigators': 1,\n",
      "          'chinatown': 1,\n",
      "          'long': 1,\n",
      "          'blows': 1,\n",
      "          'reached': 1,\n",
      "          'chinatowns': 1,\n",
      "          'jake': 1,\n",
      "          'effort': 1,\n",
      "          'succeeds': 1,\n",
      "          'attempts': 1,\n",
      "          'completely': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'nwith': 1,\n",
      "          'cliches': 1,\n",
      "          'available': 1,\n",
      "          'amazing': 1,\n",
      "          'avoided': 1,\n",
      "          'nbut': 1,\n",
      "          'didnt': 1,\n",
      "          'successfully': 1,\n",
      "          'avoid': 1,\n",
      "          'flaws': 1,\n",
      "          'created': 1,\n",
      "          'interested': 1,\n",
      "          'fascinated': 1,\n",
      "          'shot': 1,\n",
      "          'final': 1,\n",
      "          'moment': 1,\n",
      "          'ntake': 1,\n",
      "          'starters': 1,\n",
      "          'cast': 1,\n",
      "          'npullman': 1,\n",
      "          'terrific': 1,\n",
      "          'showing': 1,\n",
      "          'comic': 1,\n",
      "          'flair': 1,\n",
      "          'havent': 1,\n",
      "          'since': 1,\n",
      "          'spaceballs': 1,\n",
      "          'seems': 1,\n",
      "          'ease': 1,\n",
      "          'switching': 1,\n",
      "          'personalities': 1,\n",
      "          'frequently': 1,\n",
      "          'almost': 1,\n",
      "          'exaggeratedly': 1,\n",
      "          'twisted': 1,\n",
      "          'emotionally': 1,\n",
      "          'unstable': 1,\n",
      "          'man': 1,\n",
      "          'outside': 1,\n",
      "          'profession': 1,\n",
      "          'difficult': 1,\n",
      "          'believe': 1,\n",
      "          'npullmans': 1,\n",
      "          'performance': 1,\n",
      "          'much': 1,\n",
      "          'layered': 1,\n",
      "          'might': 1,\n",
      "          'seem': 1,\n",
      "          'glance': 1,\n",
      "          'occasional': 1,\n",
      "          'voiceover': 1,\n",
      "          'going': 1,\n",
      "          'motions': 1,\n",
      "          'insightful': 1,\n",
      "          'often': 1,\n",
      "          'hilarious': 1,\n",
      "          'nben': 1,\n",
      "          'individual': 1,\n",
      "          'comedian': 1,\n",
      "          'lines': 1,\n",
      "          'shoot': 1,\n",
      "          'says': 1,\n",
      "          'gun': 1,\n",
      "          'everything': 1,\n",
      "          'welldrawn': 1,\n",
      "          'interesting': 1,\n",
      "          'subplot': 1,\n",
      "          'girlfriend': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'happy': 1,\n",
      "          'extensive': 1,\n",
      "          'amounts': 1,\n",
      "          'time': 1,\n",
      "          'must': 1,\n",
      "          'spend': 1,\n",
      "          'due': 1,\n",
      "          'unpredictability': 1,\n",
      "          'noneal': 1,\n",
      "          'gives': 1,\n",
      "          'bit': 1,\n",
      "          'depth': 1,\n",
      "          'underused': 1,\n",
      "          'mercury': 1,\n",
      "          'rising': 1,\n",
      "          'chance': 1,\n",
      "          'show': 1,\n",
      "          'us': 1,\n",
      "          'giving': 1,\n",
      "          'realism': 1,\n",
      "          'needs': 1,\n",
      "          'immensely': 1,\n",
      "          'witty': 1,\n",
      "          'nkasdans': 1,\n",
      "          'soft': 1,\n",
      "          'spoken': 1,\n",
      "          'mostly': 1,\n",
      "          'dialoguedriven': 1,\n",
      "          'though': 1,\n",
      "          'visual': 1,\n",
      "          'jokes': 1,\n",
      "          'nits': 1,\n",
      "          'thats': 1,\n",
      "          'youve': 1,\n",
      "          'five': 1,\n",
      "          'six': 1,\n",
      "          'times': 1,\n",
      "          'ntheres': 1,\n",
      "          'talks': 1,\n",
      "          'detached': 1,\n",
      "          'detective': 1,\n",
      "          'nwhat': 1,\n",
      "          'narration': 1,\n",
      "          'various': 1,\n",
      "          'shots': 1,\n",
      "          'sitting': 1,\n",
      "          'bed': 1,\n",
      "          'standing': 1,\n",
      "          'motionlessly': 1,\n",
      "          'hair': 1,\n",
      "          'destroyed': 1,\n",
      "          'utterly': 1,\n",
      "          'blank': 1,\n",
      "          'look': 1,\n",
      "          'painted': 1,\n",
      "          'unshaven': 1,\n",
      "          'face': 1,\n",
      "          'eyes': 1,\n",
      "          'pointing': 1,\n",
      "          'camera': 1,\n",
      "          'obviously': 1,\n",
      "          'convey': 1,\n",
      "          'making': 1,\n",
      "          'scenes': 1,\n",
      "          'frequent': 1,\n",
      "          'provide': 1,\n",
      "          'solid': 1,\n",
      "          'characterization': 1,\n",
      "          'nas': 1,\n",
      "          'note': 1,\n",
      "          'consider': 1,\n",
      "          'average': 1,\n",
      "          'viewer': 1,\n",
      "          'comedy': 1,\n",
      "          'elitist': 1,\n",
      "          'things': 1,\n",
      "          'vice': 1,\n",
      "          'versa': 1,\n",
      "          'nthere': 1,\n",
      "          'clump': 1,\n",
      "          'people': 1,\n",
      "          'near': 1,\n",
      "          'laughing': 1,\n",
      "          'uproariously': 1,\n",
      "          'rest': 1,\n",
      "          'relatively': 1,\n",
      "          'silent': 1,\n",
      "          'feeling': 1,\n",
      "          'wont': 1,\n",
      "          'appeal': 1,\n",
      "          'everyone': 1,\n",
      "          'theres': 1,\n",
      "          'enough': 1,\n",
      "          'story': 1,\n",
      "          'development': 1,\n",
      "          'keep': 1,\n",
      "          'anyones': 1,\n",
      "          'interest': 1,\n",
      "          'njake': 1,\n",
      "          'son': 1,\n",
      "          'lawrence': 1,\n",
      "          '22': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'found': 1,\n",
      "          'seeing': 1,\n",
      "          'remember': 1,\n",
      "          'impressed': 1,\n",
      "          'maker': 1,\n",
      "          'direction': 1,\n",
      "          'stylish': 1,\n",
      "          'pretentious': 1,\n",
      "          'writing': 1,\n",
      "          'mature': 1,\n",
      "          'full': 1,\n",
      "          'developed': 1,\n",
      "          'buy': 1,\n",
      "          'collection': 1,\n",
      "          'smart': 1,\n",
      "          'films': 1,\n",
      "          'rare': 1,\n",
      "          'heart': 1,\n",
      "          'soul': 1,\n",
      "          'nat': 1,\n",
      "          'end': 1,\n",
      "          'involved': 1,\n",
      "          'satisfied': 1,\n",
      "          'outcome': 1,\n",
      "          'nand': 1,\n",
      "          'undeniable': 1,\n",
      "          'age': 1,\n",
      "          'hope': 1,\n",
      "          'lot': 1,\n",
      "          'future': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'davis': 6,\n",
      "          'action': 5,\n",
      "          'kiss': 4,\n",
      "          'long': 3,\n",
      "          'first': 3,\n",
      "          'goodnight': 2,\n",
      "          'streep': 2,\n",
      "          'failed': 2,\n",
      "          'lee': 2,\n",
      "          'could': 2,\n",
      "          'well': 2,\n",
      "          'female': 2,\n",
      "          'preposterous': 2,\n",
      "          'fun': 2,\n",
      "          'help': 2,\n",
      "          'say': 2,\n",
      "          'comes': 2,\n",
      "          'script': 2,\n",
      "          'work': 2,\n",
      "          'funny': 2,\n",
      "          'especially': 2,\n",
      "          'things': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'taking': 2,\n",
      "          'seriously': 2,\n",
      "          'nbut': 2,\n",
      "          'njackson': 2,\n",
      "          'good': 2,\n",
      "          'team': 2,\n",
      "          'ever': 2,\n",
      "          'one': 2,\n",
      "          'much': 2,\n",
      "          'doesnt': 2,\n",
      "          'film': 2,\n",
      "          'r': 1,\n",
      "          'meryl': 1,\n",
      "          'tried': 1,\n",
      "          'neven': 1,\n",
      "          'pamela': 1,\n",
      "          'anderson': 1,\n",
      "          'made': 1,\n",
      "          'attempt': 1,\n",
      "          'fell': 1,\n",
      "          'flat': 1,\n",
      "          'wellbared': 1,\n",
      "          'assets': 1,\n",
      "          'nhowever': 1,\n",
      "          'geena': 1,\n",
      "          'become': 1,\n",
      "          'bankable': 1,\n",
      "          'american': 1,\n",
      "          'star': 1,\n",
      "          'incredibly': 1,\n",
      "          'thriller': 1,\n",
      "          'directed': 1,\n",
      "          'husband': 1,\n",
      "          'renny': 1,\n",
      "          'harlin': 1,\n",
      "          'ndavis': 1,\n",
      "          'plays': 1,\n",
      "          'samantha': 1,\n",
      "          'caine': 1,\n",
      "          'mousy': 1,\n",
      "          'suburban': 1,\n",
      "          'school': 1,\n",
      "          'teacher': 1,\n",
      "          'mother': 1,\n",
      "          'whose': 1,\n",
      "          'memories': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'eight': 1,\n",
      "          'years': 1,\n",
      "          'nwith': 1,\n",
      "          'ethically': 1,\n",
      "          'questionable': 1,\n",
      "          'private': 1,\n",
      "          'detective': 1,\n",
      "          'mitch': 1,\n",
      "          'hennessey': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'slowly': 1,\n",
      "          'remembersand': 1,\n",
      "          'reclaimsher': 1,\n",
      "          'past': 1,\n",
      "          'charly': 1,\n",
      "          'baltimore': 1,\n",
      "          'toughasnails': 1,\n",
      "          'cia': 1,\n",
      "          'operative': 1,\n",
      "          'nneedless': 1,\n",
      "          'reappearance': 1,\n",
      "          'samanthacharly': 1,\n",
      "          'appearance': 1,\n",
      "          'assortment': 1,\n",
      "          'nogoodniks': 1,\n",
      "          'erase': 1,\n",
      "          'memory': 1,\n",
      "          'nshane': 1,\n",
      "          'black': 1,\n",
      "          'netted': 1,\n",
      "          'cool': 1,\n",
      "          '4': 1,\n",
      "          'mil': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'prose': 1,\n",
      "          'truly': 1,\n",
      "          'deserving': 1,\n",
      "          'hefty': 1,\n",
      "          'price': 1,\n",
      "          'tag': 1,\n",
      "          'worth': 1,\n",
      "          'delivers': 1,\n",
      "          'goods': 1,\n",
      "          'nlike': 1,\n",
      "          'blacks': 1,\n",
      "          'previous': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'last': 1,\n",
      "          'boy': 1,\n",
      "          'scout': 1,\n",
      "          'juggles': 1,\n",
      "          'impressive': 1,\n",
      "          'scenes': 1,\n",
      "          'quirky': 1,\n",
      "          'dialogue': 1,\n",
      "          'nthe': 1,\n",
      "          'humor': 1,\n",
      "          'works': 1,\n",
      "          'case': 1,\n",
      "          'story': 1,\n",
      "          'laughs': 1,\n",
      "          'keep': 1,\n",
      "          'theres': 1,\n",
      "          'argument': 1,\n",
      "          'unbelievable': 1,\n",
      "          'sequences': 1,\n",
      "          'original': 1,\n",
      "          'entertaining': 1,\n",
      "          'hell': 1,\n",
      "          'resist': 1,\n",
      "          'sight': 1,\n",
      "          'tossing': 1,\n",
      "          'daughter': 1,\n",
      "          'hole': 1,\n",
      "          'house': 1,\n",
      "          'nearby': 1,\n",
      "          'treehouse': 1,\n",
      "          'chasing': 1,\n",
      "          'car': 1,\n",
      "          'nwhile': 1,\n",
      "          'ice': 1,\n",
      "          'skating': 1,\n",
      "          'make': 1,\n",
      "          'fact': 1,\n",
      "          'spirited': 1,\n",
      "          'line': 1,\n",
      "          'deliveries': 1,\n",
      "          'appears': 1,\n",
      "          'reminiscent': 1,\n",
      "          'jules': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'nas': 1,\n",
      "          'benefit': 1,\n",
      "          'project': 1,\n",
      "          'shows': 1,\n",
      "          'promise': 1,\n",
      "          'heroine': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'effective': 1,\n",
      "          'succeed': 1,\n",
      "          'take': 1,\n",
      "          'nshe': 1,\n",
      "          'obviously': 1,\n",
      "          'joke': 1,\n",
      "          'slyly': 1,\n",
      "          'jabs': 1,\n",
      "          'situation': 1,\n",
      "          'nthis': 1,\n",
      "          'need': 1,\n",
      "          'worksometimes': 1,\n",
      "          'lays': 1,\n",
      "          'toughness': 1,\n",
      "          'bit': 1,\n",
      "          'thick': 1,\n",
      "          'caricature': 1,\n",
      "          'public': 1,\n",
      "          'embrace': 1,\n",
      "          'turn': 1,\n",
      "          'notion': 1,\n",
      "          'kickass': 1,\n",
      "          'found': 1,\n",
      "          'special': 1,\n",
      "          'niche': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'harlins': 1,\n",
      "          'collaboration': 1,\n",
      "          'middling': 1,\n",
      "          'pirate': 1,\n",
      "          'epic': 1,\n",
      "          'cutthroat': 1,\n",
      "          'island': 1,\n",
      "          'dress': 1,\n",
      "          'rehearsal': 1,\n",
      "          'albeit': 1,\n",
      "          'costly': 1,\n",
      "          'wifehusband': 1,\n",
      "          'hit': 1,\n",
      "          'stride': 1,\n",
      "          'nanyone': 1,\n",
      "          'simply': 1,\n",
      "          'looking': 1,\n",
      "          'escapist': 1,\n",
      "          'entertainment': 1,\n",
      "          'requires': 1,\n",
      "          'littletono': 1,\n",
      "          'thinking': 1,\n",
      "          'find': 1,\n",
      "          'morethanwelcome': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hollow': 9,\n",
      "          'sleepy': 7,\n",
      "          'movies': 7,\n",
      "          'film': 5,\n",
      "          'kevin': 4,\n",
      "          'walker': 4,\n",
      "          'crane': 4,\n",
      "          'horror': 4,\n",
      "          'movie': 4,\n",
      "          'story': 3,\n",
      "          'tim': 3,\n",
      "          'burton': 3,\n",
      "          'depp': 3,\n",
      "          'ichabod': 3,\n",
      "          'films': 3,\n",
      "          'quite': 3,\n",
      "          'obviously': 3,\n",
      "          'nthe': 3,\n",
      "          'actors': 3,\n",
      "          'one': 3,\n",
      "          'andrew': 2,\n",
      "          'christina': 2,\n",
      "          'ricci': 2,\n",
      "          'christopher': 2,\n",
      "          'lee': 2,\n",
      "          'investigator': 2,\n",
      "          'investigate': 2,\n",
      "          'series': 2,\n",
      "          'murders': 2,\n",
      "          'entertaining': 2,\n",
      "          'years': 2,\n",
      "          'less': 2,\n",
      "          'nhes': 2,\n",
      "          'work': 2,\n",
      "          'ed': 2,\n",
      "          'wood': 2,\n",
      "          'nsleepy': 2,\n",
      "          'fans': 2,\n",
      "          'especially': 2,\n",
      "          'hammer': 2,\n",
      "          'frankenstein': 2,\n",
      "          'also': 2,\n",
      "          'none': 2,\n",
      "          'recent': 2,\n",
      "          'witch': 2,\n",
      "          'like': 2,\n",
      "          'plot': 2,\n",
      "          'plays': 2,\n",
      "          'adequate': 2,\n",
      "          'good': 2,\n",
      "          'two': 2,\n",
      "          'however': 2,\n",
      "          'wrote': 2,\n",
      "          'lot': 2,\n",
      "          'definately': 2,\n",
      "          'young': 2,\n",
      "          'screen': 1,\n",
      "          'yagher': 1,\n",
      "          'nscreenplay': 1,\n",
      "          'ninspired': 1,\n",
      "          'short': 1,\n",
      "          'legend': 1,\n",
      "          'washington': 1,\n",
      "          'irving': 1,\n",
      "          'ndirected': 1,\n",
      "          'nstarring': 1,\n",
      "          'johnny': 1,\n",
      "          'casper': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'nspecial': 1,\n",
      "          'appearances': 1,\n",
      "          'walken': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'journeys': 1,\n",
      "          '1799': 1,\n",
      "          'involving': 1,\n",
      "          'decapitation': 1,\n",
      "          'ntownspeople': 1,\n",
      "          'believe': 1,\n",
      "          'spirit': 1,\n",
      "          'dead': 1,\n",
      "          'german': 1,\n",
      "          'mercenary': 1,\n",
      "          'threatening': 1,\n",
      "          'ncute': 1,\n",
      "          'blonde': 1,\n",
      "          'katrina': 1,\n",
      "          'listless': 1,\n",
      "          'orphan': 1,\n",
      "          'help': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          'ncomments': 1,\n",
      "          'directed': 1,\n",
      "          'number': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'nbatman': 1,\n",
      "          'course': 1,\n",
      "          'perhaps': 1,\n",
      "          'bestknown': 1,\n",
      "          'led': 1,\n",
      "          'string': 1,\n",
      "          'successful': 1,\n",
      "          'sequels': 1,\n",
      "          'done': 1,\n",
      "          'biographical': 1,\n",
      "          'director': 1,\n",
      "          'childrens': 1,\n",
      "          'nightmare': 1,\n",
      "          'christmas': 1,\n",
      "          'homage': 1,\n",
      "          'alien': 1,\n",
      "          'invasion': 1,\n",
      "          'mars': 1,\n",
      "          'attacks': 1,\n",
      "          'newest': 1,\n",
      "          'feature': 1,\n",
      "          'anticipating': 1,\n",
      "          'shares': 1,\n",
      "          'similar': 1,\n",
      "          'dark': 1,\n",
      "          'atmospheric': 1,\n",
      "          'style': 1,\n",
      "          'earlier': 1,\n",
      "          'counts': 1,\n",
      "          'among': 1,\n",
      "          'better': 1,\n",
      "          'draws': 1,\n",
      "          'inspiration': 1,\n",
      "          'old': 1,\n",
      "          'period': 1,\n",
      "          '1950s': 1,\n",
      "          '1960s': 1,\n",
      "          'studios': 1,\n",
      "          'reworkings': 1,\n",
      "          'dracula': 1,\n",
      "          'american': 1,\n",
      "          'internationals': 1,\n",
      "          'based': 1,\n",
      "          'works': 1,\n",
      "          'edgar': 1,\n",
      "          'allan': 1,\n",
      "          'poe': 1,\n",
      "          'nchristopher': 1,\n",
      "          'fact': 1,\n",
      "          'star': 1,\n",
      "          'many': 1,\n",
      "          'productions': 1,\n",
      "          'appears': 1,\n",
      "          'beginning': 1,\n",
      "          'judge': 1,\n",
      "          'sends': 1,\n",
      "          'borrows': 1,\n",
      "          'universal': 1,\n",
      "          'monster': 1,\n",
      "          '1930s': 1,\n",
      "          'climatic': 1,\n",
      "          'scenes': 1,\n",
      "          'involves': 1,\n",
      "          'windmill': 1,\n",
      "          'takes': 1,\n",
      "          'cue': 1,\n",
      "          'ni': 1,\n",
      "          'mention': 1,\n",
      "          'allusions': 1,\n",
      "          'reason': 1,\n",
      "          'nseasoned': 1,\n",
      "          'including': 1,\n",
      "          'smile': 1,\n",
      "          'inclusion': 1,\n",
      "          'nwith': 1,\n",
      "          'disappointments': 1,\n",
      "          'theatrically': 1,\n",
      "          'released': 1,\n",
      "          'blair': 1,\n",
      "          'project': 1,\n",
      "          'overblown': 1,\n",
      "          'turkey': 1,\n",
      "          'decade': 1,\n",
      "          'needed': 1,\n",
      "          'nnot': 1,\n",
      "          'sense': 1,\n",
      "          'history': 1,\n",
      "          'burtons': 1,\n",
      "          'skillful': 1,\n",
      "          'use': 1,\n",
      "          'setting': 1,\n",
      "          'mood': 1,\n",
      "          'make': 1,\n",
      "          'exercise': 1,\n",
      "          'eerie': 1,\n",
      "          'landscapes': 1,\n",
      "          'foggy': 1,\n",
      "          'towns': 1,\n",
      "          'indeed': 1,\n",
      "          'overshadow': 1,\n",
      "          'noteworthy': 1,\n",
      "          'aspect': 1,\n",
      "          'njohnny': 1,\n",
      "          'veteran': 1,\n",
      "          'actor': 1,\n",
      "          'appeared': 1,\n",
      "          'edward': 1,\n",
      "          'scissorhands': 1,\n",
      "          'apparently': 1,\n",
      "          'changed': 1,\n",
      "          'occupations': 1,\n",
      "          'irvings': 1,\n",
      "          'original': 1,\n",
      "          'ndepp': 1,\n",
      "          'role': 1,\n",
      "          'nno': 1,\n",
      "          'nequally': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'nshes': 1,\n",
      "          'nhow': 1,\n",
      "          'cute': 1,\n",
      "          'weak': 1,\n",
      "          'parts': 1,\n",
      "          'wooden': 1,\n",
      "          'cliched': 1,\n",
      "          'dialogue': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'carry': 1,\n",
      "          'well': 1,\n",
      "          'enough': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'makes': 1,\n",
      "          'shine': 1,\n",
      "          'nveteran': 1,\n",
      "          'jeffrey': 1,\n",
      "          'jones': 1,\n",
      "          'michael': 1,\n",
      "          'gough': 1,\n",
      "          'played': 1,\n",
      "          'butler': 1,\n",
      "          'alfred': 1,\n",
      "          'four': 1,\n",
      "          'batman': 1,\n",
      "          'flicks': 1,\n",
      "          'terrific': 1,\n",
      "          'aging': 1,\n",
      "          'townsfolk': 1,\n",
      "          'involved': 1,\n",
      "          'conspiracy': 1,\n",
      "          'uncovers': 1,\n",
      "          'nwhile': 1,\n",
      "          'wish': 1,\n",
      "          'reveal': 1,\n",
      "          'crucial': 1,\n",
      "          'points': 1,\n",
      "          'say': 1,\n",
      "          'storyline': 1,\n",
      "          'becomes': 1,\n",
      "          'confusing': 1,\n",
      "          'nyou': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'nandrew': 1,\n",
      "          'screenplay': 1,\n",
      "          '8': 1,\n",
      "          'mm': 1,\n",
      "          'seven': 1,\n",
      "          'nwalker': 1,\n",
      "          'quickly': 1,\n",
      "          'becoming': 1,\n",
      "          'premiere': 1,\n",
      "          'suspense': 1,\n",
      "          'writers': 1,\n",
      "          'hollywood': 1,\n",
      "          'certainly': 1,\n",
      "          'doesnt': 1,\n",
      "          'hurt': 1,\n",
      "          'growing': 1,\n",
      "          'reputation': 1,\n",
      "          'nas': 1,\n",
      "          'might': 1,\n",
      "          'imagine': 1,\n",
      "          'gentleman': 1,\n",
      "          'graphic': 1,\n",
      "          'ntheres': 1,\n",
      "          'blood': 1,\n",
      "          'beheadings': 1,\n",
      "          'nthis': 1,\n",
      "          'flick': 1,\n",
      "          'take': 1,\n",
      "          'kids': 1,\n",
      "          'na': 1,\n",
      "          'lady': 1,\n",
      "          'front': 1,\n",
      "          'us': 1,\n",
      "          'took': 1,\n",
      "          'sons': 1,\n",
      "          'see': 1,\n",
      "          'spent': 1,\n",
      "          '25': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'covering': 1,\n",
      "          'youngests': 1,\n",
      "          'eyes': 1,\n",
      "          'hand': 1,\n",
      "          'nhe': 1,\n",
      "          'upset': 1,\n",
      "          'intense': 1,\n",
      "          'violence': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'scare': 1,\n",
      "          'recommended': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jackie': 22,\n",
      "          'master': 18,\n",
      "          'drunken': 15,\n",
      "          'films': 12,\n",
      "          'chan': 10,\n",
      "          'arts': 10,\n",
      "          'kung': 10,\n",
      "          'fu': 10,\n",
      "          'martial': 9,\n",
      "          'early': 9,\n",
      "          'movies': 7,\n",
      "          'n': 7,\n",
      "          'like': 7,\n",
      "          'feihong': 7,\n",
      "          'seen': 6,\n",
      "          'though': 5,\n",
      "          'movie': 5,\n",
      "          'often': 5,\n",
      "          'film': 5,\n",
      "          'really': 5,\n",
      "          'big': 4,\n",
      "          'similar': 4,\n",
      "          'wong': 4,\n",
      "          'good': 4,\n",
      "          'fights': 4,\n",
      "          'one': 3,\n",
      "          'action': 3,\n",
      "          'time': 3,\n",
      "          'starring': 3,\n",
      "          'hong': 3,\n",
      "          'kong': 3,\n",
      "          'wonderful': 3,\n",
      "          'nin': 3,\n",
      "          'fearless': 3,\n",
      "          'hyena': 3,\n",
      "          'ii': 3,\n",
      "          'think': 3,\n",
      "          'something': 3,\n",
      "          'fight': 3,\n",
      "          'student': 3,\n",
      "          'american': 3,\n",
      "          'hit': 3,\n",
      "          'punishment': 3,\n",
      "          'nits': 3,\n",
      "          'theyre': 3,\n",
      "          'thing': 3,\n",
      "          'rather': 3,\n",
      "          'three': 2,\n",
      "          'america': 2,\n",
      "          'least': 2,\n",
      "          'way': 2,\n",
      "          'stardom': 2,\n",
      "          'years': 2,\n",
      "          'jackies': 2,\n",
      "          'sense': 2,\n",
      "          'comedy': 2,\n",
      "          'first': 2,\n",
      "          'set': 2,\n",
      "          'nim': 2,\n",
      "          'many': 2,\n",
      "          'ways': 2,\n",
      "          'cracked': 2,\n",
      "          'fingers': 2,\n",
      "          'half': 2,\n",
      "          'loaf': 2,\n",
      "          'spiritual': 2,\n",
      "          'others': 2,\n",
      "          'fact': 2,\n",
      "          'together': 2,\n",
      "          'style': 2,\n",
      "          'six': 2,\n",
      "          'year': 2,\n",
      "          'different': 2,\n",
      "          'know': 2,\n",
      "          'chinese': 2,\n",
      "          'sometime': 2,\n",
      "          'slow': 2,\n",
      "          'far': 2,\n",
      "          'sometimes': 2,\n",
      "          'seem': 2,\n",
      "          'scenes': 2,\n",
      "          'plot': 2,\n",
      "          'ever': 2,\n",
      "          'saw': 2,\n",
      "          'meant': 2,\n",
      "          'part': 2,\n",
      "          'asian': 2,\n",
      "          'anything': 2,\n",
      "          'special': 2,\n",
      "          'nafter': 2,\n",
      "          'kind': 2,\n",
      "          'bad': 2,\n",
      "          'end': 2,\n",
      "          'beating': 2,\n",
      "          'bully': 2,\n",
      "          'father': 2,\n",
      "          'thrash': 2,\n",
      "          'take': 2,\n",
      "          'drunkenstyle': 2,\n",
      "          'series': 2,\n",
      "          'jugs': 2,\n",
      "          'actually': 2,\n",
      "          'winning': 2,\n",
      "          'makes': 2,\n",
      "          'new': 2,\n",
      "          'nthe': 2,\n",
      "          'particularly': 2,\n",
      "          'see': 2,\n",
      "          'funny': 2,\n",
      "          'thats': 2,\n",
      "          'going': 2,\n",
      "          'several': 2,\n",
      "          'still': 2,\n",
      "          'plenty': 2,\n",
      "          'sequel': 2,\n",
      "          'later': 2,\n",
      "          'youre': 2,\n",
      "          'fun': 2,\n",
      "          'making': 2,\n",
      "          'even': 2,\n",
      "          'give': 2,\n",
      "          'video': 2,\n",
      "          'form': 2,\n",
      "          'available': 2,\n",
      "          'dubbed': 2,\n",
      "          'else': 2,\n",
      "          'nif': 2,\n",
      "          'enjoy': 2,\n",
      "          'nalso': 2,\n",
      "          'hope': 2,\n",
      "          'mpaa': 1,\n",
      "          'rated': 1,\n",
      "          'feel': 1,\n",
      "          'would': 1,\n",
      "          'likely': 1,\n",
      "          'pg': 1,\n",
      "          'martialarts': 1,\n",
      "          'violence': 1,\n",
      "          'nwith': 1,\n",
      "          'already': 1,\n",
      "          'released': 1,\n",
      "          'theatrically': 1,\n",
      "          'newest': 1,\n",
      "          'hot': 1,\n",
      "          'properties': 1,\n",
      "          'adventure': 1,\n",
      "          'nfor': 1,\n",
      "          'twentyfive': 1,\n",
      "          'thrilling': 1,\n",
      "          'audiences': 1,\n",
      "          'incredible': 1,\n",
      "          'grasp': 1,\n",
      "          'acrobatics': 1,\n",
      "          'distinction': 1,\n",
      "          'make': 1,\n",
      "          'supposedly': 1,\n",
      "          'entirely': 1,\n",
      "          'sure': 1,\n",
      "          'exactly': 1,\n",
      "          'looking': 1,\n",
      "          'gets': 1,\n",
      "          'impression': 1,\n",
      "          'stamped': 1,\n",
      "          'cookiecutter': 1,\n",
      "          'rate': 1,\n",
      "          'four': 1,\n",
      "          'per': 1,\n",
      "          'using': 1,\n",
      "          'casts': 1,\n",
      "          'telling': 1,\n",
      "          'stories': 1,\n",
      "          'nto': 1,\n",
      "          'honest': 1,\n",
      "          'acquired': 1,\n",
      "          'taste': 1,\n",
      "          'ntheyre': 1,\n",
      "          'quite': 1,\n",
      "          'nthese': 1,\n",
      "          'tend': 1,\n",
      "          'countryside': 1,\n",
      "          'indeterminate': 1,\n",
      "          'period': 1,\n",
      "          'distant': 1,\n",
      "          'past': 1,\n",
      "          'fairly': 1,\n",
      "          'plots': 1,\n",
      "          'meander': 1,\n",
      "          'afield': 1,\n",
      "          'exist': 1,\n",
      "          'intention': 1,\n",
      "          'stringing': 1,\n",
      "          'tighter': 1,\n",
      "          'exception': 1,\n",
      "          'aside': 1,\n",
      "          'na': 1,\n",
      "          'theater': 1,\n",
      "          'seattle': 1,\n",
      "          'festival': 1,\n",
      "          'nat': 1,\n",
      "          'didnt': 1,\n",
      "          'grown': 1,\n",
      "          'storyline': 1,\n",
      "          'slacker': 1,\n",
      "          'taught': 1,\n",
      "          'harshseeming': 1,\n",
      "          'evil': 1,\n",
      "          'guy': 1,\n",
      "          'formula': 1,\n",
      "          'adapted': 1,\n",
      "          'put': 1,\n",
      "          'kindly': 1,\n",
      "          'karate': 1,\n",
      "          'kid': 1,\n",
      "          'nmore': 1,\n",
      "          'specifically': 1,\n",
      "          'plays': 1,\n",
      "          'aka': 1,\n",
      "          'naughty': 1,\n",
      "          'panther': 1,\n",
      "          'funloving': 1,\n",
      "          'practicaljoking': 1,\n",
      "          '_quite_': 1,\n",
      "          'enough': 1,\n",
      "          'embarrassing': 1,\n",
      "          'instructors': 1,\n",
      "          'assistant': 1,\n",
      "          'roundly': 1,\n",
      "          'marketplace': 1,\n",
      "          'tries': 1,\n",
      "          'pretty': 1,\n",
      "          'girl': 1,\n",
      "          'discovers': 1,\n",
      "          'mother': 1,\n",
      "          'back': 1,\n",
      "          'better': 1,\n",
      "          'nis': 1,\n",
      "          'chagrinned': 1,\n",
      "          'discover': 1,\n",
      "          'two': 1,\n",
      "          'women': 1,\n",
      "          'cousin': 1,\n",
      "          'aunt': 1,\n",
      "          'respectively': 1,\n",
      "          'nhis': 1,\n",
      "          'keiying': 1,\n",
      "          'unhappy': 1,\n",
      "          'annoyed': 1,\n",
      "          'brother': 1,\n",
      "          'show': 1,\n",
      "          'sue': 1,\n",
      "          'damages': 1,\n",
      "          'nkeiying': 1,\n",
      "          'soon': 1,\n",
      "          'institutes': 1,\n",
      "          'harsh': 1,\n",
      "          'regimen': 1,\n",
      "          'nwhile': 1,\n",
      "          'escaping': 1,\n",
      "          'meets': 1,\n",
      "          'old': 1,\n",
      "          'man': 1,\n",
      "          'proceeds': 1,\n",
      "          'soundly': 1,\n",
      "          'nthis': 1,\n",
      "          'turns': 1,\n",
      "          'su': 1,\n",
      "          'huachi': 1,\n",
      "          'legendary': 1,\n",
      "          'nhe': 1,\n",
      "          'assigns': 1,\n",
      "          'bizarre': 1,\n",
      "          'tasks': 1,\n",
      "          'filling': 1,\n",
      "          'water': 1,\n",
      "          'hanging': 1,\n",
      "          'upside': 1,\n",
      "          'frame': 1,\n",
      "          'cracking': 1,\n",
      "          'walnuts': 1,\n",
      "          'hands': 1,\n",
      "          'exercises': 1,\n",
      "          'pointless': 1,\n",
      "          'cruelty': 1,\n",
      "          'strengthening': 1,\n",
      "          'nthen': 1,\n",
      "          'hes': 1,\n",
      "          'ready': 1,\n",
      "          'teaches': 1,\n",
      "          'seven': 1,\n",
      "          'styles': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'lazy': 1,\n",
      "          'practices': 1,\n",
      "          'features': 1,\n",
      "          'sequences': 1,\n",
      "          'losing': 1,\n",
      "          'said': 1,\n",
      "          'ill': 1,\n",
      "          'say': 1,\n",
      "          'againthese': 1,\n",
      "          'dont': 1,\n",
      "          '_happen_': 1,\n",
      "          'carefully': 1,\n",
      "          'choreographed': 1,\n",
      "          'ballet': 1,\n",
      "          'performance': 1,\n",
      "          'shows': 1,\n",
      "          'use': 1,\n",
      "          'objects': 1,\n",
      "          'found': 1,\n",
      "          'environment': 1,\n",
      "          'benches': 1,\n",
      "          'cups': 1,\n",
      "          'bowls': 1,\n",
      "          'fruits': 1,\n",
      "          'vegetablesoften': 1,\n",
      "          'surprising': 1,\n",
      "          'toward': 1,\n",
      "          'unparallelled': 1,\n",
      "          'nwhether': 1,\n",
      "          'wins': 1,\n",
      "          'loses': 1,\n",
      "          'nand': 1,\n",
      "          'ntheres': 1,\n",
      "          'little': 1,\n",
      "          'moviejackie': 1,\n",
      "          'getting': 1,\n",
      "          'beaten': 1,\n",
      "          'badly': 1,\n",
      "          'training': 1,\n",
      "          'nschticks': 1,\n",
      "          'dozen': 1,\n",
      "          'seventies': 1,\n",
      "          'eighties': 1,\n",
      "          'nbut': 1,\n",
      "          'hilarious': 1,\n",
      "          'nlikewise': 1,\n",
      "          '_great_': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'also': 1,\n",
      "          'source': 1,\n",
      "          'hilarity': 1,\n",
      "          'inspired': 1,\n",
      "          'copycats': 1,\n",
      "          'including': 1,\n",
      "          'couple': 1,\n",
      "          'fifteen': 1,\n",
      "          'certain': 1,\n",
      "          'whether': 1,\n",
      "          'genuine': 1,\n",
      "          'principle': 1,\n",
      "          'behind': 1,\n",
      "          'imitate': 1,\n",
      "          'wobbly': 1,\n",
      "          'movements': 1,\n",
      "          'drunkard': 1,\n",
      "          'lull': 1,\n",
      "          'enemy': 1,\n",
      "          'false': 1,\n",
      "          'security': 1,\n",
      "          'nit': 1,\n",
      "          'apparently': 1,\n",
      "          'helps': 1,\n",
      "          'drunk': 1,\n",
      "          'ngenuine': 1,\n",
      "          'admit': 1,\n",
      "          'theres': 1,\n",
      "          'incredibly': 1,\n",
      "          'watching': 1,\n",
      "          'fellow': 1,\n",
      "          'looks': 1,\n",
      "          'utterly': 1,\n",
      "          'sloshed': 1,\n",
      "          'wading': 1,\n",
      "          'group': 1,\n",
      "          'startled': 1,\n",
      "          'opponents': 1,\n",
      "          'mincemeat': 1,\n",
      "          'realize': 1,\n",
      "          'whats': 1,\n",
      "          'ncome': 1,\n",
      "          'perhaps': 1,\n",
      "          'element': 1,\n",
      "          'accounts': 1,\n",
      "          'success': 1,\n",
      "          'nnot': 1,\n",
      "          'stop': 1,\n",
      "          'go': 1,\n",
      "          'whoa': 1,\n",
      "          'non': 1,\n",
      "          'negative': 1,\n",
      "          'side': 1,\n",
      "          'cinematography': 1,\n",
      "          'nothing': 1,\n",
      "          'stock': 1,\n",
      "          'primitive': 1,\n",
      "          'subtitles': 1,\n",
      "          'extremely': 1,\n",
      "          'hard': 1,\n",
      "          'read': 1,\n",
      "          'background': 1,\n",
      "          'gone': 1,\n",
      "          'wind': 1,\n",
      "          'isnt': 1,\n",
      "          'nstill': 1,\n",
      "          'youve': 1,\n",
      "          'want': 1,\n",
      "          'shot': 1,\n",
      "          'much': 1,\n",
      "          'real': 1,\n",
      "          'chuck': 1,\n",
      "          'norris': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'nyou': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'nanother': 1,\n",
      "          'interesting': 1,\n",
      "          'availability': 1,\n",
      "          'us': 1,\n",
      "          'find': 1,\n",
      "          'original': 1,\n",
      "          'letterboxed': 1,\n",
      "          'subtitled': 1,\n",
      "          'commercially': 1,\n",
      "          'vhs': 1,\n",
      "          'magnum': 1,\n",
      "          'gold': 1,\n",
      "          'box': 1,\n",
      "          '10': 1,\n",
      "          'nthere': 1,\n",
      "          'around': 1,\n",
      "          'typically': 1,\n",
      "          'either': 1,\n",
      "          'panandscanned': 1,\n",
      "          'import': 1,\n",
      "          'tapes': 1,\n",
      "          'priced': 1,\n",
      "          'rental': 1,\n",
      "          'instead': 1,\n",
      "          'purchase': 1,\n",
      "          'nthankfully': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          'affordable': 1,\n",
      "          'price': 1,\n",
      "          'look': 1,\n",
      "          'numerous': 1,\n",
      "          'ones': 1,\n",
      "          'arent': 1,\n",
      "          '_too_': 1,\n",
      "          'nnothing': 1,\n",
      "          'choreography': 1,\n",
      "          'dialogue': 1,\n",
      "          'ni': 1,\n",
      "          'recommend': 1,\n",
      "          'snake': 1,\n",
      "          'crane': 1,\n",
      "          'shaolin': 1,\n",
      "          'mostlyunrelatedstorywise': 1,\n",
      "          'theaters': 1,\n",
      "          'release': 1,\n",
      "          'americanrelease': 1,\n",
      "          'title': 1,\n",
      "          'uncertain': 1,\n",
      "          'comes': 1,\n",
      "          '_highly_': 1,\n",
      "          'recommended': 1,\n",
      "          'reviewer': 1,\n",
      "          'interpretation': 1,\n",
      "          'character': 1,\n",
      "          'popular': 1,\n",
      "          'figure': 1,\n",
      "          'folklore': 1,\n",
      "          'ive': 1,\n",
      "          'told': 1,\n",
      "          'suggest': 1,\n",
      "          'upon': 1,\n",
      "          'china': 1,\n",
      "          'jet': 1,\n",
      "          'li': 1,\n",
      "          'havent': 1,\n",
      "          'personally': 1,\n",
      "          'yet': 1,\n",
      "          'choose': 1,\n",
      "          'watch': 1,\n",
      "          'starts': 1,\n",
      "          'open': 1,\n",
      "          'eyes': 1,\n",
      "          'world': 1,\n",
      "          'cinema': 1,\n",
      "          'nall': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'great': 3,\n",
      "          'na': 3,\n",
      "          'action': 3,\n",
      "          'film': 3,\n",
      "          'well': 2,\n",
      "          'know': 2,\n",
      "          'ndaylight': 2,\n",
      "          'movie': 2,\n",
      "          'tunnel': 2,\n",
      "          'new': 2,\n",
      "          'collapses': 2,\n",
      "          'seat': 2,\n",
      "          'work': 2,\n",
      "          'nthere': 2,\n",
      "          'stallone': 1,\n",
      "          '50': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'daylight': 1,\n",
      "          'doesnt': 1,\n",
      "          'look': 1,\n",
      "          'disaster': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'seen': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'youll': 1,\n",
      "          'stallones': 1,\n",
      "          'character': 1,\n",
      "          'already': 1,\n",
      "          'guy': 1,\n",
      "          'bad': 1,\n",
      "          'past': 1,\n",
      "          'right': 1,\n",
      "          'place': 1,\n",
      "          'wrong': 1,\n",
      "          'time': 1,\n",
      "          'connecting': 1,\n",
      "          'york': 1,\n",
      "          'jersey': 1,\n",
      "          'sides': 1,\n",
      "          'group': 1,\n",
      "          'robbers': 1,\n",
      "          'collide': 1,\n",
      "          'truck': 1,\n",
      "          'carrying': 1,\n",
      "          'flammable': 1,\n",
      "          'toxic': 1,\n",
      "          'waste': 1,\n",
      "          'dozen': 1,\n",
      "          'people': 1,\n",
      "          'survive': 1,\n",
      "          'incinerating': 1,\n",
      "          'fireball': 1,\n",
      "          'fire': 1,\n",
      "          'ball': 1,\n",
      "          'nstallone': 1,\n",
      "          'former': 1,\n",
      "          'emergency': 1,\n",
      "          'medical': 1,\n",
      "          'service': 1,\n",
      "          'man': 1,\n",
      "          'chauffeuring': 1,\n",
      "          'rich': 1,\n",
      "          'couple': 1,\n",
      "          'around': 1,\n",
      "          'reach': 1,\n",
      "          'outside': 1,\n",
      "          'explosion': 1,\n",
      "          'nthen': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'boom': 1,\n",
      "          'nfrom': 1,\n",
      "          'plot': 1,\n",
      "          'takes': 1,\n",
      "          'back': 1,\n",
      "          'treated': 1,\n",
      "          'best': 1,\n",
      "          'camera': 1,\n",
      "          'staged': 1,\n",
      "          'nmost': 1,\n",
      "          'plausible': 1,\n",
      "          'hold': 1,\n",
      "          'edge': 1,\n",
      "          'melodramatic': 1,\n",
      "          'parts': 1,\n",
      "          'tend': 1,\n",
      "          'general': 1,\n",
      "          'antagonist': 1,\n",
      "          'suspense': 1,\n",
      "          'makes': 1,\n",
      "          'forget': 1,\n",
      "          'saw': 1,\n",
      "          'nonmatinee': 1,\n",
      "          'showing': 1,\n",
      "          'thought': 1,\n",
      "          'worth': 1,\n",
      "          'every': 1,\n",
      "          'penny': 1,\n",
      "          'nthe': 1,\n",
      "          'characterizations': 1,\n",
      "          'mostly': 1,\n",
      "          'flat': 1,\n",
      "          'one': 1,\n",
      "          'dimesional': 1,\n",
      "          'enough': 1,\n",
      "          'get': 1,\n",
      "          'care': 1,\n",
      "          'characters': 1,\n",
      "          'nrob': 1,\n",
      "          'cohen': 1,\n",
      "          'dragonheart': 1,\n",
      "          'job': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'john': 13,\n",
      "          'film': 10,\n",
      "          'frequency': 10,\n",
      "          'nthe': 9,\n",
      "          'frank': 9,\n",
      "          'one': 6,\n",
      "          'time': 5,\n",
      "          'gets': 5,\n",
      "          'logical': 4,\n",
      "          'idea': 4,\n",
      "          'dont': 4,\n",
      "          'future': 4,\n",
      "          'plot': 4,\n",
      "          'life': 4,\n",
      "          'franks': 4,\n",
      "          'world': 4,\n",
      "          'like': 4,\n",
      "          'ni': 4,\n",
      "          'best': 3,\n",
      "          'realities': 3,\n",
      "          'new': 3,\n",
      "          '1969': 3,\n",
      "          'julia': 3,\n",
      "          'son': 3,\n",
      "          'father': 3,\n",
      "          'concept': 3,\n",
      "          'good': 3,\n",
      "          'care': 3,\n",
      "          'liked': 3,\n",
      "          'baseball': 3,\n",
      "          'series': 3,\n",
      "          'may': 3,\n",
      "          'scene': 3,\n",
      "          'relationship': 3,\n",
      "          'travel': 2,\n",
      "          'script': 2,\n",
      "          'get': 2,\n",
      "          'nbut': 2,\n",
      "          'films': 2,\n",
      "          'nthere': 2,\n",
      "          'question': 2,\n",
      "          'action': 2,\n",
      "          'story': 2,\n",
      "          'really': 2,\n",
      "          'job': 2,\n",
      "          'goes': 2,\n",
      "          'wife': 2,\n",
      "          'mitchell': 2,\n",
      "          'johnny': 2,\n",
      "          'forward': 2,\n",
      "          '1999': 2,\n",
      "          'caviezel': 2,\n",
      "          'communicate': 2,\n",
      "          'initially': 2,\n",
      "          'fire': 2,\n",
      "          'nnow': 2,\n",
      "          'changes': 2,\n",
      "          'timeline': 2,\n",
      "          'serial': 2,\n",
      "          'would': 2,\n",
      "          'work': 2,\n",
      "          'right': 2,\n",
      "          'information': 2,\n",
      "          'past': 2,\n",
      "          'result': 2,\n",
      "          'nwhen': 2,\n",
      "          'remembers': 2,\n",
      "          'way': 2,\n",
      "          'also': 2,\n",
      "          'two': 2,\n",
      "          'something': 2,\n",
      "          'johns': 2,\n",
      "          'explanations': 2,\n",
      "          'come': 2,\n",
      "          'enough': 2,\n",
      "          'advance': 2,\n",
      "          'change': 2,\n",
      "          'already': 2,\n",
      "          'little': 2,\n",
      "          'thriller': 2,\n",
      "          'even': 2,\n",
      "          'confusing': 2,\n",
      "          'sense': 2,\n",
      "          'characters': 2,\n",
      "          'us': 2,\n",
      "          'see': 2,\n",
      "          'uses': 2,\n",
      "          'outcome': 2,\n",
      "          'believe': 2,\n",
      "          'n': 2,\n",
      "          'simultaneously': 2,\n",
      "          'find': 2,\n",
      "          'give': 2,\n",
      "          'movie': 2,\n",
      "          'thing': 2,\n",
      "          'fatherson': 2,\n",
      "          'easily': 2,\n",
      "          'actors': 2,\n",
      "          'human': 2,\n",
      "          'supporting': 2,\n",
      "          'turn': 2,\n",
      "          'movies': 1,\n",
      "          'nearimpossibility': 1,\n",
      "          'nconsidering': 1,\n",
      "          'skeptics': 1,\n",
      "          'argument': 1,\n",
      "          'possibility': 1,\n",
      "          'altered': 1,\n",
      "          'writing': 1,\n",
      "          'deals': 1,\n",
      "          'problem': 1,\n",
      "          'imposing': 1,\n",
      "          'task': 1,\n",
      "          'noccasionally': 1,\n",
      "          'manage': 1,\n",
      "          'nterry': 1,\n",
      "          'gilliams': 1,\n",
      "          '12': 1,\n",
      "          'monkeys': 1,\n",
      "          'frequently': 1,\n",
      "          'much': 1,\n",
      "          'deal': 1,\n",
      "          'ask': 1,\n",
      "          'case': 1,\n",
      "          'virtues': 1,\n",
      "          'override': 1,\n",
      "          'existing': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'terminator': 1,\n",
      "          'made': 1,\n",
      "          'exciting': 1,\n",
      "          'back': 1,\n",
      "          'entertaining': 1,\n",
      "          'pulls': 1,\n",
      "          'trick': 1,\n",
      "          'strong': 1,\n",
      "          'package': 1,\n",
      "          'nis': 1,\n",
      "          'filled': 1,\n",
      "          'holes': 1,\n",
      "          'nyes': 1,\n",
      "          'ndoes': 1,\n",
      "          'matter': 1,\n",
      "          'nnot': 1,\n",
      "          'opens': 1,\n",
      "          'october': 1,\n",
      "          'nfirefighter': 1,\n",
      "          'sullivan': 1,\n",
      "          'dennis': 1,\n",
      "          'quaid': 1,\n",
      "          'puts': 1,\n",
      "          'line': 1,\n",
      "          'every': 1,\n",
      "          'suits': 1,\n",
      "          'home': 1,\n",
      "          'loving': 1,\n",
      "          'elizabeth': 1,\n",
      "          'daniel': 1,\n",
      "          'henson': 1,\n",
      "          'doublepronged': 1,\n",
      "          'flashes': 1,\n",
      "          'jim': 1,\n",
      "          'grown': 1,\n",
      "          'working': 1,\n",
      "          'police': 1,\n",
      "          'detective': 1,\n",
      "          'na': 1,\n",
      "          'strange': 1,\n",
      "          'occurrence': 1,\n",
      "          'appearance': 1,\n",
      "          'aurora': 1,\n",
      "          'borealis': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'allows': 1,\n",
      "          'ham': 1,\n",
      "          'radio': 1,\n",
      "          'used': 1,\n",
      "          '69': 1,\n",
      "          'found': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'nthough': 1,\n",
      "          'skeptical': 1,\n",
      "          'eventually': 1,\n",
      "          'takes': 1,\n",
      "          'opportunity': 1,\n",
      "          'warn': 1,\n",
      "          'impending': 1,\n",
      "          'death': 1,\n",
      "          'warehouse': 1,\n",
      "          'succeeds': 1,\n",
      "          'saving': 1,\n",
      "          'certain': 1,\n",
      "          'doom': 1,\n",
      "          'flooded': 1,\n",
      "          'memories': 1,\n",
      "          'full': 1,\n",
      "          'alive': 1,\n",
      "          'overjoyed': 1,\n",
      "          'discovers': 1,\n",
      "          'disastrous': 1,\n",
      "          'killer': 1,\n",
      "          'died': 1,\n",
      "          'instead': 1,\n",
      "          'lived': 1,\n",
      "          'kill': 1,\n",
      "          'seven': 1,\n",
      "          'women': 1,\n",
      "          'nfrank': 1,\n",
      "          'must': 1,\n",
      "          'together': 1,\n",
      "          'set': 1,\n",
      "          'things': 1,\n",
      "          'using': 1,\n",
      "          'gathered': 1,\n",
      "          'instruct': 1,\n",
      "          'premise': 1,\n",
      "          'unusual': 1,\n",
      "          'requires': 1,\n",
      "          'getting': 1,\n",
      "          'important': 1,\n",
      "          'mental': 1,\n",
      "          'hurdle': 1,\n",
      "          'fully': 1,\n",
      "          'accept': 1,\n",
      "          'ones': 1,\n",
      "          'conscious': 1,\n",
      "          'changed': 1,\n",
      "          'actions': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'explained': 1,\n",
      "          'go': 1,\n",
      "          'doesnt': 1,\n",
      "          'die': 1,\n",
      "          'differently': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'runs': 1,\n",
      "          'problems': 1,\n",
      "          'concerning': 1,\n",
      "          'synchronous': 1,\n",
      "          'nsometimes': 1,\n",
      "          'changing': 1,\n",
      "          'results': 1,\n",
      "          'happening': 1,\n",
      "          'away': 1,\n",
      "          'sometimes': 1,\n",
      "          'ahead': 1,\n",
      "          'filmmakers': 1,\n",
      "          'might': 1,\n",
      "          'perfectly': 1,\n",
      "          'could': 1,\n",
      "          'probably': 1,\n",
      "          'fairly': 1,\n",
      "          'convoluted': 1,\n",
      "          'nevertheless': 1,\n",
      "          'thought': 1,\n",
      "          'hard': 1,\n",
      "          'example': 1,\n",
      "          'reason': 1,\n",
      "          'killers': 1,\n",
      "          'murders': 1,\n",
      "          'happened': 1,\n",
      "          'witnessing': 1,\n",
      "          'projection': 1,\n",
      "          'arent': 1,\n",
      "          'point': 1,\n",
      "          'cooking': 1,\n",
      "          'riveting': 1,\n",
      "          'nwhat': 1,\n",
      "          'matters': 1,\n",
      "          'makes': 1,\n",
      "          'moment': 1,\n",
      "          'works': 1,\n",
      "          'long': 1,\n",
      "          'keeps': 1,\n",
      "          'moving': 1,\n",
      "          'manages': 1,\n",
      "          'engaging': 1,\n",
      "          'despite': 1,\n",
      "          'confusion': 1,\n",
      "          'ndirector': 1,\n",
      "          'gregory': 1,\n",
      "          'hoblit': 1,\n",
      "          'screenwriter': 1,\n",
      "          'toby': 1,\n",
      "          'emmerich': 1,\n",
      "          'structure': 1,\n",
      "          'hollywood': 1,\n",
      "          'entertainment': 1,\n",
      "          'establishing': 1,\n",
      "          'decent': 1,\n",
      "          'likable': 1,\n",
      "          'making': 1,\n",
      "          'setting': 1,\n",
      "          'goal': 1,\n",
      "          'reached': 1,\n",
      "          'conflict': 1,\n",
      "          'resolved': 1,\n",
      "          'many': 1,\n",
      "          'creative': 1,\n",
      "          'touches': 1,\n",
      "          'split': 1,\n",
      "          'screens': 1,\n",
      "          'allowing': 1,\n",
      "          'universe': 1,\n",
      "          'affected': 1,\n",
      "          'greater': 1,\n",
      "          'framework': 1,\n",
      "          'drive': 1,\n",
      "          'nit': 1,\n",
      "          'actually': 1,\n",
      "          'metsorioles': 1,\n",
      "          'featured': 1,\n",
      "          'amazin': 1,\n",
      "          'mets': 1,\n",
      "          'great': 1,\n",
      "          'effect': 1,\n",
      "          'knowledge': 1,\n",
      "          'convince': 1,\n",
      "          'friends': 1,\n",
      "          'admittedly': 1,\n",
      "          'device': 1,\n",
      "          'interest': 1,\n",
      "          'fan': 1,\n",
      "          'final': 1,\n",
      "          'features': 1,\n",
      "          'fighting': 1,\n",
      "          'man': 1,\n",
      "          'different': 1,\n",
      "          'periods': 1,\n",
      "          'nsome': 1,\n",
      "          'blindingly': 1,\n",
      "          'reality': 1,\n",
      "          'shifts': 1,\n",
      "          'start': 1,\n",
      "          'coming': 1,\n",
      "          'fast': 1,\n",
      "          'furious': 1,\n",
      "          'make': 1,\n",
      "          'think': 1,\n",
      "          'lot': 1,\n",
      "          'leeway': 1,\n",
      "          'lets': 1,\n",
      "          'face': 1,\n",
      "          'darn': 1,\n",
      "          'cool': 1,\n",
      "          'end': 1,\n",
      "          'surprises': 1,\n",
      "          'twists': 1,\n",
      "          'keep': 1,\n",
      "          'toes': 1,\n",
      "          'avoids': 1,\n",
      "          'growing': 1,\n",
      "          'stagnant': 1,\n",
      "          'major': 1,\n",
      "          'appreciate': 1,\n",
      "          'handling': 1,\n",
      "          'nquaid': 1,\n",
      "          'carry': 1,\n",
      "          'parts': 1,\n",
      "          'rocksolid': 1,\n",
      "          'instantly': 1,\n",
      "          'credible': 1,\n",
      "          'truth': 1,\n",
      "          'behind': 1,\n",
      "          'high': 1,\n",
      "          'react': 1,\n",
      "          'able': 1,\n",
      "          'dead': 1,\n",
      "          'relative': 1,\n",
      "          'descendant': 1,\n",
      "          'nwatching': 1,\n",
      "          'exchanges': 1,\n",
      "          'pretty': 1,\n",
      "          'answer': 1,\n",
      "          'credibility': 1,\n",
      "          'absolutely': 1,\n",
      "          'crucial': 1,\n",
      "          'rest': 1,\n",
      "          'nhere': 1,\n",
      "          'lead': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'nelizabeth': 1,\n",
      "          'stuck': 1,\n",
      "          'thankless': 1,\n",
      "          'roles': 1,\n",
      "          'playing': 1,\n",
      "          'doting': 1,\n",
      "          'mother': 1,\n",
      "          'still': 1,\n",
      "          'performs': 1,\n",
      "          'admirably': 1,\n",
      "          'nandre': 1,\n",
      "          'braugher': 1,\n",
      "          'late': 1,\n",
      "          'television': 1,\n",
      "          'show': 1,\n",
      "          'homicide': 1,\n",
      "          'street': 1,\n",
      "          'gives': 1,\n",
      "          'nice': 1,\n",
      "          'friend': 1,\n",
      "          'colleague': 1,\n",
      "          'nhe': 1,\n",
      "          'lovely': 1,\n",
      "          'diner': 1,\n",
      "          'tries': 1,\n",
      "          'explain': 1,\n",
      "          'situation': 1,\n",
      "          'predictions': 1,\n",
      "          'true': 1,\n",
      "          'eyes': 1,\n",
      "          'nbraugher': 1,\n",
      "          'strikes': 1,\n",
      "          'perfect': 1,\n",
      "          'facial': 1,\n",
      "          'expression': 1,\n",
      "          'dismayed': 1,\n",
      "          'amused': 1,\n",
      "          'nperhaps': 1,\n",
      "          'didnt': 1,\n",
      "          'overly': 1,\n",
      "          'sentimental': 1,\n",
      "          'coda': 1,\n",
      "          'cameras': 1,\n",
      "          'focus': 1,\n",
      "          'soft': 1,\n",
      "          'theme': 1,\n",
      "          'carried': 1,\n",
      "          'overboard': 1,\n",
      "          'thats': 1,\n",
      "          'earned': 1,\n",
      "          'poignancy': 1,\n",
      "          'without': 1,\n",
      "          'resorting': 1,\n",
      "          'cheap': 1,\n",
      "          'tactics': 1,\n",
      "          'freely': 1,\n",
      "          'acknowledge': 1,\n",
      "          'guy': 1,\n",
      "          'since': 1,\n",
      "          'focuses': 1,\n",
      "          'maleoriented': 1,\n",
      "          'relationships': 1,\n",
      "          'echoes': 1,\n",
      "          'field': 1,\n",
      "          'dreams': 1,\n",
      "          'heard': 1,\n",
      "          'underlying': 1,\n",
      "          'universally': 1,\n",
      "          'applicable': 1,\n",
      "          'nwho': 1,\n",
      "          'wouldnt': 1,\n",
      "          'want': 1,\n",
      "          'speak': 1,\n",
      "          'longdead': 1,\n",
      "          'parent': 1,\n",
      "          'children': 1,\n",
      "          'tell': 1,\n",
      "          'excuse': 1,\n",
      "          'mist': 1,\n",
      "          'nand': 1,\n",
      "          'call': 1,\n",
      "          'sissy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'vampire': 11,\n",
      "          'movie': 9,\n",
      "          'blade': 8,\n",
      "          'vampires': 7,\n",
      "          'nthe': 6,\n",
      "          'one': 5,\n",
      "          'nblade': 5,\n",
      "          'story': 3,\n",
      "          'get': 3,\n",
      "          'isnt': 3,\n",
      "          'fun': 3,\n",
      "          'snipes': 2,\n",
      "          'really': 2,\n",
      "          'live': 2,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'kind': 2,\n",
      "          'style': 2,\n",
      "          'well': 2,\n",
      "          'nalthough': 2,\n",
      "          'thought': 2,\n",
      "          'nbut': 2,\n",
      "          'things': 2,\n",
      "          'bit': 2,\n",
      "          'many': 2,\n",
      "          'doesnt': 2,\n",
      "          'take': 2,\n",
      "          'half': 2,\n",
      "          'mother': 2,\n",
      "          'classic': 2,\n",
      "          'blood': 2,\n",
      "          'life': 2,\n",
      "          'seems': 2,\n",
      "          'world': 2,\n",
      "          'find': 2,\n",
      "          'know': 2,\n",
      "          'run': 2,\n",
      "          'nhe': 2,\n",
      "          'nits': 2,\n",
      "          'nthis': 2,\n",
      "          'otherwise': 2,\n",
      "          'sequences': 2,\n",
      "          'shows': 1,\n",
      "          'wesley': 1,\n",
      "          'potential': 1,\n",
      "          'hollywoods': 1,\n",
      "          'premier': 1,\n",
      "          'leading': 1,\n",
      "          'men': 1,\n",
      "          'based': 1,\n",
      "          'character': 1,\n",
      "          'name': 1,\n",
      "          'feel': 1,\n",
      "          'nit': 1,\n",
      "          'stylish': 1,\n",
      "          'part': 1,\n",
      "          'works': 1,\n",
      "          'points': 1,\n",
      "          'watching': 1,\n",
      "          'music': 1,\n",
      "          'video': 1,\n",
      "          'opposed': 1,\n",
      "          'ideas': 1,\n",
      "          'behind': 1,\n",
      "          'good': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'times': 1,\n",
      "          'seem': 1,\n",
      "          'muddled': 1,\n",
      "          'writers': 1,\n",
      "          'appear': 1,\n",
      "          'want': 1,\n",
      "          'nthat': 1,\n",
      "          'away': 1,\n",
      "          'much': 1,\n",
      "          'hurt': 1,\n",
      "          'little': 1,\n",
      "          'man': 1,\n",
      "          'nhis': 1,\n",
      "          'bitten': 1,\n",
      "          'pregnant': 1,\n",
      "          'result': 1,\n",
      "          'traits': 1,\n",
      "          'nincluding': 1,\n",
      "          'thirst': 1,\n",
      "          'human': 1,\n",
      "          'must': 1,\n",
      "          'kept': 1,\n",
      "          'control': 1,\n",
      "          'special': 1,\n",
      "          'serum': 1,\n",
      "          'quenches': 1,\n",
      "          'lust': 1,\n",
      "          'spent': 1,\n",
      "          'hunting': 1,\n",
      "          'killing': 1,\n",
      "          'sort': 1,\n",
      "          'revenge': 1,\n",
      "          'fact': 1,\n",
      "          'killed': 1,\n",
      "          'easy': 1,\n",
      "          'blades': 1,\n",
      "          'sophisticated': 1,\n",
      "          'ones': 1,\n",
      "          'films': 1,\n",
      "          'government': 1,\n",
      "          'authorities': 1,\n",
      "          'existence': 1,\n",
      "          'let': 1,\n",
      "          'feast': 1,\n",
      "          'population': 1,\n",
      "          'large': 1,\n",
      "          'taking': 1,\n",
      "          'bribes': 1,\n",
      "          'nwhere': 1,\n",
      "          'money': 1,\n",
      "          'nwell': 1,\n",
      "          'multinational': 1,\n",
      "          'companies': 1,\n",
      "          'order': 1,\n",
      "          'finance': 1,\n",
      "          'organizations': 1,\n",
      "          'ni': 1,\n",
      "          'personally': 1,\n",
      "          'whole': 1,\n",
      "          'secret': 1,\n",
      "          'corporate': 1,\n",
      "          'clever': 1,\n",
      "          'idea': 1,\n",
      "          'great': 1,\n",
      "          'addition': 1,\n",
      "          'runs': 1,\n",
      "          'evil': 1,\n",
      "          'deacon': 1,\n",
      "          'frost': 1,\n",
      "          'stephen': 1,\n",
      "          'dorff': 1,\n",
      "          'maverick': 1,\n",
      "          'community': 1,\n",
      "          'content': 1,\n",
      "          'among': 1,\n",
      "          'humans': 1,\n",
      "          'convinced': 1,\n",
      "          'race': 1,\n",
      "          'superior': 1,\n",
      "          'means': 1,\n",
      "          'insure': 1,\n",
      "          'superiority': 1,\n",
      "          'managed': 1,\n",
      "          'translate': 1,\n",
      "          'ancient': 1,\n",
      "          'scrolls': 1,\n",
      "          'tell': 1,\n",
      "          'method': 1,\n",
      "          'making': 1,\n",
      "          'allpowerful': 1,\n",
      "          'rendering': 1,\n",
      "          'virtually': 1,\n",
      "          'unstoppable': 1,\n",
      "          'see': 1,\n",
      "          'transpire': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'substance': 1,\n",
      "          'relatively': 1,\n",
      "          'forgettable': 1,\n",
      "          'none': 1,\n",
      "          'less': 1,\n",
      "          'acting': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'type': 1,\n",
      "          'film': 1,\n",
      "          'going': 1,\n",
      "          'win': 1,\n",
      "          'accolades': 1,\n",
      "          'performances': 1,\n",
      "          'actors': 1,\n",
      "          'played': 1,\n",
      "          'nobody': 1,\n",
      "          'think': 1,\n",
      "          'popcorn': 1,\n",
      "          'involved': 1,\n",
      "          'illusions': 1,\n",
      "          'nblades': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'slick': 1,\n",
      "          'typical': 1,\n",
      "          'summer': 1,\n",
      "          'blockbuster': 1,\n",
      "          'combat': 1,\n",
      "          'targets': 1,\n",
      "          'incredibly': 1,\n",
      "          'done': 1,\n",
      "          'mtvstyle': 1,\n",
      "          'cuts': 1,\n",
      "          'nerves': 1,\n",
      "          'long': 1,\n",
      "          'interesting': 1,\n",
      "          'genre': 1,\n",
      "          'like': 1,\n",
      "          'tuxedos': 1,\n",
      "          'living': 1,\n",
      "          'coffins': 1,\n",
      "          'basement': 1,\n",
      "          'gothic': 1,\n",
      "          'castle': 1,\n",
      "          'nwhat': 1,\n",
      "          'excels': 1,\n",
      "          'bringing': 1,\n",
      "          'lore': 1,\n",
      "          'next': 1,\n",
      "          'century': 1,\n",
      "          'fresh': 1,\n",
      "          'outlook': 1,\n",
      "          'nvery': 1,\n",
      "          'cool': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'truman': 5,\n",
      "          'show': 5,\n",
      "          'carrey': 5,\n",
      "          'nthe': 5,\n",
      "          'perfect': 4,\n",
      "          'hour': 3,\n",
      "          'harris': 3,\n",
      "          'life': 3,\n",
      "          'seahaven': 3,\n",
      "          'christoff': 3,\n",
      "          'would': 3,\n",
      "          'character': 3,\n",
      "          'audience': 3,\n",
      "          'nalso': 3,\n",
      "          'jim': 2,\n",
      "          'weir': 2,\n",
      "          'carreys': 2,\n",
      "          'dramatic': 2,\n",
      "          'plot': 2,\n",
      "          'burbank': 2,\n",
      "          'town': 2,\n",
      "          'nhis': 2,\n",
      "          'seems': 2,\n",
      "          'however': 2,\n",
      "          'creator': 2,\n",
      "          'far': 2,\n",
      "          'different': 2,\n",
      "          'easy': 2,\n",
      "          'screenwriter': 2,\n",
      "          'dumb': 2,\n",
      "          'appeal': 2,\n",
      "          'never': 2,\n",
      "          'movie': 2,\n",
      "          'hes': 2,\n",
      "          'role': 2,\n",
      "          'completely': 2,\n",
      "          'silly': 2,\n",
      "          'well': 2,\n",
      "          'disappointing': 2,\n",
      "          'used': 2,\n",
      "          'excellent': 2,\n",
      "          'slightly': 2,\n",
      "          'niccol': 2,\n",
      "          'keep': 2,\n",
      "          'noverall': 2,\n",
      "          'paramount': 1,\n",
      "          'pictures': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          '1': 1,\n",
      "          '42': 1,\n",
      "          'minutes': 1,\n",
      "          'starring': 1,\n",
      "          'ed': 1,\n",
      "          'directed': 1,\n",
      "          'peter': 1,\n",
      "          'long': 1,\n",
      "          'wait': 1,\n",
      "          'debut': 1,\n",
      "          'finally': 1,\n",
      "          'makes': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'youve': 1,\n",
      "          'asleep': 1,\n",
      "          'last': 1,\n",
      "          'months': 1,\n",
      "          'centres': 1,\n",
      "          'leads': 1,\n",
      "          'seemingly': 1,\n",
      "          'idyllic': 1,\n",
      "          'beautiful': 1,\n",
      "          'controlled': 1,\n",
      "          'program': 1,\n",
      "          'unwittingly': 1,\n",
      "          'hero': 1,\n",
      "          'nthats': 1,\n",
      "          'right': 1,\n",
      "          'burbanks': 1,\n",
      "          'broadcast': 1,\n",
      "          'live': 1,\n",
      "          'american': 1,\n",
      "          'public': 1,\n",
      "          'inhabitants': 1,\n",
      "          'inclosed': 1,\n",
      "          'massive': 1,\n",
      "          'sound': 1,\n",
      "          'stage': 1,\n",
      "          'takes': 1,\n",
      "          'jerry': 1,\n",
      "          'springer': 1,\n",
      "          'format': 1,\n",
      "          'one': 1,\n",
      "          'step': 1,\n",
      "          'nwith': 1,\n",
      "          'idea': 1,\n",
      "          'director': 1,\n",
      "          'lowest': 1,\n",
      "          'common': 1,\n",
      "          'denominator': 1,\n",
      "          'nluckily': 1,\n",
      "          'remains': 1,\n",
      "          'sensible': 1,\n",
      "          'enough': 1,\n",
      "          'ages': 1,\n",
      "          'yet': 1,\n",
      "          'ntalking': 1,\n",
      "          'enjoying': 1,\n",
      "          'best': 1,\n",
      "          'career': 1,\n",
      "          'reinforced': 1,\n",
      "          'stanley': 1,\n",
      "          'ipkiss': 1,\n",
      "          'mask': 1,\n",
      "          '1994': 1,\n",
      "          'suited': 1,\n",
      "          'persona': 1,\n",
      "          'nhe': 1,\n",
      "          'occasionally': 1,\n",
      "          'falls': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'mode': 1,\n",
      "          'shrieking': 1,\n",
      "          'generally': 1,\n",
      "          'watching': 1,\n",
      "          'subdued': 1,\n",
      "          'nhes': 1,\n",
      "          'like': 1,\n",
      "          'promises': 1,\n",
      "          'ned': 1,\n",
      "          'brings': 1,\n",
      "          'extreme': 1,\n",
      "          'intensity': 1,\n",
      "          'megalomaniac': 1,\n",
      "          'nquiet': 1,\n",
      "          'spoken': 1,\n",
      "          'burns': 1,\n",
      "          'image': 1,\n",
      "          'viewer': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'barely': 1,\n",
      "          'first': 1,\n",
      "          'dosent': 1,\n",
      "          'appear': 1,\n",
      "          'natascha': 1,\n",
      "          'mcelhones': 1,\n",
      "          'sylvia': 1,\n",
      "          'nshe': 1,\n",
      "          'plays': 1,\n",
      "          'sadly': 1,\n",
      "          'underwritten': 1,\n",
      "          'pushed': 1,\n",
      "          'sidelines': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'looks': 1,\n",
      "          'delightfully': 1,\n",
      "          'creepy': 1,\n",
      "          'philip': 1,\n",
      "          'glass': 1,\n",
      "          'soundtrack': 1,\n",
      "          'also': 1,\n",
      "          'superb': 1,\n",
      "          'great': 1,\n",
      "          'effect': 1,\n",
      "          'npeter': 1,\n",
      "          'keeps': 1,\n",
      "          'going': 1,\n",
      "          'clearly': 1,\n",
      "          'fun': 1,\n",
      "          'upbeat': 1,\n",
      "          'previous': 1,\n",
      "          'films': 1,\n",
      "          'dead': 1,\n",
      "          'poets': 1,\n",
      "          'society': 1,\n",
      "          'green': 1,\n",
      "          'card': 1,\n",
      "          'nalthough': 1,\n",
      "          'slow': 1,\n",
      "          'begin': 1,\n",
      "          'half': 1,\n",
      "          'pace': 1,\n",
      "          'really': 1,\n",
      "          'picks': 1,\n",
      "          'introduced': 1,\n",
      "          'fully': 1,\n",
      "          'roll': 1,\n",
      "          'nsadly': 1,\n",
      "          'though': 1,\n",
      "          'practically': 1,\n",
      "          'full': 1,\n",
      "          'steam': 1,\n",
      "          'concerning': 1,\n",
      "          'ending': 1,\n",
      "          'ambiguous': 1,\n",
      "          'andrew': 1,\n",
      "          'bought': 1,\n",
      "          'us': 1,\n",
      "          'gattaca': 1,\n",
      "          '1997': 1,\n",
      "          'delivers': 1,\n",
      "          'entertaining': 1,\n",
      "          'script': 1,\n",
      "          'manages': 1,\n",
      "          'trim': 1,\n",
      "          'nwhile': 1,\n",
      "          'christoffs': 1,\n",
      "          'plans': 1,\n",
      "          'get': 1,\n",
      "          'increasingly': 1,\n",
      "          'go': 1,\n",
      "          'line': 1,\n",
      "          'theres': 1,\n",
      "          'funny': 1,\n",
      "          'gags': 1,\n",
      "          'involving': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'people': 1,\n",
      "          'watch': 1,\n",
      "          'entertainment': 1,\n",
      "          'ncertainly': 1,\n",
      "          'usual': 1,\n",
      "          'crap': 1,\n",
      "          'hollywood': 1,\n",
      "          'produces': 1,\n",
      "          'viewed': 1,\n",
      "          'everyone': 1,\n",
      "          'nit': 1,\n",
      "          'offers': 1,\n",
      "          'something': 1,\n",
      "          'every': 1,\n",
      "          'member': 1,\n",
      "          'almost': 1,\n",
      "          'certainly': 1,\n",
      "          'come': 1,\n",
      "          'disappointed': 1,\n",
      "          'rating': 1,\n",
      "          'nreview': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          '1998': 1,\n",
      "          'n': 1,\n",
      "          'know': 1,\n",
      "          'kids': 1,\n",
      "          'norville': 1,\n",
      "          'barnes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 4,\n",
      "          'francie': 4,\n",
      "          'owens': 3,\n",
      "          'non': 3,\n",
      "          'one': 3,\n",
      "          'hand': 3,\n",
      "          'difficult': 3,\n",
      "          'francies': 3,\n",
      "          'yet': 3,\n",
      "          'know': 3,\n",
      "          'another': 2,\n",
      "          'found': 2,\n",
      "          'rea': 2,\n",
      "          'also': 2,\n",
      "          'butcher': 2,\n",
      "          'whole': 2,\n",
      "          'disturbing': 2,\n",
      "          'dont': 2,\n",
      "          'react': 2,\n",
      "          'recent': 1,\n",
      "          'left': 1,\n",
      "          'conflicted': 1,\n",
      "          'feelings': 1,\n",
      "          'neil': 1,\n",
      "          'jordans': 1,\n",
      "          'harrowing': 1,\n",
      "          'humorous': 1,\n",
      "          'horrifying': 1,\n",
      "          'adaptation': 1,\n",
      "          'patrick': 1,\n",
      "          'mccabes': 1,\n",
      "          'novel': 1,\n",
      "          'young': 1,\n",
      "          'lad': 1,\n",
      "          'bradys': 1,\n",
      "          'eamonn': 1,\n",
      "          'descent': 1,\n",
      "          'madness': 1,\n",
      "          '1960s': 1,\n",
      "          'ireland': 1,\n",
      "          'become': 1,\n",
      "          'invested': 1,\n",
      "          'story': 1,\n",
      "          'unsavory': 1,\n",
      "          'character': 1,\n",
      "          'unjustifyably': 1,\n",
      "          'venting': 1,\n",
      "          'rage': 1,\n",
      "          'nosy': 1,\n",
      "          'otherwise': 1,\n",
      "          'harmless': 1,\n",
      "          'neighbor': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'mrs': 1,\n",
      "          'nugent': 1,\n",
      "          'fiona': 1,\n",
      "          'shaw': 1,\n",
      "          'laugh': 1,\n",
      "          'darkly': 1,\n",
      "          'comic': 1,\n",
      "          'shenanigans': 1,\n",
      "          'obviously': 1,\n",
      "          'sick': 1,\n",
      "          'needy': 1,\n",
      "          'child': 1,\n",
      "          'raised': 1,\n",
      "          'drunken': 1,\n",
      "          'father': 1,\n",
      "          'stephen': 1,\n",
      "          'suicidal': 1,\n",
      "          'mother': 1,\n",
      "          'aisling': 1,\n",
      "          'osullivan': 1,\n",
      "          'completely': 1,\n",
      "          'sympathize': 1,\n",
      "          'emotional': 1,\n",
      "          'scenes': 1,\n",
      "          'lack': 1,\n",
      "          'better': 1,\n",
      "          'word': 1,\n",
      "          'bad': 1,\n",
      "          'deeds': 1,\n",
      "          'incredibly': 1,\n",
      "          'shocking': 1,\n",
      "          'brutality': 1,\n",
      "          'malicious': 1,\n",
      "          'glee': 1,\n",
      "          'performs': 1,\n",
      "          'nhowever': 1,\n",
      "          'boys': 1,\n",
      "          'power': 1,\n",
      "          'undeniable': 1,\n",
      "          'unforgettableperhaps': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'unsettling': 1,\n",
      "          'overall': 1,\n",
      "          'winkwink': 1,\n",
      "          'matteroffact': 1,\n",
      "          'attitude': 1,\n",
      "          'everything': 1,\n",
      "          'expressed': 1,\n",
      "          'cheeky': 1,\n",
      "          'voiceover': 1,\n",
      "          'narration': 1,\n",
      "          'delivered': 1,\n",
      "          'adult': 1,\n",
      "          'nthink': 1,\n",
      "          'heavenly': 1,\n",
      "          'creatures': 1,\n",
      "          'played': 1,\n",
      "          'largely': 1,\n",
      "          'laughs': 1,\n",
      "          'youll': 1,\n",
      "          'sort': 1,\n",
      "          'understand': 1,\n",
      "          'nanchoring': 1,\n",
      "          'astonishing': 1,\n",
      "          'debut': 1,\n",
      "          'performance': 1,\n",
      "          'love': 1,\n",
      "          'hate': 1,\n",
      "          'take': 1,\n",
      "          'eyes': 1,\n",
      "          'nthe': 1,\n",
      "          'boy': 1,\n",
      "          'truly': 1,\n",
      "          'twisted': 1,\n",
      "          'unusual': 1,\n",
      "          'bound': 1,\n",
      "          'make': 1,\n",
      "          'anyone': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'nin': 1,\n",
      "          'lobby': 1,\n",
      "          'screening': 1,\n",
      "          'overheard': 1,\n",
      "          'man': 1,\n",
      "          'raving': 1,\n",
      "          'great': 1,\n",
      "          'heard': 1,\n",
      "          'particularly': 1,\n",
      "          'offended': 1,\n",
      "          'woman': 1,\n",
      "          'say': 1,\n",
      "          'disgust': 1,\n",
      "          'movie': 1,\n",
      "          'unfunny': 1,\n",
      "          'n': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'nits': 1,\n",
      "          'like': 1,\n",
      "          'something': 1,\n",
      "          'chase': 1,\n",
      "          'long': 1,\n",
      "          'get': 1,\n",
      "          'ni': 1,\n",
      "          'still': 1,\n",
      "          'nmichael': 1,\n",
      "          'jordan': 1,\n",
      "          'winning': 1,\n",
      "          'first': 1,\n",
      "          'nba': 1,\n",
      "          'championship': 1,\n",
      "          '1991': 1,\n",
      "          'nmy': 1,\n",
      "          'thoughts': 1,\n",
      "          'meeting': 1,\n",
      "          'november': 1,\n",
      "          '21': 1,\n",
      "          '1997': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'detectives': 4,\n",
      "          'one': 3,\n",
      "          'partner': 3,\n",
      "          'two': 3,\n",
      "          'action': 3,\n",
      "          'team': 2,\n",
      "          'sgt': 2,\n",
      "          'riggs': 2,\n",
      "          'glover': 2,\n",
      "          'asks': 2,\n",
      "          'pesci': 2,\n",
      "          'rock': 2,\n",
      "          'go': 2,\n",
      "          'film': 2,\n",
      "          'freighter': 2,\n",
      "          'crime': 2,\n",
      "          'lord': 2,\n",
      "          'theyre': 2,\n",
      "          'jet': 2,\n",
      "          'li': 2,\n",
      "          'nothing': 2,\n",
      "          'less': 2,\n",
      "          'make': 2,\n",
      "          'terrific': 2,\n",
      "          'explosions': 2,\n",
      "          'summer': 2,\n",
      "          'get': 2,\n",
      "          'fight': 2,\n",
      "          'guns': 2,\n",
      "          'funny': 2,\n",
      "          'mano': 2,\n",
      "          'inseparable': 1,\n",
      "          'nmartin': 1,\n",
      "          'mel': 1,\n",
      "          'gibson': 1,\n",
      "          'nroger': 1,\n",
      "          'murtaugh': 1,\n",
      "          'danny': 1,\n",
      "          'nlets': 1,\n",
      "          'say': 1,\n",
      "          'strip': 1,\n",
      "          'boxer': 1,\n",
      "          'shorts': 1,\n",
      "          'run': 1,\n",
      "          'middle': 1,\n",
      "          'road': 1,\n",
      "          'flapping': 1,\n",
      "          'arms': 1,\n",
      "          'feverishly': 1,\n",
      "          'cackling': 1,\n",
      "          'like': 1,\n",
      "          'chicken': 1,\n",
      "          'create': 1,\n",
      "          'distraction': 1,\n",
      "          'actually': 1,\n",
      "          'nthe': 1,\n",
      "          'familiar': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'family': 1,\n",
      "          'back': 1,\n",
      "          'including': 1,\n",
      "          'rene': 1,\n",
      "          'russo': 1,\n",
      "          'expectant': 1,\n",
      "          'mother': 1,\n",
      "          'child': 1,\n",
      "          'joe': 1,\n",
      "          'sopranalike': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'former': 1,\n",
      "          'accountant': 1,\n",
      "          'decided': 1,\n",
      "          'become': 1,\n",
      "          'private': 1,\n",
      "          'eye': 1,\n",
      "          'nnew': 1,\n",
      "          'chris': 1,\n",
      "          'also': 1,\n",
      "          'fasttalking': 1,\n",
      "          'coming': 1,\n",
      "          'detective': 1,\n",
      "          'ntrouble': 1,\n",
      "          'seems': 1,\n",
      "          'follow': 1,\n",
      "          'veteran': 1,\n",
      "          'ever': 1,\n",
      "          'exception': 1,\n",
      "          'neven': 1,\n",
      "          'taking': 1,\n",
      "          'leisurely': 1,\n",
      "          'boat': 1,\n",
      "          'ride': 1,\n",
      "          'somehow': 1,\n",
      "          'manage': 1,\n",
      "          'collide': 1,\n",
      "          'ship': 1,\n",
      "          'nwe': 1,\n",
      "          'ominous': 1,\n",
      "          'music': 1,\n",
      "          'clues': 1,\n",
      "          'us': 1,\n",
      "          'confrontation': 1,\n",
      "          'happen': 1,\n",
      "          'ngunfire': 1,\n",
      "          'ensues': 1,\n",
      "          'want': 1,\n",
      "          'learn': 1,\n",
      "          'questioning': 1,\n",
      "          'chinatown': 1,\n",
      "          'nalthough': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'looking': 1,\n",
      "          'inquisitiveness': 1,\n",
      "          'causes': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'take': 1,\n",
      "          'nand': 1,\n",
      "          'theres': 1,\n",
      "          'plenty': 1,\n",
      "          'movies': 1,\n",
      "          'nled': 1,\n",
      "          'fighting': 1,\n",
      "          'sensation': 1,\n",
      "          'whose': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'skill': 1,\n",
      "          'impressive': 1,\n",
      "          'sure': 1,\n",
      "          'finds': 1,\n",
      "          'nli': 1,\n",
      "          'ruthless': 1,\n",
      "          'approach': 1,\n",
      "          'kill': 1,\n",
      "          'anyone': 1,\n",
      "          'point': 1,\n",
      "          'develops': 1,\n",
      "          'enormous': 1,\n",
      "          'disdain': 1,\n",
      "          'nthere': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'gunshot': 1,\n",
      "          'galore': 1,\n",
      "          'nits': 1,\n",
      "          'recipe': 1,\n",
      "          'followed': 1,\n",
      "          'letter': 1,\n",
      "          'result': 1,\n",
      "          'pure': 1,\n",
      "          'unadulterated': 1,\n",
      "          'fun': 1,\n",
      "          'nbut': 1,\n",
      "          'even': 1,\n",
      "          'many': 1,\n",
      "          'boring': 1,\n",
      "          'nto': 1,\n",
      "          'counter': 1,\n",
      "          'treated': 1,\n",
      "          'several': 1,\n",
      "          'amazingly': 1,\n",
      "          'choreographed': 1,\n",
      "          'sequences': 1,\n",
      "          'nluckily': 1,\n",
      "          'hed': 1,\n",
      "          'rather': 1,\n",
      "          'handtohand': 1,\n",
      "          'instead': 1,\n",
      "          'firing': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'arent': 1,\n",
      "          'reloading': 1,\n",
      "          'running': 1,\n",
      "          'fireballs': 1,\n",
      "          'engaged': 1,\n",
      "          'sophomoric': 1,\n",
      "          'banter': 1,\n",
      "          'silly': 1,\n",
      "          'conversations': 1,\n",
      "          'provide': 1,\n",
      "          'nice': 1,\n",
      "          'diversion': 1,\n",
      "          'hail': 1,\n",
      "          'bullets': 1,\n",
      "          'neverybody': 1,\n",
      "          'gets': 1,\n",
      "          'shtick': 1,\n",
      "          'nrusso': 1,\n",
      "          'screams': 1,\n",
      "          'delivery': 1,\n",
      "          'bits': 1,\n",
      "          'hes': 1,\n",
      "          'interrogated': 1,\n",
      "          'given': 1,\n",
      "          'laughing': 1,\n",
      "          'gas': 1,\n",
      "          'discussing': 1,\n",
      "          'drawbacks': 1,\n",
      "          'cellular': 1,\n",
      "          'phones': 1,\n",
      "          'ngibson': 1,\n",
      "          'always': 1,\n",
      "          'sync': 1,\n",
      "          'moves': 1,\n",
      "          'brisk': 1,\n",
      "          'pace': 1,\n",
      "          'final': 1,\n",
      "          'nscore': 1,\n",
      "          'old': 1,\n",
      "          'guard': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'homer': 5,\n",
      "          'sky': 4,\n",
      "          'nthe': 4,\n",
      "          'mine': 4,\n",
      "          'homers': 4,\n",
      "          'however': 3,\n",
      "          'like': 3,\n",
      "          'true': 3,\n",
      "          'boys': 3,\n",
      "          'father': 3,\n",
      "          'role': 3,\n",
      "          'moments': 3,\n",
      "          'dramatic': 2,\n",
      "          'certain': 2,\n",
      "          'change': 2,\n",
      "          'style': 2,\n",
      "          'instead': 2,\n",
      "          'characters': 2,\n",
      "          'struggle': 2,\n",
      "          'times': 2,\n",
      "          'turn': 2,\n",
      "          'october': 2,\n",
      "          'welcome': 2,\n",
      "          'movie': 2,\n",
      "          'town': 2,\n",
      "          'nits': 2,\n",
      "          'wellknown': 2,\n",
      "          'cooper': 2,\n",
      "          'world': 2,\n",
      "          'see': 2,\n",
      "          'history': 2,\n",
      "          'teacher': 2,\n",
      "          'dern': 2,\n",
      "          'workers': 2,\n",
      "          'noctober': 2,\n",
      "          'film': 2,\n",
      "          'star': 2,\n",
      "          'certainly': 2,\n",
      "          'nhe': 2,\n",
      "          'life': 2,\n",
      "          'plot': 2,\n",
      "          'need': 2,\n",
      "          'likeable': 2,\n",
      "          'since': 1,\n",
      "          '1990': 1,\n",
      "          'picture': 1,\n",
      "          'undergone': 1,\n",
      "          'nnow': 1,\n",
      "          'emphasizing': 1,\n",
      "          'feelgood': 1,\n",
      "          'stories': 1,\n",
      "          'replete': 1,\n",
      "          'noble': 1,\n",
      "          'virtues': 1,\n",
      "          'screenplays': 1,\n",
      "          'direction': 1,\n",
      "          'point': 1,\n",
      "          'toward': 1,\n",
      "          'human': 1,\n",
      "          'sorrow': 1,\n",
      "          'nthis': 1,\n",
      "          'realist': 1,\n",
      "          'tendancy': 1,\n",
      "          'inspiring': 1,\n",
      "          '1993s': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'shows': 1,\n",
      "          'nmost': 1,\n",
      "          'todays': 1,\n",
      "          'mainstream': 1,\n",
      "          'drama': 1,\n",
      "          'creates': 1,\n",
      "          'overabundance': 1,\n",
      "          'emoting': 1,\n",
      "          'members': 1,\n",
      "          'audience': 1,\n",
      "          'nthats': 1,\n",
      "          'pictures': 1,\n",
      "          'throwback': 1,\n",
      "          'good': 1,\n",
      "          'ol': 1,\n",
      "          'dramas': 1,\n",
      "          'yesteryear': 1,\n",
      "          'relief': 1,\n",
      "          'contemporary': 1,\n",
      "          'cinema': 1,\n",
      "          'based': 1,\n",
      "          'story': 1,\n",
      "          'hickam': 1,\n",
      "          'jake': 1,\n",
      "          'gyllenhaal': 1,\n",
      "          'teenager': 1,\n",
      "          '1950s': 1,\n",
      "          'company': 1,\n",
      "          'coalwood': 1,\n",
      "          'west': 1,\n",
      "          'virginia': 1,\n",
      "          'fact': 1,\n",
      "          'make': 1,\n",
      "          'name': 1,\n",
      "          'ones': 1,\n",
      "          'get': 1,\n",
      "          'football': 1,\n",
      "          'scholarships': 1,\n",
      "          'rest': 1,\n",
      "          'grow': 1,\n",
      "          'work': 1,\n",
      "          'coal': 1,\n",
      "          'run': 1,\n",
      "          'chris': 1,\n",
      "          'place': 1,\n",
      "          'nafter': 1,\n",
      "          'watching': 1,\n",
      "          'soviet': 1,\n",
      "          'satellite': 1,\n",
      "          'sputnik': 1,\n",
      "          'shoot': 1,\n",
      "          'across': 1,\n",
      "          '1957': 1,\n",
      "          'feels': 1,\n",
      "          'connection': 1,\n",
      "          'outside': 1,\n",
      "          'puts': 1,\n",
      "          'anyone': 1,\n",
      "          'could': 1,\n",
      "          'look': 1,\n",
      "          'thing': 1,\n",
      "          'ndrafting': 1,\n",
      "          'two': 1,\n",
      "          'best': 1,\n",
      "          'friends': 1,\n",
      "          'brainiac': 1,\n",
      "          'outcast': 1,\n",
      "          'begins': 1,\n",
      "          'construct': 1,\n",
      "          'rockets': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'miss': 1,\n",
      "          'riley': 1,\n",
      "          'laura': 1,\n",
      "          'several': 1,\n",
      "          'four': 1,\n",
      "          'soon': 1,\n",
      "          'bound': 1,\n",
      "          'great': 1,\n",
      "          'things': 1,\n",
      "          'skillfully': 1,\n",
      "          'crafted': 1,\n",
      "          'credit': 1,\n",
      "          'must': 1,\n",
      "          'go': 1,\n",
      "          'director': 1,\n",
      "          'joe': 1,\n",
      "          'johnston': 1,\n",
      "          'njohnston': 1,\n",
      "          'whose': 1,\n",
      "          'career': 1,\n",
      "          'industry': 1,\n",
      "          'includes': 1,\n",
      "          'everything': 1,\n",
      "          'directing': 1,\n",
      "          'titles': 1,\n",
      "          'jumanji': 1,\n",
      "          'rocketeer': 1,\n",
      "          'uncredited': 1,\n",
      "          'death': 1,\n",
      "          'trooper': 1,\n",
      "          'wars': 1,\n",
      "          'knows': 1,\n",
      "          'hes': 1,\n",
      "          'molds': 1,\n",
      "          'also': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'straightforward': 1,\n",
      "          'robust': 1,\n",
      "          'push': 1,\n",
      "          'barriers': 1,\n",
      "          'adopts': 1,\n",
      "          'conservative': 1,\n",
      "          'filmmaking': 1,\n",
      "          'enhances': 1,\n",
      "          'films': 1,\n",
      "          'charm': 1,\n",
      "          'nhis': 1,\n",
      "          'finesse': 1,\n",
      "          'brings': 1,\n",
      "          'elements': 1,\n",
      "          'might': 1,\n",
      "          'otherwise': 1,\n",
      "          'lost': 1,\n",
      "          'relationships': 1,\n",
      "          'various': 1,\n",
      "          'silent': 1,\n",
      "          'mother': 1,\n",
      "          'cast': 1,\n",
      "          'well': 1,\n",
      "          'chosen': 1,\n",
      "          'although': 1,\n",
      "          'bright': 1,\n",
      "          'spots': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'nlaura': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'lends': 1,\n",
      "          'strong': 1,\n",
      "          'performance': 1,\n",
      "          'giving': 1,\n",
      "          'support': 1,\n",
      "          'guidance': 1,\n",
      "          'nher': 1,\n",
      "          'instantly': 1,\n",
      "          'nchris': 1,\n",
      "          'horse': 1,\n",
      "          'whisperer': 1,\n",
      "          'less': 1,\n",
      "          'even': 1,\n",
      "          'downright': 1,\n",
      "          'despicable': 1,\n",
      "          'gives': 1,\n",
      "          'gravity': 1,\n",
      "          'nhes': 1,\n",
      "          'definitely': 1,\n",
      "          'driving': 1,\n",
      "          'force': 1,\n",
      "          'humane': 1,\n",
      "          'give': 1,\n",
      "          'piece': 1,\n",
      "          'dynamic': 1,\n",
      "          'commendable': 1,\n",
      "          'script': 1,\n",
      "          'generally': 1,\n",
      "          'cheerful': 1,\n",
      "          'projecting': 1,\n",
      "          'endeavors': 1,\n",
      "          'lighthearted': 1,\n",
      "          'manner': 1,\n",
      "          'nthere': 1,\n",
      "          'becomes': 1,\n",
      "          'predictable': 1,\n",
      "          'train': 1,\n",
      "          'tracks': 1,\n",
      "          'scene': 1,\n",
      "          'sacrifices': 1,\n",
      "          'orginality': 1,\n",
      "          'come': 1,\n",
      "          'emotional': 1,\n",
      "          'twist': 1,\n",
      "          'nit': 1,\n",
      "          'highlights': 1,\n",
      "          'essence': 1,\n",
      "          'youth': 1,\n",
      "          'exceptional': 1,\n",
      "          'job': 1,\n",
      "          'forgiven': 1,\n",
      "          'missteps': 1,\n",
      "          'success': 1,\n",
      "          'audiences': 1,\n",
      "          'nalthough': 1,\n",
      "          'doesnt': 1,\n",
      "          'appeal': 1,\n",
      "          'current': 1,\n",
      "          'teen': 1,\n",
      "          'flicks': 1,\n",
      "          'varsity': 1,\n",
      "          'blues': 1,\n",
      "          'shes': 1,\n",
      "          'holds': 1,\n",
      "          'undeniable': 1,\n",
      "          'quality': 1,\n",
      "          'older': 1,\n",
      "          'crowds': 1,\n",
      "          'lean': 1,\n",
      "          'towards': 1,\n",
      "          'genre': 1,\n",
      "          'one': 1,\n",
      "          'everyone': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'good': 4,\n",
      "          'blues': 4,\n",
      "          'problems': 4,\n",
      "          'john': 3,\n",
      "          'really': 3,\n",
      "          'music': 3,\n",
      "          'brothers': 2,\n",
      "          'sing': 2,\n",
      "          'another': 2,\n",
      "          'film': 2,\n",
      "          'mean': 2,\n",
      "          'less': 2,\n",
      "          'great': 2,\n",
      "          'musicians': 2,\n",
      "          'n': 2,\n",
      "          'big': 1,\n",
      "          'surprise': 1,\n",
      "          'trailer': 1,\n",
      "          'hinted': 1,\n",
      "          'pulled': 1,\n",
      "          'impossible': 1,\n",
      "          'making': 1,\n",
      "          'movie': 1,\n",
      "          'without': 1,\n",
      "          'jake': 1,\n",
      "          'belushi': 1,\n",
      "          'dumb': 1,\n",
      "          'idea': 1,\n",
      "          'hope': 1,\n",
      "          'nthey': 1,\n",
      "          'replaced': 1,\n",
      "          'fine': 1,\n",
      "          'nnot': 1,\n",
      "          'goodman': 1,\n",
      "          'didnt': 1,\n",
      "          'much': 1,\n",
      "          'anything': 1,\n",
      "          'brilliant': 1,\n",
      "          'actor': 1,\n",
      "          'joe': 1,\n",
      "          'morton': 1,\n",
      "          'fourth': 1,\n",
      "          'brother': 1,\n",
      "          'j': 1,\n",
      "          'evan': 1,\n",
      "          'bonifant': 1,\n",
      "          'whos': 1,\n",
      "          'ten': 1,\n",
      "          'nthis': 1,\n",
      "          'fears': 1,\n",
      "          'hes': 1,\n",
      "          'dancer': 1,\n",
      "          'plays': 1,\n",
      "          'harmonica': 1,\n",
      "          'although': 1,\n",
      "          'may': 1,\n",
      "          'dubbed': 1,\n",
      "          'nthings': 1,\n",
      "          'intellectually': 1,\n",
      "          'bothered': 1,\n",
      "          'like': 1,\n",
      "          'mission': 1,\n",
      "          'god': 1,\n",
      "          'everyone': 1,\n",
      "          'richer': 1,\n",
      "          'filmed': 1,\n",
      "          'chicago': 1,\n",
      "          'gave': 1,\n",
      "          'nim': 1,\n",
      "          'quite': 1,\n",
      "          'pleased': 1,\n",
      "          'car': 1,\n",
      "          'pileups': 1,\n",
      "          'meant': 1,\n",
      "          'landis': 1,\n",
      "          'seems': 1,\n",
      "          'lost': 1,\n",
      "          'interest': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'ntheres': 1,\n",
      "          'early': 1,\n",
      "          'crashes': 1,\n",
      "          'one': 1,\n",
      "          'huge': 1,\n",
      "          'pileup': 1,\n",
      "          'stops': 1,\n",
      "          'nits': 1,\n",
      "          'none': 1,\n",
      "          'first': 1,\n",
      "          'cab': 1,\n",
      "          'calloways': 1,\n",
      "          'song': 1,\n",
      "          'actually': 1,\n",
      "          'look': 1,\n",
      "          'dull': 1,\n",
      "          'theres': 1,\n",
      "          'ever': 1,\n",
      "          'tons': 1,\n",
      "          'showing': 1,\n",
      "          'exception': 1,\n",
      "          'johnny': 1,\n",
      "          'lang': 1,\n",
      "          'cant': 1,\n",
      "          'job': 1,\n",
      "          'real': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nthese': 1,\n",
      "          'superfluous': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'nsince': 1,\n",
      "          'isnt': 1,\n",
      "          'well': 1,\n",
      "          'could': 1,\n",
      "          'possibility': 1,\n",
      "          'sequel': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'bluegrass': 1,\n",
      "          'version': 1,\n",
      "          'riders': 1,\n",
      "          'sky': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'rawhide': 1,\n",
      "          'http': 1,\n",
      "          'www': 1,\n",
      "          'geocities': 1,\n",
      "          'comhollywoodacademy8034': 1,\n",
      "          'nremove': 1,\n",
      "          'spam': 1,\n",
      "          'reply': 1,\n",
      "          'drive': 1,\n",
      "          'carefully': 1,\n",
      "          'recklessly': 1,\n",
      "          'mama': 1,\n",
      "          'childs': 1,\n",
      "          'toy': 1,\n",
      "          'excercise': 1,\n",
      "          'take': 1,\n",
      "          'walking': 1,\n",
      "          'behind': 1,\n",
      "          'coffins': 1,\n",
      "          'friends': 1,\n",
      "          'took': 1,\n",
      "          'exercise': 1,\n",
      "          'npeter': 1,\n",
      "          'otoole': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'return': 8,\n",
      "          'nthe': 7,\n",
      "          'film': 6,\n",
      "          'oldfashioned': 5,\n",
      "          'hollywood': 5,\n",
      "          'love': 5,\n",
      "          'grace': 5,\n",
      "          'going': 4,\n",
      "          'way': 4,\n",
      "          'nwe': 4,\n",
      "          'nfrom': 4,\n",
      "          'family': 4,\n",
      "          'heart': 4,\n",
      "          'many': 3,\n",
      "          'romance': 3,\n",
      "          'romances': 3,\n",
      "          'nit': 3,\n",
      "          'bonnie': 3,\n",
      "          'hunt': 3,\n",
      "          'chicago': 3,\n",
      "          'bob': 3,\n",
      "          'characters': 3,\n",
      "          'hint': 3,\n",
      "          'know': 3,\n",
      "          'driver': 3,\n",
      "          'much': 3,\n",
      "          'fox': 3,\n",
      "          'mulder': 3,\n",
      "          'entire': 3,\n",
      "          'story': 3,\n",
      "          'critics': 2,\n",
      "          'movie': 2,\n",
      "          'nwas': 2,\n",
      "          'feel': 2,\n",
      "          'two': 2,\n",
      "          'real': 2,\n",
      "          'see': 2,\n",
      "          'ni': 2,\n",
      "          'dont': 2,\n",
      "          'fellow': 2,\n",
      "          'perceive': 2,\n",
      "          'old': 2,\n",
      "          'couldnt': 2,\n",
      "          'endearing': 2,\n",
      "          'help': 2,\n",
      "          'charm': 2,\n",
      "          'hunts': 2,\n",
      "          'david': 2,\n",
      "          'duchovny': 2,\n",
      "          'tell': 2,\n",
      "          'sweet': 2,\n",
      "          'scenes': 2,\n",
      "          'people': 2,\n",
      "          'yet': 2,\n",
      "          'seems': 2,\n",
      "          'fairytale': 2,\n",
      "          'little': 2,\n",
      "          'screen': 2,\n",
      "          'excellent': 2,\n",
      "          'job': 2,\n",
      "          'actors': 2,\n",
      "          'actually': 2,\n",
      "          'however': 2,\n",
      "          'like': 2,\n",
      "          'nduchovny': 2,\n",
      "          'shows': 2,\n",
      "          'nothing': 2,\n",
      "          'line': 2,\n",
      "          'main': 2,\n",
      "          'might': 2,\n",
      "          'heard': 1,\n",
      "          'describe': 1,\n",
      "          'kept': 1,\n",
      "          'asking': 1,\n",
      "          'exactly': 1,\n",
      "          'nwhat': 1,\n",
      "          'made': 1,\n",
      "          'oldhollywood': 1,\n",
      "          'tunes': 1,\n",
      "          'sinatra': 1,\n",
      "          'etc': 1,\n",
      "          'legendary': 1,\n",
      "          'singers': 1,\n",
      "          'senior': 1,\n",
      "          'citizens': 1,\n",
      "          'constantly': 1,\n",
      "          'harp': 1,\n",
      "          'glamorous': 1,\n",
      "          'sophisticated': 1,\n",
      "          'charisma': 1,\n",
      "          'leads': 1,\n",
      "          'neven': 1,\n",
      "          'cant': 1,\n",
      "          'say': 1,\n",
      "          'gotten': 1,\n",
      "          'closer': 1,\n",
      "          'answer': 1,\n",
      "          'havent': 1,\n",
      "          'think': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'classified': 1,\n",
      "          'nwhich': 1,\n",
      "          'leaves': 1,\n",
      "          'option': 1,\n",
      "          'vaguely': 1,\n",
      "          'agreeing': 1,\n",
      "          'sense': 1,\n",
      "          'reminded': 1,\n",
      "          'younger': 1,\n",
      "          'generation': 1,\n",
      "          'venerated': 1,\n",
      "          'magic': 1,\n",
      "          'cinnamon': 1,\n",
      "          'spice': 1,\n",
      "          'apple': 1,\n",
      "          'cider': 1,\n",
      "          'traditional': 1,\n",
      "          'magical': 1,\n",
      "          'knew': 1,\n",
      "          'daring': 1,\n",
      "          'surprising': 1,\n",
      "          'plot': 1,\n",
      "          'twists': 1,\n",
      "          'cynical': 1,\n",
      "          'modern': 1,\n",
      "          'apt': 1,\n",
      "          'throw': 1,\n",
      "          'told': 1,\n",
      "          'simplicity': 1,\n",
      "          'tenderness': 1,\n",
      "          'director': 1,\n",
      "          'sparkle': 1,\n",
      "          'despite': 1,\n",
      "          'shortcomings': 1,\n",
      "          'owes': 1,\n",
      "          'lot': 1,\n",
      "          'direction': 1,\n",
      "          'first': 1,\n",
      "          'birds': 1,\n",
      "          'eye': 1,\n",
      "          'view': 1,\n",
      "          'zooming': 1,\n",
      "          'slowly': 1,\n",
      "          'toward': 1,\n",
      "          'insignificant': 1,\n",
      "          'rueland': 1,\n",
      "          'accompanied': 1,\n",
      "          'ballad': 1,\n",
      "          'something': 1,\n",
      "          'truthful': 1,\n",
      "          'fantasy': 1,\n",
      "          'nreal': 1,\n",
      "          'act': 1,\n",
      "          'arent': 1,\n",
      "          'nice': 1,\n",
      "          'want': 1,\n",
      "          'believe': 1,\n",
      "          'folks': 1,\n",
      "          'existence': 1,\n",
      "          'premise': 1,\n",
      "          'sprung': 1,\n",
      "          'rooting': 1,\n",
      "          'common': 1,\n",
      "          'folk': 1,\n",
      "          'simultaneously': 1,\n",
      "          'lends': 1,\n",
      "          'credit': 1,\n",
      "          'scenario': 1,\n",
      "          'tinges': 1,\n",
      "          'everyday': 1,\n",
      "          'urban': 1,\n",
      "          'life': 1,\n",
      "          'ethereal': 1,\n",
      "          'neverything': 1,\n",
      "          'ordinaryyet': 1,\n",
      "          'beautifulin': 1,\n",
      "          'festive': 1,\n",
      "          'restaurant': 1,\n",
      "          'minnie': 1,\n",
      "          'bobs': 1,\n",
      "          'wardrobes': 1,\n",
      "          'eloquent': 1,\n",
      "          'notinahurry': 1,\n",
      "          'progress': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'storyline': 1,\n",
      "          'dainty': 1,\n",
      "          'watercolors': 1,\n",
      "          'paints': 1,\n",
      "          'animal': 1,\n",
      "          'stars': 1,\n",
      "          'interact': 1,\n",
      "          'beautiful': 1,\n",
      "          'part': 1,\n",
      "          'n': 1,\n",
      "          'done': 1,\n",
      "          'assembling': 1,\n",
      "          'together': 1,\n",
      "          'group': 1,\n",
      "          'blend': 1,\n",
      "          'effortlessly': 1,\n",
      "          'audience': 1,\n",
      "          'trouble': 1,\n",
      "          'believing': 1,\n",
      "          'rambunctious': 1,\n",
      "          'exist': 1,\n",
      "          'care': 1,\n",
      "          'laugh': 1,\n",
      "          'cry': 1,\n",
      "          'concerned': 1,\n",
      "          'boy': 1,\n",
      "          'pick': 1,\n",
      "          'cursing': 1,\n",
      "          'father': 1,\n",
      "          'nwhatever': 1,\n",
      "          'brought': 1,\n",
      "          'naturalism': 1,\n",
      "          'ndisappointingly': 1,\n",
      "          'alan': 1,\n",
      "          'griers': 1,\n",
      "          'charlie': 1,\n",
      "          'flatlywritten': 1,\n",
      "          'laudable': 1,\n",
      "          'shaking': 1,\n",
      "          'persona': 1,\n",
      "          'costars': 1,\n",
      "          'rarely': 1,\n",
      "          'special': 1,\n",
      "          'agent': 1,\n",
      "          'ninstead': 1,\n",
      "          'normal': 1,\n",
      "          'guy': 1,\n",
      "          'falls': 1,\n",
      "          'delight': 1,\n",
      "          'show': 1,\n",
      "          'span': 1,\n",
      "          'season': 1,\n",
      "          'xfiles': 1,\n",
      "          'understatement': 1,\n",
      "          'selfdeprecation': 1,\n",
      "          'actor': 1,\n",
      "          'showcases': 1,\n",
      "          'considerable': 1,\n",
      "          'comedic': 1,\n",
      "          'talent': 1,\n",
      "          'nminnie': 1,\n",
      "          'engaging': 1,\n",
      "          'always': 1,\n",
      "          'innocent': 1,\n",
      "          'good': 1,\n",
      "          'offer': 1,\n",
      "          'nthough': 1,\n",
      "          'unlikely': 1,\n",
      "          'pair': 1,\n",
      "          'gradually': 1,\n",
      "          'warm': 1,\n",
      "          'progresses': 1,\n",
      "          'nwhile': 1,\n",
      "          'functions': 1,\n",
      "          'remarkably': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'comedy': 1,\n",
      "          'romantic': 1,\n",
      "          'scenic': 1,\n",
      "          'tour': 1,\n",
      "          'tearjerker': 1,\n",
      "          'set': 1,\n",
      "          'ends': 1,\n",
      "          'nowhere': 1,\n",
      "          'develop': 1,\n",
      "          'climax': 1,\n",
      "          'hinges': 1,\n",
      "          'recipient': 1,\n",
      "          'wifes': 1,\n",
      "          'already': 1,\n",
      "          'theres': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'spend': 1,\n",
      "          'enjoyably': 1,\n",
      "          'straight': 1,\n",
      "          'towards': 1,\n",
      "          'point': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'click': 1,\n",
      "          'almost': 1,\n",
      "          'quicklyyes': 1,\n",
      "          'shes': 1,\n",
      "          'supposed': 1,\n",
      "          'exwifes': 1,\n",
      "          'everythingit': 1,\n",
      "          'effortless': 1,\n",
      "          'subject': 1,\n",
      "          'unfortunately': 1,\n",
      "          'overused': 1,\n",
      "          'distract': 1,\n",
      "          'turmoil': 1,\n",
      "          'whose': 1,\n",
      "          'meat': 1,\n",
      "          'nhowever': 1,\n",
      "          'spirit': 1,\n",
      "          'wont': 1,\n",
      "          'picky': 1,\n",
      "          'tells': 1,\n",
      "          'stories': 1,\n",
      "          'loved': 1,\n",
      "          'knowing': 1,\n",
      "          'labor': 1,\n",
      "          'bottom': 1,\n",
      "          'remarkable': 1,\n",
      "          'sweetness': 1,\n",
      "          'sincerity': 1,\n",
      "          'touch': 1,\n",
      "          'ways': 1,\n",
      "          'hadnt': 1,\n",
      "          'imagined': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'sam': 11,\n",
      "          'kelly': 8,\n",
      "          'suzie': 6,\n",
      "          'character': 6,\n",
      "          'richards': 4,\n",
      "          'nit': 4,\n",
      "          'first': 4,\n",
      "          'mother': 4,\n",
      "          'gives': 4,\n",
      "          'performance': 4,\n",
      "          'things': 3,\n",
      "          'dillon': 3,\n",
      "          'senior': 3,\n",
      "          'guidance': 3,\n",
      "          'counselor': 3,\n",
      "          'van': 3,\n",
      "          'ryan': 3,\n",
      "          'raped': 3,\n",
      "          'nthis': 3,\n",
      "          'sandra': 3,\n",
      "          'nhowever': 3,\n",
      "          'revealed': 3,\n",
      "          'wild': 2,\n",
      "          'thriller': 2,\n",
      "          'denise': 2,\n",
      "          'campbell': 2,\n",
      "          'issues': 2,\n",
      "          'sex': 2,\n",
      "          'nthe': 2,\n",
      "          'blue': 2,\n",
      "          'bay': 2,\n",
      "          'many': 2,\n",
      "          'rich': 2,\n",
      "          'towns': 2,\n",
      "          'beginning': 2,\n",
      "          'characters': 2,\n",
      "          'lombardo': 2,\n",
      "          'ray': 2,\n",
      "          'duquette': 2,\n",
      "          'gloria': 2,\n",
      "          'perez': 2,\n",
      "          'toller': 2,\n",
      "          'head': 2,\n",
      "          'cheerleader': 2,\n",
      "          'see': 2,\n",
      "          'girls': 2,\n",
      "          'none': 2,\n",
      "          'well': 2,\n",
      "          'kellys': 2,\n",
      "          'never': 2,\n",
      "          'like': 2,\n",
      "          'obviously': 2,\n",
      "          'obvious': 2,\n",
      "          'seem': 2,\n",
      "          'making': 2,\n",
      "          'scream': 2,\n",
      "          'plays': 2,\n",
      "          'adding': 2,\n",
      "          'sexy': 2,\n",
      "          'interesting': 2,\n",
      "          'relationship': 2,\n",
      "          'press': 2,\n",
      "          'nin': 2,\n",
      "          'looks': 2,\n",
      "          'adds': 2,\n",
      "          'one': 2,\n",
      "          'much': 2,\n",
      "          'murray': 2,\n",
      "          'good': 2,\n",
      "          'plot': 2,\n",
      "          'suspenseful': 1,\n",
      "          'starring': 1,\n",
      "          'matt': 1,\n",
      "          'neve': 1,\n",
      "          'deals': 1,\n",
      "          'love': 1,\n",
      "          'murder': 1,\n",
      "          'betrayal': 1,\n",
      "          'setting': 1,\n",
      "          'town': 1,\n",
      "          'named': 1,\n",
      "          'consists': 1,\n",
      "          'swamps': 1,\n",
      "          'slums': 1,\n",
      "          'hand': 1,\n",
      "          'estates': 1,\n",
      "          'owned': 1,\n",
      "          'different': 1,\n",
      "          'benefactors': 1,\n",
      "          'opens': 1,\n",
      "          'seminar': 1,\n",
      "          'ritzy': 1,\n",
      "          'expensive': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'meet': 1,\n",
      "          'core': 1,\n",
      "          'ntheres': 1,\n",
      "          'police': 1,\n",
      "          'officers': 1,\n",
      "          'dark': 1,\n",
      "          'mysterious': 1,\n",
      "          'popular': 1,\n",
      "          'nwe': 1,\n",
      "          'smitten': 1,\n",
      "          'handsome': 1,\n",
      "          'nthroughout': 1,\n",
      "          'portion': 1,\n",
      "          'far': 1,\n",
      "          'go': 1,\n",
      "          'get': 1,\n",
      "          'accuses': 1,\n",
      "          'rape': 1,\n",
      "          'nshortly': 1,\n",
      "          'confesses': 1,\n",
      "          'pushes': 1,\n",
      "          'craving': 1,\n",
      "          'stop': 1,\n",
      "          'nothing': 1,\n",
      "          'convicted': 1,\n",
      "          'nduring': 1,\n",
      "          'trial': 1,\n",
      "          'teary': 1,\n",
      "          'confession': 1,\n",
      "          'later': 1,\n",
      "          'either': 1,\n",
      "          'vengeful': 1,\n",
      "          'plan': 1,\n",
      "          'nafter': 1,\n",
      "          'cleared': 1,\n",
      "          'pays': 1,\n",
      "          'substantial': 1,\n",
      "          'amount': 1,\n",
      "          'cash': 1,\n",
      "          'order': 1,\n",
      "          'sue': 1,\n",
      "          'together': 1,\n",
      "          'starts': 1,\n",
      "          'reveal': 1,\n",
      "          'honest': 1,\n",
      "          'hidden': 1,\n",
      "          'agenda': 1,\n",
      "          'nmatt': 1,\n",
      "          'stars': 1,\n",
      "          'nsam': 1,\n",
      "          'kind': 1,\n",
      "          'guy': 1,\n",
      "          'every': 1,\n",
      "          'woman': 1,\n",
      "          'would': 1,\n",
      "          'sink': 1,\n",
      "          'claws': 1,\n",
      "          'knows': 1,\n",
      "          'uses': 1,\n",
      "          'advantage': 1,\n",
      "          'nhe': 1,\n",
      "          'isnt': 1,\n",
      "          'best': 1,\n",
      "          'actors': 1,\n",
      "          'give': 1,\n",
      "          'convincing': 1,\n",
      "          'talents': 1,\n",
      "          'rendered': 1,\n",
      "          'useless': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'look': 1,\n",
      "          'though': 1,\n",
      "          'lost': 1,\n",
      "          'ethics': 1,\n",
      "          'principles': 1,\n",
      "          'although': 1,\n",
      "          'start': 1,\n",
      "          'place': 1,\n",
      "          'nneve': 1,\n",
      "          'people': 1,\n",
      "          'relate': 1,\n",
      "          '2': 1,\n",
      "          'outcast': 1,\n",
      "          'nsuzie': 1,\n",
      "          'serious': 1,\n",
      "          'deal': 1,\n",
      "          'scene': 1,\n",
      "          'ncampbell': 1,\n",
      "          'successful': 1,\n",
      "          'slightest': 1,\n",
      "          'bit': 1,\n",
      "          'charm': 1,\n",
      "          'seemingly': 1,\n",
      "          'repulsive': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'nplaying': 1,\n",
      "          'nkelly': 1,\n",
      "          'typical': 1,\n",
      "          'thinks': 1,\n",
      "          'man': 1,\n",
      "          'choses': 1,\n",
      "          'sexpot': 1,\n",
      "          'compares': 1,\n",
      "          'contrasts': 1,\n",
      "          'ndenise': 1,\n",
      "          'still': 1,\n",
      "          'hot': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'entire': 1,\n",
      "          'paper': 1,\n",
      "          'thin': 1,\n",
      "          'little': 1,\n",
      "          'spice': 1,\n",
      "          'ultimately': 1,\n",
      "          'makes': 1,\n",
      "          'dominating': 1,\n",
      "          'nkevin': 1,\n",
      "          'bacon': 1,\n",
      "          'fair': 1,\n",
      "          'performances': 1,\n",
      "          'boring': 1,\n",
      "          'predictable': 1,\n",
      "          'depth': 1,\n",
      "          'story': 1,\n",
      "          'nstill': 1,\n",
      "          'doesnt': 1,\n",
      "          'gain': 1,\n",
      "          'bacons': 1,\n",
      "          'name': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'theresa': 1,\n",
      "          'russell': 1,\n",
      "          'oversexed': 1,\n",
      "          'daphne': 1,\n",
      "          'rubinvega': 1,\n",
      "          'unappealing': 1,\n",
      "          'cop': 1,\n",
      "          'bill': 1,\n",
      "          'shines': 1,\n",
      "          'sams': 1,\n",
      "          'lawyer': 1,\n",
      "          'ken': 1,\n",
      "          'bowden': 1,\n",
      "          'nhats': 1,\n",
      "          'perfect': 1,\n",
      "          'touch': 1,\n",
      "          'comedy': 1,\n",
      "          'nalthough': 1,\n",
      "          'displayed': 1,\n",
      "          'erotic': 1,\n",
      "          'eroticism': 1,\n",
      "          'portrayed': 1,\n",
      "          'taste': 1,\n",
      "          'kept': 1,\n",
      "          'minimum': 1,\n",
      "          'focuses': 1,\n",
      "          'relationships': 1,\n",
      "          'truly': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'looking': 1,\n",
      "          'movie': 1,\n",
      "          'thick': 1,\n",
      "          'filled': 1,\n",
      "          'share': 1,\n",
      "          'twists': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'alien': 18,\n",
      "          'film': 10,\n",
      "          'nthe': 9,\n",
      "          'aliens': 9,\n",
      "          '3': 7,\n",
      "          'ripley': 7,\n",
      "          'nthis': 6,\n",
      "          'much': 4,\n",
      "          'see': 4,\n",
      "          'prisoners': 4,\n",
      "          'new': 4,\n",
      "          'ni': 4,\n",
      "          'score': 4,\n",
      "          'nand': 3,\n",
      "          'scene': 3,\n",
      "          'sulaco': 3,\n",
      "          'leads': 3,\n",
      "          'vessel': 3,\n",
      "          '109': 3,\n",
      "          'years': 3,\n",
      "          'planet': 3,\n",
      "          'would': 3,\n",
      "          'also': 3,\n",
      "          '4': 3,\n",
      "          'another': 3,\n",
      "          'fincher': 3,\n",
      "          'spoilers': 2,\n",
      "          'review': 2,\n",
      "          'two': 2,\n",
      "          'films': 2,\n",
      "          'seen': 2,\n",
      "          'story': 2,\n",
      "          'left': 2,\n",
      "          'one': 2,\n",
      "          'egg': 2,\n",
      "          'nin': 2,\n",
      "          'find': 2,\n",
      "          'facehugger': 2,\n",
      "          'escape': 2,\n",
      "          'crash': 2,\n",
      "          'fury': 2,\n",
      "          'guess': 2,\n",
      "          'finds': 2,\n",
      "          'doctor': 2,\n",
      "          'sex': 2,\n",
      "          'nit': 2,\n",
      "          'fact': 2,\n",
      "          'even': 2,\n",
      "          'nthere': 2,\n",
      "          'say': 2,\n",
      "          'back': 2,\n",
      "          'excellent': 2,\n",
      "          'quite': 2,\n",
      "          'good': 2,\n",
      "          'nalien': 2,\n",
      "          'music': 2,\n",
      "          'done': 2,\n",
      "          'direction': 2,\n",
      "          'come': 2,\n",
      "          'lends': 2,\n",
      "          'times': 2,\n",
      "          'ending': 2,\n",
      "          'minor': 1,\n",
      "          'plot': 1,\n",
      "          'major': 1,\n",
      "          'previous': 1,\n",
      "          'unique': 1,\n",
      "          'styles': 1,\n",
      "          'ridley': 1,\n",
      "          'scotts': 1,\n",
      "          'stylistic': 1,\n",
      "          'suspense': 1,\n",
      "          'njames': 1,\n",
      "          'camerons': 1,\n",
      "          'action': 1,\n",
      "          'liked': 1,\n",
      "          'separately': 1,\n",
      "          'nnow': 1,\n",
      "          'right': 1,\n",
      "          'nunlike': 1,\n",
      "          'requires': 1,\n",
      "          'important': 1,\n",
      "          'picks': 1,\n",
      "          'exactly': 1,\n",
      "          'survivors': 1,\n",
      "          'expedition': 1,\n",
      "          'lv426': 1,\n",
      "          'returning': 1,\n",
      "          'home': 1,\n",
      "          'battling': 1,\n",
      "          'beating': 1,\n",
      "          'climactic': 1,\n",
      "          'fight': 1,\n",
      "          'mother': 1,\n",
      "          'behind': 1,\n",
      "          'item': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'hatch': 1,\n",
      "          'quarry': 1,\n",
      "          'fire': 1,\n",
      "          'aboard': 1,\n",
      "          'injured': 1,\n",
      "          'jettison': 1,\n",
      "          'hypersleep': 1,\n",
      "          'tubes': 1,\n",
      "          'lands': 1,\n",
      "          'neveryone': 1,\n",
      "          'killed': 1,\n",
      "          'except': 1,\n",
      "          'jettisoned': 1,\n",
      "          'survives': 1,\n",
      "          'nfury': 1,\n",
      "          'exminingmaximum': 1,\n",
      "          'security': 1,\n",
      "          'prison': 1,\n",
      "          'nwhen': 1,\n",
      "          'closed': 1,\n",
      "          'lifer': 1,\n",
      "          'decided': 1,\n",
      "          'stay': 1,\n",
      "          'live': 1,\n",
      "          'remaining': 1,\n",
      "          'nall': 1,\n",
      "          'men': 1,\n",
      "          'woman': 1,\n",
      "          'many': 1,\n",
      "          'nripleys': 1,\n",
      "          'arrival': 1,\n",
      "          'sparks': 1,\n",
      "          'problem': 1,\n",
      "          'inmates': 1,\n",
      "          'nas': 1,\n",
      "          'haircut': 1,\n",
      "          'sport': 1,\n",
      "          'infestation': 1,\n",
      "          'lice': 1,\n",
      "          'nbeing': 1,\n",
      "          'exprison': 1,\n",
      "          'means': 1,\n",
      "          'way': 1,\n",
      "          'weapons': 1,\n",
      "          'nso': 1,\n",
      "          'face': 1,\n",
      "          'go': 1,\n",
      "          'detail': 1,\n",
      "          'happens': 1,\n",
      "          'loose': 1,\n",
      "          'believes': 1,\n",
      "          'ripleys': 1,\n",
      "          'outstanding': 1,\n",
      "          'nshe': 1,\n",
      "          'comfort': 1,\n",
      "          'arms': 1,\n",
      "          'colonys': 1,\n",
      "          'nyes': 1,\n",
      "          '57': 1,\n",
      "          'gratuitous': 1,\n",
      "          'dont': 1,\n",
      "          'kiss': 1,\n",
      "          'well': 1,\n",
      "          'na': 1,\n",
      "          'sweaty': 1,\n",
      "          'worked': 1,\n",
      "          'context': 1,\n",
      "          'lot': 1,\n",
      "          'gore': 1,\n",
      "          'either': 1,\n",
      "          'earlier': 1,\n",
      "          'sports': 1,\n",
      "          'legs': 1,\n",
      "          'wont': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'things': 1,\n",
      "          'cycle': 1,\n",
      "          'sure': 1,\n",
      "          'explored': 1,\n",
      "          'nsigourney': 1,\n",
      "          'weaver': 1,\n",
      "          'provides': 1,\n",
      "          'performance': 1,\n",
      "          'character': 1,\n",
      "          'nher': 1,\n",
      "          'autopsy': 1,\n",
      "          'newt': 1,\n",
      "          'enough': 1,\n",
      "          'garnish': 1,\n",
      "          'academy': 1,\n",
      "          'nomination': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'nnotably': 1,\n",
      "          'charles': 1,\n",
      "          'dance': 1,\n",
      "          'momentary': 1,\n",
      "          'distinct': 1,\n",
      "          'look': 1,\n",
      "          'due': 1,\n",
      "          'largely': 1,\n",
      "          'director': 1,\n",
      "          'david': 1,\n",
      "          'nmr': 1,\n",
      "          'directed': 1,\n",
      "          'videos': 1,\n",
      "          'commercials': 1,\n",
      "          'incredible': 1,\n",
      "          'job': 1,\n",
      "          'nhis': 1,\n",
      "          'makes': 1,\n",
      "          'life': 1,\n",
      "          'ways': 1,\n",
      "          'nfor': 1,\n",
      "          'mr': 1,\n",
      "          'long': 1,\n",
      "          'prosperous': 1,\n",
      "          'career': 1,\n",
      "          'ahead': 1,\n",
      "          'newcomer': 1,\n",
      "          'industry': 1,\n",
      "          'nelliot': 1,\n",
      "          'goldenthal': 1,\n",
      "          'created': 1,\n",
      "          'deeply': 1,\n",
      "          'moving': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'setting': 1,\n",
      "          'series': 1,\n",
      "          'set': 1,\n",
      "          'time': 1,\n",
      "          'rip': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'ii': 1,\n",
      "          'james': 1,\n",
      "          'horners': 1,\n",
      "          'choral': 1,\n",
      "          'old': 1,\n",
      "          'style': 1,\n",
      "          'ennio': 1,\n",
      "          'morricone': 1,\n",
      "          'scoring': 1,\n",
      "          'great': 1,\n",
      "          'thought': 1,\n",
      "          'hollywood': 1,\n",
      "          'screw': 1,\n",
      "          'played': 1,\n",
      "          'nicely': 1,\n",
      "          'ruin': 1,\n",
      "          'ngo': 1,\n",
      "          'consider': 1,\n",
      "          'involved': 1,\n",
      "          'released': 1,\n",
      "          'far': 1,\n",
      "          'season': 1,\n",
      "          'worthy': 1,\n",
      "          'successor': 1,\n",
      "          'make': 1,\n",
      "          'perhaps': 1,\n",
      "          'able': 1,\n",
      "          'yet': 1,\n",
      "          'take': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'war': 7,\n",
      "          'henderson': 6,\n",
      "          'sarajevo': 5,\n",
      "          'nthe': 5,\n",
      "          'group': 5,\n",
      "          'horror': 4,\n",
      "          'picture': 4,\n",
      "          'nhe': 4,\n",
      "          'dangerous': 4,\n",
      "          'one': 4,\n",
      "          'emira': 4,\n",
      "          'nthis': 4,\n",
      "          'get': 3,\n",
      "          'com': 3,\n",
      "          'america': 3,\n",
      "          'world': 3,\n",
      "          'events': 3,\n",
      "          'mother': 3,\n",
      "          'reporter': 3,\n",
      "          'help': 3,\n",
      "          'also': 3,\n",
      "          'dillane': 3,\n",
      "          'nhenderson': 3,\n",
      "          'well': 3,\n",
      "          'take': 3,\n",
      "          'place': 3,\n",
      "          'children': 3,\n",
      "          'living': 3,\n",
      "          'movie': 3,\n",
      "          'tired': 2,\n",
      "          'video': 2,\n",
      "          'wafflemovies': 2,\n",
      "          'film': 2,\n",
      "          'chance': 2,\n",
      "          'nin': 2,\n",
      "          'reminder': 2,\n",
      "          'years': 2,\n",
      "          'actual': 2,\n",
      "          'human': 2,\n",
      "          'societal': 2,\n",
      "          'young': 2,\n",
      "          'bride': 2,\n",
      "          'way': 2,\n",
      "          'torn': 2,\n",
      "          'escape': 2,\n",
      "          'flynn': 2,\n",
      "          'harrelson': 2,\n",
      "          'reporting': 2,\n",
      "          'carry': 2,\n",
      "          'cocky': 2,\n",
      "          'heart': 2,\n",
      "          'continues': 2,\n",
      "          'people': 2,\n",
      "          'michael': 2,\n",
      "          'girl': 2,\n",
      "          'finds': 2,\n",
      "          'delegation': 2,\n",
      "          'earth': 2,\n",
      "          'front': 2,\n",
      "          'lines': 2,\n",
      "          'taking': 2,\n",
      "          'without': 2,\n",
      "          'nhowever': 2,\n",
      "          'nina': 2,\n",
      "          'boyce': 2,\n",
      "          'small': 2,\n",
      "          'trying': 2,\n",
      "          'nwinterbottom': 2,\n",
      "          'scenes': 2,\n",
      "          'give': 2,\n",
      "          'thousands': 2,\n",
      "          'miles': 2,\n",
      "          'away': 2,\n",
      "          'room': 2,\n",
      "          'city': 2,\n",
      "          'portrayal': 2,\n",
      "          'reporters': 2,\n",
      "          'struggle': 2,\n",
      "          'wonderful': 2,\n",
      "          'character': 2,\n",
      "          'nharrelson': 2,\n",
      "          'roles': 2,\n",
      "          'men': 2,\n",
      "          'history': 2,\n",
      "          'us': 2,\n",
      "          'hot': 1,\n",
      "          'new': 1,\n",
      "          'releases': 1,\n",
      "          'gone': 1,\n",
      "          'time': 1,\n",
      "          'store': 1,\n",
      "          'nwafflemovies': 1,\n",
      "          'dedicated': 1,\n",
      "          'finding': 1,\n",
      "          'hidden': 1,\n",
      "          'gems': 1,\n",
      "          'lie': 1,\n",
      "          'shelves': 1,\n",
      "          'neveryweek': 1,\n",
      "          'nreviews': 1,\n",
      "          'independent': 1,\n",
      "          'big': 1,\n",
      "          'studio': 1,\n",
      "          'pictures': 1,\n",
      "          'deserve': 1,\n",
      "          'second': 1,\n",
      "          'nhere': 1,\n",
      "          'sample': 1,\n",
      "          'review': 1,\n",
      "          'nwelcome': 1,\n",
      "          'light': 1,\n",
      "          'americas': 1,\n",
      "          'recent': 1,\n",
      "          'intervention': 1,\n",
      "          'kosovo': 1,\n",
      "          'welcome': 1,\n",
      "          'ignored': 1,\n",
      "          'nset': 1,\n",
      "          '1992': 1,\n",
      "          'based': 1,\n",
      "          'examines': 1,\n",
      "          'casualties': 1,\n",
      "          'opens': 1,\n",
      "          'family': 1,\n",
      "          'escorting': 1,\n",
      "          'wedding': 1,\n",
      "          'nas': 1,\n",
      "          'make': 1,\n",
      "          'street': 1,\n",
      "          'sniper': 1,\n",
      "          'shoots': 1,\n",
      "          'nyet': 1,\n",
      "          'another': 1,\n",
      "          'daily': 1,\n",
      "          'life': 1,\n",
      "          'never': 1,\n",
      "          'scene': 1,\n",
      "          'meet': 1,\n",
      "          'joe': 1,\n",
      "          'woody': 1,\n",
      "          'american': 1,\n",
      "          'stops': 1,\n",
      "          'priest': 1,\n",
      "          'mortally': 1,\n",
      "          'wounded': 1,\n",
      "          'church': 1,\n",
      "          'njoe': 1,\n",
      "          'good': 1,\n",
      "          'kind': 1,\n",
      "          'deeds': 1,\n",
      "          'doesnt': 1,\n",
      "          'even': 1,\n",
      "          'know': 1,\n",
      "          'nhis': 1,\n",
      "          'fellow': 1,\n",
      "          'british': 1,\n",
      "          'stephen': 1,\n",
      "          'nmichael': 1,\n",
      "          'quickly': 1,\n",
      "          'growing': 1,\n",
      "          'surrounds': 1,\n",
      "          'worlds': 1,\n",
      "          'lack': 1,\n",
      "          'interest': 1,\n",
      "          'haunted': 1,\n",
      "          'memory': 1,\n",
      "          'altar': 1,\n",
      "          'boy': 1,\n",
      "          'witnesses': 1,\n",
      "          'mothers': 1,\n",
      "          'death': 1,\n",
      "          'orphaned': 1,\n",
      "          'hospital': 1,\n",
      "          'mortar': 1,\n",
      "          'attack': 1,\n",
      "          'citizens': 1,\n",
      "          'waiting': 1,\n",
      "          'line': 1,\n",
      "          'bread': 1,\n",
      "          'decides': 1,\n",
      "          'action': 1,\n",
      "          'united': 1,\n",
      "          'nations': 1,\n",
      "          'descends': 1,\n",
      "          'upon': 1,\n",
      "          'area': 1,\n",
      "          'declare': 1,\n",
      "          'yugoslavia': 1,\n",
      "          'fourteenth': 1,\n",
      "          'begins': 1,\n",
      "          'series': 1,\n",
      "          'profiling': 1,\n",
      "          'orphanage': 1,\n",
      "          'located': 1,\n",
      "          'ages': 1,\n",
      "          'fear': 1,\n",
      "          'care': 1,\n",
      "          'adult': 1,\n",
      "          'nduring': 1,\n",
      "          'visits': 1,\n",
      "          'befriends': 1,\n",
      "          'preteen': 1,\n",
      "          'nuseric': 1,\n",
      "          'serves': 1,\n",
      "          'surrogate': 1,\n",
      "          'baby': 1,\n",
      "          'roadrunner': 1,\n",
      "          'promises': 1,\n",
      "          'harms': 1,\n",
      "          'gets': 1,\n",
      "          'nafter': 1,\n",
      "          'un': 1,\n",
      "          'leaves': 1,\n",
      "          'country': 1,\n",
      "          'rescuing': 1,\n",
      "          'loses': 1,\n",
      "          'hope': 1,\n",
      "          'grabbed': 1,\n",
      "          'attention': 1,\n",
      "          'marisa': 1,\n",
      "          'tomei': 1,\n",
      "          'childrens': 1,\n",
      "          'aid': 1,\n",
      "          'helps': 1,\n",
      "          'find': 1,\n",
      "          'homes': 1,\n",
      "          'yugoslavian': 1,\n",
      "          'orphans': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'babies': 1,\n",
      "          'wanted': 1,\n",
      "          'adoption': 1,\n",
      "          'pledges': 1,\n",
      "          'england': 1,\n",
      "          'depart': 1,\n",
      "          'italy': 1,\n",
      "          'ncan': 1,\n",
      "          'complete': 1,\n",
      "          'trek': 1,\n",
      "          'countryside': 1,\n",
      "          'avoid': 1,\n",
      "          'hostile': 1,\n",
      "          'troops': 1,\n",
      "          'gathering': 1,\n",
      "          'muslims': 1,\n",
      "          'concentration': 1,\n",
      "          'camps': 1,\n",
      "          'beautifully': 1,\n",
      "          'sensitively': 1,\n",
      "          'made': 1,\n",
      "          'ndirector': 1,\n",
      "          'winterbottom': 1,\n",
      "          'screenwriter': 1,\n",
      "          'frank': 1,\n",
      "          'cottrell': 1,\n",
      "          'vividly': 1,\n",
      "          'express': 1,\n",
      "          'destruction': 1,\n",
      "          'occurred': 1,\n",
      "          'nthey': 1,\n",
      "          'show': 1,\n",
      "          'destroyed': 1,\n",
      "          'lives': 1,\n",
      "          'families': 1,\n",
      "          'split': 1,\n",
      "          'desolation': 1,\n",
      "          'everyone': 1,\n",
      "          'attempts': 1,\n",
      "          'cope': 1,\n",
      "          'best': 1,\n",
      "          'exemplified': 1,\n",
      "          'yugoslavians': 1,\n",
      "          'producer': 1,\n",
      "          'befriended': 1,\n",
      "          'twentysomethings': 1,\n",
      "          'reside': 1,\n",
      "          'bombed': 1,\n",
      "          'bar': 1,\n",
      "          'lifes': 1,\n",
      "          'simplest': 1,\n",
      "          'pleasures': 1,\n",
      "          'amenities': 1,\n",
      "          'none': 1,\n",
      "          'accomplished': 1,\n",
      "          'musician': 1,\n",
      "          'spends': 1,\n",
      "          'days': 1,\n",
      "          'playing': 1,\n",
      "          'piano': 1,\n",
      "          'promising': 1,\n",
      "          'play': 1,\n",
      "          'concert': 1,\n",
      "          'declared': 1,\n",
      "          'nlike': 1,\n",
      "          'rest': 1,\n",
      "          'deeply': 1,\n",
      "          'effected': 1,\n",
      "          'tries': 1,\n",
      "          'survive': 1,\n",
      "          'instead': 1,\n",
      "          'live': 1,\n",
      "          'brilliantly': 1,\n",
      "          'intersplices': 1,\n",
      "          'news': 1,\n",
      "          'footage': 1,\n",
      "          'feel': 1,\n",
      "          'documentary': 1,\n",
      "          'keeps': 1,\n",
      "          'viewer': 1,\n",
      "          'aware': 1,\n",
      "          'many': 1,\n",
      "          'horrors': 1,\n",
      "          'carried': 1,\n",
      "          'sit': 1,\n",
      "          'safely': 1,\n",
      "          'bolstered': 1,\n",
      "          'beautiful': 1,\n",
      "          'cinematography': 1,\n",
      "          'captures': 1,\n",
      "          'devastation': 1,\n",
      "          'hosted': 1,\n",
      "          '1984': 1,\n",
      "          'olympics': 1,\n",
      "          'produce': 1,\n",
      "          'realistic': 1,\n",
      "          'covering': 1,\n",
      "          'atrocities': 1,\n",
      "          'much': 1,\n",
      "          'flattering': 1,\n",
      "          'earlier': 1,\n",
      "          'nselection': 1,\n",
      "          'mad': 1,\n",
      "          'nwe': 1,\n",
      "          'watch': 1,\n",
      "          'cover': 1,\n",
      "          'remain': 1,\n",
      "          'professionally': 1,\n",
      "          'detached': 1,\n",
      "          'question': 1,\n",
      "          'reason': 1,\n",
      "          'behind': 1,\n",
      "          'cares': 1,\n",
      "          'nstephen': 1,\n",
      "          'portrays': 1,\n",
      "          'everyman': 1,\n",
      "          'caught': 1,\n",
      "          'middle': 1,\n",
      "          'extraordinary': 1,\n",
      "          'ndillane': 1,\n",
      "          'avoids': 1,\n",
      "          'making': 1,\n",
      "          'overly': 1,\n",
      "          'heroic': 1,\n",
      "          'preachy': 1,\n",
      "          'realizes': 1,\n",
      "          'save': 1,\n",
      "          'nit': 1,\n",
      "          'opportunity': 1,\n",
      "          'suffer': 1,\n",
      "          'denis': 1,\n",
      "          'learysandra': 1,\n",
      "          'bullock': 1,\n",
      "          'disaster': 1,\n",
      "          'two': 1,\n",
      "          'sea': 1,\n",
      "          'nwoody': 1,\n",
      "          'prove': 1,\n",
      "          'finest': 1,\n",
      "          'versatile': 1,\n",
      "          'actors': 1,\n",
      "          'generation': 1,\n",
      "          'plays': 1,\n",
      "          'celebrity': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'gold': 1,\n",
      "          'allowing': 1,\n",
      "          'characters': 1,\n",
      "          'caring': 1,\n",
      "          'nature': 1,\n",
      "          'vulnerability': 1,\n",
      "          'shine': 1,\n",
      "          'equally': 1,\n",
      "          'adept': 1,\n",
      "          'zany': 1,\n",
      "          'leading': 1,\n",
      "          'cheers': 1,\n",
      "          'white': 1,\n",
      "          'cant': 1,\n",
      "          'jump': 1,\n",
      "          'excellent': 1,\n",
      "          'supporting': 1,\n",
      "          'ability': 1,\n",
      "          'serve': 1,\n",
      "          'long': 1,\n",
      "          'successful': 1,\n",
      "          'career': 1,\n",
      "          'namericas': 1,\n",
      "          'involvement': 1,\n",
      "          'comes': 1,\n",
      "          'seven': 1,\n",
      "          'nfor': 1,\n",
      "          'full': 1,\n",
      "          'understanding': 1,\n",
      "          'conflict': 1,\n",
      "          'entire': 1,\n",
      "          'importantly': 1,\n",
      "          'opening': 1,\n",
      "          'provide': 1,\n",
      "          'lesson': 1,\n",
      "          'nwar': 1,\n",
      "          'foreign': 1,\n",
      "          'concept': 1,\n",
      "          'nbattles': 1,\n",
      "          'fought': 1,\n",
      "          'among': 1,\n",
      "          'attachment': 1,\n",
      "          'ntelevised': 1,\n",
      "          'images': 1,\n",
      "          'gulf': 1,\n",
      "          'experience': 1,\n",
      "          'brings': 1,\n",
      "          'right': 1,\n",
      "          'makes': 1,\n",
      "          'think': 1,\n",
      "          'outside': 1,\n",
      "          'something': 1,\n",
      "          'dont': 1,\n",
      "          'enough': 1,\n",
      "          '90s': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 16,\n",
      "          'stephane': 11,\n",
      "          'almost': 9,\n",
      "          'camille': 9,\n",
      "          'characters': 9,\n",
      "          'nthe': 7,\n",
      "          'nin': 6,\n",
      "          'nhowever': 6,\n",
      "          'ni': 6,\n",
      "          'relationship': 5,\n",
      "          'people': 4,\n",
      "          'film': 4,\n",
      "          'nstephane': 4,\n",
      "          'violin': 4,\n",
      "          'love': 4,\n",
      "          'emotions': 4,\n",
      "          'see': 4,\n",
      "          'becomes': 4,\n",
      "          'development': 4,\n",
      "          'films': 3,\n",
      "          'sense': 3,\n",
      "          'master': 3,\n",
      "          'music': 3,\n",
      "          'maxime': 3,\n",
      "          'controlled': 3,\n",
      "          'audience': 3,\n",
      "          'left': 3,\n",
      "          'violinist': 3,\n",
      "          'new': 3,\n",
      "          'two': 3,\n",
      "          'one': 3,\n",
      "          'life': 3,\n",
      "          'due': 3,\n",
      "          'believe': 3,\n",
      "          'playing': 3,\n",
      "          'growth': 3,\n",
      "          'many': 2,\n",
      "          'french': 2,\n",
      "          'closure': 2,\n",
      "          'nwhile': 2,\n",
      "          'un': 2,\n",
      "          'coeur': 2,\n",
      "          'daniel': 2,\n",
      "          'auteuil': 2,\n",
      "          'craft': 2,\n",
      "          'squash': 2,\n",
      "          'wonder': 2,\n",
      "          'emotion': 2,\n",
      "          'emmanuelle': 2,\n",
      "          'beart': 2,\n",
      "          'meet': 2,\n",
      "          'become': 2,\n",
      "          'approach': 2,\n",
      "          'led': 2,\n",
      "          'may': 2,\n",
      "          'could': 2,\n",
      "          'successfully': 2,\n",
      "          'hints': 2,\n",
      "          'would': 2,\n",
      "          'character': 2,\n",
      "          'nthis': 2,\n",
      "          'ending': 2,\n",
      "          'accomplished': 2,\n",
      "          'ravel': 2,\n",
      "          'tension': 2,\n",
      "          'seen': 2,\n",
      "          'part': 2,\n",
      "          'beautiful': 2,\n",
      "          'say': 2,\n",
      "          'little': 2,\n",
      "          'attitude': 2,\n",
      "          'towards': 2,\n",
      "          'complicated': 2,\n",
      "          'american': 2,\n",
      "          'dislike': 1,\n",
      "          'lack': 1,\n",
      "          'possibly': 1,\n",
      "          'shallow': 1,\n",
      "          'ive': 1,\n",
      "          'often': 1,\n",
      "          'desire': 1,\n",
      "          'epiphany': 1,\n",
      "          'least': 1,\n",
      "          'resolution': 1,\n",
      "          'view': 1,\n",
      "          'nthere': 1,\n",
      "          'revelation': 1,\n",
      "          'en': 1,\n",
      "          'hiver': 1,\n",
      "          'traditional': 1,\n",
      "          'however': 1,\n",
      "          'incredibly': 1,\n",
      "          'successful': 1,\n",
      "          'passionate': 1,\n",
      "          'dramatization': 1,\n",
      "          'passiondenying': 1,\n",
      "          'protagonist': 1,\n",
      "          'maker': 1,\n",
      "          'nhe': 1,\n",
      "          'passionless': 1,\n",
      "          'surrounds': 1,\n",
      "          'except': 1,\n",
      "          'responsible': 1,\n",
      "          'producing': 1,\n",
      "          'neven': 1,\n",
      "          'boss': 1,\n",
      "          'andre': 1,\n",
      "          'dussollier': 1,\n",
      "          'manipulated': 1,\n",
      "          'association': 1,\n",
      "          'highlighted': 1,\n",
      "          'fact': 1,\n",
      "          'permits': 1,\n",
      "          'win': 1,\n",
      "          'close': 1,\n",
      "          'matches': 1,\n",
      "          'beginning': 1,\n",
      "          'closed': 1,\n",
      "          'solitary': 1,\n",
      "          'individual': 1,\n",
      "          'carefully': 1,\n",
      "          'depth': 1,\n",
      "          'behind': 1,\n",
      "          'enigmatic': 1,\n",
      "          'man': 1,\n",
      "          'ncamille': 1,\n",
      "          'kessler': 1,\n",
      "          'maximes': 1,\n",
      "          'nmaxime': 1,\n",
      "          'much': 1,\n",
      "          'plans': 1,\n",
      "          'leave': 1,\n",
      "          'wife': 1,\n",
      "          'nlike': 1,\n",
      "          'outwardly': 1,\n",
      "          'reserved': 1,\n",
      "          'sacrificing': 1,\n",
      "          'thought': 1,\n",
      "          'emerges': 1,\n",
      "          'nwhen': 1,\n",
      "          'recognition': 1,\n",
      "          'bonding': 1,\n",
      "          'individuals': 1,\n",
      "          'whereas': 1,\n",
      "          'submits': 1,\n",
      "          'wild': 1,\n",
      "          'interplay': 1,\n",
      "          'feels': 1,\n",
      "          'admits': 1,\n",
      "          'attracted': 1,\n",
      "          'ignores': 1,\n",
      "          'feelings': 1,\n",
      "          'help': 1,\n",
      "          'present': 1,\n",
      "          'nas': 1,\n",
      "          'progresses': 1,\n",
      "          'polarized': 1,\n",
      "          'views': 1,\n",
      "          'another': 1,\n",
      "          'nthese': 1,\n",
      "          'similar': 1,\n",
      "          'approaches': 1,\n",
      "          'initially': 1,\n",
      "          'react': 1,\n",
      "          'circumstance': 1,\n",
      "          'differently': 1,\n",
      "          'even': 1,\n",
      "          'rational': 1,\n",
      "          'tempestuous': 1,\n",
      "          'borders': 1,\n",
      "          'suffering': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'inability': 1,\n",
      "          'consummate': 1,\n",
      "          'perhaps': 1,\n",
      "          'surprising': 1,\n",
      "          'considering': 1,\n",
      "          'vocation': 1,\n",
      "          'genius': 1,\n",
      "          'well': 1,\n",
      "          'teacher': 1,\n",
      "          'apparently': 1,\n",
      "          'intolerance': 1,\n",
      "          'flaws': 1,\n",
      "          'nconsequently': 1,\n",
      "          'precision': 1,\n",
      "          'craftsmen': 1,\n",
      "          'instrument': 1,\n",
      "          'longer': 1,\n",
      "          'plays': 1,\n",
      "          'contrast': 1,\n",
      "          'given': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'aid': 1,\n",
      "          'manager': 1,\n",
      "          'progressed': 1,\n",
      "          'worlds': 1,\n",
      "          'finest': 1,\n",
      "          'submerging': 1,\n",
      "          'nduring': 1,\n",
      "          'course': 1,\n",
      "          'evolve': 1,\n",
      "          'struggle': 1,\n",
      "          'challenge': 1,\n",
      "          'attempts': 1,\n",
      "          'remain': 1,\n",
      "          'unchanged': 1,\n",
      "          'subtle': 1,\n",
      "          'transformation': 1,\n",
      "          'none': 1,\n",
      "          'obvious': 1,\n",
      "          'defeats': 1,\n",
      "          'included': 1,\n",
      "          'synopsis': 1,\n",
      "          'incredible': 1,\n",
      "          'namerican': 1,\n",
      "          'movies': 1,\n",
      "          'rare': 1,\n",
      "          'exceptions': 1,\n",
      "          'daresay': 1,\n",
      "          'foreign': 1,\n",
      "          'essence': 1,\n",
      "          'portrayal': 1,\n",
      "          'including': 1,\n",
      "          'death': 1,\n",
      "          'camilles': 1,\n",
      "          'stepahnes': 1,\n",
      "          'sure': 1,\n",
      "          'berardinelli': 1,\n",
      "          'says': 1,\n",
      "          'times': 1,\n",
      "          'difficult': 1,\n",
      "          'determine': 1,\n",
      "          'whether': 1,\n",
      "          'pitied': 1,\n",
      "          'vilified': 1,\n",
      "          'auteuils': 1,\n",
      "          'credit': 1,\n",
      "          'manages': 1,\n",
      "          'maintain': 1,\n",
      "          'uncertainty': 1,\n",
      "          'judging': 1,\n",
      "          'stephanes': 1,\n",
      "          'actions': 1,\n",
      "          'right': 1,\n",
      "          'wrong': 1,\n",
      "          'viewing': 1,\n",
      "          'accepting': 1,\n",
      "          'find': 1,\n",
      "          'appropriate': 1,\n",
      "          'unfortunately': 1,\n",
      "          'found': 1,\n",
      "          'last': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'unfulfilling': 1,\n",
      "          'portion': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'hurried': 1,\n",
      "          'soap': 1,\n",
      "          'operatype': 1,\n",
      "          'surge': 1,\n",
      "          'quite': 1,\n",
      "          'schubert': 1,\n",
      "          'mozart': 1,\n",
      "          'day': 1,\n",
      "          'synergism': 1,\n",
      "          'ravels': 1,\n",
      "          'screen': 1,\n",
      "          'best': 1,\n",
      "          'ever': 1,\n",
      "          'directing': 1,\n",
      "          'wonderful': 1,\n",
      "          'actors': 1,\n",
      "          'actresses': 1,\n",
      "          'excellent': 1,\n",
      "          'great': 1,\n",
      "          'sincerity': 1,\n",
      "          'warmth': 1,\n",
      "          'nemmanuelle': 1,\n",
      "          'bearts': 1,\n",
      "          'personality': 1,\n",
      "          'nand': 1,\n",
      "          'needless': 1,\n",
      "          'must': 1,\n",
      "          'nbesides': 1,\n",
      "          'near': 1,\n",
      "          'criticism': 1,\n",
      "          'cerebral': 1,\n",
      "          'happened': 1,\n",
      "          'changes': 1,\n",
      "          'occur': 1,\n",
      "          'happen': 1,\n",
      "          'deep': 1,\n",
      "          'psyches': 1,\n",
      "          'personalities': 1,\n",
      "          'situations': 1,\n",
      "          'end': 1,\n",
      "          'question': 1,\n",
      "          'accepted': 1,\n",
      "          'lot': 1,\n",
      "          'changed': 1,\n",
      "          'several': 1,\n",
      "          'possibilities': 1,\n",
      "          'unsure': 1,\n",
      "          'director': 1,\n",
      "          'espousing': 1,\n",
      "          'summary': 1,\n",
      "          'solely': 1,\n",
      "          'develop': 1,\n",
      "          'process': 1,\n",
      "          'nwhere': 1,\n",
      "          'juxtapose': 1,\n",
      "          'scenes': 1,\n",
      "          'greater': 1,\n",
      "          'walk': 1,\n",
      "          'americans': 1,\n",
      "          'preconceived': 1,\n",
      "          'notions': 1,\n",
      "          'translates': 1,\n",
      "          'viewed': 1,\n",
      "          'within': 1,\n",
      "          'native': 1,\n",
      "          'culture': 1,\n",
      "          'bringing': 1,\n",
      "          'preconceptions': 1,\n",
      "          'enjoyed': 1,\n",
      "          'welcome': 1,\n",
      "          'comments': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'henry': 5,\n",
      "          'life': 5,\n",
      "          'money': 4,\n",
      "          'ncarol': 4,\n",
      "          'hospital': 3,\n",
      "          'little': 3,\n",
      "          'begins': 3,\n",
      "          'something': 3,\n",
      "          'carols': 3,\n",
      "          'heist': 3,\n",
      "          'elderly': 2,\n",
      "          'bank': 2,\n",
      "          'robber': 2,\n",
      "          'nurse': 2,\n",
      "          'two': 2,\n",
      "          'newman': 2,\n",
      "          'nhe': 2,\n",
      "          'stashed': 2,\n",
      "          'away': 2,\n",
      "          'plan': 2,\n",
      "          'get': 2,\n",
      "          'nthis': 2,\n",
      "          'nwhen': 2,\n",
      "          'stroke': 2,\n",
      "          'fiorentino': 2,\n",
      "          'shes': 2,\n",
      "          'deadend': 2,\n",
      "          'wayne': 2,\n",
      "          'sense': 2,\n",
      "          'story': 2,\n",
      "          'nwayne': 2,\n",
      "          'equally': 2,\n",
      "          'many': 2,\n",
      "          'see': 2,\n",
      "          'nhowever': 2,\n",
      "          'may': 2,\n",
      "          'state': 2,\n",
      "          'maybe': 2,\n",
      "          'filled': 2,\n",
      "          'pushing': 2,\n",
      "          'lake': 2,\n",
      "          'presence': 2,\n",
      "          'situation': 2,\n",
      "          'nhenry': 2,\n",
      "          'needs': 2,\n",
      "          'fun': 2,\n",
      "          'keen': 1,\n",
      "          'wisdom': 1,\n",
      "          'naive': 1,\n",
      "          'ambitions': 1,\n",
      "          'sexy': 1,\n",
      "          'partnership': 1,\n",
      "          'blossoms': 1,\n",
      "          'fine': 1,\n",
      "          'components': 1,\n",
      "          'make': 1,\n",
      "          'modest': 1,\n",
      "          'caper': 1,\n",
      "          'adventure': 1,\n",
      "          'entitled': 1,\n",
      "          'paul': 1,\n",
      "          'famous': 1,\n",
      "          'criminal': 1,\n",
      "          'recently': 1,\n",
      "          'caught': 1,\n",
      "          'pulled': 1,\n",
      "          'dozens': 1,\n",
      "          'successful': 1,\n",
      "          'heists': 1,\n",
      "          'probably': 1,\n",
      "          'small': 1,\n",
      "          'fortune': 1,\n",
      "          'nalways': 1,\n",
      "          'shrewd': 1,\n",
      "          'thinker': 1,\n",
      "          'working': 1,\n",
      "          'jail': 1,\n",
      "          'involves': 1,\n",
      "          'years': 1,\n",
      "          'studying': 1,\n",
      "          'buddhism': 1,\n",
      "          'selfhypnosis': 1,\n",
      "          'prepared': 1,\n",
      "          'execute': 1,\n",
      "          'uses': 1,\n",
      "          'learned': 1,\n",
      "          'fake': 1,\n",
      "          'nnow': 1,\n",
      "          'seemingly': 1,\n",
      "          'twitching': 1,\n",
      "          'vegetable': 1,\n",
      "          'temporarily': 1,\n",
      "          'transferred': 1,\n",
      "          'staterun': 1,\n",
      "          'home': 1,\n",
      "          'linda': 1,\n",
      "          'cares': 1,\n",
      "          'nshes': 1,\n",
      "          'bright': 1,\n",
      "          'person': 1,\n",
      "          'good': 1,\n",
      "          'heart': 1,\n",
      "          'nyet': 1,\n",
      "          'miserable': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'exciting': 1,\n",
      "          'thing': 1,\n",
      "          'town': 1,\n",
      "          'fix': 1,\n",
      "          'cars': 1,\n",
      "          'nher': 1,\n",
      "          'days': 1,\n",
      "          'facility': 1,\n",
      "          'spent': 1,\n",
      "          'leading': 1,\n",
      "          'wheelchair': 1,\n",
      "          'calisthenics': 1,\n",
      "          'nworse': 1,\n",
      "          'relationship': 1,\n",
      "          'highschool': 1,\n",
      "          'sweetheart': 1,\n",
      "          'dylan': 1,\n",
      "          'mcdermott': 1,\n",
      "          'nthey': 1,\n",
      "          'became': 1,\n",
      "          'couple': 1,\n",
      "          'king': 1,\n",
      "          'queen': 1,\n",
      "          'prom': 1,\n",
      "          'nto': 1,\n",
      "          'made': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'nbut': 1,\n",
      "          'different': 1,\n",
      "          'seems': 1,\n",
      "          'bored': 1,\n",
      "          'content': 1,\n",
      "          'enough': 1,\n",
      "          'stay': 1,\n",
      "          'put': 1,\n",
      "          'nwaynes': 1,\n",
      "          'greatest': 1,\n",
      "          'ambition': 1,\n",
      "          'become': 1,\n",
      "          'night': 1,\n",
      "          'shift': 1,\n",
      "          'supervising': 1,\n",
      "          'foreman': 1,\n",
      "          'feels': 1,\n",
      "          'lifeless': 1,\n",
      "          'patients': 1,\n",
      "          'never': 1,\n",
      "          'anywhere': 1,\n",
      "          'else': 1,\n",
      "          'doesnt': 1,\n",
      "          'opportunities': 1,\n",
      "          'falls': 1,\n",
      "          'care': 1,\n",
      "          'outlook': 1,\n",
      "          'change': 1,\n",
      "          'medical': 1,\n",
      "          'reports': 1,\n",
      "          'suffered': 1,\n",
      "          'massive': 1,\n",
      "          'however': 1,\n",
      "          'grow': 1,\n",
      "          'suspicious': 1,\n",
      "          'faking': 1,\n",
      "          'nmaybe': 1,\n",
      "          'learn': 1,\n",
      "          'opening': 1,\n",
      "          '30': 1,\n",
      "          'minutes': 1,\n",
      "          'hilarious': 1,\n",
      "          'attempts': 1,\n",
      "          'carol': 1,\n",
      "          'trying': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'nand': 1,\n",
      "          'resuscitation': 1,\n",
      "          'techniques': 1,\n",
      "          'nperhaps': 1,\n",
      "          'erotic': 1,\n",
      "          'lapdance': 1,\n",
      "          'might': 1,\n",
      "          'stir': 1,\n",
      "          'senses': 1,\n",
      "          'nif': 1,\n",
      "          'fails': 1,\n",
      "          'shell': 1,\n",
      "          'try': 1,\n",
      "          'shock': 1,\n",
      "          'therapy': 1,\n",
      "          '20foot': 1,\n",
      "          'high': 1,\n",
      "          'pier': 1,\n",
      "          'cold': 1,\n",
      "          'finally': 1,\n",
      "          'comes': 1,\n",
      "          'selftrance': 1,\n",
      "          'movies': 1,\n",
      "          'direction': 1,\n",
      "          'changes': 1,\n",
      "          'though': 1,\n",
      "          'remains': 1,\n",
      "          'entertaining': 1,\n",
      "          'sees': 1,\n",
      "          'charisma': 1,\n",
      "          'selfassuredness': 1,\n",
      "          'nshe': 1,\n",
      "          'invigorated': 1,\n",
      "          'commanding': 1,\n",
      "          'refreshed': 1,\n",
      "          'vibrancy': 1,\n",
      "          'course': 1,\n",
      "          'puts': 1,\n",
      "          'odd': 1,\n",
      "          'bond': 1,\n",
      "          'grows': 1,\n",
      "          'stronger': 1,\n",
      "          'enter': 1,\n",
      "          'agreement': 1,\n",
      "          'rob': 1,\n",
      "          'armored': 1,\n",
      "          'car': 1,\n",
      "          'unable': 1,\n",
      "          'retrieve': 1,\n",
      "          'original': 1,\n",
      "          'stash': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'ticket': 1,\n",
      "          'better': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'helps': 1,\n",
      "          'nonetheless': 1,\n",
      "          'lack': 1,\n",
      "          'commitment': 1,\n",
      "          'threatens': 1,\n",
      "          'success': 1,\n",
      "          'sequence': 1,\n",
      "          'suspenseful': 1,\n",
      "          'well': 1,\n",
      "          'paced': 1,\n",
      "          'casts': 1,\n",
      "          'uneasy': 1,\n",
      "          'feeling': 1,\n",
      "          'horribly': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'nwhere': 1,\n",
      "          'spotlight': 1,\n",
      "          'showcase': 1,\n",
      "          'nifty': 1,\n",
      "          'nnewman': 1,\n",
      "          'real': 1,\n",
      "          'joy': 1,\n",
      "          'film': 1,\n",
      "          'adroitly': 1,\n",
      "          'showing': 1,\n",
      "          'age': 1,\n",
      "          '75': 1,\n",
      "          'hes': 1,\n",
      "          'still': 1,\n",
      "          'really': 1,\n",
      "          'hot': 1,\n",
      "          'stuff': 1,\n",
      "          'possesses': 1,\n",
      "          'sly': 1,\n",
      "          'smile': 1,\n",
      "          'displays': 1,\n",
      "          'dominating': 1,\n",
      "          'attitude': 1,\n",
      "          'projects': 1,\n",
      "          'demeanor': 1,\n",
      "          'undeniably': 1,\n",
      "          'attractive': 1,\n",
      "          'nfiorentino': 1,\n",
      "          'also': 1,\n",
      "          'nyou': 1,\n",
      "          'root': 1,\n",
      "          'despite': 1,\n",
      "          'amorality': 1,\n",
      "          'nsure': 1,\n",
      "          'wants': 1,\n",
      "          'commit': 1,\n",
      "          'robbery': 1,\n",
      "          'compunction': 1,\n",
      "          'wheelchairstricken': 1,\n",
      "          'man': 1,\n",
      "          'escape': 1,\n",
      "          'world': 1,\n",
      "          'drastic': 1,\n",
      "          'nwith': 1,\n",
      "          'charismatic': 1,\n",
      "          'characters': 1,\n",
      "          'hard': 1,\n",
      "          'ignore': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cast': 5,\n",
      "          'film': 5,\n",
      "          'twilight': 4,\n",
      "          'newman': 3,\n",
      "          'hackman': 3,\n",
      "          'sarandon': 3,\n",
      "          'former': 3,\n",
      "          'harrys': 3,\n",
      "          'theres': 3,\n",
      "          'lot': 3,\n",
      "          'mystery': 2,\n",
      "          'stars': 2,\n",
      "          'detective': 2,\n",
      "          'harry': 2,\n",
      "          'jack': 2,\n",
      "          'ames': 2,\n",
      "          'actors': 2,\n",
      "          'plays': 2,\n",
      "          'nstockard': 2,\n",
      "          'nwith': 2,\n",
      "          'worth': 2,\n",
      "          'solid': 2,\n",
      "          'plot': 2,\n",
      "          'nthe': 2,\n",
      "          'little': 2,\n",
      "          'character': 2,\n",
      "          'time': 2,\n",
      "          'nits': 2,\n",
      "          'flaw': 2,\n",
      "          'robert': 1,\n",
      "          'benton': 1,\n",
      "          'assembled': 1,\n",
      "          'stellar': 1,\n",
      "          'mature': 1,\n",
      "          'latest': 1,\n",
      "          'feature': 1,\n",
      "          'noir': 1,\n",
      "          'set': 1,\n",
      "          'amid': 1,\n",
      "          'fading': 1,\n",
      "          'hollywood': 1,\n",
      "          'npaul': 1,\n",
      "          'retired': 1,\n",
      "          'ross': 1,\n",
      "          'nharry': 1,\n",
      "          'spent': 1,\n",
      "          'last': 1,\n",
      "          'couple': 1,\n",
      "          'years': 1,\n",
      "          'odd': 1,\n",
      "          'jobs': 1,\n",
      "          'catherine': 1,\n",
      "          'gene': 1,\n",
      "          'susan': 1,\n",
      "          'pair': 1,\n",
      "          'married': 1,\n",
      "          'fallen': 1,\n",
      "          'limelight': 1,\n",
      "          'nwhen': 1,\n",
      "          'sends': 1,\n",
      "          'routine': 1,\n",
      "          'delivery': 1,\n",
      "          'job': 1,\n",
      "          'however': 1,\n",
      "          'old': 1,\n",
      "          'instincts': 1,\n",
      "          'kick': 1,\n",
      "          'nsoon': 1,\n",
      "          'wading': 1,\n",
      "          'friendships': 1,\n",
      "          'lives': 1,\n",
      "          'line': 1,\n",
      "          'longer': 1,\n",
      "          'knows': 1,\n",
      "          'trust': 1,\n",
      "          'nthere': 1,\n",
      "          'plenty': 1,\n",
      "          'familiar': 1,\n",
      "          'faces': 1,\n",
      "          'throughout': 1,\n",
      "          'addition': 1,\n",
      "          'njames': 1,\n",
      "          'garner': 1,\n",
      "          'raymond': 1,\n",
      "          'hope': 1,\n",
      "          'cop': 1,\n",
      "          'one': 1,\n",
      "          'best': 1,\n",
      "          'friends': 1,\n",
      "          'channing': 1,\n",
      "          'verna': 1,\n",
      "          'partner': 1,\n",
      "          'possibly': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'nreese': 1,\n",
      "          'witherspoon': 1,\n",
      "          'mel': 1,\n",
      "          'distrustful': 1,\n",
      "          'daughter': 1,\n",
      "          'liev': 1,\n",
      "          'schrieber': 1,\n",
      "          'scuzzy': 1,\n",
      "          'boyfriend': 1,\n",
      "          'ngiancarlo': 1,\n",
      "          'esposito': 1,\n",
      "          'appears': 1,\n",
      "          'bumbling': 1,\n",
      "          'protigi': 1,\n",
      "          'john': 1,\n",
      "          'spencer': 1,\n",
      "          'suspicious': 1,\n",
      "          'police': 1,\n",
      "          'captain': 1,\n",
      "          'like': 1,\n",
      "          'almost': 1,\n",
      "          'watching': 1,\n",
      "          'stargaze': 1,\n",
      "          'nluckily': 1,\n",
      "          'sort': 1,\n",
      "          'recognition': 1,\n",
      "          'ceremony': 1,\n",
      "          'ntwilight': 1,\n",
      "          'noirish': 1,\n",
      "          'nit': 1,\n",
      "          'may': 1,\n",
      "          'many': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'classics': 1,\n",
      "          'much': 1,\n",
      "          'passes': 1,\n",
      "          'days': 1,\n",
      "          'major': 1,\n",
      "          'members': 1,\n",
      "          'deliver': 1,\n",
      "          'strong': 1,\n",
      "          'performances': 1,\n",
      "          'expected': 1,\n",
      "          'caliber': 1,\n",
      "          'nhowever': 1,\n",
      "          'none': 1,\n",
      "          'extra': 1,\n",
      "          'oomph': 1,\n",
      "          'would': 1,\n",
      "          'make': 1,\n",
      "          'memorable': 1,\n",
      "          'supporting': 1,\n",
      "          'enjoyable': 1,\n",
      "          'underdrawn': 1,\n",
      "          'channings': 1,\n",
      "          'particular': 1,\n",
      "          'cipher': 1,\n",
      "          'ntheres': 1,\n",
      "          'takes': 1,\n",
      "          'describe': 1,\n",
      "          'minor': 1,\n",
      "          'irritating': 1,\n",
      "          'good': 1,\n",
      "          'recommend': 1,\n",
      "          'biggest': 1,\n",
      "          'actually': 1,\n",
      "          'short': 1,\n",
      "          'running': 1,\n",
      "          'nat': 1,\n",
      "          'slim': 1,\n",
      "          '94': 1,\n",
      "          'minutes': 1,\n",
      "          'stuff': 1,\n",
      "          'thats': 1,\n",
      "          'packed': 1,\n",
      "          'awfully': 1,\n",
      "          'small': 1,\n",
      "          'package': 1,\n",
      "          'nstill': 1,\n",
      "          'chance': 1,\n",
      "          'see': 1,\n",
      "          'working': 1,\n",
      "          'together': 1,\n",
      "          'cramp': 1,\n",
      "          'two': 1,\n",
      "          'npos': 1}),\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Counter({'film': 5,\n",
      "          'lots': 3,\n",
      "          'good': 3,\n",
      "          'anyone': 2,\n",
      "          'men': 2,\n",
      "          'stuff': 2,\n",
      "          'nin': 2,\n",
      "          'walter': 2,\n",
      "          'hill': 2,\n",
      "          'script': 2,\n",
      "          'ni': 2,\n",
      "          'always': 2,\n",
      "          'guys': 2,\n",
      "          'movie': 2,\n",
      "          'characters': 2,\n",
      "          'got': 2,\n",
      "          'pretty': 2,\n",
      "          'secret': 2,\n",
      "          'army': 2,\n",
      "          'drug': 2,\n",
      "          'texas': 2,\n",
      "          'look': 2,\n",
      "          'keep': 2,\n",
      "          'warning': 1,\n",
      "          'offended': 1,\n",
      "          'blatant': 1,\n",
      "          'leering': 1,\n",
      "          'machismo': 1,\n",
      "          'better': 1,\n",
      "          'avoid': 1,\n",
      "          'blood': 1,\n",
      "          'guts': 1,\n",
      "          'manoetmano': 1,\n",
      "          'words': 1,\n",
      "          'nwith': 1,\n",
      "          'john': 1,\n",
      "          'milius': 1,\n",
      "          'picture': 1,\n",
      "          'getting': 1,\n",
      "          'together': 1,\n",
      "          'producing': 1,\n",
      "          'armwrestling': 1,\n",
      "          'matches': 1,\n",
      "          'nthese': 1,\n",
      "          'films': 1,\n",
      "          'contain': 1,\n",
      "          'male': 1,\n",
      "          'hard': 1,\n",
      "          'time': 1,\n",
      "          'identifying': 1,\n",
      "          'probably': 1,\n",
      "          'due': 1,\n",
      "          'likelihood': 1,\n",
      "          'meeting': 1,\n",
      "          'would': 1,\n",
      "          'result': 1,\n",
      "          'arm': 1,\n",
      "          'ripped': 1,\n",
      "          'subsequent': 1,\n",
      "          'death': 1,\n",
      "          'beating': 1,\n",
      "          'said': 1,\n",
      "          'limb': 1,\n",
      "          'nand': 1,\n",
      "          'tough': 1,\n",
      "          'galore': 1,\n",
      "          'drugrunning': 1,\n",
      "          'banditos': 1,\n",
      "          'dozens': 1,\n",
      "          'dirty': 1,\n",
      "          'sweaty': 1,\n",
      "          'illtempered': 1,\n",
      "          'overall': 1,\n",
      "          'task': 1,\n",
      "          'force': 1,\n",
      "          'commandos': 1,\n",
      "          'area': 1,\n",
      "          'coverup': 1,\n",
      "          'supposedly': 1,\n",
      "          'connection': 1,\n",
      "          'government': 1,\n",
      "          'runners': 1,\n",
      "          'shitkicking': 1,\n",
      "          'dirt': 1,\n",
      "          'farmers': 1,\n",
      "          'whod': 1,\n",
      "          'soon': 1,\n",
      "          'shoot': 1,\n",
      "          'eyes': 1,\n",
      "          'particular': 1,\n",
      "          'nick': 1,\n",
      "          'nolte': 1,\n",
      "          'one': 1,\n",
      "          'hardass': 1,\n",
      "          'ranger': 1,\n",
      "          'powers': 1,\n",
      "          'boothe': 1,\n",
      "          'kingpin': 1,\n",
      "          'michael': 1,\n",
      "          'ironsides': 1,\n",
      "          'leader': 1,\n",
      "          'rip': 1,\n",
      "          'torn': 1,\n",
      "          'local': 1,\n",
      "          'sheriff': 1,\n",
      "          'ntorn': 1,\n",
      "          'sympathetic': 1,\n",
      "          'figure': 1,\n",
      "          'group': 1,\n",
      "          'smiles': 1,\n",
      "          'shooting': 1,\n",
      "          'nas': 1,\n",
      "          'women': 1,\n",
      "          'nwell': 1,\n",
      "          'ive': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'jane': 1,\n",
      "          'fonda': 1,\n",
      "          'meryl': 1,\n",
      "          'streep': 1,\n",
      "          'rate': 1,\n",
      "          'doubt': 1,\n",
      "          'ever': 1,\n",
      "          'nwomen': 1,\n",
      "          'exist': 1,\n",
      "          'comfort': 1,\n",
      "          'man': 1,\n",
      "          'get': 1,\n",
      "          'argued': 1,\n",
      "          'ngosh': 1,\n",
      "          'njust': 1,\n",
      "          'like': 1,\n",
      "          'old': 1,\n",
      "          'days': 1,\n",
      "          'nfrankly': 1,\n",
      "          'accept': 1,\n",
      "          'premise': 1,\n",
      "          'take': 1,\n",
      "          'macho': 1,\n",
      "          'nthe': 1,\n",
      "          'cinematography': 1,\n",
      "          'excellent': 1,\n",
      "          'cast': 1,\n",
      "          'broad': 1,\n",
      "          'texture': 1,\n",
      "          'quite': 1,\n",
      "          'lets': 1,\n",
      "          'whats': 1,\n",
      "          'happening': 1,\n",
      "          'without': 1,\n",
      "          'spelling': 1,\n",
      "          'appreciate': 1,\n",
      "          'makes': 1,\n",
      "          'think': 1,\n",
      "          'nfinally': 1,\n",
      "          'theres': 1,\n",
      "          'sam': 1,\n",
      "          'peckinpah': 1,\n",
      "          'slowmotion': 1,\n",
      "          'shootups': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'emotional': 4,\n",
      "          'nbut': 3,\n",
      "          'years': 2,\n",
      "          'cup': 2,\n",
      "          'screen': 2,\n",
      "          'nin': 2,\n",
      "          'nyet': 2,\n",
      "          'love': 2,\n",
      "          'story': 2,\n",
      "          'whose': 2,\n",
      "          'character': 2,\n",
      "          'memory': 2,\n",
      "          'help': 2,\n",
      "          'never': 2,\n",
      "          'learn': 2,\n",
      "          'enough': 2,\n",
      "          'man': 2,\n",
      "          'feel': 2,\n",
      "          'remains': 2,\n",
      "          'many': 2,\n",
      "          'close': 2,\n",
      "          'time': 2,\n",
      "          'accepting': 1,\n",
      "          'oscar': 1,\n",
      "          'producer': 1,\n",
      "          'best': 1,\n",
      "          'picture': 1,\n",
      "          'winner': 1,\n",
      "          'saul': 1,\n",
      "          'zaentz': 1,\n",
      "          'remarked': 1,\n",
      "          'runneth': 1,\n",
      "          'none': 1,\n",
      "          'could': 1,\n",
      "          'almost': 1,\n",
      "          'say': 1,\n",
      "          'muchprized': 1,\n",
      "          'nrarely': 1,\n",
      "          'overflowing': 1,\n",
      "          'potent': 1,\n",
      "          'imagery': 1,\n",
      "          'symbolism': 1,\n",
      "          'ideas': 1,\n",
      "          'metaphors': 1,\n",
      "          'complex': 1,\n",
      "          'literate': 1,\n",
      "          'storytelling': 1,\n",
      "          'possessed': 1,\n",
      "          'intelligence': 1,\n",
      "          'invites': 1,\n",
      "          'even': 1,\n",
      "          'demands': 1,\n",
      "          'constant': 1,\n",
      "          'scrutiny': 1,\n",
      "          'acuity': 1,\n",
      "          'perception': 1,\n",
      "          'observation': 1,\n",
      "          'must': 1,\n",
      "          'somehow': 1,\n",
      "          'yield': 1,\n",
      "          'truth': 1,\n",
      "          'short': 1,\n",
      "          'antithesis': 1,\n",
      "          'things': 1,\n",
      "          'hollywood': 1,\n",
      "          'surfeit': 1,\n",
      "          'signals': 1,\n",
      "          'made': 1,\n",
      "          'serve': 1,\n",
      "          'rather': 1,\n",
      "          'pale': 1,\n",
      "          'thinly': 1,\n",
      "          'realized': 1,\n",
      "          'impact': 1,\n",
      "          'dry': 1,\n",
      "          'desert': 1,\n",
      "          'wind': 1,\n",
      "          'nralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'title': 1,\n",
      "          'amnesiac': 1,\n",
      "          'burn': 1,\n",
      "          'victim': 1,\n",
      "          'gradual': 1,\n",
      "          'return': 1,\n",
      "          'particularly': 1,\n",
      "          'ostensible': 1,\n",
      "          'focus': 1,\n",
      "          'despite': 1,\n",
      "          'use': 1,\n",
      "          'numerous': 1,\n",
      "          'flashbacks': 1,\n",
      "          'put': 1,\n",
      "          'pieces': 1,\n",
      "          'personal': 1,\n",
      "          'puzzle': 1,\n",
      "          'together': 1,\n",
      "          'much': 1,\n",
      "          'empathy': 1,\n",
      "          'nhis': 1,\n",
      "          'life': 1,\n",
      "          'begins': 1,\n",
      "          'essential': 1,\n",
      "          'clue': 1,\n",
      "          'withheld': 1,\n",
      "          'nthe': 1,\n",
      "          'easily': 1,\n",
      "          'said': 1,\n",
      "          'every': 1,\n",
      "          'njuliette': 1,\n",
      "          'binoches': 1,\n",
      "          'nurse': 1,\n",
      "          'comes': 1,\n",
      "          'gets': 1,\n",
      "          'heart': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'early': 1,\n",
      "          'scarred': 1,\n",
      "          'deaths': 1,\n",
      "          'understand': 1,\n",
      "          'eager': 1,\n",
      "          'escape': 1,\n",
      "          'company': 1,\n",
      "          'comrades': 1,\n",
      "          'order': 1,\n",
      "          'seek': 1,\n",
      "          'refuge': 1,\n",
      "          'convalescence': 1,\n",
      "          'mysterious': 1,\n",
      "          'disfigured': 1,\n",
      "          'dying': 1,\n",
      "          'stranger': 1,\n",
      "          'neven': 1,\n",
      "          'information': 1,\n",
      "          'imparted': 1,\n",
      "          'quickly': 1,\n",
      "          'cursory': 1,\n",
      "          'fashion': 1,\n",
      "          'however': 1,\n",
      "          'verges': 1,\n",
      "          'comical': 1,\n",
      "          'nwith': 1,\n",
      "          'characters': 1,\n",
      "          'enjoying': 1,\n",
      "          'little': 1,\n",
      "          'films': 1,\n",
      "          '160': 1,\n",
      "          'minutes': 1,\n",
      "          'taxing': 1,\n",
      "          'something': 1,\n",
      "          'captivating': 1,\n",
      "          'sensibility': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'couldnt': 1,\n",
      "          'greatness': 1,\n",
      "          'air': 1,\n",
      "          'nhints': 1,\n",
      "          'everywhere': 1,\n",
      "          'hates': 1,\n",
      "          'ownership': 1,\n",
      "          'wants': 1,\n",
      "          'desperately': 1,\n",
      "          'possess': 1,\n",
      "          'lover': 1,\n",
      "          'ancient': 1,\n",
      "          'cave': 1,\n",
      "          'paintings': 1,\n",
      "          'swimmers': 1,\n",
      "          'copied': 1,\n",
      "          'casually': 1,\n",
      "          'modernday': 1,\n",
      "          'swimmer': 1,\n",
      "          'sahara': 1,\n",
      "          'way': 1,\n",
      "          'shifting': 1,\n",
      "          'sands': 1,\n",
      "          'obliterate': 1,\n",
      "          'everything': 1,\n",
      "          'completely': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'nthere': 1,\n",
      "          'latent': 1,\n",
      "          'meaning': 1,\n",
      "          'supply': 1,\n",
      "          'college': 1,\n",
      "          'students': 1,\n",
      "          'paper': 1,\n",
      "          'topics': 1,\n",
      "          'ultimately': 1,\n",
      "          'truths': 1,\n",
      "          'writerdirector': 1,\n",
      "          'anthony': 1,\n",
      "          'minghella': 1,\n",
      "          'grasping': 1,\n",
      "          'revealed': 1,\n",
      "          'end': 1,\n",
      "          'left': 1,\n",
      "          'impression': 1,\n",
      "          'witnessed': 1,\n",
      "          'quite': 1,\n",
      "          'oxymoron': 1,\n",
      "          'haunting': 1,\n",
      "          'bore': 1,\n",
      "          'nbore': 1,\n",
      "          'perhaps': 1,\n",
      "          'strong': 1,\n",
      "          'word': 1,\n",
      "          'drinking': 1,\n",
      "          'rich': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'slightly': 1,\n",
      "          'halffull': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nhe': 6,\n",
      "          'bank': 6,\n",
      "          'coyle': 5,\n",
      "          'gives': 5,\n",
      "          'nthe': 4,\n",
      "          'dillon': 4,\n",
      "          'young': 4,\n",
      "          'foley': 4,\n",
      "          'underworld': 3,\n",
      "          'film': 3,\n",
      "          'mob': 3,\n",
      "          'boss': 3,\n",
      "          'new': 3,\n",
      "          'hampshire': 3,\n",
      "          'something': 3,\n",
      "          'sentence': 3,\n",
      "          'robbers': 3,\n",
      "          'even': 3,\n",
      "          'long': 3,\n",
      "          'takes': 3,\n",
      "          'look': 2,\n",
      "          'boston': 2,\n",
      "          'nit': 2,\n",
      "          'mitchum': 2,\n",
      "          'got': 2,\n",
      "          'caught': 2,\n",
      "          'life': 2,\n",
      "          'could': 2,\n",
      "          'prison': 2,\n",
      "          'go': 2,\n",
      "          'cut': 2,\n",
      "          'deal': 2,\n",
      "          'live': 2,\n",
      "          'operate': 2,\n",
      "          'going': 2,\n",
      "          'family': 2,\n",
      "          'friend': 2,\n",
      "          'agent': 2,\n",
      "          'lowlevel': 2,\n",
      "          'getting': 2,\n",
      "          'jail': 2,\n",
      "          'guns': 2,\n",
      "          'like': 2,\n",
      "          'nbut': 2,\n",
      "          'take': 2,\n",
      "          'next': 2,\n",
      "          'bruin': 2,\n",
      "          'hockey': 2,\n",
      "          'nmitchum': 2,\n",
      "          'bleak': 1,\n",
      "          'operates': 1,\n",
      "          'based': 1,\n",
      "          'bestseller': 1,\n",
      "          'george': 1,\n",
      "          'v': 1,\n",
      "          'higgins': 1,\n",
      "          'seen': 1,\n",
      "          'weary': 1,\n",
      "          'eyes': 1,\n",
      "          '51yearold': 1,\n",
      "          'smalltime': 1,\n",
      "          'hood': 1,\n",
      "          'eddie': 1,\n",
      "          'fingers': 1,\n",
      "          'nickname': 1,\n",
      "          'element': 1,\n",
      "          'shut': 1,\n",
      "          'draw': 1,\n",
      "          'hand': 1,\n",
      "          'punishment': 1,\n",
      "          'nhis': 1,\n",
      "          'current': 1,\n",
      "          'dilemma': 1,\n",
      "          'running': 1,\n",
      "          'illegal': 1,\n",
      "          'booze': 1,\n",
      "          'truck': 1,\n",
      "          'faces': 1,\n",
      "          '35': 1,\n",
      "          'year': 1,\n",
      "          'stretch': 1,\n",
      "          'feels': 1,\n",
      "          'since': 1,\n",
      "          'doesnt': 1,\n",
      "          'think': 1,\n",
      "          'survive': 1,\n",
      "          'age': 1,\n",
      "          'also': 1,\n",
      "          'concerned': 1,\n",
      "          'wife': 1,\n",
      "          'three': 1,\n",
      "          'kids': 1,\n",
      "          'welfare': 1,\n",
      "          'gotten': 1,\n",
      "          'turned': 1,\n",
      "          'figured': 1,\n",
      "          'would': 1,\n",
      "          'never': 1,\n",
      "          'currently': 1,\n",
      "          'gunrunning': 1,\n",
      "          'gang': 1,\n",
      "          'successful': 1,\n",
      "          'led': 1,\n",
      "          'scalise': 1,\n",
      "          'rocco': 1,\n",
      "          'masked': 1,\n",
      "          'always': 1,\n",
      "          'first': 1,\n",
      "          'managers': 1,\n",
      "          'house': 1,\n",
      "          'holding': 1,\n",
      "          'hostage': 1,\n",
      "          'force': 1,\n",
      "          'manager': 1,\n",
      "          'open': 1,\n",
      "          'vault': 1,\n",
      "          'else': 1,\n",
      "          'gets': 1,\n",
      "          'non': 1,\n",
      "          'one': 1,\n",
      "          'heists': 1,\n",
      "          'kill': 1,\n",
      "          'officer': 1,\n",
      "          'pushes': 1,\n",
      "          'alarm': 1,\n",
      "          'ncoyles': 1,\n",
      "          'best': 1,\n",
      "          'boyle': 1,\n",
      "          'hit': 1,\n",
      "          'man': 1,\n",
      "          'working': 1,\n",
      "          'bartender': 1,\n",
      "          'permanent': 1,\n",
      "          'stoolie': 1,\n",
      "          'treasury': 1,\n",
      "          'agents': 1,\n",
      "          'aggressive': 1,\n",
      "          'named': 1,\n",
      "          'jordan': 1,\n",
      "          'likes': 1,\n",
      "          'called': 1,\n",
      "          'uncle': 1,\n",
      "          'breathing': 1,\n",
      "          'room': 1,\n",
      "          'crime': 1,\n",
      "          'activities': 1,\n",
      "          'work': 1,\n",
      "          'bar': 1,\n",
      "          'though': 1,\n",
      "          'record': 1,\n",
      "          'keeps': 1,\n",
      "          'valuable': 1,\n",
      "          'info': 1,\n",
      "          'things': 1,\n",
      "          'happening': 1,\n",
      "          'gangs': 1,\n",
      "          'nwith': 1,\n",
      "          'sentencing': 1,\n",
      "          'date': 1,\n",
      "          'closing': 1,\n",
      "          'already': 1,\n",
      "          'convicted': 1,\n",
      "          'bail': 1,\n",
      "          'looking': 1,\n",
      "          'angle': 1,\n",
      "          'time': 1,\n",
      "          'contacts': 1,\n",
      "          'inconsequential': 1,\n",
      "          'tips': 1,\n",
      "          'decides': 1,\n",
      "          'goes': 1,\n",
      "          'grain': 1,\n",
      "          'nthinking': 1,\n",
      "          'made': 1,\n",
      "          'ironclad': 1,\n",
      "          'get': 1,\n",
      "          'sentenced': 1,\n",
      "          'squashed': 1,\n",
      "          'place': 1,\n",
      "          'sale': 1,\n",
      "          'machine': 1,\n",
      "          'knowing': 1,\n",
      "          'fullwell': 1,\n",
      "          'hustler': 1,\n",
      "          'keats': 1,\n",
      "          'selling': 1,\n",
      "          'lot': 1,\n",
      "          'youth': 1,\n",
      "          'arrested': 1,\n",
      "          'facing': 1,\n",
      "          'tells': 1,\n",
      "          'arrests': 1,\n",
      "          'gundealer': 1,\n",
      "          'wants': 1,\n",
      "          'away': 1,\n",
      "          'want': 1,\n",
      "          'fulltime': 1,\n",
      "          'informer': 1,\n",
      "          'nwarning': 1,\n",
      "          'spoiler': 1,\n",
      "          'follows': 1,\n",
      "          'paragraph': 1,\n",
      "          'setup': 1,\n",
      "          'act': 1,\n",
      "          'convinced': 1,\n",
      "          'contract': 1,\n",
      "          'care': 1,\n",
      "          'contemptuous': 1,\n",
      "          'befriends': 1,\n",
      "          'treats': 1,\n",
      "          'steak': 1,\n",
      "          'dinner': 1,\n",
      "          'game': 1,\n",
      "          'boozed': 1,\n",
      "          'ncoyle': 1,\n",
      "          'star': 1,\n",
      "          'bobby': 1,\n",
      "          'orr': 1,\n",
      "          'upper': 1,\n",
      "          'deck': 1,\n",
      "          'seat': 1,\n",
      "          'says': 1,\n",
      "          'future': 1,\n",
      "          'hes': 1,\n",
      "          'greatest': 1,\n",
      "          'player': 1,\n",
      "          'world': 1,\n",
      "          'ndillon': 1,\n",
      "          'drunken': 1,\n",
      "          'drive': 1,\n",
      "          'executes': 1,\n",
      "          'mobstyle': 1,\n",
      "          'kid': 1,\n",
      "          'works': 1,\n",
      "          'dump': 1,\n",
      "          'body': 1,\n",
      "          'bad': 1,\n",
      "          'section': 1,\n",
      "          'nthis': 1,\n",
      "          'great': 1,\n",
      "          'atmospheric': 1,\n",
      "          'due': 1,\n",
      "          'realistic': 1,\n",
      "          'noir': 1,\n",
      "          'mood': 1,\n",
      "          'sets': 1,\n",
      "          'hopeless': 1,\n",
      "          'situation': 1,\n",
      "          'criminals': 1,\n",
      "          'forced': 1,\n",
      "          'fear': 1,\n",
      "          'uncertainty': 1,\n",
      "          'horrible': 1,\n",
      "          'thing': 1,\n",
      "          'happen': 1,\n",
      "          'city': 1,\n",
      "          'streets': 1,\n",
      "          'ugly': 1,\n",
      "          'gangsters': 1,\n",
      "          'shown': 1,\n",
      "          'capable': 1,\n",
      "          'action': 1,\n",
      "          'defend': 1,\n",
      "          'interests': 1,\n",
      "          'whether': 1,\n",
      "          'betrayal': 1,\n",
      "          'murder': 1,\n",
      "          'nthere': 1,\n",
      "          'fatalistic': 1,\n",
      "          'feel': 1,\n",
      "          'lives': 1,\n",
      "          'robert': 1,\n",
      "          'wears': 1,\n",
      "          'easily': 1,\n",
      "          'others': 1,\n",
      "          'put': 1,\n",
      "          'hat': 1,\n",
      "          'intensity': 1,\n",
      "          'purpose': 1,\n",
      "          'needs': 1,\n",
      "          'overcomes': 1,\n",
      "          'thin': 1,\n",
      "          'plot': 1,\n",
      "          'makes': 1,\n",
      "          'see': 1,\n",
      "          'characters': 1,\n",
      "          'without': 1,\n",
      "          'false': 1,\n",
      "          'sympathy': 1,\n",
      "          'loser': 1,\n",
      "          'lived': 1,\n",
      "          'tribute': 1,\n",
      "          'skills': 1,\n",
      "          'survivor': 1,\n",
      "          'end': 1,\n",
      "          'loses': 1,\n",
      "          'respect': 1,\n",
      "          'among': 1,\n",
      "          'friends': 1,\n",
      "          'standup': 1,\n",
      "          'guy': 1,\n",
      "          'wrestled': 1,\n",
      "          'code': 1,\n",
      "          'honor': 1,\n",
      "          'lost': 1,\n",
      "          'battle': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'footloose': 3,\n",
      "          'nthe': 3,\n",
      "          'bacon': 3,\n",
      "          'lithgow': 3,\n",
      "          'one': 2,\n",
      "          'nand': 2,\n",
      "          'town': 2,\n",
      "          'dancing': 2,\n",
      "          'daughter': 2,\n",
      "          'singer': 2,\n",
      "          'cast': 2,\n",
      "          'start': 2,\n",
      "          'rebel': 2,\n",
      "          'playing': 2,\n",
      "          'would': 2,\n",
      "          'music': 2,\n",
      "          'little': 2,\n",
      "          'goal': 1,\n",
      "          'mind': 1,\n",
      "          'reel': 1,\n",
      "          'audience': 1,\n",
      "          'cheesy': 1,\n",
      "          'sentiment': 1,\n",
      "          'feelgood': 1,\n",
      "          'antics': 1,\n",
      "          'hate': 1,\n",
      "          'admit': 1,\n",
      "          'fell': 1,\n",
      "          'movie': 1,\n",
      "          'teenager': 1,\n",
      "          'moves': 1,\n",
      "          'small': 1,\n",
      "          'big': 1,\n",
      "          'city': 1,\n",
      "          'discovers': 1,\n",
      "          'banned': 1,\n",
      "          'local': 1,\n",
      "          'reverend': 1,\n",
      "          'nhe': 1,\n",
      "          'ends': 1,\n",
      "          'falling': 1,\n",
      "          'preachers': 1,\n",
      "          'showing': 1,\n",
      "          'whole': 1,\n",
      "          'magic': 1,\n",
      "          'dance': 1,\n",
      "          'nas': 1,\n",
      "          'mentioned': 1,\n",
      "          'beginning': 1,\n",
      "          'review': 1,\n",
      "          'extremely': 1,\n",
      "          'hokey': 1,\n",
      "          'predictable': 1,\n",
      "          'teen': 1,\n",
      "          'drama': 1,\n",
      "          'nthere': 1,\n",
      "          'virtually': 1,\n",
      "          'surprises': 1,\n",
      "          'writing': 1,\n",
      "          'secondrate': 1,\n",
      "          'nso': 1,\n",
      "          'enjoy': 1,\n",
      "          'much': 1,\n",
      "          'nfor': 1,\n",
      "          'thing': 1,\n",
      "          'great': 1,\n",
      "          'nkevin': 1,\n",
      "          'oozes': 1,\n",
      "          'charisma': 1,\n",
      "          'early': 1,\n",
      "          'role': 1,\n",
      "          'nwere': 1,\n",
      "          'rooting': 1,\n",
      "          'right': 1,\n",
      "          'unlike': 1,\n",
      "          'films': 1,\n",
      "          'genre': 1,\n",
      "          'doesnt': 1,\n",
      "          'play': 1,\n",
      "          'without': 1,\n",
      "          'clue': 1,\n",
      "          'sort': 1,\n",
      "          'nyes': 1,\n",
      "          'hes': 1,\n",
      "          'also': 1,\n",
      "          'polite': 1,\n",
      "          'needs': 1,\n",
      "          'never': 1,\n",
      "          'broods': 1,\n",
      "          'rest': 1,\n",
      "          'equally': 1,\n",
      "          'impressive': 1,\n",
      "          'njohn': 1,\n",
      "          'seen': 1,\n",
      "          'normal': 1,\n",
      "          'guy': 1,\n",
      "          'change': 1,\n",
      "          'man': 1,\n",
      "          'normally': 1,\n",
      "          'flat': 1,\n",
      "          'villian': 1,\n",
      "          'nbut': 1,\n",
      "          'plays': 1,\n",
      "          'concerned': 1,\n",
      "          'father': 1,\n",
      "          'trying': 1,\n",
      "          'feels': 1,\n",
      "          'best': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'film': 1,\n",
      "          'feel': 1,\n",
      "          'genuine': 1,\n",
      "          'sense': 1,\n",
      "          'love': 1,\n",
      "          'understanding': 1,\n",
      "          'lori': 1,\n",
      "          'character': 1,\n",
      "          'nanother': 1,\n",
      "          'nice': 1,\n",
      "          'touch': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'parents': 1,\n",
      "          'kids': 1,\n",
      "          'complaining': 1,\n",
      "          'listen': 1,\n",
      "          'filled': 1,\n",
      "          'sexual': 1,\n",
      "          'innuendos': 1,\n",
      "          'thats': 1,\n",
      "          'true': 1,\n",
      "          'title': 1,\n",
      "          'track': 1,\n",
      "          'performed': 1,\n",
      "          'kenny': 1,\n",
      "          'loggins': 1,\n",
      "          'upbeat': 1,\n",
      "          'fun': 1,\n",
      "          'nduring': 1,\n",
      "          'final': 1,\n",
      "          'sequence': 1,\n",
      "          'overcome': 1,\n",
      "          'urge': 1,\n",
      "          'get': 1,\n",
      "          'couch': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'soon': 1,\n",
      "          'realized': 1,\n",
      "          'pathetic': 1,\n",
      "          'nanyway': 1,\n",
      "          'charming': 1,\n",
      "          'surprise': 1,\n",
      "          'ndont': 1,\n",
      "          'let': 1,\n",
      "          'premise': 1,\n",
      "          'prevent': 1,\n",
      "          'watching': 1,\n",
      "          'nit': 1,\n",
      "          'sucked': 1,\n",
      "          'itll': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'art': 5,\n",
      "          'nthe': 4,\n",
      "          'tiger': 3,\n",
      "          'hidden': 3,\n",
      "          'dragon': 3,\n",
      "          'film': 3,\n",
      "          'work': 3,\n",
      "          'nas': 3,\n",
      "          'master': 3,\n",
      "          'oriental': 3,\n",
      "          'life': 3,\n",
      "          'martial': 3,\n",
      "          'evil': 3,\n",
      "          'director': 3,\n",
      "          'great': 2,\n",
      "          'question': 2,\n",
      "          'masterpiece': 2,\n",
      "          'must': 2,\n",
      "          'quality': 2,\n",
      "          'ncrouching': 2,\n",
      "          'legend': 2,\n",
      "          'fantasy': 2,\n",
      "          'magic': 2,\n",
      "          'nit': 2,\n",
      "          'wagnerian': 2,\n",
      "          'human': 2,\n",
      "          'classic': 2,\n",
      "          'elements': 2,\n",
      "          'including': 2,\n",
      "          'masters': 2,\n",
      "          'pupil': 2,\n",
      "          'two': 2,\n",
      "          'heart': 2,\n",
      "          'romance': 2,\n",
      "          'levels': 2,\n",
      "          'pair': 2,\n",
      "          'side': 2,\n",
      "          'nthere': 2,\n",
      "          'one': 2,\n",
      "          'project': 2,\n",
      "          'pei': 2,\n",
      "          'walked': 1,\n",
      "          'crouching': 1,\n",
      "          'thought': 1,\n",
      "          'seen': 1,\n",
      "          'nwith': 1,\n",
      "          'passage': 1,\n",
      "          'hours': 1,\n",
      "          'tempered': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'started': 1,\n",
      "          'pondering': 1,\n",
      "          'whether': 1,\n",
      "          'implicitly': 1,\n",
      "          'piece': 1,\n",
      "          'viceversa': 1,\n",
      "          'nattempting': 1,\n",
      "          'make': 1,\n",
      "          'distinction': 1,\n",
      "          'may': 1,\n",
      "          'matter': 1,\n",
      "          'splitting': 1,\n",
      "          'hairs': 1,\n",
      "          'ni': 1,\n",
      "          'avoided': 1,\n",
      "          'commitment': 1,\n",
      "          'appealing': 1,\n",
      "          'etymology': 1,\n",
      "          'word': 1,\n",
      "          'implies': 1,\n",
      "          'embodies': 1,\n",
      "          'skills': 1,\n",
      "          'suffice': 1,\n",
      "          'say': 1,\n",
      "          'product': 1,\n",
      "          'exceptional': 1,\n",
      "          'fits': 1,\n",
      "          'comfortably': 1,\n",
      "          'category': 1,\n",
      "          'immerses': 1,\n",
      "          'viewer': 1,\n",
      "          'idealized': 1,\n",
      "          'world': 1,\n",
      "          'folklore': 1,\n",
      "          'requisite': 1,\n",
      "          'blend': 1,\n",
      "          'mythology': 1,\n",
      "          'reminiscent': 1,\n",
      "          'epic': 1,\n",
      "          'characters': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'halfgods': 1,\n",
      "          'greater': 1,\n",
      "          'purer': 1,\n",
      "          'stronger': 1,\n",
      "          'physically': 1,\n",
      "          'invincible': 1,\n",
      "          'able': 1,\n",
      "          'accomplish': 1,\n",
      "          'superhuman': 1,\n",
      "          'feats': 1,\n",
      "          'soul': 1,\n",
      "          'makes': 1,\n",
      "          'ultimately': 1,\n",
      "          'vulnerable': 1,\n",
      "          'nall': 1,\n",
      "          'mystique': 1,\n",
      "          'thrown': 1,\n",
      "          'mix': 1,\n",
      "          'contemplation': 1,\n",
      "          'concept': 1,\n",
      "          'dexterity': 1,\n",
      "          'physical': 1,\n",
      "          'equivalent': 1,\n",
      "          'spiritual': 1,\n",
      "          'advancement': 1,\n",
      "          'struggle': 1,\n",
      "          'good': 1,\n",
      "          'inevitable': 1,\n",
      "          'backdrop': 1,\n",
      "          'advanced': 1,\n",
      "          'golden': 1,\n",
      "          'choose': 1,\n",
      "          'gifted': 1,\n",
      "          'influence': 1,\n",
      "          'steals': 1,\n",
      "          'holy': 1,\n",
      "          'grail': 1,\n",
      "          'form': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sword': 1,\n",
      "          'focus': 1,\n",
      "          'conflict': 1,\n",
      "          'different': 1,\n",
      "          'enlightenment': 1,\n",
      "          'youngsters': 1,\n",
      "          'poignantly': 1,\n",
      "          'represented': 1,\n",
      "          'paradox': 1,\n",
      "          'restraint': 1,\n",
      "          'existing': 1,\n",
      "          'consuming': 1,\n",
      "          'passion': 1,\n",
      "          'breast': 1,\n",
      "          'projected': 1,\n",
      "          'effectively': 1,\n",
      "          'fight': 1,\n",
      "          'scenes': 1,\n",
      "          'stunning': 1,\n",
      "          'balletic': 1,\n",
      "          'toursdeforce': 1,\n",
      "          'taken': 1,\n",
      "          'literally': 1,\n",
      "          'clearly': 1,\n",
      "          'enjoyed': 1,\n",
      "          'superb': 1,\n",
      "          'cinematic': 1,\n",
      "          'prodigious': 1,\n",
      "          'leaps': 1,\n",
      "          'flights': 1,\n",
      "          'rooftops': 1,\n",
      "          'combat': 1,\n",
      "          'top': 1,\n",
      "          'swaying': 1,\n",
      "          'bamboo': 1,\n",
      "          'branches': 1,\n",
      "          'combatants': 1,\n",
      "          'skipping': 1,\n",
      "          'like': 1,\n",
      "          'pebbles': 1,\n",
      "          'along': 1,\n",
      "          'surface': 1,\n",
      "          'lake': 1,\n",
      "          'need': 1,\n",
      "          'suspended': 1,\n",
      "          'disbelief': 1,\n",
      "          'presence': 1,\n",
      "          'poetry': 1,\n",
      "          'opera': 1,\n",
      "          'substantial': 1,\n",
      "          'story': 1,\n",
      "          'line': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'ordinary': 1,\n",
      "          'level': 1,\n",
      "          'yet': 1,\n",
      "          'entire': 1,\n",
      "          'accepted': 1,\n",
      "          'rooted': 1,\n",
      "          'ndo': 1,\n",
      "          'assume': 1,\n",
      "          'however': 1,\n",
      "          'limpwristed': 1,\n",
      "          'nfor': 1,\n",
      "          'put': 1,\n",
      "          'label': 1,\n",
      "          'confidently': 1,\n",
      "          'recommended': 1,\n",
      "          'engrossing': 1,\n",
      "          'entertainment': 1,\n",
      "          'adventure': 1,\n",
      "          'action': 1,\n",
      "          'weak': 1,\n",
      "          'performances': 1,\n",
      "          'movie': 1,\n",
      "          'nmichelle': 1,\n",
      "          'yeoh': 1,\n",
      "          'imbues': 1,\n",
      "          'character': 1,\n",
      "          'depth': 1,\n",
      "          'humanity': 1,\n",
      "          'wisdom': 1,\n",
      "          'nchow': 1,\n",
      "          'yon': 1,\n",
      "          'fat': 1,\n",
      "          'projects': 1,\n",
      "          'dignity': 1,\n",
      "          'purity': 1,\n",
      "          'nzhang': 1,\n",
      "          'ziyi': 1,\n",
      "          'budding': 1,\n",
      "          'superstar': 1,\n",
      "          'nshe': 1,\n",
      "          'radiantly': 1,\n",
      "          'beautiful': 1,\n",
      "          'totally': 1,\n",
      "          'persuasive': 1,\n",
      "          'multifaceted': 1,\n",
      "          'role': 1,\n",
      "          'ncheng': 1,\n",
      "          'chang': 1,\n",
      "          'cheng': 1,\n",
      "          'bandit': 1,\n",
      "          'prince': 1,\n",
      "          'acquit': 1,\n",
      "          'admirably': 1,\n",
      "          'nkudos': 1,\n",
      "          'screenwriters': 1,\n",
      "          'james': 1,\n",
      "          'schamus': 1,\n",
      "          'wang': 1,\n",
      "          'hui': 1,\n",
      "          'ling': 1,\n",
      "          'tsai': 1,\n",
      "          'kuo': 1,\n",
      "          'jing': 1,\n",
      "          'choreographer': 1,\n",
      "          'yuen': 1,\n",
      "          'woping': 1,\n",
      "          'photography': 1,\n",
      "          'peter': 1,\n",
      "          'pau': 1,\n",
      "          'music': 1,\n",
      "          'tan': 1,\n",
      "          'dun': 1,\n",
      "          'contribute': 1,\n",
      "          'components': 1,\n",
      "          'extraordinary': 1,\n",
      "          'nang': 1,\n",
      "          'lee': 1,\n",
      "          'coproducer': 1,\n",
      "          'mastermind': 1,\n",
      "          'gets': 1,\n",
      "          'lion': 1,\n",
      "          'share': 1,\n",
      "          'credit': 1,\n",
      "          'nthis': 1,\n",
      "          'destined': 1,\n",
      "          'films': 1,\n",
      "          'everybody': 1,\n",
      "          'likes': 1,\n",
      "          'hate': 1,\n",
      "          'arts': 1,\n",
      "          'movies': 1,\n",
      "          'ndont': 1,\n",
      "          'miss': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'crazybeautiful': 5,\n",
      "          'carlos': 4,\n",
      "          'n': 3,\n",
      "          'enough': 3,\n",
      "          'nafter': 2,\n",
      "          'story': 2,\n",
      "          'afterschool': 2,\n",
      "          'special': 2,\n",
      "          'young': 2,\n",
      "          'people': 2,\n",
      "          'trying': 2,\n",
      "          'make': 2,\n",
      "          'behavior': 2,\n",
      "          'away': 2,\n",
      "          'film': 2,\n",
      "          'works': 2,\n",
      "          'stereotypes': 2,\n",
      "          'pacific': 2,\n",
      "          'hernandez': 2,\n",
      "          'takes': 2,\n",
      "          'dunst': 2,\n",
      "          'real': 2,\n",
      "          'nas': 2,\n",
      "          'situations': 2,\n",
      "          'characters': 2,\n",
      "          'instead': 2,\n",
      "          'credible': 2,\n",
      "          'suffers': 1,\n",
      "          'damnedifyoudo': 1,\n",
      "          'damnedifyoudont': 1,\n",
      "          'syndrome': 1,\n",
      "          'spate': 1,\n",
      "          'flighty': 1,\n",
      "          'cookiecutter': 1,\n",
      "          'teen': 1,\n",
      "          'films': 1,\n",
      "          'romantic': 1,\n",
      "          'drama': 1,\n",
      "          'addresses': 1,\n",
      "          'alcoholism': 1,\n",
      "          'parental': 1,\n",
      "          'loss': 1,\n",
      "          'along': 1,\n",
      "          'love': 1,\n",
      "          'nbut': 1,\n",
      "          'rather': 1,\n",
      "          'applaud': 1,\n",
      "          'production': 1,\n",
      "          'early': 1,\n",
      "          'reviews': 1,\n",
      "          'dismissed': 1,\n",
      "          'overblown': 1,\n",
      "          'neven': 1,\n",
      "          'worse': 1,\n",
      "          'wake': 1,\n",
      "          'federal': 1,\n",
      "          'trade': 1,\n",
      "          'commission': 1,\n",
      "          'hearings': 1,\n",
      "          'blasted': 1,\n",
      "          'industry': 1,\n",
      "          'marketing': 1,\n",
      "          'violent': 1,\n",
      "          'sexual': 1,\n",
      "          'movies': 1,\n",
      "          'studio': 1,\n",
      "          'got': 1,\n",
      "          'case': 1,\n",
      "          'heebiejeebies': 1,\n",
      "          'forced': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'stockwell': 1,\n",
      "          'reshoot': 1,\n",
      "          'scenes': 1,\n",
      "          'cut': 1,\n",
      "          'footage': 1,\n",
      "          'tone': 1,\n",
      "          'things': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'filmmaker': 1,\n",
      "          'frustrated': 1,\n",
      "          'cautionary': 1,\n",
      "          'tale': 1,\n",
      "          'told': 1,\n",
      "          'newsweek': 1,\n",
      "          'couldnt': 1,\n",
      "          'show': 1,\n",
      "          'caution': 1,\n",
      "          'nregardless': 1,\n",
      "          'thanks': 1,\n",
      "          'exceptional': 1,\n",
      "          'performances': 1,\n",
      "          'lead': 1,\n",
      "          'players': 1,\n",
      "          'script': 1,\n",
      "          'determined': 1,\n",
      "          'transcend': 1,\n",
      "          'quality': 1,\n",
      "          'fare': 1,\n",
      "          'good': 1,\n",
      "          'halfexpected': 1,\n",
      "          'summer': 1,\n",
      "          'movie': 1,\n",
      "          'crap': 1,\n",
      "          'police': 1,\n",
      "          'walk': 1,\n",
      "          'press': 1,\n",
      "          'screening': 1,\n",
      "          'confiscate': 1,\n",
      "          'print': 1,\n",
      "          'failure': 1,\n",
      "          'incorporate': 1,\n",
      "          'explosions': 1,\n",
      "          'poop': 1,\n",
      "          'jokes': 1,\n",
      "          'nset': 1,\n",
      "          'palisades': 1,\n",
      "          'calif': 1,\n",
      "          'follows': 1,\n",
      "          'burgeoning': 1,\n",
      "          'relationship': 1,\n",
      "          'two': 1,\n",
      "          'teens': 1,\n",
      "          'nevery': 1,\n",
      "          'morning': 1,\n",
      "          'evening': 1,\n",
      "          'nunez': 1,\n",
      "          'jay': 1,\n",
      "          'twohour': 1,\n",
      "          'bus': 1,\n",
      "          'ride': 1,\n",
      "          'order': 1,\n",
      "          'attend': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'nan': 1,\n",
      "          'honor': 1,\n",
      "          'student': 1,\n",
      "          'star': 1,\n",
      "          'athlete': 1,\n",
      "          'responsible': 1,\n",
      "          'modest': 1,\n",
      "          'focused': 1,\n",
      "          'securing': 1,\n",
      "          'place': 1,\n",
      "          'naval': 1,\n",
      "          'academy': 1,\n",
      "          'nall': 1,\n",
      "          'well': 1,\n",
      "          'meets': 1,\n",
      "          'nicole': 1,\n",
      "          'oakley': 1,\n",
      "          'kirsten': 1,\n",
      "          'daughter': 1,\n",
      "          'rich': 1,\n",
      "          'congressman': 1,\n",
      "          'bruce': 1,\n",
      "          'davison': 1,\n",
      "          'nnicole': 1,\n",
      "          'drunk': 1,\n",
      "          'apparently': 1,\n",
      "          'hellbent': 1,\n",
      "          'selfdestruction': 1,\n",
      "          'ncarlos': 1,\n",
      "          'smart': 1,\n",
      "          'recognize': 1,\n",
      "          'danger': 1,\n",
      "          'getting': 1,\n",
      "          'involved': 1,\n",
      "          'human': 1,\n",
      "          'greatest': 1,\n",
      "          'smile': 1,\n",
      "          'nplus': 1,\n",
      "          'father': 1,\n",
      "          'notes': 1,\n",
      "          'knack': 1,\n",
      "          'drawing': 1,\n",
      "          'others': 1,\n",
      "          'downward': 1,\n",
      "          'spiral': 1,\n",
      "          'save': 1,\n",
      "          'last': 1,\n",
      "          'dance': 1,\n",
      "          'god': 1,\n",
      "          'hate': 1,\n",
      "          'lowercase': 1,\n",
      "          'titles': 1,\n",
      "          'look': 1,\n",
      "          'stale': 1,\n",
      "          'paper': 1,\n",
      "          'makes': 1,\n",
      "          'seem': 1,\n",
      "          'fresh': 1,\n",
      "          'nwhile': 1,\n",
      "          'noting': 1,\n",
      "          'racial': 1,\n",
      "          'social': 1,\n",
      "          'differences': 1,\n",
      "          'kids': 1,\n",
      "          'screenplay': 1,\n",
      "          'dances': 1,\n",
      "          'around': 1,\n",
      "          'clich': 1,\n",
      "          'still': 1,\n",
      "          'several': 1,\n",
      "          'mtv': 1,\n",
      "          'moments': 1,\n",
      "          'though': 1,\n",
      "          'nthe': 1,\n",
      "          'filmmakers': 1,\n",
      "          'point': 1,\n",
      "          'give': 1,\n",
      "          'crucial': 1,\n",
      "          'extra': 1,\n",
      "          'bit': 1,\n",
      "          'shading': 1,\n",
      "          'turns': 1,\n",
      "          'individuals': 1,\n",
      "          'actors': 1,\n",
      "          'take': 1,\n",
      "          'ncuteasabutton': 1,\n",
      "          'forces': 1,\n",
      "          'viewer': 1,\n",
      "          'share': 1,\n",
      "          'pain': 1,\n",
      "          'beneath': 1,\n",
      "          'nicoles': 1,\n",
      "          'nshe': 1,\n",
      "          'dad': 1,\n",
      "          'urges': 1,\n",
      "          'get': 1,\n",
      "          'drags': 1,\n",
      "          'hoped': 1,\n",
      "          'boy': 1,\n",
      "          'would': 1,\n",
      "          'listen': 1,\n",
      "          'revelation': 1,\n",
      "          'nhunky': 1,\n",
      "          'without': 1,\n",
      "          'looking': 1,\n",
      "          'like': 1,\n",
      "          'product': 1,\n",
      "          'hollywood': 1,\n",
      "          'design': 1,\n",
      "          'team': 1,\n",
      "          'man': 1,\n",
      "          'really': 1,\n",
      "          'act': 1,\n",
      "          'see': 1,\n",
      "          'lot': 1,\n",
      "          'guy': 1,\n",
      "          'future': 1,\n",
      "          'naside': 1,\n",
      "          'title': 1,\n",
      "          'biggest': 1,\n",
      "          'problem': 1,\n",
      "          'ending': 1,\n",
      "          'wraps': 1,\n",
      "          'everything': 1,\n",
      "          'fast': 1,\n",
      "          'tidy': 1,\n",
      "          'carefully': 1,\n",
      "          'presenting': 1,\n",
      "          'conclusion': 1,\n",
      "          'feels': 1,\n",
      "          'rushed': 1,\n",
      "          'lazy': 1,\n",
      "          'nstill': 1,\n",
      "          'kind': 1,\n",
      "          'deserves': 1,\n",
      "          'accolades': 1,\n",
      "          'critics': 1,\n",
      "          'cheap': 1,\n",
      "          'shots': 1,\n",
      "          'ass': 1,\n",
      "          'deal': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'giles': 16,\n",
      "          'death': 4,\n",
      "          'long': 4,\n",
      "          'one': 4,\n",
      "          'love': 4,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'ronnie': 4,\n",
      "          'like': 3,\n",
      "          'ngiles': 3,\n",
      "          'bostock': 3,\n",
      "          'island': 3,\n",
      "          'nin': 3,\n",
      "          'could': 2,\n",
      "          'kind': 2,\n",
      "          'needs': 2,\n",
      "          'house': 2,\n",
      "          'hes': 2,\n",
      "          'role': 2,\n",
      "          'motion': 2,\n",
      "          'picture': 2,\n",
      "          'affection': 2,\n",
      "          'forster': 2,\n",
      "          'doesnt': 2,\n",
      "          'realize': 2,\n",
      "          'teen': 2,\n",
      "          'hotpants': 2,\n",
      "          'college': 2,\n",
      "          'ii': 2,\n",
      "          'priestley': 2,\n",
      "          'first': 2,\n",
      "          'tapes': 2,\n",
      "          'must': 2,\n",
      "          'vcr': 2,\n",
      "          'neventually': 2,\n",
      "          'home': 2,\n",
      "          'arrives': 2,\n",
      "          'ronnies': 2,\n",
      "          'fiona': 2,\n",
      "          'loewi': 2,\n",
      "          'actor': 2,\n",
      "          'nlove': 2,\n",
      "          'comedy': 2,\n",
      "          'nit': 2,\n",
      "          'things': 2,\n",
      "          'makes': 2,\n",
      "          'many': 2,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'someone': 1,\n",
      "          'stuffy': 1,\n",
      "          'arrogant': 1,\n",
      "          'set': 1,\n",
      "          'ways': 1,\n",
      "          'war': 1,\n",
      "          'anything': 1,\n",
      "          'way': 1,\n",
      "          'associated': 1,\n",
      "          'progress': 1,\n",
      "          'writer': 1,\n",
      "          'product': 1,\n",
      "          'typewriter': 1,\n",
      "          'scholarly': 1,\n",
      "          'stuff': 1,\n",
      "          'immediately': 1,\n",
      "          'put': 1,\n",
      "          'onto': 1,\n",
      "          'library': 1,\n",
      "          'stacks': 1,\n",
      "          'gather': 1,\n",
      "          'dust': 1,\n",
      "          'graduate': 1,\n",
      "          'student': 1,\n",
      "          'another': 1,\n",
      "          'reference': 1,\n",
      "          'thesis': 1,\n",
      "          'nhis': 1,\n",
      "          'looks': 1,\n",
      "          'immaculate': 1,\n",
      "          'museum': 1,\n",
      "          'television': 1,\n",
      "          'microwave': 1,\n",
      "          'word': 1,\n",
      "          'processor': 1,\n",
      "          'technological': 1,\n",
      "          'gadgets': 1,\n",
      "          'electric': 1,\n",
      "          'lights': 1,\n",
      "          'betray': 1,\n",
      "          'living': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'nineteenth': 1,\n",
      "          'nthis': 1,\n",
      "          'easily': 1,\n",
      "          'turned': 1,\n",
      "          'flat': 1,\n",
      "          'stereotype': 1,\n",
      "          'john': 1,\n",
      "          'hurt': 1,\n",
      "          'certainly': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'decade': 1,\n",
      "          'possibly': 1,\n",
      "          'impressive': 1,\n",
      "          'distinguished': 1,\n",
      "          'career': 1,\n",
      "          'turns': 1,\n",
      "          'erstwhile': 1,\n",
      "          'fogy': 1,\n",
      "          'threedimensional': 1,\n",
      "          'human': 1,\n",
      "          'ndespite': 1,\n",
      "          'tunnel': 1,\n",
      "          'vision': 1,\n",
      "          'impossible': 1,\n",
      "          'man': 1,\n",
      "          'especially': 1,\n",
      "          'entire': 1,\n",
      "          'transformed': 1,\n",
      "          'singular': 1,\n",
      "          'affliction': 1,\n",
      "          'immune': 1,\n",
      "          'nand': 1,\n",
      "          'discovers': 1,\n",
      "          'course': 1,\n",
      "          'amusing': 1,\n",
      "          'warmhearted': 1,\n",
      "          'possible': 1,\n",
      "          'find': 1,\n",
      "          'object': 1,\n",
      "          'ones': 1,\n",
      "          'unusual': 1,\n",
      "          'places': 1,\n",
      "          'widower': 1,\n",
      "          'recluse': 1,\n",
      "          'frequent': 1,\n",
      "          'cinema': 1,\n",
      "          'learns': 1,\n",
      "          'e': 1,\n",
      "          'playing': 1,\n",
      "          'local': 1,\n",
      "          'theater': 1,\n",
      "          'screws': 1,\n",
      "          'courage': 1,\n",
      "          'decides': 1,\n",
      "          'go': 1,\n",
      "          'nwhat': 1,\n",
      "          'showing': 1,\n",
      "          'two': 1,\n",
      "          'films': 1,\n",
      "          'adaptation': 1,\n",
      "          'exploitation': 1,\n",
      "          'flick': 1,\n",
      "          'called': 1,\n",
      "          'na': 1,\n",
      "          'nonplused': 1,\n",
      "          'ends': 1,\n",
      "          'sitting': 1,\n",
      "          'darkened': 1,\n",
      "          'room': 1,\n",
      "          'watching': 1,\n",
      "          'buff': 1,\n",
      "          'male': 1,\n",
      "          'female': 1,\n",
      "          'bodies': 1,\n",
      "          'various': 1,\n",
      "          'states': 1,\n",
      "          'undress': 1,\n",
      "          'njust': 1,\n",
      "          'leave': 1,\n",
      "          'however': 1,\n",
      "          'notices': 1,\n",
      "          'jason': 1,\n",
      "          'suddenly': 1,\n",
      "          'sight': 1,\n",
      "          'enraptured': 1,\n",
      "          'moment': 1,\n",
      "          'beings': 1,\n",
      "          'scour': 1,\n",
      "          'stores': 1,\n",
      "          'memorabilia': 1,\n",
      "          'including': 1,\n",
      "          'magazines': 1,\n",
      "          'video': 1,\n",
      "          'n': 1,\n",
      "          'order': 1,\n",
      "          'watch': 1,\n",
      "          'buy': 1,\n",
      "          'initially': 1,\n",
      "          'tv': 1,\n",
      "          'use': 1,\n",
      "          'satisfied': 1,\n",
      "          'worlds': 1,\n",
      "          'foremost': 1,\n",
      "          'authority': 1,\n",
      "          'boards': 1,\n",
      "          'plane': 1,\n",
      "          'travels': 1,\n",
      "          'idols': 1,\n",
      "          'located': 1,\n",
      "          'nbostock': 1,\n",
      "          'away': 1,\n",
      "          'wily': 1,\n",
      "          'englishman': 1,\n",
      "          'manages': 1,\n",
      "          'befriend': 1,\n",
      "          'supermodel': 1,\n",
      "          'girlfriend': 1,\n",
      "          'audrey': 1,\n",
      "          'impressed': 1,\n",
      "          'demeanor': 1,\n",
      "          'intelligence': 1,\n",
      "          'begins': 1,\n",
      "          'rely': 1,\n",
      "          'older': 1,\n",
      "          'mans': 1,\n",
      "          'advice': 1,\n",
      "          'nbut': 1,\n",
      "          'runs': 1,\n",
      "          'deep': 1,\n",
      "          'feelings': 1,\n",
      "          'less': 1,\n",
      "          'constant': 1,\n",
      "          'funny': 1,\n",
      "          'fact': 1,\n",
      "          'half': 1,\n",
      "          'nearlyperfect': 1,\n",
      "          'suffers': 1,\n",
      "          'falloff': 1,\n",
      "          'reaches': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'ending': 1,\n",
      "          'nonetoosubtle': 1,\n",
      "          'homosexual': 1,\n",
      "          'overtones': 1,\n",
      "          'little': 1,\n",
      "          'overbearing': 1,\n",
      "          'lighthearted': 1,\n",
      "          'material': 1,\n",
      "          'precedes': 1,\n",
      "          'gently': 1,\n",
      "          'satirical': 1,\n",
      "          'approach': 1,\n",
      "          'popular': 1,\n",
      "          'culture': 1,\n",
      "          'stardom': 1,\n",
      "          'writerdirector': 1,\n",
      "          'richard': 1,\n",
      "          'kwietniowski': 1,\n",
      "          'adapting': 1,\n",
      "          'novel': 1,\n",
      "          'gilbert': 1,\n",
      "          'adair': 1,\n",
      "          '100': 1,\n",
      "          'target': 1,\n",
      "          'process': 1,\n",
      "          'creates': 1,\n",
      "          'truly': 1,\n",
      "          'likable': 1,\n",
      "          'memorable': 1,\n",
      "          'character': 1,\n",
      "          'says': 1,\n",
      "          'transforming': 1,\n",
      "          'power': 1,\n",
      "          'even': 1,\n",
      "          'unrequited': 1,\n",
      "          'nfrom': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'clearly': 1,\n",
      "          'hurts': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'frame': 1,\n",
      "          'nits': 1,\n",
      "          'veteran': 1,\n",
      "          'relished': 1,\n",
      "          'unforgettable': 1,\n",
      "          'figure': 1,\n",
      "          'means': 1,\n",
      "          'dialogue': 1,\n",
      "          'delivery': 1,\n",
      "          'body': 1,\n",
      "          'language': 1,\n",
      "          'everchanging': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'njason': 1,\n",
      "          'cashing': 1,\n",
      "          'beverly': 1,\n",
      "          'hills': 1,\n",
      "          '90210': 1,\n",
      "          'image': 1,\n",
      "          'surprisingly': 1,\n",
      "          'effective': 1,\n",
      "          'shallow': 1,\n",
      "          'nhe': 1,\n",
      "          'charismatic': 1,\n",
      "          'hard': 1,\n",
      "          'understand': 1,\n",
      "          'attracted': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'solid': 1,\n",
      "          'support': 1,\n",
      "          'provided': 1,\n",
      "          'appealing': 1,\n",
      "          'alwaysreliable': 1,\n",
      "          'maury': 1,\n",
      "          'chaykin': 1,\n",
      "          'wrapped': 1,\n",
      "          'social': 1,\n",
      "          'commentary': 1,\n",
      "          'tackles': 1,\n",
      "          'thorny': 1,\n",
      "          'issue': 1,\n",
      "          'pure': 1,\n",
      "          'art': 1,\n",
      "          'versus': 1,\n",
      "          'mindless': 1,\n",
      "          'entertainment': 1,\n",
      "          'buddy': 1,\n",
      "          'picturelove': 1,\n",
      "          'story': 1,\n",
      "          'interesting': 1,\n",
      "          'relationships': 1,\n",
      "          'found': 1,\n",
      "          'anywhere': 1,\n",
      "          'screen': 1,\n",
      "          'days': 1,\n",
      "          'fish': 1,\n",
      "          'water': 1,\n",
      "          'tale': 1,\n",
      "          'victorian': 1,\n",
      "          'relic': 1,\n",
      "          'forced': 1,\n",
      "          'modern': 1,\n",
      "          'world': 1,\n",
      "          'nyet': 1,\n",
      "          'despite': 1,\n",
      "          'laughs': 1,\n",
      "          'offers': 1,\n",
      "          'never': 1,\n",
      "          'takes': 1,\n",
      "          'cheap': 1,\n",
      "          'shots': 1,\n",
      "          'vibrant': 1,\n",
      "          'beating': 1,\n",
      "          'heart': 1,\n",
      "          'worthwhile': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'first': 4,\n",
      "          'much': 4,\n",
      "          'people': 3,\n",
      "          'time': 3,\n",
      "          'second': 3,\n",
      "          'hes': 3,\n",
      "          'day': 3,\n",
      "          'midlife': 3,\n",
      "          'crisis': 3,\n",
      "          'makes': 3,\n",
      "          'film': 3,\n",
      "          'gradys': 3,\n",
      "          'isnt': 2,\n",
      "          'column': 2,\n",
      "          'get': 2,\n",
      "          'made': 2,\n",
      "          'done': 2,\n",
      "          'neventually': 2,\n",
      "          'theres': 2,\n",
      "          'finishing': 2,\n",
      "          'nand': 2,\n",
      "          'next': 2,\n",
      "          'professor': 2,\n",
      "          'tripp': 2,\n",
      "          'michael': 2,\n",
      "          'book': 2,\n",
      "          'working': 2,\n",
      "          'cant': 2,\n",
      "          'finish': 2,\n",
      "          'writers': 2,\n",
      "          'wife': 2,\n",
      "          'married': 2,\n",
      "          'agent': 2,\n",
      "          'suicidal': 2,\n",
      "          'student': 2,\n",
      "          'nthis': 2,\n",
      "          'real': 2,\n",
      "          'career': 2,\n",
      "          'nhe': 2,\n",
      "          'life': 2,\n",
      "          'james': 2,\n",
      "          'comfort': 2,\n",
      "          'interesting': 2,\n",
      "          'nas': 2,\n",
      "          'relationships': 2,\n",
      "          'sara': 2,\n",
      "          'never': 2,\n",
      "          'see': 2,\n",
      "          'many': 1,\n",
      "          'procrastination': 1,\n",
      "          'problem': 1,\n",
      "          'overcome': 1,\n",
      "          'high': 1,\n",
      "          'art': 1,\n",
      "          'nwell': 1,\n",
      "          'anything': 1,\n",
      "          'put': 1,\n",
      "          'task': 1,\n",
      "          'nwhen': 1,\n",
      "          'deadline': 1,\n",
      "          'nears': 1,\n",
      "          'week': 1,\n",
      "          'dishes': 1,\n",
      "          'washed': 1,\n",
      "          'bed': 1,\n",
      "          'laundry': 1,\n",
      "          'plants': 1,\n",
      "          'watered': 1,\n",
      "          'hopefully': 1,\n",
      "          'sometimes': 1,\n",
      "          'breakthrough': 1,\n",
      "          'actually': 1,\n",
      "          'work': 1,\n",
      "          'namazingly': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'easier': 1,\n",
      "          'dreaded': 1,\n",
      "          'sense': 1,\n",
      "          'oppressive': 1,\n",
      "          'apprehension': 1,\n",
      "          'melts': 1,\n",
      "          'away': 1,\n",
      "          'nenglish': 1,\n",
      "          'grady': 1,\n",
      "          'douglas': 1,\n",
      "          'master': 1,\n",
      "          'nseven': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'hit': 1,\n",
      "          'nhes': 1,\n",
      "          'short': 1,\n",
      "          '200page': 1,\n",
      "          'piece': 1,\n",
      "          'since': 1,\n",
      "          'nfearful': 1,\n",
      "          'live': 1,\n",
      "          'bring': 1,\n",
      "          'nno': 1,\n",
      "          'block': 1,\n",
      "          'nearing': 1,\n",
      "          '3': 1,\n",
      "          '000': 1,\n",
      "          'pages': 1,\n",
      "          'end': 1,\n",
      "          'sight': 1,\n",
      "          'nnow': 1,\n",
      "          'particularly': 1,\n",
      "          'difficult': 1,\n",
      "          'colleges': 1,\n",
      "          'annual': 1,\n",
      "          'conference': 1,\n",
      "          'bringing': 1,\n",
      "          'accomplished': 1,\n",
      "          'novelists': 1,\n",
      "          'reminding': 1,\n",
      "          '_their_': 1,\n",
      "          'books': 1,\n",
      "          'nduring': 1,\n",
      "          'left': 1,\n",
      "          'girlfriend': 1,\n",
      "          'informs': 1,\n",
      "          'shes': 1,\n",
      "          'pregnant': 1,\n",
      "          'town': 1,\n",
      "          'sixfoot': 1,\n",
      "          'transvestite': 1,\n",
      "          'tow': 1,\n",
      "          'nby': 1,\n",
      "          'evening': 1,\n",
      "          'besieged': 1,\n",
      "          'writer': 1,\n",
      "          'driving': 1,\n",
      "          'though': 1,\n",
      "          'snowcovered': 1,\n",
      "          'streets': 1,\n",
      "          'pittsburgh': 1,\n",
      "          'beside': 1,\n",
      "          'stolen': 1,\n",
      "          'jacket': 1,\n",
      "          'marilyn': 1,\n",
      "          'monroe': 1,\n",
      "          'wore': 1,\n",
      "          'wedding': 1,\n",
      "          'back': 1,\n",
      "          'seat': 1,\n",
      "          'murdered': 1,\n",
      "          'blind': 1,\n",
      "          'dog': 1,\n",
      "          'stuffed': 1,\n",
      "          'trunk': 1,\n",
      "          'could': 1,\n",
      "          'pivotal': 1,\n",
      "          'point': 1,\n",
      "          'morning': 1,\n",
      "          'ntheres': 1,\n",
      "          'lot': 1,\n",
      "          'like': 1,\n",
      "          'movie': 1,\n",
      "          'nthere': 1,\n",
      "          'huge': 1,\n",
      "          'explosions': 1,\n",
      "          'shattering': 1,\n",
      "          'glass': 1,\n",
      "          'computergenerated': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'distract': 1,\n",
      "          'human': 1,\n",
      "          'issues': 1,\n",
      "          'ngrady': 1,\n",
      "          'caught': 1,\n",
      "          'curse': 1,\n",
      "          'accomplish': 1,\n",
      "          'great': 1,\n",
      "          'things': 1,\n",
      "          'early': 1,\n",
      "          'nin': 1,\n",
      "          'world': 1,\n",
      "          'lately': 1,\n",
      "          'knows': 1,\n",
      "          'better': 1,\n",
      "          'ninstead': 1,\n",
      "          'finding': 1,\n",
      "          'drifts': 1,\n",
      "          'comfortable': 1,\n",
      "          'insular': 1,\n",
      "          'cocoon': 1,\n",
      "          'academic': 1,\n",
      "          'peter': 1,\n",
      "          'panhood': 1,\n",
      "          'doesnt': 1,\n",
      "          'neither': 1,\n",
      "          'star': 1,\n",
      "          'pupil': 1,\n",
      "          'leer': 1,\n",
      "          'tobey': 1,\n",
      "          'maguire': 1,\n",
      "          'njames': 1,\n",
      "          'may': 1,\n",
      "          'psychotic': 1,\n",
      "          'ncertainly': 1,\n",
      "          'everything': 1,\n",
      "          'comes': 1,\n",
      "          'mouth': 1,\n",
      "          'lie': 1,\n",
      "          'past': 1,\n",
      "          'clash': 1,\n",
      "          'anguish': 1,\n",
      "          'truth': 1,\n",
      "          'wealth': 1,\n",
      "          'enough': 1,\n",
      "          'weekend': 1,\n",
      "          'progresses': 1,\n",
      "          'forced': 1,\n",
      "          'fully': 1,\n",
      "          'engage': 1,\n",
      "          'nthats': 1,\n",
      "          'question': 1,\n",
      "          'must': 1,\n",
      "          'face': 1,\n",
      "          'experiences': 1,\n",
      "          'takes': 1,\n",
      "          'chances': 1,\n",
      "          'nnontraditional': 1,\n",
      "          'presented': 1,\n",
      "          'matteroffact': 1,\n",
      "          'nextramarital': 1,\n",
      "          'gay': 1,\n",
      "          'interracial': 1,\n",
      "          'professorstudent': 1,\n",
      "          'arent': 1,\n",
      "          'judged': 1,\n",
      "          'merely': 1,\n",
      "          'choices': 1,\n",
      "          'actors': 1,\n",
      "          'firstrate': 1,\n",
      "          'ndouglas': 1,\n",
      "          'triumphs': 1,\n",
      "          'playing': 1,\n",
      "          'type': 1,\n",
      "          'spends': 1,\n",
      "          'disheveled': 1,\n",
      "          'unshaven': 1,\n",
      "          'clad': 1,\n",
      "          'pink': 1,\n",
      "          'womens': 1,\n",
      "          'house': 1,\n",
      "          'robe': 1,\n",
      "          'nmaguires': 1,\n",
      "          'disengaged': 1,\n",
      "          'alienation': 1,\n",
      "          'works': 1,\n",
      "          'perfectly': 1,\n",
      "          'nrobert': 1,\n",
      "          'downey': 1,\n",
      "          'jr': 1,\n",
      "          'livens': 1,\n",
      "          'scenes': 1,\n",
      "          'ndirector': 1,\n",
      "          'curtis': 1,\n",
      "          'hanson': 1,\n",
      "          'l': 1,\n",
      "          'nconfidential': 1,\n",
      "          'missteps': 1,\n",
      "          'women': 1,\n",
      "          'underused': 1,\n",
      "          'nfrances': 1,\n",
      "          'mcdormand': 1,\n",
      "          'good': 1,\n",
      "          'job': 1,\n",
      "          'limited': 1,\n",
      "          'role': 1,\n",
      "          'lover': 1,\n",
      "          'understand': 1,\n",
      "          'chemistry': 1,\n",
      "          'two': 1,\n",
      "          'nonexistent': 1,\n",
      "          'ending': 1,\n",
      "          'unconvincing': 1,\n",
      "          'nkatie': 1,\n",
      "          'holmes': 1,\n",
      "          'major': 1,\n",
      "          'crush': 1,\n",
      "          'character': 1,\n",
      "          'goes': 1,\n",
      "          'nowhere': 1,\n",
      "          'nwe': 1,\n",
      "          'even': 1,\n",
      "          'exiting': 1,\n",
      "          'guys': 1,\n",
      "          'varied': 1,\n",
      "          'men': 1,\n",
      "          'convincing': 1,\n",
      "          'others': 1,\n",
      "          'ngradys': 1,\n",
      "          'alternating': 1,\n",
      "          'mentoring': 1,\n",
      "          'rejection': 1,\n",
      "          'centerpoint': 1,\n",
      "          'boomers': 1,\n",
      "          'age': 1,\n",
      "          'expect': 1,\n",
      "          'films': 1,\n",
      "          'catch': 1,\n",
      "          'attention': 1,\n",
      "          'demographic': 1,\n",
      "          'itll': 1,\n",
      "          'probably': 1,\n",
      "          'become': 1,\n",
      "          'cliche': 1,\n",
      "          'right': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'winner': 1,\n",
      "          'nill': 1,\n",
      "          'nright': 1,\n",
      "          'grab': 1,\n",
      "          'paint': 1,\n",
      "          'ni': 1,\n",
      "          'noticed': 1,\n",
      "          'trim': 1,\n",
      "          'room': 1,\n",
      "          'needs': 1,\n",
      "          'little': 1,\n",
      "          'touchup': 1,\n",
      "          'n': 1,\n",
      "          'redman': 1,\n",
      "          'written': 1,\n",
      "          'long': 1,\n",
      "          'choice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'meet': 5,\n",
      "          'joe': 5,\n",
      "          'black': 5,\n",
      "          'hopkins': 5,\n",
      "          'pitt': 4,\n",
      "          'brad': 3,\n",
      "          'claire': 3,\n",
      "          'forlani': 3,\n",
      "          'death': 3,\n",
      "          'really': 3,\n",
      "          'movie': 3,\n",
      "          'good': 3,\n",
      "          'performance': 3,\n",
      "          'time': 3,\n",
      "          'anthony': 2,\n",
      "          'three': 2,\n",
      "          'ndeath': 2,\n",
      "          'take': 2,\n",
      "          'one': 2,\n",
      "          'love': 2,\n",
      "          'course': 2,\n",
      "          'forlanis': 2,\n",
      "          'n': 2,\n",
      "          'running': 2,\n",
      "          'historical': 2,\n",
      "          'though': 2,\n",
      "          'minutes': 2,\n",
      "          'nand': 2,\n",
      "          'could': 2,\n",
      "          'excellent': 2,\n",
      "          'ni': 2,\n",
      "          'would': 2,\n",
      "          'little': 2,\n",
      "          'reviewed': 1,\n",
      "          'nov': 1,\n",
      "          '2798': 1,\n",
      "          'nstarring': 1,\n",
      "          'nin': 1,\n",
      "          'plays': 1,\n",
      "          'nthats': 1,\n",
      "          'needs': 1,\n",
      "          'said': 1,\n",
      "          'nevertheless': 1,\n",
      "          'provide': 1,\n",
      "          'seemingly': 1,\n",
      "          'living': 1,\n",
      "          'cave': 1,\n",
      "          'plot': 1,\n",
      "          'description': 1,\n",
      "          'decides': 1,\n",
      "          'holiday': 1,\n",
      "          'rigors': 1,\n",
      "          'soulcollecting': 1,\n",
      "          'forces': 1,\n",
      "          'showing': 1,\n",
      "          'like': 1,\n",
      "          'human': 1,\n",
      "          'assumes': 1,\n",
      "          'body': 1,\n",
      "          'much': 1,\n",
      "          'trouble': 1,\n",
      "          'ensues': 1,\n",
      "          'nfor': 1,\n",
      "          'thing': 1,\n",
      "          'deathaspitt': 1,\n",
      "          'falls': 1,\n",
      "          'daughter': 1,\n",
      "          'played': 1,\n",
      "          'nobviously': 1,\n",
      "          'enrages': 1,\n",
      "          'offer': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nbesides': 1,\n",
      "          'eternal': 1,\n",
      "          'damnation': 1,\n",
      "          'nthere': 1,\n",
      "          'also': 1,\n",
      "          'subplot': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'dumps': 1,\n",
      "          'trying': 1,\n",
      "          'company': 1,\n",
      "          'runs': 1,\n",
      "          'hours': 1,\n",
      "          'nive': 1,\n",
      "          'always': 1,\n",
      "          'thought': 1,\n",
      "          'obscene': 1,\n",
      "          'times': 1,\n",
      "          'limited': 1,\n",
      "          'epics': 1,\n",
      "          'neither': 1,\n",
      "          'epic': 1,\n",
      "          'get': 1,\n",
      "          'feeling': 1,\n",
      "          'martin': 1,\n",
      "          'brest': 1,\n",
      "          'director': 1,\n",
      "          'desperately': 1,\n",
      "          'wants': 1,\n",
      "          'nevery': 1,\n",
      "          'single': 1,\n",
      "          'scene': 1,\n",
      "          'goes': 1,\n",
      "          '34': 1,\n",
      "          'long': 1,\n",
      "          'ending': 1,\n",
      "          'takes': 1,\n",
      "          '20': 1,\n",
      "          'longer': 1,\n",
      "          'na': 1,\n",
      "          'severe': 1,\n",
      "          'editing': 1,\n",
      "          'job': 1,\n",
      "          'made': 1,\n",
      "          'instead': 1,\n",
      "          'npitt': 1,\n",
      "          'actor': 1,\n",
      "          'normally': 1,\n",
      "          'loathe': 1,\n",
      "          'actually': 1,\n",
      "          'quite': 1,\n",
      "          'engaging': 1,\n",
      "          'believed': 1,\n",
      "          'see': 1,\n",
      "          'character': 1,\n",
      "          'fall': 1,\n",
      "          'agree': 1,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'found': 1,\n",
      "          'hard': 1,\n",
      "          'believe': 1,\n",
      "          'entity': 1,\n",
      "          'thats': 1,\n",
      "          'around': 1,\n",
      "          'wouldnt': 1,\n",
      "          'know': 1,\n",
      "          'peanut': 1,\n",
      "          'butter': 1,\n",
      "          'nthat': 1,\n",
      "          'nothing': 1,\n",
      "          'pitts': 1,\n",
      "          'distracting': 1,\n",
      "          'nhopkins': 1,\n",
      "          'gives': 1,\n",
      "          'usual': 1,\n",
      "          'nhes': 1,\n",
      "          'able': 1,\n",
      "          'portray': 1,\n",
      "          'angst': 1,\n",
      "          'man': 1,\n",
      "          'knows': 1,\n",
      "          'left': 1,\n",
      "          'without': 1,\n",
      "          'making': 1,\n",
      "          'obnoxious': 1,\n",
      "          'whiner': 1,\n",
      "          'first': 1,\n",
      "          'major': 1,\n",
      "          'studio': 1,\n",
      "          'role': 1,\n",
      "          'surprisingly': 1,\n",
      "          'nshe': 1,\n",
      "          'sweet': 1,\n",
      "          'tenderness': 1,\n",
      "          'allows': 1,\n",
      "          'audience': 1,\n",
      "          'instantly': 1,\n",
      "          'root': 1,\n",
      "          'nso': 1,\n",
      "          'hampered': 1,\n",
      "          'ridiculous': 1,\n",
      "          'nhad': 1,\n",
      "          'film': 1,\n",
      "          'cut': 1,\n",
      "          'hour': 1,\n",
      "          'doubt': 1,\n",
      "          'calling': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'year': 1,\n",
      "          'review': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'fallen': 7,\n",
      "          'film': 6,\n",
      "          'like': 6,\n",
      "          'nthe': 6,\n",
      "          'hobbes': 6,\n",
      "          'body': 5,\n",
      "          'azazel': 5,\n",
      "          'plot': 5,\n",
      "          'one': 4,\n",
      "          'kind': 4,\n",
      "          'way': 4,\n",
      "          'dark': 3,\n",
      "          'denzel': 3,\n",
      "          'washington': 3,\n",
      "          'last': 3,\n",
      "          'hes': 3,\n",
      "          'walk': 3,\n",
      "          'scenes': 3,\n",
      "          'however': 3,\n",
      "          'touched': 2,\n",
      "          'serial': 2,\n",
      "          'killer': 2,\n",
      "          'unusual': 2,\n",
      "          'nin': 2,\n",
      "          'theres': 2,\n",
      "          'little': 2,\n",
      "          'although': 2,\n",
      "          'interesting': 2,\n",
      "          'elias': 2,\n",
      "          'koteas': 2,\n",
      "          'john': 2,\n",
      "          'hours': 2,\n",
      "          'death': 2,\n",
      "          'goes': 2,\n",
      "          'around': 2,\n",
      "          'time': 2,\n",
      "          'reese': 2,\n",
      "          'nbut': 2,\n",
      "          'angel': 2,\n",
      "          'nand': 2,\n",
      "          'theology': 2,\n",
      "          'embeth': 2,\n",
      "          'davidtz': 2,\n",
      "          'including': 2,\n",
      "          'goodman': 2,\n",
      "          'stanton': 2,\n",
      "          'donald': 2,\n",
      "          'sutherland': 2,\n",
      "          'dont': 2,\n",
      "          'nas': 2,\n",
      "          'city': 2,\n",
      "          'rather': 2,\n",
      "          'appear': 2,\n",
      "          'night': 2,\n",
      "          'nthis': 2,\n",
      "          'expected': 2,\n",
      "          'several': 2,\n",
      "          'also': 2,\n",
      "          'best': 2,\n",
      "          'despite': 2,\n",
      "          'ten': 2,\n",
      "          'minutes': 2,\n",
      "          'performance': 2,\n",
      "          'two': 2,\n",
      "          'nwashingtons': 2,\n",
      "          'surprise': 2,\n",
      "          'nits': 2,\n",
      "          'bad': 2,\n",
      "          'sense': 2,\n",
      "          'become': 2,\n",
      "          'nhowever': 2,\n",
      "          'said': 2,\n",
      "          'nat': 2,\n",
      "          'face': 2,\n",
      "          'movies': 2,\n",
      "          'call': 1,\n",
      "          'demon': 1,\n",
      "          'ngregory': 1,\n",
      "          'hoblits': 1,\n",
      "          'movie': 1,\n",
      "          'horrific': 1,\n",
      "          'twist': 1,\n",
      "          'nif': 1,\n",
      "          'marketed': 1,\n",
      "          'properly': 1,\n",
      "          'could': 1,\n",
      "          'crossover': 1,\n",
      "          'appeal': 1,\n",
      "          'appreciate': 1,\n",
      "          'supernatural': 1,\n",
      "          'tales': 1,\n",
      "          'prophesy': 1,\n",
      "          'crave': 1,\n",
      "          'grim': 1,\n",
      "          'thrillers': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'seven': 1,\n",
      "          'fact': 1,\n",
      "          'even': 1,\n",
      "          'twin': 1,\n",
      "          'peaks': 1,\n",
      "          'found': 1,\n",
      "          'albeit': 1,\n",
      "          'lions': 1,\n",
      "          'share': 1,\n",
      "          'weirdness': 1,\n",
      "          'distilled': 1,\n",
      "          'n': 1,\n",
      "          'remember': 1,\n",
      "          'bob': 1,\n",
      "          'biggest': 1,\n",
      "          'failing': 1,\n",
      "          'consistently': 1,\n",
      "          'always': 1,\n",
      "          'edgy': 1,\n",
      "          'suspenseful': 1,\n",
      "          'might': 1,\n",
      "          'hope': 1,\n",
      "          'na': 1,\n",
      "          'loose': 1,\n",
      "          'philadephia': 1,\n",
      "          'detective': 1,\n",
      "          'noblest': 1,\n",
      "          'man': 1,\n",
      "          'police': 1,\n",
      "          'force': 1,\n",
      "          'brought': 1,\n",
      "          'justice': 1,\n",
      "          'nnow': 1,\n",
      "          'row': 1,\n",
      "          'awaiting': 1,\n",
      "          'inevitable': 1,\n",
      "          'date': 1,\n",
      "          'gas': 1,\n",
      "          'chamber': 1,\n",
      "          'mass': 1,\n",
      "          'murderer': 1,\n",
      "          'cryptically': 1,\n",
      "          'tells': 1,\n",
      "          'really': 1,\n",
      "          'nshortly': 1,\n",
      "          'thereafter': 1,\n",
      "          'begins': 1,\n",
      "          'sing': 1,\n",
      "          'side': 1,\n",
      "          'taken': 1,\n",
      "          'nminutes': 1,\n",
      "          'later': 1,\n",
      "          'state': 1,\n",
      "          'pennsylvania': 1,\n",
      "          'carried': 1,\n",
      "          'execution': 1,\n",
      "          'edgar': 1,\n",
      "          'dead': 1,\n",
      "          'nightmare': 1,\n",
      "          'beginning': 1,\n",
      "          'wasnt': 1,\n",
      "          'normal': 1,\n",
      "          'psychopath': 1,\n",
      "          'host': 1,\n",
      "          'mythical': 1,\n",
      "          'named': 1,\n",
      "          'reeses': 1,\n",
      "          'free': 1,\n",
      "          'hop': 1,\n",
      "          'murdering': 1,\n",
      "          'wreaking': 1,\n",
      "          'havoc': 1,\n",
      "          'nonly': 1,\n",
      "          'pretty': 1,\n",
      "          'female': 1,\n",
      "          'teacher': 1,\n",
      "          'inkling': 1,\n",
      "          'theyre': 1,\n",
      "          'rest': 1,\n",
      "          'cops': 1,\n",
      "          'partner': 1,\n",
      "          'jonesy': 1,\n",
      "          'lou': 1,\n",
      "          'james': 1,\n",
      "          'gandolfini': 1,\n",
      "          'newcomer': 1,\n",
      "          'department': 1,\n",
      "          'lieutenant': 1,\n",
      "          'clue': 1,\n",
      "          'result': 1,\n",
      "          'mortal': 1,\n",
      "          'danger': 1,\n",
      "          'depicted': 1,\n",
      "          'hoblit': 1,\n",
      "          'primal': 1,\n",
      "          'fear': 1,\n",
      "          'cinematographer': 1,\n",
      "          'newton': 1,\n",
      "          'thomas': 1,\n",
      "          'sigel': 1,\n",
      "          'philadelphia': 1,\n",
      "          'dreary': 1,\n",
      "          'place': 1,\n",
      "          'gothic': 1,\n",
      "          'modern': 1,\n",
      "          'nno': 1,\n",
      "          'skyscrapers': 1,\n",
      "          'monoliths': 1,\n",
      "          'current': 1,\n",
      "          'architecture': 1,\n",
      "          'technology': 1,\n",
      "          'shown': 1,\n",
      "          'famous': 1,\n",
      "          'landmark': 1,\n",
      "          'isnt': 1,\n",
      "          'liberty': 1,\n",
      "          'bell': 1,\n",
      "          'independence': 1,\n",
      "          'hall': 1,\n",
      "          'genos': 1,\n",
      "          'steaks': 1,\n",
      "          'nshadows': 1,\n",
      "          'abound': 1,\n",
      "          'days': 1,\n",
      "          'cloudy': 1,\n",
      "          'unpromising': 1,\n",
      "          'setting': 1,\n",
      "          'easy': 1,\n",
      "          'believe': 1,\n",
      "          'angels': 1,\n",
      "          'among': 1,\n",
      "          'men': 1,\n",
      "          'nfallens': 1,\n",
      "          'brimming': 1,\n",
      "          'potential': 1,\n",
      "          'realized': 1,\n",
      "          'nsomehow': 1,\n",
      "          'would': 1,\n",
      "          'frightening': 1,\n",
      "          'tale': 1,\n",
      "          'emerge': 1,\n",
      "          'something': 1,\n",
      "          'premise': 1,\n",
      "          'level': 1,\n",
      "          'terror': 1,\n",
      "          'gore': 1,\n",
      "          'kept': 1,\n",
      "          'check': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'creepily': 1,\n",
      "          'effective': 1,\n",
      "          'spirit': 1,\n",
      "          'moves': 1,\n",
      "          'people': 1,\n",
      "          'bump': 1,\n",
      "          'crowded': 1,\n",
      "          'sidewalks': 1,\n",
      "          'boasts': 1,\n",
      "          'chase': 1,\n",
      "          'sequence': 1,\n",
      "          'described': 1,\n",
      "          'nof': 1,\n",
      "          'dozen': 1,\n",
      "          'actors': 1,\n",
      "          'play': 1,\n",
      "          'far': 1,\n",
      "          'exotica': 1,\n",
      "          'crash': 1,\n",
      "          'screen': 1,\n",
      "          'gives': 1,\n",
      "          'fantastically': 1,\n",
      "          'charged': 1,\n",
      "          'njohn': 1,\n",
      "          'seems': 1,\n",
      "          'enjoying': 1,\n",
      "          'role': 1,\n",
      "          'relegated': 1,\n",
      "          'burly': 1,\n",
      "          'sidekick': 1,\n",
      "          'nsadly': 1,\n",
      "          'ones': 1,\n",
      "          'excel': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'boring': 1,\n",
      "          'flat': 1,\n",
      "          'disappointing': 1,\n",
      "          'per': 1,\n",
      "          'se': 1,\n",
      "          'ntheres': 1,\n",
      "          'real': 1,\n",
      "          'vulnerability': 1,\n",
      "          'desperation': 1,\n",
      "          'portrays': 1,\n",
      "          'character': 1,\n",
      "          'keeps': 1,\n",
      "          'us': 1,\n",
      "          'distanced': 1,\n",
      "          'slightly': 1,\n",
      "          'circumstances': 1,\n",
      "          'progressively': 1,\n",
      "          'dire': 1,\n",
      "          'cop': 1,\n",
      "          'lifeordeath': 1,\n",
      "          'chess': 1,\n",
      "          'game': 1,\n",
      "          'approaches': 1,\n",
      "          'point': 1,\n",
      "          'checkmate': 1,\n",
      "          'edge': 1,\n",
      "          'seat': 1,\n",
      "          'subdued': 1,\n",
      "          'approach': 1,\n",
      "          'part': 1,\n",
      "          'reason': 1,\n",
      "          'never': 1,\n",
      "          'felt': 1,\n",
      "          'urgency': 1,\n",
      "          'least': 1,\n",
      "          'believable': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'nto': 1,\n",
      "          'fair': 1,\n",
      "          'flaws': 1,\n",
      "          'characters': 1,\n",
      "          'arent': 1,\n",
      "          'actingrelated': 1,\n",
      "          'neither': 1,\n",
      "          'gretta': 1,\n",
      "          'milano': 1,\n",
      "          'wellwritten': 1,\n",
      "          'nthat': 1,\n",
      "          'nothing': 1,\n",
      "          'inspired': 1,\n",
      "          'either': 1,\n",
      "          'davidtzs': 1,\n",
      "          'sutherlands': 1,\n",
      "          'work': 1,\n",
      "          'nboth': 1,\n",
      "          'sleepwalking': 1,\n",
      "          'parts': 1,\n",
      "          'know': 1,\n",
      "          'contribution': 1,\n",
      "          'advancing': 1,\n",
      "          'developing': 1,\n",
      "          'multidimensional': 1,\n",
      "          'individual': 1,\n",
      "          'nnarratively': 1,\n",
      "          'glaring': 1,\n",
      "          'weaknesses': 1,\n",
      "          'nalthough': 1,\n",
      "          'proceeds': 1,\n",
      "          'convoluted': 1,\n",
      "          'gamelike': 1,\n",
      "          'structure': 1,\n",
      "          'uses': 1,\n",
      "          'washingtonsupplied': 1,\n",
      "          'voiceover': 1,\n",
      "          'overexplain': 1,\n",
      "          'matters': 1,\n",
      "          'times': 1,\n",
      "          'actually': 1,\n",
      "          'helpful': 1,\n",
      "          'use': 1,\n",
      "          'beyond': 1,\n",
      "          'obvious': 1,\n",
      "          'occasions': 1,\n",
      "          'ponderous': 1,\n",
      "          'lines': 1,\n",
      "          'sometimes': 1,\n",
      "          'come': 1,\n",
      "          'hard': 1,\n",
      "          'swallow': 1,\n",
      "          'addition': 1,\n",
      "          'saddled': 1,\n",
      "          'disgustingly': 1,\n",
      "          'bland': 1,\n",
      "          'generic': 1,\n",
      "          'embraced': 1,\n",
      "          'numerous': 1,\n",
      "          'tv': 1,\n",
      "          'shows': 1,\n",
      "          'negatives': 1,\n",
      "          'im': 1,\n",
      "          'still': 1,\n",
      "          'recommending': 1,\n",
      "          'strength': 1,\n",
      "          'complex': 1,\n",
      "          'especially': 1,\n",
      "          'ending': 1,\n",
      "          'loved': 1,\n",
      "          'final': 1,\n",
      "          'startling': 1,\n",
      "          'audacious': 1,\n",
      "          'unexpected': 1,\n",
      "          'often': 1,\n",
      "          'development': 1,\n",
      "          'takes': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'manages': 1,\n",
      "          'buck': 1,\n",
      "          'trend': 1,\n",
      "          'redeem': 1,\n",
      "          'great': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'considering': 1,\n",
      "          'january': 1,\n",
      "          'releases': 1,\n",
      "          'reasonably': 1,\n",
      "          'entertaining': 1,\n",
      "          'spend': 1,\n",
      "          'whatever': 1,\n",
      "          'end': 1,\n",
      "          'credits': 1,\n",
      "          'begun': 1,\n",
      "          'roll': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'good': 15,\n",
      "          'character': 6,\n",
      "          'melvin': 5,\n",
      "          'carol': 5,\n",
      "          'nicholson': 5,\n",
      "          'would': 5,\n",
      "          'though': 4,\n",
      "          'gets': 4,\n",
      "          'also': 4,\n",
      "          'hes': 4,\n",
      "          'fun': 4,\n",
      "          'simpsons': 3,\n",
      "          'screen': 3,\n",
      "          'comedy': 3,\n",
      "          'anyone': 3,\n",
      "          'bit': 3,\n",
      "          'seems': 3,\n",
      "          'nbut': 3,\n",
      "          'much': 3,\n",
      "          'film': 3,\n",
      "          'nice': 3,\n",
      "          'movie': 3,\n",
      "          'director': 2,\n",
      "          'slightly': 2,\n",
      "          'nnicholson': 2,\n",
      "          'udall': 2,\n",
      "          'person': 2,\n",
      "          'ever': 2,\n",
      "          'nhes': 2,\n",
      "          'talks': 2,\n",
      "          'waitress': 2,\n",
      "          'conelly': 2,\n",
      "          '1996': 2,\n",
      "          'gay': 2,\n",
      "          'neighbor': 2,\n",
      "          'end': 2,\n",
      "          '1997': 2,\n",
      "          'even': 2,\n",
      "          'get': 2,\n",
      "          'ntheres': 2,\n",
      "          'role': 2,\n",
      "          'performance': 2,\n",
      "          'scene': 2,\n",
      "          'gooding': 2,\n",
      "          'maguire': 2,\n",
      "          'although': 2,\n",
      "          'still': 2,\n",
      "          'nhe': 2,\n",
      "          'nicholsons': 2,\n",
      "          'fall': 2,\n",
      "          'love': 2,\n",
      "          'melvins': 2,\n",
      "          'quickly': 2,\n",
      "          'like': 2,\n",
      "          'time': 2,\n",
      "          'make': 2,\n",
      "          'audience': 2,\n",
      "          'generally': 2,\n",
      "          'james': 1,\n",
      "          'l': 1,\n",
      "          'brooks': 1,\n",
      "          'one': 1,\n",
      "          'developers': 1,\n",
      "          'broadcast': 1,\n",
      "          'news': 1,\n",
      "          'returns': 1,\n",
      "          'big': 1,\n",
      "          'entertaining': 1,\n",
      "          'flawed': 1,\n",
      "          'plays': 1,\n",
      "          'probably': 1,\n",
      "          'horrible': 1,\n",
      "          'racist': 1,\n",
      "          'homophobic': 1,\n",
      "          'never': 1,\n",
      "          'word': 1,\n",
      "          'say': 1,\n",
      "          'nso': 1,\n",
      "          'nobody': 1,\n",
      "          'except': 1,\n",
      "          'v': 1,\n",
      "          'nsitcom': 1,\n",
      "          'star': 1,\n",
      "          'hunt': 1,\n",
      "          'last': 1,\n",
      "          'seen': 1,\n",
      "          'twister': 1,\n",
      "          'nnaturally': 1,\n",
      "          'simon': 1,\n",
      "          'bishop': 1,\n",
      "          'kinnear': 1,\n",
      "          'hates': 1,\n",
      "          'hit': 1,\n",
      "          'nlike': 1,\n",
      "          'hunting': 1,\n",
      "          'titanic': 1,\n",
      "          'outcome': 1,\n",
      "          'completely': 1,\n",
      "          'obvious': 1,\n",
      "          'enjoyable': 1,\n",
      "          'funny': 1,\n",
      "          'warm': 1,\n",
      "          'hilarious': 1,\n",
      "          'churning': 1,\n",
      "          'insults': 1,\n",
      "          'superb': 1,\n",
      "          'relish': 1,\n",
      "          'nonly': 1,\n",
      "          'could': 1,\n",
      "          'away': 1,\n",
      "          'lines': 1,\n",
      "          'delivers': 1,\n",
      "          'nhunt': 1,\n",
      "          'easily': 1,\n",
      "          'rises': 1,\n",
      "          'challenge': 1,\n",
      "          'thankfully': 1,\n",
      "          'chemistry': 1,\n",
      "          'nkinnear': 1,\n",
      "          'underwritten': 1,\n",
      "          'plot': 1,\n",
      "          'convience': 1,\n",
      "          'nalthough': 1,\n",
      "          'exist': 1,\n",
      "          'help': 1,\n",
      "          'come': 1,\n",
      "          'together': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'stealer': 1,\n",
      "          'simons': 1,\n",
      "          'dog': 1,\n",
      "          'funnier': 1,\n",
      "          'pets': 1,\n",
      "          'always': 1,\n",
      "          'cute': 1,\n",
      "          'nproviding': 1,\n",
      "          'solid': 1,\n",
      "          'support': 1,\n",
      "          'cuba': 1,\n",
      "          'jnr': 1,\n",
      "          'jerry': 1,\n",
      "          'yeardly': 1,\n",
      "          'smith': 1,\n",
      "          'voice': 1,\n",
      "          'lisa': 1,\n",
      "          'isnt': 1,\n",
      "          'overacts': 1,\n",
      "          'little': 1,\n",
      "          'annoying': 1,\n",
      "          'nsmith': 1,\n",
      "          'fairly': 1,\n",
      "          'small': 1,\n",
      "          'neven': 1,\n",
      "          'lawrence': 1,\n",
      "          'kasdan': 1,\n",
      "          'body': 1,\n",
      "          'heat': 1,\n",
      "          '1981': 1,\n",
      "          'makes': 1,\n",
      "          'appearance': 1,\n",
      "          'doctor': 1,\n",
      "          'primarily': 1,\n",
      "          'every': 1,\n",
      "          'steals': 1,\n",
      "          'hateful': 1,\n",
      "          'amazing': 1,\n",
      "          'especially': 1,\n",
      "          'nand': 1,\n",
      "          'films': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'nits': 1,\n",
      "          'totally': 1,\n",
      "          'unbelievable': 1,\n",
      "          'consider': 1,\n",
      "          'liking': 1,\n",
      "          'nshe': 1,\n",
      "          'doesnt': 1,\n",
      "          'naturally': 1,\n",
      "          'forces': 1,\n",
      "          'nalso': 1,\n",
      "          'go': 1,\n",
      "          'ni': 1,\n",
      "          'doubt': 1,\n",
      "          'able': 1,\n",
      "          'turn': 1,\n",
      "          'back': 1,\n",
      "          'loving': 1,\n",
      "          'nit': 1,\n",
      "          'take': 1,\n",
      "          'helluva': 1,\n",
      "          'long': 1,\n",
      "          'longer': 1,\n",
      "          'nbrooks': 1,\n",
      "          'direction': 1,\n",
      "          'average': 1,\n",
      "          'usually': 1,\n",
      "          'manages': 1,\n",
      "          'emotion': 1,\n",
      "          'handles': 1,\n",
      "          'scenes': 1,\n",
      "          'better': 1,\n",
      "          'sentimental': 1,\n",
      "          'ones': 1,\n",
      "          'tends': 1,\n",
      "          'pile': 1,\n",
      "          'schmaltz': 1,\n",
      "          'soundtrack': 1,\n",
      "          'veteran': 1,\n",
      "          'composer': 1,\n",
      "          'hans': 1,\n",
      "          'zimmer': 1,\n",
      "          'achieves': 1,\n",
      "          'sets': 1,\n",
      "          'feel': 1,\n",
      "          'nthe': 1,\n",
      "          'overlong': 1,\n",
      "          'running': 1,\n",
      "          'passes': 1,\n",
      "          'pretty': 1,\n",
      "          'noverall': 1,\n",
      "          'may': 1,\n",
      "          'unbelivable': 1,\n",
      "          'certainly': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'jack': 1,\n",
      "          'nnot': 1,\n",
      "          'quite': 1,\n",
      "          'pardon': 1,\n",
      "          'bad': 1,\n",
      "          'joke': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'love': 7,\n",
      "          'marianne': 6,\n",
      "          'rudolph': 5,\n",
      "          'characters': 5,\n",
      "          'lucky': 5,\n",
      "          'phyllis': 5,\n",
      "          'jeffrey': 4,\n",
      "          'mrs': 3,\n",
      "          'nparker': 3,\n",
      "          'movie': 3,\n",
      "          'film': 3,\n",
      "          'afterglow': 3,\n",
      "          'picture': 3,\n",
      "          'rudolphs': 3,\n",
      "          'ni': 3,\n",
      "          'one': 3,\n",
      "          'two': 3,\n",
      "          'much': 3,\n",
      "          'director': 2,\n",
      "          'making': 2,\n",
      "          'romantic': 2,\n",
      "          'motion': 2,\n",
      "          'approach': 2,\n",
      "          'equinox': 2,\n",
      "          'seems': 2,\n",
      "          'real': 2,\n",
      "          'short': 2,\n",
      "          'nafterglow': 2,\n",
      "          'married': 2,\n",
      "          'lee': 2,\n",
      "          'miller': 2,\n",
      "          'businessman': 2,\n",
      "          'flynn': 2,\n",
      "          'boyle': 2,\n",
      "          'shes': 2,\n",
      "          'find': 2,\n",
      "          'else': 2,\n",
      "          'nolte': 2,\n",
      "          'julie': 2,\n",
      "          'christie': 2,\n",
      "          'older': 2,\n",
      "          'theyre': 2,\n",
      "          'emotional': 2,\n",
      "          'doesnt': 2,\n",
      "          'means': 2,\n",
      "          'however': 2,\n",
      "          'character': 2,\n",
      "          'stylistic': 1,\n",
      "          'detour': 1,\n",
      "          'vicious': 1,\n",
      "          'circle': 1,\n",
      "          'despite': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'tone': 1,\n",
      "          'close': 1,\n",
      "          'conventional': 1,\n",
      "          'alan': 1,\n",
      "          'returned': 1,\n",
      "          'unique': 1,\n",
      "          'brand': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'betrayal': 1,\n",
      "          'selfabsorption': 1,\n",
      "          'nwhile': 1,\n",
      "          'may': 1,\n",
      "          'unusual': 1,\n",
      "          'themes': 1,\n",
      "          'fashion': 1,\n",
      "          'atypical': 1,\n",
      "          'situations': 1,\n",
      "          'makes': 1,\n",
      "          'intriguing': 1,\n",
      "          'always': 1,\n",
      "          'pleasant': 1,\n",
      "          'nit': 1,\n",
      "          'said': 1,\n",
      "          'polarizing': 1,\n",
      "          'meaning': 1,\n",
      "          'viewers': 1,\n",
      "          'either': 1,\n",
      "          'work': 1,\n",
      "          'hate': 1,\n",
      "          'nuntil': 1,\n",
      "          'overly': 1,\n",
      "          'impressed': 1,\n",
      "          'movies': 1,\n",
      "          'found': 1,\n",
      "          'last': 1,\n",
      "          'pre': 1,\n",
      "          'effort': 1,\n",
      "          'irritating': 1,\n",
      "          'frustrating': 1,\n",
      "          'somewhat': 1,\n",
      "          'surprised': 1,\n",
      "          'therefore': 1,\n",
      "          'discover': 1,\n",
      "          'liked': 1,\n",
      "          'nthere': 1,\n",
      "          'several': 1,\n",
      "          'reasons': 1,\n",
      "          'paramount': 1,\n",
      "          'muted': 1,\n",
      "          'strident': 1,\n",
      "          'mannered': 1,\n",
      "          'aspects': 1,\n",
      "          'like': 1,\n",
      "          'people': 1,\n",
      "          'genuine': 1,\n",
      "          'problems': 1,\n",
      "          'story': 1,\n",
      "          'absorbing': 1,\n",
      "          'acting': 1,\n",
      "          'topnotch': 1,\n",
      "          'nin': 1,\n",
      "          'created': 1,\n",
      "          'world': 1,\n",
      "          'worth': 1,\n",
      "          'spending': 1,\n",
      "          'hours': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'unhappily': 1,\n",
      "          'couples': 1,\n",
      "          'njeffrey': 1,\n",
      "          'byron': 1,\n",
      "          'jonny': 1,\n",
      "          'cold': 1,\n",
      "          'seeminglyheartless': 1,\n",
      "          'sexually': 1,\n",
      "          'indifferent': 1,\n",
      "          'young': 1,\n",
      "          'wife': 1,\n",
      "          'lara': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'obsessed': 1,\n",
      "          'baby': 1,\n",
      "          'never': 1,\n",
      "          'attempts': 1,\n",
      "          'interact': 1,\n",
      "          'husband': 1,\n",
      "          'human': 1,\n",
      "          'level': 1,\n",
      "          'nall': 1,\n",
      "          'interested': 1,\n",
      "          'seducing': 1,\n",
      "          'days': 1,\n",
      "          'ovulating': 1,\n",
      "          'nafter': 1,\n",
      "          'refuses': 1,\n",
      "          'make': 1,\n",
      "          'decides': 1,\n",
      "          'someone': 1,\n",
      "          'play': 1,\n",
      "          'role': 1,\n",
      "          'sperm': 1,\n",
      "          'donor': 1,\n",
      "          'couple': 1,\n",
      "          'nick': 1,\n",
      "          'mann': 1,\n",
      "          'pair': 1,\n",
      "          'content': 1,\n",
      "          'na': 1,\n",
      "          'mysterious': 1,\n",
      "          'fracture': 1,\n",
      "          'past': 1,\n",
      "          'relationship': 1,\n",
      "          'driven': 1,\n",
      "          'apart': 1,\n",
      "          'nthey': 1,\n",
      "          'remain': 1,\n",
      "          'matter': 1,\n",
      "          'convenience': 1,\n",
      "          'since': 1,\n",
      "          'wont': 1,\n",
      "          'allow': 1,\n",
      "          'touch': 1,\n",
      "          'unspoken': 1,\n",
      "          'agreement': 1,\n",
      "          'whereby': 1,\n",
      "          'fool': 1,\n",
      "          'around': 1,\n",
      "          'wants': 1,\n",
      "          'provided': 1,\n",
      "          'lasting': 1,\n",
      "          'bond': 1,\n",
      "          'established': 1,\n",
      "          'result': 1,\n",
      "          'affairs': 1,\n",
      "          'landscape': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'pain': 1,\n",
      "          'palpable': 1,\n",
      "          'four': 1,\n",
      "          'begin': 1,\n",
      "          'interacting': 1,\n",
      "          'hires': 1,\n",
      "          'handyman': 1,\n",
      "          'fix': 1,\n",
      "          'inside': 1,\n",
      "          'apartment': 1,\n",
      "          'shares': 1,\n",
      "          'immediately': 1,\n",
      "          'attracted': 1,\n",
      "          'another': 1,\n",
      "          'take': 1,\n",
      "          'long': 1,\n",
      "          'lounging': 1,\n",
      "          'together': 1,\n",
      "          'naked': 1,\n",
      "          'pool': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'captivated': 1,\n",
      "          'women': 1,\n",
      "          'runs': 1,\n",
      "          'hotel': 1,\n",
      "          'bar': 1,\n",
      "          'smitten': 1,\n",
      "          'invites': 1,\n",
      "          'accompany': 1,\n",
      "          'weekend': 1,\n",
      "          'retreat': 1,\n",
      "          'mountains': 1,\n",
      "          'couplings': 1,\n",
      "          'interesting': 1,\n",
      "          'illustrate': 1,\n",
      "          'multiple': 1,\n",
      "          'faces': 1,\n",
      "          'nsex': 1,\n",
      "          'something': 1,\n",
      "          'different': 1,\n",
      "          'everyone': 1,\n",
      "          'unpleasant': 1,\n",
      "          'chore': 1,\n",
      "          'loss': 1,\n",
      "          'control': 1,\n",
      "          'maternal': 1,\n",
      "          'end': 1,\n",
      "          'enjoyable': 1,\n",
      "          'distraction': 1,\n",
      "          'blocks': 1,\n",
      "          'marital': 1,\n",
      "          'troubles': 1,\n",
      "          'method': 1,\n",
      "          'establishing': 1,\n",
      "          'denying': 1,\n",
      "          'closeness': 1,\n",
      "          'nultimately': 1,\n",
      "          'none': 1,\n",
      "          'appears': 1,\n",
      "          'anyone': 1,\n",
      "          'greatest': 1,\n",
      "          'strength': 1,\n",
      "          'lies': 1,\n",
      "          'script': 1,\n",
      "          'performances': 1,\n",
      "          'njonny': 1,\n",
      "          'perfect': 1,\n",
      "          'selfish': 1,\n",
      "          'callous': 1,\n",
      "          'suitandtie': 1,\n",
      "          'nthose': 1,\n",
      "          'recall': 1,\n",
      "          'sickboy': 1,\n",
      "          'trainspotting': 1,\n",
      "          'almost': 1,\n",
      "          'unrecognizable': 1,\n",
      "          'image': 1,\n",
      "          'conformity': 1,\n",
      "          'nlara': 1,\n",
      "          'wasnt': 1,\n",
      "          'impressive': 1,\n",
      "          'greatly': 1,\n",
      "          'improved': 1,\n",
      "          'jumble': 1,\n",
      "          'sexiness': 1,\n",
      "          'vulnerability': 1,\n",
      "          'nnick': 1,\n",
      "          'delightful': 1,\n",
      "          'uninhibited': 1,\n",
      "          'manages': 1,\n",
      "          'deliver': 1,\n",
      "          'pregnant': 1,\n",
      "          'lines': 1,\n",
      "          'practiced': 1,\n",
      "          'ease': 1,\n",
      "          'clear': 1,\n",
      "          'standout': 1,\n",
      "          'nothing': 1,\n",
      "          'delicious': 1,\n",
      "          'worldweary': 1,\n",
      "          'nher': 1,\n",
      "          'often': 1,\n",
      "          'wry': 1,\n",
      "          'occasionally': 1,\n",
      "          'cutting': 1,\n",
      "          'asides': 1,\n",
      "          'source': 1,\n",
      "          'films': 1,\n",
      "          'humor': 1,\n",
      "          'theres': 1,\n",
      "          'hardly': 1,\n",
      "          'ever': 1,\n",
      "          'moment': 1,\n",
      "          'steal': 1,\n",
      "          'spotlight': 1,\n",
      "          'costars': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'convert': 1,\n",
      "          'detractors': 1,\n",
      "          'little': 1,\n",
      "          'accessible': 1,\n",
      "          'directors': 1,\n",
      "          'earlier': 1,\n",
      "          'productions': 1,\n",
      "          'nenough': 1,\n",
      "          'trademark': 1,\n",
      "          'style': 1,\n",
      "          'remains': 1,\n",
      "          'reassure': 1,\n",
      "          'supporters': 1,\n",
      "          'basically': 1,\n",
      "          'fourpronged': 1,\n",
      "          'study': 1,\n",
      "          'plot': 1,\n",
      "          'especially': 1,\n",
      "          'compelling': 1,\n",
      "          'interaction': 1,\n",
      "          'thats': 1,\n",
      "          'reason': 1,\n",
      "          'see': 1,\n",
      "          'nrudolph': 1,\n",
      "          'painted': 1,\n",
      "          'able': 1,\n",
      "          'nonromantic': 1,\n",
      "          'side': 1,\n",
      "          'tolerance': 1,\n",
      "          'familiarity': 1,\n",
      "          'affection': 1,\n",
      "          'attraction': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'story': 6,\n",
      "          'gerard': 6,\n",
      "          'believable': 4,\n",
      "          'richard': 4,\n",
      "          'man': 4,\n",
      "          'wife': 4,\n",
      "          'nthe': 4,\n",
      "          'kimbles': 4,\n",
      "          'much': 4,\n",
      "          'film': 4,\n",
      "          'great': 4,\n",
      "          'one': 3,\n",
      "          'greatest': 3,\n",
      "          'action': 3,\n",
      "          'sense': 3,\n",
      "          'murder': 3,\n",
      "          'nwe': 3,\n",
      "          'see': 3,\n",
      "          'get': 3,\n",
      "          'make': 3,\n",
      "          'fugitive': 2,\n",
      "          'characters': 2,\n",
      "          'nthis': 2,\n",
      "          'mystery': 2,\n",
      "          'manner': 2,\n",
      "          'constantly': 2,\n",
      "          'dont': 2,\n",
      "          'killer': 2,\n",
      "          'little': 2,\n",
      "          'innocence': 2,\n",
      "          'time': 2,\n",
      "          'point': 2,\n",
      "          'none': 2,\n",
      "          'ensues': 2,\n",
      "          'movie': 2,\n",
      "          'like': 2,\n",
      "          'show': 2,\n",
      "          'know': 2,\n",
      "          'killed': 2,\n",
      "          'chase': 2,\n",
      "          'scene': 2,\n",
      "          'makes': 2,\n",
      "          'go': 2,\n",
      "          'probably': 1,\n",
      "          'thrillers': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'realistic': 1,\n",
      "          'tells': 1,\n",
      "          'exciting': 1,\n",
      "          'thats': 1,\n",
      "          'totally': 1,\n",
      "          'throughout': 1,\n",
      "          'isnt': 1,\n",
      "          'overthetop': 1,\n",
      "          'flick': 1,\n",
      "          'sake': 1,\n",
      "          'intelligent': 1,\n",
      "          'adventure': 1,\n",
      "          'real': 1,\n",
      "          'works': 1,\n",
      "          'perfectly': 1,\n",
      "          'nharrison': 1,\n",
      "          'ford': 1,\n",
      "          'stars': 1,\n",
      "          'dr': 1,\n",
      "          'kimble': 1,\n",
      "          'wrongly': 1,\n",
      "          'accused': 1,\n",
      "          'convicted': 1,\n",
      "          'murdering': 1,\n",
      "          'entire': 1,\n",
      "          'premise': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'told': 1,\n",
      "          'straightforward': 1,\n",
      "          'flashbacks': 1,\n",
      "          'perspective': 1,\n",
      "          'nhints': 1,\n",
      "          'dropped': 1,\n",
      "          'various': 1,\n",
      "          'times': 1,\n",
      "          'night': 1,\n",
      "          'helen': 1,\n",
      "          'sela': 1,\n",
      "          'ward': 1,\n",
      "          'murdered': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'might': 1,\n",
      "          'even': 1,\n",
      "          'doubt': 1,\n",
      "          'doesnt': 1,\n",
      "          'spend': 1,\n",
      "          'details': 1,\n",
      "          'trial': 1,\n",
      "          'conviction': 1,\n",
      "          'scenes': 1,\n",
      "          'botched': 1,\n",
      "          'escape': 1,\n",
      "          'attempt': 1,\n",
      "          'fellow': 1,\n",
      "          'inmates': 1,\n",
      "          'leads': 1,\n",
      "          'fantastic': 1,\n",
      "          'train': 1,\n",
      "          'wreck': 1,\n",
      "          'nbut': 1,\n",
      "          'seem': 1,\n",
      "          'gratuitous': 1,\n",
      "          'formulated': 1,\n",
      "          'actually': 1,\n",
      "          'suspenseful': 1,\n",
      "          'watch': 1,\n",
      "          'incredible': 1,\n",
      "          'able': 1,\n",
      "          'take': 1,\n",
      "          'elements': 1,\n",
      "          'wholly': 1,\n",
      "          'original': 1,\n",
      "          'ntommy': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'almost': 1,\n",
      "          'steals': 1,\n",
      "          'deputy': 1,\n",
      "          'sam': 1,\n",
      "          'u': 1,\n",
      "          'marshall': 1,\n",
      "          'expert': 1,\n",
      "          'hunting': 1,\n",
      "          'fugitives': 1,\n",
      "          'nfrom': 1,\n",
      "          'moment': 1,\n",
      "          'appears': 1,\n",
      "          'huge': 1,\n",
      "          'game': 1,\n",
      "          'cat': 1,\n",
      "          'mouse': 1,\n",
      "          'occur': 1,\n",
      "          'nkimble': 1,\n",
      "          'equally': 1,\n",
      "          'matched': 1,\n",
      "          'way': 1,\n",
      "          'tell': 1,\n",
      "          'going': 1,\n",
      "          'outsmart': 1,\n",
      "          'nmost': 1,\n",
      "          'deals': 1,\n",
      "          'richards': 1,\n",
      "          'complex': 1,\n",
      "          'investigation': 1,\n",
      "          'tries': 1,\n",
      "          'find': 1,\n",
      "          'onearmed': 1,\n",
      "          'nford': 1,\n",
      "          'lot': 1,\n",
      "          'lines': 1,\n",
      "          'stuart': 1,\n",
      "          'twohys': 1,\n",
      "          'script': 1,\n",
      "          'daviss': 1,\n",
      "          'outstanding': 1,\n",
      "          'direction': 1,\n",
      "          'njust': 1,\n",
      "          'watching': 1,\n",
      "          'use': 1,\n",
      "          'keen': 1,\n",
      "          'intelligence': 1,\n",
      "          'wits': 1,\n",
      "          'disguising': 1,\n",
      "          'detective': 1,\n",
      "          'work': 1,\n",
      "          'interesting': 1,\n",
      "          'learns': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'staff': 1,\n",
      "          'using': 1,\n",
      "          'skills': 1,\n",
      "          'hunt': 1,\n",
      "          'nat': 1,\n",
      "          'run': 1,\n",
      "          'smart': 1,\n",
      "          'nhe': 1,\n",
      "          'leaves': 1,\n",
      "          'clues': 1,\n",
      "          'help': 1,\n",
      "          'solve': 1,\n",
      "          'charms': 1,\n",
      "          'humor': 1,\n",
      "          'nthere': 1,\n",
      "          'comradeship': 1,\n",
      "          'two': 1,\n",
      "          'closest': 1,\n",
      "          'deputies': 1,\n",
      "          'cosmo': 1,\n",
      "          'renfo': 1,\n",
      "          'pantoliano': 1,\n",
      "          'biggs': 1,\n",
      "          'roebuck': 1,\n",
      "          'nthey': 1,\n",
      "          'trying': 1,\n",
      "          'catch': 1,\n",
      "          'believe': 1,\n",
      "          'dangerous': 1,\n",
      "          'murderer': 1,\n",
      "          'yet': 1,\n",
      "          'start': 1,\n",
      "          'small': 1,\n",
      "          'talk': 1,\n",
      "          'making': 1,\n",
      "          'funny': 1,\n",
      "          'wisecracks': 1,\n",
      "          'oneliners': 1,\n",
      "          'kind': 1,\n",
      "          'distracting': 1,\n",
      "          'final': 1,\n",
      "          'act': 1,\n",
      "          'concludes': 1,\n",
      "          'another': 1,\n",
      "          'terrific': 1,\n",
      "          'nrichard': 1,\n",
      "          'figures': 1,\n",
      "          'confronts': 1,\n",
      "          'although': 1,\n",
      "          'typical': 1,\n",
      "          'fight': 1,\n",
      "          'case': 1,\n",
      "          'far': 1,\n",
      "          'solved': 1,\n",
      "          'ordered': 1,\n",
      "          'nose': 1,\n",
      "          'along': 1,\n",
      "          'realize': 1,\n",
      "          'end': 1,\n",
      "          'put': 1,\n",
      "          'pieces': 1,\n",
      "          'together': 1,\n",
      "          'nmaybe': 1,\n",
      "          'finally': 1,\n",
      "          'bit': 1,\n",
      "          'still': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nwere': 1,\n",
      "          'relieved': 1,\n",
      "          'justice': 1,\n",
      "          'served': 1,\n",
      "          'nits': 1,\n",
      "          'plot': 1,\n",
      "          'motions': 1,\n",
      "          'intriguing': 1,\n",
      "          'nwatching': 1,\n",
      "          'seemingly': 1,\n",
      "          'average': 1,\n",
      "          'adventurous': 1,\n",
      "          'nif': 1,\n",
      "          'hollywood': 1,\n",
      "          'could': 1,\n",
      "          'produce': 1,\n",
      "          'movies': 1,\n",
      "          'n': 1,\n",
      "          '103196': 1,\n",
      "          '12997': 1,\n",
      "          '61397': 1,\n",
      "          'also': 1,\n",
      "          'nick': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'wedding': 9,\n",
      "          'film': 7,\n",
      "          'singer': 6,\n",
      "          'good': 5,\n",
      "          'romantic': 4,\n",
      "          'sandler': 4,\n",
      "          'movie': 4,\n",
      "          'funny': 4,\n",
      "          'nand': 4,\n",
      "          'seen': 3,\n",
      "          'hard': 3,\n",
      "          'ni': 3,\n",
      "          'robby': 3,\n",
      "          'nin': 3,\n",
      "          'like': 3,\n",
      "          'really': 3,\n",
      "          'julia': 3,\n",
      "          'think': 2,\n",
      "          'ever': 2,\n",
      "          'predict': 2,\n",
      "          'films': 2,\n",
      "          'im': 2,\n",
      "          'watching': 2,\n",
      "          'comedies': 2,\n",
      "          'plot': 2,\n",
      "          'actually': 2,\n",
      "          'nnot': 2,\n",
      "          'even': 2,\n",
      "          'little': 2,\n",
      "          'nmy': 2,\n",
      "          'great': 2,\n",
      "          'barrymore': 2,\n",
      "          'left': 2,\n",
      "          'air': 2,\n",
      "          'laughed': 2,\n",
      "          'writing': 2,\n",
      "          'music': 2,\n",
      "          'job': 2,\n",
      "          'life': 2,\n",
      "          'na': 2,\n",
      "          'e': 2,\n",
      "          'glenn': 2,\n",
      "          'jerk': 2,\n",
      "          'anyone': 2,\n",
      "          'something': 2,\n",
      "          'truly': 2,\n",
      "          'makes': 2,\n",
      "          'simply': 2,\n",
      "          'ive': 2,\n",
      "          'look': 2,\n",
      "          'character': 2,\n",
      "          'likable': 2,\n",
      "          'comedy': 2,\n",
      "          'hilarious': 2,\n",
      "          'first': 2,\n",
      "          'nthe': 2,\n",
      "          'competent': 1,\n",
      "          'member': 1,\n",
      "          'human': 1,\n",
      "          'race': 1,\n",
      "          'whos': 1,\n",
      "          'movieany': 1,\n",
      "          'moviecould': 1,\n",
      "          'probably': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'try': 1,\n",
      "          'especially': 1,\n",
      "          'particular': 1,\n",
      "          'advanced': 1,\n",
      "          'seconds': 1,\n",
      "          'sometimes': 1,\n",
      "          'minutes': 1,\n",
      "          'saw': 1,\n",
      "          'happen': 1,\n",
      "          'screen': 1,\n",
      "          'nbut': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'reasons': 1,\n",
      "          'simple': 1,\n",
      "          '1': 1,\n",
      "          'adam': 1,\n",
      "          'n2': 1,\n",
      "          'drew': 1,\n",
      "          'n3': 1,\n",
      "          'nthere': 1,\n",
      "          'parts': 1,\n",
      "          'gasping': 1,\n",
      "          'laughing': 1,\n",
      "          'havent': 1,\n",
      "          'since': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'nsandler': 1,\n",
      "          'plays': 1,\n",
      "          'hart': 1,\n",
      "          'dreams': 1,\n",
      "          'rock': 1,\n",
      "          'band': 1,\n",
      "          'opening': 1,\n",
      "          'scenes': 1,\n",
      "          'seems': 1,\n",
      "          'happygolucky': 1,\n",
      "          'least': 1,\n",
      "          'partially': 1,\n",
      "          'enjoying': 1,\n",
      "          'profession': 1,\n",
      "          'rather': 1,\n",
      "          'talking': 1,\n",
      "          'drunk': 1,\n",
      "          'individual': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'decides': 1,\n",
      "          'brothers': 1,\n",
      "          'place': 1,\n",
      "          'tell': 1,\n",
      "          'whole': 1,\n",
      "          'world': 1,\n",
      "          'point': 1,\n",
      "          'utter': 1,\n",
      "          'pointlessness': 1,\n",
      "          'week': 1,\n",
      "          'later': 1,\n",
      "          'standing': 1,\n",
      "          'altar': 1,\n",
      "          'exfianc': 1,\n",
      "          'linda': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'nwith': 1,\n",
      "          'complete': 1,\n",
      "          'disarray': 1,\n",
      "          'meets': 1,\n",
      "          'waitress': 1,\n",
      "          'nshe': 1,\n",
      "          'engaged': 1,\n",
      "          'matthew': 1,\n",
      "          'glave': 1,\n",
      "          'marry': 1,\n",
      "          'three': 1,\n",
      "          'months': 1,\n",
      "          'njulia': 1,\n",
      "          'become': 1,\n",
      "          'friends': 1,\n",
      "          'enlists': 1,\n",
      "          'help': 1,\n",
      "          'plans': 1,\n",
      "          'nsoon': 1,\n",
      "          'predictably': 1,\n",
      "          'becomes': 1,\n",
      "          'pretty': 1,\n",
      "          'clear': 1,\n",
      "          'love': 1,\n",
      "          'noh': 1,\n",
      "          'sure': 1,\n",
      "          'trite': 1,\n",
      "          'making': 1,\n",
      "          'expected': 1,\n",
      "          'us': 1,\n",
      "          'feel': 1,\n",
      "          'suspense': 1,\n",
      "          'underestimated': 1,\n",
      "          'audience': 1,\n",
      "          'nwhat': 1,\n",
      "          'story': 1,\n",
      "          'bearable': 1,\n",
      "          'aside': 1,\n",
      "          'terrific': 1,\n",
      "          'costumes': 1,\n",
      "          '80s': 1,\n",
      "          'performances': 1,\n",
      "          'nbarrymore': 1,\n",
      "          'adorable': 1,\n",
      "          'never': 1,\n",
      "          'close': 1,\n",
      "          'way': 1,\n",
      "          'et': 1,\n",
      "          'pleasant': 1,\n",
      "          'acting': 1,\n",
      "          'oneand': 1,\n",
      "          'doesnt': 1,\n",
      "          'hurt': 1,\n",
      "          'adequately': 1,\n",
      "          'wellwritten': 1,\n",
      "          'played': 1,\n",
      "          'fullforce': 1,\n",
      "          'graves': 1,\n",
      "          'despicable': 1,\n",
      "          'villain': 1,\n",
      "          'nnaturally': 1,\n",
      "          'true': 1,\n",
      "          'star': 1,\n",
      "          'guy': 1,\n",
      "          'flatout': 1,\n",
      "          'nhe': 1,\n",
      "          'say': 1,\n",
      "          'isnt': 1,\n",
      "          'delivery': 1,\n",
      "          'laugh': 1,\n",
      "          'nhis': 1,\n",
      "          'comedic': 1,\n",
      "          'performance': 1,\n",
      "          'equals': 1,\n",
      "          'happy': 1,\n",
      "          'gilmore': 1,\n",
      "          'goes': 1,\n",
      "          'much': 1,\n",
      "          'proves': 1,\n",
      "          'indeed': 1,\n",
      "          'hold': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'nwhereas': 1,\n",
      "          'roles': 1,\n",
      "          'previous': 1,\n",
      "          'kind': 1,\n",
      "          'playing': 1,\n",
      "          'gives': 1,\n",
      "          'time': 1,\n",
      "          'fit': 1,\n",
      "          'nas': 1,\n",
      "          'far': 1,\n",
      "          'concerned': 1,\n",
      "          'succeeded': 1,\n",
      "          'testimony': 1,\n",
      "          'fact': 1,\n",
      "          'range': 1,\n",
      "          'talents': 1,\n",
      "          'nperhaps': 1,\n",
      "          'best': 1,\n",
      "          'moment': 1,\n",
      "          'sings': 1,\n",
      "          'song': 1,\n",
      "          'claims': 1,\n",
      "          'uneven': 1,\n",
      "          'began': 1,\n",
      "          'mood': 1,\n",
      "          'finished': 1,\n",
      "          'fianc': 1,\n",
      "          'abandoned': 1,\n",
      "          'nthis': 1,\n",
      "          'part': 1,\n",
      "          'literally': 1,\n",
      "          'groping': 1,\n",
      "          'breath': 1,\n",
      "          'takes': 1,\n",
      "          'hiatus': 1,\n",
      "          'laughs': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'finish': 1,\n",
      "          'enough': 1,\n",
      "          'moments': 1,\n",
      "          'hour': 1,\n",
      "          'make': 1,\n",
      "          'slumps': 1,\n",
      "          'progress': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'formal': 1,\n",
      "          'complaints': 1,\n",
      "          'arent': 1,\n",
      "          'important': 1,\n",
      "          'predicable': 1,\n",
      "          'cares': 1,\n",
      "          'characters': 1,\n",
      "          'extremely': 1,\n",
      "          'ridiculously': 1,\n",
      "          'experience': 1,\n",
      "          'enjoyable': 1,\n",
      "          'addition': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'seeing': 1,\n",
      "          'preview': 1,\n",
      "          'wanting': 1,\n",
      "          'see': 1,\n",
      "          'order': 1,\n",
      "          'conclude': 1,\n",
      "          'pointless': 1,\n",
      "          'written': 1,\n",
      "          'review': 1,\n",
      "          'want': 1,\n",
      "          'everyone': 1,\n",
      "          'know': 1,\n",
      "          'lot': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 7,\n",
      "          'mummy': 4,\n",
      "          'nthe': 4,\n",
      "          'would': 4,\n",
      "          'rick': 3,\n",
      "          'played': 3,\n",
      "          'movie': 3,\n",
      "          'non': 3,\n",
      "          'one': 3,\n",
      "          'make': 3,\n",
      "          'nwhile': 3,\n",
      "          'end': 3,\n",
      "          'sound': 3,\n",
      "          'mistress': 2,\n",
      "          'way': 2,\n",
      "          'flesheating': 2,\n",
      "          'scarab': 2,\n",
      "          'beetles': 2,\n",
      "          'named': 2,\n",
      "          'fraser': 2,\n",
      "          'evelyn': 2,\n",
      "          'good': 2,\n",
      "          'cgi': 2,\n",
      "          'done': 2,\n",
      "          'scenes': 2,\n",
      "          'involving': 2,\n",
      "          'mummies': 2,\n",
      "          'moments': 2,\n",
      "          'action': 2,\n",
      "          'nand': 2,\n",
      "          'comedy': 2,\n",
      "          'serving': 2,\n",
      "          'comic': 2,\n",
      "          'relief': 2,\n",
      "          'least': 2,\n",
      "          'slapstick': 2,\n",
      "          'army': 2,\n",
      "          'really': 2,\n",
      "          'entertaining': 2,\n",
      "          'nbut': 2,\n",
      "          'lot': 2,\n",
      "          'theatre': 2,\n",
      "          'based': 1,\n",
      "          'boris': 1,\n",
      "          'karloffs': 1,\n",
      "          'classic': 1,\n",
      "          'name': 1,\n",
      "          'starts': 1,\n",
      "          'highpriest': 1,\n",
      "          'osiris': 1,\n",
      "          'imhotep': 1,\n",
      "          'murders': 1,\n",
      "          'pharoah': 1,\n",
      "          'punished': 1,\n",
      "          'mummified': 1,\n",
      "          'horrifying': 1,\n",
      "          'possible': 1,\n",
      "          'bandaged': 1,\n",
      "          'tongue': 1,\n",
      "          'removed': 1,\n",
      "          'covered': 1,\n",
      "          'entombed': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'nrecap': 1,\n",
      "          'thousand': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'soldier': 1,\n",
      "          'brandan': 1,\n",
      "          'aids': 1,\n",
      "          'young': 1,\n",
      "          'historian': 1,\n",
      "          'rachel': 1,\n",
      "          'wiesz': 1,\n",
      "          'brother': 1,\n",
      "          'jonathan': 1,\n",
      "          'john': 1,\n",
      "          'hannah': 1,\n",
      "          'finding': 1,\n",
      "          'book': 1,\n",
      "          'amon': 1,\n",
      "          'ra': 1,\n",
      "          'process': 1,\n",
      "          'inadvertently': 1,\n",
      "          'freeing': 1,\n",
      "          'nproblem': 1,\n",
      "          'wants': 1,\n",
      "          'revive': 1,\n",
      "          'using': 1,\n",
      "          'sacrifice': 1,\n",
      "          'nwalking': 1,\n",
      "          'relatively': 1,\n",
      "          'low': 1,\n",
      "          'expectations': 1,\n",
      "          'thought': 1,\n",
      "          'actually': 1,\n",
      "          'pretty': 1,\n",
      "          'visuals': 1,\n",
      "          'astounding': 1,\n",
      "          'obviously': 1,\n",
      "          'cheaply': 1,\n",
      "          'nthey': 1,\n",
      "          'pack': 1,\n",
      "          'ton': 1,\n",
      "          'detail': 1,\n",
      "          'images': 1,\n",
      "          'especially': 1,\n",
      "          'rendered': 1,\n",
      "          'completely': 1,\n",
      "          'computer': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'makes': 1,\n",
      "          'brilliant': 1,\n",
      "          'unnerving': 1,\n",
      "          'goes': 1,\n",
      "          'people': 1,\n",
      "          'freed': 1,\n",
      "          'took': 1,\n",
      "          'artifacts': 1,\n",
      "          'cursed': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'attempts': 1,\n",
      "          'much': 1,\n",
      "          'short': 1,\n",
      "          'span': 1,\n",
      "          'time': 1,\n",
      "          'becoming': 1,\n",
      "          'tug': 1,\n",
      "          'war': 1,\n",
      "          'control': 1,\n",
      "          'genres': 1,\n",
      "          'hand': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'frightening': 1,\n",
      "          'horror': 1,\n",
      "          'side': 1,\n",
      "          'hilarious': 1,\n",
      "          'nideally': 1,\n",
      "          'successful': 1,\n",
      "          'focus': 1,\n",
      "          'oriented': 1,\n",
      "          'aspect': 1,\n",
      "          'character': 1,\n",
      "          'johnson': 1,\n",
      "          'problem': 1,\n",
      "          'three': 1,\n",
      "          'characters': 1,\n",
      "          'occasionally': 1,\n",
      "          'delivering': 1,\n",
      "          'witty': 1,\n",
      "          'oneliner': 1,\n",
      "          'nif': 1,\n",
      "          'trying': 1,\n",
      "          'horroractioncomedy': 1,\n",
      "          'helped': 1,\n",
      "          'established': 1,\n",
      "          'early': 1,\n",
      "          'unfortunately': 1,\n",
      "          'backstory': 1,\n",
      "          'imhoteps': 1,\n",
      "          'entombment': 1,\n",
      "          'impossible': 1,\n",
      "          'theres': 1,\n",
      "          'fight': 1,\n",
      "          'scene': 1,\n",
      "          'swordwielding': 1,\n",
      "          'well': 1,\n",
      "          'feel': 1,\n",
      "          'nreplace': 1,\n",
      "          'sword': 1,\n",
      "          'chainsaw': 1,\n",
      "          'youd': 1,\n",
      "          'effectively': 1,\n",
      "          'ash': 1,\n",
      "          'fighting': 1,\n",
      "          'zombies': 1,\n",
      "          'darkness': 1,\n",
      "          'funny': 1,\n",
      "          'feels': 1,\n",
      "          'place': 1,\n",
      "          'break': 1,\n",
      "          'naive': 1,\n",
      "          'heroes': 1,\n",
      "          'brendan': 1,\n",
      "          'playing': 1,\n",
      "          'whole': 1,\n",
      "          'pure': 1,\n",
      "          'popcorn': 1,\n",
      "          'fare': 1,\n",
      "          'beginning': 1,\n",
      "          'audience': 1,\n",
      "          'must': 1,\n",
      "          'review': 1,\n",
      "          'plea': 1,\n",
      "          'owners': 1,\n",
      "          'turn': 1,\n",
      "          'theatres': 1,\n",
      "          'systems': 1,\n",
      "          'ears': 1,\n",
      "          'almost': 1,\n",
      "          'ringing': 1,\n",
      "          'walked': 1,\n",
      "          'particularly': 1,\n",
      "          'irritating': 1,\n",
      "          'crap': 1,\n",
      "          'pants': 1,\n",
      "          'youre': 1,\n",
      "          'careful': 1,\n",
      "          'nwhen': 1,\n",
      "          'showing': 1,\n",
      "          'trailer': 1,\n",
      "          'upcoming': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'days': 1,\n",
      "          'loud': 1,\n",
      "          'couldnt': 1,\n",
      "          'anything': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'tenebrae': 7,\n",
      "          'argento': 7,\n",
      "          'film': 7,\n",
      "          'neal': 7,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'murder': 6,\n",
      "          'nthe': 6,\n",
      "          'argentos': 5,\n",
      "          'killer': 5,\n",
      "          'films': 5,\n",
      "          'mystery': 4,\n",
      "          'back': 4,\n",
      "          'nhe': 4,\n",
      "          'much': 3,\n",
      "          'nin': 3,\n",
      "          'still': 3,\n",
      "          'giallo': 3,\n",
      "          'story': 3,\n",
      "          'peter': 3,\n",
      "          'serial': 3,\n",
      "          'personal': 3,\n",
      "          'world': 3,\n",
      "          'may': 3,\n",
      "          'deep': 3,\n",
      "          'scenes': 3,\n",
      "          'nand': 3,\n",
      "          'way': 3,\n",
      "          'time': 3,\n",
      "          'nbut': 3,\n",
      "          'scene': 3,\n",
      "          'end': 3,\n",
      "          'girl': 3,\n",
      "          'italian': 2,\n",
      "          'style': 2,\n",
      "          'matters': 2,\n",
      "          'somewhat': 2,\n",
      "          'mysteries': 2,\n",
      "          'perfect': 2,\n",
      "          'viewings': 2,\n",
      "          'reveal': 2,\n",
      "          'stylish': 2,\n",
      "          'thriller': 2,\n",
      "          'franciosa': 2,\n",
      "          'decides': 2,\n",
      "          'take': 2,\n",
      "          'seems': 2,\n",
      "          'character': 2,\n",
      "          'business': 2,\n",
      "          'ntenebrae': 2,\n",
      "          'least': 2,\n",
      "          'two': 2,\n",
      "          'three': 2,\n",
      "          'themes': 2,\n",
      "          'version': 2,\n",
      "          'fans': 2,\n",
      "          'say': 2,\n",
      "          'impressive': 2,\n",
      "          'earlier': 2,\n",
      "          'like': 2,\n",
      "          'red': 2,\n",
      "          'set': 2,\n",
      "          'rock': 2,\n",
      "          'viewers': 2,\n",
      "          'mind': 2,\n",
      "          'narrative': 2,\n",
      "          'doesnt': 2,\n",
      "          'point': 2,\n",
      "          'dont': 2,\n",
      "          'nby': 2,\n",
      "          'twist': 2,\n",
      "          'could': 2,\n",
      "          'nwe': 2,\n",
      "          'witness': 2,\n",
      "          'later': 2,\n",
      "          'us': 2,\n",
      "          'bloody': 2,\n",
      "          'see': 2,\n",
      "          'whole': 2,\n",
      "          'killers': 2,\n",
      "          'almost': 2,\n",
      "          'also': 2,\n",
      "          'injury': 2,\n",
      "          'look': 2,\n",
      "          'problem': 2,\n",
      "          'boy': 2,\n",
      "          'flaws': 2,\n",
      "          'visuals': 2,\n",
      "          'one': 2,\n",
      "          'exciting': 2,\n",
      "          'ntake': 2,\n",
      "          'nits': 2,\n",
      "          'rewatching': 1,\n",
      "          'writerdirector': 1,\n",
      "          'dario': 1,\n",
      "          'lauded': 1,\n",
      "          'struck': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'many': 1,\n",
      "          'sins': 1,\n",
      "          'commits': 1,\n",
      "          'storyteller': 1,\n",
      "          'manages': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'emphasising': 1,\n",
      "          'plot': 1,\n",
      "          'notorious': 1,\n",
      "          'cult': 1,\n",
      "          'circles': 1,\n",
      "          'aficionados': 1,\n",
      "          'praise': 1,\n",
      "          'greatest': 1,\n",
      "          'nwhile': 1,\n",
      "          'certainly': 1,\n",
      "          'repeated': 1,\n",
      "          'nonetheless': 1,\n",
      "          'densely': 1,\n",
      "          'plotted': 1,\n",
      "          'terrifically': 1,\n",
      "          'follows': 1,\n",
      "          'promotional': 1,\n",
      "          'visit': 1,\n",
      "          'rome': 1,\n",
      "          'famous': 1,\n",
      "          'american': 1,\n",
      "          'novelist': 1,\n",
      "          'anthony': 1,\n",
      "          'discovers': 1,\n",
      "          'loose': 1,\n",
      "          'inspired': 1,\n",
      "          'latest': 1,\n",
      "          'book': 1,\n",
      "          'nwith': 1,\n",
      "          'police': 1,\n",
      "          'leads': 1,\n",
      "          'interest': 1,\n",
      "          'case': 1,\n",
      "          'soon': 1,\n",
      "          'becomes': 1,\n",
      "          'drawn': 1,\n",
      "          'benefits': 1,\n",
      "          'enormously': 1,\n",
      "          'fine': 1,\n",
      "          'central': 1,\n",
      "          'performance': 1,\n",
      "          'brings': 1,\n",
      "          'grace': 1,\n",
      "          'charm': 1,\n",
      "          'deceptive': 1,\n",
      "          'benigness': 1,\n",
      "          'provides': 1,\n",
      "          'interesting': 1,\n",
      "          'foil': 1,\n",
      "          'violence': 1,\n",
      "          'books': 1,\n",
      "          'writes': 1,\n",
      "          'unfolding': 1,\n",
      "          'reallife': 1,\n",
      "          'horror': 1,\n",
      "          'around': 1,\n",
      "          'awash': 1,\n",
      "          'fascinating': 1,\n",
      "          'psychosexual': 1,\n",
      "          'tension': 1,\n",
      "          'nargento': 1,\n",
      "          'peels': 1,\n",
      "          'facade': 1,\n",
      "          'showbiz': 1,\n",
      "          'jetset': 1,\n",
      "          'lifestyles': 1,\n",
      "          'amoral': 1,\n",
      "          'ambivalent': 1,\n",
      "          'shadowy': 1,\n",
      "          'desire': 1,\n",
      "          'forms': 1,\n",
      "          'become': 1,\n",
      "          'dangerous': 1,\n",
      "          'perhaps': 1,\n",
      "          'multilayered': 1,\n",
      "          'scripts': 1,\n",
      "          'date': 1,\n",
      "          'bubbling': 1,\n",
      "          'underneath': 1,\n",
      "          'surface': 1,\n",
      "          'nit': 1,\n",
      "          'appreciate': 1,\n",
      "          'psychological': 1,\n",
      "          'play': 1,\n",
      "          'respect': 1,\n",
      "          'strongly': 1,\n",
      "          'recalls': 1,\n",
      "          'previous': 1,\n",
      "          'redprofondo': 1,\n",
      "          'rosso': 1,\n",
      "          'fulllength': 1,\n",
      "          'language': 1,\n",
      "          'enjoy': 1,\n",
      "          'spotting': 1,\n",
      "          'recurring': 1,\n",
      "          'nneedless': 1,\n",
      "          'denying': 1,\n",
      "          'directors': 1,\n",
      "          'brilliance': 1,\n",
      "          'stylist': 1,\n",
      "          'nmany': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'directed': 1,\n",
      "          'characteristic': 1,\n",
      "          'finesse': 1,\n",
      "          'feature': 1,\n",
      "          'plenty': 1,\n",
      "          'intriguing': 1,\n",
      "          'camerawork': 1,\n",
      "          'nthey': 1,\n",
      "          'fact': 1,\n",
      "          'creates': 1,\n",
      "          'mood': 1,\n",
      "          'filling': 1,\n",
      "          'light': 1,\n",
      "          'rather': 1,\n",
      "          'dark': 1,\n",
      "          'shadows': 1,\n",
      "          'rich': 1,\n",
      "          'colours': 1,\n",
      "          'works': 1,\n",
      "          'suspiria': 1,\n",
      "          'ninstead': 1,\n",
      "          'tenebraes': 1,\n",
      "          'design': 1,\n",
      "          'lighting': 1,\n",
      "          'paints': 1,\n",
      "          'sleek': 1,\n",
      "          'clinical': 1,\n",
      "          'chilly': 1,\n",
      "          'vision': 1,\n",
      "          'vaguely': 1,\n",
      "          'futuristic': 1,\n",
      "          'urban': 1,\n",
      "          'soundtracks': 1,\n",
      "          'mix': 1,\n",
      "          'electronic': 1,\n",
      "          'atmospheres': 1,\n",
      "          'gothic': 1,\n",
      "          'frequent': 1,\n",
      "          'collaborators': 1,\n",
      "          'goblin': 1,\n",
      "          'accompaniment': 1,\n",
      "          'nso': 1,\n",
      "          'recommend': 1,\n",
      "          'question': 1,\n",
      "          'nstill': 1,\n",
      "          'constantly': 1,\n",
      "          'nagging': 1,\n",
      "          'several': 1,\n",
      "          'lumps': 1,\n",
      "          'nsome': 1,\n",
      "          'critics': 1,\n",
      "          'argue': 1,\n",
      "          'logic': 1,\n",
      "          'matter': 1,\n",
      "          'damnit': 1,\n",
      "          'deserve': 1,\n",
      "          'feel': 1,\n",
      "          'cheated': 1,\n",
      "          'want': 1,\n",
      "          'know': 1,\n",
      "          'solution': 1,\n",
      "          'skip': 1,\n",
      "          'next': 1,\n",
      "          'paragraphs': 1,\n",
      "          'nabout': 1,\n",
      "          'hour': 1,\n",
      "          'takes': 1,\n",
      "          'unexpected': 1,\n",
      "          'properly': 1,\n",
      "          'handled': 1,\n",
      "          'proved': 1,\n",
      "          'ingenious': 1,\n",
      "          'man': 1,\n",
      "          'discover': 1,\n",
      "          'none': 1,\n",
      "          'author': 1,\n",
      "          'insane': 1,\n",
      "          'apparently': 1,\n",
      "          'murders': 1,\n",
      "          'continue': 1,\n",
      "          'remainder': 1,\n",
      "          'settle': 1,\n",
      "          'involving': 1,\n",
      "          'neurotic': 1,\n",
      "          'wife': 1,\n",
      "          'finally': 1,\n",
      "          'revealed': 1,\n",
      "          'second': 1,\n",
      "          'climax': 1,\n",
      "          'muffs': 1,\n",
      "          'technically': 1,\n",
      "          'narratively': 1,\n",
      "          'nyou': 1,\n",
      "          'supposed': 1,\n",
      "          'tricked': 1,\n",
      "          'thinking': 1,\n",
      "          'actually': 1,\n",
      "          'innocent': 1,\n",
      "          'crouching': 1,\n",
      "          'bushes': 1,\n",
      "          'nearby': 1,\n",
      "          'spying': 1,\n",
      "          'house': 1,\n",
      "          'thanks': 1,\n",
      "          'poor': 1,\n",
      "          'editing': 1,\n",
      "          'believe': 1,\n",
      "          'murdered': 1,\n",
      "          'anyway': 1,\n",
      "          'nbad': 1,\n",
      "          'cutting': 1,\n",
      "          'puts': 1,\n",
      "          'timing': 1,\n",
      "          'words': 1,\n",
      "          'hes': 1,\n",
      "          'places': 1,\n",
      "          'nduring': 1,\n",
      "          'crucial': 1,\n",
      "          'thrown': 1,\n",
      "          'ridiculous': 1,\n",
      "          'herring': 1,\n",
      "          'realise': 1,\n",
      "          'sake': 1,\n",
      "          'alibi': 1,\n",
      "          'must': 1,\n",
      "          'selfinflicted': 1,\n",
      "          'nasty': 1,\n",
      "          'make': 1,\n",
      "          'attacked': 1,\n",
      "          'fleeing': 1,\n",
      "          'assailant': 1,\n",
      "          'banged': 1,\n",
      "          'head': 1,\n",
      "          'great': 1,\n",
      "          'nthus': 1,\n",
      "          'revelation': 1,\n",
      "          'hero': 1,\n",
      "          'antihero': 1,\n",
      "          'final': 1,\n",
      "          'prove': 1,\n",
      "          'shocking': 1,\n",
      "          'implausible': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'nhelpfully': 1,\n",
      "          'learn': 1,\n",
      "          'bizarre': 1,\n",
      "          'flashbacks': 1,\n",
      "          'humiliation': 1,\n",
      "          'permeated': 1,\n",
      "          'belonged': 1,\n",
      "          'along': 1,\n",
      "          'explanations': 1,\n",
      "          'offered': 1,\n",
      "          'motivations': 1,\n",
      "          'psychologically': 1,\n",
      "          'fuzzy': 1,\n",
      "          'owes': 1,\n",
      "          'better': 1,\n",
      "          'understanding': 1,\n",
      "          'franciosas': 1,\n",
      "          'concealed': 1,\n",
      "          'madness': 1,\n",
      "          'sudden': 1,\n",
      "          'murderous': 1,\n",
      "          'rampage': 1,\n",
      "          'marred': 1,\n",
      "          'annoying': 1,\n",
      "          'little': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'teenage': 1,\n",
      "          'leave': 1,\n",
      "          'hotel': 1,\n",
      "          'room': 1,\n",
      "          'minutes': 1,\n",
      "          'riding': 1,\n",
      "          'motorbike': 1,\n",
      "          'would': 1,\n",
      "          'assume': 1,\n",
      "          'rider': 1,\n",
      "          'turns': 1,\n",
      "          'male': 1,\n",
      "          'arent': 1,\n",
      "          'even': 1,\n",
      "          'introduced': 1,\n",
      "          'nthats': 1,\n",
      "          'careless': 1,\n",
      "          'filmmaking': 1,\n",
      "          'pure': 1,\n",
      "          'simple': 1,\n",
      "          'nwhy': 1,\n",
      "          'ask': 1,\n",
      "          'go': 1,\n",
      "          'storys': 1,\n",
      "          'nbecause': 1,\n",
      "          'comes': 1,\n",
      "          'pieces': 1,\n",
      "          'filmmakers': 1,\n",
      "          'extended': 1,\n",
      "          'nan': 1,\n",
      "          'upset': 1,\n",
      "          'wandering': 1,\n",
      "          'streets': 1,\n",
      "          'night': 1,\n",
      "          'needlessly': 1,\n",
      "          'taunts': 1,\n",
      "          'guard': 1,\n",
      "          'dog': 1,\n",
      "          'unbelievably': 1,\n",
      "          'jumps': 1,\n",
      "          'high': 1,\n",
      "          'fence': 1,\n",
      "          'chases': 1,\n",
      "          'across': 1,\n",
      "          'town': 1,\n",
      "          'nfinally': 1,\n",
      "          'desperately': 1,\n",
      "          'seeks': 1,\n",
      "          'escape': 1,\n",
      "          'crazed': 1,\n",
      "          'canine': 1,\n",
      "          'accidentally': 1,\n",
      "          'stumbles': 1,\n",
      "          'lair': 1,\n",
      "          'absolutely': 1,\n",
      "          'masterful': 1,\n",
      "          'sequence': 1,\n",
      "          'tense': 1,\n",
      "          'communicating': 1,\n",
      "          'wealth': 1,\n",
      "          'information': 1,\n",
      "          'alone': 1,\n",
      "          'thats': 1,\n",
      "          'exactly': 1,\n",
      "          'kind': 1,\n",
      "          'thing': 1,\n",
      "          'makes': 1,\n",
      "          'frustrating': 1,\n",
      "          'ntoo': 1,\n",
      "          'often': 1,\n",
      "          'less': 1,\n",
      "          'sum': 1,\n",
      "          'parts': 1,\n",
      "          'nmind': 1,\n",
      "          'love': 1,\n",
      "          'worth': 1,\n",
      "          'youre': 1,\n",
      "          'fan': 1,\n",
      "          'unique': 1,\n",
      "          'essential': 1,\n",
      "          'nsee': 1,\n",
      "          'uncut': 1,\n",
      "          'widescreen': 1,\n",
      "          'drink': 1,\n",
      "          'wonderful': 1,\n",
      "          'cinematography': 1,\n",
      "          'luciano': 1,\n",
      "          'tovoli': 1,\n",
      "          'greatlooking': 1,\n",
      "          'quirky': 1,\n",
      "          'despite': 1,\n",
      "          'na': 1,\n",
      "          'shame': 1,\n",
      "          'recent': 1,\n",
      "          'stendhal': 1,\n",
      "          'syndrome': 1,\n",
      "          '1992': 1,\n",
      "          'aid': 1,\n",
      "          'cowriter': 1,\n",
      "          'franco': 1,\n",
      "          'ferrini': 1,\n",
      "          'fashioned': 1,\n",
      "          'solid': 1,\n",
      "          'storyline': 1,\n",
      "          'without': 1,\n",
      "          'sacrificing': 1,\n",
      "          'surreal': 1,\n",
      "          'weirdness': 1,\n",
      "          'visual': 1,\n",
      "          'panache': 1,\n",
      "          'nproof': 1,\n",
      "          'tries': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nhe': 9,\n",
      "          'man': 8,\n",
      "          'father': 7,\n",
      "          'nbut': 5,\n",
      "          'person': 5,\n",
      "          'like': 4,\n",
      "          'nwe': 4,\n",
      "          'towards': 3,\n",
      "          'nthe': 3,\n",
      "          'see': 3,\n",
      "          'kind': 3,\n",
      "          'childhood': 2,\n",
      "          'influence': 2,\n",
      "          'supportive': 2,\n",
      "          'productive': 2,\n",
      "          'violence': 2,\n",
      "          'psychological': 2,\n",
      "          'wade': 2,\n",
      "          'nolte': 2,\n",
      "          'surface': 2,\n",
      "          'something': 2,\n",
      "          'hard': 2,\n",
      "          'emotions': 2,\n",
      "          'also': 2,\n",
      "          'relationships': 2,\n",
      "          'nas': 2,\n",
      "          'seems': 2,\n",
      "          'whose': 2,\n",
      "          'pain': 2,\n",
      "          'nthis': 2,\n",
      "          'every': 2,\n",
      "          'would': 2,\n",
      "          'flashbacks': 2,\n",
      "          'dad': 2,\n",
      "          'still': 2,\n",
      "          'drama': 2,\n",
      "          'certainly': 2,\n",
      "          'sociologist': 1,\n",
      "          'attest': 1,\n",
      "          'types': 1,\n",
      "          'parents': 1,\n",
      "          'heavily': 1,\n",
      "          'happiness': 1,\n",
      "          'adult': 1,\n",
      "          'nparents': 1,\n",
      "          'environments': 1,\n",
      "          'nurturing': 1,\n",
      "          'yield': 1,\n",
      "          'children': 1,\n",
      "          'embrace': 1,\n",
      "          'values': 1,\n",
      "          'norms': 1,\n",
      "          'allow': 1,\n",
      "          'live': 1,\n",
      "          'healthy': 1,\n",
      "          'lives': 1,\n",
      "          'upbringing': 1,\n",
      "          'marred': 1,\n",
      "          'hate': 1,\n",
      "          'dysfunctionality': 1,\n",
      "          'journey': 1,\n",
      "          'happy': 1,\n",
      "          'adulthood': 1,\n",
      "          'saddled': 1,\n",
      "          'obstacles': 1,\n",
      "          'almost': 1,\n",
      "          'great': 1,\n",
      "          'overcome': 1,\n",
      "          'naffliction': 1,\n",
      "          'explores': 1,\n",
      "          'never': 1,\n",
      "          'truly': 1,\n",
      "          'escapes': 1,\n",
      "          'grip': 1,\n",
      "          'unforgivingly': 1,\n",
      "          'nightmarish': 1,\n",
      "          'question': 1,\n",
      "          'whitehouse': 1,\n",
      "          'nick': 1,\n",
      "          'nhere': 1,\n",
      "          'citizen': 1,\n",
      "          'member': 1,\n",
      "          'community': 1,\n",
      "          'goes': 1,\n",
      "          'daily': 1,\n",
      "          'routine': 1,\n",
      "          'much': 1,\n",
      "          'scratch': 1,\n",
      "          'beneath': 1,\n",
      "          'scary': 1,\n",
      "          'evil': 1,\n",
      "          'begins': 1,\n",
      "          'rear': 1,\n",
      "          'ugly': 1,\n",
      "          'head': 1,\n",
      "          'meantempered': 1,\n",
      "          'time': 1,\n",
      "          'taking': 1,\n",
      "          'control': 1,\n",
      "          'usually': 1,\n",
      "          'gets': 1,\n",
      "          'better': 1,\n",
      "          'quick': 1,\n",
      "          'apologize': 1,\n",
      "          'actions': 1,\n",
      "          'wants': 1,\n",
      "          'gentle': 1,\n",
      "          'sparking': 1,\n",
      "          'tendency': 1,\n",
      "          'tremendous': 1,\n",
      "          'problems': 1,\n",
      "          'divorced': 1,\n",
      "          'connection': 1,\n",
      "          'love': 1,\n",
      "          'daughter': 1,\n",
      "          'bearish': 1,\n",
      "          'persona': 1,\n",
      "          'stature': 1,\n",
      "          'alienates': 1,\n",
      "          'visibly': 1,\n",
      "          'shaken': 1,\n",
      "          'rejection': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'says': 1,\n",
      "          'loves': 1,\n",
      "          'nhis': 1,\n",
      "          'demeanor': 1,\n",
      "          'puts': 1,\n",
      "          'relationship': 1,\n",
      "          'local': 1,\n",
      "          'townsgirl': 1,\n",
      "          'sissy': 1,\n",
      "          'spacek': 1,\n",
      "          'risk': 1,\n",
      "          'nshe': 1,\n",
      "          'tries': 1,\n",
      "          'remain': 1,\n",
      "          'true': 1,\n",
      "          'women': 1,\n",
      "          'unlucky': 1,\n",
      "          'enough': 1,\n",
      "          'attach': 1,\n",
      "          'ultimately': 1,\n",
      "          'end': 1,\n",
      "          'sentences': 1,\n",
      "          'ending': 1,\n",
      "          'exclamation': 1,\n",
      "          'point': 1,\n",
      "          'nfinally': 1,\n",
      "          'spiteful': 1,\n",
      "          'vindictive': 1,\n",
      "          'rejected': 1,\n",
      "          'initiates': 1,\n",
      "          'custody': 1,\n",
      "          'battle': 1,\n",
      "          'hopeless': 1,\n",
      "          'towns': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'issues': 1,\n",
      "          'speeding': 1,\n",
      "          'ticket': 1,\n",
      "          'died': 1,\n",
      "          'afflicted': 1,\n",
      "          'living': 1,\n",
      "          'prisoner': 1,\n",
      "          'slave': 1,\n",
      "          'moving': 1,\n",
      "          'level': 1,\n",
      "          'madness': 1,\n",
      "          'insanity': 1,\n",
      "          'defies': 1,\n",
      "          'comprehension': 1,\n",
      "          'nwhat': 1,\n",
      "          'force': 1,\n",
      "          'move': 1,\n",
      "          'edge': 1,\n",
      "          'beyond': 1,\n",
      "          'reach': 1,\n",
      "          'people': 1,\n",
      "          'genuinely': 1,\n",
      "          'care': 1,\n",
      "          'learn': 1,\n",
      "          'answer': 1,\n",
      "          'james': 1,\n",
      "          'coburn': 1,\n",
      "          'son': 1,\n",
      "          'ashamed': 1,\n",
      "          'woman': 1,\n",
      "          'afraid': 1,\n",
      "          'meet': 1,\n",
      "          'overbearingly': 1,\n",
      "          'misogynistic': 1,\n",
      "          'frequent': 1,\n",
      "          'drunk': 1,\n",
      "          'rules': 1,\n",
      "          'iron': 1,\n",
      "          'fist': 1,\n",
      "          'tyrannical': 1,\n",
      "          'behavior': 1,\n",
      "          'nto': 1,\n",
      "          'heighten': 1,\n",
      "          'fathers': 1,\n",
      "          'churlishness': 1,\n",
      "          'shown': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          'footage': 1,\n",
      "          'taken': 1,\n",
      "          'frightened': 1,\n",
      "          'nvery': 1,\n",
      "          'effective': 1,\n",
      "          'ntoday': 1,\n",
      "          'wades': 1,\n",
      "          'quite': 1,\n",
      "          'elderly': 1,\n",
      "          'manages': 1,\n",
      "          'instill': 1,\n",
      "          'fear': 1,\n",
      "          'grown': 1,\n",
      "          'possesses': 1,\n",
      "          'inescapable': 1,\n",
      "          'unsavory': 1,\n",
      "          'effect': 1,\n",
      "          'clamps': 1,\n",
      "          'tortured': 1,\n",
      "          'result': 1,\n",
      "          'sons': 1,\n",
      "          'nightmare': 1,\n",
      "          'becoming': 1,\n",
      "          'one': 1,\n",
      "          'always': 1,\n",
      "          'dreaded': 1,\n",
      "          'terrifically': 1,\n",
      "          'presented': 1,\n",
      "          'piece': 1,\n",
      "          'turns': 1,\n",
      "          'strong': 1,\n",
      "          'performance': 1,\n",
      "          'become': 1,\n",
      "          'detriment': 1,\n",
      "          'well': 1,\n",
      "          'necessity': 1,\n",
      "          'nhes': 1,\n",
      "          'hulking': 1,\n",
      "          'reduced': 1,\n",
      "          'whimpers': 1,\n",
      "          'presence': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'ncoburn': 1,\n",
      "          'displays': 1,\n",
      "          'heft': 1,\n",
      "          'bitter': 1,\n",
      "          'saturdaynightfriendly': 1,\n",
      "          'fare': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'light': 1,\n",
      "          'fluffy': 1,\n",
      "          'film': 1,\n",
      "          'nthat': 1,\n",
      "          'may': 1,\n",
      "          'turn': 1,\n",
      "          'many': 1,\n",
      "          'moviegoers': 1,\n",
      "          'away': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          'wellacted': 1,\n",
      "          'showcasing': 1,\n",
      "          'noltes': 1,\n",
      "          'coburns': 1,\n",
      "          'raw': 1,\n",
      "          'acting': 1,\n",
      "          'talents': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ash': 8,\n",
      "          'movie': 7,\n",
      "          'funny': 5,\n",
      "          'watch': 5,\n",
      "          'evil': 4,\n",
      "          'dead': 4,\n",
      "          'monster': 4,\n",
      "          'raimi': 4,\n",
      "          'ii': 3,\n",
      "          'people': 3,\n",
      "          'like': 3,\n",
      "          'get': 3,\n",
      "          'even': 3,\n",
      "          'film': 3,\n",
      "          'nits': 2,\n",
      "          'plot': 2,\n",
      "          'classic': 2,\n",
      "          'see': 2,\n",
      "          'nno': 2,\n",
      "          'sick': 2,\n",
      "          'girlfriend': 2,\n",
      "          'cut': 2,\n",
      "          'half': 2,\n",
      "          'blood': 2,\n",
      "          'overthetop': 2,\n",
      "          'laugh': 2,\n",
      "          'face': 2,\n",
      "          'nthe': 2,\n",
      "          'beat': 2,\n",
      "          'gets': 2,\n",
      "          'body': 2,\n",
      "          'hand': 2,\n",
      "          'less': 2,\n",
      "          'making': 2,\n",
      "          'bad': 1,\n",
      "          'full': 1,\n",
      "          'terrible': 1,\n",
      "          'acting': 1,\n",
      "          'pointless': 1,\n",
      "          'violence': 1,\n",
      "          'holes': 1,\n",
      "          'yet': 1,\n",
      "          'remains': 1,\n",
      "          'cult': 1,\n",
      "          'nearly': 1,\n",
      "          'fifteen': 1,\n",
      "          'years': 1,\n",
      "          'release': 1,\n",
      "          'nexplaining': 1,\n",
      "          'stands': 1,\n",
      "          'others': 1,\n",
      "          'similar': 1,\n",
      "          'plots': 1,\n",
      "          'including': 1,\n",
      "          'original': 1,\n",
      "          'extremely': 1,\n",
      "          'difficult': 1,\n",
      "          'nwell': 1,\n",
      "          'whats': 1,\n",
      "          'nfive': 1,\n",
      "          'stranded': 1,\n",
      "          'log': 1,\n",
      "          'cabin': 1,\n",
      "          'middle': 1,\n",
      "          'nowhere': 1,\n",
      "          'struggling': 1,\n",
      "          'survive': 1,\n",
      "          'vicious': 1,\n",
      "          'attacks': 1,\n",
      "          'variety': 1,\n",
      "          'ugly': 1,\n",
      "          'hairy': 1,\n",
      "          'wart': 1,\n",
      "          'covered': 1,\n",
      "          'monsters': 1,\n",
      "          'ncome': 1,\n",
      "          'saw': 1,\n",
      "          'vision': 1,\n",
      "          'last': 1,\n",
      "          'week': 1,\n",
      "          'nwhy': 1,\n",
      "          'different': 1,\n",
      "          'die': 1,\n",
      "          'nare': 1,\n",
      "          'something': 1,\n",
      "          'nmaybe': 1,\n",
      "          'maybe': 1,\n",
      "          'director': 1,\n",
      "          'sam': 1,\n",
      "          'well': 1,\n",
      "          'create': 1,\n",
      "          'enigma': 1,\n",
      "          'nhis': 1,\n",
      "          'unique': 1,\n",
      "          'execution': 1,\n",
      "          'sarcastic': 1,\n",
      "          'subtle': 1,\n",
      "          'disturbing': 1,\n",
      "          'hilarious': 1,\n",
      "          'nan': 1,\n",
      "          'example': 1,\n",
      "          'raimis': 1,\n",
      "          'odd': 1,\n",
      "          'approach': 1,\n",
      "          'formerly': 1,\n",
      "          'protagonist': 1,\n",
      "          'ashs': 1,\n",
      "          'chainsaw': 1,\n",
      "          'tidal': 1,\n",
      "          'wave': 1,\n",
      "          'comes': 1,\n",
      "          'open': 1,\n",
      "          'wound': 1,\n",
      "          'nsure': 1,\n",
      "          'loud': 1,\n",
      "          'try': 1,\n",
      "          'watching': 1,\n",
      "          'straight': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'showered': 1,\n",
      "          'ten': 1,\n",
      "          'gallons': 1,\n",
      "          'staining': 1,\n",
      "          'knocking': 1,\n",
      "          'back': 1,\n",
      "          'feet': 1,\n",
      "          'whole': 1,\n",
      "          'defeat': 1,\n",
      "          'another': 1,\n",
      "          'zanier': 1,\n",
      "          'repetitive': 1,\n",
      "          'unrealistic': 1,\n",
      "          'amusing': 1,\n",
      "          'becomes': 1,\n",
      "          'matter': 1,\n",
      "          'may': 1,\n",
      "          'sound': 1,\n",
      "          'bruce': 1,\n",
      "          'ampbells': 1,\n",
      "          'butt': 1,\n",
      "          'kicked': 1,\n",
      "          'every': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'nand': 1,\n",
      "          'takes': 1,\n",
      "          'advantage': 1,\n",
      "          'tormented': 1,\n",
      "          'head': 1,\n",
      "          'old': 1,\n",
      "          'lady': 1,\n",
      "          'right': 1,\n",
      "          'nlike': 1,\n",
      "          'superior': 1,\n",
      "          'idle': 1,\n",
      "          'hands': 1,\n",
      "          'uncontrollably': 1,\n",
      "          'hit': 1,\n",
      "          'forced': 1,\n",
      "          'part': 1,\n",
      "          'nbut': 1,\n",
      "          'doesnt': 1,\n",
      "          'end': 1,\n",
      "          'fight': 1,\n",
      "          'severed': 1,\n",
      "          'moves': 1,\n",
      "          'celerity': 1,\n",
      "          'thing': 1,\n",
      "          'addams': 1,\n",
      "          'family': 1,\n",
      "          'nall': 1,\n",
      "          'events': 1,\n",
      "          'thrown': 1,\n",
      "          'minute': 1,\n",
      "          'one': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'camera': 1,\n",
      "          'movements': 1,\n",
      "          'first': 1,\n",
      "          'become': 1,\n",
      "          'shocking': 1,\n",
      "          'inexplicably': 1,\n",
      "          'nraimi': 1,\n",
      "          'expects': 1,\n",
      "          'audience': 1,\n",
      "          'progresses': 1,\n",
      "          'seems': 1,\n",
      "          'enjoying': 1,\n",
      "          'borrowing': 1,\n",
      "          'mirror': 1,\n",
      "          'scene': 1,\n",
      "          'marx': 1,\n",
      "          'brothers': 1,\n",
      "          'duck': 1,\n",
      "          'soup': 1,\n",
      "          'bringing': 1,\n",
      "          'characters': 1,\n",
      "          'picture': 1,\n",
      "          'comically': 1,\n",
      "          'kill': 1,\n",
      "          'nwith': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'hour': 1,\n",
      "          'away': 1,\n",
      "          'impossible': 1,\n",
      "          'horror': 1,\n",
      "          'gore': 1,\n",
      "          'intentionally': 1,\n",
      "          'laughs': 1,\n",
      "          'scares': 1,\n",
      "          'nending': 1,\n",
      "          'opening': 1,\n",
      "          'third': 1,\n",
      "          'series': 1,\n",
      "          'obviously': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'couldnt': 1,\n",
      "          'wait': 1,\n",
      "          'make': 1,\n",
      "          'sequel': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bugs': 5,\n",
      "          'life': 5,\n",
      "          'food': 4,\n",
      "          'nwhen': 4,\n",
      "          'ant': 3,\n",
      "          'film': 3,\n",
      "          'flik': 3,\n",
      "          'offering': 3,\n",
      "          'mission': 3,\n",
      "          'nthe': 3,\n",
      "          'grasshoppers': 3,\n",
      "          'animation': 2,\n",
      "          'antz': 2,\n",
      "          'na': 2,\n",
      "          'voiced': 2,\n",
      "          'find': 2,\n",
      "          'lost': 2,\n",
      "          'leaders': 2,\n",
      "          'colony': 2,\n",
      "          'send': 2,\n",
      "          'get': 2,\n",
      "          'way': 2,\n",
      "          'harvest': 2,\n",
      "          'hopper': 2,\n",
      "          'return': 2,\n",
      "          'warriors': 2,\n",
      "          'day': 2,\n",
      "          'rather': 1,\n",
      "          'strange': 1,\n",
      "          'two': 1,\n",
      "          'computer': 1,\n",
      "          'animated': 1,\n",
      "          'talking': 1,\n",
      "          'movies': 1,\n",
      "          'come': 1,\n",
      "          'single': 1,\n",
      "          'year': 1,\n",
      "          'disney': 1,\n",
      "          'pixar': 1,\n",
      "          'latest': 1,\n",
      "          'represents': 1,\n",
      "          'nwhile': 1,\n",
      "          'isnt': 1,\n",
      "          'nearly': 1,\n",
      "          'deep': 1,\n",
      "          'predecessor': 1,\n",
      "          'dreamworks': 1,\n",
      "          'funny': 1,\n",
      "          'centers': 1,\n",
      "          'appropriately': 1,\n",
      "          'around': 1,\n",
      "          'named': 1,\n",
      "          'nflik': 1,\n",
      "          'cutely': 1,\n",
      "          'newsradios': 1,\n",
      "          'david': 1,\n",
      "          'foley': 1,\n",
      "          'hates': 1,\n",
      "          'sticking': 1,\n",
      "          'tradition': 1,\n",
      "          'attempts': 1,\n",
      "          'new': 1,\n",
      "          'ways': 1,\n",
      "          'harvesting': 1,\n",
      "          'task': 1,\n",
      "          'one': 1,\n",
      "          'inventions': 1,\n",
      "          'causes': 1,\n",
      "          'completely': 1,\n",
      "          'vile': 1,\n",
      "          'group': 1,\n",
      "          'force': 1,\n",
      "          'ants': 1,\n",
      "          'leader': 1,\n",
      "          'fiendishly': 1,\n",
      "          'oscar': 1,\n",
      "          'winner': 1,\n",
      "          'kevin': 1,\n",
      "          'spacey': 1,\n",
      "          'upset': 1,\n",
      "          'vows': 1,\n",
      "          'shortly': 1,\n",
      "          'retrieve': 1,\n",
      "          'double': 1,\n",
      "          'amount': 1,\n",
      "          'never': 1,\n",
      "          'dream': 1,\n",
      "          'successful': 1,\n",
      "          'hope': 1,\n",
      "          'extra': 1,\n",
      "          'nfliks': 1,\n",
      "          'hire': 1,\n",
      "          'warrior': 1,\n",
      "          'fight': 1,\n",
      "          'ninstead': 1,\n",
      "          'accidentally': 1,\n",
      "          'hires': 1,\n",
      "          'circus': 1,\n",
      "          'performing': 1,\n",
      "          'mistakenly': 1,\n",
      "          'assumes': 1,\n",
      "          'returns': 1,\n",
      "          'town': 1,\n",
      "          'ecstatic': 1,\n",
      "          'truth': 1,\n",
      "          'heroes': 1,\n",
      "          'simply': 1,\n",
      "          'stunning': 1,\n",
      "          'sheer': 1,\n",
      "          'uniqueness': 1,\n",
      "          'bug': 1,\n",
      "          'imaginative': 1,\n",
      "          'ntogether': 1,\n",
      "          'great': 1,\n",
      "          'voice': 1,\n",
      "          'acting': 1,\n",
      "          'perfect': 1,\n",
      "          'holiday': 1,\n",
      "          'family': 1,\n",
      "          'nits': 1,\n",
      "          'main': 1,\n",
      "          'weakness': 1,\n",
      "          'couldnt': 1,\n",
      "          'beat': 1,\n",
      "          'theaters': 1,\n",
      "          'making': 1,\n",
      "          'seem': 1,\n",
      "          'like': 1,\n",
      "          'stale': 1,\n",
      "          'material': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'fight': 5,\n",
      "          'like': 5,\n",
      "          'tyler': 5,\n",
      "          'club': 4,\n",
      "          'joke': 4,\n",
      "          'movie': 3,\n",
      "          'something': 3,\n",
      "          'dont': 3,\n",
      "          'good': 3,\n",
      "          'nit': 3,\n",
      "          'far': 3,\n",
      "          'fincher': 3,\n",
      "          'less': 3,\n",
      "          'going': 3,\n",
      "          'since': 2,\n",
      "          'oliver': 2,\n",
      "          'director': 2,\n",
      "          'fine': 2,\n",
      "          'social': 2,\n",
      "          'finchers': 2,\n",
      "          'major': 2,\n",
      "          'see': 2,\n",
      "          'grouptherapy': 2,\n",
      "          'everything': 2,\n",
      "          'meets': 2,\n",
      "          'night': 2,\n",
      "          'marla': 2,\n",
      "          'things': 2,\n",
      "          'durden': 2,\n",
      "          'life': 2,\n",
      "          'feel': 2,\n",
      "          'though': 2,\n",
      "          'people': 2,\n",
      "          'nin': 2,\n",
      "          'message': 2,\n",
      "          'wont': 2,\n",
      "          'stones': 1,\n",
      "          'natural': 1,\n",
      "          'born': 1,\n",
      "          'killers': 1,\n",
      "          'incendiary': 1,\n",
      "          'david': 1,\n",
      "          'cronenberg': 1,\n",
      "          'socalled': 1,\n",
      "          'mainstream': 1,\n",
      "          'willing': 1,\n",
      "          'repeatedly': 1,\n",
      "          'tiptoe': 1,\n",
      "          'line': 1,\n",
      "          'pointed': 1,\n",
      "          'commentary': 1,\n",
      "          'outright': 1,\n",
      "          'irresponsibility': 1,\n",
      "          'nwhile': 1,\n",
      "          'films': 1,\n",
      "          'never': 1,\n",
      "          'suffered': 1,\n",
      "          'lack': 1,\n",
      "          'shock': 1,\n",
      "          'value': 1,\n",
      "          'character': 1,\n",
      "          'killings': 1,\n",
      "          'alien': 1,\n",
      "          '3': 1,\n",
      "          'seven': 1,\n",
      "          'examples': 1,\n",
      "          'marks': 1,\n",
      "          'distillation': 1,\n",
      "          'pitchblack': 1,\n",
      "          'comedic': 1,\n",
      "          'sensibility': 1,\n",
      "          '1997s': 1,\n",
      "          'game': 1,\n",
      "          'definitive': 1,\n",
      "          'statement': 1,\n",
      "          'njack': 1,\n",
      "          'norton': 1,\n",
      "          'acting': 1,\n",
      "          'narrator': 1,\n",
      "          'protagonist': 1,\n",
      "          'typical': 1,\n",
      "          'cubicle': 1,\n",
      "          'clone': 1,\n",
      "          'whose': 1,\n",
      "          'disillusionment': 1,\n",
      "          'amplified': 1,\n",
      "          'seemingly': 1,\n",
      "          'incurable': 1,\n",
      "          'insomnia': 1,\n",
      "          'non': 1,\n",
      "          'offhand': 1,\n",
      "          'advice': 1,\n",
      "          'doctor': 1,\n",
      "          'sits': 1,\n",
      "          'sessions': 1,\n",
      "          'blood': 1,\n",
      "          'parasites': 1,\n",
      "          'testicular': 1,\n",
      "          'cancer': 1,\n",
      "          'nhere': 1,\n",
      "          'bob': 1,\n",
      "          'marvin': 1,\n",
      "          'lee': 1,\n",
      "          'aday': 1,\n",
      "          'aka': 1,\n",
      "          'meat': 1,\n",
      "          'loaf': 1,\n",
      "          'canceremasculated': 1,\n",
      "          'eunuch': 1,\n",
      "          'profound': 1,\n",
      "          'gynecomastia': 1,\n",
      "          'nstrangely': 1,\n",
      "          'release': 1,\n",
      "          'finds': 1,\n",
      "          'sobbing': 1,\n",
      "          'bobs': 1,\n",
      "          'breasts': 1,\n",
      "          'allows': 1,\n",
      "          'sleep': 1,\n",
      "          'least': 1,\n",
      "          'fellow': 1,\n",
      "          'tourist': 1,\n",
      "          'named': 1,\n",
      "          'singer': 1,\n",
      "          'carter': 1,\n",
      "          'comes': 1,\n",
      "          'along': 1,\n",
      "          'ruin': 1,\n",
      "          'forcing': 1,\n",
      "          'grudging': 1,\n",
      "          'compromise': 1,\n",
      "          'recalls': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'dark': 1,\n",
      "          'hilarity': 1,\n",
      "          'nlater': 1,\n",
      "          'pitt': 1,\n",
      "          'soap': 1,\n",
      "          'salesman': 1,\n",
      "          'decidedly': 1,\n",
      "          'subversive': 1,\n",
      "          'outlook': 1,\n",
      "          'none': 1,\n",
      "          'ikea': 1,\n",
      "          'furnished': 1,\n",
      "          'condo': 1,\n",
      "          'explodes': 1,\n",
      "          'ask': 1,\n",
      "          'youll': 1,\n",
      "          'awright': 1,\n",
      "          'goaded': 1,\n",
      "          'damned': 1,\n",
      "          'doesnt': 1,\n",
      "          'pure': 1,\n",
      "          'raw': 1,\n",
      "          'existence': 1,\n",
      "          'brief': 1,\n",
      "          'moment': 1,\n",
      "          'clarity': 1,\n",
      "          'purpose': 1,\n",
      "          'makes': 1,\n",
      "          'dreary': 1,\n",
      "          'workaday': 1,\n",
      "          'pale': 1,\n",
      "          'comparison': 1,\n",
      "          'nhe': 1,\n",
      "          'moves': 1,\n",
      "          'tylers': 1,\n",
      "          'squalid': 1,\n",
      "          'abandoned': 1,\n",
      "          'mansion': 1,\n",
      "          'form': 1,\n",
      "          'titular': 1,\n",
      "          'organization': 1,\n",
      "          'underground': 1,\n",
      "          'therapy': 1,\n",
      "          'group': 1,\n",
      "          'men': 1,\n",
      "          'bond': 1,\n",
      "          'bareknuckle': 1,\n",
      "          'savagery': 1,\n",
      "          'rules': 1,\n",
      "          'first': 1,\n",
      "          'two': 1,\n",
      "          'talk': 1,\n",
      "          'narmed': 1,\n",
      "          'charisma': 1,\n",
      "          'attractive': 1,\n",
      "          'anticorporate': 1,\n",
      "          'philosophy': 1,\n",
      "          'assumes': 1,\n",
      "          'leadership': 1,\n",
      "          'burgeoning': 1,\n",
      "          'membership': 1,\n",
      "          'whitecollar': 1,\n",
      "          'slaves': 1,\n",
      "          'deadend': 1,\n",
      "          'mcemployees': 1,\n",
      "          'nresentment': 1,\n",
      "          'creeps': 1,\n",
      "          'jacks': 1,\n",
      "          'heart': 1,\n",
      "          'made': 1,\n",
      "          'worse': 1,\n",
      "          'fact': 1,\n",
      "          'also': 1,\n",
      "          'regularly': 1,\n",
      "          'noisily': 1,\n",
      "          'boffing': 1,\n",
      "          'hated': 1,\n",
      "          'nfunded': 1,\n",
      "          'frivolous': 1,\n",
      "          'lawsuit': 1,\n",
      "          'begins': 1,\n",
      "          'molding': 1,\n",
      "          'devotees': 1,\n",
      "          'army': 1,\n",
      "          'dedicated': 1,\n",
      "          'mischief': 1,\n",
      "          'mayhem': 1,\n",
      "          'ntheir': 1,\n",
      "          'initially': 1,\n",
      "          'juvenile': 1,\n",
      "          'pranks': 1,\n",
      "          'pissing': 1,\n",
      "          'food': 1,\n",
      "          'putting': 1,\n",
      "          'spike': 1,\n",
      "          'belts': 1,\n",
      "          'roads': 1,\n",
      "          'quickly': 1,\n",
      "          'evolve': 1,\n",
      "          'sedition': 1,\n",
      "          'jack': 1,\n",
      "          'fears': 1,\n",
      "          'gone': 1,\n",
      "          'sour': 1,\n",
      "          'point': 1,\n",
      "          'plenty': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'wondering': 1,\n",
      "          'go': 1,\n",
      "          'say': 1,\n",
      "          'original': 1,\n",
      "          'film': 1,\n",
      "          'uncorks': 1,\n",
      "          'disappointing': 1,\n",
      "          'plot': 1,\n",
      "          'twist': 1,\n",
      "          'contrived': 1,\n",
      "          'conventional': 1,\n",
      "          'compared': 1,\n",
      "          'precedes': 1,\n",
      "          'follows': 1,\n",
      "          'including': 1,\n",
      "          'ending': 1,\n",
      "          'becomes': 1,\n",
      "          'interesting': 1,\n",
      "          'nits': 1,\n",
      "          'fatal': 1,\n",
      "          'flaw': 1,\n",
      "          'notoriously': 1,\n",
      "          'unpredictable': 1,\n",
      "          'feels': 1,\n",
      "          'copout': 1,\n",
      "          'nfight': 1,\n",
      "          'misconstrued': 1,\n",
      "          'great': 1,\n",
      "          'many': 1,\n",
      "          'early': 1,\n",
      "          'downright': 1,\n",
      "          'dangerous': 1,\n",
      "          'seems': 1,\n",
      "          'saying': 1,\n",
      "          'violence': 1,\n",
      "          'civil': 1,\n",
      "          'disobedience': 1,\n",
      "          'soul': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'moronic': 1,\n",
      "          'punks': 1,\n",
      "          'take': 1,\n",
      "          'nill': 1,\n",
      "          'mightily': 1,\n",
      "          'surprised': 1,\n",
      "          'imitation': 1,\n",
      "          'clubs': 1,\n",
      "          'spring': 1,\n",
      "          'ill': 1,\n",
      "          'even': 1,\n",
      "          'amazed': 1,\n",
      "          'isnt': 1,\n",
      "          'vilified': 1,\n",
      "          'humorless': 1,\n",
      "          'witchhunters': 1,\n",
      "          'currently': 1,\n",
      "          'stone': 1,\n",
      "          'nthey': 1,\n",
      "          'neednt': 1,\n",
      "          'bother': 1,\n",
      "          'elaborate': 1,\n",
      "          'attempt': 1,\n",
      "          'ntyler': 1,\n",
      "          'dionysian': 1,\n",
      "          'allure': 1,\n",
      "          'really': 1,\n",
      "          'nothing': 1,\n",
      "          'logical': 1,\n",
      "          'hypocritical': 1,\n",
      "          'extrapolation': 1,\n",
      "          'selfhelp': 1,\n",
      "          'gurus': 1,\n",
      "          'constantly': 1,\n",
      "          'show': 1,\n",
      "          'oprah': 1,\n",
      "          'preach': 1,\n",
      "          'mefirst': 1,\n",
      "          'gospel': 1,\n",
      "          'selfactualization': 1,\n",
      "          'context': 1,\n",
      "          'works': 1,\n",
      "          'latest': 1,\n",
      "          'columbine': 1,\n",
      "          'get': 1,\n",
      "          'enjoy': 1,\n",
      "          'laugh': 1,\n",
      "          'others': 1,\n",
      "          'nhopefully': 1,\n",
      "          'silly': 1,\n",
      "          'moral': 1,\n",
      "          'outrage': 1,\n",
      "          'spoil': 1,\n",
      "          'rest': 1,\n",
      "          'us': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'elvis': 8,\n",
      "          'film': 7,\n",
      "          'got': 6,\n",
      "          'costner': 5,\n",
      "          'ni': 5,\n",
      "          'guys': 4,\n",
      "          'nthe': 4,\n",
      "          'one': 4,\n",
      "          'dont': 4,\n",
      "          'movies': 4,\n",
      "          'way': 4,\n",
      "          'bad': 3,\n",
      "          'guy': 3,\n",
      "          'na': 3,\n",
      "          'ive': 3,\n",
      "          'far': 3,\n",
      "          'nits': 3,\n",
      "          'plenty': 3,\n",
      "          'around': 3,\n",
      "          'thatll': 3,\n",
      "          'pretty': 3,\n",
      "          'though': 3,\n",
      "          'many': 3,\n",
      "          'sure': 3,\n",
      "          'nand': 3,\n",
      "          'folks': 3,\n",
      "          'also': 3,\n",
      "          'really': 3,\n",
      "          'big': 3,\n",
      "          'much': 3,\n",
      "          'whether': 3,\n",
      "          'youre': 3,\n",
      "          'vegas': 2,\n",
      "          'get': 2,\n",
      "          'together': 2,\n",
      "          'doublecrosses': 2,\n",
      "          'goes': 2,\n",
      "          'set': 2,\n",
      "          'road': 2,\n",
      "          'whos': 2,\n",
      "          'bang': 2,\n",
      "          'courteney': 2,\n",
      "          'cox': 2,\n",
      "          'seen': 2,\n",
      "          'year': 2,\n",
      "          'bullets': 2,\n",
      "          'adventure': 2,\n",
      "          'little': 2,\n",
      "          'russell': 2,\n",
      "          'scenes': 2,\n",
      "          'guns': 2,\n",
      "          'music': 2,\n",
      "          'background': 2,\n",
      "          'helping': 2,\n",
      "          'nin': 2,\n",
      "          'even': 2,\n",
      "          'well': 2,\n",
      "          'next': 2,\n",
      "          'characters': 2,\n",
      "          'russells': 2,\n",
      "          'guess': 2,\n",
      "          'hes': 2,\n",
      "          'great': 2,\n",
      "          'end': 2,\n",
      "          'fun': 2,\n",
      "          'em': 2,\n",
      "          'violent': 2,\n",
      "          'actually': 2,\n",
      "          'mean': 2,\n",
      "          'gun': 2,\n",
      "          'whole': 2,\n",
      "          'doesnt': 2,\n",
      "          'take': 2,\n",
      "          'see': 2,\n",
      "          'review': 2,\n",
      "          'mind': 2,\n",
      "          'bring': 2,\n",
      "          'coming': 2,\n",
      "          'songs': 2,\n",
      "          'nso': 2,\n",
      "          'cause': 2,\n",
      "          'love': 2,\n",
      "          'either': 2,\n",
      "          '810': 2,\n",
      "          '910': 2,\n",
      "          'plot': 1,\n",
      "          'bunch': 1,\n",
      "          'dressed': 1,\n",
      "          'impersonators': 1,\n",
      "          'rob': 1,\n",
      "          'casino': 1,\n",
      "          'presley': 1,\n",
      "          'convention': 1,\n",
      "          'boys': 1,\n",
      "          'eventually': 1,\n",
      "          'split': 1,\n",
      "          'money': 1,\n",
      "          'plans': 1,\n",
      "          'change': 1,\n",
      "          'occur': 1,\n",
      "          'dealing': 1,\n",
      "          'wheeling': 1,\n",
      "          'crew': 1,\n",
      "          'nwhos': 1,\n",
      "          'real': 1,\n",
      "          'gon': 1,\n",
      "          'questions': 1,\n",
      "          'answered': 1,\n",
      "          'rest': 1,\n",
      "          'ncritique': 1,\n",
      "          'funnest': 1,\n",
      "          'style': 1,\n",
      "          'tough': 1,\n",
      "          'talkin': 1,\n",
      "          'shite': 1,\n",
      "          'go': 1,\n",
      "          'definite': 1,\n",
      "          'hunkahunka': 1,\n",
      "          'burnin': 1,\n",
      "          'jollies': 1,\n",
      "          'high': 1,\n",
      "          'dig': 1,\n",
      "          'rough': 1,\n",
      "          'stuff': 1,\n",
      "          'original': 1,\n",
      "          'long': 1,\n",
      "          'make': 1,\n",
      "          'happen': 1,\n",
      "          'two': 1,\n",
      "          'shitekickin': 1,\n",
      "          'lovers': 1,\n",
      "          'stop': 1,\n",
      "          'till': 1,\n",
      "          'less': 1,\n",
      "          'drop': 1,\n",
      "          'nthis': 1,\n",
      "          'intensive': 1,\n",
      "          'shootout': 1,\n",
      "          'coolest': 1,\n",
      "          'robbery': 1,\n",
      "          'scenarios': 1,\n",
      "          'ever': 1,\n",
      "          'witnessed': 1,\n",
      "          'featuring': 1,\n",
      "          'several': 1,\n",
      "          'elvises': 1,\n",
      "          'blazin': 1,\n",
      "          'kings': 1,\n",
      "          'playing': 1,\n",
      "          'decent': 1,\n",
      "          'sharp': 1,\n",
      "          'dialogue': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'fact': 1,\n",
      "          'cast': 1,\n",
      "          'filled': 1,\n",
      "          'name': 1,\n",
      "          'actors': 1,\n",
      "          'bactors': 1,\n",
      "          'might': 1,\n",
      "          'part': 1,\n",
      "          'bit': 1,\n",
      "          'succeed': 1,\n",
      "          'passing': 1,\n",
      "          'torch': 1,\n",
      "          'onto': 1,\n",
      "          'victim': 1,\n",
      "          'nbut': 1,\n",
      "          'true': 1,\n",
      "          'glue': 1,\n",
      "          'holds': 1,\n",
      "          'spirit': 1,\n",
      "          'play': 1,\n",
      "          'badass': 1,\n",
      "          'surprised': 1,\n",
      "          'nastiness': 1,\n",
      "          'pissed': 1,\n",
      "          'boxoffice': 1,\n",
      "          'bombs': 1,\n",
      "          'late': 1,\n",
      "          'played': 1,\n",
      "          'unstable': 1,\n",
      "          'impersonating': 1,\n",
      "          'robber': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'kickin': 1,\n",
      "          'ass': 1,\n",
      "          'making': 1,\n",
      "          'theres': 1,\n",
      "          'enough': 1,\n",
      "          'bubblegum': 1,\n",
      "          'chew': 1,\n",
      "          'afterwards': 1,\n",
      "          'smoke': 1,\n",
      "          'nthere': 1,\n",
      "          'showdown': 1,\n",
      "          'scene': 1,\n",
      "          'cop': 1,\n",
      "          'crackin': 1,\n",
      "          'lovin': 1,\n",
      "          'time': 1,\n",
      "          'entire': 1,\n",
      "          'wrapped': 1,\n",
      "          'soundtrack': 1,\n",
      "          'kick': 1,\n",
      "          'arse': 1,\n",
      "          'theatre': 1,\n",
      "          'nit': 1,\n",
      "          'come': 1,\n",
      "          'surprise': 1,\n",
      "          'anyone': 1,\n",
      "          'director': 1,\n",
      "          'comes': 1,\n",
      "          'video': 1,\n",
      "          'camera': 1,\n",
      "          'tricks': 1,\n",
      "          'cuts': 1,\n",
      "          'edits': 1,\n",
      "          'kind': 1,\n",
      "          'flick': 1,\n",
      "          'works': 1,\n",
      "          'perfect': 1,\n",
      "          'starts': 1,\n",
      "          'pulls': 1,\n",
      "          'us': 1,\n",
      "          'slows': 1,\n",
      "          'pace': 1,\n",
      "          'somewhat': 1,\n",
      "          'middle': 1,\n",
      "          'intermingle': 1,\n",
      "          'disperse': 1,\n",
      "          'personally': 1,\n",
      "          'kept': 1,\n",
      "          'game': 1,\n",
      "          'despite': 1,\n",
      "          'soft': 1,\n",
      "          'spots': 1,\n",
      "          'enjoyed': 1,\n",
      "          'overall': 1,\n",
      "          'ride': 1,\n",
      "          'mention': 1,\n",
      "          'looked': 1,\n",
      "          'megahot': 1,\n",
      "          'nno': 1,\n",
      "          'okay': 1,\n",
      "          'nwell': 1,\n",
      "          'coulda': 1,\n",
      "          'done': 1,\n",
      "          'without': 1,\n",
      "          'romance': 1,\n",
      "          'angle': 1,\n",
      "          'honest': 1,\n",
      "          'generally': 1,\n",
      "          'covered': 1,\n",
      "          'blood': 1,\n",
      "          'explosions': 1,\n",
      "          'guts': 1,\n",
      "          'nods': 1,\n",
      "          'ntry': 1,\n",
      "          'inside': 1,\n",
      "          'connections': 1,\n",
      "          'king': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'secret': 1,\n",
      "          'quite': 1,\n",
      "          'fan': 1,\n",
      "          'please': 1,\n",
      "          'grain': 1,\n",
      "          'salt': 1,\n",
      "          'like': 1,\n",
      "          'types': 1,\n",
      "          'lot': 1,\n",
      "          'originality': 1,\n",
      "          'table': 1,\n",
      "          'offer': 1,\n",
      "          'coherent': 1,\n",
      "          'story': 1,\n",
      "          'nice': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'humor': 1,\n",
      "          'ol': 1,\n",
      "          'whoopass': 1,\n",
      "          'straight': 1,\n",
      "          'respective': 1,\n",
      "          'boots': 1,\n",
      "          'nprobably': 1,\n",
      "          'everyone': 1,\n",
      "          'definitely': 1,\n",
      "          'enjoy': 1,\n",
      "          'charismatic': 1,\n",
      "          'entirely': 1,\n",
      "          'disposable': 1,\n",
      "          'nnow': 1,\n",
      "          'used': 1,\n",
      "          'pun': 1,\n",
      "          'phony': 1,\n",
      "          'recommend': 1,\n",
      "          'lonesome': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'tonight': 1,\n",
      "          'night': 1,\n",
      "          'remember': 1,\n",
      "          'pack': 1,\n",
      "          'teddy': 1,\n",
      "          'bear': 1,\n",
      "          'leave': 1,\n",
      "          'sister': 1,\n",
      "          'home': 1,\n",
      "          'bossa': 1,\n",
      "          'nova': 1,\n",
      "          'baby': 1,\n",
      "          'rock': 1,\n",
      "          'jailhouse': 1,\n",
      "          'aint': 1,\n",
      "          'return': 1,\n",
      "          'sender': 1,\n",
      "          'beg': 1,\n",
      "          'stuck': 1,\n",
      "          'ghetto': 1,\n",
      "          'crying': 1,\n",
      "          'chapel': 1,\n",
      "          'slap': 1,\n",
      "          'cinematic': 1,\n",
      "          'ring': 1,\n",
      "          'neck': 1,\n",
      "          'tender': 1,\n",
      "          'suspicious': 1,\n",
      "          'minds': 1,\n",
      "          'stung': 1,\n",
      "          'shook': 1,\n",
      "          'unless': 1,\n",
      "          'devil': 1,\n",
      "          'disguise': 1,\n",
      "          'think': 1,\n",
      "          'wont': 1,\n",
      "          'able': 1,\n",
      "          'help': 1,\n",
      "          'falling': 1,\n",
      "          'lucky': 1,\n",
      "          'charm': 1,\n",
      "          'cruel': 1,\n",
      "          'turn': 1,\n",
      "          'away': 1,\n",
      "          'curl': 1,\n",
      "          'latest': 1,\n",
      "          'flame': 1,\n",
      "          'tonite': 1,\n",
      "          'hardheaded': 1,\n",
      "          'woman': 1,\n",
      "          'surrender': 1,\n",
      "          'hound': 1,\n",
      "          'dog': 1,\n",
      "          'never': 1,\n",
      "          'ntrust': 1,\n",
      "          'heartbreak': 1,\n",
      "          'hotel': 1,\n",
      "          'crappy': 1,\n",
      "          'id': 1,\n",
      "          'behind': 1,\n",
      "          'njoblo': 1,\n",
      "          'officially': 1,\n",
      "          'left': 1,\n",
      "          'sanity': 1,\n",
      "          'building': 1,\n",
      "          'nthank': 1,\n",
      "          'thank': 1,\n",
      "          'nyou': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'nget': 1,\n",
      "          'carter': 1,\n",
      "          '710': 1,\n",
      "          'heat': 1,\n",
      "          'honeymoon': 1,\n",
      "          'payback': 1,\n",
      "          'reindeer': 1,\n",
      "          'games': 1,\n",
      "          '510': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogs': 1,\n",
      "          '610': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'end': 3,\n",
      "          'nthe': 3,\n",
      "          'parents': 3,\n",
      "          'one': 3,\n",
      "          'moore': 2,\n",
      "          'film': 2,\n",
      "          'son': 2,\n",
      "          'biological': 2,\n",
      "          'take': 2,\n",
      "          'woman': 2,\n",
      "          'alda': 2,\n",
      "          'tomlin': 2,\n",
      "          'giving': 2,\n",
      "          'commercials': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'mildmannered': 1,\n",
      "          'neil': 1,\n",
      "          'simonesque': 1,\n",
      "          'tale': 1,\n",
      "          'mary': 1,\n",
      "          'tyler': 1,\n",
      "          'baring': 1,\n",
      "          'bra': 1,\n",
      "          'touted': 1,\n",
      "          'highlight': 1,\n",
      "          'ninstead': 1,\n",
      "          'turns': 1,\n",
      "          'hilarious': 1,\n",
      "          'running': 1,\n",
      "          'high': 1,\n",
      "          'gear': 1,\n",
      "          'beginning': 1,\n",
      "          'concept': 1,\n",
      "          'deceptively': 1,\n",
      "          'pedestrian': 1,\n",
      "          'nan': 1,\n",
      "          'adult': 1,\n",
      "          'adopted': 1,\n",
      "          'looking': 1,\n",
      "          'encounters': 1,\n",
      "          'eccentric': 1,\n",
      "          'characters': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'movie': 1,\n",
      "          'demonstrates': 1,\n",
      "          'far': 1,\n",
      "          'good': 1,\n",
      "          'script': 1,\n",
      "          'actors': 1,\n",
      "          'mundane': 1,\n",
      "          'idea': 1,\n",
      "          'wife': 1,\n",
      "          'search': 1,\n",
      "          'accompanied': 1,\n",
      "          'agency': 1,\n",
      "          'located': 1,\n",
      "          'nfollowing': 1,\n",
      "          'dead': 1,\n",
      "          'lead': 1,\n",
      "          'another': 1,\n",
      "          'funnier': 1,\n",
      "          'previous': 1,\n",
      "          'eventually': 1,\n",
      "          'new': 1,\n",
      "          'mexico': 1,\n",
      "          'real': 1,\n",
      "          'alan': 1,\n",
      "          'lily': 1,\n",
      "          'nits': 1,\n",
      "          'difficult': 1,\n",
      "          'condense': 1,\n",
      "          'mileaminute': 1,\n",
      "          'plot': 1,\n",
      "          'nseemingly': 1,\n",
      "          'hundreds': 1,\n",
      "          'scenes': 1,\n",
      "          'jump': 1,\n",
      "          'top': 1,\n",
      "          'without': 1,\n",
      "          'chance': 1,\n",
      "          'recover': 1,\n",
      "          'last': 1,\n",
      "          'nwithout': 1,\n",
      "          'much': 1,\n",
      "          'away': 1,\n",
      "          'better': 1,\n",
      "          'episodes': 1,\n",
      "          'involves': 1,\n",
      "          'gay': 1,\n",
      "          'federal': 1,\n",
      "          'alcohol': 1,\n",
      "          'tobacco': 1,\n",
      "          'firearms': 1,\n",
      "          'agent': 1,\n",
      "          'attempting': 1,\n",
      "          'arrest': 1,\n",
      "          'tripping': 1,\n",
      "          'lsd': 1,\n",
      "          'bisexual': 1,\n",
      "          'partner': 1,\n",
      "          'upstairs': 1,\n",
      "          'licking': 1,\n",
      "          'armpit': 1,\n",
      "          'husband': 1,\n",
      "          'next': 1,\n",
      "          'room': 1,\n",
      "          'seducing': 1,\n",
      "          'traveling': 1,\n",
      "          'companion': 1,\n",
      "          'nand': 1,\n",
      "          'done': 1,\n",
      "          'fairly': 1,\n",
      "          'clean': 1,\n",
      "          'almost': 1,\n",
      "          'well': 1,\n",
      "          'maybe': 1,\n",
      "          'exactly': 1,\n",
      "          'family': 1,\n",
      "          'fare': 1,\n",
      "          'manner': 1,\n",
      "          'na': 1,\n",
      "          'grand': 1,\n",
      "          'cast': 1,\n",
      "          'ben': 1,\n",
      "          'stiller': 1,\n",
      "          'patricia': 1,\n",
      "          'arquette': 1,\n",
      "          'tea': 1,\n",
      "          'leoni': 1,\n",
      "          'george': 1,\n",
      "          'segal': 1,\n",
      "          'interacts': 1,\n",
      "          'seamless': 1,\n",
      "          'parade': 1,\n",
      "          'laughs': 1,\n",
      "          'ndrawing': 1,\n",
      "          'hyper': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'style': 1,\n",
      "          'succeeds': 1,\n",
      "          'beyond': 1,\n",
      "          'expectations': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'dog': 6,\n",
      "          'war': 6,\n",
      "          'political': 5,\n",
      "          'wag': 5,\n",
      "          'american': 5,\n",
      "          'nthe': 5,\n",
      "          'quite': 4,\n",
      "          'satire': 4,\n",
      "          'going': 4,\n",
      "          'brean': 4,\n",
      "          'public': 4,\n",
      "          'president': 4,\n",
      "          'one': 4,\n",
      "          'little': 3,\n",
      "          'would': 3,\n",
      "          'didnt': 3,\n",
      "          'media': 3,\n",
      "          'even': 3,\n",
      "          'motss': 3,\n",
      "          'propaganda': 3,\n",
      "          'go': 2,\n",
      "          'ni': 2,\n",
      "          'led': 2,\n",
      "          'believe': 2,\n",
      "          'hilarious': 2,\n",
      "          'make': 2,\n",
      "          'way': 2,\n",
      "          'also': 2,\n",
      "          'attack': 2,\n",
      "          'stanley': 2,\n",
      "          'said': 2,\n",
      "          'story': 2,\n",
      "          'revolves': 2,\n",
      "          'around': 2,\n",
      "          'distract': 2,\n",
      "          'accusations': 2,\n",
      "          'young': 2,\n",
      "          'girl': 2,\n",
      "          'presidents': 2,\n",
      "          'campaign': 2,\n",
      "          'nbrean': 2,\n",
      "          'hollywood': 2,\n",
      "          'enough': 2,\n",
      "          'albanian': 2,\n",
      "          'thus': 2,\n",
      "          'consistently': 2,\n",
      "          'sgt': 2,\n",
      "          'cia': 2,\n",
      "          'fighting': 2,\n",
      "          'nstill': 2,\n",
      "          'could': 2,\n",
      "          'fact': 2,\n",
      "          'never': 2,\n",
      "          'towards': 2,\n",
      "          'end': 2,\n",
      "          'motsss': 2,\n",
      "          'far': 2,\n",
      "          'nwith': 2,\n",
      "          'work': 2,\n",
      "          'might': 2,\n",
      "          'seem': 2,\n",
      "          'takes': 2,\n",
      "          'issue': 2,\n",
      "          'real': 2,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'best': 1,\n",
      "          'writing': 1,\n",
      "          'review': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'disappointed': 1,\n",
      "          'barry': 1,\n",
      "          'levinsons': 1,\n",
      "          'retrospect': 1,\n",
      "          'less': 1,\n",
      "          'false': 1,\n",
      "          'expectations': 1,\n",
      "          'nquite': 1,\n",
      "          'reviews': 1,\n",
      "          'read': 1,\n",
      "          'absolutely': 1,\n",
      "          'laugh': 1,\n",
      "          'loud': 1,\n",
      "          'whole': 1,\n",
      "          'nthey': 1,\n",
      "          'deliver': 1,\n",
      "          'vicious': 1,\n",
      "          'alltootrue': 1,\n",
      "          'works': 1,\n",
      "          'either': 1,\n",
      "          'na': 1,\n",
      "          'suggested': 1,\n",
      "          'prove': 1,\n",
      "          'worthy': 1,\n",
      "          'successor': 1,\n",
      "          'kubricks': 1,\n",
      "          'dr': 1,\n",
      "          'nstrangelove': 1,\n",
      "          'tradition': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'definitely': 1,\n",
      "          'nthat': 1,\n",
      "          'actually': 1,\n",
      "          'clever': 1,\n",
      "          'shady': 1,\n",
      "          'manipulations': 1,\n",
      "          'figures': 1,\n",
      "          'assist': 1,\n",
      "          'attempts': 1,\n",
      "          'spin': 1,\n",
      "          'doctor': 1,\n",
      "          'conread': 1,\n",
      "          'robert': 1,\n",
      "          'deniro': 1,\n",
      "          'reelection': 1,\n",
      "          'two': 1,\n",
      "          'weeks': 1,\n",
      "          'sexually': 1,\n",
      "          'harassed': 1,\n",
      "          'oval': 1,\n",
      "          'office': 1,\n",
      "          'script': 1,\n",
      "          'suggests': 1,\n",
      "          'probably': 1,\n",
      "          'untrue': 1,\n",
      "          'pointedly': 1,\n",
      "          'puts': 1,\n",
      "          'isnt': 1,\n",
      "          'particularly': 1,\n",
      "          'relevant': 1,\n",
      "          'scandal': 1,\n",
      "          'likely': 1,\n",
      "          'derail': 1,\n",
      "          'regardless': 1,\n",
      "          'truth': 1,\n",
      "          'falsehood': 1,\n",
      "          'along': 1,\n",
      "          'assistant': 1,\n",
      "          'anne': 1,\n",
      "          'heche': 1,\n",
      "          'decide': 1,\n",
      "          'contact': 1,\n",
      "          'producer': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'enlist': 1,\n",
      "          'help': 1,\n",
      "          'concocting': 1,\n",
      "          'specialeffects': 1,\n",
      "          'trickery': 1,\n",
      "          'appear': 1,\n",
      "          'u': 1,\n",
      "          'terrorists': 1,\n",
      "          'propel': 1,\n",
      "          'victory': 1,\n",
      "          'wave': 1,\n",
      "          'patriotic': 1,\n",
      "          'fervor': 1,\n",
      "          'nas': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'expected': 1,\n",
      "          'genuinely': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'found': 1,\n",
      "          'echo': 1,\n",
      "          'familiar': 1,\n",
      "          'movie': 1,\n",
      "          'clich': 1,\n",
      "          'camera': 1,\n",
      "          'pans': 1,\n",
      "          'urban': 1,\n",
      "          'sunset': 1,\n",
      "          'strains': 1,\n",
      "          'uplifting': 1,\n",
      "          'inspirational': 1,\n",
      "          'music': 1,\n",
      "          'cuts': 1,\n",
      "          'studio': 1,\n",
      "          'reveal': 1,\n",
      "          'singing': 1,\n",
      "          'coming': 1,\n",
      "          'group': 1,\n",
      "          'musicians': 1,\n",
      "          'assembled': 1,\n",
      "          'perform': 1,\n",
      "          'right': 1,\n",
      "          'fight': 1,\n",
      "          'democracy': 1,\n",
      "          'nanother': 1,\n",
      "          'scene': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'modern': 1,\n",
      "          'editing': 1,\n",
      "          'equipment': 1,\n",
      "          'actress': 1,\n",
      "          'running': 1,\n",
      "          'across': 1,\n",
      "          'sound': 1,\n",
      "          'stage': 1,\n",
      "          'bag': 1,\n",
      "          'potato': 1,\n",
      "          'chips': 1,\n",
      "          'turned': 1,\n",
      "          'frightened': 1,\n",
      "          'kitten': 1,\n",
      "          'fleeing': 1,\n",
      "          'terrorist': 1,\n",
      "          'village': 1,\n",
      "          'effective': 1,\n",
      "          'gag': 1,\n",
      "          'teams': 1,\n",
      "          'attempt': 1,\n",
      "          'forge': 1,\n",
      "          'fictional': 1,\n",
      "          'hero': 1,\n",
      "          'nwilliam': 1,\n",
      "          'old': 1,\n",
      "          'shoe': 1,\n",
      "          'schumann': 1,\n",
      "          'woody': 1,\n",
      "          'harrelson': 1,\n",
      "          'exmilitary': 1,\n",
      "          'officer': 1,\n",
      "          'turns': 1,\n",
      "          'firstclass': 1,\n",
      "          'psycho': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'everything': 1,\n",
      "          'goes': 1,\n",
      "          'planned': 1,\n",
      "          'example': 1,\n",
      "          'realizes': 1,\n",
      "          'whats': 1,\n",
      "          'strikes': 1,\n",
      "          'deal': 1,\n",
      "          'electoral': 1,\n",
      "          'opponent': 1,\n",
      "          'report': 1,\n",
      "          'ended': 1,\n",
      "          'forcing': 1,\n",
      "          'come': 1,\n",
      "          'new': 1,\n",
      "          'angle': 1,\n",
      "          'supposed': 1,\n",
      "          'crisis': 1,\n",
      "          'cias': 1,\n",
      "          'involvement': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'terms': 1,\n",
      "          'making': 1,\n",
      "          'scenario': 1,\n",
      "          'believable': 1,\n",
      "          'nregardless': 1,\n",
      "          'official': 1,\n",
      "          'word': 1,\n",
      "          'wouldnt': 1,\n",
      "          'major': 1,\n",
      "          'outlets': 1,\n",
      "          'eastern': 1,\n",
      "          'european': 1,\n",
      "          'correspondents': 1,\n",
      "          'verify': 1,\n",
      "          'albania': 1,\n",
      "          'addresses': 1,\n",
      "          'question': 1,\n",
      "          'show': 1,\n",
      "          'reactions': 1,\n",
      "          'news': 1,\n",
      "          'apparent': 1,\n",
      "          'except': 1,\n",
      "          'scenes': 1,\n",
      "          'border': 1,\n",
      "          'farcical': 1,\n",
      "          'basketball': 1,\n",
      "          'fans': 1,\n",
      "          'litter': 1,\n",
      "          'court': 1,\n",
      "          'shoes': 1,\n",
      "          'support': 1,\n",
      "          'aforementioned': 1,\n",
      "          'nschumann': 1,\n",
      "          'apparently': 1,\n",
      "          'meant': 1,\n",
      "          'assume': 1,\n",
      "          'everyone': 1,\n",
      "          'buying': 1,\n",
      "          'nthere': 1,\n",
      "          'instance': 1,\n",
      "          'forced': 1,\n",
      "          'reinventions': 1,\n",
      "          'seems': 1,\n",
      "          'contradict': 1,\n",
      "          'selling': 1,\n",
      "          'conceivably': 1,\n",
      "          'given': 1,\n",
      "          'game': 1,\n",
      "          'away': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'doesnt': 1,\n",
      "          'politics': 1,\n",
      "          'send': 1,\n",
      "          'mentality': 1,\n",
      "          'lead': 1,\n",
      "          'kinds': 1,\n",
      "          'machinations': 1,\n",
      "          'first': 1,\n",
      "          'place': 1,\n",
      "          'advisors': 1,\n",
      "          'concerned': 1,\n",
      "          'unethical': 1,\n",
      "          'rather': 1,\n",
      "          'worry': 1,\n",
      "          'convincing': 1,\n",
      "          'whether': 1,\n",
      "          'money': 1,\n",
      "          'pull': 1,\n",
      "          'decidely': 1,\n",
      "          'dark': 1,\n",
      "          'turn': 1,\n",
      "          'learn': 1,\n",
      "          'willing': 1,\n",
      "          'order': 1,\n",
      "          'keep': 1,\n",
      "          'secret': 1,\n",
      "          'nmotss': 1,\n",
      "          'buddies': 1,\n",
      "          'meanwhile': 1,\n",
      "          'completely': 1,\n",
      "          'touch': 1,\n",
      "          'rest': 1,\n",
      "          'world': 1,\n",
      "          'see': 1,\n",
      "          'undertaking': 1,\n",
      "          'another': 1,\n",
      "          'creative': 1,\n",
      "          'project': 1,\n",
      "          'nin': 1,\n",
      "          'sources': 1,\n",
      "          'conflict': 1,\n",
      "          'increasing': 1,\n",
      "          'restlessness': 1,\n",
      "          'idea': 1,\n",
      "          'able': 1,\n",
      "          'take': 1,\n",
      "          'credit': 1,\n",
      "          'producing': 1,\n",
      "          'fake': 1,\n",
      "          'mind': 1,\n",
      "          'greatest': 1,\n",
      "          'art': 1,\n",
      "          'ever': 1,\n",
      "          'created': 1,\n",
      "          'think': 1,\n",
      "          'fair': 1,\n",
      "          'say': 1,\n",
      "          'underachieves': 1,\n",
      "          'bit': 1,\n",
      "          'attention': 1,\n",
      "          'reaction': 1,\n",
      "          'tighter': 1,\n",
      "          'plotting': 1,\n",
      "          'made': 1,\n",
      "          'fourstar': 1,\n",
      "          'classic': 1,\n",
      "          'using': 1,\n",
      "          'patriotism': 1,\n",
      "          'scandals': 1,\n",
      "          'domestic': 1,\n",
      "          'unpopularity': 1,\n",
      "          'nwag': 1,\n",
      "          'step': 1,\n",
      "          'asks': 1,\n",
      "          'wasnt': 1,\n",
      "          'premise': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'still': 1,\n",
      "          'delivers': 1,\n",
      "          'whatever': 1,\n",
      "          'flaws': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'last': 9,\n",
      "          'days': 7,\n",
      "          'documentary': 6,\n",
      "          'nthe': 6,\n",
      "          'survivors': 5,\n",
      "          'stories': 5,\n",
      "          'nits': 5,\n",
      "          'jews': 4,\n",
      "          'war': 4,\n",
      "          'five': 4,\n",
      "          'would': 4,\n",
      "          'footage': 4,\n",
      "          'movie': 4,\n",
      "          'one': 4,\n",
      "          'features': 4,\n",
      "          'dvd': 4,\n",
      "          'nthere': 4,\n",
      "          'film': 4,\n",
      "          'ambitious': 4,\n",
      "          'europe': 3,\n",
      "          'make': 3,\n",
      "          'hungary': 3,\n",
      "          'camps': 3,\n",
      "          'auschwitz': 3,\n",
      "          'pictures': 3,\n",
      "          'none': 3,\n",
      "          'holocaust': 3,\n",
      "          'movies': 3,\n",
      "          'new': 3,\n",
      "          'subject': 3,\n",
      "          'doctor': 3,\n",
      "          'nazi': 2,\n",
      "          'almost': 2,\n",
      "          'years': 2,\n",
      "          'still': 2,\n",
      "          'world': 2,\n",
      "          'ii': 2,\n",
      "          'hungarian': 2,\n",
      "          'introduction': 2,\n",
      "          'nin': 2,\n",
      "          'neach': 2,\n",
      "          'story': 2,\n",
      "          'intercut': 2,\n",
      "          'nthey': 2,\n",
      "          'recall': 2,\n",
      "          'friends': 2,\n",
      "          'nand': 2,\n",
      "          'shows': 2,\n",
      "          'say': 2,\n",
      "          'place': 2,\n",
      "          'moll': 2,\n",
      "          'specific': 2,\n",
      "          'relevant': 2,\n",
      "          'two': 2,\n",
      "          'color': 2,\n",
      "          'shot': 2,\n",
      "          'something': 2,\n",
      "          'nanother': 2,\n",
      "          'segment': 2,\n",
      "          'nbut': 2,\n",
      "          'detail': 2,\n",
      "          'well': 2,\n",
      "          'nalso': 2,\n",
      "          '35mm': 2,\n",
      "          'crew': 2,\n",
      "          'interesting': 2,\n",
      "          'outtakes': 2,\n",
      "          'saying': 2,\n",
      "          'prayer': 2,\n",
      "          'sheer': 1,\n",
      "          'horrific': 1,\n",
      "          'audacity': 1,\n",
      "          'plan': 1,\n",
      "          'exterminate': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'npeople': 1,\n",
      "          'may': 1,\n",
      "          'documentaries': 1,\n",
      "          'another': 1,\n",
      "          'hundred': 1,\n",
      "          'understand': 1,\n",
      "          'organized': 1,\n",
      "          'methodical': 1,\n",
      "          'hatred': 1,\n",
      "          'nfive': 1,\n",
      "          'concentration': 1,\n",
      "          'camp': 1,\n",
      "          'tell': 1,\n",
      "          'first': 1,\n",
      "          'steven': 1,\n",
      "          'spielbergs': 1,\n",
      "          'shoah': 1,\n",
      "          'visual': 1,\n",
      "          'history': 1,\n",
      "          'foundation': 1,\n",
      "          'interviewees': 1,\n",
      "          'linked': 1,\n",
      "          'ancestry': 1,\n",
      "          'nas': 1,\n",
      "          'explains': 1,\n",
      "          'even': 1,\n",
      "          'germany': 1,\n",
      "          'started': 1,\n",
      "          'lose': 1,\n",
      "          'nazis': 1,\n",
      "          'stepped': 1,\n",
      "          'extermination': 1,\n",
      "          '1944': 1,\n",
      "          'big': 1,\n",
      "          'population': 1,\n",
      "          'within': 1,\n",
      "          'germanys': 1,\n",
      "          'reach': 1,\n",
      "          'became': 1,\n",
      "          'target': 1,\n",
      "          'hitlers': 1,\n",
      "          'final': 1,\n",
      "          'solution': 1,\n",
      "          'tells': 1,\n",
      "          'ntheir': 1,\n",
      "          'chronologically': 1,\n",
      "          'starting': 1,\n",
      "          'normal': 1,\n",
      "          'life': 1,\n",
      "          'prewar': 1,\n",
      "          'invasion': 1,\n",
      "          'sent': 1,\n",
      "          'work': 1,\n",
      "          'realization': 1,\n",
      "          'actually': 1,\n",
      "          'death': 1,\n",
      "          'horrible': 1,\n",
      "          'precarious': 1,\n",
      "          'lives': 1,\n",
      "          'buchenwald': 1,\n",
      "          'deaths': 1,\n",
      "          'family': 1,\n",
      "          'loss': 1,\n",
      "          'hope': 1,\n",
      "          'recalls': 1,\n",
      "          'unfathomable': 1,\n",
      "          'eventual': 1,\n",
      "          'liberation': 1,\n",
      "          'finally': 1,\n",
      "          'cathartic': 1,\n",
      "          'pained': 1,\n",
      "          'modernday': 1,\n",
      "          'return': 1,\n",
      "          'old': 1,\n",
      "          'homes': 1,\n",
      "          'nneedless': 1,\n",
      "          'horrifying': 1,\n",
      "          'amazing': 1,\n",
      "          'emotionally': 1,\n",
      "          'draining': 1,\n",
      "          'nby': 1,\n",
      "          'forceful': 1,\n",
      "          'testaments': 1,\n",
      "          'cutting': 1,\n",
      "          'parallel': 1,\n",
      "          'impact': 1,\n",
      "          'multiplied': 1,\n",
      "          'talkingheads': 1,\n",
      "          'style': 1,\n",
      "          'mostly': 1,\n",
      "          'people': 1,\n",
      "          'telling': 1,\n",
      "          'period': 1,\n",
      "          'photographs': 1,\n",
      "          'newsreel': 1,\n",
      "          'kind': 1,\n",
      "          'impossible': 1,\n",
      "          'get': 1,\n",
      "          'archival': 1,\n",
      "          'time': 1,\n",
      "          'discussed': 1,\n",
      "          'onscreen': 1,\n",
      "          'director': 1,\n",
      "          'james': 1,\n",
      "          'made': 1,\n",
      "          'better': 1,\n",
      "          'effort': 1,\n",
      "          'finding': 1,\n",
      "          'least': 1,\n",
      "          'images': 1,\n",
      "          'go': 1,\n",
      "          'subjects': 1,\n",
      "          'narration': 1,\n",
      "          'liner': 1,\n",
      "          'notes': 1,\n",
      "          'many': 1,\n",
      "          'nice': 1,\n",
      "          'indicate': 1,\n",
      "          'neverbeforeseen': 1,\n",
      "          'historical': 1,\n",
      "          'clear': 1,\n",
      "          'scene': 1,\n",
      "          'nit': 1,\n",
      "          'could': 1,\n",
      "          'hadnt': 1,\n",
      "          'seen': 1,\n",
      "          'powerful': 1,\n",
      "          'rare': 1,\n",
      "          'american': 1,\n",
      "          'piles': 1,\n",
      "          'victims': 1,\n",
      "          'cattle': 1,\n",
      "          'cars': 1,\n",
      "          'jarring': 1,\n",
      "          'unsettling': 1,\n",
      "          'seeing': 1,\n",
      "          'much': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'walking': 1,\n",
      "          'skeletons': 1,\n",
      "          'starved': 1,\n",
      "          'hardly': 1,\n",
      "          'look': 1,\n",
      "          'human': 1,\n",
      "          'anymore': 1,\n",
      "          'glut': 1,\n",
      "          'skeptical': 1,\n",
      "          'anything': 1,\n",
      "          'focusing': 1,\n",
      "          'told': 1,\n",
      "          'part': 1,\n",
      "          'way': 1,\n",
      "          'greater': 1,\n",
      "          'im': 1,\n",
      "          'glad': 1,\n",
      "          'careful': 1,\n",
      "          'filmmaking': 1,\n",
      "          'stands': 1,\n",
      "          'compared': 1,\n",
      "          'transfer': 1,\n",
      "          'rich': 1,\n",
      "          'beautiful': 1,\n",
      "          'nxmozillastatus': 1,\n",
      "          '0009f': 1,\n",
      "          'words': 1,\n",
      "          'interviews': 1,\n",
      "          'take': 1,\n",
      "          'late': 1,\n",
      "          'spring': 1,\n",
      "          'skies': 1,\n",
      "          'blue': 1,\n",
      "          'trees': 1,\n",
      "          'green': 1,\n",
      "          'video': 1,\n",
      "          'nso': 1,\n",
      "          'richness': 1,\n",
      "          'impeccable': 1,\n",
      "          'dvds': 1,\n",
      "          'plentiful': 1,\n",
      "          'wellchosen': 1,\n",
      "          'theatrical': 1,\n",
      "          'trailer': 1,\n",
      "          'great': 1,\n",
      "          'matter': 1,\n",
      "          'fifty': 1,\n",
      "          'photos': 1,\n",
      "          'production': 1,\n",
      "          'private': 1,\n",
      "          'collections': 1,\n",
      "          'disc': 1,\n",
      "          'complete': 1,\n",
      "          'versions': 1,\n",
      "          'widescreen': 1,\n",
      "          'full': 1,\n",
      "          'screen': 1,\n",
      "          'side': 1,\n",
      "          'outtake': 1,\n",
      "          'plus': 1,\n",
      "          'nyoud': 1,\n",
      "          'think': 1,\n",
      "          'inappropriate': 1,\n",
      "          'theyre': 1,\n",
      "          'bloopers': 1,\n",
      "          'ninstead': 1,\n",
      "          'solid': 1,\n",
      "          'moving': 1,\n",
      "          'segments': 1,\n",
      "          'probably': 1,\n",
      "          'cut': 1,\n",
      "          'length': 1,\n",
      "          'continues': 1,\n",
      "          'confrontation': 1,\n",
      "          'touched': 1,\n",
      "          'lightly': 1,\n",
      "          'nrenee': 1,\n",
      "          'firestone': 1,\n",
      "          'spoke': 1,\n",
      "          'camera': 1,\n",
      "          'dr': 1,\n",
      "          'hans': 1,\n",
      "          'nch': 1,\n",
      "          'german': 1,\n",
      "          'ran': 1,\n",
      "          'medical': 1,\n",
      "          'clinic': 1,\n",
      "          'nfirestone': 1,\n",
      "          'aggressive': 1,\n",
      "          'questioning': 1,\n",
      "          'children': 1,\n",
      "          'thought': 1,\n",
      "          'evasive': 1,\n",
      "          'clearly': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'showed': 1,\n",
      "          'bill': 1,\n",
      "          'basch': 1,\n",
      "          'dead': 1,\n",
      "          'nhe': 1,\n",
      "          'ends': 1,\n",
      "          'forgive': 1,\n",
      "          'surviving': 1,\n",
      "          'shoot': 1,\n",
      "          'saturated': 1,\n",
      "          'cable': 1,\n",
      "          'television': 1,\n",
      "          '54': 1,\n",
      "          'events': 1,\n",
      "          'covers': 1,\n",
      "          'handles': 1,\n",
      "          'potential': 1,\n",
      "          'obstacles': 1,\n",
      "          'fitting': 1,\n",
      "          'wealth': 1,\n",
      "          'also': 1,\n",
      "          'successful': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 4,\n",
      "          'movie': 4,\n",
      "          'also': 2,\n",
      "          'another': 2,\n",
      "          'wife': 2,\n",
      "          'ocean': 2,\n",
      "          'fine': 2,\n",
      "          'easy': 1,\n",
      "          'label': 1,\n",
      "          'something': 1,\n",
      "          'sentimental': 1,\n",
      "          'tear': 1,\n",
      "          'jerking': 1,\n",
      "          'experienced': 1,\n",
      "          'heartache': 1,\n",
      "          'losing': 1,\n",
      "          'child': 1,\n",
      "          'whether': 1,\n",
      "          'may': 1,\n",
      "          'life': 1,\n",
      "          'death': 1,\n",
      "          'nafter': 1,\n",
      "          'said': 1,\n",
      "          'say': 1,\n",
      "          'well': 1,\n",
      "          'none': 1,\n",
      "          'gets': 1,\n",
      "          'choking': 1,\n",
      "          'sensation': 1,\n",
      "          'throat': 1,\n",
      "          'grief': 1,\n",
      "          'brother': 1,\n",
      "          'forgives': 1,\n",
      "          'costly': 1,\n",
      "          'mistake': 1,\n",
      "          'husband': 1,\n",
      "          'hugs': 1,\n",
      "          'long': 1,\n",
      "          'estrangement': 1,\n",
      "          'nthere': 1,\n",
      "          'drownings': 1,\n",
      "          'conjure': 1,\n",
      "          'memories': 1,\n",
      "          'yet': 1,\n",
      "          'ordinary': 1,\n",
      "          'people': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'thing': 1,\n",
      "          'remotely': 1,\n",
      "          'connected': 1,\n",
      "          'probably': 1,\n",
      "          'tap': 1,\n",
      "          'water': 1,\n",
      "          'toilet': 1,\n",
      "          'flushing': 1,\n",
      "          'literally': 1,\n",
      "          'happened': 1,\n",
      "          'nso': 1,\n",
      "          'lessons': 1,\n",
      "          'learnt': 1,\n",
      "          '1': 1,\n",
      "          'ndont': 1,\n",
      "          'take': 1,\n",
      "          'children': 1,\n",
      "          'class': 1,\n",
      "          'reunions': 1,\n",
      "          'n2': 1,\n",
      "          'dont': 1,\n",
      "          'leave': 1,\n",
      "          'alone': 1,\n",
      "          'lobby': 1,\n",
      "          'even': 1,\n",
      "          'second': 1,\n",
      "          'nmichelle': 1,\n",
      "          'pfeiffer': 1,\n",
      "          'plays': 1,\n",
      "          'role': 1,\n",
      "          'highlystrung': 1,\n",
      "          'mother': 1,\n",
      "          'trend': 1,\n",
      "          'started': 1,\n",
      "          'thousand': 1,\n",
      "          'acres': 1,\n",
      "          'day': 1,\n",
      "          'nmy': 1,\n",
      "          'comment': 1,\n",
      "          'exceptionally': 1,\n",
      "          'strung': 1,\n",
      "          'much': 1,\n",
      "          'nervous': 1,\n",
      "          'break': 1,\n",
      "          'veins': 1,\n",
      "          'temples': 1,\n",
      "          'bulge': 1,\n",
      "          'impressively': 1,\n",
      "          'nwhoopi': 1,\n",
      "          'golberg': 1,\n",
      "          'puts': 1,\n",
      "          'understated': 1,\n",
      "          'performance': 1,\n",
      "          'playing': 1,\n",
      "          'lesbian': 1,\n",
      "          'cop': 1,\n",
      "          'name': 1,\n",
      "          'makes': 1,\n",
      "          'want': 1,\n",
      "          'reach': 1,\n",
      "          'lollipop': 1,\n",
      "          'nlastly': 1,\n",
      "          'ideal': 1,\n",
      "          'companions': 1,\n",
      "          'sort': 1,\n",
      "          'grandmother': 1,\n",
      "          'comes': 1,\n",
      "          'mind': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'chicken': 14,\n",
      "          'run': 12,\n",
      "          'nthe': 9,\n",
      "          'movie': 8,\n",
      "          'seen': 7,\n",
      "          'chickens': 7,\n",
      "          'ive': 5,\n",
      "          'one': 5,\n",
      "          'film': 5,\n",
      "          'like': 4,\n",
      "          'voice': 4,\n",
      "          'films': 4,\n",
      "          'great': 4,\n",
      "          'doesnt': 4,\n",
      "          'idea': 4,\n",
      "          'parodies': 4,\n",
      "          'even': 4,\n",
      "          'funnest': 3,\n",
      "          'fun': 3,\n",
      "          'nbut': 3,\n",
      "          'something': 3,\n",
      "          'escape': 3,\n",
      "          'rocky': 3,\n",
      "          'mel': 3,\n",
      "          'gibson': 3,\n",
      "          'pies': 3,\n",
      "          'come': 3,\n",
      "          'park': 3,\n",
      "          'animation': 3,\n",
      "          'two': 3,\n",
      "          'story': 3,\n",
      "          'bit': 3,\n",
      "          'lord': 3,\n",
      "          'nothing': 3,\n",
      "          'characters': 3,\n",
      "          'theyre': 3,\n",
      "          'funny': 3,\n",
      "          'subtle': 3,\n",
      "          'way': 3,\n",
      "          'sequence': 3,\n",
      "          'got': 3,\n",
      "          'never': 3,\n",
      "          'isnt': 2,\n",
      "          'word': 2,\n",
      "          'n': 2,\n",
      "          'thats': 2,\n",
      "          'came': 2,\n",
      "          'ever': 2,\n",
      "          'movies': 2,\n",
      "          'last': 2,\n",
      "          'hen': 2,\n",
      "          'julia': 2,\n",
      "          'sawalha': 2,\n",
      "          'comes': 2,\n",
      "          'day': 2,\n",
      "          'none': 2,\n",
      "          'brash': 2,\n",
      "          'rooster': 2,\n",
      "          'famous': 2,\n",
      "          'situation': 2,\n",
      "          'tweedy': 2,\n",
      "          'plan': 2,\n",
      "          'nshe': 2,\n",
      "          'creature': 2,\n",
      "          'wrong': 2,\n",
      "          'trousers': 2,\n",
      "          'close': 2,\n",
      "          'shave': 2,\n",
      "          'starring': 2,\n",
      "          'delightful': 2,\n",
      "          'team': 2,\n",
      "          'wallace': 2,\n",
      "          'npart': 2,\n",
      "          'parks': 2,\n",
      "          'make': 2,\n",
      "          'old': 2,\n",
      "          'seem': 2,\n",
      "          'stories': 2,\n",
      "          'fresh': 2,\n",
      "          'inspired': 2,\n",
      "          'contrived': 2,\n",
      "          'lifted': 2,\n",
      "          'reference': 2,\n",
      "          'scene': 2,\n",
      "          'feel': 2,\n",
      "          'else': 2,\n",
      "          'done': 2,\n",
      "          'original': 2,\n",
      "          'npark': 2,\n",
      "          'references': 2,\n",
      "          'chase': 2,\n",
      "          'indiana': 2,\n",
      "          'jones': 2,\n",
      "          'jabs': 2,\n",
      "          'history': 2,\n",
      "          'catch': 2,\n",
      "          'parody': 2,\n",
      "          'year': 2,\n",
      "          'dozens': 2,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'offer': 2,\n",
      "          'nthey': 2,\n",
      "          'youve': 2,\n",
      "          'lively': 2,\n",
      "          'every': 2,\n",
      "          'inevitable': 2,\n",
      "          'rats': 2,\n",
      "          'nearly': 2,\n",
      "          'enjoy': 2,\n",
      "          'know': 1,\n",
      "          'noun': 1,\n",
      "          'therefore': 1,\n",
      "          'conjugated': 1,\n",
      "          'adjective': 1,\n",
      "          'right': 1,\n",
      "          'viewing': 1,\n",
      "          'nno': 1,\n",
      "          'wonder': 1,\n",
      "          'kind': 1,\n",
      "          'reduces': 1,\n",
      "          'childish': 1,\n",
      "          'expressions': 1,\n",
      "          'nso': 1,\n",
      "          'hell': 1,\n",
      "          'websters': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'time': 1,\n",
      "          'anything': 1,\n",
      "          'funner': 1,\n",
      "          'tweedys': 1,\n",
      "          'farm': 1,\n",
      "          'nliving': 1,\n",
      "          'concentration': 1,\n",
      "          'camplike': 1,\n",
      "          'atmosphere': 1,\n",
      "          'led': 1,\n",
      "          'plucky': 1,\n",
      "          'called': 1,\n",
      "          'ginger': 1,\n",
      "          'continually': 1,\n",
      "          'plans': 1,\n",
      "          'always': 1,\n",
      "          'gets': 1,\n",
      "          'caught': 1,\n",
      "          'subsequently': 1,\n",
      "          'spending': 1,\n",
      "          'coal': 1,\n",
      "          'box': 1,\n",
      "          'night': 1,\n",
      "          'american': 1,\n",
      "          'flies': 1,\n",
      "          'fence': 1,\n",
      "          'calling': 1,\n",
      "          'flying': 1,\n",
      "          'circus': 1,\n",
      "          'performer': 1,\n",
      "          'nrocky': 1,\n",
      "          'promises': 1,\n",
      "          'teach': 1,\n",
      "          'fly': 1,\n",
      "          'grows': 1,\n",
      "          'desperate': 1,\n",
      "          'nefarious': 1,\n",
      "          'mrs': 1,\n",
      "          'miranda': 1,\n",
      "          'richardson': 1,\n",
      "          'decides': 1,\n",
      "          'abandon': 1,\n",
      "          'farms': 1,\n",
      "          'eggselling': 1,\n",
      "          'pieselling': 1,\n",
      "          'orders': 1,\n",
      "          'huge': 1,\n",
      "          'piemaking': 1,\n",
      "          'machine': 1,\n",
      "          'cackling': 1,\n",
      "          'go': 1,\n",
      "          'nwhat': 1,\n",
      "          'sort': 1,\n",
      "          'nchicken': 1,\n",
      "          'course': 1,\n",
      "          'ncodirector': 1,\n",
      "          'nick': 1,\n",
      "          'studio': 1,\n",
      "          'aardman': 1,\n",
      "          'produced': 1,\n",
      "          'three': 1,\n",
      "          'oscarwinning': 1,\n",
      "          'short': 1,\n",
      "          'comforts': 1,\n",
      "          'latter': 1,\n",
      "          'second': 1,\n",
      "          'third': 1,\n",
      "          'installments': 1,\n",
      "          'trilogy': 1,\n",
      "          'gromit': 1,\n",
      "          'man': 1,\n",
      "          'dog': 1,\n",
      "          'getting': 1,\n",
      "          'increasingly': 1,\n",
      "          'peculiar': 1,\n",
      "          'adventures': 1,\n",
      "          'made': 1,\n",
      "          'brilliantly': 1,\n",
      "          'entertaining': 1,\n",
      "          'uncanny': 1,\n",
      "          'ability': 1,\n",
      "          'new': 1,\n",
      "          'example': 1,\n",
      "          'pulled': 1,\n",
      "          'lot': 1,\n",
      "          'hitchcockian': 1,\n",
      "          'suspense': 1,\n",
      "          'tricks': 1,\n",
      "          'owed': 1,\n",
      "          'deal': 1,\n",
      "          'inspiration': 1,\n",
      "          'classic': 1,\n",
      "          'detective': 1,\n",
      "          'hands': 1,\n",
      "          'felt': 1,\n",
      "          'least': 1,\n",
      "          'nnow': 1,\n",
      "          'teaming': 1,\n",
      "          'codirector': 1,\n",
      "          'peter': 1,\n",
      "          'created': 1,\n",
      "          'similar': 1,\n",
      "          'plot': 1,\n",
      "          'largely': 1,\n",
      "          'watch': 1,\n",
      "          'quick': 1,\n",
      "          'ballbouncing': 1,\n",
      "          'spielberginspired': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'providing': 1,\n",
      "          'excitement': 1,\n",
      "          'nthing': 1,\n",
      "          'somewhere': 1,\n",
      "          'feels': 1,\n",
      "          'alive': 1,\n",
      "          'world': 1,\n",
      "          'prisonersofwar': 1,\n",
      "          'milk': 1,\n",
      "          'incongruity': 1,\n",
      "          'worth': 1,\n",
      "          'treat': 1,\n",
      "          'dead': 1,\n",
      "          'serious': 1,\n",
      "          'us': 1,\n",
      "          'nanother': 1,\n",
      "          'thing': 1,\n",
      "          'helps': 1,\n",
      "          'succeed': 1,\n",
      "          'animators': 1,\n",
      "          'giving': 1,\n",
      "          'nods': 1,\n",
      "          'cribbing': 1,\n",
      "          'nthere': 1,\n",
      "          'obviously': 1,\n",
      "          'stalag': 1,\n",
      "          '17': 1,\n",
      "          'inside': 1,\n",
      "          'grinder': 1,\n",
      "          'raiders': 1,\n",
      "          'lost': 1,\n",
      "          'ark': 1,\n",
      "          'temple': 1,\n",
      "          'doom': 1,\n",
      "          'ntheres': 1,\n",
      "          'nod': 1,\n",
      "          'blues': 1,\n",
      "          'brothers': 1,\n",
      "          'believe': 1,\n",
      "          'filmmakers': 1,\n",
      "          'get': 1,\n",
      "          'little': 1,\n",
      "          'lighthearted': 1,\n",
      "          'ribbing': 1,\n",
      "          'expense': 1,\n",
      "          'star': 1,\n",
      "          'actor': 1,\n",
      "          'taking': 1,\n",
      "          'couple': 1,\n",
      "          'gibsons': 1,\n",
      "          'nationality': 1,\n",
      "          'braveheart': 1,\n",
      "          'hoot': 1,\n",
      "          'nwhen': 1,\n",
      "          'consider': 1,\n",
      "          'fine': 1,\n",
      "          'line': 1,\n",
      "          'resides': 1,\n",
      "          'redundant': 1,\n",
      "          'downright': 1,\n",
      "          'brilliant': 1,\n",
      "          'execution': 1,\n",
      "          'nconsider': 1,\n",
      "          'since': 1,\n",
      "          'july': 1,\n",
      "          'upon': 1,\n",
      "          'project': 1,\n",
      "          'television': 1,\n",
      "          'radio': 1,\n",
      "          'online': 1,\n",
      "          'nout': 1,\n",
      "          'maybe': 1,\n",
      "          'amusing': 1,\n",
      "          'rest': 1,\n",
      "          'tiresome': 1,\n",
      "          'nwhy': 1,\n",
      "          'nbecause': 1,\n",
      "          'past': 1,\n",
      "          'thought': 1,\n",
      "          'parodying': 1,\n",
      "          'that8216': 1,\n",
      "          'insight': 1,\n",
      "          'greater': 1,\n",
      "          'purpose': 1,\n",
      "          'otherwise': 1,\n",
      "          'nconversely': 1,\n",
      "          'lean': 1,\n",
      "          'sole': 1,\n",
      "          'focus': 1,\n",
      "          'nif': 1,\n",
      "          'still': 1,\n",
      "          'neven': 1,\n",
      "          'remains': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'screenwriter': 1,\n",
      "          'karey': 1,\n",
      "          'kirkpatrick': 1,\n",
      "          'realize': 1,\n",
      "          'audience': 1,\n",
      "          'need': 1,\n",
      "          'shoved': 1,\n",
      "          'faces': 1,\n",
      "          'understood': 1,\n",
      "          'result': 1,\n",
      "          'filled': 1,\n",
      "          'visual': 1,\n",
      "          'verbal': 1,\n",
      "          'obvious': 1,\n",
      "          'quite': 1,\n",
      "          'vague': 1,\n",
      "          'either': 1,\n",
      "          'nenjoyment': 1,\n",
      "          'require': 1,\n",
      "          'knowledge': 1,\n",
      "          'much': 1,\n",
      "          'richer': 1,\n",
      "          'cast': 1,\n",
      "          'turns': 1,\n",
      "          'uniformly': 1,\n",
      "          'performances': 1,\n",
      "          'play': 1,\n",
      "          'given': 1,\n",
      "          'many': 1,\n",
      "          'nuances': 1,\n",
      "          'hard': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'nginger': 1,\n",
      "          'perfect': 1,\n",
      "          'spunky': 1,\n",
      "          'opinionated': 1,\n",
      "          'soft': 1,\n",
      "          'heart': 1,\n",
      "          'forbids': 1,\n",
      "          'leave': 1,\n",
      "          'companions': 1,\n",
      "          'behind': 1,\n",
      "          'known': 1,\n",
      "          'cute': 1,\n",
      "          'mousy': 1,\n",
      "          'girl': 1,\n",
      "          'absolutely': 1,\n",
      "          'fabulous': 1,\n",
      "          'nails': 1,\n",
      "          'warm': 1,\n",
      "          'human': 1,\n",
      "          'chemistry': 1,\n",
      "          'whose': 1,\n",
      "          'hides': 1,\n",
      "          'personal': 1,\n",
      "          'doubt': 1,\n",
      "          'gungho': 1,\n",
      "          'veneer': 1,\n",
      "          'romance': 1,\n",
      "          'sweet': 1,\n",
      "          'npoor': 1,\n",
      "          'mr': 1,\n",
      "          'tony': 1,\n",
      "          'haygarth': 1,\n",
      "          'suspects': 1,\n",
      "          'organizing': 1,\n",
      "          'limited': 1,\n",
      "          'intellect': 1,\n",
      "          'prevents': 1,\n",
      "          'figuring': 1,\n",
      "          'things': 1,\n",
      "          'overbearing': 1,\n",
      "          'wife': 1,\n",
      "          'certainly': 1,\n",
      "          'help': 1,\n",
      "          'njane': 1,\n",
      "          'horrocks': 1,\n",
      "          'delivers': 1,\n",
      "          'lovely': 1,\n",
      "          'characterization': 1,\n",
      "          'tragically': 1,\n",
      "          'optimistic': 1,\n",
      "          'babs': 1,\n",
      "          'runs': 1,\n",
      "          'away': 1,\n",
      "          'best': 1,\n",
      "          'oneliners': 1,\n",
      "          'perpetually': 1,\n",
      "          'crocheting': 1,\n",
      "          'sweater': 1,\n",
      "          'supplytrading': 1,\n",
      "          'walked': 1,\n",
      "          'straight': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'sketch': 1,\n",
      "          'steal': 1,\n",
      "          'show': 1,\n",
      "          'central': 1,\n",
      "          'swingdancing': 1,\n",
      "          'riff': 1,\n",
      "          'baffled': 1,\n",
      "          'scholars': 1,\n",
      "          'theologians': 1,\n",
      "          'alike': 1,\n",
      "          'decades': 1,\n",
      "          'vs': 1,\n",
      "          'egg': 1,\n",
      "          'dilemma': 1,\n",
      "          'might': 1,\n",
      "          'expected': 1,\n",
      "          'joke': 1,\n",
      "          'wearisome': 1,\n",
      "          'surprise': 1,\n",
      "          'manages': 1,\n",
      "          'cross': 1,\n",
      "          'barriers': 1,\n",
      "          'accessible': 1,\n",
      "          'children': 1,\n",
      "          'adults': 1,\n",
      "          'brits': 1,\n",
      "          'yanks': 1,\n",
      "          'firstrate': 1,\n",
      "          'nremember': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'actual': 1,\n",
      "          'humans': 1,\n",
      "          'moving': 1,\n",
      "          'clay': 1,\n",
      "          'figurines': 1,\n",
      "          'around': 1,\n",
      "          'tiny': 1,\n",
      "          'set': 1,\n",
      "          'painstaking': 1,\n",
      "          'see': 1,\n",
      "          'truly': 1,\n",
      "          'remarkable': 1,\n",
      "          'really': 1,\n",
      "          'nthis': 1,\n",
      "          'possesses': 1,\n",
      "          'quality': 1,\n",
      "          'makes': 1,\n",
      "          'pixar': 1,\n",
      "          'studios': 1,\n",
      "          'precise': 1,\n",
      "          'unwavering': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'nas': 1,\n",
      "          'topnotch': 1,\n",
      "          'family': 1,\n",
      "          'fare': 1,\n",
      "          'bugs': 1,\n",
      "          'life': 1,\n",
      "          'toy': 1,\n",
      "          '2': 1,\n",
      "          'frame': 1,\n",
      "          'ncertainly': 1,\n",
      "          'passive': 1,\n",
      "          'viewer': 1,\n",
      "          'straightforward': 1,\n",
      "          'worthwhile': 1,\n",
      "          'moral': 1,\n",
      "          'surprisingly': 1,\n",
      "          'touching': 1,\n",
      "          'scenes': 1,\n",
      "          'active': 1,\n",
      "          'attentive': 1,\n",
      "          'viewers': 1,\n",
      "          'theyll': 1,\n",
      "          'details': 1,\n",
      "          'nanyway': 1,\n",
      "          'boatload': 1,\n",
      "          'nfunnest': 1,\n",
      "          'damn': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'dinosaurs': 11,\n",
      "          'films': 8,\n",
      "          'nthe': 8,\n",
      "          'island': 7,\n",
      "          'park': 6,\n",
      "          'adventure': 5,\n",
      "          'ni': 5,\n",
      "          'jurassic': 5,\n",
      "          'get': 5,\n",
      "          'two': 4,\n",
      "          'story': 4,\n",
      "          '4': 4,\n",
      "          'world': 4,\n",
      "          'like': 4,\n",
      "          'characters': 4,\n",
      "          'little': 4,\n",
      "          'much': 4,\n",
      "          'look': 4,\n",
      "          'safe': 4,\n",
      "          'grant': 4,\n",
      "          'dinosaur': 3,\n",
      "          'back': 3,\n",
      "          'us': 3,\n",
      "          'see': 3,\n",
      "          'new': 3,\n",
      "          'time': 3,\n",
      "          'nthis': 3,\n",
      "          'nin': 3,\n",
      "          'lost': 3,\n",
      "          'also': 3,\n",
      "          'first': 3,\n",
      "          'effects': 3,\n",
      "          'nthey': 3,\n",
      "          'height': 3,\n",
      "          'sequel': 2,\n",
      "          'made': 2,\n",
      "          'njoe': 2,\n",
      "          'johnston': 2,\n",
      "          'directs': 2,\n",
      "          'nit': 2,\n",
      "          'neither': 2,\n",
      "          'good': 2,\n",
      "          'low': 2,\n",
      "          '2': 2,\n",
      "          'liked': 2,\n",
      "          'even': 2,\n",
      "          'novel': 2,\n",
      "          'classic': 2,\n",
      "          'doyle': 2,\n",
      "          'said': 2,\n",
      "          'boy': 2,\n",
      "          'whos': 2,\n",
      "          'half': 2,\n",
      "          'man': 2,\n",
      "          'nthat': 2,\n",
      "          'expecting': 2,\n",
      "          'complex': 2,\n",
      "          'appear': 2,\n",
      "          'looking': 2,\n",
      "          'near': 2,\n",
      "          'isla': 2,\n",
      "          'sorna': 2,\n",
      "          'research': 2,\n",
      "          'better': 2,\n",
      "          'alan': 2,\n",
      "          'go': 2,\n",
      "          'fly': 2,\n",
      "          'nhe': 2,\n",
      "          'real': 2,\n",
      "          'nbut': 2,\n",
      "          'money': 2,\n",
      "          'seeing': 2,\n",
      "          'less': 2,\n",
      "          'still': 2,\n",
      "          'great': 2,\n",
      "          'raptors': 2,\n",
      "          'may': 2,\n",
      "          'previous': 2,\n",
      "          'course': 2,\n",
      "          'different': 2,\n",
      "          'known': 2,\n",
      "          'team': 2,\n",
      "          'obscures': 2,\n",
      "          'na': 2,\n",
      "          'score': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'short': 1,\n",
      "          'punchy': 1,\n",
      "          'action': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'straightforward': 1,\n",
      "          'excursion': 1,\n",
      "          'lets': 1,\n",
      "          'oxymoron': 1,\n",
      "          'gives': 1,\n",
      "          'nice': 1,\n",
      "          'generally': 1,\n",
      "          'reasonably': 1,\n",
      "          'written': 1,\n",
      "          'ambitious': 1,\n",
      "          'pretentious': 1,\n",
      "          'n': 1,\n",
      "          'nhere': 1,\n",
      "          'goes': 1,\n",
      "          'credibility': 1,\n",
      "          'expect': 1,\n",
      "          'minority': 1,\n",
      "          'third': 1,\n",
      "          'second': 1,\n",
      "          'lot': 1,\n",
      "          'ways': 1,\n",
      "          'creative': 1,\n",
      "          'threeway': 1,\n",
      "          'braiding': 1,\n",
      "          'together': 1,\n",
      "          'michael': 1,\n",
      "          'crichtons': 1,\n",
      "          'arthur': 1,\n",
      "          'conan': 1,\n",
      "          'doyles': 1,\n",
      "          'silent': 1,\n",
      "          'version': 1,\n",
      "          'njp2': 1,\n",
      "          'nexpecting': 1,\n",
      "          'give': 1,\n",
      "          'viewer': 1,\n",
      "          'insights': 1,\n",
      "          'human': 1,\n",
      "          'condition': 1,\n",
      "          'car': 1,\n",
      "          'vacuum': 1,\n",
      "          'house': 1,\n",
      "          'gunga': 1,\n",
      "          'din': 1,\n",
      "          'king': 1,\n",
      "          'solomons': 1,\n",
      "          'mines': 1,\n",
      "          'underwritten': 1,\n",
      "          'njurassic': 1,\n",
      "          'iii': 1,\n",
      "          'inhabited': 1,\n",
      "          'nsome': 1,\n",
      "          'start': 1,\n",
      "          'stupid': 1,\n",
      "          'useless': 1,\n",
      "          'prove': 1,\n",
      "          'proceeds': 1,\n",
      "          'degree': 1,\n",
      "          'complexity': 1,\n",
      "          'combined': 1,\n",
      "          'realistic': 1,\n",
      "          'require': 1,\n",
      "          'feel': 1,\n",
      "          'got': 1,\n",
      "          'moneys': 1,\n",
      "          'worth': 1,\n",
      "          'opens': 1,\n",
      "          'eric': 1,\n",
      "          'played': 1,\n",
      "          'trevor': 1,\n",
      "          'morgan': 1,\n",
      "          'friend': 1,\n",
      "          'parasailing': 1,\n",
      "          'forbidden': 1,\n",
      "          'costa': 1,\n",
      "          'rica': 1,\n",
      "          'created': 1,\n",
      "          'defunct': 1,\n",
      "          'hope': 1,\n",
      "          'doubt': 1,\n",
      "          'islands': 1,\n",
      "          'driving': 1,\n",
      "          'boat': 1,\n",
      "          'water': 1,\n",
      "          'soon': 1,\n",
      "          'find': 1,\n",
      "          'trouble': 1,\n",
      "          'ditch': 1,\n",
      "          'parasail': 1,\n",
      "          'onto': 1,\n",
      "          'indeed': 1,\n",
      "          'intended': 1,\n",
      "          'nflash': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'someone': 1,\n",
      "          'offering': 1,\n",
      "          'fund': 1,\n",
      "          'paleontologist': 1,\n",
      "          'sam': 1,\n",
      "          'neill': 1,\n",
      "          'act': 1,\n",
      "          'guide': 1,\n",
      "          'force': 1,\n",
      "          'earth': 1,\n",
      "          'heaven': 1,\n",
      "          'could': 1,\n",
      "          'convinces': 1,\n",
      "          'drop': 1,\n",
      "          'ndoing': 1,\n",
      "          'convincing': 1,\n",
      "          'wealthy': 1,\n",
      "          'eccentric': 1,\n",
      "          'couple': 1,\n",
      "          'william': 1,\n",
      "          'h': 1,\n",
      "          'macy': 1,\n",
      "          'tea': 1,\n",
      "          'leoni': 1,\n",
      "          'everywhere': 1,\n",
      "          'else': 1,\n",
      "          'wants': 1,\n",
      "          'plan': 1,\n",
      "          'relieved': 1,\n",
      "          'learn': 1,\n",
      "          'altitude': 1,\n",
      "          'nright': 1,\n",
      "          'nguess': 1,\n",
      "          'happens': 1,\n",
      "          'next': 1,\n",
      "          'njp3': 1,\n",
      "          'probably': 1,\n",
      "          'functions': 1,\n",
      "          'jp2': 1,\n",
      "          'nfirst': 1,\n",
      "          'ellie': 1,\n",
      "          'sattler': 1,\n",
      "          'laura': 1,\n",
      "          'dern': 1,\n",
      "          'rather': 1,\n",
      "          'appealing': 1,\n",
      "          'ian': 1,\n",
      "          'malcolm': 1,\n",
      "          'nsattler': 1,\n",
      "          'smaller': 1,\n",
      "          'part': 1,\n",
      "          'jp3': 1,\n",
      "          'present': 1,\n",
      "          'tie': 1,\n",
      "          'ncuriously': 1,\n",
      "          'seems': 1,\n",
      "          'arrange': 1,\n",
      "          'signature': 1,\n",
      "          'scene': 1,\n",
      "          'holding': 1,\n",
      "          'large': 1,\n",
      "          'metal': 1,\n",
      "          'object': 1,\n",
      "          'fall': 1,\n",
      "          'distance': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'quite': 1,\n",
      "          'fit': 1,\n",
      "          'earlier': 1,\n",
      "          'discovers': 1,\n",
      "          'able': 1,\n",
      "          'talk': 1,\n",
      "          'suddenly': 1,\n",
      "          'seem': 1,\n",
      "          'conversing': 1,\n",
      "          'nof': 1,\n",
      "          'perhaps': 1,\n",
      "          'related': 1,\n",
      "          'species': 1,\n",
      "          'nnot': 1,\n",
      "          'intelligent': 1,\n",
      "          'past': 1,\n",
      "          'sympathetic': 1,\n",
      "          'killing': 1,\n",
      "          'machines': 1,\n",
      "          'reasonable': 1,\n",
      "          'motives': 1,\n",
      "          'beyond': 1,\n",
      "          'nutrition': 1,\n",
      "          'around': 1,\n",
      "          'anthropomorphized': 1,\n",
      "          'neach': 1,\n",
      "          'series': 1,\n",
      "          'introduces': 1,\n",
      "          'major': 1,\n",
      "          'threat': 1,\n",
      "          'spinosaurus': 1,\n",
      "          'common': 1,\n",
      "          'popularly': 1,\n",
      "          'tyrannosaurus': 1,\n",
      "          'larger': 1,\n",
      "          'presumably': 1,\n",
      "          'nasty': 1,\n",
      "          'crocodiles': 1,\n",
      "          'head': 1,\n",
      "          'body': 1,\n",
      "          'looks': 1,\n",
      "          'dimetrodon': 1,\n",
      "          'walking': 1,\n",
      "          'upright': 1,\n",
      "          'nperhaps': 1,\n",
      "          'economy': 1,\n",
      "          'measure': 1,\n",
      "          'create': 1,\n",
      "          'mood': 1,\n",
      "          'visual': 1,\n",
      "          'frequently': 1,\n",
      "          'view': 1,\n",
      "          'nsometimes': 1,\n",
      "          'move': 1,\n",
      "          'fast': 1,\n",
      "          'noccasionally': 1,\n",
      "          'darkness': 1,\n",
      "          'fog': 1,\n",
      "          'vision': 1,\n",
      "          'times': 1,\n",
      "          'unconvincing': 1,\n",
      "          'matte': 1,\n",
      "          'shot': 1,\n",
      "          'particularly': 1,\n",
      "          'laboratory': 1,\n",
      "          'screen': 1,\n",
      "          'terms': 1,\n",
      "          'musical': 1,\n",
      "          'davis': 1,\n",
      "          'borrows': 1,\n",
      "          'heavily': 1,\n",
      "          'john': 1,\n",
      "          'williamss': 1,\n",
      "          'already': 1,\n",
      "          'credit': 1,\n",
      "          'recommend': 1,\n",
      "          'rocketeer': 1,\n",
      "          'october': 1,\n",
      "          'sky': 1,\n",
      "          'including': 1,\n",
      "          'alexander': 1,\n",
      "          'payne': 1,\n",
      "          'jim': 1,\n",
      "          'taylor': 1,\n",
      "          'election': 1,\n",
      "          'writes': 1,\n",
      "          'screenplay': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'cinema': 1,\n",
      "          'fun': 1,\n",
      "          'nif': 1,\n",
      "          'thrill': 1,\n",
      "          'live': 1,\n",
      "          'alive': 1,\n",
      "          'today': 1,\n",
      "          'rate': 1,\n",
      "          '7': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rob': 9,\n",
      "          'fidelity': 6,\n",
      "          'high': 5,\n",
      "          'character': 5,\n",
      "          'know': 4,\n",
      "          'movie': 4,\n",
      "          'music': 4,\n",
      "          'big': 3,\n",
      "          'life': 3,\n",
      "          'laugh': 3,\n",
      "          'frears': 3,\n",
      "          'makes': 3,\n",
      "          'feel': 3,\n",
      "          'ni': 3,\n",
      "          'laughed': 3,\n",
      "          'nthe': 3,\n",
      "          'look': 2,\n",
      "          'years': 2,\n",
      "          'lebowski': 2,\n",
      "          'actors': 2,\n",
      "          'record': 2,\n",
      "          'store': 2,\n",
      "          'way': 2,\n",
      "          'around': 2,\n",
      "          'losers': 2,\n",
      "          'stephen': 2,\n",
      "          'good': 2,\n",
      "          'twenty': 2,\n",
      "          'day': 2,\n",
      "          'realize': 2,\n",
      "          'laughing': 2,\n",
      "          'talking': 2,\n",
      "          'either': 2,\n",
      "          'words': 2,\n",
      "          'friends': 2,\n",
      "          'john': 2,\n",
      "          'barry': 2,\n",
      "          'black': 2,\n",
      "          'time': 2,\n",
      "          'nand': 2,\n",
      "          'cusack': 2,\n",
      "          'nrob': 2,\n",
      "          'like': 2,\n",
      "          'nhe': 2,\n",
      "          'hold': 2,\n",
      "          'pop': 2,\n",
      "          'goes': 2,\n",
      "          'listening': 2,\n",
      "          'bruce': 2,\n",
      "          'springsteen': 2,\n",
      "          'well': 2,\n",
      "          'trying': 2,\n",
      "          'girlfriends': 2,\n",
      "          'five': 2,\n",
      "          'robs': 2,\n",
      "          'show': 2,\n",
      "          'speak': 2,\n",
      "          'camera': 2,\n",
      "          'nit': 2,\n",
      "          'minutes': 2,\n",
      "          'cast': 2,\n",
      "          'back': 1,\n",
      "          'two': 1,\n",
      "          'ago': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'coen': 1,\n",
      "          'brothers': 1,\n",
      "          'comedic': 1,\n",
      "          'gem': 1,\n",
      "          'change': 1,\n",
      "          'take': 1,\n",
      "          'away': 1,\n",
      "          'bowling': 1,\n",
      "          'alley': 1,\n",
      "          'add': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'maybe': 1,\n",
      "          'since': 1,\n",
      "          'nick': 1,\n",
      "          'hornbys': 1,\n",
      "          'novel': 1,\n",
      "          'came': 1,\n",
      "          'first': 1,\n",
      "          'neither': 1,\n",
      "          'done': 1,\n",
      "          'trio': 1,\n",
      "          'cracking': 1,\n",
      "          'jokes': 1,\n",
      "          'complaining': 1,\n",
      "          'failed': 1,\n",
      "          'romances': 1,\n",
      "          'yet': 1,\n",
      "          'remains': 1,\n",
      "          'consistently': 1,\n",
      "          'funny': 1,\n",
      "          'nwhy': 1,\n",
      "          'nmaybe': 1,\n",
      "          'much': 1,\n",
      "          'better': 1,\n",
      "          'guys': 1,\n",
      "          'pathetic': 1,\n",
      "          'ok': 1,\n",
      "          'theyre': 1,\n",
      "          'fictional': 1,\n",
      "          'ndirector': 1,\n",
      "          'possibly': 1,\n",
      "          'intentionally': 1,\n",
      "          'created': 1,\n",
      "          'even': 1,\n",
      "          'ostensibly': 1,\n",
      "          'uncle': 1,\n",
      "          'watches': 1,\n",
      "          'television': 1,\n",
      "          'four': 1,\n",
      "          'hours': 1,\n",
      "          'nwhen': 1,\n",
      "          'watching': 1,\n",
      "          'expect': 1,\n",
      "          'someone': 1,\n",
      "          'elses': 1,\n",
      "          'pain': 1,\n",
      "          'dick': 1,\n",
      "          'todd': 1,\n",
      "          'louiso': 1,\n",
      "          'shy': 1,\n",
      "          'timorous': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'seems': 1,\n",
      "          'cant': 1,\n",
      "          'put': 1,\n",
      "          'harshly': 1,\n",
      "          'rejected': 1,\n",
      "          'goodman': 1,\n",
      "          'jack': 1,\n",
      "          'exact': 1,\n",
      "          'replica': 1,\n",
      "          'comic': 1,\n",
      "          'bookstore': 1,\n",
      "          'owner': 1,\n",
      "          'simpsons': 1,\n",
      "          'pudgy': 1,\n",
      "          'egotistic': 1,\n",
      "          'obnoxious': 1,\n",
      "          'jeff': 1,\n",
      "          'bridges': 1,\n",
      "          'type': 1,\n",
      "          'story': 1,\n",
      "          'revolves': 1,\n",
      "          'easiest': 1,\n",
      "          'relate': 1,\n",
      "          'nothing': 1,\n",
      "          'uncontrollably': 1,\n",
      "          'cheats': 1,\n",
      "          'lies': 1,\n",
      "          'unable': 1,\n",
      "          'onto': 1,\n",
      "          'woman': 1,\n",
      "          'miserable': 1,\n",
      "          'inevitably': 1,\n",
      "          'comfort': 1,\n",
      "          'spends': 1,\n",
      "          'afternoons': 1,\n",
      "          'job': 1,\n",
      "          'quizzing': 1,\n",
      "          'coworkers': 1,\n",
      "          'obscure': 1,\n",
      "          'trivia': 1,\n",
      "          'new': 1,\n",
      "          'deriding': 1,\n",
      "          'praising': 1,\n",
      "          'nwhatever': 1,\n",
      "          'human': 1,\n",
      "          'emotions': 1,\n",
      "          'clash': 1,\n",
      "          'aretha': 1,\n",
      "          'franklin': 1,\n",
      "          'records': 1,\n",
      "          'co': 1,\n",
      "          'ngrasp': 1,\n",
      "          'help': 1,\n",
      "          'fill': 1,\n",
      "          'voids': 1,\n",
      "          'social': 1,\n",
      "          'lives': 1,\n",
      "          'built': 1,\n",
      "          'extensive': 1,\n",
      "          'collection': 1,\n",
      "          'home': 1,\n",
      "          'organizes': 1,\n",
      "          'depending': 1,\n",
      "          'mood': 1,\n",
      "          'nduring': 1,\n",
      "          'confused': 1,\n",
      "          'stage': 1,\n",
      "          'focuses': 1,\n",
      "          'cope': 1,\n",
      "          'numerous': 1,\n",
      "          'rejections': 1,\n",
      "          'visiting': 1,\n",
      "          'past': 1,\n",
      "          'eventually': 1,\n",
      "          'asking': 1,\n",
      "          'dumped': 1,\n",
      "          'nbut': 1,\n",
      "          'arent': 1,\n",
      "          'girls': 1,\n",
      "          'made': 1,\n",
      "          'top': 1,\n",
      "          'break': 1,\n",
      "          'ups': 1,\n",
      "          'history': 1,\n",
      "          'incessant': 1,\n",
      "          'use': 1,\n",
      "          'lists': 1,\n",
      "          'played': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'plot': 1,\n",
      "          'three': 1,\n",
      "          'women': 1,\n",
      "          'approach': 1,\n",
      "          'director': 1,\n",
      "          'takes': 1,\n",
      "          'charismatic': 1,\n",
      "          'directly': 1,\n",
      "          'effective': 1,\n",
      "          'gives': 1,\n",
      "          'quickly': 1,\n",
      "          'paced': 1,\n",
      "          'informal': 1,\n",
      "          'structure': 1,\n",
      "          'adjectives': 1,\n",
      "          'perfectly': 1,\n",
      "          'parallel': 1,\n",
      "          'lifestyle': 1,\n",
      "          'also': 1,\n",
      "          'helps': 1,\n",
      "          'open': 1,\n",
      "          'viewers': 1,\n",
      "          'eyes': 1,\n",
      "          'annoying': 1,\n",
      "          'njack': 1,\n",
      "          'steals': 1,\n",
      "          'hilariously': 1,\n",
      "          'realistic': 1,\n",
      "          'performance': 1,\n",
      "          'total': 1,\n",
      "          'sleaze': 1,\n",
      "          'ball': 1,\n",
      "          'njust': 1,\n",
      "          'audience': 1,\n",
      "          'immediately': 1,\n",
      "          'sympathetic': 1,\n",
      "          'must': 1,\n",
      "          'work': 1,\n",
      "          'every': 1,\n",
      "          'week': 1,\n",
      "          'nwhat': 1,\n",
      "          'us': 1,\n",
      "          'sorry': 1,\n",
      "          'misfortunes': 1,\n",
      "          'njohn': 1,\n",
      "          'plays': 1,\n",
      "          'convincingly': 1,\n",
      "          'strong': 1,\n",
      "          'supporting': 1,\n",
      "          'consisting': 1,\n",
      "          'stars': 1,\n",
      "          'really': 1,\n",
      "          'defines': 1,\n",
      "          'nnow': 1,\n",
      "          'instead': 1,\n",
      "          'explains': 1,\n",
      "          'something': 1,\n",
      "          'remaining': 1,\n",
      "          'members': 1,\n",
      "          'physically': 1,\n",
      "          'humorously': 1,\n",
      "          'create': 1,\n",
      "          'say': 1,\n",
      "          'problem': 1,\n",
      "          'doesnt': 1,\n",
      "          'end': 1,\n",
      "          'ended': 1,\n",
      "          'ninstead': 1,\n",
      "          'torturous': 1,\n",
      "          'seem': 1,\n",
      "          'lot': 1,\n",
      "          'longer': 1,\n",
      "          'nalso': 1,\n",
      "          'completely': 1,\n",
      "          'wasted': 1,\n",
      "          'brief': 1,\n",
      "          'cameo': 1,\n",
      "          'halfway': 1,\n",
      "          'nhigh': 1,\n",
      "          'cheerful': 1,\n",
      "          'old': 1,\n",
      "          'fashioned': 1,\n",
      "          'comedy': 1,\n",
      "          'voluminous': 1,\n",
      "          'soundtrack': 1,\n",
      "          'many': 1,\n",
      "          'laughs': 1,\n",
      "          'hope': 1,\n",
      "          'hollywood': 1,\n",
      "          'keeps': 1,\n",
      "          'creating': 1,\n",
      "          'screen': 1,\n",
      "          'make': 1,\n",
      "          'everyone': 1,\n",
      "          'great': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'apes': 8,\n",
      "          'human': 7,\n",
      "          'movie': 6,\n",
      "          'character': 6,\n",
      "          'didnt': 6,\n",
      "          'ni': 5,\n",
      "          'planet': 4,\n",
      "          'lead': 4,\n",
      "          'really': 4,\n",
      "          'humans': 3,\n",
      "          'tim': 3,\n",
      "          'thing': 3,\n",
      "          'every': 3,\n",
      "          'also': 3,\n",
      "          'whole': 3,\n",
      "          'got': 3,\n",
      "          'battle': 3,\n",
      "          'sequence': 3,\n",
      "          'back': 3,\n",
      "          'nthe': 3,\n",
      "          'ruled': 2,\n",
      "          'escape': 2,\n",
      "          'despite': 2,\n",
      "          'burton': 2,\n",
      "          'recommend': 2,\n",
      "          'fun': 2,\n",
      "          'summer': 2,\n",
      "          'definitely': 2,\n",
      "          'ape': 2,\n",
      "          'makeup': 2,\n",
      "          'one': 2,\n",
      "          'give': 2,\n",
      "          'coming': 2,\n",
      "          'characters': 2,\n",
      "          'especially': 2,\n",
      "          'entire': 2,\n",
      "          'guy': 2,\n",
      "          'scene': 2,\n",
      "          'wahlberg': 2,\n",
      "          'bit': 2,\n",
      "          'much': 2,\n",
      "          'care': 2,\n",
      "          'little': 2,\n",
      "          'nbut': 2,\n",
      "          'either': 2,\n",
      "          'anyone': 2,\n",
      "          'look': 2,\n",
      "          'original': 2,\n",
      "          '1968': 2,\n",
      "          'fact': 2,\n",
      "          'hes': 2,\n",
      "          '810': 2,\n",
      "          '710': 2,\n",
      "          'plot': 1,\n",
      "          'space': 1,\n",
      "          'astronaut': 1,\n",
      "          'accidentally': 1,\n",
      "          'falls': 1,\n",
      "          'upon': 1,\n",
      "          'nhe': 1,\n",
      "          'taken': 1,\n",
      "          'prisoner': 1,\n",
      "          'along': 1,\n",
      "          'tries': 1,\n",
      "          'best': 1,\n",
      "          'simian': 1,\n",
      "          'captors': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'mention': 1,\n",
      "          'talk': 1,\n",
      "          'nkewl': 1,\n",
      "          'ncritique': 1,\n",
      "          'looking': 1,\n",
      "          'like': 1,\n",
      "          'showing': 1,\n",
      "          'signs': 1,\n",
      "          'find': 1,\n",
      "          'generally': 1,\n",
      "          'entertained': 1,\n",
      "          'throughout': 1,\n",
      "          'fare': 1,\n",
      "          'nalthough': 1,\n",
      "          'sets': 1,\n",
      "          'apart': 1,\n",
      "          'others': 1,\n",
      "          'incredible': 1,\n",
      "          'jobs': 1,\n",
      "          'characterizations': 1,\n",
      "          'mean': 1,\n",
      "          'completely': 1,\n",
      "          'convinced': 1,\n",
      "          'single': 1,\n",
      "          'real': 1,\n",
      "          'actors': 1,\n",
      "          'inside': 1,\n",
      "          'costumes': 1,\n",
      "          'waking': 1,\n",
      "          'three': 1,\n",
      "          'morning': 1,\n",
      "          'day': 1,\n",
      "          'get': 1,\n",
      "          'slobbered': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'costumed': 1,\n",
      "          'exteriors': 1,\n",
      "          'selling': 1,\n",
      "          'us': 1,\n",
      "          'screen': 1,\n",
      "          'well': 1,\n",
      "          'enjoyed': 1,\n",
      "          'bonham': 1,\n",
      "          'carters': 1,\n",
      "          'performance': 1,\n",
      "          'believed': 1,\n",
      "          'developed': 1,\n",
      "          'roths': 1,\n",
      "          'bad': 1,\n",
      "          'chewed': 1,\n",
      "          'scenery': 1,\n",
      "          'oozed': 1,\n",
      "          'evil': 1,\n",
      "          'took': 1,\n",
      "          'part': 1,\n",
      "          'nplotwise': 1,\n",
      "          'liked': 1,\n",
      "          'beginning': 1,\n",
      "          'buildup': 1,\n",
      "          'village': 1,\n",
      "          'fight': 1,\n",
      "          'scenes': 1,\n",
      "          'things': 1,\n",
      "          'deserted': 1,\n",
      "          'area': 1,\n",
      "          'final': 1,\n",
      "          'kinda': 1,\n",
      "          'lost': 1,\n",
      "          'interest': 1,\n",
      "          'intrigued': 1,\n",
      "          'interactions': 1,\n",
      "          'idea': 1,\n",
      "          'beings': 1,\n",
      "          'animals': 1,\n",
      "          'end': 1,\n",
      "          'seemed': 1,\n",
      "          'typical': 1,\n",
      "          'kind': 1,\n",
      "          'hated': 1,\n",
      "          'kid': 1,\n",
      "          'nerves': 1,\n",
      "          'way': 1,\n",
      "          'resolved': 1,\n",
      "          'wont': 1,\n",
      "          'ruin': 1,\n",
      "          'cmon': 1,\n",
      "          'guys': 1,\n",
      "          'ncoulda': 1,\n",
      "          'thought': 1,\n",
      "          'something': 1,\n",
      "          'plausible': 1,\n",
      "          'held': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'cold': 1,\n",
      "          'demeanor': 1,\n",
      "          'zero': 1,\n",
      "          'chemistry': 1,\n",
      "          'shared': 1,\n",
      "          'interspecies': 1,\n",
      "          'love': 1,\n",
      "          'interests': 1,\n",
      "          'nthis': 1,\n",
      "          'dude': 1,\n",
      "          'seem': 1,\n",
      "          'rats': 1,\n",
      "          'ass': 1,\n",
      "          'ultimately': 1,\n",
      "          'happened': 1,\n",
      "          'nnow': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'fault': 1,\n",
      "          'actor': 1,\n",
      "          'script': 1,\n",
      "          'suffered': 1,\n",
      "          'nvisually': 1,\n",
      "          'nice': 1,\n",
      "          'expected': 1,\n",
      "          'greater': 1,\n",
      "          'coolness': 1,\n",
      "          'surprise': 1,\n",
      "          'ending': 1,\n",
      "          'highlighted': 1,\n",
      "          'felt': 1,\n",
      "          'tacked': 1,\n",
      "          'interesting': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'unless': 1,\n",
      "          'sequel': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'nso': 1,\n",
      "          'overall': 1,\n",
      "          'loved': 1,\n",
      "          'feel': 1,\n",
      "          'manner': 1,\n",
      "          'treated': 1,\n",
      "          'screamed': 1,\n",
      "          'shouted': 1,\n",
      "          'reverted': 1,\n",
      "          'evolution': 1,\n",
      "          'chain': 1,\n",
      "          'appreciate': 1,\n",
      "          'films': 1,\n",
      "          'lack': 1,\n",
      "          'development': 1,\n",
      "          'kris': 1,\n",
      "          'kristofferson': 1,\n",
      "          'even': 1,\n",
      "          'male': 1,\n",
      "          'female': 1,\n",
      "          'plain': 1,\n",
      "          'boring': 1,\n",
      "          'would': 1,\n",
      "          'still': 1,\n",
      "          'laughs': 1,\n",
      "          'creepiness': 1,\n",
      "          'cool': 1,\n",
      "          'premise': 1,\n",
      "          'nps': 1,\n",
      "          'seen': 1,\n",
      "          'believe': 1,\n",
      "          'least': 1,\n",
      "          'bring': 1,\n",
      "          'case': 1,\n",
      "          'mark': 1,\n",
      "          'goes': 1,\n",
      "          'nuts': 1,\n",
      "          'world': 1,\n",
      "          'suddenly': 1,\n",
      "          'thrust': 1,\n",
      "          'mad': 1,\n",
      "          'house': 1,\n",
      "          'ntype': 1,\n",
      "          'barely': 1,\n",
      "          'seems': 1,\n",
      "          'put': 1,\n",
      "          'surrounded': 1,\n",
      "          'speak': 1,\n",
      "          'english': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'arrival': 1,\n",
      "          'battlefield': 1,\n",
      "          'earth': 1,\n",
      "          'godzilla': 1,\n",
      "          '410': 1,\n",
      "          'instinct': 1,\n",
      "          '610': 1,\n",
      "          'mission': 1,\n",
      "          'mars': 1,\n",
      "          '310': 1,\n",
      "          'pitch': 1,\n",
      "          'black': 1,\n",
      "          '910': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'n': 7,\n",
      "          'peak': 5,\n",
      "          'dantes': 4,\n",
      "          'volcano': 4,\n",
      "          'least': 3,\n",
      "          'disaster': 2,\n",
      "          'cliched': 2,\n",
      "          'nto': 2,\n",
      "          'film': 2,\n",
      "          'actual': 2,\n",
      "          'decent': 2,\n",
      "          'plot': 2,\n",
      "          'would': 2,\n",
      "          'also': 2,\n",
      "          'pretty': 2,\n",
      "          'wasnt': 2,\n",
      "          'seeing': 2,\n",
      "          'movie': 2,\n",
      "          'nits': 2,\n",
      "          'something': 2,\n",
      "          'merely': 2,\n",
      "          'watch': 2,\n",
      "          'dont': 2,\n",
      "          'town': 2,\n",
      "          'finally': 2,\n",
      "          'course': 2,\n",
      "          'one': 2,\n",
      "          'kids': 2,\n",
      "          'dog': 2,\n",
      "          'films': 1,\n",
      "          'tendency': 1,\n",
      "          'formulated': 1,\n",
      "          'see': 1,\n",
      "          'originality': 1,\n",
      "          'twist': 1,\n",
      "          'definitely': 1,\n",
      "          'welcome': 1,\n",
      "          'surprise': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'folks': 1,\n",
      "          'likely': 1,\n",
      "          'ndantes': 1,\n",
      "          'times': 1,\n",
      "          'corny': 1,\n",
      "          'honest': 1,\n",
      "          'interested': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'well': 1,\n",
      "          'several': 1,\n",
      "          'reviews': 1,\n",
      "          'didnt': 1,\n",
      "          'make': 1,\n",
      "          'sound': 1,\n",
      "          'promising': 1,\n",
      "          'nso': 1,\n",
      "          'pleasantly': 1,\n",
      "          'surprised': 1,\n",
      "          'find': 1,\n",
      "          'bad': 1,\n",
      "          'run': 1,\n",
      "          'mill': 1,\n",
      "          'say': 1,\n",
      "          'ok': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'know': 1,\n",
      "          'city': 1,\n",
      "          'lives': 1,\n",
      "          'shadow': 1,\n",
      "          'wouldve': 1,\n",
      "          'guessed': 1,\n",
      "          'eh': 1,\n",
      "          'npierce': 1,\n",
      "          'brosnan': 1,\n",
      "          'plays': 1,\n",
      "          'volcanologist': 1,\n",
      "          'sent': 1,\n",
      "          'study': 1,\n",
      "          'perhaps': 1,\n",
      "          'hunch': 1,\n",
      "          'scientific': 1,\n",
      "          'proof': 1,\n",
      "          'determined': 1,\n",
      "          'arupting': 1,\n",
      "          'near': 1,\n",
      "          'future': 1,\n",
      "          'ndue': 1,\n",
      "          'lack': 1,\n",
      "          'substantial': 1,\n",
      "          'evidence': 1,\n",
      "          'nobody': 1,\n",
      "          'warns': 1,\n",
      "          'small': 1,\n",
      "          'middle': 1,\n",
      "          'meeting': 1,\n",
      "          'blows': 1,\n",
      "          'nbrosnan': 1,\n",
      "          'around': 1,\n",
      "          'good': 1,\n",
      "          'guy': 1,\n",
      "          'save': 1,\n",
      "          'day': 1,\n",
      "          'mayor': 1,\n",
      "          'linda': 1,\n",
      "          'hamilton': 1,\n",
      "          'nnaturally': 1,\n",
      "          'two': 1,\n",
      "          'become': 1,\n",
      "          'infatuated': 1,\n",
      "          'another': 1,\n",
      "          'think': 1,\n",
      "          'ruined': 1,\n",
      "          'development': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'many': 1,\n",
      "          'movies': 1,\n",
      "          'ntheres': 1,\n",
      "          'virtually': 1,\n",
      "          'neccessary': 1,\n",
      "          'pet': 1,\n",
      "          'tug': 1,\n",
      "          'heart': 1,\n",
      "          'strings': 1,\n",
      "          'nand': 1,\n",
      "          'heroic': 1,\n",
      "          'nbut': 1,\n",
      "          'hey': 1,\n",
      "          'want': 1,\n",
      "          'ruin': 1,\n",
      "          'surprises': 1,\n",
      "          'nif': 1,\n",
      "          'part': 1,\n",
      "          'hesitating': 1,\n",
      "          'rumored': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'urge': 1,\n",
      "          'decide': 1,\n",
      "          'brain': 1,\n",
      "          'food': 1,\n",
      "          'succeeds': 1,\n",
      "          'meant': 1,\n",
      "          'nan': 1,\n",
      "          'enjoyable': 1,\n",
      "          'suspenseful': 1,\n",
      "          'fury': 1,\n",
      "          'mother': 1,\n",
      "          'nature': 1,\n",
      "          'unleash': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'suzanne': 7,\n",
      "          'movie': 6,\n",
      "          'film': 5,\n",
      "          'husband': 5,\n",
      "          'wonderful': 4,\n",
      "          'smart': 4,\n",
      "          'new': 4,\n",
      "          'n': 4,\n",
      "          'life': 4,\n",
      "          'would': 4,\n",
      "          'story': 4,\n",
      "          'jimmy': 4,\n",
      "          'sant': 4,\n",
      "          'american': 3,\n",
      "          'media': 3,\n",
      "          'thought': 3,\n",
      "          'nicole': 3,\n",
      "          'die': 3,\n",
      "          'character': 3,\n",
      "          'buck': 3,\n",
      "          'henry': 3,\n",
      "          'kidman': 3,\n",
      "          'little': 3,\n",
      "          'nthe': 3,\n",
      "          'delivers': 3,\n",
      "          'funny': 3,\n",
      "          'like': 3,\n",
      "          'score': 3,\n",
      "          'best': 2,\n",
      "          'comedy': 2,\n",
      "          'since': 2,\n",
      "          'heathers': 2,\n",
      "          'fame': 2,\n",
      "          'pop': 2,\n",
      "          'culture': 2,\n",
      "          'ngo': 2,\n",
      "          'see': 2,\n",
      "          'hard': 2,\n",
      "          'copy': 2,\n",
      "          'hampshire': 2,\n",
      "          'convicted': 2,\n",
      "          'kidmans': 2,\n",
      "          'fictionalized': 2,\n",
      "          'portrayal': 2,\n",
      "          'dumb': 2,\n",
      "          'appeal': 2,\n",
      "          'given': 2,\n",
      "          'point': 2,\n",
      "          'version': 2,\n",
      "          'event': 2,\n",
      "          'real': 2,\n",
      "          'dialogue': 2,\n",
      "          'nto': 2,\n",
      "          'obstacles': 2,\n",
      "          'tv': 2,\n",
      "          'course': 2,\n",
      "          'one': 2,\n",
      "          'matt': 2,\n",
      "          'dillon': 2,\n",
      "          'manages': 2,\n",
      "          'nkidman': 2,\n",
      "          'role': 2,\n",
      "          'really': 2,\n",
      "          'nher': 2,\n",
      "          'knows': 2,\n",
      "          'plays': 2,\n",
      "          'ably': 2,\n",
      "          'comic': 2,\n",
      "          'knowledge': 2,\n",
      "          'world': 2,\n",
      "          'suzannes': 2,\n",
      "          'phoenix': 2,\n",
      "          'nhe': 2,\n",
      "          'sort': 2,\n",
      "          'nphoenix': 2,\n",
      "          'someone': 2,\n",
      "          'van': 2,\n",
      "          'keeps': 2,\n",
      "          'nvan': 2,\n",
      "          'audience': 2,\n",
      "          'trusts': 2,\n",
      "          'screenplay': 2,\n",
      "          'elfman': 2,\n",
      "          'music': 2,\n",
      "          'themes': 2,\n",
      "          'r': 2,\n",
      "          'brief': 1,\n",
      "          'bleak': 1,\n",
      "          'nfull': 1,\n",
      "          'swipes': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'mentality': 1,\n",
      "          'feeds': 1,\n",
      "          'much': 1,\n",
      "          'modern': 1,\n",
      "          'nso': 1,\n",
      "          'prepared': 1,\n",
      "          'watching': 1,\n",
      "          'moving': 1,\n",
      "          'interview': 1,\n",
      "          'pam': 1,\n",
      "          'teacher': 1,\n",
      "          'engineering': 1,\n",
      "          'death': 1,\n",
      "          'back': 1,\n",
      "          '1980s': 1,\n",
      "          'diane': 1,\n",
      "          'diamond': 1,\n",
      "          'asked': 1,\n",
      "          'nsmart': 1,\n",
      "          'replied': 1,\n",
      "          'came': 1,\n",
      "          'vicious': 1,\n",
      "          'tramp': 1,\n",
      "          'publicity': 1,\n",
      "          'generates': 1,\n",
      "          'might': 1,\n",
      "          'hurt': 1,\n",
      "          'chances': 1,\n",
      "          'latest': 1,\n",
      "          'court': 1,\n",
      "          'sentence': 1,\n",
      "          'part': 1,\n",
      "          'murder': 1,\n",
      "          'nsmarts': 1,\n",
      "          'got': 1,\n",
      "          'nit': 1,\n",
      "          'wouldnt': 1,\n",
      "          'first': 1,\n",
      "          'time': 1,\n",
      "          'public': 1,\n",
      "          'took': 1,\n",
      "          'better': 1,\n",
      "          'scripted': 1,\n",
      "          'wellacted': 1,\n",
      "          'absolute': 1,\n",
      "          'truth': 1,\n",
      "          'duller': 1,\n",
      "          'far': 1,\n",
      "          'less': 1,\n",
      "          'artistic': 1,\n",
      "          'nhowever': 1,\n",
      "          'choice': 1,\n",
      "          'mass': 1,\n",
      "          'happening': 1,\n",
      "          'definitely': 1,\n",
      "          'opt': 1,\n",
      "          'later': 1,\n",
      "          'nreal': 1,\n",
      "          'murderers': 1,\n",
      "          'rarely': 1,\n",
      "          'witty': 1,\n",
      "          'written': 1,\n",
      "          'pretty': 1,\n",
      "          'alluring': 1,\n",
      "          'match': 1,\n",
      "          'cinematic': 1,\n",
      "          'charms': 1,\n",
      "          'begins': 1,\n",
      "          'town': 1,\n",
      "          'called': 1,\n",
      "          'hope': 1,\n",
      "          'archetypal': 1,\n",
      "          'dry': 1,\n",
      "          'intellectually': 1,\n",
      "          'barren': 1,\n",
      "          'suburb': 1,\n",
      "          'concerns': 1,\n",
      "          'ambitious': 1,\n",
      "          'stone': 1,\n",
      "          'tackles': 1,\n",
      "          'long': 1,\n",
      "          'ambition': 1,\n",
      "          'nof': 1,\n",
      "          'turns': 1,\n",
      "          'dull': 1,\n",
      "          'unambitious': 1,\n",
      "          'larry': 1,\n",
      "          'played': 1,\n",
      "          'nbut': 1,\n",
      "          'imagination': 1,\n",
      "          'charm': 1,\n",
      "          'raw': 1,\n",
      "          'sex': 1,\n",
      "          'rather': 1,\n",
      "          'novel': 1,\n",
      "          'approach': 1,\n",
      "          'junior': 1,\n",
      "          'achievement': 1,\n",
      "          'heroine': 1,\n",
      "          'overcome': 1,\n",
      "          'naysayers': 1,\n",
      "          'least': 1,\n",
      "          'temporarily': 1,\n",
      "          'triumphs': 1,\n",
      "          'trashy': 1,\n",
      "          'ni': 1,\n",
      "          'never': 1,\n",
      "          'fond': 1,\n",
      "          'actress': 1,\n",
      "          'shows': 1,\n",
      "          'flair': 1,\n",
      "          'picture': 1,\n",
      "          'incredibly': 1,\n",
      "          'shallow': 1,\n",
      "          'femme': 1,\n",
      "          'fatale': 1,\n",
      "          'resonates': 1,\n",
      "          'starmaking': 1,\n",
      "          'sees': 1,\n",
      "          'consciencedeprived': 1,\n",
      "          'ultimate': 1,\n",
      "          'career': 1,\n",
      "          'driven': 1,\n",
      "          'postfeminist': 1,\n",
      "          'ubertemptress': 1,\n",
      "          'hell': 1,\n",
      "          'nshe': 1,\n",
      "          'abetted': 1,\n",
      "          'wonderfully': 1,\n",
      "          'demented': 1,\n",
      "          'unselfconsciously': 1,\n",
      "          'way': 1,\n",
      "          'nat': 1,\n",
      "          'expounding': 1,\n",
      "          'events': 1,\n",
      "          'future': 1,\n",
      "          'sisterinlaw': 1,\n",
      "          'know': 1,\n",
      "          'knowingly': 1,\n",
      "          'exclaims': 1,\n",
      "          'gorbachev': 1,\n",
      "          'still': 1,\n",
      "          'leader': 1,\n",
      "          'russia': 1,\n",
      "          'whatever': 1,\n",
      "          'ugly': 1,\n",
      "          'purplish': 1,\n",
      "          'thing': 1,\n",
      "          'removed': 1,\n",
      "          'head': 1,\n",
      "          'beams': 1,\n",
      "          'profound': 1,\n",
      "          'politics': 1,\n",
      "          'proudly': 1,\n",
      "          'proclaims': 1,\n",
      "          'qualifies': 1,\n",
      "          'next': 1,\n",
      "          'barbara': 1,\n",
      "          'walters': 1,\n",
      "          'nthis': 1,\n",
      "          'close': 1,\n",
      "          'bashing': 1,\n",
      "          'heaven': 1,\n",
      "          'folks': 1,\n",
      "          'standout': 1,\n",
      "          'performance': 1,\n",
      "          'delivered': 1,\n",
      "          'joaquin': 1,\n",
      "          'burned': 1,\n",
      "          'teenager': 1,\n",
      "          'becomes': 1,\n",
      "          'addicted': 1,\n",
      "          'sexual': 1,\n",
      "          'favors': 1,\n",
      "          'nkidmans': 1,\n",
      "          'vapid': 1,\n",
      "          'though': 1,\n",
      "          'suave': 1,\n",
      "          'beacon': 1,\n",
      "          'success': 1,\n",
      "          'lost': 1,\n",
      "          'friends': 1,\n",
      "          'russell': 1,\n",
      "          'lydia': 1,\n",
      "          'winningly': 1,\n",
      "          'portrayed': 1,\n",
      "          'casey': 1,\n",
      "          'affleck': 1,\n",
      "          'alison': 1,\n",
      "          'folland': 1,\n",
      "          'looks': 1,\n",
      "          'embodiment': 1,\n",
      "          'genx': 1,\n",
      "          'slackerhood': 1,\n",
      "          'envisioned': 1,\n",
      "          'tabloid': 1,\n",
      "          'nhis': 1,\n",
      "          'dead': 1,\n",
      "          'eyes': 1,\n",
      "          'demeanor': 1,\n",
      "          'kid': 1,\n",
      "          'aint': 1,\n",
      "          'going': 1,\n",
      "          'anywhere': 1,\n",
      "          'ever': 1,\n",
      "          'reacts': 1,\n",
      "          'sexy': 1,\n",
      "          'obsessed': 1,\n",
      "          'amazement': 1,\n",
      "          'makes': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'loser': 1,\n",
      "          'willing': 1,\n",
      "          'kill': 1,\n",
      "          'actually': 1,\n",
      "          'noticed': 1,\n",
      "          'ngus': 1,\n",
      "          'drugstore': 1,\n",
      "          'cowboy': 1,\n",
      "          'private': 1,\n",
      "          'idaho': 1,\n",
      "          'direction': 1,\n",
      "          'firstrate': 1,\n",
      "          'pacing': 1,\n",
      "          'notquitethriller': 1,\n",
      "          'snapping': 1,\n",
      "          'along': 1,\n",
      "          'rightly': 1,\n",
      "          'focus': 1,\n",
      "          'amoral': 1,\n",
      "          'doesnt': 1,\n",
      "          'stop': 1,\n",
      "          'proselytize': 1,\n",
      "          'rightness': 1,\n",
      "          'wrongness': 1,\n",
      "          'actions': 1,\n",
      "          'material': 1,\n",
      "          'get': 1,\n",
      "          'without': 1,\n",
      "          'stopping': 1,\n",
      "          'explain': 1,\n",
      "          'allamerican': 1,\n",
      "          'absolutely': 1,\n",
      "          'great': 1,\n",
      "          'includes': 1,\n",
      "          'bleakly': 1,\n",
      "          'lines': 1,\n",
      "          'ive': 1,\n",
      "          'heard': 1,\n",
      "          'nhenrys': 1,\n",
      "          'blast': 1,\n",
      "          'shallowness': 1,\n",
      "          'mindlessness': 1,\n",
      "          'yet': 1,\n",
      "          'sharp': 1,\n",
      "          'message': 1,\n",
      "          'focusing': 1,\n",
      "          'characters': 1,\n",
      "          'nhenry': 1,\n",
      "          'avoid': 1,\n",
      "          'diluting': 1,\n",
      "          'aiming': 1,\n",
      "          'many': 1,\n",
      "          'targets': 1,\n",
      "          'result': 1,\n",
      "          'crisp': 1,\n",
      "          'miniclassic': 1,\n",
      "          'ndanny': 1,\n",
      "          'original': 1,\n",
      "          'another': 1,\n",
      "          'eccentric': 1,\n",
      "          'loopy': 1,\n",
      "          'strongly': 1,\n",
      "          'echoes': 1,\n",
      "          'edward': 1,\n",
      "          'scissorhands': 1,\n",
      "          'neither': 1,\n",
      "          'make': 1,\n",
      "          'background': 1,\n",
      "          'halloween': 1,\n",
      "          'trickortreat': 1,\n",
      "          'parties': 1,\n",
      "          'nallinall': 1,\n",
      "          'production': 1,\n",
      "          'well': 1,\n",
      "          'worth': 1,\n",
      "          'seven': 1,\n",
      "          'bucks': 1,\n",
      "          'columbia': 1,\n",
      "          'pictures': 1,\n",
      "          'release': 1,\n",
      "          'directed': 1,\n",
      "          'gus': 1,\n",
      "          'nwritten': 1,\n",
      "          'danny': 1,\n",
      "          'starring': 1,\n",
      "          'joachin': 1,\n",
      "          'based': 1,\n",
      "          'book': 1,\n",
      "          'joyce': 1,\n",
      "          'maynard': 1,\n",
      "          'nrated': 1,\n",
      "          'language': 1,\n",
      "          'mature': 1,\n",
      "          'respect': 1,\n",
      "          '14s': 1,\n",
      "          'rating': 1,\n",
      "          'stars': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ben': 8,\n",
      "          'nature': 7,\n",
      "          'something': 5,\n",
      "          'sarah': 5,\n",
      "          'make': 4,\n",
      "          'forces': 4,\n",
      "          'like': 3,\n",
      "          'romantic': 3,\n",
      "          'comedy': 3,\n",
      "          'romance': 3,\n",
      "          'part': 3,\n",
      "          'nforces': 3,\n",
      "          'man': 3,\n",
      "          'happy': 3,\n",
      "          'hughes': 3,\n",
      "          'plot': 2,\n",
      "          'taken': 2,\n",
      "          'even': 2,\n",
      "          'nthen': 2,\n",
      "          'film': 2,\n",
      "          'last': 2,\n",
      "          'nben': 2,\n",
      "          'bullock': 2,\n",
      "          'seeing': 2,\n",
      "          'never': 2,\n",
      "          'start': 2,\n",
      "          'character': 2,\n",
      "          'nthe': 2,\n",
      "          'may': 2,\n",
      "          'bitter': 2,\n",
      "          'taste': 2,\n",
      "          'commitment': 2,\n",
      "          'learning': 2,\n",
      "          'script': 2,\n",
      "          'ending': 2,\n",
      "          'scenes': 2,\n",
      "          'cant': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'relish': 1,\n",
      "          'rare': 1,\n",
      "          'opportunities': 1,\n",
      "          'talented': 1,\n",
      "          'screenwriter': 1,\n",
      "          'feel': 1,\n",
      "          'fool': 1,\n",
      "          'ni': 1,\n",
      "          'spent': 1,\n",
      "          'first': 1,\n",
      "          'hour': 1,\n",
      "          'slowly': 1,\n",
      "          'stewing': 1,\n",
      "          'grim': 1,\n",
      "          'attitude': 1,\n",
      "          'towards': 1,\n",
      "          'marriage': 1,\n",
      "          'grousing': 1,\n",
      "          'transparently': 1,\n",
      "          'planes': 1,\n",
      "          'trains': 1,\n",
      "          'automobiles': 1,\n",
      "          'machinations': 1,\n",
      "          'waiting': 1,\n",
      "          'inevitable': 1,\n",
      "          'hollywood': 1,\n",
      "          'denouement': 1,\n",
      "          'nthis': 1,\n",
      "          'mass': 1,\n",
      "          'market': 1,\n",
      "          'genre': 1,\n",
      "          'teenagers': 1,\n",
      "          'best': 1,\n",
      "          'days': 1,\n",
      "          'worked': 1,\n",
      "          'hard': 1,\n",
      "          'perpetuate': 1,\n",
      "          'infatuation': 1,\n",
      "          'paradigm': 1,\n",
      "          'marc': 1,\n",
      "          'lawrence': 1,\n",
      "          'wonderful': 1,\n",
      "          'made': 1,\n",
      "          'entire': 1,\n",
      "          'click': 1,\n",
      "          'place': 1,\n",
      "          'showed': 1,\n",
      "          'comic': 1,\n",
      "          'love': 1,\n",
      "          'story': 1,\n",
      "          'grownups': 1,\n",
      "          'nit': 1,\n",
      "          'certainly': 1,\n",
      "          'didnt': 1,\n",
      "          'look': 1,\n",
      "          'way': 1,\n",
      "          'outset': 1,\n",
      "          'introduces': 1,\n",
      "          'groomtobe': 1,\n",
      "          'holmes': 1,\n",
      "          'affleck': 1,\n",
      "          'bachelor': 1,\n",
      "          'party': 1,\n",
      "          'surrounded': 1,\n",
      "          'friends': 1,\n",
      "          'family': 1,\n",
      "          'whooping': 1,\n",
      "          'night': 1,\n",
      "          'freedom': 1,\n",
      "          'loves': 1,\n",
      "          'fiancee': 1,\n",
      "          'bridget': 1,\n",
      "          'maura': 1,\n",
      "          'tierney': 1,\n",
      "          'doomandgloom': 1,\n",
      "          'pronouncements': 1,\n",
      "          'everyone': 1,\n",
      "          'around': 1,\n",
      "          'questioning': 1,\n",
      "          'meaning': 1,\n",
      "          'till': 1,\n",
      "          'death': 1,\n",
      "          'business': 1,\n",
      "          'illfated': 1,\n",
      "          'flight': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'wedding': 1,\n",
      "          'savannah': 1,\n",
      "          'meets': 1,\n",
      "          'lewis': 1,\n",
      "          'sandra': 1,\n",
      "          'freespirited': 1,\n",
      "          'woman': 1,\n",
      "          'string': 1,\n",
      "          'failed': 1,\n",
      "          'careers': 1,\n",
      "          'relationships': 1,\n",
      "          'behind': 1,\n",
      "          'nas': 1,\n",
      "          'transportation': 1,\n",
      "          'troubles': 1,\n",
      "          'thwart': 1,\n",
      "          'every': 1,\n",
      "          'turn': 1,\n",
      "          'begin': 1,\n",
      "          'threeday': 1,\n",
      "          'southward': 1,\n",
      "          'journey': 1,\n",
      "          'connection': 1,\n",
      "          'grows': 1,\n",
      "          'ever': 1,\n",
      "          'stronger': 1,\n",
      "          'chances': 1,\n",
      "          'hes': 1,\n",
      "          'stability': 1,\n",
      "          'shes': 1,\n",
      "          'gets': 1,\n",
      "          'solid': 1,\n",
      "          'enough': 1,\n",
      "          'setting': 1,\n",
      "          'characters': 1,\n",
      "          'situations': 1,\n",
      "          'plenty': 1,\n",
      "          'witty': 1,\n",
      "          'dialogue': 1,\n",
      "          'ideal': 1,\n",
      "          'role': 1,\n",
      "          'afflecks': 1,\n",
      "          'easygoing': 1,\n",
      "          'charm': 1,\n",
      "          'plays': 1,\n",
      "          'straightlaced': 1,\n",
      "          'straight': 1,\n",
      "          'without': 1,\n",
      "          'forced': 1,\n",
      "          'exasperation': 1,\n",
      "          'nsandra': 1,\n",
      "          'loose': 1,\n",
      "          'appealing': 1,\n",
      "          'halfdozen': 1,\n",
      "          'films': 1,\n",
      "          'combined': 1,\n",
      "          'avoiding': 1,\n",
      "          'recent': 1,\n",
      "          'habit': 1,\n",
      "          'playing': 1,\n",
      "          'semblance': 1,\n",
      "          'depth': 1,\n",
      "          'moping': 1,\n",
      "          'two': 1,\n",
      "          'performances': 1,\n",
      "          'great': 1,\n",
      "          'toptobottom': 1,\n",
      "          'cast': 1,\n",
      "          'effective': 1,\n",
      "          'connected': 1,\n",
      "          'yet': 1,\n",
      "          'scripts': 1,\n",
      "          'apparent': 1,\n",
      "          'sympathy': 1,\n",
      "          'marital': 1,\n",
      "          'horror': 1,\n",
      "          'stories': 1,\n",
      "          'hears': 1,\n",
      "          'makes': 1,\n",
      "          'difficult': 1,\n",
      "          'enjoy': 1,\n",
      "          'completely': 1,\n",
      "          'nlively': 1,\n",
      "          'funny': 1,\n",
      "          'though': 1,\n",
      "          'consistent': 1,\n",
      "          'basis': 1,\n",
      "          'leaves': 1,\n",
      "          'feels': 1,\n",
      "          'selfjustification': 1,\n",
      "          'kicker': 1,\n",
      "          'acidic': 1,\n",
      "          'anecdotes': 1,\n",
      "          'serve': 1,\n",
      "          'exactly': 1,\n",
      "          'opposite': 1,\n",
      "          'purpose': 1,\n",
      "          'leading': 1,\n",
      "          'surprisingly': 1,\n",
      "          'emotional': 1,\n",
      "          'resolution': 1,\n",
      "          'isnt': 1,\n",
      "          'developing': 1,\n",
      "          'fear': 1,\n",
      "          'means': 1,\n",
      "          '_to': 1,\n",
      "          'him_': 1,\n",
      "          'thought': 1,\n",
      "          'nlawrences': 1,\n",
      "          'feints': 1,\n",
      "          'dodges': 1,\n",
      "          'reaching': 1,\n",
      "          'people': 1,\n",
      "          'choices': 1,\n",
      "          'sense': 1,\n",
      "          'nearlier': 1,\n",
      "          'might': 1,\n",
      "          'felt': 1,\n",
      "          'throwaways': 1,\n",
      "          'take': 1,\n",
      "          'resonance': 1,\n",
      "          'sweetens': 1,\n",
      "          'fresh': 1,\n",
      "          'genuine': 1,\n",
      "          'nthough': 1,\n",
      "          'one': 1,\n",
      "          'many': 1,\n",
      "          'contrivances': 1,\n",
      "          'keep': 1,\n",
      "          'together': 1,\n",
      "          'exchange': 1,\n",
      "          'obligatory': 1,\n",
      "          'mutual': 1,\n",
      "          'analysis': 1,\n",
      "          'bickering': 1,\n",
      "          'screen': 1,\n",
      "          'couples': 1,\n",
      "          'wraps': 1,\n",
      "          'perfectly': 1,\n",
      "          'youll': 1,\n",
      "          'end': 1,\n",
      "          'remembering': 1,\n",
      "          'humor': 1,\n",
      "          'simple': 1,\n",
      "          'wisdom': 1,\n",
      "          'nthat': 1,\n",
      "          'provided': 1,\n",
      "          'youre': 1,\n",
      "          'put': 1,\n",
      "          'ridiculously': 1,\n",
      "          'busy': 1,\n",
      "          'direction': 1,\n",
      "          'bronwen': 1,\n",
      "          'nfor': 1,\n",
      "          'brisk': 1,\n",
      "          'comes': 1,\n",
      "          'loaded': 1,\n",
      "          'overdirected': 1,\n",
      "          'year': 1,\n",
      "          'teetering': 1,\n",
      "          'handheld': 1,\n",
      "          'shots': 1,\n",
      "          'whynot': 1,\n",
      "          'low': 1,\n",
      "          'high': 1,\n",
      "          'angles': 1,\n",
      "          'sweeping': 1,\n",
      "          'pans': 1,\n",
      "          'noccasionally': 1,\n",
      "          'hyperreal': 1,\n",
      "          'approach': 1,\n",
      "          'works': 1,\n",
      "          'cinematographer': 1,\n",
      "          'elliot': 1,\n",
      "          'davis': 1,\n",
      "          'creating': 1,\n",
      "          'world': 1,\n",
      "          'fantasy': 1,\n",
      "          'far': 1,\n",
      "          'often': 1,\n",
      "          'refuses': 1,\n",
      "          'let': 1,\n",
      "          'scene': 1,\n",
      "          'covering': 1,\n",
      "          'flourishes': 1,\n",
      "          'thick': 1,\n",
      "          'almost': 1,\n",
      "          'find': 1,\n",
      "          'whats': 1,\n",
      "          'underneath': 1,\n",
      "          'na': 1,\n",
      "          'smart': 1,\n",
      "          'mature': 1,\n",
      "          'deserved': 1,\n",
      "          'restrained': 1,\n",
      "          'director': 1,\n",
      "          'excesses': 1,\n",
      "          'spoil': 1,\n",
      "          'unique': 1,\n",
      "          'concoction': 1,\n",
      "          'restore': 1,\n",
      "          'faith': 1,\n",
      "          'power': 1,\n",
      "          'enchant': 1,\n",
      "          'proved': 1,\n",
      "          'wrong': 1,\n",
      "          'expect': 1,\n",
      "          'tale': 1,\n",
      "          'adolescents': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nuclear': 15,\n",
      "          'film': 14,\n",
      "          'war': 14,\n",
      "          'nthe': 12,\n",
      "          'failsafe': 11,\n",
      "          'n': 8,\n",
      "          'one': 6,\n",
      "          'would': 6,\n",
      "          'communism': 5,\n",
      "          'u': 5,\n",
      "          'bombers': 5,\n",
      "          'groeteschele': 5,\n",
      "          'even': 4,\n",
      "          'cold': 4,\n",
      "          'world': 4,\n",
      "          'takes': 4,\n",
      "          'soviet': 4,\n",
      "          'moscow': 4,\n",
      "          'president': 4,\n",
      "          'films': 4,\n",
      "          'weapons': 4,\n",
      "          'groetescheles': 4,\n",
      "          'central': 4,\n",
      "          'drama': 3,\n",
      "          'powerful': 3,\n",
      "          'walter': 3,\n",
      "          'novel': 3,\n",
      "          'nin': 3,\n",
      "          'lumets': 3,\n",
      "          'united': 3,\n",
      "          'states': 3,\n",
      "          'na': 3,\n",
      "          'plot': 3,\n",
      "          'key': 3,\n",
      "          'use': 3,\n",
      "          'character': 3,\n",
      "          'million': 3,\n",
      "          'ngroeteschele': 3,\n",
      "          'destroy': 3,\n",
      "          'arms': 3,\n",
      "          'race': 3,\n",
      "          'often': 3,\n",
      "          'people': 3,\n",
      "          'leader': 3,\n",
      "          'possible': 3,\n",
      "          '1964': 2,\n",
      "          'yet': 2,\n",
      "          'proceed': 2,\n",
      "          'intelligent': 2,\n",
      "          'based': 2,\n",
      "          'eugene': 2,\n",
      "          'burdick': 2,\n",
      "          'harvey': 2,\n",
      "          'wheeler': 2,\n",
      "          'sidney': 2,\n",
      "          'doesnt': 2,\n",
      "          'side': 2,\n",
      "          'perhaps': 2,\n",
      "          'real': 2,\n",
      "          'costs': 2,\n",
      "          'theme': 2,\n",
      "          'released': 2,\n",
      "          'issue': 2,\n",
      "          'course': 2,\n",
      "          'unidentified': 2,\n",
      "          'aircraft': 2,\n",
      "          'america': 2,\n",
      "          'mechanical': 2,\n",
      "          'orders': 2,\n",
      "          'destroying': 2,\n",
      "          'attempt': 2,\n",
      "          'russias': 2,\n",
      "          'story': 2,\n",
      "          'quickly': 2,\n",
      "          'fonda': 2,\n",
      "          'may': 2,\n",
      "          'simply': 2,\n",
      "          'machines': 2,\n",
      "          'make': 2,\n",
      "          'situation': 2,\n",
      "          'events': 2,\n",
      "          'difference': 2,\n",
      "          'several': 2,\n",
      "          'times': 2,\n",
      "          'slow': 2,\n",
      "          'general': 2,\n",
      "          'black': 2,\n",
      "          'clearly': 2,\n",
      "          'becomes': 2,\n",
      "          'mass': 2,\n",
      "          'nis': 2,\n",
      "          'logical': 2,\n",
      "          'providing': 2,\n",
      "          'warns': 2,\n",
      "          'also': 2,\n",
      "          'makes': 2,\n",
      "          'much': 2,\n",
      "          'thought': 2,\n",
      "          'far': 2,\n",
      "          'nhe': 2,\n",
      "          'say': 2,\n",
      "          'soviets': 2,\n",
      "          'must': 2,\n",
      "          'seems': 2,\n",
      "          'human': 2,\n",
      "          'consequences': 2,\n",
      "          'hagman': 2,\n",
      "          'sensible': 2,\n",
      "          'something': 2,\n",
      "          'ending': 2,\n",
      "          'hollywood': 2,\n",
      "          'arming': 2,\n",
      "          'dangerous': 2,\n",
      "          'warning': 1,\n",
      "          'review': 1,\n",
      "          'contains': 1,\n",
      "          'spoilers': 1,\n",
      "          'nif': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'caution': 1,\n",
      "          'nnutshell': 1,\n",
      "          'relevant': 1,\n",
      "          'suspenseful': 1,\n",
      "          'nstill': 1,\n",
      "          'today': 1,\n",
      "          'end': 1,\n",
      "          'usa': 1,\n",
      "          '111': 1,\n",
      "          'minutes': 1,\n",
      "          'nscreenplay': 1,\n",
      "          'bernstein': 1,\n",
      "          'produced': 1,\n",
      "          'max': 1,\n",
      "          'e': 1,\n",
      "          'youngstein': 1,\n",
      "          'directed': 1,\n",
      "          'lumet': 1,\n",
      "          'nreview': 1,\n",
      "          'jamahl': 1,\n",
      "          'epsicokhan': 1,\n",
      "          'ironic': 1,\n",
      "          'aspect': 1,\n",
      "          'winning': 1,\n",
      "          'losing': 1,\n",
      "          'confrontation': 1,\n",
      "          'everybody': 1,\n",
      "          'loses': 1,\n",
      "          'aftereffects': 1,\n",
      "          'devastating': 1,\n",
      "          'effects': 1,\n",
      "          'impact': 1,\n",
      "          'entire': 1,\n",
      "          'worldassuming': 1,\n",
      "          'survives': 1,\n",
      "          'ideaand': 1,\n",
      "          'optionis': 1,\n",
      "          'avoid': 1,\n",
      "          'nthis': 1,\n",
      "          'fictional': 1,\n",
      "          'place': 1,\n",
      "          'heart': 1,\n",
      "          'actual': 1,\n",
      "          'two': 1,\n",
      "          'years': 1,\n",
      "          'cuban': 1,\n",
      "          'missile': 1,\n",
      "          'crisis': 1,\n",
      "          'union': 1,\n",
      "          'static': 1,\n",
      "          'discord': 1,\n",
      "          'summarized': 1,\n",
      "          'single': 1,\n",
      "          'word': 1,\n",
      "          'premise': 1,\n",
      "          'centers': 1,\n",
      "          'around': 1,\n",
      "          'combination': 1,\n",
      "          'accidents': 1,\n",
      "          'operation': 1,\n",
      "          'flaws': 1,\n",
      "          'nfive': 1,\n",
      "          'carrying': 1,\n",
      "          'warheads': 1,\n",
      "          'ordered': 1,\n",
      "          'set': 1,\n",
      "          'routine': 1,\n",
      "          'spotted': 1,\n",
      "          'heading': 1,\n",
      "          'toward': 1,\n",
      "          'turns': 1,\n",
      "          'commercial': 1,\n",
      "          'airliner': 1,\n",
      "          'failure': 1,\n",
      "          'strikes': 1,\n",
      "          'military': 1,\n",
      "          'base': 1,\n",
      "          'commands': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'contact': 1,\n",
      "          'standing': 1,\n",
      "          'remain': 1,\n",
      "          'receiving': 1,\n",
      "          'new': 1,\n",
      "          'directives': 1,\n",
      "          'bomber': 1,\n",
      "          'pilots': 1,\n",
      "          'recalled': 1,\n",
      "          'intention': 1,\n",
      "          'strike': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'follows': 1,\n",
      "          'various': 1,\n",
      "          'characters': 1,\n",
      "          'devise': 1,\n",
      "          'ways': 1,\n",
      "          'stopping': 1,\n",
      "          'reaching': 1,\n",
      "          'bordersat': 1,\n",
      "          'cost': 1,\n",
      "          'compelling': 1,\n",
      "          'creates': 1,\n",
      "          'urgency': 1,\n",
      "          'dread': 1,\n",
      "          'painting': 1,\n",
      "          'grimmest': 1,\n",
      "          'worst': 1,\n",
      "          'case': 1,\n",
      "          'scenarios': 1,\n",
      "          'reality': 1,\n",
      "          'sets': 1,\n",
      "          'turn': 1,\n",
      "          'another': 1,\n",
      "          'fails': 1,\n",
      "          'ngeneral': 1,\n",
      "          'bogan': 1,\n",
      "          'frank': 1,\n",
      "          'overton': 1,\n",
      "          'taking': 1,\n",
      "          'directly': 1,\n",
      "          'henry': 1,\n",
      "          'powerlessthe': 1,\n",
      "          'fate': 1,\n",
      "          'lies': 1,\n",
      "          'hands': 1,\n",
      "          'automated': 1,\n",
      "          'preprogrammed': 1,\n",
      "          'system': 1,\n",
      "          'stoppable': 1,\n",
      "          'creators': 1,\n",
      "          'efficient': 1,\n",
      "          'task': 1,\n",
      "          'nowin': 1,\n",
      "          'winnable': 1,\n",
      "          'fascinating': 1,\n",
      "          'theyre': 1,\n",
      "          'anything': 1,\n",
      "          'predictable': 1,\n",
      "          'reason': 1,\n",
      "          'works': 1,\n",
      "          'understands': 1,\n",
      "          'exists': 1,\n",
      "          'within': 1,\n",
      "          'confines': 1,\n",
      "          'ingredient': 1,\n",
      "          'ability': 1,\n",
      "          'create': 1,\n",
      "          'ongoing': 1,\n",
      "          'polemic': 1,\n",
      "          'role': 1,\n",
      "          'nmost': 1,\n",
      "          'matthau': 1,\n",
      "          'arrogant': 1,\n",
      "          'civilian': 1,\n",
      "          'theorist': 1,\n",
      "          'incidentally': 1,\n",
      "          'presidents': 1,\n",
      "          'advising': 1,\n",
      "          'staff': 1,\n",
      "          'analyzing': 1,\n",
      "          'statistical': 1,\n",
      "          'plausibility': 1,\n",
      "          'waging': 1,\n",
      "          'nmany': 1,\n",
      "          'pointed': 1,\n",
      "          'messages': 1,\n",
      "          'arise': 1,\n",
      "          'discussions': 1,\n",
      "          'voices': 1,\n",
      "          'nearly': 1,\n",
      "          'hosts': 1,\n",
      "          'dinner': 1,\n",
      "          'party': 1,\n",
      "          'explains': 1,\n",
      "          'importance': 1,\n",
      "          'strategy': 1,\n",
      "          'assault': 1,\n",
      "          'minimize': 1,\n",
      "          'casualties': 1,\n",
      "          'whats': 1,\n",
      "          '60': 1,\n",
      "          '100': 1,\n",
      "          'dead': 1,\n",
      "          'guest': 1,\n",
      "          'asks': 1,\n",
      "          'impatiently': 1,\n",
      "          'forty': 1,\n",
      "          'responds': 1,\n",
      "          'wryly': 1,\n",
      "          'problem': 1,\n",
      "          'mindset': 1,\n",
      "          'believes': 1,\n",
      "          'combat': 1,\n",
      "          'viable': 1,\n",
      "          'method': 1,\n",
      "          'armageddon': 1,\n",
      "          'conventional': 1,\n",
      "          'warfare': 1,\n",
      "          'raw': 1,\n",
      "          'data': 1,\n",
      "          'casualty': 1,\n",
      "          'totals': 1,\n",
      "          'realizes': 1,\n",
      "          'nyet': 1,\n",
      "          'answer': 1,\n",
      "          'try': 1,\n",
      "          'cool': 1,\n",
      "          'dan': 1,\n",
      "          'oherlihy': 1,\n",
      "          'recommended': 1,\n",
      "          'non': 1,\n",
      "          'contraryaccording': 1,\n",
      "          'lead': 1,\n",
      "          'russia': 1,\n",
      "          'put': 1,\n",
      "          'disadvantage': 1,\n",
      "          'nsuch': 1,\n",
      "          'stance': 1,\n",
      "          'paradox': 1,\n",
      "          'misguided': 1,\n",
      "          'practice': 1,\n",
      "          'sees': 1,\n",
      "          'issues': 1,\n",
      "          'likewise': 1,\n",
      "          'nwhy': 1,\n",
      "          'continue': 1,\n",
      "          'build': 1,\n",
      "          'destruction': 1,\n",
      "          'already': 1,\n",
      "          'possessing': 1,\n",
      "          'enough': 1,\n",
      "          'wise': 1,\n",
      "          'nno': 1,\n",
      "          'really': 1,\n",
      "          'nalthough': 1,\n",
      "          'political': 1,\n",
      "          'ramifications': 1,\n",
      "          'scene': 1,\n",
      "          'deals': 1,\n",
      "          'intentionally': 1,\n",
      "          'superficial': 1,\n",
      "          'onesided': 1,\n",
      "          'sort': 1,\n",
      "          'way': 1,\n",
      "          'nagain': 1,\n",
      "          'achieved': 1,\n",
      "          'easily': 1,\n",
      "          'important': 1,\n",
      "          'terms': 1,\n",
      "          'largertheme': 1,\n",
      "          'significance': 1,\n",
      "          'addition': 1,\n",
      "          'pronuclear': 1,\n",
      "          'voice': 1,\n",
      "          'remarks': 1,\n",
      "          'communists': 1,\n",
      "          'show': 1,\n",
      "          'fear': 1,\n",
      "          'resentment': 1,\n",
      "          'period': 1,\n",
      "          'prone': 1,\n",
      "          'came': 1,\n",
      "          'context': 1,\n",
      "          'uses': 1,\n",
      "          'suggests': 1,\n",
      "          'hatred': 1,\n",
      "          'glib': 1,\n",
      "          'none': 1,\n",
      "          'trains': 1,\n",
      "          'ventures': 1,\n",
      "          'fantasy': 1,\n",
      "          'theoretical': 1,\n",
      "          'prediction': 1,\n",
      "          'merely': 1,\n",
      "          'absurd': 1,\n",
      "          'labels': 1,\n",
      "          'average': 1,\n",
      "          'marxist': 1,\n",
      "          'unfeeling': 1,\n",
      "          'calculating': 1,\n",
      "          'machine': 1,\n",
      "          'whatever': 1,\n",
      "          'preserve': 1,\n",
      "          'drops': 1,\n",
      "          'warhead': 1,\n",
      "          'instantly': 1,\n",
      "          'surrender': 1,\n",
      "          'retaliate': 1,\n",
      "          'invite': 1,\n",
      "          'countermeasures': 1,\n",
      "          'home': 1,\n",
      "          'soilwhich': 1,\n",
      "          'preserved': 1,\n",
      "          'forget': 1,\n",
      "          'beings': 1,\n",
      "          'emotions': 1,\n",
      "          'reminds': 1,\n",
      "          'attack': 1,\n",
      "          'revengeas': 1,\n",
      "          'normal': 1,\n",
      "          'person': 1,\n",
      "          'irony': 1,\n",
      "          'theorizing': 1,\n",
      "          'quick': 1,\n",
      "          'judge': 1,\n",
      "          'enemy': 1,\n",
      "          'realize': 1,\n",
      "          'seemingly': 1,\n",
      "          'programmed': 1,\n",
      "          'patterns': 1,\n",
      "          'nonce': 1,\n",
      "          'evident': 1,\n",
      "          'turning': 1,\n",
      "          'impossible': 1,\n",
      "          'question': 1,\n",
      "          'njust': 1,\n",
      "          'unions': 1,\n",
      "          'react': 1,\n",
      "          'convey': 1,\n",
      "          'best': 1,\n",
      "          'intentions': 1,\n",
      "          'pass': 1,\n",
      "          'deaths': 1,\n",
      "          'millions': 1,\n",
      "          'mishap': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'translator': 1,\n",
      "          'buck': 1,\n",
      "          'larry': 1,\n",
      "          'negotiates': 1,\n",
      "          'length': 1,\n",
      "          'scenes': 1,\n",
      "          'prove': 1,\n",
      "          'amazingly': 1,\n",
      "          'taut': 1,\n",
      "          'simplicity': 1,\n",
      "          'long': 1,\n",
      "          'frame': 1,\n",
      "          'exchanging': 1,\n",
      "          'dialog': 1,\n",
      "          'nwithout': 1,\n",
      "          'getting': 1,\n",
      "          'detail': 1,\n",
      "          'compromise': 1,\n",
      "          'ultimately': 1,\n",
      "          'reach': 1,\n",
      "          'costly': 1,\n",
      "          'necessary': 1,\n",
      "          'circumstances': 1,\n",
      "          'incident': 1,\n",
      "          'probably': 1,\n",
      "          'nit': 1,\n",
      "          'accomplish': 1,\n",
      "          'avoids': 1,\n",
      "          'allout': 1,\n",
      "          'isnt': 1,\n",
      "          'alltooreal': 1,\n",
      "          'ndramatically': 1,\n",
      "          'quite': 1,\n",
      "          'oherlihys': 1,\n",
      "          'symbolic': 1,\n",
      "          'matador': 1,\n",
      "          'bookend': 1,\n",
      "          'tying': 1,\n",
      "          'dream': 1,\n",
      "          'sequence': 1,\n",
      "          'opening': 1,\n",
      "          'particularly': 1,\n",
      "          'appropriate': 1,\n",
      "          'production': 1,\n",
      "          'major': 1,\n",
      "          'studio': 1,\n",
      "          'columbia': 1,\n",
      "          'pictures': 1,\n",
      "          'structure': 1,\n",
      "          'hightension': 1,\n",
      "          'suspense': 1,\n",
      "          'thriller': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'direction': 1,\n",
      "          'bernsteins': 1,\n",
      "          'adaptation': 1,\n",
      "          'burdicks': 1,\n",
      "          'wheelers': 1,\n",
      "          'continues': 1,\n",
      "          'lasting': 1,\n",
      "          'effect': 1,\n",
      "          'screen': 1,\n",
      "          'unfolded': 1,\n",
      "          'automation': 1,\n",
      "          'holocaust': 1,\n",
      "          'unintentional': 1,\n",
      "          'consequence': 1,\n",
      "          'nbut': 1,\n",
      "          'conscious': 1,\n",
      "          'choice': 1,\n",
      "          'initialize': 1,\n",
      "          'automatic': 1,\n",
      "          'finds': 1,\n",
      "          'retrospect': 1,\n",
      "          'puzzling': 1,\n",
      "          'exercises': 1,\n",
      "          'futility': 1,\n",
      "          'century': 1,\n",
      "          'nits': 1,\n",
      "          'fortunate': 1,\n",
      "          'sides': 1,\n",
      "          'finally': 1,\n",
      "          'able': 1,\n",
      "          'come': 1,\n",
      "          'senses': 1,\n",
      "          'rather': 1,\n",
      "          'continuing': 1,\n",
      "          'approach': 1,\n",
      "          'speeding': 1,\n",
      "          'causing': 1,\n",
      "          'meltdown': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'like': 14,\n",
      "          'musical': 13,\n",
      "          'eva': 13,\n",
      "          'film': 7,\n",
      "          'musicals': 6,\n",
      "          'good': 6,\n",
      "          'evita': 5,\n",
      "          'juan': 5,\n",
      "          'show': 5,\n",
      "          'death': 5,\n",
      "          'even': 5,\n",
      "          'singing': 5,\n",
      "          'way': 4,\n",
      "          'jesus': 4,\n",
      "          'rise': 4,\n",
      "          'back': 4,\n",
      "          'woman': 4,\n",
      "          'although': 4,\n",
      "          'still': 4,\n",
      "          'never': 4,\n",
      "          'pretty': 4,\n",
      "          'really': 4,\n",
      "          'though': 4,\n",
      "          'rice': 3,\n",
      "          'well': 3,\n",
      "          'superstar': 3,\n",
      "          'fame': 3,\n",
      "          'perspective': 3,\n",
      "          'dead': 3,\n",
      "          'comes': 3,\n",
      "          'n': 3,\n",
      "          'top': 3,\n",
      "          'much': 3,\n",
      "          'nation': 3,\n",
      "          'many': 3,\n",
      "          'sad': 3,\n",
      "          'also': 3,\n",
      "          'beginning': 3,\n",
      "          'nbut': 3,\n",
      "          'sequence': 3,\n",
      "          'see': 3,\n",
      "          'parker': 3,\n",
      "          'could': 3,\n",
      "          'performance': 3,\n",
      "          'role': 3,\n",
      "          'webbers': 2,\n",
      "          'work': 2,\n",
      "          'present': 2,\n",
      "          'totally': 2,\n",
      "          'unlike': 2,\n",
      "          'time': 2,\n",
      "          'nwebber': 2,\n",
      "          'shows': 2,\n",
      "          'nthey': 2,\n",
      "          'instead': 2,\n",
      "          'together': 2,\n",
      "          'lyrics': 2,\n",
      "          'nlike': 2,\n",
      "          'christ': 2,\n",
      "          'fall': 2,\n",
      "          'days': 2,\n",
      "          'tune': 2,\n",
      "          'per': 2,\n",
      "          'slept': 2,\n",
      "          'madonna': 2,\n",
      "          'think': 2,\n",
      "          'things': 2,\n",
      "          'jonathan': 2,\n",
      "          'pryce': 2,\n",
      "          'mourning': 2,\n",
      "          'di': 2,\n",
      "          'two': 2,\n",
      "          'bit': 2,\n",
      "          'wasnt': 2,\n",
      "          'bizarre': 2,\n",
      "          'point': 2,\n",
      "          'expose': 2,\n",
      "          'despite': 2,\n",
      "          'almost': 2,\n",
      "          'nthe': 2,\n",
      "          'old': 2,\n",
      "          'one': 2,\n",
      "          'energy': 2,\n",
      "          'line': 2,\n",
      "          'letdown': 2,\n",
      "          'bad': 2,\n",
      "          'lifeless': 2,\n",
      "          'singer': 2,\n",
      "          'buenos': 2,\n",
      "          'aires': 2,\n",
      "          'screwed': 2,\n",
      "          'another': 2,\n",
      "          'character': 2,\n",
      "          'soft': 2,\n",
      "          'seeming': 2,\n",
      "          'banderas': 2,\n",
      "          'looks': 2,\n",
      "          'cant': 2,\n",
      "          'song': 2,\n",
      "          'goodbye': 2,\n",
      "          'thank': 2,\n",
      "          'help': 2,\n",
      "          'nfrom': 2,\n",
      "          'original': 2,\n",
      "          'nwe': 2,\n",
      "          'come': 2,\n",
      "          'cancer': 2,\n",
      "          'scenes': 2,\n",
      "          'scene': 2,\n",
      "          'us': 2,\n",
      "          'trying': 2,\n",
      "          'government': 2,\n",
      "          'people': 2,\n",
      "          'narrator': 2,\n",
      "          'ch': 2,\n",
      "          'great': 2,\n",
      "          'hes': 2,\n",
      "          'brilliant': 2,\n",
      "          'cry': 2,\n",
      "          'feel': 2,\n",
      "          'nhis': 2,\n",
      "          'nand': 2,\n",
      "          'poignant': 2,\n",
      "          'shes': 2,\n",
      "          'gets': 2,\n",
      "          'presence': 2,\n",
      "          'patti': 2,\n",
      "          'nher': 2,\n",
      "          'range': 2,\n",
      "          'sounds': 2,\n",
      "          'comanding': 2,\n",
      "          'brief': 2,\n",
      "          'rocky': 2,\n",
      "          'andrew': 1,\n",
      "          'lloyd': 1,\n",
      "          'preferably': 1,\n",
      "          'early': 1,\n",
      "          'lyricist': 1,\n",
      "          'tim': 1,\n",
      "          'subscribe': 1,\n",
      "          'gaity': 1,\n",
      "          'oklahoma': 1,\n",
      "          'slapstickness': 1,\n",
      "          'funny': 1,\n",
      "          'thing': 1,\n",
      "          'happened': 1,\n",
      "          'forum': 1,\n",
      "          'tackle': 1,\n",
      "          'hot': 1,\n",
      "          'issues': 1,\n",
      "          'past': 1,\n",
      "          'view': 1,\n",
      "          'differently': 1,\n",
      "          'pack': 1,\n",
      "          'redundant': 1,\n",
      "          'catchy': 1,\n",
      "          'music': 1,\n",
      "          'thoughtful': 1,\n",
      "          'examined': 1,\n",
      "          'last': 1,\n",
      "          'cool': 1,\n",
      "          'judas': 1,\n",
      "          'ask': 1,\n",
      "          'didnt': 1,\n",
      "          'spread': 1,\n",
      "          'message': 1,\n",
      "          'wider': 1,\n",
      "          'takes': 1,\n",
      "          'inventive': 1,\n",
      "          'stance': 1,\n",
      "          'topic': 1,\n",
      "          'famed': 1,\n",
      "          'wife': 1,\n",
      "          'argentinian': 1,\n",
      "          'dictator': 1,\n",
      "          'became': 1,\n",
      "          'famous': 1,\n",
      "          'chiefly': 1,\n",
      "          'got': 1,\n",
      "          'attention': 1,\n",
      "          'playing': 1,\n",
      "          'talent': 1,\n",
      "          'among': 1,\n",
      "          'deals': 1,\n",
      "          'captured': 1,\n",
      "          'heart': 1,\n",
      "          'marrying': 1,\n",
      "          'died': 1,\n",
      "          'young': 1,\n",
      "          'age': 1,\n",
      "          '33': 1,\n",
      "          'creating': 1,\n",
      "          'international': 1,\n",
      "          'stir': 1,\n",
      "          'princess': 1,\n",
      "          'share': 1,\n",
      "          'common': 1,\n",
      "          'sure': 1,\n",
      "          'chose': 1,\n",
      "          'topics': 1,\n",
      "          'always': 1,\n",
      "          'nhere': 1,\n",
      "          'wish': 1,\n",
      "          'drawbacks': 1,\n",
      "          'lying': 1,\n",
      "          'covering': 1,\n",
      "          'fascist': 1,\n",
      "          'husband': 1,\n",
      "          'fairly': 1,\n",
      "          'intentions': 1,\n",
      "          'nits': 1,\n",
      "          'words': 1,\n",
      "          'unsung': 1,\n",
      "          'plays': 1,\n",
      "          'rock': 1,\n",
      "          'opera': 1,\n",
      "          'giant': 1,\n",
      "          'sequences': 1,\n",
      "          'possess': 1,\n",
      "          'intelligent': 1,\n",
      "          'create': 1,\n",
      "          'intellectually': 1,\n",
      "          'enlightening': 1,\n",
      "          'experience': 1,\n",
      "          'entertaining': 1,\n",
      "          'nafter': 1,\n",
      "          'undermine': 1,\n",
      "          'balance': 1,\n",
      "          'intellectual': 1,\n",
      "          'depth': 1,\n",
      "          'walking': 1,\n",
      "          'fine': 1,\n",
      "          'stumbling': 1,\n",
      "          'either': 1,\n",
      "          'side': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'nokay': 1,\n",
      "          'nim': 1,\n",
      "          'saying': 1,\n",
      "          'opening': 1,\n",
      "          'moments': 1,\n",
      "          'theyre': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'unentertaining': 1,\n",
      "          'unrewarding': 1,\n",
      "          'cons': 1,\n",
      "          'jimmy': 1,\n",
      "          'nail': 1,\n",
      "          'taking': 1,\n",
      "          'onenight': 1,\n",
      "          'stand': 1,\n",
      "          'nin': 1,\n",
      "          'fun': 1,\n",
      "          'energetic': 1,\n",
      "          'culiminating': 1,\n",
      "          'stopper': 1,\n",
      "          'nthen': 1,\n",
      "          'punch': 1,\n",
      "          'pulled': 1,\n",
      "          'leaving': 1,\n",
      "          'ends': 1,\n",
      "          'suitcase': 1,\n",
      "          'hall': 1,\n",
      "          'meant': 1,\n",
      "          'later': 1,\n",
      "          'portrayal': 1,\n",
      "          'oliver': 1,\n",
      "          'stone': 1,\n",
      "          'adapted': 1,\n",
      "          'screen': 1,\n",
      "          'afraid': 1,\n",
      "          'narrated': 1,\n",
      "          'hater': 1,\n",
      "          'evas': 1,\n",
      "          'omnipotent': 1,\n",
      "          'antonio': 1,\n",
      "          'presents': 1,\n",
      "          'negative': 1,\n",
      "          'light': 1,\n",
      "          'nfor': 1,\n",
      "          'alan': 1,\n",
      "          'pull': 1,\n",
      "          'nhowever': 1,\n",
      "          'pulls': 1,\n",
      "          'flash': 1,\n",
      "          'giddily': 1,\n",
      "          'nihilistic': 1,\n",
      "          'go': 1,\n",
      "          'long': 1,\n",
      "          'lovers': 1,\n",
      "          'ascend': 1,\n",
      "          'magnificent': 1,\n",
      "          'darkly': 1,\n",
      "          'comical': 1,\n",
      "          'gleeful': 1,\n",
      "          'hypnotic': 1,\n",
      "          'satisfying': 1,\n",
      "          'satirical': 1,\n",
      "          'nno': 1,\n",
      "          'punches': 1,\n",
      "          'thrown': 1,\n",
      "          'basic': 1,\n",
      "          'outline': 1,\n",
      "          'tact': 1,\n",
      "          'woo': 1,\n",
      "          'marry': 1,\n",
      "          'get': 1,\n",
      "          'jail': 1,\n",
      "          'stardom': 1,\n",
      "          'falter': 1,\n",
      "          'gradually': 1,\n",
      "          'die': 1,\n",
      "          'nmore': 1,\n",
      "          'importantly': 1,\n",
      "          'themes': 1,\n",
      "          'carry': 1,\n",
      "          'fillinginthegaps': 1,\n",
      "          'reconnassaince': 1,\n",
      "          'njuan': 1,\n",
      "          'underwritten': 1,\n",
      "          'given': 1,\n",
      "          'extra': 1,\n",
      "          'exposed': 1,\n",
      "          'accessory': 1,\n",
      "          'na': 1,\n",
      "          'muted': 1,\n",
      "          'tries': 1,\n",
      "          'visit': 1,\n",
      "          'respective': 1,\n",
      "          'room': 1,\n",
      "          'shunned': 1,\n",
      "          'allows': 1,\n",
      "          'learn': 1,\n",
      "          'understand': 1,\n",
      "          'sadness': 1,\n",
      "          'number': 1,\n",
      "          'cover': 1,\n",
      "          'horrible': 1,\n",
      "          'cheap': 1,\n",
      "          'petty': 1,\n",
      "          'wooed': 1,\n",
      "          'saved': 1,\n",
      "          'left': 1,\n",
      "          'nations': 1,\n",
      "          'downtrodden': 1,\n",
      "          'loved': 1,\n",
      "          'slipped': 1,\n",
      "          'world': 1,\n",
      "          'mourned': 1,\n",
      "          'star': 1,\n",
      "          'nthats': 1,\n",
      "          'ndescribing': 1,\n",
      "          'difficult': 1,\n",
      "          'mainly': 1,\n",
      "          'real': 1,\n",
      "          'realistic': 1,\n",
      "          'background': 1,\n",
      "          'said': 1,\n",
      "          'based': 1,\n",
      "          'revolutionary': 1,\n",
      "          'guevera': 1,\n",
      "          'probably': 1,\n",
      "          'met': 1,\n",
      "          'serves': 1,\n",
      "          'feeling': 1,\n",
      "          'dies': 1,\n",
      "          'pathetic': 1,\n",
      "          'nalan': 1,\n",
      "          'stranger': 1,\n",
      "          'done': 1,\n",
      "          'committments': 1,\n",
      "          'bugsy': 1,\n",
      "          'malone': 1,\n",
      "          'pink': 1,\n",
      "          'floyd': 1,\n",
      "          'wall': 1,\n",
      "          'latter': 1,\n",
      "          'absolutely': 1,\n",
      "          'nails': 1,\n",
      "          'exposing': 1,\n",
      "          'everything': 1,\n",
      "          'end': 1,\n",
      "          'presented': 1,\n",
      "          'direction': 1,\n",
      "          'manipulative': 1,\n",
      "          'reason': 1,\n",
      "          'throughout': 1,\n",
      "          'lots': 1,\n",
      "          'bright': 1,\n",
      "          'colors': 1,\n",
      "          'cinematically': 1,\n",
      "          'entertaning': 1,\n",
      "          'enriching': 1,\n",
      "          'deep': 1,\n",
      "          'balcony': 1,\n",
      "          'sings': 1,\n",
      "          'dont': 1,\n",
      "          'argentina': 1,\n",
      "          'becuase': 1,\n",
      "          'nmadonnas': 1,\n",
      "          'golden': 1,\n",
      "          'globe': 1,\n",
      "          'winning': 1,\n",
      "          'movie': 1,\n",
      "          'starts': 1,\n",
      "          'kinda': 1,\n",
      "          'downhill': 1,\n",
      "          'goes': 1,\n",
      "          'quickly': 1,\n",
      "          'remaning': 1,\n",
      "          'rest': 1,\n",
      "          'nat': 1,\n",
      "          'busy': 1,\n",
      "          'concentrating': 1,\n",
      "          'act': 1,\n",
      "          'eventually': 1,\n",
      "          'right': 1,\n",
      "          'getting': 1,\n",
      "          'say': 1,\n",
      "          'lupone': 1,\n",
      "          'american': 1,\n",
      "          'premiere': 1,\n",
      "          'late': 1,\n",
      "          '70s': 1,\n",
      "          'better': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'took': 1,\n",
      "          'lessons': 1,\n",
      "          'improve': 1,\n",
      "          'hard': 1,\n",
      "          'nshe': 1,\n",
      "          'several': 1,\n",
      "          'places': 1,\n",
      "          'nlupone': 1,\n",
      "          'heard': 1,\n",
      "          'sing': 1,\n",
      "          'cd': 1,\n",
      "          'stage': 1,\n",
      "          'without': 1,\n",
      "          'seeing': 1,\n",
      "          'generally': 1,\n",
      "          'brilliance': 1,\n",
      "          'requires': 1,\n",
      "          'nantonio': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'im': 1,\n",
      "          'thinks': 1,\n",
      "          'rocks': 1,\n",
      "          'extremely': 1,\n",
      "          'presenting': 1,\n",
      "          'lovable': 1,\n",
      "          'nothing': 1,\n",
      "          'compared': 1,\n",
      "          'mandy': 1,\n",
      "          'patinkin': 1,\n",
      "          'nhe': 1,\n",
      "          'voice': 1,\n",
      "          'awesome': 1,\n",
      "          'times': 1,\n",
      "          'put': 1,\n",
      "          'poker': 1,\n",
      "          'face': 1,\n",
      "          'melancholy': 1,\n",
      "          'facade': 1,\n",
      "          'nalthough': 1,\n",
      "          'start': 1,\n",
      "          'polite': 1,\n",
      "          'soon': 1,\n",
      "          'picks': 1,\n",
      "          'becomes': 1,\n",
      "          'wonderully': 1,\n",
      "          'released': 1,\n",
      "          '96': 1,\n",
      "          'woody': 1,\n",
      "          'allens': 1,\n",
      "          'everyone': 1,\n",
      "          'says': 1,\n",
      "          'love': 1,\n",
      "          'reminder': 1,\n",
      "          'hollywood': 1,\n",
      "          'may': 1,\n",
      "          'every': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'quilt': 11,\n",
      "          'american': 8,\n",
      "          'make': 6,\n",
      "          'nthe': 6,\n",
      "          'nthere': 4,\n",
      "          'story': 3,\n",
      "          'gladys': 3,\n",
      "          'hy': 3,\n",
      "          'husband': 3,\n",
      "          'whether': 3,\n",
      "          'really': 3,\n",
      "          'many': 3,\n",
      "          'love': 3,\n",
      "          'theres': 2,\n",
      "          'stories': 2,\n",
      "          'tales': 2,\n",
      "          'seven': 2,\n",
      "          'passion': 2,\n",
      "          'woman': 2,\n",
      "          'ann': 2,\n",
      "          'bancroft': 2,\n",
      "          'ellen': 2,\n",
      "          'burstyn': 2,\n",
      "          'sophia': 2,\n",
      "          'emma': 2,\n",
      "          'constance': 2,\n",
      "          'kate': 2,\n",
      "          'affair': 2,\n",
      "          'maya': 2,\n",
      "          'angelou': 2,\n",
      "          'annas': 2,\n",
      "          'winona': 2,\n",
      "          'ryder': 2,\n",
      "          'watching': 2,\n",
      "          'fine': 2,\n",
      "          'performances': 2,\n",
      "          'cast': 2,\n",
      "          'like': 2,\n",
      "          'film': 2,\n",
      "          'enough': 2,\n",
      "          'reasons': 2,\n",
      "          'emotional': 2,\n",
      "          'feel': 2,\n",
      "          'viewer': 2,\n",
      "          'relationships': 2,\n",
      "          'patches': 2,\n",
      "          'fabric': 1,\n",
      "          'threadeach': 1,\n",
      "          'patchwork': 1,\n",
      "          'design': 1,\n",
      "          'unique': 1,\n",
      "          'tell': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'hollywood': 1,\n",
      "          'release': 1,\n",
      "          'australian': 1,\n",
      "          'director': 1,\n",
      "          'jocelyn': 1,\n",
      "          'moorhouse': 1,\n",
      "          'proof': 1,\n",
      "          'come': 1,\n",
      "          'understand': 1,\n",
      "          'makers': 1,\n",
      "          'imbue': 1,\n",
      "          'creation': 1,\n",
      "          'vitality': 1,\n",
      "          'nall': 1,\n",
      "          'sorrows': 1,\n",
      "          'joys': 1,\n",
      "          'longings': 1,\n",
      "          'sufferings': 1,\n",
      "          'loves': 1,\n",
      "          'women': 1,\n",
      "          'sewn': 1,\n",
      "          'bittersweet': 1,\n",
      "          'memories': 1,\n",
      "          'given': 1,\n",
      "          'expression': 1,\n",
      "          'one': 1,\n",
      "          'young': 1,\n",
      "          'applies': 1,\n",
      "          'lessons': 1,\n",
      "          'past': 1,\n",
      "          'uncertain': 1,\n",
      "          'future': 1,\n",
      "          'nmotion': 1,\n",
      "          'pictures': 1,\n",
      "          'filled': 1,\n",
      "          'male': 1,\n",
      "          'bonding': 1,\n",
      "          'rituals': 1,\n",
      "          'presents': 1,\n",
      "          'distinctly': 1,\n",
      "          'feminine': 1,\n",
      "          'alternative': 1,\n",
      "          'quilting': 1,\n",
      "          'bee': 1,\n",
      "          'consists': 1,\n",
      "          'members': 1,\n",
      "          'sisters': 1,\n",
      "          'lois': 1,\n",
      "          'smith': 1,\n",
      "          'known': 1,\n",
      "          'frightening': 1,\n",
      "          'children': 1,\n",
      "          'jean': 1,\n",
      "          'simmons': 1,\n",
      "          'timid': 1,\n",
      "          'wife': 1,\n",
      "          'perpetually': 1,\n",
      "          'unfaithful': 1,\n",
      "          'man': 1,\n",
      "          'nelligan': 1,\n",
      "          'emmas': 1,\n",
      "          'anna': 1,\n",
      "          'leader': 1,\n",
      "          'group': 1,\n",
      "          'marianna': 1,\n",
      "          'alfre': 1,\n",
      "          'woodard': 1,\n",
      "          'daughter': 1,\n",
      "          'project': 1,\n",
      "          'theyre': 1,\n",
      "          'busy': 1,\n",
      "          'wedding': 1,\n",
      "          'hys': 1,\n",
      "          'granddaughter': 1,\n",
      "          'finn': 1,\n",
      "          'become': 1,\n",
      "          'engaged': 1,\n",
      "          'nshes': 1,\n",
      "          'spending': 1,\n",
      "          'summer': 1,\n",
      "          'away': 1,\n",
      "          'fiance': 1,\n",
      "          'decide': 1,\n",
      "          'lifelong': 1,\n",
      "          'commitment': 1,\n",
      "          'wants': 1,\n",
      "          'better': 1,\n",
      "          'marry': 1,\n",
      "          'friend': 1,\n",
      "          'lover': 1,\n",
      "          'none': 1,\n",
      "          'greatest': 1,\n",
      "          'pleasures': 1,\n",
      "          'comes': 1,\n",
      "          'array': 1,\n",
      "          'impressive': 1,\n",
      "          'ensemble': 1,\n",
      "          'nfrom': 1,\n",
      "          'minor': 1,\n",
      "          'players': 1,\n",
      "          'rip': 1,\n",
      "          'torn': 1,\n",
      "          'claire': 1,\n",
      "          'danes': 1,\n",
      "          'capshaw': 1,\n",
      "          'overflowing': 1,\n",
      "          'realized': 1,\n",
      "          'talent': 1,\n",
      "          'good': 1,\n",
      "          'fact': 1,\n",
      "          'cover': 1,\n",
      "          'scripts': 1,\n",
      "          'weaknesses': 1,\n",
      "          'nhow': 1,\n",
      "          'basically': 1,\n",
      "          'unremarkable': 1,\n",
      "          'affecting': 1,\n",
      "          'tale': 1,\n",
      "          'across': 1,\n",
      "          'generationsa': 1,\n",
      "          'sort': 1,\n",
      "          'truncated': 1,\n",
      "          'version': 1,\n",
      "          'joy': 1,\n",
      "          'luck': 1,\n",
      "          'club': 1,\n",
      "          'dash': 1,\n",
      "          'fried': 1,\n",
      "          'green': 1,\n",
      "          'tomatoes': 1,\n",
      "          'added': 1,\n",
      "          'probably': 1,\n",
      "          'characters': 1,\n",
      "          'nso': 1,\n",
      "          'instead': 1,\n",
      "          'getting': 1,\n",
      "          'know': 1,\n",
      "          'presented': 1,\n",
      "          'quick': 1,\n",
      "          'glimpses': 1,\n",
      "          'single': 1,\n",
      "          'defining': 1,\n",
      "          'event': 1,\n",
      "          'lives': 1,\n",
      "          'nwe': 1,\n",
      "          'learn': 1,\n",
      "          'root': 1,\n",
      "          'smoldering': 1,\n",
      "          'resentment': 1,\n",
      "          'told': 1,\n",
      "          'stays': 1,\n",
      "          'irascible': 1,\n",
      "          'episodes': 1,\n",
      "          'well': 1,\n",
      "          'life': 1,\n",
      "          'mariannas': 1,\n",
      "          'soul': 1,\n",
      "          'mate': 1,\n",
      "          'look': 1,\n",
      "          'entered': 1,\n",
      "          'friends': 1,\n",
      "          'sum': 1,\n",
      "          'total': 1,\n",
      "          'meant': 1,\n",
      "          'provide': 1,\n",
      "          'framework': 1,\n",
      "          'finns': 1,\n",
      "          'go': 1,\n",
      "          'forward': 1,\n",
      "          'marriage': 1,\n",
      "          'dally': 1,\n",
      "          'hunky': 1,\n",
      "          'stranger': 1,\n",
      "          'epiphany': 1,\n",
      "          'welltold': 1,\n",
      "          'difficult': 1,\n",
      "          'connect': 1,\n",
      "          'characterstheir': 1,\n",
      "          'moments': 1,\n",
      "          'pass': 1,\n",
      "          'quickly': 1,\n",
      "          'nwhile': 1,\n",
      "          'certainly': 1,\n",
      "          'something': 1,\n",
      "          'eight': 1,\n",
      "          'principals': 1,\n",
      "          'investment': 1,\n",
      "          'tenuous': 1,\n",
      "          'isnt': 1,\n",
      "          'depth': 1,\n",
      "          'pull': 1,\n",
      "          'way': 1,\n",
      "          'personalities': 1,\n",
      "          'half': 1,\n",
      "          'formed': 1,\n",
      "          'missing': 1,\n",
      "          'nto': 1,\n",
      "          'put': 1,\n",
      "          'bluntly': 1,\n",
      "          'enjoyed': 1,\n",
      "          'didnt': 1,\n",
      "          'much': 1,\n",
      "          'non': 1,\n",
      "          'whole': 1,\n",
      "          'nicelyunderstated': 1,\n",
      "          'drama': 1,\n",
      "          'lot': 1,\n",
      "          'say': 1,\n",
      "          'monogamy': 1,\n",
      "          'nfinns': 1,\n",
      "          'segment': 1,\n",
      "          'far': 1,\n",
      "          'compelling': 1,\n",
      "          'shes': 1,\n",
      "          'focal': 1,\n",
      "          'point': 1,\n",
      "          'actions': 1,\n",
      "          'shaped': 1,\n",
      "          'everyone': 1,\n",
      "          'elses': 1,\n",
      "          'experiences': 1,\n",
      "          'successful': 1,\n",
      "          'varying': 1,\n",
      "          'degrees': 1,\n",
      "          'nif': 1,\n",
      "          'disappointment': 1,\n",
      "          'script': 1,\n",
      "          'doesnt': 1,\n",
      "          'resonance': 1,\n",
      "          'privilege': 1,\n",
      "          'seeing': 1,\n",
      "          'top': 1,\n",
      "          'form': 1,\n",
      "          'allows': 1,\n",
      "          'enjoy': 1,\n",
      "          'picture': 1,\n",
      "          'even': 1,\n",
      "          'somewhat': 1,\n",
      "          'conventional': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'clooney': 8,\n",
      "          'kidman': 5,\n",
      "          'leder': 4,\n",
      "          'weapons': 4,\n",
      "          'nthe': 3,\n",
      "          'natural': 3,\n",
      "          'would': 3,\n",
      "          'best': 2,\n",
      "          'save': 2,\n",
      "          'way': 2,\n",
      "          'moved': 2,\n",
      "          'nthere': 2,\n",
      "          'suspense': 2,\n",
      "          'blockbuster': 2,\n",
      "          'get': 2,\n",
      "          'beginning': 2,\n",
      "          'new': 2,\n",
      "          'detail': 2,\n",
      "          'story': 2,\n",
      "          'ngeorge': 2,\n",
      "          'nhe': 2,\n",
      "          'nnicole': 2,\n",
      "          'starts': 2,\n",
      "          'nshe': 2,\n",
      "          'us': 2,\n",
      "          'nthen': 2,\n",
      "          'action': 2,\n",
      "          'real': 2,\n",
      "          'mimi': 1,\n",
      "          'probably': 1,\n",
      "          'known': 1,\n",
      "          'stunning': 1,\n",
      "          'work': 1,\n",
      "          'director': 1,\n",
      "          'hit': 1,\n",
      "          'tvshow': 1,\n",
      "          'er': 1,\n",
      "          'nher': 1,\n",
      "          'mast': 1,\n",
      "          'famous': 1,\n",
      "          'episode': 1,\n",
      "          'loves': 1,\n",
      "          'labour': 1,\n",
      "          'lost': 1,\n",
      "          'dealt': 1,\n",
      "          'ordeal': 1,\n",
      "          'doctor': 1,\n",
      "          'mark': 1,\n",
      "          'greene': 1,\n",
      "          'tried': 1,\n",
      "          'life': 1,\n",
      "          'pregnant': 1,\n",
      "          'mother': 1,\n",
      "          'child': 1,\n",
      "          'camera': 1,\n",
      "          'created': 1,\n",
      "          'tension': 1,\n",
      "          'throughout': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'amazing': 1,\n",
      "          'excitement': 1,\n",
      "          'adrenaline': 1,\n",
      "          'rushed': 1,\n",
      "          'hollywoods': 1,\n",
      "          'big': 1,\n",
      "          'movies': 1,\n",
      "          'nso': 1,\n",
      "          'direct': 1,\n",
      "          'hollywood': 1,\n",
      "          'nand': 1,\n",
      "          'say': 1,\n",
      "          'shaky': 1,\n",
      "          'disappoint': 1,\n",
      "          'npeacemaker': 1,\n",
      "          'deals': 1,\n",
      "          'theft': 1,\n",
      "          'nuclear': 1,\n",
      "          'terrorists': 1,\n",
      "          'obviously': 1,\n",
      "          'nothing': 1,\n",
      "          'first': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'goes': 1,\n",
      "          'much': 1,\n",
      "          'stolen': 1,\n",
      "          'ndespite': 1,\n",
      "          'good': 1,\n",
      "          'images': 1,\n",
      "          'including': 1,\n",
      "          'train': 1,\n",
      "          'collision': 1,\n",
      "          'impressive': 1,\n",
      "          'explosion': 1,\n",
      "          'none': 1,\n",
      "          'coherent': 1,\n",
      "          'nits': 1,\n",
      "          'long': 1,\n",
      "          'drawn': 1,\n",
      "          'settled': 1,\n",
      "          'implausible': 1,\n",
      "          'along': 1,\n",
      "          'better': 1,\n",
      "          'nonce': 1,\n",
      "          'george': 1,\n",
      "          'nicole': 1,\n",
      "          'enter': 1,\n",
      "          'picture': 1,\n",
      "          'begins': 1,\n",
      "          'take': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'colonel': 1,\n",
      "          'connections': 1,\n",
      "          'world': 1,\n",
      "          'nice': 1,\n",
      "          'sarcastic': 1,\n",
      "          'wit': 1,\n",
      "          'rough': 1,\n",
      "          'edges': 1,\n",
      "          'expect': 1,\n",
      "          'characters': 1,\n",
      "          'head': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'team': 1,\n",
      "          'smuggling': 1,\n",
      "          'usual': 1,\n",
      "          'flirtatious': 1,\n",
      "          'banter': 1,\n",
      "          'two': 1,\n",
      "          'dispensed': 1,\n",
      "          'quickly': 1,\n",
      "          'takes': 1,\n",
      "          'across': 1,\n",
      "          'globe': 1,\n",
      "          'trying': 1,\n",
      "          'figure': 1,\n",
      "          'going': 1,\n",
      "          'ngoes': 1,\n",
      "          'bouts': 1,\n",
      "          'sarcasm': 1,\n",
      "          'frustration': 1,\n",
      "          'determination': 1,\n",
      "          'revenge': 1,\n",
      "          'works': 1,\n",
      "          'insecurity': 1,\n",
      "          'selfdoubt': 1,\n",
      "          'nthis': 1,\n",
      "          'show': 1,\n",
      "          'true': 1,\n",
      "          'stuff': 1,\n",
      "          'nifty': 1,\n",
      "          'little': 1,\n",
      "          'car': 1,\n",
      "          'chase': 1,\n",
      "          'appetizer': 1,\n",
      "          'heroics': 1,\n",
      "          'helicopter': 1,\n",
      "          'leads': 1,\n",
      "          'brilliant': 1,\n",
      "          'final': 1,\n",
      "          'showdown': 1,\n",
      "          'york': 1,\n",
      "          'citys': 1,\n",
      "          'crowded': 1,\n",
      "          'streets': 1,\n",
      "          'madman': 1,\n",
      "          'nuke': 1,\n",
      "          'walking': 1,\n",
      "          'among': 1,\n",
      "          'nmimi': 1,\n",
      "          'creating': 1,\n",
      "          'reminds': 1,\n",
      "          'wolfgang': 1,\n",
      "          'petersen': 1,\n",
      "          'ability': 1,\n",
      "          'make': 1,\n",
      "          'routine': 1,\n",
      "          'sequences': 1,\n",
      "          'exciting': 1,\n",
      "          'breathtaking': 1,\n",
      "          'intelligent': 1,\n",
      "          'female': 1,\n",
      "          'hero': 1,\n",
      "          'nyoure': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'find': 1,\n",
      "          'falling': 1,\n",
      "          'come': 1,\n",
      "          'back': 1,\n",
      "          'movie': 1,\n",
      "          'star': 1,\n",
      "          'nmany': 1,\n",
      "          'may': 1,\n",
      "          'hated': 1,\n",
      "          'batman': 1,\n",
      "          'guy': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'ingratiating': 1,\n",
      "          'personality': 1,\n",
      "          'nhell': 1,\n",
      "          'around': 1,\n",
      "          'ndreamworks': 1,\n",
      "          'satisfying': 1,\n",
      "          'start': 1,\n",
      "          'peacemaker': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'planet': 7,\n",
      "          'apes': 7,\n",
      "          'burtons': 6,\n",
      "          'original': 6,\n",
      "          'ape': 6,\n",
      "          'humans': 5,\n",
      "          'one': 4,\n",
      "          'movie': 4,\n",
      "          'nhe': 4,\n",
      "          'nthe': 4,\n",
      "          'film': 3,\n",
      "          'davidson': 3,\n",
      "          'human': 3,\n",
      "          'chimp': 3,\n",
      "          'say': 2,\n",
      "          'monkey': 2,\n",
      "          'though': 2,\n",
      "          'summer': 2,\n",
      "          'outing': 2,\n",
      "          'filled': 2,\n",
      "          'action': 2,\n",
      "          'know': 2,\n",
      "          'version': 2,\n",
      "          'movies': 2,\n",
      "          'burton': 2,\n",
      "          'parents': 2,\n",
      "          'girl': 2,\n",
      "          'young': 2,\n",
      "          'get': 2,\n",
      "          'rid': 2,\n",
      "          'thing': 2,\n",
      "          'dont': 2,\n",
      "          'says': 2,\n",
      "          'throughout': 2,\n",
      "          'first': 2,\n",
      "          'words': 2,\n",
      "          'father': 2,\n",
      "          'thade': 2,\n",
      "          'goes': 2,\n",
      "          'dying': 2,\n",
      "          'damn': 2,\n",
      "          'wants': 2,\n",
      "          'nthis': 2,\n",
      "          'fine': 2,\n",
      "          'limbo': 2,\n",
      "          'rick': 2,\n",
      "          'comes': 2,\n",
      "          'ntim': 1,\n",
      "          'retelling': 1,\n",
      "          'fun': 1,\n",
      "          'barrel': 1,\n",
      "          'monkeys': 1,\n",
      "          'nok': 1,\n",
      "          'thats': 1,\n",
      "          'chest': 1,\n",
      "          'nno': 1,\n",
      "          'puns': 1,\n",
      "          'promise': 1,\n",
      "          'nseriously': 1,\n",
      "          'riproarin': 1,\n",
      "          'thrills': 1,\n",
      "          'adventure': 1,\n",
      "          'wit': 1,\n",
      "          'bits': 1,\n",
      "          'funny': 1,\n",
      "          'dare': 1,\n",
      "          'business': 1,\n",
      "          'ni': 1,\n",
      "          'promised': 1,\n",
      "          'nand': 1,\n",
      "          'buffs': 1,\n",
      "          'fond': 1,\n",
      "          'includes': 1,\n",
      "          'couple': 1,\n",
      "          'tips': 1,\n",
      "          'hat': 1,\n",
      "          'nmark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'stars': 1,\n",
      "          'capt': 1,\n",
      "          'leo': 1,\n",
      "          'deepspace': 1,\n",
      "          'pilot': 1,\n",
      "          'whose': 1,\n",
      "          'ship': 1,\n",
      "          'gets': 1,\n",
      "          'drawn': 1,\n",
      "          'magnetic': 1,\n",
      "          'field': 1,\n",
      "          'hurled': 1,\n",
      "          'future': 1,\n",
      "          'crash': 1,\n",
      "          'lands': 1,\n",
      "          'dominant': 1,\n",
      "          'species': 1,\n",
      "          'hunted': 1,\n",
      "          'captured': 1,\n",
      "          'sold': 1,\n",
      "          'slavery': 1,\n",
      "          'ndespite': 1,\n",
      "          'darker': 1,\n",
      "          'heavy': 1,\n",
      "          'handed': 1,\n",
      "          'sanctimonious': 1,\n",
      "          'nsome': 1,\n",
      "          'flashes': 1,\n",
      "          'humor': 1,\n",
      "          'surreal': 1,\n",
      "          'well': 1,\n",
      "          'typically': 1,\n",
      "          'organgrinder': 1,\n",
      "          'midget': 1,\n",
      "          'elderly': 1,\n",
      "          'taking': 1,\n",
      "          'wig': 1,\n",
      "          'removing': 1,\n",
      "          'false': 1,\n",
      "          'teeth': 1,\n",
      "          'prepares': 1,\n",
      "          'bed': 1,\n",
      "          'nthen': 1,\n",
      "          'buy': 1,\n",
      "          'little': 1,\n",
      "          'pet': 1,\n",
      "          'daughter': 1,\n",
      "          'seller': 1,\n",
      "          'advises': 1,\n",
      "          'reaches': 1,\n",
      "          'puberty': 1,\n",
      "          'want': 1,\n",
      "          'house': 1,\n",
      "          'teenager': 1,\n",
      "          'nyou': 1,\n",
      "          'realize': 1,\n",
      "          'truth': 1,\n",
      "          'statement': 1,\n",
      "          'ntouches': 1,\n",
      "          'stamps': 1,\n",
      "          'brand': 1,\n",
      "          'nlines': 1,\n",
      "          'hearken': 1,\n",
      "          'back': 1,\n",
      "          'sprinkled': 1,\n",
      "          'spoken': 1,\n",
      "          'astronaut': 1,\n",
      "          'regaining': 1,\n",
      "          'consciousness': 1,\n",
      "          'grabs': 1,\n",
      "          'simians': 1,\n",
      "          'foot': 1,\n",
      "          'try': 1,\n",
      "          'righting': 1,\n",
      "          'take': 1,\n",
      "          'stinking': 1,\n",
      "          'hand': 1,\n",
      "          'damned': 1,\n",
      "          'dirty': 1,\n",
      "          'nanyone': 1,\n",
      "          'familiar': 1,\n",
      "          'course': 1,\n",
      "          'recognize': 1,\n",
      "          'irony': 1,\n",
      "          'piece': 1,\n",
      "          'dialogue': 1,\n",
      "          'nanother': 1,\n",
      "          'injokes': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'star': 1,\n",
      "          'play': 1,\n",
      "          'chimpanzee': 1,\n",
      "          'tim': 1,\n",
      "          'roths': 1,\n",
      "          'gen': 1,\n",
      "          'visit': 1,\n",
      "          'nboth': 1,\n",
      "          'common': 1,\n",
      "          'hatred': 1,\n",
      "          'nwith': 1,\n",
      "          'breath': 1,\n",
      "          'elder': 1,\n",
      "          'spews': 1,\n",
      "          'vile': 1,\n",
      "          'hell': 1,\n",
      "          'expiring': 1,\n",
      "          'nthat': 1,\n",
      "          'famous': 1,\n",
      "          'line': 1,\n",
      "          'hestons': 1,\n",
      "          'taylor': 1,\n",
      "          'shouted': 1,\n",
      "          'conclusion': 1,\n",
      "          'discovering': 1,\n",
      "          'planets': 1,\n",
      "          'terrible': 1,\n",
      "          'secret': 1,\n",
      "          'performances': 1,\n",
      "          'topnotch': 1,\n",
      "          'nwahlberg': 1,\n",
      "          'plays': 1,\n",
      "          'gungho': 1,\n",
      "          'hero': 1,\n",
      "          'confused': 1,\n",
      "          'somewhat': 1,\n",
      "          'frightened': 1,\n",
      "          'explorer': 1,\n",
      "          'return': 1,\n",
      "          'home': 1,\n",
      "          'reluctant': 1,\n",
      "          'lead': 1,\n",
      "          'rebellion': 1,\n",
      "          'objective': 1,\n",
      "          'find': 1,\n",
      "          'way': 1,\n",
      "          'upsidedown': 1,\n",
      "          'hesitation': 1,\n",
      "          'makes': 1,\n",
      "          'character': 1,\n",
      "          'believable': 1,\n",
      "          'vulnerable': 1,\n",
      "          'nroth': 1,\n",
      "          'ferocious': 1,\n",
      "          'cunning': 1,\n",
      "          'cruel': 1,\n",
      "          'savage': 1,\n",
      "          'fascist': 1,\n",
      "          'vestiges': 1,\n",
      "          'humanity': 1,\n",
      "          'leaps': 1,\n",
      "          'bounds': 1,\n",
      "          'springs': 1,\n",
      "          'feet': 1,\n",
      "          'nit': 1,\n",
      "          'masterful': 1,\n",
      "          'turn': 1,\n",
      "          'nhelena': 1,\n",
      "          'bonham': 1,\n",
      "          'carter': 1,\n",
      "          'ari': 1,\n",
      "          'believes': 1,\n",
      "          'live': 1,\n",
      "          'peace': 1,\n",
      "          'equals': 1,\n",
      "          'nhers': 1,\n",
      "          'smart': 1,\n",
      "          'compassionate': 1,\n",
      "          'characterization': 1,\n",
      "          'nmichael': 1,\n",
      "          'clarke': 1,\n",
      "          'duncan': 1,\n",
      "          'big': 1,\n",
      "          'brutal': 1,\n",
      "          'attar': 1,\n",
      "          'gorilla': 1,\n",
      "          'aid': 1,\n",
      "          'blindly': 1,\n",
      "          'follows': 1,\n",
      "          'leader': 1,\n",
      "          'faith': 1,\n",
      "          'shaken': 1,\n",
      "          'na': 1,\n",
      "          'comic': 1,\n",
      "          'given': 1,\n",
      "          'paul': 1,\n",
      "          'giamatti': 1,\n",
      "          'slave': 1,\n",
      "          'trader': 1,\n",
      "          'making': 1,\n",
      "          'living': 1,\n",
      "          'misery': 1,\n",
      "          'captures': 1,\n",
      "          'nas': 1,\n",
      "          'battle': 1,\n",
      "          'looms': 1,\n",
      "          'cowardly': 1,\n",
      "          'pleads': 1,\n",
      "          'cant': 1,\n",
      "          'along': 1,\n",
      "          'echoing': 1,\n",
      "          'rodney': 1,\n",
      "          'king': 1,\n",
      "          'nmuch': 1,\n",
      "          'success': 1,\n",
      "          'technical': 1,\n",
      "          'crew': 1,\n",
      "          'especially': 1,\n",
      "          'production': 1,\n",
      "          'designer': 1,\n",
      "          'heinrichs': 1,\n",
      "          'legendary': 1,\n",
      "          'baker': 1,\n",
      "          'created': 1,\n",
      "          'makeup': 1,\n",
      "          'nburtons': 1,\n",
      "          'musical': 1,\n",
      "          'collaborator': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'provides': 1,\n",
      "          'another': 1,\n",
      "          'score': 1,\n",
      "          'memorable': 1,\n",
      "          'work': 1,\n",
      "          'batman': 1,\n",
      "          'sleepy': 1,\n",
      "          'hollow': 1,\n",
      "          'letdown': 1,\n",
      "          'end': 1,\n",
      "          'tries': 1,\n",
      "          'outshock': 1,\n",
      "          'finale': 1,\n",
      "          '1968': 1,\n",
      "          'close': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'notherwise': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'ride': 1,\n",
      "          'lots': 1,\n",
      "          'stunts': 1,\n",
      "          'laughs': 1,\n",
      "          'feature': 1,\n",
      "          'expectations': 1,\n",
      "          'lived': 1,\n",
      "          'prerelease': 1,\n",
      "          'hype': 1,\n",
      "          'npos': 1}),\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Counter({'legend': 5,\n",
      "          'urban': 4,\n",
      "          'one': 4,\n",
      "          'credit': 4,\n",
      "          'films': 3,\n",
      "          'turns': 3,\n",
      "          'movies': 3,\n",
      "          'though': 3,\n",
      "          'problem': 3,\n",
      "          'nand': 3,\n",
      "          'last': 2,\n",
      "          'genre': 2,\n",
      "          'scream': 2,\n",
      "          'premise': 2,\n",
      "          'become': 2,\n",
      "          'entertainment': 2,\n",
      "          'year': 2,\n",
      "          'maniac': 2,\n",
      "          'film': 2,\n",
      "          'whodunit': 2,\n",
      "          'didnt': 2,\n",
      "          'suspect': 2,\n",
      "          'really': 2,\n",
      "          'nit': 2,\n",
      "          'nthe': 2,\n",
      "          'leto': 2,\n",
      "          'could': 2,\n",
      "          'ni': 2,\n",
      "          'killer': 2,\n",
      "          'much': 2,\n",
      "          'na': 2,\n",
      "          'deserted': 2,\n",
      "          'gas': 2,\n",
      "          'stop': 2,\n",
      "          'station': 2,\n",
      "          'none': 2,\n",
      "          'attendant': 2,\n",
      "          'car': 2,\n",
      "          'looking': 2,\n",
      "          'trying': 2,\n",
      "          'surprised': 1,\n",
      "          'nbased': 1,\n",
      "          'produced': 1,\n",
      "          'including': 1,\n",
      "          'exclusive': 1,\n",
      "          'likes': 1,\n",
      "          'know': 1,\n",
      "          'summer': 1,\n",
      "          'disturbing': 1,\n",
      "          'behavior': 1,\n",
      "          'disappointing': 1,\n",
      "          'halloween': 1,\n",
      "          'h20': 1,\n",
      "          'positive': 1,\n",
      "          'store': 1,\n",
      "          'another': 1,\n",
      "          'mildly': 1,\n",
      "          'entertaining': 1,\n",
      "          'silly': 1,\n",
      "          'ultimately': 1,\n",
      "          'boring': 1,\n",
      "          'rehash': 1,\n",
      "          'phenomena': 1,\n",
      "          'nthankfully': 1,\n",
      "          'rose': 1,\n",
      "          'soggy': 1,\n",
      "          'hip': 1,\n",
      "          'scary': 1,\n",
      "          'stylish': 1,\n",
      "          'also': 1,\n",
      "          'probably': 1,\n",
      "          'best': 1,\n",
      "          'nyoure': 1,\n",
      "          'familiar': 1,\n",
      "          'plot': 1,\n",
      "          'bunch': 1,\n",
      "          'overly': 1,\n",
      "          'horny': 1,\n",
      "          'teenagers': 1,\n",
      "          'get': 1,\n",
      "          'systematically': 1,\n",
      "          'slaughtered': 1,\n",
      "          'masked': 1,\n",
      "          'whos': 1,\n",
      "          'identity': 1,\n",
      "          'revealed': 1,\n",
      "          'closing': 1,\n",
      "          'moments': 1,\n",
      "          'guessed': 1,\n",
      "          'everybodys': 1,\n",
      "          'favorite': 1,\n",
      "          'veteran': 1,\n",
      "          'flicks': 1,\n",
      "          'nonly': 1,\n",
      "          'person': 1,\n",
      "          'nhowever': 1,\n",
      "          'doesnt': 1,\n",
      "          'break': 1,\n",
      "          'new': 1,\n",
      "          'ground': 1,\n",
      "          'far': 1,\n",
      "          'literary': 1,\n",
      "          'even': 1,\n",
      "          'technical': 1,\n",
      "          'achievements': 1,\n",
      "          'go': 1,\n",
      "          'mean': 1,\n",
      "          'cant': 1,\n",
      "          'qualify': 1,\n",
      "          'firstclass': 1,\n",
      "          'believe': 1,\n",
      "          'funnest': 1,\n",
      "          'times': 1,\n",
      "          'ive': 1,\n",
      "          'thing': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'made': 1,\n",
      "          'particular': 1,\n",
      "          'stab': 1,\n",
      "          'pardon': 1,\n",
      "          'pun': 1,\n",
      "          'seem': 1,\n",
      "          'fresh': 1,\n",
      "          'alive': 1,\n",
      "          'nmaybe': 1,\n",
      "          'abovepar': 1,\n",
      "          'performances': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'jared': 1,\n",
      "          'cybil': 1,\n",
      "          'actress': 1,\n",
      "          'alicia': 1,\n",
      "          'witt': 1,\n",
      "          'target': 1,\n",
      "          'direction': 1,\n",
      "          'jamie': 1,\n",
      "          'blanks': 1,\n",
      "          'nmore': 1,\n",
      "          'likely': 1,\n",
      "          'inspired': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'need': 1,\n",
      "          'tell': 1,\n",
      "          'hacking': 1,\n",
      "          'people': 1,\n",
      "          'ala': 1,\n",
      "          'folklore': 1,\n",
      "          'frightening': 1,\n",
      "          'fisherman': 1,\n",
      "          'nurban': 1,\n",
      "          'begins': 1,\n",
      "          'sequence': 1,\n",
      "          'reminded': 1,\n",
      "          'classic': 1,\n",
      "          'opener': 1,\n",
      "          'plotting': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'makes': 1,\n",
      "          'absolutely': 1,\n",
      "          'chilling': 1,\n",
      "          'teaser': 1,\n",
      "          'rest': 1,\n",
      "          'pretty': 1,\n",
      "          'young': 1,\n",
      "          'coed': 1,\n",
      "          'driving': 1,\n",
      "          'road': 1,\n",
      "          'gasp': 1,\n",
      "          'heehee': 1,\n",
      "          'forces': 1,\n",
      "          'equally': 1,\n",
      "          'refill': 1,\n",
      "          'nwould': 1,\n",
      "          'want': 1,\n",
      "          'run': 1,\n",
      "          'brad': 1,\n",
      "          'dourif': 1,\n",
      "          'thought': 1,\n",
      "          'npredictably': 1,\n",
      "          'ends': 1,\n",
      "          'coaxing': 1,\n",
      "          'main': 1,\n",
      "          'building': 1,\n",
      "          'sort': 1,\n",
      "          'card': 1,\n",
      "          'company': 1,\n",
      "          'nits': 1,\n",
      "          'odd': 1,\n",
      "          'pick': 1,\n",
      "          'phone': 1,\n",
      "          'realize': 1,\n",
      "          'nobodys': 1,\n",
      "          'line': 1,\n",
      "          'nnaturally': 1,\n",
      "          'potential': 1,\n",
      "          'victim': 1,\n",
      "          'escapes': 1,\n",
      "          'drives': 1,\n",
      "          'least': 1,\n",
      "          'expect': 1,\n",
      "          'whack': 1,\n",
      "          'decapitation': 1,\n",
      "          'creepy': 1,\n",
      "          'warn': 1,\n",
      "          'back': 1,\n",
      "          'seat': 1,\n",
      "          'nso': 1,\n",
      "          'time': 1,\n",
      "          'obvious': 1,\n",
      "          'candidate': 1,\n",
      "          'slightly': 1,\n",
      "          'offkilter': 1,\n",
      "          'professor': 1,\n",
      "          'college': 1,\n",
      "          'girl': 1,\n",
      "          'went': 1,\n",
      "          'freddy': 1,\n",
      "          'kruger': 1,\n",
      "          'robert': 1,\n",
      "          'englund': 1,\n",
      "          'teaches': 1,\n",
      "          'class': 1,\n",
      "          'legends': 1,\n",
      "          'naha': 1,\n",
      "          'famehungry': 1,\n",
      "          'local': 1,\n",
      "          'journalist': 1,\n",
      "          'meaty': 1,\n",
      "          'story': 1,\n",
      "          'put': 1,\n",
      "          'resume': 1,\n",
      "          'nlike': 1,\n",
      "          'nature': 1,\n",
      "          'chief': 1,\n",
      "          'pleasures': 1,\n",
      "          'guess': 1,\n",
      "          'course': 1,\n",
      "          'nim': 1,\n",
      "          'going': 1,\n",
      "          'pretend': 1,\n",
      "          'anything': 1,\n",
      "          'must': 1,\n",
      "          'give': 1,\n",
      "          'due': 1,\n",
      "          'flick': 1,\n",
      "          'definitely': 1,\n",
      "          'deserves': 1,\n",
      "          'many': 1,\n",
      "          'recent': 1,\n",
      "          'horror': 1,\n",
      "          'fun': 1,\n",
      "          'n': 1,\n",
      "          'complimentary': 1,\n",
      "          'movie': 1,\n",
      "          'ticket': 1,\n",
      "          'courtesy': 1,\n",
      "          'valley': 1,\n",
      "          'cinemas': 1,\n",
      "          'lodi': 1,\n",
      "          'ca': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'family': 13,\n",
      "          'indian': 7,\n",
      "          'wedding': 4,\n",
      "          'film': 4,\n",
      "          '4': 4,\n",
      "          'films': 4,\n",
      "          'like': 4,\n",
      "          'nthe': 3,\n",
      "          'us': 3,\n",
      "          'verma': 2,\n",
      "          'multiday': 2,\n",
      "          'nmira': 2,\n",
      "          'secrets': 2,\n",
      "          'seen': 2,\n",
      "          'low': 2,\n",
      "          '2': 2,\n",
      "          'nair': 2,\n",
      "          'previously': 2,\n",
      "          'much': 2,\n",
      "          'neven': 2,\n",
      "          'together': 2,\n",
      "          'several': 2,\n",
      "          'members': 2,\n",
      "          'father': 2,\n",
      "          'least': 2,\n",
      "          'dubey': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'relatives': 1,\n",
      "          'come': 1,\n",
      "          'festivities': 1,\n",
      "          'nairs': 1,\n",
      "          'pleasant': 1,\n",
      "          'enough': 1,\n",
      "          'little': 1,\n",
      "          'human': 1,\n",
      "          'drama': 1,\n",
      "          'sadness': 1,\n",
      "          'happiness': 1,\n",
      "          'nyou': 1,\n",
      "          'perhaps': 1,\n",
      "          'india': 1,\n",
      "          'photography': 1,\n",
      "          'colorful': 1,\n",
      "          'music': 1,\n",
      "          'agreeable': 1,\n",
      "          'n': 1,\n",
      "          'directed': 1,\n",
      "          'salaam': 1,\n",
      "          'bombay': 1,\n",
      "          'mississippi': 1,\n",
      "          'masala': 1,\n",
      "          'nher': 1,\n",
      "          'newest': 1,\n",
      "          'written': 1,\n",
      "          'sabrina': 1,\n",
      "          'dhawan': 1,\n",
      "          'similar': 1,\n",
      "          'previous': 1,\n",
      "          'betsys': 1,\n",
      "          'set': 1,\n",
      "          'new': 1,\n",
      "          'delhi': 1,\n",
      "          'na': 1,\n",
      "          'wealthy': 1,\n",
      "          'nan': 1,\n",
      "          'affair': 1,\n",
      "          'reunion': 1,\n",
      "          'nuptial': 1,\n",
      "          'excuse': 1,\n",
      "          'lavish': 1,\n",
      "          'extravagant': 1,\n",
      "          'gettogether': 1,\n",
      "          'shows': 1,\n",
      "          'time': 1,\n",
      "          'follows': 1,\n",
      "          'individual': 1,\n",
      "          'story': 1,\n",
      "          'lines': 1,\n",
      "          'naditi': 1,\n",
      "          'marrying': 1,\n",
      "          'hemant': 1,\n",
      "          'engineer': 1,\n",
      "          'working': 1,\n",
      "          'nshe': 1,\n",
      "          'relationship': 1,\n",
      "          'vikram': 1,\n",
      "          'supervisor': 1,\n",
      "          'nlatit': 1,\n",
      "          'played': 1,\n",
      "          'naseeruddin': 1,\n",
      "          'shah': 1,\n",
      "          'juggling': 1,\n",
      "          'many': 1,\n",
      "          'problems': 1,\n",
      "          'worrying': 1,\n",
      "          'caterer': 1,\n",
      "          'hired': 1,\n",
      "          'pk': 1,\n",
      "          'ndubey': 1,\n",
      "          'rather': 1,\n",
      "          'eccentric': 1,\n",
      "          'man': 1,\n",
      "          'taste': 1,\n",
      "          'eating': 1,\n",
      "          'marigolds': 1,\n",
      "          'uses': 1,\n",
      "          'decoration': 1,\n",
      "          'soon': 1,\n",
      "          'romantically': 1,\n",
      "          'entangled': 1,\n",
      "          'becomes': 1,\n",
      "          'interested': 1,\n",
      "          'alice': 1,\n",
      "          'one': 1,\n",
      "          'servants': 1,\n",
      "          'nseveral': 1,\n",
      "          'arrive': 1,\n",
      "          'giving': 1,\n",
      "          'rise': 1,\n",
      "          'plotlines': 1,\n",
      "          'involving': 1,\n",
      "          'sex': 1,\n",
      "          'nthere': 1,\n",
      "          'heartbreaks': 1,\n",
      "          'people': 1,\n",
      "          'falling': 1,\n",
      "          'love': 1,\n",
      "          'nsome': 1,\n",
      "          'subjects': 1,\n",
      "          'covered': 1,\n",
      "          'probably': 1,\n",
      "          'near': 1,\n",
      "          'taboo': 1,\n",
      "          'nwestern': 1,\n",
      "          'audiences': 1,\n",
      "          'appreciate': 1,\n",
      "          'look': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'customs': 1,\n",
      "          'women': 1,\n",
      "          'painting': 1,\n",
      "          'hands': 1,\n",
      "          'henna': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'clear': 1,\n",
      "          'scenes': 1,\n",
      "          'singing': 1,\n",
      "          'typical': 1,\n",
      "          'culture': 1,\n",
      "          'convention': 1,\n",
      "          'musical': 1,\n",
      "          'nthis': 1,\n",
      "          'seems': 1,\n",
      "          'particularly': 1,\n",
      "          'westernized': 1,\n",
      "          'wearing': 1,\n",
      "          'american': 1,\n",
      "          'designer': 1,\n",
      "          'sweaters': 1,\n",
      "          'speaking': 1,\n",
      "          'mostly': 1,\n",
      "          'english': 1,\n",
      "          'latter': 1,\n",
      "          'however': 1,\n",
      "          'help': 1,\n",
      "          'international': 1,\n",
      "          'release': 1,\n",
      "          'nsabrina': 1,\n",
      "          'dhawans': 1,\n",
      "          'screenplay': 1,\n",
      "          'vibrant': 1,\n",
      "          'witty': 1,\n",
      "          'dialog': 1,\n",
      "          'nwe': 1,\n",
      "          'plotting': 1,\n",
      "          'setting': 1,\n",
      "          'makes': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'difference': 1,\n",
      "          'ndirector': 1,\n",
      "          'mira': 1,\n",
      "          'calls': 1,\n",
      "          'affirmation': 1,\n",
      "          'life': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '7': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'family': 6,\n",
      "          'love': 4,\n",
      "          'one': 4,\n",
      "          'beautiful': 4,\n",
      "          'life': 3,\n",
      "          'benigni': 3,\n",
      "          'nlife': 3,\n",
      "          'guido': 3,\n",
      "          'dora': 3,\n",
      "          'movie': 3,\n",
      "          'strongest': 2,\n",
      "          'roberto': 2,\n",
      "          'son': 2,\n",
      "          'times': 2,\n",
      "          'italy': 2,\n",
      "          'named': 2,\n",
      "          'nalthough': 2,\n",
      "          'manages': 2,\n",
      "          'instead': 2,\n",
      "          'movies': 2,\n",
      "          'becomes': 2,\n",
      "          'truly': 2,\n",
      "          'nin': 2,\n",
      "          'certain': 2,\n",
      "          'fine': 2,\n",
      "          'film': 2,\n",
      "          'see': 2,\n",
      "          'picture': 2,\n",
      "          'artsy': 2,\n",
      "          'driving': 1,\n",
      "          'forces': 1,\n",
      "          'mans': 1,\n",
      "          'especially': 1,\n",
      "          'fostered': 1,\n",
      "          'precarious': 1,\n",
      "          'circumstances': 1,\n",
      "          'nthematically': 1,\n",
      "          'cinema': 1,\n",
      "          'used': 1,\n",
      "          'frequently': 1,\n",
      "          'emphatically': 1,\n",
      "          'highlight': 1,\n",
      "          'abstract': 1,\n",
      "          'aspects': 1,\n",
      "          'characters': 1,\n",
      "          'rare': 1,\n",
      "          'however': 1,\n",
      "          'develop': 1,\n",
      "          'outstandingly': 1,\n",
      "          'benignis': 1,\n",
      "          'neoclassic': 1,\n",
      "          'drama': 1,\n",
      "          'nthrough': 1,\n",
      "          'central': 1,\n",
      "          'cast': 1,\n",
      "          'father': 1,\n",
      "          'mother': 1,\n",
      "          'demonstrates': 1,\n",
      "          'wonderful': 1,\n",
      "          'undying': 1,\n",
      "          'shares': 1,\n",
      "          'best': 1,\n",
      "          'worst': 1,\n",
      "          'orefice': 1,\n",
      "          'directing': 1,\n",
      "          'sixth': 1,\n",
      "          'time': 1,\n",
      "          'career': 1,\n",
      "          'italian': 1,\n",
      "          'jew': 1,\n",
      "          'master': 1,\n",
      "          'con': 1,\n",
      "          'man': 1,\n",
      "          'aspiring': 1,\n",
      "          'waiter': 1,\n",
      "          'extraordinaire': 1,\n",
      "          'nliving': 1,\n",
      "          '1930s': 1,\n",
      "          'lives': 1,\n",
      "          'carefree': 1,\n",
      "          'good': 1,\n",
      "          'fortune': 1,\n",
      "          'made': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'happens': 1,\n",
      "          'upon': 1,\n",
      "          'pretty': 1,\n",
      "          'schoolteacher': 1,\n",
      "          'nicoletta': 1,\n",
      "          'braschi': 1,\n",
      "          'already': 1,\n",
      "          'engaged': 1,\n",
      "          'sweep': 1,\n",
      "          'feet': 1,\n",
      "          'persuades': 1,\n",
      "          'marry': 1,\n",
      "          'two': 1,\n",
      "          'child': 1,\n",
      "          'joshua': 1,\n",
      "          'giorgio': 1,\n",
      "          'cantarini': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'happy': 1,\n",
      "          'third': 1,\n",
      "          'reich': 1,\n",
      "          'nazi': 1,\n",
      "          'minions': 1,\n",
      "          'occupy': 1,\n",
      "          'imprison': 1,\n",
      "          'jews': 1,\n",
      "          'work': 1,\n",
      "          'camps': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'dramatic': 1,\n",
      "          'turn': 1,\n",
      "          'theme': 1,\n",
      "          'prior': 1,\n",
      "          'turning': 1,\n",
      "          'point': 1,\n",
      "          'plays': 1,\n",
      "          'sort': 1,\n",
      "          'goofy': 1,\n",
      "          'charm': 1,\n",
      "          'relaxes': 1,\n",
      "          'role': 1,\n",
      "          'ensure': 1,\n",
      "          'sons': 1,\n",
      "          'happiness': 1,\n",
      "          'nnow': 1,\n",
      "          'awkwardly': 1,\n",
      "          'seducing': 1,\n",
      "          'sweet': 1,\n",
      "          'constantly': 1,\n",
      "          'reassures': 1,\n",
      "          'everything': 1,\n",
      "          'right': 1,\n",
      "          'nbenignis': 1,\n",
      "          'performance': 1,\n",
      "          'wellrounded': 1,\n",
      "          'certainly': 1,\n",
      "          'fluid': 1,\n",
      "          'turns': 1,\n",
      "          'year': 1,\n",
      "          'nthe': 1,\n",
      "          'supports': 1,\n",
      "          'strong': 1,\n",
      "          'well': 1,\n",
      "          'excels': 1,\n",
      "          'script': 1,\n",
      "          'selfproclaimed': 1,\n",
      "          'fable': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'grand': 1,\n",
      "          'twopart': 1,\n",
      "          'fashion': 1,\n",
      "          'parts': 1,\n",
      "          'sink': 1,\n",
      "          'level': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'spinoff': 1,\n",
      "          'number': 1,\n",
      "          'humorous': 1,\n",
      "          'skits': 1,\n",
      "          'connected': 1,\n",
      "          'token': 1,\n",
      "          'plot': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'scripts': 1,\n",
      "          'circular': 1,\n",
      "          'nature': 1,\n",
      "          'admirably': 1,\n",
      "          'obvious': 1,\n",
      "          'ncharacters': 1,\n",
      "          'make': 1,\n",
      "          'reprise': 1,\n",
      "          'appearances': 1,\n",
      "          'form': 1,\n",
      "          'events': 1,\n",
      "          'intially': 1,\n",
      "          'curious': 1,\n",
      "          'become': 1,\n",
      "          'critically': 1,\n",
      "          'linked': 1,\n",
      "          'plots': 1,\n",
      "          'outcome': 1,\n",
      "          'fans': 1,\n",
      "          'foreign': 1,\n",
      "          'memorable': 1,\n",
      "          'motion': 1,\n",
      "          'novice': 1,\n",
      "          'moviewatchers': 1,\n",
      "          'may': 1,\n",
      "          'take': 1,\n",
      "          'opportunity': 1,\n",
      "          'first': 1,\n",
      "          'convention': 1,\n",
      "          'easily': 1,\n",
      "          'accessible': 1,\n",
      "          'everyone': 1,\n",
      "          'thematic': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rushmore': 3,\n",
      "          'schwartzman': 3,\n",
      "          'film': 3,\n",
      "          'plays': 3,\n",
      "          'blume': 3,\n",
      "          'murray': 3,\n",
      "          'isnt': 3,\n",
      "          'role': 2,\n",
      "          'max': 2,\n",
      "          'young': 2,\n",
      "          'student': 2,\n",
      "          'perfect': 2,\n",
      "          'even': 2,\n",
      "          'cross': 2,\n",
      "          'honour': 2,\n",
      "          'everyone': 2,\n",
      "          'well': 2,\n",
      "          'one': 2,\n",
      "          'yet': 2,\n",
      "          'seen': 2,\n",
      "          'given': 2,\n",
      "          'still': 2,\n",
      "          'watching': 1,\n",
      "          'wes': 1,\n",
      "          'andersons': 1,\n",
      "          'may': 1,\n",
      "          'surprising': 1,\n",
      "          'think': 1,\n",
      "          'fischer': 1,\n",
      "          'films': 1,\n",
      "          'antihero': 1,\n",
      "          'written': 1,\n",
      "          'jason': 1,\n",
      "          'mind': 1,\n",
      "          'nthe': 1,\n",
      "          'actor': 1,\n",
      "          'making': 1,\n",
      "          'debut': 1,\n",
      "          '15': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'exclusive': 1,\n",
      "          'academy': 1,\n",
      "          'comes': 1,\n",
      "          'shock': 1,\n",
      "          'anderson': 1,\n",
      "          'auditioned': 1,\n",
      "          'two': 1,\n",
      "          'thousand': 1,\n",
      "          'prospective': 1,\n",
      "          'stars': 1,\n",
      "          'discovering': 1,\n",
      "          'schwarztman': 1,\n",
      "          'nschwartzman': 1,\n",
      "          'interested': 1,\n",
      "          'extracurricular': 1,\n",
      "          'activities': 1,\n",
      "          'writing': 1,\n",
      "          'edgy': 1,\n",
      "          'like': 1,\n",
      "          'serpico': 1,\n",
      "          'president': 1,\n",
      "          'beekeepers': 1,\n",
      "          'sees': 1,\n",
      "          'grades': 1,\n",
      "          'suffer': 1,\n",
      "          'result': 1,\n",
      "          'non': 1,\n",
      "          'brink': 1,\n",
      "          'thrown': 1,\n",
      "          'lands': 1,\n",
      "          'hot': 1,\n",
      "          'water': 1,\n",
      "          'falls': 1,\n",
      "          'first': 1,\n",
      "          'grade': 1,\n",
      "          'teacher': 1,\n",
      "          'rosemary': 1,\n",
      "          'olivia': 1,\n",
      "          'williams': 1,\n",
      "          'enlists': 1,\n",
      "          'help': 1,\n",
      "          'millionaire': 1,\n",
      "          'acquaintance': 1,\n",
      "          'herman': 1,\n",
      "          'great': 1,\n",
      "          'bill': 1,\n",
      "          'build': 1,\n",
      "          'aquarium': 1,\n",
      "          'rushmores': 1,\n",
      "          'baseball': 1,\n",
      "          'field': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'involved': 1,\n",
      "          'finds': 1,\n",
      "          'feelings': 1,\n",
      "          'miss': 1,\n",
      "          'gets': 1,\n",
      "          'way': 1,\n",
      "          'maxs': 1,\n",
      "          'plans': 1,\n",
      "          'woo': 1,\n",
      "          'nmax': 1,\n",
      "          'bestwritten': 1,\n",
      "          'characters': 1,\n",
      "          'weve': 1,\n",
      "          '90s': 1,\n",
      "          'perfection': 1,\n",
      "          'finest': 1,\n",
      "          'comedy': 1,\n",
      "          'performances': 1,\n",
      "          'ever': 1,\n",
      "          'someone': 1,\n",
      "          'age': 1,\n",
      "          'nas': 1,\n",
      "          'else': 1,\n",
      "          'probably': 1,\n",
      "          'already': 1,\n",
      "          'pointed': 1,\n",
      "          'reminiscent': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffman': 1,\n",
      "          'although': 1,\n",
      "          'reminded': 1,\n",
      "          'paul': 1,\n",
      "          'wonder': 1,\n",
      "          'years': 1,\n",
      "          'visual': 1,\n",
      "          'standpoint': 1,\n",
      "          'least': 1,\n",
      "          'nhopefully': 1,\n",
      "          'avoids': 1,\n",
      "          'typecasting': 1,\n",
      "          'weird': 1,\n",
      "          'quirky': 1,\n",
      "          'lonertypes': 1,\n",
      "          'earn': 1,\n",
      "          'good': 1,\n",
      "          'career': 1,\n",
      "          'nbill': 1,\n",
      "          'equal': 1,\n",
      "          'displaying': 1,\n",
      "          'depth': 1,\n",
      "          'havent': 1,\n",
      "          'nwhile': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'goes': 1,\n",
      "          'groundhog': 1,\n",
      "          'day': 1,\n",
      "          'terrific': 1,\n",
      "          'nwilliams': 1,\n",
      "          'much': 1,\n",
      "          'except': 1,\n",
      "          'react': 1,\n",
      "          'fine': 1,\n",
      "          'work': 1,\n",
      "          'nrushmore': 1,\n",
      "          'seems': 1,\n",
      "          'go': 1,\n",
      "          'little': 1,\n",
      "          'long': 1,\n",
      "          'definate': 1,\n",
      "          'mustsee': 1,\n",
      "          'anyone': 1,\n",
      "          'wants': 1,\n",
      "          'see': 1,\n",
      "          'rarity': 1,\n",
      "          'american': 1,\n",
      "          'comingofage': 1,\n",
      "          'actually': 1,\n",
      "          'works': 1,\n",
      "          'without': 1,\n",
      "          'excessive': 1,\n",
      "          'amount': 1,\n",
      "          'sentimentality': 1,\n",
      "          'nanderson': 1,\n",
      "          'created': 1,\n",
      "          'modern': 1,\n",
      "          'classic': 1,\n",
      "          'star': 1,\n",
      "          'luck': 1,\n",
      "          'rise': 1,\n",
      "          'greater': 1,\n",
      "          'success': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jude': 14,\n",
      "          'film': 5,\n",
      "          'one': 5,\n",
      "          'never': 4,\n",
      "          'nbut': 4,\n",
      "          'way': 4,\n",
      "          'nthe': 4,\n",
      "          'teacher': 4,\n",
      "          'novel': 3,\n",
      "          'see': 3,\n",
      "          'life': 3,\n",
      "          'n': 3,\n",
      "          'school': 3,\n",
      "          'eventually': 3,\n",
      "          'two': 3,\n",
      "          'people': 3,\n",
      "          'happiness': 3,\n",
      "          'good': 3,\n",
      "          'wonderfully': 3,\n",
      "          'read': 2,\n",
      "          'final': 2,\n",
      "          'man': 2,\n",
      "          'bad': 2,\n",
      "          'luck': 2,\n",
      "          'depressing': 2,\n",
      "          'satirical': 2,\n",
      "          'societys': 2,\n",
      "          'place': 2,\n",
      "          'story': 2,\n",
      "          'even': 2,\n",
      "          'although': 2,\n",
      "          'kinda': 2,\n",
      "          'eccleston': 2,\n",
      "          'young': 2,\n",
      "          'big': 2,\n",
      "          'nin': 2,\n",
      "          'bleak': 2,\n",
      "          'phillotson': 2,\n",
      "          'liam': 2,\n",
      "          'cunningham': 2,\n",
      "          'upon': 2,\n",
      "          'work': 2,\n",
      "          'hard': 2,\n",
      "          'anything': 2,\n",
      "          'world': 2,\n",
      "          'immature': 2,\n",
      "          'woman': 2,\n",
      "          'arabella': 2,\n",
      "          'rachel': 2,\n",
      "          'griffiths': 2,\n",
      "          'ultimately': 2,\n",
      "          'moves': 2,\n",
      "          'town': 2,\n",
      "          'get': 2,\n",
      "          'job': 2,\n",
      "          'someone': 2,\n",
      "          'sue': 2,\n",
      "          'winslet': 2,\n",
      "          'nasty': 2,\n",
      "          'business': 2,\n",
      "          'nudge': 2,\n",
      "          'every': 2,\n",
      "          'happens': 2,\n",
      "          'society': 2,\n",
      "          'ending': 2,\n",
      "          'would': 2,\n",
      "          'supporting': 2,\n",
      "          'dumb': 2,\n",
      "          'nkate': 2,\n",
      "          'titanic': 2,\n",
      "          'performance': 2,\n",
      "          'slow': 2,\n",
      "          'appreciate': 2,\n",
      "          'thomas': 1,\n",
      "          'hardy': 1,\n",
      "          'obscure': 1,\n",
      "          'created': 1,\n",
      "          'outrage': 1,\n",
      "          'wrote': 1,\n",
      "          'research': 1,\n",
      "          'plagued': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'watching': 1,\n",
      "          'movie': 1,\n",
      "          'imagine': 1,\n",
      "          'incredibly': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'spitting': 1,\n",
      "          'chewing': 1,\n",
      "          'unwanted': 1,\n",
      "          'system': 1,\n",
      "          'whats': 1,\n",
      "          'remarkable': 1,\n",
      "          'timeless': 1,\n",
      "          'takes': 1,\n",
      "          'late': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'early': 1,\n",
      "          '20th': 1,\n",
      "          'wasnt': 1,\n",
      "          'really': 1,\n",
      "          'sure': 1,\n",
      "          'could': 1,\n",
      "          'retold': 1,\n",
      "          'today': 1,\n",
      "          'modern': 1,\n",
      "          'form': 1,\n",
      "          'itd': 1,\n",
      "          'different': 1,\n",
      "          'given': 1,\n",
      "          'nit': 1,\n",
      "          'tells': 1,\n",
      "          'christopher': 1,\n",
      "          'psychotic': 1,\n",
      "          'accountant': 1,\n",
      "          'shallow': 1,\n",
      "          'grave': 1,\n",
      "          'simple': 1,\n",
      "          'dimwitted': 1,\n",
      "          'dreams': 1,\n",
      "          'foreboding': 1,\n",
      "          'opening': 1,\n",
      "          'shot': 1,\n",
      "          'grainy': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'gets': 1,\n",
      "          'lesson': 1,\n",
      "          'stand': 1,\n",
      "          'mountain': 1,\n",
      "          'looking': 1,\n",
      "          'city': 1,\n",
      "          'distance': 1,\n",
      "          'says': 1,\n",
      "          'nafter': 1,\n",
      "          'marrying': 1,\n",
      "          'divorcing': 1,\n",
      "          'named': 1,\n",
      "          'frolicked': 1,\n",
      "          'hay': 1,\n",
      "          'literally': 1,\n",
      "          'share': 1,\n",
      "          'common': 1,\n",
      "          'away': 1,\n",
      "          'giant': 1,\n",
      "          'university': 1,\n",
      "          'chance': 1,\n",
      "          'learn': 1,\n",
      "          'ahead': 1,\n",
      "          'ntaking': 1,\n",
      "          'welding': 1,\n",
      "          'works': 1,\n",
      "          'studying': 1,\n",
      "          'constantly': 1,\n",
      "          'college': 1,\n",
      "          'bars': 1,\n",
      "          'reciting': 1,\n",
      "          'latin': 1,\n",
      "          'training': 1,\n",
      "          'sends': 1,\n",
      "          'application': 1,\n",
      "          'bluntly': 1,\n",
      "          'told': 1,\n",
      "          'remain': 1,\n",
      "          'worker': 1,\n",
      "          'nanother': 1,\n",
      "          'reason': 1,\n",
      "          'going': 1,\n",
      "          'family': 1,\n",
      "          'lives': 1,\n",
      "          'kate': 1,\n",
      "          'cousin': 1,\n",
      "          'intelligent': 1,\n",
      "          'mischevious': 1,\n",
      "          'wants': 1,\n",
      "          'nshe': 1,\n",
      "          'click': 1,\n",
      "          'become': 1,\n",
      "          'endearing': 1,\n",
      "          'friends': 1,\n",
      "          'much': 1,\n",
      "          'spends': 1,\n",
      "          'night': 1,\n",
      "          'flat': 1,\n",
      "          'running': 1,\n",
      "          'apprentice': 1,\n",
      "          'none': 1,\n",
      "          'local': 1,\n",
      "          'rumors': 1,\n",
      "          'nseveral': 1,\n",
      "          'twists': 1,\n",
      "          'turn': 1,\n",
      "          'storyline': 1,\n",
      "          'interesting': 1,\n",
      "          'scene': 1,\n",
      "          'say': 1,\n",
      "          'least': 1,\n",
      "          'soon': 1,\n",
      "          'born': 1,\n",
      "          'controversial': 1,\n",
      "          'nonwedlock': 1,\n",
      "          'gives': 1,\n",
      "          'birth': 1,\n",
      "          'baby': 1,\n",
      "          'inherits': 1,\n",
      "          'son': 1,\n",
      "          'turns': 1,\n",
      "          'awhile': 1,\n",
      "          'nbecause': 1,\n",
      "          'arent': 1,\n",
      "          'married': 1,\n",
      "          'theyre': 1,\n",
      "          'cousins': 1,\n",
      "          'run': 1,\n",
      "          'problems': 1,\n",
      "          'go': 1,\n",
      "          'carrying': 1,\n",
      "          'around': 1,\n",
      "          'children': 1,\n",
      "          'everywhere': 1,\n",
      "          'staying': 1,\n",
      "          'lodges': 1,\n",
      "          'brief': 1,\n",
      "          'period': 1,\n",
      "          'time': 1,\n",
      "          'moving': 1,\n",
      "          'nif': 1,\n",
      "          'didnt': 1,\n",
      "          'think': 1,\n",
      "          'harsh': 1,\n",
      "          'enough': 1,\n",
      "          'wait': 1,\n",
      "          'till': 1,\n",
      "          'later': 1,\n",
      "          'sad': 1,\n",
      "          'truth': 1,\n",
      "          'miserable': 1,\n",
      "          'nhe': 1,\n",
      "          'gain': 1,\n",
      "          'true': 1,\n",
      "          'fleeting': 1,\n",
      "          'probably': 1,\n",
      "          'bring': 1,\n",
      "          'horrible': 1,\n",
      "          'instances': 1,\n",
      "          'npart': 1,\n",
      "          'fault': 1,\n",
      "          'hes': 1,\n",
      "          'optimistic': 1,\n",
      "          'gullible': 1,\n",
      "          'taking': 1,\n",
      "          'hurting': 1,\n",
      "          'death': 1,\n",
      "          'hear': 1,\n",
      "          'worse': 1,\n",
      "          'guess': 1,\n",
      "          'ill': 1,\n",
      "          'offers': 1,\n",
      "          'view': 1,\n",
      "          'cruelties': 1,\n",
      "          'shows': 1,\n",
      "          'curing': 1,\n",
      "          'thank': 1,\n",
      "          'heavens': 1,\n",
      "          'doesnt': 1,\n",
      "          'ntheres': 1,\n",
      "          'relinquish': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'selfishness': 1,\n",
      "          'solution': 1,\n",
      "          'small': 1,\n",
      "          'cure': 1,\n",
      "          'mass': 1,\n",
      "          'problem': 1,\n",
      "          'nsatire': 1,\n",
      "          'always': 1,\n",
      "          'ways': 1,\n",
      "          'changing': 1,\n",
      "          'certain': 1,\n",
      "          'peoples': 1,\n",
      "          'minds': 1,\n",
      "          'thats': 1,\n",
      "          'nsure': 1,\n",
      "          'hell': 1,\n",
      "          'downer': 1,\n",
      "          'needs': 1,\n",
      "          'also': 1,\n",
      "          'posesses': 1,\n",
      "          'fantastic': 1,\n",
      "          'performances': 1,\n",
      "          'leads': 1,\n",
      "          'along': 1,\n",
      "          'nchristopher': 1,\n",
      "          'slightly': 1,\n",
      "          'resembling': 1,\n",
      "          'richard': 1,\n",
      "          'edson': 1,\n",
      "          'new': 1,\n",
      "          'look': 1,\n",
      "          'expression': 1,\n",
      "          'plays': 1,\n",
      "          'sometimes': 1,\n",
      "          'bringing': 1,\n",
      "          'smile': 1,\n",
      "          'face': 1,\n",
      "          'making': 1,\n",
      "          'kind': 1,\n",
      "          'childlike': 1,\n",
      "          'times': 1,\n",
      "          'pre': 1,\n",
      "          'brilliant': 1,\n",
      "          'nailing': 1,\n",
      "          'psyche': 1,\n",
      "          'character': 1,\n",
      "          'creating': 1,\n",
      "          'whos': 1,\n",
      "          'troubled': 1,\n",
      "          'seductive': 1,\n",
      "          'personality': 1,\n",
      "          'may': 1,\n",
      "          'best': 1,\n",
      "          'actress': 1,\n",
      "          'age': 1,\n",
      "          'group': 1,\n",
      "          'dont': 1,\n",
      "          'believe': 1,\n",
      "          'branaghs': 1,\n",
      "          'hamlet': 1,\n",
      "          'sense': 1,\n",
      "          'sensibility': 1,\n",
      "          'heavenly': 1,\n",
      "          'creatures': 1,\n",
      "          'latter': 1,\n",
      "          'favorite': 1,\n",
      "          'roles': 1,\n",
      "          'flawed': 1,\n",
      "          'exposing': 1,\n",
      "          'parts': 1,\n",
      "          'pretty': 1,\n",
      "          'person': 1,\n",
      "          'judes': 1,\n",
      "          'wife': 1,\n",
      "          'divorces': 1,\n",
      "          'pace': 1,\n",
      "          'keeps': 1,\n",
      "          'taunting': 1,\n",
      "          'viewers': 1,\n",
      "          'chances': 1,\n",
      "          'protagonists': 1,\n",
      "          'drive': 1,\n",
      "          'nuts': 1,\n",
      "          'social': 1,\n",
      "          'commentary': 1,\n",
      "          'films': 1,\n",
      "          'matter': 1,\n",
      "          'downright': 1,\n",
      "          'though': 1,\n",
      "          'doubt': 1,\n",
      "          'anyone': 1,\n",
      "          'truly': 1,\n",
      "          'enjoys': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dragon': 7,\n",
      "          'movie': 5,\n",
      "          'quaid': 4,\n",
      "          'girl': 3,\n",
      "          'going': 3,\n",
      "          'last': 2,\n",
      "          'amusing': 2,\n",
      "          'dragons': 2,\n",
      "          'call': 2,\n",
      "          'town': 2,\n",
      "          'course': 2,\n",
      "          'draco': 2,\n",
      "          'probably': 2,\n",
      "          'eddie': 2,\n",
      "          'medieval': 2,\n",
      "          'comedy': 2,\n",
      "          'laughs': 2,\n",
      "          'hard': 2,\n",
      "          'stars': 1,\n",
      "          'man': 1,\n",
      "          'taken': 1,\n",
      "          'proffesion': 1,\n",
      "          'dragonslayer': 1,\n",
      "          'feels': 1,\n",
      "          'betrayed': 1,\n",
      "          'early': 1,\n",
      "          'nhe': 1,\n",
      "          'runs': 1,\n",
      "          'existence': 1,\n",
      "          'genuinely': 1,\n",
      "          'battle': 1,\n",
      "          'two': 1,\n",
      "          'results': 1,\n",
      "          'standoff': 1,\n",
      "          'mouth': 1,\n",
      "          'sword': 1,\n",
      "          'pointed': 1,\n",
      "          'brain': 1,\n",
      "          'neventually': 1,\n",
      "          'decide': 1,\n",
      "          'truce': 1,\n",
      "          'work': 1,\n",
      "          'deal': 1,\n",
      "          'nsince': 1,\n",
      "          'pretend': 1,\n",
      "          'die': 1,\n",
      "          'able': 1,\n",
      "          'get': 1,\n",
      "          'paid': 1,\n",
      "          'ntheir': 1,\n",
      "          'scam': 1,\n",
      "          'works': 1,\n",
      "          'first': 1,\n",
      "          'come': 1,\n",
      "          'without': 1,\n",
      "          'money': 1,\n",
      "          'ninstead': 1,\n",
      "          'sacrifices': 1,\n",
      "          'nice': 1,\n",
      "          'droagon': 1,\n",
      "          'wont': 1,\n",
      "          'eat': 1,\n",
      "          'however': 1,\n",
      "          'scene': 1,\n",
      "          'hitting': 1,\n",
      "          'young': 1,\n",
      "          'nof': 1,\n",
      "          'tell': 1,\n",
      "          'plot': 1,\n",
      "          'silly': 1,\n",
      "          'know': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'right': 1,\n",
      "          'times': 1,\n",
      "          'unlike': 1,\n",
      "          'serious': 1,\n",
      "          'time': 1,\n",
      "          'nyou': 1,\n",
      "          'could': 1,\n",
      "          'spy': 1,\n",
      "          'combined': 1,\n",
      "          'ndennis': 1,\n",
      "          'makes': 1,\n",
      "          'fine': 1,\n",
      "          'hero': 1,\n",
      "          'npete': 1,\n",
      "          'posthlewaite': 1,\n",
      "          'provides': 1,\n",
      "          'ghreat': 1,\n",
      "          'monk': 1,\n",
      "          'journeys': 1,\n",
      "          'ndina': 1,\n",
      "          'meyer': 1,\n",
      "          'appealing': 1,\n",
      "          'sacrificed': 1,\n",
      "          'nbut': 1,\n",
      "          'lets': 1,\n",
      "          'face': 1,\n",
      "          'really': 1,\n",
      "          'amazing': 1,\n",
      "          'creation': 1,\n",
      "          'nconnerys': 1,\n",
      "          'voice': 1,\n",
      "          'ilm': 1,\n",
      "          'team': 1,\n",
      "          'provide': 1,\n",
      "          'us': 1,\n",
      "          'truly': 1,\n",
      "          'magnificent': 1,\n",
      "          'nso': 1,\n",
      "          'see': 1,\n",
      "          'strong': 1,\n",
      "          'core': 1,\n",
      "          'epic': 1,\n",
      "          'wrong': 1,\n",
      "          'nif': 1,\n",
      "          'dissapointed': 1,\n",
      "          'provided': 1,\n",
      "          'plenty': 1,\n",
      "          'smooth': 1,\n",
      "          'boring': 1,\n",
      "          'parts': 1,\n",
      "          'script': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'nthe': 10,\n",
      "          'thin': 6,\n",
      "          'red': 6,\n",
      "          'line': 6,\n",
      "          'malick': 5,\n",
      "          'plot': 5,\n",
      "          'see': 3,\n",
      "          'cast': 3,\n",
      "          'performance': 3,\n",
      "          'nthis': 3,\n",
      "          'stories': 3,\n",
      "          'uses': 3,\n",
      "          'nature': 3,\n",
      "          '20': 2,\n",
      "          'years': 2,\n",
      "          'nhis': 2,\n",
      "          'strange': 2,\n",
      "          'beautiful': 2,\n",
      "          'mess': 2,\n",
      "          'movie': 2,\n",
      "          'nit': 2,\n",
      "          'filled': 2,\n",
      "          'gives': 2,\n",
      "          'whose': 2,\n",
      "          'role': 2,\n",
      "          'cameo': 2,\n",
      "          'seems': 2,\n",
      "          'much': 2,\n",
      "          'characters': 2,\n",
      "          'narration': 2,\n",
      "          'nick': 2,\n",
      "          'nolte': 2,\n",
      "          'elias': 2,\n",
      "          'koteas': 2,\n",
      "          'fantastic': 2,\n",
      "          'two': 2,\n",
      "          'called': 2,\n",
      "          'nafter': 2,\n",
      "          'made': 2,\n",
      "          'many': 2,\n",
      "          'lets': 2,\n",
      "          'us': 2,\n",
      "          'hear': 2,\n",
      "          'also': 2,\n",
      "          'used': 2,\n",
      "          'story': 2,\n",
      "          'private': 2,\n",
      "          'box': 2,\n",
      "          'nwhile': 2,\n",
      "          'bookend': 2,\n",
      "          'regarding': 2,\n",
      "          'since': 1,\n",
      "          'terrence': 1,\n",
      "          'hit': 1,\n",
      "          'theaters': 1,\n",
      "          'new': 1,\n",
      "          'enigmatic': 1,\n",
      "          'first': 1,\n",
      "          'thing': 1,\n",
      "          'jumps': 1,\n",
      "          'one': 1,\n",
      "          'advertisements': 1,\n",
      "          'huge': 1,\n",
      "          'abovethetitle': 1,\n",
      "          'stars': 1,\n",
      "          'part': 1,\n",
      "          'great': 1,\n",
      "          'performances': 1,\n",
      "          'njohn': 1,\n",
      "          'travolta': 1,\n",
      "          'nothing': 1,\n",
      "          'attacked': 1,\n",
      "          'verve': 1,\n",
      "          'ngeorge': 1,\n",
      "          'clooney': 1,\n",
      "          'became': 1,\n",
      "          'editing': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'knew': 1,\n",
      "          'would': 1,\n",
      "          'become': 1,\n",
      "          'object': 1,\n",
      "          'ridicule': 1,\n",
      "          'rest': 1,\n",
      "          'especially': 1,\n",
      "          'unambiguously': 1,\n",
      "          'nthese': 1,\n",
      "          'actors': 1,\n",
      "          'exceptions': 1,\n",
      "          'men': 1,\n",
      "          'lured': 1,\n",
      "          'name': 1,\n",
      "          'nterrence': 1,\n",
      "          'cinematic': 1,\n",
      "          'legend': 1,\n",
      "          'nhe': 1,\n",
      "          'often': 1,\n",
      "          'j': 1,\n",
      "          'salinger': 1,\n",
      "          'cinema': 1,\n",
      "          'previous': 1,\n",
      "          'films': 1,\n",
      "          'badlands': 1,\n",
      "          'days': 1,\n",
      "          'heaven': 1,\n",
      "          'spectacularly': 1,\n",
      "          'obscure': 1,\n",
      "          'motion': 1,\n",
      "          'pictures': 1,\n",
      "          'disappeared': 1,\n",
      "          'marks': 1,\n",
      "          'return': 1,\n",
      "          'nwhat': 1,\n",
      "          'hes': 1,\n",
      "          'less': 1,\n",
      "          'concerned': 1,\n",
      "          'emotion': 1,\n",
      "          'moment': 1,\n",
      "          'fills': 1,\n",
      "          'perplexes': 1,\n",
      "          'narrators': 1,\n",
      "          'pontificate': 1,\n",
      "          'ofthemoment': 1,\n",
      "          'thoughts': 1,\n",
      "          'im': 1,\n",
      "          'scared': 1,\n",
      "          'rather': 1,\n",
      "          'simple': 1,\n",
      "          'canvas': 1,\n",
      "          'painted': 1,\n",
      "          'couldly': 1,\n",
      "          'simply': 1,\n",
      "          'boiled': 1,\n",
      "          'assault': 1,\n",
      "          'hill': 1,\n",
      "          'na': 1,\n",
      "          'synopsis': 1,\n",
      "          'difficult': 1,\n",
      "          'fractured': 1,\n",
      "          'nmany': 1,\n",
      "          'clash': 1,\n",
      "          'lieutenant': 1,\n",
      "          'savage': 1,\n",
      "          'colonel': 1,\n",
      "          'voracious': 1,\n",
      "          'ben': 1,\n",
      "          'chaplin': 1,\n",
      "          'love': 1,\n",
      "          'woman': 1,\n",
      "          'left': 1,\n",
      "          'behind': 1,\n",
      "          'keep': 1,\n",
      "          'going': 1,\n",
      "          'fracturing': 1,\n",
      "          'ultimately': 1,\n",
      "          'fault': 1,\n",
      "          'artist': 1,\n",
      "          'spent': 1,\n",
      "          'incredible': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'artfully': 1,\n",
      "          'sculpting': 1,\n",
      "          'tiny': 1,\n",
      "          'statues': 1,\n",
      "          'threw': 1,\n",
      "          'shook': 1,\n",
      "          'poured': 1,\n",
      "          'results': 1,\n",
      "          'onto': 1,\n",
      "          'table': 1,\n",
      "          'basically': 1,\n",
      "          'creates': 1,\n",
      "          'discerned': 1,\n",
      "          'enjoyed': 1,\n",
      "          'nim': 1,\n",
      "          'declaring': 1,\n",
      "          'structure': 1,\n",
      "          'saving': 1,\n",
      "          'ryan': 1,\n",
      "          'warfare': 1,\n",
      "          'reflection': 1,\n",
      "          'glorious': 1,\n",
      "          'shots': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'combat': 1,\n",
      "          'battles': 1,\n",
      "          'astonishing': 1,\n",
      "          'display': 1,\n",
      "          'mastery': 1,\n",
      "          'filmmaking': 1,\n",
      "          'astounding': 1,\n",
      "          'cinematography': 1,\n",
      "          'must': 1,\n",
      "          'given': 1,\n",
      "          'notice': 1,\n",
      "          'color': 1,\n",
      "          'light': 1,\n",
      "          'way': 1,\n",
      "          'sad': 1,\n",
      "          'degraded': 1,\n",
      "          'bee': 1,\n",
      "          'transferred': 1,\n",
      "          'video': 1,\n",
      "          'nultimately': 1,\n",
      "          'crafted': 1,\n",
      "          'enjoys': 1,\n",
      "          'looking': 1,\n",
      "          'treetops': 1,\n",
      "          'war': 1,\n",
      "          'rages': 1,\n",
      "          'photography': 1,\n",
      "          'said': 1,\n",
      "          'antiwar': 1,\n",
      "          'message': 1,\n",
      "          'pronature': 1,\n",
      "          'tubthumping': 1,\n",
      "          'juvenile': 1,\n",
      "          'done': 1,\n",
      "          'complexity': 1,\n",
      "          'thought': 1,\n",
      "          'ever': 1,\n",
      "          'honestly': 1,\n",
      "          'childish': 1,\n",
      "          'seeing': 1,\n",
      "          'haunted': 1,\n",
      "          'quite': 1,\n",
      "          'ready': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'stuart': 14,\n",
      "          'little': 11,\n",
      "          'family': 8,\n",
      "          'movie': 6,\n",
      "          'film': 5,\n",
      "          'even': 5,\n",
      "          'one': 4,\n",
      "          'parents': 4,\n",
      "          'know': 4,\n",
      "          'best': 3,\n",
      "          'really': 3,\n",
      "          'disappoint': 3,\n",
      "          'good': 3,\n",
      "          'makes': 3,\n",
      "          'new': 3,\n",
      "          'littles': 3,\n",
      "          'nice': 3,\n",
      "          'find': 3,\n",
      "          'snowball': 3,\n",
      "          'see': 3,\n",
      "          'films': 2,\n",
      "          'year': 2,\n",
      "          'nits': 2,\n",
      "          'funny': 2,\n",
      "          'time': 2,\n",
      "          'moments': 2,\n",
      "          'sentimental': 2,\n",
      "          'nstuart': 2,\n",
      "          'mouse': 2,\n",
      "          'nhe': 2,\n",
      "          'finally': 2,\n",
      "          'put': 2,\n",
      "          'lives': 2,\n",
      "          'na': 2,\n",
      "          'adorable': 2,\n",
      "          'jonathan': 2,\n",
      "          'lipnicki': 2,\n",
      "          'first': 2,\n",
      "          'pet': 2,\n",
      "          'cat': 2,\n",
      "          'well': 2,\n",
      "          'together': 2,\n",
      "          'instantly': 2,\n",
      "          'real': 2,\n",
      "          'try': 2,\n",
      "          'get': 2,\n",
      "          'ending': 2,\n",
      "          'fantastic': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'like': 2,\n",
      "          'detail': 2,\n",
      "          '90': 2,\n",
      "          'million': 2,\n",
      "          'dollar': 2,\n",
      "          'nanother': 2,\n",
      "          'never': 2,\n",
      "          'movies': 2,\n",
      "          'brings': 2,\n",
      "          'fits': 2,\n",
      "          'character': 2,\n",
      "          'characters': 2,\n",
      "          'love': 2,\n",
      "          'nfor': 2,\n",
      "          'human': 2,\n",
      "          'chemistry': 2,\n",
      "          'make': 2,\n",
      "          'us': 2,\n",
      "          'believe': 2,\n",
      "          'neven': 2,\n",
      "          'though': 2,\n",
      "          'entertainment': 2,\n",
      "          'season': 2,\n",
      "          'far': 2,\n",
      "          'come': 1,\n",
      "          'cute': 1,\n",
      "          'goodnatured': 1,\n",
      "          'nothing': 1,\n",
      "          'squirm': 1,\n",
      "          'except': 1,\n",
      "          'mild': 1,\n",
      "          'cusswords': 1,\n",
      "          'nthough': 1,\n",
      "          'read': 1,\n",
      "          'book': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'remember': 1,\n",
      "          'nfinally': 1,\n",
      "          'gets': 1,\n",
      "          'released': 1,\n",
      "          'trailer': 1,\n",
      "          'surprising': 1,\n",
      "          'twists': 1,\n",
      "          'mixed': 1,\n",
      "          'great': 1,\n",
      "          'gotten': 1,\n",
      "          'home': 1,\n",
      "          'adoption': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'apartment': 1,\n",
      "          'next': 1,\n",
      "          'central': 1,\n",
      "          'park': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'nthey': 1,\n",
      "          'boy': 1,\n",
      "          'george': 1,\n",
      "          'played': 1,\n",
      "          'son': 1,\n",
      "          'nat': 1,\n",
      "          'takes': 1,\n",
      "          'adjusts': 1,\n",
      "          'part': 1,\n",
      "          'getting': 1,\n",
      "          'along': 1,\n",
      "          'ngeorge': 1,\n",
      "          'doesnt': 1,\n",
      "          'take': 1,\n",
      "          'brother': 1,\n",
      "          'two': 1,\n",
      "          'play': 1,\n",
      "          'bond': 1,\n",
      "          'however': 1,\n",
      "          'missing': 1,\n",
      "          'something': 1,\n",
      "          'wants': 1,\n",
      "          'nthe': 1,\n",
      "          'day': 1,\n",
      "          'show': 1,\n",
      "          'doorstep': 1,\n",
      "          'wanting': 1,\n",
      "          'back': 1,\n",
      "          'nhesitating': 1,\n",
      "          'whats': 1,\n",
      "          'friends': 1,\n",
      "          'end': 1,\n",
      "          'truth': 1,\n",
      "          'stuarts': 1,\n",
      "          'past': 1,\n",
      "          'heartwarming': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'noticed': 1,\n",
      "          'njust': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'episode': 1,\n",
      "          '1the': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'look': 1,\n",
      "          'fantastically': 1,\n",
      "          'nfrom': 1,\n",
      "          'fur': 1,\n",
      "          'way': 1,\n",
      "          'walk': 1,\n",
      "          'team': 1,\n",
      "          'lot': 1,\n",
      "          'effort': 1,\n",
      "          'shows': 1,\n",
      "          'common': 1,\n",
      "          'babe': 1,\n",
      "          'talking': 1,\n",
      "          'animals': 1,\n",
      "          'people': 1,\n",
      "          'understanding': 1,\n",
      "          'nit': 1,\n",
      "          'friendly': 1,\n",
      "          'atmosphere': 1,\n",
      "          'scary': 1,\n",
      "          'suspenseful': 1,\n",
      "          'enough': 1,\n",
      "          'scare': 1,\n",
      "          'youngest': 1,\n",
      "          'kids': 1,\n",
      "          'nmichael': 1,\n",
      "          'j': 1,\n",
      "          'fox': 1,\n",
      "          'voice': 1,\n",
      "          'homeward': 1,\n",
      "          'bound': 1,\n",
      "          'job': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'could': 1,\n",
      "          'perfectly': 1,\n",
      "          'ends': 1,\n",
      "          'making': 1,\n",
      "          'lovable': 1,\n",
      "          'gem': 1,\n",
      "          'nathan': 1,\n",
      "          'lane': 1,\n",
      "          'nwhen': 1,\n",
      "          'timon': 1,\n",
      "          '1994s': 1,\n",
      "          'lion': 1,\n",
      "          'king': 1,\n",
      "          'would': 1,\n",
      "          'sworn': 1,\n",
      "          'comedian': 1,\n",
      "          'dislike': 1,\n",
      "          'actors': 1,\n",
      "          'geena': 1,\n",
      "          'davis': 1,\n",
      "          'gives': 1,\n",
      "          'bad': 1,\n",
      "          'performance': 1,\n",
      "          'nshe': 1,\n",
      "          'nicely': 1,\n",
      "          'hugh': 1,\n",
      "          'laurie': 1,\n",
      "          'plays': 1,\n",
      "          'mr': 1,\n",
      "          'nboth': 1,\n",
      "          'happily': 1,\n",
      "          'married': 1,\n",
      "          'song': 1,\n",
      "          '1996s': 1,\n",
      "          'jerry': 1,\n",
      "          'maguire': 1,\n",
      "          'completely': 1,\n",
      "          'cgi': 1,\n",
      "          'care': 1,\n",
      "          'n': 1,\n",
      "          'ideal': 1,\n",
      "          'holiday': 1,\n",
      "          'youngsters': 1,\n",
      "          'adults': 1,\n",
      "          'matter': 1,\n",
      "          'nwe': 1,\n",
      "          'laughs': 1,\n",
      "          'cries': 1,\n",
      "          'fun': 1,\n",
      "          'probably': 1,\n",
      "          'pg': 1,\n",
      "          'rated': 1,\n",
      "          'christmas': 1,\n",
      "          'everyone': 1,\n",
      "          'budget': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'respectively': 1,\n",
      "          'trying': 1,\n",
      "          'yet': 1,\n",
      "          'bicentennial': 1,\n",
      "          'man': 1,\n",
      "          'write': 1,\n",
      "          'toy': 1,\n",
      "          'story': 1,\n",
      "          '2': 1,\n",
      "          'winner': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'chans': 6,\n",
      "          'jackie': 5,\n",
      "          'mr': 5,\n",
      "          'nice': 5,\n",
      "          'guy': 4,\n",
      "          'films': 3,\n",
      "          'involving': 3,\n",
      "          'chan': 3,\n",
      "          'action': 3,\n",
      "          'stateside': 2,\n",
      "          'latest': 2,\n",
      "          'nbut': 2,\n",
      "          'also': 2,\n",
      "          'like': 2,\n",
      "          'cooking': 2,\n",
      "          'show': 2,\n",
      "          'nother': 2,\n",
      "          'plot': 2,\n",
      "          'irrelevant': 2,\n",
      "          'fight': 2,\n",
      "          'spectacular': 2,\n",
      "          'finale': 2,\n",
      "          'even': 2,\n",
      "          'productions': 2,\n",
      "          'releases': 1,\n",
      "          'chopsocky': 1,\n",
      "          'vehicle': 1,\n",
      "          'contrived': 1,\n",
      "          'blockheaded': 1,\n",
      "          'lacking': 1,\n",
      "          'narrative': 1,\n",
      "          'logic': 1,\n",
      "          'highly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ride': 1,\n",
      "          'nonce': 1,\n",
      "          'screenwriters': 1,\n",
      "          'edward': 1,\n",
      "          'tang': 1,\n",
      "          'fibe': 1,\n",
      "          'taken': 1,\n",
      "          'easy': 1,\n",
      "          'way': 1,\n",
      "          'named': 1,\n",
      "          'stars': 1,\n",
      "          'character': 1,\n",
      "          'simply': 1,\n",
      "          'last': 1,\n",
      "          'name': 1,\n",
      "          'nthis': 1,\n",
      "          'worldclass': 1,\n",
      "          'chef': 1,\n",
      "          'cohosts': 1,\n",
      "          'popular': 1,\n",
      "          'australian': 1,\n",
      "          'television': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'happens': 1,\n",
      "          'talented': 1,\n",
      "          'martial': 1,\n",
      "          'artist': 1,\n",
      "          'skills': 1,\n",
      "          'come': 1,\n",
      "          'handy': 1,\n",
      "          'becomes': 1,\n",
      "          'involved': 1,\n",
      "          'ambitious': 1,\n",
      "          'reporters': 1,\n",
      "          'gabrielle': 1,\n",
      "          'fitzpatrick': 1,\n",
      "          'expose': 1,\n",
      "          'drug': 1,\n",
      "          'dealing': 1,\n",
      "          'ring': 1,\n",
      "          'details': 1,\n",
      "          'videotape': 1,\n",
      "          'biker': 1,\n",
      "          'gang': 1,\n",
      "          'fact': 1,\n",
      "          'case': 1,\n",
      "          'nthe': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'guys': 1,\n",
      "          'existence': 1,\n",
      "          'comic': 1,\n",
      "          'scenes': 1,\n",
      "          'disappoint': 1,\n",
      "          'ndirector': 1,\n",
      "          'samo': 1,\n",
      "          'hung': 1,\n",
      "          'cameo': 1,\n",
      "          'role': 1,\n",
      "          'longtime': 1,\n",
      "          'collaborator': 1,\n",
      "          'waste': 1,\n",
      "          'time': 1,\n",
      "          'putting': 1,\n",
      "          'diving': 1,\n",
      "          'headon': 1,\n",
      "          'wild': 1,\n",
      "          'chasefightshootout': 1,\n",
      "          'brief': 1,\n",
      "          'prologue': 1,\n",
      "          'impressive': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'follow': 1,\n",
      "          'notably': 1,\n",
      "          'chase': 1,\n",
      "          'mall': 1,\n",
      "          'directly': 1,\n",
      "          'leads': 1,\n",
      "          'frenzied': 1,\n",
      "          'cliched': 1,\n",
      "          'say': 1,\n",
      "          'fruit': 1,\n",
      "          'cart': 1,\n",
      "          'business': 1,\n",
      "          'runaway': 1,\n",
      "          'carriage': 1,\n",
      "          'extended': 1,\n",
      "          'latefilm': 1,\n",
      "          'sequence': 1,\n",
      "          'construction': 1,\n",
      "          'site': 1,\n",
      "          'hilarious': 1,\n",
      "          'pursuit': 1,\n",
      "          'maze': 1,\n",
      "          'blue': 1,\n",
      "          'doors': 1,\n",
      "          'culminates': 1,\n",
      "          'exciting': 1,\n",
      "          'fights': 1,\n",
      "          'boards': 1,\n",
      "          'cement': 1,\n",
      "          'mixers': 1,\n",
      "          'deadly': 1,\n",
      "          'buzzsaw': 1,\n",
      "          'nnone': 1,\n",
      "          'sequences': 1,\n",
      "          'supercops': 1,\n",
      "          'thrilling': 1,\n",
      "          'helicoptertrain': 1,\n",
      "          'rumble': 1,\n",
      "          'bronxs': 1,\n",
      "          'daring': 1,\n",
      "          'leap': 1,\n",
      "          'two': 1,\n",
      "          'buildings': 1,\n",
      "          'anything': 1,\n",
      "          'inventive': 1,\n",
      "          'ladder': 1,\n",
      "          'air': 1,\n",
      "          'tunnel': 1,\n",
      "          'climax': 1,\n",
      "          'first': 1,\n",
      "          'strike': 1,\n",
      "          'operation': 1,\n",
      "          'condor': 1,\n",
      "          'respectively': 1,\n",
      "          'delivers': 1,\n",
      "          'energy': 1,\n",
      "          'peters': 1,\n",
      "          'end': 1,\n",
      "          'letdown': 1,\n",
      "          'fans': 1,\n",
      "          'athletic': 1,\n",
      "          'prowess': 1,\n",
      "          'nfilmed': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'english': 1,\n",
      "          'voices': 1,\n",
      "          'englishspeaking': 1,\n",
      "          'actors': 1,\n",
      "          'laughably': 1,\n",
      "          'dubbed': 1,\n",
      "          'hints': 1,\n",
      "          'transition': 1,\n",
      "          'hollywood': 1,\n",
      "          'made': 1,\n",
      "          'illfated': 1,\n",
      "          'attempts': 1,\n",
      "          '1980s': 1,\n",
      "          'big': 1,\n",
      "          'brawl': 1,\n",
      "          '1985s': 1,\n",
      "          'protector': 1,\n",
      "          'next': 1,\n",
      "          'pipeline': 1,\n",
      "          'rush': 1,\n",
      "          'hour': 1,\n",
      "          'production': 1,\n",
      "          'costarring': 1,\n",
      "          'chris': 1,\n",
      "          'tucker': 1,\n",
      "          'nhopefully': 1,\n",
      "          'film': 1,\n",
      "          'mere': 1,\n",
      "          'diversion': 1,\n",
      "          'tinseltown': 1,\n",
      "          'continue': 1,\n",
      "          'exuberant': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'unique': 1,\n",
      "          'charm': 1,\n",
      "          'reckless': 1,\n",
      "          'abandon': 1,\n",
      "          'sure': 1,\n",
      "          'diluted': 1,\n",
      "          'american': 1,\n",
      "          'hands': 1,\n",
      "          'much': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dog': 6,\n",
      "          'see': 6,\n",
      "          'movie': 6,\n",
      "          'political': 4,\n",
      "          'hollywood': 4,\n",
      "          'comedy': 4,\n",
      "          'two': 4,\n",
      "          'character': 4,\n",
      "          'hes': 4,\n",
      "          'wag': 3,\n",
      "          'go': 3,\n",
      "          'ndeniro': 3,\n",
      "          'producer': 3,\n",
      "          'hoffman': 3,\n",
      "          'like': 3,\n",
      "          'n': 3,\n",
      "          'nwag': 3,\n",
      "          'one': 3,\n",
      "          'american': 3,\n",
      "          'things': 3,\n",
      "          'knows': 3,\n",
      "          'us': 3,\n",
      "          'nthe': 3,\n",
      "          'way': 3,\n",
      "          'part': 3,\n",
      "          'commercials': 2,\n",
      "          'election': 2,\n",
      "          'never': 2,\n",
      "          'albania': 2,\n",
      "          'harrelson': 2,\n",
      "          'hero': 2,\n",
      "          'nand': 2,\n",
      "          'anything': 2,\n",
      "          'heist': 2,\n",
      "          'best': 2,\n",
      "          'great': 2,\n",
      "          'actors': 2,\n",
      "          'goes': 2,\n",
      "          'washington': 2,\n",
      "          'truth': 2,\n",
      "          'people': 2,\n",
      "          'stupid': 2,\n",
      "          'love': 2,\n",
      "          'even': 2,\n",
      "          'challenged': 2,\n",
      "          'watching': 2,\n",
      "          'house': 2,\n",
      "          'wont': 2,\n",
      "          'politics': 2,\n",
      "          'satire': 2,\n",
      "          'script': 2,\n",
      "          'nits': 2,\n",
      "          'kind': 2,\n",
      "          'may': 2,\n",
      "          'well': 2,\n",
      "          'dont': 2,\n",
      "          'press': 2,\n",
      "          'outside': 2,\n",
      "          'fad': 2,\n",
      "          'king': 2,\n",
      "          'nelson': 2,\n",
      "          'problems': 2,\n",
      "          'role': 2,\n",
      "          'premise': 1,\n",
      "          'simple': 1,\n",
      "          'adequately': 1,\n",
      "          'explained': 1,\n",
      "          'nwith': 1,\n",
      "          '11': 1,\n",
      "          'days': 1,\n",
      "          'president': 1,\n",
      "          'calls': 1,\n",
      "          'dirtytricks': 1,\n",
      "          'artist': 1,\n",
      "          'robert': 1,\n",
      "          'deniro': 1,\n",
      "          'distract': 1,\n",
      "          'attention': 1,\n",
      "          'burgeoning': 1,\n",
      "          'sex': 1,\n",
      "          'scandal': 1,\n",
      "          'enlists': 1,\n",
      "          'dustin': 1,\n",
      "          'produce': 1,\n",
      "          'pageant': 1,\n",
      "          'phony': 1,\n",
      "          'war': 1,\n",
      "          'fought': 1,\n",
      "          'blue': 1,\n",
      "          'screens': 1,\n",
      "          'recording': 1,\n",
      "          'studios': 1,\n",
      "          'nashville': 1,\n",
      "          'woody': 1,\n",
      "          'reluctant': 1,\n",
      "          'psychotic': 1,\n",
      "          'wasnt': 1,\n",
      "          'would': 1,\n",
      "          'secondrate': 1,\n",
      "          'enlivened': 1,\n",
      "          'sneakers': 1,\n",
      "          'nyup': 1,\n",
      "          'stealing': 1,\n",
      "          'speak': 1,\n",
      "          'fun': 1,\n",
      "          'else': 1,\n",
      "          'succeeds': 1,\n",
      "          'based': 1,\n",
      "          'nok': 1,\n",
      "          'maybe': 1,\n",
      "          'thy': 1,\n",
      "          'neighbor': 1,\n",
      "          'thyself': 1,\n",
      "          'plus': 1,\n",
      "          'makes': 1,\n",
      "          'four': 1,\n",
      "          'nonetheless': 1,\n",
      "          'average': 1,\n",
      "          'person': 1,\n",
      "          'thinks': 1,\n",
      "          'theyre': 1,\n",
      "          'really': 1,\n",
      "          'smart': 1,\n",
      "          'satirizes': 1,\n",
      "          'moviemaking': 1,\n",
      "          'process': 1,\n",
      "          'invited': 1,\n",
      "          'nay': 1,\n",
      "          'spend': 1,\n",
      "          'week': 1,\n",
      "          'either': 1,\n",
      "          'actually': 1,\n",
      "          'made': 1,\n",
      "          '48': 1,\n",
      "          'hours': 1,\n",
      "          'straight': 1,\n",
      "          'cspan': 1,\n",
      "          'session': 1,\n",
      "          'utterly': 1,\n",
      "          'predictably': 1,\n",
      "          'certain': 1,\n",
      "          'percentage': 1,\n",
      "          'hard': 1,\n",
      "          'rain': 1,\n",
      "          'magoo': 1,\n",
      "          'notice': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'spent': 1,\n",
      "          'porno': 1,\n",
      "          'art': 1,\n",
      "          'grants': 1,\n",
      "          'cigar': 1,\n",
      "          'subsidies': 1,\n",
      "          'deniros': 1,\n",
      "          'geography': 1,\n",
      "          'skills': 1,\n",
      "          'weak': 1,\n",
      "          'able': 1,\n",
      "          'locate': 1,\n",
      "          'map': 1,\n",
      "          'beauty': 1,\n",
      "          'isnt': 1,\n",
      "          'light': 1,\n",
      "          'meaningless': 1,\n",
      "          'speechless': 1,\n",
      "          'michael': 1,\n",
      "          'keaton': 1,\n",
      "          'geena': 1,\n",
      "          'davis': 1,\n",
      "          'picture': 1,\n",
      "          'level': 1,\n",
      "          'lighthearted': 1,\n",
      "          'politcal': 1,\n",
      "          'neargreatness': 1,\n",
      "          'nnor': 1,\n",
      "          'hardedged': 1,\n",
      "          'cynical': 1,\n",
      "          'look': 1,\n",
      "          'manner': 1,\n",
      "          'morallydeprived': 1,\n",
      "          'ethically': 1,\n",
      "          'babyboomer': 1,\n",
      "          'connives': 1,\n",
      "          'sleazy': 1,\n",
      "          'white': 1,\n",
      "          'primary': 1,\n",
      "          'colors': 1,\n",
      "          'yes': 1,\n",
      "          'little': 1,\n",
      "          'disappointed': 1,\n",
      "          'last': 1,\n",
      "          'elections': 1,\n",
      "          'turned': 1,\n",
      "          'thanks': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'asking': 1,\n",
      "          'ninstead': 1,\n",
      "          'david': 1,\n",
      "          'mamets': 1,\n",
      "          'strikes': 1,\n",
      "          'delicate': 1,\n",
      "          'balance': 1,\n",
      "          'cynicism': 1,\n",
      "          'needed': 1,\n",
      "          'nit': 1,\n",
      "          'keeping': 1,\n",
      "          'fantasy': 1,\n",
      "          'world': 1,\n",
      "          'schemers': 1,\n",
      "          'schemes': 1,\n",
      "          'come': 1,\n",
      "          'beautifully': 1,\n",
      "          'fail': 1,\n",
      "          'entertaining': 1,\n",
      "          'humorous': 1,\n",
      "          'fashion': 1,\n",
      "          'playing': 1,\n",
      "          'variation': 1,\n",
      "          'al': 1,\n",
      "          'capone': 1,\n",
      "          'untouchables': 1,\n",
      "          'without': 1,\n",
      "          'violent': 1,\n",
      "          'rages': 1,\n",
      "          'nwhat': 1,\n",
      "          'brings': 1,\n",
      "          'joy': 1,\n",
      "          'nbaseball': 1,\n",
      "          'minus': 1,\n",
      "          'savage': 1,\n",
      "          'bloody': 1,\n",
      "          'beating': 1,\n",
      "          'bat': 1,\n",
      "          'nhe': 1,\n",
      "          'threatens': 1,\n",
      "          'lot': 1,\n",
      "          'mind': 1,\n",
      "          'nice': 1,\n",
      "          'polite': 1,\n",
      "          'mellow': 1,\n",
      "          'restrained': 1,\n",
      "          'performance': 1,\n",
      "          'fits': 1,\n",
      "          'air': 1,\n",
      "          'gamesmanship': 1,\n",
      "          'nhoffman': 1,\n",
      "          'hand': 1,\n",
      "          'giddy': 1,\n",
      "          'exuberant': 1,\n",
      "          'joyous': 1,\n",
      "          'nthis': 1,\n",
      "          'thing': 1,\n",
      "          'lives': 1,\n",
      "          'excited': 1,\n",
      "          'cant': 1,\n",
      "          'shut': 1,\n",
      "          'neven': 1,\n",
      "          'edge': 1,\n",
      "          'disaster': 1,\n",
      "          'brighteyed': 1,\n",
      "          'behind': 1,\n",
      "          'oddly': 1,\n",
      "          'tinted': 1,\n",
      "          'sunglasses': 1,\n",
      "          'positive': 1,\n",
      "          'ninsiders': 1,\n",
      "          'note': 1,\n",
      "          'basing': 1,\n",
      "          'powerfulbutanonymous': 1,\n",
      "          'true': 1,\n",
      "          'still': 1,\n",
      "          'exudes': 1,\n",
      "          'letsputonashow': 1,\n",
      "          'electricity': 1,\n",
      "          'figure': 1,\n",
      "          'needs': 1,\n",
      "          'frustrating': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'characters': 1,\n",
      "          'drawn': 1,\n",
      "          'acted': 1,\n",
      "          'want': 1,\n",
      "          'listen': 1,\n",
      "          'talk': 1,\n",
      "          'wisedup': 1,\n",
      "          'mamet': 1,\n",
      "          'dialogue': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          'better': 1,\n",
      "          'nanne': 1,\n",
      "          'heche': 1,\n",
      "          'deadbangon': 1,\n",
      "          'portrayal': 1,\n",
      "          'aide': 1,\n",
      "          'cool': 1,\n",
      "          'composed': 1,\n",
      "          'panicked': 1,\n",
      "          'frenzied': 1,\n",
      "          'ndenis': 1,\n",
      "          'leary': 1,\n",
      "          'favorite': 1,\n",
      "          'ref': 1,\n",
      "          'handles': 1,\n",
      "          'profitable': 1,\n",
      "          'backend': 1,\n",
      "          'tshirt': 1,\n",
      "          'tie': 1,\n",
      "          'ins': 1,\n",
      "          'shoe': 1,\n",
      "          'contracts': 1,\n",
      "          'creative': 1,\n",
      "          'innovative': 1,\n",
      "          'ways': 1,\n",
      "          'separate': 1,\n",
      "          'fool': 1,\n",
      "          'money': 1,\n",
      "          'nthey': 1,\n",
      "          'could': 1,\n",
      "          'make': 1,\n",
      "          'whole': 1,\n",
      "          'id': 1,\n",
      "          'nwillie': 1,\n",
      "          'merle': 1,\n",
      "          'haggard': 1,\n",
      "          'handle': 1,\n",
      "          'musical': 1,\n",
      "          'end': 1,\n",
      "          'fabulously': 1,\n",
      "          'upbeat': 1,\n",
      "          'gospel': 1,\n",
      "          'chorus': 1,\n",
      "          'theme': 1,\n",
      "          'song': 1,\n",
      "          'weepy': 1,\n",
      "          'country': 1,\n",
      "          'waltz': 1,\n",
      "          'hilarious': 1,\n",
      "          'ballad': 1,\n",
      "          'green': 1,\n",
      "          'berets': 1,\n",
      "          'parody': 1,\n",
      "          'nwoody': 1,\n",
      "          'brief': 1,\n",
      "          'memorable': 1,\n",
      "          'overmedicated': 1,\n",
      "          'albanian': 1,\n",
      "          'conflict': 1,\n",
      "          'ncraig': 1,\n",
      "          'opposition': 1,\n",
      "          'candidate': 1,\n",
      "          'everreliable': 1,\n",
      "          'william': 1,\n",
      "          'h': 1,\n",
      "          'macy': 1,\n",
      "          'wacky': 1,\n",
      "          'cia': 1,\n",
      "          'agent': 1,\n",
      "          'given': 1,\n",
      "          'surprisingly': 1,\n",
      "          'short': 1,\n",
      "          'shrift': 1,\n",
      "          'small': 1,\n",
      "          'gripes': 1,\n",
      "          'spin': 1,\n",
      "          'doctors': 1,\n",
      "          'side': 1,\n",
      "          'funny': 1,\n",
      "          'serious': 1,\n",
      "          'trivialization': 1,\n",
      "          'dumbing': 1,\n",
      "          'issues': 1,\n",
      "          'impact': 1,\n",
      "          'creating': 1,\n",
      "          'campaign': 1,\n",
      "          'reduction': 1,\n",
      "          'soundbites': 1,\n",
      "          'sidebars': 1,\n",
      "          'list': 1,\n",
      "          'nwe': 1,\n",
      "          'solve': 1,\n",
      "          'taking': 1,\n",
      "          'greater': 1,\n",
      "          'national': 1,\n",
      "          'life': 1,\n",
      "          'educating': 1,\n",
      "          'voters': 1,\n",
      "          'citizens': 1,\n",
      "          'reminds': 1,\n",
      "          'happen': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'moments': 5,\n",
      "          'sally': 4,\n",
      "          'romantic': 4,\n",
      "          'nthe': 4,\n",
      "          'played': 3,\n",
      "          'father': 3,\n",
      "          'fast': 3,\n",
      "          'food': 3,\n",
      "          'comedy': 3,\n",
      "          'movie': 3,\n",
      "          'dark': 3,\n",
      "          'plot': 3,\n",
      "          'drew': 2,\n",
      "          'nafter': 2,\n",
      "          'helicopter': 2,\n",
      "          'tale': 2,\n",
      "          'dorian': 2,\n",
      "          'luke': 2,\n",
      "          'wilson': 2,\n",
      "          'sallys': 2,\n",
      "          'unborn': 2,\n",
      "          'child': 2,\n",
      "          'work': 2,\n",
      "          'restaurant': 2,\n",
      "          'fun': 2,\n",
      "          'nthis': 2,\n",
      "          'comedic': 2,\n",
      "          'sappy': 2,\n",
      "          'also': 2,\n",
      "          'one': 2,\n",
      "          'wife': 2,\n",
      "          'dorians': 2,\n",
      "          'barrymores': 2,\n",
      "          'doesnt': 2,\n",
      "          'seem': 2,\n",
      "          'film': 1,\n",
      "          'opens': 1,\n",
      "          'expectant': 1,\n",
      "          'unwed': 1,\n",
      "          'mother': 1,\n",
      "          'barrymore': 1,\n",
      "          'encounters': 1,\n",
      "          'babys': 1,\n",
      "          'drivethrough': 1,\n",
      "          'window': 1,\n",
      "          'gets': 1,\n",
      "          'milkshake': 1,\n",
      "          'drives': 1,\n",
      "          'pursued': 1,\n",
      "          'military': 1,\n",
      "          'nfrom': 1,\n",
      "          'moment': 1,\n",
      "          'forward': 1,\n",
      "          'know': 1,\n",
      "          'isnt': 1,\n",
      "          'going': 1,\n",
      "          'runofthemill': 1,\n",
      "          'nhome': 1,\n",
      "          'fries': 1,\n",
      "          'tells': 1,\n",
      "          'relationship': 1,\n",
      "          'pilot': 1,\n",
      "          'different': 1,\n",
      "          'kind': 1,\n",
      "          'connection': 1,\n",
      "          'nthan': 1,\n",
      "          'would': 1,\n",
      "          'care': 1,\n",
      "          'admit': 1,\n",
      "          'hint': 1,\n",
      "          'something': 1,\n",
      "          'taking': 1,\n",
      "          'personal': 1,\n",
      "          'professional': 1,\n",
      "          'interest': 1,\n",
      "          'finds': 1,\n",
      "          'local': 1,\n",
      "          'works': 1,\n",
      "          'goes': 1,\n",
      "          'lot': 1,\n",
      "          'nit': 1,\n",
      "          'two': 1,\n",
      "          'levels': 1,\n",
      "          'sweet': 1,\n",
      "          'yet': 1,\n",
      "          'none': 1,\n",
      "          'poignant': 1,\n",
      "          'accompanies': 1,\n",
      "          'lamaze': 1,\n",
      "          'classes': 1,\n",
      "          'nhowever': 1,\n",
      "          'memorable': 1,\n",
      "          'revenge': 1,\n",
      "          'funny': 1,\n",
      "          'happened': 1,\n",
      "          'married': 1,\n",
      "          'man': 1,\n",
      "          'whose': 1,\n",
      "          'catherine': 1,\n",
      "          'ohara': 1,\n",
      "          'nshe': 1,\n",
      "          'wonderful': 1,\n",
      "          'portrayal': 1,\n",
      "          'jealous': 1,\n",
      "          'targeting': 1,\n",
      "          'person': 1,\n",
      "          'affair': 1,\n",
      "          'getting': 1,\n",
      "          'people': 1,\n",
      "          'dirty': 1,\n",
      "          'n': 1,\n",
      "          'apologies': 1,\n",
      "          'sounds': 1,\n",
      "          'cryptic': 1,\n",
      "          'much': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'nrounding': 1,\n",
      "          'cast': 1,\n",
      "          'jake': 1,\n",
      "          'busey': 1,\n",
      "          'angus': 1,\n",
      "          'overzealous': 1,\n",
      "          'brother': 1,\n",
      "          'daryl': 1,\n",
      "          'mitchell': 1,\n",
      "          'roy': 1,\n",
      "          'trainer': 1,\n",
      "          'dialogue': 1,\n",
      "          'sharp': 1,\n",
      "          'filled': 1,\n",
      "          'overtones': 1,\n",
      "          'even': 1,\n",
      "          'nature': 1,\n",
      "          'nif': 1,\n",
      "          'complaints': 1,\n",
      "          'performance': 1,\n",
      "          'nwhile': 1,\n",
      "          'light': 1,\n",
      "          'screen': 1,\n",
      "          'convincing': 1,\n",
      "          'filmed': 1,\n",
      "          'texas': 1,\n",
      "          'characters': 1,\n",
      "          'southern': 1,\n",
      "          'texan': 1,\n",
      "          'accents': 1,\n",
      "          'ndrew': 1,\n",
      "          'accent': 1,\n",
      "          'tends': 1,\n",
      "          'come': 1,\n",
      "          'go': 1,\n",
      "          'problem': 1,\n",
      "          'nas': 1,\n",
      "          'well': 1,\n",
      "          'seems': 1,\n",
      "          'awfully': 1,\n",
      "          'agile': 1,\n",
      "          'woman': 1,\n",
      "          'eight': 1,\n",
      "          'months': 1,\n",
      "          'pregnant': 1,\n",
      "          'nstill': 1,\n",
      "          'please': 1,\n",
      "          'many': 1,\n",
      "          'viewers': 1,\n",
      "          'nwith': 1,\n",
      "          'twists': 1,\n",
      "          'galore': 1,\n",
      "          'hilarious': 1,\n",
      "          'sure': 1,\n",
      "          'entertain': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jackal': 6,\n",
      "          'film': 5,\n",
      "          'real': 5,\n",
      "          'terrorist': 4,\n",
      "          'didnt': 4,\n",
      "          'sutherland': 3,\n",
      "          'montreal': 3,\n",
      "          'known': 3,\n",
      "          'role': 3,\n",
      "          'interesting': 3,\n",
      "          'hour': 3,\n",
      "          'ni': 3,\n",
      "          'second': 2,\n",
      "          'come': 2,\n",
      "          'one': 2,\n",
      "          'quinn': 2,\n",
      "          'joblos': 2,\n",
      "          'canada': 2,\n",
      "          'nthe': 2,\n",
      "          'story': 2,\n",
      "          'naval': 2,\n",
      "          'officer': 2,\n",
      "          'ramirez': 2,\n",
      "          'international': 2,\n",
      "          'put': 2,\n",
      "          'chosen': 2,\n",
      "          'take': 2,\n",
      "          'part': 2,\n",
      "          'well': 2,\n",
      "          'wife': 2,\n",
      "          'great': 2,\n",
      "          'style': 2,\n",
      "          'wasnt': 2,\n",
      "          'much': 2,\n",
      "          'movie': 2,\n",
      "          'mostly': 2,\n",
      "          'first': 2,\n",
      "          'offer': 2,\n",
      "          'scenes': 2,\n",
      "          'show': 2,\n",
      "          'thriller': 2,\n",
      "          'could': 2,\n",
      "          'easily': 2,\n",
      "          'many': 2,\n",
      "          'actor': 2,\n",
      "          'jackalbased': 1,\n",
      "          '1997': 1,\n",
      "          'starring': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'simply': 1,\n",
      "          'entitled': 1,\n",
      "          'stars': 1,\n",
      "          'aidan': 1,\n",
      "          'donald': 1,\n",
      "          'directed': 1,\n",
      "          'man': 1,\n",
      "          'hailed': 1,\n",
      "          'alma': 1,\n",
      "          'matter': 1,\n",
      "          'concordia': 1,\n",
      "          'university': 1,\n",
      "          'based': 1,\n",
      "          'exploits': 1,\n",
      "          'pretend': 1,\n",
      "          '100': 1,\n",
      "          'factual': 1,\n",
      "          'nplot': 1,\n",
      "          'gets': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'cia': 1,\n",
      "          'impersonate': 1,\n",
      "          'order': 1,\n",
      "          'end': 1,\n",
      "          'actual': 1,\n",
      "          'militants': 1,\n",
      "          'radical': 1,\n",
      "          'activities': 1,\n",
      "          'nhe': 1,\n",
      "          'physically': 1,\n",
      "          'resembles': 1,\n",
      "          'tee': 1,\n",
      "          'nramirez': 1,\n",
      "          'reluctantly': 1,\n",
      "          'agrees': 1,\n",
      "          'assignment': 1,\n",
      "          'soon': 1,\n",
      "          'finds': 1,\n",
      "          'wrapped': 1,\n",
      "          'true': 1,\n",
      "          'web': 1,\n",
      "          'terrorism': 1,\n",
      "          'intrigue': 1,\n",
      "          'doublepersonality': 1,\n",
      "          'syndrome': 1,\n",
      "          'sit': 1,\n",
      "          'uninformed': 1,\n",
      "          'kids': 1,\n",
      "          'back': 1,\n",
      "          'states': 1,\n",
      "          'ncritique': 1,\n",
      "          'premise': 1,\n",
      "          'executed': 1,\n",
      "          'enough': 1,\n",
      "          'thrills': 1,\n",
      "          'keep': 1,\n",
      "          'piece': 1,\n",
      "          'throughout': 1,\n",
      "          'close': 1,\n",
      "          'twohour': 1,\n",
      "          'runtime': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'huge': 1,\n",
      "          'fan': 1,\n",
      "          'main': 1,\n",
      "          'actors': 1,\n",
      "          'expect': 1,\n",
      "          'beforehand': 1,\n",
      "          'surprisingly': 1,\n",
      "          'thrilling': 1,\n",
      "          'moments': 1,\n",
      "          'plausible': 1,\n",
      "          'absorbing': 1,\n",
      "          'line': 1,\n",
      "          'buildup': 1,\n",
      "          'things': 1,\n",
      "          'characterization': 1,\n",
      "          'really': 1,\n",
      "          'cranks': 1,\n",
      "          'cool': 1,\n",
      "          'sweet': 1,\n",
      "          'ending': 1,\n",
      "          'nquinn': 1,\n",
      "          'adequate': 1,\n",
      "          'roles': 1,\n",
      "          'anything': 1,\n",
      "          'extraordinary': 1,\n",
      "          'opinion': 1,\n",
      "          'nsutherland': 1,\n",
      "          'kingsley': 1,\n",
      "          'seem': 1,\n",
      "          'playing': 1,\n",
      "          'theyve': 1,\n",
      "          'played': 1,\n",
      "          'respective': 1,\n",
      "          'careers': 1,\n",
      "          'late': 1,\n",
      "          'nonetheless': 1,\n",
      "          'appeared': 1,\n",
      "          'relish': 1,\n",
      "          'coldheartedness': 1,\n",
      "          'characters': 1,\n",
      "          'like': 1,\n",
      "          'performance': 1,\n",
      "          'forth': 1,\n",
      "          'quinns': 1,\n",
      "          'flick': 1,\n",
      "          'doesnt': 1,\n",
      "          'bad': 1,\n",
      "          'however': 1,\n",
      "          'enjoy': 1,\n",
      "          'director': 1,\n",
      "          'duguays': 1,\n",
      "          'cinematic': 1,\n",
      "          'vision': 1,\n",
      "          'nthis': 1,\n",
      "          'boring': 1,\n",
      "          'sequences': 1,\n",
      "          'duguay': 1,\n",
      "          'always': 1,\n",
      "          'seemed': 1,\n",
      "          'find': 1,\n",
      "          'something': 1,\n",
      "          'viewer': 1,\n",
      "          'thought': 1,\n",
      "          'neat': 1,\n",
      "          'nhaving': 1,\n",
      "          'said': 1,\n",
      "          'think': 1,\n",
      "          'needed': 1,\n",
      "          'long': 1,\n",
      "          'tinkering': 1,\n",
      "          'bridge': 1,\n",
      "          'believability': 1,\n",
      "          'fake': 1,\n",
      "          'met': 1,\n",
      "          'jackals': 1,\n",
      "          'girlfriend': 1,\n",
      "          'without': 1,\n",
      "          'retrospection': 1,\n",
      "          'complaints': 1,\n",
      "          'enjoyed': 1,\n",
      "          'pleasure': 1,\n",
      "          'spy': 1,\n",
      "          'genre': 1,\n",
      "          'nlittle': 1,\n",
      "          'facts': 1,\n",
      "          'ben': 1,\n",
      "          'kingsleys': 1,\n",
      "          'name': 1,\n",
      "          'krishna': 1,\n",
      "          'banji': 1,\n",
      "          'stands': 1,\n",
      "          '5': 1,\n",
      "          '8': 1,\n",
      "          'born': 1,\n",
      "          'scarborough': 1,\n",
      "          'england': 1,\n",
      "          'best': 1,\n",
      "          'honor': 1,\n",
      "          '1982s': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'presentation': 1,\n",
      "          'title': 1,\n",
      "          'portrayed': 1,\n",
      "          'ghandi': 1,\n",
      "          'nmany': 1,\n",
      "          'actually': 1,\n",
      "          'shot': 1,\n",
      "          'restfulness': 1,\n",
      "          'ndonald': 1,\n",
      "          'fathered': 1,\n",
      "          'kiefer': 1,\n",
      "          'canadian': 1,\n",
      "          'apparently': 1,\n",
      "          'still': 1,\n",
      "          'owns': 1,\n",
      "          'place': 1,\n",
      "          'north': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'carry': 5,\n",
      "          'caravan': 5,\n",
      "          'kenneth': 3,\n",
      "          'carol': 3,\n",
      "          'performances': 3,\n",
      "          'behind': 2,\n",
      "          'involves': 2,\n",
      "          'group': 2,\n",
      "          'site': 2,\n",
      "          'anna': 2,\n",
      "          'sommer': 2,\n",
      "          'williams': 2,\n",
      "          'major': 2,\n",
      "          'connor': 2,\n",
      "          'trouble': 2,\n",
      "          'bernard': 2,\n",
      "          'bresslaw': 2,\n",
      "          'wife': 2,\n",
      "          'patsy': 2,\n",
      "          'rowlands': 2,\n",
      "          'daphne': 2,\n",
      "          'barnes': 2,\n",
      "          'sims': 2,\n",
      "          'minah': 2,\n",
      "          'holiday': 2,\n",
      "          'jokes': 2,\n",
      "          'greyhound': 2,\n",
      "          'comical': 2,\n",
      "          'moments': 2,\n",
      "          'two': 2,\n",
      "          'windsor': 2,\n",
      "          'davies': 2,\n",
      "          'jack': 2,\n",
      "          'douglas': 2,\n",
      "          'fishing': 2,\n",
      "          'hawkins': 2,\n",
      "          'sherrie': 2,\n",
      "          'hewson': 2,\n",
      "          'nthe': 2,\n",
      "          'movie': 2,\n",
      "          'together': 2,\n",
      "          'cast': 2,\n",
      "          'one': 1,\n",
      "          'last': 1,\n",
      "          'entries': 1,\n",
      "          'longrunning': 1,\n",
      "          'series': 1,\n",
      "          'similar': 1,\n",
      "          'camping': 1,\n",
      "          'holidaymakers': 1,\n",
      "          'descending': 1,\n",
      "          'nprofessors': 1,\n",
      "          'vrooshka': 1,\n",
      "          'elke': 1,\n",
      "          'roland': 1,\n",
      "          'crump': 1,\n",
      "          'archaeology': 1,\n",
      "          'students': 1,\n",
      "          'stay': 1,\n",
      "          'owned': 1,\n",
      "          'leep': 1,\n",
      "          'explore': 1,\n",
      "          'nearby': 1,\n",
      "          'roman': 1,\n",
      "          'settlement': 1,\n",
      "          'remains': 1,\n",
      "          'nanna': 1,\n",
      "          'little': 1,\n",
      "          'understanding': 1,\n",
      "          'english': 1,\n",
      "          'sometimes': 1,\n",
      "          'people': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'end': 1,\n",
      "          'stick': 1,\n",
      "          'instance': 1,\n",
      "          'asking': 1,\n",
      "          'scrubbers': 1,\n",
      "          'dirty': 1,\n",
      "          'means': 1,\n",
      "          'wants': 1,\n",
      "          'scrubbing': 1,\n",
      "          'brush': 1,\n",
      "          'clean': 1,\n",
      "          'narthur': 1,\n",
      "          'upmore': 1,\n",
      "          'linda': 1,\n",
      "          'take': 1,\n",
      "          'mother': 1,\n",
      "          'joan': 1,\n",
      "          'bird': 1,\n",
      "          'nmotherinlaw': 1,\n",
      "          'prevail': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'joe': 1,\n",
      "          'norma': 1,\n",
      "          'baxter': 1,\n",
      "          'ian': 1,\n",
      "          'lavender': 1,\n",
      "          'adrienne': 1,\n",
      "          'posta': 1,\n",
      "          'large': 1,\n",
      "          'irish': 1,\n",
      "          'allows': 1,\n",
      "          'families': 1,\n",
      "          'nfred': 1,\n",
      "          'ramsden': 1,\n",
      "          'ernie': 1,\n",
      "          'bragg': 1,\n",
      "          'leave': 1,\n",
      "          'wives': 1,\n",
      "          'liz': 1,\n",
      "          'fraser': 1,\n",
      "          'patricia': 1,\n",
      "          'franklin': 1,\n",
      "          'nhowever': 1,\n",
      "          'mind': 1,\n",
      "          'catch': 1,\n",
      "          'sight': 1,\n",
      "          'young': 1,\n",
      "          'girls': 1,\n",
      "          'sandra': 1,\n",
      "          'story': 1,\n",
      "          'disruption': 1,\n",
      "          'caused': 1,\n",
      "          'archaeological': 1,\n",
      "          'professors': 1,\n",
      "          'daytoday': 1,\n",
      "          'running': 1,\n",
      "          'camp': 1,\n",
      "          'search': 1,\n",
      "          'bid': 1,\n",
      "          'fred': 1,\n",
      "          'ernies': 1,\n",
      "          'desperate': 1,\n",
      "          'need': 1,\n",
      "          'woman': 1,\n",
      "          'misunderstanding': 1,\n",
      "          'leading': 1,\n",
      "          'striptease': 1,\n",
      "          'parks': 1,\n",
      "          'pub': 1,\n",
      "          'shock': 1,\n",
      "          'store': 1,\n",
      "          'partnership': 1,\n",
      "          'effective': 1,\n",
      "          'amusing': 1,\n",
      "          'nthis': 1,\n",
      "          'binds': 1,\n",
      "          'njoan': 1,\n",
      "          'stands': 1,\n",
      "          'demanding': 1,\n",
      "          'motherinlaw': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'husband': 1,\n",
      "          'welcome': 1,\n",
      "          'addition': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'lowkey': 1,\n",
      "          'peter': 1,\n",
      "          'butterworth': 1,\n",
      "          'handyman': 1,\n",
      "          'poor': 1,\n",
      "          'spend': 1,\n",
      "          'far': 1,\n",
      "          'much': 1,\n",
      "          'time': 1,\n",
      "          'screen': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'real': 1,\n",
      "          'plot': 1,\n",
      "          'speak': 1,\n",
      "          'getting': 1,\n",
      "          'bluer': 1,\n",
      "          'due': 1,\n",
      "          'new': 1,\n",
      "          'scriptwriter': 1,\n",
      "          'dave': 1,\n",
      "          'freeman': 1,\n",
      "          'enough': 1,\n",
      "          'truly': 1,\n",
      "          'bright': 1,\n",
      "          'breezy': 1,\n",
      "          'lift': 1,\n",
      "          'many': 1,\n",
      "          'predecessors': 1,\n",
      "          'nalthough': 1,\n",
      "          'regular': 1,\n",
      "          'depleted': 1,\n",
      "          'ones': 1,\n",
      "          'remain': 1,\n",
      "          'show': 1,\n",
      "          'still': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'film': 1,\n",
      "          'na': 1,\n",
      "          'relative': 1,\n",
      "          'flop': 1,\n",
      "          'cinema': 1,\n",
      "          'deserves': 1,\n",
      "          'lot': 1,\n",
      "          'recognition': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'element': 7,\n",
      "          'fifth': 6,\n",
      "          'nthe': 6,\n",
      "          'besson': 5,\n",
      "          'bessons': 4,\n",
      "          'world': 4,\n",
      "          'vision': 4,\n",
      "          'exciting': 3,\n",
      "          'one': 3,\n",
      "          'screen': 3,\n",
      "          'biggest': 3,\n",
      "          'story': 3,\n",
      "          'made': 3,\n",
      "          'still': 3,\n",
      "          'luc': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'fantasy': 2,\n",
      "          'could': 2,\n",
      "          'actual': 2,\n",
      "          'would': 2,\n",
      "          'nbut': 2,\n",
      "          'best': 2,\n",
      "          'fire': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'left': 2,\n",
      "          'leeloo': 2,\n",
      "          'come': 2,\n",
      "          'interesting': 2,\n",
      "          'fascinating': 2,\n",
      "          'designer': 2,\n",
      "          'mark': 2,\n",
      "          'look': 2,\n",
      "          'absolutely': 2,\n",
      "          'high': 2,\n",
      "          'completely': 2,\n",
      "          'alien': 2,\n",
      "          'blonde': 2,\n",
      "          'number': 2,\n",
      "          'sense': 2,\n",
      "          'nwhile': 2,\n",
      "          'also': 2,\n",
      "          'audience': 2,\n",
      "          'imagination': 2,\n",
      "          'really': 2,\n",
      "          'ruby': 2,\n",
      "          'rhod': 2,\n",
      "          'makes': 2,\n",
      "          'first': 2,\n",
      "          'characters': 2,\n",
      "          'funny': 2,\n",
      "          'climax': 2,\n",
      "          'work': 2,\n",
      "          'original': 2,\n",
      "          'cryptic': 1,\n",
      "          'teaser': 1,\n",
      "          'trailer': 1,\n",
      "          'unspooling': 1,\n",
      "          'moviehouses': 1,\n",
      "          'quite': 1,\n",
      "          'sometime': 1,\n",
      "          'mu5t': 1,\n",
      "          'found': 1,\n",
      "          'nso': 1,\n",
      "          'exactly': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'ambitious': 1,\n",
      "          'muchshroudedinsecrecy': 1,\n",
      "          'help': 1,\n",
      "          'let': 1,\n",
      "          'answer': 1,\n",
      "          'nearly': 1,\n",
      "          'clever': 1,\n",
      "          'think': 1,\n",
      "          'far': 1,\n",
      "          'letdown': 1,\n",
      "          'whole': 1,\n",
      "          'wildly': 1,\n",
      "          'imaginative': 1,\n",
      "          'feast': 1,\n",
      "          'senses': 1,\n",
      "          'films': 1,\n",
      "          'docreate': 1,\n",
      "          'universe': 1,\n",
      "          'unlike': 1,\n",
      "          'presented': 1,\n",
      "          'silver': 1,\n",
      "          'irony': 1,\n",
      "          'thing': 1,\n",
      "          'kept': 1,\n",
      "          'tight': 1,\n",
      "          'wrapsthe': 1,\n",
      "          'storylineis': 1,\n",
      "          'conventional': 1,\n",
      "          'dismayingly': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'nspeaking': 1,\n",
      "          'vaguest': 1,\n",
      "          'possible': 1,\n",
      "          'terms': 1,\n",
      "          'basics': 1,\n",
      "          'plot': 1,\n",
      "          'follows': 1,\n",
      "          'year': 1,\n",
      "          '2259': 1,\n",
      "          'great': 1,\n",
      "          'force': 1,\n",
      "          'evil': 1,\n",
      "          'threatens': 1,\n",
      "          'consume': 1,\n",
      "          'earth': 1,\n",
      "          'four': 1,\n",
      "          'elementsearth': 1,\n",
      "          'wind': 1,\n",
      "          'waterunited': 1,\n",
      "          'stop': 1,\n",
      "          'nfiguring': 1,\n",
      "          'cabbie': 1,\n",
      "          'korben': 1,\n",
      "          'dallas': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'shady': 1,\n",
      "          'southerndrawling': 1,\n",
      "          'entrepreneur': 1,\n",
      "          'name': 1,\n",
      "          'zorg': 1,\n",
      "          'hilariously': 1,\n",
      "          'hammy': 1,\n",
      "          'gary': 1,\n",
      "          'oldman': 1,\n",
      "          'picking': 1,\n",
      "          'professional': 1,\n",
      "          'priest': 1,\n",
      "          'ian': 1,\n",
      "          'holm': 1,\n",
      "          'mysterious': 1,\n",
      "          'creature': 1,\n",
      "          'named': 1,\n",
      "          'milla': 1,\n",
      "          'jovovich': 1,\n",
      "          'nall': 1,\n",
      "          'pieces': 1,\n",
      "          'together': 1,\n",
      "          'tidy': 1,\n",
      "          'somewhat': 1,\n",
      "          'underwhelmingand': 1,\n",
      "          'unsurprisingfashion': 1,\n",
      "          'denying': 1,\n",
      "          'basic': 1,\n",
      "          'holds': 1,\n",
      "          'intrinsic': 1,\n",
      "          'interest': 1,\n",
      "          'nwhat': 1,\n",
      "          'remains': 1,\n",
      "          'however': 1,\n",
      "          'brief': 1,\n",
      "          'glimpses': 1,\n",
      "          'created': 1,\n",
      "          'production': 1,\n",
      "          'dan': 1,\n",
      "          'weil': 1,\n",
      "          'director': 1,\n",
      "          'photography': 1,\n",
      "          'thierry': 1,\n",
      "          'arbogast': 1,\n",
      "          'visual': 1,\n",
      "          'effects': 1,\n",
      "          'supervisor': 1,\n",
      "          'stetson': 1,\n",
      "          'crew': 1,\n",
      "          'digital': 1,\n",
      "          'domain': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'right': 1,\n",
      "          'opening': 1,\n",
      "          'moments': 1,\n",
      "          'last': 1,\n",
      "          'frenzied': 1,\n",
      "          'cityscape': 1,\n",
      "          'vibrant': 1,\n",
      "          'dayglo': 1,\n",
      "          'colors': 1,\n",
      "          'tall': 1,\n",
      "          'buildings': 1,\n",
      "          'penetrating': 1,\n",
      "          'clouds': 1,\n",
      "          'swarm': 1,\n",
      "          'cars': 1,\n",
      "          'cabs': 1,\n",
      "          'vehicles': 1,\n",
      "          'flying': 1,\n",
      "          'labyrinthian': 1,\n",
      "          'skyways': 1,\n",
      "          'breathtaking': 1,\n",
      "          'behold': 1,\n",
      "          'especially': 1,\n",
      "          'wild': 1,\n",
      "          'car': 1,\n",
      "          'chase': 1,\n",
      "          'sequence': 1,\n",
      "          'early': 1,\n",
      "          'captivating': 1,\n",
      "          'people': 1,\n",
      "          'inhabiting': 1,\n",
      "          'settings': 1,\n",
      "          'werent': 1,\n",
      "          'equally': 1,\n",
      "          'ever': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'exotic': 1,\n",
      "          'menagerie': 1,\n",
      "          'creatures': 1,\n",
      "          'populate': 1,\n",
      "          'bulky': 1,\n",
      "          'robots': 1,\n",
      "          'doglike': 1,\n",
      "          'mangalores': 1,\n",
      "          'humans': 1,\n",
      "          'outfitted': 1,\n",
      "          'costumes': 1,\n",
      "          'eccentric': 1,\n",
      "          'jeanpaul': 1,\n",
      "          'gaulthier': 1,\n",
      "          'known': 1,\n",
      "          'creating': 1,\n",
      "          'madonnas': 1,\n",
      "          'pointy': 1,\n",
      "          'bustier': 1,\n",
      "          'getup': 1,\n",
      "          'ambition': 1,\n",
      "          'tour': 1,\n",
      "          'ngaulthiers': 1,\n",
      "          'outlandish': 1,\n",
      "          'creations': 1,\n",
      "          'worn': 1,\n",
      "          'entirely': 1,\n",
      "          'white': 1,\n",
      "          'straps': 1,\n",
      "          'feel': 1,\n",
      "          'home': 1,\n",
      "          'futuristic': 1,\n",
      "          'fashion': 1,\n",
      "          'runway': 1,\n",
      "          'add': 1,\n",
      "          'otherworldliness': 1,\n",
      "          'bold': 1,\n",
      "          'virtue': 1,\n",
      "          'obstacle': 1,\n",
      "          'reaching': 1,\n",
      "          'mass': 1,\n",
      "          'nfor': 1,\n",
      "          'certain': 1,\n",
      "          'things': 1,\n",
      "          'may': 1,\n",
      "          'bit': 1,\n",
      "          'quirky': 1,\n",
      "          'bizarre': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'middle': 1,\n",
      "          'america': 1,\n",
      "          'make': 1,\n",
      "          'outrageous': 1,\n",
      "          'character': 1,\n",
      "          'chris': 1,\n",
      "          'tucker': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'flamboyant': 1,\n",
      "          'disc': 1,\n",
      "          'jockey': 1,\n",
      "          'dennis': 1,\n",
      "          'rodman': 1,\n",
      "          'conservativehe': 1,\n",
      "          'raucous': 1,\n",
      "          'entrance': 1,\n",
      "          'dressed': 1,\n",
      "          'animal': 1,\n",
      "          'print': 1,\n",
      "          'dress': 1,\n",
      "          'sporting': 1,\n",
      "          'hairdo': 1,\n",
      "          'shape': 1,\n",
      "          'hair': 1,\n",
      "          'dryer': 1,\n",
      "          'speaking': 1,\n",
      "          'pitches': 1,\n",
      "          'rapid': 1,\n",
      "          'speed': 1,\n",
      "          'nat': 1,\n",
      "          'hyper': 1,\n",
      "          'energy': 1,\n",
      "          'act': 1,\n",
      "          'wears': 1,\n",
      "          'welcome': 1,\n",
      "          'quickly': 1,\n",
      "          'nnot': 1,\n",
      "          'irritating': 1,\n",
      "          'strange': 1,\n",
      "          'musical': 1,\n",
      "          'blueskinned': 1,\n",
      "          'chanteuse': 1,\n",
      "          'diva': 1,\n",
      "          'maiwenn': 1,\n",
      "          'lebesco': 1,\n",
      "          'singsand': 1,\n",
      "          'dancesan': 1,\n",
      "          'aria': 1,\n",
      "          'unlikely': 1,\n",
      "          'blend': 1,\n",
      "          'classical': 1,\n",
      "          'opera': 1,\n",
      "          'techno': 1,\n",
      "          'tune': 1,\n",
      "          'entirety': 1,\n",
      "          'longtime': 1,\n",
      "          'collaborator': 1,\n",
      "          'eric': 1,\n",
      "          'serras': 1,\n",
      "          'innovative': 1,\n",
      "          'score': 1,\n",
      "          'haunting': 1,\n",
      "          'jarring': 1,\n",
      "          'nthen': 1,\n",
      "          'campy': 1,\n",
      "          'touches': 1,\n",
      "          'humor': 1,\n",
      "          'coscripter': 1,\n",
      "          'robert': 1,\n",
      "          'kamen': 1,\n",
      "          'sprinkle': 1,\n",
      "          'throughout': 1,\n",
      "          'often': 1,\n",
      "          'silly': 1,\n",
      "          'forced': 1,\n",
      "          'comic': 1,\n",
      "          'sexual': 1,\n",
      "          'encounter': 1,\n",
      "          'flight': 1,\n",
      "          'attendant': 1,\n",
      "          'highly': 1,\n",
      "          'distracting': 1,\n",
      "          'boot': 1,\n",
      "          'storys': 1,\n",
      "          'weakness': 1,\n",
      "          'shines': 1,\n",
      "          'conclusion': 1,\n",
      "          'visually': 1,\n",
      "          'aurally': 1,\n",
      "          'spectacular': 1,\n",
      "          'events': 1,\n",
      "          'detailed': 1,\n",
      "          'powerful': 1,\n",
      "          'big': 1,\n",
      "          'serious': 1,\n",
      "          'dramatic': 1,\n",
      "          'met': 1,\n",
      "          'snickers': 1,\n",
      "          'ambitiously': 1,\n",
      "          'strives': 1,\n",
      "          'profundity': 1,\n",
      "          'even': 1,\n",
      "          'begun': 1,\n",
      "          'toward': 1,\n",
      "          'nas': 1,\n",
      "          'end': 1,\n",
      "          'something': 1,\n",
      "          'bigger': 1,\n",
      "          'said': 1,\n",
      "          'nthis': 1,\n",
      "          'suspicion': 1,\n",
      "          'confirmed': 1,\n",
      "          'told': 1,\n",
      "          'lobby': 1,\n",
      "          'following': 1,\n",
      "          'screening': 1,\n",
      "          'imagine': 1,\n",
      "          'filmmaker': 1,\n",
      "          'watching': 1,\n",
      "          'enemy': 1,\n",
      "          'critics': 1,\n",
      "          'half': 1,\n",
      "          'lengthy': 1,\n",
      "          'screenplay': 1,\n",
      "          'second': 1,\n",
      "          'halfnow': 1,\n",
      "          'titled': 1,\n",
      "          'mr': 1,\n",
      "          'shadowis': 1,\n",
      "          'waiting': 1,\n",
      "          'nstill': 1,\n",
      "          'despite': 1,\n",
      "          'problems': 1,\n",
      "          'artistic': 1,\n",
      "          'triumph': 1,\n",
      "          'rarely': 1,\n",
      "          'filmmakers': 1,\n",
      "          'audacious': 1,\n",
      "          'undiluted': 1,\n",
      "          'glory': 1,\n",
      "          'nit': 1,\n",
      "          'example': 1,\n",
      "          'artists': 1,\n",
      "          'fervid': 1,\n",
      "          'transport': 1,\n",
      "          'intoxicating': 1,\n",
      "          'generally': 1,\n",
      "          'seen': 1,\n",
      "          'dreams': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 7,\n",
      "          'bad': 4,\n",
      "          'things': 4,\n",
      "          'friends': 4,\n",
      "          'robert': 4,\n",
      "          'much': 4,\n",
      "          'movie': 3,\n",
      "          'five': 3,\n",
      "          'go': 3,\n",
      "          'even': 3,\n",
      "          'comedy': 3,\n",
      "          'nit': 3,\n",
      "          'fun': 3,\n",
      "          'character': 3,\n",
      "          'would': 3,\n",
      "          'end': 2,\n",
      "          'violence': 2,\n",
      "          'couldnt': 2,\n",
      "          'help': 2,\n",
      "          'laura': 2,\n",
      "          'diaz': 2,\n",
      "          'daniel': 2,\n",
      "          'nafter': 2,\n",
      "          'hotel': 2,\n",
      "          'room': 2,\n",
      "          'puts': 2,\n",
      "          'police': 2,\n",
      "          'one': 2,\n",
      "          'ever': 2,\n",
      "          'n': 2,\n",
      "          'nby': 2,\n",
      "          'time': 2,\n",
      "          'wedding': 2,\n",
      "          'something': 2,\n",
      "          'original': 2,\n",
      "          'hateful': 2,\n",
      "          'characters': 2,\n",
      "          'get': 2,\n",
      "          'beginning': 2,\n",
      "          'death': 2,\n",
      "          'eventually': 2,\n",
      "          'seen': 2,\n",
      "          'think': 2,\n",
      "          'gives': 2,\n",
      "          'usually': 2,\n",
      "          'delightfully': 1,\n",
      "          'morbid': 1,\n",
      "          'year': 1,\n",
      "          'goes': 1,\n",
      "          'far': 1,\n",
      "          'deep': 1,\n",
      "          'outrageousness': 1,\n",
      "          'material': 1,\n",
      "          'starts': 1,\n",
      "          'leaving': 1,\n",
      "          'homes': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'bachelor': 1,\n",
      "          'party': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'groomtobe': 1,\n",
      "          'kyle': 1,\n",
      "          'fisher': 1,\n",
      "          'jon': 1,\n",
      "          'favreau': 1,\n",
      "          'married': 1,\n",
      "          'controlling': 1,\n",
      "          'weddingobsessed': 1,\n",
      "          'cameron': 1,\n",
      "          'real': 1,\n",
      "          'estate': 1,\n",
      "          'agent': 1,\n",
      "          'boyd': 1,\n",
      "          'christian': 1,\n",
      "          'slater': 1,\n",
      "          'quiet': 1,\n",
      "          'charles': 1,\n",
      "          'leland': 1,\n",
      "          'orser': 1,\n",
      "          'brothers': 1,\n",
      "          'michael': 1,\n",
      "          'jeremy': 1,\n",
      "          'piven': 1,\n",
      "          'family': 1,\n",
      "          'man': 1,\n",
      "          'adam': 1,\n",
      "          'stern': 1,\n",
      "          'wild': 1,\n",
      "          'night': 1,\n",
      "          'gambling': 1,\n",
      "          'boozing': 1,\n",
      "          'drugs': 1,\n",
      "          'stripper': 1,\n",
      "          'carla': 1,\n",
      "          'scott': 1,\n",
      "          'paid': 1,\n",
      "          'comes': 1,\n",
      "          'freak': 1,\n",
      "          'accident': 1,\n",
      "          'everyones': 1,\n",
      "          'terror': 1,\n",
      "          'killed': 1,\n",
      "          'nas': 1,\n",
      "          'two': 1,\n",
      "          'options': 1,\n",
      "          'prison': 1,\n",
      "          'bury': 1,\n",
      "          'desert': 1,\n",
      "          'find': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'enters': 1,\n",
      "          'unexpectantly': 1,\n",
      "          'sees': 1,\n",
      "          'body': 1,\n",
      "          'forced': 1,\n",
      "          'kill': 1,\n",
      "          'well': 1,\n",
      "          'okay': 1,\n",
      "          'option': 1,\n",
      "          'nyou': 1,\n",
      "          'forget': 1,\n",
      "          'calling': 1,\n",
      "          'says': 1,\n",
      "          'return': 1,\n",
      "          'home': 1,\n",
      "          'draws': 1,\n",
      "          'nearer': 1,\n",
      "          'overcome': 1,\n",
      "          'guilt': 1,\n",
      "          'sets': 1,\n",
      "          'elaborate': 1,\n",
      "          'series': 1,\n",
      "          'event': 1,\n",
      "          'includes': 1,\n",
      "          'murder': 1,\n",
      "          'doublecrosses': 1,\n",
      "          'inevitable': 1,\n",
      "          'hell': 1,\n",
      "          'actor': 1,\n",
      "          'peter': 1,\n",
      "          'bergs': 1,\n",
      "          'feature': 1,\n",
      "          'directing': 1,\n",
      "          'debut': 1,\n",
      "          'shockingly': 1,\n",
      "          'perverse': 1,\n",
      "          'wicked': 1,\n",
      "          'theres': 1,\n",
      "          'mary': 1,\n",
      "          'wanted': 1,\n",
      "          'pulls': 1,\n",
      "          'stops': 1,\n",
      "          'create': 1,\n",
      "          'fresh': 1,\n",
      "          'hilarious': 1,\n",
      "          'requires': 1,\n",
      "          'surprisingly': 1,\n",
      "          'graphic': 1,\n",
      "          'gore': 1,\n",
      "          'slew': 1,\n",
      "          'truly': 1,\n",
      "          'deserve': 1,\n",
      "          'screenplay': 1,\n",
      "          'also': 1,\n",
      "          'written': 1,\n",
      "          'berg': 1,\n",
      "          'put': 1,\n",
      "          'mildly': 1,\n",
      "          'funny': 1,\n",
      "          'courageous': 1,\n",
      "          'nduring': 1,\n",
      "          'second': 1,\n",
      "          'act': 1,\n",
      "          'slightly': 1,\n",
      "          'dwindle': 1,\n",
      "          'due': 1,\n",
      "          'undermine': 1,\n",
      "          'humor': 1,\n",
      "          'recouped': 1,\n",
      "          'climax': 1,\n",
      "          'believed': 1,\n",
      "          'dialogue': 1,\n",
      "          'edgy': 1,\n",
      "          'inventive': 1,\n",
      "          'proves': 1,\n",
      "          'doesnt': 1,\n",
      "          'necessarily': 1,\n",
      "          'require': 1,\n",
      "          'likable': 1,\n",
      "          'extremely': 1,\n",
      "          'enjoyable': 1,\n",
      "          'ntheres': 1,\n",
      "          'showing': 1,\n",
      "          'ignorable': 1,\n",
      "          'people': 1,\n",
      "          'getting': 1,\n",
      "          'desserts': 1,\n",
      "          'ncameron': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'date': 1,\n",
      "          'lot': 1,\n",
      "          'playing': 1,\n",
      "          'turns': 1,\n",
      "          'crazy': 1,\n",
      "          'male': 1,\n",
      "          'ndiaz': 1,\n",
      "          'overblown': 1,\n",
      "          'energy': 1,\n",
      "          'really': 1,\n",
      "          'deserves': 1,\n",
      "          'supporting': 1,\n",
      "          'actress': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'come': 1,\n",
      "          'next': 1,\n",
      "          'january': 1,\n",
      "          'beating': 1,\n",
      "          'someone': 1,\n",
      "          'coat': 1,\n",
      "          'hanger': 1,\n",
      "          'reciting': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'stuff': 1,\n",
      "          'crapper': 1,\n",
      "          'ass': 1,\n",
      "          'upstairs': 1,\n",
      "          'crack': 1,\n",
      "          'ballstothewall': 1,\n",
      "          'become': 1,\n",
      "          'njeanne': 1,\n",
      "          'tripplehorn': 1,\n",
      "          'creates': 1,\n",
      "          'another': 1,\n",
      "          'sterns': 1,\n",
      "          'wife': 1,\n",
      "          'late': 1,\n",
      "          'picture': 1,\n",
      "          'discover': 1,\n",
      "          'tough': 1,\n",
      "          'kickboxer': 1,\n",
      "          'messed': 1,\n",
      "          'around': 1,\n",
      "          'level': 1,\n",
      "          'entertaining': 1,\n",
      "          'surprising': 1,\n",
      "          'njust': 1,\n",
      "          'thought': 1,\n",
      "          'could': 1,\n",
      "          'predict': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'little': 1,\n",
      "          'twist': 1,\n",
      "          'involving': 1,\n",
      "          'absolutely': 1,\n",
      "          'wacky': 1,\n",
      "          'last': 1,\n",
      "          'sequence': 1,\n",
      "          'perfect': 1,\n",
      "          'managed': 1,\n",
      "          'overthetop': 1,\n",
      "          'nalthough': 1,\n",
      "          'enjoyed': 1,\n",
      "          'immensely': 1,\n",
      "          'let': 1,\n",
      "          'make': 1,\n",
      "          'clear': 1,\n",
      "          'everyone': 1,\n",
      "          'tasteless': 1,\n",
      "          'anything': 1,\n",
      "          'violent': 1,\n",
      "          'bloody': 1,\n",
      "          'rrated': 1,\n",
      "          'offensive': 1,\n",
      "          'nluckily': 1,\n",
      "          'elements': 1,\n",
      "          'prefer': 1,\n",
      "          'since': 1,\n",
      "          'clearly': 1,\n",
      "          'shows': 1,\n",
      "          'filmmakers': 1,\n",
      "          'set': 1,\n",
      "          'making': 1,\n",
      "          'noholdsbarred': 1,\n",
      "          'politically': 1,\n",
      "          'incorrect': 1,\n",
      "          'fact': 1,\n",
      "          'slipped': 1,\n",
      "          'cracks': 1,\n",
      "          'mainstream': 1,\n",
      "          'safe': 1,\n",
      "          'widereleases': 1,\n",
      "          'coming': 1,\n",
      "          'lately': 1,\n",
      "          'still': 1,\n",
      "          'hope': 1,\n",
      "          'hollywood': 1,\n",
      "          'industry': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rules': 8,\n",
      "          'homer': 7,\n",
      "          'larch': 5,\n",
      "          'matter': 3,\n",
      "          'dr': 3,\n",
      "          'caine': 3,\n",
      "          'nhe': 3,\n",
      "          'didnt': 3,\n",
      "          'world': 3,\n",
      "          'go': 3,\n",
      "          'apple': 3,\n",
      "          'many': 3,\n",
      "          'life': 3,\n",
      "          'list': 3,\n",
      "          'us': 3,\n",
      "          'hard': 2,\n",
      "          'imagine': 2,\n",
      "          'movie': 2,\n",
      "          'abortion': 2,\n",
      "          'sensitive': 2,\n",
      "          'even': 2,\n",
      "          'cider': 2,\n",
      "          'house': 2,\n",
      "          'manages': 2,\n",
      "          'subject': 2,\n",
      "          'heart': 2,\n",
      "          'young': 2,\n",
      "          'man': 2,\n",
      "          'maguire': 2,\n",
      "          'ride': 2,\n",
      "          'orphans': 2,\n",
      "          'come': 2,\n",
      "          'seeking': 2,\n",
      "          'nfiguring': 2,\n",
      "          'well': 2,\n",
      "          'begins': 2,\n",
      "          'new': 2,\n",
      "          'yet': 2,\n",
      "          'lifes': 2,\n",
      "          'mr': 2,\n",
      "          'becoming': 2,\n",
      "          'pickers': 2,\n",
      "          'posted': 2,\n",
      "          'ignore': 2,\n",
      "          'make': 2,\n",
      "          'given': 2,\n",
      "          'thine': 2,\n",
      "          'follows': 2,\n",
      "          'includes': 1,\n",
      "          'incest': 1,\n",
      "          'prominent': 1,\n",
      "          'plot': 1,\n",
      "          'devices': 1,\n",
      "          'could': 1,\n",
      "          'delicate': 1,\n",
      "          'insightful': 1,\n",
      "          'yes': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nsomehow': 1,\n",
      "          'keep': 1,\n",
      "          'keel': 1,\n",
      "          'face': 1,\n",
      "          'harsh': 1,\n",
      "          'allows': 1,\n",
      "          'substantial': 1,\n",
      "          'amount': 1,\n",
      "          'shine': 1,\n",
      "          'nset': 1,\n",
      "          '1940s': 1,\n",
      "          'film': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'unique': 1,\n",
      "          'named': 1,\n",
      "          'wells': 1,\n",
      "          'tobey': 1,\n",
      "          'devil': 1,\n",
      "          'nan': 1,\n",
      "          'orphan': 1,\n",
      "          'twice': 1,\n",
      "          'rejected': 1,\n",
      "          'infant': 1,\n",
      "          'possible': 1,\n",
      "          'adoptive': 1,\n",
      "          'parents': 1,\n",
      "          'grows': 1,\n",
      "          'care': 1,\n",
      "          'tutelage': 1,\n",
      "          'wilbur': 1,\n",
      "          'michael': 1,\n",
      "          'little': 1,\n",
      "          'voice': 1,\n",
      "          'father': 1,\n",
      "          'figure': 1,\n",
      "          'st': 1,\n",
      "          'cloud': 1,\n",
      "          'obstetrician': 1,\n",
      "          'abortionist': 1,\n",
      "          'unhappily': 1,\n",
      "          'pregnant': 1,\n",
      "          'women': 1,\n",
      "          'help': 1,\n",
      "          'long': 1,\n",
      "          'going': 1,\n",
      "          'stay': 1,\n",
      "          'orphanage': 1,\n",
      "          'might': 1,\n",
      "          'use': 1,\n",
      "          'teaching': 1,\n",
      "          'knows': 1,\n",
      "          'obstetrics': 1,\n",
      "          'nsoon': 1,\n",
      "          'delivering': 1,\n",
      "          'babies': 1,\n",
      "          'like': 1,\n",
      "          'professional': 1,\n",
      "          'refuses': 1,\n",
      "          'perform': 1,\n",
      "          'abortions': 1,\n",
      "          'instead': 1,\n",
      "          'wondering': 1,\n",
      "          'couples': 1,\n",
      "          'behave': 1,\n",
      "          'responsibly': 1,\n",
      "          'nlarch': 1,\n",
      "          'old': 1,\n",
      "          'experienced': 1,\n",
      "          'youthful': 1,\n",
      "          'ideals': 1,\n",
      "          'marvels': 1,\n",
      "          'continues': 1,\n",
      "          'high': 1,\n",
      "          'expectations': 1,\n",
      "          'people': 1,\n",
      "          'nsuch': 1,\n",
      "          'result': 1,\n",
      "          'insulated': 1,\n",
      "          'upbringing': 1,\n",
      "          'nthough': 1,\n",
      "          'skilled': 1,\n",
      "          'certain': 1,\n",
      "          'medical': 1,\n",
      "          'procedures': 1,\n",
      "          'remains': 1,\n",
      "          'woefully': 1,\n",
      "          'naive': 1,\n",
      "          'ignorant': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'finally': 1,\n",
      "          'figures': 1,\n",
      "          'order': 1,\n",
      "          'find': 1,\n",
      "          'place': 1,\n",
      "          'must': 1,\n",
      "          'nbefriending': 1,\n",
      "          'couple': 1,\n",
      "          'see': 1,\n",
      "          'hitches': 1,\n",
      "          'parlays': 1,\n",
      "          'landing': 1,\n",
      "          'job': 1,\n",
      "          'picker': 1,\n",
      "          'group': 1,\n",
      "          'black': 1,\n",
      "          'migrant': 1,\n",
      "          'workers': 1,\n",
      "          'orchard': 1,\n",
      "          'lived': 1,\n",
      "          'nthus': 1,\n",
      "          'worldly': 1,\n",
      "          'instruction': 1,\n",
      "          'friend': 1,\n",
      "          'candy': 1,\n",
      "          'kendall': 1,\n",
      "          'charlize': 1,\n",
      "          'theron': 1,\n",
      "          'astronauts': 1,\n",
      "          'wife': 1,\n",
      "          'willing': 1,\n",
      "          'tutor': 1,\n",
      "          'ntobey': 1,\n",
      "          'cast': 1,\n",
      "          'inherently': 1,\n",
      "          'good': 1,\n",
      "          'answers': 1,\n",
      "          'questions': 1,\n",
      "          'nmany': 1,\n",
      "          'unaware': 1,\n",
      "          'needed': 1,\n",
      "          'asked': 1,\n",
      "          'demonstrates': 1,\n",
      "          'quiet': 1,\n",
      "          'strength': 1,\n",
      "          'thoughtful': 1,\n",
      "          'curiosity': 1,\n",
      "          'warm': 1,\n",
      "          'appealing': 1,\n",
      "          'nmichael': 1,\n",
      "          'word': 1,\n",
      "          'brilliant': 1,\n",
      "          'caring': 1,\n",
      "          'caretaker': 1,\n",
      "          'helped': 1,\n",
      "          'bring': 1,\n",
      "          'ncalling': 1,\n",
      "          'princes': 1,\n",
      "          'maine': 1,\n",
      "          'kings': 1,\n",
      "          'england': 1,\n",
      "          'ritualistic': 1,\n",
      "          'goodnight': 1,\n",
      "          'communicate': 1,\n",
      "          'love': 1,\n",
      "          'commitment': 1,\n",
      "          'towards': 1,\n",
      "          'children': 1,\n",
      "          'without': 1,\n",
      "          'maudlin': 1,\n",
      "          'saccharine': 1,\n",
      "          'ndelroy': 1,\n",
      "          'lindo': 1,\n",
      "          'less': 1,\n",
      "          'ordinary': 1,\n",
      "          'powerful': 1,\n",
      "          'moments': 1,\n",
      "          'rose': 1,\n",
      "          'strong': 1,\n",
      "          'charismatic': 1,\n",
      "          'leader': 1,\n",
      "          'joins': 1,\n",
      "          'ndirector': 1,\n",
      "          'lasse': 1,\n",
      "          'hallstrom': 1,\n",
      "          'whats': 1,\n",
      "          'eating': 1,\n",
      "          'gilbert': 1,\n",
      "          'grape': 1,\n",
      "          'screenwriternovelist': 1,\n",
      "          'john': 1,\n",
      "          'irving': 1,\n",
      "          'according': 1,\n",
      "          'garp': 1,\n",
      "          'adapted': 1,\n",
      "          'work': 1,\n",
      "          'deserve': 1,\n",
      "          'much': 1,\n",
      "          'credit': 1,\n",
      "          'balanced': 1,\n",
      "          'approach': 1,\n",
      "          'nregardless': 1,\n",
      "          'ones': 1,\n",
      "          'personal': 1,\n",
      "          'stand': 1,\n",
      "          'divisive': 1,\n",
      "          'anyone': 1,\n",
      "          'offended': 1,\n",
      "          'evenhanded': 1,\n",
      "          'treatment': 1,\n",
      "          'used': 1,\n",
      "          'filmmakers': 1,\n",
      "          'nthe': 1,\n",
      "          'title': 1,\n",
      "          'reference': 1,\n",
      "          'quarters': 1,\n",
      "          'illiterate': 1,\n",
      "          'apply': 1,\n",
      "          'since': 1,\n",
      "          'hand': 1,\n",
      "          'writing': 1,\n",
      "          'decide': 1,\n",
      "          'along': 1,\n",
      "          'ndr': 1,\n",
      "          'way': 1,\n",
      "          'acts': 1,\n",
      "          'similarly': 1,\n",
      "          'nthere': 1,\n",
      "          'danger': 1,\n",
      "          'line': 1,\n",
      "          'reasoning': 1,\n",
      "          'ngod': 1,\n",
      "          'also': 1,\n",
      "          'set': 1,\n",
      "          'nunlike': 1,\n",
      "          'gods': 1,\n",
      "          'followed': 1,\n",
      "          'promise': 1,\n",
      "          'benefits': 1,\n",
      "          'beyond': 1,\n",
      "          'imagination': 1,\n",
      "          'nand': 1,\n",
      "          'continue': 1,\n",
      "          'preferring': 1,\n",
      "          'n': 1,\n",
      "          'trust': 1,\n",
      "          'lord': 1,\n",
      "          'lean': 1,\n",
      "          'unto': 1,\n",
      "          'understanding': 1,\n",
      "          'nproverbs': 1,\n",
      "          '3': 1,\n",
      "          '5': 1,\n",
      "          'kjv': 1,\n",
      "          'njust': 1,\n",
      "          'builder': 1,\n",
      "          'designers': 1,\n",
      "          'blueprint': 1,\n",
      "          'conductor': 1,\n",
      "          'composers': 1,\n",
      "          'score': 1,\n",
      "          'shouldnt': 1,\n",
      "          'follow': 1,\n",
      "          'architect': 1,\n",
      "          'blessing': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'vivian': 10,\n",
      "          'woman': 9,\n",
      "          'edward': 9,\n",
      "          'pretty': 7,\n",
      "          'roberts': 7,\n",
      "          'gere': 6,\n",
      "          'film': 6,\n",
      "          'romantic': 5,\n",
      "          'nthe': 5,\n",
      "          'two': 4,\n",
      "          'since': 4,\n",
      "          'along': 4,\n",
      "          'one': 4,\n",
      "          'comedy': 3,\n",
      "          'well': 3,\n",
      "          'richard': 3,\n",
      "          'julia': 3,\n",
      "          'picture': 3,\n",
      "          'takes': 3,\n",
      "          'car': 3,\n",
      "          'people': 3,\n",
      "          'kiss': 3,\n",
      "          'could': 3,\n",
      "          'almost': 3,\n",
      "          'work': 3,\n",
      "          'also': 3,\n",
      "          'especially': 3,\n",
      "          'director': 2,\n",
      "          'garry': 2,\n",
      "          'marshall': 2,\n",
      "          'question': 2,\n",
      "          'films': 2,\n",
      "          'story': 2,\n",
      "          'even': 2,\n",
      "          'believable': 2,\n",
      "          'business': 2,\n",
      "          'hollywood': 2,\n",
      "          'boulevard': 2,\n",
      "          'prostitute': 2,\n",
      "          'ultimately': 2,\n",
      "          'nthis': 2,\n",
      "          'meeting': 2,\n",
      "          'sex': 2,\n",
      "          'offers': 2,\n",
      "          'young': 2,\n",
      "          'end': 2,\n",
      "          'planned': 2,\n",
      "          'finally': 2,\n",
      "          'days': 2,\n",
      "          'tells': 2,\n",
      "          'anything': 2,\n",
      "          'lips': 2,\n",
      "          'act': 2,\n",
      "          'drama': 2,\n",
      "          'great': 2,\n",
      "          'supporting': 2,\n",
      "          'characters': 2,\n",
      "          'written': 2,\n",
      "          'award': 2,\n",
      "          'motion': 2,\n",
      "          'easy': 2,\n",
      "          'see': 2,\n",
      "          'became': 2,\n",
      "          'actually': 2,\n",
      "          'far': 2,\n",
      "          'scenes': 2,\n",
      "          'still': 2,\n",
      "          'role': 2,\n",
      "          'would': 2,\n",
      "          'much': 2,\n",
      "          'together': 2,\n",
      "          'strong': 2,\n",
      "          'scene': 2,\n",
      "          'make': 2,\n",
      "          'way': 2,\n",
      "          'life': 2,\n",
      "          'known': 1,\n",
      "          'successful': 1,\n",
      "          'highestgrossing': 1,\n",
      "          'history': 1,\n",
      "          'apparently': 1,\n",
      "          'struck': 1,\n",
      "          'gold': 1,\n",
      "          'opened': 1,\n",
      "          'quietly': 1,\n",
      "          'summer': 1,\n",
      "          '1990': 1,\n",
      "          'thanks': 1,\n",
      "          'positive': 1,\n",
      "          'wordofmouth': 1,\n",
      "          'able': 1,\n",
      "          'reach': 1,\n",
      "          'upwards': 1,\n",
      "          '175million': 1,\n",
      "          'theaters': 1,\n",
      "          'alone': 1,\n",
      "          'worked': 1,\n",
      "          'lies': 1,\n",
      "          'directly': 1,\n",
      "          'charismatic': 1,\n",
      "          'stars': 1,\n",
      "          'none': 1,\n",
      "          'original': 1,\n",
      "          'winning': 1,\n",
      "          'element': 1,\n",
      "          'makes': 1,\n",
      "          'entertaining': 1,\n",
      "          'genuine': 1,\n",
      "          'sweetness': 1,\n",
      "          'innocence': 1,\n",
      "          'rarely': 1,\n",
      "          'palpable': 1,\n",
      "          'todays': 1,\n",
      "          'nedward': 1,\n",
      "          'lewis': 1,\n",
      "          'suave': 1,\n",
      "          'extremely': 1,\n",
      "          'wealthy': 1,\n",
      "          'mogul': 1,\n",
      "          'start': 1,\n",
      "          'breaks': 1,\n",
      "          'girlfriend': 1,\n",
      "          'phone': 1,\n",
      "          'nasty': 1,\n",
      "          'argument': 1,\n",
      "          'abruptly': 1,\n",
      "          'friends': 1,\n",
      "          'gets': 1,\n",
      "          'lost': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'hotel': 1,\n",
      "          'nstopping': 1,\n",
      "          'street': 1,\n",
      "          'asks': 1,\n",
      "          'obviously': 1,\n",
      "          'directions': 1,\n",
      "          'nagreeing': 1,\n",
      "          'get': 1,\n",
      "          'show': 1,\n",
      "          'ten': 1,\n",
      "          'bucks': 1,\n",
      "          'accepts': 1,\n",
      "          'strike': 1,\n",
      "          'conversation': 1,\n",
      "          'long': 1,\n",
      "          'asked': 1,\n",
      "          'penthouse': 1,\n",
      "          'room': 1,\n",
      "          'top': 1,\n",
      "          'floor': 1,\n",
      "          'lead': 1,\n",
      "          'however': 1,\n",
      "          'confides': 1,\n",
      "          'hed': 1,\n",
      "          'rather': 1,\n",
      "          'someone': 1,\n",
      "          'talk': 1,\n",
      "          '300': 1,\n",
      "          'spend': 1,\n",
      "          'night': 1,\n",
      "          'njust': 1,\n",
      "          'hooker': 1,\n",
      "          'named': 1,\n",
      "          'beautiful': 1,\n",
      "          'generally': 1,\n",
      "          'upbeat': 1,\n",
      "          'type': 1,\n",
      "          'person': 1,\n",
      "          'lend': 1,\n",
      "          'understanding': 1,\n",
      "          'ear': 1,\n",
      "          'completely': 1,\n",
      "          'opposite': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'pay': 1,\n",
      "          'threethousand': 1,\n",
      "          'dollars': 1,\n",
      "          'stay': 1,\n",
      "          'six': 1,\n",
      "          'nights': 1,\n",
      "          'area': 1,\n",
      "          'keeping': 1,\n",
      "          'company': 1,\n",
      "          'acting': 1,\n",
      "          'companion': 1,\n",
      "          'dinners': 1,\n",
      "          'gettogethers': 1,\n",
      "          'nsince': 1,\n",
      "          'firmly': 1,\n",
      "          'beginning': 1,\n",
      "          'except': 1,\n",
      "          'always': 1,\n",
      "          'leads': 1,\n",
      "          'unwanted': 1,\n",
      "          'intimacy': 1,\n",
      "          'dealing': 1,\n",
      "          'customers': 1,\n",
      "          'obligatory': 1,\n",
      "          'rule': 1,\n",
      "          'genre': 1,\n",
      "          'says': 1,\n",
      "          'third': 1,\n",
      "          'truly': 1,\n",
      "          'nallegedly': 1,\n",
      "          'grim': 1,\n",
      "          'downbeat': 1,\n",
      "          'came': 1,\n",
      "          'board': 1,\n",
      "          'transformed': 1,\n",
      "          'senses': 1,\n",
      "          'word': 1,\n",
      "          'classic': 1,\n",
      "          'fairy': 1,\n",
      "          'tale': 1,\n",
      "          'la': 1,\n",
      "          'cinderella': 1,\n",
      "          'premise': 1,\n",
      "          'hardly': 1,\n",
      "          'portrait': 1,\n",
      "          'prostitutes': 1,\n",
      "          'hanging': 1,\n",
      "          'streets': 1,\n",
      "          'idealized': 1,\n",
      "          'portrayal': 1,\n",
      "          'possibly': 1,\n",
      "          'nyou': 1,\n",
      "          'honestly': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'highiq': 1,\n",
      "          'iq': 1,\n",
      "          'matter': 1,\n",
      "          'guess': 1,\n",
      "          'old': 1,\n",
      "          'grandma': 1,\n",
      "          'bertha': 1,\n",
      "          'sketchily': 1,\n",
      "          'lessthangratifying': 1,\n",
      "          'screenplay': 1,\n",
      "          'winner': 1,\n",
      "          'nand': 1,\n",
      "          'yet': 1,\n",
      "          'amidst': 1,\n",
      "          'qualms': 1,\n",
      "          'flaws': 1,\n",
      "          'astoundingly': 1,\n",
      "          'charming': 1,\n",
      "          'definately': 1,\n",
      "          'overnight': 1,\n",
      "          'sensation': 1,\n",
      "          'moviegoers': 1,\n",
      "          'nyoud': 1,\n",
      "          'amazed': 1,\n",
      "          'bemusement': 1,\n",
      "          'go': 1,\n",
      "          'select': 1,\n",
      "          'moments': 1,\n",
      "          'whole': 1,\n",
      "          'mind': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          '1990s': 1,\n",
      "          'nadditionally': 1,\n",
      "          'belongs': 1,\n",
      "          'success': 1,\n",
      "          'attributed': 1,\n",
      "          'nplaying': 1,\n",
      "          'symbols': 1,\n",
      "          'throughout': 1,\n",
      "          '80s': 1,\n",
      "          'pictures': 1,\n",
      "          'american': 1,\n",
      "          'gigolo': 1,\n",
      "          'officer': 1,\n",
      "          'gentleman': 1,\n",
      "          'branches': 1,\n",
      "          'play': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'quiet': 1,\n",
      "          'shy': 1,\n",
      "          'alluring': 1,\n",
      "          'character': 1,\n",
      "          'believably': 1,\n",
      "          'sweep': 1,\n",
      "          'feet': 1,\n",
      "          'vice': 1,\n",
      "          'versa': 1,\n",
      "          'njulia': 1,\n",
      "          'breakthrough': 1,\n",
      "          '1988s': 1,\n",
      "          'wellreceived': 1,\n",
      "          'mistic': 1,\n",
      "          'pizza': 1,\n",
      "          '1989s': 1,\n",
      "          'steel': 1,\n",
      "          'magnolia': 1,\n",
      "          'nominated': 1,\n",
      "          'academy': 1,\n",
      "          'radiant': 1,\n",
      "          'funny': 1,\n",
      "          'wordly': 1,\n",
      "          'surprisingly': 1,\n",
      "          'model': 1,\n",
      "          'impressionistic': 1,\n",
      "          'viewers': 1,\n",
      "          'line': 1,\n",
      "          'sheer': 1,\n",
      "          'intelligence': 1,\n",
      "          'nit': 1,\n",
      "          'probably': 1,\n",
      "          'merely': 1,\n",
      "          'flake': 1,\n",
      "          'screenwriter': 1,\n",
      "          'j': 1,\n",
      "          'f': 1,\n",
      "          'lawton': 1,\n",
      "          'clearly': 1,\n",
      "          'cared': 1,\n",
      "          'central': 1,\n",
      "          'thing': 1,\n",
      "          'nafter': 1,\n",
      "          'meg': 1,\n",
      "          'ryan': 1,\n",
      "          'reigning': 1,\n",
      "          'queen': 1,\n",
      "          'comedies': 1,\n",
      "          'latest': 1,\n",
      "          'justreleased': 1,\n",
      "          'runaway': 1,\n",
      "          'bride': 1,\n",
      "          'repairs': 1,\n",
      "          'wonder': 1,\n",
      "          'nroberts': 1,\n",
      "          'continually': 1,\n",
      "          'proven': 1,\n",
      "          'actress': 1,\n",
      "          'flare': 1,\n",
      "          'efficiently': 1,\n",
      "          'every': 1,\n",
      "          'appears': 1,\n",
      "          'difficult': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'male': 1,\n",
      "          'costar': 1,\n",
      "          'nan': 1,\n",
      "          'place': 1,\n",
      "          'foolishly': 1,\n",
      "          'coworkers': 1,\n",
      "          'approaches': 1,\n",
      "          'making': 1,\n",
      "          'sexual': 1,\n",
      "          'advances': 1,\n",
      "          'nno': 1,\n",
      "          'feel': 1,\n",
      "          'cheap': 1,\n",
      "          'previously': 1,\n",
      "          'posing': 1,\n",
      "          'professional': 1,\n",
      "          'eloquent': 1,\n",
      "          'lady': 1,\n",
      "          'maddens': 1,\n",
      "          'demean': 1,\n",
      "          'betray': 1,\n",
      "          'causes': 1,\n",
      "          'exactly': 1,\n",
      "          'leading': 1,\n",
      "          'likes': 1,\n",
      "          'particular': 1,\n",
      "          'path': 1,\n",
      "          'non': 1,\n",
      "          'dreamy': 1,\n",
      "          'side': 1,\n",
      "          'filled': 1,\n",
      "          'simply': 1,\n",
      "          'effervescent': 1,\n",
      "          'behold': 1,\n",
      "          'enters': 1,\n",
      "          'hotels': 1,\n",
      "          'lounge': 1,\n",
      "          'turn': 1,\n",
      "          'around': 1,\n",
      "          'reveal': 1,\n",
      "          'marvelous': 1,\n",
      "          'cocktail': 1,\n",
      "          'dress': 1,\n",
      "          'inner': 1,\n",
      "          'outer': 1,\n",
      "          'glowing': 1,\n",
      "          'beauty': 1,\n",
      "          'nanother': 1,\n",
      "          'subtle': 1,\n",
      "          'moment': 1,\n",
      "          'lovingly': 1,\n",
      "          'blowing': 1,\n",
      "          'asleep': 1,\n",
      "          'placing': 1,\n",
      "          'unsure': 1,\n",
      "          'getting': 1,\n",
      "          'attached': 1,\n",
      "          'man': 1,\n",
      "          'may': 1,\n",
      "          'forever': 1,\n",
      "          'short': 1,\n",
      "          'couple': 1,\n",
      "          'n': 1,\n",
      "          'blatantly': 1,\n",
      "          'step': 1,\n",
      "          'wrong': 1,\n",
      "          'last': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'wouldnt': 1,\n",
      "          'somehow': 1,\n",
      "          'perhaps': 1,\n",
      "          'undeniable': 1,\n",
      "          'contrivances': 1,\n",
      "          'misstep': 1,\n",
      "          'put': 1,\n",
      "          'damper': 1,\n",
      "          'rest': 1,\n",
      "          'though': 1,\n",
      "          'magic': 1,\n",
      "          'disaffirm': 1,\n",
      "          'petty': 1,\n",
      "          'problem': 1,\n",
      "          'nhelped': 1,\n",
      "          'warm': 1,\n",
      "          'memorable': 1,\n",
      "          'performance': 1,\n",
      "          'laura': 1,\n",
      "          'san': 1,\n",
      "          'giacomo': 1,\n",
      "          'vivians': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'roommate': 1,\n",
      "          'fabulously': 1,\n",
      "          'catchy': 1,\n",
      "          'soundtrack': 1,\n",
      "          'songs': 1,\n",
      "          'prominently': 1,\n",
      "          'aid': 1,\n",
      "          'movies': 1,\n",
      "          'overall': 1,\n",
      "          'fulfillment': 1,\n",
      "          'sparkler': 1,\n",
      "          'blueprint': 1,\n",
      "          'quintessential': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cousins': 8,\n",
      "          'movie': 3,\n",
      "          'film': 3,\n",
      "          'nthe': 3,\n",
      "          'like': 3,\n",
      "          'larrys': 3,\n",
      "          'wife': 3,\n",
      "          'comedy': 2,\n",
      "          'sense': 2,\n",
      "          'cast': 2,\n",
      "          'nlike': 2,\n",
      "          'french': 2,\n",
      "          'affair': 2,\n",
      "          'tish': 2,\n",
      "          'even': 2,\n",
      "          'larry': 2,\n",
      "          'maria': 2,\n",
      "          'love': 2,\n",
      "          'characters': 2,\n",
      "          'first': 2,\n",
      "          'role': 2,\n",
      "          'every': 2,\n",
      "          'performance': 2,\n",
      "          'finally': 2,\n",
      "          'dramatic': 1,\n",
      "          'necessary': 1,\n",
      "          'ingredients': 1,\n",
      "          'witty': 1,\n",
      "          'whimsical': 1,\n",
      "          'script': 1,\n",
      "          'inspired': 1,\n",
      "          'performances': 1,\n",
      "          'great': 1,\n",
      "          'humor': 1,\n",
      "          'large': 1,\n",
      "          'wonderful': 1,\n",
      "          'beautiful': 1,\n",
      "          'scenery': 1,\n",
      "          'vancouver': 1,\n",
      "          'nits': 1,\n",
      "          'weddings': 1,\n",
      "          'marriage': 1,\n",
      "          'family': 1,\n",
      "          'infidelity': 1,\n",
      "          'andoh': 1,\n",
      "          'yeslove': 1,\n",
      "          '3': 1,\n",
      "          'men': 1,\n",
      "          'baby': 1,\n",
      "          'americanized': 1,\n",
      "          'version': 1,\n",
      "          '1975s': 1,\n",
      "          'cousin': 1,\n",
      "          'cousine': 1,\n",
      "          'plot': 1,\n",
      "          'complicated': 1,\n",
      "          'goes': 1,\n",
      "          'something': 1,\n",
      "          'nlarry': 1,\n",
      "          'tom': 1,\n",
      "          'notsohappilymarried': 1,\n",
      "          'ntom': 1,\n",
      "          'starts': 1,\n",
      "          'get': 1,\n",
      "          'toms': 1,\n",
      "          'pretend': 1,\n",
      "          'nsoon': 1,\n",
      "          'pretending': 1,\n",
      "          'turns': 1,\n",
      "          'running': 1,\n",
      "          'ncousins': 1,\n",
      "          'populated': 1,\n",
      "          'wide': 1,\n",
      "          'assortment': 1,\n",
      "          'interesting': 1,\n",
      "          'caricatures': 1,\n",
      "          'acting': 1,\n",
      "          'rate': 1,\n",
      "          'smallest': 1,\n",
      "          'supporting': 1,\n",
      "          'virtually': 1,\n",
      "          'deserves': 1,\n",
      "          'mention': 1,\n",
      "          'nted': 1,\n",
      "          'danson': 1,\n",
      "          'starring': 1,\n",
      "          'gets': 1,\n",
      "          'play': 1,\n",
      "          'character': 1,\n",
      "          'depth': 1,\n",
      "          'sensitivity': 1,\n",
      "          'nwhile': 1,\n",
      "          'may': 1,\n",
      "          'confident': 1,\n",
      "          'charming': 1,\n",
      "          'sam': 1,\n",
      "          'malone': 1,\n",
      "          'cheers': 1,\n",
      "          'also': 1,\n",
      "          'complex': 1,\n",
      "          'vulnerable': 1,\n",
      "          'ears': 1,\n",
      "          'empty': 1,\n",
      "          'space': 1,\n",
      "          'nas': 1,\n",
      "          'isabella': 1,\n",
      "          'rossellini': 1,\n",
      "          'joy': 1,\n",
      "          'watch': 1,\n",
      "          'shy': 1,\n",
      "          'sensuous': 1,\n",
      "          'immensely': 1,\n",
      "          'alluring': 1,\n",
      "          'nsean': 1,\n",
      "          'young': 1,\n",
      "          'perfectly': 1,\n",
      "          'picture': 1,\n",
      "          'perfect': 1,\n",
      "          'superficial': 1,\n",
      "          'trendy': 1,\n",
      "          'makeup': 1,\n",
      "          'consultant': 1,\n",
      "          'nkeith': 1,\n",
      "          'coogan': 1,\n",
      "          'adventures': 1,\n",
      "          'babysitting': 1,\n",
      "          'wonderfully': 1,\n",
      "          'weird': 1,\n",
      "          'eccentric': 1,\n",
      "          'rebellious': 1,\n",
      "          'son': 1,\n",
      "          'mitch': 1,\n",
      "          'nand': 1,\n",
      "          'lloyd': 1,\n",
      "          'bridges': 1,\n",
      "          'tour': 1,\n",
      "          'de': 1,\n",
      "          'force': 1,\n",
      "          'mitchs': 1,\n",
      "          'rambunctious': 1,\n",
      "          'grandfather': 1,\n",
      "          'provides': 1,\n",
      "          'best': 1,\n",
      "          'lines': 1,\n",
      "          'laughs': 1,\n",
      "          'moonstruck': 1,\n",
      "          'mix': 1,\n",
      "          'drama': 1,\n",
      "          'larger': 1,\n",
      "          'life': 1,\n",
      "          'keen': 1,\n",
      "          'absurd': 1,\n",
      "          'nit': 1,\n",
      "          'understands': 1,\n",
      "          'human': 1,\n",
      "          'nature': 1,\n",
      "          'extremely': 1,\n",
      "          'well': 1,\n",
      "          'milks': 1,\n",
      "          'possible': 1,\n",
      "          'laugh': 1,\n",
      "          'hearttug': 1,\n",
      "          'nhow': 1,\n",
      "          'often': 1,\n",
      "          'see': 1,\n",
      "          'believe': 1,\n",
      "          'two': 1,\n",
      "          'truly': 1,\n",
      "          'sincerely': 1,\n",
      "          'care': 1,\n",
      "          'friends': 1,\n",
      "          'lovers': 1,\n",
      "          'nwell': 1,\n",
      "          'credit': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'continue': 1,\n",
      "          'provide': 1,\n",
      "          'us': 1,\n",
      "          'inspiration': 1,\n",
      "          'make': 1,\n",
      "          'films': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'gay': 5,\n",
      "          'nthe': 3,\n",
      "          'one': 3,\n",
      "          'couple': 2,\n",
      "          'lane': 2,\n",
      "          'nwilliams': 2,\n",
      "          'drag': 2,\n",
      "          'star': 2,\n",
      "          'men': 2,\n",
      "          'world': 2,\n",
      "          'youll': 2,\n",
      "          'remake': 1,\n",
      "          'la': 1,\n",
      "          'cage': 1,\n",
      "          'aux': 1,\n",
      "          'folles': 1,\n",
      "          'features': 1,\n",
      "          'pretending': 1,\n",
      "          'straight': 1,\n",
      "          'order': 1,\n",
      "          'pull': 1,\n",
      "          'wool': 1,\n",
      "          'eyes': 1,\n",
      "          'sons': 1,\n",
      "          'future': 1,\n",
      "          'inlaws': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'nathan': 1,\n",
      "          'archetypal': 1,\n",
      "          'less': 1,\n",
      "          'kind': 1,\n",
      "          'might': 1,\n",
      "          'put': 1,\n",
      "          'stereotypical': 1,\n",
      "          'gays': 1,\n",
      "          'possible': 1,\n",
      "          'owns': 1,\n",
      "          'nightclub': 1,\n",
      "          'featuring': 1,\n",
      "          'queens': 1,\n",
      "          'partner': 1,\n",
      "          'performs': 1,\n",
      "          'featured': 1,\n",
      "          'nthey': 1,\n",
      "          'live': 1,\n",
      "          'club': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'mistaken': 1,\n",
      "          'heterosexual': 1,\n",
      "          'abode': 1,\n",
      "          'excellent': 1,\n",
      "          'surprise': 1,\n",
      "          'ngene': 1,\n",
      "          'hackman': 1,\n",
      "          'rightwing': 1,\n",
      "          'potential': 1,\n",
      "          'fatherinlaw': 1,\n",
      "          'refreshing': 1,\n",
      "          'comedic': 1,\n",
      "          'roles': 1,\n",
      "          'real': 1,\n",
      "          'nhis': 1,\n",
      "          'attempted': 1,\n",
      "          'transformation': 1,\n",
      "          'obviously': 1,\n",
      "          'straightshooting': 1,\n",
      "          'uncle': 1,\n",
      "          'hilarious': 1,\n",
      "          'nperhaps': 1,\n",
      "          'personal': 1,\n",
      "          'failing': 1,\n",
      "          'part': 1,\n",
      "          'crying': 1,\n",
      "          'screaming': 1,\n",
      "          'queen': 1,\n",
      "          'faux': 1,\n",
      "          'high': 1,\n",
      "          'drama': 1,\n",
      "          'grates': 1,\n",
      "          'nerves': 1,\n",
      "          'first': 1,\n",
      "          'minutes': 1,\n",
      "          'film': 1,\n",
      "          'filled': 1,\n",
      "          'nluckily': 1,\n",
      "          'least': 1,\n",
      "          'doesnt': 1,\n",
      "          'last': 1,\n",
      "          'long': 1,\n",
      "          'rest': 1,\n",
      "          'story': 1,\n",
      "          'focuses': 1,\n",
      "          'relationship': 1,\n",
      "          'son': 1,\n",
      "          'deception': 1,\n",
      "          'question': 1,\n",
      "          'stereotypes': 1,\n",
      "          'touchy': 1,\n",
      "          'nthese': 1,\n",
      "          'guys': 1,\n",
      "          'personify': 1,\n",
      "          'homophobic': 1,\n",
      "          'image': 1,\n",
      "          'nyou': 1,\n",
      "          'almost': 1,\n",
      "          'hear': 1,\n",
      "          'swishing': 1,\n",
      "          'nif': 1,\n",
      "          'think': 1,\n",
      "          'supposed': 1,\n",
      "          'representative': 1,\n",
      "          'every': 1,\n",
      "          'man': 1,\n",
      "          'outraged': 1,\n",
      "          'nbut': 1,\n",
      "          'accept': 1,\n",
      "          'view': 1,\n",
      "          'movie': 1,\n",
      "          'individuals': 1,\n",
      "          'love': 1,\n",
      "          'nyour': 1,\n",
      "          'choice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 24,\n",
      "          'story': 13,\n",
      "          'films': 11,\n",
      "          'would': 10,\n",
      "          'know': 10,\n",
      "          'trilogy': 9,\n",
      "          'star': 8,\n",
      "          'wars': 8,\n",
      "          'also': 8,\n",
      "          'series': 8,\n",
      "          'one': 8,\n",
      "          'jedi': 8,\n",
      "          'force': 8,\n",
      "          'nthe': 8,\n",
      "          'review': 6,\n",
      "          'even': 6,\n",
      "          'movie': 6,\n",
      "          'many': 6,\n",
      "          'significant': 6,\n",
      "          'skywalker': 6,\n",
      "          'never': 6,\n",
      "          'plot': 5,\n",
      "          'movies': 5,\n",
      "          'least': 5,\n",
      "          'details': 5,\n",
      "          'federation': 5,\n",
      "          'phantom': 4,\n",
      "          'menace': 4,\n",
      "          'new': 4,\n",
      "          'since': 4,\n",
      "          'years': 4,\n",
      "          'nand': 4,\n",
      "          'get': 4,\n",
      "          'another': 4,\n",
      "          'first': 4,\n",
      "          'familiar': 4,\n",
      "          'anakin': 4,\n",
      "          'become': 4,\n",
      "          'something': 4,\n",
      "          'history': 4,\n",
      "          'seems': 4,\n",
      "          'two': 4,\n",
      "          'jinn': 4,\n",
      "          'seen': 3,\n",
      "          'may': 3,\n",
      "          '1': 3,\n",
      "          'note': 3,\n",
      "          'still': 3,\n",
      "          'nas': 3,\n",
      "          'nnever': 3,\n",
      "          'mind': 3,\n",
      "          'fact': 3,\n",
      "          'much': 3,\n",
      "          'going': 3,\n",
      "          'aspect': 3,\n",
      "          'time': 3,\n",
      "          'reviews': 3,\n",
      "          'factors': 3,\n",
      "          'must': 3,\n",
      "          'three': 3,\n",
      "          'empire': 3,\n",
      "          'back': 3,\n",
      "          'order': 3,\n",
      "          'mentioned': 3,\n",
      "          'come': 3,\n",
      "          'simply': 3,\n",
      "          'nwe': 3,\n",
      "          'evil': 3,\n",
      "          'long': 3,\n",
      "          'basic': 3,\n",
      "          'major': 3,\n",
      "          'beginning': 3,\n",
      "          'nbut': 3,\n",
      "          'spirit': 3,\n",
      "          'nwere': 3,\n",
      "          'n': 2,\n",
      "          'critics': 2,\n",
      "          'ive': 2,\n",
      "          'ted': 2,\n",
      "          'said': 2,\n",
      "          'write': 2,\n",
      "          'already': 2,\n",
      "          'action': 2,\n",
      "          'analyze': 2,\n",
      "          'take': 2,\n",
      "          'lot': 2,\n",
      "          'like': 2,\n",
      "          'way': 2,\n",
      "          'instead': 2,\n",
      "          'possible': 2,\n",
      "          'reader': 2,\n",
      "          'begin': 2,\n",
      "          'specific': 2,\n",
      "          'aspects': 2,\n",
      "          'specifics': 2,\n",
      "          'next': 2,\n",
      "          'four': 2,\n",
      "          'made': 2,\n",
      "          'obvious': 2,\n",
      "          'last': 2,\n",
      "          'actually': 2,\n",
      "          'assumed': 2,\n",
      "          'nin': 2,\n",
      "          'explained': 2,\n",
      "          'reasons': 2,\n",
      "          'nwith': 2,\n",
      "          'viewers': 2,\n",
      "          'points': 2,\n",
      "          'spoilers': 2,\n",
      "          'ncritics': 2,\n",
      "          'sense': 2,\n",
      "          'impossible': 2,\n",
      "          'reviewing': 2,\n",
      "          'universal': 2,\n",
      "          'significance': 2,\n",
      "          'part': 2,\n",
      "          'considering': 2,\n",
      "          'modern': 2,\n",
      "          'society': 2,\n",
      "          'completely': 2,\n",
      "          'obiwan': 2,\n",
      "          'kenobi': 2,\n",
      "          'whose': 2,\n",
      "          'feel': 2,\n",
      "          'nwhat': 2,\n",
      "          'complex': 2,\n",
      "          'nto': 2,\n",
      "          'havent': 2,\n",
      "          'voice': 2,\n",
      "          'saga': 2,\n",
      "          'especially': 2,\n",
      "          'top': 2,\n",
      "          'could': 2,\n",
      "          'ni': 2,\n",
      "          'greatness': 2,\n",
      "          'tell': 2,\n",
      "          'clarify': 2,\n",
      "          'yet': 2,\n",
      "          'elements': 2,\n",
      "          'vast': 2,\n",
      "          'weve': 2,\n",
      "          'nits': 2,\n",
      "          'keep': 2,\n",
      "          'sometimes': 2,\n",
      "          'rather': 2,\n",
      "          'times': 2,\n",
      "          'called': 2,\n",
      "          'quigon': 2,\n",
      "          'queen': 2,\n",
      "          'viceroy': 2,\n",
      "          'character': 2,\n",
      "          'reveal': 2,\n",
      "          'well': 2,\n",
      "          'background': 2,\n",
      "          'doesnt': 2,\n",
      "          'gives': 2,\n",
      "          'involving': 2,\n",
      "          'fun': 2,\n",
      "          '19': 1,\n",
      "          '1999': 1,\n",
      "          '5': 1,\n",
      "          'p': 1,\n",
      "          'crossgates': 1,\n",
      "          'cinema': 1,\n",
      "          '18': 1,\n",
      "          'guilderland': 1,\n",
      "          'theater': 1,\n",
      "          'brother': 1,\n",
      "          'john': 1,\n",
      "          '8': 1,\n",
      "          '50': 1,\n",
      "          'ntheater': 1,\n",
      "          'rating': 1,\n",
      "          'excellent': 1,\n",
      "          'seats': 1,\n",
      "          'sound': 1,\n",
      "          'picture': 1,\n",
      "          'longest': 1,\n",
      "          'ever': 1,\n",
      "          'written': 1,\n",
      "          'scratches': 1,\n",
      "          'surface': 1,\n",
      "          'nid': 1,\n",
      "          'recommend': 1,\n",
      "          'read': 1,\n",
      "          'form': 1,\n",
      "          'critical': 1,\n",
      "          'analysis': 1,\n",
      "          'friend': 1,\n",
      "          'fellow': 1,\n",
      "          'critic': 1,\n",
      "          'prigge': 1,\n",
      "          'waiting': 1,\n",
      "          'seven': 1,\n",
      "          'old': 1,\n",
      "          'everyone': 1,\n",
      "          'internet': 1,\n",
      "          'dissected': 1,\n",
      "          'discussed': 1,\n",
      "          'released': 1,\n",
      "          'theres': 1,\n",
      "          'terms': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'longterm': 1,\n",
      "          'every': 1,\n",
      "          'energy': 1,\n",
      "          'wouldnt': 1,\n",
      "          'cover': 1,\n",
      "          'everything': 1,\n",
      "          'ill': 1,\n",
      "          'try': 1,\n",
      "          'different': 1,\n",
      "          'usual': 1,\n",
      "          'casually': 1,\n",
      "          'talking': 1,\n",
      "          'directly': 1,\n",
      "          'nbefore': 1,\n",
      "          'analyzing': 1,\n",
      "          'general': 1,\n",
      "          'considered': 1,\n",
      "          'skip': 1,\n",
      "          'paragraphs': 1,\n",
      "          'several': 1,\n",
      "          'produced': 1,\n",
      "          'account': 1,\n",
      "          'missing': 1,\n",
      "          'initial': 1,\n",
      "          'installments': 1,\n",
      "          'episode': 1,\n",
      "          'ngeorge': 1,\n",
      "          'lucas': 1,\n",
      "          'creator': 1,\n",
      "          'probably': 1,\n",
      "          'people': 1,\n",
      "          'firstproduced': 1,\n",
      "          'strikes': 1,\n",
      "          'return': 1,\n",
      "          'second': 1,\n",
      "          'chronologically': 1,\n",
      "          'media': 1,\n",
      "          'interviews': 1,\n",
      "          'past': 1,\n",
      "          'cant': 1,\n",
      "          'recall': 1,\n",
      "          'writer': 1,\n",
      "          'director': 1,\n",
      "          'vaguely': 1,\n",
      "          'storylines': 1,\n",
      "          'err': 1,\n",
      "          'nsecond': 1,\n",
      "          'nwell': 1,\n",
      "          'mean': 1,\n",
      "          'thorough': 1,\n",
      "          'unfortunately': 1,\n",
      "          'serve': 1,\n",
      "          'proceed': 1,\n",
      "          'caution': 1,\n",
      "          'personal': 1,\n",
      "          'policy': 1,\n",
      "          'intentionally': 1,\n",
      "          'able': 1,\n",
      "          'make': 1,\n",
      "          'viewing': 1,\n",
      "          'reviewed': 1,\n",
      "          'nearly': 1,\n",
      "          'justice': 1,\n",
      "          'without': 1,\n",
      "          'breaking': 1,\n",
      "          'rule': 1,\n",
      "          '2': 1,\n",
      "          'breaks': 1,\n",
      "          'law': 1,\n",
      "          'roger': 1,\n",
      "          'ebert': 1,\n",
      "          'coined': 1,\n",
      "          'nbecause': 1,\n",
      "          'outside': 1,\n",
      "          'play': 1,\n",
      "          'difficult': 1,\n",
      "          'autonomous': 1,\n",
      "          'nfirst': 1,\n",
      "          'catalog': 1,\n",
      "          'young': 1,\n",
      "          'grow': 1,\n",
      "          'ruler': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'father': 1,\n",
      "          'luke': 1,\n",
      "          'lead': 1,\n",
      "          'successful': 1,\n",
      "          'revolution': 1,\n",
      "          'ben': 1,\n",
      "          'trainer': 1,\n",
      "          'ways': 1,\n",
      "          'attempts': 1,\n",
      "          'knight': 1,\n",
      "          'fail': 1,\n",
      "          'thus': 1,\n",
      "          'fall': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'kind': 1,\n",
      "          'determines': 1,\n",
      "          'fate': 1,\n",
      "          'manipulated': 1,\n",
      "          'minds': 1,\n",
      "          'expanded': 1,\n",
      "          'enough': 1,\n",
      "          'believe': 1,\n",
      "          'dont': 1,\n",
      "          'sure': 1,\n",
      "          'ruling': 1,\n",
      "          'galaxy': 1,\n",
      "          'likely': 1,\n",
      "          'longer': 1,\n",
      "          'government': 1,\n",
      "          'earth': 1,\n",
      "          'fascinating': 1,\n",
      "          'seemed': 1,\n",
      "          'subtle': 1,\n",
      "          'definite': 1,\n",
      "          'complexity': 1,\n",
      "          'nalso': 1,\n",
      "          'supposed': 1,\n",
      "          'thousands': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'paperbacks': 1,\n",
      "          'published': 1,\n",
      "          'ended': 1,\n",
      "          'nmost': 1,\n",
      "          'notably': 1,\n",
      "          'regarding': 1,\n",
      "          'emperor': 1,\n",
      "          'senator': 1,\n",
      "          'name': 1,\n",
      "          'palpatine': 1,\n",
      "          'nfor': 1,\n",
      "          'kept': 1,\n",
      "          'paraphernalia': 1,\n",
      "          'recognizing': 1,\n",
      "          'actor': 1,\n",
      "          'chapter': 1,\n",
      "          'assume': 1,\n",
      "          'groundwork': 1,\n",
      "          'laid': 1,\n",
      "          'including': 1,\n",
      "          'behind': 1,\n",
      "          'knights': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'opposite': 1,\n",
      "          'builds': 1,\n",
      "          'detailed': 1,\n",
      "          'didnt': 1,\n",
      "          'liked': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'complete': 1,\n",
      "          'episodes': 1,\n",
      "          '3': 1,\n",
      "          'digress': 1,\n",
      "          'nive': 1,\n",
      "          'touched': 1,\n",
      "          'nall': 1,\n",
      "          'necessary': 1,\n",
      "          'disclaiming': 1,\n",
      "          'go': 1,\n",
      "          'show': 1,\n",
      "          'individual': 1,\n",
      "          'unlike': 1,\n",
      "          'love': 1,\n",
      "          'late': 1,\n",
      "          '1970s': 1,\n",
      "          'similarity': 1,\n",
      "          'helps': 1,\n",
      "          'flaw': 1,\n",
      "          'filmmaking': 1,\n",
      "          'process': 1,\n",
      "          'rings': 1,\n",
      "          'unoriginality': 1,\n",
      "          'sorted': 1,\n",
      "          'confusing': 1,\n",
      "          'told': 1,\n",
      "          'army': 1,\n",
      "          'known': 1,\n",
      "          'trade': 1,\n",
      "          'set': 1,\n",
      "          'blockade': 1,\n",
      "          'around': 1,\n",
      "          'seemingly': 1,\n",
      "          'insignificant': 1,\n",
      "          'planet': 1,\n",
      "          'naboo': 1,\n",
      "          'given': 1,\n",
      "          'purpose': 1,\n",
      "          'opts': 1,\n",
      "          'moving': 1,\n",
      "          'quickly': 1,\n",
      "          'introduced': 1,\n",
      "          'master': 1,\n",
      "          'neeson': 1,\n",
      "          'apprentice': 1,\n",
      "          'mcgregor': 1,\n",
      "          'acting': 1,\n",
      "          'ambassadors': 1,\n",
      "          'sort': 1,\n",
      "          'hopes': 1,\n",
      "          'ending': 1,\n",
      "          'hostility': 1,\n",
      "          'planets': 1,\n",
      "          'amidala': 1,\n",
      "          'portman': 1,\n",
      "          'leader': 1,\n",
      "          'alien': 1,\n",
      "          'following': 1,\n",
      "          'orders': 1,\n",
      "          'strange': 1,\n",
      "          'mythical': 1,\n",
      "          'older': 1,\n",
      "          'human': 1,\n",
      "          'man': 1,\n",
      "          'face': 1,\n",
      "          'body': 1,\n",
      "          'covered': 1,\n",
      "          'shadowed': 1,\n",
      "          'black': 1,\n",
      "          'robe': 1,\n",
      "          'hood': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wears': 1,\n",
      "          'nhe': 1,\n",
      "          'referred': 1,\n",
      "          'lord': 1,\n",
      "          'sidious': 1,\n",
      "          'appearance': 1,\n",
      "          'creepy': 1,\n",
      "          'obviously': 1,\n",
      "          'characters': 1,\n",
      "          'nsidious': 1,\n",
      "          'communicates': 1,\n",
      "          'digital': 1,\n",
      "          'transmissions': 1,\n",
      "          'person': 1,\n",
      "          'nclearly': 1,\n",
      "          'actual': 1,\n",
      "          'whereabouts': 1,\n",
      "          'wants': 1,\n",
      "          'secret': 1,\n",
      "          'identity': 1,\n",
      "          'openly': 1,\n",
      "          'revealed': 1,\n",
      "          'clear': 1,\n",
      "          'feeling': 1,\n",
      "          'delve': 1,\n",
      "          'spring': 1,\n",
      "          'within': 1,\n",
      "          'minutes': 1,\n",
      "          'hero': 1,\n",
      "          'fighting': 1,\n",
      "          'lives': 1,\n",
      "          'begins': 1,\n",
      "          'move': 1,\n",
      "          'along': 1,\n",
      "          'works': 1,\n",
      "          'manner': 1,\n",
      "          'miniplot': 1,\n",
      "          'adventure': 1,\n",
      "          'nthere': 1,\n",
      "          'miniplotswithinplots': 1,\n",
      "          'describe': 1,\n",
      "          'hook': 1,\n",
      "          'relied': 1,\n",
      "          'type': 1,\n",
      "          'storytelling': 1,\n",
      "          'limits': 1,\n",
      "          'technology': 1,\n",
      "          'screenplays': 1,\n",
      "          'limiting': 1,\n",
      "          'limitlessness': 1,\n",
      "          'unique': 1,\n",
      "          'traits': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'generation': 1,\n",
      "          'original': 1,\n",
      "          'means': 1,\n",
      "          'unclear': 1,\n",
      "          'andor': 1,\n",
      "          'unexplained': 1,\n",
      "          'cleared': 1,\n",
      "          'epic': 1,\n",
      "          'storyline': 1,\n",
      "          'discovery': 1,\n",
      "          '10yearold': 1,\n",
      "          'lloyd': 1,\n",
      "          'introduction': 1,\n",
      "          'council': 1,\n",
      "          'briefly': 1,\n",
      "          'summarize': 1,\n",
      "          'stumbles': 1,\n",
      "          'upon': 1,\n",
      "          'attempt': 1,\n",
      "          'buy': 1,\n",
      "          'parts': 1,\n",
      "          'amidalas': 1,\n",
      "          'spaceship': 1,\n",
      "          'damaged': 1,\n",
      "          'efforts': 1,\n",
      "          'free': 1,\n",
      "          'ntheir': 1,\n",
      "          'meeting': 1,\n",
      "          'tatooine': 1,\n",
      "          'mostly': 1,\n",
      "          'chance': 1,\n",
      "          'course': 1,\n",
      "          'chalks': 1,\n",
      "          'njinn': 1,\n",
      "          'great': 1,\n",
      "          'natural': 1,\n",
      "          'power': 1,\n",
      "          'subplot': 1,\n",
      "          'bet': 1,\n",
      "          'fantastic': 1,\n",
      "          'race': 1,\n",
      "          'enter': 1,\n",
      "          'nthis': 1,\n",
      "          'provides': 1,\n",
      "          'elaboration': 1,\n",
      "          'explanation': 1,\n",
      "          'important': 1,\n",
      "          'upsetting': 1,\n",
      "          'element': 1,\n",
      "          'seriously': 1,\n",
      "          'undermines': 1,\n",
      "          'mystical': 1,\n",
      "          'transforms': 1,\n",
      "          'physical': 1,\n",
      "          'scientific': 1,\n",
      "          'unnecessary': 1,\n",
      "          'nby': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'tied': 1,\n",
      "          'together': 1,\n",
      "          'execution': 1,\n",
      "          'funny': 1,\n",
      "          'reality': 1,\n",
      "          'world': 1,\n",
      "          'embedded': 1,\n",
      "          'mythology': 1,\n",
      "          'agelike': 1,\n",
      "          'philosophy': 1,\n",
      "          'religion': 1,\n",
      "          'solution': 1,\n",
      "          'conflicts': 1,\n",
      "          'violence': 1,\n",
      "          'nnot': 1,\n",
      "          'technique': 1,\n",
      "          'hasnt': 1,\n",
      "          'used': 1,\n",
      "          'reallife': 1,\n",
      "          'situations': 1,\n",
      "          'countless': 1,\n",
      "          'throughout': 1,\n",
      "          'ultimate': 1,\n",
      "          'powers': 1,\n",
      "          'good': 1,\n",
      "          'versus': 1,\n",
      "          'exciting': 1,\n",
      "          'matter': 1,\n",
      "          'nit': 1,\n",
      "          'border': 1,\n",
      "          'cartoonish': 1,\n",
      "          'thats': 1,\n",
      "          'appealing': 1,\n",
      "          'inner': 1,\n",
      "          'child': 1,\n",
      "          'reason': 1,\n",
      "          'entire': 1,\n",
      "          'exists': 1,\n",
      "          'big': 1,\n",
      "          'delivers': 1,\n",
      "          'exactly': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'succeeds': 1,\n",
      "          'always': 1,\n",
      "          'truly': 1,\n",
      "          'achieves': 1,\n",
      "          'nso': 1,\n",
      "          'things': 1,\n",
      "          'done': 1,\n",
      "          'heart': 1,\n",
      "          'filmmakers': 1,\n",
      "          'concentrated': 1,\n",
      "          'bit': 1,\n",
      "          'limited': 1,\n",
      "          'far': 1,\n",
      "          'bad': 1,\n",
      "          'embraces': 1,\n",
      "          'sheer': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'story': 14,\n",
      "          'us': 13,\n",
      "          'film': 10,\n",
      "          'nthe': 10,\n",
      "          'marriage': 8,\n",
      "          'ben': 7,\n",
      "          'films': 6,\n",
      "          'katie': 6,\n",
      "          'characters': 6,\n",
      "          'viewer': 5,\n",
      "          'willis': 5,\n",
      "          'years': 5,\n",
      "          'one': 5,\n",
      "          'see': 4,\n",
      "          'year': 4,\n",
      "          'two': 4,\n",
      "          'times': 4,\n",
      "          'family': 3,\n",
      "          'heartbreaking': 3,\n",
      "          '15': 3,\n",
      "          'good': 3,\n",
      "          'life': 3,\n",
      "          'flashbacks': 3,\n",
      "          'like': 3,\n",
      "          'script': 3,\n",
      "          'certainly': 3,\n",
      "          'performance': 3,\n",
      "          'fall': 2,\n",
      "          'lives': 2,\n",
      "          'written': 2,\n",
      "          'michelle': 2,\n",
      "          'pfeiffer': 2,\n",
      "          'jordan': 2,\n",
      "          'together': 2,\n",
      "          'shows': 2,\n",
      "          'main': 2,\n",
      "          'day': 2,\n",
      "          'nben': 2,\n",
      "          'dont': 2,\n",
      "          'say': 2,\n",
      "          'grown': 2,\n",
      "          'apart': 2,\n",
      "          'sophisticated': 2,\n",
      "          'things': 2,\n",
      "          'nicely': 2,\n",
      "          'therapist': 2,\n",
      "          'told': 2,\n",
      "          'strong': 2,\n",
      "          'sense': 2,\n",
      "          'really': 2,\n",
      "          'stepmom': 2,\n",
      "          'touching': 2,\n",
      "          'realistic': 2,\n",
      "          'many': 2,\n",
      "          'picture': 2,\n",
      "          'movies': 2,\n",
      "          'actor': 2,\n",
      "          'make': 2,\n",
      "          'npfeiffers': 2,\n",
      "          'real': 2,\n",
      "          'hearts': 2,\n",
      "          'still': 2,\n",
      "          'rob': 1,\n",
      "          'reiner': 1,\n",
      "          'second': 1,\n",
      "          'movie': 1,\n",
      "          'touches': 1,\n",
      "          'way': 1,\n",
      "          'rarely': 1,\n",
      "          'touched': 1,\n",
      "          'everyday': 1,\n",
      "          'usually': 1,\n",
      "          'nwell': 1,\n",
      "          '1999': 1,\n",
      "          'instant': 1,\n",
      "          'classic': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'highs': 1,\n",
      "          'lows': 1,\n",
      "          'well': 1,\n",
      "          'insightful': 1,\n",
      "          'made': 1,\n",
      "          'majority': 1,\n",
      "          'audience': 1,\n",
      "          'including': 1,\n",
      "          'cry': 1,\n",
      "          'tells': 1,\n",
      "          'bruce': 1,\n",
      "          'asks': 1,\n",
      "          'question': 1,\n",
      "          'survive': 1,\n",
      "          'individuals': 1,\n",
      "          'come': 1,\n",
      "          'spent': 1,\n",
      "          'chunk': 1,\n",
      "          'bad': 1,\n",
      "          'entire': 1,\n",
      "          'collapsing': 1,\n",
      "          'live': 1,\n",
      "          'want': 1,\n",
      "          'devastate': 1,\n",
      "          'children': 1,\n",
      "          'fact': 1,\n",
      "          'parents': 1,\n",
      "          'longer': 1,\n",
      "          'least': 1,\n",
      "          'love': 1,\n",
      "          'anymore': 1,\n",
      "          'cartoonist': 1,\n",
      "          'crossword': 1,\n",
      "          'puzzle': 1,\n",
      "          'writer': 1,\n",
      "          'fifteen': 1,\n",
      "          'follow': 1,\n",
      "          'different': 1,\n",
      "          'views': 1,\n",
      "          'nkatie': 1,\n",
      "          'organized': 1,\n",
      "          'type': 1,\n",
      "          'wants': 1,\n",
      "          'plan': 1,\n",
      "          'everything': 1,\n",
      "          'spontaneous': 1,\n",
      "          'adventurous': 1,\n",
      "          'individual': 1,\n",
      "          'doesnt': 1,\n",
      "          'mind': 1,\n",
      "          'differently': 1,\n",
      "          'planned': 1,\n",
      "          'plays': 1,\n",
      "          'opens': 1,\n",
      "          'sharing': 1,\n",
      "          'nas': 1,\n",
      "          'progresses': 1,\n",
      "          'switches': 1,\n",
      "          'talking': 1,\n",
      "          'stories': 1,\n",
      "          'nthis': 1,\n",
      "          'method': 1,\n",
      "          'highly': 1,\n",
      "          'effective': 1,\n",
      "          'changing': 1,\n",
      "          'slowly': 1,\n",
      "          'growing': 1,\n",
      "          'nthrough': 1,\n",
      "          'get': 1,\n",
      "          'eyes': 1,\n",
      "          'gives': 1,\n",
      "          'three': 1,\n",
      "          'dimensional': 1,\n",
      "          'believable': 1,\n",
      "          'screenplay': 1,\n",
      "          'jessie': 1,\n",
      "          'nelson': 1,\n",
      "          'alan': 1,\n",
      "          'zweibel': 1,\n",
      "          'dragnet': 1,\n",
      "          'earth': 1,\n",
      "          'work': 1,\n",
      "          'hits': 1,\n",
      "          'chord': 1,\n",
      "          'within': 1,\n",
      "          'much': 1,\n",
      "          'another': 1,\n",
      "          'nelsons': 1,\n",
      "          'open': 1,\n",
      "          'honesty': 1,\n",
      "          'outlook': 1,\n",
      "          'feel': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'situations': 1,\n",
      "          'undeniably': 1,\n",
      "          'familiar': 1,\n",
      "          'families': 1,\n",
      "          'days': 1,\n",
      "          'go': 1,\n",
      "          'hard': 1,\n",
      "          'must': 1,\n",
      "          'nif': 1,\n",
      "          'wasnt': 1,\n",
      "          'first': 1,\n",
      "          'minutes': 1,\n",
      "          'writers': 1,\n",
      "          'wrote': 1,\n",
      "          'rugged': 1,\n",
      "          'flawed': 1,\n",
      "          'would': 1,\n",
      "          'best': 1,\n",
      "          'nbruce': 1,\n",
      "          'usual': 1,\n",
      "          'actionadventure': 1,\n",
      "          'star': 1,\n",
      "          'turned': 1,\n",
      "          'around': 1,\n",
      "          'past': 1,\n",
      "          'went': 1,\n",
      "          'man': 1,\n",
      "          'typecast': 1,\n",
      "          'role': 1,\n",
      "          'action': 1,\n",
      "          'distinguished': 1,\n",
      "          'last': 1,\n",
      "          'summers': 1,\n",
      "          'sixth': 1,\n",
      "          'world': 1,\n",
      "          'fed': 1,\n",
      "          'nalthough': 1,\n",
      "          'wouldnt': 1,\n",
      "          'pick': 1,\n",
      "          'choice': 1,\n",
      "          'handles': 1,\n",
      "          'shines': 1,\n",
      "          'powerful': 1,\n",
      "          'scenes': 1,\n",
      "          'enough': 1,\n",
      "          'definite': 1,\n",
      "          'contender': 1,\n",
      "          'comes': 1,\n",
      "          'awards': 1,\n",
      "          'season': 1,\n",
      "          'nwhere': 1,\n",
      "          'start': 1,\n",
      "          'spellbinding': 1,\n",
      "          'ultimately': 1,\n",
      "          'brings': 1,\n",
      "          'character': 1,\n",
      "          'charisma': 1,\n",
      "          'emotion': 1,\n",
      "          'wonder': 1,\n",
      "          'possible': 1,\n",
      "          'someone': 1,\n",
      "          'portray': 1,\n",
      "          'person': 1,\n",
      "          'realism': 1,\n",
      "          'recognized': 1,\n",
      "          'academy': 1,\n",
      "          'next': 1,\n",
      "          'spring': 1,\n",
      "          'watched': 1,\n",
      "          'moving': 1,\n",
      "          '1999s': 1,\n",
      "          'yet': 1,\n",
      "          'funny': 1,\n",
      "          'razor': 1,\n",
      "          'sharp': 1,\n",
      "          'evens': 1,\n",
      "          'laughs': 1,\n",
      "          'tears': 1,\n",
      "          'keep': 1,\n",
      "          'hooked': 1,\n",
      "          'nsuperb': 1,\n",
      "          'acting': 1,\n",
      "          'direction': 1,\n",
      "          'writing': 1,\n",
      "          'soundtrack': 1,\n",
      "          'always': 1,\n",
      "          'sets': 1,\n",
      "          'mood': 1,\n",
      "          'beautifully': 1,\n",
      "          'composed': 1,\n",
      "          'eric': 1,\n",
      "          'clapton': 1,\n",
      "          'marc': 1,\n",
      "          'shaiman': 1,\n",
      "          'unforgettable': 1,\n",
      "          'motion': 1,\n",
      "          'touch': 1,\n",
      "          'viewers': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'become': 1,\n",
      "          'talked': 1,\n",
      "          'major': 1,\n",
      "          'high': 1,\n",
      "          'points': 1,\n",
      "          'fights': 1,\n",
      "          'constantly': 1,\n",
      "          'accuse': 1,\n",
      "          'whose': 1,\n",
      "          'fault': 1,\n",
      "          'collapsed': 1,\n",
      "          'although': 1,\n",
      "          'also': 1,\n",
      "          'hate': 1,\n",
      "          'tell': 1,\n",
      "          'share': 1,\n",
      "          'deep': 1,\n",
      "          'connection': 1,\n",
      "          'inside': 1,\n",
      "          'somewhere': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'wonderful': 1,\n",
      "          'enchanting': 1,\n",
      "          'none': 1,\n",
      "          'recent': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'beatty': 11,\n",
      "          'film': 7,\n",
      "          'also': 6,\n",
      "          'nthe': 6,\n",
      "          'well': 6,\n",
      "          'bulworth': 5,\n",
      "          'american': 4,\n",
      "          'nand': 4,\n",
      "          'gives': 3,\n",
      "          'system': 3,\n",
      "          'senator': 3,\n",
      "          'nits': 3,\n",
      "          'makes': 3,\n",
      "          'fun': 3,\n",
      "          'see': 3,\n",
      "          'warren': 2,\n",
      "          'written': 2,\n",
      "          'good': 2,\n",
      "          'kill': 2,\n",
      "          'completely': 2,\n",
      "          'politics': 2,\n",
      "          'assistant': 2,\n",
      "          'platt': 2,\n",
      "          'nina': 2,\n",
      "          'berry': 2,\n",
      "          'funny': 2,\n",
      "          'somewhat': 2,\n",
      "          'great': 2,\n",
      "          'isnt': 2,\n",
      "          'afraid': 2,\n",
      "          'seeing': 2,\n",
      "          'face': 2,\n",
      "          'n': 2,\n",
      "          'characters': 2,\n",
      "          'could': 2,\n",
      "          '61': 2,\n",
      "          'year': 2,\n",
      "          'old': 2,\n",
      "          'rapping': 2,\n",
      "          'quite': 2,\n",
      "          'like': 2,\n",
      "          'script': 2,\n",
      "          'many': 2,\n",
      "          'nbulworth': 2,\n",
      "          'returns': 1,\n",
      "          'screens': 1,\n",
      "          'funniest': 1,\n",
      "          'craziest': 1,\n",
      "          'hard': 1,\n",
      "          'hitting': 1,\n",
      "          'movie': 1,\n",
      "          'career': 1,\n",
      "          'nbased': 1,\n",
      "          'story': 1,\n",
      "          'concocted': 1,\n",
      "          'insight': 1,\n",
      "          'thinks': 1,\n",
      "          'government': 1,\n",
      "          'nbeatty': 1,\n",
      "          'stars': 1,\n",
      "          'jay': 1,\n",
      "          'whos': 1,\n",
      "          'going': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'nafter': 1,\n",
      "          'hiring': 1,\n",
      "          'someone': 1,\n",
      "          'changes': 1,\n",
      "          'campaign': 1,\n",
      "          'strategy': 1,\n",
      "          'tells': 1,\n",
      "          'honest': 1,\n",
      "          'truth': 1,\n",
      "          'whats': 1,\n",
      "          '_really_': 1,\n",
      "          'happening': 1,\n",
      "          'much': 1,\n",
      "          'annoyance': 1,\n",
      "          'dennis': 1,\n",
      "          'murphy': 1,\n",
      "          'ninstead': 1,\n",
      "          'everyone': 1,\n",
      "          'hating': 1,\n",
      "          'public': 1,\n",
      "          'love': 1,\n",
      "          'nhowever': 1,\n",
      "          'inside': 1,\n",
      "          'party': 1,\n",
      "          'people': 1,\n",
      "          'want': 1,\n",
      "          'hired': 1,\n",
      "          'assassin': 1,\n",
      "          'strikes': 1,\n",
      "          'relationship': 1,\n",
      "          'black': 1,\n",
      "          'girl': 1,\n",
      "          'remarkable': 1,\n",
      "          'released': 1,\n",
      "          'nmuch': 1,\n",
      "          'open': 1,\n",
      "          'rather': 1,\n",
      "          'subdued': 1,\n",
      "          'primary': 1,\n",
      "          'colours': 1,\n",
      "          'barely': 1,\n",
      "          'politic': 1,\n",
      "          'name': 1,\n",
      "          'outrageous': 1,\n",
      "          'remarks': 1,\n",
      "          'potential': 1,\n",
      "          'voters': 1,\n",
      "          'true': 1,\n",
      "          'let': 1,\n",
      "          'loose': 1,\n",
      "          'subject': 1,\n",
      "          'ntalking': 1,\n",
      "          'hes': 1,\n",
      "          'excellent': 1,\n",
      "          'role': 1,\n",
      "          'demented': 1,\n",
      "          'clearing': 1,\n",
      "          'rare': 1,\n",
      "          'sight': 1,\n",
      "          'indeed': 1,\n",
      "          'neven': 1,\n",
      "          'dick': 1,\n",
      "          'tracy': 1,\n",
      "          'straighten': 1,\n",
      "          'actor': 1,\n",
      "          'opportunity': 1,\n",
      "          'indulge': 1,\n",
      "          'gusto': 1,\n",
      "          'homeboy': 1,\n",
      "          'seen': 1,\n",
      "          'believed': 1,\n",
      "          'nice': 1,\n",
      "          'laugh': 1,\n",
      "          'nsecond': 1,\n",
      "          'best': 1,\n",
      "          'oliver': 1,\n",
      "          'flustered': 1,\n",
      "          'coke': 1,\n",
      "          'snorting': 1,\n",
      "          'goes': 1,\n",
      "          'top': 1,\n",
      "          'finally': 1,\n",
      "          'snaps': 1,\n",
      "          'nhalle': 1,\n",
      "          'fine': 1,\n",
      "          'sexy': 1,\n",
      "          'intellectual': 1,\n",
      "          'comes': 1,\n",
      "          'nalso': 1,\n",
      "          'popping': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'wit': 1,\n",
      "          'h': 1,\n",
      "          'strange': 1,\n",
      "          'accent': 1,\n",
      "          'laurie': 1,\n",
      "          'metcalf': 1,\n",
      "          'exact': 1,\n",
      "          'shes': 1,\n",
      "          'played': 1,\n",
      "          'christine': 1,\n",
      "          'baranski': 1,\n",
      "          'cybill': 1,\n",
      "          'fame': 1,\n",
      "          'bullworths': 1,\n",
      "          'wife': 1,\n",
      "          'contribute': 1,\n",
      "          'political': 1,\n",
      "          'ubiquitous': 1,\n",
      "          'larry': 1,\n",
      "          'king': 1,\n",
      "          'appearance': 1,\n",
      "          'shock': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'par': 1,\n",
      "          'direction': 1,\n",
      "          'nearly': 1,\n",
      "          'sitcom': 1,\n",
      "          'suits': 1,\n",
      "          'perfectly': 1,\n",
      "          'gangland': 1,\n",
      "          'parts': 1,\n",
      "          'handled': 1,\n",
      "          'raps': 1,\n",
      "          'actually': 1,\n",
      "          'produced': 1,\n",
      "          'humorous': 1,\n",
      "          'clever': 1,\n",
      "          'ntheyre': 1,\n",
      "          'cringe': 1,\n",
      "          'inducing': 1,\n",
      "          'least': 1,\n",
      "          'points': 1,\n",
      "          'society': 1,\n",
      "          'america': 1,\n",
      "          'today': 1,\n",
      "          'make': 1,\n",
      "          'bold': 1,\n",
      "          'statements': 1,\n",
      "          'flawed': 1,\n",
      "          'nbest': 1,\n",
      "          'thought': 1,\n",
      "          'provoking': 1,\n",
      "          'directed': 1,\n",
      "          'way': 1,\n",
      "          'feels': 1,\n",
      "          'light': 1,\n",
      "          'feather': 1,\n",
      "          'entertaining': 1,\n",
      "          'ntheres': 1,\n",
      "          'rap': 1,\n",
      "          'soundtrack': 1,\n",
      "          'chosen': 1,\n",
      "          'tunes': 1,\n",
      "          'advantages': 1,\n",
      "          'flaws': 1,\n",
      "          'nperhaps': 1,\n",
      "          'embarrassing': 1,\n",
      "          'man': 1,\n",
      "          'irrelevant': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'theres': 1,\n",
      "          'little': 1,\n",
      "          'except': 1,\n",
      "          'language': 1,\n",
      "          'heavy': 1,\n",
      "          'expected': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'na': 1,\n",
      "          'david': 1,\n",
      "          'wilcock': 1,\n",
      "          'review': 1,\n",
      "          '1999': 1,\n",
      "          'know': 1,\n",
      "          'kids': 1,\n",
      "          'norville': 1,\n",
      "          'barnes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'patch': 6,\n",
      "          'adams': 5,\n",
      "          'medical': 5,\n",
      "          'patchs': 5,\n",
      "          'williams': 4,\n",
      "          'first': 4,\n",
      "          'nthe': 4,\n",
      "          'role': 3,\n",
      "          'institution': 3,\n",
      "          'script': 3,\n",
      "          'long': 2,\n",
      "          'like': 2,\n",
      "          'hunting': 2,\n",
      "          'nit': 2,\n",
      "          'dramatic': 2,\n",
      "          'nhis': 2,\n",
      "          'dreams': 2,\n",
      "          'may': 2,\n",
      "          'come': 2,\n",
      "          'hunter': 2,\n",
      "          'humanity': 2,\n",
      "          'movie': 2,\n",
      "          'characters': 2,\n",
      "          'well': 2,\n",
      "          'theres': 2,\n",
      "          'little': 2,\n",
      "          'story': 2,\n",
      "          'way': 2,\n",
      "          'school': 2,\n",
      "          'two': 2,\n",
      "          'liar': 2,\n",
      "          'illustrious': 1,\n",
      "          'career': 1,\n",
      "          'robin': 1,\n",
      "          'included': 1,\n",
      "          'forgettable': 1,\n",
      "          'turns': 1,\n",
      "          'mrs': 1,\n",
      "          'ndoubtfire': 1,\n",
      "          'flubber': 1,\n",
      "          'punctuated': 1,\n",
      "          'actors': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          '1998': 1,\n",
      "          'good': 1,\n",
      "          'truly': 1,\n",
      "          'since': 1,\n",
      "          '1989s': 1,\n",
      "          'dead': 1,\n",
      "          'poets': 1,\n",
      "          'society': 1,\n",
      "          'critical': 1,\n",
      "          'remarks': 1,\n",
      "          'unanimously': 1,\n",
      "          'positive': 1,\n",
      "          'next': 1,\n",
      "          'deceased': 1,\n",
      "          'pediatrician': 1,\n",
      "          'unfortunately': 1,\n",
      "          'lackluster': 1,\n",
      "          'nand': 1,\n",
      "          'sixyear': 1,\n",
      "          'stint': 1,\n",
      "          'comedic': 1,\n",
      "          'actor': 1,\n",
      "          'proof': 1,\n",
      "          'whether': 1,\n",
      "          'cut': 1,\n",
      "          'league': 1,\n",
      "          'nwilliams': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'sporting': 1,\n",
      "          'scruffy': 1,\n",
      "          'facial': 1,\n",
      "          'hair': 1,\n",
      "          'falls': 1,\n",
      "          'cleanshavenness': 1,\n",
      "          'grotesque': 1,\n",
      "          'hairiness': 1,\n",
      "          'nwere': 1,\n",
      "          'introduced': 1,\n",
      "          'commits': 1,\n",
      "          'mental': 1,\n",
      "          'suicidal': 1,\n",
      "          'tendancies': 1,\n",
      "          'nits': 1,\n",
      "          'however': 1,\n",
      "          'discovers': 1,\n",
      "          'latent': 1,\n",
      "          'talent': 1,\n",
      "          'relating': 1,\n",
      "          'people': 1,\n",
      "          'nhe': 1,\n",
      "          'removes': 1,\n",
      "          'enrolls': 1,\n",
      "          'university': 1,\n",
      "          'virginias': 1,\n",
      "          'college': 1,\n",
      "          'finds': 1,\n",
      "          'doctrine': 1,\n",
      "          'calculating': 1,\n",
      "          'impersonal': 1,\n",
      "          'trade': 1,\n",
      "          'attempts': 1,\n",
      "          'inject': 1,\n",
      "          'profession': 1,\n",
      "          'result': 1,\n",
      "          'several': 1,\n",
      "          'bouts': 1,\n",
      "          'expulsion': 1,\n",
      "          'climaxes': 1,\n",
      "          'appearance': 1,\n",
      "          'state': 1,\n",
      "          'board': 1,\n",
      "          'welldefined': 1,\n",
      "          'oscarworthy': 1,\n",
      "          'sense': 1,\n",
      "          'nalthough': 1,\n",
      "          'perform': 1,\n",
      "          'narrative': 1,\n",
      "          'told': 1,\n",
      "          'outside': 1,\n",
      "          'skitlength': 1,\n",
      "          'experiences': 1,\n",
      "          'go': 1,\n",
      "          'toward': 1,\n",
      "          'building': 1,\n",
      "          'relationships': 1,\n",
      "          'nat': 1,\n",
      "          'meets': 1,\n",
      "          'truman': 1,\n",
      "          'schiff': 1,\n",
      "          'daniel': 1,\n",
      "          'london': 1,\n",
      "          'outsider': 1,\n",
      "          'relishes': 1,\n",
      "          'zest': 1,\n",
      "          'instantly': 1,\n",
      "          'become': 1,\n",
      "          'best': 1,\n",
      "          'friends': 1,\n",
      "          'easy': 1,\n",
      "          'see': 1,\n",
      "          'nmonica': 1,\n",
      "          'potter': 1,\n",
      "          'plays': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'personifies': 1,\n",
      "          'things': 1,\n",
      "          'hates': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'hes': 1,\n",
      "          'attracted': 1,\n",
      "          'although': 1,\n",
      "          'never': 1,\n",
      "          'gets': 1,\n",
      "          'said': 1,\n",
      "          'audience': 1,\n",
      "          'understands': 1,\n",
      "          'intrinsic': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'based': 1,\n",
      "          'works': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'bob': 1,\n",
      "          'gunton': 1,\n",
      "          'villain': 1,\n",
      "          'professor': 1,\n",
      "          'particular': 1,\n",
      "          'solid': 1,\n",
      "          'ndirector': 1,\n",
      "          'tom': 1,\n",
      "          'shadyac': 1,\n",
      "          'leads': 1,\n",
      "          'us': 1,\n",
      "          'life': 1,\n",
      "          'sound': 1,\n",
      "          'intentional': 1,\n",
      "          'manner': 1,\n",
      "          'combined': 1,\n",
      "          'presence': 1,\n",
      "          'screen': 1,\n",
      "          'rarely': 1,\n",
      "          'becomes': 1,\n",
      "          'boring': 1,\n",
      "          'npatch': 1,\n",
      "          'lack': 1,\n",
      "          'purpose': 1,\n",
      "          'major': 1,\n",
      "          'shortcoming': 1,\n",
      "          'ninety': 1,\n",
      "          'minutes': 1,\n",
      "          'hours': 1,\n",
      "          'feeling': 1,\n",
      "          'continuity': 1,\n",
      "          'passage': 1,\n",
      "          'time': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'emotionally': 1,\n",
      "          'moving': 1,\n",
      "          'picture': 1,\n",
      "          'looks': 1,\n",
      "          'one': 1,\n",
      "          'memorable': 1,\n",
      "          'holiday': 1,\n",
      "          'season': 1,\n",
      "          'succeeds': 1,\n",
      "          'everything': 1,\n",
      "          'tries': 1,\n",
      "          'fails': 1,\n",
      "          'stuff': 1,\n",
      "          'doesnt': 1,\n",
      "          'try': 1,\n",
      "          'place': 1,\n",
      "          'nby': 1,\n",
      "          'large': 1,\n",
      "          'another': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'herein': 1,\n",
      "          'importantly': 1,\n",
      "          'entertainment': 1,\n",
      "          'entire': 1,\n",
      "          'family': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ford': 5,\n",
      "          'quinn': 4,\n",
      "          'years': 3,\n",
      "          'one': 3,\n",
      "          'plane': 3,\n",
      "          'robin': 3,\n",
      "          'heche': 3,\n",
      "          'island': 3,\n",
      "          'goes': 3,\n",
      "          'two': 3,\n",
      "          'screen': 2,\n",
      "          '_six_days': 2,\n",
      "          '_seven_nights_': 2,\n",
      "          'back': 2,\n",
      "          'whose': 2,\n",
      "          'lack': 2,\n",
      "          'together': 2,\n",
      "          'obviously': 2,\n",
      "          'frantically': 2,\n",
      "          'old': 2,\n",
      "          'popcorn': 2,\n",
      "          'fluff': 2,\n",
      "          'recent': 1,\n",
      "          'harrison': 1,\n",
      "          'grave': 1,\n",
      "          'presence': 1,\n",
      "          'scowling': 1,\n",
      "          'likes': 1,\n",
      "          'tom': 1,\n",
      "          'clancys': 1,\n",
      "          'jack': 1,\n",
      "          'ryan': 1,\n",
      "          'series': 1,\n",
      "          '_the_fugitive_': 1,\n",
      "          'last': 1,\n",
      "          'smash': 1,\n",
      "          '_air_force_one_': 1,\n",
      "          'wonders': 1,\n",
      "          'rogue': 1,\n",
      "          'charm': 1,\n",
      "          'made': 1,\n",
      "          'superstar': 1,\n",
      "          'completely': 1,\n",
      "          'drained': 1,\n",
      "          'system': 1,\n",
      "          'napparently': 1,\n",
      "          'lying': 1,\n",
      "          'dormant': 1,\n",
      "          'nwith': 1,\n",
      "          'ivan': 1,\n",
      "          'reitmans': 1,\n",
      "          'enjoyable': 1,\n",
      "          'romantic': 1,\n",
      "          'comedyadventure': 1,\n",
      "          'lovable': 1,\n",
      "          'scoundrel': 1,\n",
      "          'giving': 1,\n",
      "          'audiences': 1,\n",
      "          'fresh': 1,\n",
      "          'reminder': 1,\n",
      "          'enduring': 1,\n",
      "          'popular': 1,\n",
      "          'modern': 1,\n",
      "          'icons': 1,\n",
      "          'nford': 1,\n",
      "          'plays': 1,\n",
      "          'harris': 1,\n",
      "          'carefree': 1,\n",
      "          'slightly': 1,\n",
      "          'slobby': 1,\n",
      "          'endearingly': 1,\n",
      "          'pilot': 1,\n",
      "          'tropics': 1,\n",
      "          'brokendown': 1,\n",
      "          'crashes': 1,\n",
      "          'storm': 1,\n",
      "          'stranding': 1,\n",
      "          'charter': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'magazine': 1,\n",
      "          'editor': 1,\n",
      "          'monroe': 1,\n",
      "          'anne': 1,\n",
      "          'deserted': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'sophisticated': 1,\n",
      "          'saltoftheearth': 1,\n",
      "          'odds': 1,\n",
      "          'long': 1,\n",
      "          'manner': 1,\n",
      "          'hostile': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'repartee': 1,\n",
      "          'exchanged': 1,\n",
      "          'first': 1,\n",
      "          'meeting': 1,\n",
      "          'nwhile': 1,\n",
      "          'lines': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'formulaic': 1,\n",
      "          'motions': 1,\n",
      "          'work': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'electric': 1,\n",
      "          'chemistry': 1,\n",
      "          'nboth': 1,\n",
      "          'actors': 1,\n",
      "          'largely': 1,\n",
      "          'done': 1,\n",
      "          'serious': 1,\n",
      "          'works': 1,\n",
      "          'late': 1,\n",
      "          'seem': 1,\n",
      "          'liberated': 1,\n",
      "          'dramatic': 1,\n",
      "          'weight': 1,\n",
      "          'shoulders': 1,\n",
      "          'deliver': 1,\n",
      "          'zingers': 1,\n",
      "          'weak': 1,\n",
      "          'sometimes': 1,\n",
      "          'beguiling': 1,\n",
      "          'abandon': 1,\n",
      "          'nnaturally': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'like': 1,\n",
      "          'lifethreatening': 1,\n",
      "          'crisis': 1,\n",
      "          'bring': 1,\n",
      "          'people': 1,\n",
      "          'robins': 1,\n",
      "          'warmup': 1,\n",
      "          'sped': 1,\n",
      "          'even': 1,\n",
      "          'arrival': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'pirates': 1,\n",
      "          'ngranted': 1,\n",
      "          'conflict': 1,\n",
      "          'needed': 1,\n",
      "          'introduced': 1,\n",
      "          'tackedon': 1,\n",
      "          'development': 1,\n",
      "          'writer': 1,\n",
      "          'michael': 1,\n",
      "          'browning': 1,\n",
      "          'bit': 1,\n",
      "          'thrown': 1,\n",
      "          'purpose': 1,\n",
      "          'adding': 1,\n",
      "          'gratuitous': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'nbut': 1,\n",
      "          'point': 1,\n",
      "          'get': 1,\n",
      "          'newfound': 1,\n",
      "          'affection': 1,\n",
      "          'causes': 1,\n",
      "          'complications': 1,\n",
      "          'mostly': 1,\n",
      "          'came': 1,\n",
      "          'islands': 1,\n",
      "          'vacation': 1,\n",
      "          'fiance': 1,\n",
      "          'frank': 1,\n",
      "          'david': 1,\n",
      "          'schwimmer': 1,\n",
      "          'awaits': 1,\n",
      "          'return': 1,\n",
      "          'home': 1,\n",
      "          'nreitman': 1,\n",
      "          'reliable': 1,\n",
      "          'hand': 1,\n",
      "          'breezy': 1,\n",
      "          'comedies': 1,\n",
      "          'keeps': 1,\n",
      "          'pace': 1,\n",
      "          'brisk': 1,\n",
      "          'capably': 1,\n",
      "          'handles': 1,\n",
      "          'actionoriented': 1,\n",
      "          'sequences': 1,\n",
      "          'nhis': 1,\n",
      "          'big': 1,\n",
      "          'accomplishment': 1,\n",
      "          'however': 1,\n",
      "          'bringing': 1,\n",
      "          'smiling': 1,\n",
      "          'nas': 1,\n",
      "          'appealing': 1,\n",
      "          'charismatic': 1,\n",
      "          'always': 1,\n",
      "          'hasnt': 1,\n",
      "          'quite': 1,\n",
      "          'charming': 1,\n",
      "          'affable': 1,\n",
      "          'hes': 1,\n",
      "          'blast': 1,\n",
      "          'audience': 1,\n",
      "          'help': 1,\n",
      "          'along': 1,\n",
      "          'nholding': 1,\n",
      "          'scrappy': 1,\n",
      "          'character': 1,\n",
      "          'never': 1,\n",
      "          'becomes': 1,\n",
      "          'screaming': 1,\n",
      "          'ninny': 1,\n",
      "          'initially': 1,\n",
      "          'promises': 1,\n",
      "          'pops': 1,\n",
      "          'stress': 1,\n",
      "          'pills': 1,\n",
      "          'nshe': 1,\n",
      "          'take': 1,\n",
      "          'lumps': 1,\n",
      "          'physical': 1,\n",
      "          'otherwise': 1,\n",
      "          'well': 1,\n",
      "          'making': 1,\n",
      "          'formidable': 1,\n",
      "          'foil': 1,\n",
      "          'ideal': 1,\n",
      "          'match': 1,\n",
      "          'nformulaic': 1,\n",
      "          'light': 1,\n",
      "          'feather': 1,\n",
      "          'could': 1,\n",
      "          'cited': 1,\n",
      "          'classic': 1,\n",
      "          'example': 1,\n",
      "          'summer': 1,\n",
      "          'movie': 1,\n",
      "          'seasons': 1,\n",
      "          'substance': 1,\n",
      "          'nits': 1,\n",
      "          'certainly': 1,\n",
      "          'unpretentious': 1,\n",
      "          'undemanding': 1,\n",
      "          'andmost': 1,\n",
      "          'importantlyfun': 1,\n",
      "          'easily': 1,\n",
      "          'frothy': 1,\n",
      "          'pina': 1,\n",
      "          'colada': 1,\n",
      "          'balmy': 1,\n",
      "          'tropical': 1,\n",
      "          'beach': 1,\n",
      "          'npass': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'egypt': 4,\n",
      "          'story': 4,\n",
      "          'disney': 3,\n",
      "          'animation': 3,\n",
      "          'nin': 3,\n",
      "          'prince': 3,\n",
      "          'also': 3,\n",
      "          'pharaoh': 3,\n",
      "          'year': 2,\n",
      "          'would': 2,\n",
      "          'first': 2,\n",
      "          'sleeper': 2,\n",
      "          'entry': 2,\n",
      "          'studio': 2,\n",
      "          'fox': 2,\n",
      "          'however': 2,\n",
      "          'decidedly': 2,\n",
      "          'disneys': 2,\n",
      "          'ndreamworks': 2,\n",
      "          'two': 2,\n",
      "          'brothers': 2,\n",
      "          'camelot': 2,\n",
      "          'mulan': 2,\n",
      "          'lost': 2,\n",
      "          'face': 2,\n",
      "          'success': 2,\n",
      "          'plot': 2,\n",
      "          'rameses': 2,\n",
      "          'interesting': 2,\n",
      "          'nmoses': 2,\n",
      "          'god': 2,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          '1996': 1,\n",
      "          'analysts': 1,\n",
      "          'remarked': 1,\n",
      "          'last': 1,\n",
      "          'stand': 1,\n",
      "          'alone': 1,\n",
      "          'king': 1,\n",
      "          'following': 1,\n",
      "          '1997': 1,\n",
      "          'saw': 1,\n",
      "          'genre': 1,\n",
      "          'magic': 1,\n",
      "          'kingdom': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'gave': 1,\n",
      "          'baronial': 1,\n",
      "          'russia': 1,\n",
      "          'masses': 1,\n",
      "          'form': 1,\n",
      "          'anastasia': 1,\n",
      "          'nat': 1,\n",
      "          'best': 1,\n",
      "          'thats': 1,\n",
      "          'hit': 1,\n",
      "          'designed': 1,\n",
      "          'surprise': 1,\n",
      "          'shake': 1,\n",
      "          'industry': 1,\n",
      "          '1998': 1,\n",
      "          'things': 1,\n",
      "          'different': 1,\n",
      "          'nthere': 1,\n",
      "          'number': 1,\n",
      "          'pushes': 1,\n",
      "          'death': 1,\n",
      "          'grip': 1,\n",
      "          'market': 1,\n",
      "          'fiftyone': 1,\n",
      "          'weeks': 1,\n",
      "          '98': 1,\n",
      "          'new': 1,\n",
      "          'champion': 1,\n",
      "          'emerged': 1,\n",
      "          'succeeds': 1,\n",
      "          'conventionally': 1,\n",
      "          'animated': 1,\n",
      "          'products': 1,\n",
      "          'failed': 1,\n",
      "          'contenders': 1,\n",
      "          'warner': 1,\n",
      "          'quest': 1,\n",
      "          'annual': 1,\n",
      "          'lacked': 1,\n",
      "          'inspiration': 1,\n",
      "          'drive': 1,\n",
      "          'respectively': 1,\n",
      "          'nalthough': 1,\n",
      "          'borderlineabysmal': 1,\n",
      "          'cant': 1,\n",
      "          'really': 1,\n",
      "          'considered': 1,\n",
      "          'shot': 1,\n",
      "          'title': 1,\n",
      "          'makings': 1,\n",
      "          'winner': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'saturated': 1,\n",
      "          'traditional': 1,\n",
      "          'disneycute': 1,\n",
      "          'points': 1,\n",
      "          'rapidlychanging': 1,\n",
      "          'competition': 1,\n",
      "          'making': 1,\n",
      "          'dreamworks': 1,\n",
      "          'strayed': 1,\n",
      "          'hallmarks': 1,\n",
      "          'created': 1,\n",
      "          'genuinely': 1,\n",
      "          'unique': 1,\n",
      "          'product': 1,\n",
      "          'flawless': 1,\n",
      "          'aside': 1,\n",
      "          'bugs': 1,\n",
      "          'life': 1,\n",
      "          'bestlooking': 1,\n",
      "          'movie': 1,\n",
      "          'date': 1,\n",
      "          'animators': 1,\n",
      "          'nimbly': 1,\n",
      "          'mixed': 1,\n",
      "          'flat': 1,\n",
      "          'spatial': 1,\n",
      "          'effects': 1,\n",
      "          '2d3d': 1,\n",
      "          'combination': 1,\n",
      "          'something': 1,\n",
      "          'artists': 1,\n",
      "          'heretofore': 1,\n",
      "          'struggled': 1,\n",
      "          'key': 1,\n",
      "          'visuals': 1,\n",
      "          'used': 1,\n",
      "          'looked': 1,\n",
      "          'cool': 1,\n",
      "          'method': 1,\n",
      "          'advancing': 1,\n",
      "          'nnamely': 1,\n",
      "          'important': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'like': 1,\n",
      "          'parting': 1,\n",
      "          'red': 1,\n",
      "          'sea': 1,\n",
      "          'done': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          '3d': 1,\n",
      "          'prove': 1,\n",
      "          'theyve': 1,\n",
      "          'got': 1,\n",
      "          'stuff': 1,\n",
      "          'theyre': 1,\n",
      "          'capable': 1,\n",
      "          'challenging': 1,\n",
      "          'wellwritten': 1,\n",
      "          'characters': 1,\n",
      "          'voiced': 1,\n",
      "          'talent': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'follows': 1,\n",
      "          'source': 1,\n",
      "          'material': 1,\n",
      "          'book': 1,\n",
      "          'exodus': 1,\n",
      "          'although': 1,\n",
      "          'general': 1,\n",
      "          'sense': 1,\n",
      "          'writers': 1,\n",
      "          'took': 1,\n",
      "          'creative': 1,\n",
      "          'liberties': 1,\n",
      "          'damage': 1,\n",
      "          'way': 1,\n",
      "          'fact': 1,\n",
      "          'shakespearean': 1,\n",
      "          'relationship': 1,\n",
      "          'moses': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'ralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'makes': 1,\n",
      "          'anything': 1,\n",
      "          'hebrew': 1,\n",
      "          'saved': 1,\n",
      "          'slaughter': 1,\n",
      "          'firstborn': 1,\n",
      "          'sons': 1,\n",
      "          'mother': 1,\n",
      "          'sets': 1,\n",
      "          'basket': 1,\n",
      "          'nile': 1,\n",
      "          'floats': 1,\n",
      "          'seti': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'palace': 1,\n",
      "          'taken': 1,\n",
      "          'royal': 1,\n",
      "          'family': 1,\n",
      "          'grows': 1,\n",
      "          'learns': 1,\n",
      "          'heritage': 1,\n",
      "          'flees': 1,\n",
      "          'desert': 1,\n",
      "          'discovers': 1,\n",
      "          'burning': 1,\n",
      "          'bush': 1,\n",
      "          'commissioned': 1,\n",
      "          'return': 1,\n",
      "          'free': 1,\n",
      "          'slaves': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'opposite': 1,\n",
      "          'sides': 1,\n",
      "          'line': 1,\n",
      "          'battle': 1,\n",
      "          'wills': 1,\n",
      "          'divine': 1,\n",
      "          'intervention': 1,\n",
      "          'cast': 1,\n",
      "          'voices': 1,\n",
      "          'impressive': 1,\n",
      "          'includes': 1,\n",
      "          'noteables': 1,\n",
      "          'sandra': 1,\n",
      "          'bullock': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'danny': 1,\n",
      "          'glover': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'script': 1,\n",
      "          'lot': 1,\n",
      "          'oneliners': 1,\n",
      "          'reduced': 1,\n",
      "          'voice': 1,\n",
      "          'might': 1,\n",
      "          'well': 1,\n",
      "          'mistaken': 1,\n",
      "          'one': 1,\n",
      "          'spoke': 1,\n",
      "          'kevin': 1,\n",
      "          'costner': 1,\n",
      "          'field': 1,\n",
      "          'dreams': 1,\n",
      "          'overall': 1,\n",
      "          'exciting': 1,\n",
      "          'nits': 1,\n",
      "          'older': 1,\n",
      "          'crowd': 1,\n",
      "          'tykes': 1,\n",
      "          'havent': 1,\n",
      "          'years': 1,\n",
      "          'religion': 1,\n",
      "          'class': 1,\n",
      "          'hopelessly': 1,\n",
      "          'nbut': 1,\n",
      "          'make': 1,\n",
      "          'bid': 1,\n",
      "          'great': 1,\n",
      "          'watch': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'like': 4,\n",
      "          'rock': 3,\n",
      "          'roll': 3,\n",
      "          'plot': 3,\n",
      "          'gang': 3,\n",
      "          'fable': 2,\n",
      "          'hubert': 2,\n",
      "          'selby': 2,\n",
      "          'jr': 2,\n",
      "          'novel': 2,\n",
      "          'damon': 2,\n",
      "          'runyan': 2,\n",
      "          'bruce': 2,\n",
      "          'springsteen': 2,\n",
      "          'fun': 2,\n",
      "          'nstreets': 2,\n",
      "          'fire': 2,\n",
      "          'nthis': 2,\n",
      "          'greatlooking': 2,\n",
      "          'nthe': 2,\n",
      "          'save': 2,\n",
      "          'whole': 2,\n",
      "          'things': 2,\n",
      "          'ellens': 2,\n",
      "          'doowop': 2,\n",
      "          'little': 2,\n",
      "          'perfectly': 2,\n",
      "          'capsule': 1,\n",
      "          'indeed': 1,\n",
      "          'nlike': 1,\n",
      "          'filtered': 1,\n",
      "          'equal': 1,\n",
      "          'parts': 1,\n",
      "          'ton': 1,\n",
      "          'bills': 1,\n",
      "          'description': 1,\n",
      "          'perfect': 1,\n",
      "          'stylish': 1,\n",
      "          'breezily': 1,\n",
      "          'enjoyable': 1,\n",
      "          'feels': 1,\n",
      "          'rewrite': 1,\n",
      "          'irected': 1,\n",
      "          'nnoir': 1,\n",
      "          'one': 1,\n",
      "          'truly': 1,\n",
      "          'american': 1,\n",
      "          'genres': 1,\n",
      "          'aside': 1,\n",
      "          'hollywood': 1,\n",
      "          'musical': 1,\n",
      "          'western': 1,\n",
      "          'postwwii': 1,\n",
      "          'brooklyn': 1,\n",
      "          'noir': 1,\n",
      "          'lack': 1,\n",
      "          'better': 1,\n",
      "          'label': 1,\n",
      "          'generous': 1,\n",
      "          'injection': 1,\n",
      "          'n': 1,\n",
      "          'allaround': 1,\n",
      "          'confrontational': 1,\n",
      "          'attitude': 1,\n",
      "          'nit': 1,\n",
      "          'works': 1,\n",
      "          'simplicity': 1,\n",
      "          'rocker': 1,\n",
      "          'ellen': 1,\n",
      "          'aim': 1,\n",
      "          'diane': 1,\n",
      "          'lane': 1,\n",
      "          'kidnapped': 1,\n",
      "          'vicious': 1,\n",
      "          'street': 1,\n",
      "          'led': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'fellow': 1,\n",
      "          'named': 1,\n",
      "          'raven': 1,\n",
      "          'willem': 1,\n",
      "          'dafoe': 1,\n",
      "          'nasty': 1,\n",
      "          'nher': 1,\n",
      "          'old': 1,\n",
      "          'soldier': 1,\n",
      "          'flame': 1,\n",
      "          'played': 1,\n",
      "          'michael': 1,\n",
      "          'pare': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'town': 1,\n",
      "          'doesnt': 1,\n",
      "          'count': 1,\n",
      "          'bunch': 1,\n",
      "          'going': 1,\n",
      "          'askew': 1,\n",
      "          'nthats': 1,\n",
      "          'entire': 1,\n",
      "          'spats': 1,\n",
      "          'manager': 1,\n",
      "          'hilarious': 1,\n",
      "          'rick': 1,\n",
      "          'moranis': 1,\n",
      "          'encounter': 1,\n",
      "          'group': 1,\n",
      "          'winds': 1,\n",
      "          'becoming': 1,\n",
      "          'supporting': 1,\n",
      "          'act': 1,\n",
      "          'touches': 1,\n",
      "          'nbut': 1,\n",
      "          'movies': 1,\n",
      "          'important': 1,\n",
      "          'style': 1,\n",
      "          'visuals': 1,\n",
      "          'attitudes': 1,\n",
      "          'quotable': 1,\n",
      "          'lines': 1,\n",
      "          'posturing': 1,\n",
      "          'delivers': 1,\n",
      "          'consistently': 1,\n",
      "          'great': 1,\n",
      "          'brio': 1,\n",
      "          'pacing': 1,\n",
      "          'nno': 1,\n",
      "          'surprise': 1,\n",
      "          'directed': 1,\n",
      "          'walter': 1,\n",
      "          'hill': 1,\n",
      "          '48': 1,\n",
      "          'hrs': 1,\n",
      "          'understands': 1,\n",
      "          'kind': 1,\n",
      "          'macho': 1,\n",
      "          'romanticism': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'thats': 1,\n",
      "          'mixture': 1,\n",
      "          'times': 1,\n",
      "          'sensibilities': 1,\n",
      "          'unified': 1,\n",
      "          'tone': 1,\n",
      "          'nwhen': 1,\n",
      "          'last': 1,\n",
      "          'time': 1,\n",
      "          'could': 1,\n",
      "          'say': 1,\n",
      "          'something': 1,\n",
      "          'especially': 1,\n",
      "          'seems': 1,\n",
      "          'someone': 1,\n",
      "          'gets': 1,\n",
      "          'decked': 1,\n",
      "          'jaw': 1,\n",
      "          'passes': 1,\n",
      "          'every': 1,\n",
      "          '2': 1,\n",
      "          '63': 1,\n",
      "          'minutes': 1,\n",
      "          'cue': 1,\n",
      "          'isnt': 1,\n",
      "          'greatest': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'occupies': 1,\n",
      "          'totally': 1,\n",
      "          'unique': 1,\n",
      "          'niche': 1,\n",
      "          'enjoys': 1,\n",
      "          'position': 1,\n",
      "          'nanyone': 1,\n",
      "          'weakness': 1,\n",
      "          'neon': 1,\n",
      "          'motorcycles': 1,\n",
      "          'rainy': 1,\n",
      "          'streets': 1,\n",
      "          'el': 1,\n",
      "          'studebakers': 1,\n",
      "          'pictures': 1,\n",
      "          'lonely': 1,\n",
      "          'heroes': 1,\n",
      "          'gal': 1,\n",
      "          'giving': 1,\n",
      "          'microphone': 1,\n",
      "          'lungs': 1,\n",
      "          'eat': 1,\n",
      "          'ni': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'melvin': 9,\n",
      "          'dog': 7,\n",
      "          'film': 7,\n",
      "          'simon': 5,\n",
      "          'character': 4,\n",
      "          'little': 4,\n",
      "          'nthe': 4,\n",
      "          'melvins': 4,\n",
      "          'characters': 3,\n",
      "          'good': 3,\n",
      "          'gets': 3,\n",
      "          'like': 3,\n",
      "          'mean': 3,\n",
      "          'makes': 3,\n",
      "          'person': 3,\n",
      "          'also': 3,\n",
      "          'kinnear': 3,\n",
      "          'gooding': 3,\n",
      "          'jr': 3,\n",
      "          'best': 3,\n",
      "          'actually': 3,\n",
      "          'however': 3,\n",
      "          'nicholson': 2,\n",
      "          'funny': 2,\n",
      "          'playing': 2,\n",
      "          'qualities': 2,\n",
      "          'around': 2,\n",
      "          'feels': 2,\n",
      "          'nhes': 2,\n",
      "          'ni': 2,\n",
      "          'shows': 2,\n",
      "          'day': 2,\n",
      "          'waitress': 2,\n",
      "          'carol': 2,\n",
      "          'hunt': 2,\n",
      "          'none': 2,\n",
      "          'comes': 2,\n",
      "          'get': 2,\n",
      "          'often': 2,\n",
      "          'artist': 2,\n",
      "          'lives': 2,\n",
      "          'near': 2,\n",
      "          'gay': 2,\n",
      "          'friend': 2,\n",
      "          'frank': 2,\n",
      "          'cuba': 2,\n",
      "          'much': 2,\n",
      "          'take': 2,\n",
      "          'watching': 2,\n",
      "          'nthis': 2,\n",
      "          'interesting': 2,\n",
      "          'nhe': 2,\n",
      "          'performance': 2,\n",
      "          'part': 2,\n",
      "          'care': 2,\n",
      "          'man': 2,\n",
      "          'one': 2,\n",
      "          'jack': 1,\n",
      "          'way': 1,\n",
      "          'redeeming': 1,\n",
      "          'end': 1,\n",
      "          'liking': 1,\n",
      "          'anyway': 1,\n",
      "          'nin': 1,\n",
      "          'question': 1,\n",
      "          'udall': 1,\n",
      "          'successful': 1,\n",
      "          'novelist': 1,\n",
      "          'obsessivecompulsive': 1,\n",
      "          'disorder': 1,\n",
      "          'seems': 1,\n",
      "          'bent': 1,\n",
      "          'contact': 1,\n",
      "          'people': 1,\n",
      "          'possible': 1,\n",
      "          'except': 1,\n",
      "          'royal': 1,\n",
      "          'pain': 1,\n",
      "          'youknowwhere': 1,\n",
      "          'really': 1,\n",
      "          'opening': 1,\n",
      "          'scene': 1,\n",
      "          'shoving': 1,\n",
      "          'trash': 1,\n",
      "          'chute': 1,\n",
      "          'manhattan': 1,\n",
      "          'condominium': 1,\n",
      "          'nevery': 1,\n",
      "          'eats': 1,\n",
      "          'cafe': 1,\n",
      "          'sits': 1,\n",
      "          'table': 1,\n",
      "          'served': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'favorite': 1,\n",
      "          'place': 1,\n",
      "          'vicious': 1,\n",
      "          'nuisance': 1,\n",
      "          'helen': 1,\n",
      "          'tells': 1,\n",
      "          'go': 1,\n",
      "          'sit': 1,\n",
      "          'another': 1,\n",
      "          'section': 1,\n",
      "          'waitresses': 1,\n",
      "          'cringe': 1,\n",
      "          'comment': 1,\n",
      "          'goes': 1,\n",
      "          'far': 1,\n",
      "          'genuinely': 1,\n",
      "          'hurt': 1,\n",
      "          'ton': 1,\n",
      "          'bricks': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'find': 1,\n",
      "          'put': 1,\n",
      "          'matter': 1,\n",
      "          'course': 1,\n",
      "          'nanother': 1,\n",
      "          'crosses': 1,\n",
      "          'sights': 1,\n",
      "          'greg': 1,\n",
      "          'floor': 1,\n",
      "          'naside': 1,\n",
      "          'fact': 1,\n",
      "          'terror': 1,\n",
      "          'city': 1,\n",
      "          'added': 1,\n",
      "          'benefit': 1,\n",
      "          'making': 1,\n",
      "          'prime': 1,\n",
      "          'target': 1,\n",
      "          'nsimons': 1,\n",
      "          'fare': 1,\n",
      "          'better': 1,\n",
      "          'nwhen': 1,\n",
      "          'walks': 1,\n",
      "          'pair': 1,\n",
      "          'men': 1,\n",
      "          'robbing': 1,\n",
      "          'apartment': 1,\n",
      "          'brutally': 1,\n",
      "          'beaten': 1,\n",
      "          'sent': 1,\n",
      "          'hospital': 1,\n",
      "          'grown': 1,\n",
      "          'tired': 1,\n",
      "          'seeing': 1,\n",
      "          'verbal': 1,\n",
      "          'abuse': 1,\n",
      "          'dished': 1,\n",
      "          'neighbor': 1,\n",
      "          'intimidates': 1,\n",
      "          'simons': 1,\n",
      "          'convalesces': 1,\n",
      "          'earlier': 1,\n",
      "          'shoved': 1,\n",
      "          'garbage': 1,\n",
      "          'nan': 1,\n",
      "          'thing': 1,\n",
      "          'happens': 1,\n",
      "          'takes': 1,\n",
      "          'two': 1,\n",
      "          'develop': 1,\n",
      "          'attachment': 1,\n",
      "          'catalyst': 1,\n",
      "          'softening': 1,\n",
      "          'world': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'happen': 1,\n",
      "          'overnight': 1,\n",
      "          'throughout': 1,\n",
      "          'bites': 1,\n",
      "          'tongue': 1,\n",
      "          'cares': 1,\n",
      "          'miraculously': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'elements': 1,\n",
      "          'try': 1,\n",
      "          'express': 1,\n",
      "          'feelings': 1,\n",
      "          'usual': 1,\n",
      "          'negative': 1,\n",
      "          'ones': 1,\n",
      "          'shares': 1,\n",
      "          'others': 1,\n",
      "          'traveling': 1,\n",
      "          'terra': 1,\n",
      "          'incognita': 1,\n",
      "          'ngood': 1,\n",
      "          'performances': 1,\n",
      "          'turned': 1,\n",
      "          'principal': 1,\n",
      "          'players': 1,\n",
      "          'especially': 1,\n",
      "          'nthey': 1,\n",
      "          'play': 1,\n",
      "          'well': 1,\n",
      "          'genuine': 1,\n",
      "          'chemistry': 1,\n",
      "          'pleasure': 1,\n",
      "          'watch': 1,\n",
      "          'screen': 1,\n",
      "          'ngreg': 1,\n",
      "          'becoming': 1,\n",
      "          'known': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'vulnerable': 1,\n",
      "          'gives': 1,\n",
      "          'short': 1,\n",
      "          'monologue': 1,\n",
      "          'means': 1,\n",
      "          'delivers': 1,\n",
      "          'inspiration': 1,\n",
      "          'conviction': 1,\n",
      "          'feel': 1,\n",
      "          'ncuba': 1,\n",
      "          'performs': 1,\n",
      "          'hypedup': 1,\n",
      "          'level': 1,\n",
      "          'energy': 1,\n",
      "          'contrasts': 1,\n",
      "          'nicely': 1,\n",
      "          'constant': 1,\n",
      "          'comic': 1,\n",
      "          'screenplay': 1,\n",
      "          'mark': 1,\n",
      "          'andrus': 1,\n",
      "          'james': 1,\n",
      "          'l': 1,\n",
      "          'brooks': 1,\n",
      "          'clever': 1,\n",
      "          'touching': 1,\n",
      "          'filled': 1,\n",
      "          'nmelvin': 1,\n",
      "          'cant': 1,\n",
      "          'quite': 1,\n",
      "          'figure': 1,\n",
      "          'whose': 1,\n",
      "          'mannerisms': 1,\n",
      "          'quirky': 1,\n",
      "          'capture': 1,\n",
      "          'attention': 1,\n",
      "          'ncarol': 1,\n",
      "          'working': 1,\n",
      "          'woman': 1,\n",
      "          'living': 1,\n",
      "          'mother': 1,\n",
      "          'trying': 1,\n",
      "          'child': 1,\n",
      "          'debilitating': 1,\n",
      "          'respiratory': 1,\n",
      "          'problem': 1,\n",
      "          'nsimon': 1,\n",
      "          'success': 1,\n",
      "          'circle': 1,\n",
      "          'peers': 1,\n",
      "          'still': 1,\n",
      "          'accepted': 1,\n",
      "          'society': 1,\n",
      "          'ncombined': 1,\n",
      "          'talent': 1,\n",
      "          'actors': 1,\n",
      "          'make': 1,\n",
      "          'noticeable': 1,\n",
      "          'area': 1,\n",
      "          'lacking': 1,\n",
      "          'absence': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'nhis': 1,\n",
      "          'exit': 1,\n",
      "          'supposed': 1,\n",
      "          'temporary': 1,\n",
      "          'ends': 1,\n",
      "          'return': 1,\n",
      "          'leaving': 1,\n",
      "          'relationship': 1,\n",
      "          'unresolved': 1,\n",
      "          'would': 1,\n",
      "          'liked': 1,\n",
      "          'seen': 1,\n",
      "          'general': 1,\n",
      "          'addition': 1,\n",
      "          'films': 1,\n",
      "          'conclusion': 1,\n",
      "          'ntheres': 1,\n",
      "          'actor': 1,\n",
      "          'probably': 1,\n",
      "          'recognized': 1,\n",
      "          'awards': 1,\n",
      "          'contributes': 1,\n",
      "          'greatly': 1,\n",
      "          'many': 1,\n",
      "          'movies': 1,\n",
      "          'scenes': 1,\n",
      "          'deserves': 1,\n",
      "          'mention': 1,\n",
      "          'plays': 1,\n",
      "          'pivotal': 1,\n",
      "          'role': 1,\n",
      "          'development': 1,\n",
      "          'serves': 1,\n",
      "          'forward': 1,\n",
      "          'plot': 1,\n",
      "          'absolutely': 1,\n",
      "          'scenestealing': 1,\n",
      "          'moments': 1,\n",
      "          'hard': 1,\n",
      "          'believe': 1,\n",
      "          'simply': 1,\n",
      "          'animal': 1,\n",
      "          'naward': 1,\n",
      "          'even': 1,\n",
      "          'puts': 1,\n",
      "          'know': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'outstanding': 1,\n",
      "          'movie': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'n': 8,\n",
      "          'morris': 8,\n",
      "          'nthe': 5,\n",
      "          'may': 4,\n",
      "          'film': 4,\n",
      "          'people': 3,\n",
      "          'hand': 3,\n",
      "          'errol': 3,\n",
      "          'camera': 3,\n",
      "          'cheap': 3,\n",
      "          'control': 3,\n",
      "          'like': 3,\n",
      "          'one': 3,\n",
      "          'nyou': 2,\n",
      "          'gardener': 2,\n",
      "          'animal': 2,\n",
      "          'creations': 2,\n",
      "          'right': 2,\n",
      "          'robot': 2,\n",
      "          'scientist': 2,\n",
      "          'brooks': 2,\n",
      "          'robots': 2,\n",
      "          'future': 2,\n",
      "          'directly': 2,\n",
      "          'morriss': 2,\n",
      "          'know': 2,\n",
      "          'ways': 2,\n",
      "          'time': 2,\n",
      "          'fast': 2,\n",
      "          'dream': 2,\n",
      "          'lives': 2,\n",
      "          'seem': 2,\n",
      "          'work': 2,\n",
      "          'threads': 2,\n",
      "          'another': 2,\n",
      "          'story': 2,\n",
      "          'intellectual': 2,\n",
      "          'feels': 2,\n",
      "          'visuals': 2,\n",
      "          'video': 2,\n",
      "          'death': 2,\n",
      "          'trainer': 2,\n",
      "          'karen': 2,\n",
      "          'schmeer': 2,\n",
      "          'shondra': 2,\n",
      "          'merrill': 2,\n",
      "          'robert': 2,\n",
      "          'richardson': 2,\n",
      "          'caleb': 2,\n",
      "          'sampson': 2,\n",
      "          'ive': 1,\n",
      "          'told': 1,\n",
      "          'several': 1,\n",
      "          'youre': 1,\n",
      "          'old': 1,\n",
      "          'fashioned': 1,\n",
      "          'want': 1,\n",
      "          'everything': 1,\n",
      "          'topiary': 1,\n",
      "          'george': 1,\n",
      "          'mendonca': 1,\n",
      "          'complains': 1,\n",
      "          'defending': 1,\n",
      "          'continued': 1,\n",
      "          'resort': 1,\n",
      "          'shears': 1,\n",
      "          'trimming': 1,\n",
      "          'intricately': 1,\n",
      "          'privetsculpted': 1,\n",
      "          'way': 1,\n",
      "          'nsnip': 1,\n",
      "          'snip': 1,\n",
      "          'believe': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'replace': 1,\n",
      "          'building': 1,\n",
      "          'machines': 1,\n",
      "          'muses': 1,\n",
      "          'mit': 1,\n",
      "          'rodney': 1,\n",
      "          'builds': 1,\n",
      "          'run': 1,\n",
      "          'instinct': 1,\n",
      "          'place': 1,\n",
      "          'humans': 1,\n",
      "          'really': 1,\n",
      "          'successful': 1,\n",
      "          'feel': 1,\n",
      "          'theres': 1,\n",
      "          'looking': 1,\n",
      "          'nin': 1,\n",
      "          'slickest': 1,\n",
      "          'yet': 1,\n",
      "          'nonfiction': 1,\n",
      "          'auteur': 1,\n",
      "          'thin': 1,\n",
      "          'blue': 1,\n",
      "          'line': 1,\n",
      "          'brief': 1,\n",
      "          'history': 1,\n",
      "          'reportage': 1,\n",
      "          'highest': 1,\n",
      "          'order': 1,\n",
      "          'njournalism': 1,\n",
      "          'students': 1,\n",
      "          'making': 1,\n",
      "          'connections': 1,\n",
      "          'ncrosscutting': 1,\n",
      "          'among': 1,\n",
      "          'interviews': 1,\n",
      "          'filmed': 1,\n",
      "          'segments': 1,\n",
      "          'traces': 1,\n",
      "          'four': 1,\n",
      "          'disparate': 1,\n",
      "          'professionals': 1,\n",
      "          'share': 1,\n",
      "          'nothing': 1,\n",
      "          'immersion': 1,\n",
      "          'around': 1,\n",
      "          'intricate': 1,\n",
      "          'quadruple': 1,\n",
      "          'helix': 1,\n",
      "          'fun': 1,\n",
      "          'settling': 1,\n",
      "          'theater': 1,\n",
      "          'seat': 1,\n",
      "          'wondering': 1,\n",
      "          'hell': 1,\n",
      "          'possibly': 1,\n",
      "          'nwhat': 1,\n",
      "          'manages': 1,\n",
      "          'something': 1,\n",
      "          'akin': 1,\n",
      "          'magic': 1,\n",
      "          'trick': 1,\n",
      "          'interrogative': 1,\n",
      "          'sleight': 1,\n",
      "          'none': 1,\n",
      "          'things': 1,\n",
      "          'different': 1,\n",
      "          'documentary': 1,\n",
      "          'besides': 1,\n",
      "          'alwaysstriking': 1,\n",
      "          'interview': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'style': 1,\n",
      "          'subjects': 1,\n",
      "          'look': 1,\n",
      "          'viewer': 1,\n",
      "          'nweary': 1,\n",
      "          'pressing': 1,\n",
      "          'cheek': 1,\n",
      "          'lens': 1,\n",
      "          'get': 1,\n",
      "          'effect': 1,\n",
      "          'conversations': 1,\n",
      "          'developed': 1,\n",
      "          'elaborate': 1,\n",
      "          'doublecamera': 1,\n",
      "          'gadget': 1,\n",
      "          'calls': 1,\n",
      "          'halfjokingly': 1,\n",
      "          'interrotron': 1,\n",
      "          'nthrough': 1,\n",
      "          'rig': 1,\n",
      "          'uses': 1,\n",
      "          'pair': 1,\n",
      "          'teleprompters': 1,\n",
      "          'project': 1,\n",
      "          'images': 1,\n",
      "          'interviewer': 1,\n",
      "          'subject': 1,\n",
      "          'vice': 1,\n",
      "          'versa': 1,\n",
      "          'folks': 1,\n",
      "          'talk': 1,\n",
      "          'startlingly': 1,\n",
      "          'image': 1,\n",
      "          'extension': 1,\n",
      "          'audience': 1,\n",
      "          'wonders': 1,\n",
      "          'whether': 1,\n",
      "          'anyone': 1,\n",
      "          'interested': 1,\n",
      "          'maintaining': 1,\n",
      "          'garden': 1,\n",
      "          'hes': 1,\n",
      "          'devoted': 1,\n",
      "          'half': 1,\n",
      "          'life': 1,\n",
      "          'tending': 1,\n",
      "          'little': 1,\n",
      "          'pleased': 1,\n",
      "          'note': 1,\n",
      "          'primal': 1,\n",
      "          'examples': 1,\n",
      "          'insect': 1,\n",
      "          'even': 1,\n",
      "          'complicated': 1,\n",
      "          'set': 1,\n",
      "          'sensory': 1,\n",
      "          'receptors': 1,\n",
      "          'mole': 1,\n",
      "          'rat': 1,\n",
      "          'specialist': 1,\n",
      "          'delighted': 1,\n",
      "          'catalog': 1,\n",
      "          'vermin': 1,\n",
      "          'animals': 1,\n",
      "          'behave': 1,\n",
      "          'insects': 1,\n",
      "          'notes': 1,\n",
      "          'suited': 1,\n",
      "          'longterm': 1,\n",
      "          'survival': 1,\n",
      "          'nand': 1,\n",
      "          'circus': 1,\n",
      "          'pines': 1,\n",
      "          'longlost': 1,\n",
      "          'ideal': 1,\n",
      "          'exemplified': 1,\n",
      "          'worldrenowned': 1,\n",
      "          'showman': 1,\n",
      "          'clyde': 1,\n",
      "          'beatty': 1,\n",
      "          'starred': 1,\n",
      "          'serials': 1,\n",
      "          'zombies': 1,\n",
      "          'stratosphere': 1,\n",
      "          'excerpted': 1,\n",
      "          'length': 1,\n",
      "          'affection': 1,\n",
      "          'nstarting': 1,\n",
      "          'detect': 1,\n",
      "          'patterns': 1,\n",
      "          'nfast': 1,\n",
      "          'contains': 1,\n",
      "          'multitude': 1,\n",
      "          'parallels': 1,\n",
      "          'tiny': 1,\n",
      "          'intersections': 1,\n",
      "          'culminating': 1,\n",
      "          'elegy': 1,\n",
      "          'dedicated': 1,\n",
      "          'late': 1,\n",
      "          'mother': 1,\n",
      "          'stepfather': 1,\n",
      "          'balanced': 1,\n",
      "          'airy': 1,\n",
      "          'precipice': 1,\n",
      "          'dividing': 1,\n",
      "          'already': 1,\n",
      "          'musty': 1,\n",
      "          'past': 1,\n",
      "          'alternately': 1,\n",
      "          'exhilarating': 1,\n",
      "          'terrifying': 1,\n",
      "          'space': 1,\n",
      "          'title': 1,\n",
      "          'taken': 1,\n",
      "          'wish': 1,\n",
      "          'nasa': 1,\n",
      "          'would': 1,\n",
      "          'send': 1,\n",
      "          'payload': 1,\n",
      "          'hundreds': 1,\n",
      "          'expendable': 1,\n",
      "          'scurry': 1,\n",
      "          'martian': 1,\n",
      "          'surface': 1,\n",
      "          'creating': 1,\n",
      "          'sort': 1,\n",
      "          'road': 1,\n",
      "          'map': 1,\n",
      "          'terrain': 1,\n",
      "          'nwith': 1,\n",
      "          'able': 1,\n",
      "          'assists': 1,\n",
      "          'editors': 1,\n",
      "          'cinematographer': 1,\n",
      "          'oliver': 1,\n",
      "          'stones': 1,\n",
      "          'longtime': 1,\n",
      "          'collaborator': 1,\n",
      "          'becomes': 1,\n",
      "          'cinematic': 1,\n",
      "          'contraption': 1,\n",
      "          'thats': 1,\n",
      "          'wonder': 1,\n",
      "          'narrative': 1,\n",
      "          'divergence': 1,\n",
      "          'coherence': 1,\n",
      "          'enhancing': 1,\n",
      "          'pictures': 1,\n",
      "          'wacky': 1,\n",
      "          'mood': 1,\n",
      "          'playful': 1,\n",
      "          'score': 1,\n",
      "          'alloy': 1,\n",
      "          'orchestra': 1,\n",
      "          'founder': 1,\n",
      "          'ndifferent': 1,\n",
      "          'inform': 1,\n",
      "          'comment': 1,\n",
      "          'serene': 1,\n",
      "          'inscrutability': 1,\n",
      "          'kieslowski': 1,\n",
      "          'surrealist': 1,\n",
      "          'nby': 1,\n",
      "          'cobbling': 1,\n",
      "          'together': 1,\n",
      "          'motley': 1,\n",
      "          'musings': 1,\n",
      "          'thesis': 1,\n",
      "          'nature': 1,\n",
      "          'craftsmanship': 1,\n",
      "          'invention': 1,\n",
      "          'existence': 1,\n",
      "          'reveals': 1,\n",
      "          'presence': 1,\n",
      "          'cosmic': 1,\n",
      "          'themes': 1,\n",
      "          'creation': 1,\n",
      "          'evolution': 1,\n",
      "          'earthbound': 1,\n",
      "          'nat': 1,\n",
      "          'significantly': 1,\n",
      "          'pays': 1,\n",
      "          'tribute': 1,\n",
      "          'consuming': 1,\n",
      "          'passion': 1,\n",
      "          'ones': 1,\n",
      "          'nthis': 1,\n",
      "          'breakdown': 1,\n",
      "          'dichotomy': 1,\n",
      "          'everyday': 1,\n",
      "          'extraordinary': 1,\n",
      "          'likely': 1,\n",
      "          'profound': 1,\n",
      "          'anything': 1,\n",
      "          'youll': 1,\n",
      "          'encounter': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'year': 1,\n",
      "          'cry': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'ndont': 1,\n",
      "          'miss': 1,\n",
      "          'directed': 1,\n",
      "          'edited': 1,\n",
      "          'cinematography': 1,\n",
      "          'music': 1,\n",
      "          'u': 1,\n",
      "          '1997': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'men': 7,\n",
      "          'nick': 6,\n",
      "          'group': 5,\n",
      "          'nmichael': 5,\n",
      "          'movie': 5,\n",
      "          'one': 4,\n",
      "          'act': 4,\n",
      "          'steven': 4,\n",
      "          'play': 4,\n",
      "          'deer': 3,\n",
      "          'hunter': 3,\n",
      "          'michael': 3,\n",
      "          'lives': 3,\n",
      "          'friends': 3,\n",
      "          'small': 3,\n",
      "          'performances': 3,\n",
      "          'film': 3,\n",
      "          'de': 3,\n",
      "          'vietnam': 3,\n",
      "          'scenes': 3,\n",
      "          'eventually': 3,\n",
      "          'russian': 3,\n",
      "          'roulette': 3,\n",
      "          'way': 3,\n",
      "          'truly': 2,\n",
      "          'greatest': 2,\n",
      "          'movies': 2,\n",
      "          'na': 2,\n",
      "          'community': 2,\n",
      "          'best': 2,\n",
      "          'outstanding': 2,\n",
      "          'turned': 2,\n",
      "          'actors': 2,\n",
      "          'ciminos': 2,\n",
      "          'brilliant': 2,\n",
      "          'directing': 2,\n",
      "          'provides': 2,\n",
      "          'first': 2,\n",
      "          'us': 2,\n",
      "          'work': 2,\n",
      "          'niro': 2,\n",
      "          'nafter': 2,\n",
      "          'john': 2,\n",
      "          'savage': 2,\n",
      "          'walken': 2,\n",
      "          'shortly': 2,\n",
      "          'nthis': 2,\n",
      "          'events': 2,\n",
      "          'many': 2,\n",
      "          'really': 2,\n",
      "          'prison': 2,\n",
      "          'two': 2,\n",
      "          'able': 2,\n",
      "          'saigon': 2,\n",
      "          'returns': 2,\n",
      "          'home': 2,\n",
      "          'like': 2,\n",
      "          'nhe': 2,\n",
      "          'upon': 2,\n",
      "          'still': 2,\n",
      "          'game': 2,\n",
      "          'find': 2,\n",
      "          'games': 2,\n",
      "          'directed': 1,\n",
      "          'cimino': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'captivating': 1,\n",
      "          'drama': 1,\n",
      "          'russianamerican': 1,\n",
      "          'pennsylvania': 1,\n",
      "          'promises': 1,\n",
      "          'never': 1,\n",
      "          'forget': 1,\n",
      "          'nin': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'winner': 1,\n",
      "          'picture': 1,\n",
      "          '1978': 1,\n",
      "          'perfect': 1,\n",
      "          'vision': 1,\n",
      "          'characters': 1,\n",
      "          'inside': 1,\n",
      "          'look': 1,\n",
      "          'hang': 1,\n",
      "          'together': 1,\n",
      "          'portrayed': 1,\n",
      "          'perfectly': 1,\n",
      "          'robert': 1,\n",
      "          'shown': 1,\n",
      "          'early': 1,\n",
      "          'natural': 1,\n",
      "          'leader': 1,\n",
      "          'days': 1,\n",
      "          'leave': 1,\n",
      "          'jobs': 1,\n",
      "          'factory': 1,\n",
      "          'head': 1,\n",
      "          'local': 1,\n",
      "          'bar': 1,\n",
      "          'george': 1,\n",
      "          'dzundza': 1,\n",
      "          'works': 1,\n",
      "          'nthree': 1,\n",
      "          'christopher': 1,\n",
      "          'leaving': 1,\n",
      "          'gets': 1,\n",
      "          'married': 1,\n",
      "          'marriage': 1,\n",
      "          'including': 1,\n",
      "          'axel': 1,\n",
      "          'chuck': 1,\n",
      "          'aspegren': 1,\n",
      "          'spend': 1,\n",
      "          'last': 1,\n",
      "          'day': 1,\n",
      "          'hunting': 1,\n",
      "          'trip': 1,\n",
      "          'favorite': 1,\n",
      "          'pasttimes': 1,\n",
      "          'sequence': 1,\n",
      "          'enables': 1,\n",
      "          'view': 1,\n",
      "          'lifestyle': 1,\n",
      "          'normal': 1,\n",
      "          'suddenly': 1,\n",
      "          'permanently': 1,\n",
      "          'affected': 1,\n",
      "          'ravages': 1,\n",
      "          'separations': 1,\n",
      "          'war': 1,\n",
      "          'wedding': 1,\n",
      "          'although': 1,\n",
      "          'criticized': 1,\n",
      "          'quite': 1,\n",
      "          'long': 1,\n",
      "          'actually': 1,\n",
      "          'enhance': 1,\n",
      "          'even': 1,\n",
      "          'purpose': 1,\n",
      "          'streep': 1,\n",
      "          'cazale': 1,\n",
      "          'died': 1,\n",
      "          'filming': 1,\n",
      "          'completed': 1,\n",
      "          'begin': 1,\n",
      "          'shine': 1,\n",
      "          'promise': 1,\n",
      "          'halt': 1,\n",
      "          'near': 1,\n",
      "          'future': 1,\n",
      "          'second': 1,\n",
      "          'begins': 1,\n",
      "          'trio': 1,\n",
      "          'front': 1,\n",
      "          'lines': 1,\n",
      "          'stationed': 1,\n",
      "          'south': 1,\n",
      "          'vietnamese': 1,\n",
      "          'village': 1,\n",
      "          'attacked': 1,\n",
      "          'viet': 1,\n",
      "          'cong': 1,\n",
      "          'captured': 1,\n",
      "          'held': 1,\n",
      "          'floating': 1,\n",
      "          'river': 1,\n",
      "          'run': 1,\n",
      "          'v': 1,\n",
      "          'c': 1,\n",
      "          'ninitiates': 1,\n",
      "          'horrifying': 1,\n",
      "          'prisoners': 1,\n",
      "          'forced': 1,\n",
      "          'nsteven': 1,\n",
      "          'emotionally': 1,\n",
      "          'marred': 1,\n",
      "          'turn': 1,\n",
      "          'secluded': 1,\n",
      "          'tiger': 1,\n",
      "          'cage': 1,\n",
      "          'water': 1,\n",
      "          'face': 1,\n",
      "          'refuses': 1,\n",
      "          'participate': 1,\n",
      "          'shows': 1,\n",
      "          'leadership': 1,\n",
      "          'convincing': 1,\n",
      "          'survive': 1,\n",
      "          'moreover': 1,\n",
      "          'must': 1,\n",
      "          '3': 1,\n",
      "          'bullets': 1,\n",
      "          'gun': 1,\n",
      "          'npersonally': 1,\n",
      "          'felt': 1,\n",
      "          'niros': 1,\n",
      "          'absolutely': 1,\n",
      "          'gripping': 1,\n",
      "          'portrayal': 1,\n",
      "          'displayed': 1,\n",
      "          'following': 1,\n",
      "          'escape': 1,\n",
      "          'separated': 1,\n",
      "          'get': 1,\n",
      "          'ends': 1,\n",
      "          'losing': 1,\n",
      "          'legs': 1,\n",
      "          'medical': 1,\n",
      "          'care': 1,\n",
      "          'finds': 1,\n",
      "          'u': 1,\n",
      "          'army': 1,\n",
      "          'hospital': 1,\n",
      "          'feel': 1,\n",
      "          'hero': 1,\n",
      "          'wants': 1,\n",
      "          'avoid': 1,\n",
      "          'celebrations': 1,\n",
      "          'recognition': 1,\n",
      "          'would': 1,\n",
      "          'bestow': 1,\n",
      "          'assumes': 1,\n",
      "          'lost': 1,\n",
      "          'third': 1,\n",
      "          'concentrates': 1,\n",
      "          'walkens': 1,\n",
      "          'character': 1,\n",
      "          'stumbles': 1,\n",
      "          'gambling': 1,\n",
      "          'operation': 1,\n",
      "          'nonly': 1,\n",
      "          'money': 1,\n",
      "          'learned': 1,\n",
      "          'possibly': 1,\n",
      "          'alive': 1,\n",
      "          'attempt': 1,\n",
      "          'narrowly': 1,\n",
      "          'link': 1,\n",
      "          'discovers': 1,\n",
      "          'participating': 1,\n",
      "          'tries': 1,\n",
      "          'bring': 1,\n",
      "          'emotional': 1,\n",
      "          'disturbing': 1,\n",
      "          'magnificent': 1,\n",
      "          'missed': 1,\n",
      "          'possible': 1,\n",
      "          'considered': 1,\n",
      "          'alltime': 1,\n",
      "          'equally': 1,\n",
      "          'dazzling': 1,\n",
      "          'ndo': 1,\n",
      "          'miss': 1,\n",
      "          'captivate': 1,\n",
      "          'astound': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'work': 4,\n",
      "          'hollywood': 4,\n",
      "          'best': 3,\n",
      "          'film': 3,\n",
      "          'cop': 3,\n",
      "          'exley': 3,\n",
      "          'nthe': 3,\n",
      "          'bud': 3,\n",
      "          'murder': 3,\n",
      "          'storytelling': 2,\n",
      "          'compelling': 2,\n",
      "          'ellroy': 2,\n",
      "          'l': 2,\n",
      "          'confidential': 2,\n",
      "          'one': 2,\n",
      "          'piece': 2,\n",
      "          'movie': 2,\n",
      "          'story': 2,\n",
      "          '3': 2,\n",
      "          'policemen': 2,\n",
      "          'vincennes': 2,\n",
      "          'spacey': 2,\n",
      "          'nthere': 2,\n",
      "          'pearce': 2,\n",
      "          'white': 2,\n",
      "          'crowe': 2,\n",
      "          'began': 2,\n",
      "          'needs': 1,\n",
      "          'books': 1,\n",
      "          'nbased': 1,\n",
      "          'book': 1,\n",
      "          'author': 1,\n",
      "          'james': 1,\n",
      "          'probably': 1,\n",
      "          'produced': 1,\n",
      "          'recent': 1,\n",
      "          'years': 1,\n",
      "          'ntogether': 1,\n",
      "          'director': 1,\n",
      "          'curtis': 1,\n",
      "          'hanson': 1,\n",
      "          'hand': 1,\n",
      "          'rocks': 1,\n",
      "          'cradle': 1,\n",
      "          'river': 1,\n",
      "          'wild': 1,\n",
      "          'corroborated': 1,\n",
      "          'closely': 1,\n",
      "          'throughout': 1,\n",
      "          'shooting': 1,\n",
      "          'resulted': 1,\n",
      "          'plot': 1,\n",
      "          'script': 1,\n",
      "          'tight': 1,\n",
      "          'atom': 1,\n",
      "          'would': 1,\n",
      "          'squeeze': 1,\n",
      "          'nset': 1,\n",
      "          '50s': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'vivid': 1,\n",
      "          'personalities': 1,\n",
      "          'njack': 1,\n",
      "          'concerned': 1,\n",
      "          'busting': 1,\n",
      "          'fame': 1,\n",
      "          'stardom': 1,\n",
      "          'ala': 1,\n",
      "          'style': 1,\n",
      "          'concentrating': 1,\n",
      "          'heavily': 1,\n",
      "          'attract': 1,\n",
      "          'media': 1,\n",
      "          'attention': 1,\n",
      "          'also': 1,\n",
      "          'young': 1,\n",
      "          'hotshot': 1,\n",
      "          'rookie': 1,\n",
      "          'ed': 1,\n",
      "          'fresh': 1,\n",
      "          'academy': 1,\n",
      "          'allout': 1,\n",
      "          'carve': 1,\n",
      "          'name': 1,\n",
      "          'footsteps': 1,\n",
      "          'legendary': 1,\n",
      "          'father': 1,\n",
      "          'tough': 1,\n",
      "          'unnerving': 1,\n",
      "          'believes': 1,\n",
      "          'justice': 1,\n",
      "          'swift': 1,\n",
      "          'violent': 1,\n",
      "          'way': 1,\n",
      "          'n3': 1,\n",
      "          'distinct': 1,\n",
      "          'characters': 1,\n",
      "          'paths': 1,\n",
      "          'working': 1,\n",
      "          'place': 1,\n",
      "          'real': 1,\n",
      "          'distinction': 1,\n",
      "          'good': 1,\n",
      "          'evil': 1,\n",
      "          'nwhen': 1,\n",
      "          'partner': 1,\n",
      "          'murdered': 1,\n",
      "          'day': 1,\n",
      "          'resignation': 1,\n",
      "          'sets': 1,\n",
      "          'find': 1,\n",
      "          'people': 1,\n",
      "          'responsible': 1,\n",
      "          'unwittingly': 1,\n",
      "          'delved': 1,\n",
      "          'something': 1,\n",
      "          'simple': 1,\n",
      "          'robbery': 1,\n",
      "          'neven': 1,\n",
      "          'receives': 1,\n",
      "          'promotion': 1,\n",
      "          'case': 1,\n",
      "          'happenings': 1,\n",
      "          'link': 1,\n",
      "          'eventually': 1,\n",
      "          'reach': 1,\n",
      "          'point': 1,\n",
      "          'convergence': 1,\n",
      "          'actually': 1,\n",
      "          'personal': 1,\n",
      "          'investigation': 1,\n",
      "          'turns': 1,\n",
      "          'uncovering': 1,\n",
      "          'complex': 1,\n",
      "          'web': 1,\n",
      "          'organisedcrime': 1,\n",
      "          'last': 1,\n",
      "          'time': 1,\n",
      "          'remember': 1,\n",
      "          'clever': 1,\n",
      "          'watched': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'nin': 1,\n",
      "          'get': 1,\n",
      "          'shock': 1,\n",
      "          'cleverness': 1,\n",
      "          'former': 1,\n",
      "          'lot': 1,\n",
      "          'going': 1,\n",
      "          'single': 1,\n",
      "          'moment': 1,\n",
      "          'felt': 1,\n",
      "          'slow': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'though': 1,\n",
      "          'convincing': 1,\n",
      "          'job': 1,\n",
      "          'streetwise': 1,\n",
      "          'carried': 1,\n",
      "          'mostly': 1,\n",
      "          'two': 1,\n",
      "          'rather': 1,\n",
      "          'unknowns': 1,\n",
      "          'npearces': 1,\n",
      "          'cool': 1,\n",
      "          'calculative': 1,\n",
      "          'actions': 1,\n",
      "          'slight': 1,\n",
      "          'hint': 1,\n",
      "          'val': 1,\n",
      "          'kilmer': 1,\n",
      "          'appearance': 1,\n",
      "          'ncrowes': 1,\n",
      "          'impressive': 1,\n",
      "          'headstrong': 1,\n",
      "          'temperamental': 1,\n",
      "          'obtain': 1,\n",
      "          'sort': 1,\n",
      "          'recognition': 1,\n",
      "          'nsuperb': 1,\n",
      "          'acting': 1,\n",
      "          'wonderful': 1,\n",
      "          'climaxing': 1,\n",
      "          'gunfights': 1,\n",
      "          'ever': 1,\n",
      "          'neasily': 1,\n",
      "          '1997': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'marquis': 8,\n",
      "          'de': 6,\n",
      "          'sade': 6,\n",
      "          'quills': 3,\n",
      "          'nthe': 3,\n",
      "          'madeleine': 2,\n",
      "          'royercollard': 2,\n",
      "          'cell': 2,\n",
      "          'two': 2,\n",
      "          'abbe': 2,\n",
      "          'able': 2,\n",
      "          'us': 2,\n",
      "          'synopsis': 1,\n",
      "          'committed': 1,\n",
      "          'asylum': 1,\n",
      "          'rush': 1,\n",
      "          'continues': 1,\n",
      "          'publish': 1,\n",
      "          'pornographic': 1,\n",
      "          'literature': 1,\n",
      "          'aided': 1,\n",
      "          'young': 1,\n",
      "          'maid': 1,\n",
      "          'winslet': 1,\n",
      "          'nabbe': 1,\n",
      "          'coulmier': 1,\n",
      "          'phoenix': 1,\n",
      "          'runs': 1,\n",
      "          'hospital': 1,\n",
      "          'disapproves': 1,\n",
      "          'stories': 1,\n",
      "          'humours': 1,\n",
      "          'hope': 1,\n",
      "          'achieving': 1,\n",
      "          'cure': 1,\n",
      "          'nde': 1,\n",
      "          'sades': 1,\n",
      "          'craft': 1,\n",
      "          'life': 1,\n",
      "          'threatened': 1,\n",
      "          'emperor': 1,\n",
      "          'dispatches': 1,\n",
      "          'dr': 1,\n",
      "          'michael': 1,\n",
      "          'caine': 1,\n",
      "          'stop': 1,\n",
      "          'work': 1,\n",
      "          'permanently': 1,\n",
      "          'nreview': 1,\n",
      "          'exploration': 1,\n",
      "          'madness': 1,\n",
      "          'cruelty': 1,\n",
      "          'perversion': 1,\n",
      "          'obsession': 1,\n",
      "          'sex': 1,\n",
      "          'form': 1,\n",
      "          'matter': 1,\n",
      "          'obscene': 1,\n",
      "          'nbut': 1,\n",
      "          'also': 1,\n",
      "          'details': 1,\n",
      "          'determination': 1,\n",
      "          'write': 1,\n",
      "          'spite': 1,\n",
      "          'obstacles': 1,\n",
      "          'put': 1,\n",
      "          'path': 1,\n",
      "          'propagate': 1,\n",
      "          'words': 1,\n",
      "          'masses': 1,\n",
      "          'extent': 1,\n",
      "          'willing': 1,\n",
      "          'go': 1,\n",
      "          'practise': 1,\n",
      "          'trade': 1,\n",
      "          'amongst': 1,\n",
      "          'movies': 1,\n",
      "          'intriguing': 1,\n",
      "          'elements': 1,\n",
      "          'scribes': 1,\n",
      "          'story': 1,\n",
      "          'blood': 1,\n",
      "          'narrates': 1,\n",
      "          'tale': 1,\n",
      "          'via': 1,\n",
      "          'chain': 1,\n",
      "          'fellow': 1,\n",
      "          'inmates': 1,\n",
      "          'nto': 1,\n",
      "          'provide': 1,\n",
      "          'contrast': 1,\n",
      "          'wright': 1,\n",
      "          'involves': 1,\n",
      "          'different': 1,\n",
      "          'characters': 1,\n",
      "          'none': 1,\n",
      "          'handsome': 1,\n",
      "          'charming': 1,\n",
      "          'kindly': 1,\n",
      "          'man': 1,\n",
      "          'whose': 1,\n",
      "          'desires': 1,\n",
      "          'stymied': 1,\n",
      "          'oath': 1,\n",
      "          'god': 1,\n",
      "          'lusts': 1,\n",
      "          'wizened': 1,\n",
      "          'nand': 1,\n",
      "          'hypocrite': 1,\n",
      "          'truth': 1,\n",
      "          'sadistic': 1,\n",
      "          'motley': 1,\n",
      "          'creations': 1,\n",
      "          'nrush': 1,\n",
      "          'splendid': 1,\n",
      "          'utterly': 1,\n",
      "          'inhabiting': 1,\n",
      "          'character': 1,\n",
      "          'nkaufmans': 1,\n",
      "          'direction': 1,\n",
      "          'fine': 1,\n",
      "          'bring': 1,\n",
      "          'sense': 1,\n",
      "          'bizarre': 1,\n",
      "          'humour': 1,\n",
      "          'grim': 1,\n",
      "          'proceedings': 1,\n",
      "          'plot': 1,\n",
      "          'rather': 1,\n",
      "          'mundane': 1,\n",
      "          'plays': 1,\n",
      "          'unsurprisingly': 1,\n",
      "          'virtually': 1,\n",
      "          'unimportant': 1,\n",
      "          'nfor': 1,\n",
      "          'hours': 1,\n",
      "          'acquaints': 1,\n",
      "          'frightening': 1,\n",
      "          'still': 1,\n",
      "          'allows': 1,\n",
      "          'brief': 1,\n",
      "          'insight': 1,\n",
      "          'scatological': 1,\n",
      "          'soul': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'gay': 10,\n",
      "          'nthe': 10,\n",
      "          'howard': 6,\n",
      "          'one': 6,\n",
      "          'seems': 5,\n",
      "          'high': 5,\n",
      "          'greenleaf': 5,\n",
      "          'years': 4,\n",
      "          'comedy': 4,\n",
      "          'quite': 4,\n",
      "          'nit': 4,\n",
      "          'teacher': 4,\n",
      "          'cameron': 4,\n",
      "          'best': 4,\n",
      "          'life': 3,\n",
      "          'movie': 3,\n",
      "          'nits': 3,\n",
      "          'using': 3,\n",
      "          'nwhile': 3,\n",
      "          'tom': 3,\n",
      "          'film': 3,\n",
      "          'brackett': 3,\n",
      "          'town': 3,\n",
      "          'turns': 3,\n",
      "          'perfect': 3,\n",
      "          'script': 3,\n",
      "          'even': 2,\n",
      "          'gaining': 2,\n",
      "          'acclaimed': 2,\n",
      "          'along': 2,\n",
      "          'came': 2,\n",
      "          'three': 2,\n",
      "          'films': 2,\n",
      "          'top': 2,\n",
      "          'also': 2,\n",
      "          'lifestyle': 2,\n",
      "          'becomes': 2,\n",
      "          'less': 2,\n",
      "          'serious': 2,\n",
      "          'homosexuality': 2,\n",
      "          'community': 2,\n",
      "          'laugh': 2,\n",
      "          'something': 2,\n",
      "          'like': 2,\n",
      "          'comes': 2,\n",
      "          'enjoy': 2,\n",
      "          'doesnt': 2,\n",
      "          'sex': 2,\n",
      "          'hanks': 2,\n",
      "          'oscar': 2,\n",
      "          'tribute': 2,\n",
      "          'subject': 2,\n",
      "          'written': 2,\n",
      "          'set': 2,\n",
      "          'become': 2,\n",
      "          'stars': 2,\n",
      "          'school': 2,\n",
      "          'english': 2,\n",
      "          'small': 2,\n",
      "          'cusack': 2,\n",
      "          'wedding': 2,\n",
      "          'surrounding': 2,\n",
      "          'almost': 2,\n",
      "          'huge': 2,\n",
      "          'drake': 2,\n",
      "          'actor': 2,\n",
      "          'thing': 2,\n",
      "          'including': 2,\n",
      "          'news': 2,\n",
      "          'questions': 2,\n",
      "          'howards': 2,\n",
      "          'reynolds': 2,\n",
      "          'brimley': 2,\n",
      "          'principal': 2,\n",
      "          'halliwell': 2,\n",
      "          'newhart': 2,\n",
      "          'camera': 2,\n",
      "          'every': 2,\n",
      "          'entertainment': 2,\n",
      "          'matter': 2,\n",
      "          'begin': 2,\n",
      "          'single': 2,\n",
      "          'never': 2,\n",
      "          'laughs': 2,\n",
      "          'solid': 2,\n",
      "          'remains': 2,\n",
      "          'allowed': 2,\n",
      "          'television': 1,\n",
      "          'shows': 1,\n",
      "          'characters': 1,\n",
      "          'infamous': 1,\n",
      "          'ellen': 1,\n",
      "          'sitcom': 1,\n",
      "          'centered': 1,\n",
      "          'lesbian': 1,\n",
      "          'industry': 1,\n",
      "          'homosexual': 1,\n",
      "          'based': 1,\n",
      "          'plot': 1,\n",
      "          'lines': 1,\n",
      "          'birdcage': 1,\n",
      "          'critically': 1,\n",
      "          'chasing': 1,\n",
      "          'amy': 1,\n",
      "          'nthen': 1,\n",
      "          'ten': 1,\n",
      "          'list': 1,\n",
      "          'released': 1,\n",
      "          'noticeable': 1,\n",
      "          'alternative': 1,\n",
      "          'taboo': 1,\n",
      "          'go': 1,\n",
      "          'medium': 1,\n",
      "          'proving': 1,\n",
      "          'worthwhile': 1,\n",
      "          'effort': 1,\n",
      "          'issue': 1,\n",
      "          'many': 1,\n",
      "          'comedies': 1,\n",
      "          'people': 1,\n",
      "          'flocking': 1,\n",
      "          'see': 1,\n",
      "          'notoriety': 1,\n",
      "          'nbut': 1,\n",
      "          'way': 1,\n",
      "          'present': 1,\n",
      "          'changing': 1,\n",
      "          'dramatically': 1,\n",
      "          'stereotyped': 1,\n",
      "          'used': 1,\n",
      "          'becoming': 1,\n",
      "          'heterosexuals': 1,\n",
      "          'homosexuals': 1,\n",
      "          'able': 1,\n",
      "          'thoroughly': 1,\n",
      "          'poke': 1,\n",
      "          'fun': 1,\n",
      "          'simply': 1,\n",
      "          'uses': 1,\n",
      "          'comedic': 1,\n",
      "          'capacity': 1,\n",
      "          'love': 1,\n",
      "          'marriage': 1,\n",
      "          'birth': 1,\n",
      "          'death': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'idea': 1,\n",
      "          'born': 1,\n",
      "          'day': 1,\n",
      "          'portraying': 1,\n",
      "          'aidsafflicted': 1,\n",
      "          'man': 1,\n",
      "          'philadelphia': 1,\n",
      "          'nif': 1,\n",
      "          'remember': 1,\n",
      "          'acceptance': 1,\n",
      "          'speech': 1,\n",
      "          'gave': 1,\n",
      "          'highly': 1,\n",
      "          'emotional': 1,\n",
      "          'sighted': 1,\n",
      "          'former': 1,\n",
      "          'major': 1,\n",
      "          'inspiration': 1,\n",
      "          'touchy': 1,\n",
      "          'producer': 1,\n",
      "          'scott': 1,\n",
      "          'rudin': 1,\n",
      "          'viewed': 1,\n",
      "          'setting': 1,\n",
      "          'potentially': 1,\n",
      "          'hilarious': 1,\n",
      "          'pitched': 1,\n",
      "          'screenwriter': 1,\n",
      "          'paul': 1,\n",
      "          'rudnick': 1,\n",
      "          'true': 1,\n",
      "          'heterosexual': 1,\n",
      "          'may': 1,\n",
      "          'controversial': 1,\n",
      "          'openly': 1,\n",
      "          'writer': 1,\n",
      "          'prerogative': 1,\n",
      "          'nkevin': 1,\n",
      "          'kline': 1,\n",
      "          'picturesque': 1,\n",
      "          'indiana': 1,\n",
      "          'nafter': 1,\n",
      "          'threeyear': 1,\n",
      "          'engagement': 1,\n",
      "          'fellow': 1,\n",
      "          'emily': 1,\n",
      "          'montgomery': 1,\n",
      "          'joan': 1,\n",
      "          'date': 1,\n",
      "          'hubbub': 1,\n",
      "          'big': 1,\n",
      "          'another': 1,\n",
      "          'story': 1,\n",
      "          'graduate': 1,\n",
      "          'matt': 1,\n",
      "          'dillon': 1,\n",
      "          'eagerly': 1,\n",
      "          'awaits': 1,\n",
      "          'events': 1,\n",
      "          'seem': 1,\n",
      "          'astronomical': 1,\n",
      "          'little': 1,\n",
      "          'anyone': 1,\n",
      "          'know': 1,\n",
      "          'much': 1,\n",
      "          'affect': 1,\n",
      "          'nwhen': 1,\n",
      "          'announced': 1,\n",
      "          'winner': 1,\n",
      "          'excitement': 1,\n",
      "          'heightened': 1,\n",
      "          'pays': 1,\n",
      "          'mr': 1,\n",
      "          'neveryone': 1,\n",
      "          'cheering': 1,\n",
      "          'back': 1,\n",
      "          'tacks': 1,\n",
      "          'calamitous': 1,\n",
      "          'words': 1,\n",
      "          'hes': 1,\n",
      "          'silent': 1,\n",
      "          'entire': 1,\n",
      "          'population': 1,\n",
      "          'joins': 1,\n",
      "          'simultaneous': 1,\n",
      "          'jaw': 1,\n",
      "          'drop': 1,\n",
      "          'nobody': 1,\n",
      "          'understand': 1,\n",
      "          'conclusion': 1,\n",
      "          'wild': 1,\n",
      "          'unexpected': 1,\n",
      "          'wreak': 1,\n",
      "          'havoc': 1,\n",
      "          'conservative': 1,\n",
      "          'american': 1,\n",
      "          'nnaturally': 1,\n",
      "          'pour': 1,\n",
      "          'fiancee': 1,\n",
      "          'parents': 1,\n",
      "          'debbie': 1,\n",
      "          'wilford': 1,\n",
      "          'students': 1,\n",
      "          'schools': 1,\n",
      "          'bob': 1,\n",
      "          'evidence': 1,\n",
      "          'starts': 1,\n",
      "          'obvious': 1,\n",
      "          'clean': 1,\n",
      "          'neat': 1,\n",
      "          'honest': 1,\n",
      "          'sincere': 1,\n",
      "          'romantic': 1,\n",
      "          'perhaps': 1,\n",
      "          'incriminating': 1,\n",
      "          'fact': 1,\n",
      "          'loves': 1,\n",
      "          'barbara': 1,\n",
      "          'streisand': 1,\n",
      "          'frenzy': 1,\n",
      "          'isnt': 1,\n",
      "          'helped': 1,\n",
      "          'crews': 1,\n",
      "          'conceivable': 1,\n",
      "          'magazine': 1,\n",
      "          'tonight': 1,\n",
      "          'wannabe': 1,\n",
      "          'show': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'none': 1,\n",
      "          'particular': 1,\n",
      "          'reporter': 1,\n",
      "          'peter': 1,\n",
      "          'malloy': 1,\n",
      "          'selleck': 1,\n",
      "          'inside': 1,\n",
      "          'unlike': 1,\n",
      "          'collage': 1,\n",
      "          'reporters': 1,\n",
      "          'wants': 1,\n",
      "          'spend': 1,\n",
      "          'whole': 1,\n",
      "          'week': 1,\n",
      "          'coverage': 1,\n",
      "          'intrusion': 1,\n",
      "          'welcome': 1,\n",
      "          'going': 1,\n",
      "          'mind': 1,\n",
      "          'passing': 1,\n",
      "          'minute': 1,\n",
      "          'shoved': 1,\n",
      "          'face': 1,\n",
      "          'regarding': 1,\n",
      "          'tossed': 1,\n",
      "          'frisbees': 1,\n",
      "          'dominoes': 1,\n",
      "          'tumble': 1,\n",
      "          'closest': 1,\n",
      "          'friends': 1,\n",
      "          'acting': 1,\n",
      "          'different': 1,\n",
      "          'hints': 1,\n",
      "          'possible': 1,\n",
      "          'termination': 1,\n",
      "          'employment': 1,\n",
      "          'indeed': 1,\n",
      "          'sounds': 1,\n",
      "          'devastating': 1,\n",
      "          'would': 1,\n",
      "          'werent': 1,\n",
      "          'presented': 1,\n",
      "          'nearperfection': 1,\n",
      "          'delightful': 1,\n",
      "          'ensemble': 1,\n",
      "          'casts': 1,\n",
      "          'nkline': 1,\n",
      "          'improve': 1,\n",
      "          'age': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'downright': 1,\n",
      "          'great': 1,\n",
      "          'character': 1,\n",
      "          'moment': 1,\n",
      "          'shine': 1,\n",
      "          'use': 1,\n",
      "          'wonderfully': 1,\n",
      "          'nevery': 1,\n",
      "          'performances': 1,\n",
      "          'ever': 1,\n",
      "          'ndillon': 1,\n",
      "          'likeable': 1,\n",
      "          'seemed': 1,\n",
      "          'role': 1,\n",
      "          'provide': 1,\n",
      "          'theyre': 1,\n",
      "          'bat': 1,\n",
      "          'nrudnicks': 1,\n",
      "          'heavily': 1,\n",
      "          'laced': 1,\n",
      "          'wit': 1,\n",
      "          'humor': 1,\n",
      "          'youll': 1,\n",
      "          'likely': 1,\n",
      "          'find': 1,\n",
      "          'laughing': 1,\n",
      "          'loud': 1,\n",
      "          'ninety': 1,\n",
      "          'minutes': 1,\n",
      "          'carry': 1,\n",
      "          'enough': 1,\n",
      "          'give': 1,\n",
      "          'four': 1,\n",
      "          'done': 1,\n",
      "          'year': 1,\n",
      "          'allaround': 1,\n",
      "          'exuberant': 1,\n",
      "          'actors': 1,\n",
      "          'absolutely': 1,\n",
      "          'notch': 1,\n",
      "          'blend': 1,\n",
      "          'hearttugging': 1,\n",
      "          'bog': 1,\n",
      "          'throughout': 1,\n",
      "          'entirety': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'sappily': 1,\n",
      "          'touching': 1,\n",
      "          'ending': 1,\n",
      "          'ndespite': 1,\n",
      "          'scene': 1,\n",
      "          'close': 1,\n",
      "          'comfort': 1,\n",
      "          'explaining': 1,\n",
      "          'everyone': 1,\n",
      "          'could': 1,\n",
      "          'nfrank': 1,\n",
      "          'oz': 1,\n",
      "          'known': 1,\n",
      "          'voice': 1,\n",
      "          'talent': 1,\n",
      "          'muppets': 1,\n",
      "          'directs': 1,\n",
      "          'delightfully': 1,\n",
      "          'potential': 1,\n",
      "          'rudnicks': 1,\n",
      "          'offer': 1,\n",
      "          'bit': 1,\n",
      "          'ncheck': 1,\n",
      "          'nyoull': 1,\n",
      "          'old': 1,\n",
      "          'time': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mile': 5,\n",
      "          'bobby': 5,\n",
      "          'films': 4,\n",
      "          'one': 4,\n",
      "          'atlantis': 3,\n",
      "          'nits': 3,\n",
      "          'dont': 3,\n",
      "          'natlantis': 3,\n",
      "          'like': 3,\n",
      "          'make': 3,\n",
      "          'read': 3,\n",
      "          'two': 2,\n",
      "          'falling': 2,\n",
      "          'cedars': 2,\n",
      "          'hicks': 2,\n",
      "          'green': 2,\n",
      "          'bit': 2,\n",
      "          'considering': 2,\n",
      "          'based': 2,\n",
      "          'king': 2,\n",
      "          'nthe': 2,\n",
      "          'penned': 2,\n",
      "          'nin': 2,\n",
      "          'book': 2,\n",
      "          'low': 2,\n",
      "          'men': 2,\n",
      "          'chapter': 2,\n",
      "          'harwich': 2,\n",
      "          'yelchin': 2,\n",
      "          'boarding': 2,\n",
      "          'house': 2,\n",
      "          'mother': 2,\n",
      "          'seems': 2,\n",
      "          'friends': 2,\n",
      "          'boorem': 2,\n",
      "          'ted': 2,\n",
      "          'hopkins': 2,\n",
      "          'enough': 2,\n",
      "          'least': 2,\n",
      "          'young': 2,\n",
      "          'eyes': 2,\n",
      "          'powers': 2,\n",
      "          'amazing': 2,\n",
      "          'robert': 2,\n",
      "          'including': 2,\n",
      "          'sense': 2,\n",
      "          'hes': 2,\n",
      "          'else': 2,\n",
      "          'would': 2,\n",
      "          'last': 1,\n",
      "          'shine': 1,\n",
      "          'snow': 1,\n",
      "          'australian': 1,\n",
      "          'director': 1,\n",
      "          'scott': 1,\n",
      "          'proven': 1,\n",
      "          'cinematic': 1,\n",
      "          'flashbacks': 1,\n",
      "          'best': 1,\n",
      "          'latest': 1,\n",
      "          'hearts': 1,\n",
      "          'different': 1,\n",
      "          'structure': 1,\n",
      "          'beginning': 1,\n",
      "          'ending': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'long': 1,\n",
      "          'flashback': 1,\n",
      "          'middle': 1,\n",
      "          'similar': 1,\n",
      "          'ironic': 1,\n",
      "          'stephen': 1,\n",
      "          'books': 1,\n",
      "          'parallels': 1,\n",
      "          'end': 1,\n",
      "          'either': 1,\n",
      "          'adapted': 1,\n",
      "          'william': 1,\n",
      "          'goldman': 1,\n",
      "          'previously': 1,\n",
      "          'bigscreen': 1,\n",
      "          'version': 1,\n",
      "          'misery': 1,\n",
      "          'process': 1,\n",
      "          'working': 1,\n",
      "          'script': 1,\n",
      "          'kings': 1,\n",
      "          'dreamcatcher': 1,\n",
      "          'neven': 1,\n",
      "          'content': 1,\n",
      "          'reminiscent': 1,\n",
      "          'fact': 1,\n",
      "          'perfect': 1,\n",
      "          'blend': 1,\n",
      "          'feelgood': 1,\n",
      "          '60s': 1,\n",
      "          'nostalgia': 1,\n",
      "          'stand': 1,\n",
      "          'also': 1,\n",
      "          'mystical': 1,\n",
      "          'power': 1,\n",
      "          'hokum': 1,\n",
      "          'nkings': 1,\n",
      "          'comprised': 1,\n",
      "          'five': 1,\n",
      "          'related': 1,\n",
      "          'short': 1,\n",
      "          'stories': 1,\n",
      "          'main': 1,\n",
      "          'focus': 1,\n",
      "          'first': 1,\n",
      "          'longest': 1,\n",
      "          'tale': 1,\n",
      "          'called': 1,\n",
      "          'yellow': 1,\n",
      "          'coats': 1,\n",
      "          'title': 1,\n",
      "          'comes': 1,\n",
      "          'second': 1,\n",
      "          'set': 1,\n",
      "          '1960': 1,\n",
      "          'connecticut': 1,\n",
      "          '11yearold': 1,\n",
      "          'garfield': 1,\n",
      "          'anton': 1,\n",
      "          'lives': 1,\n",
      "          'run': 1,\n",
      "          'cold': 1,\n",
      "          'selfcentered': 1,\n",
      "          'elizabeth': 1,\n",
      "          'hope': 1,\n",
      "          'davis': 1,\n",
      "          'joe': 1,\n",
      "          'goulds': 1,\n",
      "          'secret': 1,\n",
      "          'care': 1,\n",
      "          'wardrobe': 1,\n",
      "          'son': 1,\n",
      "          'nbobby': 1,\n",
      "          'spends': 1,\n",
      "          'time': 1,\n",
      "          'closest': 1,\n",
      "          'john': 1,\n",
      "          'sullivan': 1,\n",
      "          'rothhaar': 1,\n",
      "          'tomboy': 1,\n",
      "          'carol': 1,\n",
      "          'gerber': 1,\n",
      "          'mika': 1,\n",
      "          'become': 1,\n",
      "          'something': 1,\n",
      "          'kevin': 1,\n",
      "          'paul': 1,\n",
      "          'winnie': 1,\n",
      "          'nwhen': 1,\n",
      "          'new': 1,\n",
      "          'tenant': 1,\n",
      "          'moves': 1,\n",
      "          'vacant': 1,\n",
      "          'room': 1,\n",
      "          'fatherless': 1,\n",
      "          'finds': 1,\n",
      "          'male': 1,\n",
      "          'role': 1,\n",
      "          'model': 1,\n",
      "          'brautigan': 1,\n",
      "          'anthony': 1,\n",
      "          'hannibal': 1,\n",
      "          'mysterious': 1,\n",
      "          'stranger': 1,\n",
      "          'vague': 1,\n",
      "          'past': 1,\n",
      "          'bobbys': 1,\n",
      "          'mom': 1,\n",
      "          'suspicious': 1,\n",
      "          'momentarily': 1,\n",
      "          'turn': 1,\n",
      "          'head': 1,\n",
      "          'away': 1,\n",
      "          'mirror': 1,\n",
      "          'nted': 1,\n",
      "          'teaches': 1,\n",
      "          'neighbor': 1,\n",
      "          'wonders': 1,\n",
      "          'literature': 1,\n",
      "          'cheapskate': 1,\n",
      "          'gives': 1,\n",
      "          'library': 1,\n",
      "          'card': 1,\n",
      "          'birthday': 1,\n",
      "          'dispenses': 1,\n",
      "          'prophetic': 1,\n",
      "          'words': 1,\n",
      "          'wisdom': 1,\n",
      "          'even': 1,\n",
      "          'pays': 1,\n",
      "          'dollar': 1,\n",
      "          'week': 1,\n",
      "          'local': 1,\n",
      "          'newspaper': 1,\n",
      "          'keep': 1,\n",
      "          'peeled': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'chasing': 1,\n",
      "          'exploit': 1,\n",
      "          'special': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'go': 1,\n",
      "          'theyre': 1,\n",
      "          'considerably': 1,\n",
      "          'toned': 1,\n",
      "          'involve': 1,\n",
      "          'black': 1,\n",
      "          'stuff': 1,\n",
      "          'flying': 1,\n",
      "          'teds': 1,\n",
      "          'mouth': 1,\n",
      "          'la': 1,\n",
      "          'presentday': 1,\n",
      "          'setting': 1,\n",
      "          'bookends': 1,\n",
      "          'film': 1,\n",
      "          'novels': 1,\n",
      "          'final': 1,\n",
      "          'titled': 1,\n",
      "          'heavenly': 1,\n",
      "          'shades': 1,\n",
      "          'night': 1,\n",
      "          'features': 1,\n",
      "          'david': 1,\n",
      "          'morse': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'connection': 1,\n",
      "          'married': 1,\n",
      "          'middleaged': 1,\n",
      "          'learns': 1,\n",
      "          'death': 1,\n",
      "          'childhood': 1,\n",
      "          'returns': 1,\n",
      "          'dilapidated': 1,\n",
      "          'spent': 1,\n",
      "          'formative': 1,\n",
      "          'years': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'flashy': 1,\n",
      "          'disappointing': 1,\n",
      "          'understandable': 1,\n",
      "          'switch': 1,\n",
      "          'completely': 1,\n",
      "          'richardson': 1,\n",
      "          'occasionally': 1,\n",
      "          'piotr': 1,\n",
      "          'sobocinski': 1,\n",
      "          'oscarnominated': 1,\n",
      "          'cinematographer': 1,\n",
      "          'behind': 1,\n",
      "          'krzysztof': 1,\n",
      "          'kieslowskis': 1,\n",
      "          'red': 1,\n",
      "          'acting': 1,\n",
      "          'solid': 1,\n",
      "          'everyone': 1,\n",
      "          'never': 1,\n",
      "          'makes': 1,\n",
      "          'think': 1,\n",
      "          'dr': 1,\n",
      "          'lecter': 1,\n",
      "          'nmost': 1,\n",
      "          'impressive': 1,\n",
      "          'youngsters': 1,\n",
      "          'tiny': 1,\n",
      "          'parts': 1,\n",
      "          'along': 1,\n",
      "          'came': 1,\n",
      "          'spider': 1,\n",
      "          'nwhile': 1,\n",
      "          'didnt': 1,\n",
      "          'really': 1,\n",
      "          'much': 1,\n",
      "          'problem': 1,\n",
      "          'goldmans': 1,\n",
      "          'screenplay': 1,\n",
      "          'need': 1,\n",
      "          'point': 1,\n",
      "          'inconsistency': 1,\n",
      "          'ngoldman': 1,\n",
      "          'premiere': 1,\n",
      "          'writes': 1,\n",
      "          'annual': 1,\n",
      "          'criticism': 1,\n",
      "          'everybody': 1,\n",
      "          'elses': 1,\n",
      "          'carefully': 1,\n",
      "          'explaining': 1,\n",
      "          'suck': 1,\n",
      "          'insult': 1,\n",
      "          'audiences': 1,\n",
      "          'somehow': 1,\n",
      "          'failing': 1,\n",
      "          'mention': 1,\n",
      "          'crap': 1,\n",
      "          'generals': 1,\n",
      "          'daughter': 1,\n",
      "          'meanspirited': 1,\n",
      "          'fun': 1,\n",
      "          'mostly': 1,\n",
      "          'account': 1,\n",
      "          'nobody': 1,\n",
      "          'hollywood': 1,\n",
      "          'balls': 1,\n",
      "          'say': 1,\n",
      "          'anything': 1,\n",
      "          'remotely': 1,\n",
      "          'negative': 1,\n",
      "          'anybody': 1,\n",
      "          'business': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'j': 1,\n",
      "          'nand': 1,\n",
      "          'blake': 1,\n",
      "          'supposed': 1,\n",
      "          'told': 1,\n",
      "          'assume': 1,\n",
      "          'scene': 1,\n",
      "          'order': 1,\n",
      "          'memory': 1,\n",
      "          'flash': 1,\n",
      "          'back': 1,\n",
      "          'nwell': 1,\n",
      "          'doesnt': 1,\n",
      "          'n1': 1,\n",
      "          '41': 1,\n",
      "          'pg13': 1,\n",
      "          'violence': 1,\n",
      "          'thematic': 1,\n",
      "          'elements': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 8,\n",
      "          'jing': 8,\n",
      "          'wing': 7,\n",
      "          'yuen': 6,\n",
      "          'biao': 4,\n",
      "          'see': 4,\n",
      "          'two': 3,\n",
      "          'back': 3,\n",
      "          'gangster': 3,\n",
      "          'club': 3,\n",
      "          'night': 3,\n",
      "          'gives': 3,\n",
      "          'nhis': 3,\n",
      "          'time': 3,\n",
      "          'hong': 3,\n",
      "          'kong': 3,\n",
      "          'hero': 2,\n",
      "          'nfirst': 2,\n",
      "          'shaw': 2,\n",
      "          'brothers': 2,\n",
      "          'end': 2,\n",
      "          'making': 2,\n",
      "          'man': 2,\n",
      "          'brother': 2,\n",
      "          'city': 2,\n",
      "          'become': 2,\n",
      "          'powerful': 2,\n",
      "          'control': 2,\n",
      "          'nwing': 2,\n",
      "          'love': 2,\n",
      "          'jessica': 2,\n",
      "          'hester': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'yeung': 2,\n",
      "          'seung': 2,\n",
      "          'returns': 2,\n",
      "          'nsee': 2,\n",
      "          'valerie': 2,\n",
      "          'chow': 2,\n",
      "          'takeshi': 2,\n",
      "          'kaneshiro': 2,\n",
      "          'marvelously': 2,\n",
      "          'never': 2,\n",
      "          'fight': 2,\n",
      "          'nthis': 2,\n",
      "          'seen': 2,\n",
      "          'corey': 1,\n",
      "          'yuens': 1,\n",
      "          'latest': 1,\n",
      "          'notable': 1,\n",
      "          'fronts': 1,\n",
      "          'bring': 1,\n",
      "          'studio': 1,\n",
      "          'forefront': 1,\n",
      "          'production': 1,\n",
      "          'nsecondly': 1,\n",
      "          'rediscovery': 1,\n",
      "          'opens': 1,\n",
      "          'around': 1,\n",
      "          'qin': 1,\n",
      "          'dynasty': 1,\n",
      "          'many': 1,\n",
      "          'immigrants': 1,\n",
      "          'way': 1,\n",
      "          'shanghai': 1,\n",
      "          'npoverty': 1,\n",
      "          'crime': 1,\n",
      "          'rule': 1,\n",
      "          'china': 1,\n",
      "          'na': 1,\n",
      "          'young': 1,\n",
      "          'enter': 1,\n",
      "          'fabled': 1,\n",
      "          'laborers': 1,\n",
      "          'pier': 1,\n",
      "          'ntam': 1,\n",
      "          'town': 1,\n",
      "          'center': 1,\n",
      "          'alliance': 1,\n",
      "          'british': 1,\n",
      "          'army': 1,\n",
      "          'friends': 1,\n",
      "          'confrontation': 1,\n",
      "          'ntheir': 1,\n",
      "          'friendship': 1,\n",
      "          'grows': 1,\n",
      "          'men': 1,\n",
      "          'start': 1,\n",
      "          'realize': 1,\n",
      "          'dreams': 1,\n",
      "          'jings': 1,\n",
      "          'wealthy': 1,\n",
      "          'settle': 1,\n",
      "          'woman': 1,\n",
      "          'truly': 1,\n",
      "          'meets': 1,\n",
      "          'singer': 1,\n",
      "          'falls': 1,\n",
      "          'realizing': 1,\n",
      "          'star': 1,\n",
      "          'attraction': 1,\n",
      "          'nafter': 1,\n",
      "          'stealing': 1,\n",
      "          'picture': 1,\n",
      "          'display': 1,\n",
      "          'plot': 1,\n",
      "          'impress': 1,\n",
      "          'rob': 1,\n",
      "          'foreigners': 1,\n",
      "          'money': 1,\n",
      "          'cloths': 1,\n",
      "          'set': 1,\n",
      "          'midnight': 1,\n",
      "          'rendezvous': 1,\n",
      "          'run': 1,\n",
      "          'afoul': 1,\n",
      "          'rival': 1,\n",
      "          'bribed': 1,\n",
      "          'police': 1,\n",
      "          'effort': 1,\n",
      "          'gain': 1,\n",
      "          'sees': 1,\n",
      "          'bothers': 1,\n",
      "          'arrested': 1,\n",
      "          'held': 1,\n",
      "          'manage': 1,\n",
      "          'escape': 1,\n",
      "          'dawn': 1,\n",
      "          'njessica': 1,\n",
      "          'waited': 1,\n",
      "          'outside': 1,\n",
      "          'cold': 1,\n",
      "          'manager': 1,\n",
      "          'home': 1,\n",
      "          'decides': 1,\n",
      "          'retire': 1,\n",
      "          'repayment': 1,\n",
      "          'saving': 1,\n",
      "          'life': 1,\n",
      "          'attempted': 1,\n",
      "          'murder': 1,\n",
      "          'arranges': 1,\n",
      "          'trade': 1,\n",
      "          'ask': 1,\n",
      "          'lover': 1,\n",
      "          'take': 1,\n",
      "          'care': 1,\n",
      "          'sided': 1,\n",
      "          'performances': 1,\n",
      "          'top': 1,\n",
      "          'notch': 1,\n",
      "          'fine': 1,\n",
      "          'turns': 1,\n",
      "          'comic': 1,\n",
      "          'turn': 1,\n",
      "          'wah': 1,\n",
      "          'previously': 1,\n",
      "          'known': 1,\n",
      "          'mad': 1,\n",
      "          'vietnamese': 1,\n",
      "          'samo': 1,\n",
      "          'hungs': 1,\n",
      "          'eastern': 1,\n",
      "          'condors': 1,\n",
      "          'marvelous': 1,\n",
      "          'surprise': 1,\n",
      "          'gift': 1,\n",
      "          'comedy': 1,\n",
      "          'understated': 1,\n",
      "          'hilarious': 1,\n",
      "          'standout': 1,\n",
      "          'screen': 1,\n",
      "          'string': 1,\n",
      "          'disappointments': 1,\n",
      "          'stellar': 1,\n",
      "          'performance': 1,\n",
      "          'tam': 1,\n",
      "          'triad': 1,\n",
      "          'boss': 1,\n",
      "          'knows': 1,\n",
      "          'coming': 1,\n",
      "          'still': 1,\n",
      "          'cunning': 1,\n",
      "          'craft': 1,\n",
      "          'uphold': 1,\n",
      "          'pride': 1,\n",
      "          'almost': 1,\n",
      "          'nonviolent': 1,\n",
      "          'retaliates': 1,\n",
      "          'instigates': 1,\n",
      "          'violence': 1,\n",
      "          'nbut': 1,\n",
      "          'comes': 1,\n",
      "          'looked': 1,\n",
      "          'better': 1,\n",
      "          'ncorey': 1,\n",
      "          'directs': 1,\n",
      "          'maturity': 1,\n",
      "          'sense': 1,\n",
      "          'pacing': 1,\n",
      "          'lacking': 1,\n",
      "          'movies': 1,\n",
      "          'late': 1,\n",
      "          'lighting': 1,\n",
      "          'cinematography': 1,\n",
      "          'staging': 1,\n",
      "          'beautiful': 1,\n",
      "          'watch': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'disappoint': 1,\n",
      "          'either': 1,\n",
      "          'aggressive': 1,\n",
      "          'inventive': 1,\n",
      "          'martial': 1,\n",
      "          'art': 1,\n",
      "          'choreography': 1,\n",
      "          'ive': 1,\n",
      "          'actually': 1,\n",
      "          'surpassing': 1,\n",
      "          'jackie': 1,\n",
      "          'chans': 1,\n",
      "          'work': 1,\n",
      "          'rumble': 1,\n",
      "          'bronx': 1,\n",
      "          'first': 1,\n",
      "          'strike': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'team': 1,\n",
      "          'deserves': 1,\n",
      "          'praise': 1,\n",
      "          'fantastic': 1,\n",
      "          'job': 1,\n",
      "          'impossible': 1,\n",
      "          'look': 1,\n",
      "          'possible': 1,\n",
      "          'nan': 1,\n",
      "          'early': 1,\n",
      "          'horse': 1,\n",
      "          'believed': 1,\n",
      "          'nalso': 1,\n",
      "          'noteworthy': 1,\n",
      "          'score': 1,\n",
      "          'done': 1,\n",
      "          'lush': 1,\n",
      "          'orchestral': 1,\n",
      "          'style': 1,\n",
      "          'representative': 1,\n",
      "          'fare': 1,\n",
      "          'ni': 1,\n",
      "          'would': 1,\n",
      "          'dare': 1,\n",
      "          'say': 1,\n",
      "          'ranks': 1,\n",
      "          'high': 1,\n",
      "          'scores': 1,\n",
      "          'titanic': 1,\n",
      "          'rosewood': 1,\n",
      "          'best': 1,\n",
      "          'year': 1,\n",
      "          'nall': 1,\n",
      "          'marks': 1,\n",
      "          'grand': 1,\n",
      "          'return': 1,\n",
      "          'filmmaking': 1,\n",
      "          'us': 1,\n",
      "          'faith': 1,\n",
      "          'cinema': 1,\n",
      "          'alive': 1,\n",
      "          'flourishing': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'american': 5,\n",
      "          'chinese': 4,\n",
      "          'beijing': 3,\n",
      "          'nthe': 3,\n",
      "          'sketch': 3,\n",
      "          'family': 3,\n",
      "          'fang': 2,\n",
      "          'monthlong': 2,\n",
      "          'vacation': 2,\n",
      "          'sister': 2,\n",
      "          'chao': 2,\n",
      "          'husband': 2,\n",
      "          'daughter': 2,\n",
      "          'lili': 2,\n",
      "          'nfang': 2,\n",
      "          'asian': 2,\n",
      "          'wife': 2,\n",
      "          'son': 2,\n",
      "          'two': 2,\n",
      "          'families': 2,\n",
      "          'film': 2,\n",
      "          'character': 2,\n",
      "          'culture': 2,\n",
      "          'nhis': 2,\n",
      "          'life': 2,\n",
      "          'synopsis': 1,\n",
      "          'cultural': 1,\n",
      "          'exploration': 1,\n",
      "          'computer': 1,\n",
      "          'engineer': 1,\n",
      "          'named': 1,\n",
      "          'peter': 1,\n",
      "          'wang': 1,\n",
      "          'decides': 1,\n",
      "          'take': 1,\n",
      "          'visit': 1,\n",
      "          'mrs': 1,\n",
      "          'shen': 1,\n",
      "          'guanglan': 1,\n",
      "          'mr': 1,\n",
      "          'hy': 1,\n",
      "          'xiaoguang': 1,\n",
      "          'teenage': 1,\n",
      "          'li': 1,\n",
      "          'qinqin': 1,\n",
      "          '30': 1,\n",
      "          'years': 1,\n",
      "          'separation': 1,\n",
      "          'brings': 1,\n",
      "          'grace': 1,\n",
      "          'sharon': 1,\n",
      "          'iwai': 1,\n",
      "          'collegeaged': 1,\n",
      "          'paul': 1,\n",
      "          'kelvin': 1,\n",
      "          'han': 1,\n",
      "          'yee': 1,\n",
      "          'along': 1,\n",
      "          'dont': 1,\n",
      "          'speak': 1,\n",
      "          'encounter': 1,\n",
      "          'allows': 1,\n",
      "          'audience': 1,\n",
      "          'compare': 1,\n",
      "          'eastern': 1,\n",
      "          'western': 1,\n",
      "          'cultures': 1,\n",
      "          'well': 1,\n",
      "          'ambitions': 1,\n",
      "          'individual': 1,\n",
      "          'characters': 1,\n",
      "          'nopinion': 1,\n",
      "          'sometimes': 1,\n",
      "          'plot': 1,\n",
      "          'driven': 1,\n",
      "          'nsometimes': 1,\n",
      "          'na': 1,\n",
      "          'great': 1,\n",
      "          'wall': 1,\n",
      "          '1986': 1,\n",
      "          'called': 1,\n",
      "          'opposed': 1,\n",
      "          'gently': 1,\n",
      "          'compares': 1,\n",
      "          'nfangs': 1,\n",
      "          'thoroughly': 1,\n",
      "          'americanized': 1,\n",
      "          'upper': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'professional': 1,\n",
      "          'enjoys': 1,\n",
      "          'jogging': 1,\n",
      "          'argues': 1,\n",
      "          'boss': 1,\n",
      "          'cant': 1,\n",
      "          'cook': 1,\n",
      "          'white': 1,\n",
      "          'girlfriend': 1,\n",
      "          'complains': 1,\n",
      "          'racism': 1,\n",
      "          'encourages': 1,\n",
      "          'befriend': 1,\n",
      "          'girl': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'fangs': 1,\n",
      "          'advocates': 1,\n",
      "          'absolute': 1,\n",
      "          'loyalty': 1,\n",
      "          'work': 1,\n",
      "          'unit': 1,\n",
      "          'nher': 1,\n",
      "          'retired': 1,\n",
      "          'official': 1,\n",
      "          'heard': 1,\n",
      "          'rumors': 1,\n",
      "          'depravity': 1,\n",
      "          'homosexuals': 1,\n",
      "          'running': 1,\n",
      "          'streets': 1,\n",
      "          'longs': 1,\n",
      "          'freedoms': 1,\n",
      "          'youth': 1,\n",
      "          'studying': 1,\n",
      "          'college': 1,\n",
      "          'entrance': 1,\n",
      "          'exams': 1,\n",
      "          'important': 1,\n",
      "          'thing': 1,\n",
      "          'spend': 1,\n",
      "          'month': 1,\n",
      "          'slowly': 1,\n",
      "          'learning': 1,\n",
      "          'nthere': 1,\n",
      "          'ultimate': 1,\n",
      "          'answer': 1,\n",
      "          'final': 1,\n",
      "          'comprehensive': 1,\n",
      "          'understanding': 1,\n",
      "          'neither': 1,\n",
      "          'neutral': 1,\n",
      "          'meandering': 1,\n",
      "          'gentle': 1,\n",
      "          'portrait': 1,\n",
      "          'sides': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 23,\n",
      "          'scream': 13,\n",
      "          'films': 10,\n",
      "          'characters': 8,\n",
      "          'first': 8,\n",
      "          'mr': 7,\n",
      "          'nthe': 6,\n",
      "          'williamson': 6,\n",
      "          'sequel': 6,\n",
      "          '2': 5,\n",
      "          'sidney': 5,\n",
      "          'dewey': 5,\n",
      "          'slasher': 4,\n",
      "          'one': 4,\n",
      "          'new': 4,\n",
      "          'much': 4,\n",
      "          'gale': 4,\n",
      "          'killer': 4,\n",
      "          'horror': 3,\n",
      "          'director': 3,\n",
      "          'kevin': 3,\n",
      "          'scene': 3,\n",
      "          'hard': 3,\n",
      "          'last': 3,\n",
      "          'point': 3,\n",
      "          'n': 3,\n",
      "          'williamsons': 3,\n",
      "          'vaguely': 3,\n",
      "          'screenplay': 3,\n",
      "          'premise': 3,\n",
      "          'seems': 3,\n",
      "          'around': 3,\n",
      "          'although': 3,\n",
      "          'good': 3,\n",
      "          'could': 3,\n",
      "          'many': 3,\n",
      "          'isnt': 3,\n",
      "          'installment': 3,\n",
      "          'next': 3,\n",
      "          'theres': 3,\n",
      "          'character': 3,\n",
      "          'may': 2,\n",
      "          'following': 2,\n",
      "          'non': 2,\n",
      "          'amidst': 2,\n",
      "          'genre': 2,\n",
      "          'little': 2,\n",
      "          'flick': 2,\n",
      "          'given': 2,\n",
      "          'industry': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'becoming': 2,\n",
      "          'finally': 2,\n",
      "          'knowing': 2,\n",
      "          'success': 2,\n",
      "          'hip': 2,\n",
      "          'casting': 2,\n",
      "          'young': 2,\n",
      "          'tv': 2,\n",
      "          'youth': 2,\n",
      "          'nscream': 2,\n",
      "          'wes': 2,\n",
      "          'craven': 2,\n",
      "          'best': 2,\n",
      "          'series': 2,\n",
      "          'back': 2,\n",
      "          'nand': 2,\n",
      "          'screams': 2,\n",
      "          'onto': 2,\n",
      "          'fashion': 2,\n",
      "          'nits': 2,\n",
      "          'writing': 2,\n",
      "          'know': 2,\n",
      "          'summer': 2,\n",
      "          'screenwriter': 2,\n",
      "          'culture': 2,\n",
      "          'since': 2,\n",
      "          'well': 2,\n",
      "          'said': 2,\n",
      "          'nindeed': 2,\n",
      "          'theatrical': 2,\n",
      "          'right': 2,\n",
      "          'written': 2,\n",
      "          'references': 2,\n",
      "          'nin': 2,\n",
      "          'nwhile': 2,\n",
      "          'outset': 2,\n",
      "          'basic': 2,\n",
      "          'contrived': 2,\n",
      "          'becomes': 2,\n",
      "          'predecessor': 2,\n",
      "          'prologue': 2,\n",
      "          'principal': 2,\n",
      "          'narrative': 2,\n",
      "          'time': 2,\n",
      "          'events': 2,\n",
      "          'movie': 2,\n",
      "          'sequence': 2,\n",
      "          'seen': 2,\n",
      "          'setup': 2,\n",
      "          'nearly': 2,\n",
      "          'almost': 2,\n",
      "          'campus': 2,\n",
      "          'returning': 2,\n",
      "          'escape': 2,\n",
      "          'ntheyre': 2,\n",
      "          'role': 2,\n",
      "          'significantly': 2,\n",
      "          'provides': 2,\n",
      "          'elise': 2,\n",
      "          'identity': 2,\n",
      "          'doesnt': 2,\n",
      "          'fairly': 2,\n",
      "          'obvious': 2,\n",
      "          'villain': 2,\n",
      "          'get': 2,\n",
      "          'want': 2,\n",
      "          'aspect': 2,\n",
      "          'staged': 2,\n",
      "          'strong': 2,\n",
      "          'interesting': 2,\n",
      "          'relationship': 2,\n",
      "          'particularly': 2,\n",
      "          'make': 2,\n",
      "          'fact': 2,\n",
      "          'rose': 2,\n",
      "          'mcgowans': 2,\n",
      "          'got': 2,\n",
      "          'note': 1,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'december': 1,\n",
      "          '20': 1,\n",
      "          '1996': 1,\n",
      "          'yearend': 1,\n",
      "          'oscar': 1,\n",
      "          'bait': 1,\n",
      "          'releases': 1,\n",
      "          'major': 1,\n",
      "          'studios': 1,\n",
      "          'miramaxs': 1,\n",
      "          'label': 1,\n",
      "          'dimension': 1,\n",
      "          'quietly': 1,\n",
      "          'released': 1,\n",
      "          'sly': 1,\n",
      "          'ensemble': 1,\n",
      "          'titled': 1,\n",
      "          'nalthough': 1,\n",
      "          'teen': 1,\n",
      "          'market': 1,\n",
      "          'allbutdead': 1,\n",
      "          'recent': 1,\n",
      "          'years': 1,\n",
      "          'shocked': 1,\n",
      "          'observers': 1,\n",
      "          'scoring': 1,\n",
      "          'consistently': 1,\n",
      "          'high': 1,\n",
      "          'returns': 1,\n",
      "          'eventually': 1,\n",
      "          'topping': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'domestic': 1,\n",
      "          'successful': 1,\n",
      "          'type': 1,\n",
      "          'history': 1,\n",
      "          'delighting': 1,\n",
      "          'audiences': 1,\n",
      "          'presenting': 1,\n",
      "          'set': 1,\n",
      "          'protagonists': 1,\n",
      "          'aware': 1,\n",
      "          'standard': 1,\n",
      "          'cliches': 1,\n",
      "          'associated': 1,\n",
      "          'sleeper': 1,\n",
      "          'sent': 1,\n",
      "          'shockwaves': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'suddenly': 1,\n",
      "          'everybody': 1,\n",
      "          'looking': 1,\n",
      "          'inexpensive': 1,\n",
      "          'fright': 1,\n",
      "          'might': 1,\n",
      "          'able': 1,\n",
      "          'reap': 1,\n",
      "          'similar': 1,\n",
      "          'fortunes': 1,\n",
      "          'strategy': 1,\n",
      "          'stars': 1,\n",
      "          'draw': 1,\n",
      "          'demographic': 1,\n",
      "          'boost': 1,\n",
      "          'previously': 1,\n",
      "          'known': 1,\n",
      "          'creator': 1,\n",
      "          'lines': 1,\n",
      "          'nightmare': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          'thrust': 1,\n",
      "          'limelight': 1,\n",
      "          'rookie': 1,\n",
      "          'scribe': 1,\n",
      "          'burst': 1,\n",
      "          'stunning': 1,\n",
      "          'understate': 1,\n",
      "          'nmr': 1,\n",
      "          'based': 1,\n",
      "          'upon': 1,\n",
      "          'produced': 1,\n",
      "          'screenplays': 1,\n",
      "          'october': 1,\n",
      "          '1997': 1,\n",
      "          'enjoyed': 1,\n",
      "          'meteoric': 1,\n",
      "          'rise': 1,\n",
      "          'fame': 1,\n",
      "          'quickly': 1,\n",
      "          'become': 1,\n",
      "          'wellknown': 1,\n",
      "          'amongst': 1,\n",
      "          'entertainment': 1,\n",
      "          'weeklyreading': 1,\n",
      "          'figurewatching': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantino': 1,\n",
      "          'guy': 1,\n",
      "          'also': 1,\n",
      "          'achieved': 1,\n",
      "          'renown': 1,\n",
      "          'singularly': 1,\n",
      "          'freakish': 1,\n",
      "          'oddity': 1,\n",
      "          'receiving': 1,\n",
      "          'lions': 1,\n",
      "          'share': 1,\n",
      "          'acclaim': 1,\n",
      "          'print': 1,\n",
      "          'advertisements': 1,\n",
      "          '2s': 1,\n",
      "          'release': 1,\n",
      "          'similarly': 1,\n",
      "          'indicative': 1,\n",
      "          'increasing': 1,\n",
      "          'prominence': 1,\n",
      "          'traditional': 1,\n",
      "          'drapes': 1,\n",
      "          'title': 1,\n",
      "          'ads': 1,\n",
      "          'equal': 1,\n",
      "          'sized': 1,\n",
      "          'font': 1,\n",
      "          'yet': 1,\n",
      "          'reads': 1,\n",
      "          'affirmation': 1,\n",
      "          'screenwriters': 1,\n",
      "          'contribution': 1,\n",
      "          'project': 1,\n",
      "          'unprecedented': 1,\n",
      "          'envision': 1,\n",
      "          'board': 1,\n",
      "          'wga': 1,\n",
      "          'licking': 1,\n",
      "          'chops': 1,\n",
      "          'coup': 1,\n",
      "          'counting': 1,\n",
      "          'days': 1,\n",
      "          'goal': 1,\n",
      "          'attained': 1,\n",
      "          'like': 1,\n",
      "          'tarantinos': 1,\n",
      "          'screenwriting': 1,\n",
      "          'work': 1,\n",
      "          'unconventional': 1,\n",
      "          'incorporating': 1,\n",
      "          'contemporary': 1,\n",
      "          'pop': 1,\n",
      "          'allusions': 1,\n",
      "          'dialogue': 1,\n",
      "          'satirically': 1,\n",
      "          'discussed': 1,\n",
      "          'discuss': 1,\n",
      "          'relative': 1,\n",
      "          'merits': 1,\n",
      "          'sequels': 1,\n",
      "          '1995': 1,\n",
      "          'infamous': 1,\n",
      "          'bob': 1,\n",
      "          'dole': 1,\n",
      "          'rampage': 1,\n",
      "          'hollywood': 1,\n",
      "          'rejection': 1,\n",
      "          'tirade': 1,\n",
      "          'clearly': 1,\n",
      "          'influenced': 1,\n",
      "          'planned': 1,\n",
      "          'treatment': 1,\n",
      "          'included': 1,\n",
      "          'sold': 1,\n",
      "          'reunion': 1,\n",
      "          'surviving': 1,\n",
      "          'nevertheless': 1,\n",
      "          'extremely': 1,\n",
      "          'artificially': 1,\n",
      "          'midway': 1,\n",
      "          'engaging': 1,\n",
      "          'nlike': 1,\n",
      "          'opens': 1,\n",
      "          'splashy': 1,\n",
      "          'eyegrabbing': 1,\n",
      "          'ties': 1,\n",
      "          'exploits': 1,\n",
      "          'couple': 1,\n",
      "          'jada': 1,\n",
      "          'pinkett': 1,\n",
      "          'omar': 1,\n",
      "          'epps': 1,\n",
      "          'attending': 1,\n",
      "          'riotously': 1,\n",
      "          'gleeful': 1,\n",
      "          'sneak': 1,\n",
      "          'preview': 1,\n",
      "          'screening': 1,\n",
      "          'stab': 1,\n",
      "          'running': 1,\n",
      "          'filmwithinafilm': 1,\n",
      "          'gag': 1,\n",
      "          'true': 1,\n",
      "          'life': 1,\n",
      "          'behind': 1,\n",
      "          'turned': 1,\n",
      "          'nhowever': 1,\n",
      "          'tries': 1,\n",
      "          'ideas': 1,\n",
      "          'nightmarishly': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'audience': 1,\n",
      "          'reminded': 1,\n",
      "          'sharing': 1,\n",
      "          'theatre': 1,\n",
      "          'certainly': 1,\n",
      "          'thinking': 1,\n",
      "          'gutting': 1,\n",
      "          'overlynoisy': 1,\n",
      "          'person': 1,\n",
      "          'seats': 1,\n",
      "          'away': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'pale': 1,\n",
      "          'imitation': 1,\n",
      "          'bravura': 1,\n",
      "          'opening': 1,\n",
      "          'original': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'performance': 1,\n",
      "          'convinced': 1,\n",
      "          'act': 1,\n",
      "          'would': 1,\n",
      "          'rank': 1,\n",
      "          'among': 1,\n",
      "          'performances': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'nthere': 1,\n",
      "          'popculture': 1,\n",
      "          'crammed': 1,\n",
      "          'cleverly': 1,\n",
      "          'frightening': 1,\n",
      "          'preface': 1,\n",
      "          'dizzyingly': 1,\n",
      "          'built': 1,\n",
      "          'final': 1,\n",
      "          'shot': 1,\n",
      "          'exhilaratingly': 1,\n",
      "          'terrifying': 1,\n",
      "          'payoff': 1,\n",
      "          'campily': 1,\n",
      "          'nflash': 1,\n",
      "          'smalltown': 1,\n",
      "          'ohio': 1,\n",
      "          'college': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'randy': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'relocated': 1,\n",
      "          'studies': 1,\n",
      "          'notoriety': 1,\n",
      "          'murders': 1,\n",
      "          'open': 1,\n",
      "          'result': 1,\n",
      "          'reuniting': 1,\n",
      "          'survivors': 1,\n",
      "          'singleminded': 1,\n",
      "          'tabloid': 1,\n",
      "          'reporter': 1,\n",
      "          'weathers': 1,\n",
      "          'courteney': 1,\n",
      "          'cox': 1,\n",
      "          'roars': 1,\n",
      "          'town': 1,\n",
      "          'cover': 1,\n",
      "          'breaking': 1,\n",
      "          'story': 1,\n",
      "          'everawkward': 1,\n",
      "          'former': 1,\n",
      "          'deputy': 1,\n",
      "          'riley': 1,\n",
      "          'david': 1,\n",
      "          'arquette': 1,\n",
      "          'flies': 1,\n",
      "          'protectively': 1,\n",
      "          'guard': 1,\n",
      "          'joined': 1,\n",
      "          'cotton': 1,\n",
      "          'weary': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'falsely': 1,\n",
      "          'accused': 1,\n",
      "          'homicide': 1,\n",
      "          'cameo': 1,\n",
      "          'appearance': 1,\n",
      "          'expanded': 1,\n",
      "          'incidentally': 1,\n",
      "          'surprisingly': 1,\n",
      "          'backstory': 1,\n",
      "          'suppose': 1,\n",
      "          'case': 1,\n",
      "          'made': 1,\n",
      "          'really': 1,\n",
      "          'necessary': 1,\n",
      "          'people': 1,\n",
      "          'think': 1,\n",
      "          'happened': 1,\n",
      "          'prior': 1,\n",
      "          'ntheres': 1,\n",
      "          'lot': 1,\n",
      "          'faces': 1,\n",
      "          'sidneys': 1,\n",
      "          'boyfriend': 1,\n",
      "          'derek': 1,\n",
      "          'jerry': 1,\n",
      "          'oconnell': 1,\n",
      "          'roommate': 1,\n",
      "          'hallie': 1,\n",
      "          'neal': 1,\n",
      "          'randys': 1,\n",
      "          'fellow': 1,\n",
      "          'student': 1,\n",
      "          'mickey': 1,\n",
      "          'timothy': 1,\n",
      "          'olyphant': 1,\n",
      "          'gales': 1,\n",
      "          'newlyassigned': 1,\n",
      "          'nervous': 1,\n",
      "          'cameraman': 1,\n",
      "          'joel': 1,\n",
      "          'duane': 1,\n",
      "          'martin': 1,\n",
      "          'omnipresent': 1,\n",
      "          'local': 1,\n",
      "          'journalist': 1,\n",
      "          'debbie': 1,\n",
      "          'salt': 1,\n",
      "          'laurie': 1,\n",
      "          'metcalf': 1,\n",
      "          'coed': 1,\n",
      "          'cici': 1,\n",
      "          'cooper': 1,\n",
      "          'ms': 1,\n",
      "          'buffy': 1,\n",
      "          'sarah': 1,\n",
      "          'michelle': 1,\n",
      "          'gellar': 1,\n",
      "          'pair': 1,\n",
      "          'simpering': 1,\n",
      "          'sorority': 1,\n",
      "          'sisters': 1,\n",
      "          'rebecca': 1,\n",
      "          'gayheart': 1,\n",
      "          'sirens': 1,\n",
      "          'portia': 1,\n",
      "          'di': 1,\n",
      "          'rossi': 1,\n",
      "          'nany': 1,\n",
      "          'matter': 1,\n",
      "          'victim': 1,\n",
      "          'nas': 1,\n",
      "          'seemingly': 1,\n",
      "          'regular': 1,\n",
      "          'staple': 1,\n",
      "          'framed': 1,\n",
      "          'increasinglyflimsy': 1,\n",
      "          'whodunit': 1,\n",
      "          'none': 1,\n",
      "          'problem': 1,\n",
      "          'didnt': 1,\n",
      "          'keeping': 1,\n",
      "          'interested': 1,\n",
      "          'nhere': 1,\n",
      "          'extent': 1,\n",
      "          'slightly': 1,\n",
      "          'hampered': 1,\n",
      "          'trying': 1,\n",
      "          'turn': 1,\n",
      "          'mystery': 1,\n",
      "          'occasionally': 1,\n",
      "          'bogged': 1,\n",
      "          'misdirection': 1,\n",
      "          'sense': 1,\n",
      "          'straining': 1,\n",
      "          'seams': 1,\n",
      "          'try': 1,\n",
      "          'drop': 1,\n",
      "          'red': 1,\n",
      "          'herrings': 1,\n",
      "          'left': 1,\n",
      "          'expense': 1,\n",
      "          'thriller': 1,\n",
      "          'elements': 1,\n",
      "          'help': 1,\n",
      "          'matters': 1,\n",
      "          'killers': 1,\n",
      "          'alterego': 1,\n",
      "          'getgo': 1,\n",
      "          'finale': 1,\n",
      "          'plays': 1,\n",
      "          'fullout': 1,\n",
      "          'camp': 1,\n",
      "          'unmasked': 1,\n",
      "          'frothing': 1,\n",
      "          'mouth': 1,\n",
      "          'glazed': 1,\n",
      "          'eyes': 1,\n",
      "          'nthis': 1,\n",
      "          'cases': 1,\n",
      "          'goes': 1,\n",
      "          'endless': 1,\n",
      "          'diatribe': 1,\n",
      "          'machinations': 1,\n",
      "          'scheming': 1,\n",
      "          'motivation': 1,\n",
      "          'actually': 1,\n",
      "          'bored': 1,\n",
      "          'listening': 1,\n",
      "          'headandshoulders': 1,\n",
      "          'suspense': 1,\n",
      "          'sequences': 1,\n",
      "          'imaginatively': 1,\n",
      "          'save': 1,\n",
      "          'postprologue': 1,\n",
      "          'murder': 1,\n",
      "          'handled': 1,\n",
      "          'mediocre': 1,\n",
      "          'conventional': 1,\n",
      "          'culled': 1,\n",
      "          'directly': 1,\n",
      "          'predictable': 1,\n",
      "          '1980s': 1,\n",
      "          'flicks': 1,\n",
      "          'satirized': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'hold': 1,\n",
      "          'smile': 1,\n",
      "          'giddy': 1,\n",
      "          'companion': 1,\n",
      "          'climb': 1,\n",
      "          'incapacitated': 1,\n",
      "          'order': 1,\n",
      "          'car': 1,\n",
      "          'wreck': 1,\n",
      "          'catandmouse': 1,\n",
      "          'chase': 1,\n",
      "          'involving': 1,\n",
      "          'sound': 1,\n",
      "          'lab': 1,\n",
      "          'nicely': 1,\n",
      "          'ultimate': 1,\n",
      "          'resolution': 1,\n",
      "          'hilariously': 1,\n",
      "          'overblown': 1,\n",
      "          'terms': 1,\n",
      "          'part': 1,\n",
      "          'ambles': 1,\n",
      "          'screen': 1,\n",
      "          'accompanied': 1,\n",
      "          'theme': 1,\n",
      "          'music': 1,\n",
      "          'ntheir': 1,\n",
      "          'verbal': 1,\n",
      "          'sparring': 1,\n",
      "          'humour': 1,\n",
      "          'exchange': 1,\n",
      "          'defensively': 1,\n",
      "          'rebukes': 1,\n",
      "          'charges': 1,\n",
      "          'perceived': 1,\n",
      "          'aura': 1,\n",
      "          'incompetency': 1,\n",
      "          'wellwritten': 1,\n",
      "          'curiously': 1,\n",
      "          'endearing': 1,\n",
      "          'mayhem': 1,\n",
      "          'bloodshed': 1,\n",
      "          'hand': 1,\n",
      "          'pretty': 1,\n",
      "          'dull': 1,\n",
      "          'nshe': 1,\n",
      "          'compelling': 1,\n",
      "          'presence': 1,\n",
      "          'nothing': 1,\n",
      "          'us': 1,\n",
      "          'care': 1,\n",
      "          'shes': 1,\n",
      "          'heroine': 1,\n",
      "          'ngiven': 1,\n",
      "          'second': 1,\n",
      "          'banana': 1,\n",
      "          'neals': 1,\n",
      "          'substantive': 1,\n",
      "          'enough': 1,\n",
      "          'adequately': 1,\n",
      "          'fill': 1,\n",
      "          'shoes': 1,\n",
      "          'wonder': 1,\n",
      "          'roles': 1,\n",
      "          'augmented': 1,\n",
      "          'nwhat': 1,\n",
      "          'surprises': 1,\n",
      "          'zealousness': 1,\n",
      "          'decimating': 1,\n",
      "          'cast': 1,\n",
      "          'mounting': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'bears': 1,\n",
      "          'safe': 1,\n",
      "          'applaud': 1,\n",
      "          'bold': 1,\n",
      "          'policy': 1,\n",
      "          'youve': 1,\n",
      "          'wondering': 1,\n",
      "          'surprised': 1,\n",
      "          'untimely': 1,\n",
      "          'demise': 1,\n",
      "          'particular': 1,\n",
      "          'whose': 1,\n",
      "          'wouldve': 1,\n",
      "          'seemed': 1,\n",
      "          'nbut': 1,\n",
      "          'hey': 1,\n",
      "          'please': 1,\n",
      "          'dont': 1,\n",
      "          'kill': 1,\n",
      "          'ghostface': 1,\n",
      "          'nlook': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'little': 17,\n",
      "          'mermaid': 16,\n",
      "          'film': 12,\n",
      "          'films': 11,\n",
      "          'animation': 8,\n",
      "          'disney': 7,\n",
      "          'one': 7,\n",
      "          'animated': 6,\n",
      "          'disneys': 6,\n",
      "          'characters': 6,\n",
      "          'voice': 6,\n",
      "          'mr': 6,\n",
      "          'market': 4,\n",
      "          'anastasia': 4,\n",
      "          'ariel': 4,\n",
      "          'best': 4,\n",
      "          'consider': 3,\n",
      "          'years': 3,\n",
      "          'would': 3,\n",
      "          'feature': 3,\n",
      "          'nthe': 3,\n",
      "          'king': 3,\n",
      "          'million': 3,\n",
      "          'aladdin': 3,\n",
      "          'beauty': 3,\n",
      "          'beast': 3,\n",
      "          'competition': 3,\n",
      "          'teen': 3,\n",
      "          'father': 3,\n",
      "          'shes': 3,\n",
      "          'voices': 3,\n",
      "          'cast': 3,\n",
      "          'even': 3,\n",
      "          'although': 3,\n",
      "          'wonderfully': 3,\n",
      "          'songs': 3,\n",
      "          'menkens': 3,\n",
      "          'rerelease': 3,\n",
      "          'weekend': 3,\n",
      "          'ago': 2,\n",
      "          'release': 2,\n",
      "          'order': 2,\n",
      "          'lion': 2,\n",
      "          'domestic': 2,\n",
      "          'gross': 2,\n",
      "          'become': 2,\n",
      "          'history': 2,\n",
      "          'features': 2,\n",
      "          'hunchback': 2,\n",
      "          'notre': 2,\n",
      "          'dame': 2,\n",
      "          'less': 2,\n",
      "          'share': 2,\n",
      "          'first': 2,\n",
      "          'foxs': 2,\n",
      "          'brought': 2,\n",
      "          'modern': 2,\n",
      "          'nwhile': 2,\n",
      "          'case': 2,\n",
      "          'topnotch': 2,\n",
      "          'magic': 2,\n",
      "          'story': 2,\n",
      "          'music': 2,\n",
      "          'storyline': 2,\n",
      "          'young': 2,\n",
      "          'man': 2,\n",
      "          'chaperone': 2,\n",
      "          'crab': 2,\n",
      "          'prince': 2,\n",
      "          'makes': 2,\n",
      "          'eyes': 2,\n",
      "          'eric': 2,\n",
      "          'nthis': 2,\n",
      "          'remarkably': 2,\n",
      "          'turn': 2,\n",
      "          'voiced': 2,\n",
      "          'drawing': 2,\n",
      "          'power': 2,\n",
      "          'say': 2,\n",
      "          'really': 2,\n",
      "          'role': 2,\n",
      "          'n': 2,\n",
      "          'impeccably': 2,\n",
      "          'benson': 2,\n",
      "          'work': 2,\n",
      "          'singing': 2,\n",
      "          'ms': 2,\n",
      "          'reason': 2,\n",
      "          'flubber': 2,\n",
      "          'wright': 2,\n",
      "          'tunes': 2,\n",
      "          'sea': 2,\n",
      "          'nin': 2,\n",
      "          'ashman': 2,\n",
      "          'lyrics': 2,\n",
      "          'ashmans': 2,\n",
      "          'score': 2,\n",
      "          'sequence': 2,\n",
      "          'becomes': 2,\n",
      "          'appears': 2,\n",
      "          'many': 2,\n",
      "          'tune': 2,\n",
      "          'cumulative': 2,\n",
      "          '1997': 2,\n",
      "          'come': 2,\n",
      "          'reissue': 2,\n",
      "          'opening': 2,\n",
      "          'possibly': 2,\n",
      "          'back': 2,\n",
      "          'note': 1,\n",
      "          'may': 1,\n",
      "          'portions': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'nits': 1,\n",
      "          'startling': 1,\n",
      "          'distributors': 1,\n",
      "          'worriedly': 1,\n",
      "          'rearrange': 1,\n",
      "          'summer': 1,\n",
      "          'schedules': 1,\n",
      "          'give': 1,\n",
      "          'annual': 1,\n",
      "          'juggernaut': 1,\n",
      "          'wide': 1,\n",
      "          'berth': 1,\n",
      "          'cracked': 1,\n",
      "          '300': 1,\n",
      "          'profitable': 1,\n",
      "          'ventures': 1,\n",
      "          'continuing': 1,\n",
      "          'build': 1,\n",
      "          'sturdy': 1,\n",
      "          'base': 1,\n",
      "          'left': 1,\n",
      "          'prior': 1,\n",
      "          'flicks': 1,\n",
      "          'nsince': 1,\n",
      "          'though': 1,\n",
      "          'shown': 1,\n",
      "          'unbroken': 1,\n",
      "          'string': 1,\n",
      "          'diminishing': 1,\n",
      "          'returns': 1,\n",
      "          'pocahontas': 1,\n",
      "          'hercules': 1,\n",
      "          'successively': 1,\n",
      "          'proving': 1,\n",
      "          'potent': 1,\n",
      "          'nwith': 1,\n",
      "          'seeminglyimpregnable': 1,\n",
      "          'stranglehold': 1,\n",
      "          'suddenly': 1,\n",
      "          'looking': 1,\n",
      "          'mighty': 1,\n",
      "          'vulnerable': 1,\n",
      "          'faced': 1,\n",
      "          'serious': 1,\n",
      "          'xmas': 1,\n",
      "          'home': 1,\n",
      "          'early': 1,\n",
      "          'dusting': 1,\n",
      "          'sparked': 1,\n",
      "          'revival': 1,\n",
      "          'typically': 1,\n",
      "          'unquestionably': 1,\n",
      "          'wonderful': 1,\n",
      "          'innocence': 1,\n",
      "          'rousingly': 1,\n",
      "          'superb': 1,\n",
      "          'fairly': 1,\n",
      "          'straightforward': 1,\n",
      "          'falls': 1,\n",
      "          'handsome': 1,\n",
      "          'disapproves': 1,\n",
      "          'assigns': 1,\n",
      "          'hapless': 1,\n",
      "          'daughter': 1,\n",
      "          'disobeys': 1,\n",
      "          'goes': 1,\n",
      "          'desperate': 1,\n",
      "          'lengths': 1,\n",
      "          'win': 1,\n",
      "          'except': 1,\n",
      "          'object': 1,\n",
      "          'desire': 1,\n",
      "          'human': 1,\n",
      "          'nwhat': 1,\n",
      "          'affecting': 1,\n",
      "          'emotionally': 1,\n",
      "          'resonant': 1,\n",
      "          'richness': 1,\n",
      "          'charm': 1,\n",
      "          'sheer': 1,\n",
      "          'clarity': 1,\n",
      "          'honest': 1,\n",
      "          'simplicity': 1,\n",
      "          'emotions': 1,\n",
      "          'nfrom': 1,\n",
      "          'moment': 1,\n",
      "          'lays': 1,\n",
      "          'resolutely': 1,\n",
      "          'smitten': 1,\n",
      "          'pure': 1,\n",
      "          'endearing': 1,\n",
      "          'character': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'invest': 1,\n",
      "          'heart': 1,\n",
      "          'simple': 1,\n",
      "          'touching': 1,\n",
      "          'love': 1,\n",
      "          'coupled': 1,\n",
      "          'healthy': 1,\n",
      "          'dose': 1,\n",
      "          'smart': 1,\n",
      "          'humour': 1,\n",
      "          'captivating': 1,\n",
      "          'picture': 1,\n",
      "          'none': 1,\n",
      "          'interesting': 1,\n",
      "          'things': 1,\n",
      "          'something': 1,\n",
      "          'curiously': 1,\n",
      "          'dates': 1,\n",
      "          'motley': 1,\n",
      "          'crew': 1,\n",
      "          'produced': 1,\n",
      "          'distracting': 1,\n",
      "          'concept': 1,\n",
      "          'using': 1,\n",
      "          'celebrity': 1,\n",
      "          'became': 1,\n",
      "          'vogue': 1,\n",
      "          'started': 1,\n",
      "          'certain': 1,\n",
      "          'degree': 1,\n",
      "          'irrevocably': 1,\n",
      "          'exacerbated': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'muchheralded': 1,\n",
      "          'henceforth': 1,\n",
      "          'majority': 1,\n",
      "          'celebrities': 1,\n",
      "          'understandable': 1,\n",
      "          'lacking': 1,\n",
      "          'namerecognition': 1,\n",
      "          'baltos': 1,\n",
      "          'use': 1,\n",
      "          'kevin': 1,\n",
      "          'bacon': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'anastasias': 1,\n",
      "          'showcasing': 1,\n",
      "          'meg': 1,\n",
      "          'ryan': 1,\n",
      "          'john': 1,\n",
      "          'cusack': 1,\n",
      "          'forced': 1,\n",
      "          'strategy': 1,\n",
      "          'hype': 1,\n",
      "          'products': 1,\n",
      "          'unfortunate': 1,\n",
      "          'embraced': 1,\n",
      "          'policy': 1,\n",
      "          'ndo': 1,\n",
      "          'need': 1,\n",
      "          'hear': 1,\n",
      "          'demi': 1,\n",
      "          'moore': 1,\n",
      "          'esmerelda': 1,\n",
      "          'nis': 1,\n",
      "          'entertainment': 1,\n",
      "          'value': 1,\n",
      "          'augmented': 1,\n",
      "          'hearing': 1,\n",
      "          'recognizable': 1,\n",
      "          'rather': 1,\n",
      "          'suits': 1,\n",
      "          'im': 1,\n",
      "          'exactly': 1,\n",
      "          'edge': 1,\n",
      "          'seat': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'upcoming': 1,\n",
      "          'mulan': 1,\n",
      "          'nfortunately': 1,\n",
      "          'performers': 1,\n",
      "          'perhaps': 1,\n",
      "          'obscure': 1,\n",
      "          'nchief': 1,\n",
      "          'among': 1,\n",
      "          'jodi': 1,\n",
      "          '1992': 1,\n",
      "          'tony': 1,\n",
      "          'nominee': 1,\n",
      "          'stage': 1,\n",
      "          'crazy': 1,\n",
      "          'heroine': 1,\n",
      "          'perfection': 1,\n",
      "          'expressive': 1,\n",
      "          'speaking': 1,\n",
      "          'full': 1,\n",
      "          'youthful': 1,\n",
      "          'vigor': 1,\n",
      "          'gorgeous': 1,\n",
      "          'provides': 1,\n",
      "          'engaging': 1,\n",
      "          'anchor': 1,\n",
      "          'id': 1,\n",
      "          'catching': 1,\n",
      "          'nsimilarly': 1,\n",
      "          'samuel': 1,\n",
      "          'e': 1,\n",
      "          'terrific': 1,\n",
      "          'showy': 1,\n",
      "          'sebastian': 1,\n",
      "          'weary': 1,\n",
      "          'guardian': 1,\n",
      "          'nhe': 1,\n",
      "          'easily': 1,\n",
      "          'milks': 1,\n",
      "          'lovable': 1,\n",
      "          'comic': 1,\n",
      "          'moments': 1,\n",
      "          'theyre': 1,\n",
      "          'worth': 1,\n",
      "          'rendering': 1,\n",
      "          'two': 1,\n",
      "          'mermaids': 1,\n",
      "          'big': 1,\n",
      "          'kiss': 1,\n",
      "          'girl': 1,\n",
      "          'stuff': 1,\n",
      "          'legend': 1,\n",
      "          'npat': 1,\n",
      "          'carrol': 1,\n",
      "          'deliciously': 1,\n",
      "          'villainous': 1,\n",
      "          'vampy': 1,\n",
      "          'evil': 1,\n",
      "          'seawitch': 1,\n",
      "          'ursula': 1,\n",
      "          'kenneth': 1,\n",
      "          'mars': 1,\n",
      "          'booming': 1,\n",
      "          'conveys': 1,\n",
      "          'stern': 1,\n",
      "          'yet': 1,\n",
      "          'affectionate': 1,\n",
      "          'authority': 1,\n",
      "          'ariels': 1,\n",
      "          'triton': 1,\n",
      "          'large': 1,\n",
      "          'roles': 1,\n",
      "          'small': 1,\n",
      "          'edie': 1,\n",
      "          'mcclurg': 1,\n",
      "          'dotting': 1,\n",
      "          'busybody': 1,\n",
      "          'carlotta': 1,\n",
      "          'ideal': 1,\n",
      "          'rene': 1,\n",
      "          'auberjonois': 1,\n",
      "          'great': 1,\n",
      "          'fun': 1,\n",
      "          'exuberant': 1,\n",
      "          'french': 1,\n",
      "          'chef': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'probably': 1,\n",
      "          'remembered': 1,\n",
      "          'remarkable': 1,\n",
      "          'collection': 1,\n",
      "          'composed': 1,\n",
      "          'songwriting': 1,\n",
      "          'team': 1,\n",
      "          'alan': 1,\n",
      "          'menken': 1,\n",
      "          'howard': 1,\n",
      "          'created': 1,\n",
      "          'shop': 1,\n",
      "          'horrors': 1,\n",
      "          'go': 1,\n",
      "          'compose': 1,\n",
      "          'untimely': 1,\n",
      "          'death': 1,\n",
      "          'nnot': 1,\n",
      "          'unbearably': 1,\n",
      "          'catchy': 1,\n",
      "          'charming': 1,\n",
      "          'fully': 1,\n",
      "          'integrated': 1,\n",
      "          'virtual': 1,\n",
      "          'extension': 1,\n",
      "          'dialogue': 1,\n",
      "          'consequently': 1,\n",
      "          'within': 1,\n",
      "          'context': 1,\n",
      "          'nmr': 1,\n",
      "          'equally': 1,\n",
      "          'christopher': 1,\n",
      "          'daniel': 1,\n",
      "          'barnes': 1,\n",
      "          'tour': 1,\n",
      "          'kingdom': 1,\n",
      "          'horsedrawn': 1,\n",
      "          'carriage': 1,\n",
      "          'magical': 1,\n",
      "          'wondrous': 1,\n",
      "          'fine': 1,\n",
      "          'nit': 1,\n",
      "          'people': 1,\n",
      "          'prefer': 1,\n",
      "          'delightfully': 1,\n",
      "          'colourful': 1,\n",
      "          'production': 1,\n",
      "          'number': 1,\n",
      "          'calypsostyled': 1,\n",
      "          'joyfully': 1,\n",
      "          'crooned': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'golden': 1,\n",
      "          'globe': 1,\n",
      "          'awards': 1,\n",
      "          'song': 1,\n",
      "          'indeed': 1,\n",
      "          'joys': 1,\n",
      "          'screening': 1,\n",
      "          'listening': 1,\n",
      "          'children': 1,\n",
      "          'scattered': 1,\n",
      "          'throughout': 1,\n",
      "          'audience': 1,\n",
      "          'along': 1,\n",
      "          'favourite': 1,\n",
      "          'bensons': 1,\n",
      "          'heartfelt': 1,\n",
      "          'rendition': 1,\n",
      "          'ballad': 1,\n",
      "          'part': 1,\n",
      "          'world': 1,\n",
      "          'achingly': 1,\n",
      "          'beautiful': 1,\n",
      "          'yearning': 1,\n",
      "          'hope': 1,\n",
      "          'lyricized': 1,\n",
      "          'accompanied': 1,\n",
      "          'dazzlingly': 1,\n",
      "          'polished': 1,\n",
      "          'packs': 1,\n",
      "          'emotional': 1,\n",
      "          'wallop': 1,\n",
      "          'literally': 1,\n",
      "          'tears': 1,\n",
      "          'nduring': 1,\n",
      "          'reprise': 1,\n",
      "          'builds': 1,\n",
      "          'crescendo': 1,\n",
      "          'arching': 1,\n",
      "          'rock': 1,\n",
      "          'wave': 1,\n",
      "          'crashes': 1,\n",
      "          'effect': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'breathtaking': 1,\n",
      "          'acutely': 1,\n",
      "          'aware': 1,\n",
      "          'single': 1,\n",
      "          'instance': 1,\n",
      "          'finest': 1,\n",
      "          'nas': 1,\n",
      "          'writing': 1,\n",
      "          'november': 1,\n",
      "          'end': 1,\n",
      "          'limited': 1,\n",
      "          '17day': 1,\n",
      "          'ntheres': 1,\n",
      "          'question': 1,\n",
      "          'primary': 1,\n",
      "          'motivation': 1,\n",
      "          'least': 1,\n",
      "          'timing': 1,\n",
      "          'reinforce': 1,\n",
      "          'dominance': 1,\n",
      "          'provide': 1,\n",
      "          'direct': 1,\n",
      "          'costly': 1,\n",
      "          'new': 1,\n",
      "          'upstart': 1,\n",
      "          'division': 1,\n",
      "          'major': 1,\n",
      "          'venture': 1,\n",
      "          'every': 1,\n",
      "          'respect': 1,\n",
      "          'success': 1,\n",
      "          'grosses': 1,\n",
      "          'pushed': 1,\n",
      "          '100': 1,\n",
      "          'mark': 1,\n",
      "          'proved': 1,\n",
      "          'strong': 1,\n",
      "          'initially': 1,\n",
      "          'released': 1,\n",
      "          'eight': 1,\n",
      "          'homes': 1,\n",
      "          'video': 1,\n",
      "          'pulling': 1,\n",
      "          'close': 1,\n",
      "          '10': 1,\n",
      "          'nobody': 1,\n",
      "          'could': 1,\n",
      "          'expect': 1,\n",
      "          'defeat': 1,\n",
      "          'aggressivelymarketed': 1,\n",
      "          'headtohead': 1,\n",
      "          'siphoned': 1,\n",
      "          'enough': 1,\n",
      "          'fox': 1,\n",
      "          'totals': 1,\n",
      "          'keep': 1,\n",
      "          'coveted': 1,\n",
      "          'leader': 1,\n",
      "          'spot': 1,\n",
      "          'allowing': 1,\n",
      "          'odious': 1,\n",
      "          'sweep': 1,\n",
      "          'subsequent': 1,\n",
      "          'week': 1,\n",
      "          'wrestle': 1,\n",
      "          'family': 1,\n",
      "          'demographic': 1,\n",
      "          'away': 1,\n",
      "          'nbut': 1,\n",
      "          'motives': 1,\n",
      "          'selfserving': 1,\n",
      "          'protectionist': 1,\n",
      "          'real': 1,\n",
      "          'winner': 1,\n",
      "          'public': 1,\n",
      "          'nany': 1,\n",
      "          'put': 1,\n",
      "          'theatres': 1,\n",
      "          'good': 1,\n",
      "          'true': 1,\n",
      "          'joy': 1,\n",
      "          'see': 1,\n",
      "          'heartwarming': 1,\n",
      "          'gem': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'renaissance': 1,\n",
      "          'greatest': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'christmas': 9,\n",
      "          'story': 7,\n",
      "          'one': 6,\n",
      "          'ralphie': 5,\n",
      "          'bb': 4,\n",
      "          'gun': 4,\n",
      "          'young': 4,\n",
      "          'comic': 4,\n",
      "          'ni': 4,\n",
      "          'billingsley': 3,\n",
      "          'wants': 3,\n",
      "          'many': 3,\n",
      "          'could': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'holiday': 3,\n",
      "          'situations': 3,\n",
      "          'old': 3,\n",
      "          'little': 2,\n",
      "          'peter': 2,\n",
      "          'nothing': 2,\n",
      "          'tree': 2,\n",
      "          'charming': 2,\n",
      "          'among': 2,\n",
      "          'season': 2,\n",
      "          'boy': 2,\n",
      "          'childhood': 2,\n",
      "          'film': 2,\n",
      "          'detail': 2,\n",
      "          'various': 2,\n",
      "          'new': 2,\n",
      "          'hilarious': 2,\n",
      "          'warm': 2,\n",
      "          'perfect': 2,\n",
      "          'captures': 2,\n",
      "          'like': 2,\n",
      "          'mom': 2,\n",
      "          'man': 2,\n",
      "          'memorable': 2,\n",
      "          'making': 2,\n",
      "          'much': 2,\n",
      "          'scene': 2,\n",
      "          'parker': 1,\n",
      "          'red': 1,\n",
      "          'ryder': 1,\n",
      "          'nalthough': 1,\n",
      "          'cautioned': 1,\n",
      "          'shoot': 1,\n",
      "          'eye': 1,\n",
      "          'remains': 1,\n",
      "          'optimistic': 1,\n",
      "          'conjuring': 1,\n",
      "          'detailed': 1,\n",
      "          'scheme': 1,\n",
      "          'get': 1,\n",
      "          'good': 1,\n",
      "          'side': 1,\n",
      "          'parents': 1,\n",
      "          'teachers': 1,\n",
      "          'nit': 1,\n",
      "          'possible': 1,\n",
      "          'ever': 1,\n",
      "          'wanted': 1,\n",
      "          'anything': 1,\n",
      "          'passion': 1,\n",
      "          'eternal': 1,\n",
      "          'struggle': 1,\n",
      "          'na': 1,\n",
      "          'favorite': 1,\n",
      "          'certainly': 1,\n",
      "          'easy': 1,\n",
      "          'see': 1,\n",
      "          'nralphies': 1,\n",
      "          'endless': 1,\n",
      "          'desire': 1,\n",
      "          'may': 1,\n",
      "          'transport': 1,\n",
      "          'back': 1,\n",
      "          'craving': 1,\n",
      "          'certain': 1,\n",
      "          'gift': 1,\n",
      "          'anxiety': 1,\n",
      "          'almost': 1,\n",
      "          'indescribable': 1,\n",
      "          'nevoking': 1,\n",
      "          'pleasant': 1,\n",
      "          'memories': 1,\n",
      "          'things': 1,\n",
      "          'well': 1,\n",
      "          'nhere': 1,\n",
      "          'features': 1,\n",
      "          'make': 1,\n",
      "          'package': 1,\n",
      "          'everybody': 1,\n",
      "          'n1': 1,\n",
      "          'period': 1,\n",
      "          'nthis': 1,\n",
      "          'based': 1,\n",
      "          'memoirs': 1,\n",
      "          'late': 1,\n",
      "          'humorist': 1,\n",
      "          'jean': 1,\n",
      "          'shepard': 1,\n",
      "          'shares': 1,\n",
      "          'experiences': 1,\n",
      "          'living': 1,\n",
      "          '1940s': 1,\n",
      "          'loving': 1,\n",
      "          'nshepard': 1,\n",
      "          'narrates': 1,\n",
      "          'first': 1,\n",
      "          'person': 1,\n",
      "          'pointofview': 1,\n",
      "          'divulging': 1,\n",
      "          'adventures': 1,\n",
      "          'snowy': 1,\n",
      "          'december': 1,\n",
      "          'visions': 1,\n",
      "          'taking': 1,\n",
      "          'aim': 1,\n",
      "          'replaced': 1,\n",
      "          'sugarplums': 1,\n",
      "          'dancing': 1,\n",
      "          'head': 1,\n",
      "          'nshepards': 1,\n",
      "          'firsthand': 1,\n",
      "          'commentary': 1,\n",
      "          'several': 1,\n",
      "          'downright': 1,\n",
      "          'also': 1,\n",
      "          'witty': 1,\n",
      "          'metaphorical': 1,\n",
      "          'meanings': 1,\n",
      "          'ring': 1,\n",
      "          'perfectly': 1,\n",
      "          'essence': 1,\n",
      "          'timing': 1,\n",
      "          'non': 1,\n",
      "          'top': 1,\n",
      "          'billingsleys': 1,\n",
      "          'stupefied': 1,\n",
      "          'reactions': 1,\n",
      "          'predicament': 1,\n",
      "          'absolutely': 1,\n",
      "          'contrast': 1,\n",
      "          'narration': 1,\n",
      "          'ndirector': 1,\n",
      "          'bob': 1,\n",
      "          'clark': 1,\n",
      "          'look': 1,\n",
      "          'feel': 1,\n",
      "          'era': 1,\n",
      "          'wonderful': 1,\n",
      "          'technicality': 1,\n",
      "          'hardly': 1,\n",
      "          'imagine': 1,\n",
      "          'accurate': 1,\n",
      "          'depiction': 1,\n",
      "          'must': 1,\n",
      "          'n2': 1,\n",
      "          'dad': 1,\n",
      "          'nboth': 1,\n",
      "          'melinda': 1,\n",
      "          'dillon': 1,\n",
      "          'darren': 1,\n",
      "          'mcgavin': 1,\n",
      "          'roles': 1,\n",
      "          'nits': 1,\n",
      "          'hard': 1,\n",
      "          'fathom': 1,\n",
      "          'agreeable': 1,\n",
      "          'pair': 1,\n",
      "          'requirements': 1,\n",
      "          'possessing': 1,\n",
      "          'least': 1,\n",
      "          'trait': 1,\n",
      "          'instantly': 1,\n",
      "          'separates': 1,\n",
      "          'wooden': 1,\n",
      "          'caricatures': 1,\n",
      "          'featured': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'turkey': 1,\n",
      "          'hound': 1,\n",
      "          'forgiving': 1,\n",
      "          'understanding': 1,\n",
      "          'comes': 1,\n",
      "          'serious': 1,\n",
      "          'issues': 1,\n",
      "          'nin': 1,\n",
      "          'portraying': 1,\n",
      "          'writer': 1,\n",
      "          'persistent': 1,\n",
      "          'mildmannered': 1,\n",
      "          'lad': 1,\n",
      "          'struck': 1,\n",
      "          'quite': 1,\n",
      "          'chord': 1,\n",
      "          'nhis': 1,\n",
      "          'performance': 1,\n",
      "          'richly': 1,\n",
      "          'textured': 1,\n",
      "          'humorous': 1,\n",
      "          'stumbles': 1,\n",
      "          'radiate': 1,\n",
      "          'flavor': 1,\n",
      "          'enjoyment': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'n3': 1,\n",
      "          'nthere': 1,\n",
      "          'plenty': 1,\n",
      "          'moments': 1,\n",
      "          'nmoments': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'improve': 1,\n",
      "          'potency': 1,\n",
      "          'upon': 1,\n",
      "          'viewing': 1,\n",
      "          'explore': 1,\n",
      "          'cherish': 1,\n",
      "          'particularly': 1,\n",
      "          'partial': 1,\n",
      "          'fword': 1,\n",
      "          'blurts': 1,\n",
      "          'shocking': 1,\n",
      "          'fourletter': 1,\n",
      "          'obscenity': 1,\n",
      "          'helping': 1,\n",
      "          'yard': 1,\n",
      "          'nagain': 1,\n",
      "          'shepards': 1,\n",
      "          'method': 1,\n",
      "          'handling': 1,\n",
      "          'amusing': 1,\n",
      "          'scenario': 1,\n",
      "          'short': 1,\n",
      "          'wizardry': 1,\n",
      "          'nthe': 1,\n",
      "          'numerous': 1,\n",
      "          'sequences': 1,\n",
      "          'stick': 1,\n",
      "          'ones': 1,\n",
      "          'mind': 1,\n",
      "          'include': 1,\n",
      "          'course': 1,\n",
      "          'famous': 1,\n",
      "          'department': 1,\n",
      "          'store': 1,\n",
      "          'santa': 1,\n",
      "          'problems': 1,\n",
      "          'telling': 1,\n",
      "          'saint': 1,\n",
      "          'nick': 1,\n",
      "          'go': 1,\n",
      "          'ill': 1,\n",
      "          'finish': 1,\n",
      "          'note': 1,\n",
      "          'standout': 1,\n",
      "          'movies': 1,\n",
      "          'meager': 1,\n",
      "          '90': 1,\n",
      "          'minutes': 1,\n",
      "          'nnot': 1,\n",
      "          'funny': 1,\n",
      "          'often': 1,\n",
      "          'genuinely': 1,\n",
      "          'mention': 1,\n",
      "          'fluffy': 1,\n",
      "          'touching': 1,\n",
      "          'appropriate': 1,\n",
      "          'places': 1,\n",
      "          'plan': 1,\n",
      "          'tradition': 1,\n",
      "          'nwhy': 1,\n",
      "          'dont': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'stories': 14,\n",
      "          'nthe': 9,\n",
      "          'frogs': 9,\n",
      "          'film': 8,\n",
      "          'one': 6,\n",
      "          'rain': 6,\n",
      "          'story': 5,\n",
      "          'nit': 5,\n",
      "          'much': 5,\n",
      "          'really': 5,\n",
      "          'strange': 4,\n",
      "          'characters': 4,\n",
      "          'though': 4,\n",
      "          'seems': 4,\n",
      "          'event': 4,\n",
      "          'nheavy': 4,\n",
      "          'spoiler': 4,\n",
      "          'time': 3,\n",
      "          'neach': 3,\n",
      "          'climax': 3,\n",
      "          'tense': 3,\n",
      "          'moment': 3,\n",
      "          'even': 3,\n",
      "          'partridge': 3,\n",
      "          'philip': 3,\n",
      "          'quiz': 3,\n",
      "          'scale': 3,\n",
      "          'biblical': 3,\n",
      "          'aloft': 3,\n",
      "          'may': 3,\n",
      "          'shall': 3,\n",
      "          'told': 2,\n",
      "          'builds': 2,\n",
      "          'nin': 2,\n",
      "          'paul': 2,\n",
      "          'thomas': 2,\n",
      "          'anderson': 2,\n",
      "          'several': 2,\n",
      "          'connected': 2,\n",
      "          'nwhat': 2,\n",
      "          'tension': 2,\n",
      "          'starts': 2,\n",
      "          'scene': 2,\n",
      "          'toward': 2,\n",
      "          'end': 2,\n",
      "          'people': 2,\n",
      "          'bizarre': 2,\n",
      "          'content': 2,\n",
      "          'nwe': 2,\n",
      "          'get': 2,\n",
      "          'make': 2,\n",
      "          'c': 2,\n",
      "          'reilly': 2,\n",
      "          'better': 2,\n",
      "          'baker': 2,\n",
      "          'hall': 2,\n",
      "          'see': 2,\n",
      "          'kid': 2,\n",
      "          'common': 2,\n",
      "          'ambiguous': 2,\n",
      "          'many': 2,\n",
      "          'weird': 2,\n",
      "          'bring': 2,\n",
      "          'previous': 2,\n",
      "          'hard': 2,\n",
      "          'eight': 2,\n",
      "          'mesmerizing': 2,\n",
      "          'nas': 2,\n",
      "          'worth': 2,\n",
      "          '2': 2,\n",
      "          '4': 2,\n",
      "          'phenomenon': 2,\n",
      "          'land': 2,\n",
      "          'objects': 2,\n",
      "          'updrafts': 2,\n",
      "          'whirlwind': 2,\n",
      "          'dropped': 2,\n",
      "          'nso': 2,\n",
      "          'n': 2,\n",
      "          'upon': 2,\n",
      "          'thy': 2,\n",
      "          'river': 2,\n",
      "          'bible': 2,\n",
      "          'intolerance': 1,\n",
      "          'w': 1,\n",
      "          'griffith': 1,\n",
      "          'four': 1,\n",
      "          'different': 1,\n",
      "          'historical': 1,\n",
      "          'cutting': 1,\n",
      "          'fastpaced': 1,\n",
      "          'magnolia': 1,\n",
      "          'tells': 1,\n",
      "          'tangentially': 1,\n",
      "          'others': 1,\n",
      "          'nyet': 1,\n",
      "          'going': 1,\n",
      "          'independent': 1,\n",
      "          'synchronized': 1,\n",
      "          'appears': 1,\n",
      "          'intended': 1,\n",
      "          'lets': 1,\n",
      "          'dissolve': 1,\n",
      "          'nwhile': 1,\n",
      "          'dissipates': 1,\n",
      "          'character': 1,\n",
      "          'singing': 1,\n",
      "          'song': 1,\n",
      "          'plotline': 1,\n",
      "          'major': 1,\n",
      "          'sing': 1,\n",
      "          'along': 1,\n",
      "          'nthen': 1,\n",
      "          'build': 1,\n",
      "          'almost': 1,\n",
      "          'somehow': 1,\n",
      "          'psychically': 1,\n",
      "          'linked': 1,\n",
      "          'nthis': 1,\n",
      "          'creates': 1,\n",
      "          'effects': 1,\n",
      "          'empty': 1,\n",
      "          'desperate': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'relationships': 1,\n",
      "          'strands': 1,\n",
      "          'varying': 1,\n",
      "          'degrees': 1,\n",
      "          'dying': 1,\n",
      "          'man': 1,\n",
      "          'earl': 1,\n",
      "          'jason': 1,\n",
      "          'robards': 1,\n",
      "          'wanting': 1,\n",
      "          'touch': 1,\n",
      "          'son': 1,\n",
      "          'amends': 1,\n",
      "          'nphil': 1,\n",
      "          'parma': 1,\n",
      "          'seymour': 1,\n",
      "          'hoffman': 1,\n",
      "          'nurse': 1,\n",
      "          'frantic': 1,\n",
      "          'help': 1,\n",
      "          'achieve': 1,\n",
      "          'final': 1,\n",
      "          'goal': 1,\n",
      "          'npartridges': 1,\n",
      "          'young': 1,\n",
      "          'wife': 1,\n",
      "          'linda': 1,\n",
      "          'julianne': 1,\n",
      "          'moore': 1,\n",
      "          'getting': 1,\n",
      "          'anxious': 1,\n",
      "          'dies': 1,\n",
      "          'unsuspected': 1,\n",
      "          'reason': 1,\n",
      "          'nfrank': 1,\n",
      "          'mackey': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'runs': 1,\n",
      "          'kinds': 1,\n",
      "          'selfhelp': 1,\n",
      "          'seminar': 1,\n",
      "          'businesses': 1,\n",
      "          'like': 1,\n",
      "          'aims': 1,\n",
      "          'teaching': 1,\n",
      "          'disaffected': 1,\n",
      "          'men': 1,\n",
      "          'real': 1,\n",
      "          'shitheels': 1,\n",
      "          'dealing': 1,\n",
      "          'women': 1,\n",
      "          'angry': 1,\n",
      "          'backlash': 1,\n",
      "          'womens': 1,\n",
      "          'lib': 1,\n",
      "          'nofficer': 1,\n",
      "          'jim': 1,\n",
      "          'kurring': 1,\n",
      "          'john': 1,\n",
      "          'patrolman': 1,\n",
      "          'need': 1,\n",
      "          'feel': 1,\n",
      "          'making': 1,\n",
      "          'world': 1,\n",
      "          'place': 1,\n",
      "          'njimmy': 1,\n",
      "          'gator': 1,\n",
      "          'hosts': 1,\n",
      "          'popular': 1,\n",
      "          'childrens': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'exploits': 1,\n",
      "          'destroys': 1,\n",
      "          'children': 1,\n",
      "          'current': 1,\n",
      "          'stanley': 1,\n",
      "          'spector': 1,\n",
      "          'jeremy': 1,\n",
      "          'blackman': 1,\n",
      "          'former': 1,\n",
      "          'donnie': 1,\n",
      "          'smith': 1,\n",
      "          'william': 1,\n",
      "          'h': 1,\n",
      "          'macy': 1,\n",
      "          'juggles': 1,\n",
      "          'three': 1,\n",
      "          'hours': 1,\n",
      "          'resolved': 1,\n",
      "          'satisfactorily': 1,\n",
      "          'moves': 1,\n",
      "          'single': 1,\n",
      "          'derail': 1,\n",
      "          'ways': 1,\n",
      "          'fails': 1,\n",
      "          'tie': 1,\n",
      "          'built': 1,\n",
      "          'around': 1,\n",
      "          'events': 1,\n",
      "          'history': 1,\n",
      "          'little': 1,\n",
      "          'part': 1,\n",
      "          'nmagnolia': 1,\n",
      "          'probably': 1,\n",
      "          'deserved': 1,\n",
      "          'attention': 1,\n",
      "          'opinion': 1,\n",
      "          'two': 1,\n",
      "          'films': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'interesting': 1,\n",
      "          'look': 1,\n",
      "          'forward': 1,\n",
      "          'actors': 1,\n",
      "          'andersons': 1,\n",
      "          'company': 1,\n",
      "          'njohn': 1,\n",
      "          'standard': 1,\n",
      "          'fixture': 1,\n",
      "          'nparticularly': 1,\n",
      "          'notable': 1,\n",
      "          'gave': 1,\n",
      "          'performance': 1,\n",
      "          'first': 1,\n",
      "          'nhere': 1,\n",
      "          'characteristic': 1,\n",
      "          'used': 1,\n",
      "          'studies': 1,\n",
      "          'following': 1,\n",
      "          'wellrounded': 1,\n",
      "          'beginning': 1,\n",
      "          'middle': 1,\n",
      "          'leave': 1,\n",
      "          'something': 1,\n",
      "          'desired': 1,\n",
      "          'nbut': 1,\n",
      "          'willing': 1,\n",
      "          'unexpected': 1,\n",
      "          'helps': 1,\n",
      "          'sitting': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '7': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          'low': 1,\n",
      "          'nduring': 1,\n",
      "          'climactic': 1,\n",
      "          'multiple': 1,\n",
      "          'messages': 1,\n",
      "          'filmmaker': 1,\n",
      "          'seeing': 1,\n",
      "          'happen': 1,\n",
      "          'nand': 1,\n",
      "          'actual': 1,\n",
      "          'fact': 1,\n",
      "          'nsince': 1,\n",
      "          'times': 1,\n",
      "          'rains': 1,\n",
      "          'interpreted': 1,\n",
      "          'signs': 1,\n",
      "          'displeasure': 1,\n",
      "          'gods': 1,\n",
      "          'however': 1,\n",
      "          'perfectly': 1,\n",
      "          'natural': 1,\n",
      "          'somewhat': 1,\n",
      "          'unnerving': 1,\n",
      "          'cause': 1,\n",
      "          'associated': 1,\n",
      "          'whirlwinds': 1,\n",
      "          'know': 1,\n",
      "          'tornadoes': 1,\n",
      "          'rip': 1,\n",
      "          'size': 1,\n",
      "          'ground': 1,\n",
      "          'hurl': 1,\n",
      "          'air': 1,\n",
      "          'holding': 1,\n",
      "          'reader': 1,\n",
      "          'remember': 1,\n",
      "          'unfortunate': 1,\n",
      "          'cow': 1,\n",
      "          'twister': 1,\n",
      "          'nsmaller': 1,\n",
      "          'hurled': 1,\n",
      "          'high': 1,\n",
      "          'atmosphere': 1,\n",
      "          'kept': 1,\n",
      "          'surprisingly': 1,\n",
      "          'long': 1,\n",
      "          'periods': 1,\n",
      "          'hail': 1,\n",
      "          'chunks': 1,\n",
      "          'ice': 1,\n",
      "          'nwhen': 1,\n",
      "          'water': 1,\n",
      "          'animals': 1,\n",
      "          'near': 1,\n",
      "          'surface': 1,\n",
      "          'frequently': 1,\n",
      "          'fish': 1,\n",
      "          'suffer': 1,\n",
      "          'fate': 1,\n",
      "          'nessentially': 1,\n",
      "          'vacuumed': 1,\n",
      "          'held': 1,\n",
      "          'finally': 1,\n",
      "          'elsewhere': 1,\n",
      "          'possible': 1,\n",
      "          'doubts': 1,\n",
      "          'creep': 1,\n",
      "          'depicted': 1,\n",
      "          'greater': 1,\n",
      "          'pictured': 1,\n",
      "          'unlikely': 1,\n",
      "          'would': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'clear': 1,\n",
      "          'geographic': 1,\n",
      "          'conditions': 1,\n",
      "          'right': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'sort': 1,\n",
      "          'frankly': 1,\n",
      "          'idea': 1,\n",
      "          'points': 1,\n",
      "          'notherwise': 1,\n",
      "          'quite': 1,\n",
      "          'believable': 1,\n",
      "          'credible': 1,\n",
      "          'phenomena': 1,\n",
      "          'saw': 1,\n",
      "          'volcano': 1,\n",
      "          'left': 1,\n",
      "          'sign': 1,\n",
      "          'god': 1,\n",
      "          'since': 1,\n",
      "          'references': 1,\n",
      "          'exodus': 1,\n",
      "          '8': 1,\n",
      "          'come': 1,\n",
      "          'thee': 1,\n",
      "          'servants': 1,\n",
      "          'nhowever': 1,\n",
      "          'feels': 1,\n",
      "          'definitely': 1,\n",
      "          'portent': 1,\n",
      "          'nnote': 1,\n",
      "          'verse': 1,\n",
      "          'says': 1,\n",
      "          'forth': 1,\n",
      "          'abundantly': 1,\n",
      "          'go': 1,\n",
      "          'referring': 1,\n",
      "          'infestation': 1,\n",
      "          'reference': 1,\n",
      "          'symbol': 1,\n",
      "          'uncleanness': 1,\n",
      "          'revelation': 1,\n",
      "          '16': 1,\n",
      "          '13': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ellie': 7,\n",
      "          'nthe': 6,\n",
      "          'even': 5,\n",
      "          'film': 5,\n",
      "          'palmer': 5,\n",
      "          'effects': 4,\n",
      "          'one': 4,\n",
      "          'zemeckis': 4,\n",
      "          'new': 4,\n",
      "          'signal': 4,\n",
      "          'best': 4,\n",
      "          'contact': 3,\n",
      "          'times': 3,\n",
      "          'impressive': 3,\n",
      "          'films': 3,\n",
      "          'scifi': 3,\n",
      "          'seti': 3,\n",
      "          'time': 3,\n",
      "          'take': 3,\n",
      "          'science': 3,\n",
      "          '1997': 2,\n",
      "          'ive': 2,\n",
      "          'seen': 2,\n",
      "          'screen': 2,\n",
      "          'like': 2,\n",
      "          'day': 2,\n",
      "          'story': 2,\n",
      "          'special': 2,\n",
      "          'us': 2,\n",
      "          'know': 2,\n",
      "          'back': 2,\n",
      "          'much': 2,\n",
      "          'presented': 2,\n",
      "          'deals': 2,\n",
      "          'radio': 2,\n",
      "          'merely': 2,\n",
      "          'sounds': 2,\n",
      "          'space': 2,\n",
      "          'young': 2,\n",
      "          'father': 2,\n",
      "          'david': 2,\n",
      "          'small': 2,\n",
      "          'pick': 2,\n",
      "          'modern': 2,\n",
      "          'program': 2,\n",
      "          'strong': 2,\n",
      "          'likely': 2,\n",
      "          'quite': 2,\n",
      "          'cloth': 2,\n",
      "          'ndespite': 2,\n",
      "          'opinion': 2,\n",
      "          'nits': 2,\n",
      "          'later': 2,\n",
      "          'drumlin': 2,\n",
      "          'nthis': 2,\n",
      "          'remember': 2,\n",
      "          'discovery': 2,\n",
      "          'nwhen': 2,\n",
      "          'many': 2,\n",
      "          'information': 2,\n",
      "          'vega': 2,\n",
      "          'go': 2,\n",
      "          'get': 2,\n",
      "          'enough': 2,\n",
      "          'forrest': 2,\n",
      "          'gump': 2,\n",
      "          'nas': 2,\n",
      "          'religion': 2,\n",
      "          'play': 2,\n",
      "          'believe': 2,\n",
      "          'neven': 2,\n",
      "          'wrong': 2,\n",
      "          'movie': 1,\n",
      "          'five': 1,\n",
      "          'exact': 1,\n",
      "          'nfour': 1,\n",
      "          'big': 1,\n",
      "          'tv': 1,\n",
      "          'cant': 1,\n",
      "          'said': 1,\n",
      "          'independance': 1,\n",
      "          'thats': 1,\n",
      "          'rare': 1,\n",
      "          'example': 1,\n",
      "          'filmmaking': 1,\n",
      "          'treated': 1,\n",
      "          'importantly': 1,\n",
      "          'looking': 1,\n",
      "          'id4': 1,\n",
      "          'didnt': 1,\n",
      "          'offer': 1,\n",
      "          'outside': 1,\n",
      "          'onetime': 1,\n",
      "          'delightful': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'ncontacts': 1,\n",
      "          'wonderfully': 1,\n",
      "          'arroway': 1,\n",
      "          'jodie': 1,\n",
      "          'foster': 1,\n",
      "          'astronomer': 1,\n",
      "          'whose': 1,\n",
      "          'preference': 1,\n",
      "          'study': 1,\n",
      "          'involves': 1,\n",
      "          'outdated': 1,\n",
      "          'technique': 1,\n",
      "          'listening': 1,\n",
      "          'nher': 1,\n",
      "          'interest': 1,\n",
      "          'field': 1,\n",
      "          'astronomy': 1,\n",
      "          'developed': 1,\n",
      "          'age': 1,\n",
      "          'encouraged': 1,\n",
      "          'loving': 1,\n",
      "          'ted': 1,\n",
      "          'morse': 1,\n",
      "          'let': 1,\n",
      "          'use': 1,\n",
      "          'ham': 1,\n",
      "          'frequencies': 1,\n",
      "          'communicate': 1,\n",
      "          'people': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'pensacola': 1,\n",
      "          'fl': 1,\n",
      "          'course': 1,\n",
      "          'days': 1,\n",
      "          'internet': 1,\n",
      "          'chat': 1,\n",
      "          'rooms': 1,\n",
      "          'nwhile': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'uses': 1,\n",
      "          'technologies': 1,\n",
      "          'aid': 1,\n",
      "          'search': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'intelligence': 1,\n",
      "          'acronym': 1,\n",
      "          'prefers': 1,\n",
      "          'pop': 1,\n",
      "          'pair': 1,\n",
      "          'headphones': 1,\n",
      "          'see': 1,\n",
      "          'keeping': 1,\n",
      "          'youthful': 1,\n",
      "          'magic': 1,\n",
      "          'intrigue': 1,\n",
      "          'strongly': 1,\n",
      "          'alive': 1,\n",
      "          'nellies': 1,\n",
      "          'scientific': 1,\n",
      "          'basis': 1,\n",
      "          'essentially': 1,\n",
      "          'makes': 1,\n",
      "          'atheist': 1,\n",
      "          'belief': 1,\n",
      "          'influenced': 1,\n",
      "          'death': 1,\n",
      "          'still': 1,\n",
      "          'nin': 1,\n",
      "          'puerto': 1,\n",
      "          'rico': 1,\n",
      "          'meets': 1,\n",
      "          'joss': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'writer': 1,\n",
      "          'examining': 1,\n",
      "          'technology': 1,\n",
      "          'worlds': 1,\n",
      "          'overall': 1,\n",
      "          'happiness': 1,\n",
      "          'seminary': 1,\n",
      "          'student': 1,\n",
      "          'describes': 1,\n",
      "          'man': 1,\n",
      "          'without': 1,\n",
      "          'vast': 1,\n",
      "          'differences': 1,\n",
      "          'regarding': 1,\n",
      "          'supreme': 1,\n",
      "          'hit': 1,\n",
      "          'sleep': 1,\n",
      "          'together': 1,\n",
      "          'weak': 1,\n",
      "          'hurried': 1,\n",
      "          'relationship': 1,\n",
      "          'director': 1,\n",
      "          'needs': 1,\n",
      "          'add': 1,\n",
      "          'plot': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'dr': 1,\n",
      "          'tom': 1,\n",
      "          'skerritt': 1,\n",
      "          'authority': 1,\n",
      "          'finds': 1,\n",
      "          'frivolous': 1,\n",
      "          'waste': 1,\n",
      "          'money': 1,\n",
      "          'ready': 1,\n",
      "          'pull': 1,\n",
      "          'plug': 1,\n",
      "          'funding': 1,\n",
      "          'leaves': 1,\n",
      "          'passionate': 1,\n",
      "          'searching': 1,\n",
      "          'sponsors': 1,\n",
      "          'eventually': 1,\n",
      "          'finding': 1,\n",
      "          'setup': 1,\n",
      "          'mexico': 1,\n",
      "          'leaving': 1,\n",
      "          'explanation': 1,\n",
      "          'night': 1,\n",
      "          'stand': 1,\n",
      "          'nit': 1,\n",
      "          'nm': 1,\n",
      "          'city': 1,\n",
      "          'several': 1,\n",
      "          'months': 1,\n",
      "          'finally': 1,\n",
      "          'picks': 1,\n",
      "          'outer': 1,\n",
      "          'perhaps': 1,\n",
      "          'profound': 1,\n",
      "          'history': 1,\n",
      "          'closely': 1,\n",
      "          'examined': 1,\n",
      "          'developments': 1,\n",
      "          'spring': 1,\n",
      "          'long': 1,\n",
      "          'stepping': 1,\n",
      "          'operation': 1,\n",
      "          'scoffed': 1,\n",
      "          'neventually': 1,\n",
      "          'concluded': 1,\n",
      "          'may': 1,\n",
      "          'blueprints': 1,\n",
      "          'transportation': 1,\n",
      "          'device': 1,\n",
      "          'used': 1,\n",
      "          'teleport': 1,\n",
      "          'earthling': 1,\n",
      "          'seems': 1,\n",
      "          'originated': 1,\n",
      "          'media': 1,\n",
      "          'swarms': 1,\n",
      "          'fanatics': 1,\n",
      "          'deep': 1,\n",
      "          'end': 1,\n",
      "          'scientists': 1,\n",
      "          'clamor': 1,\n",
      "          'politicians': 1,\n",
      "          'huddle': 1,\n",
      "          'discussion': 1,\n",
      "          'appropriate': 1,\n",
      "          'actions': 1,\n",
      "          'presidents': 1,\n",
      "          'morphed': 1,\n",
      "          'celluloid': 1,\n",
      "          'reality': 1,\n",
      "          'couldnt': 1,\n",
      "          'werent': 1,\n",
      "          'ellies': 1,\n",
      "          'leads': 1,\n",
      "          'nations': 1,\n",
      "          'capital': 1,\n",
      "          'runs': 1,\n",
      "          'ncontact': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'carl': 1,\n",
      "          'sagan': 1,\n",
      "          'heavily': 1,\n",
      "          'subject': 1,\n",
      "          'vs': 1,\n",
      "          'thing': 1,\n",
      "          'well': 1,\n",
      "          'aspects': 1,\n",
      "          'signs': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'bias': 1,\n",
      "          'narguments': 1,\n",
      "          'sides': 1,\n",
      "          'intelligent': 1,\n",
      "          'solid': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'joins': 1,\n",
      "          'selection': 1,\n",
      "          'committee': 1,\n",
      "          'choose': 1,\n",
      "          'ambassador': 1,\n",
      "          'leading': 1,\n",
      "          'candidate': 1,\n",
      "          'personal': 1,\n",
      "          'convictions': 1,\n",
      "          'important': 1,\n",
      "          'role': 1,\n",
      "          'love': 1,\n",
      "          'interests': 1,\n",
      "          'question': 1,\n",
      "          'person': 1,\n",
      "          'doesnt': 1,\n",
      "          'god': 1,\n",
      "          'truly': 1,\n",
      "          'representative': 1,\n",
      "          'earth': 1,\n",
      "          '90': 1,\n",
      "          'planet': 1,\n",
      "          'higher': 1,\n",
      "          'power': 1,\n",
      "          'wraps': 1,\n",
      "          'uncertain': 1,\n",
      "          'whether': 1,\n",
      "          'meant': 1,\n",
      "          'advocate': 1,\n",
      "          'neither': 1,\n",
      "          'society': 1,\n",
      "          'right': 1,\n",
      "          'least': 1,\n",
      "          'speaking': 1,\n",
      "          'politically': 1,\n",
      "          'correctly': 1,\n",
      "          'ambiguity': 1,\n",
      "          'incentive': 1,\n",
      "          'ndont': 1,\n",
      "          'isnt': 1,\n",
      "          'theology': 1,\n",
      "          'class': 1,\n",
      "          'rolled': 1,\n",
      "          'reel': 1,\n",
      "          'highly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'two': 1,\n",
      "          'half': 1,\n",
      "          'hours': 1,\n",
      "          'seemingly': 1,\n",
      "          'heavy': 1,\n",
      "          'issues': 1,\n",
      "          'tedious': 1,\n",
      "          'undertaking': 1,\n",
      "          'watch': 1,\n",
      "          'outstanding': 1,\n",
      "          'though': 1,\n",
      "          'warning': 1,\n",
      "          'nhighly': 1,\n",
      "          'depreciated': 1,\n",
      "          'subtle': 1,\n",
      "          'visual': 1,\n",
      "          'unnoticed': 1,\n",
      "          'ones': 1,\n",
      "          'recognizable': 1,\n",
      "          'storytelling': 1,\n",
      "          'rich': 1,\n",
      "          'complete': 1,\n",
      "          'although': 1,\n",
      "          'moments': 1,\n",
      "          'feel': 1,\n",
      "          'pretentious': 1,\n",
      "          'hokey': 1,\n",
      "          'easily': 1,\n",
      "          'ever': 1,\n",
      "          'since': 1,\n",
      "          'future': 1,\n",
      "          'actually': 1,\n",
      "          'astronomically': 1,\n",
      "          'overrated': 1,\n",
      "          'real': 1,\n",
      "          'reason': 1,\n",
      "          'boast': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'guido': 8,\n",
      "          'son': 7,\n",
      "          'holocaust': 5,\n",
      "          'nthe': 5,\n",
      "          'nguido': 5,\n",
      "          'benignis': 4,\n",
      "          'story': 4,\n",
      "          'camp': 4,\n",
      "          'life': 3,\n",
      "          'beautiful': 3,\n",
      "          'love': 3,\n",
      "          'slapstick': 3,\n",
      "          'fascist': 3,\n",
      "          'dora': 3,\n",
      "          'family': 3,\n",
      "          'must': 3,\n",
      "          'benigni': 2,\n",
      "          'italian': 2,\n",
      "          'best': 2,\n",
      "          'fable': 2,\n",
      "          'nbut': 2,\n",
      "          'humanity': 2,\n",
      "          'tell': 2,\n",
      "          'dream': 2,\n",
      "          'bookstore': 2,\n",
      "          'many': 2,\n",
      "          'nhe': 2,\n",
      "          'local': 2,\n",
      "          'official': 2,\n",
      "          'nin': 2,\n",
      "          'giosue': 2,\n",
      "          'shield': 2,\n",
      "          'even': 2,\n",
      "          'deported': 2,\n",
      "          'concentration': 2,\n",
      "          'nit': 2,\n",
      "          'nfor': 2,\n",
      "          'camps': 2,\n",
      "          'game': 2,\n",
      "          'rules': 2,\n",
      "          'tank': 2,\n",
      "          'allow': 2,\n",
      "          'german': 2,\n",
      "          'thinking': 2,\n",
      "          'hope': 2,\n",
      "          'roberto': 1,\n",
      "          'clown': 1,\n",
      "          'tradition': 1,\n",
      "          'chaplin': 1,\n",
      "          'keaton': 1,\n",
      "          'nthis': 1,\n",
      "          'film': 1,\n",
      "          'star': 1,\n",
      "          'known': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'poorly': 1,\n",
      "          'received': 1,\n",
      "          'pink': 1,\n",
      "          'panther': 1,\n",
      "          'done': 1,\n",
      "          'near': 1,\n",
      "          'impossible': 1,\n",
      "          'creating': 1,\n",
      "          'comic': 1,\n",
      "          'la': 1,\n",
      "          'vita': 1,\n",
      "          'e': 1,\n",
      "          'bella': 1,\n",
      "          'much': 1,\n",
      "          'uses': 1,\n",
      "          'monstrous': 1,\n",
      "          'outrage': 1,\n",
      "          'backdrop': 1,\n",
      "          'familial': 1,\n",
      "          'devotion': 1,\n",
      "          'sacrifice': 1,\n",
      "          'movie': 1,\n",
      "          'starts': 1,\n",
      "          'typical': 1,\n",
      "          'farce': 1,\n",
      "          'arriving': 1,\n",
      "          'small': 1,\n",
      "          'tuscan': 1,\n",
      "          'town': 1,\n",
      "          'arezzo': 1,\n",
      "          '1938': 1,\n",
      "          'fulfill': 1,\n",
      "          'owning': 1,\n",
      "          'nlike': 1,\n",
      "          'clowns': 1,\n",
      "          'preceded': 1,\n",
      "          'notably': 1,\n",
      "          'almostforgotten': 1,\n",
      "          'harry': 1,\n",
      "          'langdon': 1,\n",
      "          'childlike': 1,\n",
      "          'innocence': 1,\n",
      "          'ignores': 1,\n",
      "          'growing': 1,\n",
      "          'antisemitism': 1,\n",
      "          'government': 1,\n",
      "          'ninstead': 1,\n",
      "          'ardently': 1,\n",
      "          'falls': 1,\n",
      "          'persues': 1,\n",
      "          'school': 1,\n",
      "          'teacher': 1,\n",
      "          'already': 1,\n",
      "          'engaged': 1,\n",
      "          'tightly': 1,\n",
      "          'wound': 1,\n",
      "          'script': 1,\n",
      "          'earlier': 1,\n",
      "          'unfortunate': 1,\n",
      "          'yet': 1,\n",
      "          'encounter': 1,\n",
      "          'wins': 1,\n",
      "          'nthey': 1,\n",
      "          'marry': 1,\n",
      "          'nfast': 1,\n",
      "          'forward': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          '5yearold': 1,\n",
      "          'giorgio': 1,\n",
      "          'cantarini': 1,\n",
      "          'happy': 1,\n",
      "          'finally': 1,\n",
      "          'fulfilled': 1,\n",
      "          'opening': 1,\n",
      "          'racial': 1,\n",
      "          'antisemitic': 1,\n",
      "          'tensions': 1,\n",
      "          'rise': 1,\n",
      "          'italy': 1,\n",
      "          'determined': 1,\n",
      "          'harsh': 1,\n",
      "          'realities': 1,\n",
      "          'task': 1,\n",
      "          'becomes': 1,\n",
      "          'difficult': 1,\n",
      "          'nhere': 1,\n",
      "          'use': 1,\n",
      "          'skill': 1,\n",
      "          'imagination': 1,\n",
      "          'keep': 1,\n",
      "          'exterminated': 1,\n",
      "          'juncture': 1,\n",
      "          'may': 1,\n",
      "          'tend': 1,\n",
      "          'offend': 1,\n",
      "          'touched': 1,\n",
      "          'scenes': 1,\n",
      "          'lack': 1,\n",
      "          'horror': 1,\n",
      "          'pain': 1,\n",
      "          'unimaginable': 1,\n",
      "          'suffering': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'ntrue': 1,\n",
      "          'jews': 1,\n",
      "          'war': 1,\n",
      "          'nearly': 1,\n",
      "          'sent': 1,\n",
      "          'death': 1,\n",
      "          'work': 1,\n",
      "          'used': 1,\n",
      "          'slave': 1,\n",
      "          'labor': 1,\n",
      "          'nunlike': 1,\n",
      "          'steven': 1,\n",
      "          'spielberg': 1,\n",
      "          'nhis': 1,\n",
      "          'lengths': 1,\n",
      "          'parent': 1,\n",
      "          'go': 1,\n",
      "          'protect': 1,\n",
      "          'child': 1,\n",
      "          'save': 1,\n",
      "          'transforms': 1,\n",
      "          'entire': 1,\n",
      "          'experience': 1,\n",
      "          'elaborate': 1,\n",
      "          'ngiosue': 1,\n",
      "          'follow': 1,\n",
      "          'without': 1,\n",
      "          'question': 1,\n",
      "          'amass': 1,\n",
      "          '1': 1,\n",
      "          '000': 1,\n",
      "          'points': 1,\n",
      "          'winner': 1,\n",
      "          'takes': 1,\n",
      "          'home': 1,\n",
      "          'ntherefore': 1,\n",
      "          'tells': 1,\n",
      "          'remain': 1,\n",
      "          'hidden': 1,\n",
      "          'barracks': 1,\n",
      "          'make': 1,\n",
      "          'sound': 1,\n",
      "          'guards': 1,\n",
      "          'see': 1,\n",
      "          'explains': 1,\n",
      "          'hilarious': 1,\n",
      "          'sequence': 1,\n",
      "          'guard': 1,\n",
      "          'barks': 1,\n",
      "          'instructions': 1,\n",
      "          'newly': 1,\n",
      "          'arrived': 1,\n",
      "          'inmates': 1,\n",
      "          'lying': 1,\n",
      "          'understands': 1,\n",
      "          'translate': 1,\n",
      "          'fellow': 1,\n",
      "          'prisoners': 1,\n",
      "          'instead': 1,\n",
      "          'lays': 1,\n",
      "          'chance': 1,\n",
      "          'survive': 1,\n",
      "          'nthroughout': 1,\n",
      "          'imprisonment': 1,\n",
      "          'guidos': 1,\n",
      "          'quick': 1,\n",
      "          'continually': 1,\n",
      "          'keeps': 1,\n",
      "          'harms': 1,\n",
      "          'way': 1,\n",
      "          'nultimately': 1,\n",
      "          'allies': 1,\n",
      "          'rescue': 1,\n",
      "          'poignant': 1,\n",
      "          'scene': 1,\n",
      "          'comes': 1,\n",
      "          'hiding': 1,\n",
      "          'american': 1,\n",
      "          'rolls': 1,\n",
      "          'compound': 1,\n",
      "          'boy': 1,\n",
      "          'goes': 1,\n",
      "          'wideeyed': 1,\n",
      "          'wonderment': 1,\n",
      "          'delight': 1,\n",
      "          'price': 1,\n",
      "          'victory': 1,\n",
      "          'high': 1,\n",
      "          'nbenigni': 1,\n",
      "          'succeeded': 1,\n",
      "          'using': 1,\n",
      "          'blackest': 1,\n",
      "          'moment': 1,\n",
      "          'human': 1,\n",
      "          'history': 1,\n",
      "          'prove': 1,\n",
      "          'hell': 1,\n",
      "          'ray': 1,\n",
      "          'salvation': 1,\n",
      "          'penetrate': 1,\n",
      "          'darkness': 1,\n",
      "          'nlife': 1,\n",
      "          'fantasy': 1,\n",
      "          'taken': 1,\n",
      "          'record': 1,\n",
      "          'nthose': 1,\n",
      "          'object': 1,\n",
      "          'missing': 1,\n",
      "          'point': 1,\n",
      "          'nand': 1,\n",
      "          'simply': 1,\n",
      "          'spark': 1,\n",
      "          'never': 1,\n",
      "          'extinguished': 1,\n",
      "          'ncommitted': 1,\n",
      "          'lifelong': 1,\n",
      "          'learning': 1,\n",
      "          'effective': 1,\n",
      "          'communication': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'flynt': 8,\n",
      "          'larry': 7,\n",
      "          'flynts': 7,\n",
      "          'film': 5,\n",
      "          'althea': 5,\n",
      "          'story': 4,\n",
      "          'love': 4,\n",
      "          'look': 3,\n",
      "          'much': 3,\n",
      "          'drugs': 3,\n",
      "          'taking': 3,\n",
      "          'great': 3,\n",
      "          'hustler': 2,\n",
      "          'nthe': 2,\n",
      "          'people': 2,\n",
      "          'vs': 2,\n",
      "          'fight': 2,\n",
      "          'freedom': 2,\n",
      "          'true': 2,\n",
      "          'life': 2,\n",
      "          'excellent': 2,\n",
      "          'performance': 2,\n",
      "          'character': 2,\n",
      "          'audience': 2,\n",
      "          'finds': 2,\n",
      "          'extremely': 2,\n",
      "          'childish': 2,\n",
      "          'court': 2,\n",
      "          'nhowever': 2,\n",
      "          'hes': 2,\n",
      "          'funny': 2,\n",
      "          'nlarry': 2,\n",
      "          'nflynt': 2,\n",
      "          'see': 2,\n",
      "          'isaacman': 2,\n",
      "          'easy': 2,\n",
      "          'courtroom': 2,\n",
      "          'nit': 2,\n",
      "          'self': 1,\n",
      "          'proclaimed': 1,\n",
      "          'smut': 1,\n",
      "          'pedlar': 1,\n",
      "          'ownerpublisher': 1,\n",
      "          'multimillion': 1,\n",
      "          'dollar': 1,\n",
      "          'publications': 1,\n",
      "          'company': 1,\n",
      "          'circulate': 1,\n",
      "          'sell': 1,\n",
      "          'pornographic': 1,\n",
      "          'magazine': 1,\n",
      "          'nbased': 1,\n",
      "          'almost': 1,\n",
      "          'documentary': 1,\n",
      "          'vivid': 1,\n",
      "          'detailed': 1,\n",
      "          'nwoody': 1,\n",
      "          'harrelson': 1,\n",
      "          'gives': 1,\n",
      "          'nhe': 1,\n",
      "          'conveys': 1,\n",
      "          'peculiarities': 1,\n",
      "          'depth': 1,\n",
      "          'focus': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'actually': 1,\n",
      "          'somewhat': 1,\n",
      "          'grudgingly': 1,\n",
      "          'liking': 1,\n",
      "          'nthis': 1,\n",
      "          'feat': 1,\n",
      "          'given': 1,\n",
      "          'apparent': 1,\n",
      "          'lack': 1,\n",
      "          'morals': 1,\n",
      "          'ethics': 1,\n",
      "          'smutty': 1,\n",
      "          'behaviour': 1,\n",
      "          'number': 1,\n",
      "          'things': 1,\n",
      "          'going': 1,\n",
      "          'rich': 1,\n",
      "          'importantly': 1,\n",
      "          'says': 1,\n",
      "          'exactly': 1,\n",
      "          'means': 1,\n",
      "          'wife': 1,\n",
      "          'leasure': 1,\n",
      "          'played': 1,\n",
      "          'courtney': 1,\n",
      "          'meets': 1,\n",
      "          'one': 1,\n",
      "          'clubs': 1,\n",
      "          'fall': 1,\n",
      "          'sexual': 1,\n",
      "          'open': 1,\n",
      "          'nboth': 1,\n",
      "          'indulge': 1,\n",
      "          'world': 1,\n",
      "          'sex': 1,\n",
      "          'eventually': 1,\n",
      "          'excessive': 1,\n",
      "          'amount': 1,\n",
      "          'pain': 1,\n",
      "          'killers': 1,\n",
      "          'paralysed': 1,\n",
      "          'waist': 1,\n",
      "          'especially': 1,\n",
      "          'upsetting': 1,\n",
      "          'assassin': 1,\n",
      "          'nalthea': 1,\n",
      "          'joined': 1,\n",
      "          'nfollowing': 1,\n",
      "          'operation': 1,\n",
      "          'decides': 1,\n",
      "          'stop': 1,\n",
      "          'plans': 1,\n",
      "          'determination': 1,\n",
      "          'follow': 1,\n",
      "          'nas': 1,\n",
      "          'progresses': 1,\n",
      "          'become': 1,\n",
      "          'increasingly': 1,\n",
      "          'frail': 1,\n",
      "          'sick': 1,\n",
      "          'ncourtney': 1,\n",
      "          'obviously': 1,\n",
      "          'understanding': 1,\n",
      "          'altheas': 1,\n",
      "          'situation': 1,\n",
      "          'brilliant': 1,\n",
      "          'portraying': 1,\n",
      "          'every': 1,\n",
      "          'respect': 1,\n",
      "          'nits': 1,\n",
      "          'sad': 1,\n",
      "          'watch': 1,\n",
      "          'literally': 1,\n",
      "          'wither': 1,\n",
      "          'away': 1,\n",
      "          'nedward': 1,\n",
      "          'norton': 1,\n",
      "          'plays': 1,\n",
      "          'lawyer': 1,\n",
      "          'alan': 1,\n",
      "          'nagain': 1,\n",
      "          'solid': 1,\n",
      "          'sympathise': 1,\n",
      "          'somehow': 1,\n",
      "          'puts': 1,\n",
      "          'antics': 1,\n",
      "          'downright': 1,\n",
      "          'rude': 1,\n",
      "          'judges': 1,\n",
      "          'lands': 1,\n",
      "          'lot': 1,\n",
      "          'trouble': 1,\n",
      "          'even': 1,\n",
      "          'mental': 1,\n",
      "          'institution': 1,\n",
      "          'nisaacman': 1,\n",
      "          'like': 1,\n",
      "          'proving': 1,\n",
      "          'quite': 1,\n",
      "          'clever': 1,\n",
      "          'ways': 1,\n",
      "          'points': 1,\n",
      "          'nmilos': 1,\n",
      "          'forman': 1,\n",
      "          'done': 1,\n",
      "          'job': 1,\n",
      "          'directing': 1,\n",
      "          'really': 1,\n",
      "          'exciting': 1,\n",
      "          'thrilling': 1,\n",
      "          'instead': 1,\n",
      "          'highly': 1,\n",
      "          'interesting': 1,\n",
      "          'portrayal': 1,\n",
      "          'ndue': 1,\n",
      "          'larrys': 1,\n",
      "          'also': 1,\n",
      "          'times': 1,\n",
      "          'speech': 1,\n",
      "          'anticensorship': 1,\n",
      "          'right': 1,\n",
      "          'able': 1,\n",
      "          'choose': 1,\n",
      "          'oneself': 1,\n",
      "          'buy': 1,\n",
      "          'nan': 1,\n",
      "          'nkeep': 1,\n",
      "          'real': 1,\n",
      "          'makes': 1,\n",
      "          'cameo': 1,\n",
      "          'judge': 1,\n",
      "          'morrissey': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'reality': 9,\n",
      "          'thirteenth': 8,\n",
      "          'floor': 8,\n",
      "          'nthe': 7,\n",
      "          'world': 6,\n",
      "          'nthis': 6,\n",
      "          'film': 6,\n",
      "          'virtual': 5,\n",
      "          'almost': 5,\n",
      "          'dark': 4,\n",
      "          'matrix': 4,\n",
      "          'like': 4,\n",
      "          'nit': 4,\n",
      "          'intelligent': 4,\n",
      "          'science': 4,\n",
      "          'fiction': 4,\n",
      "          'personal': 4,\n",
      "          'city': 3,\n",
      "          'less': 3,\n",
      "          'existenz': 3,\n",
      "          'story': 3,\n",
      "          'real': 3,\n",
      "          'first': 3,\n",
      "          'beautiful': 3,\n",
      "          'people': 3,\n",
      "          'start': 3,\n",
      "          'films': 2,\n",
      "          'universes': 2,\n",
      "          'one': 2,\n",
      "          'another': 2,\n",
      "          'original': 2,\n",
      "          'released': 2,\n",
      "          'nand': 2,\n",
      "          'completely': 2,\n",
      "          'become': 2,\n",
      "          'entertaining': 2,\n",
      "          'dreams': 2,\n",
      "          'best': 2,\n",
      "          'action': 2,\n",
      "          'effects': 2,\n",
      "          'journey': 2,\n",
      "          'madness': 2,\n",
      "          'audience': 2,\n",
      "          'presents': 2,\n",
      "          'plot': 2,\n",
      "          'serious': 2,\n",
      "          'nin': 2,\n",
      "          'fuller': 2,\n",
      "          'program': 2,\n",
      "          'enter': 2,\n",
      "          'truth': 2,\n",
      "          'na': 2,\n",
      "          'key': 2,\n",
      "          'simulation': 2,\n",
      "          'creators': 2,\n",
      "          'take': 2,\n",
      "          'someones': 2,\n",
      "          'unknown': 2,\n",
      "          'nthey': 2,\n",
      "          'sanity': 2,\n",
      "          'mistakes': 2,\n",
      "          'lives': 2,\n",
      "          'living': 2,\n",
      "          'nwith': 2,\n",
      "          'blade': 2,\n",
      "          'runner': 2,\n",
      "          'possibilities': 2,\n",
      "          'thirties': 2,\n",
      "          'elegant': 2,\n",
      "          'contrast': 2,\n",
      "          'nvirtual': 2,\n",
      "          'endless': 2,\n",
      "          'paradise': 2,\n",
      "          'life': 2,\n",
      "          'way': 2,\n",
      "          'think': 2,\n",
      "          'interesting': 2,\n",
      "          'philosophical': 2,\n",
      "          'answered': 2,\n",
      "          'course': 2,\n",
      "          'since': 2,\n",
      "          'recreation': 2,\n",
      "          'nthere': 2,\n",
      "          'right': 2,\n",
      "          'doesnt': 2,\n",
      "          'topic': 1,\n",
      "          'defined': 1,\n",
      "          'genre': 1,\n",
      "          'nsince': 1,\n",
      "          '1998': 1,\n",
      "          'alternative': 1,\n",
      "          'parallel': 1,\n",
      "          'worlds': 1,\n",
      "          'coming': 1,\n",
      "          'popular': 1,\n",
      "          'nall': 1,\n",
      "          'successful': 1,\n",
      "          'ndavid': 1,\n",
      "          'cronenbergs': 1,\n",
      "          'couple': 1,\n",
      "          'months': 1,\n",
      "          'accepted': 1,\n",
      "          'even': 1,\n",
      "          'appreciated': 1,\n",
      "          'hype': 1,\n",
      "          'gone': 1,\n",
      "          'aired': 1,\n",
      "          'fall': 1,\n",
      "          'overseen': 1,\n",
      "          'ignored': 1,\n",
      "          'ni': 1,\n",
      "          'admit': 1,\n",
      "          'issue': 1,\n",
      "          'something': 1,\n",
      "          'tiring': 1,\n",
      "          'annoying': 1,\n",
      "          'feeling': 1,\n",
      "          'eating': 1,\n",
      "          'meal': 1,\n",
      "          'therefore': 1,\n",
      "          'excited': 1,\n",
      "          'went': 1,\n",
      "          'see': 1,\n",
      "          'nhowever': 1,\n",
      "          'positively': 1,\n",
      "          'surprised': 1,\n",
      "          'josef': 1,\n",
      "          'rusnaks': 1,\n",
      "          'latest': 1,\n",
      "          'picture': 1,\n",
      "          'nmatrix': 1,\n",
      "          'thrill': 1,\n",
      "          'ride': 1,\n",
      "          'combining': 1,\n",
      "          'hollywoods': 1,\n",
      "          'nexistenz': 1,\n",
      "          'violent': 1,\n",
      "          'gory': 1,\n",
      "          'unsettling': 1,\n",
      "          'ending': 1,\n",
      "          'blood': 1,\n",
      "          'somewhere': 1,\n",
      "          'ninstead': 1,\n",
      "          'going': 1,\n",
      "          'crowds': 1,\n",
      "          'aiming': 1,\n",
      "          'horror': 1,\n",
      "          'fans': 1,\n",
      "          'witch': 1,\n",
      "          'provide': 1,\n",
      "          'experience': 1,\n",
      "          'true': 1,\n",
      "          'lovers': 1,\n",
      "          'find': 1,\n",
      "          'rewarding': 1,\n",
      "          'near': 1,\n",
      "          'future': 1,\n",
      "          'classified': 1,\n",
      "          'building': 1,\n",
      "          'genius': 1,\n",
      "          'scientist': 1,\n",
      "          'hannon': 1,\n",
      "          'created': 1,\n",
      "          'simulated': 1,\n",
      "          'dreamworld': 1,\n",
      "          'every': 1,\n",
      "          'inhabitant': 1,\n",
      "          'complex': 1,\n",
      "          'selflearning': 1,\n",
      "          'believes': 1,\n",
      "          'nright': 1,\n",
      "          'testing': 1,\n",
      "          'found': 1,\n",
      "          'murdered': 1,\n",
      "          'ndouglas': 1,\n",
      "          'hall': 1,\n",
      "          'closest': 1,\n",
      "          'friend': 1,\n",
      "          'business': 1,\n",
      "          'partner': 1,\n",
      "          'immediately': 1,\n",
      "          'becomes': 1,\n",
      "          'prime': 1,\n",
      "          'suspect': 1,\n",
      "          'must': 1,\n",
      "          'search': 1,\n",
      "          'woman': 1,\n",
      "          'gretchen': 1,\n",
      "          'mol': 1,\n",
      "          'suddenly': 1,\n",
      "          'appears': 1,\n",
      "          'scene': 1,\n",
      "          'may': 1,\n",
      "          'hold': 1,\n",
      "          'mystery': 1,\n",
      "          'might': 1,\n",
      "          'unravel': 1,\n",
      "          'horrifying': 1,\n",
      "          'existence': 1,\n",
      "          'download': 1,\n",
      "          'impressive': 1,\n",
      "          'visit': 1,\n",
      "          'creation': 1,\n",
      "          'order': 1,\n",
      "          'universe': 1,\n",
      "          'identity': 1,\n",
      "          'person': 1,\n",
      "          'called': 1,\n",
      "          'conciseness': 1,\n",
      "          'transfer': 1,\n",
      "          'part': 1,\n",
      "          'tragedy': 1,\n",
      "          'wake': 1,\n",
      "          'places': 1,\n",
      "          'strange': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'doubt': 1,\n",
      "          'nthese': 1,\n",
      "          'innocent': 1,\n",
      "          'pay': 1,\n",
      "          'users': 1,\n",
      "          'frightening': 1,\n",
      "          'fact': 1,\n",
      "          'links': 1,\n",
      "          'oblivious': 1,\n",
      "          'knowing': 1,\n",
      "          'puppets': 1,\n",
      "          'fantasy': 1,\n",
      "          'appealing': 1,\n",
      "          'type': 1,\n",
      "          'detective': 1,\n",
      "          'beauty': 1,\n",
      "          'lurking': 1,\n",
      "          'danger': 1,\n",
      "          'always': 1,\n",
      "          'present': 1,\n",
      "          'nour': 1,\n",
      "          'modern': 1,\n",
      "          'metal': 1,\n",
      "          'glass': 1,\n",
      "          'cold': 1,\n",
      "          'unfriendly': 1,\n",
      "          'impersonal': 1,\n",
      "          'different': 1,\n",
      "          'colorful': 1,\n",
      "          'virile': 1,\n",
      "          'demonstrates': 1,\n",
      "          'wish': 1,\n",
      "          'change': 1,\n",
      "          'portrayed': 1,\n",
      "          'magical': 1,\n",
      "          'enchanting': 1,\n",
      "          'power': 1,\n",
      "          'seduces': 1,\n",
      "          'nto': 1,\n",
      "          'playground': 1,\n",
      "          'without': 1,\n",
      "          'consequences': 1,\n",
      "          'nfor': 1,\n",
      "          'others': 1,\n",
      "          'correct': 1,\n",
      "          'illusion': 1,\n",
      "          'past': 1,\n",
      "          'wizard': 1,\n",
      "          'transforms': 1,\n",
      "          'hopes': 1,\n",
      "          'fantasies': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'thats': 1,\n",
      "          'beginning': 1,\n",
      "          'nbut': 1,\n",
      "          'youre': 1,\n",
      "          'waking': 1,\n",
      "          'dream': 1,\n",
      "          'seems': 1,\n",
      "          'worthless': 1,\n",
      "          'unreal': 1,\n",
      "          'returning': 1,\n",
      "          'narcotic': 1,\n",
      "          'effect': 1,\n",
      "          'soon': 1,\n",
      "          'turns': 1,\n",
      "          'confusion': 1,\n",
      "          'ultimately': 1,\n",
      "          'nsome': 1,\n",
      "          'important': 1,\n",
      "          'questions': 1,\n",
      "          'raised': 1,\n",
      "          'nwhat': 1,\n",
      "          'thought': 1,\n",
      "          'nwho': 1,\n",
      "          'nif': 1,\n",
      "          'would': 1,\n",
      "          'greatest': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'posed': 1,\n",
      "          'manner': 1,\n",
      "          'visual': 1,\n",
      "          'aspect': 1,\n",
      "          'elements': 1,\n",
      "          'portrays': 1,\n",
      "          'computersimulated': 1,\n",
      "          'nkirk': 1,\n",
      "          'petrucelli': 1,\n",
      "          'done': 1,\n",
      "          'marvelous': 1,\n",
      "          'job': 1,\n",
      "          'glamour': 1,\n",
      "          'grace': 1,\n",
      "          'color': 1,\n",
      "          'setting': 1,\n",
      "          'opposition': 1,\n",
      "          'caricatured': 1,\n",
      "          'nineties': 1,\n",
      "          'honest': 1,\n",
      "          'decent': 1,\n",
      "          'performances': 1,\n",
      "          'cast': 1,\n",
      "          'harald': 1,\n",
      "          'kloses': 1,\n",
      "          'moody': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'place': 1,\n",
      "          'time': 1,\n",
      "          'rather': 1,\n",
      "          'unusual': 1,\n",
      "          'thing': 1,\n",
      "          'aboutthe': 1,\n",
      "          'complete': 1,\n",
      "          'lack': 1,\n",
      "          'special': 1,\n",
      "          'cgi': 1,\n",
      "          'animated': 1,\n",
      "          'creatures': 1,\n",
      "          'bullets': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'approach': 1,\n",
      "          'reminding': 1,\n",
      "          'european': 1,\n",
      "          'filmmaking': 1,\n",
      "          'major': 1,\n",
      "          'disappointment': 1,\n",
      "          'used': 1,\n",
      "          'gunfights': 1,\n",
      "          'mutated': 1,\n",
      "          'amphibians': 1,\n",
      "          'buffs': 1,\n",
      "          'cityfans': 1,\n",
      "          'pleased': 1,\n",
      "          'inspiring': 1,\n",
      "          'everything': 1,\n",
      "          'lacks': 1,\n",
      "          'immediacy': 1,\n",
      "          'intensity': 1,\n",
      "          'happy': 1,\n",
      "          'end': 1,\n",
      "          'alienates': 1,\n",
      "          'rest': 1,\n",
      "          'context': 1,\n",
      "          'filmmakers': 1,\n",
      "          'want': 1,\n",
      "          'us': 1,\n",
      "          'virtually': 1,\n",
      "          'sucked': 1,\n",
      "          'information': 1,\n",
      "          'classics': 1,\n",
      "          'including': 1,\n",
      "          'mind': 1,\n",
      "          'make': 1,\n",
      "          'oscar': 1,\n",
      "          'candidate': 1,\n",
      "          'remembered': 1,\n",
      "          'year': 1,\n",
      "          'yet': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'must': 3,\n",
      "          'deal': 3,\n",
      "          'critics': 2,\n",
      "          'one': 2,\n",
      "          'nthe': 2,\n",
      "          'time': 2,\n",
      "          'wbn': 2,\n",
      "          'stuart': 2,\n",
      "          'masterson': 2,\n",
      "          'roger': 2,\n",
      "          'brian': 2,\n",
      "          'benben': 2,\n",
      "          'back': 2,\n",
      "          'goes': 2,\n",
      "          'trying': 2,\n",
      "          'penny': 2,\n",
      "          'amazing': 2,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'saw': 1,\n",
      "          'wasnt': 1,\n",
      "          'popular': 1,\n",
      "          'consensus': 1,\n",
      "          'among': 1,\n",
      "          'newspaper': 1,\n",
      "          'unfunny': 1,\n",
      "          'dreadfully': 1,\n",
      "          'boring': 1,\n",
      "          'nin': 1,\n",
      "          'personal': 1,\n",
      "          'opinion': 1,\n",
      "          'couldnt': 1,\n",
      "          'wrong': 1,\n",
      "          'nif': 1,\n",
      "          'expecting': 1,\n",
      "          'airplane': 1,\n",
      "          'like': 1,\n",
      "          'nlaughs': 1,\n",
      "          'agatha': 1,\n",
      "          'christieintense': 1,\n",
      "          'mystery': 1,\n",
      "          'yes': 1,\n",
      "          'would': 1,\n",
      "          'disappointment': 1,\n",
      "          'nhowever': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'enjoyable': 1,\n",
      "          'good': 1,\n",
      "          'see': 1,\n",
      "          'nhonest': 1,\n",
      "          'nthis': 1,\n",
      "          'story': 1,\n",
      "          '4th': 1,\n",
      "          'network': 1,\n",
      "          'taking': 1,\n",
      "          'americas': 1,\n",
      "          'airwaves': 1,\n",
      "          '1939': 1,\n",
      "          'npenny': 1,\n",
      "          'henderson': 1,\n",
      "          'mary': 1,\n",
      "          'station': 1,\n",
      "          'owners': 1,\n",
      "          'secretary': 1,\n",
      "          'overbearing': 1,\n",
      "          'boss': 1,\n",
      "          'unimpressed': 1,\n",
      "          'sponsor': 1,\n",
      "          'writers': 1,\n",
      "          'ready': 1,\n",
      "          'quite': 1,\n",
      "          'moments': 1,\n",
      "          'notice': 1,\n",
      "          'partly': 1,\n",
      "          'due': 1,\n",
      "          'fact': 1,\n",
      "          'havent': 1,\n",
      "          'paid': 1,\n",
      "          'weeks': 1,\n",
      "          'namong': 1,\n",
      "          'mayhem': 1,\n",
      "          'also': 1,\n",
      "          'soontobe': 1,\n",
      "          'exhusband': 1,\n",
      "          'desperately': 1,\n",
      "          'wants': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'problems': 1,\n",
      "          'get': 1,\n",
      "          'worse': 1,\n",
      "          'night': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'rises': 1,\n",
      "          'without': 1,\n",
      "          'explanation': 1,\n",
      "          'nwhile': 1,\n",
      "          'woo': 1,\n",
      "          'police': 1,\n",
      "          'try': 1,\n",
      "          'find': 1,\n",
      "          'killer': 1,\n",
      "          'lurks': 1,\n",
      "          'nmary': 1,\n",
      "          'well': 1,\n",
      "          'role': 1,\n",
      "          'im': 1,\n",
      "          'unbiased': 1,\n",
      "          'wont': 1,\n",
      "          'tell': 1,\n",
      "          'looked': 1,\n",
      "          'although': 1,\n",
      "          'gets': 1,\n",
      "          'screen': 1,\n",
      "          'nalong': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'several': 1,\n",
      "          'recognizable': 1,\n",
      "          'faces': 1,\n",
      "          'including': 1,\n",
      "          'corbin': 1,\n",
      "          'bernsen': 1,\n",
      "          'l': 1,\n",
      "          'nlaw': 1,\n",
      "          'michael': 1,\n",
      "          'mckean': 1,\n",
      "          'laverne': 1,\n",
      "          'shirley': 1,\n",
      "          'bobcat': 1,\n",
      "          'goldthwait': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'fooled': 1,\n",
      "          'may': 1,\n",
      "          'argue': 1,\n",
      "          'isnt': 1,\n",
      "          'difficult': 1,\n",
      "          'many': 1,\n",
      "          'scenes': 1,\n",
      "          'nalthough': 1,\n",
      "          'sometimes': 1,\n",
      "          'overboard': 1,\n",
      "          'physical': 1,\n",
      "          'comedy': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'makes': 1,\n",
      "          'mistakes': 1,\n",
      "          'throughout': 1,\n",
      "          'noverall': 1,\n",
      "          'gave': 1,\n",
      "          'depending': 1,\n",
      "          'system': 1,\n",
      "          'use': 1,\n",
      "          'nsome': 1,\n",
      "          'comments': 1,\n",
      "          'collected': 1,\n",
      "          'friends': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'would': 5,\n",
      "          'ni': 4,\n",
      "          'nthe': 4,\n",
      "          'nand': 4,\n",
      "          'sweet': 4,\n",
      "          'farrelly': 3,\n",
      "          'brothers': 3,\n",
      "          'comedy': 3,\n",
      "          'nbut': 3,\n",
      "          'raunchy': 3,\n",
      "          'totally': 3,\n",
      "          'great': 2,\n",
      "          'mary': 2,\n",
      "          'knew': 2,\n",
      "          'alone': 2,\n",
      "          'laugh': 2,\n",
      "          'also': 2,\n",
      "          'nmary': 2,\n",
      "          'side': 2,\n",
      "          'ted': 2,\n",
      "          'stiller': 2,\n",
      "          'diaz': 2,\n",
      "          'nhe': 2,\n",
      "          'becomes': 2,\n",
      "          'teeth': 2,\n",
      "          'capped': 2,\n",
      "          'get': 2,\n",
      "          'hair': 2,\n",
      "          'mentally': 2,\n",
      "          'handicapped': 2,\n",
      "          'skin': 2,\n",
      "          'tanning': 2,\n",
      "          'worth': 2,\n",
      "          'hit': 2,\n",
      "          'straight': 2,\n",
      "          'role': 2,\n",
      "          'caring': 2,\n",
      "          'open': 2,\n",
      "          'long': 2,\n",
      "          'funny': 2,\n",
      "          'tasteless': 2,\n",
      "          'sequences': 2,\n",
      "          'nearly': 2,\n",
      "          'bad': 2,\n",
      "          'nwhile': 2,\n",
      "          'trepidation': 1,\n",
      "          'approached': 1,\n",
      "          'latest': 1,\n",
      "          'funnythe': 1,\n",
      "          'trailer': 1,\n",
      "          'harder': 1,\n",
      "          'actual': 1,\n",
      "          'went': 1,\n",
      "          'see': 1,\n",
      "          'equalopportunity': 1,\n",
      "          'offender': 1,\n",
      "          'attacking': 1,\n",
      "          'sensibilities': 1,\n",
      "          'politically': 1,\n",
      "          'correct': 1,\n",
      "          'reckless': 1,\n",
      "          'abandon': 1,\n",
      "          'figured': 1,\n",
      "          'maybe': 1,\n",
      "          'another': 1,\n",
      "          'lucky': 1,\n",
      "          'escapee': 1,\n",
      "          'nc17': 1,\n",
      "          'hell': 1,\n",
      "          'may': 1,\n",
      "          'feel': 1,\n",
      "          'better': 1,\n",
      "          'morning': 1,\n",
      "          'neednt': 1,\n",
      "          'worried': 1,\n",
      "          'sweetest': 1,\n",
      "          'warmest': 1,\n",
      "          'allout': 1,\n",
      "          'laughandgrossfest': 1,\n",
      "          '_animal': 1,\n",
      "          'house_': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'walked': 1,\n",
      "          'tight': 1,\n",
      "          'line': 1,\n",
      "          'making': 1,\n",
      "          'touching': 1,\n",
      "          'romantic': 1,\n",
      "          'filling': 1,\n",
      "          'details': 1,\n",
      "          'five': 1,\n",
      "          'six': 1,\n",
      "          'outrageous': 1,\n",
      "          'howlers': 1,\n",
      "          'nthey': 1,\n",
      "          'make': 1,\n",
      "          'laughter': 1,\n",
      "          'toughest': 1,\n",
      "          'job': 1,\n",
      "          'filmmaker': 1,\n",
      "          'look': 1,\n",
      "          'easy': 1,\n",
      "          'plot': 1,\n",
      "          'typical': 1,\n",
      "          'nthirteen': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'geeky': 1,\n",
      "          'ben': 1,\n",
      "          'lucked': 1,\n",
      "          'dazzling': 1,\n",
      "          'cameron': 1,\n",
      "          'go': 1,\n",
      "          'senior': 1,\n",
      "          'prom': 1,\n",
      "          'nas': 1,\n",
      "          'luck': 1,\n",
      "          'day': 1,\n",
      "          'hospitalized': 1,\n",
      "          'nwhy': 1,\n",
      "          'shall': 1,\n",
      "          'tell': 1,\n",
      "          'assure': 1,\n",
      "          'isnt': 1,\n",
      "          'pretty': 1,\n",
      "          'hires': 1,\n",
      "          'private': 1,\n",
      "          'investigator': 1,\n",
      "          'find': 1,\n",
      "          'pat': 1,\n",
      "          'healy': 1,\n",
      "          'matt': 1,\n",
      "          'dillon': 1,\n",
      "          'one': 1,\n",
      "          'comic': 1,\n",
      "          'villains': 1,\n",
      "          'nupon': 1,\n",
      "          'finding': 1,\n",
      "          'lovestruck': 1,\n",
      "          'pursues': 1,\n",
      "          'lying': 1,\n",
      "          'occupation': 1,\n",
      "          'getting': 1,\n",
      "          'nit': 1,\n",
      "          'matter': 1,\n",
      "          'time': 1,\n",
      "          'finds': 1,\n",
      "          'doublecrossed': 1,\n",
      "          'goes': 1,\n",
      "          'nwould': 1,\n",
      "          'geek': 1,\n",
      "          'girl': 1,\n",
      "          'npuhlease': 1,\n",
      "          'ending': 1,\n",
      "          'pure': 1,\n",
      "          'hollywood': 1,\n",
      "          'surprises': 1,\n",
      "          'absolute': 1,\n",
      "          'joy': 1,\n",
      "          'simple': 1,\n",
      "          'premise': 1,\n",
      "          'allows': 1,\n",
      "          'humor': 1,\n",
      "          'zippers': 1,\n",
      "          'gel': 1,\n",
      "          'disabled': 1,\n",
      "          'physically': 1,\n",
      "          'interracial': 1,\n",
      "          'marriages': 1,\n",
      "          'homosexuals': 1,\n",
      "          'conditions': 1,\n",
      "          'serial': 1,\n",
      "          'killers': 1,\n",
      "          'druggedup': 1,\n",
      "          'dogs': 1,\n",
      "          'dog': 1,\n",
      "          'speed': 1,\n",
      "          'sequence': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'belongs': 1,\n",
      "          'hall': 1,\n",
      "          'fame': 1,\n",
      "          'yet': 1,\n",
      "          'targets': 1,\n",
      "          'maintains': 1,\n",
      "          'tone': 1,\n",
      "          'playing': 1,\n",
      "          'beautiful': 1,\n",
      "          'nshe': 1,\n",
      "          'devoted': 1,\n",
      "          'brother': 1,\n",
      "          'warren': 1,\n",
      "          'w': 1,\n",
      "          'nearl': 1,\n",
      "          'brownmiles': 1,\n",
      "          'away': 1,\n",
      "          'cameraman': 1,\n",
      "          '_scream_': 1,\n",
      "          'nmarys': 1,\n",
      "          'sunniness': 1,\n",
      "          'carries': 1,\n",
      "          'hereit': 1,\n",
      "          'compliments': 1,\n",
      "          'belowbelt': 1,\n",
      "          'gags': 1,\n",
      "          'come': 1,\n",
      "          'ncameron': 1,\n",
      "          'makes': 1,\n",
      "          'charming': 1,\n",
      "          'audience': 1,\n",
      "          'respects': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'women': 1,\n",
      "          'general': 1,\n",
      "          'usually': 1,\n",
      "          'undress': 1,\n",
      "          'window': 1,\n",
      "          'nben': 1,\n",
      "          'fares': 1,\n",
      "          'well': 1,\n",
      "          'changing': 1,\n",
      "          'image': 1,\n",
      "          '_reality': 1,\n",
      "          'bites_': 1,\n",
      "          '_flirting': 1,\n",
      "          'disaster_': 1,\n",
      "          'men': 1,\n",
      "          'say': 1,\n",
      "          'complete': 1,\n",
      "          'loser': 1,\n",
      "          'nbraces': 1,\n",
      "          'greasy': 1,\n",
      "          'bright': 1,\n",
      "          'ndillon': 1,\n",
      "          'exceptionally': 1,\n",
      "          'creepy': 1,\n",
      "          'especially': 1,\n",
      "          'rounding': 1,\n",
      "          'cast': 1,\n",
      "          'teds': 1,\n",
      "          'friend': 1,\n",
      "          'dom': 1,\n",
      "          'chris': 1,\n",
      "          'elliot': 1,\n",
      "          'addict': 1,\n",
      "          'magda': 1,\n",
      "          'lin': 1,\n",
      "          'shaye': 1,\n",
      "          'modern': 1,\n",
      "          'troubadorgreek': 1,\n",
      "          'chorus': 1,\n",
      "          'ron': 1,\n",
      "          'lichman': 1,\n",
      "          'marys': 1,\n",
      "          'mom': 1,\n",
      "          'markie': 1,\n",
      "          'post': 1,\n",
      "          'nnot': 1,\n",
      "          'everything': 1,\n",
      "          'works': 1,\n",
      "          'nchris': 1,\n",
      "          'elliots': 1,\n",
      "          'blemishes': 1,\n",
      "          'merely': 1,\n",
      "          'boring': 1,\n",
      "          'ntheres': 1,\n",
      "          'lousy': 1,\n",
      "          'dialogue': 1,\n",
      "          'eightminute': 1,\n",
      "          'vs': 1,\n",
      "          'seven': 1,\n",
      "          'minute': 1,\n",
      "          'exercise': 1,\n",
      "          'tapes': 1,\n",
      "          'stretches': 1,\n",
      "          'without': 1,\n",
      "          'much': 1,\n",
      "          'going': 1,\n",
      "          'wait': 1,\n",
      "          'nwhen': 1,\n",
      "          'extraordinary': 1,\n",
      "          'entire': 1,\n",
      "          'theater': 1,\n",
      "          'erupted': 1,\n",
      "          'howls': 1,\n",
      "          'tears': 1,\n",
      "          'nbellyaches': 1,\n",
      "          'carried': 1,\n",
      "          'following': 1,\n",
      "          'scene': 1,\n",
      "          'finally': 1,\n",
      "          'done': 1,\n",
      "          'nyes': 1,\n",
      "          'bits': 1,\n",
      "          'could': 1,\n",
      "          'didnt': 1,\n",
      "          'cross': 1,\n",
      "          'lines': 1,\n",
      "          'least': 1,\n",
      "          'wasnt': 1,\n",
      "          '_porkys_': 1,\n",
      "          '_boogie': 1,\n",
      "          'nights_': 1,\n",
      "          'enough': 1,\n",
      "          'considered': 1,\n",
      "          'date': 1,\n",
      "          'flick': 1,\n",
      "          'nafter': 1,\n",
      "          'sour': 1,\n",
      "          '_kingpin_': 1,\n",
      "          'left': 1,\n",
      "          'negative': 1,\n",
      "          'aftertaste': 1,\n",
      "          'palate': 1,\n",
      "          'comes': 1,\n",
      "          'funniest': 1,\n",
      "          'sex': 1,\n",
      "          'farce': 1,\n",
      "          'since': 1,\n",
      "          '_a': 1,\n",
      "          'fish': 1,\n",
      "          'called': 1,\n",
      "          'wanda_': 1,\n",
      "          'napproach': 1,\n",
      "          'mind': 1,\n",
      "          'reap': 1,\n",
      "          'benefits': 1,\n",
      "          'hugely': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cop': 6,\n",
      "          'gun': 4,\n",
      "          'nthe': 4,\n",
      "          'live': 4,\n",
      "          'woman': 3,\n",
      "          'like': 3,\n",
      "          'prison': 3,\n",
      "          'almod': 3,\n",
      "          'flesh': 3,\n",
      "          'victor': 3,\n",
      "          'david': 3,\n",
      "          'na': 2,\n",
      "          'man': 2,\n",
      "          'holds': 2,\n",
      "          'first': 2,\n",
      "          'middle': 2,\n",
      "          'wrong': 2,\n",
      "          'vars': 2,\n",
      "          'colorful': 2,\n",
      "          'ncharacters': 2,\n",
      "          'often': 2,\n",
      "          'look': 2,\n",
      "          'husband': 2,\n",
      "          'sancho': 2,\n",
      "          'n': 2,\n",
      "          'learns': 2,\n",
      "          'standoff': 1,\n",
      "          'diplomats': 1,\n",
      "          'daughter': 1,\n",
      "          'hostage': 1,\n",
      "          'embrace': 1,\n",
      "          'pressed': 1,\n",
      "          'head': 1,\n",
      "          'impaired': 1,\n",
      "          'drink': 1,\n",
      "          'due': 1,\n",
      "          'wifes': 1,\n",
      "          'philandering': 1,\n",
      "          'trains': 1,\n",
      "          'mans': 1,\n",
      "          'nether': 1,\n",
      "          'regions': 1,\n",
      "          'threatening': 1,\n",
      "          'shoot': 1,\n",
      "          'nanother': 1,\n",
      "          'partners': 1,\n",
      "          'temple': 1,\n",
      "          'forcing': 1,\n",
      "          'disarm': 1,\n",
      "          'scene': 1,\n",
      "          'unfolds': 1,\n",
      "          'foursome': 1,\n",
      "          'bidding': 1,\n",
      "          'bridgeupping': 1,\n",
      "          'ante': 1,\n",
      "          'signaling': 1,\n",
      "          'tacitly': 1,\n",
      "          'going': 1,\n",
      "          'game': 1,\n",
      "          'second': 1,\n",
      "          'retrieves': 1,\n",
      "          'cops': 1,\n",
      "          'weapon': 1,\n",
      "          'suspect': 1,\n",
      "          'lowers': 1,\n",
      "          'caught': 1,\n",
      "          'movesin': 1,\n",
      "          'slow': 1,\n",
      "          'motionto': 1,\n",
      "          'safety': 1,\n",
      "          'nit': 1,\n",
      "          'intoxicated': 1,\n",
      "          'officer': 1,\n",
      "          'makes': 1,\n",
      "          'move': 1,\n",
      "          'grabbing': 1,\n",
      "          'assailants': 1,\n",
      "          'room': 1,\n",
      "          'turns': 1,\n",
      "          'upside': 1,\n",
      "          'shot': 1,\n",
      "          'rings': 1,\n",
      "          'nshot': 1,\n",
      "          'back': 1,\n",
      "          'paralyzed': 1,\n",
      "          'life': 1,\n",
      "          'young': 1,\n",
      "          'found': 1,\n",
      "          'place': 1,\n",
      "          'time': 1,\n",
      "          'sent': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'crime': 1,\n",
      "          'didnt': 1,\n",
      "          'commit': 1,\n",
      "          'nstorytelling': 1,\n",
      "          'always': 1,\n",
      "          'one': 1,\n",
      "          'pedro': 1,\n",
      "          'greatest': 1,\n",
      "          'gifts': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'twisting': 1,\n",
      "          'turning': 1,\n",
      "          'compelling': 1,\n",
      "          'tale': 1,\n",
      "          'peppered': 1,\n",
      "          'wellwritten': 1,\n",
      "          'characters': 1,\n",
      "          'find': 1,\n",
      "          'carefullyconstructed': 1,\n",
      "          'scenes': 1,\n",
      "          'played': 1,\n",
      "          'actors': 1,\n",
      "          'might': 1,\n",
      "          'know': 1,\n",
      "          'strikingly': 1,\n",
      "          'familiar': 1,\n",
      "          'nevertheless': 1,\n",
      "          'ntake': 1,\n",
      "          'ruggedly': 1,\n",
      "          'handsome': 1,\n",
      "          'plaza': 1,\n",
      "          'liberto': 1,\n",
      "          'rabal': 1,\n",
      "          'instance': 1,\n",
      "          'nbefore': 1,\n",
      "          'gets': 1,\n",
      "          'could': 1,\n",
      "          'easily': 1,\n",
      "          'mistaken': 1,\n",
      "          'var': 1,\n",
      "          'favorite': 1,\n",
      "          'antonio': 1,\n",
      "          'banderas': 1,\n",
      "          'nwhen': 1,\n",
      "          'meet': 1,\n",
      "          'elena': 1,\n",
      "          'francesca': 1,\n",
      "          'neri': 1,\n",
      "          'nervous': 1,\n",
      "          'shakedown': 1,\n",
      "          'looks': 1,\n",
      "          'spice': 1,\n",
      "          'girl': 1,\n",
      "          'barbie': 1,\n",
      "          'frizzy': 1,\n",
      "          'shock': 1,\n",
      "          'orange': 1,\n",
      "          'hair': 1,\n",
      "          'later': 1,\n",
      "          'tones': 1,\n",
      "          'sufficiently': 1,\n",
      "          'pass': 1,\n",
      "          'juliette': 1,\n",
      "          'lewis': 1,\n",
      "          'nelenas': 1,\n",
      "          'javier': 1,\n",
      "          'bardem': 1,\n",
      "          'crippled': 1,\n",
      "          'shooting': 1,\n",
      "          'wears': 1,\n",
      "          'schwimmers': 1,\n",
      "          'bemused': 1,\n",
      "          'expression': 1,\n",
      "          'throughout': 1,\n",
      "          'nplaying': 1,\n",
      "          'inebriated': 1,\n",
      "          'cheating': 1,\n",
      "          'wife': 1,\n",
      "          'jos': 1,\n",
      "          'angela': 1,\n",
      "          'molinano': 1,\n",
      "          'lookalikes': 1,\n",
      "          'spring': 1,\n",
      "          'mind': 1,\n",
      "          'round': 1,\n",
      "          'excellent': 1,\n",
      "          'cast': 1,\n",
      "          'nits': 1,\n",
      "          'credit': 1,\n",
      "          'craft': 1,\n",
      "          'five': 1,\n",
      "          'individuals': 1,\n",
      "          'cross': 1,\n",
      "          'paths': 1,\n",
      "          'intertwine': 1,\n",
      "          'credulity': 1,\n",
      "          'begins': 1,\n",
      "          'ends': 1,\n",
      "          'birth': 1,\n",
      "          'films': 1,\n",
      "          'contradictions': 1,\n",
      "          'come': 1,\n",
      "          'almost': 1,\n",
      "          'contractions': 1,\n",
      "          'nbetween': 1,\n",
      "          'two': 1,\n",
      "          'childbearings': 1,\n",
      "          'coincidence': 1,\n",
      "          'irony': 1,\n",
      "          'hefty': 1,\n",
      "          'dollop': 1,\n",
      "          'sex': 1,\n",
      "          'form': 1,\n",
      "          'key': 1,\n",
      "          'elements': 1,\n",
      "          'thoroughly': 1,\n",
      "          'entertaining': 1,\n",
      "          'film': 1,\n",
      "          'nalthough': 1,\n",
      "          'based': 1,\n",
      "          'ruth': 1,\n",
      "          'rendell': 1,\n",
      "          'story': 1,\n",
      "          'brimming': 1,\n",
      "          'acclaimed': 1,\n",
      "          'spanish': 1,\n",
      "          'directors': 1,\n",
      "          'highheeled': 1,\n",
      "          'flourishes': 1,\n",
      "          'nwomen': 1,\n",
      "          'times': 1,\n",
      "          'alluring': 1,\n",
      "          'repulsive': 1,\n",
      "          'extravagant': 1,\n",
      "          'hairdos': 1,\n",
      "          'animal': 1,\n",
      "          'print': 1,\n",
      "          'coats': 1,\n",
      "          'providing': 1,\n",
      "          'highlights': 1,\n",
      "          'intricatelywoven': 1,\n",
      "          'drama': 1,\n",
      "          'eye': 1,\n",
      "          'bruised': 1,\n",
      "          'abusive': 1,\n",
      "          'mouth': 1,\n",
      "          'bloodied': 1,\n",
      "          'impromptu': 1,\n",
      "          'delivery': 1,\n",
      "          'nwhile': 1,\n",
      "          'bulgarian': 1,\n",
      "          'inmate': 1,\n",
      "          'love': 1,\n",
      "          'bible': 1,\n",
      "          'quoting': 1,\n",
      "          'deuteronomy': 1,\n",
      "          'thereafter': 1,\n",
      "          'unlike': 1,\n",
      "          'way': 1,\n",
      "          'refer': 1,\n",
      "          'guardians': 1,\n",
      "          'sick': 1,\n",
      "          'flock': 1,\n",
      "          'nvictors': 1,\n",
      "          'prefab': 1,\n",
      "          'inheritance': 1,\n",
      "          'shambles': 1,\n",
      "          'slum': 1,\n",
      "          'resembling': 1,\n",
      "          'sarajevo': 1,\n",
      "          'dear': 1,\n",
      "          'son': 1,\n",
      "          'got': 1,\n",
      "          'cancer': 1,\n",
      "          'mother': 1,\n",
      "          'writes': 1,\n",
      "          'jail': 1,\n",
      "          'nshe': 1,\n",
      "          'dies': 1,\n",
      "          'released': 1,\n",
      "          'cemetery': 1,\n",
      "          'reacquainted': 1,\n",
      "          'elenaredemption': 1,\n",
      "          'ultimately': 1,\n",
      "          'substituting': 1,\n",
      "          'revenge': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hunter': 4,\n",
      "          'serial': 4,\n",
      "          'killer': 4,\n",
      "          'weaver': 3,\n",
      "          'copycat': 3,\n",
      "          'academy': 2,\n",
      "          'award': 2,\n",
      "          'raising': 2,\n",
      "          'arizona': 2,\n",
      "          'hollywood': 2,\n",
      "          'one': 2,\n",
      "          'film': 2,\n",
      "          'plot': 2,\n",
      "          'thriller': 2,\n",
      "          'connick': 2,\n",
      "          'jr': 2,\n",
      "          'helen': 2,\n",
      "          'also': 2,\n",
      "          'killers': 2,\n",
      "          'used': 2,\n",
      "          'ncopycat': 2,\n",
      "          'audience': 2,\n",
      "          'well': 2,\n",
      "          'good': 2,\n",
      "          'movie': 2,\n",
      "          'anticipation': 2,\n",
      "          'stars': 1,\n",
      "          'like': 1,\n",
      "          'sigourney': 1,\n",
      "          'alien': 1,\n",
      "          'trilogy': 1,\n",
      "          'winner': 1,\n",
      "          'holly': 1,\n",
      "          'piano': 1,\n",
      "          'etc': 1,\n",
      "          'together': 1,\n",
      "          'single': 1,\n",
      "          'production': 1,\n",
      "          'would': 1,\n",
      "          'immediately': 1,\n",
      "          'identify': 1,\n",
      "          'potential': 1,\n",
      "          'hot': 1,\n",
      "          'shot': 1,\n",
      "          'nsadly': 1,\n",
      "          'though': 1,\n",
      "          'tightly': 1,\n",
      "          'scripted': 1,\n",
      "          'nicely': 1,\n",
      "          'still': 1,\n",
      "          'heart': 1,\n",
      "          'typical': 1,\n",
      "          'nhelen': 1,\n",
      "          'traumatic': 1,\n",
      "          'near': 1,\n",
      "          'death': 1,\n",
      "          'encounter': 1,\n",
      "          'darryl': 1,\n",
      "          'harry': 1,\n",
      "          'developed': 1,\n",
      "          'phobia': 1,\n",
      "          'outdoors': 1,\n",
      "          'speak': 1,\n",
      "          'nincidentally': 1,\n",
      "          'expert': 1,\n",
      "          'subject': 1,\n",
      "          'make': 1,\n",
      "          'juicy': 1,\n",
      "          'target': 1,\n",
      "          'wannabes': 1,\n",
      "          'na': 1,\n",
      "          'year': 1,\n",
      "          'passed': 1,\n",
      "          'strange': 1,\n",
      "          'deaths': 1,\n",
      "          'begin': 1,\n",
      "          'terrorise': 1,\n",
      "          'city': 1,\n",
      "          'san': 1,\n",
      "          'francisco': 1,\n",
      "          'ndetective': 1,\n",
      "          'monahan': 1,\n",
      "          'getz': 1,\n",
      "          'mulroney': 1,\n",
      "          'baffled': 1,\n",
      "          'unorthodox': 1,\n",
      "          'methods': 1,\n",
      "          'killing': 1,\n",
      "          'seeks': 1,\n",
      "          'professional': 1,\n",
      "          'help': 1,\n",
      "          'expected': 1,\n",
      "          'reluctant': 1,\n",
      "          'first': 1,\n",
      "          'borrows': 1,\n",
      "          'lot': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'cases': 1,\n",
      "          'work': 1,\n",
      "          'nbut': 1,\n",
      "          'tries': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'immersing': 1,\n",
      "          'lives': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'give': 1,\n",
      "          'believability': 1,\n",
      "          'rather': 1,\n",
      "          'unnecessary': 1,\n",
      "          'scenes': 1,\n",
      "          'seem': 1,\n",
      "          'disrupt': 1,\n",
      "          'mood': 1,\n",
      "          'entire': 1,\n",
      "          'nmuch': 1,\n",
      "          'time': 1,\n",
      "          'wasted': 1,\n",
      "          'couldve': 1,\n",
      "          'build': 1,\n",
      "          'suspense': 1,\n",
      "          'injected': 1,\n",
      "          'drama': 1,\n",
      "          'neven': 1,\n",
      "          'act': 1,\n",
      "          'departments': 1,\n",
      "          'nweaver': 1,\n",
      "          'vulnerable': 1,\n",
      "          'yet': 1,\n",
      "          'strongwithin': 1,\n",
      "          'character': 1,\n",
      "          'aliens': 1,\n",
      "          'short': 1,\n",
      "          'tough': 1,\n",
      "          'texan': 1,\n",
      "          'speaking': 1,\n",
      "          'cop': 1,\n",
      "          'nharry': 1,\n",
      "          'jazz': 1,\n",
      "          'singer': 1,\n",
      "          'shines': 1,\n",
      "          'imprisoned': 1,\n",
      "          'la': 1,\n",
      "          'hannibal': 1,\n",
      "          'lecter': 1,\n",
      "          'nwhich': 1,\n",
      "          'comes': 1,\n",
      "          'moment': 1,\n",
      "          'judgement': 1,\n",
      "          'drum': 1,\n",
      "          'roll': 1,\n",
      "          'please': 1,\n",
      "          'nalthough': 1,\n",
      "          'highly': 1,\n",
      "          'predictable': 1,\n",
      "          'actually': 1,\n",
      "          'predict': 1,\n",
      "          'rest': 1,\n",
      "          '45': 1,\n",
      "          'minutes': 1,\n",
      "          'show': 1,\n",
      "          'survives': 1,\n",
      "          'moments': 1,\n",
      "          'held': 1,\n",
      "          'seats': 1,\n",
      "          'next': 1,\n",
      "          'immediate': 1,\n",
      "          'move': 1,\n",
      "          'nthis': 1,\n",
      "          'worked': 1,\n",
      "          'pretty': 1,\n",
      "          'offer': 1,\n",
      "          'audiences': 1,\n",
      "          'couple': 1,\n",
      "          'unexpected': 1,\n",
      "          'jolts': 1,\n",
      "          'nnice': 1,\n",
      "          'bring': 1,\n",
      "          'girlfriend': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'horizon': 10,\n",
      "          'film': 9,\n",
      "          'nthe': 7,\n",
      "          'event': 7,\n",
      "          'ship': 4,\n",
      "          'horror': 4,\n",
      "          'actually': 3,\n",
      "          'nevent': 3,\n",
      "          'many': 3,\n",
      "          'alien': 3,\n",
      "          'story': 3,\n",
      "          'us': 3,\n",
      "          'within': 3,\n",
      "          'well': 3,\n",
      "          'audiences': 3,\n",
      "          'purpose': 2,\n",
      "          'scifi': 2,\n",
      "          'nit': 2,\n",
      "          'even': 2,\n",
      "          'like': 2,\n",
      "          'buildup': 2,\n",
      "          'horrifying': 2,\n",
      "          'space': 2,\n",
      "          'since': 2,\n",
      "          'time': 2,\n",
      "          'team': 2,\n",
      "          'word': 2,\n",
      "          'say': 2,\n",
      "          'would': 2,\n",
      "          'crew': 2,\n",
      "          'suspense': 2,\n",
      "          'really': 2,\n",
      "          'enough': 2,\n",
      "          'ni': 2,\n",
      "          'disturbing': 2,\n",
      "          'quite': 2,\n",
      "          'friend': 2,\n",
      "          'watch': 2,\n",
      "          'nbe': 2,\n",
      "          'bad': 1,\n",
      "          'fact': 1,\n",
      "          'good': 1,\n",
      "          'achieving': 1,\n",
      "          'wished': 1,\n",
      "          'end': 1,\n",
      "          'quickly': 1,\n",
      "          'runofthemill': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'watched': 1,\n",
      "          'agree': 1,\n",
      "          'original': 1,\n",
      "          'sense': 1,\n",
      "          'borrow': 1,\n",
      "          'heavily': 1,\n",
      "          'films': 1,\n",
      "          'hellraiser': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'magic': 1,\n",
      "          'lies': 1,\n",
      "          'unorthodox': 1,\n",
      "          'setting': 1,\n",
      "          'methodical': 1,\n",
      "          'makes': 1,\n",
      "          'wonderfully': 1,\n",
      "          'brings': 1,\n",
      "          'year': 1,\n",
      "          '2050': 1,\n",
      "          'travel': 1,\n",
      "          'enormously': 1,\n",
      "          'progressed': 1,\n",
      "          'built': 1,\n",
      "          'secret': 1,\n",
      "          'experimental': 1,\n",
      "          'ability': 1,\n",
      "          'fold': 1,\n",
      "          'thus': 1,\n",
      "          'making': 1,\n",
      "          'possible': 1,\n",
      "          'travelling': 1,\n",
      "          'distances': 1,\n",
      "          'reachable': 1,\n",
      "          'mans': 1,\n",
      "          'lifetime': 1,\n",
      "          'disappeared': 1,\n",
      "          'soon': 1,\n",
      "          'went': 1,\n",
      "          'operation': 1,\n",
      "          '7': 1,\n",
      "          'years': 1,\n",
      "          'reappeared': 1,\n",
      "          'orbit': 1,\n",
      "          'neptune': 1,\n",
      "          'na': 1,\n",
      "          'search': 1,\n",
      "          'rescue': 1,\n",
      "          'led': 1,\n",
      "          'miller': 1,\n",
      "          'fishburne': 1,\n",
      "          'given': 1,\n",
      "          'task': 1,\n",
      "          'check': 1,\n",
      "          'survivors': 1,\n",
      "          'designer': 1,\n",
      "          'dr': 1,\n",
      "          'weir': 1,\n",
      "          'neill': 1,\n",
      "          'follows': 1,\n",
      "          'along': 1,\n",
      "          'satisfy': 1,\n",
      "          'curiosity': 1,\n",
      "          'happened': 1,\n",
      "          'otherwise': 1,\n",
      "          'technologically': 1,\n",
      "          'impressive': 1,\n",
      "          'much': 1,\n",
      "          'truer': 1,\n",
      "          'ever': 1,\n",
      "          'nwhile': 1,\n",
      "          'cope': 1,\n",
      "          'ferocious': 1,\n",
      "          'creature': 1,\n",
      "          'encased': 1,\n",
      "          'tight': 1,\n",
      "          'spaces': 1,\n",
      "          'forces': 1,\n",
      "          'goes': 1,\n",
      "          'undefined': 1,\n",
      "          'yet': 1,\n",
      "          'powerful': 1,\n",
      "          'unfolds': 1,\n",
      "          'slowly': 1,\n",
      "          'superb': 1,\n",
      "          'till': 1,\n",
      "          'point': 1,\n",
      "          'felt': 1,\n",
      "          'saying': 1,\n",
      "          'loud': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'anymore': 1,\n",
      "          'nthere': 1,\n",
      "          'jolts': 1,\n",
      "          'send': 1,\n",
      "          'adrenalin': 1,\n",
      "          'pumping': 1,\n",
      "          'overtime': 1,\n",
      "          'exactly': 1,\n",
      "          'something': 1,\n",
      "          'exciting': 1,\n",
      "          'also': 1,\n",
      "          'acting': 1,\n",
      "          'average': 1,\n",
      "          'commercial': 1,\n",
      "          'standards': 1,\n",
      "          'neven': 1,\n",
      "          'essence': 1,\n",
      "          'carried': 1,\n",
      "          'thanks': 1,\n",
      "          'wellpaced': 1,\n",
      "          'storytelling': 1,\n",
      "          'set': 1,\n",
      "          'designs': 1,\n",
      "          'gory': 1,\n",
      "          'sequences': 1,\n",
      "          'incidentally': 1,\n",
      "          'generously': 1,\n",
      "          'removed': 1,\n",
      "          'censorship': 1,\n",
      "          'board': 1,\n",
      "          'ndirector': 1,\n",
      "          'paul': 1,\n",
      "          'anderson': 1,\n",
      "          'mortal': 1,\n",
      "          'kombat': 1,\n",
      "          'atmosphere': 1,\n",
      "          'creators': 1,\n",
      "          'done': 1,\n",
      "          'keeping': 1,\n",
      "          'bounds': 1,\n",
      "          'term': 1,\n",
      "          'nthis': 1,\n",
      "          'picture': 1,\n",
      "          'boxoffice': 1,\n",
      "          'probably': 1,\n",
      "          'dreadfactor': 1,\n",
      "          'impact': 1,\n",
      "          'people': 1,\n",
      "          'see': 1,\n",
      "          'recommend': 1,\n",
      "          'nalthough': 1,\n",
      "          'face': 1,\n",
      "          'mostly': 1,\n",
      "          'molded': 1,\n",
      "          'massentertainment': 1,\n",
      "          'thrills': 1,\n",
      "          'spills': 1,\n",
      "          'keep': 1,\n",
      "          'focus': 1,\n",
      "          'nhowever': 1,\n",
      "          'offbeat': 1,\n",
      "          'element': 1,\n",
      "          'ultimately': 1,\n",
      "          'convey': 1,\n",
      "          'nmy': 1,\n",
      "          'could': 1,\n",
      "          'going': 1,\n",
      "          'experience': 1,\n",
      "          'guess': 1,\n",
      "          'immense': 1,\n",
      "          'feeling': 1,\n",
      "          'dread': 1,\n",
      "          'cast': 1,\n",
      "          'upon': 1,\n",
      "          'forewarned': 1,\n",
      "          'fainthearted': 1,\n",
      "          'pure': 1,\n",
      "          'entertainment': 1,\n",
      "          'prepared': 1,\n",
      "          'disturbed': 1,\n",
      "          'decide': 1,\n",
      "          'highly': 1,\n",
      "          'recommended': 1,\n",
      "          'risk': 1,\n",
      "          'long': 1,\n",
      "          'goodhorror': 1,\n",
      "          'embraced': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'one': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'movies': 5,\n",
      "          'man': 4,\n",
      "          'one': 4,\n",
      "          'probably': 4,\n",
      "          'would': 4,\n",
      "          'cops': 3,\n",
      "          'nthe': 3,\n",
      "          'thats': 3,\n",
      "          'like': 3,\n",
      "          'sweetback': 3,\n",
      "          'experimental': 2,\n",
      "          'frank': 2,\n",
      "          'even': 2,\n",
      "          'ultimately': 2,\n",
      "          'black': 2,\n",
      "          'first': 2,\n",
      "          'boy': 2,\n",
      "          'taken': 2,\n",
      "          'takes': 2,\n",
      "          'credits': 2,\n",
      "          'real': 2,\n",
      "          'life': 2,\n",
      "          'used': 2,\n",
      "          'matter': 2,\n",
      "          'sex': 2,\n",
      "          'way': 2,\n",
      "          'good': 2,\n",
      "          'many': 2,\n",
      "          'nin': 2,\n",
      "          'nssbas': 2,\n",
      "          'van': 2,\n",
      "          'peebles': 2,\n",
      "          'scene': 2,\n",
      "          'people': 2,\n",
      "          'full': 2,\n",
      "          'capsule': 1,\n",
      "          'earthy': 1,\n",
      "          'difficult': 1,\n",
      "          'shockingly': 1,\n",
      "          '1997': 1,\n",
      "          'refreshing': 1,\n",
      "          'story': 1,\n",
      "          'run': 1,\n",
      "          'minutes': 1,\n",
      "          'sweet': 1,\n",
      "          'sweetbacks': 1,\n",
      "          'baad': 1,\n",
      "          'asssss': 1,\n",
      "          'song': 1,\n",
      "          'yes': 1,\n",
      "          'checked': 1,\n",
      "          'correct': 1,\n",
      "          'number': 1,\n",
      "          'ss': 1,\n",
      "          'without': 1,\n",
      "          'dialogue': 1,\n",
      "          'eerie': 1,\n",
      "          'montages': 1,\n",
      "          'sounds': 1,\n",
      "          'na': 1,\n",
      "          'young': 1,\n",
      "          'obviously': 1,\n",
      "          'malnourished': 1,\n",
      "          'fed': 1,\n",
      "          'several': 1,\n",
      "          'loving': 1,\n",
      "          'mothersurrogate': 1,\n",
      "          'figures': 1,\n",
      "          'nthen': 1,\n",
      "          'bed': 1,\n",
      "          'sexual': 1,\n",
      "          'initation': 1,\n",
      "          'underneath': 1,\n",
      "          'title': 1,\n",
      "          'far': 1,\n",
      "          'confrontatory': 1,\n",
      "          'shocking': 1,\n",
      "          'ten': 1,\n",
      "          'basic': 1,\n",
      "          'instincts': 1,\n",
      "          'directness': 1,\n",
      "          'clumsiness': 1,\n",
      "          'something': 1,\n",
      "          'seeing': 1,\n",
      "          'screen': 1,\n",
      "          'nthis': 1,\n",
      "          'tough': 1,\n",
      "          'swallow': 1,\n",
      "          'reflects': 1,\n",
      "          'pallid': 1,\n",
      "          'unchallenging': 1,\n",
      "          'gotten': 1,\n",
      "          'lately': 1,\n",
      "          'n': 1,\n",
      "          'suspect': 1,\n",
      "          'scenes': 1,\n",
      "          'el': 1,\n",
      "          'topo': 1,\n",
      "          'salo': 1,\n",
      "          'melt': 1,\n",
      "          'synapses': 1,\n",
      "          'modern': 1,\n",
      "          'audiences': 1,\n",
      "          'plot': 1,\n",
      "          'simple': 1,\n",
      "          'simpleminded': 1,\n",
      "          'nsweetback': 1,\n",
      "          'hassled': 1,\n",
      "          'two': 1,\n",
      "          'white': 1,\n",
      "          'apparently': 1,\n",
      "          'looking': 1,\n",
      "          'excuse': 1,\n",
      "          'beat': 1,\n",
      "          'breaks': 1,\n",
      "          'bonds': 1,\n",
      "          'runs': 1,\n",
      "          'hell': 1,\n",
      "          'nalong': 1,\n",
      "          'moves': 1,\n",
      "          'kinds': 1,\n",
      "          'environments': 1,\n",
      "          'seen': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'serious': 1,\n",
      "          'light': 1,\n",
      "          'slums': 1,\n",
      "          'missions': 1,\n",
      "          'ghetto': 1,\n",
      "          'lesser': 1,\n",
      "          'machinegunning': 1,\n",
      "          'everything': 1,\n",
      "          'sight': 1,\n",
      "          'end': 1,\n",
      "          'roll': 1,\n",
      "          'pile': 1,\n",
      "          'bodies': 1,\n",
      "          'get': 1,\n",
      "          'kind': 1,\n",
      "          'tour': 1,\n",
      "          'depressing': 1,\n",
      "          'anarchic': 1,\n",
      "          'world': 1,\n",
      "          'granted': 1,\n",
      "          'appeared': 1,\n",
      "          '1971': 1,\n",
      "          'promptly': 1,\n",
      "          'rated': 1,\n",
      "          'x': 1,\n",
      "          'allwhite': 1,\n",
      "          'jury': 1,\n",
      "          'director': 1,\n",
      "          'melvin': 1,\n",
      "          'crowed': 1,\n",
      "          'legendary': 1,\n",
      "          'ad': 1,\n",
      "          'campaigns': 1,\n",
      "          'hardly': 1,\n",
      "          'surprising': 1,\n",
      "          'ntheres': 1,\n",
      "          'deal': 1,\n",
      "          'handled': 1,\n",
      "          'unsettlingly': 1,\n",
      "          'frankness': 1,\n",
      "          'spills': 1,\n",
      "          'rest': 1,\n",
      "          'visits': 1,\n",
      "          'friends': 1,\n",
      "          'house': 1,\n",
      "          'hope': 1,\n",
      "          'getting': 1,\n",
      "          'sanctuary': 1,\n",
      "          'chats': 1,\n",
      "          'toilet': 1,\n",
      "          'nwere': 1,\n",
      "          'coming': 1,\n",
      "          'close': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'especially': 1,\n",
      "          'made': 1,\n",
      "          'glamorous': 1,\n",
      "          'also': 1,\n",
      "          'stylistics': 1,\n",
      "          'relatively': 1,\n",
      "          'unused': 1,\n",
      "          'today': 1,\n",
      "          'seem': 1,\n",
      "          'curiously': 1,\n",
      "          'fresh': 1,\n",
      "          'new': 1,\n",
      "          'hands': 1,\n",
      "          'none': 1,\n",
      "          'interrogated': 1,\n",
      "          'loaded': 1,\n",
      "          'menacing': 1,\n",
      "          'energy': 1,\n",
      "          'fire': 1,\n",
      "          'gun': 1,\n",
      "          'inches': 1,\n",
      "          'ears': 1,\n",
      "          'suggest': 1,\n",
      "          'deafness': 1,\n",
      "          'cleverly': 1,\n",
      "          'edited': 1,\n",
      "          'soundtrack': 1,\n",
      "          'nanother': 1,\n",
      "          'note': 1,\n",
      "          'ssbas': 1,\n",
      "          'much': 1,\n",
      "          'antiwhite': 1,\n",
      "          'easy': 1,\n",
      "          'antiauthority': 1,\n",
      "          'goes': 1,\n",
      "          'demonstrate': 1,\n",
      "          'authority': 1,\n",
      "          'exists': 1,\n",
      "          'forms': 1,\n",
      "          'governments': 1,\n",
      "          'churches': 1,\n",
      "          'paranoid': 1,\n",
      "          'inside': 1,\n",
      "          'ones': 1,\n",
      "          'mind': 1,\n",
      "          'thirsting': 1,\n",
      "          'freedom': 1,\n",
      "          'looks': 1,\n",
      "          'could': 1,\n",
      "          'use': 1,\n",
      "          'little': 1,\n",
      "          'diet': 1,\n",
      "          'god': 1,\n",
      "          'knows': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'stuart': 6,\n",
      "          'family': 4,\n",
      "          'movie': 4,\n",
      "          'really': 3,\n",
      "          'also': 3,\n",
      "          'show': 3,\n",
      "          'comedy': 3,\n",
      "          'ni': 2,\n",
      "          'much': 2,\n",
      "          'saves': 2,\n",
      "          'saturday': 2,\n",
      "          'night': 2,\n",
      "          'live': 2,\n",
      "          'sketch': 2,\n",
      "          'real': 2,\n",
      "          'truly': 2,\n",
      "          'often': 2,\n",
      "          'film': 2,\n",
      "          'al': 2,\n",
      "          'franken': 2,\n",
      "          'wrote': 2,\n",
      "          'nfor': 2,\n",
      "          'guy': 2,\n",
      "          'smalley': 2,\n",
      "          'station': 2,\n",
      "          'nstuart': 2,\n",
      "          'well': 2,\n",
      "          'getting': 2,\n",
      "          'dad': 2,\n",
      "          'nalthough': 2,\n",
      "          'like': 2,\n",
      "          'towards': 2,\n",
      "          'scenes': 2,\n",
      "          'especially': 2,\n",
      "          'nall': 2,\n",
      "          'fully': 1,\n",
      "          'loaded': 1,\n",
      "          'entertainment': 1,\n",
      "          'review': 1,\n",
      "          'website': 1,\n",
      "          'coming': 1,\n",
      "          'july': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'rented': 1,\n",
      "          'nthe': 1,\n",
      "          'bombed': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'never': 1,\n",
      "          'liked': 1,\n",
      "          'based': 1,\n",
      "          'nmy': 1,\n",
      "          'concern': 1,\n",
      "          'though': 1,\n",
      "          'general': 1,\n",
      "          'reputation': 1,\n",
      "          'snlrelated': 1,\n",
      "          'movies': 1,\n",
      "          'translating': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'lessthanstellar': 1,\n",
      "          'results': 1,\n",
      "          'halfbaked': 1,\n",
      "          'anyone': 1,\n",
      "          'surprised': 1,\n",
      "          'discover': 1,\n",
      "          'entertaining': 1,\n",
      "          'hilarious': 1,\n",
      "          'yet': 1,\n",
      "          'touching': 1,\n",
      "          'little': 1,\n",
      "          'nit': 1,\n",
      "          'production': 1,\n",
      "          'throughandthrough': 1,\n",
      "          'created': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'starred': 1,\n",
      "          'picture': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'plays': 1,\n",
      "          'named': 1,\n",
      "          'annoying': 1,\n",
      "          'publicaccess': 1,\n",
      "          'increasing': 1,\n",
      "          'selfesteem': 1,\n",
      "          'etc': 1,\n",
      "          'although': 1,\n",
      "          'licensed': 1,\n",
      "          'therapist': 1,\n",
      "          'program': 1,\n",
      "          'proudly': 1,\n",
      "          'boasts': 1,\n",
      "          'graduate': 1,\n",
      "          'several': 1,\n",
      "          '12step': 1,\n",
      "          'programs': 1,\n",
      "          'enough': 1,\n",
      "          'tv': 1,\n",
      "          'keeps': 1,\n",
      "          'distracted': 1,\n",
      "          'troubles': 1,\n",
      "          'nstuarts': 1,\n",
      "          'relatives': 1,\n",
      "          'mess': 1,\n",
      "          'brother': 1,\n",
      "          'harris': 1,\n",
      "          'yulin': 1,\n",
      "          'vincent': 1,\n",
      "          'donofrio': 1,\n",
      "          'respectively': 1,\n",
      "          'alcoholics': 1,\n",
      "          'sister': 1,\n",
      "          'overweight': 1,\n",
      "          'another': 1,\n",
      "          'divorce': 1,\n",
      "          'mom': 1,\n",
      "          'constant': 1,\n",
      "          'selfdenial': 1,\n",
      "          'solves': 1,\n",
      "          'perceived': 1,\n",
      "          'problems': 1,\n",
      "          'baking': 1,\n",
      "          'nthen': 1,\n",
      "          'disaster': 1,\n",
      "          'strikes': 1,\n",
      "          'accidentally': 1,\n",
      "          'insults': 1,\n",
      "          'manager': 1,\n",
      "          'gets': 1,\n",
      "          'revoked': 1,\n",
      "          'nhe': 1,\n",
      "          'forced': 1,\n",
      "          'move': 1,\n",
      "          'back': 1,\n",
      "          'longer': 1,\n",
      "          'support': 1,\n",
      "          'picks': 1,\n",
      "          'nfranken': 1,\n",
      "          'characters': 1,\n",
      "          'cliches': 1,\n",
      "          'stereotypes': 1,\n",
      "          'sharplydrawn': 1,\n",
      "          'people': 1,\n",
      "          'smalleys': 1,\n",
      "          'always': 1,\n",
      "          'imbibed': 1,\n",
      "          'still': 1,\n",
      "          'recall': 1,\n",
      "          'times': 1,\n",
      "          'father': 1,\n",
      "          'seemed': 1,\n",
      "          'okay': 1,\n",
      "          'nalso': 1,\n",
      "          'accident': 1,\n",
      "          'end': 1,\n",
      "          'audience': 1,\n",
      "          'learn': 1,\n",
      "          'mother': 1,\n",
      "          'previously': 1,\n",
      "          'thought': 1,\n",
      "          'filled': 1,\n",
      "          'small': 1,\n",
      "          'funny': 1,\n",
      "          'share': 1,\n",
      "          'dramatic': 1,\n",
      "          'moments': 1,\n",
      "          'conclusion': 1,\n",
      "          'lightweight': 1,\n",
      "          'handles': 1,\n",
      "          'better': 1,\n",
      "          'many': 1,\n",
      "          'socalled': 1,\n",
      "          'serious': 1,\n",
      "          'dramas': 1,\n",
      "          'today': 1,\n",
      "          'amazing': 1,\n",
      "          'comes': 1,\n",
      "          'essentially': 1,\n",
      "          'onejoke': 1,\n",
      "          'bit': 1,\n",
      "          'nif': 1,\n",
      "          'feel': 1,\n",
      "          'renting': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'definitely': 1,\n",
      "          'recommend': 1,\n",
      "          'try': 1,\n",
      "          'one': 1,\n",
      "          'nyoull': 1,\n",
      "          'laugh': 1,\n",
      "          'youll': 1,\n",
      "          'ncry': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'n': 10,\n",
      "          'lesly': 10,\n",
      "          'nthe': 9,\n",
      "          'marty': 6,\n",
      "          'jackieo': 6,\n",
      "          'fiancee': 5,\n",
      "          'like': 4,\n",
      "          'pascal': 4,\n",
      "          'house': 4,\n",
      "          'njackieo': 4,\n",
      "          'mother': 3,\n",
      "          'tells': 3,\n",
      "          'people': 3,\n",
      "          'sane': 3,\n",
      "          'play': 3,\n",
      "          'nin': 3,\n",
      "          'never': 3,\n",
      "          'movie': 3,\n",
      "          'nmrs': 2,\n",
      "          'played': 2,\n",
      "          'son': 2,\n",
      "          'womb': 2,\n",
      "          'nmarty': 2,\n",
      "          'dysfunctional': 2,\n",
      "          'comedy': 2,\n",
      "          'yes': 2,\n",
      "          'parker': 2,\n",
      "          'posey': 2,\n",
      "          'one': 2,\n",
      "          'part': 2,\n",
      "          'level': 2,\n",
      "          'martys': 2,\n",
      "          'new': 2,\n",
      "          'mark': 2,\n",
      "          'waters': 2,\n",
      "          'seems': 2,\n",
      "          'cutting': 2,\n",
      "          'fast': 2,\n",
      "          'characters': 2,\n",
      "          'familys': 2,\n",
      "          'two': 2,\n",
      "          'type': 2,\n",
      "          'twins': 2,\n",
      "          'brother': 2,\n",
      "          'boy': 2,\n",
      "          'mrs': 2,\n",
      "          'theyve': 2,\n",
      "          'nthey': 2,\n",
      "          'story': 2,\n",
      "          'playing': 2,\n",
      "          'engaging': 2,\n",
      "          'pies': 2,\n",
      "          'pancakes': 2,\n",
      "          'donut': 2,\n",
      "          'king': 2,\n",
      "          'rated': 2,\n",
      "          'mature': 2,\n",
      "          'oh': 1,\n",
      "          'god': 1,\n",
      "          'sounded': 1,\n",
      "          'devilish': 1,\n",
      "          'wickedness': 1,\n",
      "          'genevieve': 1,\n",
      "          'bujold': 1,\n",
      "          'didnt': 1,\n",
      "          'sound': 1,\n",
      "          'disgustedly': 1,\n",
      "          'know': 1,\n",
      "          'still': 1,\n",
      "          'cant': 1,\n",
      "          'believe': 1,\n",
      "          'ni': 1,\n",
      "          'look': 1,\n",
      "          'wonder': 1,\n",
      "          'ever': 1,\n",
      "          'fit': 1,\n",
      "          'see': 1,\n",
      "          'grownup': 1,\n",
      "          'twin': 1,\n",
      "          'nalthough': 1,\n",
      "          'sister': 1,\n",
      "          'thinks': 1,\n",
      "          'certifiably': 1,\n",
      "          'insane': 1,\n",
      "          'fits': 1,\n",
      "          'right': 1,\n",
      "          'rest': 1,\n",
      "          'highly': 1,\n",
      "          'family': 1,\n",
      "          'witty': 1,\n",
      "          'black': 1,\n",
      "          'nmother': 1,\n",
      "          'daughter': 1,\n",
      "          'brilliant': 1,\n",
      "          'performance': 1,\n",
      "          'varying': 1,\n",
      "          'degrees': 1,\n",
      "          'wacko': 1,\n",
      "          'nmost': 1,\n",
      "          'families': 1,\n",
      "          'movies': 1,\n",
      "          'angry': 1,\n",
      "          'meanspirited': 1,\n",
      "          'diabolically': 1,\n",
      "          'abnormal': 1,\n",
      "          'daughters': 1,\n",
      "          'fantasy': 1,\n",
      "          'probably': 1,\n",
      "          'sort': 1,\n",
      "          'let': 1,\n",
      "          'keep': 1,\n",
      "          'hairbrush': 1,\n",
      "          'downstairs': 1,\n",
      "          'since': 1,\n",
      "          'food': 1,\n",
      "          'kept': 1,\n",
      "          'nshe': 1,\n",
      "          'explains': 1,\n",
      "          'tori': 1,\n",
      "          'spelling': 1,\n",
      "          'soon': 1,\n",
      "          'first': 1,\n",
      "          'meeting': 1,\n",
      "          'holding': 1,\n",
      "          'private': 1,\n",
      "          'came': 1,\n",
      "          'dialog': 1,\n",
      "          'wendy': 1,\n",
      "          'macleod': 1,\n",
      "          'based': 1,\n",
      "          'sharp': 1,\n",
      "          'biting': 1,\n",
      "          'danger': 1,\n",
      "          'celluloid': 1,\n",
      "          'moment': 1,\n",
      "          'script': 1,\n",
      "          'reminiscent': 1,\n",
      "          'david': 1,\n",
      "          'mamet': 1,\n",
      "          'flows': 1,\n",
      "          'smoothly': 1,\n",
      "          'paced': 1,\n",
      "          'intelligence': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'set': 1,\n",
      "          'bizarre': 1,\n",
      "          'exaggerated': 1,\n",
      "          'setup': 1,\n",
      "          'arriving': 1,\n",
      "          'way': 1,\n",
      "          'mansion': 1,\n",
      "          'thanksgiving': 1,\n",
      "          'day': 1,\n",
      "          'hurricane': 1,\n",
      "          'storm': 1,\n",
      "          'individuals': 1,\n",
      "          'giddy': 1,\n",
      "          'schoolgirl': 1,\n",
      "          'embarrassed': 1,\n",
      "          'everything': 1,\n",
      "          'complete': 1,\n",
      "          'contrast': 1,\n",
      "          'rival': 1,\n",
      "          'jackieos': 1,\n",
      "          'bitter': 1,\n",
      "          'pseudosophistication': 1,\n",
      "          'nas': 1,\n",
      "          'younger': 1,\n",
      "          'anthony': 1,\n",
      "          'freddie': 1,\n",
      "          'prinze': 1,\n",
      "          'jr': 1,\n",
      "          'plays': 1,\n",
      "          'allamerica': 1,\n",
      "          'whose': 1,\n",
      "          'foible': 1,\n",
      "          'explicit': 1,\n",
      "          'obsession': 1,\n",
      "          'bedding': 1,\n",
      "          'brothers': 1,\n",
      "          'night': 1,\n",
      "          'secrets': 1,\n",
      "          'potential': 1,\n",
      "          'sisterinlaw': 1,\n",
      "          'nthis': 1,\n",
      "          'filled': 1,\n",
      "          'calls': 1,\n",
      "          'home': 1,\n",
      "          'visitor': 1,\n",
      "          'becomes': 1,\n",
      "          'discombobulated': 1,\n",
      "          'realizes': 1,\n",
      "          'talking': 1,\n",
      "          'film': 1,\n",
      "          'gives': 1,\n",
      "          'meaning': 1,\n",
      "          'phrase': 1,\n",
      "          'made': 1,\n",
      "          'biggest': 1,\n",
      "          'secret': 1,\n",
      "          'longterm': 1,\n",
      "          'incestuous': 1,\n",
      "          'relationship': 1,\n",
      "          'dont': 1,\n",
      "          'discuss': 1,\n",
      "          'although': 1,\n",
      "          'particularly': 1,\n",
      "          'ashamed': 1,\n",
      "          'nperfect': 1,\n",
      "          'viewers': 1,\n",
      "          'appreciate': 1,\n",
      "          'perverse': 1,\n",
      "          'pulls': 1,\n",
      "          'punches': 1,\n",
      "          'tries': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'subtle': 1,\n",
      "          'show': 1,\n",
      "          'better': 1,\n",
      "          'match': 1,\n",
      "          'ditzy': 1,\n",
      "          'scene': 1,\n",
      "          'chop': 1,\n",
      "          'sticks': 1,\n",
      "          'together': 1,\n",
      "          'piano': 1,\n",
      "          'pushes': 1,\n",
      "          'aside': 1,\n",
      "          'starts': 1,\n",
      "          'challenging': 1,\n",
      "          'classical': 1,\n",
      "          'piece': 1,\n",
      "          'four': 1,\n",
      "          'hands': 1,\n",
      "          'joins': 1,\n",
      "          'looks': 1,\n",
      "          'envy': 1,\n",
      "          'chemistry': 1,\n",
      "          'josh': 1,\n",
      "          'hamilton': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'amazing': 1,\n",
      "          'put': 1,\n",
      "          'little': 1,\n",
      "          'world': 1,\n",
      "          'ntheir': 1,\n",
      "          'ripostes': 1,\n",
      "          'filmmaking': 1,\n",
      "          'best': 1,\n",
      "          'ndirector': 1,\n",
      "          'keeps': 1,\n",
      "          'shows': 1,\n",
      "          'energy': 1,\n",
      "          'high': 1,\n",
      "          'lets': 1,\n",
      "          'leads': 1,\n",
      "          'sling': 1,\n",
      "          'zingers': 1,\n",
      "          'furious': 1,\n",
      "          'pace': 1,\n",
      "          'nhis': 1,\n",
      "          'crisp': 1,\n",
      "          'direction': 1,\n",
      "          'ensures': 1,\n",
      "          'nary': 1,\n",
      "          'ounce': 1,\n",
      "          'fat': 1,\n",
      "          'temperamentally': 1,\n",
      "          'incapable': 1,\n",
      "          'nice': 1,\n",
      "          'nand': 1,\n",
      "          'jealous': 1,\n",
      "          'cuts': 1,\n",
      "          'mercilessly': 1,\n",
      "          'poor': 1,\n",
      "          'asks': 1,\n",
      "          'finds': 1,\n",
      "          'committed': 1,\n",
      "          'crime': 1,\n",
      "          'growing': 1,\n",
      "          'impoverished': 1,\n",
      "          'eat': 1,\n",
      "          'nchicken': 1,\n",
      "          'pot': 1,\n",
      "          'actually': 1,\n",
      "          'lots': 1,\n",
      "          'replies': 1,\n",
      "          'usual': 1,\n",
      "          'sincerity': 1,\n",
      "          'queen': 1,\n",
      "          'cattily': 1,\n",
      "          'inquires': 1,\n",
      "          'learns': 1,\n",
      "          'works': 1,\n",
      "          'entertaining': 1,\n",
      "          'royalty': 1,\n",
      "          'nwith': 1,\n",
      "          'rolfe': 1,\n",
      "          'kents': 1,\n",
      "          'whimsically': 1,\n",
      "          'sinister': 1,\n",
      "          'music': 1,\n",
      "          'clear': 1,\n",
      "          'headed': 1,\n",
      "          'nwill': 1,\n",
      "          'end': 1,\n",
      "          'big': 1,\n",
      "          'emotional': 1,\n",
      "          'explosion': 1,\n",
      "          'murder': 1,\n",
      "          'slowly': 1,\n",
      "          'words': 1,\n",
      "          'familial': 1,\n",
      "          'catharsis': 1,\n",
      "          'weather': 1,\n",
      "          'disaster': 1,\n",
      "          'emotionally': 1,\n",
      "          'charged': 1,\n",
      "          'clearly': 1,\n",
      "          'going': 1,\n",
      "          'somewhere': 1,\n",
      "          'captivate': 1,\n",
      "          'audience': 1,\n",
      "          'spell': 1,\n",
      "          'nill': 1,\n",
      "          'say': 1,\n",
      "          'except': 1,\n",
      "          'ending': 1,\n",
      "          'perfect': 1,\n",
      "          'bit': 1,\n",
      "          'surprise': 1,\n",
      "          'runs': 1,\n",
      "          'blazing': 1,\n",
      "          '1': 1,\n",
      "          '25': 1,\n",
      "          'nit': 1,\n",
      "          'r': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          'conversations': 1,\n",
      "          'themes': 1,\n",
      "          'violent': 1,\n",
      "          'overtones': 1,\n",
      "          'profanity': 1,\n",
      "          'would': 1,\n",
      "          'fine': 1,\n",
      "          'older': 1,\n",
      "          'teenagers': 1,\n",
      "          'e': 1,\n",
      "          'treat': 1,\n",
      "          'nc17': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'truman': 10,\n",
      "          'show': 8,\n",
      "          'people': 7,\n",
      "          'life': 6,\n",
      "          'nthe': 5,\n",
      "          'trumans': 5,\n",
      "          'probably': 4,\n",
      "          'know': 3,\n",
      "          'carrey': 3,\n",
      "          'day': 3,\n",
      "          'director': 3,\n",
      "          'like': 3,\n",
      "          'nand': 3,\n",
      "          'interesting': 3,\n",
      "          'would': 3,\n",
      "          'could': 2,\n",
      "          'watched': 2,\n",
      "          'world': 2,\n",
      "          'thought': 2,\n",
      "          'tv': 2,\n",
      "          'jim': 2,\n",
      "          'entire': 2,\n",
      "          'hes': 2,\n",
      "          'living': 2,\n",
      "          'island': 2,\n",
      "          'hollywood': 2,\n",
      "          'actors': 2,\n",
      "          'extras': 2,\n",
      "          'watch': 2,\n",
      "          'comes': 2,\n",
      "          'everyone': 2,\n",
      "          'else': 2,\n",
      "          'youve': 2,\n",
      "          'crucial': 2,\n",
      "          'details': 2,\n",
      "          'anything': 2,\n",
      "          'entertainment': 2,\n",
      "          'news': 2,\n",
      "          'way': 2,\n",
      "          'premise': 2,\n",
      "          'going': 2,\n",
      "          'think': 2,\n",
      "          'eat': 2,\n",
      "          'good': 2,\n",
      "          'nbut': 2,\n",
      "          'father': 2,\n",
      "          'christof': 2,\n",
      "          'keep': 2,\n",
      "          'thing': 2,\n",
      "          'even': 2,\n",
      "          'balance': 2,\n",
      "          'shows': 2,\n",
      "          'us': 2,\n",
      "          'without': 2,\n",
      "          'cameras': 2,\n",
      "          'mean': 2,\n",
      "          'let': 2,\n",
      "          'though': 2,\n",
      "          'dont': 1,\n",
      "          'many': 1,\n",
      "          'idea': 1,\n",
      "          'cross': 1,\n",
      "          'mind': 1,\n",
      "          'ongoing': 1,\n",
      "          'television': 1,\n",
      "          'another': 1,\n",
      "          'something': 1,\n",
      "          'used': 1,\n",
      "          'wonder': 1,\n",
      "          'younger': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'decide': 1,\n",
      "          'first': 1,\n",
      "          'lot': 1,\n",
      "          'brother': 1,\n",
      "          'hit': 1,\n",
      "          'head': 1,\n",
      "          'baseball': 1,\n",
      "          'bat': 1,\n",
      "          'im': 1,\n",
      "          'pretty': 1,\n",
      "          'sure': 1,\n",
      "          'andrew': 1,\n",
      "          'niccol': 1,\n",
      "          'screenwriter': 1,\n",
      "          'curious': 1,\n",
      "          'man': 1,\n",
      "          'whose': 1,\n",
      "          'engineered': 1,\n",
      "          'corporation': 1,\n",
      "          'marketed': 1,\n",
      "          'public': 1,\n",
      "          'nsince': 1,\n",
      "          'birth': 1,\n",
      "          'fictional': 1,\n",
      "          'town': 1,\n",
      "          'seahaven': 1,\n",
      "          'fla': 1,\n",
      "          'actually': 1,\n",
      "          'exists': 1,\n",
      "          'giant': 1,\n",
      "          'domed': 1,\n",
      "          'set': 1,\n",
      "          'beyond': 1,\n",
      "          'sign': 1,\n",
      "          'nall': 1,\n",
      "          'burbanks': 1,\n",
      "          'anonymous': 1,\n",
      "          'townfolk': 1,\n",
      "          'paid': 1,\n",
      "          'npeople': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'live': 1,\n",
      "          'commercial': 1,\n",
      "          'interruptions': 1,\n",
      "          'nrevenue': 1,\n",
      "          'instead': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'staple': 1,\n",
      "          'contemporary': 1,\n",
      "          'friends': 1,\n",
      "          'relatives': 1,\n",
      "          'describing': 1,\n",
      "          'consumer': 1,\n",
      "          'items': 1,\n",
      "          'cheerful': 1,\n",
      "          'optimistic': 1,\n",
      "          'tones': 1,\n",
      "          'sun': 1,\n",
      "          'rises': 1,\n",
      "          'sets': 1,\n",
      "          'cue': 1,\n",
      "          'likes': 1,\n",
      "          'neven': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'learned': 1,\n",
      "          'commercials': 1,\n",
      "          'trailer': 1,\n",
      "          'promotion': 1,\n",
      "          'blitzes': 1,\n",
      "          'nif': 1,\n",
      "          'ive': 1,\n",
      "          'written': 1,\n",
      "          'far': 1,\n",
      "          'surprise': 1,\n",
      "          'pity': 1,\n",
      "          'making': 1,\n",
      "          'primary': 1,\n",
      "          'source': 1,\n",
      "          'neither': 1,\n",
      "          'otherwise': 1,\n",
      "          'youll': 1,\n",
      "          'sucks': 1,\n",
      "          'nit': 1,\n",
      "          'begins': 1,\n",
      "          'looking': 1,\n",
      "          'mirror': 1,\n",
      "          'reciting': 1,\n",
      "          'scene': 1,\n",
      "          'alive': 1,\n",
      "          'wishing': 1,\n",
      "          'neighbors': 1,\n",
      "          'afternoon': 1,\n",
      "          'evening': 1,\n",
      "          'domestic': 1,\n",
      "          'bliss': 1,\n",
      "          'wife': 1,\n",
      "          'laura': 1,\n",
      "          'linney': 1,\n",
      "          'weird': 1,\n",
      "          'things': 1,\n",
      "          'start': 1,\n",
      "          'happening': 1,\n",
      "          'na': 1,\n",
      "          'stage': 1,\n",
      "          'light': 1,\n",
      "          'falling': 1,\n",
      "          'sky': 1,\n",
      "          'hears': 1,\n",
      "          'tracking': 1,\n",
      "          'movements': 1,\n",
      "          'radio': 1,\n",
      "          'swears': 1,\n",
      "          'sees': 1,\n",
      "          'dead': 1,\n",
      "          'nwe': 1,\n",
      "          'learn': 1,\n",
      "          'flashback': 1,\n",
      "          'drowned': 1,\n",
      "          'child': 1,\n",
      "          'sailing': 1,\n",
      "          'rainstorm': 1,\n",
      "          'death': 1,\n",
      "          'staged': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'wanted': 1,\n",
      "          'put': 1,\n",
      "          'fear': 1,\n",
      "          'water': 1,\n",
      "          'leaving': 1,\n",
      "          'nsimilar': 1,\n",
      "          'cruel': 1,\n",
      "          'manipulations': 1,\n",
      "          'stumbling': 1,\n",
      "          'upon': 1,\n",
      "          'truth': 1,\n",
      "          'least': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'marlon': 1,\n",
      "          'noah': 1,\n",
      "          'emmerich': 1,\n",
      "          'assures': 1,\n",
      "          'conspiracy': 1,\n",
      "          'last': 1,\n",
      "          'hed': 1,\n",
      "          'ever': 1,\n",
      "          'hurt': 1,\n",
      "          'nas': 1,\n",
      "          'trusting': 1,\n",
      "          'eyes': 1,\n",
      "          'tear': 1,\n",
      "          'fades': 1,\n",
      "          'emotional': 1,\n",
      "          'synthesizer': 1,\n",
      "          'music': 1,\n",
      "          'worldwide': 1,\n",
      "          'audience': 1,\n",
      "          'apparently': 1,\n",
      "          'never': 1,\n",
      "          'ntheres': 1,\n",
      "          'daily': 1,\n",
      "          'behindthescenes': 1,\n",
      "          'update': 1,\n",
      "          'harry': 1,\n",
      "          'shearer': 1,\n",
      "          'captures': 1,\n",
      "          'highlights': 1,\n",
      "          'existence': 1,\n",
      "          'key': 1,\n",
      "          'movie': 1,\n",
      "          'finding': 1,\n",
      "          'right': 1,\n",
      "          'humor': 1,\n",
      "          'drama': 1,\n",
      "          'obvious': 1,\n",
      "          'implications': 1,\n",
      "          'directions': 1,\n",
      "          'hinges': 1,\n",
      "          'comic': 1,\n",
      "          'naivet': 1,\n",
      "          'real': 1,\n",
      "          'sense': 1,\n",
      "          'longing': 1,\n",
      "          'drive': 1,\n",
      "          'find': 1,\n",
      "          'hell': 1,\n",
      "          'nhes': 1,\n",
      "          'come': 1,\n",
      "          'long': 1,\n",
      "          'talking': 1,\n",
      "          'butt': 1,\n",
      "          'cheeks': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'nmost': 1,\n",
      "          'fundamentally': 1,\n",
      "          'plain': 1,\n",
      "          'follow': 1,\n",
      "          'along': 1,\n",
      "          'peter': 1,\n",
      "          'weir': 1,\n",
      "          'capture': 1,\n",
      "          'persons': 1,\n",
      "          'person': 1,\n",
      "          'realizing': 1,\n",
      "          'coordinate': 1,\n",
      "          'hide': 1,\n",
      "          'feed': 1,\n",
      "          'automatic': 1,\n",
      "          'lines': 1,\n",
      "          'imagine': 1,\n",
      "          'ambitious': 1,\n",
      "          'pitching': 1,\n",
      "          'nsure': 1,\n",
      "          'genre': 1,\n",
      "          '90s': 1,\n",
      "          'reality': 1,\n",
      "          'programming': 1,\n",
      "          'jerry': 1,\n",
      "          'springers': 1,\n",
      "          'popularity': 1,\n",
      "          'roof': 1,\n",
      "          'deserve': 1,\n",
      "          'humiliated': 1,\n",
      "          'turning': 1,\n",
      "          'intimate': 1,\n",
      "          'airwaves': 1,\n",
      "          'use': 1,\n",
      "          'hidden': 1,\n",
      "          'done': 1,\n",
      "          'name': 1,\n",
      "          'greater': 1,\n",
      "          'merge': 1,\n",
      "          'two': 1,\n",
      "          'got': 1,\n",
      "          'nright': 1,\n",
      "          'implausible': 1,\n",
      "          'fcc': 1,\n",
      "          'wont': 1,\n",
      "          'say': 1,\n",
      "          'sword': 1,\n",
      "          'air': 1,\n",
      "          'theyd': 1,\n",
      "          'broadcast': 1,\n",
      "          'every': 1,\n",
      "          'detail': 1,\n",
      "          'mans': 1,\n",
      "          'consent': 1,\n",
      "          'none': 1,\n",
      "          'happen': 1,\n",
      "          'end': 1,\n",
      "          'privacy': 1,\n",
      "          'nyou': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'story': 5,\n",
      "          'accident': 4,\n",
      "          'films': 4,\n",
      "          'sweet': 3,\n",
      "          'hereafter': 3,\n",
      "          'film': 3,\n",
      "          'stephens': 3,\n",
      "          'nthe': 3,\n",
      "          'well': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'egoyan': 2,\n",
      "          'narrative': 2,\n",
      "          'bus': 2,\n",
      "          'manner': 2,\n",
      "          'meet': 2,\n",
      "          'nbut': 2,\n",
      "          'whose': 2,\n",
      "          'daughter': 2,\n",
      "          'people': 2,\n",
      "          'ni': 2,\n",
      "          'problem': 2,\n",
      "          'first': 2,\n",
      "          'miserable': 2,\n",
      "          'much': 2,\n",
      "          'two': 2,\n",
      "          'kissed': 2,\n",
      "          'material': 2,\n",
      "          'fine': 2,\n",
      "          'filmmaker': 1,\n",
      "          'deconstructs': 1,\n",
      "          'atom': 1,\n",
      "          'nim': 1,\n",
      "          'referring': 1,\n",
      "          'specifically': 1,\n",
      "          'form': 1,\n",
      "          'nin': 1,\n",
      "          'tells': 1,\n",
      "          'similar': 1,\n",
      "          'framework': 1,\n",
      "          'exotica': 1,\n",
      "          'adjuster': 1,\n",
      "          'nsaid': 1,\n",
      "          'fatal': 1,\n",
      "          'school': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'sam': 1,\n",
      "          'dent': 1,\n",
      "          'british': 1,\n",
      "          'columbia': 1,\n",
      "          'shatters': 1,\n",
      "          'morale': 1,\n",
      "          'locals': 1,\n",
      "          'told': 1,\n",
      "          'unstraightforward': 1,\n",
      "          'nwhen': 1,\n",
      "          'opens': 1,\n",
      "          'already': 1,\n",
      "          'happened': 1,\n",
      "          'wonderful': 1,\n",
      "          'holm': 1,\n",
      "          'polite': 1,\n",
      "          'ambulancechaser': 1,\n",
      "          'arrived': 1,\n",
      "          'promise': 1,\n",
      "          'lawsuit': 1,\n",
      "          'eek': 1,\n",
      "          'truth': 1,\n",
      "          'really': 1,\n",
      "          'occurred': 1,\n",
      "          'fateful': 1,\n",
      "          'morning': 1,\n",
      "          'nthroughout': 1,\n",
      "          'get': 1,\n",
      "          'parents': 1,\n",
      "          'dead': 1,\n",
      "          'broken': 1,\n",
      "          'souls': 1,\n",
      "          'follow': 1,\n",
      "          'like': 1,\n",
      "          'pied': 1,\n",
      "          'piper': 1,\n",
      "          'passages': 1,\n",
      "          'read': 1,\n",
      "          'one': 1,\n",
      "          'living': 1,\n",
      "          'passenger': 1,\n",
      "          'paralyzed': 1,\n",
      "          'nicole': 1,\n",
      "          'polley': 1,\n",
      "          'dark': 1,\n",
      "          'secrets': 1,\n",
      "          'life': 1,\n",
      "          'may': 1,\n",
      "          'affect': 1,\n",
      "          'decision': 1,\n",
      "          'testify': 1,\n",
      "          'nwe': 1,\n",
      "          'finally': 1,\n",
      "          'see': 1,\n",
      "          'three': 1,\n",
      "          'quarters': 1,\n",
      "          'stunning': 1,\n",
      "          'visual': 1,\n",
      "          'effect': 1,\n",
      "          'na': 1,\n",
      "          'horrific': 1,\n",
      "          'long': 1,\n",
      "          'take': 1,\n",
      "          'shows': 1,\n",
      "          'sliding': 1,\n",
      "          'stopping': 1,\n",
      "          'collapsing': 1,\n",
      "          'frozen': 1,\n",
      "          'lake': 1,\n",
      "          'best': 1,\n",
      "          'digital': 1,\n",
      "          'trickery': 1,\n",
      "          'movie': 1,\n",
      "          'year': 1,\n",
      "          'perhaps': 1,\n",
      "          'ever': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'fractured': 1,\n",
      "          'also': 1,\n",
      "          'intercuts': 1,\n",
      "          'preoccupied': 1,\n",
      "          'airplane': 1,\n",
      "          'traveling': 1,\n",
      "          'hivpositive': 1,\n",
      "          'runaway': 1,\n",
      "          'glimpses': 1,\n",
      "          'artificially': 1,\n",
      "          'happy': 1,\n",
      "          'lives': 1,\n",
      "          'led': 1,\n",
      "          'preaccident': 1,\n",
      "          'structure': 1,\n",
      "          'egoyans': 1,\n",
      "          'heavy': 1,\n",
      "          'handedness': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'nfor': 1,\n",
      "          'hour': 1,\n",
      "          'quite': 1,\n",
      "          'honestly': 1,\n",
      "          'say': 1,\n",
      "          'verge': 1,\n",
      "          'tears': 1,\n",
      "          'thats': 1,\n",
      "          'anguished': 1,\n",
      "          'folk': 1,\n",
      "          'sympathy': 1,\n",
      "          'wanes': 1,\n",
      "          'lot': 1,\n",
      "          'sadness': 1,\n",
      "          'becomes': 1,\n",
      "          'nalso': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'incest': 1,\n",
      "          'rings': 1,\n",
      "          'untrue': 1,\n",
      "          'nperhaps': 1,\n",
      "          'wouldnt': 1,\n",
      "          'feel': 1,\n",
      "          'contrived': 1,\n",
      "          'werent': 1,\n",
      "          'shot': 1,\n",
      "          'tasteful': 1,\n",
      "          'nthere': 1,\n",
      "          'characters': 1,\n",
      "          'father': 1,\n",
      "          'appeared': 1,\n",
      "          'thought': 1,\n",
      "          'lovers': 1,\n",
      "          'halfright': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'worthseeing': 1,\n",
      "          'delightful': 1,\n",
      "          'critic': 1,\n",
      "          'geoff': 1,\n",
      "          'pevere': 1,\n",
      "          'recently': 1,\n",
      "          'wrote': 1,\n",
      "          'american': 1,\n",
      "          'action': 1,\n",
      "          'canadian': 1,\n",
      "          'consequences': 1,\n",
      "          'hence': 1,\n",
      "          'recent': 1,\n",
      "          'wave': 1,\n",
      "          'effects': 1,\n",
      "          'shock': 1,\n",
      "          'death': 1,\n",
      "          'toronto': 1,\n",
      "          'directors': 1,\n",
      "          'including': 1,\n",
      "          'crash': 1,\n",
      "          'better': 1,\n",
      "          'either': 1,\n",
      "          'simply': 1,\n",
      "          'boring': 1,\n",
      "          'case': 1,\n",
      "          'afraid': 1,\n",
      "          'necrophilia': 1,\n",
      "          'negoyan': 1,\n",
      "          'postmodern': 1,\n",
      "          'storyteller': 1,\n",
      "          'work': 1,\n",
      "          'entertaining': 1,\n",
      "          'edgy': 1,\n",
      "          'smart': 1,\n",
      "          'bit': 1,\n",
      "          'intellectual': 1,\n",
      "          'times': 1,\n",
      "          'nthough': 1,\n",
      "          'harped': 1,\n",
      "          'weightiness': 1,\n",
      "          'always': 1,\n",
      "          'absorbed': 1,\n",
      "          'engrossed': 1,\n",
      "          'surprised': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 4,\n",
      "          'nhe': 3,\n",
      "          'thorton': 3,\n",
      "          'better': 3,\n",
      "          'film': 3,\n",
      "          'simple': 3,\n",
      "          'films': 3,\n",
      "          'picture': 3,\n",
      "          'ni': 3,\n",
      "          'think': 3,\n",
      "          'flowing': 3,\n",
      "          'hollywood': 3,\n",
      "          'know': 2,\n",
      "          'would': 2,\n",
      "          '4': 2,\n",
      "          'jacob': 2,\n",
      "          'lou': 2,\n",
      "          'hank': 2,\n",
      "          'along': 2,\n",
      "          'rather': 2,\n",
      "          'going': 2,\n",
      "          'worth': 2,\n",
      "          'na': 2,\n",
      "          'things': 2,\n",
      "          'dark': 2,\n",
      "          'raimi': 2,\n",
      "          'intriguing': 2,\n",
      "          'really': 2,\n",
      "          'many': 2,\n",
      "          'malicks': 2,\n",
      "          'nit': 2,\n",
      "          'pretty': 2,\n",
      "          'small': 2,\n",
      "          'characters': 2,\n",
      "          'industry': 2,\n",
      "          'gives': 2,\n",
      "          'deep': 2,\n",
      "          'character': 2,\n",
      "          'say': 2,\n",
      "          'group': 2,\n",
      "          'million': 1,\n",
      "          'found': 1,\n",
      "          'previously': 1,\n",
      "          'undiscovered': 1,\n",
      "          'airplane': 1,\n",
      "          'crash': 1,\n",
      "          'site': 1,\n",
      "          'especially': 1,\n",
      "          'n': 1,\n",
      "          'huh': 1,\n",
      "          'nwell': 1,\n",
      "          'event': 1,\n",
      "          'situation': 1,\n",
      "          'paxton': 1,\n",
      "          'finds': 1,\n",
      "          'dimwitted': 1,\n",
      "          'brother': 1,\n",
      "          'tubby': 1,\n",
      "          'friend': 1,\n",
      "          'brent': 1,\n",
      "          'briscoe': 1,\n",
      "          'come': 1,\n",
      "          'upon': 1,\n",
      "          'large': 1,\n",
      "          'bag': 1,\n",
      "          'cash': 1,\n",
      "          'inside': 1,\n",
      "          'plane': 1,\n",
      "          'wreck': 1,\n",
      "          'nagainst': 1,\n",
      "          'judgement': 1,\n",
      "          'decides': 1,\n",
      "          'go': 1,\n",
      "          'idea': 1,\n",
      "          'keeping': 1,\n",
      "          'authorities': 1,\n",
      "          'nthe': 1,\n",
      "          'rest': 1,\n",
      "          'question': 1,\n",
      "          'die': 1,\n",
      "          'keep': 1,\n",
      "          'secret': 1,\n",
      "          'wish': 1,\n",
      "          'lies': 1,\n",
      "          'lines': 1,\n",
      "          'bad': 1,\n",
      "          'clay': 1,\n",
      "          'pigeons': 1,\n",
      "          'even': 1,\n",
      "          'fargo': 1,\n",
      "          'kind': 1,\n",
      "          'wrapped': 1,\n",
      "          'little': 1,\n",
      "          'bundle': 1,\n",
      "          'noh': 1,\n",
      "          'much': 1,\n",
      "          'nsam': 1,\n",
      "          'took': 1,\n",
      "          'departure': 1,\n",
      "          'normal': 1,\n",
      "          'freakshow': 1,\n",
      "          'horrormonkey': 1,\n",
      "          'made': 1,\n",
      "          'stylish': 1,\n",
      "          'lets': 1,\n",
      "          'audience': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'watch': 1,\n",
      "          'events': 1,\n",
      "          'unfold': 1,\n",
      "          'force': 1,\n",
      "          'throats': 1,\n",
      "          'directors': 1,\n",
      "          'prefer': 1,\n",
      "          'knew': 1,\n",
      "          'winner': 1,\n",
      "          'hands': 1,\n",
      "          'decided': 1,\n",
      "          'direct': 1,\n",
      "          'natural': 1,\n",
      "          'course': 1,\n",
      "          'none': 1,\n",
      "          'components': 1,\n",
      "          'linked': 1,\n",
      "          'recurring': 1,\n",
      "          'theme': 1,\n",
      "          'terrence': 1,\n",
      "          'thin': 1,\n",
      "          'red': 1,\n",
      "          'line': 1,\n",
      "          'nin': 1,\n",
      "          'three': 1,\n",
      "          'hour': 1,\n",
      "          'boreathon': 1,\n",
      "          'makes': 1,\n",
      "          'interesting': 1,\n",
      "          'attempt': 1,\n",
      "          'link': 1,\n",
      "          'mother': 1,\n",
      "          'earth': 1,\n",
      "          'war': 1,\n",
      "          'story': 1,\n",
      "          'seemed': 1,\n",
      "          'nothing': 1,\n",
      "          'occasional': 1,\n",
      "          'cut': 1,\n",
      "          'field': 1,\n",
      "          'grass': 1,\n",
      "          'bird': 1,\n",
      "          'body': 1,\n",
      "          'water': 1,\n",
      "          'nsure': 1,\n",
      "          'obvious': 1,\n",
      "          'metaphorical': 1,\n",
      "          'connections': 1,\n",
      "          'subtlty': 1,\n",
      "          'efforts': 1,\n",
      "          'nraimi': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'tying': 1,\n",
      "          'fox': 1,\n",
      "          'chicken': 1,\n",
      "          'coop': 1,\n",
      "          'birds': 1,\n",
      "          'prey': 1,\n",
      "          'signify': 1,\n",
      "          'future': 1,\n",
      "          'viewers': 1,\n",
      "          'may': 1,\n",
      "          'miss': 1,\n",
      "          'comparison': 1,\n",
      "          'ingredient': 1,\n",
      "          'nand': 1,\n",
      "          'theres': 1,\n",
      "          'billy': 1,\n",
      "          'bob': 1,\n",
      "          'proof': 1,\n",
      "          'independent': 1,\n",
      "          'vital': 1,\n",
      "          'life': 1,\n",
      "          'blood': 1,\n",
      "          'nif': 1,\n",
      "          'continute': 1,\n",
      "          'produce': 1,\n",
      "          'people': 1,\n",
      "          'like': 1,\n",
      "          'ok': 1,\n",
      "          'fantastic': 1,\n",
      "          'devastatingly': 1,\n",
      "          'performance': 1,\n",
      "          'engrossing': 1,\n",
      "          'carl': 1,\n",
      "          'childers': 1,\n",
      "          'slingblade': 1,\n",
      "          'complex': 1,\n",
      "          'njacob': 1,\n",
      "          'slow': 1,\n",
      "          'yet': 1,\n",
      "          'often': 1,\n",
      "          'see': 1,\n",
      "          'thought': 1,\n",
      "          'wondered': 1,\n",
      "          'thinking': 1,\n",
      "          'never': 1,\n",
      "          'didnt': 1,\n",
      "          'taking': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'thing': 1,\n",
      "          'said': 1,\n",
      "          'nhere': 1,\n",
      "          'proves': 1,\n",
      "          'best': 1,\n",
      "          'actors': 1,\n",
      "          'nthough': 1,\n",
      "          'plot': 1,\n",
      "          'somewhat': 1,\n",
      "          'unoriginal': 1,\n",
      "          'appealing': 1,\n",
      "          'new': 1,\n",
      "          'twist': 1,\n",
      "          'npaxton': 1,\n",
      "          'performances': 1,\n",
      "          'career': 1,\n",
      "          'straight': 1,\n",
      "          'serious': 1,\n",
      "          'leader': 1,\n",
      "          'far': 1,\n",
      "          'cry': 1,\n",
      "          'chet': 1,\n",
      "          'wierd': 1,\n",
      "          'science': 1,\n",
      "          'nperhaps': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'miscast': 1,\n",
      "          'advicegiving': 1,\n",
      "          'wife': 1,\n",
      "          'certainly': 1,\n",
      "          'doesnt': 1,\n",
      "          'anything': 1,\n",
      "          'ruin': 1,\n",
      "          'plan': 1,\n",
      "          'included': 1,\n",
      "          'recent': 1,\n",
      "          'unredeeming': 1,\n",
      "          'nbut': 1,\n",
      "          'least': 1,\n",
      "          'important': 1,\n",
      "          'message': 1,\n",
      "          'unlike': 1,\n",
      "          'counterparts': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nsimon': 6,\n",
      "          'film': 6,\n",
      "          'simon': 5,\n",
      "          'birch': 4,\n",
      "          'movie': 3,\n",
      "          'didnt': 3,\n",
      "          'joe': 3,\n",
      "          'mom': 3,\n",
      "          'also': 3,\n",
      "          'nthe': 3,\n",
      "          'joes': 3,\n",
      "          'first': 3,\n",
      "          'job': 3,\n",
      "          'films': 3,\n",
      "          'sunday': 2,\n",
      "          'one': 2,\n",
      "          'year': 2,\n",
      "          'old': 2,\n",
      "          'michael': 2,\n",
      "          'smith': 2,\n",
      "          'mazzello': 2,\n",
      "          'last': 2,\n",
      "          'plan': 2,\n",
      "          'njoe': 2,\n",
      "          'father': 2,\n",
      "          'dont': 2,\n",
      "          'really': 2,\n",
      "          'nhe': 2,\n",
      "          'local': 2,\n",
      "          'simons': 2,\n",
      "          'teacher': 2,\n",
      "          'played': 2,\n",
      "          'would': 2,\n",
      "          'little': 2,\n",
      "          'trouble': 2,\n",
      "          'way': 2,\n",
      "          'funny': 2,\n",
      "          'although': 2,\n",
      "          'jim': 2,\n",
      "          'written': 2,\n",
      "          'outstanding': 2,\n",
      "          'without': 2,\n",
      "          'cast': 2,\n",
      "          'njoseph': 2,\n",
      "          'someone': 2,\n",
      "          'turned': 2,\n",
      "          'saw': 1,\n",
      "          'basically': 1,\n",
      "          'sold': 1,\n",
      "          'theater': 1,\n",
      "          'afternoon': 1,\n",
      "          'nwhen': 1,\n",
      "          'audience': 1,\n",
      "          'exiting': 1,\n",
      "          'hear': 1,\n",
      "          'negative': 1,\n",
      "          'comment': 1,\n",
      "          'offer': 1,\n",
      "          'primarily': 1,\n",
      "          'friendship': 1,\n",
      "          'two': 1,\n",
      "          'twelve': 1,\n",
      "          'boys': 1,\n",
      "          'ian': 1,\n",
      "          'joseph': 1,\n",
      "          'destiny': 1,\n",
      "          'holds': 1,\n",
      "          'dwarf': 1,\n",
      "          'supposed': 1,\n",
      "          'night': 1,\n",
      "          'birth': 1,\n",
      "          'due': 1,\n",
      "          'weak': 1,\n",
      "          'heart': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'constantly': 1,\n",
      "          'reminds': 1,\n",
      "          'everyone': 1,\n",
      "          'living': 1,\n",
      "          'miracle': 1,\n",
      "          'thinks': 1,\n",
      "          'god': 1,\n",
      "          'purpose': 1,\n",
      "          'life': 1,\n",
      "          'condition': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'illegitimate': 1,\n",
      "          'child': 1,\n",
      "          'referred': 1,\n",
      "          'comically': 1,\n",
      "          'dramatically': 1,\n",
      "          'throughout': 1,\n",
      "          'bastard': 1,\n",
      "          'whos': 1,\n",
      "          'ashley': 1,\n",
      "          'judd': 1,\n",
      "          'wont': 1,\n",
      "          'tell': 1,\n",
      "          'dwarfism': 1,\n",
      "          'problem': 1,\n",
      "          'people': 1,\n",
      "          'town': 1,\n",
      "          'like': 1,\n",
      "          'isnt': 1,\n",
      "          'natural': 1,\n",
      "          'neven': 1,\n",
      "          'parents': 1,\n",
      "          'care': 1,\n",
      "          'disappointed': 1,\n",
      "          'normal': 1,\n",
      "          'son': 1,\n",
      "          'harassed': 1,\n",
      "          'church': 1,\n",
      "          'pastor': 1,\n",
      "          'rev': 1,\n",
      "          'russell': 1,\n",
      "          'david': 1,\n",
      "          'strathairn': 1,\n",
      "          'chain': 1,\n",
      "          'smoking': 1,\n",
      "          'school': 1,\n",
      "          'jan': 1,\n",
      "          'hooks': 1,\n",
      "          'person': 1,\n",
      "          'cares': 1,\n",
      "          'looks': 1,\n",
      "          'mother': 1,\n",
      "          'nit': 1,\n",
      "          'luck': 1,\n",
      "          'accidentally': 1,\n",
      "          'kills': 1,\n",
      "          'something': 1,\n",
      "          'told': 1,\n",
      "          'beginning': 1,\n",
      "          'motherless': 1,\n",
      "          'well': 1,\n",
      "          'fatherless': 1,\n",
      "          'feels': 1,\n",
      "          'need': 1,\n",
      "          'find': 1,\n",
      "          'real': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'ben': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'drama': 1,\n",
      "          'moms': 1,\n",
      "          'current': 1,\n",
      "          'boyfriend': 1,\n",
      "          'death': 1,\n",
      "          'attempt': 1,\n",
      "          'locate': 1,\n",
      "          'dad': 1,\n",
      "          'get': 1,\n",
      "          'nmost': 1,\n",
      "          'laugh': 1,\n",
      "          'loud': 1,\n",
      "          'look': 1,\n",
      "          'gods': 1,\n",
      "          'loses': 1,\n",
      "          'faith': 1,\n",
      "          'along': 1,\n",
      "          'nstarring': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'hollywoods': 1,\n",
      "          'newest': 1,\n",
      "          'dramatic': 1,\n",
      "          'actor': 1,\n",
      "          'carrey': 1,\n",
      "          'njim': 1,\n",
      "          'plays': 1,\n",
      "          'adult': 1,\n",
      "          'version': 1,\n",
      "          'impressive': 1,\n",
      "          'starting': 1,\n",
      "          'tying': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'character': 1,\n",
      "          'top': 1,\n",
      "          'anyway': 1,\n",
      "          'commendable': 1,\n",
      "          'directed': 1,\n",
      "          'mark': 1,\n",
      "          'steven': 1,\n",
      "          'johnson': 1,\n",
      "          'director': 1,\n",
      "          'several': 1,\n",
      "          'including': 1,\n",
      "          'grumpy': 1,\n",
      "          'men': 1,\n",
      "          'series': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'structure': 1,\n",
      "          'flawless': 1,\n",
      "          'flows': 1,\n",
      "          'together': 1,\n",
      "          'perfectly': 1,\n",
      "          'dialog': 1,\n",
      "          'goes': 1,\n",
      "          'extremely': 1,\n",
      "          'morose': 1,\n",
      "          'missing': 1,\n",
      "          'beat': 1,\n",
      "          'excellent': 1,\n",
      "          'gives': 1,\n",
      "          'stand': 1,\n",
      "          'performance': 1,\n",
      "          'age': 1,\n",
      "          'alone': 1,\n",
      "          '15': 1,\n",
      "          'nian': 1,\n",
      "          'debut': 1,\n",
      "          'strong': 1,\n",
      "          'physical': 1,\n",
      "          'presence': 1,\n",
      "          'believe': 1,\n",
      "          'hesitation': 1,\n",
      "          'nother': 1,\n",
      "          'great': 1,\n",
      "          'performances': 1,\n",
      "          'rest': 1,\n",
      "          'supporting': 1,\n",
      "          'ni': 1,\n",
      "          'loved': 1,\n",
      "          'far': 1,\n",
      "          'away': 1,\n",
      "          'best': 1,\n",
      "          'seen': 1,\n",
      "          'ntake': 1,\n",
      "          'whole': 1,\n",
      "          'family': 1,\n",
      "          'see': 1,\n",
      "          'magnificent': 1,\n",
      "          'american': 1,\n",
      "          'masterpiece': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'saint': 5,\n",
      "          'nthis': 4,\n",
      "          'nthe': 4,\n",
      "          'kilmers': 4,\n",
      "          'character': 4,\n",
      "          'would': 4,\n",
      "          'energy': 4,\n",
      "          'actually': 3,\n",
      "          'kilmer': 3,\n",
      "          'something': 3,\n",
      "          'goal': 3,\n",
      "          'many': 3,\n",
      "          'catholic': 3,\n",
      "          'finds': 3,\n",
      "          'mission': 3,\n",
      "          'steal': 3,\n",
      "          'tretiak': 3,\n",
      "          'way': 3,\n",
      "          'nwhen': 3,\n",
      "          'million': 3,\n",
      "          'one': 3,\n",
      "          'moments': 3,\n",
      "          'series': 2,\n",
      "          'simon': 2,\n",
      "          'templar': 2,\n",
      "          'stealing': 2,\n",
      "          'others': 2,\n",
      "          'bond': 2,\n",
      "          'man': 2,\n",
      "          'away': 2,\n",
      "          'achieve': 2,\n",
      "          'reach': 2,\n",
      "          'nkilmer': 2,\n",
      "          'rather': 2,\n",
      "          'although': 2,\n",
      "          'left': 2,\n",
      "          'school': 2,\n",
      "          'young': 2,\n",
      "          'boy': 2,\n",
      "          'must': 2,\n",
      "          '50': 2,\n",
      "          'emma': 2,\n",
      "          'russell': 2,\n",
      "          'shue': 2,\n",
      "          'pieces': 2,\n",
      "          'enjoyable': 2,\n",
      "          'disguises': 2,\n",
      "          'convincing': 2,\n",
      "          'even': 2,\n",
      "          'formula': 2,\n",
      "          'falling': 2,\n",
      "          'love': 2,\n",
      "          'putting': 2,\n",
      "          'able': 2,\n",
      "          'little': 1,\n",
      "          'better': 1,\n",
      "          'expected': 1,\n",
      "          'ways': 1,\n",
      "          'nin': 1,\n",
      "          'theatrical': 1,\n",
      "          'remake': 1,\n",
      "          'television': 1,\n",
      "          'sequel': 1,\n",
      "          'return': 1,\n",
      "          'val': 1,\n",
      "          'plays': 1,\n",
      "          'elusive': 1,\n",
      "          'thief': 1,\n",
      "          'makes': 1,\n",
      "          'living': 1,\n",
      "          'things': 1,\n",
      "          'closely': 1,\n",
      "          'resembles': 1,\n",
      "          'james': 1,\n",
      "          'flick': 1,\n",
      "          'nit': 1,\n",
      "          'classic': 1,\n",
      "          'symbols': 1,\n",
      "          'anything': 1,\n",
      "          'get': 1,\n",
      "          'woman': 1,\n",
      "          'persues': 1,\n",
      "          'villain': 1,\n",
      "          'kills': 1,\n",
      "          'anyone': 1,\n",
      "          'provides': 1,\n",
      "          'good': 1,\n",
      "          'role': 1,\n",
      "          'times': 1,\n",
      "          'ponder': 1,\n",
      "          'gets': 1,\n",
      "          'tight': 1,\n",
      "          'situations': 1,\n",
      "          'begins': 1,\n",
      "          'childhood': 1,\n",
      "          'strict': 1,\n",
      "          'run': 1,\n",
      "          'priests': 1,\n",
      "          'nas': 1,\n",
      "          'enjoyed': 1,\n",
      "          'magic': 1,\n",
      "          'often': 1,\n",
      "          'journey': 1,\n",
      "          'schoolwork': 1,\n",
      "          'nthat': 1,\n",
      "          'teacher': 1,\n",
      "          'reading': 1,\n",
      "          'book': 1,\n",
      "          'demands': 1,\n",
      "          'proclaim': 1,\n",
      "          'name': 1,\n",
      "          'nhe': 1,\n",
      "          'refuses': 1,\n",
      "          'instead': 1,\n",
      "          'announces': 1,\n",
      "          'wishes': 1,\n",
      "          'leads': 1,\n",
      "          'devestating': 1,\n",
      "          'mistake': 1,\n",
      "          'stay': 1,\n",
      "          'mind': 1,\n",
      "          'throughout': 1,\n",
      "          'life': 1,\n",
      "          'nkilmers': 1,\n",
      "          'first': 1,\n",
      "          'shown': 1,\n",
      "          'microchip': 1,\n",
      "          'ivan': 1,\n",
      "          'played': 1,\n",
      "          'rade': 1,\n",
      "          'serbedzija': 1,\n",
      "          'nduring': 1,\n",
      "          'press': 1,\n",
      "          'conference': 1,\n",
      "          'make': 1,\n",
      "          'heavily': 1,\n",
      "          'guarded': 1,\n",
      "          'vault': 1,\n",
      "          'area': 1,\n",
      "          'avoiding': 1,\n",
      "          'guards': 1,\n",
      "          'cameras': 1,\n",
      "          'potential': 1,\n",
      "          'obstacles': 1,\n",
      "          'nonce': 1,\n",
      "          'completed': 1,\n",
      "          'safely': 1,\n",
      "          'home': 1,\n",
      "          'fee': 1,\n",
      "          'paid': 1,\n",
      "          'logs': 1,\n",
      "          'bank': 1,\n",
      "          'account': 1,\n",
      "          'dollars': 1,\n",
      "          'short': 1,\n",
      "          'decides': 1,\n",
      "          'carry': 1,\n",
      "          'retire': 1,\n",
      "          'ndr': 1,\n",
      "          'portrayed': 1,\n",
      "          'elisabeth': 1,\n",
      "          'discovered': 1,\n",
      "          'produce': 1,\n",
      "          'cold': 1,\n",
      "          'fusion': 1,\n",
      "          'new': 1,\n",
      "          'advancement': 1,\n",
      "          'change': 1,\n",
      "          'world': 1,\n",
      "          'save': 1,\n",
      "          'thousands': 1,\n",
      "          'lives': 1,\n",
      "          'areas': 1,\n",
      "          'russia': 1,\n",
      "          'millions': 1,\n",
      "          'without': 1,\n",
      "          'heat': 1,\n",
      "          'freezing': 1,\n",
      "          'death': 1,\n",
      "          'problem': 1,\n",
      "          'like': 1,\n",
      "          'use': 1,\n",
      "          'gain': 1,\n",
      "          'power': 1,\n",
      "          'amongst': 1,\n",
      "          'people': 1,\n",
      "          'presents': 1,\n",
      "          'option': 1,\n",
      "          'ntretiak': 1,\n",
      "          'hires': 1,\n",
      "          'equations': 1,\n",
      "          'small': 1,\n",
      "          'paper': 1,\n",
      "          'none': 1,\n",
      "          'features': 1,\n",
      "          'film': 1,\n",
      "          'dawns': 1,\n",
      "          'complete': 1,\n",
      "          'missions': 1,\n",
      "          'nthey': 1,\n",
      "          'characters': 1,\n",
      "          'us': 1,\n",
      "          'utilizes': 1,\n",
      "          'disguise': 1,\n",
      "          'lure': 1,\n",
      "          'shues': 1,\n",
      "          'getting': 1,\n",
      "          'know': 1,\n",
      "          'provide': 1,\n",
      "          'means': 1,\n",
      "          'two': 1,\n",
      "          'meet': 1,\n",
      "          'end': 1,\n",
      "          'sensual': 1,\n",
      "          'experience': 1,\n",
      "          'seemingly': 1,\n",
      "          'alterego': 1,\n",
      "          'traveling': 1,\n",
      "          'artist': 1,\n",
      "          'nyet': 1,\n",
      "          'requires': 1,\n",
      "          'feelings': 1,\n",
      "          'aside': 1,\n",
      "          'nshues': 1,\n",
      "          'eventually': 1,\n",
      "          'track': 1,\n",
      "          'names': 1,\n",
      "          'saints': 1,\n",
      "          'together': 1,\n",
      "          'else': 1,\n",
      "          'team': 1,\n",
      "          'reclaim': 1,\n",
      "          'formulas': 1,\n",
      "          'actionpacked': 1,\n",
      "          'slow': 1,\n",
      "          'points': 1,\n",
      "          'sound': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'added': 1,\n",
      "          'intense': 1,\n",
      "          'nalong': 1,\n",
      "          'course': 1,\n",
      "          'brief': 1,\n",
      "          'comedy': 1,\n",
      "          'nthese': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'thanks': 1,\n",
      "          'extraneous': 1,\n",
      "          'personalities': 1,\n",
      "          'nall': 1,\n",
      "          'nearly': 1,\n",
      "          'nonstop': 1,\n",
      "          'action': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'thirteenth': 8,\n",
      "          'floor': 8,\n",
      "          'film': 8,\n",
      "          'nthe': 6,\n",
      "          'fuller': 6,\n",
      "          'matrix': 5,\n",
      "          'existenz': 5,\n",
      "          'would': 4,\n",
      "          'reality': 4,\n",
      "          'world': 4,\n",
      "          'nin': 4,\n",
      "          'another': 4,\n",
      "          'check': 3,\n",
      "          'movie': 3,\n",
      "          'great': 3,\n",
      "          'electronic': 3,\n",
      "          'expect': 3,\n",
      "          'computer': 3,\n",
      "          'played': 3,\n",
      "          'many': 3,\n",
      "          'like': 3,\n",
      "          'character': 3,\n",
      "          'scenes': 3,\n",
      "          'get': 3,\n",
      "          'movies': 2,\n",
      "          'year': 2,\n",
      "          'nall': 2,\n",
      "          'made': 2,\n",
      "          'think': 2,\n",
      "          'isnt': 2,\n",
      "          'huge': 2,\n",
      "          'game': 2,\n",
      "          'doesnt': 2,\n",
      "          'devices': 2,\n",
      "          'generated': 2,\n",
      "          'turn': 2,\n",
      "          'make': 2,\n",
      "          'murder': 2,\n",
      "          'different': 2,\n",
      "          'armin': 2,\n",
      "          'muellerstahl': 2,\n",
      "          'douglas': 2,\n",
      "          'craig': 2,\n",
      "          'bierko': 2,\n",
      "          '1937': 2,\n",
      "          'characters': 2,\n",
      "          'back': 2,\n",
      "          'potential': 2,\n",
      "          'gretchen': 2,\n",
      "          'keep': 2,\n",
      "          'ni': 2,\n",
      "          'enough': 2,\n",
      "          'know': 2,\n",
      "          'arent': 2,\n",
      "          'go': 2,\n",
      "          'absolutely': 2,\n",
      "          'nowhere': 2,\n",
      "          'story': 2,\n",
      "          'acting': 2,\n",
      "          'true': 2,\n",
      "          'plus': 2,\n",
      "          'mind': 2,\n",
      "          'awhile': 2,\n",
      "          'third': 1,\n",
      "          'call': 1,\n",
      "          'series': 1,\n",
      "          'similar': 1,\n",
      "          'released': 1,\n",
      "          'three': 1,\n",
      "          'wonder': 1,\n",
      "          'real': 1,\n",
      "          'reach': 1,\n",
      "          'level': 1,\n",
      "          'originality': 1,\n",
      "          'creativity': 1,\n",
      "          'curiosity': 1,\n",
      "          'sparked': 1,\n",
      "          'certainly': 1,\n",
      "          'gives': 1,\n",
      "          'shot': 1,\n",
      "          'told': 1,\n",
      "          'humans': 1,\n",
      "          'simply': 1,\n",
      "          'virus': 1,\n",
      "          'learned': 1,\n",
      "          'life': 1,\n",
      "          'could': 1,\n",
      "          'learn': 1,\n",
      "          'living': 1,\n",
      "          'nthere': 1,\n",
      "          'one': 1,\n",
      "          'top': 1,\n",
      "          'everything': 1,\n",
      "          'fake': 1,\n",
      "          'electronically': 1,\n",
      "          'took': 1,\n",
      "          'risky': 1,\n",
      "          'didnt': 1,\n",
      "          'take': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'nrather': 1,\n",
      "          'focusing': 1,\n",
      "          'parts': 1,\n",
      "          'becomes': 1,\n",
      "          'mystery': 1,\n",
      "          'ends': 1,\n",
      "          'tying': 1,\n",
      "          'worlds': 1,\n",
      "          'nafter': 1,\n",
      "          'mysterious': 1,\n",
      "          'program': 1,\n",
      "          'designer': 1,\n",
      "          'hammond': 1,\n",
      "          'hall': 1,\n",
      "          'man': 1,\n",
      "          'worked': 1,\n",
      "          'years': 1,\n",
      "          'must': 1,\n",
      "          'travel': 1,\n",
      "          'device': 1,\n",
      "          'using': 1,\n",
      "          'consists': 1,\n",
      "          'simulation': 1,\n",
      "          'olden': 1,\n",
      "          'days': 1,\n",
      "          'people': 1,\n",
      "          'involved': 1,\n",
      "          'ndouglas': 1,\n",
      "          'strongly': 1,\n",
      "          'believes': 1,\n",
      "          'traveled': 1,\n",
      "          'transport': 1,\n",
      "          'killed': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'interacts': 1,\n",
      "          'suspects': 1,\n",
      "          'woman': 1,\n",
      "          'claims': 1,\n",
      "          'daughter': 1,\n",
      "          'jane': 1,\n",
      "          'wonderfully': 1,\n",
      "          'talented': 1,\n",
      "          'young': 1,\n",
      "          'actress': 1,\n",
      "          'mol': 1,\n",
      "          'plot': 1,\n",
      "          'driven': 1,\n",
      "          'time': 1,\n",
      "          'gets': 1,\n",
      "          'going': 1,\n",
      "          'use': 1,\n",
      "          'spectacular': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'big': 1,\n",
      "          'sound': 1,\n",
      "          'viewers': 1,\n",
      "          'interests': 1,\n",
      "          'worried': 1,\n",
      "          'much': 1,\n",
      "          'wouldnt': 1,\n",
      "          'enjoy': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'thinking': 1,\n",
      "          'attentive': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'thrown': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'away': 1,\n",
      "          'predictable': 1,\n",
      "          'content': 1,\n",
      "          'letting': 1,\n",
      "          'viewer': 1,\n",
      "          'outcome': 1,\n",
      "          'scene': 1,\n",
      "          'long': 1,\n",
      "          'happened': 1,\n",
      "          'original': 1,\n",
      "          'interesting': 1,\n",
      "          'seem': 1,\n",
      "          'leaving': 1,\n",
      "          'wondering': 1,\n",
      "          'point': 1,\n",
      "          'nsometimes': 1,\n",
      "          'hard': 1,\n",
      "          'believe': 1,\n",
      "          'terrible': 1,\n",
      "          'dialogue': 1,\n",
      "          'bad': 1,\n",
      "          'especially': 1,\n",
      "          'actually': 1,\n",
      "          'anything': 1,\n",
      "          'able': 1,\n",
      "          'non': 1,\n",
      "          'side': 1,\n",
      "          'see': 1,\n",
      "          'missing': 1,\n",
      "          'main': 1,\n",
      "          'action': 1,\n",
      "          'since': 1,\n",
      "          'masterpiece': 1,\n",
      "          'shine': 1,\n",
      "          '1995': 1,\n",
      "          'actor': 1,\n",
      "          'still': 1,\n",
      "          'giving': 1,\n",
      "          'believable': 1,\n",
      "          'amazing': 1,\n",
      "          'performances': 1,\n",
      "          'nanother': 1,\n",
      "          'mols': 1,\n",
      "          'realistic': 1,\n",
      "          'performance': 1,\n",
      "          'creating': 1,\n",
      "          'depth': 1,\n",
      "          'staying': 1,\n",
      "          'onedimensional': 1,\n",
      "          'phase': 1,\n",
      "          'ndont': 1,\n",
      "          'intensity': 1,\n",
      "          'come': 1,\n",
      "          'messes': 1,\n",
      "          'shuts': 1,\n",
      "          'nthrills': 1,\n",
      "          'chills': 1,\n",
      "          'spills': 1,\n",
      "          'trip': 1,\n",
      "          'send': 1,\n",
      "          'scrambling': 1,\n",
      "          'youve': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'lets': 1,\n",
      "          'hope': 1,\n",
      "          'last': 1,\n",
      "          'based': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'ni': 4,\n",
      "          'nit': 3,\n",
      "          'action': 3,\n",
      "          'roberts': 3,\n",
      "          'fun': 3,\n",
      "          'like': 2,\n",
      "          'little': 2,\n",
      "          'bit': 2,\n",
      "          'pace': 2,\n",
      "          'fine': 2,\n",
      "          'hair': 2,\n",
      "          'nthey': 2,\n",
      "          'chicago': 2,\n",
      "          'chronicle': 2,\n",
      "          'solve': 2,\n",
      "          'one': 2,\n",
      "          'mystery': 2,\n",
      "          'tried': 1,\n",
      "          'hard': 1,\n",
      "          'without': 1,\n",
      "          'succeeding': 1,\n",
      "          'contains': 1,\n",
      "          'parts': 1,\n",
      "          'bringing': 1,\n",
      "          'baby': 1,\n",
      "          'hepburntracy': 1,\n",
      "          'film': 1,\n",
      "          'part': 1,\n",
      "          'plot': 1,\n",
      "          'war': 1,\n",
      "          'games': 1,\n",
      "          'cary': 1,\n",
      "          'grant': 1,\n",
      "          'rosalind': 1,\n",
      "          'russell': 1,\n",
      "          'girl': 1,\n",
      "          'friday': 1,\n",
      "          'elevator': 1,\n",
      "          'shaft': 1,\n",
      "          'train': 1,\n",
      "          'murder': 1,\n",
      "          'cute': 1,\n",
      "          'funny': 1,\n",
      "          'suspenseful': 1,\n",
      "          'sexy': 1,\n",
      "          'none': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'surprise': 1,\n",
      "          'nthe': 1,\n",
      "          'fast': 1,\n",
      "          'enough': 1,\n",
      "          'scenes': 1,\n",
      "          'think': 1,\n",
      "          'reasonable': 1,\n",
      "          'family': 1,\n",
      "          'summer': 1,\n",
      "          'families': 1,\n",
      "          'older': 1,\n",
      "          'kids': 1,\n",
      "          'already': 1,\n",
      "          'seen': 1,\n",
      "          'maverick': 1,\n",
      "          'njulia': 1,\n",
      "          'nick': 1,\n",
      "          'nolte': 1,\n",
      "          'separately': 1,\n",
      "          'together': 1,\n",
      "          'really': 1,\n",
      "          'identified': 1,\n",
      "          'julia': 1,\n",
      "          'character': 1,\n",
      "          'wishful': 1,\n",
      "          'thinking': 1,\n",
      "          'know': 1,\n",
      "          'better': 1,\n",
      "          'nher': 1,\n",
      "          'dull': 1,\n",
      "          'dark': 1,\n",
      "          'brown': 1,\n",
      "          'color': 1,\n",
      "          'nshe': 1,\n",
      "          'could': 1,\n",
      "          'use': 1,\n",
      "          'highlights': 1,\n",
      "          'roles': 1,\n",
      "          'hes': 1,\n",
      "          'bored': 1,\n",
      "          'columnist': 1,\n",
      "          'shes': 1,\n",
      "          'hotshot': 1,\n",
      "          'cub': 1,\n",
      "          'reporter': 1,\n",
      "          'globe': 1,\n",
      "          'great': 1,\n",
      "          'trying': 1,\n",
      "          'scoop': 1,\n",
      "          'case': 1,\n",
      "          'throughout': 1,\n",
      "          'story': 1,\n",
      "          'focus': 1,\n",
      "          'nother': 1,\n",
      "          'actors': 1,\n",
      "          'include': 1,\n",
      "          'charles': 1,\n",
      "          'martin': 1,\n",
      "          'smith': 1,\n",
      "          'boss': 1,\n",
      "          'olympia': 1,\n",
      "          'dukakis': 1,\n",
      "          'noltes': 1,\n",
      "          'coworker': 1,\n",
      "          'nora': 1,\n",
      "          'dunn': 1,\n",
      "          'also': 1,\n",
      "          'marsha': 1,\n",
      "          'mason': 1,\n",
      "          'congresswoman': 1,\n",
      "          'nbasically': 1,\n",
      "          'reasonably': 1,\n",
      "          'nthere': 1,\n",
      "          'serious': 1,\n",
      "          'enjoyed': 1,\n",
      "          'following': 1,\n",
      "          'couple': 1,\n",
      "          'solving': 1,\n",
      "          'pleasant': 1,\n",
      "          'change': 1,\n",
      "          'movies': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'give': 1,\n",
      "          'successful': 1,\n",
      "          'comedy': 1,\n",
      "          'high': 1,\n",
      "          'marks': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'li': 9,\n",
      "          'jet': 6,\n",
      "          'film': 6,\n",
      "          'movie': 5,\n",
      "          'bad': 4,\n",
      "          'one': 4,\n",
      "          'thing': 4,\n",
      "          'looking': 4,\n",
      "          'action': 4,\n",
      "          'also': 4,\n",
      "          'see': 4,\n",
      "          'nbut': 3,\n",
      "          'lot': 3,\n",
      "          'youre': 3,\n",
      "          'stunts': 3,\n",
      "          '710': 3,\n",
      "          'plot': 2,\n",
      "          'cop': 2,\n",
      "          'french': 2,\n",
      "          'na': 2,\n",
      "          'asskicking': 2,\n",
      "          'okay': 2,\n",
      "          'little': 2,\n",
      "          'cool': 2,\n",
      "          'gives': 2,\n",
      "          'good': 2,\n",
      "          'line': 2,\n",
      "          'us': 2,\n",
      "          'seen': 2,\n",
      "          'great': 2,\n",
      "          'whole': 2,\n",
      "          'kiss': 2,\n",
      "          'ass': 2,\n",
      "          'pretty': 2,\n",
      "          'eyes': 2,\n",
      "          'time': 2,\n",
      "          'side': 2,\n",
      "          'around': 2,\n",
      "          'fist': 2,\n",
      "          'nyes': 2,\n",
      "          'la': 2,\n",
      "          'femme': 2,\n",
      "          'nikita': 2,\n",
      "          'professional': 2,\n",
      "          'would': 2,\n",
      "          'ndoes': 2,\n",
      "          'leave': 2,\n",
      "          '810': 2,\n",
      "          'chinese': 1,\n",
      "          'asked': 1,\n",
      "          'help': 1,\n",
      "          'policemen': 1,\n",
      "          'nab': 1,\n",
      "          'guy': 1,\n",
      "          'leads': 1,\n",
      "          'another': 1,\n",
      "          'next': 1,\n",
      "          'know': 1,\n",
      "          'lis': 1,\n",
      "          'chased': 1,\n",
      "          'cops': 1,\n",
      "          'supposed': 1,\n",
      "          'working': 1,\n",
      "          'facewhippings': 1,\n",
      "          'gun': 1,\n",
      "          'fights': 1,\n",
      "          'ensues': 1,\n",
      "          'ncritique': 1,\n",
      "          'nnow': 1,\n",
      "          'heres': 1,\n",
      "          'exactly': 1,\n",
      "          'kickass': 1,\n",
      "          'palpable': 1,\n",
      "          'copbad': 1,\n",
      "          'story': 1,\n",
      "          'hardcore': 1,\n",
      "          'slamdunking': 1,\n",
      "          'everyone': 1,\n",
      "          'sight': 1,\n",
      "          'nthe': 1,\n",
      "          'moves': 1,\n",
      "          'fast': 1,\n",
      "          'mere': 1,\n",
      "          '95': 1,\n",
      "          'minutes': 1,\n",
      "          'develops': 1,\n",
      "          'certain': 1,\n",
      "          'cute': 1,\n",
      "          'chemistry': 1,\n",
      "          'fonda': 1,\n",
      "          'nice': 1,\n",
      "          'surroundings': 1,\n",
      "          'paris': 1,\n",
      "          'baby': 1,\n",
      "          'best': 1,\n",
      "          'guys': 1,\n",
      "          'ive': 1,\n",
      "          'year': 1,\n",
      "          'ntcheky': 1,\n",
      "          'karyo': 1,\n",
      "          'devil': 1,\n",
      "          'incarnate': 1,\n",
      "          'nhe': 1,\n",
      "          'pure': 1,\n",
      "          'evil': 1,\n",
      "          'nthey': 1,\n",
      "          'called': 1,\n",
      "          'lieutenant': 1,\n",
      "          '2': 1,\n",
      "          'keitel': 1,\n",
      "          'nothing': 1,\n",
      "          'man': 1,\n",
      "          'nwhat': 1,\n",
      "          'monster': 1,\n",
      "          'nmy': 1,\n",
      "          'favorite': 1,\n",
      "          'tchekys': 1,\n",
      "          'explaining': 1,\n",
      "          'dragon': 1,\n",
      "          'cut': 1,\n",
      "          'saying': 1,\n",
      "          'npure': 1,\n",
      "          'poetry': 1,\n",
      "          'nanyway': 1,\n",
      "          'handled': 1,\n",
      "          'acting': 1,\n",
      "          'well': 1,\n",
      "          'real': 1,\n",
      "          'dialogue': 1,\n",
      "          'say': 1,\n",
      "          'enough': 1,\n",
      "          'make': 1,\n",
      "          'believe': 1,\n",
      "          'character': 1,\n",
      "          'nactually': 1,\n",
      "          'mans': 1,\n",
      "          'generally': 1,\n",
      "          'tells': 1,\n",
      "          'nfonda': 1,\n",
      "          'despite': 1,\n",
      "          'playing': 1,\n",
      "          'trashy': 1,\n",
      "          'abused': 1,\n",
      "          'women': 1,\n",
      "          'quite': 1,\n",
      "          'still': 1,\n",
      "          'felt': 1,\n",
      "          'kinda': 1,\n",
      "          'guess': 1,\n",
      "          'job': 1,\n",
      "          'end': 1,\n",
      "          'nobody': 1,\n",
      "          'goes': 1,\n",
      "          'kind': 1,\n",
      "          'oscar': 1,\n",
      "          'performances': 1,\n",
      "          'nwe': 1,\n",
      "          'go': 1,\n",
      "          'movies': 1,\n",
      "          'want': 1,\n",
      "          'kicking': 1,\n",
      "          'delivers': 1,\n",
      "          'gangbusters': 1,\n",
      "          'front': 1,\n",
      "          'nand': 1,\n",
      "          'yes': 1,\n",
      "          'wirefu': 1,\n",
      "          'nsay': 1,\n",
      "          'nwirework': 1,\n",
      "          'bullshit': 1,\n",
      "          'floating': 1,\n",
      "          'midair': 1,\n",
      "          'minute': 1,\n",
      "          'nits': 1,\n",
      "          'straight': 1,\n",
      "          'boot': 1,\n",
      "          'face': 1,\n",
      "          'nif': 1,\n",
      "          'thats': 1,\n",
      "          'dont': 1,\n",
      "          'disappointed': 1,\n",
      "          'original': 1,\n",
      "          'take': 1,\n",
      "          'luc': 1,\n",
      "          'bessons': 1,\n",
      "          'mix': 1,\n",
      "          'plenty': 1,\n",
      "          'et': 1,\n",
      "          'voila': 1,\n",
      "          'annoying': 1,\n",
      "          'hiphoppy': 1,\n",
      "          'soundtrack': 1,\n",
      "          'got': 1,\n",
      "          'nerves': 1,\n",
      "          'gotten': 1,\n",
      "          'rid': 1,\n",
      "          'acupuncture': 1,\n",
      "          'thang': 1,\n",
      "          'anyone': 1,\n",
      "          'willing': 1,\n",
      "          'restrain': 1,\n",
      "          'disbelief': 1,\n",
      "          'rolling': 1,\n",
      "          'place': 1,\n",
      "          'entertained': 1,\n",
      "          'nthoroughly': 1,\n",
      "          'feature': 1,\n",
      "          'gunplay': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'overthetop': 1,\n",
      "          'kills': 1,\n",
      "          'recent': 1,\n",
      "          'flicks': 1,\n",
      "          'sound': 1,\n",
      "          'interesting': 1,\n",
      "          'nwell': 1,\n",
      "          'answer': 1,\n",
      "          'question': 1,\n",
      "          'entirely': 1,\n",
      "          'none': 1,\n",
      "          'definitely': 1,\n",
      "          'recommend': 1,\n",
      "          'pointed': 1,\n",
      "          'website': 1,\n",
      "          'kids': 1,\n",
      "          'home': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'might': 1,\n",
      "          'even': 1,\n",
      "          'wan': 1,\n",
      "          'cant': 1,\n",
      "          'handle': 1,\n",
      "          'violent': 1,\n",
      "          'sequences': 1,\n",
      "          'nall': 1,\n",
      "          'rippin': 1,\n",
      "          'roarin': 1,\n",
      "          'fun': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'nblack': 1,\n",
      "          'mask': 1,\n",
      "          '510': 1,\n",
      "          'blade': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          '4': 1,\n",
      "          'matrix': 1,\n",
      "          '910': 1,\n",
      "          'romeo': 1,\n",
      "          'must': 1,\n",
      "          'die': 1,\n",
      "          '310': 1,\n",
      "          'rush': 1,\n",
      "          'hour': 1,\n",
      "          'shanghai': 1,\n",
      "          'noon': 1,\n",
      "          '610': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'williams': 8,\n",
      "          'mrs': 7,\n",
      "          'daniel': 7,\n",
      "          'ndoubtfire': 6,\n",
      "          'robin': 4,\n",
      "          'one': 4,\n",
      "          'miranda': 4,\n",
      "          'doubtfire': 4,\n",
      "          'children': 3,\n",
      "          'mirandas': 3,\n",
      "          'makeup': 3,\n",
      "          'nthe': 3,\n",
      "          'never': 2,\n",
      "          'little': 2,\n",
      "          'bit': 2,\n",
      "          'goes': 2,\n",
      "          'though': 2,\n",
      "          'often': 2,\n",
      "          'nmrs': 2,\n",
      "          'proves': 2,\n",
      "          'best': 2,\n",
      "          'comic': 2,\n",
      "          'high': 2,\n",
      "          'artist': 2,\n",
      "          'sally': 2,\n",
      "          'field': 2,\n",
      "          'time': 2,\n",
      "          'nhe': 2,\n",
      "          'euphegenia': 2,\n",
      "          'keep': 2,\n",
      "          'pierce': 2,\n",
      "          'brosnan': 2,\n",
      "          'trying': 2,\n",
      "          'people': 2,\n",
      "          'nit': 2,\n",
      "          'film': 2,\n",
      "          'swallow': 2,\n",
      "          'change': 2,\n",
      "          'ntheres': 2,\n",
      "          'involving': 2,\n",
      "          'new': 2,\n",
      "          'stu': 2,\n",
      "          'thing': 2,\n",
      "          'nits': 2,\n",
      "          'good': 2,\n",
      "          'see': 2,\n",
      "          'ive': 1,\n",
      "          'member': 1,\n",
      "          'fan': 1,\n",
      "          'club': 1,\n",
      "          'na': 1,\n",
      "          'improvisationaly': 1,\n",
      "          'schtick': 1,\n",
      "          'long': 1,\n",
      "          'way': 1,\n",
      "          'sometimes': 1,\n",
      "          'feel': 1,\n",
      "          'im': 1,\n",
      "          'watching': 1,\n",
      "          '40yearold': 1,\n",
      "          'class': 1,\n",
      "          'clown': 1,\n",
      "          'nin': 1,\n",
      "          'films': 1,\n",
      "          'tried': 1,\n",
      "          'balance': 1,\n",
      "          'mania': 1,\n",
      "          'touchyfeely': 1,\n",
      "          'emotion': 1,\n",
      "          'leading': 1,\n",
      "          'wildly': 1,\n",
      "          'uneven': 1,\n",
      "          'performances': 1,\n",
      "          'seemed': 1,\n",
      "          'readymade': 1,\n",
      "          'problems': 1,\n",
      "          'instead': 1,\n",
      "          'screen': 1,\n",
      "          'project': 1,\n",
      "          'yet': 1,\n",
      "          'nwhile': 1,\n",
      "          'still': 1,\n",
      "          'contains': 1,\n",
      "          'characteristic': 1,\n",
      "          'selfindulgence': 1,\n",
      "          'nonetheless': 1,\n",
      "          'engaging': 1,\n",
      "          'bellylaugh': 1,\n",
      "          'comedy': 1,\n",
      "          'served': 1,\n",
      "          'energy': 1,\n",
      "          'nwilliams': 1,\n",
      "          'stars': 1,\n",
      "          'hillard': 1,\n",
      "          'cartoon': 1,\n",
      "          'voiceover': 1,\n",
      "          'penchant': 1,\n",
      "          'irresponsible': 1,\n",
      "          'behavior': 1,\n",
      "          'none': 1,\n",
      "          'incident': 1,\n",
      "          'many': 1,\n",
      "          'wife': 1,\n",
      "          'files': 1,\n",
      "          'divorce': 1,\n",
      "          'nunemployed': 1,\n",
      "          'living': 1,\n",
      "          'disastrously': 1,\n",
      "          'unkempt': 1,\n",
      "          'apartment': 1,\n",
      "          'faced': 1,\n",
      "          'limited': 1,\n",
      "          'three': 1,\n",
      "          'beloved': 1,\n",
      "          'decides': 1,\n",
      "          'respond': 1,\n",
      "          'ad': 1,\n",
      "          'afternoon': 1,\n",
      "          'housekeeper': 1,\n",
      "          'turns': 1,\n",
      "          'brother': 1,\n",
      "          'frank': 1,\n",
      "          'harvey': 1,\n",
      "          'fierstein': 1,\n",
      "          'theatrical': 1,\n",
      "          'emerges': 1,\n",
      "          'matronly': 1,\n",
      "          '65yearold': 1,\n",
      "          'englishwoman': 1,\n",
      "          'ndaniel': 1,\n",
      "          'uses': 1,\n",
      "          'access': 1,\n",
      "          'house': 1,\n",
      "          'eye': 1,\n",
      "          'flirtation': 1,\n",
      "          'wealthy': 1,\n",
      "          'client': 1,\n",
      "          'spend': 1,\n",
      "          'learn': 1,\n",
      "          'something': 1,\n",
      "          'responsible': 1,\n",
      "          'parenting': 1,\n",
      "          'identity': 1,\n",
      "          'hidden': 1,\n",
      "          'know': 1,\n",
      "          'overcome': 1,\n",
      "          'mountain': 1,\n",
      "          'implausibilities': 1,\n",
      "          'work': 1,\n",
      "          'basically': 1,\n",
      "          'crucial': 1,\n",
      "          'family': 1,\n",
      "          'recognizes': 1,\n",
      "          'thanks': 1,\n",
      "          'fantastic': 1,\n",
      "          'special': 1,\n",
      "          'thats': 1,\n",
      "          'instantly': 1,\n",
      "          'believable': 1,\n",
      "          'may': 1,\n",
      "          'convincing': 1,\n",
      "          'transformations': 1,\n",
      "          'ever': 1,\n",
      "          'committed': 1,\n",
      "          'making': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffmans': 1,\n",
      "          'dorothy': 1,\n",
      "          'michaels': 1,\n",
      "          'look': 1,\n",
      "          'like': 1,\n",
      "          'milton': 1,\n",
      "          'berle': 1,\n",
      "          'nmore': 1,\n",
      "          'problematic': 1,\n",
      "          'series': 1,\n",
      "          'calls': 1,\n",
      "          'makes': 1,\n",
      "          'posing': 1,\n",
      "          'nannies': 1,\n",
      "          'hell': 1,\n",
      "          'hard': 1,\n",
      "          'doesnt': 1,\n",
      "          'recognize': 1,\n",
      "          'voices': 1,\n",
      "          'husbands': 1,\n",
      "          'nperhaps': 1,\n",
      "          'biggest': 1,\n",
      "          'contrivance': 1,\n",
      "          'asked': 1,\n",
      "          'could': 1,\n",
      "          'make': 1,\n",
      "          'quick': 1,\n",
      "          'minutes': 1,\n",
      "          'realistic': 1,\n",
      "          'slapping': 1,\n",
      "          'latex': 1,\n",
      "          'mask': 1,\n",
      "          'nfortunately': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'attract': 1,\n",
      "          'attention': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'nduring': 1,\n",
      "          'generally': 1,\n",
      "          'busy': 1,\n",
      "          'laughing': 1,\n",
      "          'nafter': 1,\n",
      "          'getting': 1,\n",
      "          'slow': 1,\n",
      "          'start': 1,\n",
      "          'much': 1,\n",
      "          'riffing': 1,\n",
      "          'kicks': 1,\n",
      "          'gear': 1,\n",
      "          'wig': 1,\n",
      "          'pads': 1,\n",
      "          'place': 1,\n",
      "          'ndaniels': 1,\n",
      "          'frantic': 1,\n",
      "          'attempt': 1,\n",
      "          'fool': 1,\n",
      "          'court': 1,\n",
      "          'officer': 1,\n",
      "          'wonderful': 1,\n",
      "          'climactic': 1,\n",
      "          'restaurant': 1,\n",
      "          'sequence': 1,\n",
      "          'even': 1,\n",
      "          'saw': 1,\n",
      "          'resolutions': 1,\n",
      "          'coming': 1,\n",
      "          'mile': 1,\n",
      "          'away': 1,\n",
      "          'nclearly': 1,\n",
      "          'credit': 1,\n",
      "          'doubtfires': 1,\n",
      "          'success': 1,\n",
      "          'took': 1,\n",
      "          'putting': 1,\n",
      "          'drag': 1,\n",
      "          'plays': 1,\n",
      "          'character': 1,\n",
      "          'isnt': 1,\n",
      "          'different': 1,\n",
      "          'name': 1,\n",
      "          'thoroughly': 1,\n",
      "          'inhabits': 1,\n",
      "          'seems': 1,\n",
      "          'relish': 1,\n",
      "          'scenes': 1,\n",
      "          'gets': 1,\n",
      "          'play': 1,\n",
      "          'blunt': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'nwisely': 1,\n",
      "          'aims': 1,\n",
      "          'saintly': 1,\n",
      "          'nhis': 1,\n",
      "          'responses': 1,\n",
      "          'intrusion': 1,\n",
      "          'suitor': 1,\n",
      "          'petty': 1,\n",
      "          'kind': 1,\n",
      "          'us': 1,\n",
      "          'might': 1,\n",
      "          'benefit': 1,\n",
      "          'anonymity': 1,\n",
      "          'ndoubtfires': 1,\n",
      "          'charms': 1,\n",
      "          'neither': 1,\n",
      "          'perfect': 1,\n",
      "          'better': 1,\n",
      "          'nas': 1,\n",
      "          'solid': 1,\n",
      "          'background': 1,\n",
      "          'role': 1,\n",
      "          'nicely': 1,\n",
      "          'understated': 1,\n",
      "          'also': 1,\n",
      "          'although': 1,\n",
      "          'mara': 1,\n",
      "          'wilson': 1,\n",
      "          'almost': 1,\n",
      "          'oppressively': 1,\n",
      "          'cute': 1,\n",
      "          'youngest': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'merely': 1,\n",
      "          'step': 1,\n",
      "          'aside': 1,\n",
      "          'allow': 1,\n",
      "          'easy': 1,\n",
      "          'tootsie': 1,\n",
      "          'warmed': 1,\n",
      "          'true': 1,\n",
      "          'broad': 1,\n",
      "          'themes': 1,\n",
      "          'specific': 1,\n",
      "          'details': 1,\n",
      "          'common': 1,\n",
      "          'nbut': 1,\n",
      "          'manages': 1,\n",
      "          'carve': 1,\n",
      "          'space': 1,\n",
      "          'particularly': 1,\n",
      "          'surprisingly': 1,\n",
      "          'honest': 1,\n",
      "          'moments': 1,\n",
      "          'judges': 1,\n",
      "          'decision': 1,\n",
      "          'ultimate': 1,\n",
      "          'status': 1,\n",
      "          'relationship': 1,\n",
      "          'nothing': 1,\n",
      "          'dazzlingly': 1,\n",
      "          'plenty': 1,\n",
      "          'laughs': 1,\n",
      "          'comedies': 1,\n",
      "          'always': 1,\n",
      "          'short': 1,\n",
      "          'supply': 1,\n",
      "          'nand': 1,\n",
      "          'nice': 1,\n",
      "          'act': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'truman': 6,\n",
      "          'christof': 5,\n",
      "          'world': 4,\n",
      "          'trumans': 4,\n",
      "          'weir': 3,\n",
      "          'show': 3,\n",
      "          'end': 3,\n",
      "          'well': 3,\n",
      "          'film': 3,\n",
      "          'nin': 2,\n",
      "          'actors': 2,\n",
      "          'nfor': 2,\n",
      "          'years': 2,\n",
      "          'accept': 2,\n",
      "          'break': 2,\n",
      "          'find': 2,\n",
      "          'picture': 2,\n",
      "          'audience': 2,\n",
      "          'want': 2,\n",
      "          'zycie': 2,\n",
      "          'wellrespected': 1,\n",
      "          'hollywood': 1,\n",
      "          'turning': 1,\n",
      "          'scripts': 1,\n",
      "          'difficult': 1,\n",
      "          'subjectmatter': 1,\n",
      "          'deceptively': 1,\n",
      "          'simple': 1,\n",
      "          'powerful': 1,\n",
      "          'films': 1,\n",
      "          'mosquito': 1,\n",
      "          'coast': 1,\n",
      "          'utopia': 1,\n",
      "          'fearless': 1,\n",
      "          'posttraumatic': 1,\n",
      "          'stress': 1,\n",
      "          'disorder': 1,\n",
      "          'among': 1,\n",
      "          'essentially': 1,\n",
      "          'breathes': 1,\n",
      "          'life': 1,\n",
      "          'nowtired': 1,\n",
      "          'concept': 1,\n",
      "          'mediamanipulation': 1,\n",
      "          'tackling': 1,\n",
      "          'material': 1,\n",
      "          'insideout': 1,\n",
      "          'nit': 1,\n",
      "          'certainly': 1,\n",
      "          'helps': 1,\n",
      "          'underrated': 1,\n",
      "          'performer': 1,\n",
      "          'topform': 1,\n",
      "          'playing': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'burbank': 1,\n",
      "          'nby': 1,\n",
      "          'must': 1,\n",
      "          'aware': 1,\n",
      "          'premise': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'carrey': 1,\n",
      "          'star': 1,\n",
      "          'tv': 1,\n",
      "          'series': 1,\n",
      "          '247': 1,\n",
      "          'peepshow': 1,\n",
      "          'surrounded': 1,\n",
      "          'placed': 1,\n",
      "          'loosely': 1,\n",
      "          'scripted': 1,\n",
      "          'situations': 1,\n",
      "          'people': 1,\n",
      "          'around': 1,\n",
      "          'tune': 1,\n",
      "          'voyeuristic': 1,\n",
      "          'thrill': 1,\n",
      "          'genuine': 1,\n",
      "          'reactions': 1,\n",
      "          'fictitious': 1,\n",
      "          'stimulants': 1,\n",
      "          'nseahaven': 1,\n",
      "          'hometown': 1,\n",
      "          'brainchild': 1,\n",
      "          'harris': 1,\n",
      "          'presides': 1,\n",
      "          'creation': 1,\n",
      "          'base': 1,\n",
      "          'fake': 1,\n",
      "          'moon': 1,\n",
      "          'directing': 1,\n",
      "          '500': 1,\n",
      "          'cameras': 1,\n",
      "          'hundreds': 1,\n",
      "          'extras': 1,\n",
      "          '30': 1,\n",
      "          'suspects': 1,\n",
      "          'nothingwe': 1,\n",
      "          'reality': 1,\n",
      "          'given': 1,\n",
      "          'poses': 1,\n",
      "          'christofbut': 1,\n",
      "          'desire': 1,\n",
      "          'free': 1,\n",
      "          'sunny': 1,\n",
      "          'town': 1,\n",
      "          'visit': 1,\n",
      "          'long': 1,\n",
      "          'lost': 1,\n",
      "          'love': 1,\n",
      "          'fiji': 1,\n",
      "          'mcelhone': 1,\n",
      "          'actually': 1,\n",
      "          'actress': 1,\n",
      "          'fired': 1,\n",
      "          'trying': 1,\n",
      "          'confidentiality': 1,\n",
      "          'agreement': 1,\n",
      "          'overwhelms': 1,\n",
      "          'nthus': 1,\n",
      "          'team': 1,\n",
      "          'suddenly': 1,\n",
      "          'working': 1,\n",
      "          'twice': 1,\n",
      "          'hard': 1,\n",
      "          'keep': 1,\n",
      "          'veneer': 1,\n",
      "          'seahaven': 1,\n",
      "          'intact': 1,\n",
      "          'lest': 1,\n",
      "          'discover': 1,\n",
      "          'outside': 1,\n",
      "          'put': 1,\n",
      "          'highlyrated': 1,\n",
      "          'program': 1,\n",
      "          'broad': 1,\n",
      "          'strokes': 1,\n",
      "          'creates': 1,\n",
      "          'convincing': 1,\n",
      "          'secondreality': 1,\n",
      "          'good': 1,\n",
      "          'sense': 1,\n",
      "          'bring': 1,\n",
      "          'almost': 1,\n",
      "          'threequarters': 1,\n",
      "          'nthis': 1,\n",
      "          'allows': 1,\n",
      "          'us': 1,\n",
      "          'comprehend': 1,\n",
      "          'contextualize': 1,\n",
      "          'madness': 1,\n",
      "          'shown': 1,\n",
      "          'place': 1,\n",
      "          'without': 1,\n",
      "          'violence': 1,\n",
      "          'hardship': 1,\n",
      "          'demonstrated': 1,\n",
      "          'human': 1,\n",
      "          'function': 1,\n",
      "          'within': 1,\n",
      "          'ntruman': 1,\n",
      "          'inspiration': 1,\n",
      "          'grew': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'darn': 1,\n",
      "          'nice': 1,\n",
      "          'like': 1,\n",
      "          'sibling': 1,\n",
      "          'perhaps': 1,\n",
      "          'appropriately': 1,\n",
      "          'caged': 1,\n",
      "          'animal': 1,\n",
      "          'interactive': 1,\n",
      "          'zoo': 1,\n",
      "          'see': 1,\n",
      "          'succeed': 1,\n",
      "          'nthe': 1,\n",
      "          'surrealistic': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'completely': 1,\n",
      "          'plausible': 1,\n",
      "          'thanks': 1,\n",
      "          'tight': 1,\n",
      "          'screenplay': 1,\n",
      "          'sympathetic': 1,\n",
      "          'carreyhe': 1,\n",
      "          'really': 1,\n",
      "          'everyman': 1,\n",
      "          'abandoning': 1,\n",
      "          'facial': 1,\n",
      "          'contortions': 1,\n",
      "          'favour': 1,\n",
      "          'credible': 1,\n",
      "          'wideeyed': 1,\n",
      "          'bewilderment': 1,\n",
      "          'ncinematically': 1,\n",
      "          'impeccable': 1,\n",
      "          'stylishly': 1,\n",
      "          'photographed': 1,\n",
      "          'peter': 1,\n",
      "          'biziou': 1,\n",
      "          'littered': 1,\n",
      "          'symbolic': 1,\n",
      "          'images': 1,\n",
      "          'nas': 1,\n",
      "          'employs': 1,\n",
      "          'wojciech': 1,\n",
      "          'kilars': 1,\n",
      "          'piece': 1,\n",
      "          'za': 1,\n",
      "          'masterfully': 1,\n",
      "          'beautifully': 1,\n",
      "          'nif': 1,\n",
      "          'flaws': 1,\n",
      "          'one': 1,\n",
      "          'may': 1,\n",
      "          'laura': 1,\n",
      "          'linneys': 1,\n",
      "          'characterization': 1,\n",
      "          'meryl': 1,\n",
      "          'wife': 1,\n",
      "          'doubt': 1,\n",
      "          'betty': 1,\n",
      "          'crocker': 1,\n",
      "          'impersonation': 1,\n",
      "          'would': 1,\n",
      "          'fool': 1,\n",
      "          'anyone': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'father': 1,\n",
      "          'feels': 1,\n",
      "          'curiously': 1,\n",
      "          'incomplete': 1,\n",
      "          'nthere': 1,\n",
      "          'stupendous': 1,\n",
      "          'sequences': 1,\n",
      "          'pulls': 1,\n",
      "          'wonderful': 1,\n",
      "          'trick': 1,\n",
      "          'become': 1,\n",
      "          'much': 1,\n",
      "          'loyal': 1,\n",
      "          'viewers': 1,\n",
      "          'nthey': 1,\n",
      "          'wear': 1,\n",
      "          'buttons': 1,\n",
      "          'asking': 1,\n",
      "          'ni': 1,\n",
      "          'couldnt': 1,\n",
      "          'wait': 1,\n",
      "          'know': 1,\n",
      "          'though': 1,\n",
      "          'didnt': 1,\n",
      "          'exactly': 1,\n",
      "          'inspired': 1,\n",
      "          'movie': 1,\n",
      "          'possibly': 1,\n",
      "          'bestand': 1,\n",
      "          'complexsummer': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nin': 6,\n",
      "          'sexual': 5,\n",
      "          'sam': 5,\n",
      "          'sex': 4,\n",
      "          'american': 3,\n",
      "          'neighborhood': 3,\n",
      "          'new': 3,\n",
      "          'york': 3,\n",
      "          'spike': 3,\n",
      "          'summer': 3,\n",
      "          'italian': 2,\n",
      "          'people': 2,\n",
      "          'fact': 2,\n",
      "          'lees': 2,\n",
      "          'right': 2,\n",
      "          'thing': 2,\n",
      "          'killer': 2,\n",
      "          'son': 2,\n",
      "          'one': 2,\n",
      "          'different': 2,\n",
      "          'differences': 2,\n",
      "          'trying': 2,\n",
      "          'film': 2,\n",
      "          'suspicion': 2,\n",
      "          'neighbor': 2,\n",
      "          'director': 2,\n",
      "          'movies': 2,\n",
      "          'gratuitous': 2,\n",
      "          'movie': 2,\n",
      "          'nsex': 2,\n",
      "          'synopsis': 1,\n",
      "          '1977': 1,\n",
      "          'small': 1,\n",
      "          'ndisco': 1,\n",
      "          'music': 1,\n",
      "          'popular': 1,\n",
      "          'revolution': 1,\n",
      "          'happy': 1,\n",
      "          'theyre': 1,\n",
      "          'terrified': 1,\n",
      "          'nas': 1,\n",
      "          'heat': 1,\n",
      "          'wave': 1,\n",
      "          'city': 1,\n",
      "          'grip': 1,\n",
      "          'peoples': 1,\n",
      "          'tempers': 1,\n",
      "          'flaring': 1,\n",
      "          'nthe': 1,\n",
      "          'cool': 1,\n",
      "          'night': 1,\n",
      "          'offers': 1,\n",
      "          'respite': 1,\n",
      "          'terrorized': 1,\n",
      "          'nocturnal': 1,\n",
      "          'psychotic': 1,\n",
      "          'calls': 1,\n",
      "          'nno': 1,\n",
      "          'knows': 1,\n",
      "          'safe': 1,\n",
      "          'nall': 1,\n",
      "          'around': 1,\n",
      "          'naside': 1,\n",
      "          'cultural': 1,\n",
      "          'groupings': 1,\n",
      "          'ethnic': 1,\n",
      "          'neighborhoods': 1,\n",
      "          'individuals': 1,\n",
      "          'section': 1,\n",
      "          'town': 1,\n",
      "          'philandering': 1,\n",
      "          'husband': 1,\n",
      "          'named': 1,\n",
      "          'vinny': 1,\n",
      "          'john': 1,\n",
      "          'leguizamo': 1,\n",
      "          'tries': 1,\n",
      "          'hide': 1,\n",
      "          'trysts': 1,\n",
      "          'behavior': 1,\n",
      "          'long': 1,\n",
      "          'suffering': 1,\n",
      "          'newlywed': 1,\n",
      "          'wife': 1,\n",
      "          'dionna': 1,\n",
      "          'mira': 1,\n",
      "          'sorvino': 1,\n",
      "          'nvinnys': 1,\n",
      "          'friend': 1,\n",
      "          'ritchie': 1,\n",
      "          'adrien': 1,\n",
      "          'brody': 1,\n",
      "          'hates': 1,\n",
      "          'disco': 1,\n",
      "          'works': 1,\n",
      "          'gay': 1,\n",
      "          'strip': 1,\n",
      "          'club': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'folks': 1,\n",
      "          'know': 1,\n",
      "          'nritchies': 1,\n",
      "          'girl': 1,\n",
      "          'ruby': 1,\n",
      "          'jennifer': 1,\n",
      "          'esposito': 1,\n",
      "          'escape': 1,\n",
      "          'reputation': 1,\n",
      "          'slut': 1,\n",
      "          'neveryones': 1,\n",
      "          'nobody': 1,\n",
      "          'wants': 1,\n",
      "          'framed': 1,\n",
      "          'alien': 1,\n",
      "          'community': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'killings': 1,\n",
      "          'help': 1,\n",
      "          'create': 1,\n",
      "          'climate': 1,\n",
      "          'pits': 1,\n",
      "          'nopinion': 1,\n",
      "          'psycho': 1,\n",
      "          'nnor': 1,\n",
      "          'cops': 1,\n",
      "          'apprehend': 1,\n",
      "          'nits': 1,\n",
      "          'given': 1,\n",
      "          'conditions': 1,\n",
      "          'even': 1,\n",
      "          'close': 1,\n",
      "          'neighbors': 1,\n",
      "          'fan': 1,\n",
      "          'hostile': 1,\n",
      "          'flames': 1,\n",
      "          'irrational': 1,\n",
      "          'none': 1,\n",
      "          'found': 1,\n",
      "          'interesting': 1,\n",
      "          'use': 1,\n",
      "          'glamorized': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'gets': 1,\n",
      "          'reward': 1,\n",
      "          'winning': 1,\n",
      "          'boring': 1,\n",
      "          'madeforvideo': 1,\n",
      "          'suspense': 1,\n",
      "          'spiked': 1,\n",
      "          'lingerie': 1,\n",
      "          'scenes': 1,\n",
      "          'keep': 1,\n",
      "          'audience': 1,\n",
      "          'awake': 1,\n",
      "          'nand': 1,\n",
      "          'every': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'character': 1,\n",
      "          'flicks': 1,\n",
      "          'seems': 1,\n",
      "          'expert': 1,\n",
      "          'prowess': 1,\n",
      "          'nnot': 1,\n",
      "          'gutsy': 1,\n",
      "          'move': 1,\n",
      "          'lee': 1,\n",
      "          'shows': 1,\n",
      "          'without': 1,\n",
      "          'fantasy': 1,\n",
      "          'isnt': 1,\n",
      "          'titillating': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'downright': 1,\n",
      "          'lousy': 1,\n",
      "          'bed': 1,\n",
      "          'deviance': 1,\n",
      "          'part': 1,\n",
      "          'films': 1,\n",
      "          'major': 1,\n",
      "          'theme': 1,\n",
      "          'difference': 1,\n",
      "          'breeding': 1,\n",
      "          'hostility': 1,\n",
      "          'opinion': 1,\n",
      "          'kind': 1,\n",
      "          'cutting': 1,\n",
      "          'edge': 1,\n",
      "          '1999': 1,\n",
      "          'rare': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'cinema': 1,\n",
      "          'showing': 1,\n",
      "          'spanking': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'reality': 8,\n",
      "          'game': 6,\n",
      "          'existenz': 5,\n",
      "          'one': 4,\n",
      "          'like': 4,\n",
      "          'things': 4,\n",
      "          'world': 4,\n",
      "          'virtual': 3,\n",
      "          'true': 3,\n",
      "          'pod': 3,\n",
      "          'bioport': 3,\n",
      "          'gas': 3,\n",
      "          'little': 3,\n",
      "          'strangest': 2,\n",
      "          'movies': 2,\n",
      "          'ever': 2,\n",
      "          'series': 2,\n",
      "          'gooey': 2,\n",
      "          'matrix': 2,\n",
      "          'nthe': 2,\n",
      "          'two': 2,\n",
      "          'normal': 2,\n",
      "          'na': 2,\n",
      "          'us': 2,\n",
      "          'accept': 2,\n",
      "          'bizarre': 2,\n",
      "          'nand': 2,\n",
      "          'oh': 2,\n",
      "          'organic': 2,\n",
      "          'stations': 2,\n",
      "          'nyou': 2,\n",
      "          'surreal': 2,\n",
      "          'characters': 2,\n",
      "          'playing': 2,\n",
      "          'someone': 2,\n",
      "          'friendly': 2,\n",
      "          'hole': 2,\n",
      "          'spine': 2,\n",
      "          'plug': 2,\n",
      "          'vaguely': 2,\n",
      "          'play': 2,\n",
      "          'get': 2,\n",
      "          'plot': 2,\n",
      "          'chinese': 2,\n",
      "          'amphibian': 2,\n",
      "          'trying': 2,\n",
      "          'figure': 2,\n",
      "          'piece': 2,\n",
      "          'pods': 2,\n",
      "          'leave': 2,\n",
      "          'part': 1,\n",
      "          'made': 1,\n",
      "          'www': 1,\n",
      "          'mediajunkies': 1,\n",
      "          'com': 1,\n",
      "          'nby': 1,\n",
      "          'scott': 1,\n",
      "          'watson': 1,\n",
      "          'nlight': 1,\n",
      "          'spoilers': 1,\n",
      "          'nothing': 1,\n",
      "          'shouldnt': 1,\n",
      "          'read': 1,\n",
      "          'nexistenz': 1,\n",
      "          'called': 1,\n",
      "          'correct': 1,\n",
      "          'description': 1,\n",
      "          'ways': 1,\n",
      "          'others': 1,\n",
      "          'completely': 1,\n",
      "          'thing': 1,\n",
      "          'films': 1,\n",
      "          'common': 1,\n",
      "          'idea': 1,\n",
      "          'indistinguishable': 1,\n",
      "          'real': 1,\n",
      "          'major': 1,\n",
      "          'difference': 1,\n",
      "          'base': 1,\n",
      "          'obviously': 1,\n",
      "          'impossible': 1,\n",
      "          'makes': 1,\n",
      "          'ndavid': 1,\n",
      "          'cronenberg': 1,\n",
      "          'shown': 1,\n",
      "          'knows': 1,\n",
      "          'create': 1,\n",
      "          'strange': 1,\n",
      "          'naked': 1,\n",
      "          'lunch': 1,\n",
      "          'crash': 1,\n",
      "          'nmaybe': 1,\n",
      "          'mundane': 1,\n",
      "          'mixed': 1,\n",
      "          'ntechnology': 1,\n",
      "          'ncars': 1,\n",
      "          'ngas': 1,\n",
      "          'ncell': 1,\n",
      "          'phones': 1,\n",
      "          'glowing': 1,\n",
      "          'bug': 1,\n",
      "          'appendages': 1,\n",
      "          'jack': 1,\n",
      "          'using': 1,\n",
      "          'quivering': 1,\n",
      "          'pink': 1,\n",
      "          'animal': 1,\n",
      "          'apparatus': 1,\n",
      "          'referred': 1,\n",
      "          'simply': 1,\n",
      "          'nhigh': 1,\n",
      "          'technology': 1,\n",
      "          'replaced': 1,\n",
      "          'creatures': 1,\n",
      "          'provides': 1,\n",
      "          'truly': 1,\n",
      "          'setting': 1,\n",
      "          'famous': 1,\n",
      "          'designer': 1,\n",
      "          'allegra': 1,\n",
      "          'geller': 1,\n",
      "          'fine': 1,\n",
      "          'looking': 1,\n",
      "          'jennifer': 1,\n",
      "          'jason': 1,\n",
      "          'leigh': 1,\n",
      "          'flees': 1,\n",
      "          'demonstration': 1,\n",
      "          'latest': 1,\n",
      "          'assassination': 1,\n",
      "          'attempt': 1,\n",
      "          'nshe': 1,\n",
      "          'run': 1,\n",
      "          'im': 1,\n",
      "          'still': 1,\n",
      "          'sure': 1,\n",
      "          'save': 1,\n",
      "          'nthat': 1,\n",
      "          'dubious': 1,\n",
      "          'companion': 1,\n",
      "          'security': 1,\n",
      "          'guard': 1,\n",
      "          'ted': 1,\n",
      "          'pikul': 1,\n",
      "          'jude': 1,\n",
      "          'law': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'lacking': 1,\n",
      "          'fundamental': 1,\n",
      "          'requirement': 1,\n",
      "          'nsort': 1,\n",
      "          'ok': 1,\n",
      "          'exactly': 1,\n",
      "          'allows': 1,\n",
      "          'entraillooking': 1,\n",
      "          'wires': 1,\n",
      "          'allowing': 1,\n",
      "          'nluckily': 1,\n",
      "          'installed': 1,\n",
      "          'easily': 1,\n",
      "          'install': 1,\n",
      "          'malls': 1,\n",
      "          'go': 1,\n",
      "          'nafter': 1,\n",
      "          'crazy': 1,\n",
      "          'events': 1,\n",
      "          'local': 1,\n",
      "          'country': 1,\n",
      "          'station': 1,\n",
      "          'able': 1,\n",
      "          'melding': 1,\n",
      "          'conspiracies': 1,\n",
      "          'distortion': 1,\n",
      "          'restaurants': 1,\n",
      "          'multi': 1,\n",
      "          'appendaged': 1,\n",
      "          'sign': 1,\n",
      "          'times': 1,\n",
      "          'nbut': 1,\n",
      "          'cohesive': 1,\n",
      "          'creepy': 1,\n",
      "          'way': 1,\n",
      "          'secondary': 1,\n",
      "          'hell': 1,\n",
      "          'going': 1,\n",
      "          'universe': 1,\n",
      "          'ncronenberg': 1,\n",
      "          'slaps': 1,\n",
      "          'weird': 1,\n",
      "          'organictech': 1,\n",
      "          'viewers': 1,\n",
      "          'lap': 1,\n",
      "          'work': 1,\n",
      "          'thats': 1,\n",
      "          'joy': 1,\n",
      "          'film': 1,\n",
      "          'entering': 1,\n",
      "          'nightmarish': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'learn': 1,\n",
      "          'bit': 1,\n",
      "          'make': 1,\n",
      "          'enough': 1,\n",
      "          'presented': 1,\n",
      "          'nthere': 1,\n",
      "          'kinds': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'wander': 1,\n",
      "          'around': 1,\n",
      "          'including': 1,\n",
      "          'fantastic': 1,\n",
      "          'scene': 1,\n",
      "          'restaurant': 1,\n",
      "          'assemble': 1,\n",
      "          'something': 1,\n",
      "          'moo': 1,\n",
      "          'goo': 1,\n",
      "          'gai': 1,\n",
      "          'pan': 1,\n",
      "          'months': 1,\n",
      "          'afterwards': 1,\n",
      "          'nalso': 1,\n",
      "          'bioports': 1,\n",
      "          'occasionally': 1,\n",
      "          'used': 1,\n",
      "          'porting': 1,\n",
      "          'specifics': 1,\n",
      "          'discover': 1,\n",
      "          'ntheres': 1,\n",
      "          'lots': 1,\n",
      "          'set': 1,\n",
      "          'weirdometer': 1,\n",
      "          'tiny': 1,\n",
      "          'buy': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'headed': 1,\n",
      "          'creature': 1,\n",
      "          'guy': 1,\n",
      "          'name': 1,\n",
      "          'appears': 1,\n",
      "          'nit': 1,\n",
      "          'adds': 1,\n",
      "          'supremely': 1,\n",
      "          'far': 1,\n",
      "          'trip': 1,\n",
      "          'given': 1,\n",
      "          'choice': 1,\n",
      "          'think': 1,\n",
      "          'would': 1,\n",
      "          'rather': 1,\n",
      "          'live': 1,\n",
      "          'matrixs': 1,\n",
      "          'noh': 1,\n",
      "          'wait': 1,\n",
      "          'already': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'film': 7,\n",
      "          'crowe': 5,\n",
      "          'david': 4,\n",
      "          'films': 3,\n",
      "          'life': 3,\n",
      "          'russell': 3,\n",
      "          'crowes': 3,\n",
      "          'one': 3,\n",
      "          'acting': 3,\n",
      "          'story': 3,\n",
      "          'character': 3,\n",
      "          'ryan': 3,\n",
      "          'terry': 3,\n",
      "          'caruso': 3,\n",
      "          'scenes': 3,\n",
      "          'days': 2,\n",
      "          'rare': 2,\n",
      "          'nproof': 2,\n",
      "          'rescue': 2,\n",
      "          'intelligent': 2,\n",
      "          'script': 2,\n",
      "          'together': 2,\n",
      "          'motivation': 2,\n",
      "          'wife': 2,\n",
      "          'meg': 2,\n",
      "          'chemistry': 2,\n",
      "          'actors': 2,\n",
      "          'nbut': 2,\n",
      "          'peter': 2,\n",
      "          'bowman': 2,\n",
      "          'morse': 2,\n",
      "          'soldiers': 2,\n",
      "          'choice': 2,\n",
      "          'thorne': 2,\n",
      "          'situations': 2,\n",
      "          'memorable': 2,\n",
      "          'action': 2,\n",
      "          'movie': 2,\n",
      "          'choices': 2,\n",
      "          'sacrifices': 2,\n",
      "          'good': 1,\n",
      "          'hard': 1,\n",
      "          'find': 1,\n",
      "          'ngreat': 1,\n",
      "          'beyond': 1,\n",
      "          'onetwo': 1,\n",
      "          'punch': 1,\n",
      "          'deft': 1,\n",
      "          'kidnap': 1,\n",
      "          'thriller': 1,\n",
      "          'gems': 1,\n",
      "          'na': 1,\n",
      "          'taut': 1,\n",
      "          'drama': 1,\n",
      "          'laced': 1,\n",
      "          'strong': 1,\n",
      "          'subtle': 1,\n",
      "          'masterful': 1,\n",
      "          'directing': 1,\n",
      "          'delivers': 1,\n",
      "          'something': 1,\n",
      "          'virtually': 1,\n",
      "          'unheard': 1,\n",
      "          'industry': 1,\n",
      "          'genuine': 1,\n",
      "          'rings': 1,\n",
      "          'true': 1,\n",
      "          'nconsider': 1,\n",
      "          'strange': 1,\n",
      "          'coincidence': 1,\n",
      "          'proof': 1,\n",
      "          'making': 1,\n",
      "          'moves': 1,\n",
      "          'distraught': 1,\n",
      "          'played': 1,\n",
      "          'ryans': 1,\n",
      "          'real': 1,\n",
      "          'hitching': 1,\n",
      "          'married': 1,\n",
      "          'woman': 1,\n",
      "          'outside': 1,\n",
      "          'world': 1,\n",
      "          'ni': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'much': 1,\n",
      "          'since': 1,\n",
      "          'mcqueen': 1,\n",
      "          'mcgraw': 1,\n",
      "          'teamed': 1,\n",
      "          'peckinpahs': 1,\n",
      "          'masterpiece': 1,\n",
      "          'getaway': 1,\n",
      "          'enough': 1,\n",
      "          'gossip': 1,\n",
      "          'lets': 1,\n",
      "          'get': 1,\n",
      "          'review': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'kidnapping': 1,\n",
      "          'american': 1,\n",
      "          'engineer': 1,\n",
      "          'working': 1,\n",
      "          'south': 1,\n",
      "          'america': 1,\n",
      "          'kidnapped': 1,\n",
      "          'mass': 1,\n",
      "          'ambush': 1,\n",
      "          'civilians': 1,\n",
      "          'antigovernment': 1,\n",
      "          'nupon': 1,\n",
      "          'discovering': 1,\n",
      "          'identity': 1,\n",
      "          'rebel': 1,\n",
      "          'decide': 1,\n",
      "          'ransom': 1,\n",
      "          '6': 1,\n",
      "          'million': 1,\n",
      "          'problem': 1,\n",
      "          'company': 1,\n",
      "          'works': 1,\n",
      "          'auctioned': 1,\n",
      "          'step': 1,\n",
      "          'forward': 1,\n",
      "          'money': 1,\n",
      "          'nwith': 1,\n",
      "          'available': 1,\n",
      "          'bowmans': 1,\n",
      "          'alice': 1,\n",
      "          'hires': 1,\n",
      "          'highly': 1,\n",
      "          'skilled': 1,\n",
      "          'negotiator': 1,\n",
      "          'operative': 1,\n",
      "          'arrange': 1,\n",
      "          'return': 1,\n",
      "          'husband': 1,\n",
      "          'things': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'always': 1,\n",
      "          'team': 1,\n",
      "          'includes': 1,\n",
      "          'surprising': 1,\n",
      "          'casting': 1,\n",
      "          'year': 1,\n",
      "          'take': 1,\n",
      "          'matters': 1,\n",
      "          'hands': 1,\n",
      "          'notable': 1,\n",
      "          'takes': 1,\n",
      "          'simple': 1,\n",
      "          'line': 1,\n",
      "          'creates': 1,\n",
      "          'complex': 1,\n",
      "          'characterdriven': 1,\n",
      "          'vehicle': 1,\n",
      "          'filled': 1,\n",
      "          'wellwritten': 1,\n",
      "          'dialogue': 1,\n",
      "          'shades': 1,\n",
      "          'convincing': 1,\n",
      "          'based': 1,\n",
      "          'book': 1,\n",
      "          'long': 1,\n",
      "          'march': 1,\n",
      "          'freedom': 1,\n",
      "          'magazine': 1,\n",
      "          'article': 1,\n",
      "          'pertaining': 1,\n",
      "          'kidnapransom': 1,\n",
      "          'sharply': 1,\n",
      "          'pieced': 1,\n",
      "          'tony': 1,\n",
      "          'gilroy': 1,\n",
      "          'screenwriter': 1,\n",
      "          'devils': 1,\n",
      "          'advocate': 1,\n",
      "          'dolores': 1,\n",
      "          'claiborne': 1,\n",
      "          'biggest': 1,\n",
      "          'surprise': 1,\n",
      "          'ndug': 1,\n",
      "          'bmovie': 1,\n",
      "          'hell': 1,\n",
      "          'pulls': 1,\n",
      "          'gutsy': 1,\n",
      "          'performance': 1,\n",
      "          'right': 1,\n",
      "          'hand': 1,\n",
      "          'gun': 1,\n",
      "          'providing': 1,\n",
      "          'humor': 1,\n",
      "          'nryan': 1,\n",
      "          'cries': 1,\n",
      "          'lot': 1,\n",
      "          'smokes': 1,\n",
      "          'many': 1,\n",
      "          'cigarettes': 1,\n",
      "          'ends': 1,\n",
      "          'getting': 1,\n",
      "          'everyone': 1,\n",
      "          'guerilla': 1,\n",
      "          'camp': 1,\n",
      "          'hate': 1,\n",
      "          'provides': 1,\n",
      "          'another': 1,\n",
      "          'turn': 1,\n",
      "          'stoic': 1,\n",
      "          'gunslinger': 1,\n",
      "          'pieces': 1,\n",
      "          'lie': 1,\n",
      "          'bulk': 1,\n",
      "          'bookend': 1,\n",
      "          'work': 1,\n",
      "          'extremely': 1,\n",
      "          'well': 1,\n",
      "          'establishment': 1,\n",
      "          'closure': 1,\n",
      "          'devices': 1,\n",
      "          'storys': 1,\n",
      "          'characters': 1,\n",
      "          'skillfully': 1,\n",
      "          'crafted': 1,\n",
      "          'executed': 1,\n",
      "          'amazing': 1,\n",
      "          'accuracy': 1,\n",
      "          'poise': 1,\n",
      "          'ndirector': 1,\n",
      "          'taylor': 1,\n",
      "          'hackford': 1,\n",
      "          'mixes': 1,\n",
      "          'oldschool': 1,\n",
      "          'style': 1,\n",
      "          'filmmaking': 1,\n",
      "          'dizziness': 1,\n",
      "          'lars': 1,\n",
      "          'von': 1,\n",
      "          'trier': 1,\n",
      "          'thinking': 1,\n",
      "          'mans': 1,\n",
      "          'nit': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'make': 1,\n",
      "          'face': 1,\n",
      "          'love': 1,\n",
      "          'war': 1,\n",
      "          'makes': 1,\n",
      "          'help': 1,\n",
      "          'sleep': 1,\n",
      "          'night': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'john': 7,\n",
      "          'romantic': 5,\n",
      "          'serendipity': 4,\n",
      "          'thing': 4,\n",
      "          'sara': 4,\n",
      "          'funny': 3,\n",
      "          'nbut': 3,\n",
      "          'characters': 3,\n",
      "          'new': 2,\n",
      "          'comedy': 2,\n",
      "          'also': 2,\n",
      "          'nthe': 2,\n",
      "          'encounter': 2,\n",
      "          'film': 2,\n",
      "          'nmaybe': 2,\n",
      "          'piven': 2,\n",
      "          'hilarious': 2,\n",
      "          'eugene': 2,\n",
      "          'levy': 2,\n",
      "          'cusack': 2,\n",
      "          'high': 2,\n",
      "          'fidelity': 2,\n",
      "          'right': 2,\n",
      "          'people': 2,\n",
      "          'together': 2,\n",
      "          'called': 2,\n",
      "          'fate': 2,\n",
      "          'name': 2,\n",
      "          'number': 2,\n",
      "          'love': 2,\n",
      "          'happens': 2,\n",
      "          'find': 2,\n",
      "          'films': 2,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'im': 1,\n",
      "          'going': 1,\n",
      "          'bit': 1,\n",
      "          'biased': 1,\n",
      "          'review': 1,\n",
      "          'defines': 1,\n",
      "          'met': 1,\n",
      "          'current': 1,\n",
      "          'girlfriend': 1,\n",
      "          'magic': 1,\n",
      "          'mystery': 1,\n",
      "          'fated': 1,\n",
      "          'embodied': 1,\n",
      "          'quirkiness': 1,\n",
      "          'freshness': 1,\n",
      "          'ni': 1,\n",
      "          'big': 1,\n",
      "          'fan': 1,\n",
      "          'genre': 1,\n",
      "          'something': 1,\n",
      "          'drew': 1,\n",
      "          'casting': 1,\n",
      "          'underrated': 1,\n",
      "          'jeremy': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'hope': 1,\n",
      "          'would': 1,\n",
      "          'get': 1,\n",
      "          'redemption': 1,\n",
      "          'justly': 1,\n",
      "          'deserves': 1,\n",
      "          'crap': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'pushing': 1,\n",
      "          'tin': 1,\n",
      "          'maybe': 1,\n",
      "          'feel': 1,\n",
      "          'giddy': 1,\n",
      "          'school': 1,\n",
      "          'kid': 1,\n",
      "          'whole': 1,\n",
      "          'currently': 1,\n",
      "          'life': 1,\n",
      "          'story': 1,\n",
      "          'simple': 1,\n",
      "          'ntwo': 1,\n",
      "          'trager': 1,\n",
      "          'thomas': 1,\n",
      "          'kate': 1,\n",
      "          'beckinsale': 1,\n",
      "          'looking': 1,\n",
      "          'ever': 1,\n",
      "          'hot': 1,\n",
      "          'chance': 1,\n",
      "          'pair': 1,\n",
      "          'gloves': 1,\n",
      "          'buck': 1,\n",
      "          'henry': 1,\n",
      "          'smack': 1,\n",
      "          'dab': 1,\n",
      "          'middle': 1,\n",
      "          'ncharmed': 1,\n",
      "          'beyond': 1,\n",
      "          'repair': 1,\n",
      "          'two': 1,\n",
      "          'knuckleheads': 1,\n",
      "          'grab': 1,\n",
      "          'sundae': 1,\n",
      "          'caf': 1,\n",
      "          'talk': 1,\n",
      "          'irresponsible': 1,\n",
      "          'avenues': 1,\n",
      "          'leads': 1,\n",
      "          'spend': 1,\n",
      "          'hours': 1,\n",
      "          'local': 1,\n",
      "          'ice': 1,\n",
      "          'skating': 1,\n",
      "          'rink': 1,\n",
      "          'already': 1,\n",
      "          'involved': 1,\n",
      "          'parties': 1,\n",
      "          'write': 1,\n",
      "          '5': 1,\n",
      "          'bill': 1,\n",
      "          'writes': 1,\n",
      "          'copy': 1,\n",
      "          'time': 1,\n",
      "          'cholera': 1,\n",
      "          'nsara': 1,\n",
      "          'declares': 1,\n",
      "          'lets': 1,\n",
      "          'call': 1,\n",
      "          'destined': 1,\n",
      "          'happen': 1,\n",
      "          'bring': 1,\n",
      "          'future': 1,\n",
      "          'nyears': 1,\n",
      "          'later': 1,\n",
      "          'opposite': 1,\n",
      "          'coasts': 1,\n",
      "          'america': 1,\n",
      "          'engaged': 1,\n",
      "          'still': 1,\n",
      "          'unsure': 1,\n",
      "          'whether': 1,\n",
      "          'found': 1,\n",
      "          'soul': 1,\n",
      "          'mates': 1,\n",
      "          'decide': 1,\n",
      "          'seek': 1,\n",
      "          'rest': 1,\n",
      "          'doubts': 1,\n",
      "          'nwhat': 1,\n",
      "          'enjoyable': 1,\n",
      "          'often': 1,\n",
      "          'catandmouse': 1,\n",
      "          'game': 1,\n",
      "          'fates': 1,\n",
      "          'involving': 1,\n",
      "          'items': 1,\n",
      "          'mistaken': 1,\n",
      "          'identity': 1,\n",
      "          'graduate': 1,\n",
      "          'homage': 1,\n",
      "          'corbett': 1,\n",
      "          'freaky': 1,\n",
      "          'age': 1,\n",
      "          'musician': 1,\n",
      "          'irate': 1,\n",
      "          'crazed': 1,\n",
      "          'salesman': 1,\n",
      "          'nfortunately': 1,\n",
      "          'firsttime': 1,\n",
      "          'screenwriter': 1,\n",
      "          'marc': 1,\n",
      "          'klein': 1,\n",
      "          'sketched': 1,\n",
      "          'strong': 1,\n",
      "          'wellrounded': 1,\n",
      "          'propel': 1,\n",
      "          'predictable': 1,\n",
      "          'corny': 1,\n",
      "          'narrative': 1,\n",
      "          'ncoupled': 1,\n",
      "          'deft': 1,\n",
      "          'directing': 1,\n",
      "          'michael': 1,\n",
      "          'chelsom': 1,\n",
      "          'director': 1,\n",
      "          'unfunny': 1,\n",
      "          'town': 1,\n",
      "          'country': 1,\n",
      "          'bones': 1,\n",
      "          'use': 1,\n",
      "          'timelapse': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'illustrate': 1,\n",
      "          'passage': 1,\n",
      "          'years': 1,\n",
      "          'comes': 1,\n",
      "          'genuine': 1,\n",
      "          'believability': 1,\n",
      "          'sincerity': 1,\n",
      "          'nboth': 1,\n",
      "          'molly': 1,\n",
      "          'shannon': 1,\n",
      "          'make': 1,\n",
      "          'nice': 1,\n",
      "          'sidekick': 1,\n",
      "          'non': 1,\n",
      "          'flipside': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'mail': 1,\n",
      "          'made': 1,\n",
      "          'heaven': 1,\n",
      "          'even': 1,\n",
      "          'quiet': 1,\n",
      "          'inspirations': 1,\n",
      "          'main': 1,\n",
      "          'journey': 1,\n",
      "          'hand': 1,\n",
      "          'unexpecting': 1,\n",
      "          'left': 1,\n",
      "          'behind': 1,\n",
      "          'wake': 1,\n",
      "          'happiness': 1,\n",
      "          'unsettling': 1,\n",
      "          'part': 1,\n",
      "          'picture': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'two': 7,\n",
      "          'simon': 5,\n",
      "          'birch': 5,\n",
      "          'hes': 5,\n",
      "          'nin': 4,\n",
      "          'johnson': 3,\n",
      "          'nthe': 3,\n",
      "          'joe': 3,\n",
      "          'movie': 2,\n",
      "          'band': 2,\n",
      "          'far': 2,\n",
      "          'much': 2,\n",
      "          'means': 2,\n",
      "          'come': 2,\n",
      "          'steven': 2,\n",
      "          'audience': 2,\n",
      "          'film': 2,\n",
      "          'turn': 2,\n",
      "          'characters': 2,\n",
      "          'ian': 2,\n",
      "          'michael': 2,\n",
      "          'smith': 2,\n",
      "          'nsimon': 2,\n",
      "          'age': 2,\n",
      "          'twelve': 2,\n",
      "          'njoe': 2,\n",
      "          'judd': 2,\n",
      "          'friends': 2,\n",
      "          'school': 2,\n",
      "          'little': 2,\n",
      "          'performance': 2,\n",
      "          'ben': 2,\n",
      "          'platt': 2,\n",
      "          'present': 2,\n",
      "          'drama': 2,\n",
      "          'based': 2,\n",
      "          'ought': 2,\n",
      "          'different': 2,\n",
      "          'look': 2,\n",
      "          'regards': 1,\n",
      "          'making': 1,\n",
      "          'like': 1,\n",
      "          'trying': 1,\n",
      "          'stretch': 1,\n",
      "          'rubber': 1,\n",
      "          'without': 1,\n",
      "          'breaking': 1,\n",
      "          'ntry': 1,\n",
      "          'hard': 1,\n",
      "          'snaps': 1,\n",
      "          'reservation': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'along': 1,\n",
      "          'pull': 1,\n",
      "          'farther': 1,\n",
      "          'director': 1,\n",
      "          'mark': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'master': 1,\n",
      "          'technique': 1,\n",
      "          'takes': 1,\n",
      "          'advantage': 1,\n",
      "          'caution': 1,\n",
      "          'poise': 1,\n",
      "          'also': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'risks': 1,\n",
      "          'bold': 1,\n",
      "          'steps': 1,\n",
      "          'end': 1,\n",
      "          'holding': 1,\n",
      "          'unbroken': 1,\n",
      "          'makes': 1,\n",
      "          'appreciate': 1,\n",
      "          'lengths': 1,\n",
      "          'went': 1,\n",
      "          'direct': 1,\n",
      "          'fine': 1,\n",
      "          'feature': 1,\n",
      "          'ntheres': 1,\n",
      "          'doubt': 1,\n",
      "          'crafted': 1,\n",
      "          'rich': 1,\n",
      "          'nhe': 1,\n",
      "          'chooses': 1,\n",
      "          'setting': 1,\n",
      "          'quaint': 1,\n",
      "          'town': 1,\n",
      "          'gravestown': 1,\n",
      "          'maine': 1,\n",
      "          'leaves': 1,\n",
      "          'bright': 1,\n",
      "          'orange': 1,\n",
      "          'fall': 1,\n",
      "          'grass': 1,\n",
      "          'lush': 1,\n",
      "          'green': 1,\n",
      "          'pure': 1,\n",
      "          'white': 1,\n",
      "          'snow': 1,\n",
      "          'falls': 1,\n",
      "          'winter': 1,\n",
      "          'sky': 1,\n",
      "          'goes': 1,\n",
      "          'forever': 1,\n",
      "          'continue': 1,\n",
      "          'leads': 1,\n",
      "          'wenteworth': 1,\n",
      "          'joseph': 1,\n",
      "          'mazzello': 1,\n",
      "          'smallest': 1,\n",
      "          'baby': 1,\n",
      "          'ever': 1,\n",
      "          'born': 1,\n",
      "          'within': 1,\n",
      "          'records': 1,\n",
      "          'local': 1,\n",
      "          'hospital': 1,\n",
      "          'feet': 1,\n",
      "          'tall': 1,\n",
      "          'bastard': 1,\n",
      "          'son': 1,\n",
      "          'rebecca': 1,\n",
      "          'ashley': 1,\n",
      "          'ready': 1,\n",
      "          'know': 1,\n",
      "          'father': 1,\n",
      "          'nnaturally': 1,\n",
      "          'outcasts': 1,\n",
      "          'become': 1,\n",
      "          'good': 1,\n",
      "          'share': 1,\n",
      "          'many': 1,\n",
      "          'adventures': 1,\n",
      "          'together': 1,\n",
      "          'disrupting': 1,\n",
      "          'sunday': 1,\n",
      "          'community': 1,\n",
      "          'service': 1,\n",
      "          'playing': 1,\n",
      "          'league': 1,\n",
      "          'baseball': 1,\n",
      "          'wonderfully': 1,\n",
      "          'executed': 1,\n",
      "          'convinced': 1,\n",
      "          'gods': 1,\n",
      "          'instrument': 1,\n",
      "          'must': 1,\n",
      "          'reason': 1,\n",
      "          'small': 1,\n",
      "          'doesnt': 1,\n",
      "          'quite': 1,\n",
      "          'buy': 1,\n",
      "          'sticks': 1,\n",
      "          'tough': 1,\n",
      "          'worst': 1,\n",
      "          'times': 1,\n",
      "          'others': 1,\n",
      "          'true': 1,\n",
      "          'nearly': 1,\n",
      "          'meet': 1,\n",
      "          'goodrich': 1,\n",
      "          'oliver': 1,\n",
      "          'rebeccas': 1,\n",
      "          'new': 1,\n",
      "          'boyfriend': 1,\n",
      "          'although': 1,\n",
      "          'bond': 1,\n",
      "          'isnt': 1,\n",
      "          'immediate': 1,\n",
      "          'boys': 1,\n",
      "          'develop': 1,\n",
      "          'liking': 1,\n",
      "          'nboth': 1,\n",
      "          'give': 1,\n",
      "          'solid': 1,\n",
      "          'performances': 1,\n",
      "          'lend': 1,\n",
      "          'deep': 1,\n",
      "          'likeability': 1,\n",
      "          'cares': 1,\n",
      "          'testament': 1,\n",
      "          'acting': 1,\n",
      "          'jobs': 1,\n",
      "          'nfinally': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'gives': 1,\n",
      "          'cameo': 1,\n",
      "          'adult': 1,\n",
      "          'day': 1,\n",
      "          'minutes': 1,\n",
      "          'relatively': 1,\n",
      "          'impressive': 1,\n",
      "          'entire': 1,\n",
      "          'truman': 1,\n",
      "          'show': 1,\n",
      "          'nmark': 1,\n",
      "          'johnsons': 1,\n",
      "          'sense': 1,\n",
      "          'writing': 1,\n",
      "          'fantastic': 1,\n",
      "          'script': 1,\n",
      "          'loosely': 1,\n",
      "          'john': 1,\n",
      "          'irvings': 1,\n",
      "          'novel': 1,\n",
      "          'prayer': 1,\n",
      "          'owen': 1,\n",
      "          'meany': 1,\n",
      "          'source': 1,\n",
      "          'material': 1,\n",
      "          'irving': 1,\n",
      "          'actually': 1,\n",
      "          'requested': 1,\n",
      "          'credits': 1,\n",
      "          'changed': 1,\n",
      "          'suggested': 1,\n",
      "          'nalong': 1,\n",
      "          'lines': 1,\n",
      "          'almost': 1,\n",
      "          'unfitting': 1,\n",
      "          'compare': 1,\n",
      "          'uses': 1,\n",
      "          'tension': 1,\n",
      "          'humor': 1,\n",
      "          'atmosphere': 1,\n",
      "          'suspense': 1,\n",
      "          'create': 1,\n",
      "          'original': 1,\n",
      "          'forrest': 1,\n",
      "          'gumpian': 1,\n",
      "          'proportions': 1,\n",
      "          'nby': 1,\n",
      "          'developed': 1,\n",
      "          'project': 1,\n",
      "          'similar': 1,\n",
      "          'popularity': 1,\n",
      "          'gump': 1,\n",
      "          'made': 1,\n",
      "          '300': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'pass': 1,\n",
      "          'sight': 1,\n",
      "          'weeks': 1,\n",
      "          'winning': 1,\n",
      "          'idea': 1,\n",
      "          'remains': 1,\n",
      "          'life': 1,\n",
      "          'one': 1,\n",
      "          'likely': 1,\n",
      "          'studied': 1,\n",
      "          'classes': 1,\n",
      "          'decades': 1,\n",
      "          'however': 1,\n",
      "          'enjoyable': 1,\n",
      "          'picture': 1,\n",
      "          'everyone': 1,\n",
      "          'take': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mr': 7,\n",
      "          'crime': 5,\n",
      "          'story': 5,\n",
      "          'tarantino': 4,\n",
      "          'dogs': 4,\n",
      "          'pulp': 4,\n",
      "          'fiction': 4,\n",
      "          'time': 4,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'scene': 4,\n",
      "          'would': 3,\n",
      "          'nreservoir': 3,\n",
      "          'joe': 3,\n",
      "          'five': 3,\n",
      "          'criminals': 3,\n",
      "          'cops': 3,\n",
      "          'white': 3,\n",
      "          'blonde': 3,\n",
      "          'police': 3,\n",
      "          'like': 3,\n",
      "          'movie': 3,\n",
      "          'never': 2,\n",
      "          'two': 2,\n",
      "          'much': 2,\n",
      "          'less': 2,\n",
      "          'pf': 2,\n",
      "          'movies': 2,\n",
      "          'dialogue': 2,\n",
      "          'relevance': 2,\n",
      "          'plot': 2,\n",
      "          'rather': 2,\n",
      "          'three': 2,\n",
      "          'keitel': 2,\n",
      "          'roth': 2,\n",
      "          'buscemi': 2,\n",
      "          'names': 2,\n",
      "          'given': 2,\n",
      "          'pink': 2,\n",
      "          'orange': 2,\n",
      "          'running': 2,\n",
      "          'sequences': 2,\n",
      "          'rest': 2,\n",
      "          'basis': 1,\n",
      "          'film': 1,\n",
      "          'alone': 1,\n",
      "          'predicted': 1,\n",
      "          'years': 1,\n",
      "          'quentin': 1,\n",
      "          'become': 1,\n",
      "          'countrys': 1,\n",
      "          'biggest': 1,\n",
      "          'hotshot': 1,\n",
      "          'director': 1,\n",
      "          'hints': 1,\n",
      "          'brilliance': 1,\n",
      "          'emerged': 1,\n",
      "          'substantive': 1,\n",
      "          'conventional': 1,\n",
      "          'big': 1,\n",
      "          'nheres': 1,\n",
      "          'common': 1,\n",
      "          'nscenes': 1,\n",
      "          'intelligent': 1,\n",
      "          'amusing': 1,\n",
      "          'jumps': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'going': 1,\n",
      "          'logical': 1,\n",
      "          'chronological': 1,\n",
      "          'sequence': 1,\n",
      "          'graphic': 1,\n",
      "          'yet': 1,\n",
      "          'necessary': 1,\n",
      "          'violence': 1,\n",
      "          'engaging': 1,\n",
      "          'liberally': 1,\n",
      "          'spiced': 1,\n",
      "          'swear': 1,\n",
      "          'words': 1,\n",
      "          'racialgender': 1,\n",
      "          'slurs': 1,\n",
      "          'actors': 1,\n",
      "          'harvey': 1,\n",
      "          'tim': 1,\n",
      "          'steve': 1,\n",
      "          'mexican': 1,\n",
      "          'standoff': 1,\n",
      "          'ending': 1,\n",
      "          'although': 1,\n",
      "          'considerably': 1,\n",
      "          'optimistic': 1,\n",
      "          'entire': 1,\n",
      "          'hour': 1,\n",
      "          'shorter': 1,\n",
      "          'got': 1,\n",
      "          'tell': 1,\n",
      "          'ncrime': 1,\n",
      "          'lord': 1,\n",
      "          'cabot': 1,\n",
      "          'veteran': 1,\n",
      "          'actor': 1,\n",
      "          'lawrence': 1,\n",
      "          'tierney': 1,\n",
      "          'assembled': 1,\n",
      "          'even': 1,\n",
      "          'met': 1,\n",
      "          'pull': 1,\n",
      "          'diamond': 1,\n",
      "          'store': 1,\n",
      "          'heist': 1,\n",
      "          'instructed': 1,\n",
      "          'reveal': 1,\n",
      "          'real': 1,\n",
      "          'personal': 1,\n",
      "          'details': 1,\n",
      "          'anything': 1,\n",
      "          'could': 1,\n",
      "          'use': 1,\n",
      "          'captured': 1,\n",
      "          'interrogated': 1,\n",
      "          'ninstead': 1,\n",
      "          'code': 1,\n",
      "          'color': 1,\n",
      "          'chart': 1,\n",
      "          'michael': 1,\n",
      "          'madsen': 1,\n",
      "          'brown': 1,\n",
      "          'peach': 1,\n",
      "          'tarantinos': 1,\n",
      "          'chin': 1,\n",
      "          'nmost': 1,\n",
      "          'spent': 1,\n",
      "          'waiting': 1,\n",
      "          'warehouse': 1,\n",
      "          'others': 1,\n",
      "          'arrive': 1,\n",
      "          'nmr': 1,\n",
      "          'meanwhile': 1,\n",
      "          'floor': 1,\n",
      "          'dying': 1,\n",
      "          'gunshot': 1,\n",
      "          'wound': 1,\n",
      "          'arrived': 1,\n",
      "          'way': 1,\n",
      "          'soon': 1,\n",
      "          'leading': 1,\n",
      "          'believe': 1,\n",
      "          'informant': 1,\n",
      "          'storys': 1,\n",
      "          'background': 1,\n",
      "          'unfolds': 1,\n",
      "          'series': 1,\n",
      "          'flashbacks': 1,\n",
      "          'meetings': 1,\n",
      "          'prior': 1,\n",
      "          'neventually': 1,\n",
      "          'arrives': 1,\n",
      "          'officer': 1,\n",
      "          'hostage': 1,\n",
      "          'follows': 1,\n",
      "          'truly': 1,\n",
      "          'brutal': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'torture': 1,\n",
      "          'nlets': 1,\n",
      "          'say': 1,\n",
      "          'picasso': 1,\n",
      "          'inspired': 1,\n",
      "          'ear': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'reservoir': 1,\n",
      "          'seems': 1,\n",
      "          'typical': 1,\n",
      "          'gangster': 1,\n",
      "          'heistgonewrong': 1,\n",
      "          'uniquely': 1,\n",
      "          'opening': 1,\n",
      "          'coffee': 1,\n",
      "          'shop': 1,\n",
      "          'starts': 1,\n",
      "          'high': 1,\n",
      "          'note': 1,\n",
      "          'doesnt': 1,\n",
      "          'live': 1,\n",
      "          'plus': 1,\n",
      "          'conversation': 1,\n",
      "          'among': 1,\n",
      "          'things': 1,\n",
      "          'tipping': 1,\n",
      "          'philosophies': 1,\n",
      "          'interpretations': 1,\n",
      "          'madonnas': 1,\n",
      "          'virgin': 1,\n",
      "          'nanother': 1,\n",
      "          'involves': 1,\n",
      "          'roths': 1,\n",
      "          'lengthy': 1,\n",
      "          'manufactured': 1,\n",
      "          'group': 1,\n",
      "          'dog': 1,\n",
      "          'bus': 1,\n",
      "          'station': 1,\n",
      "          'bathroom': 1,\n",
      "          'carrying': 1,\n",
      "          'giant': 1,\n",
      "          'bag': 1,\n",
      "          'marijuana': 1,\n",
      "          'nneither': 1,\n",
      "          'ample': 1,\n",
      "          'develop': 1,\n",
      "          'captain': 1,\n",
      "          'koons': 1,\n",
      "          'gold': 1,\n",
      "          'watch': 1,\n",
      "          'speech': 1,\n",
      "          'enjoyable': 1,\n",
      "          'good': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'computer': 8,\n",
      "          'kind': 5,\n",
      "          'violence': 4,\n",
      "          'war': 4,\n",
      "          'computers': 4,\n",
      "          'play': 3,\n",
      "          'norad': 3,\n",
      "          'ni': 3,\n",
      "          'modem': 3,\n",
      "          'good': 2,\n",
      "          'movie': 2,\n",
      "          'watching': 2,\n",
      "          'potential': 2,\n",
      "          'nand': 2,\n",
      "          'could': 2,\n",
      "          'wargames': 2,\n",
      "          'david': 2,\n",
      "          'hacking': 2,\n",
      "          'school': 2,\n",
      "          'nbut': 2,\n",
      "          'game': 2,\n",
      "          'nuclear': 2,\n",
      "          'hardly': 2,\n",
      "          'giving': 2,\n",
      "          'days': 2,\n",
      "          'still': 2,\n",
      "          'since': 2,\n",
      "          'parents': 2,\n",
      "          'like': 2,\n",
      "          'secret': 2,\n",
      "          'see': 2,\n",
      "          'technology': 2,\n",
      "          'calling': 2,\n",
      "          'nthe': 2,\n",
      "          'fact': 1,\n",
      "          'thriller': 1,\n",
      "          'action': 1,\n",
      "          'doesnt': 1,\n",
      "          'need': 1,\n",
      "          'worth': 1,\n",
      "          'nall': 1,\n",
      "          'takes': 1,\n",
      "          'make': 1,\n",
      "          'audience': 1,\n",
      "          'bite': 1,\n",
      "          'nails': 1,\n",
      "          'efficient': 1,\n",
      "          'global': 1,\n",
      "          'thermonuclear': 1,\n",
      "          'premiss': 1,\n",
      "          'built': 1,\n",
      "          'upon': 1,\n",
      "          'na': 1,\n",
      "          'whizkid': 1,\n",
      "          'usually': 1,\n",
      "          'contended': 1,\n",
      "          'change': 1,\n",
      "          'grades': 1,\n",
      "          'read': 1,\n",
      "          'advertisment': 1,\n",
      "          'upcoming': 1,\n",
      "          'wants': 1,\n",
      "          'first': 1,\n",
      "          'ninstead': 1,\n",
      "          'getting': 1,\n",
      "          'protovision': 1,\n",
      "          'software': 1,\n",
      "          'accidentally': 1,\n",
      "          'comes': 1,\n",
      "          'frontgate': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'jennifer': 1,\n",
      "          'girl': 1,\n",
      "          'biology': 1,\n",
      "          'class': 1,\n",
      "          'starts': 1,\n",
      "          'nice': 1,\n",
      "          'wopr': 1,\n",
      "          'operation': 1,\n",
      "          'plan': 1,\n",
      "          'response': 1,\n",
      "          'topnotch': 1,\n",
      "          'time': 1,\n",
      "          'faster': 1,\n",
      "          'remember': 1,\n",
      "          '12': 1,\n",
      "          'cinema': 1,\n",
      "          'nit': 1,\n",
      "          'efficent': 1,\n",
      "          'scare': 1,\n",
      "          'hasnt': 1,\n",
      "          'changed': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'seemed': 1,\n",
      "          'much': 1,\n",
      "          'something': 1,\n",
      "          'actually': 1,\n",
      "          'happen': 1,\n",
      "          'back': 1,\n",
      "          '1983': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprised': 1,\n",
      "          'gave': 1,\n",
      "          'people': 1,\n",
      "          'nightmares': 1,\n",
      "          'hope': 1,\n",
      "          'hear': 1,\n",
      "          'kids': 1,\n",
      "          'pentagon': 1,\n",
      "          'nbroderick': 1,\n",
      "          'sheedy': 1,\n",
      "          'fine': 1,\n",
      "          'young': 1,\n",
      "          'teenagers': 1,\n",
      "          'although': 1,\n",
      "          'interest': 1,\n",
      "          'remains': 1,\n",
      "          'mystery': 1,\n",
      "          'rest': 1,\n",
      "          'actors': 1,\n",
      "          'fault': 1,\n",
      "          'restricted': 1,\n",
      "          'script': 1,\n",
      "          'onedimensional': 1,\n",
      "          'grownups': 1,\n",
      "          'ndavids': 1,\n",
      "          'populate': 1,\n",
      "          'college': 1,\n",
      "          'comedies': 1,\n",
      "          '1980s': 1,\n",
      "          'movies': 1,\n",
      "          'admirer': 1,\n",
      "          'porkys': 1,\n",
      "          'zapped': 1,\n",
      "          'general': 1,\n",
      "          'beringer': 1,\n",
      "          'straight': 1,\n",
      "          'dr': 1,\n",
      "          'strangelove': 1,\n",
      "          'nif': 1,\n",
      "          'reason': 1,\n",
      "          'enjoy': 1,\n",
      "          'far': 1,\n",
      "          'gone': 1,\n",
      "          'ndavid': 1,\n",
      "          'uses': 1,\n",
      "          'telephone': 1,\n",
      "          'friends': 1,\n",
      "          'device': 1,\n",
      "          'puts': 1,\n",
      "          'headset': 1,\n",
      "          'nfar': 1,\n",
      "          '56k': 1,\n",
      "          'guess': 1,\n",
      "          '2400': 1,\n",
      "          'bps': 1,\n",
      "          'find': 1,\n",
      "          'local': 1,\n",
      "          'technical': 1,\n",
      "          'museum': 1,\n",
      "          'big': 1,\n",
      "          'lot': 1,\n",
      "          'flashing': 1,\n",
      "          'lights': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'old': 1,\n",
      "          'sfmovie': 1,\n",
      "          'impressing': 1,\n",
      "          'compared': 1,\n",
      "          'get': 1,\n",
      "          'today': 1,\n",
      "          'nwhat': 1,\n",
      "          'lessons': 1,\n",
      "          'learn': 1,\n",
      "          'n1': 1,\n",
      "          'nmake': 1,\n",
      "          'sure': 1,\n",
      "          'backdoors': 1,\n",
      "          'military': 1,\n",
      "          'n2': 1,\n",
      "          'thank': 1,\n",
      "          'whoever': 1,\n",
      "          'us': 1,\n",
      "          'graphical': 1,\n",
      "          'user': 1,\n",
      "          'interface': 1,\n",
      "          'use': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'suspense': 5,\n",
      "          'movies': 4,\n",
      "          'fans': 4,\n",
      "          'ronin': 4,\n",
      "          'package': 4,\n",
      "          'action': 3,\n",
      "          'movie': 3,\n",
      "          'script': 3,\n",
      "          'mission': 3,\n",
      "          'becomes': 3,\n",
      "          'successful': 2,\n",
      "          'naction': 2,\n",
      "          'plot': 2,\n",
      "          'ability': 2,\n",
      "          'everything': 2,\n",
      "          'however': 2,\n",
      "          'realism': 2,\n",
      "          'want': 2,\n",
      "          'fall': 2,\n",
      "          'end': 2,\n",
      "          'quite': 2,\n",
      "          'years': 2,\n",
      "          'zeik': 2,\n",
      "          'people': 2,\n",
      "          'impossible': 2,\n",
      "          'times': 2,\n",
      "          'tale': 2,\n",
      "          'well': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'cast': 2,\n",
      "          'almost': 2,\n",
      "          'might': 2,\n",
      "          'become': 2,\n",
      "          'good': 2,\n",
      "          'exists': 1,\n",
      "          'litany': 1,\n",
      "          'differences': 1,\n",
      "          'typically': 1,\n",
      "          'devoid': 1,\n",
      "          'simple': 1,\n",
      "          'byline': 1,\n",
      "          'string': 1,\n",
      "          'together': 1,\n",
      "          'several': 1,\n",
      "          'explosive': 1,\n",
      "          'sequences': 1,\n",
      "          'hinge': 1,\n",
      "          'subtlety': 1,\n",
      "          'bring': 1,\n",
      "          'fullcircle': 1,\n",
      "          'nfor': 1,\n",
      "          'genres': 1,\n",
      "          'key': 1,\n",
      "          'know': 1,\n",
      "          'weapons': 1,\n",
      "          'methods': 1,\n",
      "          'heroes': 1,\n",
      "          'using': 1,\n",
      "          'authentic': 1,\n",
      "          'explainable': 1,\n",
      "          'framework': 1,\n",
      "          'non': 1,\n",
      "          'advice': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'frankenheimer': 1,\n",
      "          'island': 1,\n",
      "          'dr': 1,\n",
      "          'nmoreau': 1,\n",
      "          'strives': 1,\n",
      "          'interestingly': 1,\n",
      "          'dynamic': 1,\n",
      "          'balance': 1,\n",
      "          'latest': 1,\n",
      "          'thriller': 1,\n",
      "          'depth': 1,\n",
      "          'intrigue': 1,\n",
      "          'amazing': 1,\n",
      "          'considering': 1,\n",
      "          'fare': 1,\n",
      "          'thats': 1,\n",
      "          'fallen': 1,\n",
      "          'category': 1,\n",
      "          'last': 1,\n",
      "          'written': 1,\n",
      "          'j': 1,\n",
      "          'bigscreen': 1,\n",
      "          'debut': 1,\n",
      "          'approaches': 1,\n",
      "          'levels': 1,\n",
      "          'complexity': 1,\n",
      "          'spinning': 1,\n",
      "          'away': 1,\n",
      "          'two': 1,\n",
      "          'ago': 1,\n",
      "          'na': 1,\n",
      "          'certain': 1,\n",
      "          'number': 1,\n",
      "          'lost': 1,\n",
      "          'afficianados': 1,\n",
      "          'appreciate': 1,\n",
      "          'return': 1,\n",
      "          'multiple': 1,\n",
      "          'nfrankenheimer': 1,\n",
      "          'masters': 1,\n",
      "          'poise': 1,\n",
      "          'tells': 1,\n",
      "          'us': 1,\n",
      "          'dark': 1,\n",
      "          'stoically': 1,\n",
      "          'realistic': 1,\n",
      "          'group': 1,\n",
      "          'postcold': 1,\n",
      "          'war': 1,\n",
      "          'mercenaries': 1,\n",
      "          'working': 1,\n",
      "          'earn': 1,\n",
      "          'paycheck': 1,\n",
      "          'nhis': 1,\n",
      "          'convey': 1,\n",
      "          'feeling': 1,\n",
      "          'character': 1,\n",
      "          'promoting': 1,\n",
      "          'explosiveness': 1,\n",
      "          'tense': 1,\n",
      "          'atmosphere': 1,\n",
      "          'works': 1,\n",
      "          'better': 1,\n",
      "          'nrobert': 1,\n",
      "          'headlines': 1,\n",
      "          'noteworthies': 1,\n",
      "          'performance': 1,\n",
      "          'outstanding': 1,\n",
      "          'time': 1,\n",
      "          'nhe': 1,\n",
      "          'takes': 1,\n",
      "          'command': 1,\n",
      "          'offers': 1,\n",
      "          'much': 1,\n",
      "          'gravity': 1,\n",
      "          'exspy': 1,\n",
      "          'sam': 1,\n",
      "          'man': 1,\n",
      "          'whos': 1,\n",
      "          'called': 1,\n",
      "          'france': 1,\n",
      "          'help': 1,\n",
      "          'shady': 1,\n",
      "          'operations': 1,\n",
      "          'controller': 1,\n",
      "          'named': 1,\n",
      "          'dierdre': 1,\n",
      "          'natascha': 1,\n",
      "          'mcelhone': 1,\n",
      "          'recover': 1,\n",
      "          'central': 1,\n",
      "          'motivator': 1,\n",
      "          'entire': 1,\n",
      "          'especially': 1,\n",
      "          'requisite': 1,\n",
      "          'doublecrossing': 1,\n",
      "          'begins': 1,\n",
      "          'role': 1,\n",
      "          'skillfully': 1,\n",
      "          'penned': 1,\n",
      "          'nat': 1,\n",
      "          'zeiks': 1,\n",
      "          'reminiscent': 1,\n",
      "          'easily': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'cruises': 1,\n",
      "          'computer': 1,\n",
      "          'disk': 1,\n",
      "          'nfortunately': 1,\n",
      "          'focus': 1,\n",
      "          'entirely': 1,\n",
      "          'whereas': 1,\n",
      "          'concerned': 1,\n",
      "          'doublecross': 1,\n",
      "          'happened': 1,\n",
      "          'content': 1,\n",
      "          'impressive': 1,\n",
      "          'lives': 1,\n",
      "          'hints': 1,\n",
      "          'given': 1,\n",
      "          'previews': 1,\n",
      "          'disappointed': 1,\n",
      "          'expect': 1,\n",
      "          'fullblown': 1,\n",
      "          'combat': 1,\n",
      "          'scenes': 1,\n",
      "          'instead': 1,\n",
      "          'forced': 1,\n",
      "          'suffer': 1,\n",
      "          'moments': 1,\n",
      "          'slowness': 1,\n",
      "          'nronin': 1,\n",
      "          'take': 1,\n",
      "          'degree': 1,\n",
      "          'intelligence': 1,\n",
      "          'follow': 1,\n",
      "          'nuance': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'even': 1,\n",
      "          'uninitiated': 1,\n",
      "          'able': 1,\n",
      "          'keep': 1,\n",
      "          'grasp': 1,\n",
      "          'characters': 1,\n",
      "          'mand': 1,\n",
      "          'subplots': 1,\n",
      "          'tapers': 1,\n",
      "          'considerably': 1,\n",
      "          'bit': 1,\n",
      "          'drawback': 1,\n",
      "          'height': 1,\n",
      "          'open': 1,\n",
      "          'nconsidering': 1,\n",
      "          'factors': 1,\n",
      "          'see': 1,\n",
      "          'project': 1,\n",
      "          'turned': 1,\n",
      "          'another': 1,\n",
      "          'bet': 1,\n",
      "          'month': 1,\n",
      "          'nsince': 1,\n",
      "          'quality': 1,\n",
      "          'usually': 1,\n",
      "          'sparse': 1,\n",
      "          'early': 1,\n",
      "          'months': 1,\n",
      "          'definitely': 1,\n",
      "          'worth': 1,\n",
      "          'visit': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'silent': 8,\n",
      "          'bob': 7,\n",
      "          'jay': 5,\n",
      "          'strike': 5,\n",
      "          'back': 5,\n",
      "          'nthe': 5,\n",
      "          'humor': 4,\n",
      "          'nin': 4,\n",
      "          'year': 4,\n",
      "          'movies': 4,\n",
      "          'njay': 4,\n",
      "          'film': 4,\n",
      "          'kevin': 3,\n",
      "          'smiths': 3,\n",
      "          'audience': 3,\n",
      "          'funniest': 3,\n",
      "          'nit': 3,\n",
      "          'famous': 2,\n",
      "          'best': 2,\n",
      "          'ive': 2,\n",
      "          'seen': 2,\n",
      "          'laughter': 2,\n",
      "          'like': 2,\n",
      "          'find': 2,\n",
      "          'n': 2,\n",
      "          'one': 2,\n",
      "          'smith': 2,\n",
      "          'stop': 2,\n",
      "          'comic': 2,\n",
      "          'book': 2,\n",
      "          'alter': 2,\n",
      "          'used': 2,\n",
      "          'van': 2,\n",
      "          'make': 2,\n",
      "          'enough': 2,\n",
      "          'tickets': 2,\n",
      "          'anything': 2,\n",
      "          'even': 2,\n",
      "          'jokes': 2,\n",
      "          'youll': 2,\n",
      "          'still': 2,\n",
      "          'nits': 2,\n",
      "          'nhis': 2,\n",
      "          'crude': 2,\n",
      "          'justice': 2,\n",
      "          'contains': 2,\n",
      "          'high': 2,\n",
      "          'thus': 2,\n",
      "          'far': 2,\n",
      "          'swan': 1,\n",
      "          'song': 1,\n",
      "          'two': 1,\n",
      "          'characters': 1,\n",
      "          'received': 1,\n",
      "          'comedy': 1,\n",
      "          'since': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'tea': 1,\n",
      "          'party': 1,\n",
      "          'comparison': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'didnt': 1,\n",
      "          'laugh': 1,\n",
      "          'went': 1,\n",
      "          'wild': 1,\n",
      "          'boisterous': 1,\n",
      "          'heavy': 1,\n",
      "          'applause': 1,\n",
      "          'throughout': 1,\n",
      "          'short': 1,\n",
      "          'really': 1,\n",
      "          'raunchy': 1,\n",
      "          'may': 1,\n",
      "          'hand': 1,\n",
      "          'walked': 1,\n",
      "          'disgust': 1,\n",
      "          'dogma': 1,\n",
      "          'fastest': 1,\n",
      "          'paced': 1,\n",
      "          'story': 1,\n",
      "          'jason': 1,\n",
      "          'mewes': 1,\n",
      "          'pair': 1,\n",
      "          'card': 1,\n",
      "          'carrying': 1,\n",
      "          'drug': 1,\n",
      "          'dealers': 1,\n",
      "          'traveling': 1,\n",
      "          'new': 1,\n",
      "          'jersey': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'home': 1,\n",
      "          'hollywood': 1,\n",
      "          'seems': 1,\n",
      "          'egos': 1,\n",
      "          'bluntman': 1,\n",
      "          'chronic': 1,\n",
      "          'without': 1,\n",
      "          'bobs': 1,\n",
      "          'consent': 1,\n",
      "          'njason': 1,\n",
      "          'biggs': 1,\n",
      "          'james': 1,\n",
      "          'der': 1,\n",
      "          'beek': 1,\n",
      "          'slated': 1,\n",
      "          'star': 1,\n",
      "          'better': 1,\n",
      "          'cameos': 1,\n",
      "          'ever': 1,\n",
      "          'namong': 1,\n",
      "          'others': 1,\n",
      "          'include': 1,\n",
      "          'carrie': 1,\n",
      "          'fisher': 1,\n",
      "          'bibletoting': 1,\n",
      "          'nun': 1,\n",
      "          'mark': 1,\n",
      "          'hamill': 1,\n",
      "          'version': 1,\n",
      "          'ego': 1,\n",
      "          'gus': 1,\n",
      "          'sant': 1,\n",
      "          'director': 1,\n",
      "          'busy': 1,\n",
      "          'counting': 1,\n",
      "          'money': 1,\n",
      "          'yell': 1,\n",
      "          'action': 1,\n",
      "          'nbest': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'mock': 1,\n",
      "          'stops': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'fun': 1,\n",
      "          'stupid': 1,\n",
      "          'buy': 1,\n",
      "          'actually': 1,\n",
      "          'purchasing': 1,\n",
      "          'extremely': 1,\n",
      "          'smart': 1,\n",
      "          'given': 1,\n",
      "          'delivers': 1,\n",
      "          'per': 1,\n",
      "          'dollar': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'skewers': 1,\n",
      "          'people': 1,\n",
      "          'write': 1,\n",
      "          'internet': 1,\n",
      "          'nguilty': 1,\n",
      "          'nalthough': 1,\n",
      "          'filled': 1,\n",
      "          'inside': 1,\n",
      "          'laughing': 1,\n",
      "          'get': 1,\n",
      "          'easy': 1,\n",
      "          'understand': 1,\n",
      "          'funny': 1,\n",
      "          'motor': 1,\n",
      "          'mouth': 1,\n",
      "          'hasnt': 1,\n",
      "          'met': 1,\n",
      "          'subject': 1,\n",
      "          'couldnt': 1,\n",
      "          'vulgarize': 1,\n",
      "          'favorite': 1,\n",
      "          'topic': 1,\n",
      "          'oral': 1,\n",
      "          'sex': 1,\n",
      "          'equal': 1,\n",
      "          'opportunity': 1,\n",
      "          'profaner': 1,\n",
      "          'hes': 1,\n",
      "          'willing': 1,\n",
      "          'absolutely': 1,\n",
      "          'nbut': 1,\n",
      "          'buddy': 1,\n",
      "          'aptly': 1,\n",
      "          'named': 1,\n",
      "          'responsible': 1,\n",
      "          'success': 1,\n",
      "          'reaction': 1,\n",
      "          'shots': 1,\n",
      "          'wildly': 1,\n",
      "          'exaggerated': 1,\n",
      "          'eye': 1,\n",
      "          'movements': 1,\n",
      "          'comedic': 1,\n",
      "          'gems': 1,\n",
      "          'storys': 1,\n",
      "          'main': 1,\n",
      "          'subplot': 1,\n",
      "          'concerns': 1,\n",
      "          'four': 1,\n",
      "          'animal': 1,\n",
      "          'rights': 1,\n",
      "          'activists': 1,\n",
      "          'shannon': 1,\n",
      "          'elizabeth': 1,\n",
      "          'three': 1,\n",
      "          'sexy': 1,\n",
      "          'buddies': 1,\n",
      "          'sissy': 1,\n",
      "          'eliza': 1,\n",
      "          'dushku': 1,\n",
      "          'missy': 1,\n",
      "          'jennifer': 1,\n",
      "          'schwalbach': 1,\n",
      "          'chrissy': 1,\n",
      "          'ali': 1,\n",
      "          'larter': 1,\n",
      "          'nthese': 1,\n",
      "          'charlies': 1,\n",
      "          'angels': 1,\n",
      "          'types': 1,\n",
      "          'give': 1,\n",
      "          'ride': 1,\n",
      "          'heroes': 1,\n",
      "          'trek': 1,\n",
      "          'lalaland': 1,\n",
      "          'picture': 1,\n",
      "          'tries': 1,\n",
      "          'put': 1,\n",
      "          'moves': 1,\n",
      "          'doesnt': 1,\n",
      "          'stay': 1,\n",
      "          'command': 1,\n",
      "          'situation': 1,\n",
      "          'long': 1,\n",
      "          'none': 1,\n",
      "          'funnier': 1,\n",
      "          'sight': 1,\n",
      "          'gags': 1,\n",
      "          'women': 1,\n",
      "          'using': 1,\n",
      "          'pink': 1,\n",
      "          'clamshaped': 1,\n",
      "          'birth': 1,\n",
      "          'control': 1,\n",
      "          'case': 1,\n",
      "          'tech': 1,\n",
      "          'gadgetry': 1,\n",
      "          'ngranted': 1,\n",
      "          'everyone': 1,\n",
      "          'brand': 1,\n",
      "          'nand': 1,\n",
      "          'said': 1,\n",
      "          'earlier': 1,\n",
      "          'nno': 1,\n",
      "          'wait': 1,\n",
      "          'nforget': 1,\n",
      "          'bound': 1,\n",
      "          'time': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'feels': 1,\n",
      "          'obligated': 1,\n",
      "          'come': 1,\n",
      "          'pg13': 1,\n",
      "          'rake': 1,\n",
      "          'maximum': 1,\n",
      "          'cash': 1,\n",
      "          'great': 1,\n",
      "          'see': 1,\n",
      "          'filmmaker': 1,\n",
      "          'guts': 1,\n",
      "          'target': 1,\n",
      "          'mature': 1,\n",
      "          'runs': 1,\n",
      "          'lightening': 1,\n",
      "          'fast': 1,\n",
      "          '1': 1,\n",
      "          '35': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'pervasive': 1,\n",
      "          'language': 1,\n",
      "          'sexual': 1,\n",
      "          'situations': 1,\n",
      "          'would': 1,\n",
      "          'acceptable': 1,\n",
      "          'school': 1,\n",
      "          'seniors': 1,\n",
      "          'older': 1,\n",
      "          'opens': 1,\n",
      "          'nationwide': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'wednesday': 1,\n",
      "          'august': 1,\n",
      "          '22': 1,\n",
      "          '2001': 1,\n",
      "          'silicon': 1,\n",
      "          'valley': 1,\n",
      "          'showing': 1,\n",
      "          'amc': 1,\n",
      "          'century': 1,\n",
      "          'theaters': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'nthe': 4,\n",
      "          'excellent': 3,\n",
      "          'rampling': 3,\n",
      "          'nshe': 3,\n",
      "          'fine': 3,\n",
      "          'much': 2,\n",
      "          'would': 2,\n",
      "          'sand': 2,\n",
      "          'thanks': 2,\n",
      "          'performance': 2,\n",
      "          'charlotte': 2,\n",
      "          'nmarie': 2,\n",
      "          'husband': 2,\n",
      "          'jean': 2,\n",
      "          'marie': 2,\n",
      "          'cant': 2,\n",
      "          'find': 2,\n",
      "          'ndid': 2,\n",
      "          'life': 2,\n",
      "          'still': 2,\n",
      "          'nits': 2,\n",
      "          'movie': 2,\n",
      "          'hard': 2,\n",
      "          'damn': 1,\n",
      "          'trailers': 1,\n",
      "          'nhad': 1,\n",
      "          'advertising': 1,\n",
      "          'reveals': 1,\n",
      "          'far': 1,\n",
      "          'contents': 1,\n",
      "          'glued': 1,\n",
      "          'nas': 1,\n",
      "          'retains': 1,\n",
      "          'value': 1,\n",
      "          'mature': 1,\n",
      "          'francois': 1,\n",
      "          'ozon': 1,\n",
      "          'directors': 1,\n",
      "          'chair': 1,\n",
      "          'bruno': 1,\n",
      "          'cremer': 1,\n",
      "          'lounge': 1,\n",
      "          'beach': 1,\n",
      "          'takes': 1,\n",
      "          'nap': 1,\n",
      "          'goes': 1,\n",
      "          'swim': 1,\n",
      "          'nwhen': 1,\n",
      "          'wakes': 1,\n",
      "          'nowhere': 1,\n",
      "          'found': 1,\n",
      "          'contacts': 1,\n",
      "          'authorities': 1,\n",
      "          'either': 1,\n",
      "          'disappear': 1,\n",
      "          'start': 1,\n",
      "          'new': 1,\n",
      "          'nwas': 1,\n",
      "          'killed': 1,\n",
      "          'accident': 1,\n",
      "          'commit': 1,\n",
      "          'suicide': 1,\n",
      "          'asks': 1,\n",
      "          'questions': 1,\n",
      "          'year': 1,\n",
      "          'later': 1,\n",
      "          'order': 1,\n",
      "          'move': 1,\n",
      "          'must': 1,\n",
      "          'answers': 1,\n",
      "          'premise': 1,\n",
      "          'little': 1,\n",
      "          'uses': 1,\n",
      "          'limit': 1,\n",
      "          'moves': 1,\n",
      "          'leisurely': 1,\n",
      "          'pace': 1,\n",
      "          'bit': 1,\n",
      "          'slow': 1,\n",
      "          'relaxing': 1,\n",
      "          'visual': 1,\n",
      "          'story': 1,\n",
      "          'pretty': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'without': 1,\n",
      "          'reading': 1,\n",
      "          'subtitles': 1,\n",
      "          'nthis': 1,\n",
      "          'mostly': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'antoine': 1,\n",
      "          'heberle': 1,\n",
      "          'jeanne': 1,\n",
      "          'lapoirie': 1,\n",
      "          'shot': 1,\n",
      "          'dreamy': 1,\n",
      "          'haze': 1,\n",
      "          'lead': 1,\n",
      "          'nrampling': 1,\n",
      "          'expressive': 1,\n",
      "          'portrayal': 1,\n",
      "          'connect': 1,\n",
      "          'character': 1,\n",
      "          'instantly': 1,\n",
      "          'despite': 1,\n",
      "          'shes': 1,\n",
      "          'delusional': 1,\n",
      "          'scenes': 1,\n",
      "          'interacts': 1,\n",
      "          'believes': 1,\n",
      "          'alive': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'quite': 1,\n",
      "          'get': 1,\n",
      "          'ntheyve': 1,\n",
      "          'married': 1,\n",
      "          'twentyfive': 1,\n",
      "          'years': 1,\n",
      "          'actors': 1,\n",
      "          'particularly': 1,\n",
      "          'jacques': 1,\n",
      "          'nolot': 1,\n",
      "          'sex': 1,\n",
      "          'rather': 1,\n",
      "          'unneeded': 1,\n",
      "          'compared': 1,\n",
      "          'ozons': 1,\n",
      "          'criminal': 1,\n",
      "          'lovers': 1,\n",
      "          'disney': 1,\n",
      "          'channel': 1,\n",
      "          'nlikely': 1,\n",
      "          'cause': 1,\n",
      "          'discussion': 1,\n",
      "          'afterwards': 1,\n",
      "          'going': 1,\n",
      "          'experience': 1,\n",
      "          'nwhile': 1,\n",
      "          'recommend': 1,\n",
      "          'entertainment': 1,\n",
      "          'adult': 1,\n",
      "          'alternative': 1,\n",
      "          'deal': 1,\n",
      "          'loss': 1,\n",
      "          'nozon': 1,\n",
      "          'seems': 1,\n",
      "          'ask': 1,\n",
      "          'thats': 1,\n",
      "          'certainly': 1,\n",
      "          'question': 1,\n",
      "          'answer': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'chan': 6,\n",
      "          'hour': 4,\n",
      "          'nrush': 3,\n",
      "          'chinese': 3,\n",
      "          'tucker': 3,\n",
      "          'well': 3,\n",
      "          'problem': 2,\n",
      "          '48': 2,\n",
      "          'hours': 2,\n",
      "          'clones': 2,\n",
      "          'another': 2,\n",
      "          'film': 2,\n",
      "          'different': 2,\n",
      "          'course': 2,\n",
      "          'office': 2,\n",
      "          'energetic': 2,\n",
      "          'fight': 2,\n",
      "          'youll': 2,\n",
      "          'bob': 1,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quickie': 1,\n",
      "          'review': 1,\n",
      "          'nso': 1,\n",
      "          'whats': 1,\n",
      "          'days': 1,\n",
      "          'nthey': 1,\n",
      "          'always': 1,\n",
      "          'try': 1,\n",
      "          'thing': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'nick': 1,\n",
      "          'nolte': 1,\n",
      "          'nthat': 1,\n",
      "          'plagued': 1,\n",
      "          'mention': 1,\n",
      "          'actual': 1,\n",
      "          'sequel': 1,\n",
      "          'complete': 1,\n",
      "          'waste': 1,\n",
      "          'nbut': 1,\n",
      "          'last': 1,\n",
      "          'someone': 1,\n",
      "          'take': 1,\n",
      "          'matter': 1,\n",
      "          'director': 1,\n",
      "          'brett': 1,\n",
      "          'rainer': 1,\n",
      "          'features': 1,\n",
      "          'jackie': 1,\n",
      "          'first': 1,\n",
      "          'u': 1,\n",
      "          'action': 1,\n",
      "          'movie': 1,\n",
      "          'playing': 1,\n",
      "          'detective': 1,\n",
      "          'whos': 1,\n",
      "          'flown': 1,\n",
      "          'us': 1,\n",
      "          'investigate': 1,\n",
      "          'kidnapping': 1,\n",
      "          'consulates': 1,\n",
      "          'daughter': 1,\n",
      "          'nof': 1,\n",
      "          'fbi': 1,\n",
      "          'upset': 1,\n",
      "          'hell': 1,\n",
      "          'interfering': 1,\n",
      "          'investigation': 1,\n",
      "          'stick': 1,\n",
      "          'lapd': 1,\n",
      "          'big': 1,\n",
      "          'mouth': 1,\n",
      "          'thats': 1,\n",
      "          'chris': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'rush': 1,\n",
      "          'work': 1,\n",
      "          'damn': 1,\n",
      "          'chemistry': 1,\n",
      "          'absolutely': 1,\n",
      "          'hilarious': 1,\n",
      "          'ntucker': 1,\n",
      "          'mouths': 1,\n",
      "          'every': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'im': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'tito': 1,\n",
      "          'delivers': 1,\n",
      "          'zingers': 1,\n",
      "          'terrific': 1,\n",
      "          'scenes': 1,\n",
      "          'nthe': 1,\n",
      "          'storys': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'average': 1,\n",
      "          'fare': 1,\n",
      "          'decent': 1,\n",
      "          'twist': 1,\n",
      "          'involving': 1,\n",
      "          'main': 1,\n",
      "          'villain': 1,\n",
      "          'highly': 1,\n",
      "          'clouded': 1,\n",
      "          'figure': 1,\n",
      "          'named': 1,\n",
      "          'jun': 1,\n",
      "          'tao': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'entertaining': 1,\n",
      "          'concept': 1,\n",
      "          'excellently': 1,\n",
      "          'realized': 1,\n",
      "          'na': 1,\n",
      "          'particular': 1,\n",
      "          'scene': 1,\n",
      "          'duke': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'funny': 1,\n",
      "          'time': 1,\n",
      "          'nand': 1,\n",
      "          'finales': 1,\n",
      "          'real': 1,\n",
      "          'treat': 1,\n",
      "          'ndelivers': 1,\n",
      "          'yet': 1,\n",
      "          'fantastic': 1,\n",
      "          'stunt': 1,\n",
      "          'fans': 1,\n",
      "          '10story': 1,\n",
      "          'drop': 1,\n",
      "          'sort': 1,\n",
      "          'get': 1,\n",
      "          'kick': 1,\n",
      "          'night': 1,\n",
      "          'week': 1,\n",
      "          'njust': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'dont': 1,\n",
      "          'look': 1,\n",
      "          'anything': 1,\n",
      "          'culturally': 1,\n",
      "          'fine': 1,\n",
      "          'drunken': 1,\n",
      "          'master': 1,\n",
      "          'ii': 1,\n",
      "          'aint': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'titanic': 11,\n",
      "          'movie': 10,\n",
      "          'nthe': 8,\n",
      "          'ship': 7,\n",
      "          'story': 6,\n",
      "          'best': 5,\n",
      "          'nit': 5,\n",
      "          'effects': 5,\n",
      "          'ever': 4,\n",
      "          'see': 4,\n",
      "          'actual': 4,\n",
      "          'love': 4,\n",
      "          'nwe': 4,\n",
      "          'ni': 4,\n",
      "          'disaster': 3,\n",
      "          'sunken': 3,\n",
      "          'woman': 3,\n",
      "          'meet': 3,\n",
      "          'comes': 3,\n",
      "          'really': 3,\n",
      "          'get': 3,\n",
      "          'certainly': 3,\n",
      "          'home': 3,\n",
      "          'new': 2,\n",
      "          'sink': 2,\n",
      "          'nmy': 2,\n",
      "          'attatched': 2,\n",
      "          'made': 2,\n",
      "          'amazing': 2,\n",
      "          'seen': 2,\n",
      "          'date': 2,\n",
      "          'people': 2,\n",
      "          'running': 2,\n",
      "          'across': 2,\n",
      "          'water': 2,\n",
      "          'footage': 2,\n",
      "          'give': 2,\n",
      "          'begins': 2,\n",
      "          'set': 2,\n",
      "          'wreckage': 2,\n",
      "          'leads': 2,\n",
      "          'young': 2,\n",
      "          'man': 2,\n",
      "          'played': 2,\n",
      "          'well': 2,\n",
      "          'likeable': 2,\n",
      "          'rich': 2,\n",
      "          'folk': 2,\n",
      "          'nwhen': 2,\n",
      "          'exactly': 2,\n",
      "          'never': 2,\n",
      "          'picture': 2,\n",
      "          'far': 2,\n",
      "          'sound': 2,\n",
      "          'ntitanic': 2,\n",
      "          'runs': 2,\n",
      "          '3': 2,\n",
      "          'hours': 2,\n",
      "          'minutes': 2,\n",
      "          'sappy': 2,\n",
      "          'bad': 2,\n",
      "          'true': 2,\n",
      "          'time': 2,\n",
      "          'pictures': 2,\n",
      "          'nthis': 2,\n",
      "          'doesnt': 2,\n",
      "          'predict': 2,\n",
      "          'theater': 2,\n",
      "          'sunday': 1,\n",
      "          'afternoon': 1,\n",
      "          'priviledge': 1,\n",
      "          'attending': 1,\n",
      "          'private': 1,\n",
      "          'screening': 1,\n",
      "          'sony': 1,\n",
      "          'astor': 1,\n",
      "          'cinema': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'james': 1,\n",
      "          'camerons': 1,\n",
      "          'heralded': 1,\n",
      "          'npostponed': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'escalated': 1,\n",
      "          'budget': 1,\n",
      "          'makes': 1,\n",
      "          'expensive': 1,\n",
      "          'history': 1,\n",
      "          'one': 1,\n",
      "          'eager': 1,\n",
      "          'preview': 1,\n",
      "          'nso': 1,\n",
      "          'going': 1,\n",
      "          'swim': 1,\n",
      "          'holiday': 1,\n",
      "          'guess': 1,\n",
      "          'though': 1,\n",
      "          'many': 1,\n",
      "          'awards': 1,\n",
      "          'hull': 1,\n",
      "          'nno': 1,\n",
      "          'doubt': 1,\n",
      "          'elaborate': 1,\n",
      "          'boasts': 1,\n",
      "          'done': 1,\n",
      "          'nto': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'flying': 1,\n",
      "          'deck': 1,\n",
      "          'falling': 1,\n",
      "          'look': 1,\n",
      "          'stunningly': 1,\n",
      "          'realistic': 1,\n",
      "          'would': 1,\n",
      "          'swear': 1,\n",
      "          'looking': 1,\n",
      "          'nbut': 1,\n",
      "          'thats': 1,\n",
      "          'problem': 1,\n",
      "          'lies': 1,\n",
      "          'nthere': 1,\n",
      "          'nearly': 1,\n",
      "          'ruins': 1,\n",
      "          'entire': 1,\n",
      "          'premise': 1,\n",
      "          'nill': 1,\n",
      "          'capsule': 1,\n",
      "          'summary': 1,\n",
      "          'without': 1,\n",
      "          'spoiling': 1,\n",
      "          'anything': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'excavation': 1,\n",
      "          'sorts': 1,\n",
      "          'cammeron': 1,\n",
      "          'special': 1,\n",
      "          'cameras': 1,\n",
      "          'ocean': 1,\n",
      "          'floor': 1,\n",
      "          'nbill': 1,\n",
      "          'paxton': 1,\n",
      "          'expedition': 1,\n",
      "          'search': 1,\n",
      "          'treasure': 1,\n",
      "          'nwhat': 1,\n",
      "          'finds': 1,\n",
      "          'instead': 1,\n",
      "          'mysterious': 1,\n",
      "          'old': 1,\n",
      "          'recounts': 1,\n",
      "          'tale': 1,\n",
      "          'voyage': 1,\n",
      "          'rose': 1,\n",
      "          'kate': 1,\n",
      "          'winslet': 1,\n",
      "          'upperclass': 1,\n",
      "          'family': 1,\n",
      "          'nrose': 1,\n",
      "          'wed': 1,\n",
      "          'jack': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'poor': 1,\n",
      "          'financial': 1,\n",
      "          'background': 1,\n",
      "          'wins': 1,\n",
      "          'ticket': 1,\n",
      "          'aboard': 1,\n",
      "          'poker': 1,\n",
      "          'game': 1,\n",
      "          'two': 1,\n",
      "          'interesting': 1,\n",
      "          'circumstances': 1,\n",
      "          'nadd': 1,\n",
      "          'jealous': 1,\n",
      "          'fiance': 1,\n",
      "          'notsonice': 1,\n",
      "          'law': 1,\n",
      "          'officer': 1,\n",
      "          'david': 1,\n",
      "          'warner': 1,\n",
      "          'gets': 1,\n",
      "          'bit': 1,\n",
      "          'overplayed': 1,\n",
      "          'oversappy': 1,\n",
      "          'must': 1,\n",
      "          'add': 1,\n",
      "          'point': 1,\n",
      "          'character': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'money': 1,\n",
      "          'lot': 1,\n",
      "          'less': 1,\n",
      "          'uptight': 1,\n",
      "          'nshe': 1,\n",
      "          'pleasure': 1,\n",
      "          'screen': 1,\n",
      "          'hit': 1,\n",
      "          'iceberg': 1,\n",
      "          '1': 1,\n",
      "          '40': 1,\n",
      "          'eventually': 1,\n",
      "          'sinks': 1,\n",
      "          'feel': 1,\n",
      "          'characters': 1,\n",
      "          'loaded': 1,\n",
      "          'unlikeable': 1,\n",
      "          'snobs': 1,\n",
      "          'grasp': 1,\n",
      "          'tremendous': 1,\n",
      "          'nfrom': 1,\n",
      "          'roars': 1,\n",
      "          'gears': 1,\n",
      "          'pumps': 1,\n",
      "          'engine': 1,\n",
      "          'room': 1,\n",
      "          'doomed': 1,\n",
      "          'cracking': 1,\n",
      "          'seams': 1,\n",
      "          'looks': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'saw': 1,\n",
      "          'dolby': 1,\n",
      "          'digital': 1,\n",
      "          'surround': 1,\n",
      "          'sounding': 1,\n",
      "          'friend': 1,\n",
      "          'commented': 1,\n",
      "          'mix': 1,\n",
      "          'heard': 1,\n",
      "          'films': 1,\n",
      "          'end': 1,\n",
      "          'surrounded': 1,\n",
      "          'voices': 1,\n",
      "          'lost': 1,\n",
      "          'soles': 1,\n",
      "          'long': 1,\n",
      "          '15': 1,\n",
      "          'length': 1,\n",
      "          'nand': 1,\n",
      "          'first': 1,\n",
      "          '2': 1,\n",
      "          '5': 1,\n",
      "          'fast': 1,\n",
      "          'wellpaced': 1,\n",
      "          'final': 1,\n",
      "          '45': 1,\n",
      "          'almost': 1,\n",
      "          'sudden': 1,\n",
      "          'stop': 1,\n",
      "          'realize': 1,\n",
      "          'finish': 1,\n",
      "          'finally': 1,\n",
      "          'ends': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'nnot': 1,\n",
      "          'making': 1,\n",
      "          'exceptionaly': 1,\n",
      "          'wellmade': 1,\n",
      "          'costumes': 1,\n",
      "          'sets': 1,\n",
      "          'incredible': 1,\n",
      "          'period': 1,\n",
      "          'painstakingly': 1,\n",
      "          'created': 1,\n",
      "          'form': 1,\n",
      "          'modernday': 1,\n",
      "          'transformed': 1,\n",
      "          'depiction': 1,\n",
      "          'win': 1,\n",
      "          'costume': 1,\n",
      "          'design': 1,\n",
      "          'ncameron': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'candidate': 1,\n",
      "          'strong': 1,\n",
      "          'supporting': 1,\n",
      "          'nits': 1,\n",
      "          'exceptional': 1,\n",
      "          'filler': 1,\n",
      "          'inside': 1,\n",
      "          'emotional': 1,\n",
      "          'impact': 1,\n",
      "          'suspect': 1,\n",
      "          'mr': 1,\n",
      "          'cameron': 1,\n",
      "          'shooting': 1,\n",
      "          'open': 1,\n",
      "          'reviews': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'moderately': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nwith': 1,\n",
      "          'extreme': 1,\n",
      "          'lack': 1,\n",
      "          'enough': 1,\n",
      "          'robust': 1,\n",
      "          'substantial': 1,\n",
      "          'wordofmouth': 1,\n",
      "          'expect': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'video': 1,\n",
      "          'definitive': 1,\n",
      "          'ac3': 1,\n",
      "          'enthusiasts': 1,\n",
      "          'opens': 1,\n",
      "          'december': 1,\n",
      "          '19th': 1,\n",
      "          'released': 1,\n",
      "          'paramount': 1,\n",
      "          'twentieth': 1,\n",
      "          'centuryfox': 1,\n",
      "          'stars': 1,\n",
      "          'nthats': 1,\n",
      "          'nron': 1,\n",
      "          'epstein': 1,\n",
      "          'nriginally': 1,\n",
      "          'posted': 1,\n",
      "          'forum': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'50s': 4,\n",
      "          'tv': 4,\n",
      "          'film': 3,\n",
      "          'show': 3,\n",
      "          'nthe': 3,\n",
      "          'years': 3,\n",
      "          'audience': 3,\n",
      "          'common': 2,\n",
      "          'nquiz': 2,\n",
      "          'films': 2,\n",
      "          'script': 2,\n",
      "          'telling': 2,\n",
      "          'war': 2,\n",
      "          'american': 2,\n",
      "          'dream': 2,\n",
      "          'perfectly': 2,\n",
      "          'carefully': 2,\n",
      "          'scandal': 2,\n",
      "          'icons': 2,\n",
      "          'almost': 2,\n",
      "          'may': 2,\n",
      "          'end': 2,\n",
      "          'mirror': 2,\n",
      "          'complaint': 1,\n",
      "          'amongst': 1,\n",
      "          'critics': 1,\n",
      "          'arent': 1,\n",
      "          'literate': 1,\n",
      "          'scripts': 1,\n",
      "          'available': 1,\n",
      "          'gives': 1,\n",
      "          'signs': 1,\n",
      "          'hope': 1,\n",
      "          'art': 1,\n",
      "          'writing': 1,\n",
      "          'isnt': 1,\n",
      "          'dead': 1,\n",
      "          'hollywood': 1,\n",
      "          'need': 1,\n",
      "          'look': 1,\n",
      "          'independent': 1,\n",
      "          'thoughtful': 1,\n",
      "          'content': 1,\n",
      "          'npaul': 1,\n",
      "          'attanasios': 1,\n",
      "          'takes': 1,\n",
      "          'could': 1,\n",
      "          'tepid': 1,\n",
      "          'thriller': 1,\n",
      "          'quiz': 1,\n",
      "          'scandals': 1,\n",
      "          'late': 1,\n",
      "          'delivers': 1,\n",
      "          'parable': 1,\n",
      "          'emptiness': 1,\n",
      "          'post': 1,\n",
      "          'golden': 1,\n",
      "          'bubble': 1,\n",
      "          'surrounds': 1,\n",
      "          'protects': 1,\n",
      "          'networks': 1,\n",
      "          'sponsors': 1,\n",
      "          'riddled': 1,\n",
      "          'symbols': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'na': 1,\n",
      "          '58': 1,\n",
      "          'chrysler': 1,\n",
      "          'radio': 1,\n",
      "          'announcement': 1,\n",
      "          'sputnik': 1,\n",
      "          'never': 1,\n",
      "          'heavy': 1,\n",
      "          'handed': 1,\n",
      "          'ndeft': 1,\n",
      "          'direction': 1,\n",
      "          'robert': 1,\n",
      "          'redford': 1,\n",
      "          'keen': 1,\n",
      "          'performances': 1,\n",
      "          'ralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'john': 1,\n",
      "          'turturro': 1,\n",
      "          'rob': 1,\n",
      "          'morrow': 1,\n",
      "          'dovetail': 1,\n",
      "          'honed': 1,\n",
      "          'nredford': 1,\n",
      "          'departs': 1,\n",
      "          'usually': 1,\n",
      "          'overlight': 1,\n",
      "          'cable': 1,\n",
      "          'quality': 1,\n",
      "          'sets': 1,\n",
      "          'camera': 1,\n",
      "          'work': 1,\n",
      "          'recent': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'period': 1,\n",
      "          'pieces': 1,\n",
      "          'captures': 1,\n",
      "          'colors': 1,\n",
      "          'textures': 1,\n",
      "          'eisenhower': 1,\n",
      "          'nalthough': 1,\n",
      "          '4': 1,\n",
      "          'old': 1,\n",
      "          'twenty': 1,\n",
      "          'one': 1,\n",
      "          'broke': 1,\n",
      "          'enough': 1,\n",
      "          'survived': 1,\n",
      "          'throughout': 1,\n",
      "          'childhood': 1,\n",
      "          'recognize': 1,\n",
      "          'authenticity': 1,\n",
      "          'redfords': 1,\n",
      "          'tangible': 1,\n",
      "          'palette': 1,\n",
      "          'nfrom': 1,\n",
      "          'plastic': 1,\n",
      "          'covered': 1,\n",
      "          'furniture': 1,\n",
      "          'coifed': 1,\n",
      "          'contestants': 1,\n",
      "          'images': 1,\n",
      "          'ring': 1,\n",
      "          'true': 1,\n",
      "          'era': 1,\n",
      "          'rampant': 1,\n",
      "          'consumerism': 1,\n",
      "          'generation': 1,\n",
      "          'gone': 1,\n",
      "          '15': 1,\n",
      "          'depression': 1,\n",
      "          'world': 1,\n",
      "          'without': 1,\n",
      "          'disposable': 1,\n",
      "          'income': 1,\n",
      "          'manifestation': 1,\n",
      "          'deftly': 1,\n",
      "          'weaves': 1,\n",
      "          'several': 1,\n",
      "          'themes': 1,\n",
      "          'together': 1,\n",
      "          'assimilation': 1,\n",
      "          'exclusion': 1,\n",
      "          'jews': 1,\n",
      "          'good': 1,\n",
      "          'life': 1,\n",
      "          'lengths': 1,\n",
      "          'scion': 1,\n",
      "          'literary': 1,\n",
      "          'family': 1,\n",
      "          'go': 1,\n",
      "          'match': 1,\n",
      "          'fathers': 1,\n",
      "          'fame': 1,\n",
      "          'nthough': 1,\n",
      "          'rocked': 1,\n",
      "          'initially': 1,\n",
      "          'seem': 1,\n",
      "          'naive': 1,\n",
      "          'us': 1,\n",
      "          'appear': 1,\n",
      "          'familiar': 1,\n",
      "          'current': 1,\n",
      "          'national': 1,\n",
      "          'passion': 1,\n",
      "          'rise': 1,\n",
      "          'fall': 1,\n",
      "          'like': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'tonya': 1,\n",
      "          'harding': 1,\n",
      "          'ncharles': 1,\n",
      "          'van': 1,\n",
      "          'doren': 1,\n",
      "          'herbie': 1,\n",
      "          'stemple': 1,\n",
      "          'overnight': 1,\n",
      "          'mega': 1,\n",
      "          'celebrities': 1,\n",
      "          'day': 1,\n",
      "          'fourth': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'always': 1,\n",
      "          'center': 1,\n",
      "          'decisions': 1,\n",
      "          'made': 1,\n",
      "          'behalf': 1,\n",
      "          'nat': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'past': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'footage': 1,\n",
      "          'mindlessly': 1,\n",
      "          'laughing': 1,\n",
      "          'piece': 1,\n",
      "          'fluff': 1,\n",
      "          'nlike': 1,\n",
      "          'distorted': 1,\n",
      "          'captured': 1,\n",
      "          'blurred': 1,\n",
      "          'swastika': 1,\n",
      "          'cabaret': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'reflect': 1,\n",
      "          'image': 1,\n",
      "          'comfortable': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'message': 5,\n",
      "          'characters': 5,\n",
      "          'boyle': 3,\n",
      "          'local': 3,\n",
      "          'camera': 3,\n",
      "          'across': 3,\n",
      "          'energy': 2,\n",
      "          'kind': 2,\n",
      "          'filmmaking': 2,\n",
      "          'bunch': 2,\n",
      "          'director': 2,\n",
      "          'depict': 2,\n",
      "          'nthe': 2,\n",
      "          'medium': 2,\n",
      "          'ewan': 2,\n",
      "          'nbored': 2,\n",
      "          'getting': 2,\n",
      "          'dose': 2,\n",
      "          'find': 2,\n",
      "          'around': 2,\n",
      "          'shot': 2,\n",
      "          'kids': 2,\n",
      "          'nhe': 2,\n",
      "          'short': 2,\n",
      "          'whew': 1,\n",
      "          'oozes': 1,\n",
      "          'breakneck': 1,\n",
      "          'holdsbarred': 1,\n",
      "          'inyourface': 1,\n",
      "          'risktaking': 1,\n",
      "          'seldom': 1,\n",
      "          'seen': 1,\n",
      "          'screen': 1,\n",
      "          'days': 1,\n",
      "          'nlike': 1,\n",
      "          'marginal': 1,\n",
      "          'motley': 1,\n",
      "          'postapocalyptic': 1,\n",
      "          'youths': 1,\n",
      "          'danny': 1,\n",
      "          'tries': 1,\n",
      "          'trainspotting': 1,\n",
      "          'veers': 1,\n",
      "          'edge': 1,\n",
      "          'utter': 1,\n",
      "          'mayhem': 1,\n",
      "          'ultimately': 1,\n",
      "          'retains': 1,\n",
      "          'footing': 1,\n",
      "          'control': 1,\n",
      "          'result': 1,\n",
      "          'movie': 1,\n",
      "          'delightful': 1,\n",
      "          'example': 1,\n",
      "          'losers': 1,\n",
      "          'loser': 1,\n",
      "          'names': 1,\n",
      "          'mark': 1,\n",
      "          'renton': 1,\n",
      "          'mcgregor': 1,\n",
      "          'spud': 1,\n",
      "          'bremner': 1,\n",
      "          'sick': 1,\n",
      "          'boy': 1,\n",
      "          'jonny': 1,\n",
      "          'lee': 1,\n",
      "          'miller': 1,\n",
      "          'tommy': 1,\n",
      "          'kevin': 1,\n",
      "          'mckidd': 1,\n",
      "          'begbie': 1,\n",
      "          'robert': 1,\n",
      "          'carlyle': 1,\n",
      "          'aimless': 1,\n",
      "          'restless': 1,\n",
      "          'routine': 1,\n",
      "          'consists': 1,\n",
      "          'drunk': 1,\n",
      "          'pub': 1,\n",
      "          'grooving': 1,\n",
      "          'techno': 1,\n",
      "          'glamrock': 1,\n",
      "          'disco': 1,\n",
      "          'shots': 1,\n",
      "          'arm': 1,\n",
      "          'den': 1,\n",
      "          'procuring': 1,\n",
      "          'cash': 1,\n",
      "          'variety': 1,\n",
      "          'methods': 1,\n",
      "          'ingenious': 1,\n",
      "          'others': 1,\n",
      "          'plainly': 1,\n",
      "          'dumb': 1,\n",
      "          'desperate': 1,\n",
      "          'nnot': 1,\n",
      "          'part': 1,\n",
      "          'daily': 1,\n",
      "          'obtained': 1,\n",
      "          'sex': 1,\n",
      "          'bonus': 1,\n",
      "          'nyou': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'dirty': 1,\n",
      "          'pathetic': 1,\n",
      "          'ugly': 1,\n",
      "          'perhaps': 1,\n",
      "          'definitely': 1,\n",
      "          'interesting': 1,\n",
      "          'irvin': 1,\n",
      "          'welshs': 1,\n",
      "          'cult': 1,\n",
      "          'novel': 1,\n",
      "          'name': 1,\n",
      "          'nwhat': 1,\n",
      "          'makes': 1,\n",
      "          'completely': 1,\n",
      "          'different': 1,\n",
      "          'experience': 1,\n",
      "          'uses': 1,\n",
      "          'every': 1,\n",
      "          'tool': 1,\n",
      "          'disposal': 1,\n",
      "          'make': 1,\n",
      "          'filmic': 1,\n",
      "          'synchronous': 1,\n",
      "          'none': 1,\n",
      "          'first': 1,\n",
      "          'things': 1,\n",
      "          'youll': 1,\n",
      "          'notice': 1,\n",
      "          'seems': 1,\n",
      "          'dart': 1,\n",
      "          'restlessly': 1,\n",
      "          'nitll': 1,\n",
      "          'truck': 1,\n",
      "          'pimple': 1,\n",
      "          'soon': 1,\n",
      "          'dolly': 1,\n",
      "          'establishing': 1,\n",
      "          'ndistracted': 1,\n",
      "          'curious': 1,\n",
      "          'itll': 1,\n",
      "          'maintain': 1,\n",
      "          'eyelevel': 1,\n",
      "          'drop': 1,\n",
      "          'right': 1,\n",
      "          'ground': 1,\n",
      "          'show': 1,\n",
      "          'dopedouteyeview': 1,\n",
      "          'nyoull': 1,\n",
      "          'even': 1,\n",
      "          'peering': 1,\n",
      "          'faces': 1,\n",
      "          'smeared': 1,\n",
      "          'wideangle': 1,\n",
      "          'lens': 1,\n",
      "          'nthis': 1,\n",
      "          'another': 1,\n",
      "          'one': 1,\n",
      "          'guys': 1,\n",
      "          'ntiptoeing': 1,\n",
      "          'indistinguishable': 1,\n",
      "          'line': 1,\n",
      "          'fantasy': 1,\n",
      "          'reality': 1,\n",
      "          'employs': 1,\n",
      "          'healthy': 1,\n",
      "          'surrealism': 1,\n",
      "          'get': 1,\n",
      "          'daydream': 1,\n",
      "          'bored': 1,\n",
      "          'deprived': 1,\n",
      "          'heroin': 1,\n",
      "          'fix': 1,\n",
      "          'nightmares': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'give': 1,\n",
      "          'much': 1,\n",
      "          'away': 1,\n",
      "          'cross': 1,\n",
      "          'chuckie': 1,\n",
      "          'childs': 1,\n",
      "          'play': 1,\n",
      "          'wacky': 1,\n",
      "          'fantasies': 1,\n",
      "          'heavenly': 1,\n",
      "          'creatures': 1,\n",
      "          'might': 1,\n",
      "          'idea': 1,\n",
      "          'fun': 1,\n",
      "          'pantswetting': 1,\n",
      "          'scary': 1,\n",
      "          'alternate': 1,\n",
      "          'state': 1,\n",
      "          'consciouness': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'good': 1,\n",
      "          'share': 1,\n",
      "          'drugs': 1,\n",
      "          'consumed': 1,\n",
      "          'vomitted': 1,\n",
      "          'defecated': 1,\n",
      "          'pissed': 1,\n",
      "          'exchanged': 1,\n",
      "          'bought': 1,\n",
      "          'sold': 1,\n",
      "          'injected': 1,\n",
      "          'smuggled': 1,\n",
      "          'enjoyed': 1,\n",
      "          'regretted': 1,\n",
      "          'nif': 1,\n",
      "          'isnt': 1,\n",
      "          'cup': 1,\n",
      "          'tea': 1,\n",
      "          'nobody': 1,\n",
      "          'forced': 1,\n",
      "          'see': 1,\n",
      "          'nstay': 1,\n",
      "          'home': 1,\n",
      "          'rent': 1,\n",
      "          'close': 1,\n",
      "          'personal': 1,\n",
      "          'nand': 1,\n",
      "          'whats': 1,\n",
      "          'buzz': 1,\n",
      "          'without': 1,\n",
      "          'tunes': 1,\n",
      "          'nfrom': 1,\n",
      "          'pulp': 1,\n",
      "          'iggy': 1,\n",
      "          'pop': 1,\n",
      "          'yes': 1,\n",
      "          'hes': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'aural': 1,\n",
      "          'landscape': 1,\n",
      "          'engaging': 1,\n",
      "          'visual': 1,\n",
      "          'permeating': 1,\n",
      "          'ngood': 1,\n",
      "          'bad': 1,\n",
      "          'vibrations': 1,\n",
      "          'tangle': 1,\n",
      "          'like': 1,\n",
      "          'conflicting': 1,\n",
      "          'desires': 1,\n",
      "          'values': 1,\n",
      "          'nevery': 1,\n",
      "          'comes': 1,\n",
      "          'along': 1,\n",
      "          'energetic': 1,\n",
      "          'matches': 1,\n",
      "          'intensity': 1,\n",
      "          'hopes': 1,\n",
      "          'ntrainspotting': 1,\n",
      "          'shooting': 1,\n",
      "          'star': 1,\n",
      "          'burns': 1,\n",
      "          'sky': 1,\n",
      "          'littered': 1,\n",
      "          'static': 1,\n",
      "          'constellations': 1,\n",
      "          'ndom': 1,\n",
      "          'parttime': 1,\n",
      "          'filmmaker': 1,\n",
      "          'graduated': 1,\n",
      "          'northwestern': 1,\n",
      "          'universitys': 1,\n",
      "          'radiotvfilm': 1,\n",
      "          'programme': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'laboured': 1,\n",
      "          'various': 1,\n",
      "          'music': 1,\n",
      "          'videos': 1,\n",
      "          'films': 1,\n",
      "          'campus': 1,\n",
      "          'chicago': 1,\n",
      "          'nnowhere': 1,\n",
      "          'town': 1,\n",
      "          '26min': 1,\n",
      "          'codirected': 1,\n",
      "          'coproduced': 1,\n",
      "          'recently': 1,\n",
      "          'scooped': 1,\n",
      "          'grand': 1,\n",
      "          'jury': 1,\n",
      "          'prize': 1,\n",
      "          'charleston': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'best': 1,\n",
      "          'student': 1,\n",
      "          'production': 1,\n",
      "          'currently': 1,\n",
      "          'finishing': 1,\n",
      "          'couple': 1,\n",
      "          'small': 1,\n",
      "          'projects': 1,\n",
      "          'nwith': 1,\n",
      "          'minute': 1,\n",
      "          'amounts': 1,\n",
      "          'leisure': 1,\n",
      "          'time': 1,\n",
      "          'dom': 1,\n",
      "          'nell': 1,\n",
      "          'impersonations': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'slavery': 7,\n",
      "          'amistad': 6,\n",
      "          'africans': 5,\n",
      "          'slave': 5,\n",
      "          'film': 5,\n",
      "          'case': 5,\n",
      "          'story': 4,\n",
      "          'several': 4,\n",
      "          'politicians': 4,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'court': 4,\n",
      "          'legal': 3,\n",
      "          'dispute': 3,\n",
      "          'president': 3,\n",
      "          'adams': 3,\n",
      "          'n': 3,\n",
      "          'little': 3,\n",
      "          'much': 3,\n",
      "          'movie': 3,\n",
      "          'scene': 3,\n",
      "          'probably': 3,\n",
      "          'time': 3,\n",
      "          'enough': 3,\n",
      "          'almost': 3,\n",
      "          'spielbergs': 2,\n",
      "          'ship': 2,\n",
      "          'different': 2,\n",
      "          'issue': 2,\n",
      "          'evils': 2,\n",
      "          'van': 2,\n",
      "          'buren': 2,\n",
      "          'john': 2,\n",
      "          'quincy': 2,\n",
      "          'importantly': 2,\n",
      "          'examines': 2,\n",
      "          'forced': 2,\n",
      "          'done': 2,\n",
      "          'native': 2,\n",
      "          'culture': 2,\n",
      "          'africa': 2,\n",
      "          'three': 2,\n",
      "          'could': 2,\n",
      "          'get': 2,\n",
      "          'movies': 2,\n",
      "          'instead': 2,\n",
      "          'images': 2,\n",
      "          'fact': 2,\n",
      "          'disturbing': 2,\n",
      "          'involved': 2,\n",
      "          'spielberg': 2,\n",
      "          'franzoni': 2,\n",
      "          'still': 2,\n",
      "          'comes': 2,\n",
      "          'like': 2,\n",
      "          'way': 2,\n",
      "          'supreme': 2,\n",
      "          'cinque': 2,\n",
      "          'baldwin': 2,\n",
      "          'try': 2,\n",
      "          'four': 2,\n",
      "          'cant': 2,\n",
      "          'handle': 2,\n",
      "          'issues': 2,\n",
      "          'somehow': 2,\n",
      "          'every': 2,\n",
      "          'speech': 2,\n",
      "          'thus': 2,\n",
      "          'steven': 1,\n",
      "          'based': 1,\n",
      "          'true': 1,\n",
      "          'group': 1,\n",
      "          'revolted': 1,\n",
      "          'board': 1,\n",
      "          'captured': 1,\n",
      "          'taken': 1,\n",
      "          'america': 1,\n",
      "          'ensued': 1,\n",
      "          'owned': 1,\n",
      "          'concerned': 1,\n",
      "          'aspects': 1,\n",
      "          'nfirst': 1,\n",
      "          'addresses': 1,\n",
      "          'inherent': 1,\n",
      "          'nsecond': 1,\n",
      "          'deals': 1,\n",
      "          'historical': 1,\n",
      "          'involvement': 1,\n",
      "          'american': 1,\n",
      "          'including': 1,\n",
      "          'martin': 1,\n",
      "          'former': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'nlast': 1,\n",
      "          'cultural': 1,\n",
      "          'confusion': 1,\n",
      "          'experienced': 1,\n",
      "          'damage': 1,\n",
      "          'trade': 1,\n",
      "          'succeeds': 1,\n",
      "          'least': 1,\n",
      "          'partly': 1,\n",
      "          'elements': 1,\n",
      "          'ni': 1,\n",
      "          'admit': 1,\n",
      "          'skeptical': 1,\n",
      "          'really': 1,\n",
      "          'another': 1,\n",
      "          'antislavery': 1,\n",
      "          'nhaving': 1,\n",
      "          'seen': 1,\n",
      "          'documentaries': 1,\n",
      "          'doubted': 1,\n",
      "          'didnt': 1,\n",
      "          'already': 1,\n",
      "          'know': 1,\n",
      "          'nfortunately': 1,\n",
      "          'turned': 1,\n",
      "          'wrong': 1,\n",
      "          'nfor': 1,\n",
      "          'thing': 1,\n",
      "          'camera': 1,\n",
      "          'never': 1,\n",
      "          'gets': 1,\n",
      "          'near': 1,\n",
      "          'southern': 1,\n",
      "          'plantation': 1,\n",
      "          'sticks': 1,\n",
      "          'ships': 1,\n",
      "          'traders': 1,\n",
      "          'operations': 1,\n",
      "          'dealing': 1,\n",
      "          'part': 1,\n",
      "          'history': 1,\n",
      "          'beginning': 1,\n",
      "          'nand': 1,\n",
      "          'harrowing': 1,\n",
      "          'usually': 1,\n",
      "          'see': 1,\n",
      "          'none': 1,\n",
      "          'middle': 1,\n",
      "          'crew': 1,\n",
      "          'dispose': 1,\n",
      "          'excess': 1,\n",
      "          'slaves': 1,\n",
      "          'throwing': 1,\n",
      "          'overboard': 1,\n",
      "          'drown': 1,\n",
      "          'year': 1,\n",
      "          'nspielberg': 1,\n",
      "          'digs': 1,\n",
      "          'farther': 1,\n",
      "          'expecting': 1,\n",
      "          'would': 1,\n",
      "          'goes': 1,\n",
      "          'far': 1,\n",
      "          'director': 1,\n",
      "          'without': 1,\n",
      "          'getting': 1,\n",
      "          'nc17': 1,\n",
      "          'rating': 1,\n",
      "          'stark': 1,\n",
      "          'suffering': 1,\n",
      "          'contrasted': 1,\n",
      "          'sharply': 1,\n",
      "          'shallow': 1,\n",
      "          'luxury': 1,\n",
      "          'queen': 1,\n",
      "          'isabella': 1,\n",
      "          'spain': 1,\n",
      "          'whose': 1,\n",
      "          'naval': 1,\n",
      "          'officers': 1,\n",
      "          'small': 1,\n",
      "          'child': 1,\n",
      "          'nexposing': 1,\n",
      "          'narrowminded': 1,\n",
      "          'opportunistic': 1,\n",
      "          'hypocrites': 1,\n",
      "          'fairly': 1,\n",
      "          'standard': 1,\n",
      "          'stuff': 1,\n",
      "          'course': 1,\n",
      "          'writer': 1,\n",
      "          'david': 1,\n",
      "          'well': 1,\n",
      "          'something': 1,\n",
      "          'simple': 1,\n",
      "          'exercise': 1,\n",
      "          'audience': 1,\n",
      "          'manipulation': 1,\n",
      "          'also': 1,\n",
      "          'contentious': 1,\n",
      "          'nature': 1,\n",
      "          'clearly': 1,\n",
      "          'disapproved': 1,\n",
      "          'practice': 1,\n",
      "          'reluctant': 1,\n",
      "          'appealed': 1,\n",
      "          'biggest': 1,\n",
      "          'success': 1,\n",
      "          'characterization': 1,\n",
      "          'djimon': 1,\n",
      "          'hounsou': 1,\n",
      "          'emerges': 1,\n",
      "          'de': 1,\n",
      "          'facto': 1,\n",
      "          'leader': 1,\n",
      "          'kidnapped': 1,\n",
      "          'struggles': 1,\n",
      "          'communicate': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'lawyer': 1,\n",
      "          'represents': 1,\n",
      "          'nthrough': 1,\n",
      "          'given': 1,\n",
      "          'window': 1,\n",
      "          'displaced': 1,\n",
      "          'explain': 1,\n",
      "          'prison': 1,\n",
      "          'guards': 1,\n",
      "          'need': 1,\n",
      "          'proper': 1,\n",
      "          'burial': 1,\n",
      "          'dead': 1,\n",
      "          'tribe': 1,\n",
      "          'member': 1,\n",
      "          'find': 1,\n",
      "          'illustrated': 1,\n",
      "          'version': 1,\n",
      "          'bible': 1,\n",
      "          'understand': 1,\n",
      "          'jesus': 1,\n",
      "          'christ': 1,\n",
      "          'ncinque': 1,\n",
      "          'sees': 1,\n",
      "          'clarity': 1,\n",
      "          'simplicity': 1,\n",
      "          'contrasts': 1,\n",
      "          'technicalities': 1,\n",
      "          'mechanics': 1,\n",
      "          'process': 1,\n",
      "          'political': 1,\n",
      "          'squabbles': 1,\n",
      "          'kind': 1,\n",
      "          'country': 1,\n",
      "          'laws': 1,\n",
      "          'work': 1,\n",
      "          'asks': 1,\n",
      "          'bewilderment': 1,\n",
      "          'learns': 1,\n",
      "          'must': 1,\n",
      "          'retried': 1,\n",
      "          'nspielbergs': 1,\n",
      "          'direction': 1,\n",
      "          'tends': 1,\n",
      "          'bit': 1,\n",
      "          'towards': 1,\n",
      "          'manipulative': 1,\n",
      "          'side': 1,\n",
      "          'times': 1,\n",
      "          'adds': 1,\n",
      "          'heavy': 1,\n",
      "          'orchestral': 1,\n",
      "          'swell': 1,\n",
      "          'cinques': 1,\n",
      "          'angry': 1,\n",
      "          'outburst': 1,\n",
      "          'room': 1,\n",
      "          'nstill': 1,\n",
      "          'isnt': 1,\n",
      "          'serious': 1,\n",
      "          'problem': 1,\n",
      "          'main': 1,\n",
      "          'flaw': 1,\n",
      "          'prevents': 1,\n",
      "          'earning': 1,\n",
      "          'stars': 1,\n",
      "          'seems': 1,\n",
      "          'quite': 1,\n",
      "          'settle': 1,\n",
      "          'addressing': 1,\n",
      "          'separately': 1,\n",
      "          'simply': 1,\n",
      "          'editing': 1,\n",
      "          'results': 1,\n",
      "          'nthis': 1,\n",
      "          'summers': 1,\n",
      "          'contact': 1,\n",
      "          'example': 1,\n",
      "          'dealt': 1,\n",
      "          'present': 1,\n",
      "          'resolved': 1,\n",
      "          'tries': 1,\n",
      "          'pull': 1,\n",
      "          'together': 1,\n",
      "          'end': 1,\n",
      "          'feels': 1,\n",
      "          'lasts': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'wears': 1,\n",
      "          'welcome': 1,\n",
      "          'halfway': 1,\n",
      "          'nperhaps': 1,\n",
      "          'best': 1,\n",
      "          'describe': 1,\n",
      "          'star': 1,\n",
      "          'films': 1,\n",
      "          'edited': 1,\n",
      "          'nalmost': 1,\n",
      "          'individual': 1,\n",
      "          'works': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'lacking': 1,\n",
      "          'necessary': 1,\n",
      "          'focus': 1,\n",
      "          'coherence': 1,\n",
      "          'less': 1,\n",
      "          'sum': 1,\n",
      "          'parts': 1,\n",
      "          'nhowever': 1,\n",
      "          'honestly': 1,\n",
      "          'say': 1,\n",
      "          'differently': 1,\n",
      "          'raw': 1,\n",
      "          'emotional': 1,\n",
      "          'power': 1,\n",
      "          'good': 1,\n",
      "          'recommend': 1,\n",
      "          'anyone': 1,\n",
      "          'imagery': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bubby': 10,\n",
      "          'nhe': 8,\n",
      "          'world': 8,\n",
      "          'nthe': 6,\n",
      "          'mother': 5,\n",
      "          'bubbys': 5,\n",
      "          'boy': 4,\n",
      "          'becomes': 4,\n",
      "          'life': 3,\n",
      "          'apartment': 3,\n",
      "          'jesus': 3,\n",
      "          'bad': 3,\n",
      "          'movie': 3,\n",
      "          'father': 3,\n",
      "          'us': 3,\n",
      "          'nit': 3,\n",
      "          'heer': 3,\n",
      "          'reality': 3,\n",
      "          'film': 3,\n",
      "          'spent': 2,\n",
      "          'entire': 2,\n",
      "          'awful': 2,\n",
      "          'little': 2,\n",
      "          'imprisoned': 2,\n",
      "          'love': 2,\n",
      "          'fear': 2,\n",
      "          'mothers': 2,\n",
      "          'outside': 2,\n",
      "          'dons': 2,\n",
      "          'goes': 2,\n",
      "          'mind': 2,\n",
      "          'premise': 2,\n",
      "          'hope': 2,\n",
      "          'etc': 2,\n",
      "          'one': 2,\n",
      "          'appears': 2,\n",
      "          'rather': 2,\n",
      "          'point': 2,\n",
      "          'least': 2,\n",
      "          'fathers': 2,\n",
      "          'arrival': 2,\n",
      "          'nbubby': 2,\n",
      "          'far': 2,\n",
      "          'first': 2,\n",
      "          'thirty': 2,\n",
      "          'minutes': 2,\n",
      "          'quite': 2,\n",
      "          'best': 2,\n",
      "          'implications': 2,\n",
      "          'like': 2,\n",
      "          'scenes': 2,\n",
      "          'seems': 2,\n",
      "          'de': 2,\n",
      "          'never': 2,\n",
      "          'people': 2,\n",
      "          'woman': 2,\n",
      "          'salvation': 2,\n",
      "          'band': 2,\n",
      "          'back': 2,\n",
      "          'rock': 2,\n",
      "          'group': 2,\n",
      "          'n': 2,\n",
      "          'touch': 2,\n",
      "          'experiences': 2,\n",
      "          'na': 2,\n",
      "          'turning': 2,\n",
      "          'raised': 1,\n",
      "          'cared': 1,\n",
      "          'domineering': 1,\n",
      "          'nshe': 1,\n",
      "          'inspires': 1,\n",
      "          'instills': 1,\n",
      "          'similar': 1,\n",
      "          'rudimentary': 1,\n",
      "          'grasp': 1,\n",
      "          'language': 1,\n",
      "          'mouthing': 1,\n",
      "          'monosyllables': 1,\n",
      "          'repetitions': 1,\n",
      "          'phrases': 1,\n",
      "          'taught': 1,\n",
      "          'fatally': 1,\n",
      "          'poisonous': 1,\n",
      "          'gasmask': 1,\n",
      "          'whenever': 1,\n",
      "          'door': 1,\n",
      "          '35yearsold': 1,\n",
      "          'body': 1,\n",
      "          'child': 1,\n",
      "          'spirit': 1,\n",
      "          'defiantly': 1,\n",
      "          'original': 1,\n",
      "          'australian': 1,\n",
      "          'man': 1,\n",
      "          'called': 1,\n",
      "          'nicholas': 1,\n",
      "          'day': 1,\n",
      "          'ralph': 1,\n",
      "          'cotterill': 1,\n",
      "          'nhis': 1,\n",
      "          'shabby': 1,\n",
      "          'downatheels': 1,\n",
      "          'priest': 1,\n",
      "          'permanently': 1,\n",
      "          'misplaced': 1,\n",
      "          'religion': 1,\n",
      "          'nunsurprisingly': 1,\n",
      "          'thrilled': 1,\n",
      "          'way': 1,\n",
      "          'turned': 1,\n",
      "          'however': 1,\n",
      "          'pleased': 1,\n",
      "          'renewing': 1,\n",
      "          'acquaintance': 1,\n",
      "          'claire': 1,\n",
      "          'benito': 1,\n",
      "          'ample': 1,\n",
      "          'breasts': 1,\n",
      "          'nsoon': 1,\n",
      "          'copulating': 1,\n",
      "          'dingy': 1,\n",
      "          'couch': 1,\n",
      "          'crouches': 1,\n",
      "          'confused': 1,\n",
      "          'next': 1,\n",
      "          'room': 1,\n",
      "          'acutely': 1,\n",
      "          'aware': 1,\n",
      "          'devoted': 1,\n",
      "          'attention': 1,\n",
      "          'new': 1,\n",
      "          'interest': 1,\n",
      "          'nbubbys': 1,\n",
      "          'relationship': 1,\n",
      "          'may': 1,\n",
      "          'warped': 1,\n",
      "          'stable': 1,\n",
      "          'disturbs': 1,\n",
      "          'precarious': 1,\n",
      "          'balance': 1,\n",
      "          'causing': 1,\n",
      "          'oedipal': 1,\n",
      "          'conflict': 1,\n",
      "          'endsfreud': 1,\n",
      "          'would': 1,\n",
      "          'pleasedin': 1,\n",
      "          'violence': 1,\n",
      "          'result': 1,\n",
      "          'freedom': 1,\n",
      "          'intuits': 1,\n",
      "          'air': 1,\n",
      "          'breathable': 1,\n",
      "          'leaves': 1,\n",
      "          'past': 1,\n",
      "          'behind': 1,\n",
      "          'nso': 1,\n",
      "          'good': 1,\n",
      "          'bring': 1,\n",
      "          'brilliant': 1,\n",
      "          'stays': 1,\n",
      "          'within': 1,\n",
      "          'constraints': 1,\n",
      "          'hermetic': 1,\n",
      "          'tworoom': 1,\n",
      "          'universe': 1,\n",
      "          'follows': 1,\n",
      "          'unrelentingly': 1,\n",
      "          'used': 1,\n",
      "          'sex': 1,\n",
      "          'unwittingly': 1,\n",
      "          'suffocates': 1,\n",
      "          'pet': 1,\n",
      "          'cat': 1,\n",
      "          'cellophane': 1,\n",
      "          'terrifed': 1,\n",
      "          'notion': 1,\n",
      "          'beat': 1,\n",
      "          'senseless': 1,\n",
      "          'sins': 1,\n",
      "          'grim': 1,\n",
      "          'savage': 1,\n",
      "          'appalling': 1,\n",
      "          'also': 1,\n",
      "          'strangely': 1,\n",
      "          'tenderde': 1,\n",
      "          'imagined': 1,\n",
      "          'bizarre': 1,\n",
      "          'exaggerate': 1,\n",
      "          'comic': 1,\n",
      "          'grotesqe': 1,\n",
      "          'purposes': 1,\n",
      "          'simply': 1,\n",
      "          'empathizes': 1,\n",
      "          'observes': 1,\n",
      "          'might': 1,\n",
      "          'intensity': 1,\n",
      "          'opening': 1,\n",
      "          'minimalist': 1,\n",
      "          'miseenscene': 1,\n",
      "          'immerses': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'environment': 1,\n",
      "          'decayed': 1,\n",
      "          'stratum': 1,\n",
      "          'owes': 1,\n",
      "          'much': 1,\n",
      "          'david': 1,\n",
      "          'lynchs': 1,\n",
      "          'eraserhead': 1,\n",
      "          'ambient': 1,\n",
      "          'industrial': 1,\n",
      "          'white': 1,\n",
      "          'noise': 1,\n",
      "          'soundtrack': 1,\n",
      "          'nfor': 1,\n",
      "          'maintains': 1,\n",
      "          'feel': 1,\n",
      "          'mood': 1,\n",
      "          'seem': 1,\n",
      "          'removed': 1,\n",
      "          'nthen': 1,\n",
      "          'lets': 1,\n",
      "          'brings': 1,\n",
      "          'contact': 1,\n",
      "          'recovers': 1,\n",
      "          'nour': 1,\n",
      "          'unlikely': 1,\n",
      "          'hero': 1,\n",
      "          'finds': 1,\n",
      "          'port': 1,\n",
      "          'adelaide': 1,\n",
      "          'wanders': 1,\n",
      "          'streets': 1,\n",
      "          'meets': 1,\n",
      "          'suffers': 1,\n",
      "          'learns': 1,\n",
      "          'survives': 1,\n",
      "          'seduced': 1,\n",
      "          'young': 1,\n",
      "          'army': 1,\n",
      "          'antisocial': 1,\n",
      "          'halfwit': 1,\n",
      "          'sense': 1,\n",
      "          'hygiene': 1,\n",
      "          'manages': 1,\n",
      "          'get': 1,\n",
      "          'laid': 1,\n",
      "          'mere': 1,\n",
      "          'hours': 1,\n",
      "          'escape': 1,\n",
      "          'sort': 1,\n",
      "          'question': 1,\n",
      "          'encourages': 1,\n",
      "          'wisely': 1,\n",
      "          'given': 1,\n",
      "          'free': 1,\n",
      "          'pizza': 1,\n",
      "          'sympathetic': 1,\n",
      "          'waitress': 1,\n",
      "          'insults': 1,\n",
      "          'traffic': 1,\n",
      "          'cop': 1,\n",
      "          'punched': 1,\n",
      "          'stomach': 1,\n",
      "          'shares': 1,\n",
      "          'beers': 1,\n",
      "          'truck': 1,\n",
      "          'raped': 1,\n",
      "          'translator': 1,\n",
      "          'mentally': 1,\n",
      "          'handicapped': 1,\n",
      "          'whose': 1,\n",
      "          'speech': 1,\n",
      "          'impaired': 1,\n",
      "          'beyond': 1,\n",
      "          'comprehension': 1,\n",
      "          'loved': 1,\n",
      "          'motherly': 1,\n",
      "          'largebreasted': 1,\n",
      "          'nurse': 1,\n",
      "          'carmel': 1,\n",
      "          'johnson': 1,\n",
      "          'turns': 1,\n",
      "          'inventive': 1,\n",
      "          'silly': 1,\n",
      "          'tasteless': 1,\n",
      "          'endearing': 1,\n",
      "          'sometimes': 1,\n",
      "          'things': 1,\n",
      "          'nde': 1,\n",
      "          'sure': 1,\n",
      "          'interface': 1,\n",
      "          'real': 1,\n",
      "          'tone': 1,\n",
      "          'shifts': 1,\n",
      "          'uneasily': 1,\n",
      "          'fable': 1,\n",
      "          'realism': 1,\n",
      "          'satire': 1,\n",
      "          'try': 1,\n",
      "          'base': 1,\n",
      "          'believable': 1,\n",
      "          'version': 1,\n",
      "          'weakest': 1,\n",
      "          'understood': 1,\n",
      "          'kind': 1,\n",
      "          'parable': 1,\n",
      "          'indeed': 1,\n",
      "          'religious': 1,\n",
      "          'foregrounded': 1,\n",
      "          'icons': 1,\n",
      "          'cross': 1,\n",
      "          'hang': 1,\n",
      "          'walls': 1,\n",
      "          'priests': 1,\n",
      "          'collar': 1,\n",
      "          'stolen': 1,\n",
      "          'church': 1,\n",
      "          'organplaying': 1,\n",
      "          'atheist': 1,\n",
      "          'lectures': 1,\n",
      "          'necessity': 1,\n",
      "          'unbelief': 1,\n",
      "          'redeems': 1,\n",
      "          'named': 1,\n",
      "          'angel': 1,\n",
      "          'manifold': 1,\n",
      "          'stresses': 1,\n",
      "          'shatter': 1,\n",
      "          'fragment': 1,\n",
      "          'psychosis': 1,\n",
      "          'accomodates': 1,\n",
      "          'heals': 1,\n",
      "          'nalthough': 1,\n",
      "          'heers': 1,\n",
      "          'times': 1,\n",
      "          'overbearing': 1,\n",
      "          'touching': 1,\n",
      "          'seemd': 1,\n",
      "          'harsh': 1,\n",
      "          'lesson': 1,\n",
      "          'damaging': 1,\n",
      "          'effects': 1,\n",
      "          'social': 1,\n",
      "          'construction': 1,\n",
      "          'humanist': 1,\n",
      "          'tale': 1,\n",
      "          'improbable': 1,\n",
      "          'hapless': 1,\n",
      "          'write': 1,\n",
      "          'song': 1,\n",
      "          'sing': 1,\n",
      "          'give': 1,\n",
      "          'gift': 1,\n",
      "          'community': 1,\n",
      "          'returns': 1,\n",
      "          'favour': 1,\n",
      "          'steps': 1,\n",
      "          'stage': 1,\n",
      "          'night': 1,\n",
      "          'frontman': 1,\n",
      "          'fragmented': 1,\n",
      "          'impressions': 1,\n",
      "          'performance': 1,\n",
      "          'art': 1,\n",
      "          'popular': 1,\n",
      "          'draw': 1,\n",
      "          'ninnocence': 1,\n",
      "          'triumphs': 1,\n",
      "          'holy': 1,\n",
      "          'fool': 1,\n",
      "          'idiot': 1,\n",
      "          'savant': 1,\n",
      "          'graces': 1,\n",
      "          'wisdom': 1,\n",
      "          'nits': 1,\n",
      "          'strange': 1,\n",
      "          'turn': 1,\n",
      "          'events': 1,\n",
      "          'shouldnt': 1,\n",
      "          'surprised': 1,\n",
      "          'aint': 1,\n",
      "          'movies': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'dance': 7,\n",
      "          'movie': 5,\n",
      "          'shall': 3,\n",
      "          'nthe': 3,\n",
      "          'lessons': 3,\n",
      "          'meet': 3,\n",
      "          'one': 3,\n",
      "          'nits': 3,\n",
      "          'funny': 2,\n",
      "          'laughs': 2,\n",
      "          'wonderful': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'appeal': 2,\n",
      "          'story': 2,\n",
      "          'na': 2,\n",
      "          'culture': 2,\n",
      "          'ballroom': 2,\n",
      "          'rich': 2,\n",
      "          'leave': 2,\n",
      "          'see': 2,\n",
      "          'life': 2,\n",
      "          'nafter': 2,\n",
      "          'studio': 2,\n",
      "          'characters': 2,\n",
      "          'without': 2,\n",
      "          'much': 2,\n",
      "          'time': 2,\n",
      "          'theater': 2,\n",
      "          'nature': 2,\n",
      "          'warm': 2,\n",
      "          'foreign': 1,\n",
      "          'language': 1,\n",
      "          'known': 1,\n",
      "          'names': 1,\n",
      "          'select': 1,\n",
      "          'number': 1,\n",
      "          'theaters': 1,\n",
      "          'showing': 1,\n",
      "          'wont': 1,\n",
      "          'seen': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'nand': 1,\n",
      "          'thats': 1,\n",
      "          'shame': 1,\n",
      "          'enchanting': 1,\n",
      "          'goofy': 1,\n",
      "          'full': 1,\n",
      "          'surprises': 1,\n",
      "          'sequences': 1,\n",
      "          'surprising': 1,\n",
      "          'thing': 1,\n",
      "          'universal': 1,\n",
      "          'us': 1,\n",
      "          'version': 1,\n",
      "          'works': 1,\n",
      "          'wonder': 1,\n",
      "          'really': 1,\n",
      "          'specific': 1,\n",
      "          'nalthough': 1,\n",
      "          'narrated': 1,\n",
      "          'setup': 1,\n",
      "          'adds': 1,\n",
      "          'extra': 1,\n",
      "          'resonance': 1,\n",
      "          'proceedings': 1,\n",
      "          'view': 1,\n",
      "          'japanese': 1,\n",
      "          'dancing': 1,\n",
      "          'character': 1,\n",
      "          'added': 1,\n",
      "          'layer': 1,\n",
      "          'isnt': 1,\n",
      "          'necessary': 1,\n",
      "          'understand': 1,\n",
      "          'enjoy': 1,\n",
      "          'important': 1,\n",
      "          'unexplained': 1,\n",
      "          'japanesespecific': 1,\n",
      "          'reference': 1,\n",
      "          'may': 1,\n",
      "          'bit': 1,\n",
      "          'puzzled': 1,\n",
      "          '1000': 1,\n",
      "          'yen': 1,\n",
      "          'roughly': 1,\n",
      "          '10': 1,\n",
      "          'youll': 1,\n",
      "          'know': 1,\n",
      "          'middle': 1,\n",
      "          'aged': 1,\n",
      "          'company': 1,\n",
      "          'man': 1,\n",
      "          'realizes': 1,\n",
      "          'achieving': 1,\n",
      "          'goals': 1,\n",
      "          'set': 1,\n",
      "          'house': 1,\n",
      "          'child': 1,\n",
      "          'good': 1,\n",
      "          'marriage': 1,\n",
      "          'still': 1,\n",
      "          'doesnt': 1,\n",
      "          'translate': 1,\n",
      "          'fulfilled': 1,\n",
      "          'glimpsing': 1,\n",
      "          'melancholy': 1,\n",
      "          'beauty': 1,\n",
      "          'looking': 1,\n",
      "          'window': 1,\n",
      "          'train': 1,\n",
      "          'home': 1,\n",
      "          'work': 1,\n",
      "          'sugiyana': 1,\n",
      "          'koji': 1,\n",
      "          'yakusho': 1,\n",
      "          'decides': 1,\n",
      "          'trepidation': 1,\n",
      "          'take': 1,\n",
      "          'order': 1,\n",
      "          'woman': 1,\n",
      "          'stirred': 1,\n",
      "          'something': 1,\n",
      "          'finding': 1,\n",
      "          'weekly': 1,\n",
      "          'fees': 1,\n",
      "          'private': 1,\n",
      "          'elegant': 1,\n",
      "          'beautiful': 1,\n",
      "          'mai': 1,\n",
      "          'tamiyo': 1,\n",
      "          'kusakari': 1,\n",
      "          'blood': 1,\n",
      "          'sugiyama': 1,\n",
      "          'opts': 1,\n",
      "          'groups': 1,\n",
      "          'simply': 1,\n",
      "          'near': 1,\n",
      "          'nwe': 1,\n",
      "          'players': 1,\n",
      "          'gem': 1,\n",
      "          'reasons': 1,\n",
      "          'joining': 1,\n",
      "          'class': 1,\n",
      "          'nlater': 1,\n",
      "          'aoki': 1,\n",
      "          'naoto': 1,\n",
      "          'takenaka': 1,\n",
      "          'coworker': 1,\n",
      "          'weirdo': 1,\n",
      "          'laugh': 1,\n",
      "          'riot': 1,\n",
      "          'highlights': 1,\n",
      "          'touching': 1,\n",
      "          'scenes': 1,\n",
      "          'evolve': 1,\n",
      "          'goes': 1,\n",
      "          'along': 1,\n",
      "          'pleasure': 1,\n",
      "          'watch': 1,\n",
      "          'propelled': 1,\n",
      "          'almost': 1,\n",
      "          'solely': 1,\n",
      "          'performances': 1,\n",
      "          'difficult': 1,\n",
      "          'explain': 1,\n",
      "          'charms': 1,\n",
      "          'revealing': 1,\n",
      "          'abounds': 1,\n",
      "          'little': 1,\n",
      "          'revelations': 1,\n",
      "          'subtly': 1,\n",
      "          'shape': 1,\n",
      "          'end': 1,\n",
      "          'fuller': 1,\n",
      "          'understood': 1,\n",
      "          'movies': 1,\n",
      "          'french': 1,\n",
      "          'seem': 1,\n",
      "          'make': 1,\n",
      "          'anymore': 1,\n",
      "          'big': 1,\n",
      "          'plot': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'gunplay': 1,\n",
      "          'tragic': 1,\n",
      "          'consequences': 1,\n",
      "          'forced': 1,\n",
      "          'examinations': 1,\n",
      "          'love': 1,\n",
      "          'insights': 1,\n",
      "          'evil': 1,\n",
      "          'njust': 1,\n",
      "          'endearing': 1,\n",
      "          'charm': 1,\n",
      "          'pants': 1,\n",
      "          'nwhen': 1,\n",
      "          'last': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'fuzzy': 1,\n",
      "          'inside': 1,\n",
      "          'n': 1,\n",
      "          'treacly': 1,\n",
      "          'aftertaste': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 7,\n",
      "          'contact': 4,\n",
      "          'world': 4,\n",
      "          'foster': 4,\n",
      "          'film': 4,\n",
      "          'radio': 4,\n",
      "          'nthe': 4,\n",
      "          'scifi': 3,\n",
      "          'science': 3,\n",
      "          'fact': 3,\n",
      "          'faith': 3,\n",
      "          'communication': 3,\n",
      "          'intelligent': 3,\n",
      "          'system': 3,\n",
      "          'nher': 3,\n",
      "          'government': 3,\n",
      "          'allie': 3,\n",
      "          'find': 3,\n",
      "          'upon': 3,\n",
      "          'transport': 3,\n",
      "          'mcconaughey': 3,\n",
      "          'first': 2,\n",
      "          'building': 2,\n",
      "          'blockbuster': 2,\n",
      "          'project': 2,\n",
      "          'nas': 2,\n",
      "          'turned': 2,\n",
      "          'questions': 2,\n",
      "          'god': 2,\n",
      "          'nshe': 2,\n",
      "          'search': 2,\n",
      "          'passion': 2,\n",
      "          'result': 2,\n",
      "          'hamradio': 2,\n",
      "          'na': 2,\n",
      "          'scene': 2,\n",
      "          'father': 2,\n",
      "          'whether': 2,\n",
      "          'research': 2,\n",
      "          'seti': 2,\n",
      "          'hope': 2,\n",
      "          'would': 2,\n",
      "          'believers': 2,\n",
      "          'emission': 2,\n",
      "          'repeating': 2,\n",
      "          'situation': 2,\n",
      "          'within': 2,\n",
      "          'presidents': 2,\n",
      "          'spiritual': 2,\n",
      "          'advisor': 2,\n",
      "          'point': 2,\n",
      "          'movie': 2,\n",
      "          'meeting': 2,\n",
      "          'worlds': 2,\n",
      "          'actually': 2,\n",
      "          'heard': 1,\n",
      "          'hype': 1,\n",
      "          'nnow': 1,\n",
      "          'mind': 1,\n",
      "          'coupled': 1,\n",
      "          'knowledge': 1,\n",
      "          'jodie': 1,\n",
      "          'fosters': 1,\n",
      "          'involvement': 1,\n",
      "          'thought': 1,\n",
      "          'expectations': 1,\n",
      "          'completely': 1,\n",
      "          'nullified': 1,\n",
      "          'topsyturvy': 1,\n",
      "          'nrobert': 1,\n",
      "          'zemeckis': 1,\n",
      "          'back': 1,\n",
      "          'euphoria': 1,\n",
      "          'created': 1,\n",
      "          'last': 1,\n",
      "          'forrest': 1,\n",
      "          'gump': 1,\n",
      "          'proves': 1,\n",
      "          'mastery': 1,\n",
      "          'fusing': 1,\n",
      "          'tales': 1,\n",
      "          'adventure': 1,\n",
      "          'along': 1,\n",
      "          'endearing': 1,\n",
      "          'lines': 1,\n",
      "          'human': 1,\n",
      "          'spirit': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'definite': 1,\n",
      "          'difference': 1,\n",
      "          'nbased': 1,\n",
      "          'late': 1,\n",
      "          'carl': 1,\n",
      "          'sagan': 1,\n",
      "          'novel': 1,\n",
      "          'name': 1,\n",
      "          'story': 1,\n",
      "          'delves': 1,\n",
      "          'nallie': 1,\n",
      "          'astronomer': 1,\n",
      "          'spends': 1,\n",
      "          'time': 1,\n",
      "          'listening': 1,\n",
      "          'stars': 1,\n",
      "          'via': 1,\n",
      "          'ultrahuge': 1,\n",
      "          'dishes': 1,\n",
      "          'life': 1,\n",
      "          'beyond': 1,\n",
      "          'solar': 1,\n",
      "          'longdistance': 1,\n",
      "          'younger': 1,\n",
      "          'days': 1,\n",
      "          'spent': 1,\n",
      "          'avidly': 1,\n",
      "          'front': 1,\n",
      "          'hobbyist': 1,\n",
      "          'device': 1,\n",
      "          'latefather': 1,\n",
      "          'bought': 1,\n",
      "          'particularly': 1,\n",
      "          'strengthens': 1,\n",
      "          'audiences': 1,\n",
      "          'view': 1,\n",
      "          'asked': 1,\n",
      "          'could': 1,\n",
      "          'latemother': 1,\n",
      "          'replied': 1,\n",
      "          'even': 1,\n",
      "          'powerful': 1,\n",
      "          'nallies': 1,\n",
      "          'based': 1,\n",
      "          'extra': 1,\n",
      "          'terrestrial': 1,\n",
      "          'intelligence': 1,\n",
      "          'listens': 1,\n",
      "          'emissions': 1,\n",
      "          'galaxies': 1,\n",
      "          'finding': 1,\n",
      "          'suggest': 1,\n",
      "          'manipulation': 1,\n",
      "          'work': 1,\n",
      "          'never': 1,\n",
      "          'scrutiny': 1,\n",
      "          'us': 1,\n",
      "          'considers': 1,\n",
      "          'waste': 1,\n",
      "          'taxpayers': 1,\n",
      "          'money': 1,\n",
      "          'politically': 1,\n",
      "          'unviable': 1,\n",
      "          'supervisor': 1,\n",
      "          'tom': 1,\n",
      "          'skerritt': 1,\n",
      "          'pulls': 1,\n",
      "          'plug': 1,\n",
      "          'nundaunted': 1,\n",
      "          'managed': 1,\n",
      "          'gather': 1,\n",
      "          'loyal': 1,\n",
      "          'group': 1,\n",
      "          'eventually': 1,\n",
      "          'found': 1,\n",
      "          'funding': 1,\n",
      "          'large': 1,\n",
      "          'private': 1,\n",
      "          'corporation': 1,\n",
      "          'following': 1,\n",
      "          'months': 1,\n",
      "          'treacherous': 1,\n",
      "          'hopes': 1,\n",
      "          'contantly': 1,\n",
      "          'pressured': 1,\n",
      "          'changed': 1,\n",
      "          'day': 1,\n",
      "          'caught': 1,\n",
      "          'seemingly': 1,\n",
      "          'soundwave': 1,\n",
      "          'news': 1,\n",
      "          'attracted': 1,\n",
      "          'hordes': 1,\n",
      "          'alien': 1,\n",
      "          'cultist': 1,\n",
      "          'media': 1,\n",
      "          'course': 1,\n",
      "          'became': 1,\n",
      "          'intense': 1,\n",
      "          'discovery': 1,\n",
      "          'pictorial': 1,\n",
      "          'plans': 1,\n",
      "          'form': 1,\n",
      "          'embedded': 1,\n",
      "          'sound': 1,\n",
      "          'join': 1,\n",
      "          'forces': 1,\n",
      "          'build': 1,\n",
      "          'desperate': 1,\n",
      "          'go': 1,\n",
      "          'enrols': 1,\n",
      "          'among': 1,\n",
      "          'hopefuls': 1,\n",
      "          'represent': 1,\n",
      "          'ready': 1,\n",
      "          'operation': 1,\n",
      "          'eligibility': 1,\n",
      "          'spot': 1,\n",
      "          'failed': 1,\n",
      "          'questioned': 1,\n",
      "          'beliefs': 1,\n",
      "          'existence': 1,\n",
      "          'atheist': 1,\n",
      "          'belief': 1,\n",
      "          'refuses': 1,\n",
      "          'budge': 1,\n",
      "          'questioning': 1,\n",
      "          'nat': 1,\n",
      "          'plot': 1,\n",
      "          'thickens': 1,\n",
      "          'considerably': 1,\n",
      "          'romantically': 1,\n",
      "          'involved': 1,\n",
      "          'strong': 1,\n",
      "          'propelled': 1,\n",
      "          'depth': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'played': 1,\n",
      "          'nfrom': 1,\n",
      "          'obvious': 1,\n",
      "          'two': 1,\n",
      "          'sort': 1,\n",
      "          'kindred': 1,\n",
      "          'spirits': 1,\n",
      "          'apart': 1,\n",
      "          'almost': 1,\n",
      "          'aspects': 1,\n",
      "          'person': 1,\n",
      "          'drawn': 1,\n",
      "          'facts': 1,\n",
      "          'believes': 1,\n",
      "          'power': 1,\n",
      "          'unseen': 1,\n",
      "          'added': 1,\n",
      "          'put': 1,\n",
      "          'makes': 1,\n",
      "          'entire': 1,\n",
      "          'storytelling': 1,\n",
      "          'process': 1,\n",
      "          'near': 1,\n",
      "          'flawless': 1,\n",
      "          'nmany': 1,\n",
      "          'people': 1,\n",
      "          'read': 1,\n",
      "          'synopsis': 1,\n",
      "          'tad': 1,\n",
      "          'ridiculous': 1,\n",
      "          'immersing': 1,\n",
      "          'gives': 1,\n",
      "          'entirely': 1,\n",
      "          'different': 1,\n",
      "          'perspective': 1,\n",
      "          'free': 1,\n",
      "          'bias': 1,\n",
      "          'preconceptions': 1,\n",
      "          'nzemeckis': 1,\n",
      "          'team': 1,\n",
      "          'screen': 1,\n",
      "          'writers': 1,\n",
      "          'done': 1,\n",
      "          'remarkable': 1,\n",
      "          'job': 1,\n",
      "          'telling': 1,\n",
      "          'tale': 1,\n",
      "          'ncontact': 1,\n",
      "          'works': 1,\n",
      "          'delving': 1,\n",
      "          'controversy': 1,\n",
      "          'rather': 1,\n",
      "          'touches': 1,\n",
      "          'thinking': 1,\n",
      "          'audience': 1,\n",
      "          'urging': 1,\n",
      "          'ponder': 1,\n",
      "          'raised': 1,\n",
      "          'concerning': 1,\n",
      "          'compromise': 1,\n",
      "          'ni': 1,\n",
      "          'consider': 1,\n",
      "          'mustsees': 1,\n",
      "          'year': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'disney': 12,\n",
      "          'mulan': 8,\n",
      "          'fa': 6,\n",
      "          'may': 6,\n",
      "          'voice': 6,\n",
      "          'animated': 5,\n",
      "          'one': 5,\n",
      "          'see': 4,\n",
      "          'movie': 4,\n",
      "          'little': 4,\n",
      "          'nthe': 4,\n",
      "          'film': 4,\n",
      "          'family': 4,\n",
      "          'army': 4,\n",
      "          'provides': 4,\n",
      "          'grandmother': 4,\n",
      "          'success': 3,\n",
      "          'get': 3,\n",
      "          'next': 3,\n",
      "          'plot': 3,\n",
      "          'feature': 3,\n",
      "          'father': 3,\n",
      "          'chinese': 3,\n",
      "          'nmulan': 3,\n",
      "          'time': 3,\n",
      "          'fathers': 3,\n",
      "          'also': 3,\n",
      "          'beast': 3,\n",
      "          'nin': 3,\n",
      "          'love': 2,\n",
      "          'serve': 2,\n",
      "          'long': 2,\n",
      "          'nyou': 2,\n",
      "          'features': 2,\n",
      "          'two': 2,\n",
      "          'theme': 2,\n",
      "          'characters': 2,\n",
      "          'ancient': 2,\n",
      "          'might': 2,\n",
      "          'children': 2,\n",
      "          'disneys': 2,\n",
      "          'latest': 2,\n",
      "          'chinas': 2,\n",
      "          'fight': 2,\n",
      "          'nwhen': 2,\n",
      "          'zhou': 2,\n",
      "          'soontek': 2,\n",
      "          'oh': 2,\n",
      "          'battle': 2,\n",
      "          'tale': 2,\n",
      "          'scene': 2,\n",
      "          'matchmaker': 2,\n",
      "          'honor': 2,\n",
      "          'place': 2,\n",
      "          'nas': 2,\n",
      "          'songs': 2,\n",
      "          'throughout': 2,\n",
      "          'much': 2,\n",
      "          'recognition': 2,\n",
      "          'singing': 2,\n",
      "          'shang': 2,\n",
      "          'although': 2,\n",
      "          'better': 2,\n",
      "          'big': 2,\n",
      "          'nthere': 2,\n",
      "          'significantly': 2,\n",
      "          'nit': 2,\n",
      "          'history': 2,\n",
      "          'animators': 2,\n",
      "          'chosen': 2,\n",
      "          'many': 2,\n",
      "          'beauty': 2,\n",
      "          'miss': 2,\n",
      "          'murphy': 2,\n",
      "          'ni': 2,\n",
      "          'guess': 2,\n",
      "          'fas': 2,\n",
      "          'natasha': 2,\n",
      "          'actors': 2,\n",
      "          'james': 2,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'guaranteed': 1,\n",
      "          'nkids': 1,\n",
      "          'go': 1,\n",
      "          'nthen': 1,\n",
      "          'toys': 1,\n",
      "          'noh': 1,\n",
      "          'video': 1,\n",
      "          'came': 1,\n",
      "          'ngot': 1,\n",
      "          'buy': 1,\n",
      "          'risk': 1,\n",
      "          'billys': 1,\n",
      "          'temper': 1,\n",
      "          'tantrums': 1,\n",
      "          'month': 1,\n",
      "          'nall': 1,\n",
      "          'culminates': 1,\n",
      "          'childhood': 1,\n",
      "          'equivalent': 1,\n",
      "          'pilgrimage': 1,\n",
      "          'mecca': 1,\n",
      "          'visit': 1,\n",
      "          'magic': 1,\n",
      "          'kingdom': 1,\n",
      "          'nstay': 1,\n",
      "          'disneyland': 1,\n",
      "          'hotel': 1,\n",
      "          'nbuy': 1,\n",
      "          'tshirt': 1,\n",
      "          'neat': 1,\n",
      "          'ice': 1,\n",
      "          'cream': 1,\n",
      "          'mickey': 1,\n",
      "          'mouse': 1,\n",
      "          'stick': 1,\n",
      "          'nits': 1,\n",
      "          'vertical': 1,\n",
      "          'horizontal': 1,\n",
      "          'monopoly': 1,\n",
      "          'think': 1,\n",
      "          'ndale': 1,\n",
      "          'carnegie': 1,\n",
      "          'good': 1,\n",
      "          'nwhats': 1,\n",
      "          'amazing': 1,\n",
      "          'spite': 1,\n",
      "          'severe': 1,\n",
      "          'lack': 1,\n",
      "          'originality': 1,\n",
      "          'days': 1,\n",
      "          'components': 1,\n",
      "          'changes': 1,\n",
      "          'new': 1,\n",
      "          'mold': 1,\n",
      "          'fable': 1,\n",
      "          'dropped': 1,\n",
      "          'try': 1,\n",
      "          'rise': 1,\n",
      "          'previous': 1,\n",
      "          'nearly': 1,\n",
      "          'always': 1,\n",
      "          'destined': 1,\n",
      "          'nhowever': 1,\n",
      "          'generally': 1,\n",
      "          'given': 1,\n",
      "          'far': 1,\n",
      "          'boxoffice': 1,\n",
      "          'receipts': 1,\n",
      "          'merchandising': 1,\n",
      "          'dollars': 1,\n",
      "          'glimmers': 1,\n",
      "          'eyes': 1,\n",
      "          'critically': 1,\n",
      "          'varied': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'hollywood': 1,\n",
      "          'offer': 1,\n",
      "          'nluckily': 1,\n",
      "          'offering': 1,\n",
      "          'manages': 1,\n",
      "          'engaging': 1,\n",
      "          'refreshing': 1,\n",
      "          'even': 1,\n",
      "          'rife': 1,\n",
      "          'formula': 1,\n",
      "          'starts': 1,\n",
      "          'invasion': 1,\n",
      "          'china': 1,\n",
      "          'huns': 1,\n",
      "          'led': 1,\n",
      "          'imposing': 1,\n",
      "          'shanyu': 1,\n",
      "          'miguel': 1,\n",
      "          'ferrer': 1,\n",
      "          'nsoon': 1,\n",
      "          'emperor': 1,\n",
      "          'pat': 1,\n",
      "          'morita': 1,\n",
      "          'mobilizes': 1,\n",
      "          'armies': 1,\n",
      "          'decrees': 1,\n",
      "          'male': 1,\n",
      "          'country': 1,\n",
      "          'shall': 1,\n",
      "          'defense': 1,\n",
      "          'served': 1,\n",
      "          'notice': 1,\n",
      "          'elderly': 1,\n",
      "          'must': 1,\n",
      "          'answer': 1,\n",
      "          'call': 1,\n",
      "          'males': 1,\n",
      "          'household': 1,\n",
      "          'nfearing': 1,\n",
      "          'surely': 1,\n",
      "          'killed': 1,\n",
      "          'mingna': 1,\n",
      "          'wen': 1,\n",
      "          'disguises': 1,\n",
      "          'man': 1,\n",
      "          'sneaks': 1,\n",
      "          'royal': 1,\n",
      "          'orders': 1,\n",
      "          'join': 1,\n",
      "          'based': 1,\n",
      "          'epic': 1,\n",
      "          'poem': 1,\n",
      "          'classic': 1,\n",
      "          'triumph': 1,\n",
      "          'ugly': 1,\n",
      "          'duckling': 1,\n",
      "          'disgrace': 1,\n",
      "          'loving': 1,\n",
      "          'difficult': 1,\n",
      "          'fitting': 1,\n",
      "          'traditional': 1,\n",
      "          'womans': 1,\n",
      "          'role': 1,\n",
      "          'amusing': 1,\n",
      "          'attempts': 1,\n",
      "          'assess': 1,\n",
      "          'value': 1,\n",
      "          'potential': 1,\n",
      "          'husband': 1,\n",
      "          'grace': 1,\n",
      "          'strong': 1,\n",
      "          'points': 1,\n",
      "          'nvery': 1,\n",
      "          'early': 1,\n",
      "          'presented': 1,\n",
      "          'high': 1,\n",
      "          'importance': 1,\n",
      "          'bringing': 1,\n",
      "          'ones': 1,\n",
      "          'botching': 1,\n",
      "          'chance': 1,\n",
      "          'gaining': 1,\n",
      "          'favor': 1,\n",
      "          'fails': 1,\n",
      "          'task': 1,\n",
      "          'nby': 1,\n",
      "          'leaving': 1,\n",
      "          'home': 1,\n",
      "          'spare': 1,\n",
      "          'life': 1,\n",
      "          'bring': 1,\n",
      "          'case': 1,\n",
      "          'musicals': 1,\n",
      "          'first': 1,\n",
      "          'rate': 1,\n",
      "          'pervasive': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'airplay': 1,\n",
      "          'least': 1,\n",
      "          'doubt': 1,\n",
      "          'receive': 1,\n",
      "          'come': 1,\n",
      "          'oscar': 1,\n",
      "          'nboth': 1,\n",
      "          'lea': 1,\n",
      "          'salonga': 1,\n",
      "          'donny': 1,\n",
      "          'osmond': 1,\n",
      "          'sings': 1,\n",
      "          'captain': 1,\n",
      "          'mulans': 1,\n",
      "          'unit': 1,\n",
      "          'obligatory': 1,\n",
      "          'interest': 1,\n",
      "          'competent': 1,\n",
      "          'salongas': 1,\n",
      "          'translates': 1,\n",
      "          'animation': 1,\n",
      "          'hear': 1,\n",
      "          'understand': 1,\n",
      "          'ninterestingly': 1,\n",
      "          'musical': 1,\n",
      "          'numbers': 1,\n",
      "          'often': 1,\n",
      "          'done': 1,\n",
      "          'flourishes': 1,\n",
      "          'surprisingly': 1,\n",
      "          'muted': 1,\n",
      "          'number': 1,\n",
      "          'customary': 1,\n",
      "          'second': 1,\n",
      "          'third': 1,\n",
      "          'song': 1,\n",
      "          'detract': 1,\n",
      "          'rest': 1,\n",
      "          'however': 1,\n",
      "          'expectation': 1,\n",
      "          'built': 1,\n",
      "          'formulaic': 1,\n",
      "          'viewers': 1,\n",
      "          'feel': 1,\n",
      "          'something': 1,\n",
      "          'missing': 1,\n",
      "          'nartistically': 1,\n",
      "          'adopt': 1,\n",
      "          'subdued': 1,\n",
      "          'pastels': 1,\n",
      "          'artwork': 1,\n",
      "          'live': 1,\n",
      "          'vibrance': 1,\n",
      "          'associated': 1,\n",
      "          'works': 1,\n",
      "          'helps': 1,\n",
      "          'contribute': 1,\n",
      "          'authentic': 1,\n",
      "          'therefore': 1,\n",
      "          'credible': 1,\n",
      "          'nature': 1,\n",
      "          'otherwise': 1,\n",
      "          'seen': 1,\n",
      "          'typically': 1,\n",
      "          'disneyfied': 1,\n",
      "          'ethnic': 1,\n",
      "          'couple': 1,\n",
      "          'visually': 1,\n",
      "          'standout': 1,\n",
      "          'scenes': 1,\n",
      "          'involving': 1,\n",
      "          'charge': 1,\n",
      "          'shanyus': 1,\n",
      "          'hun': 1,\n",
      "          'utilizes': 1,\n",
      "          'computerenhanced': 1,\n",
      "          'imagery': 1,\n",
      "          'employed': 1,\n",
      "          'since': 1,\n",
      "          'chandelier': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'quick': 1,\n",
      "          'resolves': 1,\n",
      "          'take': 1,\n",
      "          'dons': 1,\n",
      "          'old': 1,\n",
      "          'armor': 1,\n",
      "          'unsheathes': 1,\n",
      "          'sword': 1,\n",
      "          'reflection': 1,\n",
      "          'polished': 1,\n",
      "          'metal': 1,\n",
      "          'left': 1,\n",
      "          'thinking': 1,\n",
      "          'really': 1,\n",
      "          'cool': 1,\n",
      "          'na': 1,\n",
      "          'wonderful': 1,\n",
      "          'range': 1,\n",
      "          'performances': 1,\n",
      "          'delight': 1,\n",
      "          'audience': 1,\n",
      "          'varying': 1,\n",
      "          'straight': 1,\n",
      "          'comical': 1,\n",
      "          'harvey': 1,\n",
      "          'fierstein': 1,\n",
      "          'yao': 1,\n",
      "          'gruff': 1,\n",
      "          'pugilistic': 1,\n",
      "          'member': 1,\n",
      "          'shangs': 1,\n",
      "          'conscripted': 1,\n",
      "          'neven': 1,\n",
      "          'outrageous': 1,\n",
      "          'eddie': 1,\n",
      "          'mushu': 1,\n",
      "          'diminutive': 1,\n",
      "          'guardian': 1,\n",
      "          'dragon': 1,\n",
      "          'sent': 1,\n",
      "          'look': 1,\n",
      "          'nalthough': 1,\n",
      "          'obvious': 1,\n",
      "          'attempt': 1,\n",
      "          'relive': 1,\n",
      "          'chemistry': 1,\n",
      "          'brought': 1,\n",
      "          'forth': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'aladdin': 1,\n",
      "          'nevertheless': 1,\n",
      "          'distinguishes': 1,\n",
      "          'winning': 1,\n",
      "          'performance': 1,\n",
      "          'found': 1,\n",
      "          'choice': 1,\n",
      "          'b': 1,\n",
      "          'nwong': 1,\n",
      "          'strange': 1,\n",
      "          'remember': 1,\n",
      "          'martin': 1,\n",
      "          'shorts': 1,\n",
      "          'wedding': 1,\n",
      "          'planner': 1,\n",
      "          'assistant': 1,\n",
      "          'bride': 1,\n",
      "          'used': 1,\n",
      "          'robbie': 1,\n",
      "          'benson': 1,\n",
      "          'anythings': 1,\n",
      "          'possible': 1,\n",
      "          'event': 1,\n",
      "          'wong': 1,\n",
      "          'performs': 1,\n",
      "          'admirably': 1,\n",
      "          'well': 1,\n",
      "          'none': 1,\n",
      "          'character': 1,\n",
      "          'significant': 1,\n",
      "          'amount': 1,\n",
      "          'humor': 1,\n",
      "          'nshe': 1,\n",
      "          'deserves': 1,\n",
      "          'levity': 1,\n",
      "          'brings': 1,\n",
      "          'voiced': 1,\n",
      "          'remarkable': 1,\n",
      "          'people': 1,\n",
      "          'njune': 1,\n",
      "          'foray': 1,\n",
      "          'supplies': 1,\n",
      "          'speaking': 1,\n",
      "          'venerable': 1,\n",
      "          'actress': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'work': 1,\n",
      "          'rocky': 1,\n",
      "          'squirrel': 1,\n",
      "          'fatale': 1,\n",
      "          'boris': 1,\n",
      "          'nmarni': 1,\n",
      "          'nixon': 1,\n",
      "          'vocalist': 1,\n",
      "          'dubbed': 1,\n",
      "          'voices': 1,\n",
      "          'anna': 1,\n",
      "          'king': 1,\n",
      "          'maria': 1,\n",
      "          'west': 1,\n",
      "          'side': 1,\n",
      "          'story': 1,\n",
      "          'eliza': 1,\n",
      "          'fair': 1,\n",
      "          'lady': 1,\n",
      "          'nwith': 1,\n",
      "          'mind': 1,\n",
      "          'hearing': 1,\n",
      "          'like': 1,\n",
      "          'listening': 1,\n",
      "          'piece': 1,\n",
      "          'away': 1,\n",
      "          'eurocentrism': 1,\n",
      "          'dominated': 1,\n",
      "          'films': 1,\n",
      "          'effort': 1,\n",
      "          'culturally': 1,\n",
      "          'sensitive': 1,\n",
      "          'avoid': 1,\n",
      "          'saigon': 1,\n",
      "          'type': 1,\n",
      "          'debacle': 1,\n",
      "          'wisely': 1,\n",
      "          'employ': 1,\n",
      "          'asianamerican': 1,\n",
      "          'lead': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'addition': 1,\n",
      "          'already': 1,\n",
      "          'mentioned': 1,\n",
      "          'cast': 1,\n",
      "          'includes': 1,\n",
      "          'ubiquitous': 1,\n",
      "          'talents': 1,\n",
      "          'hong': 1,\n",
      "          'gedde': 1,\n",
      "          'watanabe': 1,\n",
      "          'shigeta': 1,\n",
      "          'george': 1,\n",
      "          'takei': 1,\n",
      "          'clyde': 1,\n",
      "          'kusatsu': 1,\n",
      "          'wasnt': 1,\n",
      "          'available': 1,\n",
      "          'nat': 1,\n",
      "          'running': 1,\n",
      "          'slightly': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'moves': 1,\n",
      "          'quickly': 1,\n",
      "          'solid': 1,\n",
      "          'entertainment': 1,\n",
      "          'happily': 1,\n",
      "          'adults': 1,\n",
      "          'nthis': 1,\n",
      "          'kind': 1,\n",
      "          'makes': 1,\n",
      "          'wonder': 1,\n",
      "          'rather': 1,\n",
      "          'hope': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'margaret': 7,\n",
      "          'beau': 6,\n",
      "          'every': 5,\n",
      "          'life': 4,\n",
      "          'nbut': 4,\n",
      "          'mother': 4,\n",
      "          'reese': 4,\n",
      "          'nthe': 4,\n",
      "          'margarets': 3,\n",
      "          'get': 3,\n",
      "          'lot': 3,\n",
      "          'complicated': 3,\n",
      "          'son': 3,\n",
      "          'turns': 3,\n",
      "          'body': 3,\n",
      "          'deep': 3,\n",
      "          'end': 3,\n",
      "          'swinton': 3,\n",
      "          'single': 2,\n",
      "          'nher': 2,\n",
      "          'talented': 2,\n",
      "          'darby': 2,\n",
      "          'words': 2,\n",
      "          'next': 2,\n",
      "          'day': 2,\n",
      "          'alek': 2,\n",
      "          'makes': 2,\n",
      "          'plays': 2,\n",
      "          'peter': 2,\n",
      "          'hall': 2,\n",
      "          'role': 2,\n",
      "          'everything': 2,\n",
      "          'tilda': 2,\n",
      "          'ones': 2,\n",
      "          'fear': 2,\n",
      "          'three': 1,\n",
      "          'pre': 1,\n",
      "          'midteen': 1,\n",
      "          'children': 1,\n",
      "          'aging': 1,\n",
      "          'fatherinlaw': 1,\n",
      "          'care': 1,\n",
      "          'forcooking': 1,\n",
      "          'cleaning': 1,\n",
      "          'laundry': 1,\n",
      "          'dropoffs': 1,\n",
      "          'little': 1,\n",
      "          'league': 1,\n",
      "          'practice': 1,\n",
      "          'pickups': 1,\n",
      "          'ballet': 1,\n",
      "          'practicemargaret': 1,\n",
      "          'halls': 1,\n",
      "          'rife': 1,\n",
      "          'complications': 1,\n",
      "          'nand': 1,\n",
      "          'naval': 1,\n",
      "          'officer': 1,\n",
      "          'husband': 1,\n",
      "          'stationed': 1,\n",
      "          'somewhere': 1,\n",
      "          'north': 1,\n",
      "          'atlantic': 1,\n",
      "          'virtually': 1,\n",
      "          'impossible': 1,\n",
      "          'reach': 1,\n",
      "          'telephone': 1,\n",
      "          'leads': 1,\n",
      "          'crazed': 1,\n",
      "          'parent': 1,\n",
      "          'hectic': 1,\n",
      "          'world': 1,\n",
      "          'teenage': 1,\n",
      "          'trumpet': 1,\n",
      "          'player': 1,\n",
      "          'strong': 1,\n",
      "          'prospects': 1,\n",
      "          'accepted': 1,\n",
      "          'wesleyan': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'universitys': 1,\n",
      "          'music': 1,\n",
      "          'program': 1,\n",
      "          'fallen': 1,\n",
      "          'wrong': 1,\n",
      "          'crowd': 1,\n",
      "          'nhis': 1,\n",
      "          'drives': 1,\n",
      "          'idyllic': 1,\n",
      "          'lakeside': 1,\n",
      "          'community': 1,\n",
      "          'tahoe': 1,\n",
      "          'city': 1,\n",
      "          'california': 1,\n",
      "          'sprawling': 1,\n",
      "          'urban': 1,\n",
      "          'metropolis': 1,\n",
      "          'reno': 1,\n",
      "          'nevada': 1,\n",
      "          'imposing': 1,\n",
      "          'concrete': 1,\n",
      "          'superstructures': 1,\n",
      "          'seedy': 1,\n",
      "          'neonlit': 1,\n",
      "          'nightclubs': 1,\n",
      "          'confront': 1,\n",
      "          '30something': 1,\n",
      "          'man': 1,\n",
      "          'befriended': 1,\n",
      "          'n': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'warns': 1,\n",
      "          'however': 1,\n",
      "          'appear': 1,\n",
      "          'fall': 1,\n",
      "          'deaf': 1,\n",
      "          'ears': 1,\n",
      "          'drunk': 1,\n",
      "          'family': 1,\n",
      "          'homestead': 1,\n",
      "          'later': 1,\n",
      "          'evening': 1,\n",
      "          'urging': 1,\n",
      "          'join': 1,\n",
      "          'boathouse': 1,\n",
      "          'nthere': 1,\n",
      "          'advances': 1,\n",
      "          'pushing': 1,\n",
      "          'shoving': 1,\n",
      "          'runs': 1,\n",
      "          'back': 1,\n",
      "          'house': 1,\n",
      "          'passed': 1,\n",
      "          'startled': 1,\n",
      "          'crack': 1,\n",
      "          'wooden': 1,\n",
      "          'railing': 1,\n",
      "          'giving': 1,\n",
      "          'way': 1,\n",
      "          'breaks': 1,\n",
      "          'cold': 1,\n",
      "          'blue': 1,\n",
      "          'silence': 1,\n",
      "          'intoxicated': 1,\n",
      "          'tumbles': 1,\n",
      "          'sight': 1,\n",
      "          'morning': 1,\n",
      "          'walk': 1,\n",
      "          'discovers': 1,\n",
      "          'reeses': 1,\n",
      "          'lifeless': 1,\n",
      "          'lying': 1,\n",
      "          'crumpled': 1,\n",
      "          'shoreline': 1,\n",
      "          'boat': 1,\n",
      "          'anchor': 1,\n",
      "          'impaled': 1,\n",
      "          'chest': 1,\n",
      "          'nwith': 1,\n",
      "          'maternal': 1,\n",
      "          'instincts': 1,\n",
      "          'working': 1,\n",
      "          'overtime': 1,\n",
      "          'quickly': 1,\n",
      "          'ferries': 1,\n",
      "          'lake': 1,\n",
      "          'weighs': 1,\n",
      "          'dumps': 1,\n",
      "          'overboard': 1,\n",
      "          'nsoon': 1,\n",
      "          'discovered': 1,\n",
      "          'snagged': 1,\n",
      "          'local': 1,\n",
      "          'fishermans': 1,\n",
      "          'line': 1,\n",
      "          'paid': 1,\n",
      "          'visit': 1,\n",
      "          'attractiveseeming': 1,\n",
      "          'blackmailer': 1,\n",
      "          'red': 1,\n",
      "          'nova': 1,\n",
      "          'nalek': 1,\n",
      "          'spera': 1,\n",
      "          'threatens': 1,\n",
      "          'hand': 1,\n",
      "          'compromising': 1,\n",
      "          'videotape': 1,\n",
      "          'police': 1,\n",
      "          'unless': 1,\n",
      "          'comes': 1,\n",
      "          '50': 1,\n",
      "          '000': 1,\n",
      "          '4': 1,\n",
      "          'oclock': 1,\n",
      "          'something': 1,\n",
      "          'never': 1,\n",
      "          'expected': 1,\n",
      "          'nbased': 1,\n",
      "          'elisabeth': 1,\n",
      "          'sanxay': 1,\n",
      "          'holdings': 1,\n",
      "          'novel': 1,\n",
      "          'blank': 1,\n",
      "          'wall': 1,\n",
      "          'wellcrafted': 1,\n",
      "          'thriller': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'scott': 1,\n",
      "          'mcgehee': 1,\n",
      "          'david': 1,\n",
      "          'siegel': 1,\n",
      "          'suture': 1,\n",
      "          'nit': 1,\n",
      "          'particularly': 1,\n",
      "          'wellknown': 1,\n",
      "          'castgoran': 1,\n",
      "          'visnjic': 1,\n",
      "          'suave': 1,\n",
      "          'likeability': 1,\n",
      "          'jonathan': 1,\n",
      "          'tucker': 1,\n",
      "          'shines': 1,\n",
      "          'conflicted': 1,\n",
      "          'donat': 1,\n",
      "          'amusing': 1,\n",
      "          'grandfather': 1,\n",
      "          'josh': 1,\n",
      "          'lucas': 1,\n",
      "          'equally': 1,\n",
      "          'small': 1,\n",
      "          'effective': 1,\n",
      "          'hapless': 1,\n",
      "          'film': 1,\n",
      "          'also': 1,\n",
      "          'lovingly': 1,\n",
      "          'photographed': 1,\n",
      "          'giles': 1,\n",
      "          'nuttgens': 1,\n",
      "          'features': 1,\n",
      "          'evocative': 1,\n",
      "          'score': 1,\n",
      "          'courtesy': 1,\n",
      "          'nashel': 1,\n",
      "          'owes': 1,\n",
      "          'british': 1,\n",
      "          'actress': 1,\n",
      "          'nswinton': 1,\n",
      "          'whose': 1,\n",
      "          'palefaced': 1,\n",
      "          'ethereal': 1,\n",
      "          'beauty': 1,\n",
      "          'graced': 1,\n",
      "          'many': 1,\n",
      "          'derek': 1,\n",
      "          'jarmans': 1,\n",
      "          'films': 1,\n",
      "          'caravaggio': 1,\n",
      "          'edward': 1,\n",
      "          'ii': 1,\n",
      "          'last': 1,\n",
      "          'england': 1,\n",
      "          'like': 1,\n",
      "          'charlotte': 1,\n",
      "          'rampling': 1,\n",
      "          'years': 1,\n",
      "          'sand': 1,\n",
      "          'commanding': 1,\n",
      "          'accomplished': 1,\n",
      "          'performance': 1,\n",
      "          'nmargaret': 1,\n",
      "          'devoted': 1,\n",
      "          'willing': 1,\n",
      "          'risk': 1,\n",
      "          'protect': 1,\n",
      "          'loves': 1,\n",
      "          'captures': 1,\n",
      "          'frustration': 1,\n",
      "          'subtle': 1,\n",
      "          'examination': 1,\n",
      "          'fervent': 1,\n",
      "          'realization': 1,\n",
      "          'nervous': 1,\n",
      "          'oscillation': 1,\n",
      "          'calls': 1,\n",
      "          'extremely': 1,\n",
      "          'wide': 1,\n",
      "          'range': 1,\n",
      "          'emotions': 1,\n",
      "          'none': 1,\n",
      "          'least': 1,\n",
      "          'simply': 1,\n",
      "          'playing': 1,\n",
      "          'beset': 1,\n",
      "          'multitude': 1,\n",
      "          'domestic': 1,\n",
      "          'responsibilities': 1,\n",
      "          'nmany': 1,\n",
      "          'relate': 1,\n",
      "          'course': 1,\n",
      "          'murder': 1,\n",
      "          'coverup': 1,\n",
      "          'blackmail': 1,\n",
      "          'losing': 1,\n",
      "          'gracefully': 1,\n",
      "          'graciously': 1,\n",
      "          'resonate': 1,\n",
      "          'truest': 1,\n",
      "          'colors': 1,\n",
      "          'right': 1,\n",
      "          'isnt': 1,\n",
      "          'shallow': 1,\n",
      "          'moment': 1,\n",
      "          'swintons': 1,\n",
      "          'canon': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'black': 13,\n",
      "          'movie': 10,\n",
      "          'men': 8,\n",
      "          'good': 6,\n",
      "          'ni': 6,\n",
      "          'nits': 4,\n",
      "          'pretty': 4,\n",
      "          'probably': 4,\n",
      "          'comic': 4,\n",
      "          'event': 3,\n",
      "          'horizon': 3,\n",
      "          'remember': 3,\n",
      "          'scene': 3,\n",
      "          'nand': 3,\n",
      "          'comics': 3,\n",
      "          'know': 3,\n",
      "          'odonnell': 3,\n",
      "          'think': 3,\n",
      "          'hate': 2,\n",
      "          'cool': 2,\n",
      "          'trailers': 2,\n",
      "          'best': 2,\n",
      "          'yes': 2,\n",
      "          'would': 2,\n",
      "          'faceoff': 2,\n",
      "          'spawn': 2,\n",
      "          'con': 2,\n",
      "          'air': 2,\n",
      "          'main': 2,\n",
      "          'cant': 2,\n",
      "          'one': 2,\n",
      "          'nin': 2,\n",
      "          'smith': 2,\n",
      "          'roaches': 2,\n",
      "          'humor': 2,\n",
      "          '7th': 2,\n",
      "          'grade': 2,\n",
      "          'like': 2,\n",
      "          'wizard': 2,\n",
      "          'basically': 2,\n",
      "          'high': 2,\n",
      "          'people': 2,\n",
      "          'book': 2,\n",
      "          'nthis': 2,\n",
      "          'said': 2,\n",
      "          'tommy': 2,\n",
      "          'lee': 2,\n",
      "          'jones': 2,\n",
      "          'chris': 2,\n",
      "          'person': 2,\n",
      "          'nmy': 2,\n",
      "          'big': 2,\n",
      "          'rather': 2,\n",
      "          '5': 2,\n",
      "          'agents': 2,\n",
      "          'known': 2,\n",
      "          'theyre': 2,\n",
      "          'nnot': 2,\n",
      "          'get': 2,\n",
      "          'bad': 2,\n",
      "          'nthe': 2,\n",
      "          'although': 2,\n",
      "          'burst': 1,\n",
      "          'bubble': 1,\n",
      "          'star': 1,\n",
      "          'power': 1,\n",
      "          'mega': 1,\n",
      "          'bucks': 1,\n",
      "          'screenwriters': 1,\n",
      "          'directors': 1,\n",
      "          'summer': 1,\n",
      "          'right': 1,\n",
      "          'split': 1,\n",
      "          'honors': 1,\n",
      "          'among': 1,\n",
      "          'maybe': 1,\n",
      "          'problem': 1,\n",
      "          'quickly': 1,\n",
      "          'forgettable': 1,\n",
      "          'truly': 1,\n",
      "          'nfrom': 1,\n",
      "          'desert': 1,\n",
      "          'digging': 1,\n",
      "          'plane': 1,\n",
      "          'dirt': 1,\n",
      "          'living': 1,\n",
      "          'room': 1,\n",
      "          'hell': 1,\n",
      "          'conclusion': 1,\n",
      "          'end': 1,\n",
      "          'video': 1,\n",
      "          'crew': 1,\n",
      "          'taken': 1,\n",
      "          'hells': 1,\n",
      "          'forces': 1,\n",
      "          'dang': 1,\n",
      "          'nbut': 1,\n",
      "          'still': 1,\n",
      "          'recall': 1,\n",
      "          'squishing': 1,\n",
      "          'giant': 1,\n",
      "          'passion': 1,\n",
      "          'disgusted': 1,\n",
      "          'see': 1,\n",
      "          'mimic': 1,\n",
      "          'something': 1,\n",
      "          'ill': 1,\n",
      "          'touch': 1,\n",
      "          'later': 1,\n",
      "          'review': 1,\n",
      "          'nback': 1,\n",
      "          'sound': 1,\n",
      "          'funny': 1,\n",
      "          'first': 1,\n",
      "          'hearing': 1,\n",
      "          'back': 1,\n",
      "          'geek': 1,\n",
      "          'read': 1,\n",
      "          'magazines': 1,\n",
      "          'etc': 1,\n",
      "          'arent': 1,\n",
      "          'comicgeeks': 1,\n",
      "          'car': 1,\n",
      "          'driver': 1,\n",
      "          'cars': 1,\n",
      "          'new': 1,\n",
      "          'yorker': 1,\n",
      "          'society': 1,\n",
      "          'boys': 1,\n",
      "          'life': 1,\n",
      "          'boy': 1,\n",
      "          'scots': 1,\n",
      "          'nokay': 1,\n",
      "          'pathetic': 1,\n",
      "          'nfew': 1,\n",
      "          'based': 1,\n",
      "          'obscure': 1,\n",
      "          'honestpoliticianrare': 1,\n",
      "          'hard': 1,\n",
      "          'find': 1,\n",
      "          'release': 1,\n",
      "          'highgrossing': 1,\n",
      "          'batman': 1,\n",
      "          'forever': 1,\n",
      "          'considered': 1,\n",
      "          'roles': 1,\n",
      "          'nkind': 1,\n",
      "          'weird': 1,\n",
      "          'huh': 1,\n",
      "          'nall': 1,\n",
      "          'say': 1,\n",
      "          'thank': 1,\n",
      "          'god': 1,\n",
      "          'didnt': 1,\n",
      "          'cast': 1,\n",
      "          'planet': 1,\n",
      "          'thinks': 1,\n",
      "          'hes': 1,\n",
      "          'annoying': 1,\n",
      "          'preppie': 1,\n",
      "          'little': 1,\n",
      "          'snot': 1,\n",
      "          'nsorry': 1,\n",
      "          'apologies': 1,\n",
      "          'fans': 1,\n",
      "          'actually': 1,\n",
      "          'teacher': 1,\n",
      "          'collector': 1,\n",
      "          'set': 1,\n",
      "          'buy': 1,\n",
      "          'anticipating': 1,\n",
      "          'craftily': 1,\n",
      "          'hit': 1,\n",
      "          'drive': 1,\n",
      "          'price': 1,\n",
      "          'nicely': 1,\n",
      "          'nhe': 1,\n",
      "          'decided': 1,\n",
      "          'sell': 1,\n",
      "          'innappropriate': 1,\n",
      "          'nhmm': 1,\n",
      "          'nso': 1,\n",
      "          'youre': 1,\n",
      "          'wondering': 1,\n",
      "          'ive': 1,\n",
      "          'wasted': 1,\n",
      "          'paragraphs': 1,\n",
      "          'lame': 1,\n",
      "          'anecdotes': 1,\n",
      "          'junior': 1,\n",
      "          'years': 1,\n",
      "          'ngood': 1,\n",
      "          'question': 1,\n",
      "          'nill': 1,\n",
      "          'move': 1,\n",
      "          'nas': 1,\n",
      "          'already': 1,\n",
      "          'k': 1,\n",
      "          'j': 1,\n",
      "          'respectively': 1,\n",
      "          'belong': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          'agency': 1,\n",
      "          'divison': 1,\n",
      "          'nickname': 1,\n",
      "          'mib': 1,\n",
      "          'nmen': 1,\n",
      "          'reference': 1,\n",
      "          'suits': 1,\n",
      "          'sunglasses': 1,\n",
      "          'wear': 1,\n",
      "          'mission': 1,\n",
      "          'investigate': 1,\n",
      "          'reports': 1,\n",
      "          'alien': 1,\n",
      "          'landings': 1,\n",
      "          'keep': 1,\n",
      "          'aliens': 1,\n",
      "          'control': 1,\n",
      "          'earth': 1,\n",
      "          'technical': 1,\n",
      "          'spoil': 1,\n",
      "          'plot': 1,\n",
      "          '6': 1,\n",
      "          'world': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'basicallybigroachtypebug': 1,\n",
      "          'lands': 1,\n",
      "          'redneck': 1,\n",
      "          'farmers': 1,\n",
      "          'yard': 1,\n",
      "          'inhabits': 1,\n",
      "          'body': 1,\n",
      "          'attempts': 1,\n",
      "          'destroy': 1,\n",
      "          'entire': 1,\n",
      "          'universe': 1,\n",
      "          'eh': 1,\n",
      "          'idea': 1,\n",
      "          'typed': 1,\n",
      "          'nim': 1,\n",
      "          'even': 1,\n",
      "          'really': 1,\n",
      "          'paying': 1,\n",
      "          'attention': 1,\n",
      "          'anymore': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'yet': 1,\n",
      "          'dissapointing': 1,\n",
      "          'found': 1,\n",
      "          'headquarters': 1,\n",
      "          'boring': 1,\n",
      "          'weapons': 1,\n",
      "          'noisy': 1,\n",
      "          'cricket': 1,\n",
      "          'plain': 1,\n",
      "          'sucked': 1,\n",
      "          'matter': 1,\n",
      "          'anyone': 1,\n",
      "          'definitely': 1,\n",
      "          'surprised': 1,\n",
      "          'tone': 1,\n",
      "          'shoudlnt': 1,\n",
      "          'director': 1,\n",
      "          'barry': 1,\n",
      "          'sonnenfield': 1,\n",
      "          'directing': 1,\n",
      "          'addams': 1,\n",
      "          'family': 1,\n",
      "          'movies': 1,\n",
      "          'comedy': 1,\n",
      "          'actionscifi': 1,\n",
      "          'expected': 1,\n",
      "          'ndont': 1,\n",
      "          'wrong': 1,\n",
      "          'gave': 1,\n",
      "          'nit': 1,\n",
      "          'mostly': 1,\n",
      "          'entertaining': 1,\n",
      "          'throughout': 1,\n",
      "          'run': 1,\n",
      "          'ending': 1,\n",
      "          'theater': 1,\n",
      "          'amazed': 1,\n",
      "          'diagnosis': 1,\n",
      "          'picture': 1,\n",
      "          'weekend': 1,\n",
      "          'rental': 1,\n",
      "          'worth': 1,\n",
      "          'ticket': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'long': 1,\n",
      "          'gone': 1,\n",
      "          'theaters': 1,\n",
      "          'thats': 1,\n",
      "          'beside': 1,\n",
      "          'point': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'along': 3,\n",
      "          'osmosis': 2,\n",
      "          'jones': 2,\n",
      "          'farrelly': 2,\n",
      "          'frank': 2,\n",
      "          'hits': 2,\n",
      "          '10': 2,\n",
      "          'animation': 2,\n",
      "          'system': 2,\n",
      "          'virus': 2,\n",
      "          'chris': 2,\n",
      "          'nand': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'nif': 1,\n",
      "          'brothers': 1,\n",
      "          'taught': 1,\n",
      "          'anatomy': 1,\n",
      "          'physiology': 1,\n",
      "          'school': 1,\n",
      "          'one': 1,\n",
      "          'would': 1,\n",
      "          'cut': 1,\n",
      "          'ever': 1,\n",
      "          'class': 1,\n",
      "          'nthis': 1,\n",
      "          'hip': 1,\n",
      "          'live': 1,\n",
      "          'actionanimation': 1,\n",
      "          'story': 1,\n",
      "          'begins': 1,\n",
      "          'monkey': 1,\n",
      "          'snatches': 1,\n",
      "          'hardboiled': 1,\n",
      "          'egg': 1,\n",
      "          'zookeeper': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'grabs': 1,\n",
      "          'back': 1,\n",
      "          'drops': 1,\n",
      "          'gobbles': 1,\n",
      "          'contaminated': 1,\n",
      "          'morsel': 1,\n",
      "          'explaining': 1,\n",
      "          'ground': 1,\n",
      "          'pick': 1,\n",
      "          'within': 1,\n",
      "          'seconds': 1,\n",
      "          'eat': 1,\n",
      "          'nlike': 1,\n",
      "          'fantastic': 1,\n",
      "          'voyage': 1,\n",
      "          '1966': 1,\n",
      "          'pseudoscience': 1,\n",
      "          'takes': 1,\n",
      "          'bodys': 1,\n",
      "          'immune': 1,\n",
      "          'contacts': 1,\n",
      "          'traffic': 1,\n",
      "          'control': 1,\n",
      "          'ingested': 1,\n",
      "          'digestive': 1,\n",
      "          'alert': 1,\n",
      "          'illegal': 1,\n",
      "          'organisms': 1,\n",
      "          'neager': 1,\n",
      "          'right': 1,\n",
      "          'stomach': 1,\n",
      "          'evacuation': 1,\n",
      "          'mistake': 1,\n",
      "          'made': 1,\n",
      "          'cocky': 1,\n",
      "          'clever': 1,\n",
      "          'courageous': 1,\n",
      "          'white': 1,\n",
      "          'blood': 1,\n",
      "          'cell': 1,\n",
      "          'rock': 1,\n",
      "          'declares': 1,\n",
      "          'crime': 1,\n",
      "          'scene': 1,\n",
      "          'teams': 1,\n",
      "          'conscientious': 1,\n",
      "          'phi': 1,\n",
      "          'beta': 1,\n",
      "          'capsule': 1,\n",
      "          '12hour': 1,\n",
      "          'cold': 1,\n",
      "          'remedy': 1,\n",
      "          'called': 1,\n",
      "          'drixenol': 1,\n",
      "          'david': 1,\n",
      "          'hyde': 1,\n",
      "          'pierce': 1,\n",
      "          'chase': 1,\n",
      "          'destroy': 1,\n",
      "          'deadly': 1,\n",
      "          'red': 1,\n",
      "          'death': 1,\n",
      "          'laurence': 1,\n",
      "          'fishburne': 1,\n",
      "          'thats': 1,\n",
      "          'determined': 1,\n",
      "          'take': 1,\n",
      "          '48': 1,\n",
      "          'hours': 1,\n",
      "          'beating': 1,\n",
      "          'ebola': 1,\n",
      "          'e': 1,\n",
      "          'coli': 1,\n",
      "          'medical': 1,\n",
      "          'record': 1,\n",
      "          'nwatch': 1,\n",
      "          'mucus': 1,\n",
      "          'mudslides': 1,\n",
      "          'chaos': 1,\n",
      "          'cerebellum': 1,\n",
      "          'hall': 1,\n",
      "          'detritus': 1,\n",
      "          'booger': 1,\n",
      "          'dam': 1,\n",
      "          'runny': 1,\n",
      "          'nose': 1,\n",
      "          'comic': 1,\n",
      "          'turns': 1,\n",
      "          'molly': 1,\n",
      "          'shannon': 1,\n",
      "          'elliot': 1,\n",
      "          'plus': 1,\n",
      "          'voices': 1,\n",
      "          'william': 1,\n",
      "          'shatner': 1,\n",
      "          'brandy': 1,\n",
      "          'norwood': 1,\n",
      "          'npeter': 1,\n",
      "          'bobby': 1,\n",
      "          'writer': 1,\n",
      "          'mark': 1,\n",
      "          'hyman': 1,\n",
      "          'directors': 1,\n",
      "          'piet': 1,\n",
      "          'kroon': 1,\n",
      "          'tom': 1,\n",
      "          'sito': 1,\n",
      "          'turned': 1,\n",
      "          'penchant': 1,\n",
      "          'grossout': 1,\n",
      "          'comedy': 1,\n",
      "          'encompassing': 1,\n",
      "          'flatulence': 1,\n",
      "          'festering': 1,\n",
      "          'sores': 1,\n",
      "          'popping': 1,\n",
      "          'pimple': 1,\n",
      "          'without': 1,\n",
      "          'permit': 1,\n",
      "          'funny': 1,\n",
      "          'farrellyfunny': 1,\n",
      "          'family': 1,\n",
      "          'film': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          'wildly': 1,\n",
      "          'imaginative': 1,\n",
      "          'original': 1,\n",
      "          'explosive': 1,\n",
      "          '7': 1,\n",
      "          'perhaps': 1,\n",
      "          'theyre': 1,\n",
      "          'laughing': 1,\n",
      "          'kids': 1,\n",
      "          'learn': 1,\n",
      "          'find': 1,\n",
      "          'uvula': 1,\n",
      "          'nuggets': 1,\n",
      "          'nutrition': 1,\n",
      "          'hygiene': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 5,\n",
      "          'film': 4,\n",
      "          'jeff': 4,\n",
      "          'films': 3,\n",
      "          'nbreakdown': 3,\n",
      "          'nrussell': 3,\n",
      "          'amy': 3,\n",
      "          'truck': 3,\n",
      "          'hollywood': 3,\n",
      "          'say': 2,\n",
      "          'never': 2,\n",
      "          'much': 2,\n",
      "          'seen': 2,\n",
      "          'fine': 2,\n",
      "          'half': 2,\n",
      "          'would': 2,\n",
      "          'couple': 2,\n",
      "          'wife': 2,\n",
      "          'kathleen': 2,\n",
      "          'quinlan': 2,\n",
      "          'new': 2,\n",
      "          'car': 2,\n",
      "          'driver': 2,\n",
      "          'nwalsh': 2,\n",
      "          'earlier': 2,\n",
      "          'time': 2,\n",
      "          'anyone': 2,\n",
      "          'doesnt': 2,\n",
      "          'makes': 2,\n",
      "          'great': 2,\n",
      "          'believable': 2,\n",
      "          'must': 1,\n",
      "          'outset': 1,\n",
      "          'kurt': 1,\n",
      "          'russell': 1,\n",
      "          'fan': 1,\n",
      "          'nive': 1,\n",
      "          'silkwood': 1,\n",
      "          'backdraft': 1,\n",
      "          'unlawful': 1,\n",
      "          'entry': 1,\n",
      "          'gave': 1,\n",
      "          'adequate': 1,\n",
      "          'performances': 1,\n",
      "          'impressed': 1,\n",
      "          'work': 1,\n",
      "          'something': 1,\n",
      "          'surprise': 1,\n",
      "          'gives': 1,\n",
      "          'performance': 1,\n",
      "          'cast': 1,\n",
      "          'upstaged': 1,\n",
      "          'action': 1,\n",
      "          'orchestrated': 1,\n",
      "          'second': 1,\n",
      "          'nto': 1,\n",
      "          'holds': 1,\n",
      "          'together': 1,\n",
      "          'completely': 1,\n",
      "          'true': 1,\n",
      "          'harm': 1,\n",
      "          'plays': 1,\n",
      "          'married': 1,\n",
      "          'travelling': 1,\n",
      "          'cross': 1,\n",
      "          'country': 1,\n",
      "          'san': 1,\n",
      "          'diego': 1,\n",
      "          'start': 1,\n",
      "          'job': 1,\n",
      "          'life': 1,\n",
      "          'nwhile': 1,\n",
      "          'journeying': 1,\n",
      "          'desert': 1,\n",
      "          'breaks': 1,\n",
      "          'left': 1,\n",
      "          'helpless': 1,\n",
      "          'stranded': 1,\n",
      "          'waves': 1,\n",
      "          'passing': 1,\n",
      "          'j': 1,\n",
      "          'offers': 1,\n",
      "          'take': 1,\n",
      "          'nearby': 1,\n",
      "          'diner': 1,\n",
      "          'call': 1,\n",
      "          'tow': 1,\n",
      "          'nbecause': 1,\n",
      "          'nasty': 1,\n",
      "          'incident': 1,\n",
      "          'ruffians': 1,\n",
      "          'decides': 1,\n",
      "          'stay': 1,\n",
      "          'gets': 1,\n",
      "          'help': 1,\n",
      "          'nthat': 1,\n",
      "          'seems': 1,\n",
      "          'last': 1,\n",
      "          'else': 1,\n",
      "          'sees': 1,\n",
      "          'compared': 1,\n",
      "          'several': 1,\n",
      "          'movies': 1,\n",
      "          'george': 1,\n",
      "          'sluizers': 1,\n",
      "          'vanishing': 1,\n",
      "          'original': 1,\n",
      "          'hopefully': 1,\n",
      "          'appalling': 1,\n",
      "          'remake': 1,\n",
      "          'steven': 1,\n",
      "          'spielbergs': 1,\n",
      "          'duel': 1,\n",
      "          'number': 1,\n",
      "          'hitchcock': 1,\n",
      "          'nas': 1,\n",
      "          'breakdown': 1,\n",
      "          'part': 1,\n",
      "          'stray': 1,\n",
      "          'conventional': 1,\n",
      "          'path': 1,\n",
      "          'american': 1,\n",
      "          'actionthriller': 1,\n",
      "          'njeff': 1,\n",
      "          'become': 1,\n",
      "          'guntoting': 1,\n",
      "          'vigilante': 1,\n",
      "          'hunt': 1,\n",
      "          'instead': 1,\n",
      "          'becomes': 1,\n",
      "          'scared': 1,\n",
      "          'confused': 1,\n",
      "          'everyman': 1,\n",
      "          'idea': 1,\n",
      "          'hell': 1,\n",
      "          'going': 1,\n",
      "          'nwhen': 1,\n",
      "          'find': 1,\n",
      "          'happened': 1,\n",
      "          'come': 1,\n",
      "          'slight': 1,\n",
      "          'disappointment': 1,\n",
      "          'early': 1,\n",
      "          'could': 1,\n",
      "          'done': 1,\n",
      "          'extra': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'mystery': 1,\n",
      "          'bewilderment': 1,\n",
      "          'affects': 1,\n",
      "          'little': 1,\n",
      "          'mentioned': 1,\n",
      "          'good': 1,\n",
      "          'role': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'annoying': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'nj': 1,\n",
      "          'possibly': 1,\n",
      "          'evil': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'terrific': 1,\n",
      "          'best': 1,\n",
      "          'batch': 1,\n",
      "          'character': 1,\n",
      "          'actors': 1,\n",
      "          'seem': 1,\n",
      "          'know': 1,\n",
      "          'director': 1,\n",
      "          'jonathan': 1,\n",
      "          'mostow': 1,\n",
      "          'right': 1,\n",
      "          'track': 1,\n",
      "          'nthe': 1,\n",
      "          'reason': 1,\n",
      "          'villain': 1,\n",
      "          'actually': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'real': 1,\n",
      "          'person': 1,\n",
      "          'able': 1,\n",
      "          'trust': 1,\n",
      "          'plot': 1,\n",
      "          'make': 1,\n",
      "          'enough': 1,\n",
      "          'thriller': 1,\n",
      "          'characters': 1,\n",
      "          'scenes': 1,\n",
      "          'indeed': 1,\n",
      "          'viewers': 1,\n",
      "          'edge': 1,\n",
      "          'seats': 1,\n",
      "          'none': 1,\n",
      "          'genuinely': 1,\n",
      "          'exciting': 1,\n",
      "          'ive': 1,\n",
      "          'long': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 24,\n",
      "          'aliens': 12,\n",
      "          'alien': 10,\n",
      "          'one': 9,\n",
      "          'action': 9,\n",
      "          'naliens': 8,\n",
      "          'ripley': 7,\n",
      "          'cameron': 6,\n",
      "          'ever': 5,\n",
      "          'never': 5,\n",
      "          'also': 5,\n",
      "          'fiction': 4,\n",
      "          'created': 4,\n",
      "          'nthe': 4,\n",
      "          'impressive': 4,\n",
      "          'planet': 4,\n",
      "          'seems': 4,\n",
      "          'nin': 3,\n",
      "          'fact': 3,\n",
      "          'james': 3,\n",
      "          'making': 3,\n",
      "          'series': 3,\n",
      "          'terrifying': 3,\n",
      "          'like': 3,\n",
      "          'along': 3,\n",
      "          'could': 3,\n",
      "          'terror': 3,\n",
      "          'nwith': 3,\n",
      "          'science': 3,\n",
      "          'gives': 3,\n",
      "          'original': 3,\n",
      "          'character': 3,\n",
      "          'weaver': 3,\n",
      "          'realistic': 3,\n",
      "          'us': 3,\n",
      "          'seem': 3,\n",
      "          'company': 3,\n",
      "          'colony': 3,\n",
      "          'reiser': 3,\n",
      "          'team': 3,\n",
      "          'includes': 3,\n",
      "          'biehn': 3,\n",
      "          'order': 3,\n",
      "          'best': 3,\n",
      "          'scenes': 3,\n",
      "          'climax': 3,\n",
      "          'viewer': 3,\n",
      "          'genre': 3,\n",
      "          'music': 3,\n",
      "          'nomination': 3,\n",
      "          'amount': 3,\n",
      "          'good': 3,\n",
      "          'hit': 2,\n",
      "          'directed': 2,\n",
      "          'sequel': 2,\n",
      "          'directors': 2,\n",
      "          'films': 2,\n",
      "          'terminator': 2,\n",
      "          'na': 2,\n",
      "          'audiences': 2,\n",
      "          'usually': 2,\n",
      "          'ni': 2,\n",
      "          'movie': 2,\n",
      "          'must': 2,\n",
      "          'members': 2,\n",
      "          'seen': 2,\n",
      "          'may': 2,\n",
      "          'hero': 2,\n",
      "          'acting': 2,\n",
      "          'job': 2,\n",
      "          'nsigourney': 2,\n",
      "          'play': 2,\n",
      "          'make': 2,\n",
      "          'enough': 2,\n",
      "          'woman': 2,\n",
      "          'nostromo': 2,\n",
      "          'survivor': 2,\n",
      "          'families': 2,\n",
      "          'wont': 2,\n",
      "          'back': 2,\n",
      "          'nhowever': 2,\n",
      "          'none': 2,\n",
      "          'paul': 2,\n",
      "          'nthis': 2,\n",
      "          'goldstein': 2,\n",
      "          'bishop': 2,\n",
      "          'henriksen': 2,\n",
      "          'finds': 2,\n",
      "          'newt': 2,\n",
      "          'henn': 2,\n",
      "          'nripley': 2,\n",
      "          'mother': 2,\n",
      "          'becomes': 2,\n",
      "          'knows': 2,\n",
      "          'happened': 2,\n",
      "          'multiplies': 2,\n",
      "          'suspense': 2,\n",
      "          'killed': 2,\n",
      "          'member': 2,\n",
      "          'nthen': 2,\n",
      "          'director': 2,\n",
      "          'create': 2,\n",
      "          'something': 2,\n",
      "          'scene': 2,\n",
      "          'astonishing': 2,\n",
      "          'extreme': 2,\n",
      "          'moment': 2,\n",
      "          'right': 2,\n",
      "          'moments': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'course': 2,\n",
      "          'work': 2,\n",
      "          'aspects': 2,\n",
      "          'see': 2,\n",
      "          'horner': 2,\n",
      "          'terrific': 2,\n",
      "          'oscar': 2,\n",
      "          'lights': 2,\n",
      "          'scare': 2,\n",
      "          'uses': 2,\n",
      "          'average': 2,\n",
      "          'performance': 2,\n",
      "          'characters': 2,\n",
      "          'role': 2,\n",
      "          'quite': 2,\n",
      "          'success': 1,\n",
      "          'surprise': 1,\n",
      "          'ridley': 1,\n",
      "          'scott': 1,\n",
      "          'inevitable': 1,\n",
      "          'watching': 1,\n",
      "          'first': 1,\n",
      "          'wanted': 1,\n",
      "          'particularly': 1,\n",
      "          'reviewer': 1,\n",
      "          'nhanding': 1,\n",
      "          'chair': 1,\n",
      "          'recent': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'gem': 1,\n",
      "          'made': 1,\n",
      "          'two': 1,\n",
      "          'previous': 1,\n",
      "          'pirahna': 1,\n",
      "          'ii': 1,\n",
      "          'surprisingly': 1,\n",
      "          'dull': 1,\n",
      "          'household': 1,\n",
      "          'name': 1,\n",
      "          'got': 1,\n",
      "          'facelift': 1,\n",
      "          'immense': 1,\n",
      "          'proportions': 1,\n",
      "          'ninstead': 1,\n",
      "          'suspensescience': 1,\n",
      "          'alters': 1,\n",
      "          'changing': 1,\n",
      "          'picture': 1,\n",
      "          'nwhat': 1,\n",
      "          'results': 1,\n",
      "          'comes': 1,\n",
      "          'unprepared': 1,\n",
      "          'saw': 1,\n",
      "          'theaters': 1,\n",
      "          'wish': 1,\n",
      "          'fright': 1,\n",
      "          'unimaginable': 1,\n",
      "          'likely': 1,\n",
      "          'literally': 1,\n",
      "          'shrieking': 1,\n",
      "          'fear': 1,\n",
      "          'unlike': 1,\n",
      "          'plot': 1,\n",
      "          'added': 1,\n",
      "          'testosterone': 1,\n",
      "          'pumping': 1,\n",
      "          'fire': 1,\n",
      "          'power': 1,\n",
      "          'sequels': 1,\n",
      "          'tops': 1,\n",
      "          'nperhaps': 1,\n",
      "          'makes': 1,\n",
      "          'heroor': 1,\n",
      "          'heroine': 1,\n",
      "          'case': 1,\n",
      "          'nnever': 1,\n",
      "          'sympathetic': 1,\n",
      "          'done': 1,\n",
      "          'main': 1,\n",
      "          'possibly': 1,\n",
      "          'actress': 1,\n",
      "          'care': 1,\n",
      "          'nplacing': 1,\n",
      "          'situations': 1,\n",
      "          'would': 1,\n",
      "          'sometimes': 1,\n",
      "          'unusual': 1,\n",
      "          'weavers': 1,\n",
      "          'presence': 1,\n",
      "          'suitable': 1,\n",
      "          'begins': 1,\n",
      "          '57': 1,\n",
      "          'years': 1,\n",
      "          'ended': 1,\n",
      "          'nlieutenant': 1,\n",
      "          'ellen': 1,\n",
      "          'discovered': 1,\n",
      "          'hypersleep': 1,\n",
      "          'awakened': 1,\n",
      "          'nshe': 1,\n",
      "          'explains': 1,\n",
      "          'past': 1,\n",
      "          'encounter': 1,\n",
      "          'doubtful': 1,\n",
      "          'nthey': 1,\n",
      "          'explain': 1,\n",
      "          'flourishing': 1,\n",
      "          'left': 1,\n",
      "          'ndespite': 1,\n",
      "          'stern': 1,\n",
      "          'warnings': 1,\n",
      "          'remains': 1,\n",
      "          'rigid': 1,\n",
      "          'call': 1,\n",
      "          'loses': 1,\n",
      "          'contact': 1,\n",
      "          'ripleys': 1,\n",
      "          'story': 1,\n",
      "          'much': 1,\n",
      "          'feasible': 1,\n",
      "          'companys': 1,\n",
      "          'carter': 1,\n",
      "          'burke': 1,\n",
      "          'wants': 1,\n",
      "          'gather': 1,\n",
      "          'travel': 1,\n",
      "          'buff': 1,\n",
      "          'private': 1,\n",
      "          'vasquez': 1,\n",
      "          'jenette': 1,\n",
      "          'questionable': 1,\n",
      "          'corporal': 1,\n",
      "          'hicks': 1,\n",
      "          'michael': 1,\n",
      "          'loyal': 1,\n",
      "          'android': 1,\n",
      "          'lance': 1,\n",
      "          'nburke': 1,\n",
      "          'tags': 1,\n",
      "          'fly': 1,\n",
      "          'locate': 1,\n",
      "          'narriving': 1,\n",
      "          'human': 1,\n",
      "          'life': 1,\n",
      "          'extinguished': 1,\n",
      "          'cocoontype': 1,\n",
      "          'environment': 1,\n",
      "          '12': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'rebecca': 1,\n",
      "          'jorden': 1,\n",
      "          'carrie': 1,\n",
      "          'chance': 1,\n",
      "          'opportunity': 1,\n",
      "          'become': 1,\n",
      "          'newts': 1,\n",
      "          'surrogate': 1,\n",
      "          'ones': 1,\n",
      "          'soon': 1,\n",
      "          'hell': 1,\n",
      "          'breaks': 1,\n",
      "          'loose': 1,\n",
      "          'thrills': 1,\n",
      "          'scotts': 1,\n",
      "          'version': 1,\n",
      "          'number': 1,\n",
      "          'general': 1,\n",
      "          'nalien': 1,\n",
      "          'focused': 1,\n",
      "          'particular': 1,\n",
      "          'systematically': 1,\n",
      "          'crew': 1,\n",
      "          'except': 1,\n",
      "          'managed': 1,\n",
      "          'jettison': 1,\n",
      "          'focuses': 1,\n",
      "          'entire': 1,\n",
      "          'race': 1,\n",
      "          'result': 1,\n",
      "          'chills': 1,\n",
      "          'incredibly': 1,\n",
      "          'heightened': 1,\n",
      "          'guy': 1,\n",
      "          'given': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          '2': 1,\n",
      "          'judgment': 1,\n",
      "          'day': 1,\n",
      "          'nhe': 1,\n",
      "          'topping': 1,\n",
      "          'renny': 1,\n",
      "          'harlin': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'nit': 1,\n",
      "          'every': 1,\n",
      "          'memorable': 1,\n",
      "          'motherload': 1,\n",
      "          'perhaps': 1,\n",
      "          'endings': 1,\n",
      "          'nearly': 1,\n",
      "          'pushed': 1,\n",
      "          'exhaustion': 1,\n",
      "          'cant': 1,\n",
      "          'recall': 1,\n",
      "          'another': 1,\n",
      "          'sustain': 1,\n",
      "          'level': 1,\n",
      "          'intensity': 1,\n",
      "          'throughout': 1,\n",
      "          'dropping': 1,\n",
      "          'njust': 1,\n",
      "          'think': 1,\n",
      "          'else': 1,\n",
      "          'occur': 1,\n",
      "          'starts': 1,\n",
      "          'seemingly': 1,\n",
      "          'endless': 1,\n",
      "          'conclusion': 1,\n",
      "          'ends': 1,\n",
      "          'greatest': 1,\n",
      "          'history': 1,\n",
      "          'remembered': 1,\n",
      "          'lieutenant': 1,\n",
      "          'steps': 1,\n",
      "          'lifting': 1,\n",
      "          'machines': 1,\n",
      "          'fight': 1,\n",
      "          'queen': 1,\n",
      "          'nusing': 1,\n",
      "          'flawless': 1,\n",
      "          'exhausting': 1,\n",
      "          'leaving': 1,\n",
      "          'audience': 1,\n",
      "          'drained': 1,\n",
      "          'anxiety': 1,\n",
      "          'nof': 1,\n",
      "          'properly': 1,\n",
      "          'technical': 1,\n",
      "          'believe': 1,\n",
      "          'completely': 1,\n",
      "          'even': 1,\n",
      "          'decade': 1,\n",
      "          'initial': 1,\n",
      "          'release': 1,\n",
      "          'wonderfully': 1,\n",
      "          'seamless': 1,\n",
      "          'go': 1,\n",
      "          'overlooked': 1,\n",
      "          'composed': 1,\n",
      "          'cameronregular': 1,\n",
      "          'nhorner': 1,\n",
      "          'score': 1,\n",
      "          'receiving': 1,\n",
      "          'nnot': 1,\n",
      "          'scores': 1,\n",
      "          '2001': 1,\n",
      "          'space': 1,\n",
      "          'odyssey': 1,\n",
      "          'mainly': 1,\n",
      "          'compilation': 1,\n",
      "          'wellknown': 1,\n",
      "          'composers': 1,\n",
      "          'recognized': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'incredible': 1,\n",
      "          'snag': 1,\n",
      "          'academy': 1,\n",
      "          'ndark': 1,\n",
      "          'corridors': 1,\n",
      "          'lit': 1,\n",
      "          'red': 1,\n",
      "          'arises': 1,\n",
      "          'welllit': 1,\n",
      "          'locations': 1,\n",
      "          'nnormally': 1,\n",
      "          'dark': 1,\n",
      "          'cinematography': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'shots': 1,\n",
      "          'video': 1,\n",
      "          'feeds': 1,\n",
      "          'build': 1,\n",
      "          'nsome': 1,\n",
      "          'scariest': 1,\n",
      "          'involve': 1,\n",
      "          'perspective': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'received': 1,\n",
      "          'portrayal': 1,\n",
      "          'incorporating': 1,\n",
      "          'sympathy': 1,\n",
      "          'hardedged': 1,\n",
      "          'persona': 1,\n",
      "          'nweaver': 1,\n",
      "          'soars': 1,\n",
      "          'rest': 1,\n",
      "          'supposed': 1,\n",
      "          'ncarrie': 1,\n",
      "          'child': 1,\n",
      "          'developing': 1,\n",
      "          'threedimensional': 1,\n",
      "          'quiet': 1,\n",
      "          'attitude': 1,\n",
      "          'nlance': 1,\n",
      "          'showing': 1,\n",
      "          'androids': 1,\n",
      "          'dont': 1,\n",
      "          'always': 1,\n",
      "          'flat': 1,\n",
      "          'njenette': 1,\n",
      "          'shows': 1,\n",
      "          'fair': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'steals': 1,\n",
      "          'several': 1,\n",
      "          'though': 1,\n",
      "          'personality': 1,\n",
      "          'slightly': 1,\n",
      "          'annoying': 1,\n",
      "          'isnt': 1,\n",
      "          'fighting': 1,\n",
      "          'nmichael': 1,\n",
      "          'nice': 1,\n",
      "          'obligatory': 1,\n",
      "          'npaul': 1,\n",
      "          'odd': 1,\n",
      "          'choice': 1,\n",
      "          'sleazy': 1,\n",
      "          'corporate': 1,\n",
      "          'manages': 1,\n",
      "          'pull': 1,\n",
      "          'well': 1,\n",
      "          'however': 1,\n",
      "          'still': 1,\n",
      "          'tvs': 1,\n",
      "          'mad': 1,\n",
      "          'cast': 1,\n",
      "          'bill': 1,\n",
      "          'paxton': 1,\n",
      "          'william': 1,\n",
      "          'hope': 1,\n",
      "          'highlights': 1,\n",
      "          'stand': 1,\n",
      "          'others': 1,\n",
      "          'rightfully': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'gore': 1,\n",
      "          'language': 1,\n",
      "          'sort': 1,\n",
      "          'redefining': 1,\n",
      "          'suspensehorror': 1,\n",
      "          'pumps': 1,\n",
      "          'stakes': 1,\n",
      "          'directs': 1,\n",
      "          'professional': 1,\n",
      "          'quality': 1,\n",
      "          'ncameron': 1,\n",
      "          'certainly': 1,\n",
      "          'proves': 1,\n",
      "          'truly': 1,\n",
      "          'horrific': 1,\n",
      "          'screen': 1,\n",
      "          'ntechnically': 1,\n",
      "          'flaw': 1,\n",
      "          'small': 1,\n",
      "          'get': 1,\n",
      "          'naside': 1,\n",
      "          'probably': 1,\n",
      "          'experience': 1,\n",
      "          'anything': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'rudys': 5,\n",
      "          'lawyer': 4,\n",
      "          'rudy': 4,\n",
      "          'legal': 3,\n",
      "          'insurance': 3,\n",
      "          'law': 3,\n",
      "          'good': 3,\n",
      "          'situations': 2,\n",
      "          'corrupt': 2,\n",
      "          'company': 2,\n",
      "          'three': 2,\n",
      "          'time': 2,\n",
      "          'danny': 2,\n",
      "          'plays': 2,\n",
      "          'leo': 2,\n",
      "          'nwill': 2,\n",
      "          'guy': 2,\n",
      "          'film': 2,\n",
      "          'little': 2,\n",
      "          'nin': 2,\n",
      "          'case': 2,\n",
      "          'low': 2,\n",
      "          'key': 2,\n",
      "          'nthe': 2,\n",
      "          'voice': 2,\n",
      "          'narrates': 2,\n",
      "          'makes': 2,\n",
      "          'ingredients': 1,\n",
      "          'neophyte': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'baylor': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'ethical': 1,\n",
      "          'kid': 1,\n",
      "          'fresh': 1,\n",
      "          'school': 1,\n",
      "          'must': 1,\n",
      "          'juggle': 1,\n",
      "          'nrudys': 1,\n",
      "          'girlfriend': 1,\n",
      "          'attacked': 1,\n",
      "          'violent': 1,\n",
      "          'husband': 1,\n",
      "          'elderly': 1,\n",
      "          'landlady': 1,\n",
      "          'wants': 1,\n",
      "          'arrange': 1,\n",
      "          'children': 1,\n",
      "          'excluded': 1,\n",
      "          'family': 1,\n",
      "          'friend': 1,\n",
      "          'leukemia': 1,\n",
      "          'suing': 1,\n",
      "          'wouldnt': 1,\n",
      "          'pay': 1,\n",
      "          'bone': 1,\n",
      "          'marrow': 1,\n",
      "          'transplant': 1,\n",
      "          'nrudy': 1,\n",
      "          'new': 1,\n",
      "          'thoroughly': 1,\n",
      "          'outgunned': 1,\n",
      "          'luckily': 1,\n",
      "          'aided': 1,\n",
      "          'sleazy': 1,\n",
      "          'ambulance': 1,\n",
      "          'chaser': 1,\n",
      "          'devito': 1,\n",
      "          'failed': 1,\n",
      "          'bar': 1,\n",
      "          'exam': 1,\n",
      "          'six': 1,\n",
      "          'times': 1,\n",
      "          'well': 1,\n",
      "          'kindly': 1,\n",
      "          'presiding': 1,\n",
      "          'judge': 1,\n",
      "          'glover': 1,\n",
      "          'njon': 1,\n",
      "          'voight': 1,\n",
      "          'f': 1,\n",
      "          'drummond': 1,\n",
      "          'intimidating': 1,\n",
      "          'arrogant': 1,\n",
      "          'leader': 1,\n",
      "          'allpowerful': 1,\n",
      "          'companys': 1,\n",
      "          'team': 1,\n",
      "          'lawyers': 1,\n",
      "          'anything': 1,\n",
      "          'oppose': 1,\n",
      "          'justice': 1,\n",
      "          'defeat': 1,\n",
      "          'enjoy': 1,\n",
      "          'nopinion': 1,\n",
      "          'news': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'features': 1,\n",
      "          'trying': 1,\n",
      "          'right': 1,\n",
      "          'thing': 1,\n",
      "          'ndirector': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          'coppola': 1,\n",
      "          'differently': 1,\n",
      "          'stereotypical': 1,\n",
      "          'typical': 1,\n",
      "          'theres': 1,\n",
      "          'one': 1,\n",
      "          'big': 1,\n",
      "          'focuses': 1,\n",
      "          'solving': 1,\n",
      "          'somewhere': 1,\n",
      "          'along': 1,\n",
      "          'line': 1,\n",
      "          'surprise': 1,\n",
      "          'witnesses': 1,\n",
      "          'motives': 1,\n",
      "          'turn': 1,\n",
      "          'wins': 1,\n",
      "          'lots': 1,\n",
      "          'gripping': 1,\n",
      "          'courtroom': 1,\n",
      "          'drama': 1,\n",
      "          'nhowever': 1,\n",
      "          'coppolas': 1,\n",
      "          'deliberately': 1,\n",
      "          'rainmaker': 1,\n",
      "          'like': 1,\n",
      "          'personality': 1,\n",
      "          'sketch': 1,\n",
      "          'young': 1,\n",
      "          'gets': 1,\n",
      "          'emotionally': 1,\n",
      "          'involved': 1,\n",
      "          'tries': 1,\n",
      "          'save': 1,\n",
      "          'various': 1,\n",
      "          'quirky': 1,\n",
      "          'side': 1,\n",
      "          'characters': 1,\n",
      "          'background': 1,\n",
      "          'feelings': 1,\n",
      "          'halfcynical': 1,\n",
      "          'jokes': 1,\n",
      "          'profession': 1,\n",
      "          'general': 1,\n",
      "          'ntwo': 1,\n",
      "          'factors': 1,\n",
      "          'combine': 1,\n",
      "          'make': 1,\n",
      "          'less': 1,\n",
      "          'heavy': 1,\n",
      "          'nfirst': 1,\n",
      "          'split': 1,\n",
      "          'juggling': 1,\n",
      "          'cases': 1,\n",
      "          'rather': 1,\n",
      "          'concentrating': 1,\n",
      "          'single': 1,\n",
      "          'highstakes': 1,\n",
      "          'nalso': 1,\n",
      "          'use': 1,\n",
      "          'narration': 1,\n",
      "          'place': 1,\n",
      "          'acting': 1,\n",
      "          'lose': 1,\n",
      "          'dramatic': 1,\n",
      "          'edge': 1,\n",
      "          'end': 1,\n",
      "          'result': 1,\n",
      "          'entertaining': 1,\n",
      "          'guys': 1,\n",
      "          'win': 1,\n",
      "          'way': 1,\n",
      "          'coming': 1,\n",
      "          'age': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'casablanca': 4,\n",
      "          'film': 4,\n",
      "          'classic': 3,\n",
      "          'movie': 3,\n",
      "          'one': 2,\n",
      "          'many': 2,\n",
      "          'nthe': 2,\n",
      "          'greatest': 2,\n",
      "          'ever': 2,\n",
      "          'love': 2,\n",
      "          'political': 2,\n",
      "          'ni': 2,\n",
      "          'would': 2,\n",
      "          'understood': 2,\n",
      "          'videos': 1,\n",
      "          'attained': 1,\n",
      "          'local': 1,\n",
      "          'library': 1,\n",
      "          'third': 1,\n",
      "          'weeks': 1,\n",
      "          'others': 1,\n",
      "          'citizen': 1,\n",
      "          'kane': 1,\n",
      "          'vertigo': 1,\n",
      "          'yes': 1,\n",
      "          'trying': 1,\n",
      "          'see': 1,\n",
      "          'afis': 1,\n",
      "          'movies': 1,\n",
      "          'made': 1,\n",
      "          'nbut': 1,\n",
      "          'stood': 1,\n",
      "          'rest': 1,\n",
      "          'actually': 1,\n",
      "          'watchable': 1,\n",
      "          'nwhat': 1,\n",
      "          'hail': 1,\n",
      "          'american': 1,\n",
      "          'isnt': 1,\n",
      "          'much': 1,\n",
      "          'story': 1,\n",
      "          'frenzy': 1,\n",
      "          'triangle': 1,\n",
      "          'thrown': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'star': 1,\n",
      "          'humphry': 1,\n",
      "          'bogart': 1,\n",
      "          'spend': 1,\n",
      "          '85': 1,\n",
      "          'percent': 1,\n",
      "          'various': 1,\n",
      "          'leaders': 1,\n",
      "          'nation': 1,\n",
      "          'instead': 1,\n",
      "          'ingred': 1,\n",
      "          'bergman': 1,\n",
      "          'nthat': 1,\n",
      "          'annoyed': 1,\n",
      "          'ending': 1,\n",
      "          'nwhy': 1,\n",
      "          'didnt': 1,\n",
      "          'plan': 1,\n",
      "          'turn': 1,\n",
      "          'around': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'enjoyed': 1,\n",
      "          'liked': 1,\n",
      "          'bogarts': 1,\n",
      "          'character': 1,\n",
      "          'acting': 1,\n",
      "          'top': 1,\n",
      "          'actors': 1,\n",
      "          'era': 1,\n",
      "          'read': 1,\n",
      "          'choice': 1,\n",
      "          'women': 1,\n",
      "          'said': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'thinking': 1,\n",
      "          'nthen': 1,\n",
      "          'watched': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'script': 1,\n",
      "          'topnotch': 1,\n",
      "          'although': 1,\n",
      "          'doubt': 1,\n",
      "          'half': 1,\n",
      "          'mumbo': 1,\n",
      "          'jumbo': 1,\n",
      "          'ncasablanca': 1,\n",
      "          'mind': 1,\n",
      "          'like': 1,\n",
      "          'solaris': 1,\n",
      "          'good': 1,\n",
      "          'stylishly': 1,\n",
      "          'shot': 1,\n",
      "          'nhey': 1,\n",
      "          'hollywood': 1,\n",
      "          'remake': 1,\n",
      "          'harrison': 1,\n",
      "          'ford': 1,\n",
      "          'anne': 1,\n",
      "          'heche': 1,\n",
      "          'nnow': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'action': 5,\n",
      "          'one': 5,\n",
      "          'film': 5,\n",
      "          'nthe': 5,\n",
      "          'big': 4,\n",
      "          'hit': 4,\n",
      "          'comedy': 3,\n",
      "          'hitmen': 3,\n",
      "          'makes': 3,\n",
      "          'thing': 2,\n",
      "          'time': 2,\n",
      "          'hong': 2,\n",
      "          'kong': 2,\n",
      "          'enough': 2,\n",
      "          'last': 2,\n",
      "          'point': 2,\n",
      "          'quite': 2,\n",
      "          'would': 2,\n",
      "          'killing': 2,\n",
      "          'nhowever': 2,\n",
      "          'doesnt': 2,\n",
      "          'much': 2,\n",
      "          'piece': 2,\n",
      "          'movie': 2,\n",
      "          'funny': 2,\n",
      "          'problem': 2,\n",
      "          'laugh': 2,\n",
      "          'sometimes': 2,\n",
      "          'capsule': 1,\n",
      "          'suprisingly': 1,\n",
      "          'straight': 1,\n",
      "          'flick': 1,\n",
      "          'isnt': 1,\n",
      "          'necessarily': 1,\n",
      "          'bad': 1,\n",
      "          'nnot': 1,\n",
      "          'exactly': 1,\n",
      "          'oscar': 1,\n",
      "          'caliber': 1,\n",
      "          'helluva': 1,\n",
      "          'bulletriddled': 1,\n",
      "          'good': 1,\n",
      "          'nextended': 1,\n",
      "          'review': 1,\n",
      "          'know': 1,\n",
      "          'remember': 1,\n",
      "          'evil': 1,\n",
      "          'murderous': 1,\n",
      "          'scum': 1,\n",
      "          'nalas': 1,\n",
      "          'times': 1,\n",
      "          'achangin': 1,\n",
      "          'nin': 1,\n",
      "          'recent': 1,\n",
      "          'string': 1,\n",
      "          'movies': 1,\n",
      "          'suddenly': 1,\n",
      "          'wise': 1,\n",
      "          'cracking': 1,\n",
      "          'funloving': 1,\n",
      "          'killerswithhearts': 1,\n",
      "          'nthis': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'director': 1,\n",
      "          'kirk': 1,\n",
      "          'wongs': 1,\n",
      "          'first': 1,\n",
      "          'american': 1,\n",
      "          'feature': 1,\n",
      "          'noddly': 1,\n",
      "          'year': 1,\n",
      "          'similar': 1,\n",
      "          'grosse': 1,\n",
      "          'blank': 1,\n",
      "          'released': 1,\n",
      "          'nadvertised': 1,\n",
      "          'quirky': 1,\n",
      "          'hints': 1,\n",
      "          'turned': 1,\n",
      "          'suprising': 1,\n",
      "          'dosage': 1,\n",
      "          'opposite': 1,\n",
      "          'nit': 1,\n",
      "          'hyped': 1,\n",
      "          'new': 1,\n",
      "          'producer': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'expect': 1,\n",
      "          'lots': 1,\n",
      "          'stylized': 1,\n",
      "          'theres': 1,\n",
      "          'sore': 1,\n",
      "          'lack': 1,\n",
      "          'wrong': 1,\n",
      "          'starts': 1,\n",
      "          'mel': 1,\n",
      "          'smiley': 1,\n",
      "          'cohorts': 1,\n",
      "          'job': 1,\n",
      "          'white': 1,\n",
      "          'slaver': 1,\n",
      "          'nmel': 1,\n",
      "          'played': 1,\n",
      "          'mark': 1,\n",
      "          'wahlberg': 1,\n",
      "          'dopey': 1,\n",
      "          'milquetoast': 1,\n",
      "          'role': 1,\n",
      "          'machine': 1,\n",
      "          'flips': 1,\n",
      "          'spins': 1,\n",
      "          'even': 1,\n",
      "          'breakdances': 1,\n",
      "          'whilst': 1,\n",
      "          'popping': 1,\n",
      "          'caps': 1,\n",
      "          'nsadly': 1,\n",
      "          'get': 1,\n",
      "          'chance': 1,\n",
      "          'nexcept': 1,\n",
      "          'beginning': 1,\n",
      "          'set': 1,\n",
      "          '20': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'mode': 1,\n",
      "          'least': 1,\n",
      "          'prime': 1,\n",
      "          'cut': 1,\n",
      "          'stuff': 1,\n",
      "          'nwong': 1,\n",
      "          'numerous': 1,\n",
      "          'features': 1,\n",
      "          'nice': 1,\n",
      "          'u': 1,\n",
      "          'debut': 1,\n",
      "          'pacing': 1,\n",
      "          'bit': 1,\n",
      "          'sequences': 1,\n",
      "          'bookending': 1,\n",
      "          'lasting': 1,\n",
      "          'long': 1,\n",
      "          'nthey': 1,\n",
      "          'start': 1,\n",
      "          'electrifying': 1,\n",
      "          'fresh': 1,\n",
      "          'kinda': 1,\n",
      "          'stop': 1,\n",
      "          'nnormally': 1,\n",
      "          'hamper': 1,\n",
      "          'unenjoyable': 1,\n",
      "          'nluckily': 1,\n",
      "          'ben': 1,\n",
      "          'ramseys': 1,\n",
      "          'screenplay': 1,\n",
      "          'bitingly': 1,\n",
      "          'work': 1,\n",
      "          'might': 1,\n",
      "          'humor': 1,\n",
      "          'joke': 1,\n",
      "          'hard': 1,\n",
      "          'miss': 1,\n",
      "          'next': 1,\n",
      "          'nsome': 1,\n",
      "          'best': 1,\n",
      "          'gags': 1,\n",
      "          'include': 1,\n",
      "          'oriental': 1,\n",
      "          'maker': 1,\n",
      "          'luck': 1,\n",
      "          'mels': 1,\n",
      "          'pals': 1,\n",
      "          'discovered': 1,\n",
      "          'onanism': 1,\n",
      "          'minor': 1,\n",
      "          'characters': 1,\n",
      "          'handled': 1,\n",
      "          'works': 1,\n",
      "          'noverall': 1,\n",
      "          'may': 1,\n",
      "          'flaws': 1,\n",
      "          'stylishly': 1,\n",
      "          'directed': 1,\n",
      "          'gutwrenchingly': 1,\n",
      "          'joyride': 1,\n",
      "          'ndefinately': 1,\n",
      "          'better': 1,\n",
      "          'ways': 1,\n",
      "          'spend': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'onegin': 9,\n",
      "          'fiennes': 6,\n",
      "          'tatyana': 5,\n",
      "          'nthe': 4,\n",
      "          'character': 3,\n",
      "          'russian': 3,\n",
      "          'well': 3,\n",
      "          '_onegin_': 2,\n",
      "          'nmartha': 2,\n",
      "          'nwhen': 2,\n",
      "          'ralph': 2,\n",
      "          'sister': 2,\n",
      "          'st': 2,\n",
      "          'petersburg': 2,\n",
      "          'long': 2,\n",
      "          'olgas': 2,\n",
      "          'tyler': 2,\n",
      "          'one': 2,\n",
      "          'makes': 2,\n",
      "          'nwhat': 2,\n",
      "          'like': 2,\n",
      "          'us': 2,\n",
      "          'others': 2,\n",
      "          'even': 2,\n",
      "          'often': 2,\n",
      "          'devil': 1,\n",
      "          'take': 1,\n",
      "          'asks': 1,\n",
      "          'rhetorically': 1,\n",
      "          'lulling': 1,\n",
      "          'voice': 1,\n",
      "          'spoiled': 1,\n",
      "          'title': 1,\n",
      "          'pronounced': 1,\n",
      "          'ohneggin': 1,\n",
      "          'waiting': 1,\n",
      "          'death': 1,\n",
      "          'relieve': 1,\n",
      "          'lifetime': 1,\n",
      "          'rapacious': 1,\n",
      "          'behaviour': 1,\n",
      "          'debut': 1,\n",
      "          'feature': 1,\n",
      "          'quite': 1,\n",
      "          'literally': 1,\n",
      "          'filmed': 1,\n",
      "          'poetry': 1,\n",
      "          'based': 1,\n",
      "          'epic': 1,\n",
      "          'poem': 1,\n",
      "          'alexander': 1,\n",
      "          'pushkin': 1,\n",
      "          'profound': 1,\n",
      "          'study': 1,\n",
      "          'regret': 1,\n",
      "          'confuse': 1,\n",
      "          'shame': 1,\n",
      "          'guilt': 1,\n",
      "          'first': 1,\n",
      "          'meet': 1,\n",
      "          'eugene': 1,\n",
      "          'acting': 1,\n",
      "          'another': 1,\n",
      "          'brother': 1,\n",
      "          'magnus': 1,\n",
      "          'composed': 1,\n",
      "          'score': 1,\n",
      "          'philandering': 1,\n",
      "          'aristocrat': 1,\n",
      "          'inherited': 1,\n",
      "          'uncles': 1,\n",
      "          'estate': 1,\n",
      "          'nwith': 1,\n",
      "          'plans': 1,\n",
      "          'sell': 1,\n",
      "          'pays': 1,\n",
      "          'summer': 1,\n",
      "          'visit': 1,\n",
      "          'manor': 1,\n",
      "          'located': 1,\n",
      "          'underpopulated': 1,\n",
      "          'countryside': 1,\n",
      "          'trip': 1,\n",
      "          'meets': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'neighbouring': 1,\n",
      "          'family': 1,\n",
      "          'blue': 1,\n",
      "          'bloods': 1,\n",
      "          'nsmitten': 1,\n",
      "          'olga': 1,\n",
      "          'larina': 1,\n",
      "          'headey': 1,\n",
      "          'befriends': 1,\n",
      "          'fianc': 1,\n",
      "          'vladimir': 1,\n",
      "          'lensky': 1,\n",
      "          'stephens': 1,\n",
      "          'romanticizing': 1,\n",
      "          'flippant': 1,\n",
      "          'attitude': 1,\n",
      "          'hes': 1,\n",
      "          'nineteenth': 1,\n",
      "          'bad': 1,\n",
      "          'boy': 1,\n",
      "          'falls': 1,\n",
      "          'nin': 1,\n",
      "          'sweaty': 1,\n",
      "          'inky': 1,\n",
      "          'torrent': 1,\n",
      "          'passion': 1,\n",
      "          'writes': 1,\n",
      "          'love': 1,\n",
      "          'letter': 1,\n",
      "          'nhe': 1,\n",
      "          'least': 1,\n",
      "          'intrigued': 1,\n",
      "          'note': 1,\n",
      "          'rejects': 1,\n",
      "          'affections': 1,\n",
      "          'implied': 1,\n",
      "          'nsoon': 1,\n",
      "          'tragedy': 1,\n",
      "          'strikes': 1,\n",
      "          'scarce': 1,\n",
      "          'catch': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'returned': 1,\n",
      "          'grand': 1,\n",
      "          'ball': 1,\n",
      "          'discovers': 1,\n",
      "          'old': 1,\n",
      "          'friend': 1,\n",
      "          'donovan': 1,\n",
      "          'married': 1,\n",
      "          'womanly': 1,\n",
      "          'wordly': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'finds': 1,\n",
      "          'irresistable': 1,\n",
      "          'amazing': 1,\n",
      "          'performance': 1,\n",
      "          'subtle': 1,\n",
      "          'physical': 1,\n",
      "          'transformation': 1,\n",
      "          'dashing': 1,\n",
      "          'snob': 1,\n",
      "          'miserly': 1,\n",
      "          'grouch': 1,\n",
      "          'noverwhelmed': 1,\n",
      "          'top': 1,\n",
      "          'hat': 1,\n",
      "          'pines': 1,\n",
      "          'seems': 1,\n",
      "          'smaller': 1,\n",
      "          'stature': 1,\n",
      "          'brushed': 1,\n",
      "          'ebeneezer': 1,\n",
      "          'scrooge': 1,\n",
      "          'trapped': 1,\n",
      "          'christmas': 1,\n",
      "          'past': 1,\n",
      "          'actor': 1,\n",
      "          'constricted': 1,\n",
      "          'playing': 1,\n",
      "          'heroes': 1,\n",
      "          'nowtheres': 1,\n",
      "          'room': 1,\n",
      "          'breathe': 1,\n",
      "          'role': 1,\n",
      "          'thats': 1,\n",
      "          'made': 1,\n",
      "          'shades': 1,\n",
      "          'gray': 1,\n",
      "          'npetula': 1,\n",
      "          'clark': 1,\n",
      "          'sang': 1,\n",
      "          'universal': 1,\n",
      "          'phenomenon': 1,\n",
      "          'parking': 1,\n",
      "          'lot': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'til': 1,\n",
      "          'gone': 1,\n",
      "          'nonegins': 1,\n",
      "          'aboutface': 1,\n",
      "          'speaks': 1,\n",
      "          'read': 1,\n",
      "          'need': 1,\n",
      "          'confirmation': 1,\n",
      "          'someone': 1,\n",
      "          'something': 1,\n",
      "          'wanted': 1,\n",
      "          'want': 1,\n",
      "          'feels': 1,\n",
      "          'jealousy': 1,\n",
      "          'remorse': 1,\n",
      "          'embarrassment': 1,\n",
      "          'let': 1,\n",
      "          'go': 1,\n",
      "          'nout': 1,\n",
      "          'identification': 1,\n",
      "          'feel': 1,\n",
      "          'empathy': 1,\n",
      "          'callous': 1,\n",
      "          'bastard': 1,\n",
      "          'ntatyanas': 1,\n",
      "          'emotions': 1,\n",
      "          'echo': 1,\n",
      "          'thousand': 1,\n",
      "          'ditties': 1,\n",
      "          'less': 1,\n",
      "          'vital': 1,\n",
      "          'nshe': 1,\n",
      "          'changes': 1,\n",
      "          'girl': 1,\n",
      "          'crush': 1,\n",
      "          'woman': 1,\n",
      "          'divided': 1,\n",
      "          'loyalties': 1,\n",
      "          'ntyler': 1,\n",
      "          'acquits': 1,\n",
      "          'surprisingly': 1,\n",
      "          'among': 1,\n",
      "          'uk': 1,\n",
      "          'costars': 1,\n",
      "          'filling': 1,\n",
      "          'sketchy': 1,\n",
      "          'gaps': 1,\n",
      "          'expressing': 1,\n",
      "          'base': 1,\n",
      "          'sentiments': 1,\n",
      "          'series': 1,\n",
      "          'wanton': 1,\n",
      "          'stares': 1,\n",
      "          'nthey': 1,\n",
      "          'faces': 1,\n",
      "          'mr': 1,\n",
      "          'ms': 1,\n",
      "          'capable': 1,\n",
      "          'conveying': 1,\n",
      "          'archetypal': 1,\n",
      "          'misery': 1,\n",
      "          'n_onegin_': 1,\n",
      "          'could': 1,\n",
      "          'added': 1,\n",
      "          'little': 1,\n",
      "          'distinguished': 1,\n",
      "          'episode': 1,\n",
      "          'masterpiece': 1,\n",
      "          'theater': 1,\n",
      "          'current': 1,\n",
      "          'cast': 1,\n",
      "          'thoroughbreds': 1,\n",
      "          'intact': 1,\n",
      "          'martha': 1,\n",
      "          'helm': 1,\n",
      "          'nan': 1,\n",
      "          'mtv': 1,\n",
      "          'background': 1,\n",
      "          'cut': 1,\n",
      "          'teeth': 1,\n",
      "          'directing': 1,\n",
      "          'rock': 1,\n",
      "          'videos': 1,\n",
      "          'xtc': 1,\n",
      "          'positively': 1,\n",
      "          'influenced': 1,\n",
      "          'sense': 1,\n",
      "          'pace': 1,\n",
      "          'though': 1,\n",
      "          'thankfully': 1,\n",
      "          'shot': 1,\n",
      "          'lengthsno': 1,\n",
      "          'spasmodic': 1,\n",
      "          'cutting': 1,\n",
      "          '100': 1,\n",
      "          'minutes': 1,\n",
      "          'clicks': 1,\n",
      "          'along': 1,\n",
      "          'brisk': 1,\n",
      "          'walk': 1,\n",
      "          'valleys': 1,\n",
      "          'despair': 1,\n",
      "          'film': 1,\n",
      "          'atypical': 1,\n",
      "          'period': 1,\n",
      "          'look': 1,\n",
      "          'nabsent': 1,\n",
      "          'sumptuous': 1,\n",
      "          'tableware': 1,\n",
      "          'antique': 1,\n",
      "          'furnishings': 1,\n",
      "          'stand': 1,\n",
      "          'plot': 1,\n",
      "          'drippy': 1,\n",
      "          'merchant': 1,\n",
      "          'ivory': 1,\n",
      "          'productions': 1,\n",
      "          'sets': 1,\n",
      "          'almost': 1,\n",
      "          'expressionistically': 1,\n",
      "          'bare': 1,\n",
      "          'echoing': 1,\n",
      "          'loneliness': 1,\n",
      "          'protagonists': 1,\n",
      "          'n': 1,\n",
      "          'cinematographer': 1,\n",
      "          'remi': 1,\n",
      "          'adafarasin': 1,\n",
      "          'allows': 1,\n",
      "          'space': 1,\n",
      "          'engulf': 1,\n",
      "          'im': 1,\n",
      "          'reminded': 1,\n",
      "          'climax': 1,\n",
      "          'unfolds': 1,\n",
      "          'sea': 1,\n",
      "          'white': 1,\n",
      "          'clear': 1,\n",
      "          'command': 1,\n",
      "          'cinema': 1,\n",
      "          'spare': 1,\n",
      "          'painfully': 1,\n",
      "          'human': 1,\n",
      "          'visual': 1,\n",
      "          'presentation': 1,\n",
      "          'yevgeny': 1,\n",
      "          'arguably': 1,\n",
      "          'lucid': 1,\n",
      "          'translation': 1,\n",
      "          'pushkins': 1,\n",
      "          'difficult': 1,\n",
      "          'text': 1,\n",
      "          'yet': 1,\n",
      "          'nms': 1,\n",
      "          'may': 1,\n",
      "          'exciting': 1,\n",
      "          'female': 1,\n",
      "          'presence': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'since': 1,\n",
      "          'jane': 1,\n",
      "          'campion': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'two': 6,\n",
      "          'nhe': 5,\n",
      "          'man': 4,\n",
      "          'gold': 3,\n",
      "          'like': 3,\n",
      "          'fonda': 3,\n",
      "          'fondas': 3,\n",
      "          'ulee': 3,\n",
      "          'nulee': 3,\n",
      "          'granddaughters': 3,\n",
      "          'helen': 3,\n",
      "          'men': 3,\n",
      "          'little': 2,\n",
      "          'nulees': 2,\n",
      "          'feels': 2,\n",
      "          'golden': 2,\n",
      "          'pond': 2,\n",
      "          'deal': 2,\n",
      "          'npeter': 2,\n",
      "          'gives': 2,\n",
      "          'performance': 2,\n",
      "          'home': 2,\n",
      "          'films': 2,\n",
      "          'father': 2,\n",
      "          'jackson': 2,\n",
      "          'peter': 2,\n",
      "          'daughterinlaw': 2,\n",
      "          'drugs': 2,\n",
      "          'son': 2,\n",
      "          'nshe': 2,\n",
      "          'money': 2,\n",
      "          'get': 2,\n",
      "          'story': 2,\n",
      "          'end': 2,\n",
      "          'bruce': 1,\n",
      "          'barths': 1,\n",
      "          'mellow': 1,\n",
      "          'piano': 1,\n",
      "          'plays': 1,\n",
      "          'background': 1,\n",
      "          'conflict': 1,\n",
      "          'erupts': 1,\n",
      "          'country': 1,\n",
      "          'town': 1,\n",
      "          'florida': 1,\n",
      "          'another': 1,\n",
      "          'creation': 1,\n",
      "          'soft': 1,\n",
      "          'calm': 1,\n",
      "          'surface': 1,\n",
      "          'tempest': 1,\n",
      "          'brewing': 1,\n",
      "          'underneath': 1,\n",
      "          'cinematography': 1,\n",
      "          'creates': 1,\n",
      "          'place': 1,\n",
      "          'yellow': 1,\n",
      "          'olive': 1,\n",
      "          'colors': 1,\n",
      "          'music': 1,\n",
      "          'stirring': 1,\n",
      "          'tranquil': 1,\n",
      "          'nboth': 1,\n",
      "          'hardships': 1,\n",
      "          'family': 1,\n",
      "          'life': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'best': 1,\n",
      "          'victor': 1,\n",
      "          'nu': 1,\n",
      "          'ezs': 1,\n",
      "          'new': 1,\n",
      "          'film': 1,\n",
      "          'patricia': 1,\n",
      "          'richardson': 1,\n",
      "          'improvement': 1,\n",
      "          'star': 1,\n",
      "          'shows': 1,\n",
      "          'worthy': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'attention': 1,\n",
      "          'nnu': 1,\n",
      "          'ez': 1,\n",
      "          'probably': 1,\n",
      "          'independent': 1,\n",
      "          'greatest': 1,\n",
      "          'asset': 1,\n",
      "          'along': 1,\n",
      "          'john': 1,\n",
      "          'sayles': 1,\n",
      "          'proves': 1,\n",
      "          'talent': 1,\n",
      "          'slow': 1,\n",
      "          'pace': 1,\n",
      "          'undulating': 1,\n",
      "          'heavy': 1,\n",
      "          'tension': 1,\n",
      "          'borrows': 1,\n",
      "          'henry': 1,\n",
      "          'great': 1,\n",
      "          'vulnerability': 1,\n",
      "          'character': 1,\n",
      "          'quiet': 1,\n",
      "          'emotional': 1,\n",
      "          'weary': 1,\n",
      "          'exceptional': 1,\n",
      "          'role': 1,\n",
      "          'protagonist': 1,\n",
      "          'struggling': 1,\n",
      "          'npressure': 1,\n",
      "          'mounting': 1,\n",
      "          'wrong': 1,\n",
      "          'time': 1,\n",
      "          'beekeeper': 1,\n",
      "          'busy': 1,\n",
      "          'season': 1,\n",
      "          'needs': 1,\n",
      "          'erupting': 1,\n",
      "          'hormones': 1,\n",
      "          'forced': 1,\n",
      "          'pick': 1,\n",
      "          'orlando': 1,\n",
      "          'strung': 1,\n",
      "          'take': 1,\n",
      "          'care': 1,\n",
      "          'faced': 1,\n",
      "          'challenging': 1,\n",
      "          'task': 1,\n",
      "          'unsettled': 1,\n",
      "          'business': 1,\n",
      "          'prison': 1,\n",
      "          'left': 1,\n",
      "          'behind': 1,\n",
      "          'finds': 1,\n",
      "          'robbed': 1,\n",
      "          'bank': 1,\n",
      "          'apparently': 1,\n",
      "          'told': 1,\n",
      "          'resulted': 1,\n",
      "          'robbery': 1,\n",
      "          'husband': 1,\n",
      "          'nthat': 1,\n",
      "          'got': 1,\n",
      "          'caught': 1,\n",
      "          'police': 1,\n",
      "          'found': 1,\n",
      "          'nnow': 1,\n",
      "          'demanding': 1,\n",
      "          'cash': 1,\n",
      "          'come': 1,\n",
      "          'ulees': 1,\n",
      "          'promises': 1,\n",
      "          'bring': 1,\n",
      "          'takes': 1,\n",
      "          'deranged': 1,\n",
      "          'back': 1,\n",
      "          'serene': 1,\n",
      "          'children': 1,\n",
      "          'abandoned': 1,\n",
      "          'scrutinize': 1,\n",
      "          'contempt': 1,\n",
      "          'lost': 1,\n",
      "          'pals': 1,\n",
      "          'war': 1,\n",
      "          'platoon': 1,\n",
      "          'survive': 1,\n",
      "          'refuses': 1,\n",
      "          'help': 1,\n",
      "          'anybody': 1,\n",
      "          'respond': 1,\n",
      "          'affectionate': 1,\n",
      "          'gestures': 1,\n",
      "          'bitter': 1,\n",
      "          'closedoff': 1,\n",
      "          'whose': 1,\n",
      "          'passion': 1,\n",
      "          'beekeeping': 1,\n",
      "          'dead': 1,\n",
      "          'wife': 1,\n",
      "          'nconnie': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'neighbor': 1,\n",
      "          'finally': 1,\n",
      "          'gets': 1,\n",
      "          'friendly': 1,\n",
      "          'favors': 1,\n",
      "          'nurse': 1,\n",
      "          'helps': 1,\n",
      "          'turmoil': 1,\n",
      "          'believes': 1,\n",
      "          'fine': 1,\n",
      "          'truth': 1,\n",
      "          'revealed': 1,\n",
      "          'painfully': 1,\n",
      "          'cold': 1,\n",
      "          'unfeeling': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'softens': 1,\n",
      "          'journey': 1,\n",
      "          'absorbing': 1,\n",
      "          'fallen': 1,\n",
      "          'love': 1,\n",
      "          'tiredness': 1,\n",
      "          'weariness': 1,\n",
      "          'nwhat': 1,\n",
      "          'admirable': 1,\n",
      "          'movie': 1,\n",
      "          'winning': 1,\n",
      "          'turn': 1,\n",
      "          'nobodys': 1,\n",
      "          'fool': 1,\n",
      "          'ends': 1,\n",
      "          'class': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'big': 3,\n",
      "          'eden': 3,\n",
      "          'nits': 2,\n",
      "          'away': 2,\n",
      "          'general': 2,\n",
      "          'store': 2,\n",
      "          'young': 2,\n",
      "          'much': 2,\n",
      "          'henry': 2,\n",
      "          'home': 2,\n",
      "          'sam': 2,\n",
      "          'nand': 2,\n",
      "          'love': 2,\n",
      "          'doesnt': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'jour': 1,\n",
      "          'de': 1,\n",
      "          'fete': 1,\n",
      "          'utopia': 1,\n",
      "          'tiny': 1,\n",
      "          'town': 1,\n",
      "          'tucked': 1,\n",
      "          'timberland': 1,\n",
      "          'northwestern': 1,\n",
      "          'montana': 1,\n",
      "          'old': 1,\n",
      "          'codgers': 1,\n",
      "          'lounge': 1,\n",
      "          'porch': 1,\n",
      "          'pass': 1,\n",
      "          'time': 1,\n",
      "          'local': 1,\n",
      "          'matchmakers': 1,\n",
      "          'nan': 1,\n",
      "          'martin': 1,\n",
      "          'louise': 1,\n",
      "          'fletcher': 1,\n",
      "          'eagerly': 1,\n",
      "          'pair': 1,\n",
      "          'people': 1,\n",
      "          'regardless': 1,\n",
      "          'sexual': 1,\n",
      "          'preference': 1,\n",
      "          'ntheres': 1,\n",
      "          'nary': 1,\n",
      "          'homophobe': 1,\n",
      "          'bigot': 1,\n",
      "          'around': 1,\n",
      "          'surprise': 1,\n",
      "          'hart': 1,\n",
      "          'arye': 1,\n",
      "          'gross': 1,\n",
      "          'successful': 1,\n",
      "          'lonely': 1,\n",
      "          'manhattan': 1,\n",
      "          'artist': 1,\n",
      "          'returns': 1,\n",
      "          'care': 1,\n",
      "          'george': 1,\n",
      "          'coe': 1,\n",
      "          'ailing': 1,\n",
      "          'grandfather': 1,\n",
      "          'raised': 1,\n",
      "          'simultaneous': 1,\n",
      "          'reappearance': 1,\n",
      "          'bestfriend': 1,\n",
      "          'highschool': 1,\n",
      "          'object': 1,\n",
      "          'unrequited': 1,\n",
      "          'tim': 1,\n",
      "          'dekay': 1,\n",
      "          'divorced': 1,\n",
      "          'two': 1,\n",
      "          'sons': 1,\n",
      "          'fact': 1,\n",
      "          'homosexuality': 1,\n",
      "          'must': 1,\n",
      "          'faced': 1,\n",
      "          'nto': 1,\n",
      "          'complete': 1,\n",
      "          'triangle': 1,\n",
      "          'theres': 1,\n",
      "          'tall': 1,\n",
      "          'taciturn': 1,\n",
      "          'native': 1,\n",
      "          'american': 1,\n",
      "          'eric': 1,\n",
      "          'schweig': 1,\n",
      "          'owns': 1,\n",
      "          'lovingly': 1,\n",
      "          'yet': 1,\n",
      "          'secretly': 1,\n",
      "          'prepares': 1,\n",
      "          'gourmet': 1,\n",
      "          'meals': 1,\n",
      "          'nthis': 1,\n",
      "          'fable': 1,\n",
      "          'family': 1,\n",
      "          'major': 1,\n",
      "          'debut': 1,\n",
      "          'firsttime': 1,\n",
      "          'filmmaker': 1,\n",
      "          'thomas': 1,\n",
      "          'bezucha': 1,\n",
      "          'former': 1,\n",
      "          'designer': 1,\n",
      "          'coach': 1,\n",
      "          'poloralph': 1,\n",
      "          'lauren': 1,\n",
      "          'meticulous': 1,\n",
      "          'minding': 1,\n",
      "          'details': 1,\n",
      "          'using': 1,\n",
      "          'ballads': 1,\n",
      "          'like': 1,\n",
      "          'welcome': 1,\n",
      "          'world': 1,\n",
      "          'achin': 1,\n",
      "          'breakin': 1,\n",
      "          'heart': 1,\n",
      "          'set': 1,\n",
      "          'concept': 1,\n",
      "          'universal': 1,\n",
      "          'longing': 1,\n",
      "          'find': 1,\n",
      "          'place': 1,\n",
      "          'loved': 1,\n",
      "          'nin': 1,\n",
      "          'paradise': 1,\n",
      "          'matter': 1,\n",
      "          'generosity': 1,\n",
      "          'spirit': 1,\n",
      "          'respect': 1,\n",
      "          'kindness': 1,\n",
      "          'nsure': 1,\n",
      "          'plots': 1,\n",
      "          'implausible': 1,\n",
      "          'goodnatured': 1,\n",
      "          'fantasy': 1,\n",
      "          'allowances': 1,\n",
      "          'made': 1,\n",
      "          'rob': 1,\n",
      "          'sweeneys': 1,\n",
      "          'photography': 1,\n",
      "          'glacier': 1,\n",
      "          'national': 1,\n",
      "          'park': 1,\n",
      "          'spectacular': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'charming': 1,\n",
      "          'quirky': 1,\n",
      "          'offbeat': 1,\n",
      "          '7': 1,\n",
      "          'heartwarming': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'gay': 1,\n",
      "          'man': 1,\n",
      "          'die': 1,\n",
      "          'aids': 1,\n",
      "          'wind': 1,\n",
      "          'alone': 1,\n",
      "          'end': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'frequency': 6,\n",
      "          'movie': 4,\n",
      "          'father': 4,\n",
      "          'three': 4,\n",
      "          'one': 3,\n",
      "          'time': 3,\n",
      "          'nit': 3,\n",
      "          'looked': 3,\n",
      "          'like': 3,\n",
      "          'film': 3,\n",
      "          'films': 3,\n",
      "          'elements': 3,\n",
      "          'seeing': 2,\n",
      "          'certain': 2,\n",
      "          'nfrequency': 2,\n",
      "          'line': 2,\n",
      "          'sullivan': 2,\n",
      "          'frank': 2,\n",
      "          'fact': 2,\n",
      "          'serial': 2,\n",
      "          'great': 2,\n",
      "          'ending': 2,\n",
      "          'logic': 2,\n",
      "          'scifi': 2,\n",
      "          'travel': 2,\n",
      "          'never': 2,\n",
      "          'nwhen': 2,\n",
      "          'okay': 2,\n",
      "          'go': 1,\n",
      "          'movies': 1,\n",
      "          'much': 1,\n",
      "          'unfortunately': 1,\n",
      "          'end': 1,\n",
      "          'trailers': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'nsuch': 1,\n",
      "          'case': 1,\n",
      "          'nevery': 1,\n",
      "          'went': 1,\n",
      "          'screening': 1,\n",
      "          'preview': 1,\n",
      "          'awful': 1,\n",
      "          'cheesy': 1,\n",
      "          'sappy': 1,\n",
      "          'ridiculous': 1,\n",
      "          'flop': 1,\n",
      "          'nwell': 1,\n",
      "          'whoever': 1,\n",
      "          'put': 1,\n",
      "          'trailer': 1,\n",
      "          'together': 1,\n",
      "          'fired': 1,\n",
      "          'terms': 1,\n",
      "          'pure': 1,\n",
      "          'entertainment': 1,\n",
      "          'best': 1,\n",
      "          'year': 1,\n",
      "          'thus': 1,\n",
      "          'far': 1,\n",
      "          'boasts': 1,\n",
      "          'compelling': 1,\n",
      "          'story': 1,\n",
      "          'nan': 1,\n",
      "          'occurrence': 1,\n",
      "          'freakish': 1,\n",
      "          'solar': 1,\n",
      "          'activity': 1,\n",
      "          'allows': 1,\n",
      "          'police': 1,\n",
      "          'detective': 1,\n",
      "          'john': 1,\n",
      "          'james': 1,\n",
      "          'caviezel': 1,\n",
      "          'speak': 1,\n",
      "          'fireman': 1,\n",
      "          'dennis': 1,\n",
      "          'quaid': 1,\n",
      "          'ham': 1,\n",
      "          'radio': 1,\n",
      "          'despite': 1,\n",
      "          'dead': 1,\n",
      "          '30': 1,\n",
      "          'years': 1,\n",
      "          'njohn': 1,\n",
      "          'able': 1,\n",
      "          'give': 1,\n",
      "          'information': 1,\n",
      "          'prevents': 1,\n",
      "          'death': 1,\n",
      "          'warehouse': 1,\n",
      "          'fire': 1,\n",
      "          'causes': 1,\n",
      "          'changes': 1,\n",
      "          'nsomehow': 1,\n",
      "          'killers': 1,\n",
      "          'reign': 1,\n",
      "          'terror': 1,\n",
      "          'original': 1,\n",
      "          'timeline': 1,\n",
      "          'stopped': 1,\n",
      "          'murders': 1,\n",
      "          'extends': 1,\n",
      "          'ten': 1,\n",
      "          'victims': 1,\n",
      "          'nincluding': 1,\n",
      "          'johns': 1,\n",
      "          'mother': 1,\n",
      "          'nthis': 1,\n",
      "          'director': 1,\n",
      "          'gregory': 1,\n",
      "          'hoblits': 1,\n",
      "          'third': 1,\n",
      "          'two': 1,\n",
      "          'primal': 1,\n",
      "          'fear': 1,\n",
      "          'fallen': 1,\n",
      "          'nwith': 1,\n",
      "          'hes': 1,\n",
      "          'managed': 1,\n",
      "          'attach': 1,\n",
      "          'scripts': 1,\n",
      "          'toby': 1,\n",
      "          'emmerich': 1,\n",
      "          'whose': 1,\n",
      "          'previous': 1,\n",
      "          'experience': 1,\n",
      "          'music': 1,\n",
      "          'supervisor': 1,\n",
      "          'numerous': 1,\n",
      "          'new': 1,\n",
      "          'add': 1,\n",
      "          'equally': 1,\n",
      "          'direction': 1,\n",
      "          'nalso': 1,\n",
      "          'apparently': 1,\n",
      "          'likes': 1,\n",
      "          'wrap': 1,\n",
      "          'kickass': 1,\n",
      "          'exception': 1,\n",
      "          'unpredictable': 1,\n",
      "          'incredibly': 1,\n",
      "          'satisfying': 1,\n",
      "          'nhoblit': 1,\n",
      "          'hope': 1,\n",
      "          'keep': 1,\n",
      "          'nnow': 1,\n",
      "          'everyone': 1,\n",
      "          'argue': 1,\n",
      "          'want': 1,\n",
      "          'nbut': 1,\n",
      "          'matter': 1,\n",
      "          'achieved': 1,\n",
      "          'nwhos': 1,\n",
      "          'say': 1,\n",
      "          'something': 1,\n",
      "          'works': 1,\n",
      "          'doesnt': 1,\n",
      "          'happened': 1,\n",
      "          'nis': 1,\n",
      "          'weve': 1,\n",
      "          'become': 1,\n",
      "          'accustomed': 1,\n",
      "          'laws': 1,\n",
      "          'places': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'back': 1,\n",
      "          'future': 1,\n",
      "          'trilogy': 1,\n",
      "          'quantum': 1,\n",
      "          'leap': 1,\n",
      "          'nyes': 1,\n",
      "          'sit': 1,\n",
      "          'think': 1,\n",
      "          'plot': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'nmost': 1,\n",
      "          'ndont': 1,\n",
      "          'let': 1,\n",
      "          'dissuade': 1,\n",
      "          'fantastically': 1,\n",
      "          'entertaining': 1,\n",
      "          'however': 1,\n",
      "          'made': 1,\n",
      "          'wish': 1,\n",
      "          'seen': 1,\n",
      "          'could': 1,\n",
      "          'given': 1,\n",
      "          'hug': 1,\n",
      "          'shut': 1,\n",
      "          'break': 1,\n",
      "          'past': 1,\n",
      "          'killer': 1,\n",
      "          'antics': 1,\n",
      "          'simply': 1,\n",
      "          'son': 1,\n",
      "          'bond': 1,\n",
      "          'share': 1,\n",
      "          'nits': 1,\n",
      "          'touching': 1,\n",
      "          'sincere': 1,\n",
      "          'ultimately': 1,\n",
      "          'makes': 1,\n",
      "          'work': 1,\n",
      "          'npg13': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'paul': 3,\n",
      "          'deniro': 3,\n",
      "          'man': 3,\n",
      "          'crystal': 3,\n",
      "          'laughs': 3,\n",
      "          'must': 2,\n",
      "          'mob': 2,\n",
      "          'boss': 2,\n",
      "          'vitti': 2,\n",
      "          'robert': 2,\n",
      "          'finds': 2,\n",
      "          'mafia': 2,\n",
      "          'hes': 2,\n",
      "          'nand': 2,\n",
      "          'billy': 2,\n",
      "          'day': 2,\n",
      "          'nplaying': 2,\n",
      "          'vittis': 2,\n",
      "          'comedy': 2,\n",
      "          'gets': 2,\n",
      "          'like': 2,\n",
      "          'nits': 2,\n",
      "          'manages': 2,\n",
      "          'kudrow': 2,\n",
      "          'tough': 1,\n",
      "          'njust': 1,\n",
      "          'ask': 1,\n",
      "          'job': 1,\n",
      "          'head': 1,\n",
      "          'rather': 1,\n",
      "          'stress': 1,\n",
      "          'inducing': 1,\n",
      "          'ni': 1,\n",
      "          'believe': 1,\n",
      "          'one': 1,\n",
      "          'cant': 1,\n",
      "          'even': 1,\n",
      "          'begin': 1,\n",
      "          'fathom': 1,\n",
      "          'turmoil': 1,\n",
      "          'go': 1,\n",
      "          'forced': 1,\n",
      "          'choose': 1,\n",
      "          'ice': 1,\n",
      "          'pick': 1,\n",
      "          'baseball': 1,\n",
      "          'bat': 1,\n",
      "          'sledgehammer': 1,\n",
      "          'torture': 1,\n",
      "          'victims': 1,\n",
      "          'nsuffering': 1,\n",
      "          'reoccurring': 1,\n",
      "          'panic': 1,\n",
      "          'attacks': 1,\n",
      "          'decides': 1,\n",
      "          'needs': 1,\n",
      "          'consult': 1,\n",
      "          'professional': 1,\n",
      "          'help': 1,\n",
      "          'better': 1,\n",
      "          'nafter': 1,\n",
      "          'appearing': 1,\n",
      "          'bottomofthebarrel': 1,\n",
      "          'flops': 1,\n",
      "          'fathers': 1,\n",
      "          'giant': 1,\n",
      "          'finally': 1,\n",
      "          'reliable': 1,\n",
      "          'costar': 1,\n",
      "          'promising': 1,\n",
      "          'material': 1,\n",
      "          'private': 1,\n",
      "          'shrink': 1,\n",
      "          'two': 1,\n",
      "          'different': 1,\n",
      "          'stars': 1,\n",
      "          'strike': 1,\n",
      "          'unorthodox': 1,\n",
      "          'interesting': 1,\n",
      "          'relationship': 1,\n",
      "          'carries': 1,\n",
      "          'enjoyable': 1,\n",
      "          'steady': 1,\n",
      "          'wave': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'ncasting': 1,\n",
      "          'something': 1,\n",
      "          'injoke': 1,\n",
      "          'think': 1,\n",
      "          'nplaced': 1,\n",
      "          'mobsters': 1,\n",
      "          'shoes': 1,\n",
      "          'spoof': 1,\n",
      "          'characters': 1,\n",
      "          'played': 1,\n",
      "          'films': 1,\n",
      "          'godfather': 1,\n",
      "          'part': 1,\n",
      "          'ii': 1,\n",
      "          'casino': 1,\n",
      "          'obvious': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'harold': 1,\n",
      "          'ramis': 1,\n",
      "          'whose': 1,\n",
      "          'credits': 1,\n",
      "          'include': 1,\n",
      "          'ghostbusters': 1,\n",
      "          'writer': 1,\n",
      "          'star': 1,\n",
      "          'best': 1,\n",
      "          'directing': 1,\n",
      "          'effort': 1,\n",
      "          'bill': 1,\n",
      "          'murray': 1,\n",
      "          'vehicle': 1,\n",
      "          'groundhog': 1,\n",
      "          'nramis': 1,\n",
      "          'knack': 1,\n",
      "          'drawing': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'simply': 1,\n",
      "          'knows': 1,\n",
      "          'whats': 1,\n",
      "          'funny': 1,\n",
      "          'accentuate': 1,\n",
      "          'strengths': 1,\n",
      "          'nearly': 1,\n",
      "          'actors': 1,\n",
      "          'character': 1,\n",
      "          'weakens': 1,\n",
      "          'payoff': 1,\n",
      "          'crystals': 1,\n",
      "          'bridetobe': 1,\n",
      "          'lisa': 1,\n",
      "          'dumbeddown': 1,\n",
      "          'role': 1,\n",
      "          'friends': 1,\n",
      "          'amusing': 1,\n",
      "          'doesnt': 1,\n",
      "          'fit': 1,\n",
      "          'mold': 1,\n",
      "          'well': 1,\n",
      "          'director': 1,\n",
      "          'may': 1,\n",
      "          'hoped': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'sparkles': 1,\n",
      "          'njoe': 1,\n",
      "          'viterelli': 1,\n",
      "          'hilarious': 1,\n",
      "          'jelly': 1,\n",
      "          'pea': 1,\n",
      "          'brained': 1,\n",
      "          'righthand': 1,\n",
      "          'chazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'show': 1,\n",
      "          'stopper': 1,\n",
      "          'playing': 1,\n",
      "          'fellow': 1,\n",
      "          'mobster': 1,\n",
      "          'whos': 1,\n",
      "          'desperate': 1,\n",
      "          'need': 1,\n",
      "          'definition': 1,\n",
      "          'closure': 1,\n",
      "          'movie': 1,\n",
      "          'maintain': 1,\n",
      "          'consistent': 1,\n",
      "          'chuckles': 1,\n",
      "          'throughout': 1,\n",
      "          'putting': 1,\n",
      "          'emphasis': 1,\n",
      "          '3': 1,\n",
      "          '4': 1,\n",
      "          'really': 1,\n",
      "          'big': 1,\n",
      "          'audiences': 1,\n",
      "          'grasping': 1,\n",
      "          'sides': 1,\n",
      "          'situation': 1,\n",
      "          'cute': 1,\n",
      "          'resist': 1,\n",
      "          'unfortunate': 1,\n",
      "          'language': 1,\n",
      "          'somewhat': 1,\n",
      "          'hand': 1,\n",
      "          'nbut': 1,\n",
      "          'hey': 1,\n",
      "          'youre': 1,\n",
      "          'using': 1,\n",
      "          'obscenities': 1,\n",
      "          'probably': 1,\n",
      "          'comes': 1,\n",
      "          'naturally': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'seeing': 1,\n",
      "          'attempt': 1,\n",
      "          'walk': 1,\n",
      "          'talk': 1,\n",
      "          'truly': 1,\n",
      "          'special': 1,\n",
      "          'treat': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cavemans': 11,\n",
      "          'valentine_': 10,\n",
      "          'film': 9,\n",
      "          '_the': 8,\n",
      "          'romulus': 8,\n",
      "          'novel': 5,\n",
      "          'comic': 4,\n",
      "          'hero': 4,\n",
      "          'graphic': 3,\n",
      "          'homeless': 3,\n",
      "          'cave': 3,\n",
      "          'one': 3,\n",
      "          'brilliant': 3,\n",
      "          'valentine': 2,\n",
      "          'samuel': 2,\n",
      "          'l': 2,\n",
      "          'jackson': 2,\n",
      "          'aunjanue': 2,\n",
      "          'ellis': 2,\n",
      "          'tamara': 2,\n",
      "          'tunie': 2,\n",
      "          'screenplay': 2,\n",
      "          'george': 2,\n",
      "          'dawes': 2,\n",
      "          'green': 2,\n",
      "          'based': 2,\n",
      "          'lemmons': 2,\n",
      "          'n': 2,\n",
      "          'strange': 2,\n",
      "          'tale': 2,\n",
      "          'murder': 2,\n",
      "          'occasional': 2,\n",
      "          'every': 2,\n",
      "          'concept': 2,\n",
      "          'book': 2,\n",
      "          'mcfarlanes': 2,\n",
      "          'spawn': 2,\n",
      "          'blue': 2,\n",
      "          'police': 2,\n",
      "          'fantasy': 2,\n",
      "          'blood': 2,\n",
      "          'form': 2,\n",
      "          'nthe': 2,\n",
      "          'fact': 2,\n",
      "          'ruling': 2,\n",
      "          'nit': 2,\n",
      "          'royal': 2,\n",
      "          'carrion': 2,\n",
      "          '_unbreakable_': 2,\n",
      "          'mature': 2,\n",
      "          'dark': 2,\n",
      "          'knight': 2,\n",
      "          'maxx': 2,\n",
      "          'n_the': 2,\n",
      "          'starring': 1,\n",
      "          'ann': 1,\n",
      "          'magnuson': 1,\n",
      "          'directed': 1,\n",
      "          'kasi': 1,\n",
      "          'dvd': 1,\n",
      "          'books': 1,\n",
      "          'movie': 1,\n",
      "          'reviews': 1,\n",
      "          'plus': 1,\n",
      "          'annual': 1,\n",
      "          'coverage': 1,\n",
      "          'toronto': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'visit': 1,\n",
      "          '_film': 1,\n",
      "          'freak': 1,\n",
      "          'central_': 1,\n",
      "          'http': 1,\n",
      "          'filmfreakcentral': 1,\n",
      "          'net': 1,\n",
      "          'search': 1,\n",
      "          'engine': 1,\n",
      "          'na': 1,\n",
      "          'mixture': 1,\n",
      "          '_shine_': 1,\n",
      "          '_basquiat_': 1,\n",
      "          '_angel': 1,\n",
      "          'heart_': 1,\n",
      "          'grant': 1,\n",
      "          'morrison': 1,\n",
      "          'dave': 1,\n",
      "          'mckeans': 1,\n",
      "          'arkham': 1,\n",
      "          'asylum': 1,\n",
      "          'feverish': 1,\n",
      "          'madmancumdetective': 1,\n",
      "          'morning': 1,\n",
      "          'february': 1,\n",
      "          '14th': 1,\n",
      "          'discovers': 1,\n",
      "          'outside': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'ella': 1,\n",
      "          'fitzgeralds': 1,\n",
      "          'fruit': 1,\n",
      "          'stuck': 1,\n",
      "          'crotch': 1,\n",
      "          'treea': 1,\n",
      "          'young': 1,\n",
      "          'male': 1,\n",
      "          'model': 1,\n",
      "          'murdered': 1,\n",
      "          'frozen': 1,\n",
      "          'branch': 1,\n",
      "          'nbelieving': 1,\n",
      "          'first': 1,\n",
      "          'imagined': 1,\n",
      "          'nemesis': 1,\n",
      "          'stuyvesant': 1,\n",
      "          'shooting': 1,\n",
      "          'evil': 1,\n",
      "          'rays': 1,\n",
      "          'mind': 1,\n",
      "          'atop': 1,\n",
      "          'chrysler': 1,\n",
      "          'building': 1,\n",
      "          'responsible': 1,\n",
      "          'put': 1,\n",
      "          'trail': 1,\n",
      "          'avantgarde': 1,\n",
      "          'photographer': 1,\n",
      "          'mapplethorpe': 1,\n",
      "          'mould': 1,\n",
      "          'david': 1,\n",
      "          'leppenraub': 1,\n",
      "          'colm': 1,\n",
      "          'feore': 1,\n",
      "          'nhis': 1,\n",
      "          'minor': 1,\n",
      "          'sleuthing': 1,\n",
      "          'interrupted': 1,\n",
      "          'delusional': 1,\n",
      "          'fit': 1,\n",
      "          'bouts': 1,\n",
      "          'ecstasy': 1,\n",
      "          'creation': 1,\n",
      "          'julliardtrained': 1,\n",
      "          'pianist': 1,\n",
      "          'prior': 1,\n",
      "          'psychosis': 1,\n",
      "          'uncovers': 1,\n",
      "          'clues': 1,\n",
      "          'harasses': 1,\n",
      "          'suspects': 1,\n",
      "          'way': 1,\n",
      "          'convincing': 1,\n",
      "          'policewoman': 1,\n",
      "          'daughter': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'hes': 1,\n",
      "          'nut': 1,\n",
      "          'doesnt': 1,\n",
      "          'mean': 1,\n",
      "          'cant': 1,\n",
      "          'solve': 1,\n",
      "          'highprofile': 1,\n",
      "          'society': 1,\n",
      "          'nevery': 1,\n",
      "          'moment': 1,\n",
      "          'exhausting': 1,\n",
      "          'workshop': 1,\n",
      "          'ideas': 1,\n",
      "          'character': 1,\n",
      "          'high': 1,\n",
      "          'suddenly': 1,\n",
      "          'became': 1,\n",
      "          'clear': 1,\n",
      "          'fits': 1,\n",
      "          'genre': 1,\n",
      "          'entertainment': 1,\n",
      "          'romuluss': 1,\n",
      "          'caveman': 1,\n",
      "          'slightly': 1,\n",
      "          'mundane': 1,\n",
      "          'version': 1,\n",
      "          'todd': 1,\n",
      "          'urban': 1,\n",
      "          'noir': 1,\n",
      "          'nwith': 1,\n",
      "          'longvanished': 1,\n",
      "          'wife': 1,\n",
      "          'acting': 1,\n",
      "          'spiritual': 1,\n",
      "          'guide': 1,\n",
      "          'social': 1,\n",
      "          'caste': 1,\n",
      "          'commentary': 1,\n",
      "          'secret': 1,\n",
      "          'base': 1,\n",
      "          'divergent': 1,\n",
      "          'genius': 1,\n",
      "          'personality': 1,\n",
      "          'network': 1,\n",
      "          'informants': 1,\n",
      "          'supporters': 1,\n",
      "          'wickedly': 1,\n",
      "          'colourful': 1,\n",
      "          'archenemy': 1,\n",
      "          'piles': 1,\n",
      "          'lurid': 1,\n",
      "          'details': 1,\n",
      "          'dizzying': 1,\n",
      "          'slapdash': 1,\n",
      "          'colours': 1,\n",
      "          'lavish': 1,\n",
      "          'extent': 1,\n",
      "          'vaguely': 1,\n",
      "          'surprised': 1,\n",
      "          'cars': 1,\n",
      "          'werent': 1,\n",
      "          'inscribed': 1,\n",
      "          'gotham': 1,\n",
      "          'pd': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'really': 1,\n",
      "          'succeed': 1,\n",
      "          'heroic': 1,\n",
      "          'frank': 1,\n",
      "          'miller': 1,\n",
      "          'audacity': 1,\n",
      "          'portray': 1,\n",
      "          'staining': 1,\n",
      "          'field': 1,\n",
      "          'virgin': 1,\n",
      "          'snow': 1,\n",
      "          'expanding': 1,\n",
      "          'shape': 1,\n",
      "          'heart': 1,\n",
      "          'difficulties': 1,\n",
      "          'spring': 1,\n",
      "          'misunderstanding': 1,\n",
      "          'somehow': 1,\n",
      "          'adheres': 1,\n",
      "          'conventions': 1,\n",
      "          'thriller': 1,\n",
      "          'procedural': 1,\n",
      "          'superhero': 1,\n",
      "          'fable': 1,\n",
      "          'takes': 1,\n",
      "          'cause': 1,\n",
      "          'like': 1,\n",
      "          'attacking': 1,\n",
      "          'entrenched': 1,\n",
      "          'classes': 1,\n",
      "          'government': 1,\n",
      "          'arts': 1,\n",
      "          'small': 1,\n",
      "          'detail': 1,\n",
      "          'named': 1,\n",
      "          'member': 1,\n",
      "          'class': 1,\n",
      "          'lived': 1,\n",
      "          'life': 1,\n",
      "          'legend': 1,\n",
      "          'without': 1,\n",
      "          'knowledge': 1,\n",
      "          'birth': 1,\n",
      "          'also': 1,\n",
      "          'turned': 1,\n",
      "          'back': 1,\n",
      "          'comforts': 1,\n",
      "          'literati': 1,\n",
      "          'favour': 1,\n",
      "          'mystical': 1,\n",
      "          'existence': 1,\n",
      "          'living': 1,\n",
      "          'park': 1,\n",
      "          'mythology': 1,\n",
      "          'signs': 1,\n",
      "          'brought': 1,\n",
      "          'twelve': 1,\n",
      "          'vultures': 1,\n",
      "          'call': 1,\n",
      "          'action': 1,\n",
      "          'comes': 1,\n",
      "          'birds': 1,\n",
      "          'nwhether': 1,\n",
      "          'found': 1,\n",
      "          'nation': 1,\n",
      "          'case': 1,\n",
      "          'novelist': 1,\n",
      "          'upon': 1,\n",
      "          'whose': 1,\n",
      "          'franchise': 1,\n",
      "          'remains': 1,\n",
      "          'easily': 1,\n",
      "          'misunderstood': 1,\n",
      "          '2001': 1,\n",
      "          'thus': 1,\n",
      "          'far': 1,\n",
      "          'along': 1,\n",
      "          'night': 1,\n",
      "          'shyamalans': 1,\n",
      "          'cinematic': 1,\n",
      "          'extrapolation': 1,\n",
      "          'format': 1,\n",
      "          'since': 1,\n",
      "          'millers': 1,\n",
      "          'seminal': 1,\n",
      "          'returns': 1,\n",
      "          'redefined': 1,\n",
      "          'medium': 1,\n",
      "          'suitable': 1,\n",
      "          'ruminations': 1,\n",
      "          'psychologically': 1,\n",
      "          'sticky': 1,\n",
      "          'topics': 1,\n",
      "          'nreaders': 1,\n",
      "          'sam': 1,\n",
      "          'keiths': 1,\n",
      "          'series': 1,\n",
      "          'mtvs': 1,\n",
      "          'shortlived': 1,\n",
      "          'animated': 1,\n",
      "          'adaptation': 1,\n",
      "          'already': 1,\n",
      "          'familiar': 1,\n",
      "          'idea': 1,\n",
      "          'man': 1,\n",
      "          'placed': 1,\n",
      "          'position': 1,\n",
      "          'errant': 1,\n",
      "          'king': 1,\n",
      "          'twisted': 1,\n",
      "          'demesne': 1,\n",
      "          'failure': 1,\n",
      "          'tv': 1,\n",
      "          'show': 1,\n",
      "          'forgetting': 1,\n",
      "          'initial': 1,\n",
      "          'backlash': 1,\n",
      "          'suggests': 1,\n",
      "          'public': 1,\n",
      "          'may': 1,\n",
      "          'ready': 1,\n",
      "          'americas': 1,\n",
      "          'surprising': 1,\n",
      "          'contributions': 1,\n",
      "          'nluxuriantly': 1,\n",
      "          'lit': 1,\n",
      "          'brashly': 1,\n",
      "          'saturated': 1,\n",
      "          'comicpanel': 1,\n",
      "          'framed': 1,\n",
      "          'virtuoso': 1,\n",
      "          'grace': 1,\n",
      "          'cinematographer': 1,\n",
      "          'amy': 1,\n",
      "          'vincent': 1,\n",
      "          '_death': 1,\n",
      "          'venice': 1,\n",
      "          'ca_': 1,\n",
      "          'inhabiting': 1,\n",
      "          'robin': 1,\n",
      "          'standefers': 1,\n",
      "          '_practical': 1,\n",
      "          'magic_': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'sets': 1,\n",
      "          'unremittingly': 1,\n",
      "          'gorgeous': 1,\n",
      "          'nkasi': 1,\n",
      "          'following': 1,\n",
      "          '1997': 1,\n",
      "          'debut': 1,\n",
      "          '_eves': 1,\n",
      "          'bayou_': 1,\n",
      "          'played': 1,\n",
      "          'similar': 1,\n",
      "          'themes': 1,\n",
      "          'manufactured': 1,\n",
      "          'realities': 1,\n",
      "          'mysticism': 1,\n",
      "          'fulfills': 1,\n",
      "          'much': 1,\n",
      "          'immense': 1,\n",
      "          'promise': 1,\n",
      "          'seraphs': 1,\n",
      "          'lost': 1,\n",
      "          'boys': 1,\n",
      "          'artists': 1,\n",
      "          'suffering': 1,\n",
      "          'elegant': 1,\n",
      "          'piquant': 1,\n",
      "          'expression': 1,\n",
      "          'hope': 1,\n",
      "          'justice': 1,\n",
      "          'tilted': 1,\n",
      "          'landscape': 1,\n",
      "          'nclearly': 1,\n",
      "          'taste': 1,\n",
      "          'approached': 1,\n",
      "          'correct': 1,\n",
      "          'paradigm': 1,\n",
      "          'stunning': 1,\n",
      "          'intensely': 1,\n",
      "          'fascinating': 1,\n",
      "          'films': 1,\n",
      "          'year': 1,\n",
      "          'redefinition': 1,\n",
      "          'archetype': 1,\n",
      "          'postmodern': 1,\n",
      "          'audience': 1,\n",
      "          'urinestained': 1,\n",
      "          'wool': 1,\n",
      "          'trench': 1,\n",
      "          'coats': 1,\n",
      "          'place': 1,\n",
      "          'tights': 1,\n",
      "          'red': 1,\n",
      "          'capes': 1,\n",
      "          'fine': 1,\n",
      "          'courageous': 1,\n",
      "          'crazy': 1,\n",
      "          'enough': 1,\n",
      "          'suggest': 1,\n",
      "          'delirious': 1,\n",
      "          'yammering': 1,\n",
      "          'idiot': 1,\n",
      "          'savant': 1,\n",
      "          'best': 1,\n",
      "          'truest': 1,\n",
      "          'paladin': 1,\n",
      "          'order': 1,\n",
      "          'chaos': 1,\n",
      "          'eliots': 1,\n",
      "          'rats': 1,\n",
      "          'alley': 1,\n",
      "          'wasteland': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'baby': 5,\n",
      "          'day': 3,\n",
      "          'home': 2,\n",
      "          'babys': 2,\n",
      "          'nthe': 2,\n",
      "          'mantegna': 2,\n",
      "          'haley': 2,\n",
      "          'n': 2,\n",
      "          'john': 2,\n",
      "          'ones': 2,\n",
      "          'great': 2,\n",
      "          'expand': 1,\n",
      "          'final': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'alone': 1,\n",
      "          'featurelength': 1,\n",
      "          'film': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'outan': 1,\n",
      "          'agreeably': 1,\n",
      "          'amusing': 1,\n",
      "          'childrens': 1,\n",
      "          'comedy': 1,\n",
      "          'bumbling': 1,\n",
      "          'band': 1,\n",
      "          'kid': 1,\n",
      "          'kidnappers': 1,\n",
      "          'unwittingly': 1,\n",
      "          'outwitted': 1,\n",
      "          'innocent': 1,\n",
      "          'infant': 1,\n",
      "          'plot': 1,\n",
      "          'tracks': 1,\n",
      "          'trio': 1,\n",
      "          'crooksposedasphotographers': 1,\n",
      "          'pantoliano': 1,\n",
      "          'steal': 1,\n",
      "          'ninemonthold': 1,\n",
      "          'bennington': 1,\n",
      "          'august': 1,\n",
      "          'cottwell': 1,\n",
      "          'iv': 1,\n",
      "          'aka': 1,\n",
      "          'bink': 1,\n",
      "          'oldmoney': 1,\n",
      "          'nbut': 1,\n",
      "          'plan': 1,\n",
      "          'goes': 1,\n",
      "          'awry': 1,\n",
      "          'crawls': 1,\n",
      "          'open': 1,\n",
      "          'window': 1,\n",
      "          'streets': 1,\n",
      "          'downtown': 1,\n",
      "          'chicago': 1,\n",
      "          'nfollowing': 1,\n",
      "          'path': 1,\n",
      "          'favorite': 1,\n",
      "          'story': 1,\n",
      "          'called': 1,\n",
      "          'rides': 1,\n",
      "          'bus': 1,\n",
      "          'visits': 1,\n",
      "          'zoo': 1,\n",
      "          'winds': 1,\n",
      "          'skyscraper': 1,\n",
      "          'construction': 1,\n",
      "          'site': 1,\n",
      "          'nwhile': 1,\n",
      "          'stays': 1,\n",
      "          'unscathed': 1,\n",
      "          'crooks': 1,\n",
      "          'fare': 1,\n",
      "          'worse': 1,\n",
      "          'wear': 1,\n",
      "          'stooges': 1,\n",
      "          'get': 1,\n",
      "          'hit': 1,\n",
      "          'boards': 1,\n",
      "          'dropped': 1,\n",
      "          'roofs': 1,\n",
      "          'course': 1,\n",
      "          'suffer': 1,\n",
      "          'multiple': 1,\n",
      "          'crotch': 1,\n",
      "          'injuries': 1,\n",
      "          'wayne': 1,\n",
      "          'bobbitt': 1,\n",
      "          'probably': 1,\n",
      "          'steer': 1,\n",
      "          'clear': 1,\n",
      "          'one': 1,\n",
      "          'nlike': 1,\n",
      "          'planes': 1,\n",
      "          'trains': 1,\n",
      "          'automobiles': 1,\n",
      "          'hughes': 1,\n",
      "          'demonstrates': 1,\n",
      "          'mastery': 1,\n",
      "          'simple': 1,\n",
      "          'setup': 1,\n",
      "          'extended': 1,\n",
      "          'execution': 1,\n",
      "          'nhere': 1,\n",
      "          'hes': 1,\n",
      "          'aided': 1,\n",
      "          'abetted': 1,\n",
      "          'director': 1,\n",
      "          'patrick': 1,\n",
      "          'read': 1,\n",
      "          'johnson': 1,\n",
      "          'whose': 1,\n",
      "          'choreography': 1,\n",
      "          'could': 1,\n",
      "          'rival': 1,\n",
      "          'coen': 1,\n",
      "          'brother': 1,\n",
      "          'nbest': 1,\n",
      "          'bit': 1,\n",
      "          'crawling': 1,\n",
      "          'across': 1,\n",
      "          'busy': 1,\n",
      "          'city': 1,\n",
      "          'street': 1,\n",
      "          'nbabys': 1,\n",
      "          'two': 1,\n",
      "          'emotionsawww': 1,\n",
      "          'ouchand': 1,\n",
      "          'actors': 1,\n",
      "          'play': 1,\n",
      "          'accordingly': 1,\n",
      "          'nforget': 1,\n",
      "          'cartoon': 1,\n",
      "          'concern': 1,\n",
      "          'lara': 1,\n",
      "          'flynn': 1,\n",
      "          'boyle': 1,\n",
      "          'cynthia': 1,\n",
      "          'nixon': 1,\n",
      "          'disposable': 1,\n",
      "          'mom': 1,\n",
      "          'nanny': 1,\n",
      "          'respectively': 1,\n",
      "          'watch': 1,\n",
      "          'wincing': 1,\n",
      "          'njoe': 1,\n",
      "          'head': 1,\n",
      "          'stooge': 1,\n",
      "          'barking': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'little': 1,\n",
      "          'doodoo': 1,\n",
      "          'machine': 1,\n",
      "          'retirement': 1,\n",
      "          'money': 1,\n",
      "          'nbrian': 1,\n",
      "          'scene': 1,\n",
      "          'gorilla': 1,\n",
      "          'joe': 1,\n",
      "          'pantolianto': 1,\n",
      "          'plays': 1,\n",
      "          'curly': 1,\n",
      "          'mantegnas': 1,\n",
      "          'moe': 1,\n",
      "          'funny': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'twins': 1,\n",
      "          'adam': 1,\n",
      "          'jacob': 1,\n",
      "          'warton': 1,\n",
      "          'adorable': 1,\n",
      "          'beyond': 1,\n",
      "          'belief': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mob': 10,\n",
      "          'shot': 6,\n",
      "          'deputy': 6,\n",
      "          'camera': 6,\n",
      "          'joe': 5,\n",
      "          'human': 5,\n",
      "          'lang': 5,\n",
      "          'audience': 5,\n",
      "          'nin': 4,\n",
      "          'viewer': 4,\n",
      "          'towards': 4,\n",
      "          'bar': 4,\n",
      "          'behavior': 3,\n",
      "          'sense': 3,\n",
      "          'scene': 3,\n",
      "          'mobs': 3,\n",
      "          'around': 3,\n",
      "          'shots': 3,\n",
      "          'nas': 3,\n",
      "          'train': 2,\n",
      "          'station': 2,\n",
      "          'fury': 2,\n",
      "          'line': 2,\n",
      "          'film': 2,\n",
      "          'character': 2,\n",
      "          'discomfort': 2,\n",
      "          'lynching': 2,\n",
      "          'meyers': 2,\n",
      "          'nwe': 2,\n",
      "          'see': 2,\n",
      "          'patrons': 2,\n",
      "          'arguing': 2,\n",
      "          'nwhat': 2,\n",
      "          'realization': 2,\n",
      "          'within': 2,\n",
      "          'impulse': 2,\n",
      "          'powerless': 2,\n",
      "          'deputys': 2,\n",
      "          'nlang': 2,\n",
      "          'movement': 2,\n",
      "          'nthe': 2,\n",
      "          'becomes': 2,\n",
      "          'left': 2,\n",
      "          'reveal': 2,\n",
      "          'subject': 2,\n",
      "          'feel': 2,\n",
      "          'faces': 2,\n",
      "          'pan': 2,\n",
      "          'makes': 2,\n",
      "          'must': 2,\n",
      "          'felt': 2,\n",
      "          'rainbow': 2,\n",
      "          'humanity': 2,\n",
      "          'waiting': 1,\n",
      "          'near': 1,\n",
      "          'beginning': 1,\n",
      "          'says': 1,\n",
      "          'context': 1,\n",
      "          'events': 1,\n",
      "          'transpire': 1,\n",
      "          'joes': 1,\n",
      "          'prophetic': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'internal': 1,\n",
      "          'conflict': 1,\n",
      "          'protagonist': 1,\n",
      "          'latter': 1,\n",
      "          'half': 1,\n",
      "          'ndoes': 1,\n",
      "          'necessarily': 1,\n",
      "          'imply': 1,\n",
      "          'humane': 1,\n",
      "          'nthrough': 1,\n",
      "          'baseness': 1,\n",
      "          'exemplified': 1,\n",
      "          'formation': 1,\n",
      "          'fritz': 1,\n",
      "          'prompts': 1,\n",
      "          'consider': 1,\n",
      "          'whether': 1,\n",
      "          'inclination': 1,\n",
      "          'impulsiveness': 1,\n",
      "          'supersedes': 1,\n",
      "          'civility': 1,\n",
      "          'nexpressing': 1,\n",
      "          'abhorrence': 1,\n",
      "          'rise': 1,\n",
      "          'nazism': 1,\n",
      "          'homeland': 1,\n",
      "          'takes': 1,\n",
      "          'great': 1,\n",
      "          'care': 1,\n",
      "          'creating': 1,\n",
      "          'scenes': 1,\n",
      "          'hysteria': 1,\n",
      "          'prefacing': 1,\n",
      "          'achieves': 1,\n",
      "          'critical': 1,\n",
      "          'mass': 1,\n",
      "          'ndeputy': 1,\n",
      "          'brought': 1,\n",
      "          'exalted': 1,\n",
      "          'informant': 1,\n",
      "          'unable': 1,\n",
      "          'augment': 1,\n",
      "          'myth': 1,\n",
      "          'quickly': 1,\n",
      "          'renounced': 1,\n",
      "          'position': 1,\n",
      "          'town': 1,\n",
      "          'gossip': 1,\n",
      "          'two': 1,\n",
      "          'looks': 1,\n",
      "          'nervously': 1,\n",
      "          'growing': 1,\n",
      "          'monster': 1,\n",
      "          'carefully': 1,\n",
      "          'slips': 1,\n",
      "          'quietly': 1,\n",
      "          'horrifying': 1,\n",
      "          'crowd': 1,\n",
      "          'longer': 1,\n",
      "          'exists': 1,\n",
      "          'confines': 1,\n",
      "          'reason': 1,\n",
      "          'succumbed': 1,\n",
      "          'barber': 1,\n",
      "          'referred': 1,\n",
      "          'excitement': 1,\n",
      "          'turned': 1,\n",
      "          'fear': 1,\n",
      "          'nto': 1,\n",
      "          'quiet': 1,\n",
      "          'exit': 1,\n",
      "          'concurs': 1,\n",
      "          'sinking': 1,\n",
      "          'feeling': 1,\n",
      "          'uneasiness': 1,\n",
      "          'delirium': 1,\n",
      "          'crescendos': 1,\n",
      "          'educes': 1,\n",
      "          'rather': 1,\n",
      "          'stillness': 1,\n",
      "          'composition': 1,\n",
      "          'places': 1,\n",
      "          'equidistant': 1,\n",
      "          'directly': 1,\n",
      "          'across': 1,\n",
      "          'pair': 1,\n",
      "          'effectively': 1,\n",
      "          'mirror': 1,\n",
      "          'apprehensions': 1,\n",
      "          'intensity': 1,\n",
      "          'closes': 1,\n",
      "          'well': 1,\n",
      "          'stationary': 1,\n",
      "          'heightens': 1,\n",
      "          'fears': 1,\n",
      "          'escapes': 1,\n",
      "          'deserted': 1,\n",
      "          'reflection': 1,\n",
      "          'sole': 1,\n",
      "          'proprietor': 1,\n",
      "          'sensibility': 1,\n",
      "          'amongst': 1,\n",
      "          'swarm': 1,\n",
      "          'irrationality': 1,\n",
      "          'nbecause': 1,\n",
      "          'track': 1,\n",
      "          'amplified': 1,\n",
      "          'perception': 1,\n",
      "          'desertion': 1,\n",
      "          'vulnerability': 1,\n",
      "          'progresses': 1,\n",
      "          'pans': 1,\n",
      "          '180': 1,\n",
      "          'degrees': 1,\n",
      "          'nthis': 1,\n",
      "          'unique': 1,\n",
      "          'pointofview': 1,\n",
      "          'nwhile': 1,\n",
      "          'long': 1,\n",
      "          'dolly': 1,\n",
      "          'may': 1,\n",
      "          'objectively': 1,\n",
      "          'size': 1,\n",
      "          'panning': 1,\n",
      "          'belly': 1,\n",
      "          'distorts': 1,\n",
      "          'audiences': 1,\n",
      "          'spatial': 1,\n",
      "          'reference': 1,\n",
      "          'exaggerates': 1,\n",
      "          'claustrophobia': 1,\n",
      "          'epicenter': 1,\n",
      "          'something': 1,\n",
      "          'infinitely': 1,\n",
      "          'large': 1,\n",
      "          'close': 1,\n",
      "          'peoples': 1,\n",
      "          'contorted': 1,\n",
      "          'rage': 1,\n",
      "          'nwith': 1,\n",
      "          'pivot': 1,\n",
      "          'center': 1,\n",
      "          'angry': 1,\n",
      "          'members': 1,\n",
      "          'short': 1,\n",
      "          'radius': 1,\n",
      "          'offers': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'mercy': 1,\n",
      "          'langs': 1,\n",
      "          'us': 1,\n",
      "          'vulnerable': 1,\n",
      "          'jail': 1,\n",
      "          'greater': 1,\n",
      "          'saw': 1,\n",
      "          'countrymen': 1,\n",
      "          'overcome': 1,\n",
      "          'unjustifiable': 1,\n",
      "          'hatred': 1,\n",
      "          'humankind': 1,\n",
      "          'nlangs': 1,\n",
      "          'observations': 1,\n",
      "          'fellow': 1,\n",
      "          'man': 1,\n",
      "          'succumbing': 1,\n",
      "          'indelible': 1,\n",
      "          'image': 1,\n",
      "          'malevolent': 1,\n",
      "          'peril': 1,\n",
      "          'trapped': 1,\n",
      "          'burning': 1,\n",
      "          'cell': 1,\n",
      "          'dog': 1,\n",
      "          'rushes': 1,\n",
      "          'side': 1,\n",
      "          'martyr': 1,\n",
      "          'contrast': 1,\n",
      "          'recklessness': 1,\n",
      "          'counterparts': 1,\n",
      "          'nusing': 1,\n",
      "          'create': 1,\n",
      "          'elicit': 1,\n",
      "          'disturbing': 1,\n",
      "          'images': 1,\n",
      "          'mentality': 1,\n",
      "          'depicts': 1,\n",
      "          'mans': 1,\n",
      "          'volatility': 1,\n",
      "          'inconceivable': 1,\n",
      "          'cruelty': 1,\n",
      "          'nreprising': 1,\n",
      "          'induced': 1,\n",
      "          'question': 1,\n",
      "          'primeval': 1,\n",
      "          'impulses': 1,\n",
      "          'easily': 1,\n",
      "          'transcend': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'burton': 6,\n",
      "          'apes': 5,\n",
      "          'nthe': 5,\n",
      "          'ending': 5,\n",
      "          'one': 4,\n",
      "          'movie': 4,\n",
      "          'great': 4,\n",
      "          'wahlberg': 4,\n",
      "          'planet': 3,\n",
      "          'story': 3,\n",
      "          'tim': 3,\n",
      "          'leo': 3,\n",
      "          'scenes': 3,\n",
      "          'nas': 3,\n",
      "          'looking': 3,\n",
      "          'film': 2,\n",
      "          'focused': 2,\n",
      "          'visuals': 2,\n",
      "          'thin': 2,\n",
      "          'character': 2,\n",
      "          'surprise': 2,\n",
      "          'nfor': 2,\n",
      "          'mars': 2,\n",
      "          'attacks': 2,\n",
      "          '1968': 2,\n",
      "          'astronaut': 2,\n",
      "          'ape': 2,\n",
      "          'davidson': 2,\n",
      "          'viewers': 2,\n",
      "          'us': 2,\n",
      "          'lack': 2,\n",
      "          'isnt': 2,\n",
      "          'dull': 2,\n",
      "          'bonham': 2,\n",
      "          'carter': 2,\n",
      "          'original': 2,\n",
      "          'monkeys': 2,\n",
      "          'press': 1,\n",
      "          'screening': 1,\n",
      "          'day': 1,\n",
      "          'past': 1,\n",
      "          'last': 1,\n",
      "          'issues': 1,\n",
      "          'deadline': 1,\n",
      "          'afforded': 1,\n",
      "          'opportunity': 1,\n",
      "          'see': 1,\n",
      "          'second': 1,\n",
      "          'time': 1,\n",
      "          'listen': 1,\n",
      "          'audience': 1,\n",
      "          'reactions': 1,\n",
      "          'read': 1,\n",
      "          'heap': 1,\n",
      "          'reviews': 1,\n",
      "          'writing': 1,\n",
      "          'piece': 1,\n",
      "          'chief': 1,\n",
      "          'complaints': 1,\n",
      "          'disliked': 1,\n",
      "          'futuristic': 1,\n",
      "          'adventure': 1,\n",
      "          'appear': 1,\n",
      "          'instead': 1,\n",
      "          'substance': 1,\n",
      "          'mark': 1,\n",
      "          'wahlbergs': 1,\n",
      "          'colorless': 1,\n",
      "          'sucked': 1,\n",
      "          'nto': 1,\n",
      "          'people': 1,\n",
      "          'would': 1,\n",
      "          'like': 1,\n",
      "          'say': 1,\n",
      "          'hell': 1,\n",
      "          'expect': 1,\n",
      "          'nthis': 1,\n",
      "          'boys': 1,\n",
      "          'girls': 1,\n",
      "          'ntim': 1,\n",
      "          'movies': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'clunky': 1,\n",
      "          'stories': 1,\n",
      "          'blissfully': 1,\n",
      "          'nasty': 1,\n",
      "          'disjointed': 1,\n",
      "          'underrated': 1,\n",
      "          'n': 1,\n",
      "          'jonathan': 1,\n",
      "          'rosenbaum': 1,\n",
      "          'chicago': 1,\n",
      "          'reader': 1,\n",
      "          'two': 1,\n",
      "          'critics': 1,\n",
      "          'america': 1,\n",
      "          'praise': 1,\n",
      "          'reportedly': 1,\n",
      "          'tossed': 1,\n",
      "          'vintage': 1,\n",
      "          'ntrading': 1,\n",
      "          'cards': 1,\n",
      "          'onto': 1,\n",
      "          'floor': 1,\n",
      "          'based': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'ones': 1,\n",
      "          'landed': 1,\n",
      "          'face': 1,\n",
      "          'nburtons': 1,\n",
      "          'reimagining': 1,\n",
      "          'lands': 1,\n",
      "          'rule': 1,\n",
      "          'men': 1,\n",
      "          'looks': 1,\n",
      "          'courtesy': 1,\n",
      "          'makeup': 1,\n",
      "          'magician': 1,\n",
      "          'rick': 1,\n",
      "          'baker': 1,\n",
      "          'dazzling': 1,\n",
      "          'city': 1,\n",
      "          'wonder': 1,\n",
      "          'behold': 1,\n",
      "          'nlike': 1,\n",
      "          'hits': 1,\n",
      "          'ground': 1,\n",
      "          'running': 1,\n",
      "          'whisking': 1,\n",
      "          'headspinning': 1,\n",
      "          'series': 1,\n",
      "          'solid': 1,\n",
      "          'oneliners': 1,\n",
      "          'engaging': 1,\n",
      "          'vignettes': 1,\n",
      "          'establishing': 1,\n",
      "          'sense': 1,\n",
      "          'thrust': 1,\n",
      "          'carries': 1,\n",
      "          'traditional': 1,\n",
      "          'fight': 1,\n",
      "          'come': 1,\n",
      "          'later': 1,\n",
      "          'consider': 1,\n",
      "          'nfrom': 1,\n",
      "          'start': 1,\n",
      "          'filmmaker': 1,\n",
      "          'shown': 1,\n",
      "          'fascination': 1,\n",
      "          'colorful': 1,\n",
      "          'misfits': 1,\n",
      "          'peewee': 1,\n",
      "          'herman': 1,\n",
      "          'joker': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'ackacking': 1,\n",
      "          'martians': 1,\n",
      "          'etc': 1,\n",
      "          'interest': 1,\n",
      "          'standard': 1,\n",
      "          'issue': 1,\n",
      "          'heroes': 1,\n",
      "          'nso': 1,\n",
      "          'spends': 1,\n",
      "          'getting': 1,\n",
      "          'living': 1,\n",
      "          'shit': 1,\n",
      "          'kicked': 1,\n",
      "          'biggest': 1,\n",
      "          'guilt': 1,\n",
      "          'trip': 1,\n",
      "          'history': 1,\n",
      "          'dropped': 1,\n",
      "          'shoulders': 1,\n",
      "          'color': 1,\n",
      "          'remember': 1,\n",
      "          'launches': 1,\n",
      "          'space': 1,\n",
      "          'get': 1,\n",
      "          'monkey': 1,\n",
      "          'back': 1,\n",
      "          'nhe': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'lead': 1,\n",
      "          'humanity': 1,\n",
      "          'romance': 1,\n",
      "          'pretty': 1,\n",
      "          'human': 1,\n",
      "          'estella': 1,\n",
      "          'warren': 1,\n",
      "          'dynamic': 1,\n",
      "          'helena': 1,\n",
      "          'terrific': 1,\n",
      "          'equalrights': 1,\n",
      "          'activist': 1,\n",
      "          'man': 1,\n",
      "          'wants': 1,\n",
      "          'subtle': 1,\n",
      "          'sly': 1,\n",
      "          'provides': 1,\n",
      "          'requisite': 1,\n",
      "          'shock': 1,\n",
      "          'dandy': 1,\n",
      "          'particularly': 1,\n",
      "          'approaching': 1,\n",
      "          'authority': 1,\n",
      "          'figures': 1,\n",
      "          'admittedly': 1,\n",
      "          'nearly': 1,\n",
      "          'satisfying': 1,\n",
      "          'work': 1,\n",
      "          'make': 1,\n",
      "          'simple': 1,\n",
      "          'connection': 1,\n",
      "          'write': 1,\n",
      "          'whole': 1,\n",
      "          'new': 1,\n",
      "          'screenplay': 1,\n",
      "          'boasted': 1,\n",
      "          'handful': 1,\n",
      "          'cool': 1,\n",
      "          'deliciously': 1,\n",
      "          'hammy': 1,\n",
      "          'performance': 1,\n",
      "          'charlton': 1,\n",
      "          'heston': 1,\n",
      "          'appears': 1,\n",
      "          'uncredited': 1,\n",
      "          'aged': 1,\n",
      "          'chimp': 1,\n",
      "          'deathbed': 1,\n",
      "          'redelivering': 1,\n",
      "          'classic': 1,\n",
      "          'line': 1,\n",
      "          'killer': 1,\n",
      "          'nbut': 1,\n",
      "          'suffer': 1,\n",
      "          'numerous': 1,\n",
      "          'stretches': 1,\n",
      "          'punctuated': 1,\n",
      "          'social': 1,\n",
      "          'political': 1,\n",
      "          'messages': 1,\n",
      "          'delivered': 1,\n",
      "          'grace': 1,\n",
      "          'wrecking': 1,\n",
      "          'ball': 1,\n",
      "          '2001': 1,\n",
      "          'offers': 1,\n",
      "          'different': 1,\n",
      "          'set': 1,\n",
      "          'much': 1,\n",
      "          'cooler': 1,\n",
      "          'fine': 1,\n",
      "          'acting': 1,\n",
      "          'paul': 1,\n",
      "          'giamatti': 1,\n",
      "          'roth': 1,\n",
      "          'good': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'gives': 1,\n",
      "          'another': 1,\n",
      "          'chance': 1,\n",
      "          'experience': 1,\n",
      "          'skewed': 1,\n",
      "          'vision': 1,\n",
      "          'thats': 1,\n",
      "          'nothing': 1,\n",
      "          'complain': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 19,\n",
      "          'jedi': 9,\n",
      "          'film': 8,\n",
      "          'wars': 8,\n",
      "          'star': 7,\n",
      "          'special': 5,\n",
      "          'effects': 5,\n",
      "          'dark': 5,\n",
      "          'side': 5,\n",
      "          'vader': 5,\n",
      "          'set': 4,\n",
      "          'one': 4,\n",
      "          'obiwan': 4,\n",
      "          'kenobi': 4,\n",
      "          'played': 4,\n",
      "          'princess': 4,\n",
      "          'leia': 4,\n",
      "          'different': 4,\n",
      "          'released': 3,\n",
      "          'seen': 3,\n",
      "          'new': 3,\n",
      "          'standard': 3,\n",
      "          'c3p0': 3,\n",
      "          'ship': 3,\n",
      "          'r2d2': 3,\n",
      "          'also': 3,\n",
      "          'creatures': 3,\n",
      "          'droids': 3,\n",
      "          'luke': 3,\n",
      "          'family': 3,\n",
      "          'nluke': 3,\n",
      "          'amazing': 3,\n",
      "          '1977': 2,\n",
      "          'never': 2,\n",
      "          'though': 2,\n",
      "          'plot': 2,\n",
      "          'creative': 2,\n",
      "          'ever': 2,\n",
      "          'ndarth': 2,\n",
      "          'nben': 2,\n",
      "          'sir': 2,\n",
      "          'alec': 2,\n",
      "          'still': 2,\n",
      "          'darth': 2,\n",
      "          'nwhile': 2,\n",
      "          'message': 2,\n",
      "          'sell': 2,\n",
      "          'learns': 2,\n",
      "          'lukes': 2,\n",
      "          'nafter': 2,\n",
      "          'ben': 2,\n",
      "          'training': 2,\n",
      "          'two': 2,\n",
      "          'solo': 2,\n",
      "          'become': 2,\n",
      "          'especially': 2,\n",
      "          'time': 2,\n",
      "          'realistic': 2,\n",
      "          'costumes': 2,\n",
      "          'entire': 2,\n",
      "          'neven': 2,\n",
      "          'characters': 2,\n",
      "          'films': 2,\n",
      "          'acting': 2,\n",
      "          'added': 2,\n",
      "          'something': 1,\n",
      "          'possible': 1,\n",
      "          'happened': 1,\n",
      "          'extraordinary': 1,\n",
      "          'techniques': 1,\n",
      "          'nnot': 1,\n",
      "          'heard': 1,\n",
      "          'legend': 1,\n",
      "          'starts': 1,\n",
      "          'long': 1,\n",
      "          'ago': 1,\n",
      "          'warriors': 1,\n",
      "          'wiped': 1,\n",
      "          'leader': 1,\n",
      "          'guinness': 1,\n",
      "          'alive': 1,\n",
      "          'today': 1,\n",
      "          'turned': 1,\n",
      "          'nyears': 1,\n",
      "          'killing': 1,\n",
      "          'around': 1,\n",
      "          'causing': 1,\n",
      "          'trouble': 1,\n",
      "          'nr2d2': 1,\n",
      "          'call': 1,\n",
      "          'driods': 1,\n",
      "          'robots': 1,\n",
      "          'assistance': 1,\n",
      "          'humans': 1,\n",
      "          'attack': 1,\n",
      "          'carrie': 1,\n",
      "          'fisher': 1,\n",
      "          'aboard': 1,\n",
      "          'inserts': 1,\n",
      "          'nto': 1,\n",
      "          'pleading': 1,\n",
      "          'help': 1,\n",
      "          'captured': 1,\n",
      "          'get': 1,\n",
      "          'away': 1,\n",
      "          'escape': 1,\n",
      "          'pod': 1,\n",
      "          'eventually': 1,\n",
      "          'lands': 1,\n",
      "          'remote': 1,\n",
      "          'planet': 1,\n",
      "          'tatooine': 1,\n",
      "          'jawas': 1,\n",
      "          'small': 1,\n",
      "          'pick': 1,\n",
      "          'nthey': 1,\n",
      "          'bought': 1,\n",
      "          'skywalkers': 1,\n",
      "          'mark': 1,\n",
      "          'hamill': 1,\n",
      "          'cleaning': 1,\n",
      "          'found': 1,\n",
      "          'finds': 1,\n",
      "          'friend': 1,\n",
      "          'father': 1,\n",
      "          'dead': 1,\n",
      "          'killed': 1,\n",
      "          'tropps': 1,\n",
      "          'decides': 1,\n",
      "          'put': 1,\n",
      "          'stop': 1,\n",
      "          'destroy': 1,\n",
      "          'wants': 1,\n",
      "          'create': 1,\n",
      "          'nfirst': 1,\n",
      "          'must': 1,\n",
      "          'find': 1,\n",
      "          'serve': 1,\n",
      "          'nhan': 1,\n",
      "          'harrison': 1,\n",
      "          'ford': 1,\n",
      "          'sidekick': 1,\n",
      "          'chewbacca': 1,\n",
      "          'peter': 1,\n",
      "          'mayhew': 1,\n",
      "          'consulted': 1,\n",
      "          'providing': 1,\n",
      "          'complete': 1,\n",
      "          'tasks': 1,\n",
      "          'necessary': 1,\n",
      "          'meeting': 1,\n",
      "          'really': 1,\n",
      "          'picks': 1,\n",
      "          'continues': 1,\n",
      "          'pilot': 1,\n",
      "          'confronts': 1,\n",
      "          'many': 1,\n",
      "          'interesting': 1,\n",
      "          'events': 1,\n",
      "          'occur': 1,\n",
      "          'nstar': 1,\n",
      "          'epic': 1,\n",
      "          'original': 1,\n",
      "          'believe': 1,\n",
      "          'wonderful': 1,\n",
      "          'space': 1,\n",
      "          'scenes': 1,\n",
      "          'particular': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'ships': 1,\n",
      "          'flown': 1,\n",
      "          'unique': 1,\n",
      "          'world': 1,\n",
      "          'scenery': 1,\n",
      "          'anything': 1,\n",
      "          'nthere': 1,\n",
      "          'variety': 1,\n",
      "          'memorable': 1,\n",
      "          'pieces': 1,\n",
      "          'stay': 1,\n",
      "          'forever': 1,\n",
      "          'premise': 1,\n",
      "          'see': 1,\n",
      "          'throughout': 1,\n",
      "          'kind': 1,\n",
      "          'human': 1,\n",
      "          'nevery': 1,\n",
      "          'character': 1,\n",
      "          'extremely': 1,\n",
      "          'likable': 1,\n",
      "          'sci': 1,\n",
      "          'fi': 1,\n",
      "          'everyones': 1,\n",
      "          'part': 1,\n",
      "          'great': 1,\n",
      "          'guinnesss': 1,\n",
      "          'concept': 1,\n",
      "          'pulled': 1,\n",
      "          'nicely': 1,\n",
      "          'setting': 1,\n",
      "          'sound': 1,\n",
      "          'make': 1,\n",
      "          'work': 1,\n",
      "          'nif': 1,\n",
      "          'messed': 1,\n",
      "          'would': 1,\n",
      "          'come': 1,\n",
      "          'huge': 1,\n",
      "          'joke': 1,\n",
      "          'ending': 1,\n",
      "          'works': 1,\n",
      "          'well': 1,\n",
      "          'left': 1,\n",
      "          'open': 1,\n",
      "          'sequels': 1,\n",
      "          'came': 1,\n",
      "          'afterward': 1,\n",
      "          'nin': 1,\n",
      "          'early': 1,\n",
      "          '1997': 1,\n",
      "          'edition': 1,\n",
      "          'remastered': 1,\n",
      "          'looked': 1,\n",
      "          'better': 1,\n",
      "          'na': 1,\n",
      "          'even': 1,\n",
      "          'deleted': 1,\n",
      "          'scene': 1,\n",
      "          'han': 1,\n",
      "          'jabba': 1,\n",
      "          'hutt': 1,\n",
      "          'return': 1,\n",
      "          'nthink': 1,\n",
      "          'thats': 1,\n",
      "          'enough': 1,\n",
      "          'non': 1,\n",
      "          'may': 1,\n",
      "          '19': 1,\n",
      "          '1999': 1,\n",
      "          'episode': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'followed': 1,\n",
      "          'reveal': 1,\n",
      "          'went': 1,\n",
      "          'hope': 1,\n",
      "          'nwith': 1,\n",
      "          'bound': 1,\n",
      "          'greatest': 1,\n",
      "          'tale': 1,\n",
      "          'told': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'race': 4,\n",
      "          'one': 4,\n",
      "          'laughs': 3,\n",
      "          'little': 3,\n",
      "          'comedy': 3,\n",
      "          'group': 3,\n",
      "          'locker': 3,\n",
      "          'first': 3,\n",
      "          'participants': 3,\n",
      "          'pear': 3,\n",
      "          'lovitz': 3,\n",
      "          'want': 2,\n",
      "          'nthis': 2,\n",
      "          'nand': 2,\n",
      "          'film': 2,\n",
      "          'people': 2,\n",
      "          'eccentric': 2,\n",
      "          'vegas': 2,\n",
      "          'cleese': 2,\n",
      "          'bus': 2,\n",
      "          'silver': 2,\n",
      "          'city': 2,\n",
      "          'bag': 2,\n",
      "          'cleeses': 2,\n",
      "          'betting': 2,\n",
      "          'vera': 2,\n",
      "          'gooding': 2,\n",
      "          'family': 2,\n",
      "          'cody': 2,\n",
      "          'nice': 2,\n",
      "          'situations': 2,\n",
      "          'way': 2,\n",
      "          'museum': 2,\n",
      "          'fine': 2,\n",
      "          'bit': 2,\n",
      "          'nrat': 2,\n",
      "          'almost': 2,\n",
      "          'hearty': 1,\n",
      "          'rat': 1,\n",
      "          'movie': 1,\n",
      "          'unpretentious': 1,\n",
      "          'sneaks': 1,\n",
      "          'theaters': 1,\n",
      "          'today': 1,\n",
      "          'hype': 1,\n",
      "          'bouncing': 1,\n",
      "          'theater': 1,\n",
      "          'seat': 1,\n",
      "          'fits': 1,\n",
      "          'neatly': 1,\n",
      "          'lowbrow': 1,\n",
      "          'slapstick': 1,\n",
      "          'school': 1,\n",
      "          'refreshing': 1,\n",
      "          'aspect': 1,\n",
      "          'lack': 1,\n",
      "          'meanspiritedness': 1,\n",
      "          'plot': 1,\n",
      "          'follows': 1,\n",
      "          'chosen': 1,\n",
      "          'random': 1,\n",
      "          'las': 1,\n",
      "          'casino': 1,\n",
      "          'owner': 1,\n",
      "          'john': 1,\n",
      "          'must': 1,\n",
      "          'station': 1,\n",
      "          '700': 1,\n",
      "          'miles': 1,\n",
      "          'away': 1,\n",
      "          'n': 1,\n",
      "          'ninside': 1,\n",
      "          'duffel': 1,\n",
      "          'containing': 1,\n",
      "          '2': 1,\n",
      "          'million': 1,\n",
      "          'open': 1,\n",
      "          'gets': 1,\n",
      "          'money': 1,\n",
      "          'nwhat': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'donald': 1,\n",
      "          'sinclair': 1,\n",
      "          'anything': 1,\n",
      "          'im': 1,\n",
      "          'staging': 1,\n",
      "          'game': 1,\n",
      "          'high': 1,\n",
      "          'rollers': 1,\n",
      "          'hotel': 1,\n",
      "          'include': 1,\n",
      "          'whoopi': 1,\n",
      "          'goldberg': 1,\n",
      "          'merrill': 1,\n",
      "          'lanai': 1,\n",
      "          'chapman': 1,\n",
      "          'newly': 1,\n",
      "          'reunited': 1,\n",
      "          'mother': 1,\n",
      "          'daughter': 1,\n",
      "          'disgraced': 1,\n",
      "          'pro': 1,\n",
      "          'football': 1,\n",
      "          'referee': 1,\n",
      "          'owen': 1,\n",
      "          'templeton': 1,\n",
      "          'cuba': 1,\n",
      "          'jr': 1,\n",
      "          'italian': 1,\n",
      "          'tourist': 1,\n",
      "          'mr': 1,\n",
      "          'pollini': 1,\n",
      "          'rowan': 1,\n",
      "          'atkinson': 1,\n",
      "          'randy': 1,\n",
      "          'jon': 1,\n",
      "          'bumbling': 1,\n",
      "          'con': 1,\n",
      "          'men': 1,\n",
      "          'duane': 1,\n",
      "          'blaine': 1,\n",
      "          'seth': 1,\n",
      "          'green': 1,\n",
      "          'vince': 1,\n",
      "          'vieluf': 1,\n",
      "          'cynical': 1,\n",
      "          'young': 1,\n",
      "          'lawyer': 1,\n",
      "          'nick': 1,\n",
      "          'shaffer': 1,\n",
      "          'breckin': 1,\n",
      "          'meyer': 1,\n",
      "          'nvarious': 1,\n",
      "          'amusing': 1,\n",
      "          'encounters': 1,\n",
      "          'mishaps': 1,\n",
      "          'befall': 1,\n",
      "          'en': 1,\n",
      "          'route': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'andy': 1,\n",
      "          'breckman': 1,\n",
      "          'adds': 1,\n",
      "          'touch': 1,\n",
      "          'racers': 1,\n",
      "          'try': 1,\n",
      "          'sabotage': 1,\n",
      "          'another': 1,\n",
      "          'sidesplitting': 1,\n",
      "          'involve': 1,\n",
      "          'merrills': 1,\n",
      "          'encounter': 1,\n",
      "          'squirrel': 1,\n",
      "          'lady': 1,\n",
      "          'nutsy': 1,\n",
      "          'cameo': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'owens': 1,\n",
      "          'commandeering': 1,\n",
      "          'charter': 1,\n",
      "          'full': 1,\n",
      "          'lucille': 1,\n",
      "          'ball': 1,\n",
      "          'lookalikes': 1,\n",
      "          'lucy': 1,\n",
      "          'convention': 1,\n",
      "          'brothers': 1,\n",
      "          'misadventures': 1,\n",
      "          'hotair': 1,\n",
      "          'balloon': 1,\n",
      "          'flying': 1,\n",
      "          'cow': 1,\n",
      "          'monster': 1,\n",
      "          'truck': 1,\n",
      "          'familys': 1,\n",
      "          'stopover': 1,\n",
      "          'barbie': 1,\n",
      "          'turns': 1,\n",
      "          'think': 1,\n",
      "          'situation': 1,\n",
      "          'example': 1,\n",
      "          'breckmans': 1,\n",
      "          'script': 1,\n",
      "          'builds': 1,\n",
      "          'nwithout': 1,\n",
      "          'going': 1,\n",
      "          'detail': 1,\n",
      "          'segues': 1,\n",
      "          'hitlers': 1,\n",
      "          'touring': 1,\n",
      "          'car': 1,\n",
      "          'eva': 1,\n",
      "          'brauns': 1,\n",
      "          'dark': 1,\n",
      "          'lipstick': 1,\n",
      "          'burning': 1,\n",
      "          'tongue': 1,\n",
      "          'culminating': 1,\n",
      "          'ceremony': 1,\n",
      "          'honoring': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'ii': 1,\n",
      "          'veterans': 1,\n",
      "          'races': 1,\n",
      "          'cast': 1,\n",
      "          'rate': 1,\n",
      "          'ncleese': 1,\n",
      "          'wonderfully': 1,\n",
      "          'devilish': 1,\n",
      "          'madcap': 1,\n",
      "          'whiny': 1,\n",
      "          'character': 1,\n",
      "          'grows': 1,\n",
      "          'romp': 1,\n",
      "          'dave': 1,\n",
      "          'thomas': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'deadpan': 1,\n",
      "          'assistant': 1,\n",
      "          'man': 1,\n",
      "          'born': 1,\n",
      "          'without': 1,\n",
      "          'personality': 1,\n",
      "          'directed': 1,\n",
      "          'jerry': 1,\n",
      "          'zucker': 1,\n",
      "          'knows': 1,\n",
      "          'something': 1,\n",
      "          'nalong': 1,\n",
      "          'brother': 1,\n",
      "          'david': 1,\n",
      "          'friend': 1,\n",
      "          'jim': 1,\n",
      "          'abrahams': 1,\n",
      "          'responsible': 1,\n",
      "          'hits': 1,\n",
      "          'airplane': 1,\n",
      "          'ruthless': 1,\n",
      "          'na': 1,\n",
      "          'throwaway': 1,\n",
      "          'subplot': 1,\n",
      "          'good': 1,\n",
      "          'features': 1,\n",
      "          'buddies': 1,\n",
      "          'series': 1,\n",
      "          'outlandish': 1,\n",
      "          'including': 1,\n",
      "          'dealing': 1,\n",
      "          'hooker': 1,\n",
      "          'peptobismol': 1,\n",
      "          'fun': 1,\n",
      "          'feature': 1,\n",
      "          'letdown': 1,\n",
      "          'comes': 1,\n",
      "          'finale': 1,\n",
      "          'touchyfeely': 1,\n",
      "          'sweet': 1,\n",
      "          'negating': 1,\n",
      "          'came': 1,\n",
      "          'summer': 1,\n",
      "          'sleeper': 1,\n",
      "          'keep': 1,\n",
      "          'awake': 1,\n",
      "          'laughter': 1,\n",
      "          'watching': 1,\n",
      "          'around': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 7,\n",
      "          'original': 6,\n",
      "          'nthe': 6,\n",
      "          'like': 5,\n",
      "          'mitch': 4,\n",
      "          'station': 3,\n",
      "          'played': 3,\n",
      "          'stern': 3,\n",
      "          'would': 3,\n",
      "          'nthere': 3,\n",
      "          'characters': 3,\n",
      "          'jokes': 3,\n",
      "          'see': 2,\n",
      "          'ni': 2,\n",
      "          'much': 2,\n",
      "          'basic': 2,\n",
      "          'plot': 2,\n",
      "          'around': 2,\n",
      "          'crystal': 2,\n",
      "          'nhes': 2,\n",
      "          'radio': 2,\n",
      "          'best': 2,\n",
      "          'character': 2,\n",
      "          'brother': 2,\n",
      "          'lovitz': 2,\n",
      "          'treasure': 2,\n",
      "          'curlys': 2,\n",
      "          'cattle': 2,\n",
      "          'drive': 2,\n",
      "          'jack': 2,\n",
      "          'palance': 2,\n",
      "          'way': 2,\n",
      "          'done': 2,\n",
      "          'scenes': 2,\n",
      "          'desert': 2,\n",
      "          'well': 2,\n",
      "          'movie': 2,\n",
      "          'good': 2,\n",
      "          'adventure': 2,\n",
      "          'middle': 2,\n",
      "          'snake': 2,\n",
      "          'sequel': 2,\n",
      "          'surprise': 2,\n",
      "          'gang': 2,\n",
      "          'also': 2,\n",
      "          'chance': 1,\n",
      "          'sneak': 1,\n",
      "          'preview': 1,\n",
      "          'city': 1,\n",
      "          'slickers': 1,\n",
      "          'ii': 1,\n",
      "          'campus': 1,\n",
      "          'last': 1,\n",
      "          'night': 1,\n",
      "          'went': 1,\n",
      "          'expectation': 1,\n",
      "          'similar': 1,\n",
      "          'flavor': 1,\n",
      "          'made': 1,\n",
      "          'success': 1,\n",
      "          'personal': 1,\n",
      "          'growth': 1,\n",
      "          'insightful': 1,\n",
      "          'humor': 1,\n",
      "          'life': 1,\n",
      "          'came': 1,\n",
      "          'away': 1,\n",
      "          'somewhat': 1,\n",
      "          'disappointed': 1,\n",
      "          'regard': 1,\n",
      "          'getting': 1,\n",
      "          'latter': 1,\n",
      "          'former': 1,\n",
      "          'revolves': 1,\n",
      "          'billy': 1,\n",
      "          'plays': 1,\n",
      "          'robbins': 1,\n",
      "          'turning': 1,\n",
      "          'forty': 1,\n",
      "          'become': 1,\n",
      "          'manager': 1,\n",
      "          'worked': 1,\n",
      "          'given': 1,\n",
      "          'job': 1,\n",
      "          'friend': 1,\n",
      "          'daniel': 1,\n",
      "          'sympathy': 1,\n",
      "          'sterns': 1,\n",
      "          'works': 1,\n",
      "          'divorce': 1,\n",
      "          'nhis': 1,\n",
      "          'loser': 1,\n",
      "          'younger': 1,\n",
      "          'john': 1,\n",
      "          'comes': 1,\n",
      "          'mitchs': 1,\n",
      "          'house': 1,\n",
      "          'bum': 1,\n",
      "          'money': 1,\n",
      "          'place': 1,\n",
      "          'live': 1,\n",
      "          'wife': 1,\n",
      "          'try': 1,\n",
      "          'celebrate': 1,\n",
      "          'birthday': 1,\n",
      "          'nduring': 1,\n",
      "          'celebration': 1,\n",
      "          'discovers': 1,\n",
      "          'appears': 1,\n",
      "          'map': 1,\n",
      "          'leader': 1,\n",
      "          'old': 1,\n",
      "          'hat': 1,\n",
      "          'nafter': 1,\n",
      "          'business': 1,\n",
      "          'trip': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'stay': 1,\n",
      "          'extra': 1,\n",
      "          'days': 1,\n",
      "          'go': 1,\n",
      "          'search': 1,\n",
      "          'non': 1,\n",
      "          'run': 1,\n",
      "          'twin': 1,\n",
      "          'duke': 1,\n",
      "          'know': 1,\n",
      "          'nfirst': 1,\n",
      "          'cinematography': 1,\n",
      "          'beautifully': 1,\n",
      "          'especially': 1,\n",
      "          'outdoor': 1,\n",
      "          'sights': 1,\n",
      "          'filmed': 1,\n",
      "          'development': 1,\n",
      "          'actors': 1,\n",
      "          'remain': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'true': 1,\n",
      "          'play': 1,\n",
      "          'without': 1,\n",
      "          'overplaying': 1,\n",
      "          'enough': 1,\n",
      "          'twists': 1,\n",
      "          'provide': 1,\n",
      "          'ending': 1,\n",
      "          'difficult': 1,\n",
      "          'predict': 1,\n",
      "          'paced': 1,\n",
      "          'couple': 1,\n",
      "          'slow': 1,\n",
      "          'spots': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'nhumorwise': 1,\n",
      "          'number': 1,\n",
      "          'maintained': 1,\n",
      "          'interest': 1,\n",
      "          'throughout': 1,\n",
      "          'memorable': 1,\n",
      "          'moments': 1,\n",
      "          'bitten': 1,\n",
      "          'fewer': 1,\n",
      "          'laugh': 1,\n",
      "          'right': 1,\n",
      "          'nhowever': 1,\n",
      "          'slight': 1,\n",
      "          'bitter': 1,\n",
      "          'aftertaste': 1,\n",
      "          'mainly': 1,\n",
      "          'films': 1,\n",
      "          'manipulation': 1,\n",
      "          'audience': 1,\n",
      "          'tries': 1,\n",
      "          'pull': 1,\n",
      "          'heartstrings': 1,\n",
      "          'regarding': 1,\n",
      "          'close': 1,\n",
      "          'decided': 1,\n",
      "          'suck': 1,\n",
      "          'marrow': 1,\n",
      "          'friends': 1,\n",
      "          'butt': 1,\n",
      "          'nthis': 1,\n",
      "          'meets': 1,\n",
      "          'members': 1,\n",
      "          'group': 1,\n",
      "          'parts': 1,\n",
      "          'appeared': 1,\n",
      "          'unrealistic': 1,\n",
      "          'whether': 1,\n",
      "          'stampede': 1,\n",
      "          'start': 1,\n",
      "          'didnt': 1,\n",
      "          'worry': 1,\n",
      "          'water': 1,\n",
      "          'tromping': 1,\n",
      "          'nsome': 1,\n",
      "          'strenuous': 1,\n",
      "          'stretches': 1,\n",
      "          'imagination': 1,\n",
      "          'required': 1,\n",
      "          'nsince': 1,\n",
      "          'objective': 1,\n",
      "          'find': 1,\n",
      "          'gold': 1,\n",
      "          'get': 1,\n",
      "          'rich': 1,\n",
      "          'unlike': 1,\n",
      "          'finding': 1,\n",
      "          'age': 1,\n",
      "          'found': 1,\n",
      "          'harder': 1,\n",
      "          'empathize': 1,\n",
      "          'journey': 1,\n",
      "          'noverall': 1,\n",
      "          'id': 1,\n",
      "          'say': 1,\n",
      "          'entertaining': 1,\n",
      "          'humorous': 1,\n",
      "          'storyline': 1,\n",
      "          'deficiencies': 1,\n",
      "          'making': 1,\n",
      "          'less': 1,\n",
      "          'worthy': 1,\n",
      "          'nit': 1,\n",
      "          'may': 1,\n",
      "          'worth': 1,\n",
      "          'full': 1,\n",
      "          'price': 1,\n",
      "          'admission': 1,\n",
      "          'matinee': 1,\n",
      "          'better': 1,\n",
      "          'bargain': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 6,\n",
      "          'u571': 6,\n",
      "          'german': 6,\n",
      "          'submarine': 5,\n",
      "          'movies': 5,\n",
      "          'like': 5,\n",
      "          'crew': 5,\n",
      "          'nthe': 5,\n",
      "          'sequence': 5,\n",
      "          'film': 5,\n",
      "          'films': 3,\n",
      "          'people': 3,\n",
      "          'get': 3,\n",
      "          'happen': 3,\n",
      "          'ni': 3,\n",
      "          'yet': 2,\n",
      "          'handful': 2,\n",
      "          'making': 2,\n",
      "          'fascinating': 2,\n",
      "          'arent': 2,\n",
      "          'plane': 2,\n",
      "          'nand': 2,\n",
      "          'done': 2,\n",
      "          'comes': 2,\n",
      "          'say': 2,\n",
      "          'ugh': 2,\n",
      "          'another': 2,\n",
      "          'movie': 2,\n",
      "          'well': 2,\n",
      "          'entertainment': 2,\n",
      "          'mcconaughey': 2,\n",
      "          'executive': 2,\n",
      "          'first': 2,\n",
      "          'opening': 2,\n",
      "          'entire': 2,\n",
      "          'english': 2,\n",
      "          'would': 2,\n",
      "          'plot': 2,\n",
      "          'us': 2,\n",
      "          'action': 2,\n",
      "          'audience': 2,\n",
      "          'much': 2,\n",
      "          'though': 2,\n",
      "          'end': 2,\n",
      "          'going': 2,\n",
      "          'cgi': 2,\n",
      "          'effect': 2,\n",
      "          'genre': 1,\n",
      "          'seems': 1,\n",
      "          'intriguing': 1,\n",
      "          'compelling': 1,\n",
      "          'types': 1,\n",
      "          'storytelling': 1,\n",
      "          'nthink': 1,\n",
      "          'nthese': 1,\n",
      "          'completely': 1,\n",
      "          'based': 1,\n",
      "          'reality': 1,\n",
      "          'ever': 1,\n",
      "          'general': 1,\n",
      "          'public': 1,\n",
      "          'nthey': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'train': 1,\n",
      "          'anybody': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'either': 1,\n",
      "          'ones': 1,\n",
      "          'stuff': 1,\n",
      "          'nwhen': 1,\n",
      "          'new': 1,\n",
      "          'dont': 1,\n",
      "          'hear': 1,\n",
      "          'anyone': 1,\n",
      "          'tend': 1,\n",
      "          'boxing': 1,\n",
      "          'nlook': 1,\n",
      "          'modern': 1,\n",
      "          'involve': 1,\n",
      "          'submarines': 1,\n",
      "          'das': 1,\n",
      "          'boot': 1,\n",
      "          'abyss': 1,\n",
      "          'hunt': 1,\n",
      "          'red': 1,\n",
      "          'october': 1,\n",
      "          'crimson': 1,\n",
      "          'tide': 1,\n",
      "          'nall': 1,\n",
      "          'regarded': 1,\n",
      "          'topnotch': 1,\n",
      "          'ngladly': 1,\n",
      "          'joining': 1,\n",
      "          'bunch': 1,\n",
      "          'stars': 1,\n",
      "          'matthew': 1,\n",
      "          'officer': 1,\n",
      "          'u': 1,\n",
      "          'naval': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'ii': 1,\n",
      "          'nwe': 1,\n",
      "          'learn': 1,\n",
      "          'denied': 1,\n",
      "          'recommendation': 1,\n",
      "          'command': 1,\n",
      "          'superior': 1,\n",
      "          'bill': 1,\n",
      "          'paxton': 1,\n",
      "          'nmcconaugheys': 1,\n",
      "          'receives': 1,\n",
      "          'orders': 1,\n",
      "          'boarding': 1,\n",
      "          'disabled': 1,\n",
      "          'steal': 1,\n",
      "          'enigma': 1,\n",
      "          'communications': 1,\n",
      "          'encoding': 1,\n",
      "          'device': 1,\n",
      "          'stumped': 1,\n",
      "          'allied': 1,\n",
      "          'intelligence': 1,\n",
      "          'mission': 1,\n",
      "          'goes': 1,\n",
      "          'horribly': 1,\n",
      "          'wrong': 1,\n",
      "          'however': 1,\n",
      "          'result': 1,\n",
      "          'captured': 1,\n",
      "          'become': 1,\n",
      "          'trapped': 1,\n",
      "          'aboard': 1,\n",
      "          'enemy': 1,\n",
      "          'waters': 1,\n",
      "          'great': 1,\n",
      "          'thing': 1,\n",
      "          'attack': 1,\n",
      "          'sets': 1,\n",
      "          'events': 1,\n",
      "          'rest': 1,\n",
      "          'motion': 1,\n",
      "          'nits': 1,\n",
      "          'tense': 1,\n",
      "          'exciting': 1,\n",
      "          'applaud': 1,\n",
      "          'filmmakers': 1,\n",
      "          'copping': 1,\n",
      "          'instead': 1,\n",
      "          'keeping': 1,\n",
      "          'subtitles': 1,\n",
      "          'nmost': 1,\n",
      "          'scene': 1,\n",
      "          'long': 1,\n",
      "          'panicked': 1,\n",
      "          'speaking': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'nonce': 1,\n",
      "          'gets': 1,\n",
      "          'moving': 1,\n",
      "          'gives': 1,\n",
      "          'wonder': 1,\n",
      "          'ok': 1,\n",
      "          'stakes': 1,\n",
      "          'keep': 1,\n",
      "          'raising': 1,\n",
      "          'decision': 1,\n",
      "          'excellent': 1,\n",
      "          'actionthriller': 1,\n",
      "          'even': 1,\n",
      "          'knows': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'getting': 1,\n",
      "          'two': 1,\n",
      "          'minor': 1,\n",
      "          'complaints': 1,\n",
      "          'scenes': 1,\n",
      "          'follow': 1,\n",
      "          'nwhile': 1,\n",
      "          'purpose': 1,\n",
      "          'introduce': 1,\n",
      "          'characters': 1,\n",
      "          'story': 1,\n",
      "          'feel': 1,\n",
      "          'could': 1,\n",
      "          'quicker': 1,\n",
      "          'less': 1,\n",
      "          'conventionally': 1,\n",
      "          'mean': 1,\n",
      "          'really': 1,\n",
      "          'see': 1,\n",
      "          'ships': 1,\n",
      "          'wedding': 1,\n",
      "          'nbecause': 1,\n",
      "          'know': 1,\n",
      "          'exactly': 1,\n",
      "          'whats': 1,\n",
      "          'groom': 1,\n",
      "          'nmy': 1,\n",
      "          'gripe': 1,\n",
      "          'finale': 1,\n",
      "          'ntheres': 1,\n",
      "          'explosion': 1,\n",
      "          'ends': 1,\n",
      "          'weakest': 1,\n",
      "          'looking': 1,\n",
      "          'effects': 1,\n",
      "          'since': 1,\n",
      "          'presidents': 1,\n",
      "          'crashed': 1,\n",
      "          'ocean': 1,\n",
      "          'air': 1,\n",
      "          'force': 1,\n",
      "          'stress': 1,\n",
      "          'enough': 1,\n",
      "          'nuntil': 1,\n",
      "          'made': 1,\n",
      "          'look': 1,\n",
      "          'model': 1,\n",
      "          'stick': 1,\n",
      "          'using': 1,\n",
      "          'models': 1,\n",
      "          'nyes': 1,\n",
      "          'historically': 1,\n",
      "          'incorrect': 1,\n",
      "          'surely': 1,\n",
      "          'specifics': 1,\n",
      "          'onboard': 1,\n",
      "          'tell': 1,\n",
      "          'couldnt': 1,\n",
      "          'overall': 1,\n",
      "          'point': 1,\n",
      "          'nit': 1,\n",
      "          'succeeds': 1,\n",
      "          'fantastically': 1,\n",
      "          'npg13': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'david': 5,\n",
      "          'film': 5,\n",
      "          'back': 4,\n",
      "          'father': 4,\n",
      "          'nhis': 4,\n",
      "          'see': 3,\n",
      "          'life': 3,\n",
      "          'helfgott': 3,\n",
      "          'told': 3,\n",
      "          'well': 3,\n",
      "          'nwe': 3,\n",
      "          'rush': 3,\n",
      "          'sound': 3,\n",
      "          'boy': 2,\n",
      "          'damaged': 2,\n",
      "          'world': 2,\n",
      "          'breakdown': 2,\n",
      "          'story': 2,\n",
      "          'pressures': 2,\n",
      "          'upon': 2,\n",
      "          'demanding': 2,\n",
      "          'australia': 2,\n",
      "          'via': 2,\n",
      "          'front': 2,\n",
      "          'music': 2,\n",
      "          'house': 2,\n",
      "          'teacher': 2,\n",
      "          'home': 2,\n",
      "          'dark': 2,\n",
      "          'piano': 2,\n",
      "          'linear': 2,\n",
      "          'works': 2,\n",
      "          'uplifting': 2,\n",
      "          'return': 2,\n",
      "          'role': 2,\n",
      "          'actors': 2,\n",
      "          'teenagedavid': 2,\n",
      "          'work': 2,\n",
      "          'first': 2,\n",
      "          'whilst': 2,\n",
      "          'babbling': 2,\n",
      "          'women': 2,\n",
      "          'wants': 2,\n",
      "          'play': 2,\n",
      "          'slow': 2,\n",
      "          'motion': 2,\n",
      "          'thumping': 2,\n",
      "          'share': 1,\n",
      "          'descent': 1,\n",
      "          'darkness': 1,\n",
      "          'talented': 1,\n",
      "          'pianist': 1,\n",
      "          'nyears': 1,\n",
      "          'later': 1,\n",
      "          'subsequent': 1,\n",
      "          'resurfacing': 1,\n",
      "          'mid': 1,\n",
      "          '80s': 1,\n",
      "          'man': 1,\n",
      "          'walks': 1,\n",
      "          'rainstorm': 1,\n",
      "          'movie': 1,\n",
      "          'charts': 1,\n",
      "          'causes': 1,\n",
      "          'mental': 1,\n",
      "          'nbased': 1,\n",
      "          'australian': 1,\n",
      "          'rich': 1,\n",
      "          'exploration': 1,\n",
      "          'drilling': 1,\n",
      "          'childgenius': 1,\n",
      "          'compounded': 1,\n",
      "          'looming': 1,\n",
      "          'shadow': 1,\n",
      "          'domineering': 1,\n",
      "          'nin': 1,\n",
      "          '1950s': 1,\n",
      "          'emerged': 1,\n",
      "          'child': 1,\n",
      "          'prodigy': 1,\n",
      "          'traces': 1,\n",
      "          'relationship': 1,\n",
      "          'whose': 1,\n",
      "          'encouragement': 1,\n",
      "          'comes': 1,\n",
      "          'cost': 1,\n",
      "          'beyond': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'keys': 1,\n",
      "          'ndavid': 1,\n",
      "          'offered': 1,\n",
      "          'places': 1,\n",
      "          'usa': 1,\n",
      "          'refuses': 1,\n",
      "          'let': 1,\n",
      "          'leave': 1,\n",
      "          'effect': 1,\n",
      "          'cleverly': 1,\n",
      "          'single': 1,\n",
      "          'reverse': 1,\n",
      "          'tracked': 1,\n",
      "          'shot': 1,\n",
      "          'sobbing': 1,\n",
      "          'doorway': 1,\n",
      "          'teachers': 1,\n",
      "          'nhe': 1,\n",
      "          'lit': 1,\n",
      "          'external': 1,\n",
      "          'lights': 1,\n",
      "          'isnt': 1,\n",
      "          'pull': 1,\n",
      "          'rooms': 1,\n",
      "          'window': 1,\n",
      "          'curtains': 1,\n",
      "          'open': 1,\n",
      "          'nthere': 1,\n",
      "          'pool': 1,\n",
      "          'blackness': 1,\n",
      "          'grand': 1,\n",
      "          'ndavids': 1,\n",
      "          'fall': 1,\n",
      "          'cliff': 1,\n",
      "          'begun': 1,\n",
      "          'ninstead': 1,\n",
      "          'mode': 1,\n",
      "          'shine': 1,\n",
      "          'jumps': 1,\n",
      "          'around': 1,\n",
      "          'time': 1,\n",
      "          'ala': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'nthis': 1,\n",
      "          'narrative': 1,\n",
      "          'device': 1,\n",
      "          'teenager': 1,\n",
      "          'london': 1,\n",
      "          'mentalpatient': 1,\n",
      "          'various': 1,\n",
      "          'snippets': 1,\n",
      "          'neatly': 1,\n",
      "          'loops': 1,\n",
      "          'conclusion': 1,\n",
      "          'nadulthelfgotts': 1,\n",
      "          'light': 1,\n",
      "          'fashion': 1,\n",
      "          'lead': 1,\n",
      "          'played': 1,\n",
      "          '3': 1,\n",
      "          'different': 1,\n",
      "          'taylor': 1,\n",
      "          'adultdavid': 1,\n",
      "          'standing': 1,\n",
      "          'nwhilst': 1,\n",
      "          'known': 1,\n",
      "          'tv': 1,\n",
      "          'think': 1,\n",
      "          'major': 1,\n",
      "          'cinema': 1,\n",
      "          'clearly': 1,\n",
      "          'keeps': 1,\n",
      "          'quoting': 1,\n",
      "          'daddy': 1,\n",
      "          'word': 1,\n",
      "          'torrent': 1,\n",
      "          'cuddles': 1,\n",
      "          'strangers': 1,\n",
      "          'grabs': 1,\n",
      "          'breasts': 1,\n",
      "          'touching': 1,\n",
      "          'funny': 1,\n",
      "          'ntaylors': 1,\n",
      "          'sympathy': 1,\n",
      "          'producing': 1,\n",
      "          'mute': 1,\n",
      "          'witness': 1,\n",
      "          'gradual': 1,\n",
      "          'keep': 1,\n",
      "          'building': 1,\n",
      "          'rachmaninovs': 1,\n",
      "          '3rd': 1,\n",
      "          'start': 1,\n",
      "          'simple': 1,\n",
      "          'mozart': 1,\n",
      "          'ntechnically': 1,\n",
      "          'beautiful': 1,\n",
      "          'lot': 1,\n",
      "          'thought': 1,\n",
      "          'gone': 1,\n",
      "          'production': 1,\n",
      "          'ni': 1,\n",
      "          'particularly': 1,\n",
      "          'like': 1,\n",
      "          'use': 1,\n",
      "          'effects': 1,\n",
      "          'none': 1,\n",
      "          'scene': 1,\n",
      "          'adulthelfgott': 1,\n",
      "          'happily': 1,\n",
      "          'car': 1,\n",
      "          'rain': 1,\n",
      "          'windshield': 1,\n",
      "          'wipers': 1,\n",
      "          'fades': 1,\n",
      "          'voice': 1,\n",
      "          'nwith': 1,\n",
      "          'clever': 1,\n",
      "          'subtlety': 1,\n",
      "          'wiper': 1,\n",
      "          'appears': 1,\n",
      "          'morph': 1,\n",
      "          'rhythmic': 1,\n",
      "          'beat': 1,\n",
      "          'image': 1,\n",
      "          'dissolves': 1,\n",
      "          'realise': 1,\n",
      "          'applause': 1,\n",
      "          'crowd': 1,\n",
      "          'nbut': 1,\n",
      "          'us': 1,\n",
      "          'clapped': 1,\n",
      "          'youngdavid': 1,\n",
      "          'walking': 1,\n",
      "          'stage': 1,\n",
      "          'public': 1,\n",
      "          'show': 1,\n",
      "          'would': 1,\n",
      "          'expect': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'critical': 1,\n",
      "          'nand': 1,\n",
      "          'miming': 1,\n",
      "          'playing': 1,\n",
      "          'faultless': 1,\n",
      "          'apparently': 1,\n",
      "          'didnt': 1,\n",
      "          'mime': 1,\n",
      "          'really': 1,\n",
      "          'nhelfgotts': 1,\n",
      "          'certainly': 1,\n",
      "          'without': 1,\n",
      "          'sympathetic': 1,\n",
      "          'people': 1,\n",
      "          'nindeed': 1,\n",
      "          'normal': 1,\n",
      "          'accelerated': 1,\n",
      "          'chance': 1,\n",
      "          'meetings': 1,\n",
      "          'two': 1,\n",
      "          'special': 1,\n",
      "          'ultimately': 1,\n",
      "          'magic': 1,\n",
      "          'piece': 1,\n",
      "          'theatre': 1,\n",
      "          'craft': 1,\n",
      "          'nit': 1,\n",
      "          'shows': 1,\n",
      "          'help': 1,\n",
      "          'god': 1,\n",
      "          'find': 1,\n",
      "          'way': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'war': 3,\n",
      "          'reality': 3,\n",
      "          'ryan': 3,\n",
      "          'nthe': 3,\n",
      "          'movie': 3,\n",
      "          'forget': 3,\n",
      "          'today': 2,\n",
      "          'spielberg': 2,\n",
      "          'home': 2,\n",
      "          'hanks': 2,\n",
      "          'ww': 2,\n",
      "          'ii': 2,\n",
      "          'time': 2,\n",
      "          'us': 2,\n",
      "          'made': 2,\n",
      "          'became': 1,\n",
      "          'seeing': 1,\n",
      "          'screening': 1,\n",
      "          'saving': 1,\n",
      "          'priivate': 1,\n",
      "          'nsteve': 1,\n",
      "          'goes': 1,\n",
      "          'beyond': 1,\n",
      "          'latest': 1,\n",
      "          'production': 1,\n",
      "          'audience': 1,\n",
      "          'tossed': 1,\n",
      "          'theatre': 1,\n",
      "          'witnessing': 1,\n",
      "          'horror': 1,\n",
      "          'nplease': 1,\n",
      "          'keep': 1,\n",
      "          'kids': 1,\n",
      "          'r': 1,\n",
      "          'rating': 1,\n",
      "          'ntom': 1,\n",
      "          'stunning': 1,\n",
      "          'capt': 1,\n",
      "          'john': 1,\n",
      "          'miller': 1,\n",
      "          'set': 1,\n",
      "          'france': 1,\n",
      "          'rescue': 1,\n",
      "          'return': 1,\n",
      "          'soldier': 1,\n",
      "          'private': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'lost': 1,\n",
      "          'three': 1,\n",
      "          'brothers': 1,\n",
      "          'nspielberg': 1,\n",
      "          'takes': 1,\n",
      "          'inside': 1,\n",
      "          'heads': 1,\n",
      "          'individuals': 1,\n",
      "          'face': 1,\n",
      "          'death': 1,\n",
      "          'horrific': 1,\n",
      "          'battle': 1,\n",
      "          'scenes': 1,\n",
      "          'nprivate': 1,\n",
      "          'everyone': 1,\n",
      "          'felt': 1,\n",
      "          'right': 1,\n",
      "          'like': 1,\n",
      "          'reminds': 1,\n",
      "          'sacrifices': 1,\n",
      "          'fighting': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'nwe': 1,\n",
      "          'must': 1,\n",
      "          'ever': 1,\n",
      "          'many': 1,\n",
      "          'gave': 1,\n",
      "          'ultimate': 1,\n",
      "          'sacrifice': 1,\n",
      "          'lives': 1,\n",
      "          'may': 1,\n",
      "          'live': 1,\n",
      "          'freedom': 1,\n",
      "          'nfor': 1,\n",
      "          'thank': 1,\n",
      "          'steve': 1,\n",
      "          'making': 1,\n",
      "          'never': 1,\n",
      "          'academy': 1,\n",
      "          'tom': 1,\n",
      "          'come': 1,\n",
      "          'april': 1,\n",
      "          '1999': 1,\n",
      "          'another': 1,\n",
      "          'well': 1,\n",
      "          'deserved': 1,\n",
      "          'oscar': 1,\n",
      "          'toms': 1,\n",
      "          'posession': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 4,\n",
      "          'dantes': 3,\n",
      "          'peak': 3,\n",
      "          'really': 3,\n",
      "          'ni': 3,\n",
      "          'well': 2,\n",
      "          'first': 2,\n",
      "          'twister': 2,\n",
      "          'volcano': 2,\n",
      "          'movie': 2,\n",
      "          'didnt': 2,\n",
      "          'see': 2,\n",
      "          'possible': 2,\n",
      "          'couldnt': 2,\n",
      "          'want': 2,\n",
      "          'thrown': 2,\n",
      "          'many': 2,\n",
      "          'nthey': 2,\n",
      "          'ill': 1,\n",
      "          'admit': 1,\n",
      "          'heard': 1,\n",
      "          'could': 1,\n",
      "          'smell': 1,\n",
      "          'started': 1,\n",
      "          'nso': 1,\n",
      "          'seems': 1,\n",
      "          'full': 1,\n",
      "          'fledged': 1,\n",
      "          'return': 1,\n",
      "          '70s': 1,\n",
      "          'disaster': 1,\n",
      "          'era': 1,\n",
      "          'nwith': 1,\n",
      "          'soon': 1,\n",
      "          'flood': 1,\n",
      "          'james': 1,\n",
      "          'camerons': 1,\n",
      "          'extremly': 1,\n",
      "          'expensive': 1,\n",
      "          'titanic': 1,\n",
      "          'nill': 1,\n",
      "          'say': 1,\n",
      "          'enjoyed': 1,\n",
      "          'much': 1,\n",
      "          'npart': 1,\n",
      "          'biased': 1,\n",
      "          'usually': 1,\n",
      "          'enjoy': 1,\n",
      "          'anything': 1,\n",
      "          'tommy': 1,\n",
      "          'lee': 1,\n",
      "          'jones': 1,\n",
      "          'appears': 1,\n",
      "          'nive': 1,\n",
      "          'reading': 1,\n",
      "          'lot': 1,\n",
      "          'cheezy': 1,\n",
      "          'hokey': 1,\n",
      "          'think': 1,\n",
      "          'entire': 1,\n",
      "          'get': 1,\n",
      "          'bored': 1,\n",
      "          'easily': 1,\n",
      "          'bore': 1,\n",
      "          'minute': 1,\n",
      "          'nanother': 1,\n",
      "          'thing': 1,\n",
      "          'boy': 1,\n",
      "          'bitching': 1,\n",
      "          'today': 1,\n",
      "          'bothers': 1,\n",
      "          'critics': 1,\n",
      "          'go': 1,\n",
      "          'thats': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'give': 1,\n",
      "          'bloody': 1,\n",
      "          'damn': 1,\n",
      "          'nits': 1,\n",
      "          'freaking': 1,\n",
      "          'dont': 1,\n",
      "          'reality': 1,\n",
      "          'face': 1,\n",
      "          'able': 1,\n",
      "          'impossible': 1,\n",
      "          'might': 1,\n",
      "          'reviewers': 1,\n",
      "          'seen': 1,\n",
      "          'one': 1,\n",
      "          'movies': 1,\n",
      "          'nthe': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'second': 1,\n",
      "          'star': 1,\n",
      "          'feature': 1,\n",
      "          'amazing': 1,\n",
      "          'found': 1,\n",
      "          'hard': 1,\n",
      "          'sometimes': 1,\n",
      "          'believe': 1,\n",
      "          'indeed': 1,\n",
      "          'fx': 1,\n",
      "          'la': 1,\n",
      "          'burning': 1,\n",
      "          'ground': 1,\n",
      "          'incredible': 1,\n",
      "          'job': 1,\n",
      "          'come': 1,\n",
      "          'oscar': 1,\n",
      "          'time': 1,\n",
      "          'remember': 1,\n",
      "          'notice': 1,\n",
      "          'better': 1,\n",
      "          'way': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jackie': 13,\n",
      "          'film': 11,\n",
      "          'films': 8,\n",
      "          'mr': 8,\n",
      "          'brown': 8,\n",
      "          'pulp': 5,\n",
      "          'fiction': 5,\n",
      "          'tarantino': 5,\n",
      "          'grier': 5,\n",
      "          'characters': 5,\n",
      "          'hes': 4,\n",
      "          'tarantinos': 4,\n",
      "          'new': 4,\n",
      "          'may': 3,\n",
      "          'years': 3,\n",
      "          'feature': 3,\n",
      "          'year': 3,\n",
      "          'pam': 3,\n",
      "          'ordell': 3,\n",
      "          'max': 3,\n",
      "          'robert': 3,\n",
      "          'forster': 3,\n",
      "          'nthe': 3,\n",
      "          'best': 3,\n",
      "          'marks': 3,\n",
      "          '1970s': 3,\n",
      "          'tim': 3,\n",
      "          'whose': 3,\n",
      "          'quentin': 2,\n",
      "          'screenplay': 2,\n",
      "          'another': 2,\n",
      "          'well': 2,\n",
      "          'one': 2,\n",
      "          'single': 2,\n",
      "          'arent': 2,\n",
      "          '000': 2,\n",
      "          'shes': 2,\n",
      "          'michael': 2,\n",
      "          'cherry': 2,\n",
      "          'based': 2,\n",
      "          'de': 2,\n",
      "          'rat': 2,\n",
      "          'clever': 2,\n",
      "          'twists': 2,\n",
      "          'turns': 2,\n",
      "          'first': 2,\n",
      "          'nwhile': 2,\n",
      "          'narrative': 2,\n",
      "          'lead': 2,\n",
      "          'music': 2,\n",
      "          'soundtrack': 2,\n",
      "          'even': 2,\n",
      "          'opening': 2,\n",
      "          'title': 2,\n",
      "          'sequence': 2,\n",
      "          'ms': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'nothing': 2,\n",
      "          'casting': 2,\n",
      "          'although': 2,\n",
      "          'understated': 2,\n",
      "          'roth': 2,\n",
      "          'unspoken': 2,\n",
      "          'part': 2,\n",
      "          'often': 2,\n",
      "          'storytelling': 2,\n",
      "          'nthis': 2,\n",
      "          'range': 2,\n",
      "          'character': 2,\n",
      "          'career': 2,\n",
      "          'role': 2,\n",
      "          'nand': 2,\n",
      "          'note': 1,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'following': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'nduring': 1,\n",
      "          'three': 1,\n",
      "          'since': 1,\n",
      "          'release': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'success': 1,\n",
      "          'cinematic': 1,\n",
      "          'output': 1,\n",
      "          'creator': 1,\n",
      "          'surprisingly': 1,\n",
      "          'low': 1,\n",
      "          'noh': 1,\n",
      "          'busy': 1,\n",
      "          'talk': 1,\n",
      "          'show': 1,\n",
      "          'circuit': 1,\n",
      "          'taking': 1,\n",
      "          'small': 1,\n",
      "          'roles': 1,\n",
      "          'various': 1,\n",
      "          'overseeing': 1,\n",
      "          'production': 1,\n",
      "          'dusk': 1,\n",
      "          'till': 1,\n",
      "          'dawn': 1,\n",
      "          'making': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'television': 1,\n",
      "          'shows': 1,\n",
      "          'providing': 1,\n",
      "          'vignette': 1,\n",
      "          'illfated': 1,\n",
      "          'anthology': 1,\n",
      "          'four': 1,\n",
      "          'rooms': 1,\n",
      "          'everything': 1,\n",
      "          'seems': 1,\n",
      "          'except': 1,\n",
      "          'direct': 1,\n",
      "          'featurelength': 1,\n",
      "          'nits': 1,\n",
      "          'long': 1,\n",
      "          'intermission': 1,\n",
      "          'projects': 1,\n",
      "          'dizzying': 1,\n",
      "          'peak': 1,\n",
      "          'reached': 1,\n",
      "          'made': 1,\n",
      "          'anticipated': 1,\n",
      "          'third': 1,\n",
      "          'cements': 1,\n",
      "          'reputation': 1,\n",
      "          'important': 1,\n",
      "          'american': 1,\n",
      "          'filmmaker': 1,\n",
      "          'emerge': 1,\n",
      "          '1990s': 1,\n",
      "          'nthings': 1,\n",
      "          'going': 1,\n",
      "          'nshes': 1,\n",
      "          '44': 1,\n",
      "          'old': 1,\n",
      "          'stuck': 1,\n",
      "          'deadend': 1,\n",
      "          'job': 1,\n",
      "          '16': 1,\n",
      "          'plus': 1,\n",
      "          'retirement': 1,\n",
      "          'benefits': 1,\n",
      "          'worth': 1,\n",
      "          'damn': 1,\n",
      "          'flight': 1,\n",
      "          'attendant': 1,\n",
      "          'worst': 1,\n",
      "          'airline': 1,\n",
      "          'north': 1,\n",
      "          'america': 1,\n",
      "          'caught': 1,\n",
      "          'airport': 1,\n",
      "          'atf': 1,\n",
      "          'agent': 1,\n",
      "          'ray': 1,\n",
      "          'nicolette': 1,\n",
      "          'portrayed': 1,\n",
      "          'terrific': 1,\n",
      "          'childlike': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'keaton': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'mark': 1,\n",
      "          'dargus': 1,\n",
      "          'bowen': 1,\n",
      "          'smuggling': 1,\n",
      "          '50': 1,\n",
      "          'mexico': 1,\n",
      "          'gunrunner': 1,\n",
      "          'robbie': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'bailed': 1,\n",
      "          'unassuming': 1,\n",
      "          'bail': 1,\n",
      "          'bondsman': 1,\n",
      "          'loquacious': 1,\n",
      "          'hermosa': 1,\n",
      "          'beach': 1,\n",
      "          'house': 1,\n",
      "          'horny': 1,\n",
      "          'bonghitting': 1,\n",
      "          'surfer': 1,\n",
      "          'girl': 1,\n",
      "          'melanie': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'agreeable': 1,\n",
      "          'crony': 1,\n",
      "          'louis': 1,\n",
      "          'gara': 1,\n",
      "          'niro': 1,\n",
      "          'hang': 1,\n",
      "          'operates': 1,\n",
      "          'policy': 1,\n",
      "          'dead': 1,\n",
      "          'soon': 1,\n",
      "          'silence': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'authorities': 1,\n",
      "          'target': 1,\n",
      "          'want': 1,\n",
      "          'help': 1,\n",
      "          'arranging': 1,\n",
      "          'sting': 1,\n",
      "          'tune': 1,\n",
      "          'halfmillion': 1,\n",
      "          'dollars': 1,\n",
      "          'nonly': 1,\n",
      "          'series': 1,\n",
      "          'doublecrosses': 1,\n",
      "          'able': 1,\n",
      "          'gain': 1,\n",
      "          'upper': 1,\n",
      "          'hand': 1,\n",
      "          'nemeses': 1,\n",
      "          'nalthough': 1,\n",
      "          'produced': 1,\n",
      "          'adaptation': 1,\n",
      "          'elmore': 1,\n",
      "          'leonard': 1,\n",
      "          'novel': 1,\n",
      "          'rum': 1,\n",
      "          'punch': 1,\n",
      "          'theres': 1,\n",
      "          'mistaking': 1,\n",
      "          'distinctive': 1,\n",
      "          'fingerprints': 1,\n",
      "          'adhered': 1,\n",
      "          'closely': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'source': 1,\n",
      "          'material': 1,\n",
      "          'sense': 1,\n",
      "          'setting': 1,\n",
      "          'relocated': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'black': 1,\n",
      "          'nin': 1,\n",
      "          'terms': 1,\n",
      "          'ambiance': 1,\n",
      "          'harkens': 1,\n",
      "          'back': 1,\n",
      "          'walltowall': 1,\n",
      "          'funk': 1,\n",
      "          'soul': 1,\n",
      "          'drowning': 1,\n",
      "          'nondescript': 1,\n",
      "          'look': 1,\n",
      "          'sets': 1,\n",
      "          'credit': 1,\n",
      "          'echo': 1,\n",
      "          'vintage': 1,\n",
      "          'productions': 1,\n",
      "          'featuring': 1,\n",
      "          'wordlessly': 1,\n",
      "          'striding': 1,\n",
      "          'lax': 1,\n",
      "          'funky': 1,\n",
      "          'blaring': 1,\n",
      "          'away': 1,\n",
      "          'speakers': 1,\n",
      "          'emblematic': 1,\n",
      "          'era': 1,\n",
      "          'timeframe': 1,\n",
      "          'fact': 1,\n",
      "          '1995': 1,\n",
      "          'atmosphere': 1,\n",
      "          'decidedly': 1,\n",
      "          'retro': 1,\n",
      "          'screams': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'caper': 1,\n",
      "          'intrigue': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'plot': 1,\n",
      "          'backstabbing': 1,\n",
      "          'deceptions': 1,\n",
      "          'deliciously': 1,\n",
      "          'unfold': 1,\n",
      "          'strength': 1,\n",
      "          'quiet': 1,\n",
      "          'relationship': 1,\n",
      "          'developed': 1,\n",
      "          'kiss': 1,\n",
      "          'perhaps': 1,\n",
      "          'tender': 1,\n",
      "          'scene': 1,\n",
      "          'ntenderness': 1,\n",
      "          'nsure': 1,\n",
      "          'thereve': 1,\n",
      "          'moments': 1,\n",
      "          'sweetness': 1,\n",
      "          'prior': 1,\n",
      "          'affectionate': 1,\n",
      "          'exchanges': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'maria': 1,\n",
      "          'madeiros': 1,\n",
      "          'unflagging': 1,\n",
      "          'dedication': 1,\n",
      "          'shared': 1,\n",
      "          'amanda': 1,\n",
      "          'plummer': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogs': 1,\n",
      "          'deep': 1,\n",
      "          'bond': 1,\n",
      "          'develops': 1,\n",
      "          'harvey': 1,\n",
      "          'keitel': 1,\n",
      "          'typified': 1,\n",
      "          'manic': 1,\n",
      "          'energy': 1,\n",
      "          'unexpected': 1,\n",
      "          'outbursts': 1,\n",
      "          'violence': 1,\n",
      "          'wordy': 1,\n",
      "          'banter': 1,\n",
      "          'nthese': 1,\n",
      "          'staples': 1,\n",
      "          'work': 1,\n",
      "          'present': 1,\n",
      "          'whats': 1,\n",
      "          'different': 1,\n",
      "          'facet': 1,\n",
      "          'willingness': 1,\n",
      "          'imbue': 1,\n",
      "          'poignant': 1,\n",
      "          'emotional': 1,\n",
      "          'undercurrent': 1,\n",
      "          'patience': 1,\n",
      "          'draw': 1,\n",
      "          'several': 1,\n",
      "          'scenes': 1,\n",
      "          'great': 1,\n",
      "          'deliberation': 1,\n",
      "          'effective': 1,\n",
      "          'demonstration': 1,\n",
      "          'prohibits': 1,\n",
      "          'pigeonholing': 1,\n",
      "          'simply': 1,\n",
      "          'helmer': 1,\n",
      "          'slick': 1,\n",
      "          'hip': 1,\n",
      "          'crime': 1,\n",
      "          'dramas': 1,\n",
      "          'fasttalking': 1,\n",
      "          'lowlifes': 1,\n",
      "          'heralds': 1,\n",
      "          'bonafide': 1,\n",
      "          'multifaceted': 1,\n",
      "          'talent': 1,\n",
      "          'real': 1,\n",
      "          'deal': 1,\n",
      "          'aspect': 1,\n",
      "          'probably': 1,\n",
      "          'embodied': 1,\n",
      "          'worldweary': 1,\n",
      "          'sensitive': 1,\n",
      "          'exceedinglyprofessional': 1,\n",
      "          'attraction': 1,\n",
      "          'touching': 1,\n",
      "          'nmr': 1,\n",
      "          'forsters': 1,\n",
      "          'nuanced': 1,\n",
      "          'performance': 1,\n",
      "          'creates': 1,\n",
      "          'amiable': 1,\n",
      "          'poignancy': 1,\n",
      "          'gazes': 1,\n",
      "          'smile': 1,\n",
      "          'along': 1,\n",
      "          'nmuch': 1,\n",
      "          'press': 1,\n",
      "          'given': 1,\n",
      "          'blaxploitationera': 1,\n",
      "          'icon': 1,\n",
      "          'wags': 1,\n",
      "          'buzzing': 1,\n",
      "          'bolster': 1,\n",
      "          'john': 1,\n",
      "          'travoltas': 1,\n",
      "          'thensagging': 1,\n",
      "          'nas': 1,\n",
      "          'solid': 1,\n",
      "          'forces': 1,\n",
      "          'test': 1,\n",
      "          'ni': 1,\n",
      "          'take': 1,\n",
      "          'exception': 1,\n",
      "          'claim': 1,\n",
      "          'resurrection': 1,\n",
      "          'though': 1,\n",
      "          'working': 1,\n",
      "          'steadily': 1,\n",
      "          'directtovideo': 1,\n",
      "          'action': 1,\n",
      "          'flicks': 1,\n",
      "          'also': 1,\n",
      "          'recent': 1,\n",
      "          'theatrical': 1,\n",
      "          'releases': 1,\n",
      "          'burtons': 1,\n",
      "          'mars': 1,\n",
      "          'attacks': 1,\n",
      "          'larry': 1,\n",
      "          'cohens': 1,\n",
      "          'original': 1,\n",
      "          'gangstas': 1,\n",
      "          'teamed': 1,\n",
      "          'true': 1,\n",
      "          'godsend': 1,\n",
      "          'meaty': 1,\n",
      "          'rarity': 1,\n",
      "          'actress': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'age': 1,\n",
      "          'current': 1,\n",
      "          'status': 1,\n",
      "          'industry': 1,\n",
      "          'disappoint': 1,\n",
      "          'looking': 1,\n",
      "          'clone': 1,\n",
      "          'tremendous': 1,\n",
      "          'growth': 1,\n",
      "          'director': 1,\n",
      "          'horizons': 1,\n",
      "          'rapidly': 1,\n",
      "          'expanding': 1,\n",
      "          'characterizations': 1,\n",
      "          'never': 1,\n",
      "          'better': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'warrant': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          '155': 1,\n",
      "          'minutes': 1,\n",
      "          'filled': 1,\n",
      "          'sumptuous': 1,\n",
      "          'riches': 1,\n",
      "          'ranging': 1,\n",
      "          'brashness': 1,\n",
      "          'vivid': 1,\n",
      "          'entertaining': 1,\n",
      "          'inconsequential': 1,\n",
      "          'conversations': 1,\n",
      "          'wasnt': 1,\n",
      "          'unengaging': 1,\n",
      "          'moment': 1,\n",
      "          'nwith': 1,\n",
      "          'impressive': 1,\n",
      "          'trio': 1,\n",
      "          'belt': 1,\n",
      "          'itll': 1,\n",
      "          'interesting': 1,\n",
      "          'see': 1,\n",
      "          'tries': 1,\n",
      "          'next': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'last': 7,\n",
      "          'night': 7,\n",
      "          'would': 6,\n",
      "          'mckellar': 5,\n",
      "          'people': 5,\n",
      "          'ni': 5,\n",
      "          'end': 4,\n",
      "          'world': 4,\n",
      "          'nthe': 4,\n",
      "          'never': 4,\n",
      "          'played': 4,\n",
      "          'going': 3,\n",
      "          'movie': 3,\n",
      "          'nmckellar': 3,\n",
      "          'man': 3,\n",
      "          'wants': 3,\n",
      "          'husband': 3,\n",
      "          'nhe': 3,\n",
      "          'find': 3,\n",
      "          'could': 2,\n",
      "          'earths': 2,\n",
      "          'existence': 2,\n",
      "          'event': 2,\n",
      "          'trying': 2,\n",
      "          'characters': 2,\n",
      "          'attempt': 2,\n",
      "          'material': 2,\n",
      "          'alone': 2,\n",
      "          'sandra': 2,\n",
      "          'oh': 2,\n",
      "          'day': 2,\n",
      "          'gas': 2,\n",
      "          'final': 2,\n",
      "          'months': 2,\n",
      "          'see': 2,\n",
      "          'need': 2,\n",
      "          'understand': 2,\n",
      "          'buy': 2,\n",
      "          'together': 2,\n",
      "          'ending': 2,\n",
      "          'wanted': 2,\n",
      "          'know': 2,\n",
      "          'fact': 2,\n",
      "          'didnt': 2,\n",
      "          'minds': 2,\n",
      "          'one': 2,\n",
      "          'aka': 1,\n",
      "          'tagged': 1,\n",
      "          'says': 1,\n",
      "          'feel': 1,\n",
      "          'fine': 1,\n",
      "          'n': 1,\n",
      "          'planet': 1,\n",
      "          'precisely': 1,\n",
      "          'midnight': 1,\n",
      "          'january': 1,\n",
      "          '1st': 1,\n",
      "          '2000': 1,\n",
      "          'nhow': 1,\n",
      "          'scientists': 1,\n",
      "          'accurately': 1,\n",
      "          'able': 1,\n",
      "          'predict': 1,\n",
      "          'catastrophic': 1,\n",
      "          'occur': 1,\n",
      "          'explained': 1,\n",
      "          'nnor': 1,\n",
      "          'nthroughout': 1,\n",
      "          'entire': 1,\n",
      "          'explanation': 1,\n",
      "          'given': 1,\n",
      "          'happening': 1,\n",
      "          'nin': 1,\n",
      "          'also': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'seems': 1,\n",
      "          'transcend': 1,\n",
      "          'genre': 1,\n",
      "          'nhes': 1,\n",
      "          'attempted': 1,\n",
      "          'make': 1,\n",
      "          'deals': 1,\n",
      "          'life': 1,\n",
      "          'contains': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'elements': 1,\n",
      "          'allows': 1,\n",
      "          'viewer': 1,\n",
      "          'concentrate': 1,\n",
      "          'feelings': 1,\n",
      "          'actions': 1,\n",
      "          'largely': 1,\n",
      "          'successful': 1,\n",
      "          'rise': 1,\n",
      "          'set': 1,\n",
      "          'toronto': 1,\n",
      "          'follows': 1,\n",
      "          'several': 1,\n",
      "          'various': 1,\n",
      "          'escapades': 1,\n",
      "          'ntheres': 1,\n",
      "          'plays': 1,\n",
      "          'moment': 1,\n",
      "          'occurs': 1,\n",
      "          'keeps': 1,\n",
      "          'getting': 1,\n",
      "          'interrupted': 1,\n",
      "          'woman': 1,\n",
      "          'search': 1,\n",
      "          'nher': 1,\n",
      "          'david': 1,\n",
      "          'cronenberg': 1,\n",
      "          'spending': 1,\n",
      "          'working': 1,\n",
      "          'company': 1,\n",
      "          'informing': 1,\n",
      "          'keep': 1,\n",
      "          'providing': 1,\n",
      "          'right': 1,\n",
      "          'nfinally': 1,\n",
      "          'theres': 1,\n",
      "          'mckellars': 1,\n",
      "          'friend': 1,\n",
      "          'callum': 1,\n",
      "          'keith': 1,\n",
      "          'rennie': 1,\n",
      "          'spent': 1,\n",
      "          'every': 1,\n",
      "          'sexual': 1,\n",
      "          'perversion': 1,\n",
      "          'think': 1,\n",
      "          'crafted': 1,\n",
      "          'gang': 1,\n",
      "          'interesting': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'nthese': 1,\n",
      "          'felt': 1,\n",
      "          'real': 1,\n",
      "          'especially': 1,\n",
      "          'character': 1,\n",
      "          'nwe': 1,\n",
      "          'desperation': 1,\n",
      "          'utter': 1,\n",
      "          'hours': 1,\n",
      "          'nrennie': 1,\n",
      "          'good': 1,\n",
      "          'literally': 1,\n",
      "          'try': 1,\n",
      "          'everything': 1,\n",
      "          'dies': 1,\n",
      "          'exudes': 1,\n",
      "          'charm': 1,\n",
      "          'likeablity': 1,\n",
      "          'surprising': 1,\n",
      "          'rooting': 1,\n",
      "          'get': 1,\n",
      "          'nbut': 1,\n",
      "          'biggest': 1,\n",
      "          'surprise': 1,\n",
      "          'knew': 1,\n",
      "          'talented': 1,\n",
      "          'director': 1,\n",
      "          'idea': 1,\n",
      "          'act': 1,\n",
      "          'well': 1,\n",
      "          'nhis': 1,\n",
      "          'insistence': 1,\n",
      "          'much': 1,\n",
      "          'dismay': 1,\n",
      "          'parents': 1,\n",
      "          'something': 1,\n",
      "          'difficult': 1,\n",
      "          'reasons': 1,\n",
      "          'doesnt': 1,\n",
      "          'whole': 1,\n",
      "          'notion': 1,\n",
      "          'everyones': 1,\n",
      "          'die': 1,\n",
      "          'immediately': 1,\n",
      "          'companionship': 1,\n",
      "          'realizes': 1,\n",
      "          'relationship': 1,\n",
      "          'forced': 1,\n",
      "          'sake': 1,\n",
      "          'gives': 1,\n",
      "          'brilliant': 1,\n",
      "          'performance': 1,\n",
      "          'hope': 1,\n",
      "          'alternates': 1,\n",
      "          'directing': 1,\n",
      "          'acting': 1,\n",
      "          'nmy': 1,\n",
      "          'quibble': 1,\n",
      "          'really': 1,\n",
      "          'hanging': 1,\n",
      "          'times': 1,\n",
      "          'appreciate': 1,\n",
      "          'want': 1,\n",
      "          'rule': 1,\n",
      "          'study': 1,\n",
      "          'human': 1,\n",
      "          'behavious': 1,\n",
      "          'nhowever': 1,\n",
      "          'telling': 1,\n",
      "          'audience': 1,\n",
      "          'cause': 1,\n",
      "          'destruction': 1,\n",
      "          'hes': 1,\n",
      "          'left': 1,\n",
      "          'big': 1,\n",
      "          'question': 1,\n",
      "          'throughout': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'anybody': 1,\n",
      "          'panicking': 1,\n",
      "          'imagine': 1,\n",
      "          'nothing': 1,\n",
      "          'done': 1,\n",
      "          'large': 1,\n",
      "          'segment': 1,\n",
      "          'population': 1,\n",
      "          'ninstead': 1,\n",
      "          'treated': 1,\n",
      "          'shots': 1,\n",
      "          'giant': 1,\n",
      "          'crowd': 1,\n",
      "          'partying': 1,\n",
      "          'like': 1,\n",
      "          'new': 1,\n",
      "          'years': 1,\n",
      "          'eve': 1,\n",
      "          'everyone': 1,\n",
      "          'completely': 1,\n",
      "          'accepted': 1,\n",
      "          'fate': 1,\n",
      "          'nno': 1,\n",
      "          'urge': 1,\n",
      "          'rage': 1,\n",
      "          'dying': 1,\n",
      "          'light': 1,\n",
      "          'ndespite': 1,\n",
      "          'small': 1,\n",
      "          'problems': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'year': 1,\n",
      "          'nas': 1,\n",
      "          'opposed': 1,\n",
      "          'moronic': 1,\n",
      "          'armageddon': 1,\n",
      "          'treats': 1,\n",
      "          'subject': 1,\n",
      "          'hand': 1,\n",
      "          'maturity': 1,\n",
      "          'believabilty': 1,\n",
      "          'nand': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'shows': 1,\n",
      "          'save': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'antz': 11,\n",
      "          'bugs': 9,\n",
      "          'really': 6,\n",
      "          'also': 6,\n",
      "          'life': 5,\n",
      "          'like': 5,\n",
      "          'still': 5,\n",
      "          'film': 5,\n",
      "          'nthe': 5,\n",
      "          'story': 4,\n",
      "          'clever': 4,\n",
      "          'lead': 4,\n",
      "          'animated': 4,\n",
      "          'toy': 3,\n",
      "          'allen': 3,\n",
      "          'totally': 3,\n",
      "          'innocent': 3,\n",
      "          'one': 3,\n",
      "          'films': 3,\n",
      "          'character': 3,\n",
      "          'final': 3,\n",
      "          'anything': 3,\n",
      "          'small': 3,\n",
      "          'end': 3,\n",
      "          'basically': 2,\n",
      "          'witty': 2,\n",
      "          'intelligent': 2,\n",
      "          'take': 2,\n",
      "          'woody': 2,\n",
      "          'something': 2,\n",
      "          'never': 2,\n",
      "          'fun': 2,\n",
      "          'engaging': 2,\n",
      "          'n': 2,\n",
      "          'similar': 2,\n",
      "          'disney': 2,\n",
      "          'completely': 2,\n",
      "          'even': 2,\n",
      "          'consumption': 2,\n",
      "          'entertaining': 2,\n",
      "          'nit': 2,\n",
      "          'ant': 2,\n",
      "          'colony': 2,\n",
      "          'world': 2,\n",
      "          'seen': 2,\n",
      "          'better': 2,\n",
      "          'instead': 2,\n",
      "          'amazing': 2,\n",
      "          'visual': 2,\n",
      "          'technology': 2,\n",
      "          'least': 2,\n",
      "          'wit': 2,\n",
      "          'flik': 2,\n",
      "          'foley': 2,\n",
      "          'z': 2,\n",
      "          'get': 2,\n",
      "          'menacing': 2,\n",
      "          'spacey': 2,\n",
      "          'nand': 2,\n",
      "          'come': 2,\n",
      "          'giant': 2,\n",
      "          'grasshoppers': 2,\n",
      "          'away': 2,\n",
      "          'help': 2,\n",
      "          'group': 2,\n",
      "          'bug': 2,\n",
      "          'wild': 2,\n",
      "          'na': 2,\n",
      "          'brag': 2,\n",
      "          'three': 2,\n",
      "          'computer': 2,\n",
      "          'created': 2,\n",
      "          'may': 1,\n",
      "          'close': 1,\n",
      "          'ni': 1,\n",
      "          'liked': 1,\n",
      "          'yes': 1,\n",
      "          'temerity': 1,\n",
      "          'chance': 1,\n",
      "          'put': 1,\n",
      "          'perhaps': 1,\n",
      "          'years': 1,\n",
      "          'inspired': 1,\n",
      "          'casting': 1,\n",
      "          'fact': 1,\n",
      "          'missing': 1,\n",
      "          'im': 1,\n",
      "          'first': 1,\n",
      "          'admit': 1,\n",
      "          'nmaybe': 1,\n",
      "          'lets': 1,\n",
      "          'go': 1,\n",
      "          'takes': 1,\n",
      "          'real': 1,\n",
      "          'obsessed': 1,\n",
      "          'orwellian': 1,\n",
      "          'message': 1,\n",
      "          'become': 1,\n",
      "          'werent': 1,\n",
      "          'would': 1,\n",
      "          'goodnotgreat': 1,\n",
      "          'flick': 1,\n",
      "          'premise': 1,\n",
      "          'insure': 1,\n",
      "          'grated': 1,\n",
      "          'kids': 1,\n",
      "          'heads': 1,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'believe': 1,\n",
      "          'tone': 1,\n",
      "          'thats': 1,\n",
      "          'remaining': 1,\n",
      "          'perpetually': 1,\n",
      "          'love': 1,\n",
      "          'general': 1,\n",
      "          'broadens': 1,\n",
      "          'horizons': 1,\n",
      "          'moves': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'whole': 1,\n",
      "          'new': 1,\n",
      "          'weve': 1,\n",
      "          'evolution': 1,\n",
      "          'lot': 1,\n",
      "          'nits': 1,\n",
      "          'light': 1,\n",
      "          'visuals': 1,\n",
      "          'earth': 1,\n",
      "          'tones': 1,\n",
      "          'bright': 1,\n",
      "          'worldly': 1,\n",
      "          'colors': 1,\n",
      "          'gives': 1,\n",
      "          'worthy': 1,\n",
      "          'contender': 1,\n",
      "          'characters': 1,\n",
      "          'nicely': 1,\n",
      "          'realized': 1,\n",
      "          'though': 1,\n",
      "          'watereddown': 1,\n",
      "          'broad': 1,\n",
      "          'carry': 1,\n",
      "          'contemporary': 1,\n",
      "          'voiced': 1,\n",
      "          'dave': 1,\n",
      "          'nothing': 1,\n",
      "          'slightlyless': 1,\n",
      "          'neurotic': 1,\n",
      "          'makes': 1,\n",
      "          'nearly': 1,\n",
      "          'made': 1,\n",
      "          'gene': 1,\n",
      "          'hackman': 1,\n",
      "          'playing': 1,\n",
      "          'villain': 1,\n",
      "          'much': 1,\n",
      "          'kevin': 1,\n",
      "          'grasshopper': 1,\n",
      "          'nicelytitled': 1,\n",
      "          'hopper': 1,\n",
      "          'romantic': 1,\n",
      "          'dont': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'hardtoget': 1,\n",
      "          'julialouis': 1,\n",
      "          'dreyfuss': 1,\n",
      "          'doesnt': 1,\n",
      "          'around': 1,\n",
      "          'frames': 1,\n",
      "          'nnot': 1,\n",
      "          'plots': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'redux': 1,\n",
      "          'seven': 1,\n",
      "          'samurai': 1,\n",
      "          'control': 1,\n",
      "          'forcing': 1,\n",
      "          'produce': 1,\n",
      "          'product': 1,\n",
      "          'else': 1,\n",
      "          'nwhen': 1,\n",
      "          'bone': 1,\n",
      "          'fide': 1,\n",
      "          'inventor': 1,\n",
      "          'creates': 1,\n",
      "          'timeconserving': 1,\n",
      "          'apparatus': 1,\n",
      "          'accidentally': 1,\n",
      "          'destroys': 1,\n",
      "          'seasons': 1,\n",
      "          'donation': 1,\n",
      "          'puts': 1,\n",
      "          'risk': 1,\n",
      "          'sent': 1,\n",
      "          'wont': 1,\n",
      "          'screw': 1,\n",
      "          'pretense': 1,\n",
      "          'searching': 1,\n",
      "          'fight': 1,\n",
      "          'nhe': 1,\n",
      "          'runs': 1,\n",
      "          'warrirors': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'carnival': 1,\n",
      "          'agree': 1,\n",
      "          'false': 1,\n",
      "          'pretenses': 1,\n",
      "          'nthese': 1,\n",
      "          'equally': 1,\n",
      "          'wonderful': 1,\n",
      "          'assortment': 1,\n",
      "          'foppish': 1,\n",
      "          'walking': 1,\n",
      "          'stick': 1,\n",
      "          'slim': 1,\n",
      "          'david': 1,\n",
      "          'hydepierce': 1,\n",
      "          'german': 1,\n",
      "          'caterpillar': 1,\n",
      "          'heimlich': 1,\n",
      "          'joe': 1,\n",
      "          'ranft': 1,\n",
      "          'quicktempered': 1,\n",
      "          'insecure': 1,\n",
      "          'male': 1,\n",
      "          'ladybug': 1,\n",
      "          'francis': 1,\n",
      "          'denis': 1,\n",
      "          'leary': 1,\n",
      "          'pretentious': 1,\n",
      "          'praying': 1,\n",
      "          'mantis': 1,\n",
      "          'manny': 1,\n",
      "          'jonathan': 1,\n",
      "          'harris': 1,\n",
      "          'assistant': 1,\n",
      "          'butterfly': 1,\n",
      "          'hypsy': 1,\n",
      "          'madeliene': 1,\n",
      "          'kahn': 1,\n",
      "          'spider': 1,\n",
      "          'rosie': 1,\n",
      "          'bonnie': 1,\n",
      "          'hunt': 1,\n",
      "          'two': 1,\n",
      "          'fleas': 1,\n",
      "          'tuck': 1,\n",
      "          'roll': 1,\n",
      "          'michael': 1,\n",
      "          'mcshane': 1,\n",
      "          'speak': 1,\n",
      "          'undiscernable': 1,\n",
      "          'jibberish': 1,\n",
      "          'writers': 1,\n",
      "          'lightly': 1,\n",
      "          'touch': 1,\n",
      "          'place': 1,\n",
      "          'society': 1,\n",
      "          'malleability': 1,\n",
      "          'thereof': 1,\n",
      "          'making': 1,\n",
      "          'wisecracks': 1,\n",
      "          'everything': 1,\n",
      "          'blowing': 1,\n",
      "          'audience': 1,\n",
      "          'treats': 1,\n",
      "          'ngrasshoppers': 1,\n",
      "          'jumping': 1,\n",
      "          'unison': 1,\n",
      "          'seems': 1,\n",
      "          'earthquake': 1,\n",
      "          'bird': 1,\n",
      "          'becomes': 1,\n",
      "          'ominous': 1,\n",
      "          'mortal': 1,\n",
      "          'threat': 1,\n",
      "          'whose': 1,\n",
      "          'usual': 1,\n",
      "          'mildmannered': 1,\n",
      "          'squeal': 1,\n",
      "          'scream': 1,\n",
      "          'death': 1,\n",
      "          'city': 1,\n",
      "          'modernday': 1,\n",
      "          'metropolis': 1,\n",
      "          'complete': 1,\n",
      "          'fireflies': 1,\n",
      "          'temping': 1,\n",
      "          'traffic': 1,\n",
      "          'lights': 1,\n",
      "          'fly': 1,\n",
      "          'sitting': 1,\n",
      "          'curb': 1,\n",
      "          'holding': 1,\n",
      "          'cup': 1,\n",
      "          'sign': 1,\n",
      "          'lying': 1,\n",
      "          'next': 1,\n",
      "          'says': 1,\n",
      "          'kid': 1,\n",
      "          'tore': 1,\n",
      "          'wings': 1,\n",
      "          'rainstorm': 1,\n",
      "          'flood': 1,\n",
      "          'drop': 1,\n",
      "          'acting': 1,\n",
      "          'bomb': 1,\n",
      "          'dropped': 1,\n",
      "          'millions': 1,\n",
      "          'miles': 1,\n",
      "          'per': 1,\n",
      "          'hour': 1,\n",
      "          'naround': 1,\n",
      "          'pixar': 1,\n",
      "          'animators': 1,\n",
      "          'stage': 1,\n",
      "          'several': 1,\n",
      "          'large': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'resuce': 1,\n",
      "          'mission': 1,\n",
      "          'halfway': 1,\n",
      "          'year': 1,\n",
      "          'wonderfully': 1,\n",
      "          'exciting': 1,\n",
      "          'action': 1,\n",
      "          'piece': 1,\n",
      "          'chase': 1,\n",
      "          'scene': 1,\n",
      "          'night': 1,\n",
      "          'labyrinthine': 1,\n",
      "          'branches': 1,\n",
      "          'thicket': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'gets': 1,\n",
      "          'spotlight': 1,\n",
      "          'idisyncratic': 1,\n",
      "          'interesting': 1,\n",
      "          'couldnt': 1,\n",
      "          'credits': 1,\n",
      "          'pulls': 1,\n",
      "          'punch': 1,\n",
      "          'clevering': 1,\n",
      "          'series': 1,\n",
      "          'incessantly': 1,\n",
      "          'hilarious': 1,\n",
      "          'fauxbloopers': 1,\n",
      "          'right': 1,\n",
      "          'time': 1,\n",
      "          'leave': 1,\n",
      "          'immeadiately': 1,\n",
      "          'frame': 1,\n",
      "          'left': 1,\n",
      "          'elite': 1,\n",
      "          'stayed': 1,\n",
      "          'got': 1,\n",
      "          'full': 1,\n",
      "          'moneys': 1,\n",
      "          'worth': 1,\n",
      "          'entertainment': 1,\n",
      "          'nstill': 1,\n",
      "          'nthat': 1,\n",
      "          'maybe': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'encompassed': 1,\n",
      "          'almost': 1,\n",
      "          'true': 1,\n",
      "          'perfection': 1,\n",
      "          'proved': 1,\n",
      "          'didnt': 1,\n",
      "          'need': 1,\n",
      "          'cutting': 1,\n",
      "          'edge': 1,\n",
      "          'soar': 1,\n",
      "          'visually': 1,\n",
      "          'striking': 1,\n",
      "          'thus': 1,\n",
      "          'far': 1,\n",
      "          'satisfying': 1,\n",
      "          'perfect': 1,\n",
      "          'idiosyncratic': 1,\n",
      "          'delights': 1,\n",
      "          'nyet': 1,\n",
      "          'well': 1,\n",
      "          'prove': 1,\n",
      "          'without': 1,\n",
      "          'doubt': 1,\n",
      "          'youre': 1,\n",
      "          'gon': 1,\n",
      "          'make': 1,\n",
      "          'send': 1,\n",
      "          'guys': 1,\n",
      "          'flicks': 1,\n",
      "          'evne': 1,\n",
      "          'theyre': 1,\n",
      "          'working': 1,\n",
      "          'roof': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cole': 9,\n",
      "          'movie': 6,\n",
      "          'sixth': 5,\n",
      "          'sense': 5,\n",
      "          'malcolm': 5,\n",
      "          'trailer': 4,\n",
      "          'willis': 4,\n",
      "          'kid': 4,\n",
      "          'year': 3,\n",
      "          'child': 3,\n",
      "          'osment': 3,\n",
      "          'movies': 3,\n",
      "          'nif': 3,\n",
      "          'see': 3,\n",
      "          'really': 3,\n",
      "          'story': 3,\n",
      "          'years': 2,\n",
      "          'give': 2,\n",
      "          'nat': 2,\n",
      "          'work': 2,\n",
      "          'vincent': 2,\n",
      "          'impressive': 2,\n",
      "          'cameo': 2,\n",
      "          'things': 2,\n",
      "          'around': 2,\n",
      "          'find': 2,\n",
      "          'though': 2,\n",
      "          'know': 2,\n",
      "          'nthe': 2,\n",
      "          'gave': 2,\n",
      "          'away': 2,\n",
      "          'first': 2,\n",
      "          'enough': 2,\n",
      "          'seen': 2,\n",
      "          'go': 2,\n",
      "          'secret': 2,\n",
      "          'ghosts': 2,\n",
      "          'realize': 2,\n",
      "          'box': 2,\n",
      "          'office': 2,\n",
      "          'horror': 2,\n",
      "          'ghost': 2,\n",
      "          'shyamalan': 2,\n",
      "          'saw': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'nmy': 1,\n",
      "          'snap': 1,\n",
      "          'judgment': 1,\n",
      "          'watereddown': 1,\n",
      "          'version': 1,\n",
      "          'shining': 1,\n",
      "          'possibly': 1,\n",
      "          'lateentry': 1,\n",
      "          'glut': 1,\n",
      "          'angelrelated': 1,\n",
      "          'moviestv': 1,\n",
      "          'shows': 1,\n",
      "          'couple': 1,\n",
      "          'ago': 1,\n",
      "          'nbut': 1,\n",
      "          'buzz': 1,\n",
      "          'motivated': 1,\n",
      "          'shot': 1,\n",
      "          'nit': 1,\n",
      "          'turned': 1,\n",
      "          'one': 1,\n",
      "          'satisfying': 1,\n",
      "          'experiences': 1,\n",
      "          'nbruce': 1,\n",
      "          'plays': 1,\n",
      "          'psychologist': 1,\n",
      "          'crowe': 1,\n",
      "          'beginning': 1,\n",
      "          'admiring': 1,\n",
      "          'award': 1,\n",
      "          'city': 1,\n",
      "          'given': 1,\n",
      "          'soon': 1,\n",
      "          'confronted': 1,\n",
      "          'patient': 1,\n",
      "          'failed': 1,\n",
      "          'earlier': 1,\n",
      "          'donnie': 1,\n",
      "          'wahlbergformer': 1,\n",
      "          'new': 1,\n",
      "          'kidin': 1,\n",
      "          'na': 1,\n",
      "          'passes': 1,\n",
      "          'treating': 1,\n",
      "          'another': 1,\n",
      "          'symptoms': 1,\n",
      "          'displayed': 1,\n",
      "          'ncole': 1,\n",
      "          'sear': 1,\n",
      "          'haley': 1,\n",
      "          'joel': 1,\n",
      "          'withdrawn': 1,\n",
      "          'called': 1,\n",
      "          'freak': 1,\n",
      "          'boys': 1,\n",
      "          'neighborhood': 1,\n",
      "          'nweird': 1,\n",
      "          'seem': 1,\n",
      "          'happen': 1,\n",
      "          'colehis': 1,\n",
      "          'mother': 1,\n",
      "          'olivia': 1,\n",
      "          'williams': 1,\n",
      "          'leaves': 1,\n",
      "          'kitchen': 1,\n",
      "          'moment': 1,\n",
      "          'returns': 1,\n",
      "          'every': 1,\n",
      "          'cabinet': 1,\n",
      "          'drawer': 1,\n",
      "          'open': 1,\n",
      "          'even': 1,\n",
      "          'hasnt': 1,\n",
      "          'movedand': 1,\n",
      "          'seems': 1,\n",
      "          'age': 1,\n",
      "          'shouldntfor': 1,\n",
      "          'example': 1,\n",
      "          'gallows': 1,\n",
      "          'school': 1,\n",
      "          'nhe': 1,\n",
      "          'steals': 1,\n",
      "          'religious': 1,\n",
      "          'icons': 1,\n",
      "          'churches': 1,\n",
      "          'build': 1,\n",
      "          'chapel': 1,\n",
      "          'pup': 1,\n",
      "          'tent': 1,\n",
      "          'bedroom': 1,\n",
      "          'major': 1,\n",
      "          'plot': 1,\n",
      "          'twist': 1,\n",
      "          'hadnt': 1,\n",
      "          'hour': 1,\n",
      "          'would': 1,\n",
      "          'engrossing': 1,\n",
      "          'wouldnt': 1,\n",
      "          'whats': 1,\n",
      "          'wrong': 1,\n",
      "          'youre': 1,\n",
      "          'lucky': 1,\n",
      "          'stop': 1,\n",
      "          'reading': 1,\n",
      "          'review': 1,\n",
      "          'right': 1,\n",
      "          'nanyway': 1,\n",
      "          'since': 1,\n",
      "          'figure': 1,\n",
      "          'fair': 1,\n",
      "          'game': 1,\n",
      "          'discuss': 1,\n",
      "          'nonce': 1,\n",
      "          'gains': 1,\n",
      "          'coles': 1,\n",
      "          'trust': 1,\n",
      "          'reveals': 1,\n",
      "          'sees': 1,\n",
      "          'everywhere': 1,\n",
      "          'ndead': 1,\n",
      "          'people': 1,\n",
      "          'wander': 1,\n",
      "          'knowing': 1,\n",
      "          'theyre': 1,\n",
      "          'dead': 1,\n",
      "          'invisible': 1,\n",
      "          'everyone': 1,\n",
      "          'except': 1,\n",
      "          'nmalcolm': 1,\n",
      "          'gradually': 1,\n",
      "          'begins': 1,\n",
      "          'telling': 1,\n",
      "          'truth': 1,\n",
      "          'success': 1,\n",
      "          'generated': 1,\n",
      "          'lot': 1,\n",
      "          'press': 1,\n",
      "          'rule': 1,\n",
      "          'lots': 1,\n",
      "          'theories': 1,\n",
      "          'thats': 1,\n",
      "          'ni': 1,\n",
      "          'hate': 1,\n",
      "          'burst': 1,\n",
      "          'anybodys': 1,\n",
      "          'bubble': 1,\n",
      "          'isnt': 1,\n",
      "          'film': 1,\n",
      "          'core': 1,\n",
      "          'touching': 1,\n",
      "          'troubled': 1,\n",
      "          'emotionallyscarred': 1,\n",
      "          'adult': 1,\n",
      "          'help': 1,\n",
      "          'move': 1,\n",
      "          'past': 1,\n",
      "          'problems': 1,\n",
      "          'nsome': 1,\n",
      "          'scenes': 1,\n",
      "          'wonderfully': 1,\n",
      "          'creepy': 1,\n",
      "          'none': 1,\n",
      "          'got': 1,\n",
      "          'boy': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'says': 1,\n",
      "          'ill': 1,\n",
      "          'show': 1,\n",
      "          'dad': 1,\n",
      "          'keeps': 1,\n",
      "          'gun': 1,\n",
      "          'turns': 1,\n",
      "          'bullet': 1,\n",
      "          'wound': 1,\n",
      "          'back': 1,\n",
      "          'head': 1,\n",
      "          'nosment': 1,\n",
      "          'gives': 1,\n",
      "          'best': 1,\n",
      "          'performance': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'actor': 1,\n",
      "          'nits': 1,\n",
      "          'hard': 1,\n",
      "          'grownup': 1,\n",
      "          'hollywood': 1,\n",
      "          'subtle': 1,\n",
      "          'realistic': 1,\n",
      "          'portrayal': 1,\n",
      "          'nalthough': 1,\n",
      "          'gets': 1,\n",
      "          'top': 1,\n",
      "          'billing': 1,\n",
      "          'protagonist': 1,\n",
      "          'truly': 1,\n",
      "          'brings': 1,\n",
      "          'complex': 1,\n",
      "          'life': 1,\n",
      "          'naccustomed': 1,\n",
      "          'delivering': 1,\n",
      "          'catchphrases': 1,\n",
      "          'rather': 1,\n",
      "          'dialogue': 1,\n",
      "          'stiff': 1,\n",
      "          'awkward': 1,\n",
      "          'challenging': 1,\n",
      "          'role': 1,\n",
      "          'date': 1,\n",
      "          'n': 1,\n",
      "          'bad': 1,\n",
      "          'omen': 1,\n",
      "          'next': 1,\n",
      "          'us': 1,\n",
      "          'chronicles': 1,\n",
      "          'ups': 1,\n",
      "          'downs': 1,\n",
      "          'marriage': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'night': 1,\n",
      "          'light': 1,\n",
      "          'poetic': 1,\n",
      "          'touch': 1,\n",
      "          'goes': 1,\n",
      "          'heart': 1,\n",
      "          'viewer': 1,\n",
      "          'without': 1,\n",
      "          'seeming': 1,\n",
      "          'sappy': 1,\n",
      "          'trite': 1,\n",
      "          'nhes': 1,\n",
      "          'also': 1,\n",
      "          'skillful': 1,\n",
      "          'storyteller': 1,\n",
      "          'ending': 1,\n",
      "          'demonstrates': 1,\n",
      "          'nonly': 1,\n",
      "          'final': 1,\n",
      "          'revealed': 1,\n",
      "          'hinting': 1,\n",
      "          'throughout': 1,\n",
      "          'nlook': 1,\n",
      "          'director': 1,\n",
      "          'doctor': 1,\n",
      "          'treats': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'get': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'life': 6,\n",
      "          'film': 6,\n",
      "          'nthe': 4,\n",
      "          'one': 4,\n",
      "          'near': 3,\n",
      "          'classic': 3,\n",
      "          'george': 3,\n",
      "          'nhe': 3,\n",
      "          'capras': 2,\n",
      "          'holiday': 2,\n",
      "          'wonderful': 2,\n",
      "          'bailey': 2,\n",
      "          'others': 2,\n",
      "          'fulfilled': 2,\n",
      "          'town': 2,\n",
      "          'bedford': 2,\n",
      "          'falls': 2,\n",
      "          'potential': 2,\n",
      "          'much': 2,\n",
      "          'nbut': 2,\n",
      "          'times': 2,\n",
      "          'ambitions': 2,\n",
      "          'nhis': 2,\n",
      "          'guardian': 2,\n",
      "          'angel': 2,\n",
      "          'first': 2,\n",
      "          'place': 2,\n",
      "          'end': 1,\n",
      "          'frank': 1,\n",
      "          'jimmy': 1,\n",
      "          'stewart': 1,\n",
      "          'feeling': 1,\n",
      "          'devoted': 1,\n",
      "          'never': 1,\n",
      "          'dream': 1,\n",
      "          'leaving': 1,\n",
      "          'small': 1,\n",
      "          'supburb': 1,\n",
      "          'nstanding': 1,\n",
      "          'upon': 1,\n",
      "          'bridge': 1,\n",
      "          'stormy': 1,\n",
      "          'waters': 1,\n",
      "          'looks': 1,\n",
      "          'contemplating': 1,\n",
      "          'suicide': 1,\n",
      "          'hasnt': 1,\n",
      "          'yet': 1,\n",
      "          'done': 1,\n",
      "          'nas': 1,\n",
      "          'young': 1,\n",
      "          'chap': 1,\n",
      "          'ambition': 1,\n",
      "          'leave': 1,\n",
      "          'hometown': 1,\n",
      "          'change': 1,\n",
      "          'nthings': 1,\n",
      "          'happen': 1,\n",
      "          'hes': 1,\n",
      "          'stuck': 1,\n",
      "          'shows': 1,\n",
      "          'na': 1,\n",
      "          'nin': 1,\n",
      "          'whirlwind': 1,\n",
      "          'tour': 1,\n",
      "          'sees': 1,\n",
      "          'would': 1,\n",
      "          'like': 1,\n",
      "          'without': 1,\n",
      "          'learns': 1,\n",
      "          'moral': 1,\n",
      "          'lesson': 1,\n",
      "          'live': 1,\n",
      "          'gift': 1,\n",
      "          'earthly': 1,\n",
      "          'problems': 1,\n",
      "          'solved': 1,\n",
      "          'climatic': 1,\n",
      "          'scene': 1,\n",
      "          'marvel': 1,\n",
      "          'nfrank': 1,\n",
      "          'centenial': 1,\n",
      "          'watched': 1,\n",
      "          'reexperienced': 1,\n",
      "          'every': 1,\n",
      "          'generation': 1,\n",
      "          'nwonderful': 1,\n",
      "          'pictures': 1,\n",
      "          'gone': 1,\n",
      "          'seems': 1,\n",
      "          'fresh': 1,\n",
      "          'maybe': 1,\n",
      "          'fresher': 1,\n",
      "          'released': 1,\n",
      "          'nmany': 1,\n",
      "          'films': 1,\n",
      "          'thirties': 1,\n",
      "          'seventies': 1,\n",
      "          'aged': 1,\n",
      "          'poorly': 1,\n",
      "          'flawless': 1,\n",
      "          'example': 1,\n",
      "          'well': 1,\n",
      "          'perfect': 1,\n",
      "          'script': 1,\n",
      "          'timing': 1,\n",
      "          'mesh': 1,\n",
      "          'firstrate': 1,\n",
      "          'acting': 1,\n",
      "          'wit': 1,\n",
      "          'suspense': 1,\n",
      "          'glorious': 1,\n",
      "          'music': 1,\n",
      "          'terrific': 1,\n",
      "          'set': 1,\n",
      "          'peices': 1,\n",
      "          'even': 1,\n",
      "          'slightly': 1,\n",
      "          'dated': 1,\n",
      "          'scenes': 1,\n",
      "          'begining': 1,\n",
      "          'god': 1,\n",
      "          'long': 1,\n",
      "          'chat': 1,\n",
      "          'clarence': 1,\n",
      "          'georges': 1,\n",
      "          'nthey': 1,\n",
      "          'arent': 1,\n",
      "          'bad': 1,\n",
      "          'remain': 1,\n",
      "          'corny': 1,\n",
      "          'little': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'deserves': 1,\n",
      "          'time': 1,\n",
      "          'cinema': 1,\n",
      "          'history': 1,\n",
      "          'hearts': 1,\n",
      "          'nit': 1,\n",
      "          'equally': 1,\n",
      "          'appreciated': 1,\n",
      "          'anyone': 1,\n",
      "          'age': 1,\n",
      "          'nhere': 1,\n",
      "          'genuine': 1,\n",
      "          'masterpeice': 1,\n",
      "          'reaches': 1,\n",
      "          'heights': 1,\n",
      "          'perfection': 1,\n",
      "          'nthis': 1,\n",
      "          'crackling': 1,\n",
      "          'good': 1,\n",
      "          'mixture': 1,\n",
      "          'results': 1,\n",
      "          'funny': 1,\n",
      "          'exciting': 1,\n",
      "          'moving': 1,\n",
      "          'uplifting': 1,\n",
      "          'almost': 1,\n",
      "          'reversal': 1,\n",
      "          'isnt': 1,\n",
      "          'capra': 1,\n",
      "          'gang': 1,\n",
      "          'various': 1,\n",
      "          'screenwriters': 1,\n",
      "          'composers': 1,\n",
      "          'actors': 1,\n",
      "          'plumet': 1,\n",
      "          'material': 1,\n",
      "          'fullest': 1,\n",
      "          'result': 1,\n",
      "          'though': 1,\n",
      "          'intended': 1,\n",
      "          'pigeonholed': 1,\n",
      "          'always': 1,\n",
      "          'remembered': 1,\n",
      "          'celebrated': 1,\n",
      "          'loved': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'wild': 7,\n",
      "          'things': 6,\n",
      "          'nbut': 4,\n",
      "          'theres': 4,\n",
      "          'lombardo': 4,\n",
      "          'kelly': 4,\n",
      "          'suzie': 4,\n",
      "          'part': 3,\n",
      "          'n': 3,\n",
      "          'dillon': 3,\n",
      "          'blue': 3,\n",
      "          'richards': 3,\n",
      "          'mother': 3,\n",
      "          'campbell': 3,\n",
      "          'never': 3,\n",
      "          'scene': 3,\n",
      "          'two': 2,\n",
      "          'even': 2,\n",
      "          'movies': 2,\n",
      "          'cant': 2,\n",
      "          'plays': 2,\n",
      "          'scenes': 2,\n",
      "          'guilty': 2,\n",
      "          'bay': 2,\n",
      "          'especially': 2,\n",
      "          'van': 2,\n",
      "          'ryan': 2,\n",
      "          'denise': 2,\n",
      "          'take': 2,\n",
      "          'lombardos': 2,\n",
      "          'next': 2,\n",
      "          'russell': 2,\n",
      "          'duquette': 2,\n",
      "          'kevin': 2,\n",
      "          'bacon': 2,\n",
      "          'perez': 2,\n",
      "          'rubinvega': 2,\n",
      "          'kellys': 2,\n",
      "          'bowden': 2,\n",
      "          'bill': 2,\n",
      "          'murray': 2,\n",
      "          'nthe': 2,\n",
      "          'gives': 2,\n",
      "          'case': 2,\n",
      "          'also': 2,\n",
      "          'cut': 2,\n",
      "          'movie': 2,\n",
      "          'dont': 2,\n",
      "          'full': 2,\n",
      "          'nand': 2,\n",
      "          'end': 2,\n",
      "          'three': 2,\n",
      "          'great': 2,\n",
      "          'jerry': 1,\n",
      "          'springer': 1,\n",
      "          'got': 1,\n",
      "          'nothing': 1,\n",
      "          'njohn': 1,\n",
      "          'mcnaughtons': 1,\n",
      "          'new': 1,\n",
      "          'thriller': 1,\n",
      "          'tackles': 1,\n",
      "          'tawdry': 1,\n",
      "          'themes': 1,\n",
      "          'less': 1,\n",
      "          'hours': 1,\n",
      "          'springers': 1,\n",
      "          'notoriously': 1,\n",
      "          'sleazy': 1,\n",
      "          'talk': 1,\n",
      "          'show': 1,\n",
      "          'broadcasts': 1,\n",
      "          'weeks': 1,\n",
      "          'bisexuality': 1,\n",
      "          'threesomes': 1,\n",
      "          'poolside': 1,\n",
      "          'catfights': 1,\n",
      "          'slutty': 1,\n",
      "          'rich': 1,\n",
      "          'bimbos': 1,\n",
      "          'redneck': 1,\n",
      "          'gatorwrestling': 1,\n",
      "          'theyre': 1,\n",
      "          'raucous': 1,\n",
      "          'complex': 1,\n",
      "          'storyline': 1,\n",
      "          'trash': 1,\n",
      "          'tv': 1,\n",
      "          'topicality': 1,\n",
      "          'drag': 1,\n",
      "          'crazy': 1,\n",
      "          'campfest': 1,\n",
      "          'like': 1,\n",
      "          'something': 1,\n",
      "          'youd': 1,\n",
      "          'find': 1,\n",
      "          'latenight': 1,\n",
      "          'usa': 1,\n",
      "          'network': 1,\n",
      "          'infinitely': 1,\n",
      "          'palatable': 1,\n",
      "          'solid': 1,\n",
      "          'ensemble': 1,\n",
      "          'cast': 1,\n",
      "          'ndespite': 1,\n",
      "          'smattering': 1,\n",
      "          'needless': 1,\n",
      "          'sexual': 1,\n",
      "          'nature': 1,\n",
      "          'wicked': 1,\n",
      "          'fun': 1,\n",
      "          'would': 1,\n",
      "          'pleasure': 1,\n",
      "          'feeling': 1,\n",
      "          'involved': 1,\n",
      "          'good': 1,\n",
      "          'time': 1,\n",
      "          'nhigh': 1,\n",
      "          'school': 1,\n",
      "          'guidance': 1,\n",
      "          'counselor': 1,\n",
      "          'sam': 1,\n",
      "          'matt': 1,\n",
      "          'wellliked': 1,\n",
      "          'town': 1,\n",
      "          'pretty': 1,\n",
      "          'popular': 1,\n",
      "          'whose': 1,\n",
      "          'family': 1,\n",
      "          'name': 1,\n",
      "          'among': 1,\n",
      "          'florida': 1,\n",
      "          'yachting': 1,\n",
      "          'enclaves': 1,\n",
      "          'financially': 1,\n",
      "          'prominent': 1,\n",
      "          'nhoping': 1,\n",
      "          'crush': 1,\n",
      "          'physical': 1,\n",
      "          'level': 1,\n",
      "          'seductively': 1,\n",
      "          'slinks': 1,\n",
      "          'house': 1,\n",
      "          'washing': 1,\n",
      "          'jeep': 1,\n",
      "          'fundraiser': 1,\n",
      "          'day': 1,\n",
      "          'tearfully': 1,\n",
      "          'admits': 1,\n",
      "          'trollop': 1,\n",
      "          'theresa': 1,\n",
      "          'raped': 1,\n",
      "          'nbefore': 1,\n",
      "          'long': 1,\n",
      "          'detectives': 1,\n",
      "          'ray': 1,\n",
      "          'gloria': 1,\n",
      "          'daphne': 1,\n",
      "          'listening': 1,\n",
      "          'similar': 1,\n",
      "          'allegations': 1,\n",
      "          'rebel': 1,\n",
      "          'classmate': 1,\n",
      "          'toller': 1,\n",
      "          'neve': 1,\n",
      "          'nlombardo': 1,\n",
      "          'maintains': 1,\n",
      "          'innocence': 1,\n",
      "          'hires': 1,\n",
      "          'neck': 1,\n",
      "          'bracesporting': 1,\n",
      "          'opportunistic': 1,\n",
      "          'lawyer': 1,\n",
      "          'ken': 1,\n",
      "          'defend': 1,\n",
      "          'court': 1,\n",
      "          'previews': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'following': 1,\n",
      "          'revelations': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'spots': 1,\n",
      "          'television': 1,\n",
      "          'theater': 1,\n",
      "          'might': 1,\n",
      "          'want': 1,\n",
      "          'skip': 1,\n",
      "          'paragraph': 1,\n",
      "          'nwhile': 1,\n",
      "          'crossexamining': 1,\n",
      "          'witness': 1,\n",
      "          'stand': 1,\n",
      "          'gets': 1,\n",
      "          'break': 1,\n",
      "          'admit': 1,\n",
      "          'alleged': 1,\n",
      "          'rapes': 1,\n",
      "          'took': 1,\n",
      "          'place': 1,\n",
      "          'concocted': 1,\n",
      "          'entire': 1,\n",
      "          'scheme': 1,\n",
      "          'angry': 1,\n",
      "          'sleeping': 1,\n",
      "          'nto': 1,\n",
      "          'pay': 1,\n",
      "          'damages': 1,\n",
      "          'breaks': 1,\n",
      "          'daughters': 1,\n",
      "          'trust': 1,\n",
      "          'fund': 1,\n",
      "          '8': 1,\n",
      "          '5': 1,\n",
      "          'million': 1,\n",
      "          'actually': 1,\n",
      "          'working': 1,\n",
      "          'together': 1,\n",
      "          'plan': 1,\n",
      "          'money': 1,\n",
      "          'run': 1,\n",
      "          'fast': 1,\n",
      "          'nduquette': 1,\n",
      "          'however': 1,\n",
      "          'begin': 1,\n",
      "          'suspect': 1,\n",
      "          'afoot': 1,\n",
      "          'false': 1,\n",
      "          'accusations': 1,\n",
      "          'nif': 1,\n",
      "          'major': 1,\n",
      "          'drawback': 1,\n",
      "          'oversexed': 1,\n",
      "          'fault': 1,\n",
      "          'muchtalkedabout': 1,\n",
      "          'hotel': 1,\n",
      "          'room': 1,\n",
      "          'menageatrois': 1,\n",
      "          'turnoff': 1,\n",
      "          'nits': 1,\n",
      "          'short': 1,\n",
      "          'sorry': 1,\n",
      "          'guys': 1,\n",
      "          'shorter': 1,\n",
      "          'grinds': 1,\n",
      "          'halt': 1,\n",
      "          'pure': 1,\n",
      "          'titillation': 1,\n",
      "          'often': 1,\n",
      "          'nwhat': 1,\n",
      "          'see': 1,\n",
      "          'far': 1,\n",
      "          'effective': 1,\n",
      "          'nanother': 1,\n",
      "          'example': 1,\n",
      "          'needlessly': 1,\n",
      "          'going': 1,\n",
      "          'monty': 1,\n",
      "          'shower': 1,\n",
      "          'ner': 1,\n",
      "          'thanks': 1,\n",
      "          'nalso': 1,\n",
      "          'bacons': 1,\n",
      "          'feels': 1,\n",
      "          'simultaneously': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'overwritten': 1,\n",
      "          'ndaphne': 1,\n",
      "          'broadways': 1,\n",
      "          'rent': 1,\n",
      "          'tries': 1,\n",
      "          'compensate': 1,\n",
      "          'superfluous': 1,\n",
      "          'character': 1,\n",
      "          'ntheresa': 1,\n",
      "          'plain': 1,\n",
      "          'wooden': 1,\n",
      "          'open': 1,\n",
      "          'ask': 1,\n",
      "          'certain': 1,\n",
      "          'involving': 1,\n",
      "          'really': 1,\n",
      "          'necessary': 1,\n",
      "          'keeps': 1,\n",
      "          'throwaway': 1,\n",
      "          'junk': 1,\n",
      "          'engaging': 1,\n",
      "          'chain': 1,\n",
      "          'surprises': 1,\n",
      "          'predictable': 1,\n",
      "          'seems': 1,\n",
      "          'twists': 1,\n",
      "          'crate': 1,\n",
      "          'corkscrews': 1,\n",
      "          'gleefully': 1,\n",
      "          'overthetop': 1,\n",
      "          'nasty': 1,\n",
      "          'help': 1,\n",
      "          'charmed': 1,\n",
      "          'absurd': 1,\n",
      "          'showmanship': 1,\n",
      "          'na': 1,\n",
      "          'deal': 1,\n",
      "          'amusement': 1,\n",
      "          'comes': 1,\n",
      "          'watching': 1,\n",
      "          'supporting': 1,\n",
      "          'appears': 1,\n",
      "          'written': 1,\n",
      "          'sly': 1,\n",
      "          'comedic': 1,\n",
      "          'talent': 1,\n",
      "          'murrays': 1,\n",
      "          'stitch': 1,\n",
      "          'pulling': 1,\n",
      "          'beside': 1,\n",
      "          'limo': 1,\n",
      "          'winning': 1,\n",
      "          'flipping': 1,\n",
      "          'leave': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'hit': 1,\n",
      "          'screen': 1,\n",
      "          'youll': 1,\n",
      "          'miss': 1,\n",
      "          'films': 1,\n",
      "          'best': 1,\n",
      "          'four': 1,\n",
      "          'bonus': 1,\n",
      "          'flashbacks': 1,\n",
      "          'smooth': 1,\n",
      "          'plot': 1,\n",
      "          'holes': 1,\n",
      "          'offering': 1,\n",
      "          'tiny': 1,\n",
      "          'turns': 1,\n",
      "          'plus': 1,\n",
      "          'final': 1,\n",
      "          'caps': 1,\n",
      "          'everything': 1,\n",
      "          'stunner': 1,\n",
      "          'bombshell': 1,\n",
      "          'nspeaking': 1,\n",
      "          'bombshells': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'bikini': 1,\n",
      "          'top': 1,\n",
      "          'teen': 1,\n",
      "          'tease': 1,\n",
      "          'thing': 1,\n",
      "          'malicious': 1,\n",
      "          'allure': 1,\n",
      "          'allowed': 1,\n",
      "          'flaunt': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'nmatt': 1,\n",
      "          'flexes': 1,\n",
      "          'sleepyvoiced': 1,\n",
      "          'sex': 1,\n",
      "          'appeal': 1,\n",
      "          'pulls': 1,\n",
      "          'personality': 1,\n",
      "          'changes': 1,\n",
      "          'chameleonic': 1,\n",
      "          'precision': 1,\n",
      "          'nneve': 1,\n",
      "          'lovely': 1,\n",
      "          'ever': 1,\n",
      "          'except': 1,\n",
      "          'sporting': 1,\n",
      "          'blond': 1,\n",
      "          'wig': 1,\n",
      "          'vengeful': 1,\n",
      "          'vulnerability': 1,\n",
      "          'makes': 1,\n",
      "          'interesting': 1,\n",
      "          'member': 1,\n",
      "          'conspiring': 1,\n",
      "          'trio': 1,\n",
      "          'nreedited': 1,\n",
      "          'toned': 1,\n",
      "          'bit': 1,\n",
      "          'dynamics': 1,\n",
      "          'actors': 1,\n",
      "          'could': 1,\n",
      "          'carried': 1,\n",
      "          'film': 1,\n",
      "          'greater': 1,\n",
      "          'lengths': 1,\n",
      "          'given': 1,\n",
      "          'works': 1,\n",
      "          'well': 1,\n",
      "          'enough': 1,\n",
      "          'highly': 1,\n",
      "          'entertaining': 1,\n",
      "          'indeed': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'really': 4,\n",
      "          'happy': 3,\n",
      "          'gilmore': 3,\n",
      "          'sandler': 3,\n",
      "          'whos': 3,\n",
      "          'kid': 3,\n",
      "          'good': 3,\n",
      "          'daddy': 2,\n",
      "          'father': 2,\n",
      "          'thats': 2,\n",
      "          'sandlers': 2,\n",
      "          'best': 2,\n",
      "          'work': 2,\n",
      "          'nhe': 2,\n",
      "          'doesnt': 2,\n",
      "          'nhes': 2,\n",
      "          'coufax': 2,\n",
      "          'man': 2,\n",
      "          'tollbooth': 2,\n",
      "          'roommate': 2,\n",
      "          'get': 2,\n",
      "          'attention': 2,\n",
      "          'adams': 2,\n",
      "          'somehow': 2,\n",
      "          'movies': 2,\n",
      "          'well': 2,\n",
      "          'time': 2,\n",
      "          'remains': 2,\n",
      "          'bastards': 1,\n",
      "          '30second': 1,\n",
      "          'review': 1,\n",
      "          'nbig': 1,\n",
      "          'nhappy': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'nthats': 1,\n",
      "          'latest': 1,\n",
      "          'scenario': 1,\n",
      "          'presented': 1,\n",
      "          'adam': 1,\n",
      "          'new': 1,\n",
      "          'big': 1,\n",
      "          'passable': 1,\n",
      "          'isnt': 1,\n",
      "          'considered': 1,\n",
      "          'actually': 1,\n",
      "          'play': 1,\n",
      "          'variation': 1,\n",
      "          'sonny': 1,\n",
      "          'living': 1,\n",
      "          'settlement': 1,\n",
      "          'got': 1,\n",
      "          'cab': 1,\n",
      "          'running': 1,\n",
      "          'foot': 1,\n",
      "          'onedayaweek': 1,\n",
      "          'gig': 1,\n",
      "          'willie': 1,\n",
      "          'nhis': 1,\n",
      "          'girlfriend': 1,\n",
      "          'kristy': 1,\n",
      "          'swanson': 1,\n",
      "          'fed': 1,\n",
      "          'lifestyle': 1,\n",
      "          'demands': 1,\n",
      "          'change': 1,\n",
      "          'leaves': 1,\n",
      "          'nenter': 1,\n",
      "          '5year': 1,\n",
      "          'old': 1,\n",
      "          'mysteriously': 1,\n",
      "          'dropped': 1,\n",
      "          'doorstep': 1,\n",
      "          'intended': 1,\n",
      "          'preppy': 1,\n",
      "          'jon': 1,\n",
      "          'stewart': 1,\n",
      "          'china': 1,\n",
      "          'business': 1,\n",
      "          'trip': 1,\n",
      "          'nfrom': 1,\n",
      "          'basically': 1,\n",
      "          'acts': 1,\n",
      "          'kids': 1,\n",
      "          'teaching': 1,\n",
      "          'different': 1,\n",
      "          'things': 1,\n",
      "          'like': 1,\n",
      "          'peeing': 1,\n",
      "          'side': 1,\n",
      "          'building': 1,\n",
      "          'tripping': 1,\n",
      "          'skateboarders': 1,\n",
      "          'sticks': 1,\n",
      "          'even': 1,\n",
      "          'manages': 1,\n",
      "          'use': 1,\n",
      "          'sort': 1,\n",
      "          'con': 1,\n",
      "          'game': 1,\n",
      "          'beautiful': 1,\n",
      "          'law': 1,\n",
      "          'office': 1,\n",
      "          'worker': 1,\n",
      "          'joey': 1,\n",
      "          'lauren': 1,\n",
      "          'also': 1,\n",
      "          'garners': 1,\n",
      "          'social': 1,\n",
      "          'services': 1,\n",
      "          'arent': 1,\n",
      "          'particularly': 1,\n",
      "          'pleased': 1,\n",
      "          'coufaxs': 1,\n",
      "          'actions': 1,\n",
      "          'pretends': 1,\n",
      "          'keep': 1,\n",
      "          'nthe': 1,\n",
      "          'reason': 1,\n",
      "          'say': 1,\n",
      "          'gets': 1,\n",
      "          'sappy': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'showing': 1,\n",
      "          'odd': 1,\n",
      "          'feelings': 1,\n",
      "          'didnt': 1,\n",
      "          'belong': 1,\n",
      "          'vehicle': 1,\n",
      "          'ni': 1,\n",
      "          'mean': 1,\n",
      "          'fits': 1,\n",
      "          'tone': 1,\n",
      "          'everything': 1,\n",
      "          'handles': 1,\n",
      "          'oddly': 1,\n",
      "          'placed': 1,\n",
      "          'nfortunately': 1,\n",
      "          'destroy': 1,\n",
      "          'goofy': 1,\n",
      "          'glee': 1,\n",
      "          'path': 1,\n",
      "          'following': 1,\n",
      "          'still': 1,\n",
      "          'makes': 1,\n",
      "          'feel': 1,\n",
      "          'nsandler': 1,\n",
      "          'job': 1,\n",
      "          'nrob': 1,\n",
      "          'schneider': 1,\n",
      "          'however': 1,\n",
      "          'irritating': 1,\n",
      "          'friend': 1,\n",
      "          'immigrant': 1,\n",
      "          'delivery': 1,\n",
      "          'boy': 1,\n",
      "          'cant': 1,\n",
      "          'read': 1,\n",
      "          'nstewart': 1,\n",
      "          'minor': 1,\n",
      "          'screen': 1,\n",
      "          'great': 1,\n",
      "          'joy': 1,\n",
      "          'watch': 1,\n",
      "          'nlook': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'homeless': 1,\n",
      "          'bum': 1,\n",
      "          'hoot': 1,\n",
      "          'ndirected': 1,\n",
      "          'dennis': 1,\n",
      "          'dugan': 1,\n",
      "          'director': 1,\n",
      "          'couple': 1,\n",
      "          'hours': 1,\n",
      "          'pass': 1,\n",
      "          'nagain': 1,\n",
      "          'faults': 1,\n",
      "          'hey': 1,\n",
      "          'everyone': 1,\n",
      "          'needs': 1,\n",
      "          'emotional': 1,\n",
      "          'sometimes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ford': 6,\n",
      "          'six': 4,\n",
      "          'days': 4,\n",
      "          'seven': 4,\n",
      "          'nights': 4,\n",
      "          'fluff': 4,\n",
      "          'heche': 4,\n",
      "          'good': 4,\n",
      "          'back': 3,\n",
      "          'nthe': 3,\n",
      "          'quinn': 3,\n",
      "          'film': 3,\n",
      "          'one': 3,\n",
      "          'n': 3,\n",
      "          'summer': 2,\n",
      "          'movie': 2,\n",
      "          'gets': 2,\n",
      "          'far': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'movies': 2,\n",
      "          'female': 2,\n",
      "          'big': 2,\n",
      "          'age': 2,\n",
      "          'two': 2,\n",
      "          'click': 2,\n",
      "          'way': 2,\n",
      "          'loveable': 2,\n",
      "          'robin': 2,\n",
      "          'frank': 2,\n",
      "          'pairing': 2,\n",
      "          'makes': 2,\n",
      "          'nat': 2,\n",
      "          'wrong': 2,\n",
      "          'still': 2,\n",
      "          'experience': 1,\n",
      "          'deliciously': 1,\n",
      "          'right': 1,\n",
      "          'commendable': 1,\n",
      "          'achievement': 1,\n",
      "          'considering': 1,\n",
      "          'season': 1,\n",
      "          'thus': 1,\n",
      "          'littered': 1,\n",
      "          'pretty': 1,\n",
      "          'uneven': 1,\n",
      "          'fare': 1,\n",
      "          'nheres': 1,\n",
      "          'genuinely': 1,\n",
      "          'fun': 1,\n",
      "          'piece': 1,\n",
      "          'knows': 1,\n",
      "          'recognizes': 1,\n",
      "          'admittedly': 1,\n",
      "          'proud': 1,\n",
      "          'casting': 1,\n",
      "          'harrison': 1,\n",
      "          'broadly': 1,\n",
      "          'comedic': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'plays': 1,\n",
      "          'sizeable': 1,\n",
      "          'part': 1,\n",
      "          'success': 1,\n",
      "          'concentrated': 1,\n",
      "          'dramatic': 1,\n",
      "          'actor': 1,\n",
      "          'easy': 1,\n",
      "          'forget': 1,\n",
      "          'funny': 1,\n",
      "          'guy': 1,\n",
      "          'nas': 1,\n",
      "          'counterpart': 1,\n",
      "          'anne': 1,\n",
      "          'also': 1,\n",
      "          'deserves': 1,\n",
      "          'pat': 1,\n",
      "          'sweet': 1,\n",
      "          'goofily': 1,\n",
      "          'charismatic': 1,\n",
      "          'performance': 1,\n",
      "          'difference': 1,\n",
      "          'fords': 1,\n",
      "          '56': 1,\n",
      "          'heches': 1,\n",
      "          '29': 1,\n",
      "          'matters': 1,\n",
      "          'charged': 1,\n",
      "          'thats': 1,\n",
      "          'hard': 1,\n",
      "          'come': 1,\n",
      "          'story': 1,\n",
      "          'nobrainer': 1,\n",
      "          'stars': 1,\n",
      "          'gruff': 1,\n",
      "          'island': 1,\n",
      "          'aviator': 1,\n",
      "          'harris': 1,\n",
      "          'careerminded': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'magazine': 1,\n",
      "          'editor': 1,\n",
      "          'monroe': 1,\n",
      "          'nrobin': 1,\n",
      "          'tropical': 1,\n",
      "          'vacation': 1,\n",
      "          'fianc': 1,\n",
      "          'david': 1,\n",
      "          'schwimmer': 1,\n",
      "          'assigned': 1,\n",
      "          'supervise': 1,\n",
      "          'emergency': 1,\n",
      "          'photo': 1,\n",
      "          'shoot': 1,\n",
      "          'nearby': 1,\n",
      "          'tahiti': 1,\n",
      "          'reluctantly': 1,\n",
      "          'hires': 1,\n",
      "          'fly': 1,\n",
      "          'plane': 1,\n",
      "          'crashes': 1,\n",
      "          'terrible': 1,\n",
      "          'storm': 1,\n",
      "          'immediately': 1,\n",
      "          'find': 1,\n",
      "          'stuck': 1,\n",
      "          'deserted': 1,\n",
      "          'paradise': 1,\n",
      "          'ideas': 1,\n",
      "          'getting': 1,\n",
      "          'civilization': 1,\n",
      "          'na': 1,\n",
      "          'series': 1,\n",
      "          'unpleasant': 1,\n",
      "          'often': 1,\n",
      "          'hilarious': 1,\n",
      "          'catastrophes': 1,\n",
      "          'leaves': 1,\n",
      "          'little': 1,\n",
      "          'choice': 1,\n",
      "          'members': 1,\n",
      "          'unlikely': 1,\n",
      "          'odd': 1,\n",
      "          'couple': 1,\n",
      "          'fall': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'resort': 1,\n",
      "          'tempted': 1,\n",
      "          'quinns': 1,\n",
      "          'shapely': 1,\n",
      "          'tagalong': 1,\n",
      "          'jacqueline': 1,\n",
      "          'obradors': 1,\n",
      "          'nthat': 1,\n",
      "          'subplot': 1,\n",
      "          'obviously': 1,\n",
      "          'exists': 1,\n",
      "          'get': 1,\n",
      "          'us': 1,\n",
      "          'rooting': 1,\n",
      "          'quinnrobin': 1,\n",
      "          'laughs': 1,\n",
      "          'early': 1,\n",
      "          'eventually': 1,\n",
      "          'becomes': 1,\n",
      "          'contrived': 1,\n",
      "          'distraction': 1,\n",
      "          'engrossing': 1,\n",
      "          'misadventures': 1,\n",
      "          'nand': 1,\n",
      "          'since': 1,\n",
      "          'spends': 1,\n",
      "          'time': 1,\n",
      "          'castaways': 1,\n",
      "          'flaw': 1,\n",
      "          'minor': 1,\n",
      "          'inconvenience': 1,\n",
      "          'ndirector': 1,\n",
      "          'ivan': 1,\n",
      "          'reitman': 1,\n",
      "          'keeps': 1,\n",
      "          'pace': 1,\n",
      "          'brisk': 1,\n",
      "          'slim': 1,\n",
      "          '101': 1,\n",
      "          'minutes': 1,\n",
      "          'never': 1,\n",
      "          'wears': 1,\n",
      "          'welcome': 1,\n",
      "          'lesser': 1,\n",
      "          'could': 1,\n",
      "          'felt': 1,\n",
      "          'like': 1,\n",
      "          'long': 1,\n",
      "          'title': 1,\n",
      "          'nmichael': 1,\n",
      "          'brownings': 1,\n",
      "          'clever': 1,\n",
      "          'screenplay': 1,\n",
      "          'allows': 1,\n",
      "          'plenty': 1,\n",
      "          'notable': 1,\n",
      "          'oneliners': 1,\n",
      "          'favorite': 1,\n",
      "          'taken': 1,\n",
      "          'context': 1,\n",
      "          'mean': 1,\n",
      "          '_arrrgh_': 1,\n",
      "          'pirates': 1,\n",
      "          'though': 1,\n",
      "          'essentially': 1,\n",
      "          'boils': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'mishap': 1,\n",
      "          'another': 1,\n",
      "          'theyre': 1,\n",
      "          'quite': 1,\n",
      "          'engaging': 1,\n",
      "          'neven': 1,\n",
      "          'serious': 1,\n",
      "          'moments': 1,\n",
      "          'played': 1,\n",
      "          'wink': 1,\n",
      "          'nheche': 1,\n",
      "          'undeserved': 1,\n",
      "          'fire': 1,\n",
      "          'whether': 1,\n",
      "          'private': 1,\n",
      "          'life': 1,\n",
      "          'ellen': 1,\n",
      "          'degeneres': 1,\n",
      "          'would': 1,\n",
      "          'affect': 1,\n",
      "          'believability': 1,\n",
      "          'heterosexual': 1,\n",
      "          'shes': 1,\n",
      "          'lesbian': 1,\n",
      "          'nso': 1,\n",
      "          'ndeal': 1,\n",
      "          'doesnt': 1,\n",
      "          'naysayers': 1,\n",
      "          'proved': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'chemistry': 1,\n",
      "          'really': 1,\n",
      "          'opposites': 1,\n",
      "          'attract': 1,\n",
      "          'utmost': 1,\n",
      "          'endearing': 1,\n",
      "          'electricity': 1,\n",
      "          'point': 1,\n",
      "          'discussing': 1,\n",
      "          'likelihood': 1,\n",
      "          'romantic': 1,\n",
      "          'interest': 1,\n",
      "          'asks': 1,\n",
      "          'old': 1,\n",
      "          'nafter': 1,\n",
      "          'several': 1,\n",
      "          'guesses': 1,\n",
      "          'fortyfive': 1,\n",
      "          'n_fifty_': 1,\n",
      "          'whispers': 1,\n",
      "          'look': 1,\n",
      "          'stammers': 1,\n",
      "          '_am_': 1,\n",
      "          'replies': 1,\n",
      "          'nshes': 1,\n",
      "          'together': 1,\n",
      "          'make': 1,\n",
      "          'memorable': 1,\n",
      "          'ride': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dolores': 11,\n",
      "          'claiborne': 8,\n",
      "          'film': 8,\n",
      "          'character': 7,\n",
      "          'bates': 5,\n",
      "          'nthe': 4,\n",
      "          'release': 3,\n",
      "          'may': 3,\n",
      "          'employer': 3,\n",
      "          'st': 3,\n",
      "          'george': 3,\n",
      "          'two': 3,\n",
      "          'husband': 3,\n",
      "          'ndolores': 3,\n",
      "          'suspense': 3,\n",
      "          'also': 3,\n",
      "          'particularly': 3,\n",
      "          'wide': 2,\n",
      "          'study': 2,\n",
      "          'provides': 2,\n",
      "          'performances': 2,\n",
      "          'suffers': 2,\n",
      "          'conclusion': 2,\n",
      "          'direction': 2,\n",
      "          'commercial': 2,\n",
      "          'seems': 2,\n",
      "          'like': 2,\n",
      "          'death': 2,\n",
      "          'via': 2,\n",
      "          'mysterious': 2,\n",
      "          'bitter': 2,\n",
      "          'selena': 2,\n",
      "          'decades': 2,\n",
      "          'detective': 2,\n",
      "          'john': 2,\n",
      "          'mackey': 2,\n",
      "          'kill': 2,\n",
      "          'cast': 2,\n",
      "          'leigh': 2,\n",
      "          'strathairn': 2,\n",
      "          'nkathy': 2,\n",
      "          'plays': 2,\n",
      "          'performance': 2,\n",
      "          'essentially': 2,\n",
      "          'screen': 2,\n",
      "          'flashbacks': 2,\n",
      "          'well': 2,\n",
      "          'interesting': 2,\n",
      "          'would': 2,\n",
      "          'parts': 2,\n",
      "          'pacing': 2,\n",
      "          'tends': 2,\n",
      "          'nhowever': 2,\n",
      "          'weekend': 1,\n",
      "          'adds': 1,\n",
      "          'another': 1,\n",
      "          'entry': 1,\n",
      "          'long': 1,\n",
      "          'list': 1,\n",
      "          'adaptations': 1,\n",
      "          'stephen': 1,\n",
      "          'kings': 1,\n",
      "          'work': 1,\n",
      "          'nthis': 1,\n",
      "          'slowmoving': 1,\n",
      "          'outstanding': 1,\n",
      "          'acting': 1,\n",
      "          'principals': 1,\n",
      "          'tepid': 1,\n",
      "          'inconsistent': 1,\n",
      "          'appeal': 1,\n",
      "          'nwhen': 1,\n",
      "          'maid': 1,\n",
      "          'found': 1,\n",
      "          'brandishing': 1,\n",
      "          'rolling': 1,\n",
      "          'pin': 1,\n",
      "          'standing': 1,\n",
      "          'bloody': 1,\n",
      "          'dead': 1,\n",
      "          'body': 1,\n",
      "          'openandshut': 1,\n",
      "          'murder': 1,\n",
      "          'case': 1,\n",
      "          'nupon': 1,\n",
      "          'hearing': 1,\n",
      "          'fax': 1,\n",
      "          'estranged': 1,\n",
      "          'daughter': 1,\n",
      "          'esquire': 1,\n",
      "          'magazine': 1,\n",
      "          'writer': 1,\n",
      "          'returns': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'back': 1,\n",
      "          'tiny': 1,\n",
      "          'island': 1,\n",
      "          'village': 1,\n",
      "          'childhood': 1,\n",
      "          'home': 1,\n",
      "          'nas': 1,\n",
      "          'clash': 1,\n",
      "          'horns': 1,\n",
      "          'story': 1,\n",
      "          'behind': 1,\n",
      "          'abusive': 1,\n",
      "          'ago': 1,\n",
      "          'ruled': 1,\n",
      "          'accident': 1,\n",
      "          'despite': 1,\n",
      "          'protests': 1,\n",
      "          'revealed': 1,\n",
      "          'ndid': 1,\n",
      "          'nand': 1,\n",
      "          'certainly': 1,\n",
      "          'thriller': 1,\n",
      "          'nconsequently': 1,\n",
      "          'fortunate': 1,\n",
      "          'includes': 1,\n",
      "          'hollywoods': 1,\n",
      "          'finest': 1,\n",
      "          'actors': 1,\n",
      "          'films': 1,\n",
      "          'title': 1,\n",
      "          'gives': 1,\n",
      "          'sensational': 1,\n",
      "          'lead': 1,\n",
      "          'showcase': 1,\n",
      "          'talent': 1,\n",
      "          'huge': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'nshe': 1,\n",
      "          'dominates': 1,\n",
      "          'producing': 1,\n",
      "          'compelling': 1,\n",
      "          'arresting': 1,\n",
      "          'watch': 1,\n",
      "          'go': 1,\n",
      "          'history': 1,\n",
      "          'awardcalibre': 1,\n",
      "          'stuff': 1,\n",
      "          'rest': 1,\n",
      "          'good': 1,\n",
      "          'njennifer': 1,\n",
      "          'jason': 1,\n",
      "          'perpetually': 1,\n",
      "          'sour': 1,\n",
      "          'helena': 1,\n",
      "          'christopher': 1,\n",
      "          'plummer': 1,\n",
      "          'enjoying': 1,\n",
      "          'everpresent': 1,\n",
      "          'nemesis': 1,\n",
      "          'determined': 1,\n",
      "          'ndavid': 1,\n",
      "          'suitably': 1,\n",
      "          'smarmy': 1,\n",
      "          'despicable': 1,\n",
      "          'joe': 1,\n",
      "          'njudy': 1,\n",
      "          'parfitt': 1,\n",
      "          'fine': 1,\n",
      "          'tyrannic': 1,\n",
      "          'socialite': 1,\n",
      "          'vera': 1,\n",
      "          'donovanit': 1,\n",
      "          'see': 1,\n",
      "          'say': 1,\n",
      "          'meg': 1,\n",
      "          'foster': 1,\n",
      "          'role': 1,\n",
      "          'nchild': 1,\n",
      "          'actor': 1,\n",
      "          'ellen': 1,\n",
      "          'muth': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          'young': 1,\n",
      "          'flashback': 1,\n",
      "          'sequences': 1,\n",
      "          'impressive': 1,\n",
      "          'taylor': 1,\n",
      "          'hackford': 1,\n",
      "          'wildly': 1,\n",
      "          'varies': 1,\n",
      "          'throughout': 1,\n",
      "          'ranging': 1,\n",
      "          'quite': 1,\n",
      "          'clever': 1,\n",
      "          'right': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'hokey': 1,\n",
      "          'segues': 1,\n",
      "          'present': 1,\n",
      "          'hitandmiss': 1,\n",
      "          'terms': 1,\n",
      "          'effectiveness': 1,\n",
      "          'numbingly': 1,\n",
      "          'slow': 1,\n",
      "          'undermine': 1,\n",
      "          'might': 1,\n",
      "          'built': 1,\n",
      "          'cinematography': 1,\n",
      "          'gabriel': 1,\n",
      "          'beristain': 1,\n",
      "          'wonderfuli': 1,\n",
      "          'chilling': 1,\n",
      "          'iceblue': 1,\n",
      "          'hue': 1,\n",
      "          'permeating': 1,\n",
      "          'presentday': 1,\n",
      "          'scenes': 1,\n",
      "          'contrasting': 1,\n",
      "          'many': 1,\n",
      "          'nova': 1,\n",
      "          'scotia': 1,\n",
      "          'ocean': 1,\n",
      "          'shotsand': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'surprisingly': 1,\n",
      "          'understated': 1,\n",
      "          'score': 1,\n",
      "          'nit': 1,\n",
      "          'seem': 1,\n",
      "          'potential': 1,\n",
      "          'limited': 1,\n",
      "          'nnone': 1,\n",
      "          'performers': 1,\n",
      "          'could': 1,\n",
      "          'classified': 1,\n",
      "          'big': 1,\n",
      "          'draw': 1,\n",
      "          'turnoff': 1,\n",
      "          'expecting': 1,\n",
      "          'gripping': 1,\n",
      "          'filled': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'car': 1,\n",
      "          'crashes': 1,\n",
      "          'axewielding': 1,\n",
      "          'psychopaths': 1,\n",
      "          'nalthough': 1,\n",
      "          'genre': 1,\n",
      "          'hurt': 1,\n",
      "          'negative': 1,\n",
      "          'perception': 1,\n",
      "          'king': 1,\n",
      "          'works': 1,\n",
      "          'even': 1,\n",
      "          'recent': 1,\n",
      "          'critical': 1,\n",
      "          'success': 1,\n",
      "          'shawshank': 1,\n",
      "          'redemption': 1,\n",
      "          'stand': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'moves': 1,\n",
      "          'slowly': 1,\n",
      "          'uniformly': 1,\n",
      "          'excellent': 1,\n",
      "          'kathy': 1,\n",
      "          'moments': 1,\n",
      "          'non': 1,\n",
      "          'fourstar': 1,\n",
      "          'scale': 1,\n",
      "          'give': 1,\n",
      "          'three': 1,\n",
      "          'stars': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'game': 6,\n",
      "          'good': 5,\n",
      "          'gambling': 5,\n",
      "          'mike': 5,\n",
      "          'nthe': 5,\n",
      "          'worm': 5,\n",
      "          'poker': 4,\n",
      "          'go': 4,\n",
      "          'like': 4,\n",
      "          'hes': 4,\n",
      "          'cards': 4,\n",
      "          'things': 3,\n",
      "          'story': 3,\n",
      "          'noir': 3,\n",
      "          'mood': 3,\n",
      "          'us': 3,\n",
      "          'entire': 3,\n",
      "          'perfectly': 3,\n",
      "          'everything': 3,\n",
      "          'sense': 3,\n",
      "          'able': 3,\n",
      "          'kid': 3,\n",
      "          'works': 3,\n",
      "          'rounders': 2,\n",
      "          'dont': 2,\n",
      "          'kids': 2,\n",
      "          'nits': 2,\n",
      "          'make': 2,\n",
      "          'take': 2,\n",
      "          'fascinating': 2,\n",
      "          'films': 2,\n",
      "          'past': 2,\n",
      "          'present': 2,\n",
      "          'atmosphere': 2,\n",
      "          'life': 2,\n",
      "          'nthis': 2,\n",
      "          'underworld': 2,\n",
      "          'law': 2,\n",
      "          'city': 2,\n",
      "          'really': 2,\n",
      "          'ndamon': 2,\n",
      "          'scene': 2,\n",
      "          'one': 2,\n",
      "          'intricate': 2,\n",
      "          'might': 2,\n",
      "          'seem': 2,\n",
      "          'little': 2,\n",
      "          'nhe': 2,\n",
      "          'reading': 2,\n",
      "          'trying': 2,\n",
      "          'comes': 2,\n",
      "          'use': 2,\n",
      "          'involved': 2,\n",
      "          'isnt': 2,\n",
      "          'gangsters': 2,\n",
      "          'someone': 2,\n",
      "          'job': 2,\n",
      "          'nit': 2,\n",
      "          'much': 2,\n",
      "          'mikes': 2,\n",
      "          'surprising': 2,\n",
      "          'element': 2,\n",
      "          'way': 2,\n",
      "          'plot': 2,\n",
      "          'bad': 2,\n",
      "          'yet': 2,\n",
      "          'nwhat': 2,\n",
      "          'nmike': 2,\n",
      "          'time': 2,\n",
      "          'takes': 2,\n",
      "          'pay': 2,\n",
      "          'e': 2,\n",
      "          'fact': 2,\n",
      "          'kinds': 2,\n",
      "          'games': 2,\n",
      "          'neverything': 2,\n",
      "          'big': 2,\n",
      "          'destiny': 2,\n",
      "          'told': 2,\n",
      "          'could': 2,\n",
      "          'seen': 1,\n",
      "          'september': 1,\n",
      "          '13': 1,\n",
      "          '1998': 1,\n",
      "          '4': 1,\n",
      "          'p': 1,\n",
      "          'rotterdam': 1,\n",
      "          'square': 1,\n",
      "          'mall': 1,\n",
      "          'cinema': 1,\n",
      "          '6': 1,\n",
      "          'theater': 1,\n",
      "          '2': 1,\n",
      "          'chris': 1,\n",
      "          'wessell': 1,\n",
      "          'free': 1,\n",
      "          'using': 1,\n",
      "          'sonyloews': 1,\n",
      "          'critics': 1,\n",
      "          'pass': 1,\n",
      "          'ntheater': 1,\n",
      "          'rating': 1,\n",
      "          '12': 1,\n",
      "          'seats': 1,\n",
      "          'average': 1,\n",
      "          'sound': 1,\n",
      "          'picture': 1,\n",
      "          'unstable': 1,\n",
      "          'n': 1,\n",
      "          'exactly': 1,\n",
      "          'kind': 1,\n",
      "          'movie': 1,\n",
      "          'parents': 1,\n",
      "          'want': 1,\n",
      "          'see': 1,\n",
      "          'drunken': 1,\n",
      "          'orgy': 1,\n",
      "          'sex': 1,\n",
      "          'violence': 1,\n",
      "          'flatout': 1,\n",
      "          'says': 1,\n",
      "          'career': 1,\n",
      "          'nand': 1,\n",
      "          'worse': 1,\n",
      "          'proves': 1,\n",
      "          'original': 1,\n",
      "          'nthere': 1,\n",
      "          'countless': 1,\n",
      "          'crime': 1,\n",
      "          'evoke': 1,\n",
      "          'dark': 1,\n",
      "          'shady': 1,\n",
      "          'vices': 1,\n",
      "          'world': 1,\n",
      "          'become': 1,\n",
      "          'screen': 1,\n",
      "          'would': 1,\n",
      "          'real': 1,\n",
      "          'starts': 1,\n",
      "          'tradiational': 1,\n",
      "          'style': 1,\n",
      "          'introducing': 1,\n",
      "          'modern': 1,\n",
      "          'stakes': 1,\n",
      "          'high': 1,\n",
      "          'price': 1,\n",
      "          'losing': 1,\n",
      "          'nmatt': 1,\n",
      "          'damon': 1,\n",
      "          'stars': 1,\n",
      "          'mcdermott': 1,\n",
      "          '20something': 1,\n",
      "          'student': 1,\n",
      "          'presentday': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'tells': 1,\n",
      "          'played': 1,\n",
      "          'narrates': 1,\n",
      "          'throughout': 1,\n",
      "          'opening': 1,\n",
      "          'voicedover': 1,\n",
      "          'completely': 1,\n",
      "          'totally': 1,\n",
      "          'define': 1,\n",
      "          'setting': 1,\n",
      "          'nmikes': 1,\n",
      "          'teddy': 1,\n",
      "          'kgb': 1,\n",
      "          'malkovich': 1,\n",
      "          'russian': 1,\n",
      "          'gangster': 1,\n",
      "          'looks': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'nbut': 1,\n",
      "          'practically': 1,\n",
      "          'convey': 1,\n",
      "          'look': 1,\n",
      "          'eyes': 1,\n",
      "          'slow': 1,\n",
      "          'movements': 1,\n",
      "          'mannerisms': 1,\n",
      "          'combined': 1,\n",
      "          'classic': 1,\n",
      "          'cinematography': 1,\n",
      "          'isolated': 1,\n",
      "          'brightness': 1,\n",
      "          'within': 1,\n",
      "          'darkness': 1,\n",
      "          'literally': 1,\n",
      "          'flesh': 1,\n",
      "          'place': 1,\n",
      "          'expensive': 1,\n",
      "          'clothes': 1,\n",
      "          'perfectlygroomed': 1,\n",
      "          'features': 1,\n",
      "          'narration': 1,\n",
      "          'brings': 1,\n",
      "          'together': 1,\n",
      "          'never': 1,\n",
      "          'sounds': 1,\n",
      "          'script': 1,\n",
      "          'embellish': 1,\n",
      "          'anything': 1,\n",
      "          'natural': 1,\n",
      "          'screenwriters': 1,\n",
      "          'right': 1,\n",
      "          'words': 1,\n",
      "          'phrases': 1,\n",
      "          'describe': 1,\n",
      "          'smell': 1,\n",
      "          'air': 1,\n",
      "          'logic': 1,\n",
      "          'guys': 1,\n",
      "          'faces': 1,\n",
      "          'without': 1,\n",
      "          'sounding': 1,\n",
      "          'remotely': 1,\n",
      "          'trite': 1,\n",
      "          'nimmediately': 1,\n",
      "          'get': 1,\n",
      "          'gamblers': 1,\n",
      "          'near': 1,\n",
      "          'geniuses': 1,\n",
      "          'nerves': 1,\n",
      "          'steel': 1,\n",
      "          'quiet': 1,\n",
      "          'war': 1,\n",
      "          'strategies': 1,\n",
      "          'complex': 1,\n",
      "          'honor': 1,\n",
      "          'among': 1,\n",
      "          'soldiers': 1,\n",
      "          'plays': 1,\n",
      "          'ones': 1,\n",
      "          'kill': 1,\n",
      "          'scratching': 1,\n",
      "          'car': 1,\n",
      "          'respect': 1,\n",
      "          'due': 1,\n",
      "          'winner': 1,\n",
      "          'truly': 1,\n",
      "          'better': 1,\n",
      "          'man': 1,\n",
      "          'excellent': 1,\n",
      "          'establishing': 1,\n",
      "          'first': 1,\n",
      "          'act': 1,\n",
      "          'concentrates': 1,\n",
      "          'aspect': 1,\n",
      "          'background': 1,\n",
      "          'progression': 1,\n",
      "          'stumble': 1,\n",
      "          'bit': 1,\n",
      "          'nwe': 1,\n",
      "          'learn': 1,\n",
      "          'npresently': 1,\n",
      "          'know': 1,\n",
      "          'girlfriend': 1,\n",
      "          'named': 1,\n",
      "          'jo': 1,\n",
      "          'gretchen': 1,\n",
      "          'mol': 1,\n",
      "          'constantly': 1,\n",
      "          'argues': 1,\n",
      "          'nthey': 1,\n",
      "          'breakupmakeup': 1,\n",
      "          'cycles': 1,\n",
      "          'childhood': 1,\n",
      "          'pal': 1,\n",
      "          'fellow': 1,\n",
      "          'rounder': 1,\n",
      "          'norton': 1,\n",
      "          'released': 1,\n",
      "          'prison': 1,\n",
      "          'owes': 1,\n",
      "          'thousand': 1,\n",
      "          'dollars': 1,\n",
      "          'mob': 1,\n",
      "          'predictable': 1,\n",
      "          'execute': 1,\n",
      "          'ntechnically': 1,\n",
      "          'unlike': 1,\n",
      "          'many': 1,\n",
      "          'childrens': 1,\n",
      "          'sitcoms': 1,\n",
      "          'friend': 1,\n",
      "          'gets': 1,\n",
      "          'trouble': 1,\n",
      "          'remains': 1,\n",
      "          'friends': 1,\n",
      "          'different': 1,\n",
      "          'medium': 1,\n",
      "          'tell': 1,\n",
      "          'heads': 1,\n",
      "          'lives': 1,\n",
      "          'share': 1,\n",
      "          'passion': 1,\n",
      "          'outthinking': 1,\n",
      "          'player': 1,\n",
      "          'nwhere': 1,\n",
      "          'prefers': 1,\n",
      "          'sleazy': 1,\n",
      "          'route': 1,\n",
      "          'cheating': 1,\n",
      "          'hence': 1,\n",
      "          'jail': 1,\n",
      "          'always': 1,\n",
      "          'dealt': 1,\n",
      "          'nsometimes': 1,\n",
      "          'nhis': 1,\n",
      "          'ability': 1,\n",
      "          'school': 1,\n",
      "          'money': 1,\n",
      "          'times': 1,\n",
      "          'steady': 1,\n",
      "          'dropping': 1,\n",
      "          '30': 1,\n",
      "          '000': 1,\n",
      "          'single': 1,\n",
      "          'hand': 1,\n",
      "          'nonce': 1,\n",
      "          'start': 1,\n",
      "          'happening': 1,\n",
      "          'expand': 1,\n",
      "          'develop': 1,\n",
      "          'web': 1,\n",
      "          'detail': 1,\n",
      "          'bob': 1,\n",
      "          'weave': 1,\n",
      "          'places': 1,\n",
      "          'socialites': 1,\n",
      "          'mansions': 1,\n",
      "          'taking': 1,\n",
      "          'tourists': 1,\n",
      "          'atlantic': 1,\n",
      "          'outwitting': 1,\n",
      "          'control': 1,\n",
      "          'come': 1,\n",
      "          'contact': 1,\n",
      "          'everythings': 1,\n",
      "          'battle': 1,\n",
      "          'deals': 1,\n",
      "          'none': 1,\n",
      "          'demonstrates': 1,\n",
      "          'judge': 1,\n",
      "          'martin': 1,\n",
      "          'landou': 1,\n",
      "          'cast': 1,\n",
      "          'performed': 1,\n",
      "          'role': 1,\n",
      "          'nothing': 1,\n",
      "          'nmatts': 1,\n",
      "          'also': 1,\n",
      "          'got': 1,\n",
      "          'potential': 1,\n",
      "          'great': 1,\n",
      "          'lawyer': 1,\n",
      "          'professional': 1,\n",
      "          'either': 1,\n",
      "          'lose': 1,\n",
      "          'win': 1,\n",
      "          'theres': 1,\n",
      "          'stability': 1,\n",
      "          'risk': 1,\n",
      "          'ncan': 1,\n",
      "          'whos': 1,\n",
      "          'gambled': 1,\n",
      "          'cash': 1,\n",
      "          'chips': 1,\n",
      "          'leave': 1,\n",
      "          'nif': 1,\n",
      "          'subtle': 1,\n",
      "          'lesson': 1,\n",
      "          'pokerplaying': 1,\n",
      "          'ending': 1,\n",
      "          'test': 1,\n",
      "          'perspective': 1,\n",
      "          'finally': 1,\n",
      "          'recognize': 1,\n",
      "          'makes': 1,\n",
      "          'final': 1,\n",
      "          'againstall': 1,\n",
      "          'odds': 1,\n",
      "          'showdown': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'showing': 1,\n",
      "          'still': 1,\n",
      "          'evokes': 1,\n",
      "          'unknown': 1,\n",
      "          'consequences': 1,\n",
      "          'thereof': 1,\n",
      "          'separates': 1,\n",
      "          'challenge': 1,\n",
      "          'skills': 1,\n",
      "          'important': 1,\n",
      "          'winning': 1,\n",
      "          'end': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'scream': 13,\n",
      "          'movie': 7,\n",
      "          '3': 7,\n",
      "          'sidney': 6,\n",
      "          'killer': 6,\n",
      "          'films': 6,\n",
      "          'one': 5,\n",
      "          'become': 5,\n",
      "          'first': 5,\n",
      "          'time': 5,\n",
      "          'around': 4,\n",
      "          'two': 4,\n",
      "          'home': 4,\n",
      "          'cotton': 4,\n",
      "          'film': 4,\n",
      "          'series': 3,\n",
      "          'would': 3,\n",
      "          'internet': 3,\n",
      "          'nno': 3,\n",
      "          'constantly': 3,\n",
      "          'rather': 3,\n",
      "          'nbut': 3,\n",
      "          'characters': 3,\n",
      "          'woodsboro': 3,\n",
      "          'less': 3,\n",
      "          'approach': 3,\n",
      "          'true': 3,\n",
      "          'seems': 3,\n",
      "          'knows': 3,\n",
      "          'years': 3,\n",
      "          'back': 3,\n",
      "          'mother': 3,\n",
      "          'maybe': 3,\n",
      "          'little': 3,\n",
      "          'lot': 2,\n",
      "          'even': 2,\n",
      "          'end': 2,\n",
      "          'nwhat': 2,\n",
      "          'fine': 2,\n",
      "          'made': 2,\n",
      "          'williamson': 2,\n",
      "          'horror': 2,\n",
      "          'nso': 2,\n",
      "          'go': 2,\n",
      "          'nas': 2,\n",
      "          'living': 2,\n",
      "          'hollywood': 2,\n",
      "          'horrifying': 2,\n",
      "          'sequence': 2,\n",
      "          'eye': 2,\n",
      "          'girlfriend': 2,\n",
      "          'get': 2,\n",
      "          'throughout': 2,\n",
      "          'nnot': 2,\n",
      "          'sound': 2,\n",
      "          'like': 2,\n",
      "          'ha': 2,\n",
      "          'arquette': 2,\n",
      "          'stab': 2,\n",
      "          'real': 2,\n",
      "          'either': 2,\n",
      "          'indeed': 2,\n",
      "          'bit': 2,\n",
      "          'finest': 2,\n",
      "          'quite': 2,\n",
      "          'dramatic': 2,\n",
      "          'element': 2,\n",
      "          'nit': 2,\n",
      "          'identity': 2,\n",
      "          'job': 2,\n",
      "          'upon': 2,\n",
      "          'viewing': 2,\n",
      "          'trilogy': 2,\n",
      "          'riding': 1,\n",
      "          'neveryone': 1,\n",
      "          'moderately': 1,\n",
      "          'interested': 1,\n",
      "          'dying': 1,\n",
      "          'know': 1,\n",
      "          'final': 1,\n",
      "          'act': 1,\n",
      "          'nthis': 1,\n",
      "          'era': 1,\n",
      "          'kept': 1,\n",
      "          'nights': 1,\n",
      "          'searching': 1,\n",
      "          'clues': 1,\n",
      "          'talking': 1,\n",
      "          'tossing': 1,\n",
      "          'rumors': 1,\n",
      "          'equally': 1,\n",
      "          'enthused': 1,\n",
      "          'buddies': 1,\n",
      "          'kids': 1,\n",
      "          '17': 1,\n",
      "          'elaborate': 1,\n",
      "          'plots': 1,\n",
      "          'consisting': 1,\n",
      "          'buying': 1,\n",
      "          'ticket': 1,\n",
      "          'hopping': 1,\n",
      "          'narrowly': 1,\n",
      "          'escaping': 1,\n",
      "          'menacing': 1,\n",
      "          'ushers': 1,\n",
      "          'year': 1,\n",
      "          'older': 1,\n",
      "          'need': 1,\n",
      "          'worry': 1,\n",
      "          'endlessly': 1,\n",
      "          'inventive': 1,\n",
      "          'entertaining': 1,\n",
      "          'epilogue': 1,\n",
      "          'kevin': 1,\n",
      "          'household': 1,\n",
      "          'name': 1,\n",
      "          'reinvented': 1,\n",
      "          'genre': 1,\n",
      "          'continued': 1,\n",
      "          'selfreferential': 1,\n",
      "          'postmodern': 1,\n",
      "          'tradition': 1,\n",
      "          'quentin': 1,\n",
      "          'co': 1,\n",
      "          'story': 1,\n",
      "          'opposed': 1,\n",
      "          'fanatical': 1,\n",
      "          'sites': 1,\n",
      "          'believe': 1,\n",
      "          'prescott': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'allgrownup': 1,\n",
      "          'dealing': 1,\n",
      "          'pass': 1,\n",
      "          'tormented': 1,\n",
      "          'sector': 1,\n",
      "          'psyche': 1,\n",
      "          'fulfilling': 1,\n",
      "          'dream': 1,\n",
      "          'actress': 1,\n",
      "          'upstate': 1,\n",
      "          'california': 1,\n",
      "          'understandably': 1,\n",
      "          'alone': 1,\n",
      "          'confines': 1,\n",
      "          'fences': 1,\n",
      "          'vast': 1,\n",
      "          'security': 1,\n",
      "          'systems': 1,\n",
      "          'nshe': 1,\n",
      "          'works': 1,\n",
      "          'crisis': 1,\n",
      "          'center': 1,\n",
      "          'affiliate': 1,\n",
      "          'phone': 1,\n",
      "          'starts': 1,\n",
      "          'ninstead': 1,\n",
      "          'tactic': 1,\n",
      "          'reminded': 1,\n",
      "          'somewhat': 1,\n",
      "          'similar': 1,\n",
      "          'conceptually': 1,\n",
      "          '1995': 1,\n",
      "          'weary': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'big': 1,\n",
      "          'star': 1,\n",
      "          'drives': 1,\n",
      "          'traffic': 1,\n",
      "          'calls': 1,\n",
      "          'demands': 1,\n",
      "          'location': 1,\n",
      "          'threatens': 1,\n",
      "          'life': 1,\n",
      "          'christine': 1,\n",
      "          'anything': 1,\n",
      "          'stop': 1,\n",
      "          'nthe': 1,\n",
      "          'rest': 1,\n",
      "          'particularly': 1,\n",
      "          'clever': 1,\n",
      "          'setting': 1,\n",
      "          'constant': 1,\n",
      "          'picture': 1,\n",
      "          'hightech': 1,\n",
      "          'electronic': 1,\n",
      "          'voicechanger': 1,\n",
      "          'tops': 1,\n",
      "          'unmistakably': 1,\n",
      "          'talented': 1,\n",
      "          'voiceover': 1,\n",
      "          'artist': 1,\n",
      "          'roger': 1,\n",
      "          'jackson': 1,\n",
      "          'easily': 1,\n",
      "          'duplicate': 1,\n",
      "          'voices': 1,\n",
      "          'lead': 1,\n",
      "          'including': 1,\n",
      "          'returned': 1,\n",
      "          'gale': 1,\n",
      "          'weathers': 1,\n",
      "          'courtney': 1,\n",
      "          'cox': 1,\n",
      "          'dewey': 1,\n",
      "          'riley': 1,\n",
      "          'david': 1,\n",
      "          'nat': 1,\n",
      "          'third': 1,\n",
      "          'filmwithinafilm': 1,\n",
      "          'based': 1,\n",
      "          'events': 1,\n",
      "          'windsor': 1,\n",
      "          'college': 1,\n",
      "          'taken': 1,\n",
      "          'authentic': 1,\n",
      "          'return': 1,\n",
      "          'whereas': 1,\n",
      "          'account': 1,\n",
      "          'franchise': 1,\n",
      "          'within': 1,\n",
      "          'totally': 1,\n",
      "          'fictional': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'learn': 1,\n",
      "          'appearance': 1,\n",
      "          'production': 1,\n",
      "          'killed': 1,\n",
      "          'scene': 1,\n",
      "          'offing': 1,\n",
      "          'heroes': 1,\n",
      "          'order': 1,\n",
      "          'bite': 1,\n",
      "          'actor': 1,\n",
      "          'portraying': 1,\n",
      "          'thing': 1,\n",
      "          'nsometimes': 1,\n",
      "          'nclever': 1,\n",
      "          'goes': 1,\n",
      "          'next': 1,\n",
      "          'nthree': 1,\n",
      "          'different': 1,\n",
      "          'scripts': 1,\n",
      "          'penned': 1,\n",
      "          'told': 1,\n",
      "          'keep': 1,\n",
      "          'finale': 1,\n",
      "          'nod': 1,\n",
      "          '2': 1,\n",
      "          'fiasco': 1,\n",
      "          'sure': 1,\n",
      "          'read': 1,\n",
      "          'nstill': 1,\n",
      "          'stays': 1,\n",
      "          'concealed': 1,\n",
      "          'visiting': 1,\n",
      "          'dad': 1,\n",
      "          'halfhour': 1,\n",
      "          'also': 1,\n",
      "          'visions': 1,\n",
      "          'takes': 1,\n",
      "          'us': 1,\n",
      "          'fear': 1,\n",
      "          'becoming': 1,\n",
      "          'least': 1,\n",
      "          'secretly': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'ventures': 1,\n",
      "          'murders': 1,\n",
      "          'prevalent': 1,\n",
      "          'chased': 1,\n",
      "          'onto': 1,\n",
      "          'set': 1,\n",
      "          'wandering': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'odd': 1,\n",
      "          'surreal': 1,\n",
      "          'nightmare': 1,\n",
      "          'moments': 1,\n",
      "          'nokay': 1,\n",
      "          'admit': 1,\n",
      "          'fan': 1,\n",
      "          'ghostface': 1,\n",
      "          'costume': 1,\n",
      "          'director': 1,\n",
      "          'cut': 1,\n",
      "          'laserdisc': 1,\n",
      "          'often': 1,\n",
      "          'find': 1,\n",
      "          'compelled': 1,\n",
      "          'pop': 1,\n",
      "          'dvd': 1,\n",
      "          'member': 1,\n",
      "          'preceding': 1,\n",
      "          'duo': 1,\n",
      "          'caught': 1,\n",
      "          'yes': 1,\n",
      "          'said': 1,\n",
      "          'sometimes': 1,\n",
      "          'debating': 1,\n",
      "          'family': 1,\n",
      "          'friends': 1,\n",
      "          'possibilities': 1,\n",
      "          'endless': 1,\n",
      "          'theories': 1,\n",
      "          'quintessentially': 1,\n",
      "          'affiliated': 1,\n",
      "          'nthroughout': 1,\n",
      "          'though': 1,\n",
      "          'noticed': 1,\n",
      "          'much': 1,\n",
      "          'subtle': 1,\n",
      "          'ngranted': 1,\n",
      "          'stabbinaplenty': 1,\n",
      "          'going': 1,\n",
      "          'considerably': 1,\n",
      "          'blood': 1,\n",
      "          'gore': 1,\n",
      "          'nhonestly': 1,\n",
      "          'classical': 1,\n",
      "          'rebellious': 1,\n",
      "          'demonstrating': 1,\n",
      "          'capable': 1,\n",
      "          'direction': 1,\n",
      "          'wes': 1,\n",
      "          'craven': 1,\n",
      "          'nhe': 1,\n",
      "          'hold': 1,\n",
      "          'makes': 1,\n",
      "          'ooze': 1,\n",
      "          'energy': 1,\n",
      "          'illustrating': 1,\n",
      "          'delicate': 1,\n",
      "          'poise': 1,\n",
      "          'flowing': 1,\n",
      "          'experience': 1,\n",
      "          'nsome': 1,\n",
      "          'critics': 1,\n",
      "          'noted': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'screenwriter': 1,\n",
      "          'ehren': 1,\n",
      "          'kruger': 1,\n",
      "          'arlington': 1,\n",
      "          'road': 1,\n",
      "          'took': 1,\n",
      "          'scheduling': 1,\n",
      "          'conflicts': 1,\n",
      "          'saw': 1,\n",
      "          'opportunity': 1,\n",
      "          'irony': 1,\n",
      "          'satire': 1,\n",
      "          'worked': 1,\n",
      "          'clich': 1,\n",
      "          'puts': 1,\n",
      "          'damper': 1,\n",
      "          'otherwise': 1,\n",
      "          'exceptional': 1,\n",
      "          'creative': 1,\n",
      "          'afraid': 1,\n",
      "          'ending': 1,\n",
      "          'guess': 1,\n",
      "          'accomplishes': 1,\n",
      "          'bringing': 1,\n",
      "          'three': 1,\n",
      "          'full': 1,\n",
      "          'circle': 1,\n",
      "          'seemed': 1,\n",
      "          'dissatisfying': 1,\n",
      "          'appears': 1,\n",
      "          'contrived': 1,\n",
      "          'arbitrary': 1,\n",
      "          'second': 1,\n",
      "          'endeavored': 1,\n",
      "          'due': 1,\n",
      "          'recurring': 1,\n",
      "          'disapprobation': 1,\n",
      "          'still': 1,\n",
      "          'random': 1,\n",
      "          'motivation': 1,\n",
      "          'came': 1,\n",
      "          'across': 1,\n",
      "          'eventual': 1,\n",
      "          'conclusion': 1,\n",
      "          'ultimately': 1,\n",
      "          'satisfying': 1,\n",
      "          'nall': 1,\n",
      "          'fall': 1,\n",
      "          'victim': 1,\n",
      "          'lamented': 1,\n",
      "          'principle': 1,\n",
      "          'worst': 1,\n",
      "          'fun': 1,\n",
      "          'refreshing': 1,\n",
      "          'humorous': 1,\n",
      "          'offbeat': 1,\n",
      "          'nalmost': 1,\n",
      "          'sad': 1,\n",
      "          'see': 1,\n",
      "          'seem': 1,\n",
      "          'best': 1,\n",
      "          'quit': 1,\n",
      "          'ahead': 1,\n",
      "          'providing': 1,\n",
      "          'closure': 1,\n",
      "          'nfor': 1,\n",
      "          'holds': 1,\n",
      "          'title': 1,\n",
      "          'committed': 1,\n",
      "          'celluloid': 1,\n",
      "          'shabby': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'tom': 5,\n",
      "          'karen': 4,\n",
      "          'flooded': 3,\n",
      "          'town': 3,\n",
      "          'church': 3,\n",
      "          'looters': 3,\n",
      "          'break': 3,\n",
      "          'rain': 2,\n",
      "          'small': 2,\n",
      "          'bad': 2,\n",
      "          'dollars': 2,\n",
      "          'nhe': 2,\n",
      "          'floodwaters': 2,\n",
      "          'fire': 2,\n",
      "          'driver': 2,\n",
      "          'named': 2,\n",
      "          'armed': 2,\n",
      "          'full': 2,\n",
      "          'makes': 2,\n",
      "          'movie': 2,\n",
      "          'national': 2,\n",
      "          'guard': 2,\n",
      "          'distress': 2,\n",
      "          'call': 2,\n",
      "          'ingredients': 1,\n",
      "          'pouring': 1,\n",
      "          'damn': 1,\n",
      "          'burst': 1,\n",
      "          'guys': 1,\n",
      "          'going': 1,\n",
      "          'millions': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'one': 1,\n",
      "          'point': 1,\n",
      "          'story': 1,\n",
      "          'townsperson': 1,\n",
      "          'asks': 1,\n",
      "          'hero': 1,\n",
      "          'happened': 1,\n",
      "          'replies': 1,\n",
      "          'something': 1,\n",
      "          'like': 1,\n",
      "          'least': 1,\n",
      "          'put': 1,\n",
      "          'big': 1,\n",
      "          'nwell': 1,\n",
      "          'wasnt': 1,\n",
      "          'since': 1,\n",
      "          'burning': 1,\n",
      "          'apparently': 1,\n",
      "          'thought': 1,\n",
      "          'safe': 1,\n",
      "          'enough': 1,\n",
      "          'priceless': 1,\n",
      "          'stained': 1,\n",
      "          'glass': 1,\n",
      "          'windows': 1,\n",
      "          'nin': 1,\n",
      "          'hard': 1,\n",
      "          'nearly': 1,\n",
      "          'deserted': 1,\n",
      "          'due': 1,\n",
      "          'flooding': 1,\n",
      "          'neveryone': 1,\n",
      "          'evacuate': 1,\n",
      "          'raining': 1,\n",
      "          'rising': 1,\n",
      "          'high': 1,\n",
      "          'buildings': 1,\n",
      "          'submerged': 1,\n",
      "          'nearby': 1,\n",
      "          'dam': 1,\n",
      "          'nenter': 1,\n",
      "          'working': 1,\n",
      "          'class': 1,\n",
      "          'smartalecky': 1,\n",
      "          'new': 1,\n",
      "          'armored': 1,\n",
      "          'car': 1,\n",
      "          'christian': 1,\n",
      "          'slater': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'security': 1,\n",
      "          'truck': 1,\n",
      "          'carrying': 1,\n",
      "          'three': 1,\n",
      "          'million': 1,\n",
      "          'gets': 1,\n",
      "          'stuck': 1,\n",
      "          'street': 1,\n",
      "          'waylaid': 1,\n",
      "          'ntom': 1,\n",
      "          'choice': 1,\n",
      "          'grab': 1,\n",
      "          'bag': 1,\n",
      "          'money': 1,\n",
      "          'hide': 1,\n",
      "          'swim': 1,\n",
      "          'life': 1,\n",
      "          'nthis': 1,\n",
      "          'action': 1,\n",
      "          'jet': 1,\n",
      "          'skis': 1,\n",
      "          'speedboat': 1,\n",
      "          'chases': 1,\n",
      "          'gun': 1,\n",
      "          'battles': 1,\n",
      "          'tries': 1,\n",
      "          'evade': 1,\n",
      "          'outsmart': 1,\n",
      "          'corrupt': 1,\n",
      "          'cops': 1,\n",
      "          'answer': 1,\n",
      "          'befriended': 1,\n",
      "          'aided': 1,\n",
      "          'spunky': 1,\n",
      "          'churchgoing': 1,\n",
      "          'young': 1,\n",
      "          'woman': 1,\n",
      "          'minnie': 1,\n",
      "          'nbut': 1,\n",
      "          'unknown': 1,\n",
      "          'never': 1,\n",
      "          'heard': 1,\n",
      "          'toms': 1,\n",
      "          'initial': 1,\n",
      "          'nwill': 1,\n",
      "          'survive': 1,\n",
      "          'natural': 1,\n",
      "          'manmade': 1,\n",
      "          'disasters': 1,\n",
      "          'nopinion': 1,\n",
      "          'dont': 1,\n",
      "          'expect': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'issues': 1,\n",
      "          'dramatics': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'hiding': 1,\n",
      "          'running': 1,\n",
      "          'swimming': 1,\n",
      "          'shooting': 1,\n",
      "          'saving': 1,\n",
      "          'handcuffed': 1,\n",
      "          'heroes': 1,\n",
      "          'drowning': 1,\n",
      "          'thats': 1,\n",
      "          'escapist': 1,\n",
      "          'fun': 1,\n",
      "          'nrelax': 1,\n",
      "          'take': 1,\n",
      "          'shoes': 1,\n",
      "          'popcorn': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'gangster': 6,\n",
      "          'funny': 6,\n",
      "          'vitti': 5,\n",
      "          'nthe': 5,\n",
      "          'film': 5,\n",
      "          'comedy': 4,\n",
      "          'analyze': 4,\n",
      "          'good': 4,\n",
      "          'de': 4,\n",
      "          'niro': 4,\n",
      "          'although': 3,\n",
      "          'kudrow': 3,\n",
      "          'comic': 3,\n",
      "          'never': 3,\n",
      "          'role': 3,\n",
      "          'little': 3,\n",
      "          'new': 2,\n",
      "          'enough': 2,\n",
      "          'movie': 2,\n",
      "          'nbilly': 2,\n",
      "          'crystal': 2,\n",
      "          'plays': 2,\n",
      "          'wiseguy': 2,\n",
      "          'ben': 2,\n",
      "          'patient': 2,\n",
      "          'hes': 2,\n",
      "          'really': 2,\n",
      "          'nall': 2,\n",
      "          'done': 2,\n",
      "          'also': 2,\n",
      "          'fun': 2,\n",
      "          'city': 2,\n",
      "          'slickers': 2,\n",
      "          'given': 2,\n",
      "          'nhes': 2,\n",
      "          'pretty': 2,\n",
      "          'character': 2,\n",
      "          'nrobert': 2,\n",
      "          'playing': 2,\n",
      "          'serious': 2,\n",
      "          'rather': 2,\n",
      "          'well': 2,\n",
      "          'screen': 2,\n",
      "          'cast': 2,\n",
      "          'made': 2,\n",
      "          'goodfellas': 2,\n",
      "          'like': 2,\n",
      "          'nit': 2,\n",
      "          'parody': 2,\n",
      "          'plot': 2,\n",
      "          'points': 2,\n",
      "          'suddenly': 2,\n",
      "          'reason': 2,\n",
      "          'somewhat': 2,\n",
      "          'script': 2,\n",
      "          'ramis': 2,\n",
      "          'immortal': 2,\n",
      "          'groundhog': 2,\n",
      "          'day': 2,\n",
      "          'audience': 2,\n",
      "          'wont': 2,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'compared': 1,\n",
      "          'hit': 1,\n",
      "          'hbo': 1,\n",
      "          'drama': 1,\n",
      "          'sopranos': 1,\n",
      "          'witty': 1,\n",
      "          'entertaining': 1,\n",
      "          'right': 1,\n",
      "          'shrink': 1,\n",
      "          'sobol': 1,\n",
      "          'happens': 1,\n",
      "          'boss': 1,\n",
      "          'paul': 1,\n",
      "          'nben': 1,\n",
      "          'wants': 1,\n",
      "          'nothing': 1,\n",
      "          'get': 1,\n",
      "          'married': 1,\n",
      "          'laura': 1,\n",
      "          'macnamara': 1,\n",
      "          'wouldnt': 1,\n",
      "          'help': 1,\n",
      "          'nbut': 1,\n",
      "          'soon': 1,\n",
      "          'drawn': 1,\n",
      "          'worlds': 1,\n",
      "          'reluctantly': 1,\n",
      "          'helps': 1,\n",
      "          'sort': 1,\n",
      "          'life': 1,\n",
      "          'fashion': 1,\n",
      "          'course': 1,\n",
      "          'nalthough': 1,\n",
      "          'brilliant': 1,\n",
      "          'rubbish': 1,\n",
      "          'makes': 1,\n",
      "          'ride': 1,\n",
      "          'hasnt': 1,\n",
      "          'since': 1,\n",
      "          'way': 1,\n",
      "          'back': 1,\n",
      "          'early': 1,\n",
      "          '90s': 1,\n",
      "          'lets': 1,\n",
      "          'fully': 1,\n",
      "          'exploit': 1,\n",
      "          'act': 1,\n",
      "          'close': 1,\n",
      "          'hilarious': 1,\n",
      "          'dead': 1,\n",
      "          'straight': 1,\n",
      "          'coming': 1,\n",
      "          'unaware': 1,\n",
      "          'gold': 1,\n",
      "          'mine': 1,\n",
      "          'nlisa': 1,\n",
      "          'barely': 1,\n",
      "          'seen': 1,\n",
      "          'crystals': 1,\n",
      "          'estranged': 1,\n",
      "          'wife': 1,\n",
      "          'basically': 1,\n",
      "          'reprises': 1,\n",
      "          'phoebe': 1,\n",
      "          'v': 1,\n",
      "          'series': 1,\n",
      "          'friends': 1,\n",
      "          'getting': 1,\n",
      "          'tiresome': 1,\n",
      "          'doesnt': 1,\n",
      "          'come': 1,\n",
      "          'supporting': 1,\n",
      "          'apparently': 1,\n",
      "          'entire': 1,\n",
      "          'casino': 1,\n",
      "          'caricatures': 1,\n",
      "          'especially': 1,\n",
      "          'vittis': 1,\n",
      "          'bodyguard': 1,\n",
      "          'jelly': 1,\n",
      "          'joe': 1,\n",
      "          'viterelli': 1,\n",
      "          'genuinely': 1,\n",
      "          'proper': 1,\n",
      "          'laughs': 1,\n",
      "          'instead': 1,\n",
      "          'hard': 1,\n",
      "          'ass': 1,\n",
      "          'talking': 1,\n",
      "          'sometimes': 1,\n",
      "          'gets': 1,\n",
      "          'bloody': 1,\n",
      "          'light': 1,\n",
      "          'hearted': 1,\n",
      "          'strangely': 1,\n",
      "          'fits': 1,\n",
      "          'nspoofs': 1,\n",
      "          'famous': 1,\n",
      "          'movies': 1,\n",
      "          'including': 1,\n",
      "          'nice': 1,\n",
      "          'godfather': 1,\n",
      "          'italian': 1,\n",
      "          'tunes': 1,\n",
      "          'throughout': 1,\n",
      "          'soundtrack': 1,\n",
      "          'contribute': 1,\n",
      "          'ntheres': 1,\n",
      "          'odd': 1,\n",
      "          'fbi': 1,\n",
      "          'guys': 1,\n",
      "          'appear': 1,\n",
      "          'disappear': 1,\n",
      "          'apparent': 1,\n",
      "          'true': 1,\n",
      "          'chequered': 1,\n",
      "          'production': 1,\n",
      "          'history': 1,\n",
      "          'perhaps': 1,\n",
      "          'expanded': 1,\n",
      "          'earlier': 1,\n",
      "          'version': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'hollywood': 1,\n",
      "          'know': 1,\n",
      "          'nharold': 1,\n",
      "          'best': 1,\n",
      "          'known': 1,\n",
      "          'egon': 1,\n",
      "          'ghostbusters': 1,\n",
      "          'deft': 1,\n",
      "          'touch': 1,\n",
      "          'directing': 1,\n",
      "          'shown': 1,\n",
      "          'less': 1,\n",
      "          'caddyshack': 1,\n",
      "          'potential': 1,\n",
      "          'scene': 1,\n",
      "          'dug': 1,\n",
      "          'presented': 1,\n",
      "          'written': 1,\n",
      "          'along': 1,\n",
      "          'peter': 1,\n",
      "          'tolan': 1,\n",
      "          'ken': 1,\n",
      "          'lonergan': 1,\n",
      "          'starts': 1,\n",
      "          'remains': 1,\n",
      "          'sadly': 1,\n",
      "          'peters': 1,\n",
      "          'last': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'wrongly': 1,\n",
      "          'enters': 1,\n",
      "          'territory': 1,\n",
      "          'short': 1,\n",
      "          'however': 1,\n",
      "          'interest': 1,\n",
      "          'waning': 1,\n",
      "          'goes': 1,\n",
      "          'rushed': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'ending': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'nanalyze': 1,\n",
      "          'certainly': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'sobbing': 1,\n",
      "          'watch': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'seem': 1,\n",
      "          'forced': 1,\n",
      "          'think': 1,\n",
      "          'intentional': 1,\n",
      "          'ncrystal': 1,\n",
      "          'likeable': 1,\n",
      "          'years': 1,\n",
      "          'time': 1,\n",
      "          'possible': 1,\n",
      "          'thing': 1,\n",
      "          'awesome': 1,\n",
      "          'nits': 1,\n",
      "          'probably': 1,\n",
      "          'remembered': 1,\n",
      "          'much': 1,\n",
      "          'leave': 1,\n",
      "          'feel': 1,\n",
      "          'cheated': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cusack': 5,\n",
      "          'malkovich': 4,\n",
      "          'nthe': 4,\n",
      "          'john': 3,\n",
      "          'quite': 3,\n",
      "          'njohn': 3,\n",
      "          'time': 3,\n",
      "          'ni': 3,\n",
      "          'nit': 3,\n",
      "          'film': 2,\n",
      "          'see': 2,\n",
      "          'films': 2,\n",
      "          'falls': 2,\n",
      "          'diaz': 2,\n",
      "          'nwhen': 2,\n",
      "          'finally': 2,\n",
      "          'nits': 2,\n",
      "          'portal': 2,\n",
      "          'isnt': 2,\n",
      "          'becomes': 2,\n",
      "          'mind': 2,\n",
      "          'control': 2,\n",
      "          'like': 2,\n",
      "          'really': 2,\n",
      "          'could': 2,\n",
      "          'become': 2,\n",
      "          'act': 2,\n",
      "          'something': 2,\n",
      "          'well': 2,\n",
      "          'better': 2,\n",
      "          'attention': 2,\n",
      "          'type': 1,\n",
      "          'need': 1,\n",
      "          'ntodays': 1,\n",
      "          'either': 1,\n",
      "          'blockbusters': 1,\n",
      "          'entertain': 1,\n",
      "          'us': 1,\n",
      "          'tiresome': 1,\n",
      "          'formulas': 1,\n",
      "          'similar': 1,\n",
      "          'themes': 1,\n",
      "          'nmalkovich': 1,\n",
      "          'none': 1,\n",
      "          'categories': 1,\n",
      "          'refreshing': 1,\n",
      "          'occur': 1,\n",
      "          'nthis': 1,\n",
      "          'strangely': 1,\n",
      "          'provoking': 1,\n",
      "          'story': 1,\n",
      "          'actually': 1,\n",
      "          'somewhat': 1,\n",
      "          'understandable': 1,\n",
      "          'plays': 1,\n",
      "          'puppeteer': 1,\n",
      "          'trying': 1,\n",
      "          'make': 1,\n",
      "          'big': 1,\n",
      "          'nhis': 1,\n",
      "          'wife': 1,\n",
      "          'cameron': 1,\n",
      "          'supports': 1,\n",
      "          'working': 1,\n",
      "          'petstore': 1,\n",
      "          'explains': 1,\n",
      "          'obscure': 1,\n",
      "          'pets': 1,\n",
      "          'keep': 1,\n",
      "          'apartment': 1,\n",
      "          'realizes': 1,\n",
      "          'needs': 1,\n",
      "          'get': 1,\n",
      "          'job': 1,\n",
      "          'finds': 1,\n",
      "          'ad': 1,\n",
      "          'filing': 1,\n",
      "          'clerk': 1,\n",
      "          'reaches': 1,\n",
      "          'building': 1,\n",
      "          'arrives': 1,\n",
      "          '7': 1,\n",
      "          '12': 1,\n",
      "          'floor': 1,\n",
      "          'discovers': 1,\n",
      "          'secret': 1,\n",
      "          'leads': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'meets': 1,\n",
      "          'business': 1,\n",
      "          'partner': 1,\n",
      "          'catherine': 1,\n",
      "          'keener': 1,\n",
      "          'madly': 1,\n",
      "          'love': 1,\n",
      "          'problem': 1,\n",
      "          'interest': 1,\n",
      "          'ever': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'toy': 1,\n",
      "          'fact': 1,\n",
      "          'cusacks': 1,\n",
      "          'dream': 1,\n",
      "          'nbeing': 1,\n",
      "          'inside': 1,\n",
      "          'malkovichs': 1,\n",
      "          'gave': 1,\n",
      "          'opportunity': 1,\n",
      "          'basically': 1,\n",
      "          'mlakovich': 1,\n",
      "          'puppet': 1,\n",
      "          'fulfill': 1,\n",
      "          'fantasies': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'much': 1,\n",
      "          'attached': 1,\n",
      "          'discovery': 1,\n",
      "          'nin': 1,\n",
      "          'opinion': 1,\n",
      "          'idea': 1,\n",
      "          'absolutely': 1,\n",
      "          'brilliant': 1,\n",
      "          'scary': 1,\n",
      "          'think': 1,\n",
      "          'someone': 1,\n",
      "          'makes': 1,\n",
      "          'wonder': 1,\n",
      "          'sometimes': 1,\n",
      "          'blurt': 1,\n",
      "          'things': 1,\n",
      "          'blue': 1,\n",
      "          'neven': 1,\n",
      "          'script': 1,\n",
      "          'super': 1,\n",
      "          'sharp': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'find': 1,\n",
      "          'ending': 1,\n",
      "          'displeasing': 1,\n",
      "          'lead': 1,\n",
      "          'least': 1,\n",
      "          'amusing': 1,\n",
      "          'conclusion': 1,\n",
      "          'tried': 1,\n",
      "          'explain': 1,\n",
      "          'mythology': 1,\n",
      "          'portals': 1,\n",
      "          'made': 1,\n",
      "          'seem': 1,\n",
      "          'rushed': 1,\n",
      "          'nother': 1,\n",
      "          'enjoyable': 1,\n",
      "          'acting': 1,\n",
      "          'delightful': 1,\n",
      "          'given': 1,\n",
      "          'chance': 1,\n",
      "          'prove': 1,\n",
      "          'ability': 1,\n",
      "          'nhes': 1,\n",
      "          'far': 1,\n",
      "          'underrated': 1,\n",
      "          'actor': 1,\n",
      "          'due': 1,\n",
      "          'lack': 1,\n",
      "          'popularity': 1,\n",
      "          'im': 1,\n",
      "          'hoping': 1,\n",
      "          'change': 1,\n",
      "          'ncameron': 1,\n",
      "          'usual': 1,\n",
      "          'charming': 1,\n",
      "          'self': 1,\n",
      "          'although': 1,\n",
      "          'felt': 1,\n",
      "          'part': 1,\n",
      "          'wrong': 1,\n",
      "          'pulled': 1,\n",
      "          'continues': 1,\n",
      "          'creep': 1,\n",
      "          'people': 1,\n",
      "          'eerie': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'tone': 1,\n",
      "          'voice': 1,\n",
      "          'nwho': 1,\n",
      "          'elses': 1,\n",
      "          'would': 1,\n",
      "          'explore': 1,\n",
      "          'director': 1,\n",
      "          'spike': 1,\n",
      "          'jonze': 1,\n",
      "          'appeared': 1,\n",
      "          'last': 1,\n",
      "          'months': 1,\n",
      "          'three': 1,\n",
      "          'kings': 1,\n",
      "          'catches': 1,\n",
      "          'project': 1,\n",
      "          'knew': 1,\n",
      "          'bizzare': 1,\n",
      "          'extreme': 1,\n",
      "          'nhe': 1,\n",
      "          'likely': 1,\n",
      "          'receive': 1,\n",
      "          'media': 1,\n",
      "          'n': 1,\n",
      "          'excellent': 1,\n",
      "          'definitly': 1,\n",
      "          'entertaining': 1,\n",
      "          'eaisly': 1,\n",
      "          'cult': 1,\n",
      "          'favorite': 1,\n",
      "          'nwhats': 1,\n",
      "          'even': 1,\n",
      "          'puzzling': 1,\n",
      "          'message': 1,\n",
      "          'nick': 1,\n",
      "          'lyons': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dance': 11,\n",
      "          'shall': 6,\n",
      "          'story': 3,\n",
      "          'sugiyama': 3,\n",
      "          'school': 3,\n",
      "          'rather': 3,\n",
      "          'nsuo': 3,\n",
      "          'japanese': 2,\n",
      "          'koji': 2,\n",
      "          'yakusho': 2,\n",
      "          'one': 2,\n",
      "          'mai': 2,\n",
      "          'dancing': 2,\n",
      "          'sugiyamas': 2,\n",
      "          'wife': 2,\n",
      "          'becomes': 2,\n",
      "          'nin': 2,\n",
      "          'film': 2,\n",
      "          'comedy': 2,\n",
      "          'matter': 2,\n",
      "          'nits': 2,\n",
      "          'new': 2,\n",
      "          'personalities': 2,\n",
      "          'small': 2,\n",
      "          'steps': 2,\n",
      "          'feelgood': 1,\n",
      "          'formulaic': 1,\n",
      "          'may': 1,\n",
      "          'way': 1,\n",
      "          'nalso': 1,\n",
      "          'demonstrates': 1,\n",
      "          'kind': 1,\n",
      "          'charming': 1,\n",
      "          'restraint': 1,\n",
      "          'dont': 1,\n",
      "          'often': 1,\n",
      "          'find': 1,\n",
      "          'american': 1,\n",
      "          'films': 1,\n",
      "          'nthis': 1,\n",
      "          'import': 1,\n",
      "          'tells': 1,\n",
      "          'middleaged': 1,\n",
      "          'accountant': 1,\n",
      "          'named': 1,\n",
      "          'whose': 1,\n",
      "          'mundane': 1,\n",
      "          'life': 1,\n",
      "          'shaken': 1,\n",
      "          'night': 1,\n",
      "          'spots': 1,\n",
      "          'beautiful': 1,\n",
      "          'kishikawa': 1,\n",
      "          'tamiyo': 1,\n",
      "          'kusakari': 1,\n",
      "          'window': 1,\n",
      "          'nintrigued': 1,\n",
      "          'melancholy': 1,\n",
      "          'demeanor': 1,\n",
      "          'slightly': 1,\n",
      "          'infatuated': 1,\n",
      "          'signs': 1,\n",
      "          'weekly': 1,\n",
      "          'classes': 1,\n",
      "          'much': 1,\n",
      "          'amazement': 1,\n",
      "          'ends': 1,\n",
      "          'attracted': 1,\n",
      "          'young': 1,\n",
      "          'sensei': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'hideko': 1,\n",
      "          'hara': 1,\n",
      "          'suspicious': 1,\n",
      "          'late': 1,\n",
      "          'wednesday': 1,\n",
      "          'nights': 1,\n",
      "          'sets': 1,\n",
      "          'private': 1,\n",
      "          'detective': 1,\n",
      "          'husbands': 1,\n",
      "          'trail': 1,\n",
      "          'hollywood': 1,\n",
      "          'bet': 1,\n",
      "          'subplot': 1,\n",
      "          'would': 1,\n",
      "          'turned': 1,\n",
      "          'stream': 1,\n",
      "          'slapstick': 1,\n",
      "          'crazy': 1,\n",
      "          'misunderstandings': 1,\n",
      "          'writerdirector': 1,\n",
      "          'masayuki': 1,\n",
      "          'suo': 1,\n",
      "          'dispenses': 1,\n",
      "          'minutes': 1,\n",
      "          'using': 1,\n",
      "          'set': 1,\n",
      "          'later': 1,\n",
      "          'character': 1,\n",
      "          'interactions': 1,\n",
      "          'letting': 1,\n",
      "          'overwhelm': 1,\n",
      "          'pratfalls': 1,\n",
      "          'nneither': 1,\n",
      "          'make': 1,\n",
      "          'climactic': 1,\n",
      "          'moment': 1,\n",
      "          'victory': 1,\n",
      "          'competition': 1,\n",
      "          'hero': 1,\n",
      "          'meanspirited': 1,\n",
      "          'token': 1,\n",
      "          'rival': 1,\n",
      "          'gives': 1,\n",
      "          'graceful': 1,\n",
      "          'movements': 1,\n",
      "          'subject': 1,\n",
      "          'allowing': 1,\n",
      "          'humor': 1,\n",
      "          'flow': 1,\n",
      "          'characters': 1,\n",
      "          'forcing': 1,\n",
      "          'upon': 1,\n",
      "          'nan': 1,\n",
      "          'opening': 1,\n",
      "          'prologue': 1,\n",
      "          'ngoes': 1,\n",
      "          'effort': 1,\n",
      "          'place': 1,\n",
      "          'sociological': 1,\n",
      "          'perspective': 1,\n",
      "          'explaining': 1,\n",
      "          'contrary': 1,\n",
      "          'ballroom': 1,\n",
      "          'sense': 1,\n",
      "          'propriety': 1,\n",
      "          'forced': 1,\n",
      "          'message': 1,\n",
      "          'doesnt': 1,\n",
      "          'need': 1,\n",
      "          'culturespecific': 1,\n",
      "          'angle': 1,\n",
      "          'nthe': 1,\n",
      "          'nplays': 1,\n",
      "          'role': 1,\n",
      "          'singles': 1,\n",
      "          'mixer': 1,\n",
      "          'everyone': 1,\n",
      "          'vaguely': 1,\n",
      "          'embarrassed': 1,\n",
      "          'yet': 1,\n",
      "          'taking': 1,\n",
      "          'opportunity': 1,\n",
      "          'try': 1,\n",
      "          'nmost': 1,\n",
      "          'amusing': 1,\n",
      "          'among': 1,\n",
      "          'adopted': 1,\n",
      "          'coworker': 1,\n",
      "          'mr': 1,\n",
      "          'aoki': 1,\n",
      "          'naoto': 1,\n",
      "          'takenaka': 1,\n",
      "          'balding': 1,\n",
      "          'systems': 1,\n",
      "          'analyst': 1,\n",
      "          'fiery': 1,\n",
      "          'latin': 1,\n",
      "          'lover': 1,\n",
      "          'dons': 1,\n",
      "          'frizzy': 1,\n",
      "          'wig': 1,\n",
      "          'begins': 1,\n",
      "          'rumba': 1,\n",
      "          'nsugiyamas': 1,\n",
      "          'awakening': 1,\n",
      "          'less': 1,\n",
      "          'overt': 1,\n",
      "          'wonderful': 1,\n",
      "          'job': 1,\n",
      "          'showing': 1,\n",
      "          'transformation': 1,\n",
      "          'delicate': 1,\n",
      "          'performance': 1,\n",
      "          'huge': 1,\n",
      "          'heart': 1,\n",
      "          'nshall': 1,\n",
      "          'nis': 1,\n",
      "          'fairly': 1,\n",
      "          'lightweight': 1,\n",
      "          'experience': 1,\n",
      "          'makes': 1,\n",
      "          'final': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'long': 1,\n",
      "          'sit': 1,\n",
      "          'crams': 1,\n",
      "          'lot': 1,\n",
      "          'exposition': 1,\n",
      "          'little': 1,\n",
      "          'time': 1,\n",
      "          'including': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'detailed': 1,\n",
      "          'backstory': 1,\n",
      "          'resulting': 1,\n",
      "          'sluggish': 1,\n",
      "          'march': 1,\n",
      "          'towards': 1,\n",
      "          'resolution': 1,\n",
      "          'nit': 1,\n",
      "          'nfeels': 1,\n",
      "          'hollywoodconventional': 1,\n",
      "          'attempting': 1,\n",
      "          'blindside': 1,\n",
      "          'audience': 1,\n",
      "          'truckload': 1,\n",
      "          'emotional': 1,\n",
      "          'catharsis': 1,\n",
      "          'might': 1,\n",
      "          'better': 1,\n",
      "          'advised': 1,\n",
      "          'conclude': 1,\n",
      "          'gem': 1,\n",
      "          'scene': 1,\n",
      "          'take': 1,\n",
      "          'first': 1,\n",
      "          'tentative': 1,\n",
      "          'together': 1,\n",
      "          'nthats': 1,\n",
      "          'real': 1,\n",
      "          'joy': 1,\n",
      "          'nconveys': 1,\n",
      "          'ability': 1,\n",
      "          'create': 1,\n",
      "          'intoxicating': 1,\n",
      "          'mood': 1,\n",
      "          'romance': 1,\n",
      "          'soften': 1,\n",
      "          'stiffest': 1,\n",
      "          'shirt': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'harry': 8,\n",
      "          'panama': 5,\n",
      "          'life': 5,\n",
      "          'tailor': 4,\n",
      "          'characters': 4,\n",
      "          'osnard': 4,\n",
      "          'canal': 4,\n",
      "          'spy': 3,\n",
      "          'offers': 3,\n",
      "          'story': 3,\n",
      "          'nosnard': 3,\n",
      "          'new': 3,\n",
      "          'rush': 3,\n",
      "          'knows': 3,\n",
      "          'playing': 3,\n",
      "          'one': 3,\n",
      "          'presence': 2,\n",
      "          'ninstead': 2,\n",
      "          'get': 2,\n",
      "          'john': 2,\n",
      "          'also': 2,\n",
      "          'screenplay': 2,\n",
      "          'film': 2,\n",
      "          'time': 2,\n",
      "          'nbrosnan': 2,\n",
      "          'british': 2,\n",
      "          'way': 2,\n",
      "          'information': 2,\n",
      "          'secret': 2,\n",
      "          'nhe': 2,\n",
      "          'wife': 2,\n",
      "          'louisa': 2,\n",
      "          'jamie': 2,\n",
      "          'lee': 2,\n",
      "          'curtis': 2,\n",
      "          'little': 2,\n",
      "          'lies': 2,\n",
      "          'nthe': 2,\n",
      "          'leading': 2,\n",
      "          'best': 2,\n",
      "          'city': 2,\n",
      "          'character': 2,\n",
      "          'using': 2,\n",
      "          'supporting': 2,\n",
      "          'great': 2,\n",
      "          'two': 2,\n",
      "          'adds': 2,\n",
      "          'people': 2,\n",
      "          'different': 1,\n",
      "          'kind': 1,\n",
      "          'movie': 1,\n",
      "          'ndespite': 1,\n",
      "          'pierce': 1,\n",
      "          'brosnan': 1,\n",
      "          'nary': 1,\n",
      "          'hint': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'flash': 1,\n",
      "          'big': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'leering': 1,\n",
      "          'super': 1,\n",
      "          'villains': 1,\n",
      "          'emptyheaded': 1,\n",
      "          'femme': 1,\n",
      "          'fatales': 1,\n",
      "          'interesting': 1,\n",
      "          'intriguing': 1,\n",
      "          'situation': 1,\n",
      "          'nbased': 1,\n",
      "          'novel': 1,\n",
      "          'le': 1,\n",
      "          'carr': 1,\n",
      "          'cowrote': 1,\n",
      "          'viewers': 1,\n",
      "          'something': 1,\n",
      "          'rarely': 1,\n",
      "          'seen': 1,\n",
      "          'theaters': 1,\n",
      "          'year': 1,\n",
      "          'solid': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'welltold': 1,\n",
      "          'plays': 1,\n",
      "          'andy': 1,\n",
      "          'operative': 1,\n",
      "          'walking': 1,\n",
      "          'thin': 1,\n",
      "          'ice': 1,\n",
      "          'nhis': 1,\n",
      "          'superiors': 1,\n",
      "          'ship': 1,\n",
      "          'making': 1,\n",
      "          'sure': 1,\n",
      "          'understands': 1,\n",
      "          'better': 1,\n",
      "          'screw': 1,\n",
      "          'placement': 1,\n",
      "          'arrives': 1,\n",
      "          'tropics': 1,\n",
      "          'virtually': 1,\n",
      "          'oozing': 1,\n",
      "          'contempt': 1,\n",
      "          'coworkers': 1,\n",
      "          'home': 1,\n",
      "          'base': 1,\n",
      "          'nwhen': 1,\n",
      "          'shown': 1,\n",
      "          'bridge': 1,\n",
      "          'americas': 1,\n",
      "          'person': 1,\n",
      "          'marveling': 1,\n",
      "          'fact': 1,\n",
      "          'since': 1,\n",
      "          'creation': 1,\n",
      "          'structure': 1,\n",
      "          'sole': 1,\n",
      "          'connection': 1,\n",
      "          'north': 1,\n",
      "          'south': 1,\n",
      "          'america': 1,\n",
      "          'barely': 1,\n",
      "          'keeps': 1,\n",
      "          'yawning': 1,\n",
      "          'clearly': 1,\n",
      "          'relishes': 1,\n",
      "          'chance': 1,\n",
      "          'antithesis': 1,\n",
      "          '007': 1,\n",
      "          'investing': 1,\n",
      "          'suave': 1,\n",
      "          'distinct': 1,\n",
      "          'reptilian': 1,\n",
      "          'quality': 1,\n",
      "          'coupled': 1,\n",
      "          'air': 1,\n",
      "          'indifference': 1,\n",
      "          'irks': 1,\n",
      "          'fellows': 1,\n",
      "          'end': 1,\n",
      "          'nsearching': 1,\n",
      "          'government': 1,\n",
      "          'sets': 1,\n",
      "          'sights': 1,\n",
      "          'pendel': 1,\n",
      "          'geoffrey': 1,\n",
      "          'unctuous': 1,\n",
      "          'serving': 1,\n",
      "          'panamanian': 1,\n",
      "          'elite': 1,\n",
      "          'nharry': 1,\n",
      "          'claims': 1,\n",
      "          'transplant': 1,\n",
      "          'britains': 1,\n",
      "          'renowned': 1,\n",
      "          'saville': 1,\n",
      "          'row': 1,\n",
      "          'excon': 1,\n",
      "          'served': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'prison': 1,\n",
      "          'torching': 1,\n",
      "          'uncles': 1,\n",
      "          'shop': 1,\n",
      "          'insurance': 1,\n",
      "          'scam': 1,\n",
      "          'ears': 1,\n",
      "          'debt': 1,\n",
      "          'spent': 1,\n",
      "          'fortune': 1,\n",
      "          'unsuccessful': 1,\n",
      "          'farm': 1,\n",
      "          'pay': 1,\n",
      "          'gathered': 1,\n",
      "          'upscale': 1,\n",
      "          'clientele': 1,\n",
      "          'neager': 1,\n",
      "          'comply': 1,\n",
      "          'starts': 1,\n",
      "          'concocting': 1,\n",
      "          'tidbits': 1,\n",
      "          'keep': 1,\n",
      "          'money': 1,\n",
      "          'flowing': 1,\n",
      "          'nbefore': 1,\n",
      "          'long': 1,\n",
      "          'forced': 1,\n",
      "          'loving': 1,\n",
      "          'aide': 1,\n",
      "          'director': 1,\n",
      "          'nharrys': 1,\n",
      "          'build': 1,\n",
      "          'eventually': 1,\n",
      "          'taking': 1,\n",
      "          'turns': 1,\n",
      "          'reports': 1,\n",
      "          'silent': 1,\n",
      "          'opposition': 1,\n",
      "          'group': 1,\n",
      "          'threatening': 1,\n",
      "          'upset': 1,\n",
      "          'balance': 1,\n",
      "          'control': 1,\n",
      "          'bogus': 1,\n",
      "          'revelation': 1,\n",
      "          'proves': 1,\n",
      "          'explosive': 1,\n",
      "          'meetings': 1,\n",
      "          'washington': 1,\n",
      "          'c': 1,\n",
      "          'protect': 1,\n",
      "          'vital': 1,\n",
      "          'waterway': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'wallows': 1,\n",
      "          'newfound': 1,\n",
      "          'status': 1,\n",
      "          'enjoying': 1,\n",
      "          'offer': 1,\n",
      "          'wooing': 1,\n",
      "          'attractive': 1,\n",
      "          'coworker': 1,\n",
      "          'nand': 1,\n",
      "          'grows': 1,\n",
      "          'ever': 1,\n",
      "          'fretful': 1,\n",
      "          'fearing': 1,\n",
      "          'consequences': 1,\n",
      "          'clients': 1,\n",
      "          'mention': 1,\n",
      "          'learn': 1,\n",
      "          'ngeoffrey': 1,\n",
      "          'wonderful': 1,\n",
      "          'fawning': 1,\n",
      "          'customers': 1,\n",
      "          'day': 1,\n",
      "          'savoring': 1,\n",
      "          'rich': 1,\n",
      "          'family': 1,\n",
      "          'evenings': 1,\n",
      "          'agent': 1,\n",
      "          'hours': 1,\n",
      "          'benefactor': 1,\n",
      "          'nrush': 1,\n",
      "          'makes': 1,\n",
      "          'credible': 1,\n",
      "          'figure': 1,\n",
      "          'presenting': 1,\n",
      "          'various': 1,\n",
      "          'levels': 1,\n",
      "          'effectively': 1,\n",
      "          'remains': 1,\n",
      "          'sympathetic': 1,\n",
      "          'despite': 1,\n",
      "          'duplicity': 1,\n",
      "          'nafter': 1,\n",
      "          'gaining': 1,\n",
      "          'fame': 1,\n",
      "          'larger': 1,\n",
      "          'flips': 1,\n",
      "          'everything': 1,\n",
      "          'around': 1,\n",
      "          'role': 1,\n",
      "          'energy': 1,\n",
      "          'depict': 1,\n",
      "          'quiet': 1,\n",
      "          'desperation': 1,\n",
      "          'man': 1,\n",
      "          'slowly': 1,\n",
      "          'realizing': 1,\n",
      "          'solution': 1,\n",
      "          'troubles': 1,\n",
      "          'may': 1,\n",
      "          'worse': 1,\n",
      "          'original': 1,\n",
      "          'problems': 1,\n",
      "          'nalthough': 1,\n",
      "          'gets': 1,\n",
      "          'far': 1,\n",
      "          'screen': 1,\n",
      "          'imbues': 1,\n",
      "          'depth': 1,\n",
      "          'greater': 1,\n",
      "          'provides': 1,\n",
      "          'nof': 1,\n",
      "          'central': 1,\n",
      "          'exhibits': 1,\n",
      "          'maturity': 1,\n",
      "          'genuine': 1,\n",
      "          'selfconfidence': 1,\n",
      "          'ncurtis': 1,\n",
      "          'favorite': 1,\n",
      "          'female': 1,\n",
      "          'actors': 1,\n",
      "          'whiplash': 1,\n",
      "          'smart': 1,\n",
      "          'sultry': 1,\n",
      "          'charismatic': 1,\n",
      "          'deserves': 1,\n",
      "          'roles': 1,\n",
      "          'nspeaking': 1,\n",
      "          'ones': 1,\n",
      "          'nharold': 1,\n",
      "          'pinter': 1,\n",
      "          'amusing': 1,\n",
      "          'harrys': 1,\n",
      "          'uncle': 1,\n",
      "          'benny': 1,\n",
      "          'pops': 1,\n",
      "          'throughout': 1,\n",
      "          'number': 1,\n",
      "          'creative': 1,\n",
      "          'ways': 1,\n",
      "          'nalso': 1,\n",
      "          'shoring': 1,\n",
      "          'proceedings': 1,\n",
      "          'jon': 1,\n",
      "          'polito': 1,\n",
      "          'corrupt': 1,\n",
      "          'banker': 1,\n",
      "          'dylan': 1,\n",
      "          'baker': 1,\n",
      "          'riot': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'general': 1,\n",
      "          'straight': 1,\n",
      "          'dr': 1,\n",
      "          'strangelove': 1,\n",
      "          'school': 1,\n",
      "          'armed': 1,\n",
      "          'patriotism': 1,\n",
      "          'nbut': 1,\n",
      "          'important': 1,\n",
      "          'secondary': 1,\n",
      "          'performers': 1,\n",
      "          'leonor': 1,\n",
      "          'varela': 1,\n",
      "          'brendan': 1,\n",
      "          'gleeson': 1,\n",
      "          'outstanding': 1,\n",
      "          'wounded': 1,\n",
      "          'activists': 1,\n",
      "          'ntheir': 1,\n",
      "          'weight': 1,\n",
      "          'reminding': 1,\n",
      "          'us': 1,\n",
      "          'beyond': 1,\n",
      "          'charades': 1,\n",
      "          'men': 1,\n",
      "          'real': 1,\n",
      "          'suffered': 1,\n",
      "          'greatly': 1,\n",
      "          'politics': 1,\n",
      "          'connected': 1,\n",
      "          'ndirector': 1,\n",
      "          'boorman': 1,\n",
      "          'additional': 1,\n",
      "          'verisimilitude': 1,\n",
      "          'shooting': 1,\n",
      "          'location': 1,\n",
      "          'merely': 1,\n",
      "          'colorful': 1,\n",
      "          'backdrop': 1,\n",
      "          'adroitly': 1,\n",
      "          'weaves': 1,\n",
      "          'footage': 1,\n",
      "          'aspects': 1,\n",
      "          'metropolis': 1,\n",
      "          'described': 1,\n",
      "          'casablanca': 1,\n",
      "          'without': 1,\n",
      "          'heroes': 1,\n",
      "          'pulsates': 1,\n",
      "          'underling': 1,\n",
      "          'folly': 1,\n",
      "          'foreigners': 1,\n",
      "          'dangerous': 1,\n",
      "          'games': 1,\n",
      "          'could': 1,\n",
      "          'disastrous': 1,\n",
      "          'impact': 1,\n",
      "          'many': 1,\n",
      "          'n': 1,\n",
      "          'succeeds': 1,\n",
      "          'principals': 1,\n",
      "          'behind': 1,\n",
      "          'bright': 1,\n",
      "          'enough': 1,\n",
      "          'make': 1,\n",
      "          'simple': 1,\n",
      "          'entertainment': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'nthe': 6,\n",
      "          'time': 5,\n",
      "          'ni': 5,\n",
      "          'read': 5,\n",
      "          'one': 5,\n",
      "          'scene': 5,\n",
      "          'say': 4,\n",
      "          'book': 4,\n",
      "          'great': 4,\n",
      "          'jack': 4,\n",
      "          'though': 3,\n",
      "          'think': 3,\n",
      "          'sight': 3,\n",
      "          'dialogue': 3,\n",
      "          'soderbergh': 3,\n",
      "          'certainly': 3,\n",
      "          'act': 3,\n",
      "          'make': 3,\n",
      "          'plays': 3,\n",
      "          'nhe': 3,\n",
      "          'gimmick': 3,\n",
      "          'little': 2,\n",
      "          'ive': 2,\n",
      "          'books': 2,\n",
      "          'im': 2,\n",
      "          'first': 2,\n",
      "          'dont': 2,\n",
      "          'havent': 2,\n",
      "          'films': 2,\n",
      "          'based': 2,\n",
      "          'believe': 2,\n",
      "          'quality': 2,\n",
      "          'soderberghs': 2,\n",
      "          'terrific': 2,\n",
      "          'nits': 2,\n",
      "          'nice': 2,\n",
      "          'nout': 2,\n",
      "          'clooney': 2,\n",
      "          'guy': 2,\n",
      "          'also': 2,\n",
      "          'fun': 2,\n",
      "          'minutes': 2,\n",
      "          'later': 2,\n",
      "          'help': 2,\n",
      "          'buddy': 2,\n",
      "          'ving': 2,\n",
      "          'rhames': 2,\n",
      "          'karen': 2,\n",
      "          'lopez': 2,\n",
      "          'another': 2,\n",
      "          'pulp': 2,\n",
      "          'fiction': 2,\n",
      "          'enough': 2,\n",
      "          'comes': 2,\n",
      "          'hes': 2,\n",
      "          'without': 2,\n",
      "          'uses': 2,\n",
      "          'nas': 2,\n",
      "          'actors': 2,\n",
      "          'light': 2,\n",
      "          'scenes': 2,\n",
      "          'good': 2,\n",
      "          'every': 2,\n",
      "          'simply': 2,\n",
      "          'perhaps': 1,\n",
      "          'reading': 1,\n",
      "          'habits': 1,\n",
      "          'really': 1,\n",
      "          'like': 1,\n",
      "          'enjoyed': 1,\n",
      "          'many': 1,\n",
      "          'lifetime': 1,\n",
      "          'nmy': 1,\n",
      "          'problem': 1,\n",
      "          'slow': 1,\n",
      "          'reader': 1,\n",
      "          'dedicated': 1,\n",
      "          'ill': 1,\n",
      "          'enjoy': 1,\n",
      "          'portions': 1,\n",
      "          'set': 1,\n",
      "          'months': 1,\n",
      "          'taken': 1,\n",
      "          'last': 1,\n",
      "          'six': 1,\n",
      "          'weeks': 1,\n",
      "          'get': 1,\n",
      "          'hundred': 1,\n",
      "          'pages': 1,\n",
      "          'anna': 1,\n",
      "          'karenina': 1,\n",
      "          'even': 1,\n",
      "          'loving': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'typically': 1,\n",
      "          'anything': 1,\n",
      "          'created': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'reason': 1,\n",
      "          'bother': 1,\n",
      "          'bit': 1,\n",
      "          'information': 1,\n",
      "          'feel': 1,\n",
      "          'bad': 1,\n",
      "          'admitting': 1,\n",
      "          'exception': 1,\n",
      "          'expectations': 1,\n",
      "          'nhowever': 1,\n",
      "          'necessary': 1,\n",
      "          'beforehand': 1,\n",
      "          'order': 1,\n",
      "          'judge': 1,\n",
      "          'nneedless': 1,\n",
      "          'elmore': 1,\n",
      "          'leonard': 1,\n",
      "          'novel': 1,\n",
      "          'steven': 1,\n",
      "          'new': 1,\n",
      "          'cant': 1,\n",
      "          'faithful': 1,\n",
      "          'adaptation': 1,\n",
      "          'lives': 1,\n",
      "          'leonards': 1,\n",
      "          'vision': 1,\n",
      "          'sharp': 1,\n",
      "          'acting': 1,\n",
      "          'pumping': 1,\n",
      "          'full': 1,\n",
      "          'energy': 1,\n",
      "          'style': 1,\n",
      "          'injected': 1,\n",
      "          'distraction': 1,\n",
      "          '1998s': 1,\n",
      "          'lineup': 1,\n",
      "          'brainless': 1,\n",
      "          'blockbusters': 1,\n",
      "          'hopelessly': 1,\n",
      "          'wishing': 1,\n",
      "          'size': 1,\n",
      "          'mattered': 1,\n",
      "          'proves': 1,\n",
      "          'doesnt': 1,\n",
      "          'originally': 1,\n",
      "          'written': 1,\n",
      "          'george': 1,\n",
      "          'onenote': 1,\n",
      "          'actor': 1,\n",
      "          'incapable': 1,\n",
      "          'depth': 1,\n",
      "          'occasionally': 1,\n",
      "          'showing': 1,\n",
      "          'flair': 1,\n",
      "          'nafter': 1,\n",
      "          'seeing': 1,\n",
      "          'latest': 1,\n",
      "          'performance': 1,\n",
      "          'changed': 1,\n",
      "          'mind': 1,\n",
      "          'forceful': 1,\n",
      "          'presence': 1,\n",
      "          '20': 1,\n",
      "          'million': 1,\n",
      "          'superstars': 1,\n",
      "          'nhere': 1,\n",
      "          'foley': 1,\n",
      "          'middle': 1,\n",
      "          'aged': 1,\n",
      "          'robs': 1,\n",
      "          'banks': 1,\n",
      "          'living': 1,\n",
      "          'opens': 1,\n",
      "          'getting': 1,\n",
      "          'caught': 1,\n",
      "          'car': 1,\n",
      "          'wont': 1,\n",
      "          'start': 1,\n",
      "          'goes': 1,\n",
      "          'jail': 1,\n",
      "          'interesting': 1,\n",
      "          'break': 1,\n",
      "          'five': 1,\n",
      "          'cinematic': 1,\n",
      "          'friend': 1,\n",
      "          'nwere': 1,\n",
      "          'introduced': 1,\n",
      "          'sisco': 1,\n",
      "          'jennifer': 1,\n",
      "          'u': 1,\n",
      "          'marshall': 1,\n",
      "          'conveniently': 1,\n",
      "          'waiting': 1,\n",
      "          'shotgun': 1,\n",
      "          'escapes': 1,\n",
      "          'nfortunately': 1,\n",
      "          'take': 1,\n",
      "          'hostage': 1,\n",
      "          'spend': 1,\n",
      "          'trunk': 1,\n",
      "          'together': 1,\n",
      "          'drives': 1,\n",
      "          'safety': 1,\n",
      "          'central': 1,\n",
      "          'conflict': 1,\n",
      "          'arises': 1,\n",
      "          'become': 1,\n",
      "          'obsessed': 1,\n",
      "          'respective': 1,\n",
      "          'jobs': 1,\n",
      "          'superficially': 1,\n",
      "          'incompatible': 1,\n",
      "          'nwe': 1,\n",
      "          'soon': 1,\n",
      "          'learn': 1,\n",
      "          'told': 1,\n",
      "          'sequence': 1,\n",
      "          'since': 1,\n",
      "          'gritty': 1,\n",
      "          'crime': 1,\n",
      "          'comedy': 1,\n",
      "          'flashbacks': 1,\n",
      "          'arise': 1,\n",
      "          'nat': 1,\n",
      "          'kind': 1,\n",
      "          'felt': 1,\n",
      "          'guess': 1,\n",
      "          'treats': 1,\n",
      "          'material': 1,\n",
      "          'humor': 1,\n",
      "          'everything': 1,\n",
      "          'naturally': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'impressed': 1,\n",
      "          'kafka': 1,\n",
      "          'sex': 1,\n",
      "          'lies': 1,\n",
      "          'videotape': 1,\n",
      "          'excellent': 1,\n",
      "          'nhes': 1,\n",
      "          'artist': 1,\n",
      "          'making': 1,\n",
      "          'obvious': 1,\n",
      "          'pretentious': 1,\n",
      "          'always': 1,\n",
      "          'admirable': 1,\n",
      "          'tricks': 1,\n",
      "          'yes': 1,\n",
      "          'lots': 1,\n",
      "          'freezeframe': 1,\n",
      "          'stuff': 1,\n",
      "          'adds': 1,\n",
      "          'smooth': 1,\n",
      "          'quirky': 1,\n",
      "          'currents': 1,\n",
      "          'said': 1,\n",
      "          'matched': 1,\n",
      "          'nlopez': 1,\n",
      "          'course': 1,\n",
      "          'beautiful': 1,\n",
      "          'sense': 1,\n",
      "          'shes': 1,\n",
      "          'honing': 1,\n",
      "          'skills': 1,\n",
      "          'natural': 1,\n",
      "          'previous': 1,\n",
      "          'ventures': 1,\n",
      "          'stone': 1,\n",
      "          'gave': 1,\n",
      "          'much': 1,\n",
      "          'loathsome': 1,\n",
      "          'uturn': 1,\n",
      "          'two': 1,\n",
      "          'arresting': 1,\n",
      "          'chemistry': 1,\n",
      "          'best': 1,\n",
      "          'far': 1,\n",
      "          'seduction': 1,\n",
      "          'brilliance': 1,\n",
      "          'due': 1,\n",
      "          'part': 1,\n",
      "          'cuts': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'quiet': 1,\n",
      "          'discussion': 1,\n",
      "          'bar': 1,\n",
      "          'physical': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'series': 1,\n",
      "          'soft': 1,\n",
      "          'nuances': 1,\n",
      "          'glances': 1,\n",
      "          'layered': 1,\n",
      "          'upon': 1,\n",
      "          'result': 1,\n",
      "          'better': 1,\n",
      "          'love': 1,\n",
      "          'recent': 1,\n",
      "          'cinema': 1,\n",
      "          'meaningful': 1,\n",
      "          'engrossing': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'strong': 1,\n",
      "          'led': 1,\n",
      "          'alwaysreliable': 1,\n",
      "          'ndennis': 1,\n",
      "          'farina': 1,\n",
      "          'karens': 1,\n",
      "          'father': 1,\n",
      "          'cheadle': 1,\n",
      "          'profoundly': 1,\n",
      "          'stupid': 1,\n",
      "          'villain': 1,\n",
      "          'nsteve': 1,\n",
      "          'zahn': 1,\n",
      "          'jacks': 1,\n",
      "          'nearlybrain': 1,\n",
      "          'dead': 1,\n",
      "          'accomplice': 1,\n",
      "          'glenn': 1,\n",
      "          'steals': 1,\n",
      "          'thats': 1,\n",
      "          'already': 1,\n",
      "          'high': 1,\n",
      "          'level': 1,\n",
      "          'nall': 1,\n",
      "          'helped': 1,\n",
      "          'intelligentlyconstructed': 1,\n",
      "          'script': 1,\n",
      "          'scott': 1,\n",
      "          'frank': 1,\n",
      "          'although': 1,\n",
      "          'heavy': 1,\n",
      "          'moments': 1,\n",
      "          'linger': 1,\n",
      "          'memory': 1,\n",
      "          'noverall': 1,\n",
      "          'recommend': 1,\n",
      "          'entertainment': 1,\n",
      "          'nnot': 1,\n",
      "          'change': 1,\n",
      "          'life': 1,\n",
      "          'see': 1,\n",
      "          'movie': 1,\n",
      "          'art': 1,\n",
      "          'tell': 1,\n",
      "          'story': 1,\n",
      "          'entertain': 1,\n",
      "          'viewers': 1,\n",
      "          'might': 1,\n",
      "          'something': 1,\n",
      "          'text': 1,\n",
      "          'worth': 1,\n",
      "          'looking': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'pi': 5,\n",
      "          'max': 5,\n",
      "          'film': 5,\n",
      "          'character': 4,\n",
      "          'patterns': 4,\n",
      "          'n': 4,\n",
      "          'nthe': 4,\n",
      "          'maxs': 4,\n",
      "          'mr': 4,\n",
      "          'sense': 4,\n",
      "          'one': 3,\n",
      "          'aronofskys': 3,\n",
      "          'stock': 3,\n",
      "          'market': 3,\n",
      "          'gullette': 3,\n",
      "          'picture': 3,\n",
      "          'ones': 3,\n",
      "          'following': 2,\n",
      "          'nothing': 2,\n",
      "          'series': 2,\n",
      "          'like': 2,\n",
      "          'way': 2,\n",
      "          'know': 2,\n",
      "          'prices': 2,\n",
      "          'time': 2,\n",
      "          'always': 2,\n",
      "          'system': 2,\n",
      "          'individual': 2,\n",
      "          'nits': 2,\n",
      "          'universe': 2,\n",
      "          'protagonist': 2,\n",
      "          'nature': 2,\n",
      "          'numbers': 2,\n",
      "          'finding': 2,\n",
      "          'anything': 2,\n",
      "          'year': 2,\n",
      "          'story': 2,\n",
      "          'eccentricity': 2,\n",
      "          'dominant': 2,\n",
      "          'unsettling': 2,\n",
      "          'mood': 2,\n",
      "          'scene': 2,\n",
      "          'effective': 2,\n",
      "          'approach': 2,\n",
      "          'plot': 2,\n",
      "          'nstill': 2,\n",
      "          'films': 2,\n",
      "          'paranoia': 2,\n",
      "          'perspective': 2,\n",
      "          'note': 1,\n",
      "          'may': 1,\n",
      "          'consider': 1,\n",
      "          'portions': 1,\n",
      "          'text': 1,\n",
      "          'spoilers': 1,\n",
      "          'nbe': 1,\n",
      "          'forewarned': 1,\n",
      "          'namong': 1,\n",
      "          'fanatical': 1,\n",
      "          'ticker': 1,\n",
      "          'tapeworshipping': 1,\n",
      "          'friends': 1,\n",
      "          'theres': 1,\n",
      "          'happens': 1,\n",
      "          'share': 1,\n",
      "          'philosophy': 1,\n",
      "          'espoused': 1,\n",
      "          'central': 1,\n",
      "          'darren': 1,\n",
      "          'darkly': 1,\n",
      "          'original': 1,\n",
      "          'entire': 1,\n",
      "          'reduced': 1,\n",
      "          'analysis': 1,\n",
      "          'produce': 1,\n",
      "          'information': 1,\n",
      "          'accurately': 1,\n",
      "          'forecast': 1,\n",
      "          'future': 1,\n",
      "          'behaviour': 1,\n",
      "          'example': 1,\n",
      "          'mentality': 1,\n",
      "          'involved': 1,\n",
      "          'price': 1,\n",
      "          'goes': 1,\n",
      "          'sharply': 1,\n",
      "          'go': 1,\n",
      "          'nwhile': 1,\n",
      "          'freely': 1,\n",
      "          'admit': 1,\n",
      "          'less': 1,\n",
      "          'knowledge': 1,\n",
      "          'check': 1,\n",
      "          'good': 1,\n",
      "          'bad': 1,\n",
      "          'least': 1,\n",
      "          'hence': 1,\n",
      "          'really': 1,\n",
      "          'couldnt': 1,\n",
      "          'comment': 1,\n",
      "          'authority': 1,\n",
      "          'nonetheless': 1,\n",
      "          'struck': 1,\n",
      "          'incredibly': 1,\n",
      "          'naive': 1,\n",
      "          'oversimplification': 1,\n",
      "          'astonishingly': 1,\n",
      "          'complex': 1,\n",
      "          'besides': 1,\n",
      "          'simple': 1,\n",
      "          'doubt': 1,\n",
      "          'somebody': 1,\n",
      "          'wouldve': 1,\n",
      "          'already': 1,\n",
      "          'figured': 1,\n",
      "          'difference': 1,\n",
      "          'case': 1,\n",
      "          'colleague': 1,\n",
      "          'otherwise': 1,\n",
      "          'assuredly': 1,\n",
      "          'realistic': 1,\n",
      "          'truly': 1,\n",
      "          'believes': 1,\n",
      "          'valid': 1,\n",
      "          'forecaster': 1,\n",
      "          'uses': 1,\n",
      "          'ideology': 1,\n",
      "          'device': 1,\n",
      "          'investigate': 1,\n",
      "          'characters': 1,\n",
      "          'psychosis': 1,\n",
      "          'also': 1,\n",
      "          'vastly': 1,\n",
      "          'convincing': 1,\n",
      "          'argument': 1,\n",
      "          'mathematics': 1,\n",
      "          'language': 1,\n",
      "          'insists': 1,\n",
      "          'genius': 1,\n",
      "          'maximillian': 1,\n",
      "          'cohen': 1,\n",
      "          'sean': 1,\n",
      "          'cool': 1,\n",
      "          'mantralike': 1,\n",
      "          'voiceover': 1,\n",
      "          'repeats': 1,\n",
      "          'throughout': 1,\n",
      "          'nsince': 1,\n",
      "          'expressed': 1,\n",
      "          'everywhere': 1,\n",
      "          'reasons': 1,\n",
      "          'eminent': 1,\n",
      "          'logic': 1,\n",
      "          'allow': 1,\n",
      "          'predict': 1,\n",
      "          'ups': 1,\n",
      "          'downs': 1,\n",
      "          'many': 1,\n",
      "          'games': 1,\n",
      "          'yankees': 1,\n",
      "          'win': 1,\n",
      "          'flavour': 1,\n",
      "          'jam': 1,\n",
      "          'im': 1,\n",
      "          'going': 1,\n",
      "          'put': 1,\n",
      "          'toast': 1,\n",
      "          'tomorrow': 1,\n",
      "          'morning': 1,\n",
      "          'nobsessed': 1,\n",
      "          'proverbial': 1,\n",
      "          'key': 1,\n",
      "          'lives': 1,\n",
      "          'paranoid': 1,\n",
      "          'selfimposed': 1,\n",
      "          'solitude': 1,\n",
      "          'seedy': 1,\n",
      "          'nyc': 1,\n",
      "          'chinatown': 1,\n",
      "          'apartment': 1,\n",
      "          'singlemindedly': 1,\n",
      "          'toiling': 1,\n",
      "          'away': 1,\n",
      "          'monstrous': 1,\n",
      "          'homemade': 1,\n",
      "          'computer': 1,\n",
      "          'nsullenly': 1,\n",
      "          'withdrawn': 1,\n",
      "          'plauged': 1,\n",
      "          'debilitating': 1,\n",
      "          'migraines': 1,\n",
      "          'elusive': 1,\n",
      "          'pursuit': 1,\n",
      "          'mysterious': 1,\n",
      "          '216digit': 1,\n",
      "          'number': 1,\n",
      "          'machine': 1,\n",
      "          'spits': 1,\n",
      "          'day': 1,\n",
      "          'driving': 1,\n",
      "          'madness': 1,\n",
      "          'basically': 1,\n",
      "          'clever': 1,\n",
      "          'astute': 1,\n",
      "          'perceptively': 1,\n",
      "          'zeroing': 1,\n",
      "          'modern': 1,\n",
      "          'mistrust': 1,\n",
      "          'mathematical': 1,\n",
      "          'reductionism': 1,\n",
      "          'age': 1,\n",
      "          'societal': 1,\n",
      "          'phobia': 1,\n",
      "          'individualism': 1,\n",
      "          'replaced': 1,\n",
      "          'numeric': 1,\n",
      "          'identifiers': 1,\n",
      "          'allconsuming': 1,\n",
      "          'penchent': 1,\n",
      "          'creates': 1,\n",
      "          'lingering': 1,\n",
      "          'nit': 1,\n",
      "          'helps': 1,\n",
      "          'matters': 1,\n",
      "          'hes': 1,\n",
      "          'particularly': 1,\n",
      "          'likable': 1,\n",
      "          'nall': 1,\n",
      "          'attempts': 1,\n",
      "          'friendliness': 1,\n",
      "          'neighbours': 1,\n",
      "          'curtly': 1,\n",
      "          'rebuffed': 1,\n",
      "          'spindly': 1,\n",
      "          'neuroticlooking': 1,\n",
      "          'hasnt': 1,\n",
      "          'indulge': 1,\n",
      "          'pleasantries': 1,\n",
      "          'nfor': 1,\n",
      "          'puts': 1,\n",
      "          'lead': 1,\n",
      "          'front': 1,\n",
      "          'center': 1,\n",
      "          'appears': 1,\n",
      "          'virtually': 1,\n",
      "          'every': 1,\n",
      "          'takes': 1,\n",
      "          'refreshing': 1,\n",
      "          'avoiding': 1,\n",
      "          'conventional': 1,\n",
      "          'aesthetics': 1,\n",
      "          'ambivalence': 1,\n",
      "          'much': 1,\n",
      "          'avidly': 1,\n",
      "          'rooting': 1,\n",
      "          'triumph': 1,\n",
      "          'moment': 1,\n",
      "          'epiphany': 1,\n",
      "          'mixed': 1,\n",
      "          'dread': 1,\n",
      "          'morbid': 1,\n",
      "          'fascination': 1,\n",
      "          'disturbing': 1,\n",
      "          'journey': 1,\n",
      "          'quest': 1,\n",
      "          'care': 1,\n",
      "          'fate': 1,\n",
      "          'nteetering': 1,\n",
      "          'edge': 1,\n",
      "          'dementia': 1,\n",
      "          'winds': 1,\n",
      "          'pursued': 1,\n",
      "          'two': 1,\n",
      "          'different': 1,\n",
      "          'groups': 1,\n",
      "          'want': 1,\n",
      "          'pick': 1,\n",
      "          'brain': 1,\n",
      "          'fronted': 1,\n",
      "          'deliciously': 1,\n",
      "          'perky': 1,\n",
      "          'resolutely': 1,\n",
      "          'cheerful': 1,\n",
      "          'representatives': 1,\n",
      "          'inevitably': 1,\n",
      "          'duplictious': 1,\n",
      "          'intentions': 1,\n",
      "          'nas': 1,\n",
      "          'element': 1,\n",
      "          'see': 1,\n",
      "          'truman': 1,\n",
      "          'shows': 1,\n",
      "          'laura': 1,\n",
      "          'linney': 1,\n",
      "          'matter': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'never': 1,\n",
      "          'stop': 1,\n",
      "          'smiling': 1,\n",
      "          'overly': 1,\n",
      "          'friendly': 1,\n",
      "          'wary': 1,\n",
      "          'npi': 1,\n",
      "          'addresses': 1,\n",
      "          'intentionally': 1,\n",
      "          'adheres': 1,\n",
      "          'identifiable': 1,\n",
      "          'pattern': 1,\n",
      "          'cycle': 1,\n",
      "          'headache': 1,\n",
      "          'important': 1,\n",
      "          'revelation': 1,\n",
      "          'bit': 1,\n",
      "          'development': 1,\n",
      "          'pillpopping': 1,\n",
      "          'montage': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'hallucinatory': 1,\n",
      "          'nightmare': 1,\n",
      "          'decidedly': 1,\n",
      "          'cronenbergesque': 1,\n",
      "          'undertones': 1,\n",
      "          'directors': 1,\n",
      "          'equally': 1,\n",
      "          'adept': 1,\n",
      "          'bridging': 1,\n",
      "          'concepts': 1,\n",
      "          'bodythemed': 1,\n",
      "          'horror': 1,\n",
      "          'nosebleeding': 1,\n",
      "          'reality': 1,\n",
      "          'repetitiveness': 1,\n",
      "          'far': 1,\n",
      "          'tedious': 1,\n",
      "          'effectively': 1,\n",
      "          'maddening': 1,\n",
      "          'aims': 1,\n",
      "          'get': 1,\n",
      "          'skins': 1,\n",
      "          'take': 1,\n",
      "          'events': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'nin': 1,\n",
      "          'regard': 1,\n",
      "          'wildly': 1,\n",
      "          'succeeds': 1,\n",
      "          'due': 1,\n",
      "          'striking': 1,\n",
      "          'direction': 1,\n",
      "          'rarity': 1,\n",
      "          'completely': 1,\n",
      "          'immerses': 1,\n",
      "          'protagonists': 1,\n",
      "          'warped': 1,\n",
      "          'surrounding': 1,\n",
      "          'high': 1,\n",
      "          'contrast': 1,\n",
      "          'blackandwhite': 1,\n",
      "          'cinematography': 1,\n",
      "          'combined': 1,\n",
      "          'constant': 1,\n",
      "          'usage': 1,\n",
      "          'extreme': 1,\n",
      "          'closeups': 1,\n",
      "          'lend': 1,\n",
      "          'heightened': 1,\n",
      "          'proceedings': 1,\n",
      "          'scenes': 1,\n",
      "          'stark': 1,\n",
      "          'composition': 1,\n",
      "          'conjunction': 1,\n",
      "          'lumbering': 1,\n",
      "          'make': 1,\n",
      "          'curiously': 1,\n",
      "          'resemble': 1,\n",
      "          'latterday': 1,\n",
      "          'schreck': 1,\n",
      "          'nosferatu': 1,\n",
      "          'nusing': 1,\n",
      "          'savage': 1,\n",
      "          'jittery': 1,\n",
      "          'lensing': 1,\n",
      "          'rapid': 1,\n",
      "          'cuts': 1,\n",
      "          'create': 1,\n",
      "          'disorientation': 1,\n",
      "          'often': 1,\n",
      "          'dizzying': 1,\n",
      "          'behold': 1,\n",
      "          'isolationism': 1,\n",
      "          'emphasized': 1,\n",
      "          'shots': 1,\n",
      "          'socalled': 1,\n",
      "          'snorri': 1,\n",
      "          'cam': 1,\n",
      "          'keep': 1,\n",
      "          'plain': 1,\n",
      "          'focus': 1,\n",
      "          'environment': 1,\n",
      "          'races': 1,\n",
      "          'blurred': 1,\n",
      "          'bursts': 1,\n",
      "          'npis': 1,\n",
      "          'raw': 1,\n",
      "          'aggressive': 1,\n",
      "          'visuals': 1,\n",
      "          'reminiscent': 1,\n",
      "          'david': 1,\n",
      "          'lynchs': 1,\n",
      "          'early': 1,\n",
      "          'work': 1,\n",
      "          'particular': 1,\n",
      "          'eraserhead': 1,\n",
      "          'sinister': 1,\n",
      "          'tone': 1,\n",
      "          'splashes': 1,\n",
      "          'onto': 1,\n",
      "          'screen': 1,\n",
      "          'immediately': 1,\n",
      "          'dazzling': 1,\n",
      "          'opening': 1,\n",
      "          'credit': 1,\n",
      "          'sequence': 1,\n",
      "          'ably': 1,\n",
      "          'backed': 1,\n",
      "          'sly': 1,\n",
      "          'electronic': 1,\n",
      "          'score': 1,\n",
      "          'clint': 1,\n",
      "          'mansell': 1,\n",
      "          'gradually': 1,\n",
      "          'increases': 1,\n",
      "          'intensity': 1,\n",
      "          'amidst': 1,\n",
      "          'kafkaesque': 1,\n",
      "          'qualities': 1,\n",
      "          'overall': 1,\n",
      "          'dispassionate': 1,\n",
      "          'occasionally': 1,\n",
      "          'display': 1,\n",
      "          'humour': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'marcy': 1,\n",
      "          'dawson': 1,\n",
      "          'pamela': 1,\n",
      "          'hart': 1,\n",
      "          'great': 1,\n",
      "          'fun': 1,\n",
      "          'entices': 1,\n",
      "          'offer': 1,\n",
      "          'invaluable': 1,\n",
      "          'treasure': 1,\n",
      "          'oneofakind': 1,\n",
      "          'ncomputer': 1,\n",
      "          'chip': 1,\n",
      "          'isnt': 1,\n",
      "          'beautiful': 1,\n",
      "          'coos': 1,\n",
      "          'na': 1,\n",
      "          'showcase': 1,\n",
      "          'technical': 1,\n",
      "          'virtuosity': 1,\n",
      "          'made': 1,\n",
      "          '60': 1,\n",
      "          '000': 1,\n",
      "          'since': 1,\n",
      "          'gone': 1,\n",
      "          'capture': 1,\n",
      "          'acclaim': 1,\n",
      "          '1998': 1,\n",
      "          'sundance': 1,\n",
      "          'festival': 1,\n",
      "          'intriguingly': 1,\n",
      "          'cerebral': 1,\n",
      "          'ironically': 1,\n",
      "          'perhaps': 1,\n",
      "          'purely': 1,\n",
      "          'visceral': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 7,\n",
      "          'plot': 4,\n",
      "          'nthe': 3,\n",
      "          'city': 3,\n",
      "          'seen': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'one': 3,\n",
      "          'prepared': 2,\n",
      "          'hellraiser': 2,\n",
      "          'crow': 2,\n",
      "          'nbut': 2,\n",
      "          'sutherland': 2,\n",
      "          'began': 2,\n",
      "          'monologue': 2,\n",
      "          'human': 2,\n",
      "          'ni': 2,\n",
      "          'character': 2,\n",
      "          'spent': 2,\n",
      "          'would': 2,\n",
      "          'imagine': 2,\n",
      "          'dark': 2,\n",
      "          'clever': 2,\n",
      "          'twists': 2,\n",
      "          'nnot': 2,\n",
      "          '12': 2,\n",
      "          'monkeys': 2,\n",
      "          'never': 2,\n",
      "          'tsk': 2,\n",
      "          'year': 2,\n",
      "          'best': 2,\n",
      "          'ive': 2,\n",
      "          'upon': 1,\n",
      "          'arriving': 1,\n",
      "          'theater': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'took': 1,\n",
      "          'seat': 1,\n",
      "          'appeared': 1,\n",
      "          'meets': 1,\n",
      "          'soon': 1,\n",
      "          'kiefer': 1,\n",
      "          'speaking': 1,\n",
      "          'narrative': 1,\n",
      "          'describing': 1,\n",
      "          'strangers': 1,\n",
      "          'reasons': 1,\n",
      "          'contacting': 1,\n",
      "          'beings': 1,\n",
      "          'hooked': 1,\n",
      "          'nthere': 1,\n",
      "          'something': 1,\n",
      "          'especially': 1,\n",
      "          'compelling': 1,\n",
      "          'nature': 1,\n",
      "          'voice': 1,\n",
      "          'knew': 1,\n",
      "          'start': 1,\n",
      "          'going': 1,\n",
      "          'witness': 1,\n",
      "          'actions': 1,\n",
      "          'rather': 1,\n",
      "          'actor': 1,\n",
      "          'attempting': 1,\n",
      "          'nsutherland': 1,\n",
      "          'played': 1,\n",
      "          'role': 1,\n",
      "          'true': 1,\n",
      "          'veteran': 1,\n",
      "          'nupon': 1,\n",
      "          'completion': 1,\n",
      "          'camera': 1,\n",
      "          'arrives': 1,\n",
      "          'fashion': 1,\n",
      "          'wonder': 1,\n",
      "          'long': 1,\n",
      "          'alex': 1,\n",
      "          'proyas': 1,\n",
      "          'cinematography': 1,\n",
      "          'caliber': 1,\n",
      "          'maximum': 1,\n",
      "          'hours': 1,\n",
      "          'work': 1,\n",
      "          'needed': 1,\n",
      "          'flowed': 1,\n",
      "          'beautifully': 1,\n",
      "          'nas': 1,\n",
      "          'taken': 1,\n",
      "          'intricate': 1,\n",
      "          'regions': 1,\n",
      "          'unravel': 1,\n",
      "          'point': 1,\n",
      "          'last': 1,\n",
      "          'time': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'mention': 1,\n",
      "          'series': 1,\n",
      "          'make': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'literally': 1,\n",
      "          'turn': 1,\n",
      "          'green': 1,\n",
      "          'envy': 1,\n",
      "          'youre': 1,\n",
      "          'exactly': 1,\n",
      "          'biggest': 1,\n",
      "          'scifi': 1,\n",
      "          'fan': 1,\n",
      "          'caveat': 1,\n",
      "          'emptor': 1,\n",
      "          'nget': 1,\n",
      "          'ready': 1,\n",
      "          'atmostpheric': 1,\n",
      "          'darkness': 1,\n",
      "          'without': 1,\n",
      "          'boredom': 1,\n",
      "          'depression': 1,\n",
      "          'concept': 1,\n",
      "          'mindstretching': 1,\n",
      "          'however': 1,\n",
      "          'sophisticated': 1,\n",
      "          'nand': 1,\n",
      "          'picture': 1,\n",
      "          'finally': 1,\n",
      "          'justice': 1,\n",
      "          'comicbookgonefeaturefilm': 1,\n",
      "          'fad': 1,\n",
      "          'hollywood': 1,\n",
      "          'recently': 1,\n",
      "          'become': 1,\n",
      "          'abusive': 1,\n",
      "          'ndark': 1,\n",
      "          'simply': 1,\n",
      "          'puts': 1,\n",
      "          'spawn': 1,\n",
      "          'shame': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'climax': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'feel': 1,\n",
      "          'strong': 1,\n",
      "          'presence': 1,\n",
      "          'akira': 1,\n",
      "          'esque': 1,\n",
      "          'explosion': 1,\n",
      "          'throughout': 1,\n",
      "          'general': 1,\n",
      "          'feeling': 1,\n",
      "          'movie': 1,\n",
      "          'nso': 1,\n",
      "          'initial': 1,\n",
      "          'predictions': 1,\n",
      "          'wrong': 1,\n",
      "          'nthis': 1,\n",
      "          'anything': 1,\n",
      "          'meloncholy': 1,\n",
      "          'parts': 1,\n",
      "          'five': 1,\n",
      "          'nim': 1,\n",
      "          'base': 1,\n",
      "          'entirly': 1,\n",
      "          'know': 1,\n",
      "          'give': 1,\n",
      "          'nits': 1,\n",
      "          'actually': 1,\n",
      "          'contained': 1,\n",
      "          'neccessary': 1,\n",
      "          'ingredients': 1,\n",
      "          'keep': 1,\n",
      "          'entertained': 1,\n",
      "          'awake': 1,\n",
      "          'storyline': 1,\n",
      "          'camerawork': 1,\n",
      "          'even': 1,\n",
      "          'since': 1,\n",
      "          'contact': 1,\n",
      "          'recieved': 1,\n",
      "          'deep': 1,\n",
      "          'insight': 1,\n",
      "          'way': 1,\n",
      "          'mind': 1,\n",
      "          'operates': 1,\n",
      "          'blown': 1,\n",
      "          'away': 1,\n",
      "          'easily': 1,\n",
      "          'ever': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 10,\n",
      "          'film': 8,\n",
      "          'marriage': 7,\n",
      "          'life': 7,\n",
      "          'live': 6,\n",
      "          'prayer': 5,\n",
      "          'choices': 5,\n",
      "          'hasidic': 4,\n",
      "          'even': 4,\n",
      "          'israel': 4,\n",
      "          'religion': 4,\n",
      "          'would': 4,\n",
      "          'way': 4,\n",
      "          'goes': 4,\n",
      "          'nshe': 4,\n",
      "          'without': 4,\n",
      "          'malka': 4,\n",
      "          'though': 3,\n",
      "          'one': 3,\n",
      "          'modern': 3,\n",
      "          'control': 3,\n",
      "          'rigid': 3,\n",
      "          'jews': 3,\n",
      "          'sect': 3,\n",
      "          'everything': 3,\n",
      "          'women': 3,\n",
      "          'country': 3,\n",
      "          'jewish': 3,\n",
      "          'quarters': 3,\n",
      "          'ones': 3,\n",
      "          'never': 3,\n",
      "          'ritual': 3,\n",
      "          'god': 3,\n",
      "          'nhe': 3,\n",
      "          'woman': 3,\n",
      "          'rivka': 3,\n",
      "          'role': 3,\n",
      "          'father': 3,\n",
      "          'married': 3,\n",
      "          'child': 3,\n",
      "          'sisters': 3,\n",
      "          'story': 2,\n",
      "          'loving': 2,\n",
      "          'political': 2,\n",
      "          'government': 2,\n",
      "          'ngitai': 2,\n",
      "          'ever': 2,\n",
      "          'got': 2,\n",
      "          'death': 2,\n",
      "          'letter': 2,\n",
      "          'torah': 2,\n",
      "          'subjugate': 2,\n",
      "          'accept': 2,\n",
      "          'attitudes': 2,\n",
      "          'extreme': 2,\n",
      "          'bound': 2,\n",
      "          'go': 2,\n",
      "          'seen': 2,\n",
      "          'hasidim': 2,\n",
      "          'nature': 2,\n",
      "          'people': 2,\n",
      "          'impossible': 2,\n",
      "          'living': 2,\n",
      "          'made': 2,\n",
      "          'make': 2,\n",
      "          'nhis': 2,\n",
      "          'wife': 2,\n",
      "          'looks': 2,\n",
      "          'talmud': 2,\n",
      "          'rabbi': 2,\n",
      "          'upon': 2,\n",
      "          'man': 2,\n",
      "          'time': 2,\n",
      "          'nmeirs': 2,\n",
      "          'like': 2,\n",
      "          'thought': 2,\n",
      "          'mother': 2,\n",
      "          '12': 2,\n",
      "          'doesnt': 2,\n",
      "          'younger': 2,\n",
      "          'sister': 2,\n",
      "          'get': 2,\n",
      "          'yaakov': 2,\n",
      "          'nbut': 2,\n",
      "          'still': 2,\n",
      "          'fight': 2,\n",
      "          'love': 2,\n",
      "          'nyossef': 2,\n",
      "          'shown': 2,\n",
      "          'difficult': 2,\n",
      "          'choice': 2,\n",
      "          'kadosh': 1,\n",
      "          'means': 1,\n",
      "          'sacred': 1,\n",
      "          'hebrew': 1,\n",
      "          'namos': 1,\n",
      "          'gitais': 1,\n",
      "          'fictional': 1,\n",
      "          'work': 1,\n",
      "          'spending': 1,\n",
      "          'career': 1,\n",
      "          'documentaries': 1,\n",
      "          'grim': 1,\n",
      "          'failed': 1,\n",
      "          'symbolize': 1,\n",
      "          'clash': 1,\n",
      "          'cultures': 1,\n",
      "          'native': 1,\n",
      "          'israelis': 1,\n",
      "          'viewpoint': 1,\n",
      "          'toward': 1,\n",
      "          'savvy': 1,\n",
      "          'hasidics': 1,\n",
      "          'intolerable': 1,\n",
      "          'groups': 1,\n",
      "          'vying': 1,\n",
      "          'secular': 1,\n",
      "          'devarimyom': 1,\n",
      "          'yom': 1,\n",
      "          'labor': 1,\n",
      "          'party': 1,\n",
      "          'leftist': 1,\n",
      "          'believes': 1,\n",
      "          'sound': 1,\n",
      "          'knell': 1,\n",
      "          'emphasis': 1,\n",
      "          'ultraorthodox': 1,\n",
      "          'vision': 1,\n",
      "          'gods': 1,\n",
      "          'law': 1,\n",
      "          'males': 1,\n",
      "          'view': 1,\n",
      "          'nthat': 1,\n",
      "          'intolerant': 1,\n",
      "          'attitude': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'jerusalems': 1,\n",
      "          'called': 1,\n",
      "          'mea': 1,\n",
      "          'shearim': 1,\n",
      "          'taken': 1,\n",
      "          'sinewy': 1,\n",
      "          'back': 1,\n",
      "          'streets': 1,\n",
      "          'placards': 1,\n",
      "          'pasted': 1,\n",
      "          'walls': 1,\n",
      "          'crowded': 1,\n",
      "          'apartments': 1,\n",
      "          'rooms': 1,\n",
      "          'protagonists': 1,\n",
      "          'idea': 1,\n",
      "          'proper': 1,\n",
      "          'much': 1,\n",
      "          'different': 1,\n",
      "          'nthis': 1,\n",
      "          'controversial': 1,\n",
      "          'unhappy': 1,\n",
      "          'male': 1,\n",
      "          'patriarchal': 1,\n",
      "          'anger': 1,\n",
      "          'viewers': 1,\n",
      "          'matter': 1,\n",
      "          'belief': 1,\n",
      "          'nit': 1,\n",
      "          'slowmoving': 1,\n",
      "          'meticulous': 1,\n",
      "          'grabs': 1,\n",
      "          'hold': 1,\n",
      "          'collar': 1,\n",
      "          'lets': 1,\n",
      "          'force': 1,\n",
      "          'filmed': 1,\n",
      "          'objective': 1,\n",
      "          'manner': 1,\n",
      "          'taking': 1,\n",
      "          'cheap': 1,\n",
      "          'shot': 1,\n",
      "          'nevertheless': 1,\n",
      "          'leave': 1,\n",
      "          'questions': 1,\n",
      "          'practice': 1,\n",
      "          'strict': 1,\n",
      "          'observance': 1,\n",
      "          'meant': 1,\n",
      "          'critical': 1,\n",
      "          'implies': 1,\n",
      "          'kill': 1,\n",
      "          'spirit': 1,\n",
      "          'touch': 1,\n",
      "          'phobic': 1,\n",
      "          'makes': 1,\n",
      "          'unite': 1,\n",
      "          'cant': 1,\n",
      "          'present': 1,\n",
      "          'harmony': 1,\n",
      "          'imagine': 1,\n",
      "          'arab': 1,\n",
      "          'neighbors': 1,\n",
      "          'peace': 1,\n",
      "          'opens': 1,\n",
      "          'meir': 1,\n",
      "          'rises': 1,\n",
      "          'dawn': 1,\n",
      "          'every': 1,\n",
      "          'virtues': 1,\n",
      "          'thanks': 1,\n",
      "          'didnt': 1,\n",
      "          'accepts': 1,\n",
      "          'fate': 1,\n",
      "          'born': 1,\n",
      "          'next': 1,\n",
      "          'bed': 1,\n",
      "          'sleeps': 1,\n",
      "          'separately': 1,\n",
      "          'according': 1,\n",
      "          'custom': 1,\n",
      "          'glistening': 1,\n",
      "          'eyes': 1,\n",
      "          'questioning': 1,\n",
      "          'laws': 1,\n",
      "          'rebelling': 1,\n",
      "          'secondary': 1,\n",
      "          'keeps': 1,\n",
      "          'studying': 1,\n",
      "          'conveniences': 1,\n",
      "          'seeing': 1,\n",
      "          'movies': 1,\n",
      "          'tv': 1,\n",
      "          'nmeir': 1,\n",
      "          'talmudic': 1,\n",
      "          'scholar': 1,\n",
      "          'abu': 1,\n",
      "          'warda': 1,\n",
      "          'yeshiva': 1,\n",
      "          'ten': 1,\n",
      "          'years': 1,\n",
      "          'able': 1,\n",
      "          'give': 1,\n",
      "          'nsince': 1,\n",
      "          'look': 1,\n",
      "          'womans': 1,\n",
      "          'conceive': 1,\n",
      "          'children': 1,\n",
      "          'cook': 1,\n",
      "          'clean': 1,\n",
      "          'house': 1,\n",
      "          'mans': 1,\n",
      "          'spend': 1,\n",
      "          'therefore': 1,\n",
      "          'insurmountable': 1,\n",
      "          'problem': 1,\n",
      "          'otherwise': 1,\n",
      "          'receives': 1,\n",
      "          'anonymous': 1,\n",
      "          'states': 1,\n",
      "          'better': 1,\n",
      "          'dead': 1,\n",
      "          'response': 1,\n",
      "          'written': 1,\n",
      "          'tells': 1,\n",
      "          'contract': 1,\n",
      "          'must': 1,\n",
      "          'broken': 1,\n",
      "          'dies': 1,\n",
      "          'progeny': 1,\n",
      "          'rips': 1,\n",
      "          'page': 1,\n",
      "          'nall': 1,\n",
      "          'blame': 1,\n",
      "          'placed': 1,\n",
      "          'unpure': 1,\n",
      "          'reason': 1,\n",
      "          'barren': 1,\n",
      "          'countless': 1,\n",
      "          'baths': 1,\n",
      "          'cleanse': 1,\n",
      "          'koenig': 1,\n",
      "          'dunks': 1,\n",
      "          'holy': 1,\n",
      "          'water': 1,\n",
      "          'says': 1,\n",
      "          'times': 1,\n",
      "          'dunked': 1,\n",
      "          'homage': 1,\n",
      "          'tribes': 1,\n",
      "          'ntheir': 1,\n",
      "          'permit': 1,\n",
      "          'examined': 1,\n",
      "          'extensively': 1,\n",
      "          'doctor': 1,\n",
      "          'nrivka': 1,\n",
      "          'sly': 1,\n",
      "          'finds': 1,\n",
      "          'husband': 1,\n",
      "          'sterile': 1,\n",
      "          'tell': 1,\n",
      "          'nso': 1,\n",
      "          'meirs': 1,\n",
      "          'chooses': 1,\n",
      "          'son': 1,\n",
      "          'exiled': 1,\n",
      "          'alone': 1,\n",
      "          'cold': 1,\n",
      "          'apartment': 1,\n",
      "          'nrivkas': 1,\n",
      "          'spirited': 1,\n",
      "          'want': 1,\n",
      "          'wants': 1,\n",
      "          'liberated': 1,\n",
      "          'long': 1,\n",
      "          'romantic': 1,\n",
      "          'relationship': 1,\n",
      "          'fellow': 1,\n",
      "          'raised': 1,\n",
      "          'virgin': 1,\n",
      "          'nwhen': 1,\n",
      "          'joined': 1,\n",
      "          'israeli': 1,\n",
      "          'army': 1,\n",
      "          'lebanon': 1,\n",
      "          'something': 1,\n",
      "          'allowed': 1,\n",
      "          'thereby': 1,\n",
      "          'banished': 1,\n",
      "          'believer': 1,\n",
      "          'works': 1,\n",
      "          'singer': 1,\n",
      "          'nightclub': 1,\n",
      "          'nmalkas': 1,\n",
      "          'worried': 1,\n",
      "          'daughter': 1,\n",
      "          'wont': 1,\n",
      "          'arranges': 1,\n",
      "          'marry': 1,\n",
      "          'yossef': 1,\n",
      "          'someone': 1,\n",
      "          'stern': 1,\n",
      "          'follower': 1,\n",
      "          'order': 1,\n",
      "          'also': 1,\n",
      "          'activist': 1,\n",
      "          'drives': 1,\n",
      "          'around': 1,\n",
      "          'city': 1,\n",
      "          'soundtruck': 1,\n",
      "          'bullhorn': 1,\n",
      "          'urging': 1,\n",
      "          'stick': 1,\n",
      "          'together': 1,\n",
      "          'godless': 1,\n",
      "          'enemies': 1,\n",
      "          'two': 1,\n",
      "          'close': 1,\n",
      "          'languidly': 1,\n",
      "          'discuss': 1,\n",
      "          'options': 1,\n",
      "          'telling': 1,\n",
      "          'happy': 1,\n",
      "          'reluctantly': 1,\n",
      "          'forced': 1,\n",
      "          'accepting': 1,\n",
      "          'plans': 1,\n",
      "          'ruin': 1,\n",
      "          'bogus': 1,\n",
      "          'harshest': 1,\n",
      "          'scene': 1,\n",
      "          'malkas': 1,\n",
      "          'wedding': 1,\n",
      "          'night': 1,\n",
      "          'prays': 1,\n",
      "          'robotically': 1,\n",
      "          'gets': 1,\n",
      "          'spread': 1,\n",
      "          'legs': 1,\n",
      "          'least': 1,\n",
      "          'bit': 1,\n",
      "          'affection': 1,\n",
      "          'nervousness': 1,\n",
      "          'part': 1,\n",
      "          'function': 1,\n",
      "          'supplies': 1,\n",
      "          'inside': 1,\n",
      "          'rams': 1,\n",
      "          'hard': 1,\n",
      "          'thrusting': 1,\n",
      "          'away': 1,\n",
      "          'act': 1,\n",
      "          'completed': 1,\n",
      "          'retiring': 1,\n",
      "          'word': 1,\n",
      "          'gesture': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'obliterated': 1,\n",
      "          'beliefs': 1,\n",
      "          'circumstances': 1,\n",
      "          'inward': 1,\n",
      "          'carry': 1,\n",
      "          'completely': 1,\n",
      "          'brought': 1,\n",
      "          'nfor': 1,\n",
      "          'closing': 1,\n",
      "          'daily': 1,\n",
      "          'rituals': 1,\n",
      "          'tight': 1,\n",
      "          'closeknit': 1,\n",
      "          'community': 1,\n",
      "          'another': 1,\n",
      "          'world': 1,\n",
      "          'kept': 1,\n",
      "          'dark': 1,\n",
      "          'ends': 1,\n",
      "          'forlorn': 1,\n",
      "          'walking': 1,\n",
      "          'atop': 1,\n",
      "          'jerusalem': 1,\n",
      "          'looking': 1,\n",
      "          'outsider': 1,\n",
      "          'seems': 1,\n",
      "          'strange': 1,\n",
      "          'things': 1,\n",
      "          'set': 1,\n",
      "          'stone': 1,\n",
      "          'harsh': 1,\n",
      "          'memories': 1,\n",
      "          'price': 1,\n",
      "          'heavy': 1,\n",
      "          'indeed': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'characters': 8,\n",
      "          'one': 7,\n",
      "          'character': 7,\n",
      "          'nthe': 6,\n",
      "          'magnolia': 5,\n",
      "          'anderson': 5,\n",
      "          'different': 4,\n",
      "          'flower': 3,\n",
      "          'movie': 3,\n",
      "          'connected': 3,\n",
      "          'another': 3,\n",
      "          'game': 3,\n",
      "          'perfect': 3,\n",
      "          'story': 3,\n",
      "          'time': 3,\n",
      "          'nthis': 3,\n",
      "          'actors': 3,\n",
      "          'acting': 3,\n",
      "          'best': 3,\n",
      "          'nthey': 2,\n",
      "          'farther': 2,\n",
      "          'apart': 2,\n",
      "          'numerous': 2,\n",
      "          'nfrom': 2,\n",
      "          'kind': 2,\n",
      "          'cop': 2,\n",
      "          'show': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'host': 2,\n",
      "          'seriously': 2,\n",
      "          'companion': 2,\n",
      "          'end': 2,\n",
      "          'n': 2,\n",
      "          'make': 2,\n",
      "          'impressive': 2,\n",
      "          'even': 2,\n",
      "          'several': 2,\n",
      "          'nandersons': 2,\n",
      "          'nhe': 2,\n",
      "          'also': 2,\n",
      "          'subplot': 2,\n",
      "          'long': 2,\n",
      "          'yet': 2,\n",
      "          'get': 2,\n",
      "          'lot': 2,\n",
      "          'degrees': 2,\n",
      "          'example': 2,\n",
      "          'reilly': 2,\n",
      "          'phillip': 2,\n",
      "          'baker': 2,\n",
      "          'halls': 2,\n",
      "          'shows': 2,\n",
      "          'broadway': 2,\n",
      "          'musical': 2,\n",
      "          'flawless': 2,\n",
      "          'nanderson': 2,\n",
      "          'many': 2,\n",
      "          'supporting': 2,\n",
      "          'able': 2,\n",
      "          'role': 2,\n",
      "          'actor': 2,\n",
      "          'felt': 2,\n",
      "          'towards': 2,\n",
      "          'people': 2,\n",
      "          'diversity': 2,\n",
      "          'compared': 1,\n",
      "          'simple': 1,\n",
      "          'title': 1,\n",
      "          'poster': 1,\n",
      "          'suggests': 1,\n",
      "          'dozens': 1,\n",
      "          'introduced': 1,\n",
      "          'developed': 1,\n",
      "          'like': 1,\n",
      "          'petals': 1,\n",
      "          'come': 1,\n",
      "          'stem': 1,\n",
      "          'begins': 1,\n",
      "          'develop': 1,\n",
      "          'grow': 1,\n",
      "          'closely': 1,\n",
      "          'matter': 1,\n",
      "          'socially': 1,\n",
      "          'humiliated': 1,\n",
      "          'aging': 1,\n",
      "          'suffering': 1,\n",
      "          'pain': 1,\n",
      "          'lonely': 1,\n",
      "          'seek': 1,\n",
      "          'loneliness': 1,\n",
      "          'nwhether': 1,\n",
      "          'distant': 1,\n",
      "          'family': 1,\n",
      "          'member': 1,\n",
      "          'spouse': 1,\n",
      "          'begs': 1,\n",
      "          'spends': 1,\n",
      "          'whole': 1,\n",
      "          'searching': 1,\n",
      "          'clever': 1,\n",
      "          'well': 1,\n",
      "          'thought': 1,\n",
      "          'prodigy': 1,\n",
      "          'directorwriter': 1,\n",
      "          'paul': 1,\n",
      "          'thomas': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'fame': 1,\n",
      "          'detailed': 1,\n",
      "          'analyses': 1,\n",
      "          'powerful': 1,\n",
      "          'script': 1,\n",
      "          'memorable': 1,\n",
      "          'nhowever': 1,\n",
      "          'really': 1,\n",
      "          'though': 1,\n",
      "          'tons': 1,\n",
      "          'unrelated': 1,\n",
      "          'stories': 1,\n",
      "          'never': 1,\n",
      "          'confusing': 1,\n",
      "          'control': 1,\n",
      "          'transitioning': 1,\n",
      "          'masterful': 1,\n",
      "          'knows': 1,\n",
      "          'exactly': 1,\n",
      "          'cut': 1,\n",
      "          'since': 1,\n",
      "          'magnolias': 1,\n",
      "          'scenes': 1,\n",
      "          'drag': 1,\n",
      "          'nany': 1,\n",
      "          'three': 1,\n",
      "          'hour': 1,\n",
      "          'deliver': 1,\n",
      "          'uninteresting': 1,\n",
      "          'scene': 1,\n",
      "          'definitely': 1,\n",
      "          'worth': 1,\n",
      "          'recommending': 1,\n",
      "          'fascinating': 1,\n",
      "          'beginning': 1,\n",
      "          'risky': 1,\n",
      "          'surprisingly': 1,\n",
      "          'satisfying': 1,\n",
      "          'ending': 1,\n",
      "          'doesnt': 1,\n",
      "          'boring': 1,\n",
      "          'nit': 1,\n",
      "          'obvious': 1,\n",
      "          'put': 1,\n",
      "          'connecting': 1,\n",
      "          'ultimate': 1,\n",
      "          'six': 1,\n",
      "          'separation': 1,\n",
      "          'nevery': 1,\n",
      "          'every': 1,\n",
      "          'two': 1,\n",
      "          'nfor': 1,\n",
      "          'john': 1,\n",
      "          'c': 1,\n",
      "          'hall': 1,\n",
      "          'daughter': 1,\n",
      "          'melora': 1,\n",
      "          'walters': 1,\n",
      "          'went': 1,\n",
      "          'date': 1,\n",
      "          'fact': 1,\n",
      "          'others': 1,\n",
      "          'similar': 1,\n",
      "          'universal': 1,\n",
      "          'pains': 1,\n",
      "          'classes': 1,\n",
      "          'races': 1,\n",
      "          'genders': 1,\n",
      "          'suffer': 1,\n",
      "          'explanation': 1,\n",
      "          'prove': 1,\n",
      "          'point': 1,\n",
      "          'accurate': 1,\n",
      "          'convincing': 1,\n",
      "          'mistake': 1,\n",
      "          'made': 1,\n",
      "          'trying': 1,\n",
      "          'connect': 1,\n",
      "          'making': 1,\n",
      "          'sing': 1,\n",
      "          'aimee': 1,\n",
      "          'mann': 1,\n",
      "          'song': 1,\n",
      "          'simultaneously': 1,\n",
      "          'foolish': 1,\n",
      "          'unbelievable': 1,\n",
      "          'hilariously': 1,\n",
      "          'erroneous': 1,\n",
      "          'feel': 1,\n",
      "          'far': 1,\n",
      "          'typical': 1,\n",
      "          'performances': 1,\n",
      "          'perfection': 1,\n",
      "          'classic': 1,\n",
      "          'casting': 1,\n",
      "          'ensemble': 1,\n",
      "          'allows': 1,\n",
      "          'hollywoods': 1,\n",
      "          'blossom': 1,\n",
      "          'nall': 1,\n",
      "          'main': 1,\n",
      "          'reveal': 1,\n",
      "          'emotions': 1,\n",
      "          'attitudes': 1,\n",
      "          'brief': 1,\n",
      "          'screen': 1,\n",
      "          'stars': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'nworth': 1,\n",
      "          'noting': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'stepped': 1,\n",
      "          'usual': 1,\n",
      "          'superficial': 1,\n",
      "          'starring': 1,\n",
      "          'funny': 1,\n",
      "          'depressing': 1,\n",
      "          'tour': 1,\n",
      "          'de': 1,\n",
      "          'force': 1,\n",
      "          'performance': 1,\n",
      "          'probably': 1,\n",
      "          'noticed': 1,\n",
      "          'award': 1,\n",
      "          'givers': 1,\n",
      "          'much': 1,\n",
      "          'past': 1,\n",
      "          'however': 1,\n",
      "          'could': 1,\n",
      "          'nominated': 1,\n",
      "          'without': 1,\n",
      "          'complaints': 1,\n",
      "          'problem': 1,\n",
      "          'edited': 1,\n",
      "          'melinda': 1,\n",
      "          'dillons': 1,\n",
      "          'wife': 1,\n",
      "          'nshe': 1,\n",
      "          'seemed': 1,\n",
      "          'thrown': 1,\n",
      "          'little': 1,\n",
      "          'sympathy': 1,\n",
      "          'seen': 1,\n",
      "          'enough': 1,\n",
      "          'earlier': 1,\n",
      "          'uses': 1,\n",
      "          'effective': 1,\n",
      "          'metaphors': 1,\n",
      "          'describe': 1,\n",
      "          'talent': 1,\n",
      "          'audience': 1,\n",
      "          'sympathetic': 1,\n",
      "          'hours': 1,\n",
      "          'nto': 1,\n",
      "          'see': 1,\n",
      "          'perfectly': 1,\n",
      "          'portray': 1,\n",
      "          'types': 1,\n",
      "          'keen': 1,\n",
      "          'sense': 1,\n",
      "          'ndiversity': 1,\n",
      "          'makes': 1,\n",
      "          'director': 1,\n",
      "          'successful': 1,\n",
      "          'period': 1,\n",
      "          'ni': 1,\n",
      "          'predict': 1,\n",
      "          'success': 1,\n",
      "          'future': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nit': 6,\n",
      "          'nthe': 6,\n",
      "          'strange': 5,\n",
      "          'film': 4,\n",
      "          'horror': 4,\n",
      "          'n': 4,\n",
      "          'man': 4,\n",
      "          'like': 4,\n",
      "          'colqhoun': 4,\n",
      "          'starts': 4,\n",
      "          'characters': 4,\n",
      "          'nothing': 4,\n",
      "          'cannibalism': 3,\n",
      "          'soul': 3,\n",
      "          'nthis': 3,\n",
      "          'shining': 3,\n",
      "          'never': 3,\n",
      "          'war': 3,\n",
      "          'group': 3,\n",
      "          'soldiers': 3,\n",
      "          'life': 3,\n",
      "          'bizarre': 3,\n",
      "          'world': 3,\n",
      "          'another': 3,\n",
      "          'find': 3,\n",
      "          'becomes': 3,\n",
      "          'nits': 3,\n",
      "          'movie': 3,\n",
      "          'killing': 3,\n",
      "          'live': 3,\n",
      "          'change': 3,\n",
      "          'ravenous': 3,\n",
      "          'scary': 3,\n",
      "          'eat': 3,\n",
      "          'making': 2,\n",
      "          'na': 2,\n",
      "          'psychological': 2,\n",
      "          'scare': 2,\n",
      "          'settlers': 2,\n",
      "          'stay': 2,\n",
      "          'alive': 2,\n",
      "          'story': 2,\n",
      "          'turned': 2,\n",
      "          'picture': 2,\n",
      "          'nin': 2,\n",
      "          'states': 2,\n",
      "          'land': 2,\n",
      "          'way': 2,\n",
      "          'period': 2,\n",
      "          'could': 2,\n",
      "          'guy': 2,\n",
      "          'pearce': 2,\n",
      "          'journey': 2,\n",
      "          'battle': 2,\n",
      "          'icy': 2,\n",
      "          'mountains': 2,\n",
      "          'including': 2,\n",
      "          'intelligent': 2,\n",
      "          'much': 2,\n",
      "          'didnt': 2,\n",
      "          'soldier': 2,\n",
      "          'robert': 2,\n",
      "          'carlyle': 2,\n",
      "          'food': 2,\n",
      "          'one': 2,\n",
      "          'ncolqhoun': 2,\n",
      "          'indian': 2,\n",
      "          'myth': 2,\n",
      "          'eats': 2,\n",
      "          'spirit': 2,\n",
      "          'nhis': 2,\n",
      "          'death': 2,\n",
      "          'see': 2,\n",
      "          'would': 2,\n",
      "          'none': 2,\n",
      "          'wonderful': 2,\n",
      "          'continues': 2,\n",
      "          'honest': 2,\n",
      "          'different': 2,\n",
      "          'nhe': 2,\n",
      "          'anything': 2,\n",
      "          'human': 2,\n",
      "          'mind': 2,\n",
      "          'atmosphere': 2,\n",
      "          'stands': 2,\n",
      "          'somehow': 2,\n",
      "          'men': 2,\n",
      "          'get': 2,\n",
      "          'often': 2,\n",
      "          'cannibal': 2,\n",
      "          'dont': 2,\n",
      "          'many': 2,\n",
      "          'frightening': 2,\n",
      "          'vampire': 2,\n",
      "          'since': 2,\n",
      "          'gets': 2,\n",
      "          'dark': 2,\n",
      "          'humans': 1,\n",
      "          'harmed': 1,\n",
      "          'tested': 1,\n",
      "          'tasted': 1,\n",
      "          'nall': 1,\n",
      "          'recipes': 1,\n",
      "          'fictions': 1,\n",
      "          'ntwentieth': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'condone': 1,\n",
      "          'thriller': 1,\n",
      "          'depth': 1,\n",
      "          'ndirectorwriter': 1,\n",
      "          'antonia': 1,\n",
      "          'bird': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'terrifying': 1,\n",
      "          'provided': 1,\n",
      "          'giant': 1,\n",
      "          'beasts': 1,\n",
      "          'instead': 1,\n",
      "          'monsters': 1,\n",
      "          'lurking': 1,\n",
      "          'party': 1,\n",
      "          'covered': 1,\n",
      "          'wagon': 1,\n",
      "          'times': 1,\n",
      "          'resent': 1,\n",
      "          'order': 1,\n",
      "          'true': 1,\n",
      "          'briefly': 1,\n",
      "          'mentioned': 1,\n",
      "          '143': 1,\n",
      "          'minutes': 1,\n",
      "          'long': 1,\n",
      "          'motion': 1,\n",
      "          '1847': 1,\n",
      "          'united': 1,\n",
      "          'pioneers': 1,\n",
      "          'goldstarved': 1,\n",
      "          'americans': 1,\n",
      "          'west': 1,\n",
      "          'manifest': 1,\n",
      "          'destiny': 1,\n",
      "          'inevitability': 1,\n",
      "          'country': 1,\n",
      "          'extending': 1,\n",
      "          'boundaries': 1,\n",
      "          'stretching': 1,\n",
      "          'arms': 1,\n",
      "          'consuming': 1,\n",
      "          'ncapt': 1,\n",
      "          'john': 1,\n",
      "          'boyd': 1,\n",
      "          'become': 1,\n",
      "          'hero': 1,\n",
      "          'victim': 1,\n",
      "          'relentless': 1,\n",
      "          'consumption': 1,\n",
      "          'ways': 1,\n",
      "          'imagined': 1,\n",
      "          'nboyds': 1,\n",
      "          'hell': 1,\n",
      "          'begins': 1,\n",
      "          'awarded': 1,\n",
      "          'act': 1,\n",
      "          'cowardice': 1,\n",
      "          'horrific': 1,\n",
      "          'mexicanamerican': 1,\n",
      "          'earns': 1,\n",
      "          'banishment': 1,\n",
      "          'desolate': 1,\n",
      "          'military': 1,\n",
      "          'outpost': 1,\n",
      "          'waystation': 1,\n",
      "          'western': 1,\n",
      "          'travelers': 1,\n",
      "          'barren': 1,\n",
      "          'sierra': 1,\n",
      "          'nevada': 1,\n",
      "          'california': 1,\n",
      "          'nupon': 1,\n",
      "          'arrival': 1,\n",
      "          'greeted': 1,\n",
      "          'small': 1,\n",
      "          'motley': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'hart': 1,\n",
      "          'jeffrey': 1,\n",
      "          'jones': 1,\n",
      "          'previously': 1,\n",
      "          'sophisticated': 1,\n",
      "          'lost': 1,\n",
      "          'aristocratic': 1,\n",
      "          'origin': 1,\n",
      "          'heat': 1,\n",
      "          'pretty': 1,\n",
      "          'given': 1,\n",
      "          'toffler': 1,\n",
      "          'jeremy': 1,\n",
      "          'davies': 1,\n",
      "          'forts': 1,\n",
      "          'personal': 1,\n",
      "          'emissary': 1,\n",
      "          'lord': 1,\n",
      "          'knox': 1,\n",
      "          'stephen': 1,\n",
      "          'spinella': 1,\n",
      "          'veterinarian': 1,\n",
      "          'plays': 1,\n",
      "          'doctor': 1,\n",
      "          'met': 1,\n",
      "          'bottle': 1,\n",
      "          'whiskey': 1,\n",
      "          'reich': 1,\n",
      "          'neal': 1,\n",
      "          'mcdonough': 1,\n",
      "          'nononsense': 1,\n",
      "          'seriously': 1,\n",
      "          'overmedicated': 1,\n",
      "          'cleaves': 1,\n",
      "          'david': 1,\n",
      "          'arquette': 1,\n",
      "          'cook': 1,\n",
      "          'whose': 1,\n",
      "          'meals': 1,\n",
      "          'inspired': 1,\n",
      "          'peyote': 1,\n",
      "          'culinary': 1,\n",
      "          'ambitions': 1,\n",
      "          'ninto': 1,\n",
      "          'cold': 1,\n",
      "          'bleak': 1,\n",
      "          'staggers': 1,\n",
      "          'stranger': 1,\n",
      "          'halfstarved': 1,\n",
      "          'scot': 1,\n",
      "          'traveling': 1,\n",
      "          'became': 1,\n",
      "          'snowbound': 1,\n",
      "          'nseeking': 1,\n",
      "          'refuge': 1,\n",
      "          'cave': 1,\n",
      "          'soon': 1,\n",
      "          'ran': 1,\n",
      "          'forced': 1,\n",
      "          'consume': 1,\n",
      "          'barely': 1,\n",
      "          'escaped': 1,\n",
      "          'becoming': 1,\n",
      "          'hors': 1,\n",
      "          'doeuvre': 1,\n",
      "          'nour': 1,\n",
      "          'heroes': 1,\n",
      "          'decide': 1,\n",
      "          'survivors': 1,\n",
      "          'tags': 1,\n",
      "          'along': 1,\n",
      "          'help': 1,\n",
      "          'nsoon': 1,\n",
      "          'clear': 1,\n",
      "          'colqhouns': 1,\n",
      "          'tale': 1,\n",
      "          'ramifications': 1,\n",
      "          'beyond': 1,\n",
      "          'survive': 1,\n",
      "          'involves': 1,\n",
      "          'old': 1,\n",
      "          'called': 1,\n",
      "          'weendigo': 1,\n",
      "          'flesh': 1,\n",
      "          'steals': 1,\n",
      "          'persons': 1,\n",
      "          'strength': 1,\n",
      "          'essence': 1,\n",
      "          'hunger': 1,\n",
      "          'insatiable': 1,\n",
      "          'craving': 1,\n",
      "          'wants': 1,\n",
      "          'stronger': 1,\n",
      "          'nthere': 1,\n",
      "          'enough': 1,\n",
      "          'escape': 1,\n",
      "          'fairly': 1,\n",
      "          'sickening': 1,\n",
      "          'healthy': 1,\n",
      "          'stomach': 1,\n",
      "          'whole': 1,\n",
      "          'nas': 1,\n",
      "          'professionally': 1,\n",
      "          'made': 1,\n",
      "          'wonder': 1,\n",
      "          'thought': 1,\n",
      "          'come': 1,\n",
      "          'piling': 1,\n",
      "          'theater': 1,\n",
      "          'nteenage': 1,\n",
      "          'fans': 1,\n",
      "          'wont': 1,\n",
      "          'care': 1,\n",
      "          'look': 1,\n",
      "          'remotely': 1,\n",
      "          'neve': 1,\n",
      "          'campell': 1,\n",
      "          'nolder': 1,\n",
      "          'folks': 1,\n",
      "          'might': 1,\n",
      "          'show': 1,\n",
      "          'hear': 1,\n",
      "          'actually': 1,\n",
      "          'satire': 1,\n",
      "          'pioneer': 1,\n",
      "          'theyll': 1,\n",
      "          'disappointed': 1,\n",
      "          'raw': 1,\n",
      "          'meat': 1,\n",
      "          'getting': 1,\n",
      "          'waved': 1,\n",
      "          'faces': 1,\n",
      "          'nbut': 1,\n",
      "          'jokes': 1,\n",
      "          'aside': 1,\n",
      "          'well': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'mature': 1,\n",
      "          'boast': 1,\n",
      "          'strangely': 1,\n",
      "          'effective': 1,\n",
      "          'electrify': 1,\n",
      "          'till': 1,\n",
      "          'end': 1,\n",
      "          'two': 1,\n",
      "          'main': 1,\n",
      "          'also': 1,\n",
      "          'interesting': 1,\n",
      "          'nboyd': 1,\n",
      "          'simple': 1,\n",
      "          'tiered': 1,\n",
      "          'fear': 1,\n",
      "          'sacred': 1,\n",
      "          'wish': 1,\n",
      "          'normal': 1,\n",
      "          'quite': 1,\n",
      "          'away': 1,\n",
      "          'gunpowder': 1,\n",
      "          'blood': 1,\n",
      "          'proves': 1,\n",
      "          'brink': 1,\n",
      "          'sacrificing': 1,\n",
      "          'believes': 1,\n",
      "          'physically': 1,\n",
      "          'power': 1,\n",
      "          'conviction': 1,\n",
      "          'make': 1,\n",
      "          'miracles': 1,\n",
      "          'happen': 1,\n",
      "          'macabre': 1,\n",
      "          'surreal': 1,\n",
      "          'ncompletely': 1,\n",
      "          'isolated': 1,\n",
      "          'rest': 1,\n",
      "          'fort': 1,\n",
      "          'spencer': 1,\n",
      "          'nhere': 1,\n",
      "          'time': 1,\n",
      "          'still': 1,\n",
      "          'changes': 1,\n",
      "          'inhabitants': 1,\n",
      "          'driven': 1,\n",
      "          'pillage': 1,\n",
      "          'nthey': 1,\n",
      "          'losers': 1,\n",
      "          'society': 1,\n",
      "          'banished': 1,\n",
      "          'used': 1,\n",
      "          'done': 1,\n",
      "          'else': 1,\n",
      "          'entire': 1,\n",
      "          'nmen': 1,\n",
      "          'loose': 1,\n",
      "          'result': 1,\n",
      "          'sort': 1,\n",
      "          'cabin': 1,\n",
      "          'fever': 1,\n",
      "          'ncannibalism': 1,\n",
      "          'sick': 1,\n",
      "          'game': 1,\n",
      "          'nsince': 1,\n",
      "          'pleasure': 1,\n",
      "          'living': 1,\n",
      "          'excitement': 1,\n",
      "          'dying': 1,\n",
      "          'whos': 1,\n",
      "          'going': 1,\n",
      "          'die': 1,\n",
      "          'first': 1,\n",
      "          'unchangeable': 1,\n",
      "          'landscape': 1,\n",
      "          'birds': 1,\n",
      "          'sing': 1,\n",
      "          'even': 1,\n",
      "          'wind': 1,\n",
      "          'doesnt': 1,\n",
      "          'move': 1,\n",
      "          'leaves': 1,\n",
      "          'trees': 1,\n",
      "          'resembles': 1,\n",
      "          'kubricks': 1,\n",
      "          'hard': 1,\n",
      "          'mad': 1,\n",
      "          'aspects': 1,\n",
      "          'connection': 1,\n",
      "          'viewer': 1,\n",
      "          'establishes': 1,\n",
      "          'understand': 1,\n",
      "          'although': 1,\n",
      "          'half': 1,\n",
      "          'crazed': 1,\n",
      "          'killers': 1,\n",
      "          'nmusic': 1,\n",
      "          'factor': 1,\n",
      "          'strengthens': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'composed': 1,\n",
      "          'michael': 1,\n",
      "          'nyman': 1,\n",
      "          'piano': 1,\n",
      "          'damon': 1,\n",
      "          'albarn': 1,\n",
      "          'seems': 1,\n",
      "          'place': 1,\n",
      "          'complete': 1,\n",
      "          'contrast': 1,\n",
      "          'image': 1,\n",
      "          'reflects': 1,\n",
      "          'twisted': 1,\n",
      "          'reactions': 1,\n",
      "          'situation': 1,\n",
      "          'director': 1,\n",
      "          'stated': 1,\n",
      "          'ok': 1,\n",
      "          'laugh': 1,\n",
      "          'nand': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'funny': 1,\n",
      "          'quote': 1,\n",
      "          'nlonely': 1,\n",
      "          'nyou': 1,\n",
      "          'friends': 1,\n",
      "          'quoting': 1,\n",
      "          'ben': 1,\n",
      "          'franklin': 1,\n",
      "          'saying': 1,\n",
      "          'ndont': 1,\n",
      "          'nmostly': 1,\n",
      "          'shocking': 1,\n",
      "          'goes': 1,\n",
      "          'deeper': 1,\n",
      "          'minds': 1,\n",
      "          'witness': 1,\n",
      "          'nevery': 1,\n",
      "          'actor': 1,\n",
      "          'great': 1,\n",
      "          'job': 1,\n",
      "          'nespecially': 1,\n",
      "          'sinister': 1,\n",
      "          'moral': 1,\n",
      "          'nagged': 1,\n",
      "          'undeserved': 1,\n",
      "          'honor': 1,\n",
      "          'couple': 1,\n",
      "          'resemble': 1,\n",
      "          'lestat': 1,\n",
      "          'lois': 1,\n",
      "          'neil': 1,\n",
      "          'jordans': 1,\n",
      "          'interview': 1,\n",
      "          'nactually': 1,\n",
      "          'amusing': 1,\n",
      "          'parallels': 1,\n",
      "          'connections': 1,\n",
      "          'movies': 1,\n",
      "          'topics': 1,\n",
      "          'alike': 1,\n",
      "          'wonderfully': 1,\n",
      "          'shock': 1,\n",
      "          'finale': 1,\n",
      "          'looses': 1,\n",
      "          'focus': 1,\n",
      "          'primitive': 1,\n",
      "          'rather': 1,\n",
      "          'boring': 1,\n",
      "          'nhowever': 1,\n",
      "          'little': 1,\n",
      "          'failures': 1,\n",
      "          'diminish': 1,\n",
      "          'impression': 1,\n",
      "          'comedy': 1,\n",
      "          'situations': 1,\n",
      "          'fable': 1,\n",
      "          'monster': 1,\n",
      "          'lurks': 1,\n",
      "          'everyones': 1,\n",
      "          'side': 1,\n",
      "          'trying': 1,\n",
      "          'hide': 1,\n",
      "          'always': 1,\n",
      "          'successful': 1,\n",
      "          'films': 1,\n",
      "          'said': 1,\n",
      "          'ni': 1,\n",
      "          'say': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hunting': 6,\n",
      "          'good': 5,\n",
      "          'damon': 3,\n",
      "          'film': 2,\n",
      "          'plenty': 2,\n",
      "          'story': 2,\n",
      "          'nthe': 2,\n",
      "          'robin': 2,\n",
      "          'williams': 2,\n",
      "          'written': 2,\n",
      "          'right': 2,\n",
      "          'hits': 2,\n",
      "          'like': 2,\n",
      "          'doesnt': 2,\n",
      "          'point': 2,\n",
      "          'two': 1,\n",
      "          'movies': 1,\n",
      "          'one': 1,\n",
      "          'independent': 1,\n",
      "          'take': 1,\n",
      "          'struggle': 1,\n",
      "          'four': 1,\n",
      "          'boston': 1,\n",
      "          'pals': 1,\n",
      "          'traditional': 1,\n",
      "          'hollywood': 1,\n",
      "          'prodigy': 1,\n",
      "          'child': 1,\n",
      "          'complete': 1,\n",
      "          'upbeats': 1,\n",
      "          'downfalls': 1,\n",
      "          'sporadically': 1,\n",
      "          'moving': 1,\n",
      "          'situations': 1,\n",
      "          'shtick': 1,\n",
      "          'nunusually': 1,\n",
      "          'directed': 1,\n",
      "          'gus': 1,\n",
      "          'van': 1,\n",
      "          'sant': 1,\n",
      "          'overcomes': 1,\n",
      "          'banalities': 1,\n",
      "          'affirming': 1,\n",
      "          'emergence': 1,\n",
      "          'fresh': 1,\n",
      "          'new': 1,\n",
      "          'talent': 1,\n",
      "          'stars': 1,\n",
      "          'matt': 1,\n",
      "          'mathematical': 1,\n",
      "          'rebellious': 1,\n",
      "          'whiz': 1,\n",
      "          'kid': 1,\n",
      "          'inadvertly': 1,\n",
      "          'discovered': 1,\n",
      "          'college': 1,\n",
      "          'professor': 1,\n",
      "          'stellan': 1,\n",
      "          'skarsgard': 1,\n",
      "          'places': 1,\n",
      "          'psychological': 1,\n",
      "          'supervision': 1,\n",
      "          'nin': 1,\n",
      "          'nutshell': 1,\n",
      "          'thats': 1,\n",
      "          'core': 1,\n",
      "          'infuses': 1,\n",
      "          'script': 1,\n",
      "          'co': 1,\n",
      "          'chasing': 1,\n",
      "          'amys': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'amount': 1,\n",
      "          'warmth': 1,\n",
      "          'sensitivity': 1,\n",
      "          'humanity': 1,\n",
      "          'accentuate': 1,\n",
      "          'position': 1,\n",
      "          'refreshing': 1,\n",
      "          'multi': 1,\n",
      "          'talented': 1,\n",
      "          'performer': 1,\n",
      "          'nbut': 1,\n",
      "          'acting': 1,\n",
      "          'mark': 1,\n",
      "          'notes': 1,\n",
      "          'flying': 1,\n",
      "          'dejavu': 1,\n",
      "          'role': 1,\n",
      "          'awakenings': 1,\n",
      "          'devastated': 1,\n",
      "          'shrink': 1,\n",
      "          'closed': 1,\n",
      "          'contact': 1,\n",
      "          'society': 1,\n",
      "          'due': 1,\n",
      "          'wifes': 1,\n",
      "          'tragic': 1,\n",
      "          'death': 1,\n",
      "          'ndamon': 1,\n",
      "          'effortlessly': 1,\n",
      "          'blends': 1,\n",
      "          'carelesness': 1,\n",
      "          'gregarious': 1,\n",
      "          'confused': 1,\n",
      "          'thug': 1,\n",
      "          'absorbing': 1,\n",
      "          'ingeniousness': 1,\n",
      "          'someone': 1,\n",
      "          'einstein': 1,\n",
      "          'nhis': 1,\n",
      "          'rich': 1,\n",
      "          'complex': 1,\n",
      "          'character': 1,\n",
      "          'pulp': 1,\n",
      "          'neverything': 1,\n",
      "          'else': 1,\n",
      "          'pales': 1,\n",
      "          'comparison': 1,\n",
      "          'n': 1,\n",
      "          'exposes': 1,\n",
      "          'lack': 1,\n",
      "          'profoundness': 1,\n",
      "          'deliberately': 1,\n",
      "          'schmaltzy': 1,\n",
      "          'storytelling': 1,\n",
      "          'unlike': 1,\n",
      "          'little': 1,\n",
      "          'man': 1,\n",
      "          'tate': 1,\n",
      "          'phenomenon': 1,\n",
      "          'set': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'b': 1,\n",
      "          'manner': 1,\n",
      "          'saga': 1,\n",
      "          'extraordinary': 1,\n",
      "          'individual': 1,\n",
      "          'whose': 1,\n",
      "          'feasibility': 1,\n",
      "          'success': 1,\n",
      "          'automatically': 1,\n",
      "          'signify': 1,\n",
      "          'must': 1,\n",
      "          'make': 1,\n",
      "          'easy': 1,\n",
      "          'familiar': 1,\n",
      "          'choices': 1,\n",
      "          'protagonists': 1,\n",
      "          'aforementioned': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'curdled': 7,\n",
      "          'jones': 5,\n",
      "          'nthe': 5,\n",
      "          'really': 5,\n",
      "          'killer': 4,\n",
      "          'blue': 4,\n",
      "          'blood': 4,\n",
      "          'scene': 4,\n",
      "          'short': 4,\n",
      "          'humour': 3,\n",
      "          'pulp': 3,\n",
      "          'fiction': 3,\n",
      "          'see': 3,\n",
      "          'sequence': 3,\n",
      "          'funny': 3,\n",
      "          'played': 3,\n",
      "          'murder': 3,\n",
      "          'killers': 3,\n",
      "          'one': 3,\n",
      "          'would': 3,\n",
      "          'black': 2,\n",
      "          'appeal': 2,\n",
      "          'give': 2,\n",
      "          'non': 2,\n",
      "          'pretty': 2,\n",
      "          'gabriela': 2,\n",
      "          'angela': 2,\n",
      "          'serial': 2,\n",
      "          'scrapbook': 2,\n",
      "          'hes': 2,\n",
      "          'william': 2,\n",
      "          'baldwin': 2,\n",
      "          'spoiler': 2,\n",
      "          'particularly': 2,\n",
      "          'day': 2,\n",
      "          'line': 2,\n",
      "          'nshe': 2,\n",
      "          'job': 2,\n",
      "          'gabrielas': 2,\n",
      "          'fascination': 2,\n",
      "          'wideeyed': 2,\n",
      "          'also': 2,\n",
      "          'tarantino': 2,\n",
      "          'braddock': 2,\n",
      "          'character': 2,\n",
      "          'best': 2,\n",
      "          'role': 2,\n",
      "          'based': 2,\n",
      "          'great': 2,\n",
      "          'amusing': 2,\n",
      "          'running': 2,\n",
      "          'time': 2,\n",
      "          'minutes': 2,\n",
      "          'deliciously': 1,\n",
      "          'dark': 1,\n",
      "          'witty': 1,\n",
      "          'comedy': 1,\n",
      "          'wont': 1,\n",
      "          'everyone': 1,\n",
      "          'nto': 1,\n",
      "          'specific': 1,\n",
      "          'let': 1,\n",
      "          'example': 1,\n",
      "          'ndo': 1,\n",
      "          'know': 1,\n",
      "          'jules': 1,\n",
      "          'vincent': 1,\n",
      "          'go': 1,\n",
      "          'brain': 1,\n",
      "          'detail': 1,\n",
      "          'marvin': 1,\n",
      "          'head': 1,\n",
      "          'accidentally': 1,\n",
      "          'get': 1,\n",
      "          'separated': 1,\n",
      "          'nif': 1,\n",
      "          'thought': 1,\n",
      "          'completely': 1,\n",
      "          'tasteless': 1,\n",
      "          'unfunny': 1,\n",
      "          'dont': 1,\n",
      "          'hand': 1,\n",
      "          'found': 1,\n",
      "          'sense': 1,\n",
      "          'aimed': 1,\n",
      "          'nour': 1,\n",
      "          'films': 1,\n",
      "          'heroine': 1,\n",
      "          'woman': 1,\n",
      "          'obssessively': 1,\n",
      "          'curious': 1,\n",
      "          'even': 1,\n",
      "          'keeps': 1,\n",
      "          'news': 1,\n",
      "          'articles': 1,\n",
      "          'nluckily': 1,\n",
      "          'miami': 1,\n",
      "          'plagued': 1,\n",
      "          'rampage': 1,\n",
      "          'getting': 1,\n",
      "          'big': 1,\n",
      "          'nickname': 1,\n",
      "          'press': 1,\n",
      "          'preys': 1,\n",
      "          'older': 1,\n",
      "          'rich': 1,\n",
      "          'socialite': 1,\n",
      "          'women': 1,\n",
      "          'none': 1,\n",
      "          'striking': 1,\n",
      "          'propensity': 1,\n",
      "          'decapitate': 1,\n",
      "          'victims': 1,\n",
      "          'ngabriela': 1,\n",
      "          'watching': 1,\n",
      "          'television': 1,\n",
      "          'spots': 1,\n",
      "          'advertisement': 1,\n",
      "          'firm': 1,\n",
      "          'whose': 1,\n",
      "          'work': 1,\n",
      "          'perfectly': 1,\n",
      "          'attuned': 1,\n",
      "          'interests': 1,\n",
      "          'immediately': 1,\n",
      "          'quits': 1,\n",
      "          'signs': 1,\n",
      "          'pfcs': 1,\n",
      "          'stands': 1,\n",
      "          'postforensic': 1,\n",
      "          'cleaning': 1,\n",
      "          'service': 1,\n",
      "          'nno': 1,\n",
      "          'points': 1,\n",
      "          'guessing': 1,\n",
      "          'nher': 1,\n",
      "          'workmates': 1,\n",
      "          'confused': 1,\n",
      "          'ntheres': 1,\n",
      "          'hilarious': 1,\n",
      "          'locker': 1,\n",
      "          'room': 1,\n",
      "          'debate': 1,\n",
      "          'whether': 1,\n",
      "          'decapitated': 1,\n",
      "          'heads': 1,\n",
      "          'talk': 1,\n",
      "          'say': 1,\n",
      "          'ngabrielas': 1,\n",
      "          'partner': 1,\n",
      "          'elena': 1,\n",
      "          'mel': 1,\n",
      "          'gorham': 1,\n",
      "          'perturbed': 1,\n",
      "          'becomes': 1,\n",
      "          'upset': 1,\n",
      "          'volunteers': 1,\n",
      "          'clean': 1,\n",
      "          'latest': 1,\n",
      "          'theyre': 1,\n",
      "          'messiest': 1,\n",
      "          'nunbeknownst': 1,\n",
      "          'last': 1,\n",
      "          'victim': 1,\n",
      "          'left': 1,\n",
      "          'something': 1,\n",
      "          'id': 1,\n",
      "          'heading': 1,\n",
      "          'comparison': 1,\n",
      "          'earlier': 1,\n",
      "          'accidental': 1,\n",
      "          'quentin': 1,\n",
      "          'executiveproduced': 1,\n",
      "          'began': 1,\n",
      "          'life': 1,\n",
      "          'saw': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'festival': 1,\n",
      "          'napparently': 1,\n",
      "          'impressed': 1,\n",
      "          'helped': 1,\n",
      "          'convert': 1,\n",
      "          'featurelength': 1,\n",
      "          'nthere': 1,\n",
      "          'parallels': 1,\n",
      "          'star': 1,\n",
      "          'top': 1,\n",
      "          'billing': 1,\n",
      "          'goes': 1,\n",
      "          'central': 1,\n",
      "          'whos': 1,\n",
      "          'probably': 1,\n",
      "          'known': 1,\n",
      "          'esmerelda': 1,\n",
      "          'villalobos': 1,\n",
      "          'deathobssessed': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'nthat': 1,\n",
      "          'written': 1,\n",
      "          'specifically': 1,\n",
      "          'upon': 1,\n",
      "          'similar': 1,\n",
      "          'aforementioned': 1,\n",
      "          'jr': 1,\n",
      "          'njones': 1,\n",
      "          'shes': 1,\n",
      "          'wonderfully': 1,\n",
      "          'maintains': 1,\n",
      "          'naive': 1,\n",
      "          'curiousity': 1,\n",
      "          'without': 1,\n",
      "          'compromising': 1,\n",
      "          'characters': 1,\n",
      "          'innocence': 1,\n",
      "          'likeability': 1,\n",
      "          'express': 1,\n",
      "          'much': 1,\n",
      "          'lift': 1,\n",
      "          'eyebrow': 1,\n",
      "          'nits': 1,\n",
      "          'performance': 1,\n",
      "          'nreb': 1,\n",
      "          'braddocks': 1,\n",
      "          'direction': 1,\n",
      "          'extremely': 1,\n",
      "          'sharp': 1,\n",
      "          'clever': 1,\n",
      "          'toeing': 1,\n",
      "          'bad': 1,\n",
      "          'taste': 1,\n",
      "          'outrageously': 1,\n",
      "          'involves': 1,\n",
      "          'dancing': 1,\n",
      "          'opening': 1,\n",
      "          'credit': 1,\n",
      "          'inventive': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'impossible': 1,\n",
      "          'take': 1,\n",
      "          'stuff': 1,\n",
      "          'seriously': 1,\n",
      "          'youre': 1,\n",
      "          'supposed': 1,\n",
      "          'knows': 1,\n",
      "          'audience': 1,\n",
      "          'joke': 1,\n",
      "          'makes': 1,\n",
      "          'fun': 1,\n",
      "          'little': 1,\n",
      "          'romp': 1,\n",
      "          'result': 1,\n",
      "          'drawback': 1,\n",
      "          'feels': 1,\n",
      "          'like': 1,\n",
      "          'material': 1,\n",
      "          'stretched': 1,\n",
      "          'thin': 1,\n",
      "          'order': 1,\n",
      "          'fulfill': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'parts': 1,\n",
      "          'seem': 1,\n",
      "          'drag': 1,\n",
      "          'nwhile': 1,\n",
      "          'already': 1,\n",
      "          '94': 1,\n",
      "          'could': 1,\n",
      "          'stand': 1,\n",
      "          'lose': 1,\n",
      "          'twenty': 1,\n",
      "          'better': 1,\n",
      "          'pacing': 1,\n",
      "          'ncurdled': 1,\n",
      "          'seems': 1,\n",
      "          'destined': 1,\n",
      "          'nice': 1,\n",
      "          'cult': 1,\n",
      "          'miramax': 1,\n",
      "          'nitll': 1,\n",
      "          'interesting': 1,\n",
      "          'mainstream': 1,\n",
      "          'audiences': 1,\n",
      "          'well': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'simon': 6,\n",
      "          'henry': 5,\n",
      "          'fool': 4,\n",
      "          'story': 3,\n",
      "          'nthe': 3,\n",
      "          'said': 2,\n",
      "          'less': 2,\n",
      "          'end': 2,\n",
      "          'movie': 2,\n",
      "          'final': 2,\n",
      "          'ambiguity': 2,\n",
      "          'nhenry': 2,\n",
      "          'turns': 2,\n",
      "          'simons': 2,\n",
      "          'nthese': 2,\n",
      "          'n': 2,\n",
      "          'film': 2,\n",
      "          'often': 1,\n",
      "          'fans': 1,\n",
      "          'hal': 1,\n",
      "          'hartley': 1,\n",
      "          'movies': 1,\n",
      "          'acquired': 1,\n",
      "          'taste': 1,\n",
      "          'nindeed': 1,\n",
      "          'nwhile': 1,\n",
      "          'perhaps': 1,\n",
      "          'dangerous': 1,\n",
      "          'tequila': 1,\n",
      "          'shooters': 1,\n",
      "          'bungeejumping': 1,\n",
      "          'require': 1,\n",
      "          'amount': 1,\n",
      "          'physical': 1,\n",
      "          'stamina': 1,\n",
      "          'concentration': 1,\n",
      "          'ni': 1,\n",
      "          'felt': 1,\n",
      "          'rewarded': 1,\n",
      "          'creeps': 1,\n",
      "          'youat': 1,\n",
      "          'slow': 1,\n",
      "          '139': 1,\n",
      "          'minutes': 1,\n",
      "          'mean': 1,\n",
      "          'creepsand': 1,\n",
      "          'despite': 1,\n",
      "          'shots': 1,\n",
      "          'left': 1,\n",
      "          'completely': 1,\n",
      "          'satisfied': 1,\n",
      "          'used': 1,\n",
      "          'e': 1,\n",
      "          'arrives': 1,\n",
      "          'garbageman': 1,\n",
      "          'grims': 1,\n",
      "          'house': 1,\n",
      "          'claims': 1,\n",
      "          'vacant': 1,\n",
      "          'basement': 1,\n",
      "          'apartment': 1,\n",
      "          'almost': 1,\n",
      "          'instantly': 1,\n",
      "          'inspires': 1,\n",
      "          'urbaniak': 1,\n",
      "          'take': 1,\n",
      "          'writinghenry': 1,\n",
      "          'martin': 1,\n",
      "          'donovan': 1,\n",
      "          'lookalike': 1,\n",
      "          'ryan': 1,\n",
      "          'exconvict': 1,\n",
      "          'oncegreat': 1,\n",
      "          'author': 1,\n",
      "          'exiled': 1,\n",
      "          'marginalized': 1,\n",
      "          'publishing': 1,\n",
      "          'community': 1,\n",
      "          'criminal': 1,\n",
      "          'activity': 1,\n",
      "          'nsimons': 1,\n",
      "          'poetry': 1,\n",
      "          'local': 1,\n",
      "          'sensation': 1,\n",
      "          'causes': 1,\n",
      "          'mute': 1,\n",
      "          'women': 1,\n",
      "          'sing': 1,\n",
      "          'highschool': 1,\n",
      "          'girls': 1,\n",
      "          'swoon': 1,\n",
      "          'councilmen': 1,\n",
      "          'rile': 1,\n",
      "          'pornographic': 1,\n",
      "          'content': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'seduces': 1,\n",
      "          'dependent': 1,\n",
      "          'mother': 1,\n",
      "          'porter': 1,\n",
      "          'immature': 1,\n",
      "          'sister': 1,\n",
      "          'sundance': 1,\n",
      "          'queen': 1,\n",
      "          'posey': 1,\n",
      "          'philosophical': 1,\n",
      "          'babble': 1,\n",
      "          'brilliant': 1,\n",
      "          'inane': 1,\n",
      "          'breathy': 1,\n",
      "          'animal': 1,\n",
      "          'lust': 1,\n",
      "          'elements': 1,\n",
      "          'result': 1,\n",
      "          'climaxes': 1,\n",
      "          'inevitable': 1,\n",
      "          'unpredictable': 1,\n",
      "          'teacherstudent': 1,\n",
      "          'relationship': 1,\n",
      "          'formed': 1,\n",
      "          'eventually': 1,\n",
      "          'reverses': 1,\n",
      "          'sprinkled': 1,\n",
      "          'hartleyian': 1,\n",
      "          'flourishes': 1,\n",
      "          'drinks': 1,\n",
      "          'milk': 1,\n",
      "          'udderleys': 1,\n",
      "          'big': 1,\n",
      "          'teen': 1,\n",
      "          'hangout': 1,\n",
      "          'called': 1,\n",
      "          'world': 1,\n",
      "          'donuts': 1,\n",
      "          'wears': 1,\n",
      "          'garbagemans': 1,\n",
      "          'uniform': 1,\n",
      "          'throughout': 1,\n",
      "          'editing': 1,\n",
      "          'style': 1,\n",
      "          'decidedly': 1,\n",
      "          'elliptical': 1,\n",
      "          'key': 1,\n",
      "          'conclusions': 1,\n",
      "          'performances': 1,\n",
      "          'three': 1,\n",
      "          'leads': 1,\n",
      "          'abrasive': 1,\n",
      "          'first': 1,\n",
      "          'selfconsciously': 1,\n",
      "          'quirky': 1,\n",
      "          'introductory': 1,\n",
      "          'scenes': 1,\n",
      "          'chore': 1,\n",
      "          'people': 1,\n",
      "          'grow': 1,\n",
      "          'convey': 1,\n",
      "          'genuine': 1,\n",
      "          'passion': 1,\n",
      "          'belief': 1,\n",
      "          'longterm': 1,\n",
      "          'goals': 1,\n",
      "          'may': 1,\n",
      "          'drink': 1,\n",
      "          'lot': 1,\n",
      "          'budweiser': 1,\n",
      "          'hang': 1,\n",
      "          'streetcorner': 1,\n",
      "          'arent': 1,\n",
      "          'pop': 1,\n",
      "          'slackers': 1,\n",
      "          'rather': 1,\n",
      "          'classical': 1,\n",
      "          'tutor': 1,\n",
      "          'better': 1,\n",
      "          'talker': 1,\n",
      "          'doer': 1,\n",
      "          'raised': 1,\n",
      "          'books': 1,\n",
      "          'timid': 1,\n",
      "          'tutee': 1,\n",
      "          'innate': 1,\n",
      "          'talent': 1,\n",
      "          'master': 1,\n",
      "          'dreams': 1,\n",
      "          'shades': 1,\n",
      "          'school': 1,\n",
      "          'finished': 1,\n",
      "          'epic': 1,\n",
      "          'proportions': 1,\n",
      "          'small': 1,\n",
      "          'third': 1,\n",
      "          'test': 1,\n",
      "          'ones': 1,\n",
      "          'patience': 1,\n",
      "          'yet': 1,\n",
      "          'tight': 1,\n",
      "          'hardly': 1,\n",
      "          'excessive': 1,\n",
      "          'length': 1,\n",
      "          'nhow': 1,\n",
      "          'refreshing': 1,\n",
      "          'see': 1,\n",
      "          'long': 1,\n",
      "          '1998': 1,\n",
      "          'devoted': 1,\n",
      "          'entirely': 1,\n",
      "          'character': 1,\n",
      "          'nand': 1,\n",
      "          'unless': 1,\n",
      "          'nodded': 1,\n",
      "          'single': 1,\n",
      "          'building': 1,\n",
      "          'exploded': 1,\n",
      "          'nthis': 1,\n",
      "          'hartleys': 1,\n",
      "          'seventh': 1,\n",
      "          'feature': 1,\n",
      "          'contemplative': 1,\n",
      "          'artist': 1,\n",
      "          'fortunately': 1,\n",
      "          'never': 1,\n",
      "          'get': 1,\n",
      "          'sampling': 1,\n",
      "          'work': 1,\n",
      "          'testament': 1,\n",
      "          'actors': 1,\n",
      "          'screenplay': 1,\n",
      "          'surmise': 1,\n",
      "          'sort': 1,\n",
      "          'thoughts': 1,\n",
      "          'would': 1,\n",
      "          'pour': 1,\n",
      "          'writers': 1,\n",
      "          'pens': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'nthe': 11,\n",
      "          'nin': 9,\n",
      "          'ants': 9,\n",
      "          'best': 8,\n",
      "          'one': 8,\n",
      "          'may': 7,\n",
      "          'nbut': 7,\n",
      "          'antz': 7,\n",
      "          'kids': 7,\n",
      "          'ant': 7,\n",
      "          'z': 7,\n",
      "          'bala': 7,\n",
      "          'two': 5,\n",
      "          'story': 5,\n",
      "          'dreamworks': 5,\n",
      "          'many': 5,\n",
      "          'like': 5,\n",
      "          'animation': 5,\n",
      "          'good': 5,\n",
      "          'people': 4,\n",
      "          'part': 4,\n",
      "          'humor': 4,\n",
      "          'life': 4,\n",
      "          'would': 4,\n",
      "          'disney': 4,\n",
      "          'animated': 4,\n",
      "          'feature': 4,\n",
      "          'also': 4,\n",
      "          'though': 4,\n",
      "          'worker': 4,\n",
      "          'stone': 4,\n",
      "          'wants': 4,\n",
      "          'battle': 4,\n",
      "          'fact': 4,\n",
      "          'see': 4,\n",
      "          'take': 4,\n",
      "          'scene': 4,\n",
      "          'lot': 4,\n",
      "          'either': 3,\n",
      "          'love': 3,\n",
      "          'allen': 3,\n",
      "          'family': 3,\n",
      "          'funny': 3,\n",
      "          'years': 3,\n",
      "          'body': 3,\n",
      "          'allens': 3,\n",
      "          'something': 3,\n",
      "          'come': 3,\n",
      "          'better': 3,\n",
      "          'nantz': 3,\n",
      "          'bugs': 3,\n",
      "          'dont': 3,\n",
      "          'definitely': 3,\n",
      "          'even': 3,\n",
      "          'im': 3,\n",
      "          'nthis': 3,\n",
      "          'parents': 3,\n",
      "          'shouldnt': 3,\n",
      "          'especially': 3,\n",
      "          'adults': 3,\n",
      "          'made': 3,\n",
      "          'weaver': 3,\n",
      "          'stallone': 3,\n",
      "          'nafter': 3,\n",
      "          'colony': 3,\n",
      "          'queen': 3,\n",
      "          'get': 3,\n",
      "          'children': 3,\n",
      "          'probably': 3,\n",
      "          'great': 3,\n",
      "          'young': 3,\n",
      "          'head': 3,\n",
      "          'voice': 3,\n",
      "          'woody': 2,\n",
      "          'ni': 2,\n",
      "          'hes': 2,\n",
      "          'shtick': 2,\n",
      "          'nso': 2,\n",
      "          'away': 2,\n",
      "          'could': 2,\n",
      "          'physical': 2,\n",
      "          'nthose': 2,\n",
      "          'problems': 2,\n",
      "          'able': 2,\n",
      "          'us': 2,\n",
      "          'laughing': 2,\n",
      "          'audiences': 2,\n",
      "          'never': 2,\n",
      "          'seen': 2,\n",
      "          'computer': 2,\n",
      "          'technology': 2,\n",
      "          'nmany': 2,\n",
      "          'original': 2,\n",
      "          'picture': 2,\n",
      "          'ndisneys': 2,\n",
      "          'due': 2,\n",
      "          'another': 2,\n",
      "          'seems': 2,\n",
      "          'deal': 2,\n",
      "          'films': 2,\n",
      "          'let': 2,\n",
      "          'past': 2,\n",
      "          '1997': 2,\n",
      "          'time': 2,\n",
      "          'ridiculous': 2,\n",
      "          'situations': 2,\n",
      "          'dramatic': 2,\n",
      "          'studio': 2,\n",
      "          'tell': 2,\n",
      "          'sure': 2,\n",
      "          'mouse': 2,\n",
      "          'put': 2,\n",
      "          'toy': 2,\n",
      "          'pg': 2,\n",
      "          'dialogue': 2,\n",
      "          'makes': 2,\n",
      "          'type': 2,\n",
      "          'entertaining': 2,\n",
      "          'million': 2,\n",
      "          'none': 2,\n",
      "          'place': 2,\n",
      "          'princess': 2,\n",
      "          'without': 2,\n",
      "          'asks': 2,\n",
      "          'dance': 2,\n",
      "          'everyone': 2,\n",
      "          'leader': 2,\n",
      "          'falls': 2,\n",
      "          'getting': 2,\n",
      "          'general': 2,\n",
      "          'hackman': 2,\n",
      "          'merely': 2,\n",
      "          'bancroft': 2,\n",
      "          'rid': 2,\n",
      "          'loyal': 2,\n",
      "          'army': 2,\n",
      "          'nhe': 2,\n",
      "          'walkin': 2,\n",
      "          'sequence': 2,\n",
      "          'stunning': 2,\n",
      "          'similar': 2,\n",
      "          'nhowever': 2,\n",
      "          'around': 2,\n",
      "          'magnifying': 2,\n",
      "          'intentionally': 2,\n",
      "          'look': 2,\n",
      "          'beam': 2,\n",
      "          'nvisually': 2,\n",
      "          'seeing': 2,\n",
      "          'rather': 2,\n",
      "          'nthey': 2,\n",
      "          'involves': 2,\n",
      "          'ball': 2,\n",
      "          'perfect': 2,\n",
      "          'example': 2,\n",
      "          'voices': 2,\n",
      "          'glover': 2,\n",
      "          'pores': 2,\n",
      "          'although': 2,\n",
      "          'doubt': 2,\n",
      "          'course': 2,\n",
      "          'nif': 2,\n",
      "          'done': 2,\n",
      "          'go': 2,\n",
      "          'talent': 2,\n",
      "          'always': 2,\n",
      "          'comic': 2,\n",
      "          'shows': 2,\n",
      "          'actor': 2,\n",
      "          'action': 2,\n",
      "          'role': 2,\n",
      "          'aykroyd': 2,\n",
      "          'recognize': 2,\n",
      "          'show': 2,\n",
      "          'guterman': 2,\n",
      "          'fun': 2,\n",
      "          'language': 2,\n",
      "          'home': 2,\n",
      "          'sexual': 2,\n",
      "          'innuendos': 2,\n",
      "          'enough': 2,\n",
      "          'fit': 1,\n",
      "          'different': 1,\n",
      "          'categories': 1,\n",
      "          'hate': 1,\n",
      "          'guts': 1,\n",
      "          'nmy': 1,\n",
      "          'hates': 1,\n",
      "          'movies': 1,\n",
      "          'think': 1,\n",
      "          'gotten': 1,\n",
      "          'forced': 1,\n",
      "          'contrived': 1,\n",
      "          'maybe': 1,\n",
      "          'taking': 1,\n",
      "          'decision': 1,\n",
      "          'producer': 1,\n",
      "          'thought': 1,\n",
      "          'nunrestrained': 1,\n",
      "          'boundaries': 1,\n",
      "          'comes': 1,\n",
      "          'shining': 1,\n",
      "          'appearance': 1,\n",
      "          'join': 1,\n",
      "          'rest': 1,\n",
      "          'intelligent': 1,\n",
      "          'observations': 1,\n",
      "          'verbal': 1,\n",
      "          'comedy': 1,\n",
      "          'want': 1,\n",
      "          'skip': 1,\n",
      "          '1995': 1,\n",
      "          'introduced': 1,\n",
      "          'sparked': 1,\n",
      "          'imaginations': 1,\n",
      "          'showed': 1,\n",
      "          'theyd': 1,\n",
      "          'ntoy': 1,\n",
      "          'used': 1,\n",
      "          'stateoftheart': 1,\n",
      "          'presented': 1,\n",
      "          'world': 1,\n",
      "          'toys': 1,\n",
      "          'alive': 1,\n",
      "          'humans': 1,\n",
      "          'present': 1,\n",
      "          'critics': 1,\n",
      "          'call': 1,\n",
      "          'believe': 1,\n",
      "          'say': 1,\n",
      "          'completely': 1,\n",
      "          'motion': 1,\n",
      "          'however': 1,\n",
      "          'upped': 1,\n",
      "          'ante': 1,\n",
      "          'considerably': 1,\n",
      "          'isnt': 1,\n",
      "          'months': 1,\n",
      "          'received': 1,\n",
      "          'end': 1,\n",
      "          'nby': 1,\n",
      "          'beating': 1,\n",
      "          'satisfied': 1,\n",
      "          'thirst': 1,\n",
      "          'computeranimated': 1,\n",
      "          'fool': 1,\n",
      "          'scared': 1,\n",
      "          'competitions': 1,\n",
      "          'broken': 1,\n",
      "          'studios': 1,\n",
      "          'volcano': 1,\n",
      "          'duel': 1,\n",
      "          'opinion': 1,\n",
      "          'dantes': 1,\n",
      "          'peak': 1,\n",
      "          'came': 1,\n",
      "          'way': 1,\n",
      "          'ahead': 1,\n",
      "          'predecessor': 1,\n",
      "          'quality': 1,\n",
      "          'nvolcano': 1,\n",
      "          'premise': 1,\n",
      "          'destroyed': 1,\n",
      "          '1998': 1,\n",
      "          'twice': 1,\n",
      "          'competing': 1,\n",
      "          'nfirst': 1,\n",
      "          'comet': 1,\n",
      "          'competition': 1,\n",
      "          'armageddon': 1,\n",
      "          'blew': 1,\n",
      "          'cheesily': 1,\n",
      "          'competitor': 1,\n",
      "          'deep': 1,\n",
      "          'impact': 1,\n",
      "          'interesting': 1,\n",
      "          'beloved': 1,\n",
      "          'goes': 1,\n",
      "          'newcomer': 1,\n",
      "          'nwho': 1,\n",
      "          'prevail': 1,\n",
      "          'ntime': 1,\n",
      "          'mr': 1,\n",
      "          'nothing': 1,\n",
      "          'fear': 1,\n",
      "          'sound': 1,\n",
      "          'didnt': 1,\n",
      "          'contrary': 1,\n",
      "          'id': 1,\n",
      "          'rating': 1,\n",
      "          'appear': 1,\n",
      "          'disneys': 1,\n",
      "          'version': 1,\n",
      "          'nsome': 1,\n",
      "          'pushes': 1,\n",
      "          'envelope': 1,\n",
      "          'familyoriented': 1,\n",
      "          'nsexual': 1,\n",
      "          'innuendoes': 1,\n",
      "          'profanity': 1,\n",
      "          'pop': 1,\n",
      "          'occasionally': 1,\n",
      "          'geared': 1,\n",
      "          'adult': 1,\n",
      "          'crowd': 1,\n",
      "          'written': 1,\n",
      "          'theater': 1,\n",
      "          'attended': 1,\n",
      "          'families': 1,\n",
      "          'often': 1,\n",
      "          'begins': 1,\n",
      "          'hilarious': 1,\n",
      "          'monologue': 1,\n",
      "          'meld': 1,\n",
      "          'franz': 1,\n",
      "          'kafkas': 1,\n",
      "          'metamorphosis': 1,\n",
      "          'short': 1,\n",
      "          'man': 1,\n",
      "          'wakes': 1,\n",
      "          'discover': 1,\n",
      "          'bug': 1,\n",
      "          'nz': 1,\n",
      "          'troubled': 1,\n",
      "          'believing': 1,\n",
      "          'n': 1,\n",
      "          'youre': 1,\n",
      "          'middle': 1,\n",
      "          'child': 1,\n",
      "          'five': 1,\n",
      "          'comments': 1,\n",
      "          'neglected': 1,\n",
      "          'childhood': 1,\n",
      "          'night': 1,\n",
      "          'sitting': 1,\n",
      "          'bar': 1,\n",
      "          'friend': 1,\n",
      "          'sylvester': 1,\n",
      "          'discussing': 1,\n",
      "          'pathetic': 1,\n",
      "          'walks': 1,\n",
      "          'sharon': 1,\n",
      "          'recognizes': 1,\n",
      "          'crown': 1,\n",
      "          'nbala': 1,\n",
      "          'engage': 1,\n",
      "          'pulp': 1,\n",
      "          'fictionesque': 1,\n",
      "          'else': 1,\n",
      "          'following': 1,\n",
      "          'discovering': 1,\n",
      "          'theres': 1,\n",
      "          'problem': 1,\n",
      "          'married': 1,\n",
      "          'mandible': 1,\n",
      "          'gene': 1,\n",
      "          'ruthless': 1,\n",
      "          'control': 1,\n",
      "          'stronger': 1,\n",
      "          'order': 1,\n",
      "          'must': 1,\n",
      "          'eliminate': 1,\n",
      "          'anne': 1,\n",
      "          'weakest': 1,\n",
      "          'namely': 1,\n",
      "          'needs': 1,\n",
      "          'willing': 1,\n",
      "          'die': 1,\n",
      "          'colonel': 1,\n",
      "          'cutter': 1,\n",
      "          'christopher': 1,\n",
      "          'plan': 1,\n",
      "          'send': 1,\n",
      "          'surely': 1,\n",
      "          'killed': 1,\n",
      "          'reluctant': 1,\n",
      "          'first': 1,\n",
      "          'decides': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'meet': 1,\n",
      "          'switch': 1,\n",
      "          'places': 1,\n",
      "          'gets': 1,\n",
      "          'sent': 1,\n",
      "          'manages': 1,\n",
      "          'survive': 1,\n",
      "          'slaughter': 1,\n",
      "          'termites': 1,\n",
      "          'absolutely': 1,\n",
      "          'flashbacks': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'contained': 1,\n",
      "          'production': 1,\n",
      "          'similarities': 1,\n",
      "          'coincidence': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          'revolves': 1,\n",
      "          'zs': 1,\n",
      "          'kidnapping': 1,\n",
      "          'search': 1,\n",
      "          'mythical': 1,\n",
      "          'called': 1,\n",
      "          'insectopia': 1,\n",
      "          'nthere': 1,\n",
      "          'boss': 1,\n",
      "          'food': 1,\n",
      "          'adventures': 1,\n",
      "          'surprisingly': 1,\n",
      "          'high': 1,\n",
      "          'tension': 1,\n",
      "          'involving': 1,\n",
      "          'glass': 1,\n",
      "          'nlooming': 1,\n",
      "          'targets': 1,\n",
      "          'spaceships': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n",
      "          'going': 1,\n",
      "          'assume': 1,\n",
      "          'producers': 1,\n",
      "          'referenced': 1,\n",
      "          'id4': 1,\n",
      "          'awe': 1,\n",
      "          'fire': 1,\n",
      "          'blasts': 1,\n",
      "          'ground': 1,\n",
      "          'exciting': 1,\n",
      "          'rush': 1,\n",
      "          'adrenaline': 1,\n",
      "          'fooled': 1,\n",
      "          'nlittle': 1,\n",
      "          'try': 1,\n",
      "          'copy': 1,\n",
      "          'vowed': 1,\n",
      "          'step': 1,\n",
      "          'nhopefully': 1,\n",
      "          'learn': 1,\n",
      "          'killing': 1,\n",
      "          'cruel': 1,\n",
      "          'nas': 1,\n",
      "          'find': 1,\n",
      "          'date': 1,\n",
      "          'dreams': 1,\n",
      "          'aspect': 1,\n",
      "          'characters': 1,\n",
      "          'arent': 1,\n",
      "          'limited': 1,\n",
      "          'gravity': 1,\n",
      "          'make': 1,\n",
      "          'seem': 1,\n",
      "          'plausible': 1,\n",
      "          'moment': 1,\n",
      "          'mass': 1,\n",
      "          'bunching': 1,\n",
      "          'form': 1,\n",
      "          'wrecking': 1,\n",
      "          'virtually': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'exhilarating': 1,\n",
      "          'stuck': 1,\n",
      "          'bottom': 1,\n",
      "          'boys': 1,\n",
      "          'shoe': 1,\n",
      "          'nits': 1,\n",
      "          'truly': 1,\n",
      "          'making': 1,\n",
      "          'finest': 1,\n",
      "          'nwith': 1,\n",
      "          'animators': 1,\n",
      "          'carefully': 1,\n",
      "          'faces': 1,\n",
      "          'actors': 1,\n",
      "          'providing': 1,\n",
      "          'barbatus': 1,\n",
      "          'danny': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'face': 1,\n",
      "          'ndo': 1,\n",
      "          'nbarbatus': 1,\n",
      "          'touching': 1,\n",
      "          'gruesome': 1,\n",
      "          'final': 1,\n",
      "          'words': 1,\n",
      "          'nyoung': 1,\n",
      "          'disturbed': 1,\n",
      "          'site': 1,\n",
      "          'dismembered': 1,\n",
      "          'derived': 1,\n",
      "          'appropriate': 1,\n",
      "          'looks': 1,\n",
      "          'know': 1,\n",
      "          'newest': 1,\n",
      "          'terms': 1,\n",
      "          'big': 1,\n",
      "          'knock': 1,\n",
      "          'yes': 1,\n",
      "          'anastasia': 1,\n",
      "          'nearly': 1,\n",
      "          'worst': 1,\n",
      "          'nvocal': 1,\n",
      "          'essential': 1,\n",
      "          'lineups': 1,\n",
      "          'since': 1,\n",
      "          'far': 1,\n",
      "          'exceeds': 1,\n",
      "          'nwoody': 1,\n",
      "          'transcends': 1,\n",
      "          'nwithout': 1,\n",
      "          'timing': 1,\n",
      "          'noticeable': 1,\n",
      "          'thing': 1,\n",
      "          'pretty': 1,\n",
      "          'writers': 1,\n",
      "          'improvise': 1,\n",
      "          'lines': 1,\n",
      "          'nsharon': 1,\n",
      "          'ability': 1,\n",
      "          'works': 1,\n",
      "          'actress': 1,\n",
      "          'nsylvester': 1,\n",
      "          'teamed': 1,\n",
      "          'beginning': 1,\n",
      "          'solidify': 1,\n",
      "          'statement': 1,\n",
      "          'typecast': 1,\n",
      "          'star': 1,\n",
      "          'snub': 1,\n",
      "          'oscars': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'proving': 1,\n",
      "          'serious': 1,\n",
      "          'comedic': 1,\n",
      "          'illustrated': 1,\n",
      "          'ngene': 1,\n",
      "          'superb': 1,\n",
      "          'grufftalking': 1,\n",
      "          'almost': 1,\n",
      "          'crimson': 1,\n",
      "          'tide': 1,\n",
      "          'persona': 1,\n",
      "          'nchristopher': 1,\n",
      "          'noticed': 1,\n",
      "          'remember': 1,\n",
      "          'hits': 1,\n",
      "          'batman': 1,\n",
      "          'returns': 1,\n",
      "          'nanne': 1,\n",
      "          'minimal': 1,\n",
      "          'shes': 1,\n",
      "          'effective': 1,\n",
      "          'nonetheless': 1,\n",
      "          'ndanny': 1,\n",
      "          'small': 1,\n",
      "          'job': 1,\n",
      "          'ndan': 1,\n",
      "          'jane': 1,\n",
      "          'curtin': 1,\n",
      "          'lend': 1,\n",
      "          'lovesick': 1,\n",
      "          'eurotrash': 1,\n",
      "          'beesboth': 1,\n",
      "          'unrecognizable': 1,\n",
      "          'njennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'plays': 1,\n",
      "          'wont': 1,\n",
      "          'grant': 1,\n",
      "          'shauds': 1,\n",
      "          'foreman': 1,\n",
      "          'played': 1,\n",
      "          'miles': 1,\n",
      "          'tv': 1,\n",
      "          'murphy': 1,\n",
      "          'brown': 1,\n",
      "          'huge': 1,\n",
      "          'cast': 1,\n",
      "          'highprofile': 1,\n",
      "          'names': 1,\n",
      "          'help': 1,\n",
      "          'grosses': 1,\n",
      "          'nof': 1,\n",
      "          '60': 1,\n",
      "          'budget': 1,\n",
      "          'went': 1,\n",
      "          'ndirectors': 1,\n",
      "          'eric': 1,\n",
      "          'darnell': 1,\n",
      "          'lawrence': 1,\n",
      "          'relative': 1,\n",
      "          'newcomers': 1,\n",
      "          'direct': 1,\n",
      "          '1994': 1,\n",
      "          'headless': 1,\n",
      "          'incredible': 1,\n",
      "          'ntense': 1,\n",
      "          'times': 1,\n",
      "          'throughout': 1,\n",
      "          'hold': 1,\n",
      "          'together': 1,\n",
      "          'professionals': 1,\n",
      "          'screenplay': 1,\n",
      "          'todd': 1,\n",
      "          'alcott': 1,\n",
      "          'chris': 1,\n",
      "          'weitz': 1,\n",
      "          'quite': 1,\n",
      "          'simple': 1,\n",
      "          'plot': 1,\n",
      "          'contains': 1,\n",
      "          'subtlety': 1,\n",
      "          'suitable': 1,\n",
      "          'nkids': 1,\n",
      "          'delight': 1,\n",
      "          'laugh': 1,\n",
      "          'heartily': 1,\n",
      "          'nmost': 1,\n",
      "          'childrens': 1,\n",
      "          'heads': 1,\n",
      "          'ndoes': 1,\n",
      "          'mean': 1,\n",
      "          'nnot': 1,\n",
      "          'watching': 1,\n",
      "          'nwhat': 1,\n",
      "          'themes': 1,\n",
      "          'given': 1,\n",
      "          'npart': 1,\n",
      "          'social': 1,\n",
      "          'commentary': 1,\n",
      "          'romance': 1,\n",
      "          'moral': 1,\n",
      "          'drama': 1,\n",
      "          'gives': 1,\n",
      "          'talk': 1,\n",
      "          'whether': 1,\n",
      "          'discussions': 1,\n",
      "          'individualism': 1,\n",
      "          'community': 1,\n",
      "          'nthankfully': 1,\n",
      "          'subtle': 1,\n",
      "          'aspects': 1,\n",
      "          'rated': 1,\n",
      "          'mild': 1,\n",
      "          'intense': 1,\n",
      "          'nsometimes': 1,\n",
      "          'pushing': 1,\n",
      "          'limits': 1,\n",
      "          'movie': 1,\n",
      "          'violence': 1,\n",
      "          'keep': 1,\n",
      "          'melting': 1,\n",
      "          'acid': 1,\n",
      "          'speared': 1,\n",
      "          'death': 1,\n",
      "          'nand': 1,\n",
      "          'disintegrate': 1,\n",
      "          'sunlight': 1,\n",
      "          'choice': 1,\n",
      "          'wholesome': 1,\n",
      "          'theaters': 1,\n",
      "          'understand': 1,\n",
      "          'unless': 1,\n",
      "          'old': 1,\n",
      "          'still': 1,\n",
      "          'advisable': 1,\n",
      "          'leave': 1,\n",
      "          'really': 1,\n",
      "          'nhave': 1,\n",
      "          'confused': 1,\n",
      "          'recommend': 1,\n",
      "          'likely': 1,\n",
      "          'youll': 1,\n",
      "          'enjoy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'wedding': 8,\n",
      "          'singer': 7,\n",
      "          'film': 4,\n",
      "          'nthe': 4,\n",
      "          'robbie': 4,\n",
      "          'nwell': 3,\n",
      "          'julia': 3,\n",
      "          'songs': 2,\n",
      "          'one': 2,\n",
      "          'good': 2,\n",
      "          'nthats': 2,\n",
      "          'youre': 2,\n",
      "          'nsweet': 2,\n",
      "          'humor': 2,\n",
      "          'sandler': 2,\n",
      "          'job': 2,\n",
      "          'barrymore': 2,\n",
      "          'isnt': 2,\n",
      "          'nit': 2,\n",
      "          'say': 2,\n",
      "          'great': 2,\n",
      "          'new': 2,\n",
      "          'wave': 2,\n",
      "          'want': 2,\n",
      "          'make': 2,\n",
      "          'nif': 2,\n",
      "          'well': 2,\n",
      "          'thats': 1,\n",
      "          'question': 1,\n",
      "          'asked': 1,\n",
      "          'venturing': 1,\n",
      "          'nervously': 1,\n",
      "          'latest': 1,\n",
      "          'star': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'alumnus': 1,\n",
      "          'ndoes': 1,\n",
      "          'draw': 1,\n",
      "          'laughs': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sad': 1,\n",
      "          'puppy': 1,\n",
      "          'dog': 1,\n",
      "          'expression': 1,\n",
      "          'donthatemeforbeingasimpleton': 1,\n",
      "          'observations': 1,\n",
      "          'fans': 1,\n",
      "          'giggle': 1,\n",
      "          'screams': 1,\n",
      "          'top': 1,\n",
      "          'lungs': 1,\n",
      "          'people': 1,\n",
      "          'fact': 1,\n",
      "          'sings': 1,\n",
      "          'silly': 1,\n",
      "          'lyrics': 1,\n",
      "          'bowl': 1,\n",
      "          'audiences': 1,\n",
      "          'theres': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'exited': 1,\n",
      "          'theater': 1,\n",
      "          'still': 1,\n",
      "          'hundred': 1,\n",
      "          'percent': 1,\n",
      "          'sure': 1,\n",
      "          'mr': 1,\n",
      "          'sandlers': 1,\n",
      "          'thing': 1,\n",
      "          'surprisingly': 1,\n",
      "          'time': 1,\n",
      "          'nutshell': 1,\n",
      "          'sweetest': 1,\n",
      "          'movies': 1,\n",
      "          'ever': 1,\n",
      "          'likely': 1,\n",
      "          'come': 1,\n",
      "          'across': 1,\n",
      "          'right': 1,\n",
      "          'runs': 1,\n",
      "          'gamut': 1,\n",
      "          'dumb': 1,\n",
      "          'mildly': 1,\n",
      "          'amusing': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'hysterical': 1,\n",
      "          'tone': 1,\n",
      "          'lovely': 1,\n",
      "          'ni': 1,\n",
      "          'admit': 1,\n",
      "          'halfexpecting': 1,\n",
      "          'farting': 1,\n",
      "          'armpit': 1,\n",
      "          'gratuitous': 1,\n",
      "          'nudity': 1,\n",
      "          'superfluous': 1,\n",
      "          'cloying': 1,\n",
      "          'subplots': 1,\n",
      "          'nasty': 1,\n",
      "          'unnecessary': 1,\n",
      "          'violence': 1,\n",
      "          'ninstead': 1,\n",
      "          'ive': 1,\n",
      "          'said': 1,\n",
      "          'year': 1,\n",
      "          '1985': 1,\n",
      "          'plays': 1,\n",
      "          'hart': 1,\n",
      "          'eponymous': 1,\n",
      "          'aspiring': 1,\n",
      "          'rock': 1,\n",
      "          'stars': 1,\n",
      "          'often': 1,\n",
      "          'settle': 1,\n",
      "          'nwhen': 1,\n",
      "          'robbies': 1,\n",
      "          'fianc': 1,\n",
      "          'e': 1,\n",
      "          'dumps': 1,\n",
      "          'altar': 1,\n",
      "          'gets': 1,\n",
      "          'depressed': 1,\n",
      "          'turns': 1,\n",
      "          'plucky': 1,\n",
      "          'waitress': 1,\n",
      "          'called': 1,\n",
      "          'drew': 1,\n",
      "          'problems': 1,\n",
      "          'shes': 1,\n",
      "          'marrying': 1,\n",
      "          'hunky': 1,\n",
      "          'junk': 1,\n",
      "          'bonds': 1,\n",
      "          'dealer': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'big': 1,\n",
      "          'monogamy': 1,\n",
      "          'giving': 1,\n",
      "          'anything': 1,\n",
      "          'away': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'naww': 1,\n",
      "          'nsandler': 1,\n",
      "          'match': 1,\n",
      "          'theyre': 1,\n",
      "          'assisted': 1,\n",
      "          'terrific': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'including': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'jon': 1,\n",
      "          'lovitz': 1,\n",
      "          'whose': 1,\n",
      "          'individual': 1,\n",
      "          'scenes': 1,\n",
      "          'perhaps': 1,\n",
      "          'funniest': 1,\n",
      "          'nwriter': 1,\n",
      "          'tim': 1,\n",
      "          'herlihy': 1,\n",
      "          'uncredited': 1,\n",
      "          'assistance': 1,\n",
      "          'carrie': 1,\n",
      "          'fisher': 1,\n",
      "          'keeps': 1,\n",
      "          'story': 1,\n",
      "          'bubbling': 1,\n",
      "          'along': 1,\n",
      "          'predictable': 1,\n",
      "          'conclusion': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'handled': 1,\n",
      "          'lightheartedness': 1,\n",
      "          'coming': 1,\n",
      "          'together': 1,\n",
      "          'generates': 1,\n",
      "          'smiles': 1,\n",
      "          'groans': 1,\n",
      "          'nherlihy': 1,\n",
      "          'director': 1,\n",
      "          'frank': 1,\n",
      "          'coraci': 1,\n",
      "          'done': 1,\n",
      "          'recreating': 1,\n",
      "          'sights': 1,\n",
      "          'sounds': 1,\n",
      "          'affectations': 1,\n",
      "          '1980s': 1,\n",
      "          'soundtrackan': 1,\n",
      "          'everpresent': 1,\n",
      "          'force': 1,\n",
      "          'filmis': 1,\n",
      "          'packed': 1,\n",
      "          'walltowall': 1,\n",
      "          'hits': 1,\n",
      "          'period': 1,\n",
      "          'upon': 1,\n",
      "          'billy': 1,\n",
      "          'idols': 1,\n",
      "          'white': 1,\n",
      "          'smiths': 1,\n",
      "          'soon': 1,\n",
      "          'nto': 1,\n",
      "          'culture': 1,\n",
      "          'clubs': 1,\n",
      "          'really': 1,\n",
      "          'hurt': 1,\n",
      "          'mix': 1,\n",
      "          'music': 1,\n",
      "          'fashion': 1,\n",
      "          'would': 1,\n",
      "          'double': 1,\n",
      "          'feature': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'grew': 1,\n",
      "          'listening': 1,\n",
      "          'cure': 1,\n",
      "          'flock': 1,\n",
      "          'seagulls': 1,\n",
      "          'psychedelic': 1,\n",
      "          'furs': 1,\n",
      "          'bound': 1,\n",
      "          'put': 1,\n",
      "          'nostalgic': 1,\n",
      "          'hop': 1,\n",
      "          'stride': 1,\n",
      "          'fan': 1,\n",
      "          'lovable': 1,\n",
      "          'laughable': 1,\n",
      "          'adam': 1,\n",
      "          'nlets': 1,\n",
      "          'might': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'rent': 1,\n",
      "          'happy': 1,\n",
      "          'gilmore': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cynthia': 7,\n",
      "          'film': 6,\n",
      "          'lies': 6,\n",
      "          'hortense': 6,\n",
      "          'nbut': 4,\n",
      "          'maurice': 4,\n",
      "          'way': 4,\n",
      "          'n': 4,\n",
      "          'lives': 3,\n",
      "          'daughter': 3,\n",
      "          'gives': 3,\n",
      "          'party': 3,\n",
      "          'cynthias': 3,\n",
      "          'first': 3,\n",
      "          'yet': 3,\n",
      "          'scene': 3,\n",
      "          'nthe': 3,\n",
      "          'jarvis': 2,\n",
      "          'common': 2,\n",
      "          'people': 2,\n",
      "          'leigh': 2,\n",
      "          'video': 2,\n",
      "          'see': 2,\n",
      "          'rather': 2,\n",
      "          'films': 2,\n",
      "          'couple': 2,\n",
      "          'characters': 2,\n",
      "          'authenticity': 2,\n",
      "          'good': 2,\n",
      "          'secrets': 2,\n",
      "          'sympathy': 2,\n",
      "          'black': 2,\n",
      "          'find': 2,\n",
      "          'factory': 2,\n",
      "          'roxanne': 2,\n",
      "          'photographer': 2,\n",
      "          'meeting': 2,\n",
      "          'theme': 2,\n",
      "          'one': 2,\n",
      "          'best': 2,\n",
      "          'much': 2,\n",
      "          'also': 2,\n",
      "          'face': 2,\n",
      "          'unspoken': 2,\n",
      "          'none': 2,\n",
      "          'ever': 2,\n",
      "          'scars': 2,\n",
      "          'says': 2,\n",
      "          'got': 2,\n",
      "          'talking': 2,\n",
      "          'shes': 2,\n",
      "          'cast': 2,\n",
      "          'script': 2,\n",
      "          'life': 2,\n",
      "          'cocker': 1,\n",
      "          'pulp': 1,\n",
      "          'said': 1,\n",
      "          'wrote': 1,\n",
      "          'noticing': 1,\n",
      "          'mike': 1,\n",
      "          'boxsets': 1,\n",
      "          'shelves': 1,\n",
      "          'feeling': 1,\n",
      "          'economic': 1,\n",
      "          'deprivation': 1,\n",
      "          'becoming': 1,\n",
      "          'tourist': 1,\n",
      "          'experience': 1,\n",
      "          'welloff': 1,\n",
      "          'nmaybe': 1,\n",
      "          'classic': 1,\n",
      "          'case': 1,\n",
      "          'displacement': 1,\n",
      "          'easier': 1,\n",
      "          'lyrics': 1,\n",
      "          'obsessed': 1,\n",
      "          'acrylic': 1,\n",
      "          'wood': 1,\n",
      "          'chip': 1,\n",
      "          'wall': 1,\n",
      "          'fetishization': 1,\n",
      "          'lowlife': 1,\n",
      "          'leighs': 1,\n",
      "          'worth': 1,\n",
      "          'reminded': 1,\n",
      "          'drab': 1,\n",
      "          'interiors': 1,\n",
      "          'workingclass': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'guarantee': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'nits': 1,\n",
      "          'triumph': 1,\n",
      "          'goes': 1,\n",
      "          'beyond': 1,\n",
      "          'gestures': 1,\n",
      "          'probing': 1,\n",
      "          'means': 1,\n",
      "          'seek': 1,\n",
      "          'honesty': 1,\n",
      "          'everyday': 1,\n",
      "          'nfollowing': 1,\n",
      "          'adopted': 1,\n",
      "          'mothers': 1,\n",
      "          'funeral': 1,\n",
      "          'young': 1,\n",
      "          'optometrist': 1,\n",
      "          'sets': 1,\n",
      "          'birth': 1,\n",
      "          'mother': 1,\n",
      "          'disturbed': 1,\n",
      "          'white': 1,\n",
      "          'nit': 1,\n",
      "          'worker': 1,\n",
      "          'shabby': 1,\n",
      "          'house': 1,\n",
      "          'perpetually': 1,\n",
      "          'moody': 1,\n",
      "          'ncynthias': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'successful': 1,\n",
      "          'seen': 1,\n",
      "          'sister': 1,\n",
      "          'ages': 1,\n",
      "          'largely': 1,\n",
      "          'wifes': 1,\n",
      "          'animosity': 1,\n",
      "          'towards': 1,\n",
      "          'nhortense': 1,\n",
      "          'calls': 1,\n",
      "          'initially': 1,\n",
      "          'breaks': 1,\n",
      "          'tears': 1,\n",
      "          'refuses': 1,\n",
      "          'mutually': 1,\n",
      "          'suspicious': 1,\n",
      "          'warm': 1,\n",
      "          'friendship': 1,\n",
      "          'eventually': 1,\n",
      "          'ncynthia': 1,\n",
      "          'invites': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'hosting': 1,\n",
      "          'nsecrets': 1,\n",
      "          'simple': 1,\n",
      "          'enough': 1,\n",
      "          'heart': 1,\n",
      "          'character': 1,\n",
      "          'puts': 1,\n",
      "          'tell': 1,\n",
      "          'truth': 1,\n",
      "          'isnt': 1,\n",
      "          'nthat': 1,\n",
      "          'nobody': 1,\n",
      "          'gets': 1,\n",
      "          'hurt': 1,\n",
      "          'delivers': 1,\n",
      "          'trite': 1,\n",
      "          'message': 1,\n",
      "          'shown': 1,\n",
      "          'hard': 1,\n",
      "          'ugly': 1,\n",
      "          'truths': 1,\n",
      "          'even': 1,\n",
      "          'evasions': 1,\n",
      "          'grievances': 1,\n",
      "          'slowly': 1,\n",
      "          'choke': 1,\n",
      "          'us': 1,\n",
      "          'nhence': 1,\n",
      "          'difficulty': 1,\n",
      "          'acknowledging': 1,\n",
      "          'others': 1,\n",
      "          'reactions': 1,\n",
      "          'seeing': 1,\n",
      "          'sincere': 1,\n",
      "          'denial': 1,\n",
      "          'man': 1,\n",
      "          'longsuppressed': 1,\n",
      "          'memory': 1,\n",
      "          'seizes': 1,\n",
      "          'nat': 1,\n",
      "          'pretense': 1,\n",
      "          'coworker': 1,\n",
      "          'leads': 1,\n",
      "          'convoluted': 1,\n",
      "          'agonizing': 1,\n",
      "          'funny': 1,\n",
      "          'nlittle': 1,\n",
      "          'seep': 1,\n",
      "          'every': 1,\n",
      "          'corner': 1,\n",
      "          'like': 1,\n",
      "          'pretending': 1,\n",
      "          'hes': 1,\n",
      "          'dropping': 1,\n",
      "          'visits': 1,\n",
      "          'deliberation': 1,\n",
      "          'nmaurices': 1,\n",
      "          'job': 1,\n",
      "          'opportunities': 1,\n",
      "          'side': 1,\n",
      "          'comments': 1,\n",
      "          'main': 1,\n",
      "          'sadlooking': 1,\n",
      "          'bride': 1,\n",
      "          'coaxes': 1,\n",
      "          'smile': 1,\n",
      "          'pose': 1,\n",
      "          'awkwardly': 1,\n",
      "          'prominent': 1,\n",
      "          'wedding': 1,\n",
      "          'ring': 1,\n",
      "          'argue': 1,\n",
      "          'spectacles': 1,\n",
      "          'startling': 1,\n",
      "          'images': 1,\n",
      "          'beautiful': 1,\n",
      "          'woman': 1,\n",
      "          'large': 1,\n",
      "          'needs': 1,\n",
      "          'photo': 1,\n",
      "          'look': 1,\n",
      "          'bad': 1,\n",
      "          'possible': 1,\n",
      "          'collect': 1,\n",
      "          'insurance': 1,\n",
      "          'money': 1,\n",
      "          'short': 1,\n",
      "          'leaves': 1,\n",
      "          'wondering': 1,\n",
      "          'untold': 1,\n",
      "          'story': 1,\n",
      "          'behind': 1,\n",
      "          'nthere': 1,\n",
      "          'occasionally': 1,\n",
      "          'hilarious': 1,\n",
      "          'moments': 1,\n",
      "          'attempts': 1,\n",
      "          'give': 1,\n",
      "          'unwelcome': 1,\n",
      "          'advice': 1,\n",
      "          'contraception': 1,\n",
      "          'ive': 1,\n",
      "          'dutch': 1,\n",
      "          'cap': 1,\n",
      "          'floating': 1,\n",
      "          'somewhere': 1,\n",
      "          'upstairs': 1,\n",
      "          'stares': 1,\n",
      "          'pedestrian': 1,\n",
      "          'legs': 1,\n",
      "          'tells': 1,\n",
      "          'youve': 1,\n",
      "          'flaunt': 1,\n",
      "          'say': 1,\n",
      "          'nas': 1,\n",
      "          'played': 1,\n",
      "          'brenda': 1,\n",
      "          'blethyn': 1,\n",
      "          'comes': 1,\n",
      "          'close': 1,\n",
      "          'caricature': 1,\n",
      "          'nervous': 1,\n",
      "          'somewhat': 1,\n",
      "          'disconnected': 1,\n",
      "          'really': 1,\n",
      "          'right': 1,\n",
      "          'role': 1,\n",
      "          'someone': 1,\n",
      "          'inspires': 1,\n",
      "          'strains': 1,\n",
      "          'tolerance': 1,\n",
      "          'around': 1,\n",
      "          'precisely': 1,\n",
      "          'needy': 1,\n",
      "          'love': 1,\n",
      "          'perhaps': 1,\n",
      "          'nindeed': 1,\n",
      "          'whole': 1,\n",
      "          'warmly': 1,\n",
      "          'rounded': 1,\n",
      "          'detailed': 1,\n",
      "          'performances': 1,\n",
      "          'developed': 1,\n",
      "          'partly': 1,\n",
      "          'improvisations': 1,\n",
      "          'fusion': 1,\n",
      "          'director': 1,\n",
      "          'shows': 1,\n",
      "          'seemingly': 1,\n",
      "          'everyone': 1,\n",
      "          'time': 1,\n",
      "          'many': 1,\n",
      "          'subtle': 1,\n",
      "          'observations': 1,\n",
      "          'made': 1,\n",
      "          'throughout': 1,\n",
      "          'nin': 1,\n",
      "          'different': 1,\n",
      "          'using': 1,\n",
      "          'long': 1,\n",
      "          'single': 1,\n",
      "          'shot': 1,\n",
      "          'lonely': 1,\n",
      "          'caf8a': 1,\n",
      "          'achieves': 1,\n",
      "          'touching': 1,\n",
      "          'intensity': 1,\n",
      "          'reticence': 1,\n",
      "          'feelings': 1,\n",
      "          'climax': 1,\n",
      "          'finally': 1,\n",
      "          'spilled': 1,\n",
      "          'ibsenesque': 1,\n",
      "          'revelations': 1,\n",
      "          'everybody': 1,\n",
      "          'hugging': 1,\n",
      "          'thing': 1,\n",
      "          'seems': 1,\n",
      "          'false': 1,\n",
      "          'nhowever': 1,\n",
      "          'truly': 1,\n",
      "          'earns': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'misery': 1,\n",
      "          'repression': 1,\n",
      "          'nwhen': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'innit': 1,\n",
      "          'get': 1,\n",
      "          'sense': 1,\n",
      "          'following': 1,\n",
      "          'cynicism': 1,\n",
      "          'last': 1,\n",
      "          'naked': 1,\n",
      "          'rediscovered': 1,\n",
      "          'sweet': 1,\n",
      "          'without': 1,\n",
      "          'comforting': 1,\n",
      "          'illusions': 1,\n",
      "          'flying': 1,\n",
      "          'inkpots': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'characters': 6,\n",
      "          'n': 6,\n",
      "          'around': 5,\n",
      "          'film': 5,\n",
      "          'ideas': 4,\n",
      "          'linklater': 4,\n",
      "          'slacker': 3,\n",
      "          'people': 3,\n",
      "          'camera': 3,\n",
      "          'follows': 3,\n",
      "          'person': 3,\n",
      "          'man': 3,\n",
      "          'might': 3,\n",
      "          'first': 3,\n",
      "          'us': 3,\n",
      "          'culture': 2,\n",
      "          'morality': 2,\n",
      "          'subtle': 2,\n",
      "          'hanging': 2,\n",
      "          'interesting': 2,\n",
      "          'minutes': 2,\n",
      "          'walks': 2,\n",
      "          'lot': 2,\n",
      "          'weird': 2,\n",
      "          'think': 2,\n",
      "          'really': 2,\n",
      "          'nthe': 2,\n",
      "          'everything': 2,\n",
      "          'nothing': 2,\n",
      "          'involving': 2,\n",
      "          'slightly': 2,\n",
      "          'seems': 2,\n",
      "          'nand': 2,\n",
      "          'gets': 2,\n",
      "          'many': 2,\n",
      "          'little': 2,\n",
      "          'bit': 2,\n",
      "          'half': 2,\n",
      "          'richard': 1,\n",
      "          'linklaters': 1,\n",
      "          'made': 1,\n",
      "          '1991': 1,\n",
      "          'budget': 1,\n",
      "          '23': 1,\n",
      "          '000': 1,\n",
      "          'immerses': 1,\n",
      "          'twentysomething': 1,\n",
      "          'collegetown': 1,\n",
      "          'austin': 1,\n",
      "          'texas': 1,\n",
      "          'nmost': 1,\n",
      "          'either': 1,\n",
      "          'unemployed': 1,\n",
      "          'work': 1,\n",
      "          'jobs': 1,\n",
      "          'apparently': 1,\n",
      "          'menial': 1,\n",
      "          'worth': 1,\n",
      "          'mentioning': 1,\n",
      "          'ntheir': 1,\n",
      "          'lifestyle': 1,\n",
      "          'sort': 1,\n",
      "          'passive': 1,\n",
      "          'resistance': 1,\n",
      "          'idea': 1,\n",
      "          'go': 1,\n",
      "          'actively': 1,\n",
      "          'pursue': 1,\n",
      "          'career': 1,\n",
      "          'graduation': 1,\n",
      "          'seem': 1,\n",
      "          'content': 1,\n",
      "          'sit': 1,\n",
      "          'spouting': 1,\n",
      "          'inadequacy': 1,\n",
      "          'american': 1,\n",
      "          'democracy': 1,\n",
      "          'pervasiveness': 1,\n",
      "          'slave': 1,\n",
      "          'messages': 1,\n",
      "          'pop': 1,\n",
      "          'nask': 1,\n",
      "          'theyve': 1,\n",
      "          'lately': 1,\n",
      "          'theyll': 1,\n",
      "          'likely': 1,\n",
      "          'reply': 1,\n",
      "          'oh': 1,\n",
      "          'know': 1,\n",
      "          'nlinklater': 1,\n",
      "          'uses': 1,\n",
      "          'technique': 1,\n",
      "          'examine': 1,\n",
      "          'one': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'diner': 1,\n",
      "          'another': 1,\n",
      "          'walking': 1,\n",
      "          'door': 1,\n",
      "          'nits': 1,\n",
      "          'certainly': 1,\n",
      "          'fun': 1,\n",
      "          'listening': 1,\n",
      "          'talk': 1,\n",
      "          'clearly': 1,\n",
      "          'intelligent': 1,\n",
      "          'genuinely': 1,\n",
      "          'insightful': 1,\n",
      "          'plain': 1,\n",
      "          'profound': 1,\n",
      "          'opening': 1,\n",
      "          'monologue': 1,\n",
      "          'delivered': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'tosses': 1,\n",
      "          'alternate': 1,\n",
      "          'realities': 1,\n",
      "          'nicely': 1,\n",
      "          'set': 1,\n",
      "          'meandering': 1,\n",
      "          'structure': 1,\n",
      "          'nother': 1,\n",
      "          'along': 1,\n",
      "          'way': 1,\n",
      "          'offer': 1,\n",
      "          'observations': 1,\n",
      "          'dating': 1,\n",
      "          'relationships': 1,\n",
      "          'history': 1,\n",
      "          'anarchist': 1,\n",
      "          'philosophy': 1,\n",
      "          'groups': 1,\n",
      "          'pseudointellectuals': 1,\n",
      "          'kick': 1,\n",
      "          'nobility': 1,\n",
      "          'sitting': 1,\n",
      "          'briberybased': 1,\n",
      "          'scoobydoo': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'however': 1,\n",
      "          'best': 1,\n",
      "          'moments': 1,\n",
      "          'ones': 1,\n",
      "          'unhinged': 1,\n",
      "          'types': 1,\n",
      "          'nnear': 1,\n",
      "          'beginning': 1,\n",
      "          'paranoid': 1,\n",
      "          'pedestrian': 1,\n",
      "          'several': 1,\n",
      "          'blocks': 1,\n",
      "          'warning': 1,\n",
      "          'government': 1,\n",
      "          'conspiracies': 1,\n",
      "          'global': 1,\n",
      "          'warming': 1,\n",
      "          'secret': 1,\n",
      "          'colonization': 1,\n",
      "          'mars': 1,\n",
      "          'nanother': 1,\n",
      "          'collecting': 1,\n",
      "          'televisions': 1,\n",
      "          'keeping': 1,\n",
      "          'least': 1,\n",
      "          'fifteen': 1,\n",
      "          'sets': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'playing': 1,\n",
      "          'tapes': 1,\n",
      "          'graduate': 1,\n",
      "          'student': 1,\n",
      "          'recorded': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'destroying': 1,\n",
      "          'scene': 1,\n",
      "          'drew': 1,\n",
      "          'big': 1,\n",
      "          'laugh': 1,\n",
      "          'everyone': 1,\n",
      "          'present': 1,\n",
      "          'saw': 1,\n",
      "          'tries': 1,\n",
      "          'achieve': 1,\n",
      "          'closure': 1,\n",
      "          'failed': 1,\n",
      "          'relationship': 1,\n",
      "          'reciting': 1,\n",
      "          'poetry': 1,\n",
      "          'bridge': 1,\n",
      "          'throwing': 1,\n",
      "          'typewriter': 1,\n",
      "          'creek': 1,\n",
      "          'problem': 1,\n",
      "          'starts': 1,\n",
      "          'run': 1,\n",
      "          'steam': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'nsince': 1,\n",
      "          'spends': 1,\n",
      "          'character': 1,\n",
      "          'introduction': 1,\n",
      "          'new': 1,\n",
      "          'repetitive': 1,\n",
      "          'nthere': 1,\n",
      "          'times': 1,\n",
      "          'hear': 1,\n",
      "          'hey': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'much': 1,\n",
      "          'nerves': 1,\n",
      "          'well': 1,\n",
      "          'benefited': 1,\n",
      "          'slower': 1,\n",
      "          'pace': 1,\n",
      "          'characterization': 1,\n",
      "          'dialogue': 1,\n",
      "          'second': 1,\n",
      "          'large': 1,\n",
      "          'quite': 1,\n",
      "          'jfk': 1,\n",
      "          'buff': 1,\n",
      "          'example': 1,\n",
      "          'like': 1,\n",
      "          'pale': 1,\n",
      "          'imitation': 1,\n",
      "          'previous': 1,\n",
      "          'conspiracy': 1,\n",
      "          'theorist': 1,\n",
      "          'generally': 1,\n",
      "          'arent': 1,\n",
      "          'unique': 1,\n",
      "          'ninstead': 1,\n",
      "          'depicting': 1,\n",
      "          'city': 1,\n",
      "          'populated': 1,\n",
      "          'mostly': 1,\n",
      "          'normal': 1,\n",
      "          'showing': 1,\n",
      "          'strangeness': 1,\n",
      "          'noticed': 1,\n",
      "          'shows': 1,\n",
      "          'oddballs': 1,\n",
      "          'stops': 1,\n",
      "          'reminds': 1,\n",
      "          'ordinary': 1,\n",
      "          'live': 1,\n",
      "          'good': 1,\n",
      "          'wonderfully': 1,\n",
      "          'offbeat': 1,\n",
      "          'entertaining': 1,\n",
      "          'comedy': 1,\n",
      "          'whatever': 1,\n",
      "          'flaws': 1,\n",
      "          'status': 1,\n",
      "          'cult': 1,\n",
      "          'classic': 1,\n",
      "          'welldeserved': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'slowed': 1,\n",
      "          'filmed': 1,\n",
      "          'scenes': 1,\n",
      "          'reverse': 1,\n",
      "          'order': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hauer': 6,\n",
      "          'turner': 5,\n",
      "          'two': 4,\n",
      "          'breed': 3,\n",
      "          'apart': 3,\n",
      "          'film': 3,\n",
      "          'birds': 3,\n",
      "          'island': 3,\n",
      "          'men': 3,\n",
      "          'ni': 3,\n",
      "          'crazy': 2,\n",
      "          'many': 2,\n",
      "          'boothe': 2,\n",
      "          'woman': 2,\n",
      "          'n': 2,\n",
      "          'isnt': 2,\n",
      "          'movie': 2,\n",
      "          'characters': 2,\n",
      "          'though': 2,\n",
      "          'problem': 2,\n",
      "          'nfor': 2,\n",
      "          'example': 2,\n",
      "          'early': 2,\n",
      "          'rednecks': 2,\n",
      "          'one': 2,\n",
      "          'great': 2,\n",
      "          'theres': 2,\n",
      "          'hes': 2,\n",
      "          'always': 2,\n",
      "          'nhe': 2,\n",
      "          'scene': 2,\n",
      "          'casts': 1,\n",
      "          'rutger': 1,\n",
      "          'birdloving': 1,\n",
      "          'recluse': 1,\n",
      "          'picks': 1,\n",
      "          'feathered': 1,\n",
      "          'friends': 1,\n",
      "          'kathleen': 1,\n",
      "          'na': 1,\n",
      "          'bit': 1,\n",
      "          'hard': 1,\n",
      "          'swallow': 1,\n",
      "          'nthats': 1,\n",
      "          'first': 1,\n",
      "          'improbabilities': 1,\n",
      "          'nhauer': 1,\n",
      "          'stars': 1,\n",
      "          'man': 1,\n",
      "          'obsessed': 1,\n",
      "          'keeping': 1,\n",
      "          'safe': 1,\n",
      "          'plays': 1,\n",
      "          'guy': 1,\n",
      "          'hired': 1,\n",
      "          'steal': 1,\n",
      "          'couple': 1,\n",
      "          'rare': 1,\n",
      "          'eagle': 1,\n",
      "          'eggs': 1,\n",
      "          'rich': 1,\n",
      "          'egg': 1,\n",
      "          'collector': 1,\n",
      "          'nturner': 1,\n",
      "          'caught': 1,\n",
      "          'bad': 1,\n",
      "          'exactly': 1,\n",
      "          'nindeed': 1,\n",
      "          'found': 1,\n",
      "          'rooting': 1,\n",
      "          'even': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'goals': 1,\n",
      "          'couldnt': 1,\n",
      "          'different': 1,\n",
      "          'nthe': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'physically': 1,\n",
      "          'assaults': 1,\n",
      "          'drunken': 1,\n",
      "          'shooting': 1,\n",
      "          'nlater': 1,\n",
      "          'come': 1,\n",
      "          'back': 1,\n",
      "          'revenge': 1,\n",
      "          'four': 1,\n",
      "          'people': 1,\n",
      "          'kills': 1,\n",
      "          'tough': 1,\n",
      "          'time': 1,\n",
      "          'believing': 1,\n",
      "          'police': 1,\n",
      "          'wouldnt': 1,\n",
      "          'get': 1,\n",
      "          'involved': 1,\n",
      "          'point': 1,\n",
      "          'nanother': 1,\n",
      "          'silly': 1,\n",
      "          'lovetriangle': 1,\n",
      "          'develops': 1,\n",
      "          'didnt': 1,\n",
      "          'care': 1,\n",
      "          'way': 1,\n",
      "          'ended': 1,\n",
      "          'interested': 1,\n",
      "          'finding': 1,\n",
      "          'would': 1,\n",
      "          'victorious': 1,\n",
      "          'respective': 1,\n",
      "          'missions': 1,\n",
      "          'nhowever': 1,\n",
      "          'despite': 1,\n",
      "          'uninteresting': 1,\n",
      "          'subplot': 1,\n",
      "          'manage': 1,\n",
      "          'give': 1,\n",
      "          'performance': 1,\n",
      "          'reminds': 1,\n",
      "          'sometimes': 1,\n",
      "          'life': 1,\n",
      "          'money': 1,\n",
      "          'nas': 1,\n",
      "          'actor': 1,\n",
      "          'ive': 1,\n",
      "          'admired': 1,\n",
      "          'penchant': 1,\n",
      "          'picking': 1,\n",
      "          'strange': 1,\n",
      "          'unusual': 1,\n",
      "          'nand': 1,\n",
      "          'exception': 1,\n",
      "          'nhes': 1,\n",
      "          'frequently': 1,\n",
      "          'seen': 1,\n",
      "          'riding': 1,\n",
      "          'around': 1,\n",
      "          'white': 1,\n",
      "          'horse': 1,\n",
      "          'wearing': 1,\n",
      "          'pirates': 1,\n",
      "          'clothing': 1,\n",
      "          'holstering': 1,\n",
      "          'crossbow': 1,\n",
      "          'ndespite': 1,\n",
      "          'eccentric': 1,\n",
      "          'mannerisms': 1,\n",
      "          'manages': 1,\n",
      "          'let': 1,\n",
      "          'human': 1,\n",
      "          'side': 1,\n",
      "          'character': 1,\n",
      "          'shine': 1,\n",
      "          'barks': 1,\n",
      "          'son': 1,\n",
      "          'came': 1,\n",
      "          'onto': 1,\n",
      "          'day': 1,\n",
      "          'comes': 1,\n",
      "          'loner': 1,\n",
      "          'minutes': 1,\n",
      "          'later': 1,\n",
      "          'apologizing': 1,\n",
      "          'believe': 1,\n",
      "          'intentions': 1,\n",
      "          'nsoon': 1,\n",
      "          'find': 1,\n",
      "          'vietnam': 1,\n",
      "          'vet': 1,\n",
      "          'actions': 1,\n",
      "          'become': 1,\n",
      "          'fairly': 1,\n",
      "          'clear': 1,\n",
      "          'us': 1,\n",
      "          'means': 1,\n",
      "          'contain': 1,\n",
      "          'good': 1,\n",
      "          'performances': 1,\n",
      "          'three': 1,\n",
      "          'leads': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'reason': 1,\n",
      "          'alone': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'titanic': 10,\n",
      "          'nthe': 9,\n",
      "          'well': 8,\n",
      "          'ship': 6,\n",
      "          'cameron': 5,\n",
      "          'great': 5,\n",
      "          'camerons': 5,\n",
      "          'story': 5,\n",
      "          'could': 4,\n",
      "          'although': 4,\n",
      "          'dialogue': 4,\n",
      "          'really': 4,\n",
      "          'effects': 4,\n",
      "          'love': 3,\n",
      "          'films': 3,\n",
      "          'explorers': 3,\n",
      "          'picture': 3,\n",
      "          'woman': 3,\n",
      "          'poor': 3,\n",
      "          'boy': 3,\n",
      "          'rich': 3,\n",
      "          'cal': 3,\n",
      "          'hours': 3,\n",
      "          'like': 3,\n",
      "          'scenes': 3,\n",
      "          'also': 3,\n",
      "          'awesome': 3,\n",
      "          'ntitanic': 3,\n",
      "          'perfect': 2,\n",
      "          'make': 2,\n",
      "          'lot': 2,\n",
      "          'dosent': 2,\n",
      "          'nbut': 2,\n",
      "          'sadly': 2,\n",
      "          'one': 2,\n",
      "          'old': 2,\n",
      "          'winslet': 2,\n",
      "          'tells': 2,\n",
      "          'flashback': 2,\n",
      "          'plays': 2,\n",
      "          'jack': 2,\n",
      "          'nalso': 2,\n",
      "          'rose': 2,\n",
      "          'man': 2,\n",
      "          'fall': 2,\n",
      "          'work': 2,\n",
      "          'genius': 2,\n",
      "          'script': 2,\n",
      "          'full': 2,\n",
      "          'characters': 2,\n",
      "          'girl': 2,\n",
      "          'pretty': 2,\n",
      "          'audience': 2,\n",
      "          '3': 2,\n",
      "          'good': 2,\n",
      "          'terminator': 2,\n",
      "          '2': 2,\n",
      "          'theres': 2,\n",
      "          'direction': 2,\n",
      "          'nthere': 2,\n",
      "          'scary': 2,\n",
      "          'bodies': 2,\n",
      "          'directing': 2,\n",
      "          'excellent': 2,\n",
      "          'mannered': 2,\n",
      "          'every': 2,\n",
      "          'come': 2,\n",
      "          '1988': 2,\n",
      "          'close': 1,\n",
      "          'movie': 1,\n",
      "          'upsetting': 1,\n",
      "          'isnt': 1,\n",
      "          'cost': 1,\n",
      "          '200': 1,\n",
      "          'million': 1,\n",
      "          'put': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'fox': 1,\n",
      "          'finicial': 1,\n",
      "          'trouble': 1,\n",
      "          'sunk': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'labour': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'nwe': 1,\n",
      "          'know': 1,\n",
      "          'big': 1,\n",
      "          'budget': 1,\n",
      "          'mean': 1,\n",
      "          'see': 1,\n",
      "          'waterworld': 1,\n",
      "          '1995': 1,\n",
      "          'far': 1,\n",
      "          'superior': 1,\n",
      "          'kevin': 1,\n",
      "          'costners': 1,\n",
      "          'waterlogged': 1,\n",
      "          'epic': 1,\n",
      "          'misses': 1,\n",
      "          'mark': 1,\n",
      "          'masterpiece': 1,\n",
      "          'best': 1,\n",
      "          'starts': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'searching': 1,\n",
      "          'runied': 1,\n",
      "          'nthey': 1,\n",
      "          'find': 1,\n",
      "          'safe': 1,\n",
      "          'inside': 1,\n",
      "          'invite': 1,\n",
      "          'nin': 1,\n",
      "          'dicaprio': 1,\n",
      "          'dawson': 1,\n",
      "          'winning': 1,\n",
      "          'poker': 1,\n",
      "          'game': 1,\n",
      "          'wins': 1,\n",
      "          'two': 1,\n",
      "          'tickets': 1,\n",
      "          'board': 1,\n",
      "          'grand': 1,\n",
      "          'leaving': 1,\n",
      "          'liverpool': 1,\n",
      "          'go': 1,\n",
      "          'america': 1,\n",
      "          'boarding': 1,\n",
      "          'dewitt': 1,\n",
      "          'bukater': 1,\n",
      "          'forced': 1,\n",
      "          'marriage': 1,\n",
      "          'hockley': 1,\n",
      "          'zane': 1,\n",
      "          'family': 1,\n",
      "          'remain': 1,\n",
      "          'nshe': 1,\n",
      "          'nearly': 1,\n",
      "          'commits': 1,\n",
      "          'suicide': 1,\n",
      "          'comes': 1,\n",
      "          'rescue': 1,\n",
      "          'saves': 1,\n",
      "          'gets': 1,\n",
      "          'jealous': 1,\n",
      "          'eventually': 1,\n",
      "          'tries': 1,\n",
      "          'kill': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'sinks': 1,\n",
      "          'nand': 1,\n",
      "          'main': 1,\n",
      "          'problem': 1,\n",
      "          'stops': 1,\n",
      "          'weak': 1,\n",
      "          'cliched': 1,\n",
      "          'creepy': 1,\n",
      "          'nice': 1,\n",
      "          'marry': 1,\n",
      "          'heart': 1,\n",
      "          'stuckup': 1,\n",
      "          'mother': 1,\n",
      "          'consists': 1,\n",
      "          'lots': 1,\n",
      "          'injokes': 1,\n",
      "          'boat': 1,\n",
      "          'wont': 1,\n",
      "          'sink': 1,\n",
      "          'basic': 1,\n",
      "          'shame': 1,\n",
      "          'sit': 1,\n",
      "          'nwithout': 1,\n",
      "          'become': 1,\n",
      "          'long': 1,\n",
      "          'boring': 1,\n",
      "          '1992': 1,\n",
      "          'luckily': 1,\n",
      "          'redeeming': 1,\n",
      "          'features': 1,\n",
      "          'problems': 1,\n",
      "          'disappear': 1,\n",
      "          'nfirstly': 1,\n",
      "          'sweeping': 1,\n",
      "          'shots': 1,\n",
      "          'clever': 1,\n",
      "          'fades': 1,\n",
      "          'ruined': 1,\n",
      "          'directs': 1,\n",
      "          'especially': 1,\n",
      "          'disaster': 1,\n",
      "          'end': 1,\n",
      "          'mayhem': 1,\n",
      "          'panic': 1,\n",
      "          'done': 1,\n",
      "          'nits': 1,\n",
      "          'sight': 1,\n",
      "          'watching': 1,\n",
      "          'heights': 1,\n",
      "          'watery': 1,\n",
      "          'depths': 1,\n",
      "          'nthanks': 1,\n",
      "          'audiences': 1,\n",
      "          'attention': 1,\n",
      "          'held': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'nto': 1,\n",
      "          'support': 1,\n",
      "          'cast': 1,\n",
      "          'working': 1,\n",
      "          'underwritten': 1,\n",
      "          'ndicaprio': 1,\n",
      "          'looks': 1,\n",
      "          '1617': 1,\n",
      "          'years': 1,\n",
      "          'nhis': 1,\n",
      "          'performance': 1,\n",
      "          'excitiable': 1,\n",
      "          'yet': 1,\n",
      "          'funny': 1,\n",
      "          'lines': 1,\n",
      "          'nwinslet': 1,\n",
      "          'transistion': 1,\n",
      "          'rebelous': 1,\n",
      "          'young': 1,\n",
      "          'adult': 1,\n",
      "          'smooth': 1,\n",
      "          'nzane': 1,\n",
      "          'deliciously': 1,\n",
      "          'evil': 1,\n",
      "          'saying': 1,\n",
      "          'line': 1,\n",
      "          'sneer': 1,\n",
      "          'flicker': 1,\n",
      "          'eye': 1,\n",
      "          'lash': 1,\n",
      "          'hate': 1,\n",
      "          'nhe': 1,\n",
      "          'may': 1,\n",
      "          'playing': 1,\n",
      "          'character': 1,\n",
      "          'hes': 1,\n",
      "          'dead': 1,\n",
      "          'calm': 1,\n",
      "          'worthy': 1,\n",
      "          'note': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'edward': 1,\n",
      "          'scissorhands': 1,\n",
      "          '1990': 1,\n",
      "          'loud': 1,\n",
      "          'mouthed': 1,\n",
      "          'american': 1,\n",
      "          'nfinally': 1,\n",
      "          'icing': 1,\n",
      "          'things': 1,\n",
      "          'cake': 1,\n",
      "          'special': 1,\n",
      "          'ncameron': 1,\n",
      "          'whiz': 1,\n",
      "          'watch': 1,\n",
      "          'aliens': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          '1994': 1,\n",
      "          'used': 1,\n",
      "          'throughout': 1,\n",
      "          'sweeps': 1,\n",
      "          'ships': 1,\n",
      "          'digital': 1,\n",
      "          'domain': 1,\n",
      "          'animate': 1,\n",
      "          'human': 1,\n",
      "          'movement': 1,\n",
      "          'humans': 1,\n",
      "          'seem': 1,\n",
      "          'move': 1,\n",
      "          'smoothly': 1,\n",
      "          'something': 1,\n",
      "          'odd': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'animated': 1,\n",
      "          'computer': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'sinking': 1,\n",
      "          'flying': 1,\n",
      "          'place': 1,\n",
      "          'scene': 1,\n",
      "          'splits': 1,\n",
      "          'half': 1,\n",
      "          'seen': 1,\n",
      "          'believed': 1,\n",
      "          'reinforced': 1,\n",
      "          'wonder': 1,\n",
      "          'acting': 1,\n",
      "          'cgi': 1,\n",
      "          'writing': 1,\n",
      "          'nagain': 1,\n",
      "          'editing': 1,\n",
      "          'loose': 1,\n",
      "          'edits': 1,\n",
      "          'three': 1,\n",
      "          'cuts': 1,\n",
      "          'godfather': 1,\n",
      "          'movies': 1,\n",
      "          'wonderful': 1,\n",
      "          'attempt': 1,\n",
      "          'creating': 1,\n",
      "          'nenjoyable': 1,\n",
      "          'even': 1,\n",
      "          'sad': 1,\n",
      "          'cinema': 1,\n",
      "          'invented': 1,\n",
      "          'filling': 1,\n",
      "          'screen': 1,\n",
      "          'incredible': 1,\n",
      "          'images': 1,\n",
      "          'assaulting': 1,\n",
      "          'ears': 1,\n",
      "          'sound': 1,\n",
      "          'na': 1,\n",
      "          'superb': 1,\n",
      "          'noverall': 1,\n",
      "          'rating': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bulworth': 11,\n",
      "          'nhe': 6,\n",
      "          'movie': 6,\n",
      "          'nthe': 5,\n",
      "          'bulworths': 5,\n",
      "          'political': 5,\n",
      "          'beatty': 4,\n",
      "          'get': 4,\n",
      "          'nwhen': 4,\n",
      "          'nhis': 4,\n",
      "          'hes': 4,\n",
      "          'like': 4,\n",
      "          'truth': 4,\n",
      "          'good': 4,\n",
      "          'bad': 4,\n",
      "          'one': 3,\n",
      "          'plot': 3,\n",
      "          'could': 3,\n",
      "          'back': 3,\n",
      "          'insurance': 3,\n",
      "          'questions': 3,\n",
      "          'hit': 3,\n",
      "          'man': 3,\n",
      "          'anyway': 3,\n",
      "          'keep': 3,\n",
      "          'go': 3,\n",
      "          'make': 3,\n",
      "          'politics': 3,\n",
      "          'much': 3,\n",
      "          'movies': 3,\n",
      "          'scenes': 3,\n",
      "          'nas': 3,\n",
      "          'wonders': 2,\n",
      "          'warren': 2,\n",
      "          'plays': 2,\n",
      "          'politician': 2,\n",
      "          'campaign': 2,\n",
      "          'congregation': 2,\n",
      "          'cant': 2,\n",
      "          'wings': 2,\n",
      "          'montage': 2,\n",
      "          'working': 2,\n",
      "          'tv': 2,\n",
      "          'depression': 2,\n",
      "          'calls': 2,\n",
      "          'assassination': 2,\n",
      "          'speaking': 2,\n",
      "          'nbulworth': 2,\n",
      "          'speech': 2,\n",
      "          'africanamerican': 2,\n",
      "          'church': 2,\n",
      "          'hard': 2,\n",
      "          'money': 2,\n",
      "          'dead': 2,\n",
      "          'came': 2,\n",
      "          'made': 2,\n",
      "          'promises': 2,\n",
      "          'public': 2,\n",
      "          'n': 2,\n",
      "          'drinking': 2,\n",
      "          'nthat': 2,\n",
      "          'line': 2,\n",
      "          'talking': 2,\n",
      "          'nwith': 2,\n",
      "          'people': 2,\n",
      "          'lobbyists': 2,\n",
      "          'three': 2,\n",
      "          'volunteers': 2,\n",
      "          'nikki': 2,\n",
      "          'quality': 2,\n",
      "          'product': 2,\n",
      "          'night': 2,\n",
      "          'rap': 2,\n",
      "          'raps': 2,\n",
      "          'first': 2,\n",
      "          'seems': 2,\n",
      "          'chase': 2,\n",
      "          'screen': 2,\n",
      "          'able': 2,\n",
      "          'njust': 2,\n",
      "          'seeing': 1,\n",
      "          'outrageous': 1,\n",
      "          'previews': 1,\n",
      "          'possibly': 1,\n",
      "          'allow': 1,\n",
      "          'away': 1,\n",
      "          'making': 1,\n",
      "          'statements': 1,\n",
      "          'case': 1,\n",
      "          'missed': 1,\n",
      "          'trail': 1,\n",
      "          'says': 1,\n",
      "          'black': 1,\n",
      "          'cut': 1,\n",
      "          'malt': 1,\n",
      "          'liquor': 1,\n",
      "          'chicken': 1,\n",
      "          'behind': 1,\n",
      "          'someone': 1,\n",
      "          'running': 1,\n",
      "          'stabs': 1,\n",
      "          'wife': 1,\n",
      "          'youre': 1,\n",
      "          'never': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'rid': 1,\n",
      "          'nwell': 1,\n",
      "          'works': 1,\n",
      "          'well': 1,\n",
      "          'comedy': 1,\n",
      "          'nbeatty': 1,\n",
      "          'jay': 1,\n",
      "          'billington': 1,\n",
      "          'longtime': 1,\n",
      "          'democratic': 1,\n",
      "          'senator': 1,\n",
      "          'california': 1,\n",
      "          'opens': 1,\n",
      "          'painfully': 1,\n",
      "          'repetitious': 1,\n",
      "          'latest': 1,\n",
      "          'commercials': 1,\n",
      "          'condemning': 1,\n",
      "          'affirmative': 1,\n",
      "          'action': 1,\n",
      "          'ironically': 1,\n",
      "          'intercut': 1,\n",
      "          'pictures': 1,\n",
      "          'martin': 1,\n",
      "          'luther': 1,\n",
      "          'king': 1,\n",
      "          'youth': 1,\n",
      "          'jack': 1,\n",
      "          'kennedy': 1,\n",
      "          'finally': 1,\n",
      "          'lay': 1,\n",
      "          'eyes': 1,\n",
      "          'morosely': 1,\n",
      "          'weeping': 1,\n",
      "          'front': 1,\n",
      "          'gone': 1,\n",
      "          'without': 1,\n",
      "          'food': 1,\n",
      "          'sleep': 1,\n",
      "          'days': 1,\n",
      "          'entering': 1,\n",
      "          'final': 1,\n",
      "          'weekend': 1,\n",
      "          'primaries': 1,\n",
      "          'sunk': 1,\n",
      "          'far': 1,\n",
      "          'care': 1,\n",
      "          'nfirst': 1,\n",
      "          'lobbyist': 1,\n",
      "          'industry': 1,\n",
      "          'bribe': 1,\n",
      "          '10': 1,\n",
      "          'million': 1,\n",
      "          'life': 1,\n",
      "          'policy': 1,\n",
      "          'daughters': 1,\n",
      "          'name': 1,\n",
      "          'nthen': 1,\n",
      "          'associate': 1,\n",
      "          'arrange': 1,\n",
      "          'assistant': 1,\n",
      "          'murphy': 1,\n",
      "          'oliver': 1,\n",
      "          'platt': 1,\n",
      "          'oblivious': 1,\n",
      "          'suicidal': 1,\n",
      "          'state': 1,\n",
      "          'drags': 1,\n",
      "          'engagements': 1,\n",
      "          'halfheartedly': 1,\n",
      "          'reads': 1,\n",
      "          'takes': 1,\n",
      "          'audience': 1,\n",
      "          'voting': 1,\n",
      "          'record': 1,\n",
      "          'promised': 1,\n",
      "          'help': 1,\n",
      "          'rebuild': 1,\n",
      "          'community': 1,\n",
      "          'riots': 1,\n",
      "          'hasnt': 1,\n",
      "          'shown': 1,\n",
      "          'nsince': 1,\n",
      "          'figures': 1,\n",
      "          'hell': 1,\n",
      "          'answer': 1,\n",
      "          'truthfully': 1,\n",
      "          'bill': 1,\n",
      "          'clinton': 1,\n",
      "          'newt': 1,\n",
      "          'gingrich': 1,\n",
      "          'l': 1,\n",
      "          'photo': 1,\n",
      "          'opportunity': 1,\n",
      "          'nthey': 1,\n",
      "          'improved': 1,\n",
      "          'image': 1,\n",
      "          'counted': 1,\n",
      "          'media': 1,\n",
      "          'eventually': 1,\n",
      "          'forget': 1,\n",
      "          'shock': 1,\n",
      "          'outrage': 1,\n",
      "          'grows': 1,\n",
      "          'coming': 1,\n",
      "          'keeps': 1,\n",
      "          'shooting': 1,\n",
      "          'honest': 1,\n",
      "          'ugly': 1,\n",
      "          'answers': 1,\n",
      "          'id': 1,\n",
      "          'distinction': 1,\n",
      "          'denver': 1,\n",
      "          'post': 1,\n",
      "          'failed': 1,\n",
      "          'characterizing': 1,\n",
      "          'africanamericans': 1,\n",
      "          'maltliquor': 1,\n",
      "          'j': 1,\n",
      "          'nfans': 1,\n",
      "          'part': 1,\n",
      "          'trailers': 1,\n",
      "          'praised': 1,\n",
      "          'confessions': 1,\n",
      "          'makes': 1,\n",
      "          'critics': 1,\n",
      "          'praise': 1,\n",
      "          'theyre': 1,\n",
      "          'experience': 1,\n",
      "          'liberating': 1,\n",
      "          'nothing': 1,\n",
      "          'left': 1,\n",
      "          'lose': 1,\n",
      "          'longer': 1,\n",
      "          'restricted': 1,\n",
      "          'burping': 1,\n",
      "          'generic': 1,\n",
      "          'platitudes': 1,\n",
      "          'sides': 1,\n",
      "          'mouth': 1,\n",
      "          'say': 1,\n",
      "          'whatever': 1,\n",
      "          'wants': 1,\n",
      "          'going': 1,\n",
      "          'nwhy': 1,\n",
      "          'tell': 1,\n",
      "          'sleazy': 1,\n",
      "          'bought': 1,\n",
      "          'paid': 1,\n",
      "          'racism': 1,\n",
      "          'among': 1,\n",
      "          'populace': 1,\n",
      "          'protects': 1,\n",
      "          'politicians': 1,\n",
      "          'target': 1,\n",
      "          'charges': 1,\n",
      "          'classism': 1,\n",
      "          'nbulworths': 1,\n",
      "          'candor': 1,\n",
      "          'wins': 1,\n",
      "          'halle': 1,\n",
      "          'barry': 1,\n",
      "          'gets': 1,\n",
      "          'crush': 1,\n",
      "          'feels': 1,\n",
      "          'afterwards': 1,\n",
      "          'actually': 1,\n",
      "          'eats': 1,\n",
      "          'something': 1,\n",
      "          'nchicken': 1,\n",
      "          'appropriately': 1,\n",
      "          'enough': 1,\n",
      "          'shows': 1,\n",
      "          'late': 1,\n",
      "          'meeting': 1,\n",
      "          'studio': 1,\n",
      "          'executives': 1,\n",
      "          'asks': 1,\n",
      "          'stands': 1,\n",
      "          'government': 1,\n",
      "          'regulation': 1,\n",
      "          'ratings': 1,\n",
      "          'drifts': 1,\n",
      "          'topic': 1,\n",
      "          'filmed': 1,\n",
      "          'entertainment': 1,\n",
      "          'many': 1,\n",
      "          'talented': 1,\n",
      "          'hollywood': 1,\n",
      "          'become': 1,\n",
      "          'indignant': 1,\n",
      "          'ask': 1,\n",
      "          'low': 1,\n",
      "          'opinion': 1,\n",
      "          'callously': 1,\n",
      "          'admits': 1,\n",
      "          'rich': 1,\n",
      "          'jews': 1,\n",
      "          'drops': 1,\n",
      "          'nightclub': 1,\n",
      "          'decides': 1,\n",
      "          'stays': 1,\n",
      "          'smoking': 1,\n",
      "          'pot': 1,\n",
      "          'dancing': 1,\n",
      "          'falling': 1,\n",
      "          'love': 1,\n",
      "          'learning': 1,\n",
      "          'scratch': 1,\n",
      "          'turntables': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'shuns': 1,\n",
      "          'prepared': 1,\n",
      "          'instead': 1,\n",
      "          'suitandtie': 1,\n",
      "          'fundraisers': 1,\n",
      "          'nfrom': 1,\n",
      "          'appearances': 1,\n",
      "          'middleaged': 1,\n",
      "          'white': 1,\n",
      "          'guy': 1,\n",
      "          'nhes': 1,\n",
      "          'try': 1,\n",
      "          'least': 1,\n",
      "          'embarrassingly': 1,\n",
      "          'amused': 1,\n",
      "          'rest': 1,\n",
      "          'constituency': 1,\n",
      "          'new': 1,\n",
      "          'neventually': 1,\n",
      "          'remember': 1,\n",
      "          'hired': 1,\n",
      "          'novertakes': 1,\n",
      "          'nscreen': 1,\n",
      "          'time': 1,\n",
      "          'spent': 1,\n",
      "          'trying': 1,\n",
      "          'cancel': 1,\n",
      "          'request': 1,\n",
      "          'closing': 1,\n",
      "          'nthere': 1,\n",
      "          'even': 1,\n",
      "          'gratuitous': 1,\n",
      "          'fleeing': 1,\n",
      "          'killer': 1,\n",
      "          'nthese': 1,\n",
      "          'may': 1,\n",
      "          'necessary': 1,\n",
      "          'events': 1,\n",
      "          'film': 1,\n",
      "          'moving': 1,\n",
      "          'along': 1,\n",
      "          'distracted': 1,\n",
      "          'detracted': 1,\n",
      "          'ranting': 1,\n",
      "          'interesting': 1,\n",
      "          'everpresent': 1,\n",
      "          'obviouslooking': 1,\n",
      "          'assassin': 1,\n",
      "          'nstill': 1,\n",
      "          'original': 1,\n",
      "          'enjoyable': 1,\n",
      "          'deserves': 1,\n",
      "          'credit': 1,\n",
      "          'bringing': 1,\n",
      "          'story': 1,\n",
      "          'writer': 1,\n",
      "          'structure': 1,\n",
      "          'dialogue': 1,\n",
      "          'jeremy': 1,\n",
      "          'pikser': 1,\n",
      "          'cowrote': 1,\n",
      "          'screenplay': 1,\n",
      "          'actor': 1,\n",
      "          'convincingly': 1,\n",
      "          'portray': 1,\n",
      "          'liberation': 1,\n",
      "          'rebirth': 1,\n",
      "          'producer': 1,\n",
      "          'four': 1,\n",
      "          'others': 1,\n",
      "          'free': 1,\n",
      "          'hollywoods': 1,\n",
      "          'indulgent': 1,\n",
      "          'formulas': 1,\n",
      "          'except': 1,\n",
      "          'inexcusable': 1,\n",
      "          'nsomeone': 1,\n",
      "          'else': 1,\n",
      "          'probably': 1,\n",
      "          'directed': 1,\n",
      "          'since': 1,\n",
      "          'heck': 1,\n",
      "          'nits': 1,\n",
      "          'arent': 1,\n",
      "          'around': 1,\n",
      "          'tackle': 1,\n",
      "          'corruption': 1,\n",
      "          'way': 1,\n",
      "          'challenges': 1,\n",
      "          'viewers': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'real': 1,\n",
      "          'nafter': 1,\n",
      "          'inspiration': 1,\n",
      "          'straight': 1,\n",
      "          'news': 1,\n",
      "          'little': 1,\n",
      "          'perception': 1,\n",
      "          'insight': 1,\n",
      "          'write': 1,\n",
      "          'rants': 1,\n",
      "          'dont': 1,\n",
      "          'expect': 1,\n",
      "          'popular': 1,\n",
      "          'companies': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'pie': 6,\n",
      "          'american': 4,\n",
      "          'dont': 3,\n",
      "          'party': 3,\n",
      "          'n': 3,\n",
      "          'movies': 2,\n",
      "          'kev': 2,\n",
      "          'wants': 2,\n",
      "          'oz': 2,\n",
      "          'klein': 2,\n",
      "          'finch': 2,\n",
      "          'pays': 2,\n",
      "          'women': 2,\n",
      "          'time': 2,\n",
      "          'performance': 2,\n",
      "          'prom': 2,\n",
      "          'namerican': 2,\n",
      "          'arouse': 2,\n",
      "          'amuse': 2,\n",
      "          'say': 2,\n",
      "          'see': 2,\n",
      "          'teen': 2,\n",
      "          'nthe': 2,\n",
      "          'acknowledges': 1,\n",
      "          'cold': 1,\n",
      "          'hard': 1,\n",
      "          'fact': 1,\n",
      "          'difficult': 1,\n",
      "          'get': 1,\n",
      "          'laid': 1,\n",
      "          'nits': 1,\n",
      "          'four': 1,\n",
      "          'virgin': 1,\n",
      "          'heroes': 1,\n",
      "          'jim': 1,\n",
      "          'biggs': 1,\n",
      "          'chronic': 1,\n",
      "          'masturbator': 1,\n",
      "          'nicholas': 1,\n",
      "          'desperately': 1,\n",
      "          'deflower': 1,\n",
      "          'girlfriend': 1,\n",
      "          'reid': 1,\n",
      "          'lacrosse': 1,\n",
      "          'player': 1,\n",
      "          'whose': 1,\n",
      "          'approach': 1,\n",
      "          'requires': 1,\n",
      "          'fine': 1,\n",
      "          'tuning': 1,\n",
      "          'eddie': 1,\n",
      "          'kaye': 1,\n",
      "          'thomas': 1,\n",
      "          'germphobe': 1,\n",
      "          'crass': 1,\n",
      "          'nickname': 1,\n",
      "          'hilarious': 1,\n",
      "          'wont': 1,\n",
      "          'spoil': 1,\n",
      "          'classmate': 1,\n",
      "          'spread': 1,\n",
      "          'rumours': 1,\n",
      "          'size': 1,\n",
      "          'member': 1,\n",
      "          'njim': 1,\n",
      "          'attend': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'suburban': 1,\n",
      "          'michigan': 1,\n",
      "          'full': 1,\n",
      "          'many': 1,\n",
      "          'impossibly': 1,\n",
      "          'beautiful': 1,\n",
      "          'wonder': 1,\n",
      "          'theyre': 1,\n",
      "          'horny': 1,\n",
      "          'nafter': 1,\n",
      "          'studly': 1,\n",
      "          'friend': 1,\n",
      "          'stiflers': 1,\n",
      "          'seann': 1,\n",
      "          'william': 1,\n",
      "          'scott': 1,\n",
      "          'films': 1,\n",
      "          'sharpest': 1,\n",
      "          'house': 1,\n",
      "          'leaves': 1,\n",
      "          'sexually': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'quartet': 1,\n",
      "          'make': 1,\n",
      "          'pact': 1,\n",
      "          'lose': 1,\n",
      "          'graduationspecifically': 1,\n",
      "          'night': 1,\n",
      "          'weeks': 1,\n",
      "          'away': 1,\n",
      "          'tradition': 1,\n",
      "          'bachelor': 1,\n",
      "          'revenge': 1,\n",
      "          'nerds': 1,\n",
      "          'nalmost': 1,\n",
      "          'every': 1,\n",
      "          'conversation': 1,\n",
      "          'characters': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'makin': 1,\n",
      "          'whoopee': 1,\n",
      "          'nall': 1,\n",
      "          'ogled': 1,\n",
      "          'alyson': 1,\n",
      "          'hannigans': 1,\n",
      "          'perky': 1,\n",
      "          'music': 1,\n",
      "          'student': 1,\n",
      "          'memorable': 1,\n",
      "          'female': 1,\n",
      "          'bunch': 1,\n",
      "          'nsituations': 1,\n",
      "          'abound': 1,\n",
      "          'defy': 1,\n",
      "          'logic': 1,\n",
      "          'andor': 1,\n",
      "          'core': 1,\n",
      "          'audience': 1,\n",
      "          'adolescent': 1,\n",
      "          'boys': 1,\n",
      "          'nadias': 1,\n",
      "          'shannon': 1,\n",
      "          'elizabeth': 1,\n",
      "          'internet': 1,\n",
      "          'stripteasean': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'raucous': 1,\n",
      "          'guiltily': 1,\n",
      "          'pleasurable': 1,\n",
      "          'sequence': 1,\n",
      "          'nto': 1,\n",
      "          'jims': 1,\n",
      "          'lusty': 1,\n",
      "          'encounter': 1,\n",
      "          'hot': 1,\n",
      "          'apple': 1,\n",
      "          'nwhat': 1,\n",
      "          'differentiates': 1,\n",
      "          'dirty': 1,\n",
      "          'eighties': 1,\n",
      "          'comedies': 1,\n",
      "          'aside': 1,\n",
      "          'nineties': 1,\n",
      "          'obsession': 1,\n",
      "          'bodily': 1,\n",
      "          'fluids': 1,\n",
      "          'cast': 1,\n",
      "          'thats': 1,\n",
      "          'light': 1,\n",
      "          'years': 1,\n",
      "          'appealing': 1,\n",
      "          'one': 1,\n",
      "          'guys': 1,\n",
      "          'ntwo': 1,\n",
      "          'standouts': 1,\n",
      "          'sctv': 1,\n",
      "          'eugene': 1,\n",
      "          'levy': 1,\n",
      "          'nklein': 1,\n",
      "          'plays': 1,\n",
      "          'kindhearted': 1,\n",
      "          'athlete': 1,\n",
      "          'second': 1,\n",
      "          'row': 1,\n",
      "          'alexander': 1,\n",
      "          'paynes': 1,\n",
      "          'underappreciated': 1,\n",
      "          'election': 1,\n",
      "          'ni': 1,\n",
      "          'hope': 1,\n",
      "          'warm': 1,\n",
      "          'actor': 1,\n",
      "          'disarmingly': 1,\n",
      "          'honest': 1,\n",
      "          'face': 1,\n",
      "          'soon': 1,\n",
      "          'nlevys': 1,\n",
      "          'crowdpleasing': 1,\n",
      "          'indeed': 1,\n",
      "          'nice': 1,\n",
      "          'back': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'role': 1,\n",
      "          'makes': 1,\n",
      "          'wonderful': 1,\n",
      "          'use': 1,\n",
      "          'expressive': 1,\n",
      "          'brow': 1,\n",
      "          'also': 1,\n",
      "          'emulate': 1,\n",
      "          'flicks': 1,\n",
      "          'parents': 1,\n",
      "          '_would_': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'let': 1,\n",
      "          'watch': 1,\n",
      "          'growing': 1,\n",
      "          'nit': 1,\n",
      "          'skillfully': 1,\n",
      "          'employs': 1,\n",
      "          'broad': 1,\n",
      "          'mix': 1,\n",
      "          'pop': 1,\n",
      "          'tunes': 1,\n",
      "          'much': 1,\n",
      "          'like': 1,\n",
      "          'john': 1,\n",
      "          'hughes': 1,\n",
      "          'even': 1,\n",
      "          'homage': 1,\n",
      "          'breakfast': 1,\n",
      "          'club': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'evidently': 1,\n",
      "          'band': 1,\n",
      "          'covers': 1,\n",
      "          'simple': 1,\n",
      "          'minds': 1,\n",
      "          'forget': 1,\n",
      "          'picture': 1,\n",
      "          'ultimately': 1,\n",
      "          'healthy': 1,\n",
      "          'obligatory': 1,\n",
      "          'attitude': 1,\n",
      "          'towards': 1,\n",
      "          'safe': 1,\n",
      "          'sexeven': 1,\n",
      "          'libidinous': 1,\n",
      "          'pies': 1,\n",
      "          'protagonists': 1,\n",
      "          'first': 1,\n",
      "          'whip': 1,\n",
      "          'condom': 1,\n",
      "          'filmmakers': 1,\n",
      "          'prove': 1,\n",
      "          'socially': 1,\n",
      "          'responsible': 1,\n",
      "          'raunch': 1,\n",
      "          'possible': 1,\n",
      "          'nfor': 1,\n",
      "          'familiarity': 1,\n",
      "          'charming': 1,\n",
      "          'leads': 1,\n",
      "          'recommend': 1,\n",
      "          'buzz': 1,\n",
      "          'film': 1,\n",
      "          'expecting': 1,\n",
      "          'something': 1,\n",
      "          'fresher': 1,\n",
      "          'nas': 1,\n",
      "          'far': 1,\n",
      "          'new': 1,\n",
      "          'cinema': 1,\n",
      "          'goes': 1,\n",
      "          'top': 1,\n",
      "          'heap': 1,\n",
      "          'didnt': 1,\n",
      "          'warn': 1,\n",
      "          'scene': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'truman': 7,\n",
      "          'show': 7,\n",
      "          'nbut': 5,\n",
      "          'film': 5,\n",
      "          'nthe': 5,\n",
      "          'audience': 4,\n",
      "          'life': 4,\n",
      "          'trumans': 3,\n",
      "          'still': 2,\n",
      "          'films': 2,\n",
      "          'would': 2,\n",
      "          'see': 2,\n",
      "          'really': 2,\n",
      "          'nthere': 2,\n",
      "          'picture': 2,\n",
      "          'makes': 2,\n",
      "          'peter': 2,\n",
      "          'many': 2,\n",
      "          'beautiful': 2,\n",
      "          'every': 2,\n",
      "          'nit': 2,\n",
      "          'may': 2,\n",
      "          'made': 2,\n",
      "          'burbank': 2,\n",
      "          'human': 2,\n",
      "          'side': 2,\n",
      "          'character': 2,\n",
      "          'played': 2,\n",
      "          'millions': 2,\n",
      "          'people': 2,\n",
      "          'happening': 2,\n",
      "          'laugh': 2,\n",
      "          '1998': 1,\n",
      "          'summer': 1,\n",
      "          'movie': 1,\n",
      "          'season': 1,\n",
      "          'infancy': 1,\n",
      "          'diasappointing': 1,\n",
      "          'godzilla': 1,\n",
      "          'fear': 1,\n",
      "          'loathing': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'nice': 1,\n",
      "          'good': 1,\n",
      "          'doubt': 1,\n",
      "          'could': 1,\n",
      "          'expected': 1,\n",
      "          'one': 1,\n",
      "          'unique': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'deserves': 1,\n",
      "          'spot': 1,\n",
      "          'decades': 1,\n",
      "          'best': 1,\n",
      "          'list': 1,\n",
      "          'way': 1,\n",
      "          'isolate': 1,\n",
      "          'single': 1,\n",
      "          'component': 1,\n",
      "          'proclaim': 1,\n",
      "          'yes': 1,\n",
      "          'thats': 1,\n",
      "          'great': 1,\n",
      "          'blend': 1,\n",
      "          'weirs': 1,\n",
      "          'masterful': 1,\n",
      "          'ways': 1,\n",
      "          'brilliant': 1,\n",
      "          'direction': 1,\n",
      "          'bizious': 1,\n",
      "          'stunning': 1,\n",
      "          'photography': 1,\n",
      "          'jim': 1,\n",
      "          'carreys': 1,\n",
      "          'performance': 1,\n",
      "          'work': 1,\n",
      "          'fantastically': 1,\n",
      "          'something': 1,\n",
      "          'strangely': 1,\n",
      "          'shot': 1,\n",
      "          'use': 1,\n",
      "          'color': 1,\n",
      "          'placement': 1,\n",
      "          'characters': 1,\n",
      "          'frame': 1,\n",
      "          'everything': 1,\n",
      "          'looks': 1,\n",
      "          'intentional': 1,\n",
      "          'perfect': 1,\n",
      "          'ncarrey': 1,\n",
      "          'wise': 1,\n",
      "          'choice': 1,\n",
      "          'nby': 1,\n",
      "          'playing': 1,\n",
      "          'mildmannered': 1,\n",
      "          'allows': 1,\n",
      "          'enough': 1,\n",
      "          'room': 1,\n",
      "          'comical': 1,\n",
      "          'therefore': 1,\n",
      "          'alienating': 1,\n",
      "          'true': 1,\n",
      "          'fans': 1,\n",
      "          'showing': 1,\n",
      "          'vulnerable': 1,\n",
      "          'nthat': 1,\n",
      "          'missing': 1,\n",
      "          'nearly': 1,\n",
      "          'major': 1,\n",
      "          'numerous': 1,\n",
      "          'commercial': 1,\n",
      "          'successes': 1,\n",
      "          'ntruman': 1,\n",
      "          'born': 1,\n",
      "          'nhe': 1,\n",
      "          'chosen': 1,\n",
      "          'birth': 1,\n",
      "          'focus': 1,\n",
      "          '24': 1,\n",
      "          'hour': 1,\n",
      "          'television': 1,\n",
      "          'neverything': 1,\n",
      "          'environment': 1,\n",
      "          'controlled': 1,\n",
      "          'team': 1,\n",
      "          'technicians': 1,\n",
      "          'led': 1,\n",
      "          'shows': 1,\n",
      "          'director': 1,\n",
      "          'christof': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'neveryone': 1,\n",
      "          'actor': 1,\n",
      "          'extra': 1,\n",
      "          'nthey': 1,\n",
      "          'watched': 1,\n",
      "          'around': 1,\n",
      "          'globe': 1,\n",
      "          'tune': 1,\n",
      "          'time': 1,\n",
      "          'day': 1,\n",
      "          'person': 1,\n",
      "          'aware': 1,\n",
      "          'classification': 1,\n",
      "          'tricky': 1,\n",
      "          'reacted': 1,\n",
      "          'revelations': 1,\n",
      "          'laughter': 1,\n",
      "          'ni': 1,\n",
      "          'much': 1,\n",
      "          'emotionally': 1,\n",
      "          'wrapped': 1,\n",
      "          'things': 1,\n",
      "          'gave': 1,\n",
      "          'glassy': 1,\n",
      "          'eyes': 1,\n",
      "          'indeed': 1,\n",
      "          'done': 1,\n",
      "          'whole': 1,\n",
      "          'wrong': 1,\n",
      "          'nso': 1,\n",
      "          'going': 1,\n",
      "          'end': 1,\n",
      "          'labeled': 1,\n",
      "          'comedy': 1,\n",
      "          'na': 1,\n",
      "          'drama': 1,\n",
      "          'depends': 1,\n",
      "          'touching': 1,\n",
      "          'sad': 1,\n",
      "          'tale': 1,\n",
      "          'extents': 1,\n",
      "          'corporation': 1,\n",
      "          'go': 1,\n",
      "          'exploit': 1,\n",
      "          'entertainment': 1,\n",
      "          'others': 1,\n",
      "          'else': 1,\n",
      "          'stunningly': 1,\n",
      "          'humor': 1,\n",
      "          'heart': 1,\n",
      "          'scary': 1,\n",
      "          'realism': 1,\n",
      "          'noscar': 1,\n",
      "          'predictions': 1,\n",
      "          'june': 1,\n",
      "          'pointless': 1,\n",
      "          'released': 1,\n",
      "          'schedule': 1,\n",
      "          'late': 1,\n",
      "          'fall': 1,\n",
      "          'winter': 1,\n",
      "          '1997': 1,\n",
      "          'originally': 1,\n",
      "          'planned': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'oscarless': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 14,\n",
      "          'excellent': 8,\n",
      "          'nthe': 6,\n",
      "          'nights': 5,\n",
      "          'great': 5,\n",
      "          'like': 4,\n",
      "          'nbut': 4,\n",
      "          'writing': 4,\n",
      "          'really': 4,\n",
      "          'minutes': 3,\n",
      "          'nboogie': 3,\n",
      "          'eddie': 3,\n",
      "          'well': 3,\n",
      "          'direction': 3,\n",
      "          'dialogue': 3,\n",
      "          'scenes': 3,\n",
      "          'one': 2,\n",
      "          '90': 2,\n",
      "          'feels': 2,\n",
      "          'crap': 2,\n",
      "          'director': 2,\n",
      "          'anderson': 2,\n",
      "          'funny': 2,\n",
      "          'sometimes': 2,\n",
      "          'old': 2,\n",
      "          'reynolds': 2,\n",
      "          'adult': 2,\n",
      "          'movie': 2,\n",
      "          'business': 2,\n",
      "          'dirk': 2,\n",
      "          'nin': 2,\n",
      "          'characters': 2,\n",
      "          'quickly': 2,\n",
      "          'phillip': 2,\n",
      "          'moore': 2,\n",
      "          'little': 2,\n",
      "          'william': 2,\n",
      "          'h': 2,\n",
      "          'macy': 2,\n",
      "          'boogie': 2,\n",
      "          'never': 2,\n",
      "          'films': 2,\n",
      "          'lost': 2,\n",
      "          '1997': 2,\n",
      "          'spectacular': 2,\n",
      "          'soundtrack': 2,\n",
      "          'although': 2,\n",
      "          'angry': 2,\n",
      "          'acting': 2,\n",
      "          'rest': 2,\n",
      "          'seems': 2,\n",
      "          'bit': 2,\n",
      "          'way': 1,\n",
      "          'telling': 1,\n",
      "          'good': 1,\n",
      "          'length': 1,\n",
      "          'nif': 1,\n",
      "          '300': 1,\n",
      "          'last': 1,\n",
      "          '2': 1,\n",
      "          '12': 1,\n",
      "          'hours': 1,\n",
      "          'falls': 1,\n",
      "          'latter': 1,\n",
      "          'catagory': 1,\n",
      "          'delivers': 1,\n",
      "          'hip': 1,\n",
      "          'yet': 1,\n",
      "          'violent': 1,\n",
      "          'flies': 1,\n",
      "          'along': 1,\n",
      "          'nmark': 1,\n",
      "          'whalberg': 1,\n",
      "          'k': 1,\n",
      "          'nmarky': 1,\n",
      "          'mark': 1,\n",
      "          'plays': 1,\n",
      "          'adams': 1,\n",
      "          'seventeen': 1,\n",
      "          'year': 1,\n",
      "          'certain': 1,\n",
      "          'gift': 1,\n",
      "          'midriff': 1,\n",
      "          'area': 1,\n",
      "          'njack': 1,\n",
      "          'horner': 1,\n",
      "          'decides': 1,\n",
      "          'would': 1,\n",
      "          'nafter': 1,\n",
      "          'running': 1,\n",
      "          'away': 1,\n",
      "          'home': 1,\n",
      "          'joins': 1,\n",
      "          'jack': 1,\n",
      "          'changes': 1,\n",
      "          'name': 1,\n",
      "          'diggler': 1,\n",
      "          'starts': 1,\n",
      "          'making': 1,\n",
      "          'erotic': 1,\n",
      "          'movies': 1,\n",
      "          'meets': 1,\n",
      "          'whole': 1,\n",
      "          'load': 1,\n",
      "          'introduces': 1,\n",
      "          'slickly': 1,\n",
      "          'scotty': 1,\n",
      "          'seymour': 1,\n",
      "          'hoffman': 1,\n",
      "          'rollergirl': 1,\n",
      "          'graham': 1,\n",
      "          'amber': 1,\n",
      "          'floyd': 1,\n",
      "          'baker': 1,\n",
      "          'hall': 1,\n",
      "          'bill': 1,\n",
      "          'written': 1,\n",
      "          'played': 1,\n",
      "          'audience': 1,\n",
      "          'gets': 1,\n",
      "          'know': 1,\n",
      "          'pretty': 1,\n",
      "          'thanks': 1,\n",
      "          'script': 1,\n",
      "          'nwe': 1,\n",
      "          'learn': 1,\n",
      "          'ambers': 1,\n",
      "          'grief': 1,\n",
      "          'able': 1,\n",
      "          'see': 1,\n",
      "          'child': 1,\n",
      "          'due': 1,\n",
      "          'divorce': 1,\n",
      "          'rollergirls': 1,\n",
      "          'hard': 1,\n",
      "          'time': 1,\n",
      "          'school': 1,\n",
      "          'bills': 1,\n",
      "          'wife': 1,\n",
      "          'sleeps': 1,\n",
      "          'everyone': 1,\n",
      "          'except': 1,\n",
      "          'husband': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'paul': 1,\n",
      "          'andersons': 1,\n",
      "          'fast': 1,\n",
      "          'thrilling': 1,\n",
      "          'holds': 1,\n",
      "          'nthere': 1,\n",
      "          'shots': 1,\n",
      "          'lovely': 1,\n",
      "          'steadiocam': 1,\n",
      "          'handheld': 1,\n",
      "          'camera': 1,\n",
      "          'sequences': 1,\n",
      "          'lots': 1,\n",
      "          'neat': 1,\n",
      "          'directional': 1,\n",
      "          'touches': 1,\n",
      "          'fabulous': 1,\n",
      "          'intelligent': 1,\n",
      "          'none': 1,\n",
      "          'hollywood': 1,\n",
      "          'world': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'tommorow': 1,\n",
      "          'dies': 1,\n",
      "          'feat': 1,\n",
      "          'par': 1,\n",
      "          'betters': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantinos': 1,\n",
      "          'resevoir': 1,\n",
      "          'dogs': 1,\n",
      "          '1992': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          '1994': 1,\n",
      "          'also': 1,\n",
      "          'nlike': 1,\n",
      "          'american': 1,\n",
      "          'graffiti': 1,\n",
      "          '1973': 1,\n",
      "          'features': 1,\n",
      "          'songs': 1,\n",
      "          'heightens': 1,\n",
      "          'atmosphere': 1,\n",
      "          'gives': 1,\n",
      "          'extra': 1,\n",
      "          'lift': 1,\n",
      "          'nalso': 1,\n",
      "          'costumes': 1,\n",
      "          'clothes': 1,\n",
      "          'look': 1,\n",
      "          'people': 1,\n",
      "          'wore': 1,\n",
      "          'seventies': 1,\n",
      "          'eighties': 1,\n",
      "          'flaws': 1,\n",
      "          'nfirstly': 1,\n",
      "          'wahlberg': 1,\n",
      "          'highly': 1,\n",
      "          'require': 1,\n",
      "          'act': 1,\n",
      "          'tension': 1,\n",
      "          'anger': 1,\n",
      "          'cast': 1,\n",
      "          'nburt': 1,\n",
      "          'brilliant': 1,\n",
      "          'julianne': 1,\n",
      "          'shows': 1,\n",
      "          'real': 1,\n",
      "          'emotion': 1,\n",
      "          'aswell': 1,\n",
      "          'always': 1,\n",
      "          'nanother': 1,\n",
      "          'flaw': 1,\n",
      "          'though': 1,\n",
      "          'ending': 1,\n",
      "          'tacked': 1,\n",
      "          'nit': 1,\n",
      "          'saw': 1,\n",
      "          'going': 1,\n",
      "          'needed': 1,\n",
      "          'wrap': 1,\n",
      "          'nits': 1,\n",
      "          'shame': 1,\n",
      "          'perfectly': 1,\n",
      "          'paced': 1,\n",
      "          'theyre': 1,\n",
      "          'small': 1,\n",
      "          'niggles': 1,\n",
      "          'nsuperb': 1,\n",
      "          'directing': 1,\n",
      "          'music': 1,\n",
      "          'combine': 1,\n",
      "          'make': 1,\n",
      "          'nwhatever': 1,\n",
      "          'miss': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'l': 10,\n",
      "          'film': 9,\n",
      "          'nthe': 7,\n",
      "          'version': 7,\n",
      "          'american': 6,\n",
      "          'international': 5,\n",
      "          'cinema': 3,\n",
      "          'original': 3,\n",
      "          'directors': 3,\n",
      "          'luc': 3,\n",
      "          'professional': 3,\n",
      "          'laserdisc': 3,\n",
      "          'crew': 3,\n",
      "          'mathilda': 3,\n",
      "          'cops': 3,\n",
      "          'oldman': 3,\n",
      "          'ons': 3,\n",
      "          'footage': 3,\n",
      "          'scenes': 3,\n",
      "          'besson': 3,\n",
      "          'ironic': 2,\n",
      "          'best': 2,\n",
      "          'films': 2,\n",
      "          'cut': 2,\n",
      "          'prime': 2,\n",
      "          'later': 2,\n",
      "          'dvd': 2,\n",
      "          'format': 2,\n",
      "          'cuts': 2,\n",
      "          'become': 2,\n",
      "          'classic': 2,\n",
      "          'bessons': 2,\n",
      "          'masterpiece': 2,\n",
      "          'years': 2,\n",
      "          'ni': 2,\n",
      "          'even': 2,\n",
      "          'bucks': 2,\n",
      "          'played': 2,\n",
      "          'jean': 2,\n",
      "          'reno': 2,\n",
      "          'hit': 2,\n",
      "          'man': 2,\n",
      "          'danny': 2,\n",
      "          'aiello': 2,\n",
      "          'natalie': 2,\n",
      "          'portman': 2,\n",
      "          'gary': 2,\n",
      "          'profession': 2,\n",
      "          'away': 2,\n",
      "          'part': 2,\n",
      "          'additional': 2,\n",
      "          'relationship': 2,\n",
      "          'censors': 2,\n",
      "          'french': 2,\n",
      "          'drama': 2,\n",
      "          'throw': 2,\n",
      "          'history': 1,\n",
      "          'invariably': 1,\n",
      "          'nfilms': 1,\n",
      "          'aliens': 1,\n",
      "          'abyss': 1,\n",
      "          'wild': 1,\n",
      "          'bunch': 1,\n",
      "          'blade': 1,\n",
      "          'runner': 1,\n",
      "          'terminator': 1,\n",
      "          '2': 1,\n",
      "          'examples': 1,\n",
      "          'filmmakers': 1,\n",
      "          'integrity': 1,\n",
      "          'chopped': 1,\n",
      "          'mucked': 1,\n",
      "          'studio': 1,\n",
      "          'advent': 1,\n",
      "          'provided': 1,\n",
      "          'accessible': 1,\n",
      "          'way': 1,\n",
      "          'get': 1,\n",
      "          'public': 1,\n",
      "          'provide': 1,\n",
      "          'freaks': 1,\n",
      "          'like': 1,\n",
      "          'ability': 1,\n",
      "          'enraptured': 1,\n",
      "          'extension': 1,\n",
      "          'release': 1,\n",
      "          '1995': 1,\n",
      "          'known': 1,\n",
      "          'around': 1,\n",
      "          'world': 1,\n",
      "          'example': 1,\n",
      "          'good': 1,\n",
      "          'instant': 1,\n",
      "          'nfor': 1,\n",
      "          'heard': 1,\n",
      "          'available': 1,\n",
      "          'eluded': 1,\n",
      "          'bought': 1,\n",
      "          'player': 1,\n",
      "          'uncle': 1,\n",
      "          '100': 1,\n",
      "          'watch': 1,\n",
      "          'certain': 1,\n",
      "          'including': 1,\n",
      "          'nbut': 1,\n",
      "          'countless': 1,\n",
      "          'searches': 1,\n",
      "          'stores': 1,\n",
      "          'could': 1,\n",
      "          'never': 1,\n",
      "          'find': 1,\n",
      "          'nuntil': 1,\n",
      "          'follows': 1,\n",
      "          'story': 1,\n",
      "          'italian': 1,\n",
      "          'mob': 1,\n",
      "          'run': 1,\n",
      "          'nhe': 1,\n",
      "          'lives': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'ferociously': 1,\n",
      "          'independent': 1,\n",
      "          '12yearold': 1,\n",
      "          'girl': 1,\n",
      "          'named': 1,\n",
      "          'newcomer': 1,\n",
      "          'whose': 1,\n",
      "          'father': 1,\n",
      "          'involved': 1,\n",
      "          'drugs': 1,\n",
      "          'crooked': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'lead': 1,\n",
      "          'overthetop': 1,\n",
      "          'performance': 1,\n",
      "          'kills': 1,\n",
      "          'entire': 1,\n",
      "          'family': 1,\n",
      "          'buying': 1,\n",
      "          'groceries': 1,\n",
      "          'ntaking': 1,\n",
      "          'pity': 1,\n",
      "          'hides': 1,\n",
      "          'apartment': 1,\n",
      "          'returns': 1,\n",
      "          'save': 1,\n",
      "          'life': 1,\n",
      "          'nmathilda': 1,\n",
      "          'learns': 1,\n",
      "          'decides': 1,\n",
      "          'follow': 1,\n",
      "          'footsteps': 1,\n",
      "          'cleaner': 1,\n",
      "          'nshe': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'manages': 1,\n",
      "          'reawaken': 1,\n",
      "          'emotions': 1,\n",
      "          'within': 1,\n",
      "          'kept': 1,\n",
      "          'locked': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'differences': 1,\n",
      "          'really': 1,\n",
      "          'kick': 1,\n",
      "          'contains': 1,\n",
      "          '24': 1,\n",
      "          'minutes': 1,\n",
      "          'pertains': 1,\n",
      "          'directly': 1,\n",
      "          'deemed': 1,\n",
      "          'explicit': 1,\n",
      "          'assume': 1,\n",
      "          'feel': 1,\n",
      "          'defining': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'much': 1,\n",
      "          'audiences': 1,\n",
      "          'handle': 1,\n",
      "          'extra': 1,\n",
      "          'gives': 1,\n",
      "          'better': 1,\n",
      "          'understanding': 1,\n",
      "          'mathildas': 1,\n",
      "          'motivations': 1,\n",
      "          'pertaining': 1,\n",
      "          'actions': 1,\n",
      "          'involving': 1,\n",
      "          'bad': 1,\n",
      "          'ntheres': 1,\n",
      "          'previously': 1,\n",
      "          'unseen': 1,\n",
      "          'cameo': 1,\n",
      "          'great': 1,\n",
      "          'actor': 1,\n",
      "          'jeanhugues': 1,\n",
      "          'anglade': 1,\n",
      "          'star': 1,\n",
      "          'queen': 1,\n",
      "          'margot': 1,\n",
      "          'la': 1,\n",
      "          'femme': 1,\n",
      "          'nikita': 1,\n",
      "          'killing': 1,\n",
      "          'zoe': 1,\n",
      "          'nwith': 1,\n",
      "          'replaced': 1,\n",
      "          'matildas': 1,\n",
      "          'brings': 1,\n",
      "          'emotionally': 1,\n",
      "          'closer': 1,\n",
      "          'draws': 1,\n",
      "          'stronger': 1,\n",
      "          'bonds': 1,\n",
      "          'characters': 1,\n",
      "          'murky': 1,\n",
      "          'thing': 1,\n",
      "          'inclusion': 1,\n",
      "          'missing': 1,\n",
      "          'becomes': 1,\n",
      "          'primarily': 1,\n",
      "          'heavy': 1,\n",
      "          'emotional': 1,\n",
      "          'punctuated': 1,\n",
      "          'big': 1,\n",
      "          'action': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'betters': 1,\n",
      "          'reflects': 1,\n",
      "          'serious': 1,\n",
      "          'laced': 1,\n",
      "          'pieces': 1,\n",
      "          'reflecting': 1,\n",
      "          'brutality': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'everyone': 1,\n",
      "          'copy': 1,\n",
      "          'twenty': 1,\n",
      "          'pick': 1,\n",
      "          'newly': 1,\n",
      "          'restored': 1,\n",
      "          'cinematic': 1,\n",
      "          'ndirectorwriter': 1,\n",
      "          'producer': 1,\n",
      "          'claude': 1,\n",
      "          'starring': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'yet': 6,\n",
      "          'war': 5,\n",
      "          'almost': 4,\n",
      "          'whose': 4,\n",
      "          'nthe': 4,\n",
      "          'dogs': 4,\n",
      "          'life': 4,\n",
      "          'action': 4,\n",
      "          'script': 4,\n",
      "          'country': 3,\n",
      "          'used': 3,\n",
      "          'movies': 3,\n",
      "          'plots': 3,\n",
      "          'rare': 3,\n",
      "          'also': 3,\n",
      "          'mercenary': 3,\n",
      "          'nhis': 3,\n",
      "          'made': 3,\n",
      "          'real': 3,\n",
      "          'irvin': 3,\n",
      "          'good': 3,\n",
      "          'croatia': 2,\n",
      "          'croatians': 2,\n",
      "          'place': 2,\n",
      "          'frederick': 2,\n",
      "          'novel': 2,\n",
      "          'nin': 2,\n",
      "          'line': 2,\n",
      "          'world': 2,\n",
      "          'deals': 2,\n",
      "          'shannon': 2,\n",
      "          'walken': 2,\n",
      "          'powerful': 2,\n",
      "          'mining': 2,\n",
      "          'political': 2,\n",
      "          'nshannon': 2,\n",
      "          'find': 2,\n",
      "          'kimba': 2,\n",
      "          'help': 2,\n",
      "          'colin': 2,\n",
      "          'blakely': 2,\n",
      "          'small': 2,\n",
      "          'friends': 2,\n",
      "          'conventional': 2,\n",
      "          '1980s': 2,\n",
      "          'documentary': 2,\n",
      "          'surprise': 2,\n",
      "          'author': 2,\n",
      "          'reputation': 2,\n",
      "          'interesting': 2,\n",
      "          '1970s': 2,\n",
      "          'one': 2,\n",
      "          'nthis': 2,\n",
      "          'work': 2,\n",
      "          'doesnt': 2,\n",
      "          'mercenaries': 2,\n",
      "          'superheroes': 2,\n",
      "          'see': 2,\n",
      "          'capable': 2,\n",
      "          'shows': 2,\n",
      "          'make': 2,\n",
      "          'battle': 2,\n",
      "          'realistic': 2,\n",
      "          'part': 1,\n",
      "          'former': 1,\n",
      "          'yugoslavia': 1,\n",
      "          'completely': 1,\n",
      "          'ignored': 1,\n",
      "          'western': 1,\n",
      "          'films': 1,\n",
      "          'general': 1,\n",
      "          'nwords': 1,\n",
      "          'unheard': 1,\n",
      "          'even': 1,\n",
      "          'actually': 1,\n",
      "          'took': 1,\n",
      "          'croatian': 1,\n",
      "          'locations': 1,\n",
      "          'exception': 1,\n",
      "          '1980': 1,\n",
      "          'adaptation': 1,\n",
      "          'forsyths': 1,\n",
      "          'bestselling': 1,\n",
      "          'occasion': 1,\n",
      "          'added': 1,\n",
      "          'insult': 1,\n",
      "          'injury': 1,\n",
      "          'mentioning': 1,\n",
      "          'unflattering': 1,\n",
      "          'context': 1,\n",
      "          'single': 1,\n",
      "          'referred': 1,\n",
      "          'bunch': 1,\n",
      "          'mean': 1,\n",
      "          'people': 1,\n",
      "          'probably': 1,\n",
      "          'terrorists': 1,\n",
      "          'happen': 1,\n",
      "          'remove': 1,\n",
      "          'parts': 1,\n",
      "          'arm': 1,\n",
      "          'dealers': 1,\n",
      "          'stomachs': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'quality': 1,\n",
      "          'merchandise': 1,\n",
      "          'nsame': 1,\n",
      "          'illustrates': 1,\n",
      "          'milieu': 1,\n",
      "          'takes': 1,\n",
      "          'dark': 1,\n",
      "          'violent': 1,\n",
      "          'shady': 1,\n",
      "          'international': 1,\n",
      "          'blurred': 1,\n",
      "          'boundaries': 1,\n",
      "          'business': 1,\n",
      "          'politics': 1,\n",
      "          'crime': 1,\n",
      "          'protagonist': 1,\n",
      "          'christopher': 1,\n",
      "          'spent': 1,\n",
      "          'best': 1,\n",
      "          'years': 1,\n",
      "          'fighting': 1,\n",
      "          'numerous': 1,\n",
      "          'little': 1,\n",
      "          'wars': 1,\n",
      "          'globe': 1,\n",
      "          'latest': 1,\n",
      "          'job': 1,\n",
      "          'intelligence': 1,\n",
      "          'mission': 1,\n",
      "          'corporation': 1,\n",
      "          'demands': 1,\n",
      "          'information': 1,\n",
      "          'climate': 1,\n",
      "          'west': 1,\n",
      "          'african': 1,\n",
      "          'nation': 1,\n",
      "          'zangaro': 1,\n",
      "          'arrives': 1,\n",
      "          'oppressive': 1,\n",
      "          'regime': 1,\n",
      "          'president': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'madman': 1,\n",
      "          'brutality': 1,\n",
      "          'crushed': 1,\n",
      "          'opposition': 1,\n",
      "          'scared': 1,\n",
      "          'westerners': 1,\n",
      "          'away': 1,\n",
      "          'nafter': 1,\n",
      "          'arrested': 1,\n",
      "          'tortured': 1,\n",
      "          'kimbas': 1,\n",
      "          'secret': 1,\n",
      "          'police': 1,\n",
      "          'leaves': 1,\n",
      "          'british': 1,\n",
      "          'journalist': 1,\n",
      "          'north': 1,\n",
      "          'nupon': 1,\n",
      "          'return': 1,\n",
      "          'approached': 1,\n",
      "          'company': 1,\n",
      "          'time': 1,\n",
      "          'want': 1,\n",
      "          'plan': 1,\n",
      "          'execute': 1,\n",
      "          'coup': 1,\n",
      "          'detat': 1,\n",
      "          'reluctantly': 1,\n",
      "          'agrees': 1,\n",
      "          'assembles': 1,\n",
      "          'group': 1,\n",
      "          'surviving': 1,\n",
      "          'begin': 1,\n",
      "          'meticulous': 1,\n",
      "          'preparation': 1,\n",
      "          'another': 1,\n",
      "          'nthing': 1,\n",
      "          'separates': 1,\n",
      "          'especially': 1,\n",
      "          'authenticity': 1,\n",
      "          'close': 1,\n",
      "          'nit': 1,\n",
      "          'shouldnt': 1,\n",
      "          'anyone': 1,\n",
      "          'forsyth': 1,\n",
      "          'blending': 1,\n",
      "          'fiction': 1,\n",
      "          'thus': 1,\n",
      "          'creating': 1,\n",
      "          'exciting': 1,\n",
      "          'believable': 1,\n",
      "          'books': 1,\n",
      "          'nthose': 1,\n",
      "          'responsible': 1,\n",
      "          'successful': 1,\n",
      "          'thrillers': 1,\n",
      "          'zinnemmans': 1,\n",
      "          'day': 1,\n",
      "          'jackal': 1,\n",
      "          'considered': 1,\n",
      "          'classic': 1,\n",
      "          'genre': 1,\n",
      "          'soldiers': 1,\n",
      "          'fortune': 1,\n",
      "          'ancient': 1,\n",
      "          'tradition': 1,\n",
      "          'resurrected': 1,\n",
      "          'great': 1,\n",
      "          'turmoil': 1,\n",
      "          '1960s': 1,\n",
      "          'filled': 1,\n",
      "          'void': 1,\n",
      "          'left': 1,\n",
      "          'vanishing': 1,\n",
      "          'colonial': 1,\n",
      "          'empires': 1,\n",
      "          'nunlike': 1,\n",
      "          'wild': 1,\n",
      "          'geese': 1,\n",
      "          'pretext': 1,\n",
      "          'adventure': 1,\n",
      "          'george': 1,\n",
      "          'malko': 1,\n",
      "          'gary': 1,\n",
      "          'de': 1,\n",
      "          'vore': 1,\n",
      "          'death': 1,\n",
      "          'last': 1,\n",
      "          'year': 1,\n",
      "          'became': 1,\n",
      "          'mystery': 1,\n",
      "          'serious': 1,\n",
      "          'instead': 1,\n",
      "          'puts': 1,\n",
      "          'emphasis': 1,\n",
      "          'characters': 1,\n",
      "          'prosaic': 1,\n",
      "          'details': 1,\n",
      "          'try': 1,\n",
      "          'romanticise': 1,\n",
      "          'profession': 1,\n",
      "          'glorify': 1,\n",
      "          'kind': 1,\n",
      "          'simply': 1,\n",
      "          'shown': 1,\n",
      "          'deadly': 1,\n",
      "          'expendable': 1,\n",
      "          'tool': 1,\n",
      "          'forces': 1,\n",
      "          'questionable': 1,\n",
      "          'agenda': 1,\n",
      "          'nchristopher': 1,\n",
      "          'played': 1,\n",
      "          'many': 1,\n",
      "          'rarely': 1,\n",
      "          'leading': 1,\n",
      "          'role': 1,\n",
      "          'performance': 1,\n",
      "          'film': 1,\n",
      "          'perhaps': 1,\n",
      "          'isnt': 1,\n",
      "          'breathtaking': 1,\n",
      "          'adequate': 1,\n",
      "          'notoriously': 1,\n",
      "          'expressionless': 1,\n",
      "          'face': 1,\n",
      "          'perfect': 1,\n",
      "          'illustration': 1,\n",
      "          'disillusioned': 1,\n",
      "          'weary': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'man': 1,\n",
      "          'alienation': 1,\n",
      "          'normal': 1,\n",
      "          'way': 1,\n",
      "          'becomes': 1,\n",
      "          'complete': 1,\n",
      "          'remaining': 1,\n",
      "          'ideal': 1,\n",
      "          'loyalty': 1,\n",
      "          'shrinking': 1,\n",
      "          'circle': 1,\n",
      "          'nalthough': 1,\n",
      "          'lack': 1,\n",
      "          'actors': 1,\n",
      "          'roles': 1,\n",
      "          'miniature': 1,\n",
      "          'compared': 1,\n",
      "          'walkens': 1,\n",
      "          'cynical': 1,\n",
      "          'reporter': 1,\n",
      "          'opportunity': 1,\n",
      "          'portray': 1,\n",
      "          'character': 1,\n",
      "          'nhowever': 1,\n",
      "          'look': 1,\n",
      "          'familiar': 1,\n",
      "          'faces': 1,\n",
      "          'would': 1,\n",
      "          'plenty': 1,\n",
      "          'tom': 1,\n",
      "          'berenger': 1,\n",
      "          'paul': 1,\n",
      "          'freeman': 1,\n",
      "          'jo': 1,\n",
      "          'beth': 1,\n",
      "          'williams': 1,\n",
      "          'victoria': 1,\n",
      "          'tennant': 1,\n",
      "          'brief': 1,\n",
      "          'cameo': 1,\n",
      "          'biggest': 1,\n",
      "          'ed': 1,\n",
      "          'oneill': 1,\n",
      "          'married': 1,\n",
      "          'children': 1,\n",
      "          'fame': 1,\n",
      "          'shannons': 1,\n",
      "          'reluctant': 1,\n",
      "          'colleague': 1,\n",
      "          'first': 1,\n",
      "          'major': 1,\n",
      "          'production': 1,\n",
      "          'john': 1,\n",
      "          'earned': 1,\n",
      "          'second': 1,\n",
      "          'class': 1,\n",
      "          'director': 1,\n",
      "          'nwith': 1,\n",
      "          'bad': 1,\n",
      "          'mess': 1,\n",
      "          'nluckily': 1,\n",
      "          'nirvins': 1,\n",
      "          'direction': 1,\n",
      "          'ascetic': 1,\n",
      "          'gave': 1,\n",
      "          'feel': 1,\n",
      "          'distraction': 1,\n",
      "          'dramatic': 1,\n",
      "          'music': 1,\n",
      "          'geoffrey': 1,\n",
      "          'burgon': 1,\n",
      "          'wrong': 1,\n",
      "          'places': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'us': 1,\n",
      "          'modern': 1,\n",
      "          'warfare': 1,\n",
      "          'means': 1,\n",
      "          'superior': 1,\n",
      "          'firepower': 1,\n",
      "          'tactics': 1,\n",
      "          'unlike': 1,\n",
      "          'ramboesque': 1,\n",
      "          'fantasies': 1,\n",
      "          'rely': 1,\n",
      "          'macho': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'making': 1,\n",
      "          'somewhat': 1,\n",
      "          'less': 1,\n",
      "          'attractive': 1,\n",
      "          'sloppy': 1,\n",
      "          'editing': 1,\n",
      "          'didnt': 1,\n",
      "          'nbut': 1,\n",
      "          'despite': 1,\n",
      "          'shortcomings': 1,\n",
      "          'remains': 1,\n",
      "          'combination': 1,\n",
      "          'thriller': 1,\n",
      "          'gritty': 1,\n",
      "          'drama': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'comedy': 5,\n",
      "          'character': 3,\n",
      "          'mobster': 3,\n",
      "          'crystal': 3,\n",
      "          'hes': 3,\n",
      "          'quick': 2,\n",
      "          'romp': 2,\n",
      "          'bad': 2,\n",
      "          'really': 2,\n",
      "          'get': 2,\n",
      "          'plenty': 2,\n",
      "          'reasons': 2,\n",
      "          'deniro': 2,\n",
      "          'attacks': 2,\n",
      "          'whos': 2,\n",
      "          'mobsters': 2,\n",
      "          'course': 2,\n",
      "          'kudrow': 2,\n",
      "          'cant': 2,\n",
      "          'always': 2,\n",
      "          'something': 2,\n",
      "          'laughs': 2,\n",
      "          'also': 2,\n",
      "          'dramatic': 2,\n",
      "          'moments': 2,\n",
      "          'comic': 2,\n",
      "          'deniros': 2,\n",
      "          'thanks': 2,\n",
      "          'family': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'review': 1,\n",
      "          'nanalyze': 1,\n",
      "          'nhow': 1,\n",
      "          'one': 1,\n",
      "          'focused': 1,\n",
      "          'mob': 1,\n",
      "          'nwell': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'sly': 1,\n",
      "          'little': 1,\n",
      "          'called': 1,\n",
      "          'freshman': 1,\n",
      "          'marlon': 1,\n",
      "          'brando': 1,\n",
      "          'sendup': 1,\n",
      "          'famous': 1,\n",
      "          'corleone': 1,\n",
      "          'recently': 1,\n",
      "          'utterly': 1,\n",
      "          'stupid': 1,\n",
      "          'way': 1,\n",
      "          'mafia': 1,\n",
      "          'nfailed': 1,\n",
      "          'joke': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'however': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'may': 1,\n",
      "          'gotten': 1,\n",
      "          'right': 1,\n",
      "          'analyze': 1,\n",
      "          'hits': 1,\n",
      "          'targets': 1,\n",
      "          'misses': 1,\n",
      "          'nfor': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'goes': 1,\n",
      "          'like': 1,\n",
      "          'na': 1,\n",
      "          'robert': 1,\n",
      "          'finds': 1,\n",
      "          'receiving': 1,\n",
      "          'several': 1,\n",
      "          'panic': 1,\n",
      "          'late': 1,\n",
      "          'fueled': 1,\n",
      "          'stress': 1,\n",
      "          'upcoming': 1,\n",
      "          'meeting': 1,\n",
      "          'neardeath': 1,\n",
      "          'following': 1,\n",
      "          'driveby': 1,\n",
      "          'shooting': 1,\n",
      "          'nits': 1,\n",
      "          'prompt': 1,\n",
      "          'hire': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'billy': 1,\n",
      "          'mostly': 1,\n",
      "          'reluctant': 1,\n",
      "          'take': 1,\n",
      "          'case': 1,\n",
      "          'two': 1,\n",
      "          'nfirst': 1,\n",
      "          'secondly': 1,\n",
      "          'trying': 1,\n",
      "          'married': 1,\n",
      "          'enjoy': 1,\n",
      "          'quiet': 1,\n",
      "          'honeymoon': 1,\n",
      "          'wife': 1,\n",
      "          'lisa': 1,\n",
      "          'kid': 1,\n",
      "          'nand': 1,\n",
      "          'rest': 1,\n",
      "          'worth': 1,\n",
      "          'moment': 1,\n",
      "          'goons': 1,\n",
      "          'needing': 1,\n",
      "          'shrink': 1,\n",
      "          'consultation': 1,\n",
      "          'dream': 1,\n",
      "          'analyzation': 1,\n",
      "          'nfortunately': 1,\n",
      "          'played': 1,\n",
      "          'ndirector': 1,\n",
      "          'harold': 1,\n",
      "          'ramis': 1,\n",
      "          'helmed': 1,\n",
      "          'multiplicity': 1,\n",
      "          'wasnt': 1,\n",
      "          'half': 1,\n",
      "          'keeps': 1,\n",
      "          'tone': 1,\n",
      "          'peppy': 1,\n",
      "          'light': 1,\n",
      "          'even': 1,\n",
      "          'sometimes': 1,\n",
      "          'sprinkled': 1,\n",
      "          'slight': 1,\n",
      "          'shootings': 1,\n",
      "          'taken': 1,\n",
      "          'know': 1,\n",
      "          'ndeniro': 1,\n",
      "          'finest': 1,\n",
      "          'work': 1,\n",
      "          'since': 1,\n",
      "          'king': 1,\n",
      "          'giving': 1,\n",
      "          'somewhat': 1,\n",
      "          'similar': 1,\n",
      "          'performance': 1,\n",
      "          'role': 1,\n",
      "          'goodfellas': 1,\n",
      "          'bit': 1,\n",
      "          'lighter': 1,\n",
      "          'heart': 1,\n",
      "          'n': 1,\n",
      "          'scene': 1,\n",
      "          'tries': 1,\n",
      "          'display': 1,\n",
      "          'anger': 1,\n",
      "          'phone': 1,\n",
      "          'fails': 1,\n",
      "          'miserably': 1,\n",
      "          'hilarious': 1,\n",
      "          'ncrystal': 1,\n",
      "          'plays': 1,\n",
      "          'excellent': 1,\n",
      "          'straight': 1,\n",
      "          'man': 1,\n",
      "          'uplifting': 1,\n",
      "          'bombs': 1,\n",
      "          'fathers': 1,\n",
      "          'day': 1,\n",
      "          'giant': 1,\n",
      "          'nkudrow': 1,\n",
      "          'hoot': 1,\n",
      "          'crystals': 1,\n",
      "          'wifetobe': 1,\n",
      "          'verge': 1,\n",
      "          'breakdown': 1,\n",
      "          'presence': 1,\n",
      "          'nis': 1,\n",
      "          'perfect': 1,\n",
      "          'nnot': 1,\n",
      "          'simplistic': 1,\n",
      "          'ending': 1,\n",
      "          'slightly': 1,\n",
      "          'wasted': 1,\n",
      "          'portrayed': 1,\n",
      "          'chazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'actor': 1,\n",
      "          'come': 1,\n",
      "          'give': 1,\n",
      "          'enjoyable': 1,\n",
      "          'lets': 1,\n",
      "          'different': 1,\n",
      "          'change': 1,\n",
      "          'taking': 1,\n",
      "          'act': 1,\n",
      "          'new': 1,\n",
      "          'field': 1,\n",
      "          'nkudos': 1,\n",
      "          'making': 1,\n",
      "          'show': 1,\n",
      "          'either': 1,\n",
      "          'nline': 1,\n",
      "          'said': 1,\n",
      "          'needed': 1,\n",
      "          'therapy': 1,\n",
      "          'mind': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'science': 12,\n",
      "          'nthe': 10,\n",
      "          'lillian': 8,\n",
      "          'film': 7,\n",
      "          'way': 7,\n",
      "          'dog': 7,\n",
      "          'work': 6,\n",
      "          'alex': 6,\n",
      "          'one': 6,\n",
      "          'like': 5,\n",
      "          'marriage': 5,\n",
      "          'world': 5,\n",
      "          'view': 5,\n",
      "          'point': 5,\n",
      "          'big': 4,\n",
      "          'get': 4,\n",
      "          'back': 4,\n",
      "          'time': 4,\n",
      "          'nthat': 4,\n",
      "          'monster': 4,\n",
      "          'much': 4,\n",
      "          'good': 4,\n",
      "          'farmer': 4,\n",
      "          'frances': 3,\n",
      "          'geoffrey': 3,\n",
      "          'become': 3,\n",
      "          'field': 3,\n",
      "          'wife': 3,\n",
      "          'business': 3,\n",
      "          'summer': 3,\n",
      "          'away': 3,\n",
      "          'new': 3,\n",
      "          'argument': 3,\n",
      "          'public': 3,\n",
      "          'animals': 3,\n",
      "          'bad': 3,\n",
      "          'represented': 3,\n",
      "          'go': 3,\n",
      "          'artists': 3,\n",
      "          'ngeoffrey': 3,\n",
      "          'characters': 3,\n",
      "          'scientists': 3,\n",
      "          'likened': 3,\n",
      "          'art': 3,\n",
      "          'say': 3,\n",
      "          'said': 3,\n",
      "          'going': 3,\n",
      "          'secrets': 2,\n",
      "          'married': 2,\n",
      "          'couple': 2,\n",
      "          'relationship': 2,\n",
      "          'working': 2,\n",
      "          'experiment': 2,\n",
      "          'artist': 2,\n",
      "          'husband': 2,\n",
      "          'make': 2,\n",
      "          'spent': 2,\n",
      "          'city': 2,\n",
      "          'together': 2,\n",
      "          'nhe': 2,\n",
      "          'possible': 2,\n",
      "          'lab': 2,\n",
      "          'experiments': 2,\n",
      "          'benefit': 2,\n",
      "          'humanity': 2,\n",
      "          'main': 2,\n",
      "          'dont': 2,\n",
      "          'want': 2,\n",
      "          'director': 2,\n",
      "          'cares': 2,\n",
      "          'small': 2,\n",
      "          'almost': 2,\n",
      "          'vine': 2,\n",
      "          'farmers': 2,\n",
      "          'farming': 2,\n",
      "          'dangers': 2,\n",
      "          'pesticides': 2,\n",
      "          'last': 2,\n",
      "          'points': 2,\n",
      "          'shown': 2,\n",
      "          'something': 2,\n",
      "          'feels': 2,\n",
      "          'needs': 2,\n",
      "          'decides': 2,\n",
      "          'longer': 2,\n",
      "          'animal': 2,\n",
      "          'means': 2,\n",
      "          'family': 2,\n",
      "          'life': 2,\n",
      "          'already': 2,\n",
      "          'dinner': 2,\n",
      "          'scene': 2,\n",
      "          'became': 2,\n",
      "          'everything': 2,\n",
      "          'different': 2,\n",
      "          'davids': 2,\n",
      "          'coming': 2,\n",
      "          'nit': 2,\n",
      "          'right': 2,\n",
      "          'name': 2,\n",
      "          'inspiration': 2,\n",
      "          'lot': 2,\n",
      "          'seem': 2,\n",
      "          'take': 2,\n",
      "          'enemy': 2,\n",
      "          'see': 2,\n",
      "          'becomes': 2,\n",
      "          'would': 2,\n",
      "          'also': 2,\n",
      "          'fails': 2,\n",
      "          'loving': 2,\n",
      "          'head': 2,\n",
      "          'told': 2,\n",
      "          'nwhat': 2,\n",
      "          'vision': 2,\n",
      "          'mankind': 2,\n",
      "          'subtle': 2,\n",
      "          'without': 2,\n",
      "          'visual': 2,\n",
      "          'anyone': 2,\n",
      "          'must': 2,\n",
      "          'nperhaps': 2,\n",
      "          'cow': 2,\n",
      "          'painting': 2,\n",
      "          'faces': 2,\n",
      "          'pain': 2,\n",
      "          'question': 2,\n",
      "          'innocent': 1,\n",
      "          'cute': 1,\n",
      "          'little': 1,\n",
      "          'farm': 1,\n",
      "          'girl': 1,\n",
      "          'boyd': 1,\n",
      "          'ashley': 1,\n",
      "          'nothers': 1,\n",
      "          'impacting': 1,\n",
      "          'problems': 1,\n",
      "          'infertility': 1,\n",
      "          'affecting': 1,\n",
      "          'upwardly': 1,\n",
      "          'mobile': 1,\n",
      "          'gaines': 1,\n",
      "          'stephen': 1,\n",
      "          'ramsey': 1,\n",
      "          'medical': 1,\n",
      "          'researcher': 1,\n",
      "          'corporation': 1,\n",
      "          'called': 1,\n",
      "          'fex': 1,\n",
      "          'striving': 1,\n",
      "          'patent': 1,\n",
      "          'recognized': 1,\n",
      "          'miriam': 1,\n",
      "          'healylouie': 1,\n",
      "          'reluctantly': 1,\n",
      "          'stands': 1,\n",
      "          'behind': 1,\n",
      "          'suppressing': 1,\n",
      "          'natural': 1,\n",
      "          'artistic': 1,\n",
      "          'tendencies': 1,\n",
      "          'order': 1,\n",
      "          'nand': 1,\n",
      "          'still': 1,\n",
      "          'greater': 1,\n",
      "          'implication': 1,\n",
      "          'deadly': 1,\n",
      "          'political': 1,\n",
      "          'sense': 1,\n",
      "          'carried': 1,\n",
      "          'corporations': 1,\n",
      "          'run': 1,\n",
      "          'bottom': 1,\n",
      "          'line': 1,\n",
      "          'nreceiving': 1,\n",
      "          'grant': 1,\n",
      "          'study': 1,\n",
      "          'chemoelectric': 1,\n",
      "          'therapy': 1,\n",
      "          'hoping': 1,\n",
      "          'intensity': 1,\n",
      "          'bring': 1,\n",
      "          'romance': 1,\n",
      "          'dwindling': 1,\n",
      "          'casualness': 1,\n",
      "          'country': 1,\n",
      "          'atmosphere': 1,\n",
      "          'give': 1,\n",
      "          'threeyear': 1,\n",
      "          'shaky': 1,\n",
      "          'interested': 1,\n",
      "          'slyly': 1,\n",
      "          'managed': 1,\n",
      "          'keep': 1,\n",
      "          'secretive': 1,\n",
      "          'locking': 1,\n",
      "          'limits': 1,\n",
      "          'secretly': 1,\n",
      "          'goes': 1,\n",
      "          'conducting': 1,\n",
      "          'rats': 1,\n",
      "          'mice': 1,\n",
      "          'convincing': 1,\n",
      "          'treatments': 1,\n",
      "          'cures': 1,\n",
      "          'illnesses': 1,\n",
      "          'nhis': 1,\n",
      "          'wants': 1,\n",
      "          'hear': 1,\n",
      "          'die': 1,\n",
      "          'benefits': 1,\n",
      "          'depicted': 1,\n",
      "          'creating': 1,\n",
      "          'another': 1,\n",
      "          'frankenstein': 1,\n",
      "          'created': 1,\n",
      "          'skewed': 1,\n",
      "          'opposed': 1,\n",
      "          'handsome': 1,\n",
      "          'perfect': 1,\n",
      "          'gentleman': 1,\n",
      "          'david': 1,\n",
      "          'young': 1,\n",
      "          'ecologist': 1,\n",
      "          'chooses': 1,\n",
      "          'trying': 1,\n",
      "          'organic': 1,\n",
      "          'hired': 1,\n",
      "          'university': 1,\n",
      "          'monitor': 1,\n",
      "          'chemicals': 1,\n",
      "          'forced': 1,\n",
      "          'use': 1,\n",
      "          'survive': 1,\n",
      "          'financially': 1,\n",
      "          'irreparable': 1,\n",
      "          'harm': 1,\n",
      "          'consumer': 1,\n",
      "          'health': 1,\n",
      "          'risks': 1,\n",
      "          'attached': 1,\n",
      "          'methods': 1,\n",
      "          'come': 1,\n",
      "          'thirty': 1,\n",
      "          'years': 1,\n",
      "          'pushed': 1,\n",
      "          'companies': 1,\n",
      "          'enhance': 1,\n",
      "          'profit': 1,\n",
      "          'margins': 1,\n",
      "          'third': 1,\n",
      "          'scrutinized': 1,\n",
      "          'constantly': 1,\n",
      "          'shouldnt': 1,\n",
      "          'true': 1,\n",
      "          'scientist': 1,\n",
      "          'nshe': 1,\n",
      "          'argues': 1,\n",
      "          'watchdog': 1,\n",
      "          'questioning': 1,\n",
      "          'evil': 1,\n",
      "          'society': 1,\n",
      "          'completely': 1,\n",
      "          'ignored': 1,\n",
      "          'impatient': 1,\n",
      "          'ahead': 1,\n",
      "          'research': 1,\n",
      "          'bogged': 1,\n",
      "          'bureaucrats': 1,\n",
      "          'firm': 1,\n",
      "          'fail': 1,\n",
      "          'provide': 1,\n",
      "          'three': 1,\n",
      "          'chimps': 1,\n",
      "          'contacts': 1,\n",
      "          'companys': 1,\n",
      "          'higher': 1,\n",
      "          'ups': 1,\n",
      "          'argue': 1,\n",
      "          'case': 1,\n",
      "          'cant': 1,\n",
      "          'wait': 1,\n",
      "          'help': 1,\n",
      "          'sets': 1,\n",
      "          'trap': 1,\n",
      "          'countryside': 1,\n",
      "          'catches': 1,\n",
      "          'chester': 1,\n",
      "          'gorgeous': 1,\n",
      "          'pet': 1,\n",
      "          'saved': 1,\n",
      "          'nwhile': 1,\n",
      "          'bloodied': 1,\n",
      "          'trapped': 1,\n",
      "          'seat': 1,\n",
      "          'car': 1,\n",
      "          'spotted': 1,\n",
      "          'coworkers': 1,\n",
      "          'nervously': 1,\n",
      "          'invites': 1,\n",
      "          'afraid': 1,\n",
      "          'spot': 1,\n",
      "          'rushes': 1,\n",
      "          'area': 1,\n",
      "          'nin': 1,\n",
      "          'unfortunately': 1,\n",
      "          'flatly': 1,\n",
      "          'done': 1,\n",
      "          'nevertheless': 1,\n",
      "          'heart': 1,\n",
      "          'chance': 1,\n",
      "          'speak': 1,\n",
      "          'represent': 1,\n",
      "          'eat': 1,\n",
      "          'meat': 1,\n",
      "          'getting': 1,\n",
      "          'protein': 1,\n",
      "          'radical': 1,\n",
      "          'eschewed': 1,\n",
      "          'since': 1,\n",
      "          'politically': 1,\n",
      "          'correct': 1,\n",
      "          'engage': 1,\n",
      "          'rational': 1,\n",
      "          'highlighting': 1,\n",
      "          'reacts': 1,\n",
      "          'emotional': 1,\n",
      "          'siding': 1,\n",
      "          'mostly': 1,\n",
      "          'angle': 1,\n",
      "          'actors': 1,\n",
      "          'puppets': 1,\n",
      "          'strings': 1,\n",
      "          'controlled': 1,\n",
      "          'spewed': 1,\n",
      "          'generalized': 1,\n",
      "          'philosophies': 1,\n",
      "          'directors': 1,\n",
      "          'absolutely': 1,\n",
      "          'beside': 1,\n",
      "          'lost': 1,\n",
      "          'onedimensional': 1,\n",
      "          'hideous': 1,\n",
      "          'holds': 1,\n",
      "          'fast': 1,\n",
      "          'ground': 1,\n",
      "          'ensuring': 1,\n",
      "          'plant': 1,\n",
      "          'stability': 1,\n",
      "          'muse': 1,\n",
      "          'poetry': 1,\n",
      "          'goodness': 1,\n",
      "          'beauty': 1,\n",
      "          'nalex': 1,\n",
      "          'spending': 1,\n",
      "          'two': 1,\n",
      "          'share': 1,\n",
      "          'views': 1,\n",
      "          'physically': 1,\n",
      "          'attracted': 1,\n",
      "          'ripe': 1,\n",
      "          'affair': 1,\n",
      "          'place': 1,\n",
      "          'changes': 1,\n",
      "          'mind': 1,\n",
      "          'alexs': 1,\n",
      "          'apartment': 1,\n",
      "          'suspicious': 1,\n",
      "          'considers': 1,\n",
      "          'seems': 1,\n",
      "          'apart': 1,\n",
      "          'cunning': 1,\n",
      "          'tricks': 1,\n",
      "          'possess': 1,\n",
      "          'impossible': 1,\n",
      "          'reason': 1,\n",
      "          'remain': 1,\n",
      "          'disintegrated': 1,\n",
      "          'beyond': 1,\n",
      "          'feeling': 1,\n",
      "          'lonely': 1,\n",
      "          'discovered': 1,\n",
      "          'deplorable': 1,\n",
      "          'state': 1,\n",
      "          'seen': 1,\n",
      "          'electrically': 1,\n",
      "          'shocking': 1,\n",
      "          'mercifully': 1,\n",
      "          'dies': 1,\n",
      "          'thing': 1,\n",
      "          'left': 1,\n",
      "          'walk': 1,\n",
      "          'respond': 1,\n",
      "          'gesture': 1,\n",
      "          'stay': 1,\n",
      "          'instead': 1,\n",
      "          'opting': 1,\n",
      "          'whose': 1,\n",
      "          'tortured': 1,\n",
      "          'death': 1,\n",
      "          'comes': 1,\n",
      "          'knocks': 1,\n",
      "          'cold': 1,\n",
      "          'middle': 1,\n",
      "          'phone': 1,\n",
      "          'conversation': 1,\n",
      "          'higherups': 1,\n",
      "          'progress': 1,\n",
      "          'expect': 1,\n",
      "          'nis': 1,\n",
      "          'extinct': 1,\n",
      "          'answers': 1,\n",
      "          'questions': 1,\n",
      "          'best': 1,\n",
      "          'answered': 1,\n",
      "          'either': 1,\n",
      "          'closely': 1,\n",
      "          'related': 1,\n",
      "          'american': 1,\n",
      "          'natives': 1,\n",
      "          'entrusted': 1,\n",
      "          'respect': 1,\n",
      "          'care': 1,\n",
      "          'enrich': 1,\n",
      "          'creations': 1,\n",
      "          'peaceful': 1,\n",
      "          'polarizes': 1,\n",
      "          'opinions': 1,\n",
      "          'leaving': 1,\n",
      "          'room': 1,\n",
      "          'deeper': 1,\n",
      "          'arguments': 1,\n",
      "          'shame': 1,\n",
      "          'decent': 1,\n",
      "          'smart': 1,\n",
      "          'tried': 1,\n",
      "          'hard': 1,\n",
      "          'felt': 1,\n",
      "          'loudly': 1,\n",
      "          'trusting': 1,\n",
      "          'audience': 1,\n",
      "          'catch': 1,\n",
      "          'message': 1,\n",
      "          'making': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'nno': 1,\n",
      "          'telling': 1,\n",
      "          'harmful': 1,\n",
      "          'trends': 1,\n",
      "          'sees': 1,\n",
      "          'probably': 1,\n",
      "          'better': 1,\n",
      "          'poetical': 1,\n",
      "          'less': 1,\n",
      "          'didactic': 1,\n",
      "          'nthere': 1,\n",
      "          'listening': 1,\n",
      "          'lecture': 1,\n",
      "          'turns': 1,\n",
      "          'rebel': 1,\n",
      "          'hit': 1,\n",
      "          'truth': 1,\n",
      "          'prefer': 1,\n",
      "          'presented': 1,\n",
      "          'form': 1,\n",
      "          'leads': 1,\n",
      "          'metaphorically': 1,\n",
      "          'found': 1,\n",
      "          'considerable': 1,\n",
      "          'merit': 1,\n",
      "          'inspite': 1,\n",
      "          'shortcomings': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'statements': 1,\n",
      "          'though': 1,\n",
      "          'least': 1,\n",
      "          'effective': 1,\n",
      "          'setting': 1,\n",
      "          'intense': 1,\n",
      "          'mood': 1,\n",
      "          'needed': 1,\n",
      "          'show': 1,\n",
      "          'mental': 1,\n",
      "          'war': 1,\n",
      "          'currently': 1,\n",
      "          'believe': 1,\n",
      "          'others': 1,\n",
      "          'differ': 1,\n",
      "          'neutral': 1,\n",
      "          'considered': 1,\n",
      "          'indifference': 1,\n",
      "          'stakes': 1,\n",
      "          'ecological': 1,\n",
      "          'struggle': 1,\n",
      "          'high': 1,\n",
      "          'powerful': 1,\n",
      "          'statement': 1,\n",
      "          'dead': 1,\n",
      "          'opening': 1,\n",
      "          'image': 1,\n",
      "          'affect': 1,\n",
      "          'picassos': 1,\n",
      "          'guernica': 1,\n",
      "          'nboth': 1,\n",
      "          'envisioned': 1,\n",
      "          'horrors': 1,\n",
      "          'man': 1,\n",
      "          'could': 1,\n",
      "          'unspoken': 1,\n",
      "          'really': 1,\n",
      "          'mistake': 1,\n",
      "          'side': 1,\n",
      "          'fence': 1,\n",
      "          'forgets': 1,\n",
      "          'desires': 1,\n",
      "          'raise': 1,\n",
      "          'stares': 1,\n",
      "          'song': 1,\n",
      "          'blares': 1,\n",
      "          'background': 1,\n",
      "          'learned': 1,\n",
      "          'beautiful': 1,\n",
      "          'brutalized': 1,\n",
      "          'raw': 1,\n",
      "          'power': 1,\n",
      "          'personalizes': 1,\n",
      "          'pertinent': 1,\n",
      "          'asks': 1,\n",
      "          'requires': 1,\n",
      "          'answer': 1,\n",
      "          'resolved': 1,\n",
      "          'consumers': 1,\n",
      "          'caught': 1,\n",
      "          'changing': 1,\n",
      "          'happily': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'gets': 3,\n",
      "          'follows': 2,\n",
      "          'heroin': 2,\n",
      "          'renton': 2,\n",
      "          'one': 2,\n",
      "          'obsessive': 2,\n",
      "          'top': 2,\n",
      "          'clean': 2,\n",
      "          'sharp': 2,\n",
      "          'nthe': 2,\n",
      "          'movies': 2,\n",
      "          'nit': 2,\n",
      "          'accents': 2,\n",
      "          'british': 1,\n",
      "          'import': 1,\n",
      "          'mis': 1,\n",
      "          'adventures': 1,\n",
      "          'group': 1,\n",
      "          'crazed': 1,\n",
      "          'scottish': 1,\n",
      "          'youths': 1,\n",
      "          'nthere': 1,\n",
      "          'marc': 1,\n",
      "          'narrates': 1,\n",
      "          'spud': 1,\n",
      "          'dimwitted': 1,\n",
      "          'sick': 1,\n",
      "          'boy': 1,\n",
      "          'sean': 1,\n",
      "          'connery': 1,\n",
      "          'begbee': 1,\n",
      "          'violence': 1,\n",
      "          'npowered': 1,\n",
      "          'rate': 1,\n",
      "          'name': 1,\n",
      "          'soundtrack': 1,\n",
      "          'iggy': 1,\n",
      "          'pop': 1,\n",
      "          'sleeper': 1,\n",
      "          'elastica': 1,\n",
      "          'lou': 1,\n",
      "          'reed': 1,\n",
      "          'back': 1,\n",
      "          'nsome': 1,\n",
      "          'wit': 1,\n",
      "          'movie': 1,\n",
      "          'pulp': 1,\n",
      "          'fictionesque': 1,\n",
      "          'dumb': 1,\n",
      "          'dumber': 1,\n",
      "          'gross': 1,\n",
      "          'bed': 1,\n",
      "          'sheets': 1,\n",
      "          'stupid': 1,\n",
      "          'bb': 1,\n",
      "          'gun': 1,\n",
      "          'although': 1,\n",
      "          'starts': 1,\n",
      "          'comic': 1,\n",
      "          'note': 1,\n",
      "          'takes': 1,\n",
      "          'term': 1,\n",
      "          'middle': 1,\n",
      "          'becomes': 1,\n",
      "          'almost': 1,\n",
      "          'depressing': 1,\n",
      "          'based': 1,\n",
      "          'irving': 1,\n",
      "          'welsh': 1,\n",
      "          'novel': 1,\n",
      "          'bearing': 1,\n",
      "          'title': 1,\n",
      "          'ni': 1,\n",
      "          'honestly': 1,\n",
      "          'say': 1,\n",
      "          'best': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'obscure': 1,\n",
      "          'gem': 1,\n",
      "          'shadowed': 1,\n",
      "          'us': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'id4': 1,\n",
      "          'hard': 1,\n",
      "          'follow': 1,\n",
      "          'heavy': 1,\n",
      "          'actors': 1,\n",
      "          'nthis': 1,\n",
      "          'original': 1,\n",
      "          'far': 1,\n",
      "          'films': 1,\n",
      "          'go': 1,\n",
      "          'today': 1,\n",
      "          'definetly': 1,\n",
      "          'deserves': 1,\n",
      "          'multiple': 1,\n",
      "          'viewings': 1,\n",
      "          'partly': 1,\n",
      "          'slang': 1,\n",
      "          'jeremy': 1,\n",
      "          'dennison': 1,\n",
      "          'mr': 1,\n",
      "          'orangecenturyinter': 1,\n",
      "          'net': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'lucas': 13,\n",
      "          'maggie': 10,\n",
      "          'cappie': 6,\n",
      "          'scene': 5,\n",
      "          'nlucas': 4,\n",
      "          'nthis': 4,\n",
      "          'jocks': 4,\n",
      "          'haim': 3,\n",
      "          'little': 3,\n",
      "          'insects': 3,\n",
      "          'films': 3,\n",
      "          '80s': 3,\n",
      "          'film': 3,\n",
      "          'nmaggie': 3,\n",
      "          'seems': 3,\n",
      "          'good': 3,\n",
      "          'nhe': 3,\n",
      "          'school': 3,\n",
      "          'whats': 3,\n",
      "          'around': 3,\n",
      "          'great': 3,\n",
      "          'girlfriend': 3,\n",
      "          'much': 2,\n",
      "          'stars': 2,\n",
      "          'corey': 2,\n",
      "          'maybe': 2,\n",
      "          'almost': 2,\n",
      "          'teen': 2,\n",
      "          'true': 2,\n",
      "          'best': 2,\n",
      "          '1986': 2,\n",
      "          'life': 2,\n",
      "          'year': 2,\n",
      "          'old': 2,\n",
      "          'hair': 2,\n",
      "          'tennis': 2,\n",
      "          'certainly': 2,\n",
      "          'sweet': 2,\n",
      "          'soon': 2,\n",
      "          'know': 2,\n",
      "          'one': 2,\n",
      "          'another': 2,\n",
      "          'nthey': 2,\n",
      "          'charmed': 2,\n",
      "          'clear': 2,\n",
      "          'anything': 2,\n",
      "          'friend': 2,\n",
      "          'still': 2,\n",
      "          'knows': 2,\n",
      "          'happen': 2,\n",
      "          'find': 2,\n",
      "          'pep': 2,\n",
      "          'rally': 2,\n",
      "          'front': 2,\n",
      "          'nthe': 2,\n",
      "          'next': 2,\n",
      "          'nshe': 2,\n",
      "          'tries': 2,\n",
      "          'talk': 2,\n",
      "          'characters': 2,\n",
      "          'nbut': 2,\n",
      "          'say': 2,\n",
      "          'sheen': 2,\n",
      "          'protects': 2,\n",
      "          'begins': 2,\n",
      "          'room': 2,\n",
      "          'take': 2,\n",
      "          'last': 2,\n",
      "          'nthere': 2,\n",
      "          'perfect': 2,\n",
      "          'filled': 2,\n",
      "          'people': 2,\n",
      "          'john': 2,\n",
      "          'hughes': 2,\n",
      "          'may': 1,\n",
      "          'heard': 1,\n",
      "          'might': 1,\n",
      "          'think': 1,\n",
      "          'nprobably': 1,\n",
      "          'geek': 1,\n",
      "          'collects': 1,\n",
      "          'doesnt': 1,\n",
      "          'feature': 1,\n",
      "          'slick': 1,\n",
      "          'oneliners': 1,\n",
      "          'chart': 1,\n",
      "          'topping': 1,\n",
      "          'soundtrack': 1,\n",
      "          'albums': 1,\n",
      "          'requirement': 1,\n",
      "          'nhowever': 1,\n",
      "          'missing': 1,\n",
      "          'masterpeice': 1,\n",
      "          'adolescent': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'ncorey': 1,\n",
      "          'bligh': 1,\n",
      "          'tiny': 1,\n",
      "          '14': 1,\n",
      "          'scruffy': 1,\n",
      "          'thick': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'glasses': 1,\n",
      "          'interest': 1,\n",
      "          'outdoor': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'stops': 1,\n",
      "          'courts': 1,\n",
      "          'sees': 1,\n",
      "          'must': 1,\n",
      "          'angel': 1,\n",
      "          'nher': 1,\n",
      "          'name': 1,\n",
      "          '16': 1,\n",
      "          'beauty': 1,\n",
      "          'lovely': 1,\n",
      "          'red': 1,\n",
      "          'innocent': 1,\n",
      "          'complexion': 1,\n",
      "          'disturbed': 1,\n",
      "          'kid': 1,\n",
      "          'watching': 1,\n",
      "          'somehow': 1,\n",
      "          'interests': 1,\n",
      "          'talking': 1,\n",
      "          'getting': 1,\n",
      "          'gradually': 1,\n",
      "          'become': 1,\n",
      "          'friends': 1,\n",
      "          'spend': 1,\n",
      "          'summer': 1,\n",
      "          'together': 1,\n",
      "          'various': 1,\n",
      "          'things': 1,\n",
      "          'studying': 1,\n",
      "          'namely': 1,\n",
      "          'locusts': 1,\n",
      "          'come': 1,\n",
      "          'hiding': 1,\n",
      "          'every': 1,\n",
      "          '17': 1,\n",
      "          'years': 1,\n",
      "          'playing': 1,\n",
      "          'listening': 1,\n",
      "          'symphony': 1,\n",
      "          'orchestra': 1,\n",
      "          'manhole': 1,\n",
      "          'cover': 1,\n",
      "          'obviously': 1,\n",
      "          'love': 1,\n",
      "          'would': 1,\n",
      "          'never': 1,\n",
      "          'consider': 1,\n",
      "          'however': 1,\n",
      "          'beleives': 1,\n",
      "          'soulmate': 1,\n",
      "          'dreads': 1,\n",
      "          'impending': 1,\n",
      "          'start': 1,\n",
      "          'nwe': 1,\n",
      "          'painful': 1,\n",
      "          'humiliated': 1,\n",
      "          'throw': 1,\n",
      "          'stage': 1,\n",
      "          'right': 1,\n",
      "          'beloved': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'turns': 1,\n",
      "          'tables': 1,\n",
      "          'clowning': 1,\n",
      "          'takes': 1,\n",
      "          'far': 1,\n",
      "          'embarassed': 1,\n",
      "          'entire': 1,\n",
      "          'brilliant': 1,\n",
      "          'follows': 1,\n",
      "          'outside': 1,\n",
      "          'nothing': 1,\n",
      "          'happened': 1,\n",
      "          'rails': 1,\n",
      "          'back': 1,\n",
      "          'cruel': 1,\n",
      "          'unfair': 1,\n",
      "          'fashion': 1,\n",
      "          'nin': 1,\n",
      "          'lesser': 1,\n",
      "          'movies': 1,\n",
      "          'wouldve': 1,\n",
      "          'turned': 1,\n",
      "          'confrontation': 1,\n",
      "          'two': 1,\n",
      "          'written': 1,\n",
      "          'smarter': 1,\n",
      "          'understands': 1,\n",
      "          'feeling': 1,\n",
      "          'exactly': 1,\n",
      "          'console': 1,\n",
      "          'nnext': 1,\n",
      "          'introduced': 1,\n",
      "          'character': 1,\n",
      "          'named': 1,\n",
      "          'charlie': 1,\n",
      "          'jock': 1,\n",
      "          'typical': 1,\n",
      "          'cheerleader': 1,\n",
      "          'nwhats': 1,\n",
      "          'interesting': 1,\n",
      "          'sticks': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'anyone': 1,\n",
      "          'brain': 1,\n",
      "          'tell': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'ncappie': 1,\n",
      "          'cause': 1,\n",
      "          'conflict': 1,\n",
      "          'relationship': 1,\n",
      "          'classic': 1,\n",
      "          'laundry': 1,\n",
      "          'alone': 1,\n",
      "          'nshes': 1,\n",
      "          'assigned': 1,\n",
      "          'show': 1,\n",
      "          'operate': 1,\n",
      "          'washerdryer': 1,\n",
      "          'clean': 1,\n",
      "          'shirt': 1,\n",
      "          'cappies': 1,\n",
      "          'tender': 1,\n",
      "          'undertsanding': 1,\n",
      "          'demeanor': 1,\n",
      "          'mention': 1,\n",
      "          'shirtless': 1,\n",
      "          'body': 1,\n",
      "          'delicate': 1,\n",
      "          'preventing': 1,\n",
      "          'either': 1,\n",
      "          'acting': 1,\n",
      "          'desires': 1,\n",
      "          'ndesperately': 1,\n",
      "          'trying': 1,\n",
      "          'puncture': 1,\n",
      "          'tension': 1,\n",
      "          'kick': 1,\n",
      "          'basketballs': 1,\n",
      "          'nits': 1,\n",
      "          'long': 1,\n",
      "          'break': 1,\n",
      "          'subpar': 1,\n",
      "          'finally': 1,\n",
      "          'figures': 1,\n",
      "          'going': 1,\n",
      "          'pick': 1,\n",
      "          'dance': 1,\n",
      "          'causes': 1,\n",
      "          'severe': 1,\n",
      "          'actions': 1,\n",
      "          'prove': 1,\n",
      "          'try': 1,\n",
      "          'football': 1,\n",
      "          'team': 1,\n",
      "          'third': 1,\n",
      "          'revolves': 1,\n",
      "          'attempt': 1,\n",
      "          'nwhile': 1,\n",
      "          'idea': 1,\n",
      "          'cliched': 1,\n",
      "          'way': 1,\n",
      "          'executed': 1,\n",
      "          'many': 1,\n",
      "          'surprises': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'lead': 1,\n",
      "          'ending': 1,\n",
      "          'emotionally': 1,\n",
      "          'involving': 1,\n",
      "          'make': 1,\n",
      "          'heartless': 1,\n",
      "          'cynics': 1,\n",
      "          'get': 1,\n",
      "          'choked': 1,\n",
      "          'ndave': 1,\n",
      "          'grusins': 1,\n",
      "          'memorable': 1,\n",
      "          'score': 1,\n",
      "          'played': 1,\n",
      "          'moments': 1,\n",
      "          'helps': 1,\n",
      "          'performances': 1,\n",
      "          'nforget': 1,\n",
      "          'everything': 1,\n",
      "          'nback': 1,\n",
      "          'talent': 1,\n",
      "          'proven': 1,\n",
      "          'delivers': 1,\n",
      "          'fully': 1,\n",
      "          '3dimensional': 1,\n",
      "          'performance': 1,\n",
      "          'anger': 1,\n",
      "          'humor': 1,\n",
      "          'pain': 1,\n",
      "          'nkerri': 1,\n",
      "          'green': 1,\n",
      "          'appealing': 1,\n",
      "          'showing': 1,\n",
      "          'us': 1,\n",
      "          'cares': 1,\n",
      "          'attracted': 1,\n",
      "          'nsheens': 1,\n",
      "          'makes': 1,\n",
      "          'beleivable': 1,\n",
      "          'especially': 1,\n",
      "          'explains': 1,\n",
      "          'reason': 1,\n",
      "          'wonderful': 1,\n",
      "          'minor': 1,\n",
      "          'ciro': 1,\n",
      "          'popittis': 1,\n",
      "          'ben': 1,\n",
      "          'whose': 1,\n",
      "          'diminutive': 1,\n",
      "          'stature': 1,\n",
      "          'mean': 1,\n",
      "          'crap': 1,\n",
      "          'nalso': 1,\n",
      "          'turning': 1,\n",
      "          'key': 1,\n",
      "          'scenes': 1,\n",
      "          'winona': 1,\n",
      "          'ryder': 1,\n",
      "          'rina': 1,\n",
      "          'girl': 1,\n",
      "          'admires': 1,\n",
      "          'afar': 1,\n",
      "          'nwhen': 1,\n",
      "          'angst': 1,\n",
      "          'hear': 1,\n",
      "          'lost': 1,\n",
      "          'among': 1,\n",
      "          'crowd': 1,\n",
      "          'socalled': 1,\n",
      "          'classics': 1,\n",
      "          'hopefully': 1,\n",
      "          'like': 1,\n",
      "          'heathers': 1,\n",
      "          'begin': 1,\n",
      "          'loyal': 1,\n",
      "          'following': 1,\n",
      "          'help': 1,\n",
      "          'realize': 1,\n",
      "          'anthony': 1,\n",
      "          'michael': 1,\n",
      "          'hall': 1,\n",
      "          'molly': 1,\n",
      "          'ringwald': 1,\n",
      "          'nit': 1,\n",
      "          'deserves': 1,\n",
      "          'dont': 1,\n",
      "          'want': 1,\n",
      "          'greedy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 4,\n",
      "          'force': 4,\n",
      "          'fact': 3,\n",
      "          'make': 3,\n",
      "          'movie': 2,\n",
      "          'george': 2,\n",
      "          'lucas': 2,\n",
      "          'bit': 2,\n",
      "          'nin': 2,\n",
      "          'terms': 2,\n",
      "          'far': 2,\n",
      "          'interesting': 2,\n",
      "          'queen': 2,\n",
      "          'amidala': 2,\n",
      "          'nshe': 2,\n",
      "          'leadership': 2,\n",
      "          'command': 2,\n",
      "          'jedi': 2,\n",
      "          'young': 2,\n",
      "          'obiwan': 2,\n",
      "          'bad': 2,\n",
      "          'hair': 2,\n",
      "          'better': 2,\n",
      "          'anakin': 2,\n",
      "          'skywalker': 2,\n",
      "          'claims': 2,\n",
      "          'arguably': 1,\n",
      "          'anticipated': 1,\n",
      "          'century': 1,\n",
      "          'achieved': 1,\n",
      "          'mixed': 1,\n",
      "          'reaction': 1,\n",
      "          'sure': 1,\n",
      "          'blockbuster': 1,\n",
      "          'ndespite': 1,\n",
      "          'script': 1,\n",
      "          'plot': 1,\n",
      "          'let': 1,\n",
      "          'entire': 1,\n",
      "          'whole': 1,\n",
      "          'considered': 1,\n",
      "          'milestone': 1,\n",
      "          'technical': 1,\n",
      "          'excellence': 1,\n",
      "          'sound': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'department': 1,\n",
      "          'characters': 1,\n",
      "          'outstanding': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'whose': 1,\n",
      "          'mature': 1,\n",
      "          'performance': 1,\n",
      "          'exceeds': 1,\n",
      "          'tender': 1,\n",
      "          '14': 1,\n",
      "          'years': 1,\n",
      "          'age': 1,\n",
      "          'hot': 1,\n",
      "          'babe': 1,\n",
      "          'defines': 1,\n",
      "          'true': 1,\n",
      "          'woman': 1,\n",
      "          'presence': 1,\n",
      "          'knows': 1,\n",
      "          'take': 1,\n",
      "          'situation': 1,\n",
      "          'save': 1,\n",
      "          'planet': 1,\n",
      "          'ruination': 1,\n",
      "          'nno': 1,\n",
      "          'thanks': 1,\n",
      "          'knights': 1,\n",
      "          'although': 1,\n",
      "          'led': 1,\n",
      "          'lack': 1,\n",
      "          'qualities': 1,\n",
      "          'thinking': 1,\n",
      "          'plan': 1,\n",
      "          'anything': 1,\n",
      "          'nthe': 1,\n",
      "          'kenobi': 1,\n",
      "          'ewan': 1,\n",
      "          'mcgregor': 1,\n",
      "          'day': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'gets': 1,\n",
      "          'kill': 1,\n",
      "          'guy': 1,\n",
      "          'end': 1,\n",
      "          'lacks': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'desirable': 1,\n",
      "          'sort': 1,\n",
      "          'hero': 1,\n",
      "          'knight': 1,\n",
      "          'asexual': 1,\n",
      "          'must': 1,\n",
      "          'something': 1,\n",
      "          'makes': 1,\n",
      "          'hermits': 1,\n",
      "          'loners': 1,\n",
      "          'ni': 1,\n",
      "          'mean': 1,\n",
      "          'would': 1,\n",
      "          'see': 1,\n",
      "          'yodas': 1,\n",
      "          'girlfriend': 1,\n",
      "          'change': 1,\n",
      "          'nnot': 1,\n",
      "          'much': 1,\n",
      "          'quigon': 1,\n",
      "          'jinn': 1,\n",
      "          'liam': 1,\n",
      "          'neeson': 1,\n",
      "          'mostly': 1,\n",
      "          'broods': 1,\n",
      "          'find': 1,\n",
      "          'biggest': 1,\n",
      "          'mistake': 1,\n",
      "          'life': 1,\n",
      "          'nalso': 1,\n",
      "          'fascinating': 1,\n",
      "          'metoclorian': 1,\n",
      "          'theory': 1,\n",
      "          'microorganisms': 1,\n",
      "          'live': 1,\n",
      "          'within': 1,\n",
      "          'cells': 1,\n",
      "          'tie': 1,\n",
      "          'us': 1,\n",
      "          'fabric': 1,\n",
      "          'universe': 1,\n",
      "          'nand': 1,\n",
      "          'high': 1,\n",
      "          'concentrations': 1,\n",
      "          'organisms': 1,\n",
      "          'individual': 1,\n",
      "          'particularly': 1,\n",
      "          'powerful': 1,\n",
      "          'nmore': 1,\n",
      "          'humerous': 1,\n",
      "          'immaculate': 1,\n",
      "          'conception': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'doubt': 1,\n",
      "          'concept': 1,\n",
      "          'stolen': 1,\n",
      "          'christian': 1,\n",
      "          'faith': 1,\n",
      "          'except': 1,\n",
      "          'christmas': 1,\n",
      "          'celebrate': 1,\n",
      "          'birth': 1,\n",
      "          'dark': 1,\n",
      "          'emissary': 1,\n",
      "          'noverall': 1,\n",
      "          'experience': 1,\n",
      "          'missed': 1,\n",
      "          'predecessor': 1,\n",
      "          'almost': 1,\n",
      "          'viewing': 1,\n",
      "          'inferior': 1,\n",
      "          'successor': 1,\n",
      "          'nby': 1,\n",
      "          'means': 1,\n",
      "          'pinnacle': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'phenomena': 1,\n",
      "          'adequate': 1,\n",
      "          'addition': 1,\n",
      "          'clan': 1,\n",
      "          'nwatch': 1,\n",
      "          'next': 1,\n",
      "          'steamy': 1,\n",
      "          'encounter': 1,\n",
      "          'believe': 1,\n",
      "          'portrayed': 1,\n",
      "          'leonardo': 1,\n",
      "          'di': 1,\n",
      "          'caprio': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'felix': 13,\n",
      "          'father': 6,\n",
      "          'journey': 6,\n",
      "          'find': 6,\n",
      "          'family': 6,\n",
      "          'nhe': 5,\n",
      "          'man': 4,\n",
      "          'adventures': 4,\n",
      "          'young': 4,\n",
      "          'road': 4,\n",
      "          'meets': 4,\n",
      "          'titled': 4,\n",
      "          'felixs': 4,\n",
      "          'life': 3,\n",
      "          'little': 3,\n",
      "          'job': 3,\n",
      "          'marseilles': 3,\n",
      "          'never': 3,\n",
      "          'makes': 3,\n",
      "          'way': 3,\n",
      "          'chapter': 3,\n",
      "          'sister': 3,\n",
      "          'sami': 2,\n",
      "          'bouajila': 2,\n",
      "          'daniel': 2,\n",
      "          'dieppe': 2,\n",
      "          'france': 2,\n",
      "          'nwhen': 2,\n",
      "          'south': 2,\n",
      "          'made': 2,\n",
      "          'guy': 2,\n",
      "          'nfelix': 2,\n",
      "          'learns': 2,\n",
      "          'away': 2,\n",
      "          'cocktails': 2,\n",
      "          'hiv': 2,\n",
      "          'wants': 2,\n",
      "          'across': 2,\n",
      "          'chance': 2,\n",
      "          'encounters': 2,\n",
      "          'non': 2,\n",
      "          'murder': 2,\n",
      "          'telling': 2,\n",
      "          'police': 2,\n",
      "          'first': 2,\n",
      "          'must': 2,\n",
      "          'next': 2,\n",
      "          'cousin': 2,\n",
      "          'helps': 2,\n",
      "          'isabelle': 2,\n",
      "          'ascaride': 2,\n",
      "          'kids': 2,\n",
      "          'different': 2,\n",
      "          'going': 2,\n",
      "          'final': 2,\n",
      "          'like': 2,\n",
      "          'n': 2,\n",
      "          'discovery': 2,\n",
      "          'charming': 2,\n",
      "          'screen': 2,\n",
      "          'siege': 1,\n",
      "          'lives': 1,\n",
      "          'contented': 1,\n",
      "          'boyfriend': 1,\n",
      "          'pierreloup': 1,\n",
      "          'rajot': 1,\n",
      "          'town': 1,\n",
      "          'northern': 1,\n",
      "          'laid': 1,\n",
      "          'discovering': 1,\n",
      "          'address': 1,\n",
      "          'abandoned': 1,\n",
      "          'born': 1,\n",
      "          'decides': 1,\n",
      "          'met': 1,\n",
      "          'nwritersdirectors': 1,\n",
      "          'olivier': 1,\n",
      "          'ducastel': 1,\n",
      "          'jacques': 1,\n",
      "          'martineau': 1,\n",
      "          'debut': 1,\n",
      "          'musical': 1,\n",
      "          'comedy': 1,\n",
      "          'jeanne': 1,\n",
      "          'perfect': 1,\n",
      "          'embracing': 1,\n",
      "          'typically': 1,\n",
      "          'american': 1,\n",
      "          'genre': 1,\n",
      "          'ntheir': 1,\n",
      "          'second': 1,\n",
      "          'effort': 1,\n",
      "          'borrows': 1,\n",
      "          'america': 1,\n",
      "          'tale': 1,\n",
      "          'hits': 1,\n",
      "          'happy': 1,\n",
      "          'ferry': 1,\n",
      "          'company': 1,\n",
      "          'works': 1,\n",
      "          'falls': 1,\n",
      "          'prey': 1,\n",
      "          'economics': 1,\n",
      "          'chunnel': 1,\n",
      "          'loose': 1,\n",
      "          'ends': 1,\n",
      "          'goes': 1,\n",
      "          'late': 1,\n",
      "          'mothers': 1,\n",
      "          'papers': 1,\n",
      "          'knew': 1,\n",
      "          'living': 1,\n",
      "          'hundreds': 1,\n",
      "          'miles': 1,\n",
      "          'snap': 1,\n",
      "          'decision': 1,\n",
      "          'puts': 1,\n",
      "          'together': 1,\n",
      "          'supply': 1,\n",
      "          'virus': 1,\n",
      "          'kisses': 1,\n",
      "          'goodbye': 1,\n",
      "          'heads': 1,\n",
      "          'foot': 1,\n",
      "          'refuses': 1,\n",
      "          'use': 1,\n",
      "          'trains': 1,\n",
      "          'avoid': 1,\n",
      "          'big': 1,\n",
      "          'cities': 1,\n",
      "          'hitchhikes': 1,\n",
      "          'destiny': 1,\n",
      "          'nalong': 1,\n",
      "          'series': 1,\n",
      "          'various': 1,\n",
      "          'strangers': 1,\n",
      "          'teaches': 1,\n",
      "          'always': 1,\n",
      "          'blood': 1,\n",
      "          'relations': 1,\n",
      "          'witnesses': 1,\n",
      "          'racerelated': 1,\n",
      "          'mugging': 1,\n",
      "          'turns': 1,\n",
      "          'frightened': 1,\n",
      "          'safety': 1,\n",
      "          'runs': 1,\n",
      "          'without': 1,\n",
      "          'nfollowing': 1,\n",
      "          'harrowing': 1,\n",
      "          'experience': 1,\n",
      "          'meeting': 1,\n",
      "          'begins': 1,\n",
      "          'unconscious': 1,\n",
      "          'construction': 1,\n",
      "          'ideal': 1,\n",
      "          'nhis': 1,\n",
      "          'brings': 1,\n",
      "          'rouen': 1,\n",
      "          'films': 1,\n",
      "          'title': 1,\n",
      "          'section': 1,\n",
      "          'brother': 1,\n",
      "          'jules': 1,\n",
      "          'art': 1,\n",
      "          'student': 1,\n",
      "          'becomes': 1,\n",
      "          'smitten': 1,\n",
      "          'nthey': 1,\n",
      "          'steal': 1,\n",
      "          'car': 1,\n",
      "          'develop': 1,\n",
      "          'chaste': 1,\n",
      "          'brotherly': 1,\n",
      "          'affection': 1,\n",
      "          'move': 1,\n",
      "          'elderly': 1,\n",
      "          'mathilde': 1,\n",
      "          'patachou': 1,\n",
      "          'grandmother': 1,\n",
      "          'soon': 1,\n",
      "          'fondness': 1,\n",
      "          'tv': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'grown': 1,\n",
      "          'addicted': 1,\n",
      "          'nshe': 1,\n",
      "          'stay': 1,\n",
      "          'continue': 1,\n",
      "          'nin': 1,\n",
      "          'weakest': 1,\n",
      "          'trip': 1,\n",
      "          'railroad': 1,\n",
      "          'worker': 1,\n",
      "          'philippe': 1,\n",
      "          'garziano': 1,\n",
      "          'brief': 1,\n",
      "          'sexual': 1,\n",
      "          'encounter': 1,\n",
      "          'heading': 1,\n",
      "          'toward': 1,\n",
      "          'stranded': 1,\n",
      "          'lady': 1,\n",
      "          'motorist': 1,\n",
      "          'ariane': 1,\n",
      "          'shags': 1,\n",
      "          'ride': 1,\n",
      "          'three': 1,\n",
      "          'daddy': 1,\n",
      "          'sequence': 1,\n",
      "          'torn': 1,\n",
      "          'inner': 1,\n",
      "          'turmoil': 1,\n",
      "          'witnessed': 1,\n",
      "          'comforts': 1,\n",
      "          'would': 1,\n",
      "          'leg': 1,\n",
      "          'older': 1,\n",
      "          'fisherman': 1,\n",
      "          'maurice': 1,\n",
      "          'benichou': 1,\n",
      "          'enlightens': 1,\n",
      "          'real': 1,\n",
      "          'facts': 1,\n",
      "          'fly': 1,\n",
      "          'kite': 1,\n",
      "          'son': 1,\n",
      "          'number': 1,\n",
      "          'things': 1,\n",
      "          'follow': 1,\n",
      "          'nfirst': 1,\n",
      "          'foremost': 1,\n",
      "          'performance': 1,\n",
      "          'likable': 1,\n",
      "          'fighting': 1,\n",
      "          'doses': 1,\n",
      "          'lights': 1,\n",
      "          'long': 1,\n",
      "          'walk': 1,\n",
      "          'often': 1,\n",
      "          'dance': 1,\n",
      "          'song': 1,\n",
      "          'nas': 1,\n",
      "          'member': 1,\n",
      "          'new': 1,\n",
      "          'promising': 1,\n",
      "          'send': 1,\n",
      "          'postcard': 1,\n",
      "          'arrives': 1,\n",
      "          'destination': 1,\n",
      "          'grows': 1,\n",
      "          'bit': 1,\n",
      "          'spiritually': 1,\n",
      "          'emotionally': 1,\n",
      "          'nbouajila': 1,\n",
      "          'terrific': 1,\n",
      "          'holding': 1,\n",
      "          'center': 1,\n",
      "          'stage': 1,\n",
      "          'nthe': 1,\n",
      "          'cast': 1,\n",
      "          'characters': 1,\n",
      "          'making': 1,\n",
      "          'newfound': 1,\n",
      "          'nearly': 1,\n",
      "          'star': 1,\n",
      "          'npatachou': 1,\n",
      "          'especially': 1,\n",
      "          'wonderful': 1,\n",
      "          'grandma': 1,\n",
      "          'character': 1,\n",
      "          'kindred': 1,\n",
      "          'spirit': 1,\n",
      "          'nariane': 1,\n",
      "          'along': 1,\n",
      "          'gives': 1,\n",
      "          'perf': 1,\n",
      "          'really': 1,\n",
      "          'think': 1,\n",
      "          'nonly': 1,\n",
      "          'lacks': 1,\n",
      "          'emotional': 1,\n",
      "          'depth': 1,\n",
      "          'rest': 1,\n",
      "          'feels': 1,\n",
      "          'perfunctory': 1,\n",
      "          'addition': 1,\n",
      "          'reinvent': 1,\n",
      "          'movie': 1,\n",
      "          'provide': 1,\n",
      "          'charismatic': 1,\n",
      "          'mans': 1,\n",
      "          'surprise': 1,\n",
      "          'dramatically': 1,\n",
      "          'expected': 1,\n",
      "          'beginning': 1,\n",
      "          'nit': 1,\n",
      "          'cinematographer': 1,\n",
      "          'matthieu': 1,\n",
      "          'poirotdelpechs': 1,\n",
      "          'crisp': 1,\n",
      "          'lensing': 1,\n",
      "          'compliments': 1,\n",
      "          'story': 1,\n",
      "          'perfectly': 1,\n",
      "          'moves': 1,\n",
      "          'french': 1,\n",
      "          'countryside': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'b': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'chicken': 14,\n",
      "          'run': 12,\n",
      "          'nthe': 9,\n",
      "          'movie': 8,\n",
      "          'seen': 7,\n",
      "          'chickens': 7,\n",
      "          'ive': 5,\n",
      "          'one': 5,\n",
      "          'film': 5,\n",
      "          'like': 4,\n",
      "          'voice': 4,\n",
      "          'films': 4,\n",
      "          'great': 4,\n",
      "          'doesnt': 4,\n",
      "          'idea': 4,\n",
      "          'parodies': 4,\n",
      "          'even': 4,\n",
      "          'funnest': 3,\n",
      "          'fun': 3,\n",
      "          'nbut': 3,\n",
      "          'something': 3,\n",
      "          'escape': 3,\n",
      "          'rocky': 3,\n",
      "          'mel': 3,\n",
      "          'gibson': 3,\n",
      "          'pies': 3,\n",
      "          'come': 3,\n",
      "          'park': 3,\n",
      "          'animation': 3,\n",
      "          'two': 3,\n",
      "          'story': 3,\n",
      "          'bit': 3,\n",
      "          'lord': 3,\n",
      "          'nothing': 3,\n",
      "          'characters': 3,\n",
      "          'theyre': 3,\n",
      "          'funny': 3,\n",
      "          'subtle': 3,\n",
      "          'way': 3,\n",
      "          'sequence': 3,\n",
      "          'got': 3,\n",
      "          'never': 3,\n",
      "          'isnt': 2,\n",
      "          'word': 2,\n",
      "          'n': 2,\n",
      "          'thats': 2,\n",
      "          'came': 2,\n",
      "          'ever': 2,\n",
      "          'movies': 2,\n",
      "          'last': 2,\n",
      "          'hen': 2,\n",
      "          'julia': 2,\n",
      "          'sawalha': 2,\n",
      "          'comes': 2,\n",
      "          'day': 2,\n",
      "          'none': 2,\n",
      "          'brash': 2,\n",
      "          'rooster': 2,\n",
      "          'famous': 2,\n",
      "          'situation': 2,\n",
      "          'tweedy': 2,\n",
      "          'plan': 2,\n",
      "          'nshe': 2,\n",
      "          'creature': 2,\n",
      "          'wrong': 2,\n",
      "          'trousers': 2,\n",
      "          'close': 2,\n",
      "          'shave': 2,\n",
      "          'starring': 2,\n",
      "          'delightful': 2,\n",
      "          'team': 2,\n",
      "          'wallace': 2,\n",
      "          'npart': 2,\n",
      "          'parks': 2,\n",
      "          'make': 2,\n",
      "          'old': 2,\n",
      "          'seem': 2,\n",
      "          'stories': 2,\n",
      "          'fresh': 2,\n",
      "          'inspired': 2,\n",
      "          'contrived': 2,\n",
      "          'lifted': 2,\n",
      "          'reference': 2,\n",
      "          'scene': 2,\n",
      "          'feel': 2,\n",
      "          'else': 2,\n",
      "          'done': 2,\n",
      "          'original': 2,\n",
      "          'npark': 2,\n",
      "          'references': 2,\n",
      "          'chase': 2,\n",
      "          'indiana': 2,\n",
      "          'jones': 2,\n",
      "          'jabs': 2,\n",
      "          'history': 2,\n",
      "          'catch': 2,\n",
      "          'parody': 2,\n",
      "          'year': 2,\n",
      "          'dozens': 2,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'offer': 2,\n",
      "          'nthey': 2,\n",
      "          'youve': 2,\n",
      "          'lively': 2,\n",
      "          'every': 2,\n",
      "          'inevitable': 2,\n",
      "          'rats': 2,\n",
      "          'nearly': 2,\n",
      "          'enjoy': 2,\n",
      "          'know': 1,\n",
      "          'noun': 1,\n",
      "          'therefore': 1,\n",
      "          'conjugated': 1,\n",
      "          'adjective': 1,\n",
      "          'right': 1,\n",
      "          'viewing': 1,\n",
      "          'nno': 1,\n",
      "          'wonder': 1,\n",
      "          'kind': 1,\n",
      "          'reduces': 1,\n",
      "          'childish': 1,\n",
      "          'expressions': 1,\n",
      "          'nso': 1,\n",
      "          'hell': 1,\n",
      "          'websters': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'time': 1,\n",
      "          'anything': 1,\n",
      "          'funner': 1,\n",
      "          'tweedys': 1,\n",
      "          'farm': 1,\n",
      "          'nliving': 1,\n",
      "          'concentration': 1,\n",
      "          'camplike': 1,\n",
      "          'atmosphere': 1,\n",
      "          'led': 1,\n",
      "          'plucky': 1,\n",
      "          'called': 1,\n",
      "          'ginger': 1,\n",
      "          'continually': 1,\n",
      "          'plans': 1,\n",
      "          'always': 1,\n",
      "          'gets': 1,\n",
      "          'caught': 1,\n",
      "          'subsequently': 1,\n",
      "          'spending': 1,\n",
      "          'coal': 1,\n",
      "          'box': 1,\n",
      "          'night': 1,\n",
      "          'american': 1,\n",
      "          'flies': 1,\n",
      "          'fence': 1,\n",
      "          'calling': 1,\n",
      "          'flying': 1,\n",
      "          'circus': 1,\n",
      "          'performer': 1,\n",
      "          'nrocky': 1,\n",
      "          'promises': 1,\n",
      "          'teach': 1,\n",
      "          'fly': 1,\n",
      "          'grows': 1,\n",
      "          'desperate': 1,\n",
      "          'nefarious': 1,\n",
      "          'mrs': 1,\n",
      "          'miranda': 1,\n",
      "          'richardson': 1,\n",
      "          'decides': 1,\n",
      "          'abandon': 1,\n",
      "          'farms': 1,\n",
      "          'eggselling': 1,\n",
      "          'pieselling': 1,\n",
      "          'orders': 1,\n",
      "          'huge': 1,\n",
      "          'piemaking': 1,\n",
      "          'machine': 1,\n",
      "          'cackling': 1,\n",
      "          'go': 1,\n",
      "          'nwhat': 1,\n",
      "          'sort': 1,\n",
      "          'nchicken': 1,\n",
      "          'course': 1,\n",
      "          'ncodirector': 1,\n",
      "          'nick': 1,\n",
      "          'studio': 1,\n",
      "          'aardman': 1,\n",
      "          'produced': 1,\n",
      "          'three': 1,\n",
      "          'oscarwinning': 1,\n",
      "          'short': 1,\n",
      "          'comforts': 1,\n",
      "          'latter': 1,\n",
      "          'second': 1,\n",
      "          'third': 1,\n",
      "          'installments': 1,\n",
      "          'trilogy': 1,\n",
      "          'gromit': 1,\n",
      "          'man': 1,\n",
      "          'dog': 1,\n",
      "          'getting': 1,\n",
      "          'increasingly': 1,\n",
      "          'peculiar': 1,\n",
      "          'adventures': 1,\n",
      "          'made': 1,\n",
      "          'brilliantly': 1,\n",
      "          'entertaining': 1,\n",
      "          'uncanny': 1,\n",
      "          'ability': 1,\n",
      "          'new': 1,\n",
      "          'example': 1,\n",
      "          'pulled': 1,\n",
      "          'lot': 1,\n",
      "          'hitchcockian': 1,\n",
      "          'suspense': 1,\n",
      "          'tricks': 1,\n",
      "          'owed': 1,\n",
      "          'deal': 1,\n",
      "          'inspiration': 1,\n",
      "          'classic': 1,\n",
      "          'detective': 1,\n",
      "          'hands': 1,\n",
      "          'felt': 1,\n",
      "          'least': 1,\n",
      "          'nnow': 1,\n",
      "          'teaming': 1,\n",
      "          'codirector': 1,\n",
      "          'peter': 1,\n",
      "          'created': 1,\n",
      "          'similar': 1,\n",
      "          'plot': 1,\n",
      "          'largely': 1,\n",
      "          'watch': 1,\n",
      "          'quick': 1,\n",
      "          'ballbouncing': 1,\n",
      "          'spielberginspired': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'providing': 1,\n",
      "          'excitement': 1,\n",
      "          'nthing': 1,\n",
      "          'somewhere': 1,\n",
      "          'feels': 1,\n",
      "          'alive': 1,\n",
      "          'world': 1,\n",
      "          'prisonersofwar': 1,\n",
      "          'milk': 1,\n",
      "          'incongruity': 1,\n",
      "          'worth': 1,\n",
      "          'treat': 1,\n",
      "          'dead': 1,\n",
      "          'serious': 1,\n",
      "          'us': 1,\n",
      "          'nanother': 1,\n",
      "          'thing': 1,\n",
      "          'helps': 1,\n",
      "          'succeed': 1,\n",
      "          'animators': 1,\n",
      "          'giving': 1,\n",
      "          'nods': 1,\n",
      "          'cribbing': 1,\n",
      "          'nthere': 1,\n",
      "          'obviously': 1,\n",
      "          'stalag': 1,\n",
      "          '17': 1,\n",
      "          'inside': 1,\n",
      "          'grinder': 1,\n",
      "          'raiders': 1,\n",
      "          'lost': 1,\n",
      "          'ark': 1,\n",
      "          'temple': 1,\n",
      "          'doom': 1,\n",
      "          'ntheres': 1,\n",
      "          'nod': 1,\n",
      "          'blues': 1,\n",
      "          'brothers': 1,\n",
      "          'believe': 1,\n",
      "          'filmmakers': 1,\n",
      "          'get': 1,\n",
      "          'little': 1,\n",
      "          'lighthearted': 1,\n",
      "          'ribbing': 1,\n",
      "          'expense': 1,\n",
      "          'star': 1,\n",
      "          'actor': 1,\n",
      "          'taking': 1,\n",
      "          'couple': 1,\n",
      "          'gibsons': 1,\n",
      "          'nationality': 1,\n",
      "          'braveheart': 1,\n",
      "          'hoot': 1,\n",
      "          'nwhen': 1,\n",
      "          'consider': 1,\n",
      "          'fine': 1,\n",
      "          'line': 1,\n",
      "          'resides': 1,\n",
      "          'redundant': 1,\n",
      "          'downright': 1,\n",
      "          'brilliant': 1,\n",
      "          'execution': 1,\n",
      "          'nconsider': 1,\n",
      "          'since': 1,\n",
      "          'july': 1,\n",
      "          'upon': 1,\n",
      "          'project': 1,\n",
      "          'television': 1,\n",
      "          'radio': 1,\n",
      "          'online': 1,\n",
      "          'nout': 1,\n",
      "          'maybe': 1,\n",
      "          'amusing': 1,\n",
      "          'rest': 1,\n",
      "          'tiresome': 1,\n",
      "          'nwhy': 1,\n",
      "          'nbecause': 1,\n",
      "          'past': 1,\n",
      "          'thought': 1,\n",
      "          'parodying': 1,\n",
      "          'insight': 1,\n",
      "          'greater': 1,\n",
      "          'purpose': 1,\n",
      "          'otherwise': 1,\n",
      "          'nconversely': 1,\n",
      "          'lean': 1,\n",
      "          'sole': 1,\n",
      "          'focus': 1,\n",
      "          'nif': 1,\n",
      "          'still': 1,\n",
      "          'neven': 1,\n",
      "          'remains': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'screenwriter': 1,\n",
      "          'karey': 1,\n",
      "          'kirkpatrick': 1,\n",
      "          'realize': 1,\n",
      "          'audience': 1,\n",
      "          'need': 1,\n",
      "          'shoved': 1,\n",
      "          'faces': 1,\n",
      "          'understood': 1,\n",
      "          'result': 1,\n",
      "          'filled': 1,\n",
      "          'visual': 1,\n",
      "          'verbal': 1,\n",
      "          'obvious': 1,\n",
      "          'quite': 1,\n",
      "          'vague': 1,\n",
      "          'either': 1,\n",
      "          'nenjoyment': 1,\n",
      "          'require': 1,\n",
      "          'knowledge': 1,\n",
      "          'much': 1,\n",
      "          'richer': 1,\n",
      "          'cast': 1,\n",
      "          'turns': 1,\n",
      "          'uniformly': 1,\n",
      "          'performances': 1,\n",
      "          'play': 1,\n",
      "          'given': 1,\n",
      "          'many': 1,\n",
      "          'nuances': 1,\n",
      "          'hard': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'nginger': 1,\n",
      "          'perfect': 1,\n",
      "          'spunky': 1,\n",
      "          'opinionated': 1,\n",
      "          'soft': 1,\n",
      "          'heart': 1,\n",
      "          'forbids': 1,\n",
      "          'leave': 1,\n",
      "          'companions': 1,\n",
      "          'behind': 1,\n",
      "          'known': 1,\n",
      "          'cute': 1,\n",
      "          'mousy': 1,\n",
      "          'girl': 1,\n",
      "          'absolutely': 1,\n",
      "          'fabulous': 1,\n",
      "          'nails': 1,\n",
      "          'warm': 1,\n",
      "          'human': 1,\n",
      "          'chemistry': 1,\n",
      "          'whose': 1,\n",
      "          'hides': 1,\n",
      "          'personal': 1,\n",
      "          'doubt': 1,\n",
      "          'gungho': 1,\n",
      "          'veneer': 1,\n",
      "          'romance': 1,\n",
      "          'sweet': 1,\n",
      "          'npoor': 1,\n",
      "          'mr': 1,\n",
      "          'tony': 1,\n",
      "          'haygarth': 1,\n",
      "          'suspects': 1,\n",
      "          'organizing': 1,\n",
      "          'limited': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'intellect': 1,\n",
      "          'prevents': 1,\n",
      "          'figuring': 1,\n",
      "          'things': 1,\n",
      "          'overbearing': 1,\n",
      "          'wife': 1,\n",
      "          'certainly': 1,\n",
      "          'help': 1,\n",
      "          'njane': 1,\n",
      "          'horrocks': 1,\n",
      "          'delivers': 1,\n",
      "          'lovely': 1,\n",
      "          'characterization': 1,\n",
      "          'tragically': 1,\n",
      "          'optimistic': 1,\n",
      "          'babs': 1,\n",
      "          'runs': 1,\n",
      "          'away': 1,\n",
      "          'best': 1,\n",
      "          'oneliners': 1,\n",
      "          'perpetually': 1,\n",
      "          'crocheting': 1,\n",
      "          'sweater': 1,\n",
      "          'supplytrading': 1,\n",
      "          'walked': 1,\n",
      "          'straight': 1,\n",
      "          'monty': 1,\n",
      "          'python': 1,\n",
      "          'sketch': 1,\n",
      "          'steal': 1,\n",
      "          'show': 1,\n",
      "          'central': 1,\n",
      "          'swingdancing': 1,\n",
      "          'riff': 1,\n",
      "          'baffled': 1,\n",
      "          'scholars': 1,\n",
      "          'theologians': 1,\n",
      "          'alike': 1,\n",
      "          'decades': 1,\n",
      "          'vs': 1,\n",
      "          'egg': 1,\n",
      "          'dilemma': 1,\n",
      "          'might': 1,\n",
      "          'expected': 1,\n",
      "          'joke': 1,\n",
      "          'wearisome': 1,\n",
      "          'surprise': 1,\n",
      "          'manages': 1,\n",
      "          'cross': 1,\n",
      "          'barriers': 1,\n",
      "          'accessible': 1,\n",
      "          'children': 1,\n",
      "          'adults': 1,\n",
      "          'brits': 1,\n",
      "          'yanks': 1,\n",
      "          'firstrate': 1,\n",
      "          'nremember': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'actual': 1,\n",
      "          'humans': 1,\n",
      "          'moving': 1,\n",
      "          'clay': 1,\n",
      "          'figurines': 1,\n",
      "          'around': 1,\n",
      "          'tiny': 1,\n",
      "          'set': 1,\n",
      "          'painstaking': 1,\n",
      "          'see': 1,\n",
      "          'truly': 1,\n",
      "          'remarkable': 1,\n",
      "          'really': 1,\n",
      "          'nthis': 1,\n",
      "          'possesses': 1,\n",
      "          'quality': 1,\n",
      "          'makes': 1,\n",
      "          'pixar': 1,\n",
      "          'studios': 1,\n",
      "          'precise': 1,\n",
      "          'unwavering': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'nas': 1,\n",
      "          'topnotch': 1,\n",
      "          'family': 1,\n",
      "          'fare': 1,\n",
      "          'bugs': 1,\n",
      "          'life': 1,\n",
      "          'toy': 1,\n",
      "          '2': 1,\n",
      "          'frame': 1,\n",
      "          'ncertainly': 1,\n",
      "          'passive': 1,\n",
      "          'viewer': 1,\n",
      "          'straightforward': 1,\n",
      "          'worthwhile': 1,\n",
      "          'moral': 1,\n",
      "          'surprisingly': 1,\n",
      "          'touching': 1,\n",
      "          'scenes': 1,\n",
      "          'active': 1,\n",
      "          'attentive': 1,\n",
      "          'viewers': 1,\n",
      "          'theyll': 1,\n",
      "          'details': 1,\n",
      "          'nanyway': 1,\n",
      "          'boatload': 1,\n",
      "          'nfunnest': 1,\n",
      "          'damn': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'moulin': 9,\n",
      "          'love': 8,\n",
      "          'n': 6,\n",
      "          'rogue': 6,\n",
      "          'satine': 5,\n",
      "          'one': 4,\n",
      "          'even': 4,\n",
      "          'like': 4,\n",
      "          'rouge': 3,\n",
      "          'see': 3,\n",
      "          'musical': 3,\n",
      "          'baz': 3,\n",
      "          'well': 3,\n",
      "          'christian': 3,\n",
      "          'duke': 3,\n",
      "          'nthe': 3,\n",
      "          'bit': 2,\n",
      "          'sounds': 2,\n",
      "          'simply': 2,\n",
      "          'film': 2,\n",
      "          'wait': 2,\n",
      "          'woman': 2,\n",
      "          'movie': 2,\n",
      "          'never': 2,\n",
      "          'story': 2,\n",
      "          'told': 2,\n",
      "          'completely': 2,\n",
      "          'song': 2,\n",
      "          'didnt': 2,\n",
      "          'director': 2,\n",
      "          'luhrmann': 2,\n",
      "          'man': 2,\n",
      "          'songs': 2,\n",
      "          'sound': 2,\n",
      "          'mcgregor': 2,\n",
      "          'bohemians': 2,\n",
      "          'toulouselautrec': 2,\n",
      "          'john': 2,\n",
      "          'nchristian': 2,\n",
      "          'nicole': 2,\n",
      "          'kidman': 2,\n",
      "          'world': 2,\n",
      "          'finds': 2,\n",
      "          'zidler': 2,\n",
      "          'jim': 2,\n",
      "          'broadbent': 2,\n",
      "          'spectacular': 2,\n",
      "          'richard': 2,\n",
      "          'roxburgh': 2,\n",
      "          'nas': 2,\n",
      "          'cough': 2,\n",
      "          'none': 2,\n",
      "          'moments': 2,\n",
      "          'overload': 2,\n",
      "          'times': 2,\n",
      "          'course': 2,\n",
      "          'always': 2,\n",
      "          'cast': 2,\n",
      "          'voice': 2,\n",
      "          'although': 2,\n",
      "          'films': 2,\n",
      "          'original': 2,\n",
      "          'press': 1,\n",
      "          'screening': 1,\n",
      "          'stood': 1,\n",
      "          'lobby': 1,\n",
      "          'theater': 1,\n",
      "          'listening': 1,\n",
      "          'reactions': 1,\n",
      "          'friends': 1,\n",
      "          'colleagues': 1,\n",
      "          'neveryone': 1,\n",
      "          'seemed': 1,\n",
      "          'numb': 1,\n",
      "          'understandable': 1,\n",
      "          'sitting': 1,\n",
      "          'barrage': 1,\n",
      "          'oftenincongruous': 1,\n",
      "          'images': 1,\n",
      "          'na': 1,\n",
      "          'pal': 1,\n",
      "          'mine': 1,\n",
      "          'said': 1,\n",
      "          'loved': 1,\n",
      "          'could': 1,\n",
      "          'hardly': 1,\n",
      "          'take': 1,\n",
      "          'wife': 1,\n",
      "          'nanother': 1,\n",
      "          'enthusiast': 1,\n",
      "          'immediately': 1,\n",
      "          'began': 1,\n",
      "          'analyze': 1,\n",
      "          'production': 1,\n",
      "          'flatout': 1,\n",
      "          'hated': 1,\n",
      "          'gave': 1,\n",
      "          'skunk': 1,\n",
      "          'eye': 1,\n",
      "          'nwhen': 1,\n",
      "          'fellow': 1,\n",
      "          'quietly': 1,\n",
      "          'stated': 1,\n",
      "          'ive': 1,\n",
      "          'really': 1,\n",
      "          'fan': 1,\n",
      "          'musicals': 1,\n",
      "          'statement': 1,\n",
      "          'surprised': 1,\n",
      "          'though': 1,\n",
      "          'almost': 1,\n",
      "          'think': 1,\n",
      "          'nthere': 1,\n",
      "          'much': 1,\n",
      "          'going': 1,\n",
      "          'seems': 1,\n",
      "          'small': 1,\n",
      "          'term': 1,\n",
      "          'cover': 1,\n",
      "          'kind': 1,\n",
      "          'creation': 1,\n",
      "          'sends': 1,\n",
      "          'critics': 1,\n",
      "          'scurrying': 1,\n",
      "          'big': 1,\n",
      "          'tub': 1,\n",
      "          'adjectives': 1,\n",
      "          'search': 1,\n",
      "          'proper': 1,\n",
      "          'words': 1,\n",
      "          'describe': 1,\n",
      "          'experience': 1,\n",
      "          'naustralian': 1,\n",
      "          'behind': 1,\n",
      "          'strictly': 1,\n",
      "          'ballroom': 1,\n",
      "          'romeo': 1,\n",
      "          'juliet': 1,\n",
      "          'fills': 1,\n",
      "          'heads': 1,\n",
      "          'viewers': 1,\n",
      "          'unique': 1,\n",
      "          'camerawork': 1,\n",
      "          'opulent': 1,\n",
      "          'imagery': 1,\n",
      "          'ranging': 1,\n",
      "          'music': 1,\n",
      "          'smells': 1,\n",
      "          'teen': 1,\n",
      "          'spirit': 1,\n",
      "          'nsumptuous': 1,\n",
      "          'beautiful': 1,\n",
      "          'vulgar': 1,\n",
      "          'overdone': 1,\n",
      "          'travels': 1,\n",
      "          'looking': 1,\n",
      "          'glass': 1,\n",
      "          'ethereal': 1,\n",
      "          'stereo': 1,\n",
      "          'loaded': 1,\n",
      "          '50': 1,\n",
      "          'years': 1,\n",
      "          'worth': 1,\n",
      "          'catchy': 1,\n",
      "          'tunes': 1,\n",
      "          'operates': 1,\n",
      "          'random': 1,\n",
      "          'setting': 1,\n",
      "          'noh': 1,\n",
      "          '1899': 1,\n",
      "          'summer': 1,\n",
      "          'ewan': 1,\n",
      "          'penniless': 1,\n",
      "          'young': 1,\n",
      "          'writer': 1,\n",
      "          'newly': 1,\n",
      "          'arrived': 1,\n",
      "          'paris': 1,\n",
      "          'write': 1,\n",
      "          'truth': 1,\n",
      "          'beauty': 1,\n",
      "          'freedom': 1,\n",
      "          'encounters': 1,\n",
      "          'group': 1,\n",
      "          'led': 1,\n",
      "          'henri': 1,\n",
      "          'de': 1,\n",
      "          'leguizamo': 1,\n",
      "          'meets': 1,\n",
      "          'courtesan': 1,\n",
      "          'legendary': 1,\n",
      "          'transforms': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'technicolor': 1,\n",
      "          'nat': 1,\n",
      "          'fragile': 1,\n",
      "          'vivacious': 1,\n",
      "          'dazzling': 1,\n",
      "          'redhaired': 1,\n",
      "          'sweeps': 1,\n",
      "          'feet': 1,\n",
      "          'without': 1,\n",
      "          'trying': 1,\n",
      "          'instantly': 1,\n",
      "          'falls': 1,\n",
      "          'smitten': 1,\n",
      "          'quite': 1,\n",
      "          'hindrance': 1,\n",
      "          'someone': 1,\n",
      "          'profession': 1,\n",
      "          'nworking': 1,\n",
      "          'impresario': 1,\n",
      "          'harold': 1,\n",
      "          'writes': 1,\n",
      "          'opus': 1,\n",
      "          'modestly': 1,\n",
      "          'named': 1,\n",
      "          'nzidler': 1,\n",
      "          'quickly': 1,\n",
      "          'backer': 1,\n",
      "          'wealthy': 1,\n",
      "          'monroth': 1,\n",
      "          'theres': 1,\n",
      "          'catch': 1,\n",
      "          'also': 1,\n",
      "          'wants': 1,\n",
      "          'hand': 1,\n",
      "          'fair': 1,\n",
      "          'isnt': 1,\n",
      "          'enough': 1,\n",
      "          'real': 1,\n",
      "          'probably': 1,\n",
      "          'indicates': 1,\n",
      "          'cold': 1,\n",
      "          'rarely': 1,\n",
      "          'turns': 1,\n",
      "          'anything': 1,\n",
      "          'simple': 1,\n",
      "          'land': 1,\n",
      "          'nlike': 1,\n",
      "          'teetertotter': 1,\n",
      "          'moves': 1,\n",
      "          'ridiculous': 1,\n",
      "          'sublime': 1,\n",
      "          'loveliest': 1,\n",
      "          'comes': 1,\n",
      "          'christine': 1,\n",
      "          'commune': 1,\n",
      "          'outdoors': 1,\n",
      "          'night': 1,\n",
      "          'becoming': 1,\n",
      "          'part': 1,\n",
      "          'defiantly': 1,\n",
      "          'unrealistic': 1,\n",
      "          'parisian': 1,\n",
      "          'cityscape': 1,\n",
      "          'straight': 1,\n",
      "          'book': 1,\n",
      "          'fairy': 1,\n",
      "          'tales': 1,\n",
      "          'ntogether': 1,\n",
      "          'dance': 1,\n",
      "          'serenaded': 1,\n",
      "          'moon': 1,\n",
      "          'alessandro': 1,\n",
      "          'safina': 1,\n",
      "          'provides': 1,\n",
      "          'vocals': 1,\n",
      "          'apparently': 1,\n",
      "          'transported': 1,\n",
      "          'classic': 1,\n",
      "          'georges': 1,\n",
      "          'li': 1,\n",
      "          'silent': 1,\n",
      "          'guard': 1,\n",
      "          'nocturnal': 1,\n",
      "          'sky': 1,\n",
      "          'nother': 1,\n",
      "          'scenes': 1,\n",
      "          'merely': 1,\n",
      "          'traffic': 1,\n",
      "          'everythingandthekitchensink': 1,\n",
      "          'cavorting': 1,\n",
      "          'comrades': 1,\n",
      "          'gets': 1,\n",
      "          'strained': 1,\n",
      "          'overt': 1,\n",
      "          'comedy': 1,\n",
      "          'accompanied': 1,\n",
      "          'cartoon': 1,\n",
      "          'effects': 1,\n",
      "          'overly': 1,\n",
      "          'reminiscent': 1,\n",
      "          'frenzied': 1,\n",
      "          'farce': 1,\n",
      "          'sitcoms': 1,\n",
      "          'bewitched': 1,\n",
      "          'beat': 1,\n",
      "          'ground': 1,\n",
      "          'nof': 1,\n",
      "          'sensory': 1,\n",
      "          'exactly': 1,\n",
      "          'mind': 1,\n",
      "          'heard': 1,\n",
      "          'turn': 1,\n",
      "          'actors': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'nmore': 1,\n",
      "          'sent': 1,\n",
      "          'note': 1,\n",
      "          'reading': 1,\n",
      "          'dare': 1,\n",
      "          'make': 1,\n",
      "          'say': 1,\n",
      "          'youve': 1,\n",
      "          'gone': 1,\n",
      "          'far': 1,\n",
      "          'numbers': 1,\n",
      "          'reflect': 1,\n",
      "          'attitude': 1,\n",
      "          'knockout': 1,\n",
      "          'piece': 1,\n",
      "          'elephant': 1,\n",
      "          'medley': 1,\n",
      "          'incorporates': 1,\n",
      "          'beatles': 1,\n",
      "          'need': 1,\n",
      "          'u2s': 1,\n",
      "          'name': 1,\n",
      "          'dolly': 1,\n",
      "          'partons': 1,\n",
      "          'elton': 1,\n",
      "          'bernie': 1,\n",
      "          'taupins': 1,\n",
      "          'nneed': 1,\n",
      "          'nhow': 1,\n",
      "          'diamonds': 1,\n",
      "          'girls': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'spiced': 1,\n",
      "          'portions': 1,\n",
      "          'material': 1,\n",
      "          'girl': 1,\n",
      "          'nluhrmanns': 1,\n",
      "          'offers': 1,\n",
      "          'wide': 1,\n",
      "          'variety': 1,\n",
      "          'approaches': 1,\n",
      "          'together': 1,\n",
      "          'add': 1,\n",
      "          'something': 1,\n",
      "          'messy': 1,\n",
      "          'often': 1,\n",
      "          'wonderful': 1,\n",
      "          'newan': 1,\n",
      "          'extremely': 1,\n",
      "          'likable': 1,\n",
      "          'emphasizing': 1,\n",
      "          'sincerity': 1,\n",
      "          'lovestruck': 1,\n",
      "          'poet': 1,\n",
      "          'nmcgregors': 1,\n",
      "          'singing': 1,\n",
      "          'robust': 1,\n",
      "          'adds': 1,\n",
      "          'vigor': 1,\n",
      "          'right': 1,\n",
      "          'nonce': 1,\n",
      "          'labeled': 1,\n",
      "          'ice': 1,\n",
      "          'queen': 1,\n",
      "          'melts': 1,\n",
      "          'characterization': 1,\n",
      "          'sizzling': 1,\n",
      "          'yet': 1,\n",
      "          'tender': 1,\n",
      "          'performance': 1,\n",
      "          'nshe': 1,\n",
      "          'handles': 1,\n",
      "          'adroitly': 1,\n",
      "          'thin': 1,\n",
      "          'upper': 1,\n",
      "          'range': 1,\n",
      "          'nveteran': 1,\n",
      "          'character': 1,\n",
      "          'actor': 1,\n",
      "          'suitably': 1,\n",
      "          'larger': 1,\n",
      "          'life': 1,\n",
      "          'ringmaster': 1,\n",
      "          'perform': 1,\n",
      "          'virgin': 1,\n",
      "          'buffoonish': 1,\n",
      "          'proves': 1,\n",
      "          'weakest': 1,\n",
      "          'link': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'following': 1,\n",
      "          'instructions': 1,\n",
      "          'ni': 1,\n",
      "          'suspect': 1,\n",
      "          'loveitorhateit': 1,\n",
      "          'nwhile': 1,\n",
      "          'certainly': 1,\n",
      "          'liked': 1,\n",
      "          'lot': 1,\n",
      "          'nover': 1,\n",
      "          'year': 1,\n",
      "          '300': 1,\n",
      "          'movies': 1,\n",
      "          'look': 1,\n",
      "          'xeroxes': 1,\n",
      "          'flawed': 1,\n",
      "          'thing': 1,\n",
      "          'cherished': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'judith': 6,\n",
      "          'living': 4,\n",
      "          'one': 4,\n",
      "          'pat': 4,\n",
      "          'loud': 3,\n",
      "          'see': 3,\n",
      "          'nshe': 3,\n",
      "          'happy': 3,\n",
      "          'devito': 3,\n",
      "          'friends': 3,\n",
      "          'nthe': 3,\n",
      "          'woman': 3,\n",
      "          'role': 3,\n",
      "          'often': 2,\n",
      "          'like': 2,\n",
      "          'hunter': 2,\n",
      "          'life': 2,\n",
      "          'imagines': 2,\n",
      "          'things': 2,\n",
      "          'better': 2,\n",
      "          'place': 2,\n",
      "          'liz': 2,\n",
      "          'latifah': 2,\n",
      "          'danny': 2,\n",
      "          'person': 2,\n",
      "          'form': 2,\n",
      "          'written': 2,\n",
      "          'also': 2,\n",
      "          'people': 2,\n",
      "          'none': 2,\n",
      "          'mind': 2,\n",
      "          'results': 2,\n",
      "          'sometimes': 2,\n",
      "          'reading': 2,\n",
      "          'join': 2,\n",
      "          'nas': 2,\n",
      "          'judiths': 2,\n",
      "          'even': 2,\n",
      "          'nand': 2,\n",
      "          'image': 2,\n",
      "          'type': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'dont': 1,\n",
      "          'mature': 1,\n",
      "          'intelligent': 1,\n",
      "          'adults': 1,\n",
      "          'instead': 1,\n",
      "          'usual': 1,\n",
      "          'american': 1,\n",
      "          'children': 1,\n",
      "          'basically': 1,\n",
      "          'dress': 1,\n",
      "          'grownup': 1,\n",
      "          'clothing': 1,\n",
      "          'parade': 1,\n",
      "          'around': 1,\n",
      "          'acting': 1,\n",
      "          'immature': 1,\n",
      "          'sevenyearolds': 1,\n",
      "          'njudith': 1,\n",
      "          'holly': 1,\n",
      "          'fortysomething': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'difficult': 1,\n",
      "          'time': 1,\n",
      "          'lately': 1,\n",
      "          'extremely': 1,\n",
      "          'depressed': 1,\n",
      "          'recent': 1,\n",
      "          'divorce': 1,\n",
      "          'husband': 1,\n",
      "          'martin': 1,\n",
      "          'donovan': 1,\n",
      "          'cheating': 1,\n",
      "          'sleep': 1,\n",
      "          'haunted': 1,\n",
      "          'terrible': 1,\n",
      "          'memories': 1,\n",
      "          'offthewall': 1,\n",
      "          'try': 1,\n",
      "          'make': 1,\n",
      "          'world': 1,\n",
      "          'seem': 1,\n",
      "          'really': 1,\n",
      "          'go': 1,\n",
      "          'feel': 1,\n",
      "          'hear': 1,\n",
      "          'favorite': 1,\n",
      "          'singers': 1,\n",
      "          'bailey': 1,\n",
      "          'queen': 1,\n",
      "          'perform': 1,\n",
      "          'local': 1,\n",
      "          'club': 1,\n",
      "          'njudiths': 1,\n",
      "          'start': 1,\n",
      "          'brighten': 1,\n",
      "          'little': 1,\n",
      "          'night': 1,\n",
      "          'gets': 1,\n",
      "          'home': 1,\n",
      "          'apartment': 1,\n",
      "          'late': 1,\n",
      "          'strikes': 1,\n",
      "          'conversation': 1,\n",
      "          'elevator': 1,\n",
      "          'operator': 1,\n",
      "          'lonely': 1,\n",
      "          'man': 1,\n",
      "          'fifties': 1,\n",
      "          'lost': 1,\n",
      "          'daughter': 1,\n",
      "          'recently': 1,\n",
      "          'nboth': 1,\n",
      "          'create': 1,\n",
      "          'sort': 1,\n",
      "          'emotional': 1,\n",
      "          'connection': 1,\n",
      "          'seeking': 1,\n",
      "          'comfort': 1,\n",
      "          'starts': 1,\n",
      "          'deep': 1,\n",
      "          'love': 1,\n",
      "          'wants': 1,\n",
      "          'remain': 1,\n",
      "          'n': 1,\n",
      "          'richard': 1,\n",
      "          'lagravenese': 1,\n",
      "          'bridges': 1,\n",
      "          'madison': 1,\n",
      "          'county': 1,\n",
      "          'making': 1,\n",
      "          'directing': 1,\n",
      "          'debut': 1,\n",
      "          'wonderful': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'honest': 1,\n",
      "          'genuinely': 1,\n",
      "          'funny': 1,\n",
      "          'poignant': 1,\n",
      "          'three': 1,\n",
      "          'central': 1,\n",
      "          'characters': 1,\n",
      "          'freethinking': 1,\n",
      "          'complex': 1,\n",
      "          'human': 1,\n",
      "          'beings': 1,\n",
      "          'likable': 1,\n",
      "          'flawed': 1,\n",
      "          'constantly': 1,\n",
      "          'interesting': 1,\n",
      "          'highly': 1,\n",
      "          'original': 1,\n",
      "          'element': 1,\n",
      "          'occasionally': 1,\n",
      "          'occuring': 1,\n",
      "          'way': 1,\n",
      "          'wishes': 1,\n",
      "          'would': 1,\n",
      "          'happen': 1,\n",
      "          'nsometimes': 1,\n",
      "          'comedy': 1,\n",
      "          'turns': 1,\n",
      "          'subtle': 1,\n",
      "          'truly': 1,\n",
      "          'touching': 1,\n",
      "          'sequence': 1,\n",
      "          'stands': 1,\n",
      "          'restaurant': 1,\n",
      "          'novel': 1,\n",
      "          'nan': 1,\n",
      "          'older': 1,\n",
      "          'comes': 1,\n",
      "          'mentions': 1,\n",
      "          'great': 1,\n",
      "          'book': 1,\n",
      "          'goes': 1,\n",
      "          'sits': 1,\n",
      "          'looks': 1,\n",
      "          'motions': 1,\n",
      "          'come': 1,\n",
      "          'ninstantly': 1,\n",
      "          'realize': 1,\n",
      "          'simply': 1,\n",
      "          'sit': 1,\n",
      "          'table': 1,\n",
      "          'begin': 1,\n",
      "          'talking': 1,\n",
      "          'nholly': 1,\n",
      "          'give': 1,\n",
      "          'performances': 1,\n",
      "          'careers': 1,\n",
      "          'nhunter': 1,\n",
      "          'course': 1,\n",
      "          'brilliant': 1,\n",
      "          '1993s': 1,\n",
      "          'piano': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'think': 1,\n",
      "          'finds': 1,\n",
      "          'right': 1,\n",
      "          'note': 1,\n",
      "          'scene': 1,\n",
      "          'holds': 1,\n",
      "          'never': 1,\n",
      "          'humanistic': 1,\n",
      "          'surprised': 1,\n",
      "          'nusually': 1,\n",
      "          'used': 1,\n",
      "          'butt': 1,\n",
      "          'joke': 1,\n",
      "          'caricature': 1,\n",
      "          'livingandbreathing': 1,\n",
      "          'sympathetic': 1,\n",
      "          'play': 1,\n",
      "          'ntopping': 1,\n",
      "          'singer': 1,\n",
      "          'quickly': 1,\n",
      "          'turning': 1,\n",
      "          'respectable': 1,\n",
      "          'actress': 1,\n",
      "          'juicy': 1,\n",
      "          'natural': 1,\n",
      "          'supporting': 1,\n",
      "          'ways': 1,\n",
      "          'model': 1,\n",
      "          'nanother': 1,\n",
      "          'joy': 1,\n",
      "          'somehow': 1,\n",
      "          'contrived': 1,\n",
      "          'ending': 1,\n",
      "          'staying': 1,\n",
      "          'realistic': 1,\n",
      "          'tone': 1,\n",
      "          'manages': 1,\n",
      "          'upbeat': 1,\n",
      "          'truthful': 1,\n",
      "          'last': 1,\n",
      "          'shot': 1,\n",
      "          'especially': 1,\n",
      "          'powerful': 1,\n",
      "          'nnothing': 1,\n",
      "          'said': 1,\n",
      "          'someone': 1,\n",
      "          'walking': 1,\n",
      "          'sidewalk': 1,\n",
      "          'says': 1,\n",
      "          'relationship': 1,\n",
      "          'truetolife': 1,\n",
      "          'sincere': 1,\n",
      "          'watch': 1,\n",
      "          'two': 1,\n",
      "          'talk': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          'wish': 1,\n",
      "          'include': 1,\n",
      "          'become': 1,\n",
      "          'romantically': 1,\n",
      "          'involved': 1,\n",
      "          'best': 1,\n",
      "          'films': 1,\n",
      "          'year': 1,\n",
      "          'proves': 1,\n",
      "          'friendship': 1,\n",
      "          'strongest': 1,\n",
      "          'bond': 1,\n",
      "          'anyone': 1,\n",
      "          'could': 1,\n",
      "          'possibly': 1,\n",
      "          'ask': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'love': 6,\n",
      "          'redefines': 5,\n",
      "          'scene': 4,\n",
      "          'sex': 4,\n",
      "          'austin': 3,\n",
      "          'dr': 3,\n",
      "          'evil': 3,\n",
      "          'relationship': 3,\n",
      "          'make': 2,\n",
      "          'nanything': 2,\n",
      "          'resembles': 2,\n",
      "          'mini': 2,\n",
      "          'leading': 2,\n",
      "          'bastard': 2,\n",
      "          'felicity': 2,\n",
      "          'affair': 2,\n",
      "          'oh': 1,\n",
      "          'behave': 1,\n",
      "          'nfelicity': 1,\n",
      "          'shagwell': 1,\n",
      "          'one': 1,\n",
      "          'shagadellic': 1,\n",
      "          'babe': 1,\n",
      "          'ndo': 1,\n",
      "          'horny': 1,\n",
      "          'nfemale': 1,\n",
      "          'fembots': 1,\n",
      "          'breasts': 1,\n",
      "          'require': 1,\n",
      "          'gun': 1,\n",
      "          'controlling': 1,\n",
      "          'bananas': 1,\n",
      "          'two': 1,\n",
      "          'balls': 1,\n",
      "          'icecream': 1,\n",
      "          'nutbiting': 1,\n",
      "          'finale': 1,\n",
      "          'nall': 1,\n",
      "          'body': 1,\n",
      "          'hair': 1,\n",
      "          'real': 1,\n",
      "          'turn': 1,\n",
      "          'pity': 1,\n",
      "          'men': 1,\n",
      "          'dont': 1,\n",
      "          'wear': 1,\n",
      "          'screen': 1,\n",
      "          'vaguely': 1,\n",
      "          'sausages': 1,\n",
      "          'eggs': 1,\n",
      "          'nfat': 1,\n",
      "          'fat': 1,\n",
      "          'wrongly': 1,\n",
      "          'implied': 1,\n",
      "          'tent': 1,\n",
      "          'anal': 1,\n",
      "          'ivana': 1,\n",
      "          'humpalot': 1,\n",
      "          'chess': 1,\n",
      "          'oral': 1,\n",
      "          'frau': 1,\n",
      "          'farbissina': 1,\n",
      "          'weird': 1,\n",
      "          'happen': 1,\n",
      "          'mojo': 1,\n",
      "          'goes': 1,\n",
      "          'missing': 1,\n",
      "          'solo': 1,\n",
      "          'unique': 1,\n",
      "          'son': 1,\n",
      "          'scott': 1,\n",
      "          'www': 1,\n",
      "          'com': 1,\n",
      "          'zip': 1,\n",
      "          'says': 1,\n",
      "          'lot': 1,\n",
      "          'children': 1,\n",
      "          'nowadays': 1,\n",
      "          'nweanies': 1,\n",
      "          'johnny': 1,\n",
      "          'richard': 1,\n",
      "          'dick': 1,\n",
      "          'etc': 1,\n",
      "          'nthis': 1,\n",
      "          'movie': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'silly': 1,\n",
      "          'crazy': 1,\n",
      "          'first': 1,\n",
      "          'nthere': 1,\n",
      "          'moments': 1,\n",
      "          'sick': 1,\n",
      "          'probably': 1,\n",
      "          'best': 1,\n",
      "          'forgotten': 1,\n",
      "          'overall': 1,\n",
      "          'mike': 1,\n",
      "          'myers': 1,\n",
      "          'redefined': 1,\n",
      "          'means': 1,\n",
      "          'international': 1,\n",
      "          'spy': 1,\n",
      "          'man': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'altman': 12,\n",
      "          'nthe': 9,\n",
      "          'robert': 6,\n",
      "          'nbut': 6,\n",
      "          'shot': 6,\n",
      "          'director': 5,\n",
      "          'man': 5,\n",
      "          'car': 5,\n",
      "          'magruder': 5,\n",
      "          'grisham': 4,\n",
      "          'great': 4,\n",
      "          'gingerbread': 4,\n",
      "          'help': 4,\n",
      "          'nand': 4,\n",
      "          'john': 3,\n",
      "          'novel': 3,\n",
      "          'course': 3,\n",
      "          'altmans': 3,\n",
      "          'questionable': 3,\n",
      "          'get': 3,\n",
      "          'grishams': 3,\n",
      "          'work': 3,\n",
      "          'story': 3,\n",
      "          'savannah': 3,\n",
      "          'nthis': 3,\n",
      "          'branagh': 3,\n",
      "          'nmagruder': 3,\n",
      "          'mallory': 3,\n",
      "          'act': 3,\n",
      "          'time': 2,\n",
      "          'screen': 2,\n",
      "          'popular': 2,\n",
      "          'actors': 2,\n",
      "          'leads': 2,\n",
      "          'wasnt': 2,\n",
      "          'good': 2,\n",
      "          'far': 2,\n",
      "          'book': 2,\n",
      "          'really': 2,\n",
      "          'people': 2,\n",
      "          'writer': 2,\n",
      "          'storyteller': 2,\n",
      "          'nso': 2,\n",
      "          'make': 2,\n",
      "          'something': 2,\n",
      "          'godfather': 2,\n",
      "          'suggest': 2,\n",
      "          'cinema': 2,\n",
      "          'source': 2,\n",
      "          'material': 2,\n",
      "          'theres': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'better': 2,\n",
      "          'cant': 2,\n",
      "          'tell': 2,\n",
      "          'attention': 2,\n",
      "          'one': 2,\n",
      "          'greatest': 2,\n",
      "          'result': 2,\n",
      "          'thriller': 2,\n",
      "          'classic': 2,\n",
      "          'place': 2,\n",
      "          'opening': 2,\n",
      "          'sense': 2,\n",
      "          'fear': 2,\n",
      "          'see': 2,\n",
      "          'sports': 2,\n",
      "          'driver': 2,\n",
      "          'rick': 2,\n",
      "          'attorney': 2,\n",
      "          'party': 2,\n",
      "          'embeth': 2,\n",
      "          'davidzt': 2,\n",
      "          'stolen': 2,\n",
      "          'offers': 2,\n",
      "          'learns': 2,\n",
      "          'mallorys': 2,\n",
      "          'life': 2,\n",
      "          'father': 2,\n",
      "          'dixon': 2,\n",
      "          'sympathetic': 2,\n",
      "          'offer': 2,\n",
      "          'appears': 2,\n",
      "          'downey': 2,\n",
      "          'jr': 2,\n",
      "          'nif': 2,\n",
      "          'bad': 2,\n",
      "          'enough': 2,\n",
      "          'hurricane': 2,\n",
      "          'world': 2,\n",
      "          'may': 2,\n",
      "          'making': 2,\n",
      "          'nis': 2,\n",
      "          'never': 2,\n",
      "          'worse': 2,\n",
      "          'scenes': 2,\n",
      "          'becomes': 2,\n",
      "          'actress': 2,\n",
      "          'naked': 2,\n",
      "          'film': 2,\n",
      "          'back': 2,\n",
      "          'picture': 2,\n",
      "          'nin': 2,\n",
      "          'hands': 2,\n",
      "          'like': 2,\n",
      "          'tried': 2,\n",
      "          'third': 2,\n",
      "          'written': 1,\n",
      "          'al': 1,\n",
      "          'hayes': 1,\n",
      "          'ndirected': 1,\n",
      "          'nsome': 1,\n",
      "          'ago': 1,\n",
      "          'young': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'direct': 1,\n",
      "          'version': 1,\n",
      "          'summer': 1,\n",
      "          'smash': 1,\n",
      "          'topping': 1,\n",
      "          'bestseller': 1,\n",
      "          'lists': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'already': 1,\n",
      "          'drawing': 1,\n",
      "          'speculation': 1,\n",
      "          'day': 1,\n",
      "          'might': 1,\n",
      "          'play': 1,\n",
      "          'problem': 1,\n",
      "          'nit': 1,\n",
      "          'pulp': 1,\n",
      "          'pulitzer': 1,\n",
      "          'realized': 1,\n",
      "          'matter': 1,\n",
      "          'pedestrian': 1,\n",
      "          'prose': 1,\n",
      "          'grabbed': 1,\n",
      "          'author': 1,\n",
      "          'fantastic': 1,\n",
      "          'took': 1,\n",
      "          'project': 1,\n",
      "          'convinced': 1,\n",
      "          'could': 1,\n",
      "          'happen': 1,\n",
      "          'nfrancis': 1,\n",
      "          'ford': 1,\n",
      "          'coppola': 1,\n",
      "          'mario': 1,\n",
      "          'puzos': 1,\n",
      "          'rest': 1,\n",
      "          'say': 1,\n",
      "          'showbiz': 1,\n",
      "          'history': 1,\n",
      "          'nby': 1,\n",
      "          'bringing': 1,\n",
      "          'dont': 1,\n",
      "          'mean': 1,\n",
      "          'destined': 1,\n",
      "          'level': 1,\n",
      "          'greatness': 1,\n",
      "          'parallel': 1,\n",
      "          'possible': 1,\n",
      "          'create': 1,\n",
      "          'ncan': 1,\n",
      "          'ndepends': 1,\n",
      "          'ask': 1,\n",
      "          'question': 1,\n",
      "          'grabs': 1,\n",
      "          'nlike': 1,\n",
      "          'puzo': 1,\n",
      "          'unlike': 1,\n",
      "          'fellow': 1,\n",
      "          'hack': 1,\n",
      "          'michael': 1,\n",
      "          'crichton': 1,\n",
      "          'idea': 1,\n",
      "          'wellconstructed': 1,\n",
      "          'spam': 1,\n",
      "          'unpublished': 1,\n",
      "          'cocky': 1,\n",
      "          'lawyer': 1,\n",
      "          'gets': 1,\n",
      "          'involved': 1,\n",
      "          'deadly': 1,\n",
      "          'family': 1,\n",
      "          'squabble': 1,\n",
      "          'drew': 1,\n",
      "          '73': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'remains': 1,\n",
      "          'americas': 1,\n",
      "          'living': 1,\n",
      "          'filmmakers': 1,\n",
      "          'gripping': 1,\n",
      "          'falling': 1,\n",
      "          'short': 1,\n",
      "          'deserves': 1,\n",
      "          'canon': 1,\n",
      "          'nfrom': 1,\n",
      "          'closing': 1,\n",
      "          'credits': 1,\n",
      "          'permeated': 1,\n",
      "          'dread': 1,\n",
      "          'natural': 1,\n",
      "          'destructive': 1,\n",
      "          'forces': 1,\n",
      "          'universe': 1,\n",
      "          'terrific': 1,\n",
      "          'mood': 1,\n",
      "          'touch': 1,\n",
      "          'nwitness': 1,\n",
      "          'said': 1,\n",
      "          'aerial': 1,\n",
      "          'view': 1,\n",
      "          'coastal': 1,\n",
      "          'georgia': 1,\n",
      "          'writhing': 1,\n",
      "          'undulating': 1,\n",
      "          'landscape': 1,\n",
      "          'soundtrack': 1,\n",
      "          'grumbles': 1,\n",
      "          'ominously': 1,\n",
      "          'ear': 1,\n",
      "          'nwe': 1,\n",
      "          'roll': 1,\n",
      "          'hills': 1,\n",
      "          'town': 1,\n",
      "          'zoom': 1,\n",
      "          'close': 1,\n",
      "          'red': 1,\n",
      "          'speeding': 1,\n",
      "          'bridge': 1,\n",
      "          'chatters': 1,\n",
      "          'oblivious': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'nright': 1,\n",
      "          'away': 1,\n",
      "          'know': 1,\n",
      "          'surprises': 1,\n",
      "          'npay': 1,\n",
      "          'boys': 1,\n",
      "          'girls': 1,\n",
      "          'conceived': 1,\n",
      "          'belongs': 1,\n",
      "          'kenneth': 1,\n",
      "          'aforementioned': 1,\n",
      "          'hotshot': 1,\n",
      "          'specializes': 1,\n",
      "          'police': 1,\n",
      "          'brutality': 1,\n",
      "          'cases': 1,\n",
      "          'high': 1,\n",
      "          'profile': 1,\n",
      "          'case': 1,\n",
      "          'celebrates': 1,\n",
      "          'night': 1,\n",
      "          'catered': 1,\n",
      "          'office': 1,\n",
      "          'noutside': 1,\n",
      "          'meets': 1,\n",
      "          'waitresses': 1,\n",
      "          'doss': 1,\n",
      "          'realizes': 1,\n",
      "          'ndriven': 1,\n",
      "          'southern': 1,\n",
      "          'chivalry': 1,\n",
      "          'driving': 1,\n",
      "          'rainstorm': 1,\n",
      "          'unspoken': 1,\n",
      "          'attraction': 1,\n",
      "          'fragile': 1,\n",
      "          'waitress': 1,\n",
      "          'ride': 1,\n",
      "          'home': 1,\n",
      "          'nthere': 1,\n",
      "          'bargained': 1,\n",
      "          'nher': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'duvall': 1,\n",
      "          'ted': 1,\n",
      "          'kyzynskistyle': 1,\n",
      "          'whacko': 1,\n",
      "          'stalking': 1,\n",
      "          'terrorizing': 1,\n",
      "          'daughter': 1,\n",
      "          'perhaps': 1,\n",
      "          'influenced': 1,\n",
      "          'decision': 1,\n",
      "          'strip': 1,\n",
      "          'wet': 1,\n",
      "          'clothes': 1,\n",
      "          'front': 1,\n",
      "          'plight': 1,\n",
      "          'committed': 1,\n",
      "          'right': 1,\n",
      "          'sleeps': 1,\n",
      "          'simple': 1,\n",
      "          'dangerous': 1,\n",
      "          'path': 1,\n",
      "          'black': 1,\n",
      "          'end': 1,\n",
      "          'nhe': 1,\n",
      "          'succeeds': 1,\n",
      "          'incarcerated': 1,\n",
      "          'mental': 1,\n",
      "          'hospital': 1,\n",
      "          'moment': 1,\n",
      "          'well': 1,\n",
      "          'dixons': 1,\n",
      "          'crack': 1,\n",
      "          'team': 1,\n",
      "          'homeless': 1,\n",
      "          'commandos': 1,\n",
      "          'bust': 1,\n",
      "          'lockup': 1,\n",
      "          'suddenly': 1,\n",
      "          'finds': 1,\n",
      "          'children': 1,\n",
      "          'danger': 1,\n",
      "          'cops': 1,\n",
      "          'wont': 1,\n",
      "          'lift': 1,\n",
      "          'finger': 1,\n",
      "          'liberal': 1,\n",
      "          'nhis': 1,\n",
      "          'allies': 1,\n",
      "          'faithful': 1,\n",
      "          'assistant': 1,\n",
      "          'lois': 1,\n",
      "          'daryl': 1,\n",
      "          'hannah': 1,\n",
      "          'bumbling': 1,\n",
      "          'privateeye': 1,\n",
      "          'sidekick': 1,\n",
      "          'clyde': 1,\n",
      "          'predicament': 1,\n",
      "          'geraldo': 1,\n",
      "          'bearing': 1,\n",
      "          'throwing': 1,\n",
      "          'chaos': 1,\n",
      "          'naltman': 1,\n",
      "          'provide': 1,\n",
      "          'atmosphere': 1,\n",
      "          'branaghs': 1,\n",
      "          'performance': 1,\n",
      "          'holds': 1,\n",
      "          'together': 1,\n",
      "          'nan': 1,\n",
      "          'accomplished': 1,\n",
      "          'actor': 1,\n",
      "          'isnt': 1,\n",
      "          'directing': 1,\n",
      "          'vanity': 1,\n",
      "          'productions': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'hero': 1,\n",
      "          'casting': 1,\n",
      "          'doubt': 1,\n",
      "          'upon': 1,\n",
      "          'motives': 1,\n",
      "          'kindness': 1,\n",
      "          'egotism': 1,\n",
      "          'sure': 1,\n",
      "          'considers': 1,\n",
      "          'bitten': 1,\n",
      "          'chew': 1,\n",
      "          'swallow': 1,\n",
      "          'late': 1,\n",
      "          'nas': 1,\n",
      "          'plot': 1,\n",
      "          'unfolds': 1,\n",
      "          'none': 1,\n",
      "          'us': 1,\n",
      "          'secure': 1,\n",
      "          'think': 1,\n",
      "          'youre': 1,\n",
      "          'familiar': 1,\n",
      "          'youll': 1,\n",
      "          'recognize': 1,\n",
      "          'several': 1,\n",
      "          'signature': 1,\n",
      "          'techniques': 1,\n",
      "          'ncharacters': 1,\n",
      "          'introduced': 1,\n",
      "          'establishing': 1,\n",
      "          'shots': 1,\n",
      "          'rather': 1,\n",
      "          'allowed': 1,\n",
      "          'wander': 1,\n",
      "          'background': 1,\n",
      "          'importance': 1,\n",
      "          'apparent': 1,\n",
      "          'ncrucial': 1,\n",
      "          'outside': 1,\n",
      "          'windows': 1,\n",
      "          'audience': 1,\n",
      "          'unwitting': 1,\n",
      "          'voyeurs': 1,\n",
      "          'action': 1,\n",
      "          'ndialog': 1,\n",
      "          'overlaps': 1,\n",
      "          'seem': 1,\n",
      "          'slip': 1,\n",
      "          'naturally': 1,\n",
      "          'improvisational': 1,\n",
      "          'style': 1,\n",
      "          'favorite': 1,\n",
      "          'technique': 1,\n",
      "          'obligatory': 1,\n",
      "          'nude': 1,\n",
      "          'nthanks': 1,\n",
      "          'actresses': 1,\n",
      "          'ive': 1,\n",
      "          'pleasure': 1,\n",
      "          'seeing': 1,\n",
      "          'sally': 1,\n",
      "          'kellerman': 1,\n",
      "          'julianne': 1,\n",
      "          'moore': 1,\n",
      "          'madeline': 1,\n",
      "          'stowe': 1,\n",
      "          'even': 1,\n",
      "          'frances': 1,\n",
      "          'mcdormand': 1,\n",
      "          'add': 1,\n",
      "          'davidtz': 1,\n",
      "          'looks': 1,\n",
      "          'quite': 1,\n",
      "          'healthy': 1,\n",
      "          'altogether': 1,\n",
      "          'become': 1,\n",
      "          'ubiquitous': 1,\n",
      "          'cameo': 1,\n",
      "          'hitchcock': 1,\n",
      "          'oldschool': 1,\n",
      "          'sexism': 1,\n",
      "          'clever': 1,\n",
      "          'injoke': 1,\n",
      "          'nyou': 1,\n",
      "          'judge': 1,\n",
      "          'hand': 1,\n",
      "          'mere': 1,\n",
      "          'mortal': 1,\n",
      "          'would': 1,\n",
      "          'routine': 1,\n",
      "          'countless': 1,\n",
      "          'others': 1,\n",
      "          'weve': 1,\n",
      "          'endured': 1,\n",
      "          'master': 1,\n",
      "          'exercise': 1,\n",
      "          'existential': 1,\n",
      "          'doom': 1,\n",
      "          'way': 1,\n",
      "          'successful': 1,\n",
      "          'scorseses': 1,\n",
      "          'cape': 1,\n",
      "          'remake': 1,\n",
      "          'nwhat': 1,\n",
      "          'prevent': 1,\n",
      "          'enduring': 1,\n",
      "          'weak': 1,\n",
      "          'fact': 1,\n",
      "          'throw': 1,\n",
      "          'jazz': 1,\n",
      "          'things': 1,\n",
      "          'true': 1,\n",
      "          'moments': 1,\n",
      "          'riveting': 1,\n",
      "          'suspense': 1,\n",
      "          'performances': 1,\n",
      "          'nthat': 1,\n",
      "          'polygram': 1,\n",
      "          'hated': 1,\n",
      "          'steal': 1,\n",
      "          'final': 1,\n",
      "          'cut': 1,\n",
      "          'buried': 1,\n",
      "          'marketing': 1,\n",
      "          'campaign': 1,\n",
      "          'utterly': 1,\n",
      "          'clueless': 1,\n",
      "          'quality': 1,\n",
      "          'studios': 1,\n",
      "          'nthey': 1,\n",
      "          'probably': 1,\n",
      "          'wanted': 1,\n",
      "          'look': 1,\n",
      "          'kill': 1,\n",
      "          'friends': 1,\n",
      "          'afraid': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'october': 7,\n",
      "          'sky': 7,\n",
      "          'film': 7,\n",
      "          'boys': 6,\n",
      "          'uplifting': 4,\n",
      "          'homer': 4,\n",
      "          'dream': 3,\n",
      "          'nthe': 3,\n",
      "          'chris': 3,\n",
      "          'nhowever': 3,\n",
      "          'manages': 3,\n",
      "          'never': 3,\n",
      "          'hickam': 2,\n",
      "          'rocket': 2,\n",
      "          'four': 2,\n",
      "          '1957': 2,\n",
      "          'much': 2,\n",
      "          'hope': 2,\n",
      "          'future': 2,\n",
      "          'town': 2,\n",
      "          'nbut': 2,\n",
      "          'gyllenhaal': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'cooper': 2,\n",
      "          'scholarships': 2,\n",
      "          'three': 2,\n",
      "          'exact': 2,\n",
      "          'right': 2,\n",
      "          'johnson': 2,\n",
      "          'many': 2,\n",
      "          'become': 2,\n",
      "          'rare': 1,\n",
      "          'oddity': 1,\n",
      "          'cinema': 1,\n",
      "          'selfproclaimed': 1,\n",
      "          'actually': 1,\n",
      "          'nbased': 1,\n",
      "          'autobiographical': 1,\n",
      "          'book': 1,\n",
      "          'tells': 1,\n",
      "          'struggle': 1,\n",
      "          'reaching': 1,\n",
      "          'nits': 1,\n",
      "          'coalwood': 1,\n",
      "          'west': 1,\n",
      "          'virginia': 1,\n",
      "          'theres': 1,\n",
      "          'rosy': 1,\n",
      "          'ncoalwood': 1,\n",
      "          'coal': 1,\n",
      "          'mining': 1,\n",
      "          'except': 1,\n",
      "          'lucky': 1,\n",
      "          'ones': 1,\n",
      "          'manage': 1,\n",
      "          'escape': 1,\n",
      "          'football': 1,\n",
      "          'scholarship': 1,\n",
      "          'coalwoods': 1,\n",
      "          'destined': 1,\n",
      "          'work': 1,\n",
      "          'mine': 1,\n",
      "          'event': 1,\n",
      "          'happens': 1,\n",
      "          'sparks': 1,\n",
      "          'one': 1,\n",
      "          'boy': 1,\n",
      "          'launch': 1,\n",
      "          'soviet': 1,\n",
      "          'satellite': 1,\n",
      "          'sputnik': 1,\n",
      "          'sets': 1,\n",
      "          'jake': 1,\n",
      "          'rocketry': 1,\n",
      "          'space': 1,\n",
      "          'travel': 1,\n",
      "          'homers': 1,\n",
      "          'parents': 1,\n",
      "          'natalie': 1,\n",
      "          'canderday': 1,\n",
      "          'arent': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'make': 1,\n",
      "          'sons': 1,\n",
      "          'unusual': 1,\n",
      "          'interests': 1,\n",
      "          'nhomer': 1,\n",
      "          'gets': 1,\n",
      "          'strongest': 1,\n",
      "          'encouragement': 1,\n",
      "          'miss': 1,\n",
      "          'riley': 1,\n",
      "          'laura': 1,\n",
      "          'dern': 1,\n",
      "          'teacher': 1,\n",
      "          'school': 1,\n",
      "          'also': 1,\n",
      "          'informs': 1,\n",
      "          'offered': 1,\n",
      "          'winners': 1,\n",
      "          'national': 1,\n",
      "          'science': 1,\n",
      "          'fair': 1,\n",
      "          'nand': 1,\n",
      "          'stars': 1,\n",
      "          'eyes': 1,\n",
      "          'thoughts': 1,\n",
      "          'head': 1,\n",
      "          'enlists': 1,\n",
      "          'help': 1,\n",
      "          'william': 1,\n",
      "          'lee': 1,\n",
      "          'scott': 1,\n",
      "          'chad': 1,\n",
      "          'lindberg': 1,\n",
      "          'owen': 1,\n",
      "          'begins': 1,\n",
      "          'build': 1,\n",
      "          'backwoods': 1,\n",
      "          'even': 1,\n",
      "          'slightest': 1,\n",
      "          'escaping': 1,\n",
      "          'destiny': 1,\n",
      "          'nthere': 1,\n",
      "          'lot': 1,\n",
      "          'could': 1,\n",
      "          'gone': 1,\n",
      "          'wrong': 1,\n",
      "          'nnearly': 1,\n",
      "          'every': 1,\n",
      "          'sequence': 1,\n",
      "          'flirts': 1,\n",
      "          'becoming': 1,\n",
      "          'syrupy': 1,\n",
      "          'cliched': 1,\n",
      "          'miraculously': 1,\n",
      "          'avoids': 1,\n",
      "          'nearly': 1,\n",
      "          'pitfalls': 1,\n",
      "          'making': 1,\n",
      "          'moves': 1,\n",
      "          'times': 1,\n",
      "          'na': 1,\n",
      "          'emerges': 1,\n",
      "          'powerful': 1,\n",
      "          'moving': 1,\n",
      "          'without': 1,\n",
      "          'slipping': 1,\n",
      "          'gauzy': 1,\n",
      "          'haze': 1,\n",
      "          'nostalgia': 1,\n",
      "          'sliding': 1,\n",
      "          'sugarry': 1,\n",
      "          'slope': 1,\n",
      "          'sappiness': 1,\n",
      "          'njake': 1,\n",
      "          'outstanding': 1,\n",
      "          'kid': 1,\n",
      "          'center': 1,\n",
      "          'nfrom': 1,\n",
      "          'outset': 1,\n",
      "          'immediately': 1,\n",
      "          'likable': 1,\n",
      "          'seems': 1,\n",
      "          'corny': 1,\n",
      "          'brainy': 1,\n",
      "          'alienate': 1,\n",
      "          'audience': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'focuses': 1,\n",
      "          'kids': 1,\n",
      "          'get': 1,\n",
      "          'short': 1,\n",
      "          'end': 1,\n",
      "          'stick': 1,\n",
      "          'nthey': 1,\n",
      "          'remain': 1,\n",
      "          'little': 1,\n",
      "          'placeholders': 1,\n",
      "          'reading': 1,\n",
      "          'insert': 1,\n",
      "          'friend': 1,\n",
      "          'adults': 1,\n",
      "          'fully': 1,\n",
      "          'realized': 1,\n",
      "          'character': 1,\n",
      "          'paints': 1,\n",
      "          'merely': 1,\n",
      "          'villainous': 1,\n",
      "          'parent': 1,\n",
      "          'standing': 1,\n",
      "          'way': 1,\n",
      "          'childs': 1,\n",
      "          'dreams': 1,\n",
      "          'instead': 1,\n",
      "          'shows': 1,\n",
      "          'multihued': 1,\n",
      "          'portrait': 1,\n",
      "          'man': 1,\n",
      "          'wants': 1,\n",
      "          'best': 1,\n",
      "          'family': 1,\n",
      "          'stubborn': 1,\n",
      "          'realize': 1,\n",
      "          'ndirector': 1,\n",
      "          'joe': 1,\n",
      "          'deserves': 1,\n",
      "          'credit': 1,\n",
      "          'successfully': 1,\n",
      "          'navigating': 1,\n",
      "          'obstacles': 1,\n",
      "          'dodge': 1,\n",
      "          'still': 1,\n",
      "          'occasions': 1,\n",
      "          'allows': 1,\n",
      "          'things': 1,\n",
      "          'proceed': 1,\n",
      "          'step': 1,\n",
      "          'far': 1,\n",
      "          'nscenes': 1,\n",
      "          'natural': 1,\n",
      "          'inspiring': 1,\n",
      "          'start': 1,\n",
      "          'contrived': 1,\n",
      "          'artificial': 1,\n",
      "          'lapses': 1,\n",
      "          'minimal': 1,\n",
      "          'quickly': 1,\n",
      "          'steers': 1,\n",
      "          'movie': 1,\n",
      "          'back': 1,\n",
      "          'problem': 1,\n",
      "          'socalled': 1,\n",
      "          'films': 1,\n",
      "          'attempt': 1,\n",
      "          'force': 1,\n",
      "          'mediciney': 1,\n",
      "          'goodness': 1,\n",
      "          'throat': 1,\n",
      "          'noctober': 1,\n",
      "          'resorts': 1,\n",
      "          'level': 1,\n",
      "          'yet': 1,\n",
      "          'truly': 1,\n",
      "          'purely': 1,\n",
      "          'merits': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'clay': 3,\n",
      "          'movie': 2,\n",
      "          'footage': 2,\n",
      "          'animation': 2,\n",
      "          'like': 2,\n",
      "          'three': 1,\n",
      "          'hour': 1,\n",
      "          'opens': 1,\n",
      "          'view': 1,\n",
      "          'singerguitar': 1,\n",
      "          'playermusiciancomposer': 1,\n",
      "          'frank': 1,\n",
      "          'zappa': 1,\n",
      "          'rehearsing': 1,\n",
      "          'fellow': 1,\n",
      "          'band': 1,\n",
      "          'members': 1,\n",
      "          'nall': 1,\n",
      "          'rest': 1,\n",
      "          'displays': 1,\n",
      "          'compilation': 1,\n",
      "          'mostly': 1,\n",
      "          'concert': 1,\n",
      "          'palladium': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'halloween': 1,\n",
      "          '1979': 1,\n",
      "          'nother': 1,\n",
      "          'shows': 1,\n",
      "          'backstage': 1,\n",
      "          'foolishness': 1,\n",
      "          'amazing': 1,\n",
      "          'bruce': 1,\n",
      "          'bickford': 1,\n",
      "          'nthe': 1,\n",
      "          'performance': 1,\n",
      "          'titties': 1,\n",
      "          'beer': 1,\n",
      "          'played': 1,\n",
      "          'entertaining': 1,\n",
      "          'drummer': 1,\n",
      "          'terry': 1,\n",
      "          'bozzio': 1,\n",
      "          'supplying': 1,\n",
      "          'voice': 1,\n",
      "          'devil': 1,\n",
      "          'nfranks': 1,\n",
      "          'guitar': 1,\n",
      "          'solos': 1,\n",
      "          'outdo': 1,\n",
      "          'van': 1,\n",
      "          'halen': 1,\n",
      "          'hendrix': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'nbruce': 1,\n",
      "          'bickfords': 1,\n",
      "          'outlandish': 1,\n",
      "          'beyond': 1,\n",
      "          'belief': 1,\n",
      "          'zooms': 1,\n",
      "          'morphings': 1,\n",
      "          'etc': 1,\n",
      "          'actually': 1,\n",
      "          'doesnt': 1,\n",
      "          'even': 1,\n",
      "          'look': 1,\n",
      "          'looks': 1,\n",
      "          'meat': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'room': 8,\n",
      "          'seth': 7,\n",
      "          'boiler': 6,\n",
      "          'films': 6,\n",
      "          'nthe': 6,\n",
      "          'cast': 5,\n",
      "          'film': 5,\n",
      "          'fight': 4,\n",
      "          'younger': 4,\n",
      "          'see': 4,\n",
      "          'movie': 4,\n",
      "          'club': 3,\n",
      "          'point': 3,\n",
      "          'well': 3,\n",
      "          'true': 3,\n",
      "          'performance': 3,\n",
      "          'nicky': 3,\n",
      "          'katt': 3,\n",
      "          'fit': 3,\n",
      "          'good': 3,\n",
      "          'make': 3,\n",
      "          'whole': 3,\n",
      "          'major': 3,\n",
      "          'years': 2,\n",
      "          'nboth': 2,\n",
      "          'young': 2,\n",
      "          'men': 2,\n",
      "          'seen': 2,\n",
      "          'narrator': 2,\n",
      "          'eventually': 2,\n",
      "          'ben': 2,\n",
      "          'generation': 2,\n",
      "          'millionaire': 2,\n",
      "          'actors': 2,\n",
      "          'greedy': 2,\n",
      "          'richer': 2,\n",
      "          'action': 2,\n",
      "          'people': 2,\n",
      "          'nif': 2,\n",
      "          'want': 2,\n",
      "          'affleck': 2,\n",
      "          'gives': 2,\n",
      "          'nafter': 2,\n",
      "          'college': 2,\n",
      "          'job': 2,\n",
      "          'coworkers': 2,\n",
      "          'shares': 2,\n",
      "          'something': 2,\n",
      "          'company': 2,\n",
      "          'scenes': 2,\n",
      "          'impress': 2,\n",
      "          'segments': 2,\n",
      "          'never': 2,\n",
      "          'enough': 2,\n",
      "          'watching': 1,\n",
      "          'constantly': 1,\n",
      "          'reminded': 1,\n",
      "          'last': 1,\n",
      "          'masterpiece': 1,\n",
      "          'consist': 1,\n",
      "          'predominately': 1,\n",
      "          'male': 1,\n",
      "          'follow': 1,\n",
      "          'illicitly': 1,\n",
      "          'traditional': 1,\n",
      "          'system': 1,\n",
      "          'desires': 1,\n",
      "          'nand': 1,\n",
      "          'eyes': 1,\n",
      "          'one': 1,\n",
      "          'realizes': 1,\n",
      "          'stopped': 1,\n",
      "          'nwhile': 1,\n",
      "          'writerdirector': 1,\n",
      "          'get': 1,\n",
      "          'across': 1,\n",
      "          'david': 1,\n",
      "          'fincher': 1,\n",
      "          'contribute': 1,\n",
      "          'another': 1,\n",
      "          'impressive': 1,\n",
      "          'work': 1,\n",
      "          'series': 1,\n",
      "          'aiming': 1,\n",
      "          'represent': 1,\n",
      "          'new': 1,\n",
      "          'na': 1,\n",
      "          'internet': 1,\n",
      "          'prosper': 1,\n",
      "          'everyone': 1,\n",
      "          'wants': 1,\n",
      "          'npaying': 1,\n",
      "          'homage': 1,\n",
      "          'oliver': 1,\n",
      "          'stones': 1,\n",
      "          '1987': 1,\n",
      "          'classic': 1,\n",
      "          'wall': 1,\n",
      "          'street': 1,\n",
      "          'almost': 1,\n",
      "          'modernizing': 1,\n",
      "          'tale': 1,\n",
      "          'using': 1,\n",
      "          'hipper': 1,\n",
      "          'play': 1,\n",
      "          'villains': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'opposed': 1,\n",
      "          'older': 1,\n",
      "          'experienced': 1,\n",
      "          'types': 1,\n",
      "          'nas': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'minds': 1,\n",
      "          'becoming': 1,\n",
      "          'knowledge': 1,\n",
      "          'standard': 1,\n",
      "          'technology': 1,\n",
      "          'nboiler': 1,\n",
      "          'dismisses': 1,\n",
      "          'notion': 1,\n",
      "          'ingenuity': 1,\n",
      "          'shows': 1,\n",
      "          'greed': 1,\n",
      "          'desire': 1,\n",
      "          'power': 1,\n",
      "          'come': 1,\n",
      "          'ages': 1,\n",
      "          'nanother': 1,\n",
      "          'similarity': 1,\n",
      "          'flicks': 1,\n",
      "          'nsome': 1,\n",
      "          'convinced': 1,\n",
      "          'allmale': 1,\n",
      "          'automatically': 1,\n",
      "          'means': 1,\n",
      "          'must': 1,\n",
      "          'gory': 1,\n",
      "          'violence': 1,\n",
      "          'proof': 1,\n",
      "          'starring': 1,\n",
      "          'go': 1,\n",
      "          'reindeer': 1,\n",
      "          'games': 1,\n",
      "          'weekend': 1,\n",
      "          'smart': 1,\n",
      "          'insightful': 1,\n",
      "          'excellent': 1,\n",
      "          'acting': 1,\n",
      "          'clever': 1,\n",
      "          'script': 1,\n",
      "          'ngiovanni': 1,\n",
      "          'ribisi': 1,\n",
      "          'outstanding': 1,\n",
      "          'dropping': 1,\n",
      "          'running': 1,\n",
      "          'lucrative': 1,\n",
      "          'gambling': 1,\n",
      "          'center': 1,\n",
      "          'students': 1,\n",
      "          'apartment': 1,\n",
      "          'offered': 1,\n",
      "          'high': 1,\n",
      "          'paying': 1,\n",
      "          'wealthy': 1,\n",
      "          'man': 1,\n",
      "          'nhe': 1,\n",
      "          'agrees': 1,\n",
      "          'take': 1,\n",
      "          'guaranteed': 1,\n",
      "          'become': 1,\n",
      "          'within': 1,\n",
      "          'three': 1,\n",
      "          'selling': 1,\n",
      "          'stock': 1,\n",
      "          'welloff': 1,\n",
      "          'americans': 1,\n",
      "          'midwest': 1,\n",
      "          'telephone': 1,\n",
      "          'begins': 1,\n",
      "          'quite': 1,\n",
      "          'nlearning': 1,\n",
      "          'tricky': 1,\n",
      "          'techniques': 1,\n",
      "          'deceive': 1,\n",
      "          'innocent': 1,\n",
      "          'buying': 1,\n",
      "          'production': 1,\n",
      "          'figures': 1,\n",
      "          'stumbling': 1,\n",
      "          'wrong': 1,\n",
      "          'time': 1,\n",
      "          'knows': 1,\n",
      "          'nat': 1,\n",
      "          'left': 1,\n",
      "          'ultimate': 1,\n",
      "          'choice': 1,\n",
      "          'continue': 1,\n",
      "          'american': 1,\n",
      "          'dream': 1,\n",
      "          'millions': 1,\n",
      "          'tell': 1,\n",
      "          'authorities': 1,\n",
      "          'fishy': 1,\n",
      "          'going': 1,\n",
      "          'nribisi': 1,\n",
      "          'believable': 1,\n",
      "          'especially': 1,\n",
      "          'ron': 1,\n",
      "          'rifkin': 1,\n",
      "          'playing': 1,\n",
      "          'seths': 1,\n",
      "          'dad': 1,\n",
      "          'two': 1,\n",
      "          'perfect': 1,\n",
      "          'chemistry': 1,\n",
      "          'troubled': 1,\n",
      "          'father': 1,\n",
      "          'son': 1,\n",
      "          'trying': 1,\n",
      "          'simultaneously': 1,\n",
      "          'transitions': 1,\n",
      "          'anger': 1,\n",
      "          'sympathy': 1,\n",
      "          'contain': 1,\n",
      "          'standout': 1,\n",
      "          'entire': 1,\n",
      "          'supporting': 1,\n",
      "          'also': 1,\n",
      "          'flawless': 1,\n",
      "          'nben': 1,\n",
      "          'shines': 1,\n",
      "          'short': 1,\n",
      "          'sweet': 1,\n",
      "          'recruiter': 1,\n",
      "          'fabulous': 1,\n",
      "          'ostensibly': 1,\n",
      "          'friendly': 1,\n",
      "          'boss': 1,\n",
      "          'becomes': 1,\n",
      "          'extremely': 1,\n",
      "          'jealous': 1,\n",
      "          'vin': 1,\n",
      "          'diesel': 1,\n",
      "          'best': 1,\n",
      "          'career': 1,\n",
      "          'foil': 1,\n",
      "          'character': 1,\n",
      "          'energy': 1,\n",
      "          'makes': 1,\n",
      "          'paced': 1,\n",
      "          'boring': 1,\n",
      "          'error': 1,\n",
      "          'nothing': 1,\n",
      "          'happens': 1,\n",
      "          'nthere': 1,\n",
      "          'big': 1,\n",
      "          'plot': 1,\n",
      "          'twist': 1,\n",
      "          'climatic': 1,\n",
      "          'memorable': 1,\n",
      "          'ndue': 1,\n",
      "          'lack': 1,\n",
      "          'event': 1,\n",
      "          'finds': 1,\n",
      "          'suitable': 1,\n",
      "          'genre': 1,\n",
      "          'intense': 1,\n",
      "          'thriller': 1,\n",
      "          'romantic': 1,\n",
      "          'involving': 1,\n",
      "          'abby': 1,\n",
      "          'nia': 1,\n",
      "          'long': 1,\n",
      "          'properly': 1,\n",
      "          'finalized': 1,\n",
      "          'dialogue': 1,\n",
      "          'isnt': 1,\n",
      "          'funny': 1,\n",
      "          'comedy': 1,\n",
      "          'nin': 1,\n",
      "          'trouble': 1,\n",
      "          'characterize': 1,\n",
      "          'slightly': 1,\n",
      "          'confused': 1,\n",
      "          'times': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'seem': 1,\n",
      "          'know': 1,\n",
      "          'category': 1,\n",
      "          'none': 1,\n",
      "          'satisfying': 1,\n",
      "          'concluding': 1,\n",
      "          'scene': 1,\n",
      "          'could': 1,\n",
      "          'changed': 1,\n",
      "          'better': 1,\n",
      "          'notherwise': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'thanks': 1,\n",
      "          'lively': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'film': 6,\n",
      "          'hong': 5,\n",
      "          'hollywood': 5,\n",
      "          'dont': 5,\n",
      "          'action': 5,\n",
      "          'one': 4,\n",
      "          'thing': 4,\n",
      "          'risk': 4,\n",
      "          'new': 4,\n",
      "          'kong': 4,\n",
      "          'van': 4,\n",
      "          'nin': 4,\n",
      "          'well': 4,\n",
      "          'little': 4,\n",
      "          'films': 4,\n",
      "          'n': 4,\n",
      "          'get': 3,\n",
      "          'maximum': 3,\n",
      "          'russians': 3,\n",
      "          'damme': 3,\n",
      "          'also': 3,\n",
      "          'hard': 3,\n",
      "          'target': 3,\n",
      "          'french': 3,\n",
      "          'brother': 3,\n",
      "          'york': 3,\n",
      "          'know': 3,\n",
      "          'russian': 3,\n",
      "          'killed': 3,\n",
      "          'much': 3,\n",
      "          'time': 3,\n",
      "          'think': 3,\n",
      "          'good': 3,\n",
      "          'seen': 3,\n",
      "          'nthe': 3,\n",
      "          'expect': 3,\n",
      "          'nbut': 3,\n",
      "          'watching': 3,\n",
      "          'lets': 2,\n",
      "          'really': 2,\n",
      "          'lam': 2,\n",
      "          'minor': 2,\n",
      "          'woos': 2,\n",
      "          'lams': 2,\n",
      "          'alain': 2,\n",
      "          'cop': 2,\n",
      "          'sense': 2,\n",
      "          'twin': 2,\n",
      "          'nthis': 2,\n",
      "          'mikhail': 2,\n",
      "          'becomes': 2,\n",
      "          'france': 2,\n",
      "          'anything': 2,\n",
      "          'still': 2,\n",
      "          'breasts': 2,\n",
      "          'us': 2,\n",
      "          'thats': 2,\n",
      "          'certain': 2,\n",
      "          'like': 2,\n",
      "          'part': 2,\n",
      "          'spectacle': 2,\n",
      "          'share': 2,\n",
      "          'car': 2,\n",
      "          'chases': 2,\n",
      "          'even': 2,\n",
      "          'hell': 2,\n",
      "          'come': 2,\n",
      "          'see': 2,\n",
      "          'fight': 2,\n",
      "          'quaint': 2,\n",
      "          'guy': 2,\n",
      "          'dramatic': 2,\n",
      "          'become': 2,\n",
      "          'sort': 2,\n",
      "          'better': 2,\n",
      "          'ok': 1,\n",
      "          'straight': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'battleship': 1,\n",
      "          'potemkin': 1,\n",
      "          'although': 1,\n",
      "          'bad': 1,\n",
      "          'nits': 1,\n",
      "          'ringo': 1,\n",
      "          'latest': 1,\n",
      "          'filmmaker': 1,\n",
      "          'defect': 1,\n",
      "          'stars': 1,\n",
      "          'league': 1,\n",
      "          'schwartzeneggar': 1,\n",
      "          'belgium': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'recall': 1,\n",
      "          'starred': 1,\n",
      "          'john': 1,\n",
      "          'maiden': 1,\n",
      "          'effort': 1,\n",
      "          'plays': 1,\n",
      "          'moreau': 1,\n",
      "          'least': 1,\n",
      "          'accent': 1,\n",
      "          'makes': 1,\n",
      "          'discovers': 1,\n",
      "          'separated': 1,\n",
      "          'shortly': 1,\n",
      "          'birth': 1,\n",
      "          'adopted': 1,\n",
      "          'nthese': 1,\n",
      "          'defected': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'moved': 1,\n",
      "          'black': 1,\n",
      "          'neighbourhood': 1,\n",
      "          'suppose': 1,\n",
      "          'thought': 1,\n",
      "          'wouldnt': 1,\n",
      "          'noticed': 1,\n",
      "          'suverov': 1,\n",
      "          'played': 1,\n",
      "          'scenes': 1,\n",
      "          'nyou': 1,\n",
      "          'deeply': 1,\n",
      "          'involved': 1,\n",
      "          'mafia': 1,\n",
      "          'fbi': 1,\n",
      "          'almost': 1,\n",
      "          'guess': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'fast': 1,\n",
      "          'weird': 1,\n",
      "          'nmoreau': 1,\n",
      "          'surviving': 1,\n",
      "          'would': 1,\n",
      "          'goes': 1,\n",
      "          'find': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'wonder': 1,\n",
      "          'odessa': 1,\n",
      "          'meets': 1,\n",
      "          'mikhails': 1,\n",
      "          'girlfriend': 1,\n",
      "          'alex': 1,\n",
      "          'natasha': 1,\n",
      "          'henstridge': 1,\n",
      "          'last': 1,\n",
      "          'species': 1,\n",
      "          'helps': 1,\n",
      "          'solve': 1,\n",
      "          'mystery': 1,\n",
      "          'adds': 1,\n",
      "          'immeasurably': 1,\n",
      "          'miseenscene': 1,\n",
      "          'nice': 1,\n",
      "          'briefly': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'pg': 1,\n",
      "          'must': 1,\n",
      "          'lacks': 1,\n",
      "          'gloss': 1,\n",
      "          'high': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'movies': 1,\n",
      "          'broken': 1,\n",
      "          'arrow': 1,\n",
      "          'fugitive': 1,\n",
      "          'starring': 1,\n",
      "          'arnold': 1,\n",
      "          'works': 1,\n",
      "          'benefit': 1,\n",
      "          'nafter': 1,\n",
      "          'missing': 1,\n",
      "          'funkiness': 1,\n",
      "          'love': 1,\n",
      "          'nmovies': 1,\n",
      "          'shouldnt': 1,\n",
      "          'pretentious': 1,\n",
      "          'problem': 1,\n",
      "          'try': 1,\n",
      "          'big': 1,\n",
      "          'terms': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'sheer': 1,\n",
      "          'nmaximum': 1,\n",
      "          'explosions': 1,\n",
      "          'overwhelm': 1,\n",
      "          'detract': 1,\n",
      "          'attention': 1,\n",
      "          'narrative': 1,\n",
      "          'anyway': 1,\n",
      "          'emphasis': 1,\n",
      "          'throughout': 1,\n",
      "          'characters': 1,\n",
      "          'interactions': 1,\n",
      "          'times': 1,\n",
      "          'make': 1,\n",
      "          'lot': 1,\n",
      "          'fact': 1,\n",
      "          'interesting': 1,\n",
      "          'aspects': 1,\n",
      "          'character': 1,\n",
      "          'rather': 1,\n",
      "          'overeager': 1,\n",
      "          'cabbie': 1,\n",
      "          'frank': 1,\n",
      "          'keeken': 1,\n",
      "          'tvs': 1,\n",
      "          'kids': 1,\n",
      "          'hall': 1,\n",
      "          'begins': 1,\n",
      "          'something': 1,\n",
      "          'joke': 1,\n",
      "          'important': 1,\n",
      "          'story': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'interested': 1,\n",
      "          'nyoull': 1,\n",
      "          'features': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'type': 1,\n",
      "          'compatriots': 1,\n",
      "          'none': 1,\n",
      "          'sauna': 1,\n",
      "          'lots': 1,\n",
      "          'sweaty': 1,\n",
      "          'muscular': 1,\n",
      "          'male': 1,\n",
      "          'flesh': 1,\n",
      "          'appeal': 1,\n",
      "          'parts': 1,\n",
      "          'audience': 1,\n",
      "          'others': 1,\n",
      "          'bullets': 1,\n",
      "          'heads': 1,\n",
      "          'vodka': 1,\n",
      "          'nanother': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'meat': 1,\n",
      "          'packing': 1,\n",
      "          'house': 1,\n",
      "          'featuring': 1,\n",
      "          'pig': 1,\n",
      "          'carcasses': 1,\n",
      "          'chainsaw': 1,\n",
      "          'nand': 1,\n",
      "          'predictable': 1,\n",
      "          'trash': 1,\n",
      "          'cafes': 1,\n",
      "          'vegetable': 1,\n",
      "          'carts': 1,\n",
      "          'people': 1,\n",
      "          'hearts': 1,\n",
      "          'deserve': 1,\n",
      "          'trashing': 1,\n",
      "          'damn': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'silliness': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'beating': 1,\n",
      "          'crap': 1,\n",
      "          'obnoxious': 1,\n",
      "          'thug': 1,\n",
      "          'obviously': 1,\n",
      "          'deserves': 1,\n",
      "          'hes': 1,\n",
      "          'getting': 1,\n",
      "          'stops': 1,\n",
      "          'long': 1,\n",
      "          'enough': 1,\n",
      "          'look': 1,\n",
      "          'reflection': 1,\n",
      "          'cracked': 1,\n",
      "          'mirror': 1,\n",
      "          'whacking': 1,\n",
      "          'head': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'moment': 1,\n",
      "          'apparently': 1,\n",
      "          'shocked': 1,\n",
      "          'sees': 1,\n",
      "          'na': 1,\n",
      "          'tough': 1,\n",
      "          'beats': 1,\n",
      "          'tried': 1,\n",
      "          'kill': 1,\n",
      "          'ndoesnt': 1,\n",
      "          'sound': 1,\n",
      "          'unreasonable': 1,\n",
      "          'considering': 1,\n",
      "          'genre': 1,\n",
      "          'face': 1,\n",
      "          'tries': 1,\n",
      "          'looks': 1,\n",
      "          'silly': 1,\n",
      "          'nso': 1,\n",
      "          'different': 1,\n",
      "          'nwhile': 1,\n",
      "          'surprised': 1,\n",
      "          'disappointed': 1,\n",
      "          'relative': 1,\n",
      "          'lack': 1,\n",
      "          'pyrotechnics': 1,\n",
      "          'experiencing': 1,\n",
      "          'sugar': 1,\n",
      "          'rush': 1,\n",
      "          'initial': 1,\n",
      "          'excitement': 1,\n",
      "          'theres': 1,\n",
      "          'left': 1,\n",
      "          'nalthough': 1,\n",
      "          'short': 1,\n",
      "          'leaves': 1,\n",
      "          'lasting': 1,\n",
      "          'impression': 1,\n",
      "          'nim': 1,\n",
      "          'impressed': 1,\n",
      "          'sign': 1,\n",
      "          'ngo': 1,\n",
      "          'typical': 1,\n",
      "          'funky': 1,\n",
      "          'konghollywood': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'creaky': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'ndr': 1,\n",
      "          'white': 1,\n",
      "          'teaches': 1,\n",
      "          'english': 1,\n",
      "          'language': 1,\n",
      "          'literature': 1,\n",
      "          'department': 1,\n",
      "          'national': 1,\n",
      "          'university': 1,\n",
      "          'singapore': 1,\n",
      "          'hold': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'full': 5,\n",
      "          'monty': 5,\n",
      "          'people': 4,\n",
      "          'time': 3,\n",
      "          'club': 3,\n",
      "          'well': 3,\n",
      "          'gerald': 3,\n",
      "          'get': 3,\n",
      "          'way': 3,\n",
      "          'success': 2,\n",
      "          'humour': 2,\n",
      "          'movie': 2,\n",
      "          'industry': 2,\n",
      "          'one': 2,\n",
      "          'former': 2,\n",
      "          'nthe': 2,\n",
      "          'sort': 2,\n",
      "          'ngaz': 2,\n",
      "          'carlyle': 2,\n",
      "          'workers': 2,\n",
      "          'jobless': 2,\n",
      "          'around': 2,\n",
      "          'dave': 2,\n",
      "          'months': 2,\n",
      "          'desperation': 2,\n",
      "          'money': 2,\n",
      "          'problems': 2,\n",
      "          'also': 2,\n",
      "          'wife': 2,\n",
      "          'leaving': 2,\n",
      "          'financial': 2,\n",
      "          'work': 2,\n",
      "          'real': 2,\n",
      "          'sure': 2,\n",
      "          'managed': 2,\n",
      "          'stripact': 2,\n",
      "          'pay': 2,\n",
      "          'nit': 2,\n",
      "          'small': 2,\n",
      "          'delves': 2,\n",
      "          'nwhile': 2,\n",
      "          'trainspotting': 2,\n",
      "          'onscreen': 2,\n",
      "          'acting': 2,\n",
      "          'trailing': 1,\n",
      "          'brit': 1,\n",
      "          'likes': 1,\n",
      "          'semidramatic': 1,\n",
      "          'commitments': 1,\n",
      "          'nearly': 1,\n",
      "          'slapstick': 1,\n",
      "          'fish': 1,\n",
      "          'called': 1,\n",
      "          'wanda': 1,\n",
      "          'delivered': 1,\n",
      "          'depth': 1,\n",
      "          'magnitude': 1,\n",
      "          'latter': 1,\n",
      "          'opens': 1,\n",
      "          'narrated': 1,\n",
      "          'documentary': 1,\n",
      "          'reel': 1,\n",
      "          'showing': 1,\n",
      "          'improving': 1,\n",
      "          'economic': 1,\n",
      "          'living': 1,\n",
      "          'standards': 1,\n",
      "          'sheffield': 1,\n",
      "          '60s': 1,\n",
      "          'cut': 1,\n",
      "          'harsh': 1,\n",
      "          'reality': 1,\n",
      "          'present': 1,\n",
      "          'nsheffield': 1,\n",
      "          'become': 1,\n",
      "          'semislum': 1,\n",
      "          'visible': 1,\n",
      "          'increase': 1,\n",
      "          'anything': 1,\n",
      "          'amount': 1,\n",
      "          'layoffs': 1,\n",
      "          'steelfactories': 1,\n",
      "          'flourishing': 1,\n",
      "          'spends': 1,\n",
      "          'place': 1,\n",
      "          'sit': 1,\n",
      "          'wait': 1,\n",
      "          'job': 1,\n",
      "          'offers': 1,\n",
      "          'nhe': 1,\n",
      "          'plump': 1,\n",
      "          'friend': 1,\n",
      "          'addy': 1,\n",
      "          'foreman': 1,\n",
      "          'wilkinson': 1,\n",
      "          'sitting': 1,\n",
      "          'without': 1,\n",
      "          'call': 1,\n",
      "          'duty': 1,\n",
      "          'nwhat': 1,\n",
      "          'seemingly': 1,\n",
      "          'passing': 1,\n",
      "          'hard': 1,\n",
      "          'gaz': 1,\n",
      "          'suddenly': 1,\n",
      "          'transformed': 1,\n",
      "          'afford': 1,\n",
      "          '700': 1,\n",
      "          'pounds': 1,\n",
      "          'childsupport': 1,\n",
      "          'exwife': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'finding': 1,\n",
      "          'facing': 1,\n",
      "          'possiblity': 1,\n",
      "          'losing': 1,\n",
      "          'custody': 1,\n",
      "          'son': 1,\n",
      "          'goes': 1,\n",
      "          'concoct': 1,\n",
      "          'enterprising': 1,\n",
      "          'wildidea': 1,\n",
      "          'desperately': 1,\n",
      "          'requires': 1,\n",
      "          'ndave': 1,\n",
      "          'non': 1,\n",
      "          'top': 1,\n",
      "          'lack': 1,\n",
      "          'employment': 1,\n",
      "          'faced': 1,\n",
      "          'paranoia': 1,\n",
      "          'current': 1,\n",
      "          'state': 1,\n",
      "          'hisplump': 1,\n",
      "          'appearance': 1,\n",
      "          'cheating': 1,\n",
      "          'telling': 1,\n",
      "          'layoff': 1,\n",
      "          'long': 1,\n",
      "          '6': 1,\n",
      "          'home': 1,\n",
      "          'actually': 1,\n",
      "          'longstanding': 1,\n",
      "          'member': 1,\n",
      "          'nthere': 1,\n",
      "          'notsopractical': 1,\n",
      "          'solution': 1,\n",
      "          'manages': 1,\n",
      "          'support': 1,\n",
      "          'enough': 1,\n",
      "          'poor': 1,\n",
      "          'blokes': 1,\n",
      "          'join': 1,\n",
      "          'gag': 1,\n",
      "          'perform': 1,\n",
      "          'local': 1,\n",
      "          'pub': 1,\n",
      "          'nin': 1,\n",
      "          'gazs': 1,\n",
      "          'words': 1,\n",
      "          'looking': 1,\n",
      "          'add': 1,\n",
      "          'featuring': 1,\n",
      "          'hunky': 1,\n",
      "          'beautiful': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'willing': 1,\n",
      "          'realmen': 1,\n",
      "          'simple': 1,\n",
      "          'nature': 1,\n",
      "          'trace': 1,\n",
      "          'ambitious': 1,\n",
      "          'harshreality': 1,\n",
      "          'unemployment': 1,\n",
      "          'drives': 1,\n",
      "          'light': 1,\n",
      "          'watch': 1,\n",
      "          'despite': 1,\n",
      "          'theme': 1,\n",
      "          'lot': 1,\n",
      "          'humanfactor': 1,\n",
      "          'going': 1,\n",
      "          'nnever': 1,\n",
      "          'trying': 1,\n",
      "          'manipulative': 1,\n",
      "          'true': 1,\n",
      "          'hilarity': 1,\n",
      "          'level': 1,\n",
      "          'soared': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'high': 1,\n",
      "          'audience': 1,\n",
      "          'find': 1,\n",
      "          'cheated': 1,\n",
      "          'laugh': 1,\n",
      "          'something': 1,\n",
      "          'lacking': 1,\n",
      "          'many': 1,\n",
      "          'comedy': 1,\n",
      "          'films': 1,\n",
      "          'wannabes': 1,\n",
      "          'hollywood': 1,\n",
      "          'nother': 1,\n",
      "          'acted': 1,\n",
      "          'psychotic': 1,\n",
      "          'begbie': 1,\n",
      "          'rest': 1,\n",
      "          'actors': 1,\n",
      "          'definitely': 1,\n",
      "          'new': 1,\n",
      "          'nhowever': 1,\n",
      "          'presented': 1,\n",
      "          'satisfying': 1,\n",
      "          'ncarlyles': 1,\n",
      "          'stark': 1,\n",
      "          'contrast': 1,\n",
      "          'character': 1,\n",
      "          'implying': 1,\n",
      "          'skill': 1,\n",
      "          'flexibility': 1,\n",
      "          'nkudos': 1,\n",
      "          'involved': 1,\n",
      "          'especially': 1,\n",
      "          'director': 1,\n",
      "          'peter': 1,\n",
      "          'cattaneo': 1,\n",
      "          'able': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'excellent': 1,\n",
      "          'much': 1,\n",
      "          'potential': 1,\n",
      "          'ending': 1,\n",
      "          'justanotherstriptease': 1,\n",
      "          'nalready': 1,\n",
      "          'critical': 1,\n",
      "          'humble': 1,\n",
      "          'deserves': 1,\n",
      "          'applause': 1,\n",
      "          'throughout': 1,\n",
      "          'titanic': 1,\n",
      "          'feast': 1,\n",
      "          'eyes': 1,\n",
      "          'soul': 1,\n",
      "          'epic': 1,\n",
      "          'gives': 1,\n",
      "          'satisfaction': 1,\n",
      "          'nhalf': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'tarzan': 13,\n",
      "          'disney': 10,\n",
      "          'one': 9,\n",
      "          'ape': 6,\n",
      "          'feature': 6,\n",
      "          'film': 6,\n",
      "          'animated': 5,\n",
      "          'jane': 5,\n",
      "          'ohh': 5,\n",
      "          'ee': 5,\n",
      "          'usual': 4,\n",
      "          'really': 4,\n",
      "          'apes': 4,\n",
      "          'think': 4,\n",
      "          'romance': 4,\n",
      "          'animation': 4,\n",
      "          'put': 3,\n",
      "          'us': 3,\n",
      "          'family': 3,\n",
      "          'boy': 3,\n",
      "          'story': 3,\n",
      "          'young': 3,\n",
      "          'gets': 3,\n",
      "          'see': 3,\n",
      "          'couple': 3,\n",
      "          'rosie': 3,\n",
      "          'odonnell': 3,\n",
      "          'immediately': 3,\n",
      "          'come': 3,\n",
      "          'scene': 3,\n",
      "          'voice': 3,\n",
      "          'music': 3,\n",
      "          'youll': 2,\n",
      "          'go': 2,\n",
      "          'theres': 2,\n",
      "          'quote': 2,\n",
      "          'movie': 2,\n",
      "          'right': 2,\n",
      "          'action': 2,\n",
      "          'beginning': 2,\n",
      "          'attempts': 2,\n",
      "          'mother': 2,\n",
      "          'infant': 2,\n",
      "          'make': 2,\n",
      "          'song': 2,\n",
      "          'phil': 2,\n",
      "          'collins': 2,\n",
      "          'soon': 2,\n",
      "          'know': 2,\n",
      "          'baby': 2,\n",
      "          'ntarzan': 2,\n",
      "          'wild': 2,\n",
      "          'tarzans': 2,\n",
      "          'father': 2,\n",
      "          'true': 2,\n",
      "          'adult': 2,\n",
      "          'friends': 2,\n",
      "          'named': 2,\n",
      "          'terk': 2,\n",
      "          'elephant': 2,\n",
      "          'n': 2,\n",
      "          'get': 2,\n",
      "          'nwe': 2,\n",
      "          'nwell': 2,\n",
      "          'nhowever': 2,\n",
      "          'found': 2,\n",
      "          'name': 2,\n",
      "          'tell': 2,\n",
      "          'nbut': 2,\n",
      "          'ndo': 2,\n",
      "          'well': 2,\n",
      "          'time': 2,\n",
      "          'songs': 2,\n",
      "          'nthis': 2,\n",
      "          'isnt': 2,\n",
      "          'nwith': 2,\n",
      "          'new': 2,\n",
      "          'even': 2,\n",
      "          'since': 2,\n",
      "          'year': 2,\n",
      "          'scenes': 2,\n",
      "          'absolutely': 2,\n",
      "          'nthe': 2,\n",
      "          'thinking': 2,\n",
      "          'chandelier': 2,\n",
      "          'say': 2,\n",
      "          'went': 2,\n",
      "          'fun': 1,\n",
      "          'barrel': 1,\n",
      "          'monkeys': 1,\n",
      "          'nokay': 1,\n",
      "          'case': 1,\n",
      "          'wants': 1,\n",
      "          'something': 1,\n",
      "          'ads': 1,\n",
      "          'ndisneys': 1,\n",
      "          'latest': 1,\n",
      "          'throws': 1,\n",
      "          'skipping': 1,\n",
      "          'main': 1,\n",
      "          'title': 1,\n",
      "          'sequence': 1,\n",
      "          'putting': 1,\n",
      "          'pitching': 1,\n",
      "          'waves': 1,\n",
      "          'small': 1,\n",
      "          'escape': 1,\n",
      "          'sinking': 1,\n",
      "          'ship': 1,\n",
      "          'nfather': 1,\n",
      "          'somehow': 1,\n",
      "          'shore': 1,\n",
      "          'amidst': 1,\n",
      "          'rousing': 1,\n",
      "          'built': 1,\n",
      "          'treehouse': 1,\n",
      "          'would': 1,\n",
      "          'impress': 1,\n",
      "          'swiss': 1,\n",
      "          'robinson': 1,\n",
      "          'nits': 1,\n",
      "          'amazing': 1,\n",
      "          'kinds': 1,\n",
      "          'things': 1,\n",
      "          'work': 1,\n",
      "          'soundtrack': 1,\n",
      "          'nbefore': 1,\n",
      "          'unfortunate': 1,\n",
      "          'set': 1,\n",
      "          'circumstances': 1,\n",
      "          'hands': 1,\n",
      "          'kala': 1,\n",
      "          'glenn': 1,\n",
      "          'close': 1,\n",
      "          'recently': 1,\n",
      "          'lost': 1,\n",
      "          'predatory': 1,\n",
      "          'leopard': 1,\n",
      "          'nagainst': 1,\n",
      "          'wishes': 1,\n",
      "          'mate': 1,\n",
      "          'leader': 1,\n",
      "          'kerchak': 1,\n",
      "          'lance': 1,\n",
      "          'henricksen': 1,\n",
      "          'takes': 1,\n",
      "          'much': 1,\n",
      "          'human': 1,\n",
      "          'surviving': 1,\n",
      "          'african': 1,\n",
      "          'jungles': 1,\n",
      "          'fit': 1,\n",
      "          'either': 1,\n",
      "          'humanity': 1,\n",
      "          'nmuch': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'life': 1,\n",
      "          'spent': 1,\n",
      "          'trying': 1,\n",
      "          'become': 1,\n",
      "          'eyes': 1,\n",
      "          'peers': 1,\n",
      "          'occasionally': 1,\n",
      "          'trouble': 1,\n",
      "          'matter': 1,\n",
      "          'wellmeant': 1,\n",
      "          'nall': 1,\n",
      "          'hes': 1,\n",
      "          'looking': 1,\n",
      "          'acceptance': 1,\n",
      "          'perhaps': 1,\n",
      "          'goal': 1,\n",
      "          'easily': 1,\n",
      "          'identifiable': 1,\n",
      "          'viewers': 1,\n",
      "          'ring': 1,\n",
      "          'lot': 1,\n",
      "          'adults': 1,\n",
      "          'nwhen': 1,\n",
      "          'fits': 1,\n",
      "          'formula': 1,\n",
      "          'outcast': 1,\n",
      "          'triumphs': 1,\n",
      "          'end': 1,\n",
      "          'nlook': 1,\n",
      "          'back': 1,\n",
      "          'past': 1,\n",
      "          'features': 1,\n",
      "          'trend': 1,\n",
      "          'ngrowing': 1,\n",
      "          'voiced': 1,\n",
      "          'alex': 1,\n",
      "          'linz': 1,\n",
      "          'child': 1,\n",
      "          'tony': 1,\n",
      "          'goldwyn': 1,\n",
      "          'none': 1,\n",
      "          'paranoid': 1,\n",
      "          'hypochondriac': 1,\n",
      "          'tantor': 1,\n",
      "          'wayne': 1,\n",
      "          'knight': 1,\n",
      "          'nboth': 1,\n",
      "          'provide': 1,\n",
      "          'requisite': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'timon': 1,\n",
      "          'poombah': 1,\n",
      "          'lion': 1,\n",
      "          'king': 1,\n",
      "          'mind': 1,\n",
      "          'perform': 1,\n",
      "          'hijinks': 1,\n",
      "          'prescribed': 1,\n",
      "          'mold': 1,\n",
      "          'nim': 1,\n",
      "          'anyone': 1,\n",
      "          'write': 1,\n",
      "          'screenplay': 1,\n",
      "          'films': 1,\n",
      "          'njust': 1,\n",
      "          'fill': 1,\n",
      "          'blanks': 1,\n",
      "          'ncan': 1,\n",
      "          'zany': 1,\n",
      "          'hero': 1,\n",
      "          'might': 1,\n",
      "          'mischief': 1,\n",
      "          'cover': 1,\n",
      "          'rescue': 1,\n",
      "          'needs': 1,\n",
      "          'nweve': 1,\n",
      "          'already': 1,\n",
      "          'fish': 1,\n",
      "          'crab': 1,\n",
      "          'weve': 1,\n",
      "          'candle': 1,\n",
      "          'teapot': 1,\n",
      "          'genie': 1,\n",
      "          'dog': 1,\n",
      "          'stone': 1,\n",
      "          'statues': 1,\n",
      "          'yet': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'got': 1,\n",
      "          'ta': 1,\n",
      "          'somewhere': 1,\n",
      "          'along': 1,\n",
      "          'line': 1,\n",
      "          'minnie': 1,\n",
      "          'driver': 1,\n",
      "          'introduced': 1,\n",
      "          'halfway': 1,\n",
      "          'ntogether': 1,\n",
      "          'dr': 1,\n",
      "          'porter': 1,\n",
      "          'nigel': 1,\n",
      "          'hawthorne': 1,\n",
      "          'big': 1,\n",
      "          'game': 1,\n",
      "          'hunter': 1,\n",
      "          'clayton': 1,\n",
      "          'brian': 1,\n",
      "          'blessed': 1,\n",
      "          'expedition': 1,\n",
      "          'find': 1,\n",
      "          'study': 1,\n",
      "          'gorillas': 1,\n",
      "          'africa': 1,\n",
      "          'nshe': 1,\n",
      "          'discovers': 1,\n",
      "          'man': 1,\n",
      "          'raised': 1,\n",
      "          'enchanted': 1,\n",
      "          'almost': 1,\n",
      "          'shares': 1,\n",
      "          'amusing': 1,\n",
      "          'version': 1,\n",
      "          'compulsory': 1,\n",
      "          'nthankfully': 1,\n",
      "          'arent': 1,\n",
      "          'exact': 1,\n",
      "          'words': 1,\n",
      "          'distracting': 1,\n",
      "          'going': 1,\n",
      "          'second': 1,\n",
      "          'tells': 1,\n",
      "          'manly': 1,\n",
      "          'perfect': 1,\n",
      "          'diction': 1,\n",
      "          'nhow': 1,\n",
      "          'another': 1,\n",
      "          'regardless': 1,\n",
      "          'picky': 1,\n",
      "          'nature': 1,\n",
      "          'actually': 1,\n",
      "          'works': 1,\n",
      "          'purely': 1,\n",
      "          'contrived': 1,\n",
      "          'reason': 1,\n",
      "          'rather': 1,\n",
      "          'believable': 1,\n",
      "          'hey': 1,\n",
      "          'dated': 1,\n",
      "          'female': 1,\n",
      "          'meeting': 1,\n",
      "          'nisnt': 1,\n",
      "          'illegal': 1,\n",
      "          'countries': 1,\n",
      "          'noh': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'using': 1,\n",
      "          'anymore': 1,\n",
      "          'departs': 1,\n",
      "          'musical': 1,\n",
      "          'ntheres': 1,\n",
      "          'lots': 1,\n",
      "          'sure': 1,\n",
      "          'single': 1,\n",
      "          'character': 1,\n",
      "          'whole': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'running': 1,\n",
      "          'instead': 1,\n",
      "          'concert': 1,\n",
      "          'less': 1,\n",
      "          'five': 1,\n",
      "          'original': 1,\n",
      "          'used': 1,\n",
      "          'interlude': 1,\n",
      "          'material': 1,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'highenergy': 1,\n",
      "          'catchy': 1,\n",
      "          'singing': 1,\n",
      "          'following': 1,\n",
      "          'day': 1,\n",
      "          'different': 1,\n",
      "          'favor': 1,\n",
      "          'theater': 1,\n",
      "          'good': 1,\n",
      "          'sound': 1,\n",
      "          'system': 1,\n",
      "          'astonishingly': 1,\n",
      "          'enhance': 1,\n",
      "          'better': 1,\n",
      "          'nnot': 1,\n",
      "          'necessarily': 1,\n",
      "          'leaps': 1,\n",
      "          'bounds': 1,\n",
      "          'steady': 1,\n",
      "          'rate': 1,\n",
      "          'improvement': 1,\n",
      "          'apparent': 1,\n",
      "          'definitely': 1,\n",
      "          'shows': 1,\n",
      "          'nthere': 1,\n",
      "          'achieves': 1,\n",
      "          'near': 1,\n",
      "          '3d': 1,\n",
      "          'effect': 1,\n",
      "          'number': 1,\n",
      "          'moving': 1,\n",
      "          'trees': 1,\n",
      "          'dizzying': 1,\n",
      "          'way': 1,\n",
      "          'slides': 1,\n",
      "          'tree': 1,\n",
      "          'limbs': 1,\n",
      "          'trunks': 1,\n",
      "          'reminiscent': 1,\n",
      "          'skateboarding': 1,\n",
      "          'rollerblading': 1,\n",
      "          'maneuvers': 1,\n",
      "          'extreme': 1,\n",
      "          'seem': 1,\n",
      "          'call': 1,\n",
      "          'animators': 1,\n",
      "          'chosen': 1,\n",
      "          'devote': 1,\n",
      "          'inordinate': 1,\n",
      "          'amount': 1,\n",
      "          'effort': 1,\n",
      "          'utilizing': 1,\n",
      "          'computerassisted': 1,\n",
      "          'process': 1,\n",
      "          'makes': 1,\n",
      "          'breathtaking': 1,\n",
      "          'nlasting': 1,\n",
      "          'seconds': 1,\n",
      "          'signature': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'beauty': 1,\n",
      "          'beast': 1,\n",
      "          'castle': 1,\n",
      "          'ballroom': 1,\n",
      "          'rendered': 1,\n",
      "          'stunning': 1,\n",
      "          'detail': 1,\n",
      "          'nas': 1,\n",
      "          'talent': 1,\n",
      "          'snuff': 1,\n",
      "          'convincingly': 1,\n",
      "          'believe': 1,\n",
      "          'convictions': 1,\n",
      "          'characters': 1,\n",
      "          'poor': 1,\n",
      "          'choice': 1,\n",
      "          'casting': 1,\n",
      "          'however': 1,\n",
      "          'ngoing': 1,\n",
      "          'didnt': 1,\n",
      "          'part': 1,\n",
      "          'started': 1,\n",
      "          'talking': 1,\n",
      "          'recognized': 1,\n",
      "          'nher': 1,\n",
      "          'performance': 1,\n",
      "          'fine': 1,\n",
      "          'rest': 1,\n",
      "          'kept': 1,\n",
      "          'thats': 1,\n",
      "          'ndistracting': 1,\n",
      "          'least': 1,\n",
      "          'nill': 1,\n",
      "          'admit': 1,\n",
      "          'ive': 1,\n",
      "          'never': 1,\n",
      "          'read': 1,\n",
      "          'edgar': 1,\n",
      "          'rice': 1,\n",
      "          'burroughs': 1,\n",
      "          'couldnt': 1,\n",
      "          'stays': 1,\n",
      "          'book': 1,\n",
      "          'unless': 1,\n",
      "          'youre': 1,\n",
      "          'purist': 1,\n",
      "          'objections': 1,\n",
      "          'solid': 1,\n",
      "          'performances': 1,\n",
      "          'adventure': 1,\n",
      "          'bit': 1,\n",
      "          'great': 1,\n",
      "          'appeal': 1,\n",
      "          'kids': 1,\n",
      "          'kid': 1,\n",
      "          'nnote': 1,\n",
      "          'wrote': 1,\n",
      "          'review': 1,\n",
      "          'mulan': 1,\n",
      "          'ago': 1,\n",
      "          'promotional': 1,\n",
      "          'merchandising': 1,\n",
      "          'tieins': 1,\n",
      "          'prevalent': 1,\n",
      "          'release': 1,\n",
      "          'ill': 1,\n",
      "          'mcdonalds': 1,\n",
      "          'yesterday': 1,\n",
      "          'treat': 1,\n",
      "          'mcflurry': 1,\n",
      "          'cup': 1,\n",
      "          'nnuff': 1,\n",
      "          'said': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'youve': 4,\n",
      "          'got': 4,\n",
      "          'mail': 4,\n",
      "          'ephrons': 4,\n",
      "          'two': 4,\n",
      "          'hanks': 4,\n",
      "          'people': 3,\n",
      "          'ryan': 3,\n",
      "          'via': 2,\n",
      "          'email': 2,\n",
      "          'revealing': 2,\n",
      "          'true': 2,\n",
      "          'film': 2,\n",
      "          'nryan': 2,\n",
      "          'ntheir': 2,\n",
      "          'even': 2,\n",
      "          'one': 2,\n",
      "          'nand': 2,\n",
      "          'scenes': 2,\n",
      "          'earlier': 2,\n",
      "          'nthe': 2,\n",
      "          'movie': 2,\n",
      "          'script': 2,\n",
      "          'nice': 2,\n",
      "          'timely': 1,\n",
      "          'romance': 1,\n",
      "          'impersonal': 1,\n",
      "          'computerdriven': 1,\n",
      "          'decade': 1,\n",
      "          'ntwo': 1,\n",
      "          'whove': 1,\n",
      "          'never': 1,\n",
      "          'met': 1,\n",
      "          'confide': 1,\n",
      "          'without': 1,\n",
      "          'identities': 1,\n",
      "          'nnora': 1,\n",
      "          'contemporary': 1,\n",
      "          'update': 1,\n",
      "          'shop': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'retains': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'despise': 1,\n",
      "          'unwittingly': 1,\n",
      "          'become': 1,\n",
      "          'enamored': 1,\n",
      "          'anonymous': 1,\n",
      "          'correspondence': 1,\n",
      "          'nephron': 1,\n",
      "          'cowrote': 1,\n",
      "          'sister': 1,\n",
      "          'delia': 1,\n",
      "          'well': 1,\n",
      "          'directed': 1,\n",
      "          'knew': 1,\n",
      "          'reteaming': 1,\n",
      "          'tom': 1,\n",
      "          'meg': 1,\n",
      "          'atodds': 1,\n",
      "          'couple': 1,\n",
      "          'kathleen': 1,\n",
      "          'kelly': 1,\n",
      "          'owner': 1,\n",
      "          'small': 1,\n",
      "          'childrens': 1,\n",
      "          'bookstore': 1,\n",
      "          'joe': 1,\n",
      "          'fox': 1,\n",
      "          'heads': 1,\n",
      "          'chain': 1,\n",
      "          'mega': 1,\n",
      "          'bookstores': 1,\n",
      "          'think': 1,\n",
      "          'barnes': 1,\n",
      "          'noble': 1,\n",
      "          'charm': 1,\n",
      "          'chemistry': 1,\n",
      "          'glue': 1,\n",
      "          'binds': 1,\n",
      "          'scripts': 1,\n",
      "          'rough': 1,\n",
      "          'spots': 1,\n",
      "          'nfor': 1,\n",
      "          'invested': 1,\n",
      "          'much': 1,\n",
      "          'effort': 1,\n",
      "          'protagonists': 1,\n",
      "          'give': 1,\n",
      "          'short': 1,\n",
      "          'shrift': 1,\n",
      "          'talented': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'parker': 1,\n",
      "          'posey': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'jean': 1,\n",
      "          'stapleton': 1,\n",
      "          'steve': 1,\n",
      "          'zahn': 1,\n",
      "          'nyet': 1,\n",
      "          'really': 1,\n",
      "          'going': 1,\n",
      "          'complain': 1,\n",
      "          'know': 1,\n",
      "          'audience': 1,\n",
      "          'paying': 1,\n",
      "          'public': 1,\n",
      "          'wants': 1,\n",
      "          'kept': 1,\n",
      "          'busy': 1,\n",
      "          'none': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'nhanks': 1,\n",
      "          'decent': 1,\n",
      "          'guy': 1,\n",
      "          'routine': 1,\n",
      "          'pat': 1,\n",
      "          'yet': 1,\n",
      "          'time': 1,\n",
      "          'seems': 1,\n",
      "          'effortless': 1,\n",
      "          'spontaneous': 1,\n",
      "          'fresh': 1,\n",
      "          'smoothly': 1,\n",
      "          'moves': 1,\n",
      "          'spunky': 1,\n",
      "          'vulnerable': 1,\n",
      "          'sexy': 1,\n",
      "          'touch': 1,\n",
      "          'winsomeness': 1,\n",
      "          'added': 1,\n",
      "          'brew': 1,\n",
      "          'together': 1,\n",
      "          'sparkle': 1,\n",
      "          'though': 1,\n",
      "          'lack': 1,\n",
      "          'nostalgic': 1,\n",
      "          'romanticism': 1,\n",
      "          'sleepless': 1,\n",
      "          'seattle': 1,\n",
      "          'shadow': 1,\n",
      "          'hit': 1,\n",
      "          'hangs': 1,\n",
      "          'like': 1,\n",
      "          'driedup': 1,\n",
      "          'mistletoe': 1,\n",
      "          'sparks': 1,\n",
      "          'created': 1,\n",
      "          'necessity': 1,\n",
      "          'evident': 1,\n",
      "          'ntrue': 1,\n",
      "          'seeking': 1,\n",
      "          'love': 1,\n",
      "          'comic': 1,\n",
      "          'less': 1,\n",
      "          'poignant': 1,\n",
      "          'predecessor': 1,\n",
      "          'witty': 1,\n",
      "          'sharp': 1,\n",
      "          'nhowever': 1,\n",
      "          'director': 1,\n",
      "          'nora': 1,\n",
      "          'ephron': 1,\n",
      "          'bit': 1,\n",
      "          'uneven': 1,\n",
      "          'nsome': 1,\n",
      "          'drag': 1,\n",
      "          'others': 1,\n",
      "          'especially': 1,\n",
      "          'souls': 1,\n",
      "          'crisp': 1,\n",
      "          'tidy': 1,\n",
      "          'nalso': 1,\n",
      "          'gets': 1,\n",
      "          'sloppy': 1,\n",
      "          'toward': 1,\n",
      "          'end': 1,\n",
      "          'characters': 1,\n",
      "          'merely': 1,\n",
      "          'disappearing': 1,\n",
      "          'story': 1,\n",
      "          'na': 1,\n",
      "          'romantic': 1,\n",
      "          'soundtrack': 1,\n",
      "          'adds': 1,\n",
      "          'datenight': 1,\n",
      "          'special': 1,\n",
      "          'noverall': 1,\n",
      "          'lush': 1,\n",
      "          'cute': 1,\n",
      "          'outing': 1,\n",
      "          'taking': 1,\n",
      "          'advantage': 1,\n",
      "          'star': 1,\n",
      "          'appeal': 1,\n",
      "          'leads': 1,\n",
      "          'nits': 1,\n",
      "          'holiday': 1,\n",
      "          'holding': 1,\n",
      "          'hands': 1,\n",
      "          'snuggling': 1,\n",
      "          'ncommitted': 1,\n",
      "          'lifelong': 1,\n",
      "          'learning': 1,\n",
      "          'effective': 1,\n",
      "          'communication': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'characters': 9,\n",
      "          'fellini': 7,\n",
      "          'one': 6,\n",
      "          'amarcord': 6,\n",
      "          'even': 6,\n",
      "          'rimini': 5,\n",
      "          'could': 4,\n",
      "          'neven': 4,\n",
      "          'popular': 4,\n",
      "          'italian': 4,\n",
      "          'views': 4,\n",
      "          'local': 4,\n",
      "          'often': 4,\n",
      "          'fellinis': 4,\n",
      "          'scenes': 4,\n",
      "          'life': 3,\n",
      "          'town': 3,\n",
      "          '1930s': 3,\n",
      "          'depict': 3,\n",
      "          'many': 3,\n",
      "          'played': 3,\n",
      "          'past': 3,\n",
      "          'way': 3,\n",
      "          'fantasies': 3,\n",
      "          'opportunity': 3,\n",
      "          'nfellini': 3,\n",
      "          'movies': 2,\n",
      "          'small': 2,\n",
      "          'human': 2,\n",
      "          'dark': 2,\n",
      "          'later': 2,\n",
      "          'non': 2,\n",
      "          'hand': 2,\n",
      "          'ocean': 2,\n",
      "          'films': 2,\n",
      "          'view': 2,\n",
      "          'nthis': 2,\n",
      "          'comedy': 2,\n",
      "          'federico': 2,\n",
      "          'gave': 2,\n",
      "          'series': 2,\n",
      "          'well': 2,\n",
      "          'movie': 2,\n",
      "          'sexual': 2,\n",
      "          'mussolinis': 2,\n",
      "          'regime': 2,\n",
      "          'nostalgia': 2,\n",
      "          'probably': 2,\n",
      "          'people': 2,\n",
      "          'actually': 2,\n",
      "          'like': 2,\n",
      "          'much': 2,\n",
      "          'nevery': 2,\n",
      "          'would': 2,\n",
      "          'clearly': 2,\n",
      "          'word': 2,\n",
      "          'nothing': 2,\n",
      "          'remember': 2,\n",
      "          'doesnt': 2,\n",
      "          'whether': 2,\n",
      "          'place': 2,\n",
      "          'reality': 2,\n",
      "          'humour': 2,\n",
      "          'grotesque': 2,\n",
      "          'caricatures': 2,\n",
      "          'especially': 2,\n",
      "          'becomes': 2,\n",
      "          'almost': 2,\n",
      "          'magical': 2,\n",
      "          'nbecause': 2,\n",
      "          'real': 2,\n",
      "          'fascism': 2,\n",
      "          'gets': 2,\n",
      "          'colours': 2,\n",
      "          'warmth': 2,\n",
      "          'atmosphere': 2,\n",
      "          'effects': 2,\n",
      "          'talent': 2,\n",
      "          'also': 2,\n",
      "          'knows': 2,\n",
      "          'everyone': 2,\n",
      "          'music': 2,\n",
      "          'according': 1,\n",
      "          'hollywood': 1,\n",
      "          'made': 1,\n",
      "          'last': 1,\n",
      "          'decades': 1,\n",
      "          'worst': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'worse': 1,\n",
      "          'fate': 1,\n",
      "          'awaits': 1,\n",
      "          'unfortunate': 1,\n",
      "          'grow': 1,\n",
      "          'godforsaken': 1,\n",
      "          'places': 1,\n",
      "          'forced': 1,\n",
      "          'live': 1,\n",
      "          'forever': 1,\n",
      "          'traumatised': 1,\n",
      "          'experience': 1,\n",
      "          'seems': 1,\n",
      "          'something': 1,\n",
      "          'atlantic': 1,\n",
      "          'divides': 1,\n",
      "          'europe': 1,\n",
      "          'america': 1,\n",
      "          'beloved': 1,\n",
      "          'european': 1,\n",
      "          'takes': 1,\n",
      "          'exactly': 1,\n",
      "          'opposite': 1,\n",
      "          '1974': 1,\n",
      "          'famous': 1,\n",
      "          'director': 1,\n",
      "          'inspiration': 1,\n",
      "          'numerous': 1,\n",
      "          'imitations': 1,\n",
      "          'homages': 1,\n",
      "          'led': 1,\n",
      "          'american': 1,\n",
      "          'screen': 1,\n",
      "          'artists': 1,\n",
      "          'adopt': 1,\n",
      "          'heretical': 1,\n",
      "          'benefits': 1,\n",
      "          'nthe': 1,\n",
      "          'based': 1,\n",
      "          'screenplay': 1,\n",
      "          'tonino': 1,\n",
      "          'guerra': 1,\n",
      "          'lacks': 1,\n",
      "          'plot': 1,\n",
      "          'usual': 1,\n",
      "          'sense': 1,\n",
      "          'ninstead': 1,\n",
      "          'follow': 1,\n",
      "          'year': 1,\n",
      "          'summer': 1,\n",
      "          'resort': 1,\n",
      "          'short': 1,\n",
      "          'vignettes': 1,\n",
      "          'various': 1,\n",
      "          'events': 1,\n",
      "          'customs': 1,\n",
      "          'colourful': 1,\n",
      "          'nalthough': 1,\n",
      "          'occasionally': 1,\n",
      "          'take': 1,\n",
      "          'role': 1,\n",
      "          'narrator': 1,\n",
      "          'concentrates': 1,\n",
      "          'nominal': 1,\n",
      "          'protagonist': 1,\n",
      "          '14year': 1,\n",
      "          'old': 1,\n",
      "          'boy': 1,\n",
      "          'titta': 1,\n",
      "          'bruno': 1,\n",
      "          'zanin': 1,\n",
      "          'chronicles': 1,\n",
      "          'frustrations': 1,\n",
      "          'obsession': 1,\n",
      "          'beauty': 1,\n",
      "          'queen': 1,\n",
      "          'named': 1,\n",
      "          'gradisca': 1,\n",
      "          'magali': 1,\n",
      "          'noel': 1,\n",
      "          'problems': 1,\n",
      "          'lovingly': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'family': 1,\n",
      "          'troubles': 1,\n",
      "          'father': 1,\n",
      "          'armando': 1,\n",
      "          'brancia': 1,\n",
      "          'fascist': 1,\n",
      "          'namarcord': 1,\n",
      "          'noted': 1,\n",
      "          'ultimate': 1,\n",
      "          'explains': 1,\n",
      "          'among': 1,\n",
      "          'dont': 1,\n",
      "          'work': 1,\n",
      "          'member': 1,\n",
      "          'potential': 1,\n",
      "          'audience': 1,\n",
      "          'find': 1,\n",
      "          'part': 1,\n",
      "          'illustrates': 1,\n",
      "          'natural': 1,\n",
      "          'desire': 1,\n",
      "          'paint': 1,\n",
      "          'best': 1,\n",
      "          'possible': 1,\n",
      "          'ndistortion': 1,\n",
      "          'actual': 1,\n",
      "          'subjective': 1,\n",
      "          'interpretation': 1,\n",
      "          'found': 1,\n",
      "          'title': 1,\n",
      "          'badly': 1,\n",
      "          'pronounced': 1,\n",
      "          'phrase': 1,\n",
      "          'dialect': 1,\n",
      "          'nin': 1,\n",
      "          'distorted': 1,\n",
      "          'memories': 1,\n",
      "          'nafter': 1,\n",
      "          'premiere': 1,\n",
      "          'rejected': 1,\n",
      "          'claims': 1,\n",
      "          'autobiographical': 1,\n",
      "          'character': 1,\n",
      "          'matter': 1,\n",
      "          'resembles': 1,\n",
      "          'childhood': 1,\n",
      "          'time': 1,\n",
      "          'resemble': 1,\n",
      "          'situations': 1,\n",
      "          'nfellinis': 1,\n",
      "          'illustrated': 1,\n",
      "          'mixes': 1,\n",
      "          'fantasy': 1,\n",
      "          'naturalistic': 1,\n",
      "          'laced': 1,\n",
      "          'images': 1,\n",
      "          'ncharacters': 1,\n",
      "          'look': 1,\n",
      "          'actors': 1,\n",
      "          'playing': 1,\n",
      "          'deliberately': 1,\n",
      "          'overact': 1,\n",
      "          'women': 1,\n",
      "          'fuel': 1,\n",
      "          'tittas': 1,\n",
      "          'certain': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'gargantuan': 1,\n",
      "          'proportions': 1,\n",
      "          'gradually': 1,\n",
      "          'slide': 1,\n",
      "          'indistinguishable': 1,\n",
      "          'visions': 1,\n",
      "          'everything': 1,\n",
      "          'looks': 1,\n",
      "          'different': 1,\n",
      "          'cases': 1,\n",
      "          'better': 1,\n",
      "          'looked': 1,\n",
      "          'fellinian': 1,\n",
      "          'makeover': 1,\n",
      "          'totalitarian': 1,\n",
      "          'visual': 1,\n",
      "          'spectacle': 1,\n",
      "          'explaining': 1,\n",
      "          'similar': 1,\n",
      "          'regimes': 1,\n",
      "          'enjoyed': 1,\n",
      "          'support': 1,\n",
      "          'throughout': 1,\n",
      "          'history': 1,\n",
      "          'nwhen': 1,\n",
      "          'fascists': 1,\n",
      "          'finally': 1,\n",
      "          'show': 1,\n",
      "          'true': 1,\n",
      "          'begin': 1,\n",
      "          'torturing': 1,\n",
      "          'opponents': 1,\n",
      "          'macabre': 1,\n",
      "          'nunlike': 1,\n",
      "          'colleagues': 1,\n",
      "          '1970s': 1,\n",
      "          'used': 1,\n",
      "          'period': 1,\n",
      "          'setting': 1,\n",
      "          'explicitly': 1,\n",
      "          'condemn': 1,\n",
      "          'serve': 1,\n",
      "          'fashionable': 1,\n",
      "          'political': 1,\n",
      "          'agenda': 1,\n",
      "          'care': 1,\n",
      "          'politics': 1,\n",
      "          'nlack': 1,\n",
      "          'selfrighteous': 1,\n",
      "          'moral': 1,\n",
      "          'perspective': 1,\n",
      "          'compensated': 1,\n",
      "          'humanistic': 1,\n",
      "          'approach': 1,\n",
      "          'neach': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'regardless': 1,\n",
      "          'age': 1,\n",
      "          'gender': 1,\n",
      "          'social': 1,\n",
      "          'class': 1,\n",
      "          'physical': 1,\n",
      "          'appearance': 1,\n",
      "          'given': 1,\n",
      "          'express': 1,\n",
      "          'dreams': 1,\n",
      "          'fears': 1,\n",
      "          'treats': 1,\n",
      "          'affection': 1,\n",
      "          'paints': 1,\n",
      "          'democratic': 1,\n",
      "          'spirit': 1,\n",
      "          'viewed': 1,\n",
      "          'humane': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'keeps': 1,\n",
      "          'general': 1,\n",
      "          'feel': 1,\n",
      "          'good': 1,\n",
      "          'despite': 1,\n",
      "          'depicting': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'melancholic': 1,\n",
      "          'tragic': 1,\n",
      "          'moments': 1,\n",
      "          'couldnt': 1,\n",
      "          'produce': 1,\n",
      "          'without': 1,\n",
      "          'using': 1,\n",
      "          'directorial': 1,\n",
      "          'personal': 1,\n",
      "          'touch': 1,\n",
      "          'nvignettes': 1,\n",
      "          'arent': 1,\n",
      "          'memorable': 1,\n",
      "          'uses': 1,\n",
      "          'camera': 1,\n",
      "          'painting': 1,\n",
      "          'bright': 1,\n",
      "          'use': 1,\n",
      "          'locations': 1,\n",
      "          'location': 1,\n",
      "          'happens': 1,\n",
      "          'luxurious': 1,\n",
      "          'hotel': 1,\n",
      "          'brightcoloured': 1,\n",
      "          'beach': 1,\n",
      "          'rural': 1,\n",
      "          'countryside': 1,\n",
      "          'downtoearth': 1,\n",
      "          'streets': 1,\n",
      "          'dimension': 1,\n",
      "          'snowfall': 1,\n",
      "          'lack': 1,\n",
      "          'credible': 1,\n",
      "          'special': 1,\n",
      "          'somewhat': 1,\n",
      "          'diminished': 1,\n",
      "          'effect': 1,\n",
      "          'liner': 1,\n",
      "          'scene': 1,\n",
      "          'provided': 1,\n",
      "          'incredible': 1,\n",
      "          'composer': 1,\n",
      "          'longtime': 1,\n",
      "          'associate': 1,\n",
      "          'nino': 1,\n",
      "          'rota': 1,\n",
      "          'nhis': 1,\n",
      "          'theme': 1,\n",
      "          'recognisable': 1,\n",
      "          'relaxing': 1,\n",
      "          'uplifting': 1,\n",
      "          'pieces': 1,\n",
      "          'ever': 1,\n",
      "          'produced': 1,\n",
      "          'nthat': 1,\n",
      "          'alone': 1,\n",
      "          'reason': 1,\n",
      "          'indisputable': 1,\n",
      "          'classics': 1,\n",
      "          'seventh': 1,\n",
      "          'art': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'joe': 6,\n",
      "          'mighty': 5,\n",
      "          'young': 5,\n",
      "          'film': 5,\n",
      "          'nthe': 4,\n",
      "          'nits': 4,\n",
      "          'bad': 3,\n",
      "          'see': 3,\n",
      "          'nim': 2,\n",
      "          'thing': 2,\n",
      "          'nbut': 2,\n",
      "          'things': 2,\n",
      "          'every': 2,\n",
      "          'doesnt': 2,\n",
      "          'family': 2,\n",
      "          'fun': 2,\n",
      "          'half': 2,\n",
      "          'nit': 2,\n",
      "          'watch': 2,\n",
      "          'written': 1,\n",
      "          'mark': 1,\n",
      "          'rosenthal': 1,\n",
      "          'lawrence': 1,\n",
      "          'konner': 1,\n",
      "          'nstarring': 1,\n",
      "          'charlize': 1,\n",
      "          'theron': 1,\n",
      "          'bill': 1,\n",
      "          'paxton': 1,\n",
      "          'david': 1,\n",
      "          'paymer': 1,\n",
      "          'nas': 1,\n",
      "          'reviewed': 1,\n",
      "          'james': 1,\n",
      "          'brundage': 1,\n",
      "          'beginning': 1,\n",
      "          'get': 1,\n",
      "          'fed': 1,\n",
      "          'nover': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'critic': 1,\n",
      "          'kept': 1,\n",
      "          'going': 1,\n",
      "          'moderate': 1,\n",
      "          'balance': 1,\n",
      "          'films': 1,\n",
      "          'good': 1,\n",
      "          'balances': 1,\n",
      "          'ni': 1,\n",
      "          'try': 1,\n",
      "          'equal': 1,\n",
      "          'proportions': 1,\n",
      "          'disneys': 1,\n",
      "          'remake': 1,\n",
      "          'marks': 1,\n",
      "          'fourth': 1,\n",
      "          'week': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'truly': 1,\n",
      "          'terrible': 1,\n",
      "          'backwards': 1,\n",
      "          'machismo': 1,\n",
      "          'suppose': 1,\n",
      "          'urge': 1,\n",
      "          'loathe': 1,\n",
      "          'need': 1,\n",
      "          'nand': 1,\n",
      "          'know': 1,\n",
      "          'qualify': 1,\n",
      "          'nfar': 1,\n",
      "          'actually': 1,\n",
      "          'enjoyable': 1,\n",
      "          'appropriate': 1,\n",
      "          'cute': 1,\n",
      "          'cuddly': 1,\n",
      "          'ive': 1,\n",
      "          'seeing': 1,\n",
      "          'since': 1,\n",
      "          'bugs': 1,\n",
      "          'life': 1,\n",
      "          'nmighty': 1,\n",
      "          'tracks': 1,\n",
      "          '2': 1,\n",
      "          '000': 1,\n",
      "          'pound': 1,\n",
      "          'gorilla': 1,\n",
      "          'wilds': 1,\n",
      "          'africa': 1,\n",
      "          'taken': 1,\n",
      "          'reserve': 1,\n",
      "          'ncalifornia': 1,\n",
      "          'n': 1,\n",
      "          'nfor': 1,\n",
      "          'safekeeping': 1,\n",
      "          'nokay': 1,\n",
      "          'na': 1,\n",
      "          'little': 1,\n",
      "          'unrealistic': 1,\n",
      "          'ever': 1,\n",
      "          'said': 1,\n",
      "          'kids': 1,\n",
      "          'slightest': 1,\n",
      "          'hint': 1,\n",
      "          'realism': 1,\n",
      "          'first': 1,\n",
      "          'gorillas': 1,\n",
      "          'mistesque': 1,\n",
      "          'hatred': 1,\n",
      "          'poachers': 1,\n",
      "          'womanofthewild': 1,\n",
      "          'motif': 1,\n",
      "          'second': 1,\n",
      "          'straight': 1,\n",
      "          'parody': 1,\n",
      "          'king': 1,\n",
      "          'kong': 1,\n",
      "          'awestruck': 1,\n",
      "          'onlookers': 1,\n",
      "          'nmark': 1,\n",
      "          'one': 1,\n",
      "          'feeling': 1,\n",
      "          'relaxed': 1,\n",
      "          'point': 1,\n",
      "          'fact': 1,\n",
      "          'extremely': 1,\n",
      "          'uncreative': 1,\n",
      "          'vetern': 1,\n",
      "          'say': 1,\n",
      "          'quite': 1,\n",
      "          'honestly': 1,\n",
      "          'creativity': 1,\n",
      "          'count': 1,\n",
      "          'much': 1,\n",
      "          'nso': 1,\n",
      "          'saves': 1,\n",
      "          'wrath': 1,\n",
      "          'although': 1,\n",
      "          'colleagues': 1,\n",
      "          'cohorts': 1,\n",
      "          'surely': 1,\n",
      "          'bashing': 1,\n",
      "          'moment': 1,\n",
      "          'nthis': 1,\n",
      "          'take': 1,\n",
      "          'girl': 1,\n",
      "          'date': 1,\n",
      "          'nwhen': 1,\n",
      "          'youre': 1,\n",
      "          'right': 1,\n",
      "          'alongside': 1,\n",
      "          'kid': 1,\n",
      "          'normal': 1,\n",
      "          'rights': 1,\n",
      "          'wrongs': 1,\n",
      "          'slip': 1,\n",
      "          'away': 1,\n",
      "          'happens': 1,\n",
      "          'horror': 1,\n",
      "          'action': 1,\n",
      "          'flick': 1,\n",
      "          'becomes': 1,\n",
      "          'nall': 1,\n",
      "          'enjoy': 1,\n",
      "          'shut': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'notting': 7,\n",
      "          'hills': 4,\n",
      "          'hill': 4,\n",
      "          'william': 4,\n",
      "          'anna': 4,\n",
      "          'williams': 4,\n",
      "          'one': 3,\n",
      "          'nthe': 2,\n",
      "          'crowd': 2,\n",
      "          'love': 2,\n",
      "          'lot': 2,\n",
      "          'day': 2,\n",
      "          'roberts': 2,\n",
      "          'common': 2,\n",
      "          'first': 2,\n",
      "          'n': 2,\n",
      "          'like': 2,\n",
      "          'four': 2,\n",
      "          'weddings': 2,\n",
      "          'enough': 2,\n",
      "          'worth': 2,\n",
      "          'around': 2,\n",
      "          'nearly': 2,\n",
      "          'best': 2,\n",
      "          'nif': 2,\n",
      "          'especially': 2,\n",
      "          'things': 2,\n",
      "          'trailer': 1,\n",
      "          'awful': 1,\n",
      "          'laughless': 1,\n",
      "          'schmaltzy': 1,\n",
      "          'montage': 1,\n",
      "          'movie': 1,\n",
      "          'desperately': 1,\n",
      "          'marketed': 1,\n",
      "          'antiphantom': 1,\n",
      "          'menace': 1,\n",
      "          'lovelorn': 1,\n",
      "          'females': 1,\n",
      "          'ignored': 1,\n",
      "          'letter': 1,\n",
      "          'nand': 1,\n",
      "          'apparently': 1,\n",
      "          'worked': 1,\n",
      "          'nperhaps': 1,\n",
      "          'presence': 1,\n",
      "          'julia': 1,\n",
      "          'robertswhose': 1,\n",
      "          'allure': 1,\n",
      "          'beyond': 1,\n",
      "          'perfect': 1,\n",
      "          'teeth': 1,\n",
      "          'still': 1,\n",
      "          'escapes': 1,\n",
      "          'mehad': 1,\n",
      "          'opening': 1,\n",
      "          'weekend': 1,\n",
      "          'success': 1,\n",
      "          'films': 1,\n",
      "          'staying': 1,\n",
      "          'power': 1,\n",
      "          'based': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'nallow': 1,\n",
      "          'spread': 1,\n",
      "          'good': 1,\n",
      "          'buzz': 1,\n",
      "          'ngrant': 1,\n",
      "          'stars': 1,\n",
      "          'thacker': 1,\n",
      "          'travelbookstore': 1,\n",
      "          'owner': 1,\n",
      "          'works': 1,\n",
      "          'resides': 1,\n",
      "          'tiny': 1,\n",
      "          'english': 1,\n",
      "          'district': 1,\n",
      "          'called': 1,\n",
      "          'ninto': 1,\n",
      "          'shop': 1,\n",
      "          'wanders': 1,\n",
      "          'famous': 1,\n",
      "          'actress': 1,\n",
      "          'scott': 1,\n",
      "          'na': 1,\n",
      "          'thief': 1,\n",
      "          'spilled': 1,\n",
      "          'orange': 1,\n",
      "          'juice': 1,\n",
      "          'stilted': 1,\n",
      "          'conversation': 1,\n",
      "          'leads': 1,\n",
      "          'highly': 1,\n",
      "          'impetuous': 1,\n",
      "          'improbable': 1,\n",
      "          'kiss': 1,\n",
      "          'ndays': 1,\n",
      "          'later': 1,\n",
      "          'sneaks': 1,\n",
      "          'hotel': 1,\n",
      "          'suite': 1,\n",
      "          'guise': 1,\n",
      "          'magazine': 1,\n",
      "          'journalist': 1,\n",
      "          'begins': 1,\n",
      "          'passionate': 1,\n",
      "          'albeit': 1,\n",
      "          'surreptitious': 1,\n",
      "          'affair': 1,\n",
      "          'aside': 1,\n",
      "          'portrayal': 1,\n",
      "          'press': 1,\n",
      "          'junkets': 1,\n",
      "          'deadly': 1,\n",
      "          'accurate': 1,\n",
      "          'nonly': 1,\n",
      "          'annas': 1,\n",
      "          'celebrityor': 1,\n",
      "          'lack': 1,\n",
      "          'thereofthreatens': 1,\n",
      "          'drive': 1,\n",
      "          'wedge': 1,\n",
      "          'nrichard': 1,\n",
      "          'curtis': 1,\n",
      "          'tapped': 1,\n",
      "          'fantasy': 1,\n",
      "          'considered': 1,\n",
      "          'least': 1,\n",
      "          'halfhour': 1,\n",
      "          'pictures': 1,\n",
      "          'beauty': 1,\n",
      "          'beast': 1,\n",
      "          'scenario': 1,\n",
      "          'romantic': 1,\n",
      "          'escapism': 1,\n",
      "          'highest': 1,\n",
      "          'order': 1,\n",
      "          'nas': 1,\n",
      "          'groundhog': 1,\n",
      "          'pleasantville': 1,\n",
      "          'watching': 1,\n",
      "          'highconcept': 1,\n",
      "          'comedy': 1,\n",
      "          'constantly': 1,\n",
      "          'imagines': 1,\n",
      "          'himherself': 1,\n",
      "          'lead': 1,\n",
      "          'ordinaryness': 1,\n",
      "          'entices': 1,\n",
      "          'spoiled': 1,\n",
      "          'bored': 1,\n",
      "          'ncurtis': 1,\n",
      "          'previously': 1,\n",
      "          'penned': 1,\n",
      "          'funeral': 1,\n",
      "          'also': 1,\n",
      "          'smart': 1,\n",
      "          'know': 1,\n",
      "          'unlikely': 1,\n",
      "          'couples': 1,\n",
      "          'situation': 1,\n",
      "          'fuel': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'entertainment': 1,\n",
      "          'finest': 1,\n",
      "          'moments': 1,\n",
      "          'revolve': 1,\n",
      "          'eccentric': 1,\n",
      "          'friends': 1,\n",
      "          'family': 1,\n",
      "          'nby': 1,\n",
      "          'dear': 1,\n",
      "          'reader': 1,\n",
      "          'youve': 1,\n",
      "          'probably': 1,\n",
      "          'heard': 1,\n",
      "          'rhys': 1,\n",
      "          'ifans': 1,\n",
      "          'performance': 1,\n",
      "          'imbecilic': 1,\n",
      "          'welsh': 1,\n",
      "          'flatmate': 1,\n",
      "          'nyes': 1,\n",
      "          'hes': 1,\n",
      "          'pleaser': 1,\n",
      "          'walking': 1,\n",
      "          'sight': 1,\n",
      "          'gag': 1,\n",
      "          'character': 1,\n",
      "          'involving': 1,\n",
      "          'wheelchairbound': 1,\n",
      "          'appropriately': 1,\n",
      "          'named': 1,\n",
      "          'bella': 1,\n",
      "          'mckee': 1,\n",
      "          'anguished': 1,\n",
      "          'waitress': 1,\n",
      "          'naked': 1,\n",
      "          'max': 1,\n",
      "          'tom': 1,\n",
      "          'mcinnerny': 1,\n",
      "          'lousy': 1,\n",
      "          'chef': 1,\n",
      "          'husband': 1,\n",
      "          'nin': 1,\n",
      "          'movies': 1,\n",
      "          'sequence': 1,\n",
      "          'company': 1,\n",
      "          'sit': 1,\n",
      "          'bloated': 1,\n",
      "          'maxs': 1,\n",
      "          'latest': 1,\n",
      "          'concoction': 1,\n",
      "          'hold': 1,\n",
      "          'contest': 1,\n",
      "          'last': 1,\n",
      "          'brownie': 1,\n",
      "          'table': 1,\n",
      "          'goes': 1,\n",
      "          'diner': 1,\n",
      "          'saddest': 1,\n",
      "          'life': 1,\n",
      "          'scene': 1,\n",
      "          'ends': 1,\n",
      "          'british': 1,\n",
      "          'writer': 1,\n",
      "          'would': 1,\n",
      "          'end': 1,\n",
      "          'anything': 1,\n",
      "          'fantastic': 1,\n",
      "          'bits': 1,\n",
      "          'dull': 1,\n",
      "          'main': 1,\n",
      "          'plots': 1,\n",
      "          'dramatic': 1,\n",
      "          'impact': 1,\n",
      "          'nroberts': 1,\n",
      "          'grant': 1,\n",
      "          'appealing': 1,\n",
      "          'relationship': 1,\n",
      "          'convolutedly': 1,\n",
      "          'interrupted': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'suffered': 1,\n",
      "          'similar': 1,\n",
      "          'flaws': 1,\n",
      "          'ultimately': 1,\n",
      "          'thing': 1,\n",
      "          'theyre': 1,\n",
      "          'lonely': 1,\n",
      "          'noting': 1,\n",
      "          'grants': 1,\n",
      "          'favour': 1,\n",
      "          'ubiquitous': 1,\n",
      "          'im': 1,\n",
      "          'girl': 1,\n",
      "          'standing': 1,\n",
      "          'across': 1,\n",
      "          'boy': 1,\n",
      "          'asking': 1,\n",
      "          'episode': 1,\n",
      "          'syrupy': 1,\n",
      "          'appears': 1,\n",
      "          'clips': 1,\n",
      "          'features': 1,\n",
      "          'emoting': 1,\n",
      "          'either': 1,\n",
      "          'actor': 1,\n",
      "          'ever': 1,\n",
      "          'done': 1,\n",
      "          'nnotting': 1,\n",
      "          'nonetheless': 1,\n",
      "          'enjoyable': 1,\n",
      "          'visual': 1,\n",
      "          'side': 1,\n",
      "          'appreciated': 1,\n",
      "          'michells': 1,\n",
      "          'playful': 1,\n",
      "          'changingoftheseasons': 1,\n",
      "          'number': 1,\n",
      "          'surprisinly': 1,\n",
      "          'minor': 1,\n",
      "          'gripe': 1,\n",
      "          'lopped': 1,\n",
      "          'egregious': 1,\n",
      "          'epilogue': 1,\n",
      "          'story': 1,\n",
      "          'thrives': 1,\n",
      "          'bring': 1,\n",
      "          'filmmakers': 1,\n",
      "          'work': 1,\n",
      "          'hard': 1,\n",
      "          'tidy': 1,\n",
      "          'leaving': 1,\n",
      "          'imaginations': 1,\n",
      "          'lurch': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'trek': 16,\n",
      "          'first': 9,\n",
      "          'star': 8,\n",
      "          'contact': 6,\n",
      "          'borg': 6,\n",
      "          'series': 5,\n",
      "          'nthe': 5,\n",
      "          'movies': 4,\n",
      "          'film': 4,\n",
      "          'rec': 3,\n",
      "          'arts': 3,\n",
      "          'michael': 3,\n",
      "          'feature': 3,\n",
      "          'cast': 3,\n",
      "          'crew': 3,\n",
      "          'lt': 3,\n",
      "          'cmdr': 3,\n",
      "          'directed': 2,\n",
      "          'nstar': 2,\n",
      "          'dequina': 2,\n",
      "          'pg13': 2,\n",
      "          'familiar': 2,\n",
      "          'pattern': 2,\n",
      "          'scifi': 2,\n",
      "          'nin': 2,\n",
      "          'next': 2,\n",
      "          'generation': 2,\n",
      "          'rest': 2,\n",
      "          'riker': 2,\n",
      "          'laforge': 2,\n",
      "          'troi': 2,\n",
      "          '21stcentury': 2,\n",
      "          'earth': 2,\n",
      "          'queen': 2,\n",
      "          'history': 2,\n",
      "          'enterprise': 2,\n",
      "          'trekkers': 2,\n",
      "          'half': 2,\n",
      "          'script': 2,\n",
      "          'subplot': 2,\n",
      "          'takes': 2,\n",
      "          'cochran': 2,\n",
      "          'story': 2,\n",
      "          'end': 2,\n",
      "          'involving': 2,\n",
      "          'action': 2,\n",
      "          'note': 1,\n",
      "          'followups': 1,\n",
      "          'currentfilms': 1,\n",
      "          'startrek': 1,\n",
      "          'current': 1,\n",
      "          'nonly': 1,\n",
      "          'sf': 1,\n",
      "          'nmoderator': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1996': 1,\n",
      "          'anyone': 1,\n",
      "          'knows': 1,\n",
      "          'evenodd': 1,\n",
      "          'evennumbered': 1,\n",
      "          'installments': 1,\n",
      "          'good': 1,\n",
      "          'oddnumbered': 1,\n",
      "          'ones': 1,\n",
      "          'well': 1,\n",
      "          'notsogood': 1,\n",
      "          'continues': 1,\n",
      "          'new': 1,\n",
      "          'energetic': 1,\n",
      "          'adventure': 1,\n",
      "          'coincidentally': 1,\n",
      "          'eighth': 1,\n",
      "          'entry': 1,\n",
      "          'hugely': 1,\n",
      "          'popular': 1,\n",
      "          'members': 1,\n",
      "          'late': 1,\n",
      "          'television': 1,\n",
      "          'captain': 1,\n",
      "          'jeanluc': 1,\n",
      "          'picard': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          '24thcentury': 1,\n",
      "          'starship': 1,\n",
      "          'enterprisecommander': 1,\n",
      "          'jonathan': 1,\n",
      "          'frakes': 1,\n",
      "          'also': 1,\n",
      "          'android': 1,\n",
      "          'ndata': 1,\n",
      "          'brent': 1,\n",
      "          'spiner': 1,\n",
      "          'ngeordi': 1,\n",
      "          'levar': 1,\n",
      "          'burton': 1,\n",
      "          'nworf': 1,\n",
      "          'dorn': 1,\n",
      "          'dr': 1,\n",
      "          'beverly': 1,\n",
      "          'crusher': 1,\n",
      "          'gates': 1,\n",
      "          'mcfadden': 1,\n",
      "          'counselor': 1,\n",
      "          'deanna': 1,\n",
      "          'marina': 1,\n",
      "          'sirtis': 1,\n",
      "          'travel': 1,\n",
      "          'back': 1,\n",
      "          'battle': 1,\n",
      "          'race': 1,\n",
      "          'cybernetic': 1,\n",
      "          'beings': 1,\n",
      "          'share': 1,\n",
      "          'collective': 1,\n",
      "          'mind': 1,\n",
      "          'alice': 1,\n",
      "          'krige': 1,\n",
      "          'intend': 1,\n",
      "          'alter': 1,\n",
      "          'assimilate': 1,\n",
      "          'humankind': 1,\n",
      "          'racestarting': 1,\n",
      "          'earthorbiting': 1,\n",
      "          '21st': 1,\n",
      "          'century': 1,\n",
      "          'stowaway': 1,\n",
      "          'alfre': 1,\n",
      "          'woodard': 1,\n",
      "          'nthis': 1,\n",
      "          'interesting': 1,\n",
      "          'plotline': 1,\n",
      "          'sure': 1,\n",
      "          'mesmerize': 1,\n",
      "          'everywhere': 1,\n",
      "          'engage': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'unfortunately': 1,\n",
      "          'makes': 1,\n",
      "          'brannon': 1,\n",
      "          'braga': 1,\n",
      "          'ronald': 1,\n",
      "          'moore': 1,\n",
      "          'titlefirst': 1,\n",
      "          'contactrefers': 1,\n",
      "          'place': 1,\n",
      "          'meet': 1,\n",
      "          'legendary': 1,\n",
      "          'scientist': 1,\n",
      "          'zephram': 1,\n",
      "          'james': 1,\n",
      "          'cromwell': 1,\n",
      "          'embark': 1,\n",
      "          'warp': 1,\n",
      "          'speed': 1,\n",
      "          'flight': 1,\n",
      "          'human': 1,\n",
      "          'directly': 1,\n",
      "          'leads': 1,\n",
      "          'extraterrestrials': 1,\n",
      "          'nwhile': 1,\n",
      "          'tie': 1,\n",
      "          'main': 1,\n",
      "          'plot': 1,\n",
      "          'pays': 1,\n",
      "          'interestingly': 1,\n",
      "          'nowhere': 1,\n",
      "          'near': 1,\n",
      "          'exciting': 1,\n",
      "          'battles': 1,\n",
      "          'nnot': 1,\n",
      "          'helping': 1,\n",
      "          'matters': 1,\n",
      "          'tiresome': 1,\n",
      "          'character': 1,\n",
      "          'eccentric': 1,\n",
      "          'whose': 1,\n",
      "          'drunken': 1,\n",
      "          'schtick': 1,\n",
      "          'starts': 1,\n",
      "          'funny': 1,\n",
      "          'becomes': 1,\n",
      "          'onenote': 1,\n",
      "          'though': 1,\n",
      "          'doesnt': 1,\n",
      "          'detract': 1,\n",
      "          'enjoyment': 1,\n",
      "          'whole': 1,\n",
      "          'typical': 1,\n",
      "          'fantasy': 1,\n",
      "          'conviction': 1,\n",
      "          'castmost': 1,\n",
      "          'notably': 1,\n",
      "          'alwaysphenomenal': 1,\n",
      "          'stewartmakes': 1,\n",
      "          'believe': 1,\n",
      "          'care': 1,\n",
      "          'nfrakes': 1,\n",
      "          'making': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'keeps': 1,\n",
      "          'swiftly': 1,\n",
      "          'rolling': 1,\n",
      "          'along': 1,\n",
      "          'delivers': 1,\n",
      "          'goods': 1,\n",
      "          'even': 1,\n",
      "          'upping': 1,\n",
      "          'violence': 1,\n",
      "          'notch': 1,\n",
      "          'bear': 1,\n",
      "          'rating': 1,\n",
      "          'greater': 1,\n",
      "          'effect': 1,\n",
      "          'nst': 1,\n",
      "          'fc': 1,\n",
      "          'bigger': 1,\n",
      "          'budget': 1,\n",
      "          'last': 1,\n",
      "          'outing': 1,\n",
      "          'middling': 1,\n",
      "          'generations': 1,\n",
      "          'definitely': 1,\n",
      "          'shows': 1,\n",
      "          'screenthe': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'especially': 1,\n",
      "          'visual': 1,\n",
      "          'makeup': 1,\n",
      "          'effects': 1,\n",
      "          'outstanding': 1,\n",
      "          'particular': 1,\n",
      "          'nbraga': 1,\n",
      "          'moores': 1,\n",
      "          'mostly': 1,\n",
      "          'sharp': 1,\n",
      "          'please': 1,\n",
      "          'devotees': 1,\n",
      "          'references': 1,\n",
      "          'storyline': 1,\n",
      "          'tv': 1,\n",
      "          'continuity': 1,\n",
      "          'previous': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'ongoing': 1,\n",
      "          'saga': 1,\n",
      "          'datas': 1,\n",
      "          'emotion': 1,\n",
      "          'chip': 1,\n",
      "          'fleeting': 1,\n",
      "          'voyager': 1,\n",
      "          'crossover': 1,\n",
      "          'make': 1,\n",
      "          'squeal': 1,\n",
      "          'delight': 1,\n",
      "          'points': 1,\n",
      "          'made': 1,\n",
      "          'easily': 1,\n",
      "          'accessible': 1,\n",
      "          'less': 1,\n",
      "          'mythos': 1,\n",
      "          'nparamount': 1,\n",
      "          'reportedly': 1,\n",
      "          'worried': 1,\n",
      "          'staying': 1,\n",
      "          'power': 1,\n",
      "          'franchise': 1,\n",
      "          'carrying': 1,\n",
      "          'helm': 1,\n",
      "          'nbased': 1,\n",
      "          'entertaining': 1,\n",
      "          'success': 1,\n",
      "          'id': 1,\n",
      "          'say': 1,\n",
      "          'studio': 1,\n",
      "          'nothing': 1,\n",
      "          'worry': 1,\n",
      "          'least': 1,\n",
      "          'retires': 1,\n",
      "          'wan': 1,\n",
      "          'deep': 1,\n",
      "          'space': 1,\n",
      "          'nine': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'ship': 4,\n",
      "          'africans': 4,\n",
      "          'case': 4,\n",
      "          'slavery': 3,\n",
      "          'one': 3,\n",
      "          'film': 3,\n",
      "          'spanish': 3,\n",
      "          'free': 3,\n",
      "          'property': 3,\n",
      "          'ntheir': 3,\n",
      "          'buren': 3,\n",
      "          'would': 3,\n",
      "          'films': 3,\n",
      "          'bad': 2,\n",
      "          'nafter': 2,\n",
      "          'nthis': 2,\n",
      "          'almost': 2,\n",
      "          'strength': 2,\n",
      "          'slave': 2,\n",
      "          'men': 2,\n",
      "          'home': 2,\n",
      "          'coast': 2,\n",
      "          'amistad': 2,\n",
      "          'new': 2,\n",
      "          'hounsou': 2,\n",
      "          'cinque': 2,\n",
      "          'masters': 2,\n",
      "          'force': 2,\n",
      "          'states': 2,\n",
      "          'american': 2,\n",
      "          'legal': 2,\n",
      "          'question': 2,\n",
      "          'government': 2,\n",
      "          'rights': 2,\n",
      "          'joadson': 2,\n",
      "          'tappan': 2,\n",
      "          'make': 2,\n",
      "          'john': 2,\n",
      "          'calhoun': 2,\n",
      "          'political': 2,\n",
      "          'van': 2,\n",
      "          'judge': 2,\n",
      "          'president': 2,\n",
      "          'supreme': 2,\n",
      "          'court': 2,\n",
      "          'former': 2,\n",
      "          'hopkins': 2,\n",
      "          'difficult': 2,\n",
      "          'nwithout': 2,\n",
      "          'nthere': 2,\n",
      "          'major': 2,\n",
      "          'role': 2,\n",
      "          'humanity': 2,\n",
      "          'hundreds': 1,\n",
      "          'years': 1,\n",
      "          'weve': 1,\n",
      "          'finally': 1,\n",
      "          'figured': 1,\n",
      "          'universal': 1,\n",
      "          'belief': 1,\n",
      "          'weakness': 1,\n",
      "          'director': 1,\n",
      "          'steven': 1,\n",
      "          'spielbergs': 1,\n",
      "          'latest': 1,\n",
      "          'serious': 1,\n",
      "          'nduring': 1,\n",
      "          'late': 1,\n",
      "          '1830s': 1,\n",
      "          'portuguese': 1,\n",
      "          'carries': 1,\n",
      "          'cargo': 1,\n",
      "          'black': 1,\n",
      "          'women': 1,\n",
      "          'kidnapped': 1,\n",
      "          'africas': 1,\n",
      "          'west': 1,\n",
      "          'cuba': 1,\n",
      "          'sold': 1,\n",
      "          'nfiftythree': 1,\n",
      "          'stuffed': 1,\n",
      "          'la': 1,\n",
      "          'word': 1,\n",
      "          'friendship': 1,\n",
      "          'owners': 1,\n",
      "          'nfreeing': 1,\n",
      "          'chains': 1,\n",
      "          'senge': 1,\n",
      "          'pieh': 1,\n",
      "          'djimon': 1,\n",
      "          'renamed': 1,\n",
      "          'leads': 1,\n",
      "          'bloody': 1,\n",
      "          'revolt': 1,\n",
      "          'killing': 1,\n",
      "          'crew': 1,\n",
      "          'remaining': 1,\n",
      "          'sailors': 1,\n",
      "          'return': 1,\n",
      "          'think': 1,\n",
      "          'ninstead': 1,\n",
      "          'heads': 1,\n",
      "          'united': 1,\n",
      "          'boarded': 1,\n",
      "          'naval': 1,\n",
      "          'revolutionaries': 1,\n",
      "          'put': 1,\n",
      "          'trial': 1,\n",
      "          'connecticut': 1,\n",
      "          'murder': 1,\n",
      "          'piracy': 1,\n",
      "          'becomes': 1,\n",
      "          'fighting': 1,\n",
      "          'justly': 1,\n",
      "          'freedom': 1,\n",
      "          'nif': 1,\n",
      "          'belong': 1,\n",
      "          'nsalvage': 1,\n",
      "          'officers': 1,\n",
      "          'captured': 1,\n",
      "          'us': 1,\n",
      "          'defendants': 1,\n",
      "          'pawns': 1,\n",
      "          'several': 1,\n",
      "          'games': 1,\n",
      "          'nabolitionists': 1,\n",
      "          'theodore': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'lewis': 1,\n",
      "          'stellan': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'skarsgard': 1,\n",
      "          'want': 1,\n",
      "          'sees': 1,\n",
      "          'primarily': 1,\n",
      "          'means': 1,\n",
      "          'cause': 1,\n",
      "          'lawyer': 1,\n",
      "          'roger': 1,\n",
      "          'baldwin': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'views': 1,\n",
      "          'simple': 1,\n",
      "          'chance': 1,\n",
      "          'share': 1,\n",
      "          'fees': 1,\n",
      "          'nsouth': 1,\n",
      "          'carolina': 1,\n",
      "          'senator': 1,\n",
      "          'c': 1,\n",
      "          'arliss': 1,\n",
      "          'howard': 1,\n",
      "          'pursues': 1,\n",
      "          'advancement': 1,\n",
      "          'southern': 1,\n",
      "          'npresident': 1,\n",
      "          'martin': 1,\n",
      "          'nigel': 1,\n",
      "          'hawthorne': 1,\n",
      "          'willing': 1,\n",
      "          'result': 1,\n",
      "          'towards': 1,\n",
      "          'ends': 1,\n",
      "          'nwhen': 1,\n",
      "          'verdict': 1,\n",
      "          'looks': 1,\n",
      "          'replaces': 1,\n",
      "          'sympathetic': 1,\n",
      "          'wishes': 1,\n",
      "          'neven': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'frees': 1,\n",
      "          'kidnap': 1,\n",
      "          'victims': 1,\n",
      "          'nat': 1,\n",
      "          'urging': 1,\n",
      "          'appeals': 1,\n",
      "          'populated': 1,\n",
      "          'majority': 1,\n",
      "          'slaveowners': 1,\n",
      "          'littleknown': 1,\n",
      "          'try': 1,\n",
      "          'finding': 1,\n",
      "          'history': 1,\n",
      "          'text': 1,\n",
      "          'book': 1,\n",
      "          'incident': 1,\n",
      "          'americas': 1,\n",
      "          'past': 1,\n",
      "          'gone': 1,\n",
      "          'darker': 1,\n",
      "          'path': 1,\n",
      "          'quincy': 1,\n",
      "          'adams': 1,\n",
      "          'anthony': 1,\n",
      "          'persuaded': 1,\n",
      "          'argue': 1,\n",
      "          'issue': 1,\n",
      "          'easy': 1,\n",
      "          'pickins': 1,\n",
      "          'spielberg': 1,\n",
      "          'nmuch': 1,\n",
      "          'like': 1,\n",
      "          'shindlers': 1,\n",
      "          'list': 1,\n",
      "          'followed': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'follows': 1,\n",
      "          'lost': 1,\n",
      "          'world': 1,\n",
      "          'moral': 1,\n",
      "          'sides': 1,\n",
      "          'ones': 1,\n",
      "          'choose': 1,\n",
      "          'nnazis': 1,\n",
      "          'traders': 1,\n",
      "          'treat': 1,\n",
      "          'groups': 1,\n",
      "          'others': 1,\n",
      "          'less': 1,\n",
      "          'human': 1,\n",
      "          'nits': 1,\n",
      "          'hard': 1,\n",
      "          'see': 1,\n",
      "          'guys': 1,\n",
      "          'ponder': 1,\n",
      "          'directors': 1,\n",
      "          'job': 1,\n",
      "          'nhe': 1,\n",
      "          'story': 1,\n",
      "          'interesting': 1,\n",
      "          'nspielberg': 1,\n",
      "          'succeeds': 1,\n",
      "          'part': 1,\n",
      "          'visual': 1,\n",
      "          'aspect': 1,\n",
      "          'beyond': 1,\n",
      "          'reproach': 1,\n",
      "          'nwhere': 1,\n",
      "          'movie': 1,\n",
      "          'falls': 1,\n",
      "          'bit': 1,\n",
      "          'subtle': 1,\n",
      "          '_people_': 1,\n",
      "          'tale': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'character': 1,\n",
      "          'fleshed': 1,\n",
      "          'ntappan': 1,\n",
      "          'abolitionists': 1,\n",
      "          'symbols': 1,\n",
      "          'humans': 1,\n",
      "          'nvan': 1,\n",
      "          'weak': 1,\n",
      "          'politician': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'rest': 1,\n",
      "          'slaves': 1,\n",
      "          'barely': 1,\n",
      "          'exist': 1,\n",
      "          'dressing': 1,\n",
      "          'set': 1,\n",
      "          'nlike': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'color': 1,\n",
      "          'players': 1,\n",
      "          'white': 1,\n",
      "          'salvation': 1,\n",
      "          'lies': 1,\n",
      "          'acting': 1,\n",
      "          'everyone': 1,\n",
      "          'involved': 1,\n",
      "          'powerful': 1,\n",
      "          'presence': 1,\n",
      "          'models': 1,\n",
      "          'first': 1,\n",
      "          'winner': 1,\n",
      "          'speaking': 1,\n",
      "          'five': 1,\n",
      "          'words': 1,\n",
      "          'english': 1,\n",
      "          'conveys': 1,\n",
      "          'emotion': 1,\n",
      "          'actors': 1,\n",
      "          'thousand': 1,\n",
      "          'lines': 1,\n",
      "          'dialog': 1,\n",
      "          'standout': 1,\n",
      "          'seems': 1,\n",
      "          'making': 1,\n",
      "          'career': 1,\n",
      "          'portraying': 1,\n",
      "          'presidents': 1,\n",
      "          'also': 1,\n",
      "          'played': 1,\n",
      "          'title': 1,\n",
      "          'nixon': 1,\n",
      "          'impassioned': 1,\n",
      "          'speech': 1,\n",
      "          'doddering': 1,\n",
      "          'old': 1,\n",
      "          'man': 1,\n",
      "          'phases': 1,\n",
      "          'rationality': 1,\n",
      "          'among': 1,\n",
      "          'best': 1,\n",
      "          'courtroom': 1,\n",
      "          'drama': 1,\n",
      "          'ever': 1,\n",
      "          'screen': 1,\n",
      "          'great': 1,\n",
      "          'moments': 1,\n",
      "          'nespecially': 1,\n",
      "          'impressive': 1,\n",
      "          'struggle': 1,\n",
      "          'understand': 1,\n",
      "          'going': 1,\n",
      "          'strange': 1,\n",
      "          'land': 1,\n",
      "          'interpretation': 1,\n",
      "          'bible': 1,\n",
      "          'based': 1,\n",
      "          'solely': 1,\n",
      "          'pictures': 1,\n",
      "          'experiences': 1,\n",
      "          'poignant': 1,\n",
      "          'nas': 1,\n",
      "          'grand': 1,\n",
      "          'epic': 1,\n",
      "          'impact': 1,\n",
      "          'focused': 1,\n",
      "          'experience': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'nmore': 1,\n",
      "          'fight': 1,\n",
      "          'made': 1,\n",
      "          'fourstar': 1,\n",
      "          'n': 1,\n",
      "          'michael': 1,\n",
      "          'redman': 1,\n",
      "          'written': 1,\n",
      "          'column': 1,\n",
      "          'real': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'getting': 1,\n",
      "          'around': 1,\n",
      "          'seeing': 1,\n",
      "          '1998': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'wishes': 5,\n",
      "          'devil': 4,\n",
      "          'one': 4,\n",
      "          'soul': 3,\n",
      "          'hell': 3,\n",
      "          'way': 3,\n",
      "          'fraser': 3,\n",
      "          'would': 3,\n",
      "          'could': 3,\n",
      "          'allison': 3,\n",
      "          'n': 3,\n",
      "          'wish': 3,\n",
      "          'bedazzled': 2,\n",
      "          'comedy': 2,\n",
      "          'possess': 2,\n",
      "          'mind': 2,\n",
      "          'nif': 2,\n",
      "          'hurley': 2,\n",
      "          'nits': 2,\n",
      "          'practically': 2,\n",
      "          'next': 2,\n",
      "          'elliot': 2,\n",
      "          'eager': 2,\n",
      "          'coworkers': 2,\n",
      "          'nyet': 2,\n",
      "          'hes': 2,\n",
      "          'nhe': 2,\n",
      "          'never': 2,\n",
      "          'life': 2,\n",
      "          'makes': 2,\n",
      "          'hard': 2,\n",
      "          'little': 2,\n",
      "          'elliots': 2,\n",
      "          'start': 2,\n",
      "          'various': 2,\n",
      "          'fantasies': 2,\n",
      "          'nbut': 2,\n",
      "          'married': 2,\n",
      "          'nhis': 2,\n",
      "          'also': 2,\n",
      "          'funny': 2,\n",
      "          'scenes': 2,\n",
      "          'good': 2,\n",
      "          'reflecting': 1,\n",
      "          'lively': 1,\n",
      "          'seeks': 1,\n",
      "          'pathetic': 1,\n",
      "          'loser': 1,\n",
      "          'sinful': 1,\n",
      "          'thought': 1,\n",
      "          'remains': 1,\n",
      "          'means': 1,\n",
      "          'spend': 1,\n",
      "          'eternity': 1,\n",
      "          'elizabeth': 1,\n",
      "          'portrays': 1,\n",
      "          'fiery': 1,\n",
      "          'demon': 1,\n",
      "          'use': 1,\n",
      "          'pitchfork': 1,\n",
      "          'point': 1,\n",
      "          'nwith': 1,\n",
      "          'pouty': 1,\n",
      "          'lips': 1,\n",
      "          'irresistible': 1,\n",
      "          'british': 1,\n",
      "          'accent': 1,\n",
      "          'wild': 1,\n",
      "          'display': 1,\n",
      "          'haute': 1,\n",
      "          'couture': 1,\n",
      "          'crackles': 1,\n",
      "          'naughtiness': 1,\n",
      "          'fills': 1,\n",
      "          'temptation': 1,\n",
      "          'impossible': 1,\n",
      "          'turn': 1,\n",
      "          'beelzubabe': 1,\n",
      "          'nher': 1,\n",
      "          'target': 1,\n",
      "          'brendan': 1,\n",
      "          'tech': 1,\n",
      "          'support': 1,\n",
      "          'geek': 1,\n",
      "          'clumsy': 1,\n",
      "          'awkward': 1,\n",
      "          'please': 1,\n",
      "          'nto': 1,\n",
      "          'aptly': 1,\n",
      "          'picture': 1,\n",
      "          'remember': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'skit': 1,\n",
      "          'featuring': 1,\n",
      "          'steve': 1,\n",
      "          'copy': 1,\n",
      "          'guy': 1,\n",
      "          'effortlessly': 1,\n",
      "          'irritated': 1,\n",
      "          'unpolished': 1,\n",
      "          'social': 1,\n",
      "          'skills': 1,\n",
      "          'neugene': 1,\n",
      "          'thus': 1,\n",
      "          'loathed': 1,\n",
      "          'feared': 1,\n",
      "          'best': 1,\n",
      "          'stay': 1,\n",
      "          'beyond': 1,\n",
      "          'annoying': 1,\n",
      "          'mannerisms': 1,\n",
      "          'lovable': 1,\n",
      "          'oaf': 1,\n",
      "          'get': 1,\n",
      "          'closer': 1,\n",
      "          'frances': 1,\n",
      "          'oconnor': 1,\n",
      "          'coworker': 1,\n",
      "          'infatuated': 1,\n",
      "          'taken': 1,\n",
      "          'notice': 1,\n",
      "          'nhowever': 1,\n",
      "          'odds': 1,\n",
      "          'getting': 1,\n",
      "          'together': 1,\n",
      "          'snowballs': 1,\n",
      "          'chance': 1,\n",
      "          'dear': 1,\n",
      "          'god': 1,\n",
      "          'prays': 1,\n",
      "          'give': 1,\n",
      "          'anything': 1,\n",
      "          'girl': 1,\n",
      "          'nguess': 1,\n",
      "          'shows': 1,\n",
      "          'nshe': 1,\n",
      "          'offer': 1,\n",
      "          'refuse': 1,\n",
      "          'seven': 1,\n",
      "          'utterly': 1,\n",
      "          'fabulous': 1,\n",
      "          'piddling': 1,\n",
      "          'ntheres': 1,\n",
      "          'even': 1,\n",
      "          'escape': 1,\n",
      "          'clause': 1,\n",
      "          'doesnt': 1,\n",
      "          'go': 1,\n",
      "          'exactly': 1,\n",
      "          'likes': 1,\n",
      "          'need': 1,\n",
      "          'beep': 1,\n",
      "          'guess': 1,\n",
      "          'threedigit': 1,\n",
      "          'number': 1,\n",
      "          'gets': 1,\n",
      "          'nthe': 1,\n",
      "          'remainder': 1,\n",
      "          'film': 1,\n",
      "          'consists': 1,\n",
      "          'incorporate': 1,\n",
      "          'personal': 1,\n",
      "          'desire': 1,\n",
      "          'enormous': 1,\n",
      "          'amounts': 1,\n",
      "          'wealth': 1,\n",
      "          'power': 1,\n",
      "          'fame': 1,\n",
      "          'allisons': 1,\n",
      "          'love': 1,\n",
      "          'sweeping': 1,\n",
      "          'statements': 1,\n",
      "          'want': 1,\n",
      "          'powerful': 1,\n",
      "          'rich': 1,\n",
      "          'soon': 1,\n",
      "          'learn': 1,\n",
      "          'details': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'several': 1,\n",
      "          'times': 1,\n",
      "          'trailers': 1,\n",
      "          'granted': 1,\n",
      "          'finds': 1,\n",
      "          'columbian': 1,\n",
      "          'drug': 1,\n",
      "          'lord': 1,\n",
      "          'eyes': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'napparently': 1,\n",
      "          'skew': 1,\n",
      "          'end': 1,\n",
      "          'strange': 1,\n",
      "          'twist': 1,\n",
      "          'shortcircuits': 1,\n",
      "          'new': 1,\n",
      "          'nsoon': 1,\n",
      "          'made': 1,\n",
      "          'deal': 1,\n",
      "          'ngiven': 1,\n",
      "          'mischievous': 1,\n",
      "          'nature': 1,\n",
      "          'many': 1,\n",
      "          'amusing': 1,\n",
      "          'moments': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'credit': 1,\n",
      "          'goes': 1,\n",
      "          'turns': 1,\n",
      "          'great': 1,\n",
      "          'comic': 1,\n",
      "          'performance': 1,\n",
      "          'ably': 1,\n",
      "          'assumes': 1,\n",
      "          'personas': 1,\n",
      "          'funniest': 1,\n",
      "          'segment': 1,\n",
      "          'sensitive': 1,\n",
      "          'man': 1,\n",
      "          'world': 1,\n",
      "          'nallison': 1,\n",
      "          'becomes': 1,\n",
      "          'frustrated': 1,\n",
      "          'urges': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'nhurley': 1,\n",
      "          'heightens': 1,\n",
      "          'humor': 1,\n",
      "          'quotient': 1,\n",
      "          'especially': 1,\n",
      "          'transitional': 1,\n",
      "          'waits': 1,\n",
      "          'bailing': 1,\n",
      "          'previous': 1,\n",
      "          'clear': 1,\n",
      "          'shes': 1,\n",
      "          'time': 1,\n",
      "          'filmmakers': 1,\n",
      "          'work': 1,\n",
      "          'creating': 1,\n",
      "          'conspicuously': 1,\n",
      "          'avoid': 1,\n",
      "          'developing': 1,\n",
      "          'allegorical': 1,\n",
      "          'underpinnings': 1,\n",
      "          'evil': 1,\n",
      "          'added': 1,\n",
      "          'heft': 1,\n",
      "          'story': 1,\n",
      "          'playing': 1,\n",
      "          'fire': 1,\n",
      "          'nwhat': 1,\n",
      "          'theyve': 1,\n",
      "          'got': 1,\n",
      "          'works': 1,\n",
      "          'easily': 1,\n",
      "          'accept': 1,\n",
      "          'pleasant': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 14,\n",
      "          'kermit': 11,\n",
      "          'muppet': 8,\n",
      "          'hollywood': 8,\n",
      "          'nthe': 5,\n",
      "          'nkermit': 4,\n",
      "          'make': 4,\n",
      "          'star': 3,\n",
      "          'idea': 3,\n",
      "          'continue': 3,\n",
      "          'first': 2,\n",
      "          'frog': 2,\n",
      "          'ages': 2,\n",
      "          'stars': 2,\n",
      "          'begins': 2,\n",
      "          'nit': 2,\n",
      "          'swamp': 2,\n",
      "          'shot': 2,\n",
      "          'bigtime': 2,\n",
      "          'big': 2,\n",
      "          'trip': 2,\n",
      "          'way': 2,\n",
      "          'fozzie': 2,\n",
      "          'doc': 2,\n",
      "          'hopper': 2,\n",
      "          'miss': 2,\n",
      "          'piggy': 2,\n",
      "          'gives': 2,\n",
      "          'best': 1,\n",
      "          'among': 1,\n",
      "          'evergrowing': 1,\n",
      "          'list': 1,\n",
      "          'movies': 1,\n",
      "          'tells': 1,\n",
      "          'story': 1,\n",
      "          'hero': 1,\n",
      "          'came': 1,\n",
      "          'na': 1,\n",
      "          'delightful': 1,\n",
      "          'bursting': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'countless': 1,\n",
      "          '80s': 1,\n",
      "          'today': 1,\n",
      "          'theater': 1,\n",
      "          'anxiously': 1,\n",
      "          'awaiting': 1,\n",
      "          'showing': 1,\n",
      "          'nonce': 1,\n",
      "          'everyone': 1,\n",
      "          'settled': 1,\n",
      "          'inside': 1,\n",
      "          'starts': 1,\n",
      "          'playing': 1,\n",
      "          'banjo': 1,\n",
      "          'singing': 1,\n",
      "          'required': 1,\n",
      "          'jim': 1,\n",
      "          'henson': 1,\n",
      "          'spend': 1,\n",
      "          'hours': 1,\n",
      "          'underwater': 1,\n",
      "          'discovered': 1,\n",
      "          'bernie': 1,\n",
      "          'agent': 1,\n",
      "          'happens': 1,\n",
      "          'upon': 1,\n",
      "          'accident': 1,\n",
      "          'nbernie': 1,\n",
      "          'believes': 1,\n",
      "          'holds': 1,\n",
      "          'much': 1,\n",
      "          'potential': 1,\n",
      "          'become': 1,\n",
      "          'ponders': 1,\n",
      "          'becoming': 1,\n",
      "          'could': 1,\n",
      "          'millions': 1,\n",
      "          'people': 1,\n",
      "          'happy': 1,\n",
      "          'decides': 1,\n",
      "          'leave': 1,\n",
      "          'nalong': 1,\n",
      "          'befriends': 1,\n",
      "          'famous': 1,\n",
      "          'companions': 1,\n",
      "          'beginning': 1,\n",
      "          'bear': 1,\n",
      "          'spending': 1,\n",
      "          'days': 1,\n",
      "          'standup': 1,\n",
      "          'comedy': 1,\n",
      "          'el': 1,\n",
      "          'sleezo': 1,\n",
      "          'cafe': 1,\n",
      "          'owned': 1,\n",
      "          'james': 1,\n",
      "          'coburn': 1,\n",
      "          'two': 1,\n",
      "          'decide': 1,\n",
      "          'teamup': 1,\n",
      "          'nbut': 1,\n",
      "          'charles': 1,\n",
      "          'durning': 1,\n",
      "          'owner': 1,\n",
      "          'chain': 1,\n",
      "          'french': 1,\n",
      "          'fried': 1,\n",
      "          'leg': 1,\n",
      "          'restaurants': 1,\n",
      "          'different': 1,\n",
      "          'nhe': 1,\n",
      "          'wants': 1,\n",
      "          'spokesman': 1,\n",
      "          'humiliated': 1,\n",
      "          'spends': 1,\n",
      "          'avoiding': 1,\n",
      "          'assistants': 1,\n",
      "          'continues': 1,\n",
      "          'meeting': 1,\n",
      "          'rowlf': 1,\n",
      "          'gonzo': 1,\n",
      "          'electric': 1,\n",
      "          'mayhem': 1,\n",
      "          'band': 1,\n",
      "          'muppets': 1,\n",
      "          'share': 1,\n",
      "          'wish': 1,\n",
      "          'noh': 1,\n",
      "          'even': 1,\n",
      "          'celebrities': 1,\n",
      "          'appear': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          'little': 1,\n",
      "          'better': 1,\n",
      "          'including': 1,\n",
      "          'rather': 1,\n",
      "          'funny': 1,\n",
      "          'scene': 1,\n",
      "          'restaurant': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'waiter': 1,\n",
      "          'neventually': 1,\n",
      "          'group': 1,\n",
      "          'nthat': 1,\n",
      "          'finally': 1,\n",
      "          'able': 1,\n",
      "          'elude': 1,\n",
      "          'proclaim': 1,\n",
      "          'freedom': 1,\n",
      "          'nlord': 1,\n",
      "          'lew': 1,\n",
      "          'producer': 1,\n",
      "          'portrayed': 1,\n",
      "          'orson': 1,\n",
      "          'welles': 1,\n",
      "          'stardom': 1,\n",
      "          'goahead': 1,\n",
      "          'produce': 1,\n",
      "          'definitely': 1,\n",
      "          'fun': 1,\n",
      "          'also': 1,\n",
      "          'suredeal': 1,\n",
      "          'one': 1,\n",
      "          'parents': 1,\n",
      "          'watch': 1,\n",
      "          'enjoy': 1,\n",
      "          'along': 1,\n",
      "          'kids': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'company': 5,\n",
      "          'nthe': 5,\n",
      "          'kozmo': 4,\n",
      "          'dotcom': 3,\n",
      "          'com': 3,\n",
      "          'park': 3,\n",
      "          'money': 3,\n",
      "          'films': 3,\n",
      "          'end': 2,\n",
      "          'era': 2,\n",
      "          'nby': 2,\n",
      "          '2000': 2,\n",
      "          'april': 2,\n",
      "          'big': 2,\n",
      "          'operations': 2,\n",
      "          'interviews': 2,\n",
      "          'film': 2,\n",
      "          'nin': 2,\n",
      "          'great': 1,\n",
      "          'things': 1,\n",
      "          'come': 1,\n",
      "          'embodies': 1,\n",
      "          'perfectly': 1,\n",
      "          'nbeneath': 1,\n",
      "          'mound': 1,\n",
      "          'bankruptcy': 1,\n",
      "          'paperwork': 1,\n",
      "          'lies': 1,\n",
      "          'remains': 1,\n",
      "          'former': 1,\n",
      "          'darling': 1,\n",
      "          'nan': 1,\n",
      "          'online': 1,\n",
      "          'convenience': 1,\n",
      "          'store': 1,\n",
      "          'stocked': 1,\n",
      "          'ice': 1,\n",
      "          'cream': 1,\n",
      "          'porn': 1,\n",
      "          'videos': 1,\n",
      "          'basic': 1,\n",
      "          'necessities': 1,\n",
      "          'urban': 1,\n",
      "          'dweller': 1,\n",
      "          'handdelivered': 1,\n",
      "          'couriers': 1,\n",
      "          'within': 1,\n",
      "          'hour': 1,\n",
      "          'ndesigned': 1,\n",
      "          '1997': 1,\n",
      "          'two': 1,\n",
      "          'college': 1,\n",
      "          'roommates': 1,\n",
      "          'joseph': 1,\n",
      "          'parks': 1,\n",
      "          '27': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'goldman': 1,\n",
      "          'sachs': 1,\n",
      "          'banker': 1,\n",
      "          'yong': 1,\n",
      "          'kang': 1,\n",
      "          'flamed': 1,\n",
      "          'three': 1,\n",
      "          'short': 1,\n",
      "          'years': 1,\n",
      "          'raising': 1,\n",
      "          '280': 1,\n",
      "          'million': 1,\n",
      "          'venture': 1,\n",
      "          'capital': 1,\n",
      "          'funding': 1,\n",
      "          'partnerships': 1,\n",
      "          'bigwigs': 1,\n",
      "          'starbucks': 1,\n",
      "          'amazon': 1,\n",
      "          'december': 1,\n",
      "          '1999': 1,\n",
      "          'boasted': 1,\n",
      "          '4': 1,\n",
      "          '000': 1,\n",
      "          'employees': 1,\n",
      "          '11': 1,\n",
      "          'cities': 1,\n",
      "          'barking': 1,\n",
      "          'ceo': 1,\n",
      "          'attracting': 1,\n",
      "          'kinds': 1,\n",
      "          'media': 1,\n",
      "          'attention': 1,\n",
      "          'set': 1,\n",
      "          'ipo': 1,\n",
      "          'may': 1,\n",
      "          'nuntil': 1,\n",
      "          '14': 1,\n",
      "          'day': 1,\n",
      "          'stock': 1,\n",
      "          'market': 1,\n",
      "          'took': 1,\n",
      "          'first': 1,\n",
      "          'dive': 1,\n",
      "          'ending': 1,\n",
      "          'internet': 1,\n",
      "          '13': 1,\n",
      "          '2001': 1,\n",
      "          'ceased': 1,\n",
      "          'nunlike': 1,\n",
      "          'earlier': 1,\n",
      "          'similar': 1,\n",
      "          'documentary': 1,\n",
      "          'startup': 1,\n",
      "          'chronicled': 1,\n",
      "          'rise': 1,\n",
      "          'fall': 1,\n",
      "          'another': 1,\n",
      "          'govworks': 1,\n",
      "          'edreams': 1,\n",
      "          'focuses': 1,\n",
      "          'original': 1,\n",
      "          'founders': 1,\n",
      "          'especially': 1,\n",
      "          'common': 1,\n",
      "          'folks': 1,\n",
      "          'ran': 1,\n",
      "          'daytoday': 1,\n",
      "          'contrast': 1,\n",
      "          'amazing': 1,\n",
      "          'showing': 1,\n",
      "          'cult': 1,\n",
      "          'persona': 1,\n",
      "          'convince': 1,\n",
      "          'anyone': 1,\n",
      "          'idea': 1,\n",
      "          'next': 1,\n",
      "          'thing': 1,\n",
      "          'director': 1,\n",
      "          'wonsuk': 1,\n",
      "          'chin': 1,\n",
      "          'tired': 1,\n",
      "          'die': 1,\n",
      "          'expertly': 1,\n",
      "          'juxtaposes': 1,\n",
      "          'upper': 1,\n",
      "          'management': 1,\n",
      "          'meetings': 1,\n",
      "          'onthespot': 1,\n",
      "          'bike': 1,\n",
      "          'messengers': 1,\n",
      "          'general': 1,\n",
      "          'managers': 1,\n",
      "          'floor': 1,\n",
      "          'staff': 1,\n",
      "          'kept': 1,\n",
      "          'humming': 1,\n",
      "          'images': 1,\n",
      "          'give': 1,\n",
      "          'backbone': 1,\n",
      "          'provide': 1,\n",
      "          'emotional': 1,\n",
      "          'edge': 1,\n",
      "          'ultimate': 1,\n",
      "          'demise': 1,\n",
      "          'satisfying': 1,\n",
      "          'part': 1,\n",
      "          'comes': 1,\n",
      "          'understanding': 1,\n",
      "          'degree': 1,\n",
      "          'expectations': 1,\n",
      "          'numerous': 1,\n",
      "          'ceos': 1,\n",
      "          'commanding': 1,\n",
      "          'titanictype': 1,\n",
      "          'businesses': 1,\n",
      "          'final': 1,\n",
      "          'learn': 1,\n",
      "          'happens': 1,\n",
      "          'dries': 1,\n",
      "          'backers': 1,\n",
      "          'dont': 1,\n",
      "          'return': 1,\n",
      "          'phone': 1,\n",
      "          'calls': 1,\n",
      "          'name': 1,\n",
      "          'game': 1,\n",
      "          'profit': 1,\n",
      "          'couldnt': 1,\n",
      "          'make': 1,\n",
      "          'even': 1,\n",
      "          'dreamers': 1,\n",
      "          'got': 1,\n",
      "          'axe': 1,\n",
      "          'nscreened': 1,\n",
      "          '24th': 1,\n",
      "          'annual': 1,\n",
      "          'mill': 1,\n",
      "          'valley': 1,\n",
      "          'festival': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'lebowski': 7,\n",
      "          'dude': 7,\n",
      "          'one': 6,\n",
      "          'nthe': 6,\n",
      "          'big': 5,\n",
      "          'coen': 4,\n",
      "          'films': 4,\n",
      "          'time': 4,\n",
      "          'fargo': 4,\n",
      "          'lot': 4,\n",
      "          'coens': 4,\n",
      "          'since': 3,\n",
      "          'deeply': 3,\n",
      "          'place': 3,\n",
      "          'jeff': 3,\n",
      "          'never': 3,\n",
      "          'quite': 3,\n",
      "          'bowling': 3,\n",
      "          'john': 3,\n",
      "          'always': 3,\n",
      "          'brothers': 3,\n",
      "          'film': 2,\n",
      "          'simple': 2,\n",
      "          'joel': 2,\n",
      "          'ethan': 2,\n",
      "          'ntheir': 2,\n",
      "          'highly': 2,\n",
      "          'people': 2,\n",
      "          'get': 2,\n",
      "          'los': 2,\n",
      "          'angeles': 2,\n",
      "          'bridges': 2,\n",
      "          'performance': 2,\n",
      "          'made': 2,\n",
      "          'nhe': 2,\n",
      "          'named': 2,\n",
      "          'walter': 2,\n",
      "          'goodman': 2,\n",
      "          'guys': 2,\n",
      "          'bunny': 2,\n",
      "          'money': 2,\n",
      "          'main': 2,\n",
      "          'plot': 2,\n",
      "          'involved': 2,\n",
      "          'n': 2,\n",
      "          'like': 2,\n",
      "          'nit': 2,\n",
      "          'kind': 2,\n",
      "          'dream': 2,\n",
      "          'sequences': 2,\n",
      "          'involves': 2,\n",
      "          'barton': 2,\n",
      "          'fink': 2,\n",
      "          'hudsucker': 2,\n",
      "          'proxy': 2,\n",
      "          'style': 2,\n",
      "          'world': 2,\n",
      "          'debut': 1,\n",
      "          '1984': 1,\n",
      "          'tightly': 1,\n",
      "          'wrought': 1,\n",
      "          'texas': 1,\n",
      "          'thriller': 1,\n",
      "          'blood': 1,\n",
      "          'eclectic': 1,\n",
      "          'original': 1,\n",
      "          'downright': 1,\n",
      "          'fascinating': 1,\n",
      "          'creative': 1,\n",
      "          'teams': 1,\n",
      "          'modern': 1,\n",
      "          'hollywood': 1,\n",
      "          'stylized': 1,\n",
      "          'embedded': 1,\n",
      "          'particular': 1,\n",
      "          'characters': 1,\n",
      "          'often': 1,\n",
      "          'everyday': 1,\n",
      "          'caught': 1,\n",
      "          'unusual': 1,\n",
      "          'circumstances': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'cinematic': 1,\n",
      "          'offering': 1,\n",
      "          'multiple': 1,\n",
      "          'academy': 1,\n",
      "          'awardwinning': 1,\n",
      "          'action': 1,\n",
      "          'takes': 1,\n",
      "          'gulf': 1,\n",
      "          'war': 1,\n",
      "          'hero': 1,\n",
      "          'story': 1,\n",
      "          'aka': 1,\n",
      "          'played': 1,\n",
      "          'hollywoods': 1,\n",
      "          'underrated': 1,\n",
      "          'actors': 1,\n",
      "          'best': 1,\n",
      "          'stoned': 1,\n",
      "          'sean': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'penn': 1,\n",
      "          'stumbled': 1,\n",
      "          'halls': 1,\n",
      "          'ridgemont': 1,\n",
      "          'high': 1,\n",
      "          'man': 1,\n",
      "          'sixties': 1,\n",
      "          'shaggy': 1,\n",
      "          'shoulderlength': 1,\n",
      "          'hair': 1,\n",
      "          'grizzled': 1,\n",
      "          'goatee': 1,\n",
      "          'badly': 1,\n",
      "          'need': 1,\n",
      "          'trim': 1,\n",
      "          'wears': 1,\n",
      "          'mostly': 1,\n",
      "          'stained': 1,\n",
      "          'teeshirts': 1,\n",
      "          'long': 1,\n",
      "          'shorts': 1,\n",
      "          'gellies': 1,\n",
      "          'without': 1,\n",
      "          'socks': 1,\n",
      "          'smokes': 1,\n",
      "          'pot': 1,\n",
      "          'drinks': 1,\n",
      "          'white': 1,\n",
      "          'russians': 1,\n",
      "          'content': 1,\n",
      "          'spend': 1,\n",
      "          'majority': 1,\n",
      "          'two': 1,\n",
      "          'buddies': 1,\n",
      "          'slightly': 1,\n",
      "          'psychotic': 1,\n",
      "          'vietnam': 1,\n",
      "          'vet': 1,\n",
      "          'sobchak': 1,\n",
      "          'donny': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'wants': 1,\n",
      "          'part': 1,\n",
      "          'conversation': 1,\n",
      "          'makes': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'confused': 1,\n",
      "          'another': 1,\n",
      "          'david': 1,\n",
      "          'huddleston': 1,\n",
      "          'millionaire': 1,\n",
      "          'philanthropist': 1,\n",
      "          'whose': 1,\n",
      "          'trophy': 1,\n",
      "          'wife': 1,\n",
      "          'tara': 1,\n",
      "          'reid': 1,\n",
      "          'owes': 1,\n",
      "          'accompanying': 1,\n",
      "          'sideplots': 1,\n",
      "          'coenesque': 1,\n",
      "          'diatribes': 1,\n",
      "          'far': 1,\n",
      "          'complicated': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'becomes': 1,\n",
      "          'kidnaped': 1,\n",
      "          'asked': 1,\n",
      "          'courier': 1,\n",
      "          'ransom': 1,\n",
      "          'nby': 1,\n",
      "          'said': 1,\n",
      "          'done': 1,\n",
      "          'become': 1,\n",
      "          'lebowskis': 1,\n",
      "          'daughter': 1,\n",
      "          'maude': 1,\n",
      "          'julianne': 1,\n",
      "          'moore': 1,\n",
      "          'feminist': 1,\n",
      "          'artist': 1,\n",
      "          'pornographer': 1,\n",
      "          'jackie': 1,\n",
      "          'treehorn': 1,\n",
      "          'ben': 1,\n",
      "          'gazzara': 1,\n",
      "          'group': 1,\n",
      "          'german': 1,\n",
      "          'nihilists': 1,\n",
      "          'led': 1,\n",
      "          'peter': 1,\n",
      "          'stormare': 1,\n",
      "          'great': 1,\n",
      "          'silent': 1,\n",
      "          'deadly': 1,\n",
      "          'kidnaper': 1,\n",
      "          'plays': 1,\n",
      "          'amalgam': 1,\n",
      "          'earlier': 1,\n",
      "          'efforts': 1,\n",
      "          'shares': 1,\n",
      "          'previous': 1,\n",
      "          'strong': 1,\n",
      "          'sense': 1,\n",
      "          'well': 1,\n",
      "          'sendups': 1,\n",
      "          'movie': 1,\n",
      "          'genres': 1,\n",
      "          'political': 1,\n",
      "          'cultural': 1,\n",
      "          'ideologies': 1,\n",
      "          'crazed': 1,\n",
      "          'caricatures': 1,\n",
      "          'raising': 1,\n",
      "          'arizona': 1,\n",
      "          'hoot': 1,\n",
      "          'surrealistic': 1,\n",
      "          'busby': 1,\n",
      "          'berkleylike': 1,\n",
      "          'dance': 1,\n",
      "          'number': 1,\n",
      "          'characterized': 1,\n",
      "          'ending': 1,\n",
      "          'cartoonish': 1,\n",
      "          'look': 1,\n",
      "          'feel': 1,\n",
      "          'pervaded': 1,\n",
      "          'shot': 1,\n",
      "          'veteran': 1,\n",
      "          'cinematographer': 1,\n",
      "          'roger': 1,\n",
      "          'deakins': 1,\n",
      "          'worked': 1,\n",
      "          'three': 1,\n",
      "          'ndeakins': 1,\n",
      "          'gives': 1,\n",
      "          'distinctive': 1,\n",
      "          'visual': 1,\n",
      "          'brilliant': 1,\n",
      "          'job': 1,\n",
      "          'capturing': 1,\n",
      "          'bright': 1,\n",
      "          'colors': 1,\n",
      "          'seedy': 1,\n",
      "          'early': 1,\n",
      "          'nineties': 1,\n",
      "          'whether': 1,\n",
      "          'obnoxious': 1,\n",
      "          'blue': 1,\n",
      "          'suit': 1,\n",
      "          'worn': 1,\n",
      "          'dudes': 1,\n",
      "          'competitor': 1,\n",
      "          'jesus': 1,\n",
      "          'quintana': 1,\n",
      "          'turturro': 1,\n",
      "          'strikingly': 1,\n",
      "          'manic': 1,\n",
      "          'dizzy': 1,\n",
      "          'spectacle': 1,\n",
      "          'watching': 1,\n",
      "          'strike': 1,\n",
      "          'balls': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'nif': 1,\n",
      "          'restrained': 1,\n",
      "          'effort': 1,\n",
      "          'years': 1,\n",
      "          'marks': 1,\n",
      "          'return': 1,\n",
      "          'overtheedge': 1,\n",
      "          'filmmaking': 1,\n",
      "          'overflowing': 1,\n",
      "          'attitude': 1,\n",
      "          'helps': 1,\n",
      "          'make': 1,\n",
      "          'scattered': 1,\n",
      "          'fragments': 1,\n",
      "          'come': 1,\n",
      "          'together': 1,\n",
      "          'end': 1,\n",
      "          'fill': 1,\n",
      "          'screen': 1,\n",
      "          'lighting': 1,\n",
      "          'set': 1,\n",
      "          'design': 1,\n",
      "          'music': 1,\n",
      "          'hilarious': 1,\n",
      "          'performances': 1,\n",
      "          'leads': 1,\n",
      "          'especially': 1,\n",
      "          'reliable': 1,\n",
      "          'shows': 1,\n",
      "          'real': 1,\n",
      "          'comic': 1,\n",
      "          'timing': 1,\n",
      "          'untimely': 1,\n",
      "          'naminspired': 1,\n",
      "          'outbursts': 1,\n",
      "          'intense': 1,\n",
      "          'dedication': 1,\n",
      "          'adopted': 1,\n",
      "          'judaism': 1,\n",
      "          'nwith': 1,\n",
      "          'directing': 1,\n",
      "          'producing': 1,\n",
      "          'writing': 1,\n",
      "          'seem': 1,\n",
      "          'limitless': 1,\n",
      "          'capacity': 1,\n",
      "          'turn': 1,\n",
      "          'inside': 1,\n",
      "          'talent': 1,\n",
      "          'lies': 1,\n",
      "          'ability': 1,\n",
      "          'reflect': 1,\n",
      "          'norms': 1,\n",
      "          'reality': 1,\n",
      "          'potential': 1,\n",
      "          'dig': 1,\n",
      "          'darkest': 1,\n",
      "          'corners': 1,\n",
      "          'life': 1,\n",
      "          'bring': 1,\n",
      "          'light': 1,\n",
      "          'rejoice': 1,\n",
      "          'oddballs': 1,\n",
      "          'put': 1,\n",
      "          'centerstage': 1,\n",
      "          'show': 1,\n",
      "          'nuts': 1,\n",
      "          'entire': 1,\n",
      "          'planet': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'movie': 4,\n",
      "          'top': 3,\n",
      "          'senator': 3,\n",
      "          'voight': 3,\n",
      "          'hackman': 3,\n",
      "          'escapist': 2,\n",
      "          'product': 2,\n",
      "          'plot': 2,\n",
      "          'thriller': 2,\n",
      "          'market': 2,\n",
      "          'good': 2,\n",
      "          'scott': 2,\n",
      "          'state': 2,\n",
      "          'nits': 2,\n",
      "          'runs': 2,\n",
      "          'like': 2,\n",
      "          'looking': 2,\n",
      "          'director': 2,\n",
      "          'hes': 2,\n",
      "          'nenemy': 2,\n",
      "          'also': 2,\n",
      "          'use': 2,\n",
      "          'amount': 2,\n",
      "          'audience': 2,\n",
      "          'long': 2,\n",
      "          'reasons': 2,\n",
      "          'reynolds': 2,\n",
      "          'nreynolds': 2,\n",
      "          'act': 2,\n",
      "          'dean': 2,\n",
      "          'smith': 2,\n",
      "          'puts': 2,\n",
      "          'well': 2,\n",
      "          'lean': 1,\n",
      "          'mean': 1,\n",
      "          'thrillers': 1,\n",
      "          'tough': 1,\n",
      "          'come': 1,\n",
      "          'nmost': 1,\n",
      "          'unnecessarily': 1,\n",
      "          'complicated': 1,\n",
      "          'others': 1,\n",
      "          'sense': 1,\n",
      "          'expediency': 1,\n",
      "          'thrillride': 1,\n",
      "          'effect': 1,\n",
      "          'gets': 1,\n",
      "          'lost': 1,\n",
      "          'cumbersome': 1,\n",
      "          'nperhaps': 1,\n",
      "          'ultimate': 1,\n",
      "          'fugitive': 1,\n",
      "          'featured': 1,\n",
      "          'none': 1,\n",
      "          'flashbang': 1,\n",
      "          'effects': 1,\n",
      "          'todays': 1,\n",
      "          'rather': 1,\n",
      "          'breadandbutter': 1,\n",
      "          'textbook': 1,\n",
      "          'example': 1,\n",
      "          'clever': 1,\n",
      "          'script': 1,\n",
      "          'direction': 1,\n",
      "          'latest': 1,\n",
      "          'tony': 1,\n",
      "          'enemy': 1,\n",
      "          'doesnt': 1,\n",
      "          'make': 1,\n",
      "          'level': 1,\n",
      "          'true': 1,\n",
      "          'nineties': 1,\n",
      "          'greased': 1,\n",
      "          'lightning': 1,\n",
      "          'maze': 1,\n",
      "          'cell': 1,\n",
      "          'phones': 1,\n",
      "          'laptop': 1,\n",
      "          'computers': 1,\n",
      "          'without': 1,\n",
      "          'back': 1,\n",
      "          'nalthough': 1,\n",
      "          'made': 1,\n",
      "          'missteps': 1,\n",
      "          'past': 1,\n",
      "          'lame': 1,\n",
      "          'fan': 1,\n",
      "          'generated': 1,\n",
      "          'deal': 1,\n",
      "          'energy': 1,\n",
      "          'pictures': 1,\n",
      "          'crimson': 1,\n",
      "          'tide': 1,\n",
      "          'gun': 1,\n",
      "          'nthat': 1,\n",
      "          'vibrant': 1,\n",
      "          'spirit': 1,\n",
      "          'present': 1,\n",
      "          'shown': 1,\n",
      "          'welltimed': 1,\n",
      "          'carefully': 1,\n",
      "          'planned': 1,\n",
      "          'chase': 1,\n",
      "          'scenes': 1,\n",
      "          'give': 1,\n",
      "          'aura': 1,\n",
      "          'sheer': 1,\n",
      "          'speed': 1,\n",
      "          'features': 1,\n",
      "          'unprecedented': 1,\n",
      "          'amazing': 1,\n",
      "          'cinematography': 1,\n",
      "          'photography': 1,\n",
      "          'daniel': 1,\n",
      "          'mindel': 1,\n",
      "          'throws': 1,\n",
      "          'staggering': 1,\n",
      "          'different': 1,\n",
      "          'views': 1,\n",
      "          'angles': 1,\n",
      "          'lenses': 1,\n",
      "          'film': 1,\n",
      "          'stocks': 1,\n",
      "          'goes': 1,\n",
      "          'way': 1,\n",
      "          'toward': 1,\n",
      "          'involving': 1,\n",
      "          'truly': 1,\n",
      "          'visual': 1,\n",
      "          'experience': 1,\n",
      "          'thats': 1,\n",
      "          'one': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'lights': 1,\n",
      "          'aging': 1,\n",
      "          'visited': 1,\n",
      "          'nsa': 1,\n",
      "          'deputy': 1,\n",
      "          'chief': 1,\n",
      "          'thomas': 1,\n",
      "          'jon': 1,\n",
      "          'wants': 1,\n",
      "          'new': 1,\n",
      "          'communications': 1,\n",
      "          'passed': 1,\n",
      "          'allow': 1,\n",
      "          'government': 1,\n",
      "          'free': 1,\n",
      "          'reign': 1,\n",
      "          'surveilance': 1,\n",
      "          'equipment': 1,\n",
      "          'plans': 1,\n",
      "          'bury': 1,\n",
      "          'bill': 1,\n",
      "          'committee': 1,\n",
      "          'offed': 1,\n",
      "          'murder': 1,\n",
      "          'caught': 1,\n",
      "          'naturalists': 1,\n",
      "          'camera': 1,\n",
      "          'nby': 1,\n",
      "          'extremist': 1,\n",
      "          'chain': 1,\n",
      "          'events': 1,\n",
      "          'tape': 1,\n",
      "          'ends': 1,\n",
      "          'labor': 1,\n",
      "          'lawyer': 1,\n",
      "          'robert': 1,\n",
      "          'posession': 1,\n",
      "          'running': 1,\n",
      "          'cronies': 1,\n",
      "          'help': 1,\n",
      "          'exspook': 1,\n",
      "          'named': 1,\n",
      "          'brill': 1,\n",
      "          'gene': 1,\n",
      "          'able': 1,\n",
      "          'get': 1,\n",
      "          'bottom': 1,\n",
      "          'things': 1,\n",
      "          'acting': 1,\n",
      "          'notch': 1,\n",
      "          'three': 1,\n",
      "          'principles': 1,\n",
      "          'generally': 1,\n",
      "          'mature': 1,\n",
      "          'excellent': 1,\n",
      "          'around': 1,\n",
      "          'nsmith': 1,\n",
      "          'aside': 1,\n",
      "          'wisecracking': 1,\n",
      "          'becomes': 1,\n",
      "          'normal': 1,\n",
      "          'human': 1,\n",
      "          'tones': 1,\n",
      "          'sneer': 1,\n",
      "          'character': 1,\n",
      "          'greater': 1,\n",
      "          'ominpotence': 1,\n",
      "          'simply': 1,\n",
      "          'mysterioso': 1,\n",
      "          'role': 1,\n",
      "          'nsmiths': 1,\n",
      "          'regular': 1,\n",
      "          'joe': 1,\n",
      "          'comes': 1,\n",
      "          'particularly': 1,\n",
      "          'authorties': 1,\n",
      "          'knows': 1,\n",
      "          'supports': 1,\n",
      "          'fine': 1,\n",
      "          'form': 1,\n",
      "          'lending': 1,\n",
      "          'credibility': 1,\n",
      "          'main': 1,\n",
      "          'roles': 1,\n",
      "          'advancing': 1,\n",
      "          'key': 1,\n",
      "          'areas': 1,\n",
      "          'nthis': 1,\n",
      "          'holiday': 1,\n",
      "          'crowd': 1,\n",
      "          'hot': 1,\n",
      "          'ticket': 1,\n",
      "          'anyone': 1,\n",
      "          'serving': 1,\n",
      "          'genuine': 1,\n",
      "          'action': 1,\n",
      "          'otherwise': 1,\n",
      "          'lacking': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'film': 7,\n",
      "          'family': 7,\n",
      "          'space': 4,\n",
      "          'nthe': 3,\n",
      "          'really': 3,\n",
      "          'evil': 3,\n",
      "          'scifi': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'one': 3,\n",
      "          'tv': 2,\n",
      "          'people': 2,\n",
      "          'see': 2,\n",
      "          'robinson': 2,\n",
      "          'lost': 2,\n",
      "          'chosen': 2,\n",
      "          'earth': 2,\n",
      "          'future': 2,\n",
      "          'leblanc': 2,\n",
      "          'oldman': 2,\n",
      "          'goes': 2,\n",
      "          'rest': 2,\n",
      "          'lot': 2,\n",
      "          'little': 2,\n",
      "          'character': 2,\n",
      "          'like': 2,\n",
      "          'long': 2,\n",
      "          'story': 2,\n",
      "          'line': 2,\n",
      "          'also': 2,\n",
      "          'hes': 2,\n",
      "          'non': 2,\n",
      "          'side': 2,\n",
      "          'picture': 2,\n",
      "          'got': 2,\n",
      "          'credit': 2,\n",
      "          'cool': 2,\n",
      "          'youre': 2,\n",
      "          'based': 1,\n",
      "          'campy': 1,\n",
      "          'show': 1,\n",
      "          '1960s': 1,\n",
      "          'appellation': 1,\n",
      "          'nmind': 1,\n",
      "          'including': 1,\n",
      "          'truly': 1,\n",
      "          'seen': 1,\n",
      "          'episodes': 1,\n",
      "          'original': 1,\n",
      "          'series': 1,\n",
      "          'stand': 1,\n",
      "          'alone': 1,\n",
      "          'regard': 1,\n",
      "          'nplot': 1,\n",
      "          'set': 1,\n",
      "          'year': 1,\n",
      "          '2058': 1,\n",
      "          'sail': 1,\n",
      "          'search': 1,\n",
      "          'planets': 1,\n",
      "          'might': 1,\n",
      "          'contain': 1,\n",
      "          'natural': 1,\n",
      "          'resources': 1,\n",
      "          'needs': 1,\n",
      "          'order': 1,\n",
      "          'survive': 1,\n",
      "          'na': 1,\n",
      "          'colonization': 1,\n",
      "          'process': 1,\n",
      "          'nthey': 1,\n",
      "          'joined': 1,\n",
      "          'able': 1,\n",
      "          'pilot': 1,\n",
      "          'west': 1,\n",
      "          'uninvited': 1,\n",
      "          'stowaway': 1,\n",
      "          'want': 1,\n",
      "          'trip': 1,\n",
      "          'conclude': 1,\n",
      "          'successful': 1,\n",
      "          'tip': 1,\n",
      "          'neventually': 1,\n",
      "          'trek': 1,\n",
      "          'awry': 1,\n",
      "          'n': 1,\n",
      "          'get': 1,\n",
      "          'back': 1,\n",
      "          'nis': 1,\n",
      "          'question': 1,\n",
      "          'infests': 1,\n",
      "          'epic': 1,\n",
      "          'ncritique': 1,\n",
      "          'reminded': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          '6': 1,\n",
      "          '510': 1,\n",
      "          'summer': 1,\n",
      "          '1997': 1,\n",
      "          'nits': 1,\n",
      "          'flash': 1,\n",
      "          'actual': 1,\n",
      "          'substance': 1,\n",
      "          'nadmittedly': 1,\n",
      "          'isnt': 1,\n",
      "          'annoying': 1,\n",
      "          'chris': 1,\n",
      "          'tucker': 1,\n",
      "          'run': 1,\n",
      "          'lose': 1,\n",
      "          'regards': 1,\n",
      "          'complex': 1,\n",
      "          'timetravel': 1,\n",
      "          'multidimensional': 1,\n",
      "          'nhaving': 1,\n",
      "          'said': 1,\n",
      "          'amazing': 1,\n",
      "          'overall': 1,\n",
      "          'look': 1,\n",
      "          'feel': 1,\n",
      "          'way': 1,\n",
      "          'average': 1,\n",
      "          'nyou': 1,\n",
      "          'felt': 1,\n",
      "          'riding': 1,\n",
      "          'poor': 1,\n",
      "          'souls': 1,\n",
      "          'nunfortunately': 1,\n",
      "          '10year': 1,\n",
      "          'old': 1,\n",
      "          'son': 1,\n",
      "          'smartest': 1,\n",
      "          'group': 1,\n",
      "          'father': 1,\n",
      "          'wrapped': 1,\n",
      "          'work': 1,\n",
      "          'notice': 1,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'nyawn': 1,\n",
      "          'acting': 1,\n",
      "          'ok': 1,\n",
      "          'especially': 1,\n",
      "          'surprised': 1,\n",
      "          'solid': 1,\n",
      "          'performance': 1,\n",
      "          'friends': 1,\n",
      "          'matt': 1,\n",
      "          'shows': 1,\n",
      "          'us': 1,\n",
      "          'definitely': 1,\n",
      "          'pretty': 1,\n",
      "          'face': 1,\n",
      "          'riffraff': 1,\n",
      "          'cuts': 1,\n",
      "          'lame': 1,\n",
      "          'timeconsuming': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'ta': 1,\n",
      "          'give': 1,\n",
      "          'trying': 1,\n",
      "          'develop': 1,\n",
      "          'characters': 1,\n",
      "          'pic': 1,\n",
      "          'hard': 1,\n",
      "          'follow': 1,\n",
      "          'actually': 1,\n",
      "          'tells': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'slick': 1,\n",
      "          'many': 1,\n",
      "          'sequence': 1,\n",
      "          'paralyzed': 1,\n",
      "          'hyperdrive': 1,\n",
      "          'awesome': 1,\n",
      "          'animated': 1,\n",
      "          'monkey': 1,\n",
      "          'joins': 1,\n",
      "          'halfway': 1,\n",
      "          'flic': 1,\n",
      "          'mucho': 1,\n",
      "          'presentation': 1,\n",
      "          'end': 1,\n",
      "          'slamming': 1,\n",
      "          'adventures': 1,\n",
      "          'fall': 1,\n",
      "          'somewhat': 1,\n",
      "          'thrilling': 1,\n",
      "          'admit': 1,\n",
      "          'somehow': 1,\n",
      "          'semitear': 1,\n",
      "          'near': 1,\n",
      "          'conclusion': 1,\n",
      "          'nodd': 1,\n",
      "          'noverall': 1,\n",
      "          'big': 1,\n",
      "          'fan': 1,\n",
      "          'check': 1,\n",
      "          'challenging': 1,\n",
      "          'narrative': 1,\n",
      "          'would': 1,\n",
      "          'still': 1,\n",
      "          'suggest': 1,\n",
      "          'seeing': 1,\n",
      "          'could': 1,\n",
      "          'probably': 1,\n",
      "          'wait': 1,\n",
      "          'comes': 1,\n",
      "          'video': 1,\n",
      "          'forward': 1,\n",
      "          'past': 1,\n",
      "          'boring': 1,\n",
      "          'parts': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'always': 1,\n",
      "          'remembered': 1,\n",
      "          'knocked': 1,\n",
      "          'titanic': 1,\n",
      "          '710': 1,\n",
      "          'top': 1,\n",
      "          'spot': 1,\n",
      "          'boxoffice': 1,\n",
      "          '15': 1,\n",
      "          'straight': 1,\n",
      "          'weeks': 1,\n",
      "          'number': 1,\n",
      "          'ngarry': 1,\n",
      "          'british': 1,\n",
      "          'married': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'six': 1,\n",
      "          'months': 1,\n",
      "          'nmimi': 1,\n",
      "          'rogers': 1,\n",
      "          'tom': 1,\n",
      "          'cruises': 1,\n",
      "          'first': 1,\n",
      "          'wife': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'alien': 12,\n",
      "          'ripley': 8,\n",
      "          'series': 5,\n",
      "          'nthe': 5,\n",
      "          'aliens': 4,\n",
      "          'resurrection': 4,\n",
      "          'film': 4,\n",
      "          'alien3': 3,\n",
      "          'popular': 3,\n",
      "          'first': 3,\n",
      "          'new': 3,\n",
      "          'death': 2,\n",
      "          'weaver': 2,\n",
      "          'thanks': 2,\n",
      "          'two': 2,\n",
      "          'installments': 2,\n",
      "          'finchers': 2,\n",
      "          'jeunet': 2,\n",
      "          'behind': 2,\n",
      "          'also': 2,\n",
      "          'even': 2,\n",
      "          'military': 2,\n",
      "          'blood': 2,\n",
      "          'nthat': 2,\n",
      "          'done': 2,\n",
      "          'introduced': 2,\n",
      "          'made': 2,\n",
      "          'clever': 2,\n",
      "          'species': 2,\n",
      "          'nbut': 2,\n",
      "          'trying': 2,\n",
      "          'triedandtrue': 2,\n",
      "          'formula': 2,\n",
      "          'notably': 2,\n",
      "          'jeunets': 2,\n",
      "          'humor': 2,\n",
      "          '1992s': 1,\n",
      "          'marked': 1,\n",
      "          'suicide': 1,\n",
      "          'protagonist': 1,\n",
      "          'ellen': 1,\n",
      "          'sigourney': 1,\n",
      "          'many': 1,\n",
      "          'ways': 1,\n",
      "          'franchise': 1,\n",
      "          'itselfbox': 1,\n",
      "          'office': 1,\n",
      "          'receipts': 1,\n",
      "          'anemic': 1,\n",
      "          'poor': 1,\n",
      "          'audience': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'critics': 1,\n",
      "          'rallied': 1,\n",
      "          'around': 1,\n",
      "          '1979s': 1,\n",
      "          '1986s': 1,\n",
      "          'savaged': 1,\n",
      "          'david': 1,\n",
      "          'slog': 1,\n",
      "          'sendoff': 1,\n",
      "          'included': 1,\n",
      "          'nhence': 1,\n",
      "          'director': 1,\n",
      "          'jeanpierre': 1,\n",
      "          'others': 1,\n",
      "          'faced': 1,\n",
      "          'twofold': 1,\n",
      "          'challengenot': 1,\n",
      "          'somehow': 1,\n",
      "          'resurrect': 1,\n",
      "          'rescue': 1,\n",
      "          'onceprofitable': 1,\n",
      "          'scrap': 1,\n",
      "          'heap': 1,\n",
      "          'ndespite': 1,\n",
      "          'odds': 1,\n",
      "          'succeeded': 1,\n",
      "          'entertaining': 1,\n",
      "          'installment': 1,\n",
      "          'measure': 1,\n",
      "          'excellent': 1,\n",
      "          'nwriter': 1,\n",
      "          'joss': 1,\n",
      "          'whedon': 1,\n",
      "          'devises': 1,\n",
      "          'quick': 1,\n",
      "          'easy': 1,\n",
      "          'painless': 1,\n",
      "          'answer': 1,\n",
      "          'dead': 1,\n",
      "          'problemclone': 1,\n",
      "          'shady': 1,\n",
      "          'scientists': 1,\n",
      "          'using': 1,\n",
      "          'left': 1,\n",
      "          'fiorina': 1,\n",
      "          '161': 1,\n",
      "          'prison': 1,\n",
      "          'planet': 1,\n",
      "          'third': 1,\n",
      "          '_real_': 1,\n",
      "          'challenge': 1,\n",
      "          'presents': 1,\n",
      "          'itselfwhat': 1,\n",
      "          'nalien': 1,\n",
      "          'smart': 1,\n",
      "          'resourceful': 1,\n",
      "          'simultaneously': 1,\n",
      "          'toughened': 1,\n",
      "          'vulnerable': 1,\n",
      "          'exploring': 1,\n",
      "          'maternal': 1,\n",
      "          'side': 1,\n",
      "          'saw': 1,\n",
      "          'undergoing': 1,\n",
      "          'seven': 1,\n",
      "          'stages': 1,\n",
      "          'nwhat': 1,\n",
      "          'could': 1,\n",
      "          'next': 1,\n",
      "          'nwhedon': 1,\n",
      "          'comes': 1,\n",
      "          'spin': 1,\n",
      "          'since': 1,\n",
      "          'original': 1,\n",
      "          'died': 1,\n",
      "          'impregnated': 1,\n",
      "          'queen': 1,\n",
      "          'used': 1,\n",
      "          'clone': 1,\n",
      "          'infected': 1,\n",
      "          'dna': 1,\n",
      "          'nso': 1,\n",
      "          'indeed': 1,\n",
      "          'newa': 1,\n",
      "          'humanalien': 1,\n",
      "          'hybrid': 1,\n",
      "          'blessed': 1,\n",
      "          'heightened': 1,\n",
      "          'instincts': 1,\n",
      "          'strength': 1,\n",
      "          'psychic': 1,\n",
      "          'bond': 1,\n",
      "          'deadly': 1,\n",
      "          'predatory': 1,\n",
      "          'attitude': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'resurrections': 1,\n",
      "          'streak': 1,\n",
      "          'writing': 1,\n",
      "          'stops': 1,\n",
      "          'known': 1,\n",
      "          'stronger': 1,\n",
      "          'stories': 1,\n",
      "          'creature': 1,\n",
      "          'features': 1,\n",
      "          'story': 1,\n",
      "          'afterthought': 1,\n",
      "          'movie': 1,\n",
      "          'begins': 1,\n",
      "          'plot': 1,\n",
      "          'involving': 1,\n",
      "          'types': 1,\n",
      "          'attempting': 1,\n",
      "          'train': 1,\n",
      "          'bidding': 1,\n",
      "          'creatures': 1,\n",
      "          'break': 1,\n",
      "          'free': 1,\n",
      "          'ragtag': 1,\n",
      "          'crew': 1,\n",
      "          'time': 1,\n",
      "          'bunch': 1,\n",
      "          'interstellar': 1,\n",
      "          'smugglers': 1,\n",
      "          'including': 1,\n",
      "          'tough': 1,\n",
      "          'waif': 1,\n",
      "          'call': 1,\n",
      "          'played': 1,\n",
      "          'game': 1,\n",
      "          'winona': 1,\n",
      "          'ryder': 1,\n",
      "          'exterminate': 1,\n",
      "          'nand': 1,\n",
      "          'scenario': 1,\n",
      "          'ultimately': 1,\n",
      "          'exploited': 1,\n",
      "          'full': 1,\n",
      "          'potential': 1,\n",
      "          'would': 1,\n",
      "          'liked': 1,\n",
      "          'deeper': 1,\n",
      "          'exploration': 1,\n",
      "          'quandary': 1,\n",
      "          'becoming': 1,\n",
      "          'one': 1,\n",
      "          'spent': 1,\n",
      "          'entire': 1,\n",
      "          'life': 1,\n",
      "          'destroy': 1,\n",
      "          'nwhile': 1,\n",
      "          'settling': 1,\n",
      "          'little': 1,\n",
      "          'disconcerting': 1,\n",
      "          'reason': 1,\n",
      "          'tackles': 1,\n",
      "          'proceedings': 1,\n",
      "          'giddy': 1,\n",
      "          'abandon': 1,\n",
      "          'years': 1,\n",
      "          'still': 1,\n",
      "          'terrifying': 1,\n",
      "          'breed': 1,\n",
      "          'less': 1,\n",
      "          'violence': 1,\n",
      "          'appropriately': 1,\n",
      "          'grisly': 1,\n",
      "          'extreme': 1,\n",
      "          'action': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'suspenseful': 1,\n",
      "          'exciting': 1,\n",
      "          'extended': 1,\n",
      "          'underwater': 1,\n",
      "          'sequence': 1,\n",
      "          'absolutely': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'visually': 1,\n",
      "          'solid': 1,\n",
      "          'work': 1,\n",
      "          'production': 1,\n",
      "          'designer': 1,\n",
      "          'nigel': 1,\n",
      "          'phelps': 1,\n",
      "          'cinematographer': 1,\n",
      "          'darius': 1,\n",
      "          'khondji': 1,\n",
      "          'nas': 1,\n",
      "          'technically': 1,\n",
      "          'adept': 1,\n",
      "          'direction': 1,\n",
      "          'perhaps': 1,\n",
      "          'matter': 1,\n",
      "          'whedons': 1,\n",
      "          'greatest': 1,\n",
      "          'contribution': 1,\n",
      "          'infusion': 1,\n",
      "          'downbeat': 1,\n",
      "          'serious': 1,\n",
      "          'na': 1,\n",
      "          'sense': 1,\n",
      "          'may': 1,\n",
      "          'seem': 1,\n",
      "          'go': 1,\n",
      "          'everything': 1,\n",
      "          'horror': 1,\n",
      "          'show': 1,\n",
      "          'stands': 1,\n",
      "          'selfawareness': 1,\n",
      "          'excess': 1,\n",
      "          'adds': 1,\n",
      "          'fun': 1,\n",
      "          'nno': 1,\n",
      "          'great': 1,\n",
      "          'ridley': 1,\n",
      "          'scotts': 1,\n",
      "          'greater': 1,\n",
      "          'james': 1,\n",
      "          'camerons': 1,\n",
      "          'dauntingly': 1,\n",
      "          'slow': 1,\n",
      "          'gloom': 1,\n",
      "          'doom': 1,\n",
      "          'welcome': 1,\n",
      "          'return': 1,\n",
      "          'roots': 1,\n",
      "          'wild': 1,\n",
      "          'reckless': 1,\n",
      "          'thrill': 1,\n",
      "          'ride': 1,\n",
      "          'place': 1,\n",
      "          'keep': 1,\n",
      "          'future': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'toy': 19,\n",
      "          'story': 13,\n",
      "          'nthe': 10,\n",
      "          '2': 9,\n",
      "          'buzz': 8,\n",
      "          'new': 7,\n",
      "          'woodys': 5,\n",
      "          'characters': 5,\n",
      "          'film': 5,\n",
      "          'like': 4,\n",
      "          'original': 4,\n",
      "          'sequel': 4,\n",
      "          'nits': 4,\n",
      "          'woody': 4,\n",
      "          'also': 4,\n",
      "          'n': 4,\n",
      "          'sequels': 3,\n",
      "          'one': 3,\n",
      "          'pixar': 3,\n",
      "          'animation': 3,\n",
      "          'nwoody': 3,\n",
      "          'tim': 3,\n",
      "          'family': 3,\n",
      "          'faces': 3,\n",
      "          'work': 3,\n",
      "          'seeing': 3,\n",
      "          'nthere': 3,\n",
      "          'get': 3,\n",
      "          'first': 3,\n",
      "          'movie': 3,\n",
      "          'see': 3,\n",
      "          'many': 2,\n",
      "          'fail': 2,\n",
      "          'live': 2,\n",
      "          'last': 2,\n",
      "          'saw': 2,\n",
      "          'consistently': 2,\n",
      "          'inventive': 2,\n",
      "          'yet': 2,\n",
      "          'another': 2,\n",
      "          'bugs': 2,\n",
      "          'life': 2,\n",
      "          'still': 2,\n",
      "          'game': 2,\n",
      "          'tom': 2,\n",
      "          'hanks': 2,\n",
      "          'owner': 2,\n",
      "          'andy': 2,\n",
      "          'allen': 2,\n",
      "          'wayne': 2,\n",
      "          'knight': 2,\n",
      "          'members': 2,\n",
      "          'old': 2,\n",
      "          'dog': 2,\n",
      "          'makes': 2,\n",
      "          'toys': 2,\n",
      "          'jesse': 2,\n",
      "          'joan': 2,\n",
      "          'cusack': 2,\n",
      "          'kelsey': 2,\n",
      "          'grammer': 2,\n",
      "          'forever': 2,\n",
      "          'difficult': 2,\n",
      "          'go': 2,\n",
      "          'done': 2,\n",
      "          'remarkable': 2,\n",
      "          'impressive': 2,\n",
      "          'release': 2,\n",
      "          'well': 2,\n",
      "          'sharp': 2,\n",
      "          'human': 2,\n",
      "          'action': 2,\n",
      "          'fast': 2,\n",
      "          'furious': 2,\n",
      "          'impossible': 2,\n",
      "          'store': 2,\n",
      "          'almost': 2,\n",
      "          'voice': 2,\n",
      "          'much': 2,\n",
      "          'character': 2,\n",
      "          'roles': 2,\n",
      "          'nit': 2,\n",
      "          'expand': 2,\n",
      "          'especially': 2,\n",
      "          'may': 2,\n",
      "          'clever': 2,\n",
      "          'always': 2,\n",
      "          'something': 2,\n",
      "          'films': 2,\n",
      "          'em': 2,\n",
      "          'geri': 2,\n",
      "          'rare': 2,\n",
      "          'dont': 1,\n",
      "          'theyre': 1,\n",
      "          'supposed': 1,\n",
      "          'nfar': 1,\n",
      "          'end': 1,\n",
      "          'rehashing': 1,\n",
      "          'adding': 1,\n",
      "          'little': 1,\n",
      "          'nis': 1,\n",
      "          'wonder': 1,\n",
      "          'predecessors': 1,\n",
      "          'nthankfully': 1,\n",
      "          'wonderful': 1,\n",
      "          'exception': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'time': 1,\n",
      "          'fun': 1,\n",
      "          'sign': 1,\n",
      "          'acclaimed': 1,\n",
      "          'studio': 1,\n",
      "          'behind': 1,\n",
      "          'top': 1,\n",
      "          'back': 1,\n",
      "          '1995': 1,\n",
      "          'hit': 1,\n",
      "          'things': 1,\n",
      "          'changed': 1,\n",
      "          'bit': 1,\n",
      "          'since': 1,\n",
      "          'ended': 1,\n",
      "          'voiced': 1,\n",
      "          'preparing': 1,\n",
      "          'leave': 1,\n",
      "          'cowboy': 1,\n",
      "          'camp': 1,\n",
      "          'nin': 1,\n",
      "          'absence': 1,\n",
      "          'assigned': 1,\n",
      "          'lightyear': 1,\n",
      "          'comfortable': 1,\n",
      "          'role': 1,\n",
      "          'take': 1,\n",
      "          'charge': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'trip': 1,\n",
      "          'ruined': 1,\n",
      "          'accidentally': 1,\n",
      "          'put': 1,\n",
      "          'garage': 1,\n",
      "          'sale': 1,\n",
      "          'stolen': 1,\n",
      "          'overzealous': 1,\n",
      "          'collector': 1,\n",
      "          'noff': 1,\n",
      "          'save': 1,\n",
      "          'gang': 1,\n",
      "          'including': 1,\n",
      "          'mr': 1,\n",
      "          'potato': 1,\n",
      "          'head': 1,\n",
      "          'rickles': 1,\n",
      "          'rex': 1,\n",
      "          'nervous': 1,\n",
      "          'dinosaur': 1,\n",
      "          'wallace': 1,\n",
      "          'shawn': 1,\n",
      "          'hamm': 1,\n",
      "          'piggy': 1,\n",
      "          'bank': 1,\n",
      "          'john': 1,\n",
      "          'ratzenberger': 1,\n",
      "          'slinky': 1,\n",
      "          'jim': 1,\n",
      "          'varney': 1,\n",
      "          'nwhile': 1,\n",
      "          'captivity': 1,\n",
      "          'startling': 1,\n",
      "          'discovery': 1,\n",
      "          'actually': 1,\n",
      "          'part': 1,\n",
      "          'collection': 1,\n",
      "          'based': 1,\n",
      "          '1950s': 1,\n",
      "          'childrens': 1,\n",
      "          'show': 1,\n",
      "          'entitled': 1,\n",
      "          'roundup': 1,\n",
      "          'nhe': 1,\n",
      "          'meets': 1,\n",
      "          'shows': 1,\n",
      "          'include': 1,\n",
      "          'cowgirl': 1,\n",
      "          'sidekick': 1,\n",
      "          'wise': 1,\n",
      "          'prospector': 1,\n",
      "          'bullseye': 1,\n",
      "          'trusty': 1,\n",
      "          'horse': 1,\n",
      "          'nthey': 1,\n",
      "          'anxiously': 1,\n",
      "          'awaiting': 1,\n",
      "          'arrival': 1,\n",
      "          'set': 1,\n",
      "          'completed': 1,\n",
      "          'sold': 1,\n",
      "          'japanese': 1,\n",
      "          'museum': 1,\n",
      "          'finally': 1,\n",
      "          'escape': 1,\n",
      "          'storage': 1,\n",
      "          'nthis': 1,\n",
      "          'means': 1,\n",
      "          'choice': 1,\n",
      "          'nwith': 1,\n",
      "          'friends': 1,\n",
      "          'coming': 1,\n",
      "          'rescue': 1,\n",
      "          'spend': 1,\n",
      "          'years': 1,\n",
      "          'japan': 1,\n",
      "          'immortalized': 1,\n",
      "          'nas': 1,\n",
      "          'contains': 1,\n",
      "          'firstrate': 1,\n",
      "          'studios': 1,\n",
      "          'job': 1,\n",
      "          'improving': 1,\n",
      "          'nreportedly': 1,\n",
      "          'originally': 1,\n",
      "          'slated': 1,\n",
      "          'directtovideo': 1,\n",
      "          'improvements': 1,\n",
      "          'made': 1,\n",
      "          'disney': 1,\n",
      "          'rightly': 1,\n",
      "          'decided': 1,\n",
      "          'theaters': 1,\n",
      "          'worth': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'colors': 1,\n",
      "          'bright': 1,\n",
      "          'textures': 1,\n",
      "          'even': 1,\n",
      "          'look': 1,\n",
      "          'seamless': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'believable': 1,\n",
      "          'sequences': 1,\n",
      "          'id': 1,\n",
      "          'find': 1,\n",
      "          'list': 1,\n",
      "          'particularly': 1,\n",
      "          'wowed': 1,\n",
      "          'scene': 1,\n",
      "          'cohorts': 1,\n",
      "          'must': 1,\n",
      "          'across': 1,\n",
      "          'busy': 1,\n",
      "          'intersection': 1,\n",
      "          'al': 1,\n",
      "          'barn': 1,\n",
      "          'owned': 1,\n",
      "          'captor': 1,\n",
      "          'npixars': 1,\n",
      "          'rendition': 1,\n",
      "          'nicely': 1,\n",
      "          'fur': 1,\n",
      "          'realistic': 1,\n",
      "          'feel': 1,\n",
      "          'could': 1,\n",
      "          'reach': 1,\n",
      "          'touch': 1,\n",
      "          'perfectly': 1,\n",
      "          'complementary': 1,\n",
      "          'help': 1,\n",
      "          'development': 1,\n",
      "          'ntom': 1,\n",
      "          'disappear': 1,\n",
      "          'making': 1,\n",
      "          'forget': 1,\n",
      "          'nall': 1,\n",
      "          'cast': 1,\n",
      "          'reprise': 1,\n",
      "          'excellent': 1,\n",
      "          'nseveral': 1,\n",
      "          'voices': 1,\n",
      "          'added': 1,\n",
      "          'fine': 1,\n",
      "          'strong': 1,\n",
      "          'characterization': 1,\n",
      "          'able': 1,\n",
      "          'choices': 1,\n",
      "          'confronted': 1,\n",
      "          'hasnt': 1,\n",
      "          'realized': 1,\n",
      "          'status': 1,\n",
      "          'forcing': 1,\n",
      "          'used': 1,\n",
      "          'developed': 1,\n",
      "          'quite': 1,\n",
      "          'narrates': 1,\n",
      "          'sarah': 1,\n",
      "          'mclachlanaided': 1,\n",
      "          'flashback': 1,\n",
      "          'illustrating': 1,\n",
      "          'loved': 1,\n",
      "          'forgotten': 1,\n",
      "          'computeranimated': 1,\n",
      "          'sappy': 1,\n",
      "          'music': 1,\n",
      "          'downright': 1,\n",
      "          'touching': 1,\n",
      "          'script': 1,\n",
      "          'despite': 1,\n",
      "          'screenplay': 1,\n",
      "          'credited': 1,\n",
      "          'four': 1,\n",
      "          'different': 1,\n",
      "          'writers': 1,\n",
      "          'endlessly': 1,\n",
      "          'considering': 1,\n",
      "          'reason': 1,\n",
      "          'works': 1,\n",
      "          'refuses': 1,\n",
      "          'capitalize': 1,\n",
      "          'originals': 1,\n",
      "          'success': 1,\n",
      "          'redoing': 1,\n",
      "          'using': 1,\n",
      "          'nnot': 1,\n",
      "          'nwe': 1,\n",
      "          'change': 1,\n",
      "          'issues': 1,\n",
      "          'brought': 1,\n",
      "          'way': 1,\n",
      "          'keeps': 1,\n",
      "          'reinventing': 1,\n",
      "          'idea': 1,\n",
      "          'waiting': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'humor': 1,\n",
      "          'witty': 1,\n",
      "          'amuse': 1,\n",
      "          'kids': 1,\n",
      "          'adults': 1,\n",
      "          'funny': 1,\n",
      "          'asides': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'among': 1,\n",
      "          'others': 1,\n",
      "          'takes': 1,\n",
      "          'classic': 1,\n",
      "          'barbie': 1,\n",
      "          'rock': 1,\n",
      "          'sock': 1,\n",
      "          'robots': 1,\n",
      "          'appearances': 1,\n",
      "          'efforts': 1,\n",
      "          '1997': 1,\n",
      "          'short': 1,\n",
      "          'appearance': 1,\n",
      "          'repairman': 1,\n",
      "          'fixes': 1,\n",
      "          'broken': 1,\n",
      "          'arm': 1,\n",
      "          'chases': 1,\n",
      "          'street': 1,\n",
      "          'elevator': 1,\n",
      "          'baggage': 1,\n",
      "          'carousel': 1,\n",
      "          'airplane': 1,\n",
      "          'keep': 1,\n",
      "          'getting': 1,\n",
      "          'bigger': 1,\n",
      "          'better': 1,\n",
      "          'never': 1,\n",
      "          'grows': 1,\n",
      "          'stagnant': 1,\n",
      "          'hold': 1,\n",
      "          'interest': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'rewarding': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'kind': 1,\n",
      "          'thats': 1,\n",
      "          'dislike': 1,\n",
      "          'created': 1,\n",
      "          'purely': 1,\n",
      "          'entertain': 1,\n",
      "          'though': 1,\n",
      "          'enjoy': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'drama': 1,\n",
      "          'next': 1,\n",
      "          'person': 1,\n",
      "          'nice': 1,\n",
      "          'trying': 1,\n",
      "          'exactly': 1,\n",
      "          'movies': 1,\n",
      "          'tried': 1,\n",
      "          'send': 1,\n",
      "          'us': 1,\n",
      "          'smile': 1,\n",
      "          'fair': 1,\n",
      "          'bet': 1,\n",
      "          'whole': 1,\n",
      "          'smiles': 1,\n",
      "          'collective': 1,\n",
      "          'manages': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'movie': 6,\n",
      "          'better': 4,\n",
      "          'book': 4,\n",
      "          'nbut': 4,\n",
      "          'bit': 3,\n",
      "          'film': 3,\n",
      "          'simple': 3,\n",
      "          'sense': 3,\n",
      "          'nthis': 3,\n",
      "          'characters': 3,\n",
      "          'see': 3,\n",
      "          'chance': 3,\n",
      "          'dream': 3,\n",
      "          'several': 3,\n",
      "          'scenes': 3,\n",
      "          'clear': 3,\n",
      "          'much': 3,\n",
      "          'seen': 2,\n",
      "          'ni': 2,\n",
      "          'read': 2,\n",
      "          'plan': 2,\n",
      "          'reminded': 2,\n",
      "          'landscape': 2,\n",
      "          'snowy': 2,\n",
      "          'cold': 2,\n",
      "          'also': 2,\n",
      "          'none': 2,\n",
      "          'probably': 2,\n",
      "          'lead': 2,\n",
      "          'seem': 2,\n",
      "          'seeing': 2,\n",
      "          'come': 2,\n",
      "          'true': 2,\n",
      "          'snow': 2,\n",
      "          'nin': 2,\n",
      "          'american': 2,\n",
      "          'nit': 2,\n",
      "          'really': 2,\n",
      "          'seems': 2,\n",
      "          'one': 2,\n",
      "          'claims': 2,\n",
      "          'might': 2,\n",
      "          'right': 2,\n",
      "          'thing': 2,\n",
      "          'result': 2,\n",
      "          'movies': 2,\n",
      "          'biggest': 2,\n",
      "          'makes': 2,\n",
      "          'many': 2,\n",
      "          'books': 2,\n",
      "          'like': 2,\n",
      "          'story': 2,\n",
      "          'present': 2,\n",
      "          'problem': 2,\n",
      "          'always': 2,\n",
      "          'man': 2,\n",
      "          'trailer': 2,\n",
      "          'expectation': 1,\n",
      "          'rating': 1,\n",
      "          'worse': 1,\n",
      "          'expected': 1,\n",
      "          'mainly': 1,\n",
      "          'found': 1,\n",
      "          'middle': 1,\n",
      "          'part': 1,\n",
      "          'dull': 1,\n",
      "          'nroger': 1,\n",
      "          'ebert': 1,\n",
      "          'gave': 1,\n",
      "          'four': 1,\n",
      "          'star': 1,\n",
      "          'review': 1,\n",
      "          'critic': 1,\n",
      "          'uses': 1,\n",
      "          'full': 1,\n",
      "          'scale': 1,\n",
      "          'often': 1,\n",
      "          'agree': 1,\n",
      "          'dark': 1,\n",
      "          'city': 1,\n",
      "          'best': 1,\n",
      "          '1998': 1,\n",
      "          'must': 1,\n",
      "          'five': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'hugely': 1,\n",
      "          'enjoyed': 1,\n",
      "          'opening': 1,\n",
      "          'sweet': 1,\n",
      "          'hereafter': 1,\n",
      "          'filmed': 1,\n",
      "          'feel': 1,\n",
      "          'rather': 1,\n",
      "          'crisp': 1,\n",
      "          'manner': 1,\n",
      "          'reminds': 1,\n",
      "          'fargo': 1,\n",
      "          'loathed': 1,\n",
      "          'almost': 1,\n",
      "          'far': 1,\n",
      "          'eye': 1,\n",
      "          'popping': 1,\n",
      "          'delights': 1,\n",
      "          'quick': 1,\n",
      "          'dead': 1,\n",
      "          'instead': 1,\n",
      "          'raimi': 1,\n",
      "          'made': 1,\n",
      "          'constrained': 1,\n",
      "          'would': 1,\n",
      "          'improved': 1,\n",
      "          'lots': 1,\n",
      "          'odd': 1,\n",
      "          'shots': 1,\n",
      "          'affliction': 1,\n",
      "          'hoping': 1,\n",
      "          'possibility': 1,\n",
      "          'life': 1,\n",
      "          'father': 1,\n",
      "          'uncovered': 1,\n",
      "          'covered': 1,\n",
      "          'field': 1,\n",
      "          'airplane': 1,\n",
      "          'crash': 1,\n",
      "          'landed': 1,\n",
      "          'plane': 1,\n",
      "          'three': 1,\n",
      "          'men': 1,\n",
      "          'find': 1,\n",
      "          'gym': 1,\n",
      "          'bag': 1,\n",
      "          'naffliction': 1,\n",
      "          'set': 1,\n",
      "          'njust': 1,\n",
      "          'hold': 1,\n",
      "          'money': 1,\n",
      "          'spring': 1,\n",
      "          'theyll': 1,\n",
      "          'safe': 1,\n",
      "          'spend': 1,\n",
      "          'hope': 1,\n",
      "          'experiencing': 1,\n",
      "          'melts': 1,\n",
      "          'hopes': 1,\n",
      "          'nas': 1,\n",
      "          'return': 1,\n",
      "          'paradise': 1,\n",
      "          'presented': 1,\n",
      "          'something': 1,\n",
      "          'selfish': 1,\n",
      "          'strength': 1,\n",
      "          'fact': 1,\n",
      "          'based': 1,\n",
      "          'selected': 1,\n",
      "          'visualized': 1,\n",
      "          'eschewing': 1,\n",
      "          'anything': 1,\n",
      "          'remotely': 1,\n",
      "          'resembling': 1,\n",
      "          'coherent': 1,\n",
      "          'example': 1,\n",
      "          'danger': 1,\n",
      "          'overfamiliarization': 1,\n",
      "          'writer': 1,\n",
      "          'perhaps': 1,\n",
      "          'feels': 1,\n",
      "          'doesnt': 1,\n",
      "          'lack': 1,\n",
      "          'baffles': 1,\n",
      "          'audience': 1,\n",
      "          'definitely': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'screenplay': 1,\n",
      "          'author': 1,\n",
      "          'going': 1,\n",
      "          'nim': 1,\n",
      "          'sue': 1,\n",
      "          'lot': 1,\n",
      "          'cut': 1,\n",
      "          'cant': 1,\n",
      "          'remember': 1,\n",
      "          'neven': 1,\n",
      "          'minor': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'complaining': 1,\n",
      "          'paid': 1,\n",
      "          'grains': 1,\n",
      "          'included': 1,\n",
      "          'comes': 1,\n",
      "          'mondays': 1,\n",
      "          'charged': 1,\n",
      "          'purchase': 1,\n",
      "          'nturns': 1,\n",
      "          'nwell': 1,\n",
      "          'warned': 1,\n",
      "          'reveals': 1,\n",
      "          'ending': 1,\n",
      "          'moments': 1,\n",
      "          'yes': 1,\n",
      "          'downer': 1,\n",
      "          'plot': 1,\n",
      "          'developments': 1,\n",
      "          'beginning': 1,\n",
      "          'spelled': 1,\n",
      "          'directly': 1,\n",
      "          'youre': 1,\n",
      "          'lucky': 1,\n",
      "          'youll': 1,\n",
      "          'forgotten': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'nthe': 9,\n",
      "          'green': 8,\n",
      "          'mile': 8,\n",
      "          'characters': 8,\n",
      "          'guards': 5,\n",
      "          'scene': 5,\n",
      "          'hour': 4,\n",
      "          'time': 4,\n",
      "          'wonderful': 4,\n",
      "          'prisoners': 4,\n",
      "          'back': 4,\n",
      "          'others': 4,\n",
      "          'nhowever': 3,\n",
      "          'plot': 3,\n",
      "          'prison': 3,\n",
      "          'guard': 3,\n",
      "          'evil': 3,\n",
      "          'perfect': 3,\n",
      "          'roles': 3,\n",
      "          'duncan': 3,\n",
      "          'performance': 3,\n",
      "          'would': 3,\n",
      "          'nhis': 3,\n",
      "          'three': 2,\n",
      "          'running': 2,\n",
      "          'begins': 2,\n",
      "          'perfection': 2,\n",
      "          'performances': 2,\n",
      "          'story': 2,\n",
      "          'follows': 2,\n",
      "          'edgecomb': 2,\n",
      "          'tom': 2,\n",
      "          'hanks': 2,\n",
      "          'death': 2,\n",
      "          'audience': 2,\n",
      "          'good': 2,\n",
      "          'prisoner': 2,\n",
      "          'hard': 2,\n",
      "          'nthey': 2,\n",
      "          'given': 2,\n",
      "          'make': 2,\n",
      "          'difficult': 2,\n",
      "          'unique': 2,\n",
      "          'create': 2,\n",
      "          'interesting': 2,\n",
      "          'hutchinson': 2,\n",
      "          'michael': 2,\n",
      "          'playing': 2,\n",
      "          'wetmore': 2,\n",
      "          'able': 2,\n",
      "          'job': 2,\n",
      "          'also': 2,\n",
      "          'every': 2,\n",
      "          'veteran': 2,\n",
      "          'nas': 2,\n",
      "          'creates': 2,\n",
      "          'coffey': 2,\n",
      "          'love': 2,\n",
      "          'hate': 2,\n",
      "          'pain': 2,\n",
      "          'show': 2,\n",
      "          'without': 2,\n",
      "          'even': 2,\n",
      "          'nif': 2,\n",
      "          'end': 2,\n",
      "          'simply': 1,\n",
      "          'amazing': 1,\n",
      "          'developed': 1,\n",
      "          'nbased': 1,\n",
      "          'stephen': 1,\n",
      "          'king': 1,\n",
      "          'series': 1,\n",
      "          'title': 1,\n",
      "          'starts': 1,\n",
      "          'painfully': 1,\n",
      "          'slow': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'idiotic': 1,\n",
      "          'dialogue': 1,\n",
      "          'progress': 1,\n",
      "          'turns': 1,\n",
      "          'pure': 1,\n",
      "          'outstanding': 1,\n",
      "          'direction': 1,\n",
      "          'nfrank': 1,\n",
      "          'darabont': 1,\n",
      "          'masterfully': 1,\n",
      "          'followed': 1,\n",
      "          'shawshank': 1,\n",
      "          'redemption': 1,\n",
      "          'perspective': 1,\n",
      "          'paul': 1,\n",
      "          'nthrough': 1,\n",
      "          'edgecombs': 1,\n",
      "          'experiences': 1,\n",
      "          'cell': 1,\n",
      "          'block': 1,\n",
      "          'known': 1,\n",
      "          'row': 1,\n",
      "          'wait': 1,\n",
      "          'repent': 1,\n",
      "          'sees': 1,\n",
      "          'sides': 1,\n",
      "          'law': 1,\n",
      "          'nfrom': 1,\n",
      "          'successful': 1,\n",
      "          'creating': 1,\n",
      "          'sympathy': 1,\n",
      "          'kindhearted': 1,\n",
      "          'working': 1,\n",
      "          'thinking': 1,\n",
      "          'four': 1,\n",
      "          'meet': 1,\n",
      "          'variety': 1,\n",
      "          'strong': 1,\n",
      "          'relationships': 1,\n",
      "          'eventually': 1,\n",
      "          'forced': 1,\n",
      "          'execute': 1,\n",
      "          'veterans': 1,\n",
      "          'new': 1,\n",
      "          'comers': 1,\n",
      "          'original': 1,\n",
      "          'superb': 1,\n",
      "          'ensemble': 1,\n",
      "          'acting': 1,\n",
      "          'nhanks': 1,\n",
      "          'david': 1,\n",
      "          'morse': 1,\n",
      "          'barry': 1,\n",
      "          'pepper': 1,\n",
      "          'fitting': 1,\n",
      "          'relate': 1,\n",
      "          'calm': 1,\n",
      "          'less': 1,\n",
      "          'extreme': 1,\n",
      "          'positions': 1,\n",
      "          'rational': 1,\n",
      "          'decisions': 1,\n",
      "          'times': 1,\n",
      "          'ones': 1,\n",
      "          'fulfill': 1,\n",
      "          'demands': 1,\n",
      "          'perfectly': 1,\n",
      "          'friction': 1,\n",
      "          'exciting': 1,\n",
      "          'nsome': 1,\n",
      "          'particularly': 1,\n",
      "          'note': 1,\n",
      "          'worthy': 1,\n",
      "          'include': 1,\n",
      "          'doug': 1,\n",
      "          'sam': 1,\n",
      "          'rockwell': 1,\n",
      "          'nhutchinson': 1,\n",
      "          'percy': 1,\n",
      "          'cowardly': 1,\n",
      "          'hides': 1,\n",
      "          'true': 1,\n",
      "          'feelings': 1,\n",
      "          'tormenting': 1,\n",
      "          'gives': 1,\n",
      "          'greatest': 1,\n",
      "          'movie': 1,\n",
      "          'nevery': 1,\n",
      "          'appears': 1,\n",
      "          'screen': 1,\n",
      "          'attitude': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'creepy': 1,\n",
      "          'expressions': 1,\n",
      "          'effectively': 1,\n",
      "          'terrifying': 1,\n",
      "          'nit': 1,\n",
      "          'come': 1,\n",
      "          'surprise': 1,\n",
      "          'nominated': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'best': 1,\n",
      "          'supporting': 1,\n",
      "          'actor': 1,\n",
      "          'stole': 1,\n",
      "          'away': 1,\n",
      "          'oscar': 1,\n",
      "          'winner': 1,\n",
      "          'nrockwell': 1,\n",
      "          'independent': 1,\n",
      "          'plays': 1,\n",
      "          'role': 1,\n",
      "          'wild': 1,\n",
      "          'bill': 1,\n",
      "          'wharton': 1,\n",
      "          'taunts': 1,\n",
      "          'harasses': 1,\n",
      "          'hours': 1,\n",
      "          'really': 1,\n",
      "          'gets': 1,\n",
      "          'skin': 1,\n",
      "          'irritates': 1,\n",
      "          'watch': 1,\n",
      "          'torture': 1,\n",
      "          'nthis': 1,\n",
      "          'irritation': 1,\n",
      "          'makes': 1,\n",
      "          'believable': 1,\n",
      "          'last': 1,\n",
      "          'noteworthy': 1,\n",
      "          'belongs': 1,\n",
      "          'enormous': 1,\n",
      "          'convicted': 1,\n",
      "          'killer': 1,\n",
      "          'john': 1,\n",
      "          'happens': 1,\n",
      "          'hold': 1,\n",
      "          'power': 1,\n",
      "          'curing': 1,\n",
      "          'ill': 1,\n",
      "          'nduncan': 1,\n",
      "          'frightened': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'childlike': 1,\n",
      "          'behemoth': 1,\n",
      "          'similar': 1,\n",
      "          'lennie': 1,\n",
      "          'small': 1,\n",
      "          'mice': 1,\n",
      "          'men': 1,\n",
      "          'desire': 1,\n",
      "          'extinction': 1,\n",
      "          'evokes': 1,\n",
      "          'compassion': 1,\n",
      "          'obvious': 1,\n",
      "          'suffering': 1,\n",
      "          'cause': 1,\n",
      "          'viewer': 1,\n",
      "          'takes': 1,\n",
      "          'introduced': 1,\n",
      "          'completely': 1,\n",
      "          'opens': 1,\n",
      "          'ridiculous': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'setting': 1,\n",
      "          'contains': 1,\n",
      "          'jabs': 1,\n",
      "          'jerry': 1,\n",
      "          'springer': 1,\n",
      "          'containing': 1,\n",
      "          'one': 1,\n",
      "          'old': 1,\n",
      "          'man': 1,\n",
      "          'complaining': 1,\n",
      "          'guests': 1,\n",
      "          'inbred': 1,\n",
      "          'rednecks': 1,\n",
      "          'nnot': 1,\n",
      "          'observation': 1,\n",
      "          'entirely': 1,\n",
      "          'pointless': 1,\n",
      "          'place': 1,\n",
      "          'hackneyed': 1,\n",
      "          'beyond': 1,\n",
      "          'belief': 1,\n",
      "          'flashes': 1,\n",
      "          '1935': 1,\n",
      "          'graham': 1,\n",
      "          'greene': 1,\n",
      "          'quickly': 1,\n",
      "          'executed': 1,\n",
      "          'introduction': 1,\n",
      "          'seems': 1,\n",
      "          'rushed': 1,\n",
      "          'knowledge': 1,\n",
      "          'neither': 1,\n",
      "          'sad': 1,\n",
      "          'convincing': 1,\n",
      "          'ngreene': 1,\n",
      "          'final': 1,\n",
      "          'word': 1,\n",
      "          'like': 1,\n",
      "          'dont': 1,\n",
      "          'see': 1,\n",
      "          'walk': 1,\n",
      "          'infamous': 1,\n",
      "          'specifically': 1,\n",
      "          'introduce': 1,\n",
      "          'eduard': 1,\n",
      "          'delacroix': 1,\n",
      "          'jeter': 1,\n",
      "          'well': 1,\n",
      "          'five': 1,\n",
      "          'becomes': 1,\n",
      "          'speed': 1,\n",
      "          'matter': 1,\n",
      "          'concern': 1,\n",
      "          'edited': 1,\n",
      "          'two': 1,\n",
      "          'mark': 1,\n",
      "          'unsatisfactory': 1,\n",
      "          'know': 1,\n",
      "          'treat': 1,\n",
      "          'development': 1,\n",
      "          'great': 1,\n",
      "          'amount': 1,\n",
      "          'attached': 1,\n",
      "          'character': 1,\n",
      "          'n': 1,\n",
      "          'following': 1,\n",
      "          'rough': 1,\n",
      "          'beginning': 1,\n",
      "          'pivotal': 1,\n",
      "          'moment': 1,\n",
      "          'finally': 1,\n",
      "          'comes': 1,\n",
      "          'almost': 1,\n",
      "          'impossible': 1,\n",
      "          'feel': 1,\n",
      "          'sort': 1,\n",
      "          'sadness': 1,\n",
      "          'person': 1,\n",
      "          'nfighting': 1,\n",
      "          'tears': 1,\n",
      "          'task': 1,\n",
      "          'barely': 1,\n",
      "          'succeeded': 1,\n",
      "          'survive': 1,\n",
      "          'first': 1,\n",
      "          'third': 1,\n",
      "          'sit': 1,\n",
      "          'enjoy': 1,\n",
      "          'remainder': 1,\n",
      "          'priceless': 1,\n",
      "          'entertainment': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'jekyll': 3,\n",
      "          'hyde': 3,\n",
      "          'film': 3,\n",
      "          'story': 2,\n",
      "          'expect': 2,\n",
      "          'surprisingly': 2,\n",
      "          'dreary': 2,\n",
      "          'malkovich': 2,\n",
      "          'leave': 2,\n",
      "          'whole': 2,\n",
      "          'good': 2,\n",
      "          'perhaps': 2,\n",
      "          'parts': 2,\n",
      "          'without': 2,\n",
      "          'color': 2,\n",
      "          'told': 1,\n",
      "          'maids': 1,\n",
      "          'point': 1,\n",
      "          'view': 1,\n",
      "          'word': 1,\n",
      "          'dark': 1,\n",
      "          'nyou': 1,\n",
      "          'wouldnt': 1,\n",
      "          'something': 1,\n",
      "          'bright': 1,\n",
      "          'cheery': 1,\n",
      "          'based': 1,\n",
      "          'robert': 1,\n",
      "          'louis': 1,\n",
      "          'stevensons': 1,\n",
      "          'novel': 1,\n",
      "          'dismal': 1,\n",
      "          'njekyllhyde': 1,\n",
      "          'john': 1,\n",
      "          'terminally': 1,\n",
      "          'depressed': 1,\n",
      "          'desperate': 1,\n",
      "          'nmary': 1,\n",
      "          'reilly': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'victim': 1,\n",
      "          'monstrous': 1,\n",
      "          'child': 1,\n",
      "          'abuse': 1,\n",
      "          'antiwoman': 1,\n",
      "          'sentiment': 1,\n",
      "          'times': 1,\n",
      "          'ndirector': 1,\n",
      "          'stephen': 1,\n",
      "          'fears': 1,\n",
      "          'version': 1,\n",
      "          'london': 1,\n",
      "          'slums': 1,\n",
      "          'makes': 1,\n",
      "          'us': 1,\n",
      "          'marvel': 1,\n",
      "          'anyone': 1,\n",
      "          'survived': 1,\n",
      "          'lighting': 1,\n",
      "          'level': 1,\n",
      "          'exceedingly': 1,\n",
      "          'low': 1,\n",
      "          'throughout': 1,\n",
      "          'movie': 1,\n",
      "          'almost': 1,\n",
      "          'appears': 1,\n",
      "          'filmed': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'direction': 1,\n",
      "          'cinematography': 1,\n",
      "          'brilliant': 1,\n",
      "          'liquid': 1,\n",
      "          'nscenes': 1,\n",
      "          'flow': 1,\n",
      "          'next': 1,\n",
      "          'scene': 1,\n",
      "          'like': 1,\n",
      "          'honey': 1,\n",
      "          'oozing': 1,\n",
      "          'strawberry': 1,\n",
      "          'n': 1,\n",
      "          'except': 1,\n",
      "          'theres': 1,\n",
      "          'red': 1,\n",
      "          'course': 1,\n",
      "          'look': 1,\n",
      "          'moody': 1,\n",
      "          'melodramatic': 1,\n",
      "          'youll': 1,\n",
      "          'shocked': 1,\n",
      "          'theater': 1,\n",
      "          'ni': 1,\n",
      "          'saw': 1,\n",
      "          'matinee': 1,\n",
      "          'took': 1,\n",
      "          'quite': 1,\n",
      "          'adjust': 1,\n",
      "          'sunny': 1,\n",
      "          'skies': 1,\n",
      "          'afterward': 1,\n",
      "          'noften': 1,\n",
      "          'archetypes': 1,\n",
      "          'viewed': 1,\n",
      "          'splitting': 1,\n",
      "          'person': 1,\n",
      "          'components': 1,\n",
      "          'evil': 1,\n",
      "          'cerebral': 1,\n",
      "          'emotional': 1,\n",
      "          'nhere': 1,\n",
      "          'doctor': 1,\n",
      "          'intellectual': 1,\n",
      "          'certainly': 1,\n",
      "          'powerless': 1,\n",
      "          'nhis': 1,\n",
      "          'alter': 1,\n",
      "          'ego': 1,\n",
      "          'forceful': 1,\n",
      "          'totally': 1,\n",
      "          'conscience': 1,\n",
      "          'ntwo': 1,\n",
      "          'make': 1,\n",
      "          'nneither': 1,\n",
      "          'capable': 1,\n",
      "          'functioning': 1,\n",
      "          'separated': 1,\n",
      "          'disaster': 1,\n",
      "          'inevitable': 1,\n",
      "          'differences': 1,\n",
      "          'two': 1,\n",
      "          'characters': 1,\n",
      "          'would': 1,\n",
      "          'effective': 1,\n",
      "          'accomplished': 1,\n",
      "          'demeanor': 1,\n",
      "          'attitude': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'see': 1,\n",
      "          'transformation': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'thrust': 1,\n",
      "          'realm': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'psychological': 1,\n",
      "          'horror': 1,\n",
      "          'tale': 1,\n",
      "          'demands': 1,\n",
      "          'nroberts': 1,\n",
      "          'skillful': 1,\n",
      "          'roles': 1,\n",
      "          'nboth': 1,\n",
      "          'suitably': 1,\n",
      "          'melancholy': 1,\n",
      "          'fitting': 1,\n",
      "          'rest': 1,\n",
      "          'flash': 1,\n",
      "          'life': 1,\n",
      "          'comes': 1,\n",
      "          'glenn': 1,\n",
      "          'close': 1,\n",
      "          'lips': 1,\n",
      "          'madam': 1,\n",
      "          'whorehouse': 1,\n",
      "          'lives': 1,\n",
      "          'apparently': 1,\n",
      "          'frequents': 1,\n",
      "          'nlife': 1,\n",
      "          'maybe': 1,\n",
      "          'closes': 1,\n",
      "          'best': 1,\n",
      "          'role': 1,\n",
      "          'nshe': 1,\n",
      "          'seems': 1,\n",
      "          'little': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutout': 1,\n",
      "          'character': 1,\n",
      "          'na': 1,\n",
      "          'beautiful': 1,\n",
      "          'way': 1,\n",
      "          'nyoull': 1,\n",
      "          'appreciate': 1,\n",
      "          'filmmaking': 1,\n",
      "          'craft': 1,\n",
      "          'dont': 1,\n",
      "          'upbeat': 1,\n",
      "          'mood': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 14,\n",
      "          'skinheads': 7,\n",
      "          'nthe': 7,\n",
      "          'violence': 6,\n",
      "          'steve': 5,\n",
      "          'message': 5,\n",
      "          'character': 5,\n",
      "          'one': 4,\n",
      "          'life': 3,\n",
      "          'generation': 3,\n",
      "          'powerful': 3,\n",
      "          'characters': 3,\n",
      "          'bleak': 2,\n",
      "          'sam': 2,\n",
      "          'jones': 2,\n",
      "          'gang': 2,\n",
      "          'girlfriend': 2,\n",
      "          'incident': 2,\n",
      "          'entirely': 2,\n",
      "          'gets': 2,\n",
      "          'closer': 2,\n",
      "          'people': 2,\n",
      "          'vicious': 2,\n",
      "          'films': 2,\n",
      "          'cant': 2,\n",
      "          'within': 2,\n",
      "          'seen': 2,\n",
      "          'david': 2,\n",
      "          'nthere': 2,\n",
      "          'constant': 2,\n",
      "          'men': 2,\n",
      "          'act': 2,\n",
      "          'also': 2,\n",
      "          'nothing': 2,\n",
      "          'many': 2,\n",
      "          'performance': 2,\n",
      "          'seems': 2,\n",
      "          'lee': 2,\n",
      "          'evil': 2,\n",
      "          'hatred': 2,\n",
      "          'actor': 2,\n",
      "          'able': 2,\n",
      "          'end': 2,\n",
      "          'ending': 2,\n",
      "          'us': 2,\n",
      "          'aggressive': 1,\n",
      "          'unrelenting': 1,\n",
      "          'interracial': 1,\n",
      "          'couple': 1,\n",
      "          'damon': 1,\n",
      "          'elexa': 1,\n",
      "          'williams': 1,\n",
      "          'respectively': 1,\n",
      "          'viciously': 1,\n",
      "          'attacked': 1,\n",
      "          'parking': 1,\n",
      "          'garage': 1,\n",
      "          'night': 1,\n",
      "          'beat': 1,\n",
      "          'force': 1,\n",
      "          'watch': 1,\n",
      "          'brutally': 1,\n",
      "          'rape': 1,\n",
      "          'nwhen': 1,\n",
      "          'kills': 1,\n",
      "          'later': 1,\n",
      "          'evening': 1,\n",
      "          'decides': 1,\n",
      "          'must': 1,\n",
      "          'taught': 1,\n",
      "          'lesson': 1,\n",
      "          'nwaiting': 1,\n",
      "          'seven': 1,\n",
      "          'months': 1,\n",
      "          'thuggish': 1,\n",
      "          'forget': 1,\n",
      "          'shaves': 1,\n",
      "          'head': 1,\n",
      "          'dresses': 1,\n",
      "          'combat': 1,\n",
      "          'boots': 1,\n",
      "          'suspenders': 1,\n",
      "          'tattoos': 1,\n",
      "          'flesh': 1,\n",
      "          'nazi': 1,\n",
      "          'symbols': 1,\n",
      "          'tries': 1,\n",
      "          'infiltrate': 1,\n",
      "          'nas': 1,\n",
      "          'committed': 1,\n",
      "          'horrible': 1,\n",
      "          'crime': 1,\n",
      "          'begins': 1,\n",
      "          'learn': 1,\n",
      "          'really': 1,\n",
      "          'starts': 1,\n",
      "          'question': 1,\n",
      "          'motives': 1,\n",
      "          'nrandolph': 1,\n",
      "          'krets': 1,\n",
      "          'script': 1,\n",
      "          'based': 1,\n",
      "          'two': 1,\n",
      "          'real': 1,\n",
      "          'incidents': 1,\n",
      "          'affected': 1,\n",
      "          'producer': 1,\n",
      "          'shaun': 1,\n",
      "          'hill': 1,\n",
      "          'affront': 1,\n",
      "          'intolerance': 1,\n",
      "          'causes': 1,\n",
      "          'audience': 1,\n",
      "          'subjected': 1,\n",
      "          'brutality': 1,\n",
      "          'ignorance': 1,\n",
      "          'help': 1,\n",
      "          'disgusted': 1,\n",
      "          'events': 1,\n",
      "          'presented': 1,\n",
      "          'nive': 1,\n",
      "          'said': 1,\n",
      "          'fight': 1,\n",
      "          'club': 1,\n",
      "          'finchers': 1,\n",
      "          'trying': 1,\n",
      "          'define': 1,\n",
      "          'nkrets': 1,\n",
      "          'wake': 1,\n",
      "          'call': 1,\n",
      "          'nif': 1,\n",
      "          'fincher': 1,\n",
      "          'kubrick': 1,\n",
      "          'kret': 1,\n",
      "          'w': 1,\n",
      "          'ngriffith': 1,\n",
      "          'thematically': 1,\n",
      "          'speaking': 1,\n",
      "          'single': 1,\n",
      "          'likable': 1,\n",
      "          'obviously': 1,\n",
      "          'repulsive': 1,\n",
      "          'beliefs': 1,\n",
      "          'state': 1,\n",
      "          'fury': 1,\n",
      "          'races': 1,\n",
      "          'circles': 1,\n",
      "          'africanamerican': 1,\n",
      "          'constantly': 1,\n",
      "          'shown': 1,\n",
      "          'sexually': 1,\n",
      "          'assaulting': 1,\n",
      "          'drug': 1,\n",
      "          'abusers': 1,\n",
      "          'always': 1,\n",
      "          'joyride': 1,\n",
      "          'looking': 1,\n",
      "          'someone': 1,\n",
      "          'accost': 1,\n",
      "          'neven': 1,\n",
      "          'gay': 1,\n",
      "          'get': 1,\n",
      "          'locating': 1,\n",
      "          'lair': 1,\n",
      "          'beating': 1,\n",
      "          'severely': 1,\n",
      "          'lead': 1,\n",
      "          'pipes': 1,\n",
      "          'blunt': 1,\n",
      "          'objects': 1,\n",
      "          'main': 1,\n",
      "          'unlikable': 1,\n",
      "          'person': 1,\n",
      "          'becomes': 1,\n",
      "          'seek': 1,\n",
      "          'revenge': 1,\n",
      "          'nwhat': 1,\n",
      "          'comes': 1,\n",
      "          'simple': 1,\n",
      "          'begets': 1,\n",
      "          'clashes': 1,\n",
      "          'factions': 1,\n",
      "          'continue': 1,\n",
      "          'endless': 1,\n",
      "          'cycle': 1,\n",
      "          'inherent': 1,\n",
      "          'society': 1,\n",
      "          'cast': 1,\n",
      "          'absolutely': 1,\n",
      "          'remarkable': 1,\n",
      "          'ndamon': 1,\n",
      "          'shows': 1,\n",
      "          'raw': 1,\n",
      "          'energy': 1,\n",
      "          'actors': 1,\n",
      "          'seem': 1,\n",
      "          'summon': 1,\n",
      "          'days': 1,\n",
      "          'less': 1,\n",
      "          'nhis': 1,\n",
      "          'initial': 1,\n",
      "          'reaction': 1,\n",
      "          'hearing': 1,\n",
      "          'girlfriends': 1,\n",
      "          'suicide': 1,\n",
      "          'affecting': 1,\n",
      "          'scenes': 1,\n",
      "          'ever': 1,\n",
      "          'ndavid': 1,\n",
      "          'wilson': 1,\n",
      "          'plays': 1,\n",
      "          'appropriately': 1,\n",
      "          'enough': 1,\n",
      "          'accurately': 1,\n",
      "          'second': 1,\n",
      "          'command': 1,\n",
      "          'skinhead': 1,\n",
      "          'makes': 1,\n",
      "          'extra': 1,\n",
      "          'money': 1,\n",
      "          'performing': 1,\n",
      "          'oral': 1,\n",
      "          'sex': 1,\n",
      "          'irony': 1,\n",
      "          'lost': 1,\n",
      "          'nwilsons': 1,\n",
      "          'pure': 1,\n",
      "          'brings': 1,\n",
      "          'hate': 1,\n",
      "          'perfectly': 1,\n",
      "          'nsadly': 1,\n",
      "          'dave': 1,\n",
      "          'ward': 1,\n",
      "          'portrays': 1,\n",
      "          'crew': 1,\n",
      "          'follow': 1,\n",
      "          'excellent': 1,\n",
      "          'victim': 1,\n",
      "          'hands': 1,\n",
      "          'fellow': 1,\n",
      "          'road': 1,\n",
      "          'rage': 1,\n",
      "          'nward': 1,\n",
      "          'showed': 1,\n",
      "          'immense': 1,\n",
      "          'promise': 1,\n",
      "          'greatly': 1,\n",
      "          'missed': 1,\n",
      "          'nnote': 1,\n",
      "          'shame': 1,\n",
      "          'filmmakers': 1,\n",
      "          'add': 1,\n",
      "          'disclaimer': 1,\n",
      "          'stating': 1,\n",
      "          'neither': 1,\n",
      "          'musicians': 1,\n",
      "          'contributing': 1,\n",
      "          'music': 1,\n",
      "          'condone': 1,\n",
      "          'racism': 1,\n",
      "          'couldnt': 1,\n",
      "          'spelled': 1,\n",
      "          'clearly': 1,\n",
      "          'would': 1,\n",
      "          'probably': 1,\n",
      "          'find': 1,\n",
      "          'much': 1,\n",
      "          'akin': 1,\n",
      "          'training': 1,\n",
      "          'video': 1,\n",
      "          'condemnation': 1,\n",
      "          'winners': 1,\n",
      "          'either': 1,\n",
      "          'nno': 1,\n",
      "          'comeuppance': 1,\n",
      "          'leaves': 1,\n",
      "          'almost': 1,\n",
      "          'right': 1,\n",
      "          'began': 1,\n",
      "          'nwhere': 1,\n",
      "          'american': 1,\n",
      "          'history': 1,\n",
      "          'x': 1,\n",
      "          'redemption': 1,\n",
      "          'victories': 1,\n",
      "          'store': 1,\n",
      "          'pariahs': 1,\n",
      "          'band': 1,\n",
      "          'twisted': 1,\n",
      "          'souls': 1,\n",
      "          'nit': 1,\n",
      "          'carries': 1,\n",
      "          'despite': 1,\n",
      "          'may': 1,\n",
      "          'momentarily': 1,\n",
      "          'put': 1,\n",
      "          'mind': 1,\n",
      "          'rest': 1,\n",
      "          'still': 1,\n",
      "          'forms': 1,\n",
      "          'little': 1,\n",
      "          'done': 1,\n",
      "          'eradicate': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'annie': 7,\n",
      "          'jessica': 7,\n",
      "          'film': 5,\n",
      "          'gift': 5,\n",
      "          'many': 4,\n",
      "          'makes': 4,\n",
      "          'donnie': 4,\n",
      "          'best': 4,\n",
      "          'one': 4,\n",
      "          '2000s': 4,\n",
      "          'nin': 3,\n",
      "          'reeves': 3,\n",
      "          'friend': 3,\n",
      "          'could': 3,\n",
      "          '1999s': 3,\n",
      "          'role': 3,\n",
      "          'fact': 2,\n",
      "          'around': 2,\n",
      "          'n': 2,\n",
      "          'raimi': 2,\n",
      "          'little': 2,\n",
      "          'pond': 2,\n",
      "          'movie': 2,\n",
      "          'nthe': 2,\n",
      "          'cast': 2,\n",
      "          'character': 2,\n",
      "          'wilson': 2,\n",
      "          'cate': 2,\n",
      "          'blanchett': 2,\n",
      "          'giving': 2,\n",
      "          'readings': 2,\n",
      "          'valerie': 2,\n",
      "          'barksdale': 2,\n",
      "          'hilary': 2,\n",
      "          'swank': 2,\n",
      "          'keanu': 2,\n",
      "          'cole': 2,\n",
      "          'ribisi': 2,\n",
      "          'confused': 2,\n",
      "          'nightmares': 2,\n",
      "          'nfor': 2,\n",
      "          'good': 2,\n",
      "          'nher': 2,\n",
      "          'given': 2,\n",
      "          'annies': 2,\n",
      "          'school': 2,\n",
      "          'wayne': 2,\n",
      "          'king': 2,\n",
      "          'katie': 2,\n",
      "          'holmes': 2,\n",
      "          'nat': 2,\n",
      "          'linda': 2,\n",
      "          'kim': 2,\n",
      "          'dickens': 2,\n",
      "          'possibly': 2,\n",
      "          'may': 2,\n",
      "          'performances': 2,\n",
      "          'nblanchett': 2,\n",
      "          'every': 2,\n",
      "          'turn': 2,\n",
      "          'boys': 2,\n",
      "          'biggest': 2,\n",
      "          'never': 2,\n",
      "          'young': 2,\n",
      "          'man': 2,\n",
      "          'strong': 2,\n",
      "          'bob': 2,\n",
      "          'gothic': 1,\n",
      "          'murdermystery': 1,\n",
      "          'yarns': 1,\n",
      "          'new': 1,\n",
      "          'conceit': 1,\n",
      "          'theyve': 1,\n",
      "          'books': 1,\n",
      "          'years': 1,\n",
      "          'nwithout': 1,\n",
      "          'proper': 1,\n",
      "          'handling': 1,\n",
      "          'come': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'bland': 1,\n",
      "          'outdated': 1,\n",
      "          'directed': 1,\n",
      "          'sam': 1,\n",
      "          'triedandtrue': 1,\n",
      "          'effort': 1,\n",
      "          'surprises': 1,\n",
      "          'includes': 1,\n",
      "          'everything': 1,\n",
      "          'wide': 1,\n",
      "          'array': 1,\n",
      "          'suspects': 1,\n",
      "          'red': 1,\n",
      "          'herrings': 1,\n",
      "          'mansions': 1,\n",
      "          'deep': 1,\n",
      "          'south': 1,\n",
      "          'moss': 1,\n",
      "          'trees': 1,\n",
      "          'front': 1,\n",
      "          'eventual': 1,\n",
      "          'discovery': 1,\n",
      "          'waterlogged': 1,\n",
      "          'corpse': 1,\n",
      "          'found': 1,\n",
      "          'nearby': 1,\n",
      "          'nits': 1,\n",
      "          'fairly': 1,\n",
      "          'obvious': 1,\n",
      "          'killer': 1,\n",
      "          'predicted': 1,\n",
      "          'would': 1,\n",
      "          'began': 1,\n",
      "          'correct': 1,\n",
      "          'preliminary': 1,\n",
      "          'suspicions': 1,\n",
      "          'ultimately': 1,\n",
      "          'shouldnt': 1,\n",
      "          'work': 1,\n",
      "          'thanks': 1,\n",
      "          'sparkling': 1,\n",
      "          'fills': 1,\n",
      "          'memorable': 1,\n",
      "          'nuances': 1,\n",
      "          'fun': 1,\n",
      "          'simply': 1,\n",
      "          'watching': 1,\n",
      "          'people': 1,\n",
      "          'interact': 1,\n",
      "          'nannie': 1,\n",
      "          'recently': 1,\n",
      "          'widowed': 1,\n",
      "          'mother': 1,\n",
      "          'three': 1,\n",
      "          'sons': 1,\n",
      "          'living': 1,\n",
      "          'psychic': 1,\n",
      "          'residents': 1,\n",
      "          'backwater': 1,\n",
      "          'southern': 1,\n",
      "          'hometown': 1,\n",
      "          'nsome': 1,\n",
      "          'mainstay': 1,\n",
      "          'clients': 1,\n",
      "          'include': 1,\n",
      "          'severely': 1,\n",
      "          'abused': 1,\n",
      "          'husband': 1,\n",
      "          'buddy': 1,\n",
      "          'giovanni': 1,\n",
      "          'unstable': 1,\n",
      "          'mechanic': 1,\n",
      "          'hes': 1,\n",
      "          'mysterious': 1,\n",
      "          'blue': 1,\n",
      "          'diamond': 1,\n",
      "          'somehow': 1,\n",
      "          'linked': 1,\n",
      "          'father': 1,\n",
      "          'give': 1,\n",
      "          'merely': 1,\n",
      "          'money': 1,\n",
      "          'uses': 1,\n",
      "          'way': 1,\n",
      "          'seeking': 1,\n",
      "          'solace': 1,\n",
      "          'finding': 1,\n",
      "          'everyones': 1,\n",
      "          'future': 1,\n",
      "          'late': 1,\n",
      "          'grandmother': 1,\n",
      "          'rosemary': 1,\n",
      "          'harris': 1,\n",
      "          'told': 1,\n",
      "          'child': 1,\n",
      "          'always': 1,\n",
      "          'remember': 1,\n",
      "          'nwhen': 1,\n",
      "          'eldest': 1,\n",
      "          'son': 1,\n",
      "          'involved': 1,\n",
      "          'fight': 1,\n",
      "          'meets': 1,\n",
      "          'niceguy': 1,\n",
      "          'principal': 1,\n",
      "          'collins': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'finds': 1,\n",
      "          'attracted': 1,\n",
      "          'nbut': 1,\n",
      "          'engaged': 1,\n",
      "          'wealthy': 1,\n",
      "          'immediately': 1,\n",
      "          'gets': 1,\n",
      "          'negative': 1,\n",
      "          'vibe': 1,\n",
      "          'party': 1,\n",
      "          'stumbles': 1,\n",
      "          'upon': 1,\n",
      "          'compromising': 1,\n",
      "          'position': 1,\n",
      "          'lawyer': 1,\n",
      "          'david': 1,\n",
      "          'duncan': 1,\n",
      "          'gary': 1,\n",
      "          'nsoon': 1,\n",
      "          'disappeared': 1,\n",
      "          'leaving': 1,\n",
      "          'everyone': 1,\n",
      "          'frenzy': 1,\n",
      "          'happened': 1,\n",
      "          'starts': 1,\n",
      "          'apparitions': 1,\n",
      "          'linking': 1,\n",
      "          'vicious': 1,\n",
      "          'redneck': 1,\n",
      "          'behind': 1,\n",
      "          'home': 1,\n",
      "          'cliched': 1,\n",
      "          'sheer': 1,\n",
      "          'storytelling': 1,\n",
      "          'level': 1,\n",
      "          'tight': 1,\n",
      "          'direction': 1,\n",
      "          'redeemed': 1,\n",
      "          'embarrassing': 1,\n",
      "          'last': 1,\n",
      "          'love': 1,\n",
      "          'game': 1,\n",
      "          'lift': 1,\n",
      "          'picture': 1,\n",
      "          'several': 1,\n",
      "          'notches': 1,\n",
      "          'nslowly': 1,\n",
      "          'enveloping': 1,\n",
      "          'viewer': 1,\n",
      "          'intriguing': 1,\n",
      "          'characters': 1,\n",
      "          'individual': 1,\n",
      "          'plights': 1,\n",
      "          'disappearance': 1,\n",
      "          '30minute': 1,\n",
      "          'mark': 1,\n",
      "          'divulges': 1,\n",
      "          'movies': 1,\n",
      "          'true': 1,\n",
      "          'intentions': 1,\n",
      "          'transforms': 1,\n",
      "          'proceedings': 1,\n",
      "          'taut': 1,\n",
      "          'times': 1,\n",
      "          'frightening': 1,\n",
      "          'horrormystery': 1,\n",
      "          'center': 1,\n",
      "          'exceptional': 1,\n",
      "          'talented': 1,\n",
      "          'mr': 1,\n",
      "          'ripley': 1,\n",
      "          'turns': 1,\n",
      "          'runofthemill': 1,\n",
      "          'protagonist': 1,\n",
      "          'exact': 1,\n",
      "          'downtoearth': 1,\n",
      "          'realistic': 1,\n",
      "          'person': 1,\n",
      "          'valid': 1,\n",
      "          'troubles': 1,\n",
      "          'caring': 1,\n",
      "          'attitude': 1,\n",
      "          'towards': 1,\n",
      "          'takes': 1,\n",
      "          'unextraordinary': 1,\n",
      "          'material': 1,\n",
      "          'runs': 1,\n",
      "          'entire': 1,\n",
      "          'truly': 1,\n",
      "          'classy': 1,\n",
      "          'aura': 1,\n",
      "          'otherwise': 1,\n",
      "          'might': 1,\n",
      "          'nwe': 1,\n",
      "          'follow': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'actress': 1,\n",
      "          'isnt': 1,\n",
      "          'bright': 1,\n",
      "          'performer': 1,\n",
      "          'ably': 1,\n",
      "          'supported': 1,\n",
      "          'casts': 1,\n",
      "          'year': 1,\n",
      "          'first': 1,\n",
      "          'following': 1,\n",
      "          'oscar': 1,\n",
      "          'win': 1,\n",
      "          'dont': 1,\n",
      "          'cry': 1,\n",
      "          'excellent': 1,\n",
      "          'seeks': 1,\n",
      "          'guidance': 1,\n",
      "          'scared': 1,\n",
      "          'take': 1,\n",
      "          'advice': 1,\n",
      "          'leave': 1,\n",
      "          'grossly': 1,\n",
      "          'abusive': 1,\n",
      "          'nas': 1,\n",
      "          'watcher': 1,\n",
      "          'utterly': 1,\n",
      "          'convincing': 1,\n",
      "          'backwoods': 1,\n",
      "          'meanie': 1,\n",
      "          'much': 1,\n",
      "          'difficult': 1,\n",
      "          'believe': 1,\n",
      "          'actor': 1,\n",
      "          'oftencriticized': 1,\n",
      "          'whose': 1,\n",
      "          'acting': 1,\n",
      "          'abilities': 1,\n",
      "          'compliment': 1,\n",
      "          'get': 1,\n",
      "          'also': 1,\n",
      "          'better': 1,\n",
      "          'ngiovanni': 1,\n",
      "          'boiler': 1,\n",
      "          'room': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'mentally': 1,\n",
      "          'slow': 1,\n",
      "          'sees': 1,\n",
      "          'wants': 1,\n",
      "          'nothing': 1,\n",
      "          'help': 1,\n",
      "          'understand': 1,\n",
      "          'plagued': 1,\n",
      "          'bad': 1,\n",
      "          'dreams': 1,\n",
      "          'dad': 1,\n",
      "          'small': 1,\n",
      "          'pivotal': 1,\n",
      "          'sleazy': 1,\n",
      "          'wonder': 1,\n",
      "          'turned': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'stunning': 1,\n",
      "          'supporting': 1,\n",
      "          'promiscuous': 1,\n",
      "          'played': 1,\n",
      "          'radiant': 1,\n",
      "          'scenes': 1,\n",
      "          'nfinally': 1,\n",
      "          'hollow': 1,\n",
      "          'usual': 1,\n",
      "          'impression': 1,\n",
      "          'spicy': 1,\n",
      "          'notable': 1,\n",
      "          'aspect': 1,\n",
      "          'moody': 1,\n",
      "          'atmosphere': 1,\n",
      "          'lays': 1,\n",
      "          'thickly': 1,\n",
      "          'foreboding': 1,\n",
      "          'air': 1,\n",
      "          'scene': 1,\n",
      "          'almost': 1,\n",
      "          'suffocating': 1,\n",
      "          'nthanks': 1,\n",
      "          'cleverly': 1,\n",
      "          'construed': 1,\n",
      "          'editing': 1,\n",
      "          'arthur': 1,\n",
      "          'coburn': 1,\n",
      "          'murawski': 1,\n",
      "          'successful': 1,\n",
      "          'use': 1,\n",
      "          'different': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'eerie': 1,\n",
      "          'sounds': 1,\n",
      "          'effects': 1,\n",
      "          'music': 1,\n",
      "          'score': 1,\n",
      "          'christopher': 1,\n",
      "          'achieves': 1,\n",
      "          'scary': 1,\n",
      "          'undercurrent': 1,\n",
      "          'filled': 1,\n",
      "          'dread': 1,\n",
      "          'nhelped': 1,\n",
      "          'along': 1,\n",
      "          'screenplay': 1,\n",
      "          'billy': 1,\n",
      "          'thornton': 1,\n",
      "          'tom': 1,\n",
      "          'epperson': 1,\n",
      "          'setting': 1,\n",
      "          'delightful': 1,\n",
      "          'rarest': 1,\n",
      "          'thrillers': 1,\n",
      "          'actually': 1,\n",
      "          'thrills': 1,\n",
      "          'offers': 1,\n",
      "          'fair': 1,\n",
      "          'share': 1,\n",
      "          'chills': 1,\n",
      "          'nit': 1,\n",
      "          'groundbreakingly': 1,\n",
      "          'original': 1,\n",
      "          'sure': 1,\n",
      "          'entertaining': 1,\n",
      "          'ride': 1,\n",
      "          'duration': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'kids': 7,\n",
      "          'film': 6,\n",
      "          'one': 5,\n",
      "          'children': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 4,\n",
      "          'parents': 4,\n",
      "          'get': 4,\n",
      "          'scenes': 4,\n",
      "          'dog': 4,\n",
      "          'would': 4,\n",
      "          'n': 3,\n",
      "          'spy': 3,\n",
      "          'brother': 3,\n",
      "          'action': 3,\n",
      "          'nwhat': 3,\n",
      "          'family': 3,\n",
      "          'including': 3,\n",
      "          'bit': 3,\n",
      "          'testicle': 3,\n",
      "          'juni': 3,\n",
      "          'nthey': 3,\n",
      "          'best': 2,\n",
      "          'story': 2,\n",
      "          'fun': 2,\n",
      "          'sister': 2,\n",
      "          'humor': 2,\n",
      "          'see': 2,\n",
      "          'spot': 2,\n",
      "          'run': 2,\n",
      "          'biting': 2,\n",
      "          'metal': 2,\n",
      "          'together': 2,\n",
      "          'course': 2,\n",
      "          'shows': 2,\n",
      "          'become': 2,\n",
      "          'instead': 2,\n",
      "          'vega': 2,\n",
      "          'daryl': 2,\n",
      "          'sabara': 2,\n",
      "          'home': 2,\n",
      "          'gregorio': 2,\n",
      "          'banderas': 2,\n",
      "          'carla': 2,\n",
      "          'gugino': 2,\n",
      "          'agents': 2,\n",
      "          'mission': 2,\n",
      "          'alan': 2,\n",
      "          'cumming': 2,\n",
      "          'tv': 2,\n",
      "          'show': 2,\n",
      "          'creatures': 2,\n",
      "          'secret': 2,\n",
      "          'enough': 2,\n",
      "          'like': 2,\n",
      "          'silly': 2,\n",
      "          'guards': 2,\n",
      "          'thumbs': 2,\n",
      "          'virtual': 2,\n",
      "          'even': 2,\n",
      "          'rodriguez': 2,\n",
      "          'character': 2,\n",
      "          'nice': 2,\n",
      "          'moments': 2,\n",
      "          'without': 2,\n",
      "          'things': 1,\n",
      "          'job': 1,\n",
      "          'every': 1,\n",
      "          'often': 1,\n",
      "          'still': 1,\n",
      "          'catches': 1,\n",
      "          'surprise': 1,\n",
      "          'certainly': 1,\n",
      "          'nan': 1,\n",
      "          'adventure': 1,\n",
      "          'aimed': 1,\n",
      "          'primarily': 1,\n",
      "          'smart': 1,\n",
      "          'zippy': 1,\n",
      "          'production': 1,\n",
      "          'neither': 1,\n",
      "          'panders': 1,\n",
      "          'talks': 1,\n",
      "          'audience': 1,\n",
      "          'center': 1,\n",
      "          'tale': 1,\n",
      "          'believable': 1,\n",
      "          'likable': 1,\n",
      "          'ready': 1,\n",
      "          'intelligent': 1,\n",
      "          'capable': 1,\n",
      "          'loving': 1,\n",
      "          'nbathroom': 1,\n",
      "          'kept': 1,\n",
      "          'minimum': 1,\n",
      "          'numerous': 1,\n",
      "          'wellstaged': 1,\n",
      "          'avoid': 1,\n",
      "          'excessive': 1,\n",
      "          'violence': 1,\n",
      "          'relief': 1,\n",
      "          'able': 1,\n",
      "          'review': 1,\n",
      "          'allages': 1,\n",
      "          'artistic': 1,\n",
      "          'merits': 1,\n",
      "          'ethics': 1,\n",
      "          'nconsider': 1,\n",
      "          'pg': 1,\n",
      "          'rated': 1,\n",
      "          'friendly': 1,\n",
      "          'theaters': 1,\n",
      "          'mother': 1,\n",
      "          'going': 1,\n",
      "          'town': 1,\n",
      "          'leaving': 1,\n",
      "          'son': 1,\n",
      "          'idiot': 1,\n",
      "          'neighbor': 1,\n",
      "          'nbody': 1,\n",
      "          'function': 1,\n",
      "          'abounds': 1,\n",
      "          'slapstick': 1,\n",
      "          'adult': 1,\n",
      "          'male': 1,\n",
      "          'lead': 1,\n",
      "          'repeatedly': 1,\n",
      "          'falling': 1,\n",
      "          'poop': 1,\n",
      "          'really': 1,\n",
      "          'disturbs': 1,\n",
      "          'jokes': 1,\n",
      "          'bookend': 1,\n",
      "          'begins': 1,\n",
      "          'police': 1,\n",
      "          'capturing': 1,\n",
      "          'mobster': 1,\n",
      "          'testicles': 1,\n",
      "          'process': 1,\n",
      "          'nat': 1,\n",
      "          'hospital': 1,\n",
      "          'doctors': 1,\n",
      "          'explain': 1,\n",
      "          'replaced': 1,\n",
      "          'ball': 1,\n",
      "          'joke': 1,\n",
      "          'victim': 1,\n",
      "          'lucky': 1,\n",
      "          'didnt': 1,\n",
      "          'two': 1,\n",
      "          'replacement': 1,\n",
      "          'balls': 1,\n",
      "          'clack': 1,\n",
      "          'nof': 1,\n",
      "          'ends': 1,\n",
      "          'remaining': 1,\n",
      "          'prisoners': 1,\n",
      "          'laughing': 1,\n",
      "          'criminal': 1,\n",
      "          'clacks': 1,\n",
      "          'past': 1,\n",
      "          'cells': 1,\n",
      "          'nsomebody': 1,\n",
      "          'clue': 1,\n",
      "          'genital': 1,\n",
      "          'mutilation': 1,\n",
      "          'funny': 1,\n",
      "          'welcome': 1,\n",
      "          'antidote': 1,\n",
      "          'repellent': 1,\n",
      "          'using': 1,\n",
      "          'imagination': 1,\n",
      "          'cruelty': 1,\n",
      "          'crudeness': 1,\n",
      "          'ncarmen': 1,\n",
      "          'alexa': 1,\n",
      "          'younger': 1,\n",
      "          'live': 1,\n",
      "          'beautiful': 1,\n",
      "          'seaside': 1,\n",
      "          'antonio': 1,\n",
      "          'ingrid': 1,\n",
      "          'cortez': 1,\n",
      "          'nmom': 1,\n",
      "          'dad': 1,\n",
      "          'sultry': 1,\n",
      "          'couple': 1,\n",
      "          'devoted': 1,\n",
      "          'dont': 1,\n",
      "          'know': 1,\n",
      "          'also': 1,\n",
      "          'former': 1,\n",
      "          'spies': 1,\n",
      "          'nonce': 1,\n",
      "          'different': 1,\n",
      "          'countries': 1,\n",
      "          'assigned': 1,\n",
      "          'erase': 1,\n",
      "          'fell': 1,\n",
      "          'love': 1,\n",
      "          'married': 1,\n",
      "          'retired': 1,\n",
      "          'raise': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'drawn': 1,\n",
      "          'back': 1,\n",
      "          'business': 1,\n",
      "          'nshortly': 1,\n",
      "          'first': 1,\n",
      "          'joint': 1,\n",
      "          'captured': 1,\n",
      "          'end': 1,\n",
      "          'headquarters': 1,\n",
      "          'fegan': 1,\n",
      "          'floop': 1,\n",
      "          'foppish': 1,\n",
      "          'hybrid': 1,\n",
      "          'willy': 1,\n",
      "          'wonka': 1,\n",
      "          'pee': 1,\n",
      "          'wee': 1,\n",
      "          'herman': 1,\n",
      "          'hosts': 1,\n",
      "          'junis': 1,\n",
      "          'favorite': 1,\n",
      "          'nbut': 1,\n",
      "          'evil': 1,\n",
      "          'behind': 1,\n",
      "          'inventors': 1,\n",
      "          'prepare': 1,\n",
      "          'army': 1,\n",
      "          'robots': 1,\n",
      "          'disguised': 1,\n",
      "          'npapa': 1,\n",
      "          'device': 1,\n",
      "          'necessary': 1,\n",
      "          'radically': 1,\n",
      "          'increase': 1,\n",
      "          'efficiency': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'stop': 1,\n",
      "          'nothing': 1,\n",
      "          'nback': 1,\n",
      "          'uncle': 1,\n",
      "          'felix': 1,\n",
      "          'cheech': 1,\n",
      "          'marin': 1,\n",
      "          'reveal': 1,\n",
      "          'mom': 1,\n",
      "          'dads': 1,\n",
      "          'nafter': 1,\n",
      "          'brief': 1,\n",
      "          'respite': 1,\n",
      "          'safe': 1,\n",
      "          'house': 1,\n",
      "          'filled': 1,\n",
      "          'cool': 1,\n",
      "          'gadgets': 1,\n",
      "          'dozen': 1,\n",
      "          'sharper': 1,\n",
      "          'image': 1,\n",
      "          'stores': 1,\n",
      "          'carmen': 1,\n",
      "          'set': 1,\n",
      "          'find': 1,\n",
      "          'save': 1,\n",
      "          'world': 1,\n",
      "          'zooming': 1,\n",
      "          'sea': 1,\n",
      "          'submarine': 1,\n",
      "          'pod': 1,\n",
      "          'looks': 1,\n",
      "          'goldfish': 1,\n",
      "          'slew': 1,\n",
      "          'wicked': 1,\n",
      "          'people': 1,\n",
      "          'teri': 1,\n",
      "          'hatcher': 1,\n",
      "          'chase': 1,\n",
      "          'nduring': 1,\n",
      "          'adventures': 1,\n",
      "          'use': 1,\n",
      "          'jet': 1,\n",
      "          'packs': 1,\n",
      "          'electroshock': 1,\n",
      "          'bubblegum': 1,\n",
      "          'supercomputer': 1,\n",
      "          'sunglasses': 1,\n",
      "          'watch': 1,\n",
      "          'transformed': 1,\n",
      "          'bizarre': 1,\n",
      "          'putty': 1,\n",
      "          'faces': 1,\n",
      "          'used': 1,\n",
      "          'background': 1,\n",
      "          'characters': 1,\n",
      "          'floops': 1,\n",
      "          'deal': 1,\n",
      "          'huge': 1,\n",
      "          'arms': 1,\n",
      "          'legs': 1,\n",
      "          'heads': 1,\n",
      "          'normally': 1,\n",
      "          'ineffective': 1,\n",
      "          'nbecause': 1,\n",
      "          'theyre': 1,\n",
      "          'move': 1,\n",
      "          'colorful': 1,\n",
      "          'locale': 1,\n",
      "          'another': 1,\n",
      "          'nifty': 1,\n",
      "          'reality': 1,\n",
      "          'room': 1,\n",
      "          'reminiscent': 1,\n",
      "          'holodeck': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'storyline': 1,\n",
      "          'convoluted': 1,\n",
      "          'dense': 1,\n",
      "          'easier': 1,\n",
      "          'follow': 1,\n",
      "          'either': 1,\n",
      "          'impossible': 1,\n",
      "          'ndirector': 1,\n",
      "          'robert': 1,\n",
      "          'dusk': 1,\n",
      "          'dawn': 1,\n",
      "          'maintains': 1,\n",
      "          'frenetic': 1,\n",
      "          'pace': 1,\n",
      "          'whole': 1,\n",
      "          'clocking': 1,\n",
      "          'mere': 1,\n",
      "          '86': 1,\n",
      "          'minutes': 1,\n",
      "          'na': 1,\n",
      "          'less': 1,\n",
      "          'little': 1,\n",
      "          'development': 1,\n",
      "          'provide': 1,\n",
      "          'quiet': 1,\n",
      "          'viewers': 1,\n",
      "          'fully': 1,\n",
      "          'invested': 1,\n",
      "          'nalexa': 1,\n",
      "          'make': 1,\n",
      "          'agreeable': 1,\n",
      "          'team': 1,\n",
      "          'squabbling': 1,\n",
      "          'way': 1,\n",
      "          'coming': 1,\n",
      "          'counts': 1,\n",
      "          'nantonio': 1,\n",
      "          'better': 1,\n",
      "          'quickly': 1,\n",
      "          'establish': 1,\n",
      "          'maintain': 1,\n",
      "          'great': 1,\n",
      "          'lusty': 1,\n",
      "          'chemistry': 1,\n",
      "          'keeping': 1,\n",
      "          'tongues': 1,\n",
      "          'properly': 1,\n",
      "          'cheek': 1,\n",
      "          'neven': 1,\n",
      "          'usually': 1,\n",
      "          'irritating': 1,\n",
      "          'cloudbacked': 1,\n",
      "          'chat': 1,\n",
      "          'segments': 1,\n",
      "          'nhad': 1,\n",
      "          'added': 1,\n",
      "          'enjoyed': 1,\n",
      "          'definitely': 1,\n",
      "          'could': 1,\n",
      "          'lived': 1,\n",
      "          'glaring': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'certain': 1,\n",
      "          'mcubiquitous': 1,\n",
      "          'company': 1,\n",
      "          'nregardless': 1,\n",
      "          'hoot': 1,\n",
      "          'offering': 1,\n",
      "          'adults': 1,\n",
      "          'alike': 1,\n",
      "          'nand': 1,\n",
      "          'think': 1,\n",
      "          'managed': 1,\n",
      "          'sacrificing': 1,\n",
      "          'single': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'really': 7,\n",
      "          'even': 5,\n",
      "          'guffman': 4,\n",
      "          'get': 4,\n",
      "          'play': 4,\n",
      "          'think': 3,\n",
      "          'waiting': 3,\n",
      "          'least': 3,\n",
      "          'funny': 3,\n",
      "          'levy': 3,\n",
      "          'film': 3,\n",
      "          'intros': 3,\n",
      "          'finally': 3,\n",
      "          'feel': 3,\n",
      "          'done': 3,\n",
      "          'nits': 3,\n",
      "          'see': 2,\n",
      "          'watching': 2,\n",
      "          'couple': 2,\n",
      "          'nand': 2,\n",
      "          'blaine': 2,\n",
      "          'musical': 2,\n",
      "          'put': 2,\n",
      "          'directed': 2,\n",
      "          'st': 2,\n",
      "          'clair': 2,\n",
      "          'guest': 2,\n",
      "          'also': 2,\n",
      "          'original': 2,\n",
      "          'willard': 2,\n",
      "          'ohara': 2,\n",
      "          'posey': 2,\n",
      "          'queen': 2,\n",
      "          'absolutely': 2,\n",
      "          'stands': 2,\n",
      "          'cant': 2,\n",
      "          'wonderful': 2,\n",
      "          'performance': 2,\n",
      "          'humor': 2,\n",
      "          'nas': 2,\n",
      "          'say': 2,\n",
      "          'nlike': 2,\n",
      "          'subtle': 2,\n",
      "          'people': 2,\n",
      "          'real': 2,\n",
      "          'neven': 2,\n",
      "          'way': 2,\n",
      "          'youre': 2,\n",
      "          'silly': 2,\n",
      "          'rating': 2,\n",
      "          'quite': 2,\n",
      "          'brief': 2,\n",
      "          'better': 2,\n",
      "          'ones': 2,\n",
      "          'films': 1,\n",
      "          'ive': 1,\n",
      "          'come': 1,\n",
      "          'year': 1,\n",
      "          '1997': 1,\n",
      "          'chasing': 1,\n",
      "          'amy': 1,\n",
      "          'many': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'moments': 1,\n",
      "          'nim': 1,\n",
      "          'saying': 1,\n",
      "          'hysterically': 1,\n",
      "          'rolling': 1,\n",
      "          'floor': 1,\n",
      "          'mouth': 1,\n",
      "          'burst': 1,\n",
      "          'open': 1,\n",
      "          'delighted': 1,\n",
      "          'guffaw': 1,\n",
      "          'every': 1,\n",
      "          'minutes': 1,\n",
      "          'im': 1,\n",
      "          'kind': 1,\n",
      "          'person': 1,\n",
      "          'laughs': 1,\n",
      "          'movies': 1,\n",
      "          'find': 1,\n",
      "          'nusually': 1,\n",
      "          'warm': 1,\n",
      "          'smile': 1,\n",
      "          'laughing': 1,\n",
      "          'loud': 1,\n",
      "          'frequently': 1,\n",
      "          'good': 1,\n",
      "          'sign': 1,\n",
      "          'nwaiting': 1,\n",
      "          'story': 1,\n",
      "          'missouri': 1,\n",
      "          'town': 1,\n",
      "          'celebrating': 1,\n",
      "          '150th': 1,\n",
      "          'anniversary': 1,\n",
      "          'big': 1,\n",
      "          'event': 1,\n",
      "          'nthe': 1,\n",
      "          'corky': 1,\n",
      "          'christopher': 1,\n",
      "          'wrote': 1,\n",
      "          'mockumentary': 1,\n",
      "          'well': 1,\n",
      "          'cowriting': 1,\n",
      "          'several': 1,\n",
      "          'numbers': 1,\n",
      "          'effeminate': 1,\n",
      "          'broadway': 1,\n",
      "          'hopeful': 1,\n",
      "          'determined': 1,\n",
      "          'make': 1,\n",
      "          'production': 1,\n",
      "          'smashing': 1,\n",
      "          'success': 1,\n",
      "          'nteaming': 1,\n",
      "          'handful': 1,\n",
      "          'residents': 1,\n",
      "          'allan': 1,\n",
      "          'pearl': 1,\n",
      "          'eugene': 1,\n",
      "          'jewish': 1,\n",
      "          'dentist': 1,\n",
      "          'spent': 1,\n",
      "          'youth': 1,\n",
      "          'class': 1,\n",
      "          'clown': 1,\n",
      "          'sitting': 1,\n",
      "          'right': 1,\n",
      "          'next': 1,\n",
      "          'studying': 1,\n",
      "          'ron': 1,\n",
      "          'sheila': 1,\n",
      "          'albertson': 1,\n",
      "          'fred': 1,\n",
      "          'catherine': 1,\n",
      "          'respectively': 1,\n",
      "          'married': 1,\n",
      "          'setting': 1,\n",
      "          'sights': 1,\n",
      "          'hollywood': 1,\n",
      "          'libby': 1,\n",
      "          'mae': 1,\n",
      "          'brown': 1,\n",
      "          'parker': 1,\n",
      "          'dense': 1,\n",
      "          'fun': 1,\n",
      "          'dairy': 1,\n",
      "          'others': 1,\n",
      "          'neverybody': 1,\n",
      "          'movie': 1,\n",
      "          'brilliant': 1,\n",
      "          'particularly': 1,\n",
      "          'nthese': 1,\n",
      "          'characters': 1,\n",
      "          'portrayed': 1,\n",
      "          'saddening': 1,\n",
      "          'realism': 1,\n",
      "          'help': 1,\n",
      "          'love': 1,\n",
      "          'pathetic': 1,\n",
      "          'nalthough': 1,\n",
      "          'definitely': 1,\n",
      "          'commended': 1,\n",
      "          'performances': 1,\n",
      "          'nif': 1,\n",
      "          'oscar': 1,\n",
      "          'ensemble': 1,\n",
      "          'group': 1,\n",
      "          'sweep': 1,\n",
      "          'nsome': 1,\n",
      "          'tad': 1,\n",
      "          'uneven': 1,\n",
      "          'rest': 1,\n",
      "          'starting': 1,\n",
      "          'humorously': 1,\n",
      "          'nearly': 1,\n",
      "          'lost': 1,\n",
      "          'tadtoolong': 1,\n",
      "          'delightful': 1,\n",
      "          'began': 1,\n",
      "          'monotonous': 1,\n",
      "          'nthankfully': 1,\n",
      "          'ok': 1,\n",
      "          'maybe': 1,\n",
      "          'run': 1,\n",
      "          'bathroom': 1,\n",
      "          'past': 1,\n",
      "          'onto': 1,\n",
      "          'rehearsal': 1,\n",
      "          'scenes': 1,\n",
      "          'gives': 1,\n",
      "          'threeact': 1,\n",
      "          'almost': 1,\n",
      "          'long': 1,\n",
      "          'rehearsals': 1,\n",
      "          'funnier': 1,\n",
      "          'actual': 1,\n",
      "          'excellent': 1,\n",
      "          'said': 1,\n",
      "          'character': 1,\n",
      "          'shines': 1,\n",
      "          'approach': 1,\n",
      "          'nyou': 1,\n",
      "          'watch': 1,\n",
      "          'theyre': 1,\n",
      "          'talk': 1,\n",
      "          'awkward': 1,\n",
      "          'pauses': 1,\n",
      "          'stumbles': 1,\n",
      "          'dont': 1,\n",
      "          'staged': 1,\n",
      "          'like': 1,\n",
      "          'albeit': 1,\n",
      "          'documentary': 1,\n",
      "          'lyrics': 1,\n",
      "          'songs': 1,\n",
      "          'word': 1,\n",
      "          'note': 1,\n",
      "          'despite': 1,\n",
      "          'r': 1,\n",
      "          'clean': 1,\n",
      "          'nthis': 1,\n",
      "          'came': 1,\n",
      "          'use': 1,\n",
      "          'granddaddy': 1,\n",
      "          'swear': 1,\n",
      "          'words': 1,\n",
      "          'bothers': 1,\n",
      "          'let': 1,\n",
      "          'presented': 1,\n",
      "          'vulgar': 1,\n",
      "          'cheaplaugh': 1,\n",
      "          'actually': 1,\n",
      "          'humorous': 1,\n",
      "          'tastefully': 1,\n",
      "          'nit': 1,\n",
      "          'might': 1,\n",
      "          'hard': 1,\n",
      "          'knowing': 1,\n",
      "          'expect': 1,\n",
      "          'dry': 1,\n",
      "          'intelligently': 1,\n",
      "          'insulted': 1,\n",
      "          'always': 1,\n",
      "          'nice': 1,\n",
      "          'comedy': 1,\n",
      "          'isnt': 1,\n",
      "          'slapstick': 1,\n",
      "          'vulgarity': 1,\n",
      "          'one': 1,\n",
      "          'nid': 1,\n",
      "          'recommend': 1,\n",
      "          'seeing': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hunting': 8,\n",
      "          'good': 7,\n",
      "          'nthe': 5,\n",
      "          'sean': 5,\n",
      "          'one': 5,\n",
      "          'affleck': 4,\n",
      "          'damon': 4,\n",
      "          'nbut': 3,\n",
      "          'friendship': 3,\n",
      "          'young': 3,\n",
      "          'two': 3,\n",
      "          'individual': 3,\n",
      "          'williams': 3,\n",
      "          'matt': 3,\n",
      "          'lambeau': 3,\n",
      "          'meeting': 3,\n",
      "          'ben': 3,\n",
      "          'driver': 3,\n",
      "          'film': 3,\n",
      "          'story': 2,\n",
      "          'little': 2,\n",
      "          'path': 2,\n",
      "          'written': 2,\n",
      "          'dialogue': 2,\n",
      "          'occasionally': 2,\n",
      "          'brilliant': 2,\n",
      "          'nlike': 2,\n",
      "          'time': 2,\n",
      "          'years': 2,\n",
      "          'man': 2,\n",
      "          'characters': 2,\n",
      "          'robin': 2,\n",
      "          'mcguire': 2,\n",
      "          'nand': 2,\n",
      "          'nwill': 2,\n",
      "          'professor': 2,\n",
      "          'stellan': 2,\n",
      "          'skarsgard': 2,\n",
      "          'work': 2,\n",
      "          'agrees': 2,\n",
      "          'spend': 2,\n",
      "          'day': 2,\n",
      "          'week': 2,\n",
      "          'several': 2,\n",
      "          'sessions': 2,\n",
      "          'minnie': 2,\n",
      "          'smith': 2,\n",
      "          'actors': 2,\n",
      "          'scenes': 2,\n",
      "          'movie': 2,\n",
      "          'strong': 2,\n",
      "          'earn': 2,\n",
      "          'performance': 2,\n",
      "          'best': 2,\n",
      "          'provided': 2,\n",
      "          'essence': 1,\n",
      "          'ordinary': 1,\n",
      "          'told': 1,\n",
      "          'well': 1,\n",
      "          'ntaken': 1,\n",
      "          'whole': 1,\n",
      "          'theres': 1,\n",
      "          'thats': 1,\n",
      "          'special': 1,\n",
      "          'tale': 1,\n",
      "          'follows': 1,\n",
      "          'traditional': 1,\n",
      "          'narrative': 1,\n",
      "          'leaves': 1,\n",
      "          'audience': 1,\n",
      "          'warm': 1,\n",
      "          'fuzzy': 1,\n",
      "          'feeling': 1,\n",
      "          'never': 1,\n",
      "          'really': 1,\n",
      "          'challenges': 1,\n",
      "          'surprises': 1,\n",
      "          'us': 1,\n",
      "          'intelligently': 1,\n",
      "          'strongly': 1,\n",
      "          'directed': 1,\n",
      "          'nicely': 1,\n",
      "          'acted': 1,\n",
      "          'nso': 1,\n",
      "          'far': 1,\n",
      "          'lateyear': 1,\n",
      "          'masterpiece': 1,\n",
      "          'worthwhile': 1,\n",
      "          'sample': 1,\n",
      "          'entertainment': 1,\n",
      "          'scent': 1,\n",
      "          'woman': 1,\n",
      "          'released': 1,\n",
      "          'around': 1,\n",
      "          'season': 1,\n",
      "          'five': 1,\n",
      "          'ago': 1,\n",
      "          'unlikely': 1,\n",
      "          'develops': 1,\n",
      "          'worldweary': 1,\n",
      "          'veteran': 1,\n",
      "          'cocky': 1,\n",
      "          'formula': 1,\n",
      "          'films': 1,\n",
      "          'similar': 1,\n",
      "          'principals': 1,\n",
      "          'learn': 1,\n",
      "          'slowly': 1,\n",
      "          'break': 1,\n",
      "          'barriers': 1,\n",
      "          'way': 1,\n",
      "          'better': 1,\n",
      "          'understanding': 1,\n",
      "          'life': 1,\n",
      "          'place': 1,\n",
      "          'different': 1,\n",
      "          'nal': 1,\n",
      "          'pacinos': 1,\n",
      "          'slade': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'much': 1,\n",
      "          'subtle': 1,\n",
      "          'damons': 1,\n",
      "          'uses': 1,\n",
      "          'pugnaciousness': 1,\n",
      "          'supplant': 1,\n",
      "          'blandness': 1,\n",
      "          'chris': 1,\n",
      "          'odonnells': 1,\n",
      "          'charlie': 1,\n",
      "          'troubled': 1,\n",
      "          'nas': 1,\n",
      "          'child': 1,\n",
      "          'frequent': 1,\n",
      "          'victim': 1,\n",
      "          'abuse': 1,\n",
      "          'nan': 1,\n",
      "          'orphan': 1,\n",
      "          'foster': 1,\n",
      "          'homes': 1,\n",
      "          'regular': 1,\n",
      "          'basis': 1,\n",
      "          'nnow': 1,\n",
      "          'yet': 1,\n",
      "          '21': 1,\n",
      "          'old': 1,\n",
      "          'accumulated': 1,\n",
      "          'impressive': 1,\n",
      "          'rap': 1,\n",
      "          'sheet': 1,\n",
      "          'nhe': 1,\n",
      "          'short': 1,\n",
      "          'temper': 1,\n",
      "          'incident': 1,\n",
      "          'set': 1,\n",
      "          'like': 1,\n",
      "          'spark': 1,\n",
      "          'tinder': 1,\n",
      "          'box': 1,\n",
      "          'hes': 1,\n",
      "          'mathematical': 1,\n",
      "          'genius': 1,\n",
      "          'photographic': 1,\n",
      "          'memory': 1,\n",
      "          'ability': 1,\n",
      "          'conceive': 1,\n",
      "          'simple': 1,\n",
      "          'solutions': 1,\n",
      "          'complex': 1,\n",
      "          'problems': 1,\n",
      "          'nwhile': 1,\n",
      "          'working': 1,\n",
      "          'janitor': 1,\n",
      "          'mit': 1,\n",
      "          'delights': 1,\n",
      "          'anonymously': 1,\n",
      "          'proving': 1,\n",
      "          'theorems': 1,\n",
      "          'math': 1,\n",
      "          'buildings': 1,\n",
      "          'hall': 1,\n",
      "          'blackboards': 1,\n",
      "          'nthen': 1,\n",
      "          'evening': 1,\n",
      "          'anonymity': 1,\n",
      "          'shattered': 1,\n",
      "          'catches': 1,\n",
      "          'flees': 1,\n",
      "          'tracks': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'finds': 1,\n",
      "          'jail': 1,\n",
      "          'assaulting': 1,\n",
      "          'police': 1,\n",
      "          'offer': 1,\n",
      "          'judge': 1,\n",
      "          'release': 1,\n",
      "          'conditions': 1,\n",
      "          'therapist': 1,\n",
      "          'neventually': 1,\n",
      "          'psychologists': 1,\n",
      "          'rejected': 1,\n",
      "          'belligerent': 1,\n",
      "          'teacher': 1,\n",
      "          'bunker': 1,\n",
      "          'hill': 1,\n",
      "          'community': 1,\n",
      "          'college': 1,\n",
      "          'take': 1,\n",
      "          'case': 1,\n",
      "          'nafter': 1,\n",
      "          'rocky': 1,\n",
      "          'start': 1,\n",
      "          'form': 1,\n",
      "          'rapport': 1,\n",
      "          'begins': 1,\n",
      "          'explore': 1,\n",
      "          'issues': 1,\n",
      "          'emotions': 1,\n",
      "          'walled': 1,\n",
      "          'behind': 1,\n",
      "          'impregnable': 1,\n",
      "          'armor': 1,\n",
      "          'advances': 1,\n",
      "          'selfawareness': 1,\n",
      "          'also': 1,\n",
      "          'learns': 1,\n",
      "          'buddy': 1,\n",
      "          'chuckie': 1,\n",
      "          'love': 1,\n",
      "          'harvard': 1,\n",
      "          'coed': 1,\n",
      "          'named': 1,\n",
      "          'skylar': 1,\n",
      "          'script': 1,\n",
      "          'costars': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'piece': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'literature': 1,\n",
      "          'resorts': 1,\n",
      "          'shameless': 1,\n",
      "          'manipulation': 1,\n",
      "          'welldeveloped': 1,\n",
      "          'however': 1,\n",
      "          'times': 1,\n",
      "          'positively': 1,\n",
      "          'sparkles': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'comments': 1,\n",
      "          'session': 1,\n",
      "          'turning': 1,\n",
      "          'tasters': 1,\n",
      "          'choice': 1,\n",
      "          'moment': 1,\n",
      "          'nlater': 1,\n",
      "          'gives': 1,\n",
      "          'breathless': 1,\n",
      "          'diatribe': 1,\n",
      "          'nsa': 1,\n",
      "          'rhythm': 1,\n",
      "          'something': 1,\n",
      "          'kevin': 1,\n",
      "          'n': 1,\n",
      "          'note': 1,\n",
      "          'since': 1,\n",
      "          'coexecutive': 1,\n",
      "          'produced': 1,\n",
      "          'question': 1,\n",
      "          'input': 1,\n",
      "          'scene': 1,\n",
      "          'ndirector': 1,\n",
      "          'gus': 1,\n",
      "          'van': 1,\n",
      "          'sant': 1,\n",
      "          'drugstore': 1,\n",
      "          'cowboy': 1,\n",
      "          'die': 1,\n",
      "          'culls': 1,\n",
      "          'genuine': 1,\n",
      "          'emotion': 1,\n",
      "          'results': 1,\n",
      "          'affecting': 1,\n",
      "          'powerful': 1,\n",
      "          'ntheres': 1,\n",
      "          'edginess': 1,\n",
      "          'seanwill': 1,\n",
      "          'therapy': 1,\n",
      "          'offscreen': 1,\n",
      "          'chemistry': 1,\n",
      "          'became': 1,\n",
      "          'romantically': 1,\n",
      "          'linked': 1,\n",
      "          'making': 1,\n",
      "          'translates': 1,\n",
      "          'effectively': 1,\n",
      "          'willskylar': 1,\n",
      "          'relationship': 1,\n",
      "          'electric': 1,\n",
      "          'nlikewise': 1,\n",
      "          'companionability': 1,\n",
      "          'apparent': 1,\n",
      "          'easygoing': 1,\n",
      "          'nature': 1,\n",
      "          'chuckies': 1,\n",
      "          'nmany': 1,\n",
      "          'enough': 1,\n",
      "          'recommendation': 1,\n",
      "          'even': 1,\n",
      "          'overall': 1,\n",
      "          'somewhat': 1,\n",
      "          'generic': 1,\n",
      "          'nmatt': 1,\n",
      "          'recently': 1,\n",
      "          'starred': 1,\n",
      "          'idealistic': 1,\n",
      "          'lawyer': 1,\n",
      "          'rainmaker': 1,\n",
      "          'solid': 1,\n",
      "          'although': 1,\n",
      "          'spectacular': 1,\n",
      "          'nminnie': 1,\n",
      "          'last': 1,\n",
      "          'seen': 1,\n",
      "          'grosse': 1,\n",
      "          'pointe': 1,\n",
      "          'blank': 1,\n",
      "          'adds': 1,\n",
      "          'another': 1,\n",
      "          'growing': 1,\n",
      "          'resume': 1,\n",
      "          'refreshing': 1,\n",
      "          'allowed': 1,\n",
      "          'keep': 1,\n",
      "          'british': 1,\n",
      "          'accent': 1,\n",
      "          'rather': 1,\n",
      "          'attempt': 1,\n",
      "          'american': 1,\n",
      "          'outstanding': 1,\n",
      "          'belongs': 1,\n",
      "          'whose': 1,\n",
      "          'sad': 1,\n",
      "          'wise': 1,\n",
      "          'funny': 1,\n",
      "          'somber': 1,\n",
      "          'narguably': 1,\n",
      "          'dramatic': 1,\n",
      "          'career': 1,\n",
      "          'alongside': 1,\n",
      "          'fisher': 1,\n",
      "          'king': 1,\n",
      "          'portrayal': 1,\n",
      "          'could': 1,\n",
      "          'supporting': 1,\n",
      "          'actor': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'nadequate': 1,\n",
      "          'support': 1,\n",
      "          'chasing': 1,\n",
      "          'amy': 1,\n",
      "          'breaking': 1,\n",
      "          'waves': 1,\n",
      "          'comes': 1,\n",
      "          'ending': 1,\n",
      "          'completely': 1,\n",
      "          'predictable': 1,\n",
      "          'expectations': 1,\n",
      "          'following': 1,\n",
      "          'familiar': 1,\n",
      "          'arent': 1,\n",
      "          'always': 1,\n",
      "          'bad': 1,\n",
      "          'things': 1,\n",
      "          'accomplishes': 1,\n",
      "          'goals': 1,\n",
      "          'modicum': 1,\n",
      "          'style': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'ngood': 1,\n",
      "          'result': 1,\n",
      "          'earns': 1,\n",
      "          'rating': 1,\n",
      "          'commensurate': 1,\n",
      "          'title': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'three': 8,\n",
      "          'endings': 8,\n",
      "          'nthe': 6,\n",
      "          'dvd': 6,\n",
      "          'well': 5,\n",
      "          'video': 5,\n",
      "          'ending': 5,\n",
      "          'clue': 4,\n",
      "          'one': 4,\n",
      "          'home': 4,\n",
      "          'watch': 4,\n",
      "          'version': 3,\n",
      "          'game': 3,\n",
      "          'nwhen': 3,\n",
      "          'someone': 3,\n",
      "          'long': 3,\n",
      "          'good': 3,\n",
      "          'paramount': 3,\n",
      "          'trailer': 3,\n",
      "          'times': 3,\n",
      "          'special': 3,\n",
      "          'murder': 2,\n",
      "          'death': 2,\n",
      "          'screen': 2,\n",
      "          'picture': 2,\n",
      "          'case': 2,\n",
      "          'whos': 2,\n",
      "          'nand': 2,\n",
      "          'definitely': 2,\n",
      "          'moments': 2,\n",
      "          'nit': 2,\n",
      "          'im': 2,\n",
      "          'phrase': 2,\n",
      "          'late': 2,\n",
      "          'go': 2,\n",
      "          'talents': 2,\n",
      "          'french': 2,\n",
      "          'available': 2,\n",
      "          'includes': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          '1': 2,\n",
      "          'time': 2,\n",
      "          'scene': 2,\n",
      "          'choice': 2,\n",
      "          'played': 2,\n",
      "          'see': 2,\n",
      "          'separate': 2,\n",
      "          'two': 2,\n",
      "          'nnow': 2,\n",
      "          'select': 2,\n",
      "          'randomly': 2,\n",
      "          'disc': 2,\n",
      "          'watching': 2,\n",
      "          'menu': 2,\n",
      "          'like': 2,\n",
      "          'hundreds': 2,\n",
      "          'would': 2,\n",
      "          'distraction': 2,\n",
      "          'unfairly': 1,\n",
      "          'ignored': 1,\n",
      "          'comedy': 1,\n",
      "          'similar': 1,\n",
      "          '1976s': 1,\n",
      "          'nthis': 1,\n",
      "          'big': 1,\n",
      "          'classic': 1,\n",
      "          'board': 1,\n",
      "          'whats': 1,\n",
      "          'next': 1,\n",
      "          'nchutes': 1,\n",
      "          'ladders': 1,\n",
      "          'motion': 1,\n",
      "          'filled': 1,\n",
      "          'slapstick': 1,\n",
      "          'antics': 1,\n",
      "          'silly': 1,\n",
      "          'dialogue': 1,\n",
      "          'plot': 1,\n",
      "          'worth': 1,\n",
      "          'characters': 1,\n",
      "          'names': 1,\n",
      "          'used': 1,\n",
      "          'aliases': 1,\n",
      "          'meeting': 1,\n",
      "          'isolated': 1,\n",
      "          'mansion': 1,\n",
      "          'confront': 1,\n",
      "          'mr': 1,\n",
      "          'boddy': 1,\n",
      "          'lee': 1,\n",
      "          'ving': 1,\n",
      "          'man': 1,\n",
      "          'blackmailing': 1,\n",
      "          'turns': 1,\n",
      "          'dead': 1,\n",
      "          'everyone': 1,\n",
      "          'including': 1,\n",
      "          'audience': 1,\n",
      "          'must': 1,\n",
      "          'figure': 1,\n",
      "          'whodunnit': 1,\n",
      "          'room': 1,\n",
      "          'object': 1,\n",
      "          'nwhile': 1,\n",
      "          'witty': 1,\n",
      "          'neil': 1,\n",
      "          'simons': 1,\n",
      "          'many': 1,\n",
      "          'fact': 1,\n",
      "          'use': 1,\n",
      "          'lot': 1,\n",
      "          'lines': 1,\n",
      "          'joking': 1,\n",
      "          'around': 1,\n",
      "          'friends': 1,\n",
      "          'nto': 1,\n",
      "          'day': 1,\n",
      "          'whenever': 1,\n",
      "          'says': 1,\n",
      "          'make': 1,\n",
      "          'story': 1,\n",
      "          'short': 1,\n",
      "          'follow': 1,\n",
      "          'ready': 1,\n",
      "          'cast': 1,\n",
      "          'comedic': 1,\n",
      "          'play': 1,\n",
      "          'another': 1,\n",
      "          'madeline': 1,\n",
      "          'kahn': 1,\n",
      "          'dark': 1,\n",
      "          'sultry': 1,\n",
      "          'mrs': 1,\n",
      "          'white': 1,\n",
      "          'sometimes': 1,\n",
      "          'steals': 1,\n",
      "          'away': 1,\n",
      "          'rest': 1,\n",
      "          'colleen': 1,\n",
      "          'camp': 1,\n",
      "          'maid': 1,\n",
      "          'yvette': 1,\n",
      "          'displays': 1,\n",
      "          'natural': 1,\n",
      "          'nclue': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          'enhanced': 1,\n",
      "          '16x9': 1,\n",
      "          'televisions': 1,\n",
      "          'features': 1,\n",
      "          'na': 1,\n",
      "          'language': 1,\n",
      "          'audio': 1,\n",
      "          'track': 1,\n",
      "          'also': 1,\n",
      "          'holds': 1,\n",
      "          'considering': 1,\n",
      "          'previews': 1,\n",
      "          'even': 1,\n",
      "          'joke': 1,\n",
      "          'nalso': 1,\n",
      "          'scored': 1,\n",
      "          'music': 1,\n",
      "          'airplane': 1,\n",
      "          'interesting': 1,\n",
      "          'theaters': 1,\n",
      "          'ran': 1,\n",
      "          'gimmick': 1,\n",
      "          'different': 1,\n",
      "          'nif': 1,\n",
      "          'wanted': 1,\n",
      "          'movies': 1,\n",
      "          'nso': 1,\n",
      "          'released': 1,\n",
      "          'rather': 1,\n",
      "          'releasing': 1,\n",
      "          'videos': 1,\n",
      "          'included': 1,\n",
      "          'tape': 1,\n",
      "          'first': 1,\n",
      "          'nendings': 1,\n",
      "          'third': 1,\n",
      "          'actual': 1,\n",
      "          'release': 1,\n",
      "          'get': 1,\n",
      "          'choices': 1,\n",
      "          'nyou': 1,\n",
      "          'presented': 1,\n",
      "          'chosen': 1,\n",
      "          'n': 1,\n",
      "          'note': 1,\n",
      "          'theres': 1,\n",
      "          'easter': 1,\n",
      "          'egg': 1,\n",
      "          'hidden': 1,\n",
      "          'pertaining': 1,\n",
      "          'nafter': 1,\n",
      "          'selected': 1,\n",
      "          'return': 1,\n",
      "          'able': 1,\n",
      "          'highlight': 1,\n",
      "          'large': 1,\n",
      "          'magnifying': 1,\n",
      "          'glass': 1,\n",
      "          'secret': 1,\n",
      "          'opens': 1,\n",
      "          'allowing': 1,\n",
      "          'applaud': 1,\n",
      "          'effort': 1,\n",
      "          'clearly': 1,\n",
      "          'tried': 1,\n",
      "          'something': 1,\n",
      "          'doesnt': 1,\n",
      "          'work': 1,\n",
      "          'nfirst': 1,\n",
      "          'give': 1,\n",
      "          'viewer': 1,\n",
      "          'want': 1,\n",
      "          'nmaybe': 1,\n",
      "          'seen': 1,\n",
      "          'movie': 1,\n",
      "          'sit': 1,\n",
      "          'show': 1,\n",
      "          'second': 1,\n",
      "          'nim': 1,\n",
      "          'technical': 1,\n",
      "          'expert': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'hard': 1,\n",
      "          'accomplish': 1,\n",
      "          'nsecondly': 1,\n",
      "          'delay': 1,\n",
      "          'ends': 1,\n",
      "          'begins': 1,\n",
      "          'obvious': 1,\n",
      "          'thereby': 1,\n",
      "          'becoming': 1,\n",
      "          'right': 1,\n",
      "          'dont': 1,\n",
      "          'need': 1,\n",
      "          'nfinally': 1,\n",
      "          'back': 1,\n",
      "          'states': 1,\n",
      "          '3': 1,\n",
      "          'surprise': 1,\n",
      "          'ni': 1,\n",
      "          'idea': 1,\n",
      "          'word': 1,\n",
      "          'way': 1,\n",
      "          'since': 1,\n",
      "          'thats': 1,\n",
      "          'feature': 1,\n",
      "          'slightest': 1,\n",
      "          'fifteen': 1,\n",
      "          'years': 1,\n",
      "          'lord': 1,\n",
      "          'television': 1,\n",
      "          'nthese': 1,\n",
      "          'merely': 1,\n",
      "          'minor': 1,\n",
      "          'complaints': 1,\n",
      "          'however': 1,\n",
      "          'seeing': 1,\n",
      "          'ive': 1,\n",
      "          'watched': 1,\n",
      "          'problem': 1,\n",
      "          'sound': 1,\n",
      "          'wonderfully': 1,\n",
      "          'improved': 1,\n",
      "          'worn': 1,\n",
      "          'vhs': 1,\n",
      "          'copy': 1,\n",
      "          'thrilled': 1,\n",
      "          'agrees': 1,\n",
      "          'worthy': 1,\n",
      "          'preserved': 1,\n",
      "          'great': 1,\n",
      "          'digital': 1,\n",
      "          'format': 1,\n",
      "          'npg': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'character': 5,\n",
      "          'dream': 4,\n",
      "          'team': 4,\n",
      "          'characters': 3,\n",
      "          'keaton': 3,\n",
      "          'get': 3,\n",
      "          'boyle': 3,\n",
      "          'comedy': 2,\n",
      "          'four': 2,\n",
      "          'played': 2,\n",
      "          'lloyd': 2,\n",
      "          'thinks': 2,\n",
      "          'hes': 2,\n",
      "          'walks': 2,\n",
      "          'peter': 2,\n",
      "          'stephen': 2,\n",
      "          'furst': 2,\n",
      "          'catatonic': 2,\n",
      "          'weitzman': 2,\n",
      "          'cast': 2,\n",
      "          'film': 2,\n",
      "          'another': 2,\n",
      "          'jack': 2,\n",
      "          'example': 2,\n",
      "          'way': 2,\n",
      "          'gives': 2,\n",
      "          'makes': 2,\n",
      "          'performance': 2,\n",
      "          'thoroughly': 1,\n",
      "          'entertaining': 1,\n",
      "          'featuring': 1,\n",
      "          'loveable': 1,\n",
      "          'happen': 1,\n",
      "          'slightly': 1,\n",
      "          'insane': 1,\n",
      "          'nbilly': 1,\n",
      "          'michael': 1,\n",
      "          'extremely': 1,\n",
      "          'temperamental': 1,\n",
      "          'mental': 1,\n",
      "          'ward': 1,\n",
      "          'patient': 1,\n",
      "          'whose': 1,\n",
      "          'short': 1,\n",
      "          'fuse': 1,\n",
      "          'violent': 1,\n",
      "          'tantrums': 1,\n",
      "          'tend': 1,\n",
      "          'trouble': 1,\n",
      "          'nchristopher': 1,\n",
      "          'portrays': 1,\n",
      "          'henry': 1,\n",
      "          'obsessivecompulsive': 1,\n",
      "          'requires': 1,\n",
      "          'everything': 1,\n",
      "          'neat': 1,\n",
      "          'orderly': 1,\n",
      "          'schedule': 1,\n",
      "          'books': 1,\n",
      "          'nhe': 1,\n",
      "          'doctor': 1,\n",
      "          'around': 1,\n",
      "          'wearing': 1,\n",
      "          'suit': 1,\n",
      "          'carrying': 1,\n",
      "          'clipboard': 1,\n",
      "          'constantly': 1,\n",
      "          'scribbles': 1,\n",
      "          'notes': 1,\n",
      "          'files': 1,\n",
      "          'reports': 1,\n",
      "          'njack': 1,\n",
      "          'jesus': 1,\n",
      "          'nand': 1,\n",
      "          'finally': 1,\n",
      "          'theres': 1,\n",
      "          'albert': 1,\n",
      "          'chubby': 1,\n",
      "          'speaks': 1,\n",
      "          'baseball': 1,\n",
      "          'television': 1,\n",
      "          'phrases': 1,\n",
      "          'follows': 1,\n",
      "          'misadventures': 1,\n",
      "          'beset': 1,\n",
      "          'foursome': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'dr': 1,\n",
      "          'takes': 1,\n",
      "          'hospital': 1,\n",
      "          'field': 1,\n",
      "          'trip': 1,\n",
      "          'yankee': 1,\n",
      "          'stadium': 1,\n",
      "          'nduring': 1,\n",
      "          'pit': 1,\n",
      "          'stop': 1,\n",
      "          'separated': 1,\n",
      "          'left': 1,\n",
      "          'fend': 1,\n",
      "          'manhattan': 1,\n",
      "          'movies': 1,\n",
      "          'charm': 1,\n",
      "          'derives': 1,\n",
      "          'mostly': 1,\n",
      "          'camaraderie': 1,\n",
      "          'chemistry': 1,\n",
      "          'delightful': 1,\n",
      "          'leads': 1,\n",
      "          'play': 1,\n",
      "          'quite': 1,\n",
      "          'effectively': 1,\n",
      "          'never': 1,\n",
      "          'miss': 1,\n",
      "          'opportunity': 1,\n",
      "          'argue': 1,\n",
      "          'bicker': 1,\n",
      "          'insult': 1,\n",
      "          'one': 1,\n",
      "          'nhenry': 1,\n",
      "          'fight': 1,\n",
      "          'whos': 1,\n",
      "          'going': 1,\n",
      "          'ride': 1,\n",
      "          'front': 1,\n",
      "          'passenger': 1,\n",
      "          'seat': 1,\n",
      "          'game': 1,\n",
      "          'actors': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'nmichael': 1,\n",
      "          'well': 1,\n",
      "          'billy': 1,\n",
      "          'cynical': 1,\n",
      "          'considerable': 1,\n",
      "          'complexity': 1,\n",
      "          'nas': 1,\n",
      "          'divinely': 1,\n",
      "          'succeeds': 1,\n",
      "          'keeping': 1,\n",
      "          'onedimensional': 1,\n",
      "          'funny': 1,\n",
      "          'fresh': 1,\n",
      "          'nalthough': 1,\n",
      "          'fursts': 1,\n",
      "          'cliched': 1,\n",
      "          'actor': 1,\n",
      "          'sympathetic': 1,\n",
      "          'endearing': 1,\n",
      "          'nwhile': 1,\n",
      "          'good': 1,\n",
      "          'christopher': 1,\n",
      "          'really': 1,\n",
      "          'movie': 1,\n",
      "          'special': 1,\n",
      "          'nlloyd': 1,\n",
      "          'yet': 1,\n",
      "          'outstanding': 1,\n",
      "          'comic': 1,\n",
      "          'nhis': 1,\n",
      "          'body': 1,\n",
      "          'language': 1,\n",
      "          'facial': 1,\n",
      "          'expressions': 1,\n",
      "          'perfectly': 1,\n",
      "          'suited': 1,\n",
      "          'compulsive': 1,\n",
      "          'nlloyds': 1,\n",
      "          'brilliant': 1,\n",
      "          'yields': 1,\n",
      "          'pathetic': 1,\n",
      "          'moving': 1,\n",
      "          'memorable': 1,\n",
      "          'solid': 1,\n",
      "          'depth': 1,\n",
      "          'drama': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'simple': 1,\n",
      "          'premise': 1,\n",
      "          'appealing': 1,\n",
      "          'excuse': 1,\n",
      "          'often': 1,\n",
      "          'outlandish': 1,\n",
      "          'unbelievable': 1,\n",
      "          'plot': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 17,\n",
      "          'space': 10,\n",
      "          'pilots': 9,\n",
      "          'nthe': 8,\n",
      "          'astronauts': 8,\n",
      "          'test': 7,\n",
      "          'yeager': 7,\n",
      "          'nin': 6,\n",
      "          'nbut': 6,\n",
      "          'right': 6,\n",
      "          'stuff': 6,\n",
      "          'kaufman': 6,\n",
      "          'also': 6,\n",
      "          'great': 6,\n",
      "          'fiction': 5,\n",
      "          'many': 5,\n",
      "          'order': 5,\n",
      "          'lacks': 5,\n",
      "          'science': 4,\n",
      "          'could': 4,\n",
      "          'played': 4,\n",
      "          'new': 4,\n",
      "          'age': 4,\n",
      "          'time': 4,\n",
      "          'use': 4,\n",
      "          'like': 4,\n",
      "          'still': 4,\n",
      "          'books': 3,\n",
      "          'movie': 3,\n",
      "          'years': 3,\n",
      "          'fact': 3,\n",
      "          'suits': 3,\n",
      "          'even': 3,\n",
      "          'american': 3,\n",
      "          'flights': 3,\n",
      "          'one': 3,\n",
      "          'generation': 3,\n",
      "          'films': 3,\n",
      "          'kaufmans': 3,\n",
      "          'real': 3,\n",
      "          'memorable': 3,\n",
      "          'acting': 3,\n",
      "          'character': 3,\n",
      "          'shepard': 3,\n",
      "          'war': 3,\n",
      "          'fine': 3,\n",
      "          'mercury': 3,\n",
      "          'effects': 3,\n",
      "          'authentic': 3,\n",
      "          'people': 2,\n",
      "          'due': 2,\n",
      "          'comic': 2,\n",
      "          'movies': 2,\n",
      "          'labelled': 2,\n",
      "          'simple': 2,\n",
      "          'cases': 2,\n",
      "          'historical': 2,\n",
      "          'epic': 2,\n",
      "          'nsuch': 2,\n",
      "          'former': 2,\n",
      "          'national': 2,\n",
      "          'distributors': 2,\n",
      "          'gave': 2,\n",
      "          'explained': 2,\n",
      "          'men': 2,\n",
      "          'nit': 2,\n",
      "          'early': 2,\n",
      "          'program': 2,\n",
      "          'plot': 2,\n",
      "          'air': 2,\n",
      "          'force': 2,\n",
      "          'major': 2,\n",
      "          'aircraft': 2,\n",
      "          'speed': 2,\n",
      "          'thus': 2,\n",
      "          'sound': 2,\n",
      "          'barrier': 2,\n",
      "          'lives': 2,\n",
      "          'gives': 2,\n",
      "          'history': 2,\n",
      "          'beginning': 2,\n",
      "          'first': 2,\n",
      "          'man': 2,\n",
      "          'navy': 2,\n",
      "          'marine': 2,\n",
      "          'image': 2,\n",
      "          'critics': 2,\n",
      "          'made': 2,\n",
      "          'quite': 2,\n",
      "          'hours': 2,\n",
      "          '1960s': 2,\n",
      "          'hollywood': 2,\n",
      "          'used': 2,\n",
      "          'make': 2,\n",
      "          'life': 2,\n",
      "          'unusual': 2,\n",
      "          'focus': 2,\n",
      "          'conventional': 2,\n",
      "          'hero': 2,\n",
      "          'wives': 2,\n",
      "          'piece': 2,\n",
      "          'talents': 2,\n",
      "          'non': 2,\n",
      "          'future': 2,\n",
      "          'glenn': 2,\n",
      "          'mirrored': 2,\n",
      "          'figure': 2,\n",
      "          'scott': 2,\n",
      "          'provides': 2,\n",
      "          'deschanel': 2,\n",
      "          'superb': 2,\n",
      "          'desert': 2,\n",
      "          'away': 2,\n",
      "          'strict': 2,\n",
      "          'rules': 2,\n",
      "          'natural': 2,\n",
      "          'important': 2,\n",
      "          'times': 2,\n",
      "          'replaced': 2,\n",
      "          'cold': 2,\n",
      "          'must': 2,\n",
      "          'nthis': 2,\n",
      "          'although': 2,\n",
      "          'nthose': 2,\n",
      "          'would': 2,\n",
      "          'period': 2,\n",
      "          'earth': 2,\n",
      "          'nsome': 2,\n",
      "          'russians': 2,\n",
      "          'portrayed': 2,\n",
      "          'enjoy': 1,\n",
      "          'often': 1,\n",
      "          'faced': 1,\n",
      "          'unpleasant': 1,\n",
      "          'surprises': 1,\n",
      "          'improper': 1,\n",
      "          'labelling': 1,\n",
      "          'novels': 1,\n",
      "          'stories': 1,\n",
      "          'noften': 1,\n",
      "          'aficionados': 1,\n",
      "          'find': 1,\n",
      "          'material': 1,\n",
      "          'previously': 1,\n",
      "          'pure': 1,\n",
      "          'fantasy': 1,\n",
      "          'supernatural': 1,\n",
      "          'horror': 1,\n",
      "          'rather': 1,\n",
      "          'technothriller': 1,\n",
      "          'mistakes': 1,\n",
      "          'understandable': 1,\n",
      "          'genre': 1,\n",
      "          'boundaries': 1,\n",
      "          'never': 1,\n",
      "          'clearly': 1,\n",
      "          'marked': 1,\n",
      "          'believe': 1,\n",
      "          'really': 1,\n",
      "          'actually': 1,\n",
      "          'happens': 1,\n",
      "          'straight': 1,\n",
      "          'thing': 1,\n",
      "          'occurred': 1,\n",
      "          'yugoslavia': 1,\n",
      "          'fifteen': 1,\n",
      "          'ago': 1,\n",
      "          'treatment': 1,\n",
      "          '1983': 1,\n",
      "          'directed': 1,\n",
      "          'philip': 1,\n",
      "          'mistake': 1,\n",
      "          'official': 1,\n",
      "          'poster': 1,\n",
      "          'features': 1,\n",
      "          'isnt': 1,\n",
      "          'based': 1,\n",
      "          'nonfiction': 1,\n",
      "          'book': 1,\n",
      "          'tom': 1,\n",
      "          'wolfe': 1,\n",
      "          'covering': 1,\n",
      "          'begins': 1,\n",
      "          '1947': 1,\n",
      "          'heard': 1,\n",
      "          'edwards': 1,\n",
      "          'base': 1,\n",
      "          'site': 1,\n",
      "          'experimental': 1,\n",
      "          'planes': 1,\n",
      "          'aim': 1,\n",
      "          'determine': 1,\n",
      "          'ability': 1,\n",
      "          'manned': 1,\n",
      "          'reach': 1,\n",
      "          '1': 1,\n",
      "          'mach': 1,\n",
      "          'break': 1,\n",
      "          'nmany': 1,\n",
      "          'tried': 1,\n",
      "          'achieve': 1,\n",
      "          'goal': 1,\n",
      "          'paid': 1,\n",
      "          'bravado': 1,\n",
      "          'quiet': 1,\n",
      "          'pilot': 1,\n",
      "          'chuck': 1,\n",
      "          'eager': 1,\n",
      "          'sam': 1,\n",
      "          'shaped': 1,\n",
      "          'succeeds': 1,\n",
      "          'example': 1,\n",
      "          'whole': 1,\n",
      "          'determined': 1,\n",
      "          'enter': 1,\n",
      "          'breaking': 1,\n",
      "          'records': 1,\n",
      "          'nten': 1,\n",
      "          'later': 1,\n",
      "          'soviets': 1,\n",
      "          'launched': 1,\n",
      "          'sputnik': 1,\n",
      "          'marking': 1,\n",
      "          'regain': 1,\n",
      "          'prestige': 1,\n",
      "          'us': 1,\n",
      "          'government': 1,\n",
      "          'decides': 1,\n",
      "          'send': 1,\n",
      "          'nbest': 1,\n",
      "          'recruited': 1,\n",
      "          'college': 1,\n",
      "          'education': 1,\n",
      "          'desired': 1,\n",
      "          'allamerican': 1,\n",
      "          'polls': 1,\n",
      "          'named': 1,\n",
      "          'among': 1,\n",
      "          'top': 1,\n",
      "          '10': 1,\n",
      "          '1980s': 1,\n",
      "          'high': 1,\n",
      "          'position': 1,\n",
      "          'looks': 1,\n",
      "          'atypical': 1,\n",
      "          'nwith': 1,\n",
      "          'three': 1,\n",
      "          'length': 1,\n",
      "          'scope': 1,\n",
      "          'looked': 1,\n",
      "          'suitable': 1,\n",
      "          '1950s': 1,\n",
      "          'larger': 1,\n",
      "          'reason': 1,\n",
      "          'lies': 1,\n",
      "          'truly': 1,\n",
      "          'remarkable': 1,\n",
      "          'talented': 1,\n",
      "          'filmmaker': 1,\n",
      "          'nphilip': 1,\n",
      "          'created': 1,\n",
      "          'reputation': 1,\n",
      "          '1970s': 1,\n",
      "          'using': 1,\n",
      "          'opportunities': 1,\n",
      "          'golden': 1,\n",
      "          'create': 1,\n",
      "          'original': 1,\n",
      "          'last': 1,\n",
      "          'swan': 1,\n",
      "          'song': 1,\n",
      "          'era': 1,\n",
      "          'producers': 1,\n",
      "          'allowed': 1,\n",
      "          'directors': 1,\n",
      "          'spend': 1,\n",
      "          'big': 1,\n",
      "          'bucks': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'risktaking': 1,\n",
      "          'artsy': 1,\n",
      "          'projects': 1,\n",
      "          'standard': 1,\n",
      "          'elements': 1,\n",
      "          'almost': 1,\n",
      "          'nonexistent': 1,\n",
      "          'coherent': 1,\n",
      "          'story': 1,\n",
      "          'featuring': 1,\n",
      "          'interesting': 1,\n",
      "          'incidents': 1,\n",
      "          'anecdotes': 1,\n",
      "          'shifts': 1,\n",
      "          'old': 1,\n",
      "          'embodied': 1,\n",
      "          'protagonist': 1,\n",
      "          'appears': 1,\n",
      "          'small': 1,\n",
      "          'cameo': 1,\n",
      "          'remains': 1,\n",
      "          'true': 1,\n",
      "          'equal': 1,\n",
      "          'exposure': 1,\n",
      "          'given': 1,\n",
      "          'making': 1,\n",
      "          'ensemble': 1,\n",
      "          'nthat': 1,\n",
      "          'opportunity': 1,\n",
      "          'multitude': 1,\n",
      "          'specialised': 1,\n",
      "          'bit': 1,\n",
      "          'roles': 1,\n",
      "          'nsam': 1,\n",
      "          'whose': 1,\n",
      "          'greatest': 1,\n",
      "          'achievement': 1,\n",
      "          'breech': 1,\n",
      "          'remained': 1,\n",
      "          'obscured': 1,\n",
      "          'probably': 1,\n",
      "          'modesty': 1,\n",
      "          'surface': 1,\n",
      "          'personality': 1,\n",
      "          'compared': 1,\n",
      "          'hyped': 1,\n",
      "          'fortunate': 1,\n",
      "          'astronaut': 1,\n",
      "          'colleagues': 1,\n",
      "          'texture': 1,\n",
      "          'subtle': 1,\n",
      "          'gestures': 1,\n",
      "          'phrases': 1,\n",
      "          'nshepards': 1,\n",
      "          'performance': 1,\n",
      "          'followed': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'cleancut': 1,\n",
      "          'politician': 1,\n",
      "          'john': 1,\n",
      "          'nyoung': 1,\n",
      "          'dennis': 1,\n",
      "          'quaid': 1,\n",
      "          'arrogant': 1,\n",
      "          'fighter': 1,\n",
      "          'jock': 1,\n",
      "          'gordo': 1,\n",
      "          'cooper': 1,\n",
      "          'arrogance': 1,\n",
      "          'friend': 1,\n",
      "          'tragic': 1,\n",
      "          'virgil': 1,\n",
      "          'grissom': 1,\n",
      "          'superbly': 1,\n",
      "          'fred': 1,\n",
      "          'ward': 1,\n",
      "          'nalways': 1,\n",
      "          'reliable': 1,\n",
      "          'actor': 1,\n",
      "          'relief': 1,\n",
      "          'aviator': 1,\n",
      "          'arguably': 1,\n",
      "          'alan': 1,\n",
      "          'nkaufman': 1,\n",
      "          'left': 1,\n",
      "          'room': 1,\n",
      "          'female': 1,\n",
      "          'excel': 1,\n",
      "          'barbara': 1,\n",
      "          'hershey': 1,\n",
      "          'pamela': 1,\n",
      "          'reed': 1,\n",
      "          'veronica': 1,\n",
      "          'cartwright': 1,\n",
      "          'mary': 1,\n",
      "          'jo': 1,\n",
      "          'nroyal': 1,\n",
      "          'dano': 1,\n",
      "          'impressive': 1,\n",
      "          'menacing': 1,\n",
      "          'preacher': 1,\n",
      "          'performances': 1,\n",
      "          'belong': 1,\n",
      "          'donald': 1,\n",
      "          'moffat': 1,\n",
      "          'vicepresident': 1,\n",
      "          'lyndon': 1,\n",
      "          'b': 1,\n",
      "          'johnson': 1,\n",
      "          'jane': 1,\n",
      "          'dornacker': 1,\n",
      "          'nurse': 1,\n",
      "          'murch': 1,\n",
      "          'ngreat': 1,\n",
      "          'talent': 1,\n",
      "          'assembled': 1,\n",
      "          'direction': 1,\n",
      "          'nmost': 1,\n",
      "          'notable': 1,\n",
      "          'methods': 1,\n",
      "          'uses': 1,\n",
      "          'suggest': 1,\n",
      "          'passage': 1,\n",
      "          'shows': 1,\n",
      "          'living': 1,\n",
      "          'middle': 1,\n",
      "          'virtual': 1,\n",
      "          'unknowns': 1,\n",
      "          'far': 1,\n",
      "          'discipline': 1,\n",
      "          'neverything': 1,\n",
      "          'seems': 1,\n",
      "          'indulge': 1,\n",
      "          'horse': 1,\n",
      "          'riding': 1,\n",
      "          'yards': 1,\n",
      "          'fastest': 1,\n",
      "          'precious': 1,\n",
      "          'world': 1,\n",
      "          'setting': 1,\n",
      "          'normal': 1,\n",
      "          'technical': 1,\n",
      "          'problems': 1,\n",
      "          'solved': 1,\n",
      "          'chainsaw': 1,\n",
      "          'report': 1,\n",
      "          'ribs': 1,\n",
      "          'broken': 1,\n",
      "          'changing': 1,\n",
      "          'ww2': 1,\n",
      "          'alliance': 1,\n",
      "          'ussr': 1,\n",
      "          'disciplined': 1,\n",
      "          'ntheir': 1,\n",
      "          'entire': 1,\n",
      "          'become': 1,\n",
      "          'media': 1,\n",
      "          'frenzy': 1,\n",
      "          'job': 1,\n",
      "          'subjected': 1,\n",
      "          'meticulous': 1,\n",
      "          'plans': 1,\n",
      "          'fight': 1,\n",
      "          'bureaucrats': 1,\n",
      "          'publicityseeking': 1,\n",
      "          'politicians': 1,\n",
      "          'uncaring': 1,\n",
      "          'scientists': 1,\n",
      "          'nazi': 1,\n",
      "          'rocket': 1,\n",
      "          'expert': 1,\n",
      "          'werner': 1,\n",
      "          'von': 1,\n",
      "          'braun': 1,\n",
      "          'beach': 1,\n",
      "          'preserve': 1,\n",
      "          'basic': 1,\n",
      "          'human': 1,\n",
      "          'dignity': 1,\n",
      "          'contrast': 1,\n",
      "          'underlined': 1,\n",
      "          'beautifully': 1,\n",
      "          'edited': 1,\n",
      "          'sequence': 1,\n",
      "          'conducts': 1,\n",
      "          'final': 1,\n",
      "          'spectacular': 1,\n",
      "          'flight': 1,\n",
      "          'absolute': 1,\n",
      "          'obscurity': 1,\n",
      "          'receive': 1,\n",
      "          'fame': 1,\n",
      "          'fortune': 1,\n",
      "          'going': 1,\n",
      "          'contrasts': 1,\n",
      "          'similar': 1,\n",
      "          'achieved': 1,\n",
      "          'poetic': 1,\n",
      "          'language': 1,\n",
      "          'nediting': 1,\n",
      "          'photography': 1,\n",
      "          'caleb': 1,\n",
      "          'scenes': 1,\n",
      "          'funeral': 1,\n",
      "          'walking': 1,\n",
      "          'slow': 1,\n",
      "          'motion': 1,\n",
      "          'copied': 1,\n",
      "          'latter': 1,\n",
      "          'nalthough': 1,\n",
      "          'enjoyed': 1,\n",
      "          'support': 1,\n",
      "          'nasa': 1,\n",
      "          'military': 1,\n",
      "          'provided': 1,\n",
      "          'locations': 1,\n",
      "          'equipment': 1,\n",
      "          'special': 1,\n",
      "          'simulate': 1,\n",
      "          'excellent': 1,\n",
      "          'fool': 1,\n",
      "          'audience': 1,\n",
      "          'accustomed': 1,\n",
      "          'cgi': 1,\n",
      "          'footage': 1,\n",
      "          'outer': 1,\n",
      "          'nanother': 1,\n",
      "          'contribution': 1,\n",
      "          'oscar': 1,\n",
      "          'awarded': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'bill': 1,\n",
      "          'conti': 1,\n",
      "          'tremble': 1,\n",
      "          'excitement': 1,\n",
      "          'every': 1,\n",
      "          'hear': 1,\n",
      "          'accompanied': 1,\n",
      "          'holst': 1,\n",
      "          'debussy': 1,\n",
      "          'songs': 1,\n",
      "          'background': 1,\n",
      "          'provide': 1,\n",
      "          'atmosphere': 1,\n",
      "          'cult': 1,\n",
      "          'status': 1,\n",
      "          'well': 1,\n",
      "          'deserved': 1,\n",
      "          'minor': 1,\n",
      "          'flaws': 1,\n",
      "          'arent': 1,\n",
      "          'fleshed': 1,\n",
      "          'enough': 1,\n",
      "          'actors': 1,\n",
      "          'lance': 1,\n",
      "          'henriksen': 1,\n",
      "          'nfilm': 1,\n",
      "          'proper': 1,\n",
      "          'closure': 1,\n",
      "          'hand': 1,\n",
      "          'logical': 1,\n",
      "          'conclusion': 1,\n",
      "          'landing': 1,\n",
      "          'moon': 1,\n",
      "          'require': 1,\n",
      "          'six': 1,\n",
      "          'long': 1,\n",
      "          'nalso': 1,\n",
      "          'prone': 1,\n",
      "          'attack': 1,\n",
      "          'amerocentric': 1,\n",
      "          'hard': 1,\n",
      "          'evil': 1,\n",
      "          'monsters': 1,\n",
      "          'line': 1,\n",
      "          'virulent': 1,\n",
      "          'rhetoric': 1,\n",
      "          'reagans': 1,\n",
      "          'america': 1,\n",
      "          'contemporary': 1,\n",
      "          'interviews': 1,\n",
      "          'defended': 1,\n",
      "          'approach': 1,\n",
      "          'claiming': 1,\n",
      "          'wanted': 1,\n",
      "          'possible': 1,\n",
      "          'perceived': 1,\n",
      "          'americans': 1,\n",
      "          'ntime': 1,\n",
      "          'passed': 1,\n",
      "          'dont': 1,\n",
      "          'see': 1,\n",
      "          'heroes': 1,\n",
      "          'widespread': 1,\n",
      "          'satellite': 1,\n",
      "          'communications': 1,\n",
      "          'routine': 1,\n",
      "          'missions': 1,\n",
      "          'women': 1,\n",
      "          'seen': 1,\n",
      "          'mere': 1,\n",
      "          'maintenance': 1,\n",
      "          'workers': 1,\n",
      "          'nfew': 1,\n",
      "          'young': 1,\n",
      "          'boys': 1,\n",
      "          'want': 1,\n",
      "          'grow': 1,\n",
      "          'sentimental': 1,\n",
      "          'reminder': 1,\n",
      "          'began': 1,\n",
      "          'perhaps': 1,\n",
      "          'encourage': 1,\n",
      "          'least': 1,\n",
      "          'follow': 1,\n",
      "          'footsteps': 1,\n",
      "          'seek': 1,\n",
      "          'frontiers': 1,\n",
      "          'sky': 1,\n",
      "          'nand': 1,\n",
      "          'decide': 1,\n",
      "          'stay': 1,\n",
      "          'appreciate': 1,\n",
      "          'extraordinary': 1,\n",
      "          'cinema': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 16,\n",
      "          'series': 10,\n",
      "          'nthe': 8,\n",
      "          'show': 7,\n",
      "          'xfiles': 6,\n",
      "          'story': 5,\n",
      "          'fans': 5,\n",
      "          'find': 4,\n",
      "          'television': 4,\n",
      "          'ni': 4,\n",
      "          'nits': 4,\n",
      "          'scully': 4,\n",
      "          'im': 3,\n",
      "          'though': 3,\n",
      "          'years': 3,\n",
      "          'like': 3,\n",
      "          'lot': 3,\n",
      "          'plot': 3,\n",
      "          'seen': 3,\n",
      "          'takes': 3,\n",
      "          'mulder': 3,\n",
      "          'get': 3,\n",
      "          'see': 3,\n",
      "          'never': 2,\n",
      "          'watching': 2,\n",
      "          'dont': 2,\n",
      "          'watch': 2,\n",
      "          'gillian': 2,\n",
      "          'anderson': 2,\n",
      "          'finale': 2,\n",
      "          'left': 2,\n",
      "          'episode': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'expected': 2,\n",
      "          'ive': 2,\n",
      "          'nactually': 2,\n",
      "          'makers': 2,\n",
      "          'fbi': 2,\n",
      "          'heroes': 2,\n",
      "          'soon': 2,\n",
      "          'bomb': 2,\n",
      "          'actually': 2,\n",
      "          'prior': 2,\n",
      "          'alien': 2,\n",
      "          'aliens': 2,\n",
      "          'cancer': 2,\n",
      "          'times': 2,\n",
      "          'boy': 2,\n",
      "          'also': 2,\n",
      "          'nit': 2,\n",
      "          'know': 2,\n",
      "          'great': 2,\n",
      "          'eerie': 2,\n",
      "          'nthere': 2,\n",
      "          'good': 2,\n",
      "          'nwhat': 2,\n",
      "          'understand': 2,\n",
      "          'little': 2,\n",
      "          'create': 2,\n",
      "          'strong': 2,\n",
      "          'many': 2,\n",
      "          'however': 2,\n",
      "          'might': 2,\n",
      "          'nice': 2,\n",
      "          'risk': 2,\n",
      "          'intensely': 1,\n",
      "          'boring': 1,\n",
      "          'simply': 1,\n",
      "          'turn': 1,\n",
      "          'set': 1,\n",
      "          'unless': 1,\n",
      "          'movie': 1,\n",
      "          'even': 1,\n",
      "          'cable': 1,\n",
      "          'went': 1,\n",
      "          'radio': 1,\n",
      "          'shack': 1,\n",
      "          'buy': 1,\n",
      "          'antenna': 1,\n",
      "          'specifically': 1,\n",
      "          'purpose': 1,\n",
      "          'every': 1,\n",
      "          'sunday': 1,\n",
      "          'night': 1,\n",
      "          'thats': 1,\n",
      "          'worth': 1,\n",
      "          'hour': 1,\n",
      "          'time': 1,\n",
      "          'week': 1,\n",
      "          'since': 1,\n",
      "          'reruns': 1,\n",
      "          'glad': 1,\n",
      "          'six': 1,\n",
      "          'months': 1,\n",
      "          'year': 1,\n",
      "          'avoid': 1,\n",
      "          'altogether': 1,\n",
      "          'avid': 1,\n",
      "          'fan': 1,\n",
      "          'three': 1,\n",
      "          'nand': 1,\n",
      "          'love': 1,\n",
      "          'continues': 1,\n",
      "          'season': 1,\n",
      "          'twohour': 1,\n",
      "          'except': 1,\n",
      "          'thicker': 1,\n",
      "          'resolution': 1,\n",
      "          'satisfying': 1,\n",
      "          'nthis': 1,\n",
      "          'terrific': 1,\n",
      "          'imagine': 1,\n",
      "          'viewers': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'solid': 1,\n",
      "          'riveting': 1,\n",
      "          'entertainment': 1,\n",
      "          'expectations': 1,\n",
      "          'met': 1,\n",
      "          'risks': 1,\n",
      "          'devices': 1,\n",
      "          'thankfully': 1,\n",
      "          'managed': 1,\n",
      "          'right': 1,\n",
      "          'nwhen': 1,\n",
      "          'ended': 1,\n",
      "          'branch': 1,\n",
      "          'known': 1,\n",
      "          'destroyed': 1,\n",
      "          'david': 1,\n",
      "          'duchovny': 1,\n",
      "          'stripped': 1,\n",
      "          'five': 1,\n",
      "          'hard': 1,\n",
      "          'work': 1,\n",
      "          'picks': 1,\n",
      "          'reduced': 1,\n",
      "          'field': 1,\n",
      "          'agents': 1,\n",
      "          'investigating': 1,\n",
      "          'threat': 1,\n",
      "          'federal': 1,\n",
      "          'building': 1,\n",
      "          'nbut': 1,\n",
      "          'wait': 1,\n",
      "          'getting': 1,\n",
      "          'ahead': 1,\n",
      "          'opens': 1,\n",
      "          'ice': 1,\n",
      "          'age': 1,\n",
      "          '32': 1,\n",
      "          '000': 1,\n",
      "          'couple': 1,\n",
      "          'prehistoric': 1,\n",
      "          'guys': 1,\n",
      "          'attacked': 1,\n",
      "          'vicious': 1,\n",
      "          'blood': 1,\n",
      "          'infects': 1,\n",
      "          'certainly': 1,\n",
      "          'remember': 1,\n",
      "          'black': 1,\n",
      "          'jumps': 1,\n",
      "          'modern': 1,\n",
      "          'young': 1,\n",
      "          'infected': 1,\n",
      "          'turns': 1,\n",
      "          'planted': 1,\n",
      "          'kill': 1,\n",
      "          'uncover': 1,\n",
      "          'coverup': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'resigned': 1,\n",
      "          'position': 1,\n",
      "          'nsoon': 1,\n",
      "          'whole': 1,\n",
      "          'thing': 1,\n",
      "          'nas': 1,\n",
      "          'written': 1,\n",
      "          'easy': 1,\n",
      "          'write': 1,\n",
      "          'summaries': 1,\n",
      "          'films': 1,\n",
      "          'everything': 1,\n",
      "          'needs': 1,\n",
      "          'surprise': 1,\n",
      "          'nfans': 1,\n",
      "          'expect': 1,\n",
      "          'seriously': 1,\n",
      "          'doubt': 1,\n",
      "          'disappointed': 1,\n",
      "          'ndirector': 1,\n",
      "          'rob': 1,\n",
      "          'bowman': 1,\n",
      "          'done': 1,\n",
      "          'job': 1,\n",
      "          'expanding': 1,\n",
      "          'feeling': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'making': 1,\n",
      "          'small': 1,\n",
      "          'adjustments': 1,\n",
      "          'minor': 1,\n",
      "          'changes': 1,\n",
      "          'utilize': 1,\n",
      "          'possibilities': 1,\n",
      "          'allows': 1,\n",
      "          'truly': 1,\n",
      "          'suspenseful': 1,\n",
      "          'wellcreated': 1,\n",
      "          'scenes': 1,\n",
      "          'late': 1,\n",
      "          'theyre': 1,\n",
      "          'spacecraft': 1,\n",
      "          'youll': 1,\n",
      "          'one': 1,\n",
      "          'better': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'recent': 1,\n",
      "          'cinema': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'christopher': 1,\n",
      "          'nowak': 1,\n",
      "          'fantastic': 1,\n",
      "          'interesting': 1,\n",
      "          'way': 1,\n",
      "          'neophytes': 1,\n",
      "          'nour': 1,\n",
      "          'given': 1,\n",
      "          'subtle': 1,\n",
      "          'introductions': 1,\n",
      "          'outset': 1,\n",
      "          'explains': 1,\n",
      "          'enough': 1,\n",
      "          'knowledge': 1,\n",
      "          'isnt': 1,\n",
      "          'required': 1,\n",
      "          'course': 1,\n",
      "          'elements': 1,\n",
      "          'included': 1,\n",
      "          'payoff': 1,\n",
      "          'ill': 1,\n",
      "          'keep': 1,\n",
      "          'surprises': 1,\n",
      "          'thought': 1,\n",
      "          'understanding': 1,\n",
      "          'using': 1,\n",
      "          'roots': 1,\n",
      "          'complicated': 1,\n",
      "          'ones': 1,\n",
      "          'provides': 1,\n",
      "          'coherent': 1,\n",
      "          'anyone': 1,\n",
      "          'clearly': 1,\n",
      "          'reasons': 1,\n",
      "          'original': 1,\n",
      "          'ties': 1,\n",
      "          'twilight': 1,\n",
      "          'zone': 1,\n",
      "          'owes': 1,\n",
      "          'homage': 1,\n",
      "          'hitchcock': 1,\n",
      "          'impressively': 1,\n",
      "          'really': 1,\n",
      "          'makes': 1,\n",
      "          'shine': 1,\n",
      "          'actors': 1,\n",
      "          'nduchovny': 1,\n",
      "          'much': 1,\n",
      "          'presence': 1,\n",
      "          'fun': 1,\n",
      "          'guy': 1,\n",
      "          'nhe': 1,\n",
      "          'confidence': 1,\n",
      "          'someday': 1,\n",
      "          'make': 1,\n",
      "          'bankable': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'nanderson': 1,\n",
      "          'equally': 1,\n",
      "          'paralyzingly': 1,\n",
      "          'beautiful': 1,\n",
      "          'shes': 1,\n",
      "          'actress': 1,\n",
      "          'nboth': 1,\n",
      "          'performers': 1,\n",
      "          'acted': 1,\n",
      "          'think': 1,\n",
      "          'theyll': 1,\n",
      "          'chances': 1,\n",
      "          'prove': 1,\n",
      "          'enthusiastically': 1,\n",
      "          'recommend': 1,\n",
      "          'nonfans': 1,\n",
      "          'n1998': 1,\n",
      "          'summer': 1,\n",
      "          'filled': 1,\n",
      "          'disappointing': 1,\n",
      "          'blockbusters': 1,\n",
      "          'satisfy': 1,\n",
      "          'others': 1,\n",
      "          'leave': 1,\n",
      "          'completely': 1,\n",
      "          'dry': 1,\n",
      "          'intelligent': 1,\n",
      "          'places': 1,\n",
      "          'least': 1,\n",
      "          'feel': 1,\n",
      "          'familiar': 1,\n",
      "          'impressive': 1,\n",
      "          'concept': 1,\n",
      "          'well': 1,\n",
      "          'likely': 1,\n",
      "          'highly': 1,\n",
      "          'critical': 1,\n",
      "          'take': 1,\n",
      "          'premise': 1,\n",
      "          'beyond': 1,\n",
      "          'risky': 1,\n",
      "          'move': 1,\n",
      "          'pay': 1,\n",
      "          'change': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 14,\n",
      "          'like': 9,\n",
      "          'nthe': 6,\n",
      "          'one': 5,\n",
      "          'films': 5,\n",
      "          'truth': 5,\n",
      "          'celebration': 4,\n",
      "          'completely': 4,\n",
      "          'life': 4,\n",
      "          'could': 4,\n",
      "          'see': 4,\n",
      "          'utterly': 4,\n",
      "          'kind': 3,\n",
      "          'watch': 3,\n",
      "          'ni': 3,\n",
      "          'really': 3,\n",
      "          'feel': 3,\n",
      "          'nbut': 3,\n",
      "          'attention': 3,\n",
      "          'bit': 3,\n",
      "          'youre': 3,\n",
      "          'home': 3,\n",
      "          'mortizen': 3,\n",
      "          'party': 3,\n",
      "          'family': 3,\n",
      "          'christian': 3,\n",
      "          'father': 3,\n",
      "          'children': 3,\n",
      "          'people': 3,\n",
      "          'shot': 3,\n",
      "          'nas': 3,\n",
      "          'lives': 3,\n",
      "          'characters': 3,\n",
      "          'actors': 3,\n",
      "          'course': 3,\n",
      "          'know': 2,\n",
      "          'matter': 2,\n",
      "          'totally': 2,\n",
      "          'story': 2,\n",
      "          'turn': 2,\n",
      "          'occurs': 2,\n",
      "          'real': 2,\n",
      "          'makes': 2,\n",
      "          'work': 2,\n",
      "          'thing': 2,\n",
      "          'great': 2,\n",
      "          'nit': 2,\n",
      "          'world': 2,\n",
      "          'realistic': 2,\n",
      "          'nand': 2,\n",
      "          'farscial': 2,\n",
      "          'make': 2,\n",
      "          'transpires': 2,\n",
      "          'interesting': 2,\n",
      "          'first': 2,\n",
      "          'everyone': 2,\n",
      "          'eldest': 2,\n",
      "          'son': 2,\n",
      "          'thomsen': 2,\n",
      "          'young': 2,\n",
      "          'seen': 2,\n",
      "          'walking': 2,\n",
      "          'thomas': 2,\n",
      "          'car': 2,\n",
      "          'nwe': 2,\n",
      "          'always': 2,\n",
      "          'seems': 2,\n",
      "          'raped': 2,\n",
      "          'nature': 2,\n",
      "          'though': 2,\n",
      "          'member': 2,\n",
      "          'danish': 2,\n",
      "          'group': 2,\n",
      "          'may': 2,\n",
      "          'works': 2,\n",
      "          'feels': 2,\n",
      "          'reality': 2,\n",
      "          'never': 2,\n",
      "          'dare': 2,\n",
      "          'key': 2,\n",
      "          'much': 2,\n",
      "          'debate': 2,\n",
      "          'learned': 2,\n",
      "          'live': 2,\n",
      "          'easily': 2,\n",
      "          'years': 2,\n",
      "          'emotionally': 2,\n",
      "          'earlier': 2,\n",
      "          'thanks': 2,\n",
      "          'performance': 2,\n",
      "          'also': 2,\n",
      "          'else': 2,\n",
      "          'flawless': 2,\n",
      "          'elite': 1,\n",
      "          'absorbant': 1,\n",
      "          'nyou': 1,\n",
      "          'sit': 1,\n",
      "          'youve': 1,\n",
      "          'heard': 1,\n",
      "          'cant': 1,\n",
      "          'help': 1,\n",
      "          'drawn': 1,\n",
      "          'shocked': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'prefer': 1,\n",
      "          'best': 1,\n",
      "          'dont': 1,\n",
      "          'rules': 1,\n",
      "          'cinema': 1,\n",
      "          'anything': 1,\n",
      "          'long': 1,\n",
      "          'ask': 1,\n",
      "          'common': 1,\n",
      "          'create': 1,\n",
      "          'experiences': 1,\n",
      "          'nwhen': 1,\n",
      "          'want': 1,\n",
      "          'able': 1,\n",
      "          'take': 1,\n",
      "          'certain': 1,\n",
      "          'memories': 1,\n",
      "          'along': 1,\n",
      "          'n': 1,\n",
      "          'chock': 1,\n",
      "          'full': 1,\n",
      "          'creates': 1,\n",
      "          'everything': 1,\n",
      "          'memorable': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'little': 1,\n",
      "          'instances': 1,\n",
      "          'catch': 1,\n",
      "          'stay': 1,\n",
      "          'rest': 1,\n",
      "          'things': 1,\n",
      "          'tad': 1,\n",
      "          'sure': 1,\n",
      "          'paying': 1,\n",
      "          'goddam': 1,\n",
      "          'ever': 1,\n",
      "          'bored': 1,\n",
      "          'span': 1,\n",
      "          'needs': 1,\n",
      "          'tuningup': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'extravagant': 1,\n",
      "          'aging': 1,\n",
      "          'patriarch': 1,\n",
      "          'henning': 1,\n",
      "          'turned': 1,\n",
      "          '60': 1,\n",
      "          'thrown': 1,\n",
      "          'nall': 1,\n",
      "          'friends': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'get': 1,\n",
      "          'introduced': 1,\n",
      "          'simplistically': 1,\n",
      "          'realistically': 1,\n",
      "          'aggravatingly': 1,\n",
      "          'condescending': 1,\n",
      "          'posing': 1,\n",
      "          'camera': 1,\n",
      "          'deals': 1,\n",
      "          'ulrich': 1,\n",
      "          'looking': 1,\n",
      "          'malcolm': 1,\n",
      "          'mcdowell': 1,\n",
      "          'fathers': 1,\n",
      "          'nhis': 1,\n",
      "          'brother': 1,\n",
      "          'michael': 1,\n",
      "          'bo': 1,\n",
      "          'larsen': 1,\n",
      "          'drives': 1,\n",
      "          'pulls': 1,\n",
      "          'greets': 1,\n",
      "          'kicks': 1,\n",
      "          'forcing': 1,\n",
      "          'walk': 1,\n",
      "          'estate': 1,\n",
      "          'comfortable': 1,\n",
      "          'meet': 1,\n",
      "          'helene': 1,\n",
      "          'paprika': 1,\n",
      "          'steen': 1,\n",
      "          'sister': 1,\n",
      "          'woman': 1,\n",
      "          'stressedout': 1,\n",
      "          'invites': 1,\n",
      "          'driver': 1,\n",
      "          'gbatokai': 1,\n",
      "          'dakinah': 1,\n",
      "          'american': 1,\n",
      "          'come': 1,\n",
      "          'join': 1,\n",
      "          'shes': 1,\n",
      "          'going': 1,\n",
      "          'nonce': 1,\n",
      "          'theyre': 1,\n",
      "          'settled': 1,\n",
      "          'begins': 1,\n",
      "          'custom': 1,\n",
      "          'speech': 1,\n",
      "          'dad': 1,\n",
      "          'stands': 1,\n",
      "          'head': 1,\n",
      "          'table': 1,\n",
      "          'reveals': 1,\n",
      "          'punchline': 1,\n",
      "          'age': 1,\n",
      "          'since': 1,\n",
      "          'familyfriends': 1,\n",
      "          'affair': 1,\n",
      "          'confession': 1,\n",
      "          'becomes': 1,\n",
      "          'detested': 1,\n",
      "          'supposed': 1,\n",
      "          'simply': 1,\n",
      "          'brushed': 1,\n",
      "          'despite': 1,\n",
      "          'efforts': 1,\n",
      "          'sorta': 1,\n",
      "          'jerry': 1,\n",
      "          'springer': 1,\n",
      "          'crossed': 1,\n",
      "          'jean': 1,\n",
      "          'renoir': 1,\n",
      "          'terribly': 1,\n",
      "          'ntwists': 1,\n",
      "          'occur': 1,\n",
      "          'soon': 1,\n",
      "          'taken': 1,\n",
      "          'nearlyfarsical': 1,\n",
      "          'still': 1,\n",
      "          'involved': 1,\n",
      "          'reach': 1,\n",
      "          'ends': 1,\n",
      "          'notorious': 1,\n",
      "          'getting': 1,\n",
      "          'notice': 1,\n",
      "          'director': 1,\n",
      "          'vinterberg': 1,\n",
      "          'awkward': 1,\n",
      "          'fashion': 1,\n",
      "          'filmmakers': 1,\n",
      "          'clan': 1,\n",
      "          'dogme': 1,\n",
      "          '95': 1,\n",
      "          'vowed': 1,\n",
      "          'oppose': 1,\n",
      "          'auteur': 1,\n",
      "          'concept': 1,\n",
      "          'makeup': 1,\n",
      "          'illusions': 1,\n",
      "          'dramaturgical': 1,\n",
      "          'predictability': 1,\n",
      "          'purge': 1,\n",
      "          'inner': 1,\n",
      "          'justify': 1,\n",
      "          'plot': 1,\n",
      "          'breaking': 1,\n",
      "          'waves': 1,\n",
      "          'notable': 1,\n",
      "          'lars': 1,\n",
      "          'von': 1,\n",
      "          'trier': 1,\n",
      "          'exact': 1,\n",
      "          'exquisitely': 1,\n",
      "          'department': 1,\n",
      "          'actually': 1,\n",
      "          'watching': 1,\n",
      "          'major': 1,\n",
      "          'pointer': 1,\n",
      "          'video': 1,\n",
      "          'result': 1,\n",
      "          'looks': 1,\n",
      "          'movies': 1,\n",
      "          'actual': 1,\n",
      "          'wanted': 1,\n",
      "          'moments': 1,\n",
      "          'peoples': 1,\n",
      "          'wouldnt': 1,\n",
      "          'show': 1,\n",
      "          'captures': 1,\n",
      "          'comedy': 1,\n",
      "          'accurately': 1,\n",
      "          'acutely': 1,\n",
      "          'style': 1,\n",
      "          'ironicallyshowmanship': 1,\n",
      "          'perfectly': 1,\n",
      "          'reason': 1,\n",
      "          'cool': 1,\n",
      "          'import': 1,\n",
      "          'revealing': 1,\n",
      "          'way': 1,\n",
      "          'react': 1,\n",
      "          'explosive': 1,\n",
      "          'nthroughout': 1,\n",
      "          'realized': 1,\n",
      "          'effects': 1,\n",
      "          'lies': 1,\n",
      "          'threedimensional': 1,\n",
      "          'blow': 1,\n",
      "          'oliver': 1,\n",
      "          'stone': 1,\n",
      "          'thetruthatallcosts': 1,\n",
      "          'reasoning': 1,\n",
      "          'water': 1,\n",
      "          'nof': 1,\n",
      "          'right': 1,\n",
      "          'rape': 1,\n",
      "          'couldnt': 1,\n",
      "          'fought': 1,\n",
      "          'back': 1,\n",
      "          'created': 1,\n",
      "          'scarring': 1,\n",
      "          'suppression': 1,\n",
      "          'inside': 1,\n",
      "          'yes': 1,\n",
      "          'thearapeutic': 1,\n",
      "          'release': 1,\n",
      "          'later': 1,\n",
      "          'destroy': 1,\n",
      "          'destroyed': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'emotional': 1,\n",
      "          'complications': 1,\n",
      "          'arise': 1,\n",
      "          'touching': 1,\n",
      "          'believe': 1,\n",
      "          'man': 1,\n",
      "          'hes': 1,\n",
      "          'done': 1,\n",
      "          'deep': 1,\n",
      "          'true': 1,\n",
      "          'guilt': 1,\n",
      "          'beginning': 1,\n",
      "          'surface': 1,\n",
      "          'final': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'devastating': 1,\n",
      "          'whose': 1,\n",
      "          'equally': 1,\n",
      "          'complex': 1,\n",
      "          'neveryone': 1,\n",
      "          'well': 1,\n",
      "          'seem': 1,\n",
      "          'stepping': 1,\n",
      "          'shoes': 1,\n",
      "          'comfortably': 1,\n",
      "          'writers': 1,\n",
      "          'made': 1,\n",
      "          'mistake': 1,\n",
      "          'judge': 1,\n",
      "          'slightest': 1,\n",
      "          'whites': 1,\n",
      "          'blacks': 1,\n",
      "          'instead': 1,\n",
      "          'grays': 1,\n",
      "          'exactly': 1,\n",
      "          'truly': 1,\n",
      "          'bizarro': 1,\n",
      "          'year': 1,\n",
      "          'art': 1,\n",
      "          'eerily': 1,\n",
      "          'close': 1,\n",
      "          'disturbing': 1,\n",
      "          'fascinating': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'shrek': 7,\n",
      "          'donkey': 4,\n",
      "          'fairy': 3,\n",
      "          'best': 3,\n",
      "          'comic': 3,\n",
      "          'tale': 2,\n",
      "          'farquaad': 2,\n",
      "          'lithgow': 2,\n",
      "          'murphy': 2,\n",
      "          'one': 2,\n",
      "          'n': 2,\n",
      "          'murphys': 2,\n",
      "          'delightful': 2,\n",
      "          'man': 2,\n",
      "          'great': 2,\n",
      "          'synopsis': 1,\n",
      "          'myers': 1,\n",
      "          'ogre': 1,\n",
      "          'living': 1,\n",
      "          'contented': 1,\n",
      "          'solitude': 1,\n",
      "          'deep': 1,\n",
      "          'heart': 1,\n",
      "          'forest': 1,\n",
      "          'home': 1,\n",
      "          'invaded': 1,\n",
      "          'creatures': 1,\n",
      "          'fleeing': 1,\n",
      "          'rule': 1,\n",
      "          'evil': 1,\n",
      "          'lord': 1,\n",
      "          'john': 1,\n",
      "          'nfarquaad': 1,\n",
      "          'agrees': 1,\n",
      "          'relocate': 1,\n",
      "          'pests': 1,\n",
      "          'condition': 1,\n",
      "          'rescues': 1,\n",
      "          'princess': 1,\n",
      "          'fiona': 1,\n",
      "          'diaz': 1,\n",
      "          'desires': 1,\n",
      "          'wed': 1,\n",
      "          'faroff': 1,\n",
      "          'castle': 1,\n",
      "          'ngrudgingly': 1,\n",
      "          'sets': 1,\n",
      "          'joined': 1,\n",
      "          'quest': 1,\n",
      "          'unwanted': 1,\n",
      "          'companion': 1,\n",
      "          'nreview': 1,\n",
      "          'memorable': 1,\n",
      "          'aspect': 1,\n",
      "          'disneys': 1,\n",
      "          'aladdin': 1,\n",
      "          'finally': 1,\n",
      "          'gave': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'character': 1,\n",
      "          'genie': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'talents': 1,\n",
      "          'eddie': 1,\n",
      "          'ironically': 1,\n",
      "          'though': 1,\n",
      "          'ideal': 1,\n",
      "          'vessel': 1,\n",
      "          'turns': 1,\n",
      "          'ass': 1,\n",
      "          'nall': 1,\n",
      "          'represent': 1,\n",
      "          'outing': 1,\n",
      "          'years': 1,\n",
      "          'steals': 1,\n",
      "          'lines': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'getting': 1,\n",
      "          'belted': 1,\n",
      "          'pixie': 1,\n",
      "          'dust': 1,\n",
      "          'trying': 1,\n",
      "          'conceal': 1,\n",
      "          'nature': 1,\n",
      "          'magical': 1,\n",
      "          'creature': 1,\n",
      "          'soars': 1,\n",
      "          'air': 1,\n",
      "          'scoffs': 1,\n",
      "          'im': 1,\n",
      "          'flying': 1,\n",
      "          'talking': 1,\n",
      "          'nand': 1,\n",
      "          'despite': 1,\n",
      "          'many': 1,\n",
      "          'contributors': 1,\n",
      "          'script': 1,\n",
      "          'full': 1,\n",
      "          'gems': 1,\n",
      "          'nmyers': 1,\n",
      "          'straight': 1,\n",
      "          'role': 1,\n",
      "          'also': 1,\n",
      "          'gets': 1,\n",
      "          'moments': 1,\n",
      "          'watch': 1,\n",
      "          'hilarious': 1,\n",
      "          'repartee': 1,\n",
      "          'gingerbread': 1,\n",
      "          'takes': 1,\n",
      "          'pleasure': 1,\n",
      "          'lampooning': 1,\n",
      "          'tales': 1,\n",
      "          'nursery': 1,\n",
      "          'rhymes': 1,\n",
      "          'sorts': 1,\n",
      "          'reserves': 1,\n",
      "          'knocks': 1,\n",
      "          'disney': 1,\n",
      "          'bargain': 1,\n",
      "          'nthings': 1,\n",
      "          'go': 1,\n",
      "          'somewhat': 1,\n",
      "          'astray': 1,\n",
      "          'films': 1,\n",
      "          'middle': 1,\n",
      "          'segment': 1,\n",
      "          'concentrates': 1,\n",
      "          'much': 1,\n",
      "          'main': 1,\n",
      "          'characters': 1,\n",
      "          'expense': 1,\n",
      "          'terrific': 1,\n",
      "          'satire': 1,\n",
      "          'movies': 1,\n",
      "          'greatest': 1,\n",
      "          'strength': 1,\n",
      "          'nbut': 1,\n",
      "          'even': 1,\n",
      "          'always': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'enjoy': 1,\n",
      "          'beautiful': 1,\n",
      "          'computer': 1,\n",
      "          'animation': 1,\n",
      "          'whose': 1,\n",
      "          'remarkable': 1,\n",
      "          'use': 1,\n",
      "          'represents': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'dazzling': 1,\n",
      "          'leap': 1,\n",
      "          'forward': 1,\n",
      "          'technology': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'school': 11,\n",
      "          'high': 9,\n",
      "          'nthe': 6,\n",
      "          'two': 6,\n",
      "          'nbut': 5,\n",
      "          'teacher': 5,\n",
      "          'broderick': 4,\n",
      "          'one': 4,\n",
      "          'run': 4,\n",
      "          'real': 4,\n",
      "          'day': 3,\n",
      "          'election': 3,\n",
      "          'world': 3,\n",
      "          'similar': 3,\n",
      "          'far': 3,\n",
      "          'well': 3,\n",
      "          'njim': 3,\n",
      "          'type': 3,\n",
      "          'carver': 3,\n",
      "          'witherspoon': 3,\n",
      "          'young': 3,\n",
      "          'girl': 3,\n",
      "          'nshe': 3,\n",
      "          'paul': 3,\n",
      "          'hatred': 3,\n",
      "          'even': 3,\n",
      "          'good': 3,\n",
      "          'everyone': 3,\n",
      "          'role': 3,\n",
      "          'apparent': 3,\n",
      "          'matthew': 2,\n",
      "          'comedy': 2,\n",
      "          'ferris': 2,\n",
      "          'buehler': 2,\n",
      "          'pile': 2,\n",
      "          'marshmallows': 2,\n",
      "          'nit': 2,\n",
      "          'nthis': 2,\n",
      "          'production': 2,\n",
      "          'realistic': 2,\n",
      "          'much': 2,\n",
      "          'american': 2,\n",
      "          'schools': 2,\n",
      "          'nhe': 2,\n",
      "          'nin': 2,\n",
      "          'year': 2,\n",
      "          'among': 2,\n",
      "          'student': 2,\n",
      "          'body': 2,\n",
      "          'ntracy': 2,\n",
      "          'reese': 2,\n",
      "          'film': 2,\n",
      "          'extremely': 2,\n",
      "          'popular': 2,\n",
      "          'nso': 2,\n",
      "          'president': 2,\n",
      "          'nand': 2,\n",
      "          'tammy': 2,\n",
      "          'jessica': 2,\n",
      "          'campbell': 2,\n",
      "          'students': 2,\n",
      "          'candidate': 2,\n",
      "          'person': 2,\n",
      "          'self': 2,\n",
      "          'sexual': 2,\n",
      "          'tracy': 2,\n",
      "          'candidates': 2,\n",
      "          'people': 2,\n",
      "          'put': 2,\n",
      "          'college': 2,\n",
      "          'dont': 2,\n",
      "          'guys': 2,\n",
      "          'audience': 2,\n",
      "          'takes': 2,\n",
      "          'characters': 2,\n",
      "          'hollywood': 2,\n",
      "          'portrayal': 2,\n",
      "          'towards': 2,\n",
      "          'simply': 2,\n",
      "          'terms': 1,\n",
      "          'practically': 1,\n",
      "          'inseparable': 1,\n",
      "          'since': 1,\n",
      "          'took': 1,\n",
      "          '1986': 1,\n",
      "          'nnow': 1,\n",
      "          '13': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'another': 1,\n",
      "          'show': 1,\n",
      "          'nferris': 1,\n",
      "          'buehlers': 1,\n",
      "          'showed': 1,\n",
      "          'educational': 1,\n",
      "          'setting': 1,\n",
      "          'light': 1,\n",
      "          'fluffy': 1,\n",
      "          'tasty': 1,\n",
      "          'sparkling': 1,\n",
      "          'clean': 1,\n",
      "          'different': 1,\n",
      "          'dark': 1,\n",
      "          'frighteningly': 1,\n",
      "          'entertain': 1,\n",
      "          '103': 1,\n",
      "          'minutes': 1,\n",
      "          'occupies': 1,\n",
      "          'shocks': 1,\n",
      "          'mcallister': 1,\n",
      "          'makes': 1,\n",
      "          'proud': 1,\n",
      "          'kind': 1,\n",
      "          'caring': 1,\n",
      "          'younger': 1,\n",
      "          'man': 1,\n",
      "          'built': 1,\n",
      "          'life': 1,\n",
      "          'around': 1,\n",
      "          'turn': 1,\n",
      "          'provided': 1,\n",
      "          'home': 1,\n",
      "          'less': 1,\n",
      "          'three': 1,\n",
      "          'times': 1,\n",
      "          '12': 1,\n",
      "          'span': 1,\n",
      "          'respected': 1,\n",
      "          'social': 1,\n",
      "          'studies': 1,\n",
      "          'flick': 1,\n",
      "          'intelligent': 1,\n",
      "          'outgoing': 1,\n",
      "          'quote': 1,\n",
      "          'super': 1,\n",
      "          'nice': 1,\n",
      "          'involved': 1,\n",
      "          'numerous': 1,\n",
      "          'extracurricular': 1,\n",
      "          'activities': 1,\n",
      "          'always': 1,\n",
      "          'hand': 1,\n",
      "          'first': 1,\n",
      "          'class': 1,\n",
      "          'natural': 1,\n",
      "          'progression': 1,\n",
      "          'decides': 1,\n",
      "          'metzler': 1,\n",
      "          'family': 1,\n",
      "          'wealthy': 1,\n",
      "          'father': 1,\n",
      "          'dick': 1,\n",
      "          'holmes': 1,\n",
      "          'osborne': 1,\n",
      "          'owns': 1,\n",
      "          'cement': 1,\n",
      "          'company': 1,\n",
      "          'mother': 1,\n",
      "          'jo': 1,\n",
      "          'jeanine': 1,\n",
      "          'jackson': 1,\n",
      "          'ideal': 1,\n",
      "          'housewife': 1,\n",
      "          'children': 1,\n",
      "          'chris': 1,\n",
      "          'klein': 1,\n",
      "          'npaul': 1,\n",
      "          'quarterback': 1,\n",
      "          'football': 1,\n",
      "          'team': 1,\n",
      "          'injured': 1,\n",
      "          'definitely': 1,\n",
      "          'ntammy': 1,\n",
      "          'lesbian': 1,\n",
      "          'say': 1,\n",
      "          'least': 1,\n",
      "          'going': 1,\n",
      "          'period': 1,\n",
      "          'discovery': 1,\n",
      "          'nfor': 1,\n",
      "          'reasons': 1,\n",
      "          'revenge': 1,\n",
      "          'envy': 1,\n",
      "          'jim': 1,\n",
      "          'convinces': 1,\n",
      "          'claims': 1,\n",
      "          'democracy': 1,\n",
      "          'need': 1,\n",
      "          'choices': 1,\n",
      "          'unopposed': 1,\n",
      "          'creates': 1,\n",
      "          'dictatorship': 1,\n",
      "          'sorts': 1,\n",
      "          'agrees': 1,\n",
      "          'race': 1,\n",
      "          'effort': 1,\n",
      "          'spite': 1,\n",
      "          'announces': 1,\n",
      "          'running': 1,\n",
      "          'nher': 1,\n",
      "          'campaign': 1,\n",
      "          'straightforward': 1,\n",
      "          'applications': 1,\n",
      "          'nothing': 1,\n",
      "          'nwell': 1,\n",
      "          'want': 1,\n",
      "          'go': 1,\n",
      "          'says': 1,\n",
      "          'nalmost': 1,\n",
      "          'agenda': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'deeply': 1,\n",
      "          'hidden': 1,\n",
      "          'digs': 1,\n",
      "          'exploits': 1,\n",
      "          'remember': 1,\n",
      "          'would': 1,\n",
      "          'labeled': 1,\n",
      "          'likely': 1,\n",
      "          'achieve': 1,\n",
      "          'anything': 1,\n",
      "          'wants': 1,\n",
      "          'yearbook': 1,\n",
      "          'secretly': 1,\n",
      "          'envied': 1,\n",
      "          'trust': 1,\n",
      "          'give': 1,\n",
      "          'privilege': 1,\n",
      "          'uses': 1,\n",
      "          'amoral': 1,\n",
      "          'advantage': 1,\n",
      "          'neveryone': 1,\n",
      "          'including': 1,\n",
      "          'principal': 1,\n",
      "          'former': 1,\n",
      "          'pauls': 1,\n",
      "          'girlfriend': 1,\n",
      "          'sided': 1,\n",
      "          'nthat': 1,\n",
      "          'films': 1,\n",
      "          'beauty': 1,\n",
      "          'doesnt': 1,\n",
      "          'typical': 1,\n",
      "          'likes': 1,\n",
      "          'instead': 1,\n",
      "          'specializing': 1,\n",
      "          'revealing': 1,\n",
      "          'perversions': 1,\n",
      "          'usually': 1,\n",
      "          'keep': 1,\n",
      "          'nmatthew': 1,\n",
      "          'couldnt': 1,\n",
      "          'perfect': 1,\n",
      "          'nhis': 1,\n",
      "          'character': 1,\n",
      "          'often': 1,\n",
      "          'bill': 1,\n",
      "          'murrays': 1,\n",
      "          'award': 1,\n",
      "          'winning': 1,\n",
      "          '1998': 1,\n",
      "          'rushmore': 1,\n",
      "          'nof': 1,\n",
      "          'acting': 1,\n",
      "          'jobs': 1,\n",
      "          'brodericks': 1,\n",
      "          'superior': 1,\n",
      "          'overshadowed': 1,\n",
      "          'causes': 1,\n",
      "          'develop': 1,\n",
      "          'indescribable': 1,\n",
      "          'nbroderick': 1,\n",
      "          'best': 1,\n",
      "          'playing': 1,\n",
      "          'various': 1,\n",
      "          'scenes': 1,\n",
      "          'none': 1,\n",
      "          'moment': 1,\n",
      "          'occurs': 1,\n",
      "          'approaches': 1,\n",
      "          'car': 1,\n",
      "          'leaving': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'pride': 1,\n",
      "          'eyes': 1,\n",
      "          'presents': 1,\n",
      "          'list': 1,\n",
      "          'signatures': 1,\n",
      "          'making': 1,\n",
      "          'eligible': 1,\n",
      "          'subtle': 1,\n",
      "          'disgust': 1,\n",
      "          'although': 1,\n",
      "          'tries': 1,\n",
      "          'mask': 1,\n",
      "          'lines': 1,\n",
      "          'attempts': 1,\n",
      "          'happy': 1,\n",
      "          'face': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'little': 1,\n",
      "          'experience': 1,\n",
      "          'control': 1,\n",
      "          'part': 1,\n",
      "          'nhowever': 1,\n",
      "          'treat': 1,\n",
      "          'confused': 1,\n",
      "          'homosexual': 1,\n",
      "          'never': 1,\n",
      "          'scene': 1,\n",
      "          'delivers': 1,\n",
      "          'speech': 1,\n",
      "          'announcing': 1,\n",
      "          'socalled': 1,\n",
      "          'platform': 1,\n",
      "          'presidency': 1,\n",
      "          'marvelous': 1,\n",
      "          'thinks': 1,\n",
      "          'unjust': 1,\n",
      "          'system': 1,\n",
      "          'expressed': 1,\n",
      "          'nif': 1,\n",
      "          'made': 1,\n",
      "          'feel': 1,\n",
      "          'gave': 1,\n",
      "          'innocent': 1,\n",
      "          'laugh': 1,\n",
      "          'movie': 1,\n",
      "          'achieved': 1,\n",
      "          'goal': 1,\n",
      "          'dare': 1,\n",
      "          'think': 1,\n",
      "          'elections': 1,\n",
      "          'goals': 1,\n",
      "          'nthere': 1,\n",
      "          'certainly': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'film': 4,\n",
      "          'movie': 4,\n",
      "          'songs': 4,\n",
      "          'rocky': 3,\n",
      "          'horror': 3,\n",
      "          'picture': 3,\n",
      "          'show': 3,\n",
      "          'special': 3,\n",
      "          'edition': 3,\n",
      "          'curry': 3,\n",
      "          'susan': 3,\n",
      "          'films': 3,\n",
      "          'cult': 3,\n",
      "          'toucha': 3,\n",
      "          'tim': 2,\n",
      "          'sarandon': 2,\n",
      "          'look': 2,\n",
      "          'first': 2,\n",
      "          'like': 2,\n",
      "          'recently': 2,\n",
      "          'twisted': 2,\n",
      "          'get': 2,\n",
      "          'castle': 2,\n",
      "          'use': 2,\n",
      "          'frank': 2,\n",
      "          'n': 2,\n",
      "          'furter': 2,\n",
      "          'good': 2,\n",
      "          'see': 2,\n",
      "          'one': 2,\n",
      "          'janet': 2,\n",
      "          'brad': 2,\n",
      "          'majors': 2,\n",
      "          'meatloaf': 2,\n",
      "          'actors': 2,\n",
      "          'sing': 2,\n",
      "          'kind': 2,\n",
      "          'two': 2,\n",
      "          'original': 2,\n",
      "          '1975': 1,\n",
      "          'nstarring': 1,\n",
      "          'ncult': 1,\n",
      "          'never': 1,\n",
      "          'mainstream': 1,\n",
      "          'casual': 1,\n",
      "          'viewer': 1,\n",
      "          'repulsed': 1,\n",
      "          'confused': 1,\n",
      "          'yelling': 1,\n",
      "          'hell': 1,\n",
      "          'nfans': 1,\n",
      "          'sorts': 1,\n",
      "          'movies': 1,\n",
      "          'laughing': 1,\n",
      "          'every': 1,\n",
      "          'second': 1,\n",
      "          'hidden': 1,\n",
      "          'jokes': 1,\n",
      "          'missed': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'normal': 1,\n",
      "          'watchers': 1,\n",
      "          'theyre': 1,\n",
      "          'insane': 1,\n",
      "          'rereleased': 1,\n",
      "          'video': 1,\n",
      "          'mother': 1,\n",
      "          'nperiod': 1,\n",
      "          'nlike': 1,\n",
      "          'notably': 1,\n",
      "          'little': 1,\n",
      "          'shop': 1,\n",
      "          'horrors': 1,\n",
      "          'musical': 1,\n",
      "          'edge': 1,\n",
      "          'nthis': 1,\n",
      "          'begins': 1,\n",
      "          'innocently': 1,\n",
      "          'enough': 1,\n",
      "          'couple': 1,\n",
      "          'engaged': 1,\n",
      "          'friends': 1,\n",
      "          'wedding': 1,\n",
      "          'flat': 1,\n",
      "          'tire': 1,\n",
      "          'middle': 1,\n",
      "          'night': 1,\n",
      "          'raining': 1,\n",
      "          'nthey': 1,\n",
      "          'go': 1,\n",
      "          'try': 1,\n",
      "          'phone': 1,\n",
      "          'nlittle': 1,\n",
      "          'know': 1,\n",
      "          'owned': 1,\n",
      "          'dr': 1,\n",
      "          'mad': 1,\n",
      "          'transexual': 1,\n",
      "          'transvestite': 1,\n",
      "          'scientist': 1,\n",
      "          'created': 1,\n",
      "          'creature': 1,\n",
      "          'personal': 1,\n",
      "          'reasons': 1,\n",
      "          'acting': 1,\n",
      "          'pretty': 1,\n",
      "          'overall': 1,\n",
      "          'ntim': 1,\n",
      "          'home': 1,\n",
      "          'alone': 1,\n",
      "          '2': 1,\n",
      "          'legend': 1,\n",
      "          'overthetop': 1,\n",
      "          'nits': 1,\n",
      "          'interesting': 1,\n",
      "          'future': 1,\n",
      "          'oscar': 1,\n",
      "          'winner': 1,\n",
      "          'sarandons': 1,\n",
      "          'dead': 1,\n",
      "          'man': 1,\n",
      "          'walking': 1,\n",
      "          'plays': 1,\n",
      "          'girlfriend': 1,\n",
      "          'neven': 1,\n",
      "          'singer': 1,\n",
      "          'yet': 1,\n",
      "          'way': 1,\n",
      "          'na': 1,\n",
      "          'sampling': 1,\n",
      "          'titles': 1,\n",
      "          'range': 1,\n",
      "          'damn': 1,\n",
      "          'touch': 1,\n",
      "          'nall': 1,\n",
      "          'dubbing': 1,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'nbarry': 1,\n",
      "          'bostwick': 1,\n",
      "          'tries': 1,\n",
      "          'clearly': 1,\n",
      "          'professional': 1,\n",
      "          'extensive': 1,\n",
      "          'stage': 1,\n",
      "          'experience': 1,\n",
      "          'nmeatloaf': 1,\n",
      "          'sings': 1,\n",
      "          'new': 1,\n",
      "          'contains': 1,\n",
      "          'trailers': 1,\n",
      "          'well': 1,\n",
      "          'deleted': 1,\n",
      "          'version': 1,\n",
      "          'nsadly': 1,\n",
      "          'tacked': 1,\n",
      "          'credits': 1,\n",
      "          'defeats': 1,\n",
      "          'purpose': 1,\n",
      "          'nif': 1,\n",
      "          'want': 1,\n",
      "          'different': 1,\n",
      "          'watch': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'titanic': 12,\n",
      "          'nthe': 8,\n",
      "          'movie': 7,\n",
      "          'ship': 7,\n",
      "          'dicaprio': 6,\n",
      "          'great': 6,\n",
      "          'know': 5,\n",
      "          'rose': 5,\n",
      "          'ni': 4,\n",
      "          'little': 4,\n",
      "          'love': 4,\n",
      "          'look': 4,\n",
      "          'character': 4,\n",
      "          'moment': 4,\n",
      "          'seen': 3,\n",
      "          'really': 3,\n",
      "          'thats': 3,\n",
      "          'job': 3,\n",
      "          'winslet': 3,\n",
      "          'nbut': 3,\n",
      "          'first': 3,\n",
      "          'real': 3,\n",
      "          'story': 3,\n",
      "          'alive': 3,\n",
      "          'like': 3,\n",
      "          'ncameron': 3,\n",
      "          'get': 3,\n",
      "          'jack': 3,\n",
      "          'time': 2,\n",
      "          'never': 2,\n",
      "          'gone': 2,\n",
      "          'wind': 2,\n",
      "          'dont': 2,\n",
      "          'far': 2,\n",
      "          'nso': 2,\n",
      "          'right': 2,\n",
      "          'heck': 2,\n",
      "          'going': 2,\n",
      "          'nas': 2,\n",
      "          'parallels': 2,\n",
      "          'ngwtw': 2,\n",
      "          'revolutionary': 2,\n",
      "          'ntitanic': 2,\n",
      "          'design': 2,\n",
      "          'greatest': 2,\n",
      "          'tragedy': 2,\n",
      "          'incredibly': 2,\n",
      "          'expensive': 2,\n",
      "          'enough': 2,\n",
      "          'especially': 2,\n",
      "          'money': 2,\n",
      "          'ncamerons': 2,\n",
      "          'well': 2,\n",
      "          'shows': 2,\n",
      "          'us': 2,\n",
      "          'mind': 2,\n",
      "          'paxton': 2,\n",
      "          'wreck': 2,\n",
      "          'cameron': 2,\n",
      "          'millionaire': 2,\n",
      "          'zane': 2,\n",
      "          'artist': 2,\n",
      "          'disaster': 2,\n",
      "          'cast': 2,\n",
      "          'n': 2,\n",
      "          'plays': 2,\n",
      "          'looks': 2,\n",
      "          'nat': 2,\n",
      "          'girl': 2,\n",
      "          'lifeboat': 2,\n",
      "          'ndicaprio': 2,\n",
      "          'anything': 2,\n",
      "          'bad': 2,\n",
      "          'hits': 2,\n",
      "          'iceberg': 2,\n",
      "          'performance': 2,\n",
      "          'shes': 2,\n",
      "          'manages': 2,\n",
      "          'confession': 1,\n",
      "          'ever': 1,\n",
      "          'nhavent': 1,\n",
      "          'wanted': 1,\n",
      "          'check': 1,\n",
      "          'video': 1,\n",
      "          'havent': 1,\n",
      "          'home': 1,\n",
      "          'nights': 1,\n",
      "          'network': 1,\n",
      "          'tv': 1,\n",
      "          'drive': 1,\n",
      "          'last': 1,\n",
      "          'bigscreen': 1,\n",
      "          'front': 1,\n",
      "          'ill': 1,\n",
      "          'admit': 1,\n",
      "          'im': 1,\n",
      "          'talking': 1,\n",
      "          'goes': 1,\n",
      "          'nis': 1,\n",
      "          '1990s': 1,\n",
      "          'nmaybe': 1,\n",
      "          'bit': 1,\n",
      "          'good': 1,\n",
      "          'leonardo': 1,\n",
      "          'kate': 1,\n",
      "          'theyre': 1,\n",
      "          'clark': 1,\n",
      "          'gable': 1,\n",
      "          'vivien': 1,\n",
      "          'leigh': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'technology': 1,\n",
      "          'available': 1,\n",
      "          'technicolor': 1,\n",
      "          'takes': 1,\n",
      "          'steps': 1,\n",
      "          'forward': 1,\n",
      "          'seamlessly': 1,\n",
      "          'integrating': 1,\n",
      "          'computer': 1,\n",
      "          'graphic': 1,\n",
      "          'actors': 1,\n",
      "          'places': 1,\n",
      "          'americas': 1,\n",
      "          'background': 1,\n",
      "          'classic': 1,\n",
      "          'atlantics': 1,\n",
      "          'legendary': 1,\n",
      "          'nthey': 1,\n",
      "          'strongwilled': 1,\n",
      "          'redheaded': 1,\n",
      "          'heroines': 1,\n",
      "          'exploit': 1,\n",
      "          'class': 1,\n",
      "          'differences': 1,\n",
      "          'aristocracy': 1,\n",
      "          'slavessteerage': 1,\n",
      "          'bums': 1,\n",
      "          'popular': 1,\n",
      "          'nok': 1,\n",
      "          'maybe': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'titanics': 1,\n",
      "          'gwtws': 1,\n",
      "          'league': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'complete': 1,\n",
      "          'spills': 1,\n",
      "          'thrills': 1,\n",
      "          'chills': 1,\n",
      "          'nmuch': 1,\n",
      "          'made': 1,\n",
      "          'humongous': 1,\n",
      "          'cost': 1,\n",
      "          'production': 1,\n",
      "          'care': 1,\n",
      "          'went': 1,\n",
      "          'making': 1,\n",
      "          'huge': 1,\n",
      "          'luxury': 1,\n",
      "          'liner': 1,\n",
      "          'come': 1,\n",
      "          'obviously': 1,\n",
      "          'wellspent': 1,\n",
      "          'costumes': 1,\n",
      "          'sets': 1,\n",
      "          'cgi': 1,\n",
      "          'graphics': 1,\n",
      "          'liked': 1,\n",
      "          'touches': 1,\n",
      "          'spending': 1,\n",
      "          'tons': 1,\n",
      "          'authentic': 1,\n",
      "          'china': 1,\n",
      "          'break': 1,\n",
      "          'floor': 1,\n",
      "          'sinks': 1,\n",
      "          'writerdirectorproducer': 1,\n",
      "          'james': 1,\n",
      "          'camerons': 1,\n",
      "          'challenge': 1,\n",
      "          'writingdirecting': 1,\n",
      "          'producing': 1,\n",
      "          'wasnt': 1,\n",
      "          'costuming': 1,\n",
      "          'set': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'major': 1,\n",
      "          'headache': 1,\n",
      "          'keeping': 1,\n",
      "          'audience': 1,\n",
      "          'interested': 1,\n",
      "          'tale': 1,\n",
      "          'everybody': 1,\n",
      "          'knows': 1,\n",
      "          'ending': 1,\n",
      "          'nhe': 1,\n",
      "          'succeeds': 1,\n",
      "          'masterfully': 1,\n",
      "          'two': 1,\n",
      "          'things': 1,\n",
      "          'work': 1,\n",
      "          'nfirst': 1,\n",
      "          'modernday': 1,\n",
      "          'salvage': 1,\n",
      "          'operations': 1,\n",
      "          'glimpse': 1,\n",
      "          'present': 1,\n",
      "          'state': 1,\n",
      "          'corroding': 1,\n",
      "          'slowly': 1,\n",
      "          'away': 1,\n",
      "          'hammering': 1,\n",
      "          'pressure': 1,\n",
      "          'north': 1,\n",
      "          'atlantic': 1,\n",
      "          'window': 1,\n",
      "          'minisub': 1,\n",
      "          'piloted': 1,\n",
      "          'treasure': 1,\n",
      "          'hunter': 1,\n",
      "          'brock': 1,\n",
      "          'lovett': 1,\n",
      "          'bill': 1,\n",
      "          'ntelevision': 1,\n",
      "          'coverage': 1,\n",
      "          'exploration': 1,\n",
      "          'intrigues': 1,\n",
      "          '101yearold': 1,\n",
      "          'calvert': 1,\n",
      "          'gloria': 1,\n",
      "          'stuart': 1,\n",
      "          'survived': 1,\n",
      "          '1912': 1,\n",
      "          'nstuart': 1,\n",
      "          'phenomenal': 1,\n",
      "          'brief': 1,\n",
      "          'role': 1,\n",
      "          'narrating': 1,\n",
      "          'experience': 1,\n",
      "          'stunned': 1,\n",
      "          'roughneck': 1,\n",
      "          'crew': 1,\n",
      "          'nsecondly': 1,\n",
      "          'keeps': 1,\n",
      "          'storyline': 1,\n",
      "          'focused': 1,\n",
      "          'almost': 1,\n",
      "          'exclusively': 1,\n",
      "          'romantic': 1,\n",
      "          'triangle': 1,\n",
      "          'bastard': 1,\n",
      "          'fiancee': 1,\n",
      "          'cal': 1,\n",
      "          'hockley': 1,\n",
      "          'billy': 1,\n",
      "          'irrepressible': 1,\n",
      "          'young': 1,\n",
      "          'daswon': 1,\n",
      "          'way': 1,\n",
      "          'bigbudget': 1,\n",
      "          'movies': 1,\n",
      "          'usually': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'allstar': 1,\n",
      "          'see': 1,\n",
      "          'impact': 1,\n",
      "          'wide': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'wisely': 1,\n",
      "          'chooses': 1,\n",
      "          'stick': 1,\n",
      "          'paying': 1,\n",
      "          'scant': 1,\n",
      "          'heed': 1,\n",
      "          'celebrities': 1,\n",
      "          'board': 1,\n",
      "          'supporting': 1,\n",
      "          'professional': 1,\n",
      "          'mostly': 1,\n",
      "          'anonymous': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'unsinkable': 1,\n",
      "          'molly': 1,\n",
      "          'brown': 1,\n",
      "          'theres': 1,\n",
      "          'stop': 1,\n",
      "          'say': 1,\n",
      "          'oh': 1,\n",
      "          'yeah': 1,\n",
      "          'whats': 1,\n",
      "          'although': 1,\n",
      "          'would': 1,\n",
      "          'colm': 1,\n",
      "          'meaney': 1,\n",
      "          'white': 1,\n",
      "          'star': 1,\n",
      "          'uniform': 1,\n",
      "          'even': 1,\n",
      "          'illfated': 1,\n",
      "          'engineer': 1,\n",
      "          'rather': 1,\n",
      "          'conventional': 1,\n",
      "          'think': 1,\n",
      "          'reviewers': 1,\n",
      "          'found': 1,\n",
      "          'weak': 1,\n",
      "          'may': 1,\n",
      "          'fair': 1,\n",
      "          'criticism': 1,\n",
      "          'performances': 1,\n",
      "          'key': 1,\n",
      "          'nzane': 1,\n",
      "          'meatiest': 1,\n",
      "          'part': 1,\n",
      "          'arrogant': 1,\n",
      "          'condescending': 1,\n",
      "          'steel': 1,\n",
      "          'hilt': 1,\n",
      "          'nhes': 1,\n",
      "          'smooth': 1,\n",
      "          'tuxedo': 1,\n",
      "          'hes': 1,\n",
      "          'convincing': 1,\n",
      "          'jerk': 1,\n",
      "          'winsletdicaprio': 1,\n",
      "          'relationship': 1,\n",
      "          'plausible': 1,\n",
      "          'sees': 1,\n",
      "          'frightened': 1,\n",
      "          'aboard': 1,\n",
      "          'hear': 1,\n",
      "          'wheels': 1,\n",
      "          'turning': 1,\n",
      "          'saying': 1,\n",
      "          'save': 1,\n",
      "          'help': 1,\n",
      "          'revelation': 1,\n",
      "          'hadnt': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'honestly': 1,\n",
      "          'expected': 1,\n",
      "          'irish': 1,\n",
      "          'accent': 1,\n",
      "          'evidently': 1,\n",
      "          'decided': 1,\n",
      "          'idea': 1,\n",
      "          'poor': 1,\n",
      "          'american': 1,\n",
      "          'wins': 1,\n",
      "          'ticket': 1,\n",
      "          'poker': 1,\n",
      "          'game': 1,\n",
      "          'exhibits': 1,\n",
      "          'infectious': 1,\n",
      "          'joy': 1,\n",
      "          'hard': 1,\n",
      "          'nfrom': 1,\n",
      "          'leaves': 1,\n",
      "          'port': 1,\n",
      "          'carry': 1,\n",
      "          'keep': 1,\n",
      "          'interest': 1,\n",
      "          'falters': 1,\n",
      "          'nwinslets': 1,\n",
      "          'grows': 1,\n",
      "          'lot': 1,\n",
      "          'required': 1,\n",
      "          'wear': 1,\n",
      "          'period': 1,\n",
      "          'clothing': 1,\n",
      "          'dropdead': 1,\n",
      "          'gorgeous': 1,\n",
      "          'nwe': 1,\n",
      "          'narration': 1,\n",
      "          'monstrously': 1,\n",
      "          'unhappy': 1,\n",
      "          'arranged': 1,\n",
      "          'marriage': 1,\n",
      "          'isnt': 1,\n",
      "          'expression': 1,\n",
      "          'feelings': 1,\n",
      "          'encounters': 1,\n",
      "          'nwinslet': 1,\n",
      "          'develop': 1,\n",
      "          'chemistry': 1,\n",
      "          'propel': 1,\n",
      "          'along': 1,\n",
      "          'nits': 1,\n",
      "          'winslets': 1,\n",
      "          'comes': 1,\n",
      "          'nfaced': 1,\n",
      "          'danger': 1,\n",
      "          'drops': 1,\n",
      "          'spoiledrichgirl': 1,\n",
      "          'mannerisms': 1,\n",
      "          'splendid': 1,\n",
      "          'race': 1,\n",
      "          'around': 1,\n",
      "          'doomed': 1,\n",
      "          'looking': 1,\n",
      "          'shelter': 1,\n",
      "          'freezing': 1,\n",
      "          'water': 1,\n",
      "          'cals': 1,\n",
      "          'fiery': 1,\n",
      "          'temper': 1,\n",
      "          'turns': 1,\n",
      "          'superb': 1,\n",
      "          'acting': 1,\n",
      "          'mixing': 1,\n",
      "          'courage': 1,\n",
      "          'compassion': 1,\n",
      "          'anger': 1,\n",
      "          'sheer': 1,\n",
      "          'shrieking': 1,\n",
      "          'terror': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'interesting': 1,\n",
      "          'clearly': 1,\n",
      "          'fallen': 1,\n",
      "          'every': 1,\n",
      "          'mood': 1,\n",
      "          'deserted': 1,\n",
      "          'boiler': 1,\n",
      "          'room': 1,\n",
      "          'bridge': 1,\n",
      "          'hold': 1,\n",
      "          'captains': 1,\n",
      "          'table': 1,\n",
      "          'steerage': 1,\n",
      "          'bring': 1,\n",
      "          'back': 1,\n",
      "          'dead': 1,\n",
      "          'gift': 1,\n",
      "          'allows': 1,\n",
      "          'fall': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'gibson': 4,\n",
      "          'mullen': 4,\n",
      "          'son': 3,\n",
      "          'kidnappers': 3,\n",
      "          'nthe': 3,\n",
      "          'sinise': 3,\n",
      "          'doesn92t': 2,\n",
      "          'known': 2,\n",
      "          'hero': 2,\n",
      "          'nin': 2,\n",
      "          'apart': 2,\n",
      "          'situation': 2,\n",
      "          'play': 2,\n",
      "          'perfect': 2,\n",
      "          'nhis': 2,\n",
      "          'feeding': 2,\n",
      "          'ngibson92s': 2,\n",
      "          'way': 2,\n",
      "          'nas': 2,\n",
      "          'you92re': 2,\n",
      "          'sean': 2,\n",
      "          'nit92s': 2,\n",
      "          'one': 2,\n",
      "          'seen': 2,\n",
      "          'seems': 2,\n",
      "          'provide': 2,\n",
      "          'minute': 2,\n",
      "          'watch': 1,\n",
      "          'mel': 1,\n",
      "          'danger': 1,\n",
      "          'someone': 1,\n",
      "          'mad': 1,\n",
      "          'max': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'still': 1,\n",
      "          'big': 1,\n",
      "          'guns': 1,\n",
      "          'there92s': 1,\n",
      "          'accomplished': 1,\n",
      "          'acting': 1,\n",
      "          'nalthough': 1,\n",
      "          'continues': 1,\n",
      "          'shed': 1,\n",
      "          'rough': 1,\n",
      "          'gritty': 1,\n",
      "          'antihero': 1,\n",
      "          'skin': 1,\n",
      "          'career': 1,\n",
      "          'progresses': 1,\n",
      "          'explores': 1,\n",
      "          'new': 1,\n",
      "          'genre': 1,\n",
      "          'businessman': 1,\n",
      "          'action': 1,\n",
      "          'ron': 1,\n",
      "          'howard92s': 1,\n",
      "          'latest': 1,\n",
      "          'plays': 1,\n",
      "          'tom': 1,\n",
      "          'gazillionaire': 1,\n",
      "          'airline': 1,\n",
      "          'owner': 1,\n",
      "          'whose': 1,\n",
      "          'snatched': 1,\n",
      "          'junior': 1,\n",
      "          'science': 1,\n",
      "          'fair': 1,\n",
      "          'nmullen': 1,\n",
      "          'first': 1,\n",
      "          'agrees': 1,\n",
      "          'pay': 1,\n",
      "          'ransom': 1,\n",
      "          'things': 1,\n",
      "          'fall': 1,\n",
      "          'rethinks': 1,\n",
      "          'na': 1,\n",
      "          'veteran': 1,\n",
      "          'numerous': 1,\n",
      "          'hardnosed': 1,\n",
      "          'business': 1,\n",
      "          'negotiations': 1,\n",
      "          'tycoon': 1,\n",
      "          'realizes': 1,\n",
      "          'order': 1,\n",
      "          'get': 1,\n",
      "          'back': 1,\n",
      "          'alive': 1,\n",
      "          'hand': 1,\n",
      "          'differently': 1,\n",
      "          'casting': 1,\n",
      "          'puts': 1,\n",
      "          'top': 1,\n",
      "          'trio': 1,\n",
      "          'mastermind': 1,\n",
      "          'gary': 1,\n",
      "          'fbi': 1,\n",
      "          'team': 1,\n",
      "          'leader': 1,\n",
      "          'delroy': 1,\n",
      "          'lindo': 1,\n",
      "          'wonderfully': 1,\n",
      "          'nsinise': 1,\n",
      "          'driven': 1,\n",
      "          'scheming': 1,\n",
      "          'sleezebag': 1,\n",
      "          'right': 1,\n",
      "          'mark': 1,\n",
      "          'speech': 1,\n",
      "          'walkie': 1,\n",
      "          'talkie': 1,\n",
      "          'h': 1,\n",
      "          'g': 1,\n",
      "          'wells92': 1,\n",
      "          'morlocks': 1,\n",
      "          'eloi': 1,\n",
      "          'reveal': 1,\n",
      "          'vision': 1,\n",
      "          'nsociety': 1,\n",
      "          'glitteratti': 1,\n",
      "          'frolic': 1,\n",
      "          'high': 1,\n",
      "          'lowlifes': 1,\n",
      "          'dwell': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'character': 1,\n",
      "          'allamerican': 1,\n",
      "          'flaws': 1,\n",
      "          'cowboy': 1,\n",
      "          'ntactics': 1,\n",
      "          'tend': 1,\n",
      "          'work': 1,\n",
      "          'also': 1,\n",
      "          'got': 1,\n",
      "          'begin': 1,\n",
      "          'round': 1,\n",
      "          'weren92t': 1,\n",
      "          'man': 1,\n",
      "          'willing': 1,\n",
      "          'buy': 1,\n",
      "          'trouble': 1,\n",
      "          'wouldn92t': 1,\n",
      "          'kidnapped': 1,\n",
      "          'says': 1,\n",
      "          'payer': 1,\n",
      "          'nyou': 1,\n",
      "          'going': 1,\n",
      "          'none': 1,\n",
      "          'nicest': 1,\n",
      "          'elements': 1,\n",
      "          'characters': 1,\n",
      "          'actually': 1,\n",
      "          'personalities': 1,\n",
      "          'nlindo': 1,\n",
      "          'calls': 1,\n",
      "          'home': 1,\n",
      "          'talk': 1,\n",
      "          'kids': 1,\n",
      "          'obviously': 1,\n",
      "          'shaken': 1,\n",
      "          'working': 1,\n",
      "          'case': 1,\n",
      "          'neven': 1,\n",
      "          'real': 1,\n",
      "          'people': 1,\n",
      "          'arguing': 1,\n",
      "          'ultimate': 1,\n",
      "          'fate': 1,\n",
      "          'candy': 1,\n",
      "          'bars': 1,\n",
      "          'breakdown': 1,\n",
      "          'balcony': 1,\n",
      "          'penthouse': 1,\n",
      "          'apartment': 1,\n",
      "          'especially': 1,\n",
      "          'effective': 1,\n",
      "          'best': 1,\n",
      "          'filmed': 1,\n",
      "          'representations': 1,\n",
      "          'man92s': 1,\n",
      "          'world': 1,\n",
      "          'falling': 1,\n",
      "          'i92ve': 1,\n",
      "          'shoot': 1,\n",
      "          'em': 1,\n",
      "          'upending': 1,\n",
      "          'emotionally': 1,\n",
      "          'satisfying': 1,\n",
      "          'tacked': 1,\n",
      "          'rather': 1,\n",
      "          'powerful': 1,\n",
      "          'resolution': 1,\n",
      "          'well': 1,\n",
      "          'crafted': 1,\n",
      "          'scene': 1,\n",
      "          'we92ve': 1,\n",
      "          'nmullen92s': 1,\n",
      "          'wife': 1,\n",
      "          'rene': 1,\n",
      "          'russo': 1,\n",
      "          'several': 1,\n",
      "          'good': 1,\n",
      "          'moments': 1,\n",
      "          'occasionally': 1,\n",
      "          'nwhile': 1,\n",
      "          'adequate': 1,\n",
      "          'brawley': 1,\n",
      "          'nolte': 1,\n",
      "          'much': 1,\n",
      "          'occupying': 1,\n",
      "          'space': 1,\n",
      "          'build': 1,\n",
      "          'story': 1,\n",
      "          'around': 1,\n",
      "          'nbut': 1,\n",
      "          'you92ll': 1,\n",
      "          'ignore': 1,\n",
      "          'problems': 1,\n",
      "          'movie': 1,\n",
      "          'builds': 1,\n",
      "          'previous': 1,\n",
      "          'nforget': 1,\n",
      "          'large': 1,\n",
      "          'coke': 1,\n",
      "          'won92t': 1,\n",
      "          'want': 1,\n",
      "          'leave': 1,\n",
      "          'five': 1,\n",
      "          'break': 1,\n",
      "          'hour': 1,\n",
      "          'later': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'cusack': 14,\n",
      "          'film': 9,\n",
      "          'character': 9,\n",
      "          'kind': 6,\n",
      "          'much': 6,\n",
      "          'something': 6,\n",
      "          'hes': 5,\n",
      "          'way': 5,\n",
      "          'anything': 5,\n",
      "          'whose': 5,\n",
      "          'movie': 5,\n",
      "          'would': 5,\n",
      "          'guy': 5,\n",
      "          'nhes': 5,\n",
      "          'like': 5,\n",
      "          'people': 4,\n",
      "          'name': 4,\n",
      "          'one': 4,\n",
      "          'see': 4,\n",
      "          'fidelity': 4,\n",
      "          'know': 4,\n",
      "          'cusacks': 4,\n",
      "          'nthe': 4,\n",
      "          'john': 3,\n",
      "          'put': 3,\n",
      "          'day': 3,\n",
      "          'movies': 3,\n",
      "          'never': 3,\n",
      "          'ni': 3,\n",
      "          'little': 3,\n",
      "          'nthis': 3,\n",
      "          'rather': 3,\n",
      "          'fact': 3,\n",
      "          'yes': 3,\n",
      "          'quite': 3,\n",
      "          'good': 3,\n",
      "          'hair': 3,\n",
      "          'sure': 3,\n",
      "          'say': 3,\n",
      "          'still': 3,\n",
      "          'nhigh': 3,\n",
      "          'funny': 3,\n",
      "          'us': 3,\n",
      "          'entirely': 3,\n",
      "          'black': 3,\n",
      "          'nbut': 3,\n",
      "          'actor': 2,\n",
      "          'seems': 2,\n",
      "          'effortlessly': 2,\n",
      "          'roles': 2,\n",
      "          'forget': 2,\n",
      "          'rarely': 2,\n",
      "          'actors': 2,\n",
      "          'face': 2,\n",
      "          'mother': 2,\n",
      "          'seeing': 2,\n",
      "          'mind': 2,\n",
      "          'ill': 2,\n",
      "          'go': 2,\n",
      "          'might': 2,\n",
      "          'usual': 2,\n",
      "          'went': 2,\n",
      "          'probably': 2,\n",
      "          'picture': 2,\n",
      "          'woody': 2,\n",
      "          'allen': 2,\n",
      "          'usually': 2,\n",
      "          'recognize': 2,\n",
      "          'names': 2,\n",
      "          'instead': 2,\n",
      "          'dont': 2,\n",
      "          'nat': 2,\n",
      "          'point': 2,\n",
      "          'nose': 2,\n",
      "          'till': 2,\n",
      "          'bland': 2,\n",
      "          'even': 2,\n",
      "          'tom': 2,\n",
      "          'nim': 2,\n",
      "          'man': 2,\n",
      "          'looks': 2,\n",
      "          'charming': 2,\n",
      "          'likeable': 2,\n",
      "          'thing': 2,\n",
      "          'talents': 2,\n",
      "          'early': 2,\n",
      "          'jack': 2,\n",
      "          'every': 2,\n",
      "          'plays': 2,\n",
      "          'enjoyable': 2,\n",
      "          'stephan': 2,\n",
      "          'judging': 2,\n",
      "          'projects': 2,\n",
      "          'also': 2,\n",
      "          'hit': 2,\n",
      "          'fears': 2,\n",
      "          'terrific': 2,\n",
      "          'rob': 2,\n",
      "          'record': 2,\n",
      "          'store': 2,\n",
      "          'top': 2,\n",
      "          'mostly': 2,\n",
      "          'reminded': 2,\n",
      "          'almost': 2,\n",
      "          'must': 2,\n",
      "          'characters': 2,\n",
      "          'really': 2,\n",
      "          'films': 2,\n",
      "          'annoying': 2,\n",
      "          'im': 2,\n",
      "          'onto': 2,\n",
      "          'manic': 2,\n",
      "          'speed': 2,\n",
      "          'bit': 2,\n",
      "          'comic': 2,\n",
      "          'poor': 2,\n",
      "          'role': 2,\n",
      "          'completely': 2,\n",
      "          'played': 2,\n",
      "          'danish': 2,\n",
      "          'replacing': 2,\n",
      "          'stilted': 2,\n",
      "          'beautiful': 2,\n",
      "          'natasha': 2,\n",
      "          'paired': 2,\n",
      "          'award': 2,\n",
      "          'slide': 1,\n",
      "          'respective': 1,\n",
      "          'nso': 1,\n",
      "          'tend': 1,\n",
      "          'recall': 1,\n",
      "          'many': 1,\n",
      "          'great': 1,\n",
      "          'anyone': 1,\n",
      "          'james': 1,\n",
      "          'rebhorn': 1,\n",
      "          'invited': 1,\n",
      "          'treat': 1,\n",
      "          'product': 1,\n",
      "          'sponsors': 1,\n",
      "          'nexample': 1,\n",
      "          'asked': 1,\n",
      "          'expert': 1,\n",
      "          'course': 1,\n",
      "          'worth': 1,\n",
      "          'tastes': 1,\n",
      "          'couldnt': 1,\n",
      "          'divergent': 1,\n",
      "          'recommended': 1,\n",
      "          'night': 1,\n",
      "          'roxbury': 1,\n",
      "          'god': 1,\n",
      "          'sakes': 1,\n",
      "          'fair': 1,\n",
      "          'mightily': 1,\n",
      "          'pissed': 1,\n",
      "          'telling': 1,\n",
      "          'nwas': 1,\n",
      "          'lot': 1,\n",
      "          'fun': 1,\n",
      "          'didnt': 1,\n",
      "          'futile': 1,\n",
      "          'attempt': 1,\n",
      "          'conversation': 1,\n",
      "          'muttered': 1,\n",
      "          'trepidation': 1,\n",
      "          'enjoy': 1,\n",
      "          'high': 1,\n",
      "          'nshe': 1,\n",
      "          'responded': 1,\n",
      "          'query': 1,\n",
      "          'question': 1,\n",
      "          'answer': 1,\n",
      "          'immediately': 1,\n",
      "          'conjure': 1,\n",
      "          'nif': 1,\n",
      "          'reply': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'assume': 1,\n",
      "          'wispy': 1,\n",
      "          'light': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'bloodbath': 1,\n",
      "          'words': 1,\n",
      "          'involuntary': 1,\n",
      "          'bicep': 1,\n",
      "          'flexing': 1,\n",
      "          'means': 1,\n",
      "          'hyper': 1,\n",
      "          'articulate': 1,\n",
      "          'white': 1,\n",
      "          'jewish': 1,\n",
      "          'faith': 1,\n",
      "          'fretting': 1,\n",
      "          'upper': 1,\n",
      "          'east': 1,\n",
      "          'side': 1,\n",
      "          'palace': 1,\n",
      "          'nanyway': 1,\n",
      "          'answered': 1,\n",
      "          'replied': 1,\n",
      "          'stunned': 1,\n",
      "          'unreasonable': 1,\n",
      "          'referring': 1,\n",
      "          'nnow': 1,\n",
      "          'seen': 1,\n",
      "          'several': 1,\n",
      "          'recently': 1,\n",
      "          'malkovich': 1,\n",
      "          'pushing': 1,\n",
      "          'tin': 1,\n",
      "          'suppose': 1,\n",
      "          'understandable': 1,\n",
      "          'tougher': 1,\n",
      "          'faces': 1,\n",
      "          'showed': 1,\n",
      "          'mug': 1,\n",
      "          'paper': 1,\n",
      "          'hoping': 1,\n",
      "          'oh': 1,\n",
      "          'got': 1,\n",
      "          'beyond': 1,\n",
      "          'frustration': 1,\n",
      "          'realm': 1,\n",
      "          'yanking': 1,\n",
      "          'anger': 1,\n",
      "          'filmic': 1,\n",
      "          'ignorance': 1,\n",
      "          'takes': 1,\n",
      "          'get': 1,\n",
      "          'pulling': 1,\n",
      "          'zone': 1,\n",
      "          'realized': 1,\n",
      "          'doubt': 1,\n",
      "          'america': 1,\n",
      "          'relatively': 1,\n",
      "          'visage': 1,\n",
      "          'compared': 1,\n",
      "          'coolness': 1,\n",
      "          'brad': 1,\n",
      "          'pitt': 1,\n",
      "          'cruise': 1,\n",
      "          'onesyllable': 1,\n",
      "          'glide': 1,\n",
      "          'tongue': 1,\n",
      "          'velocity': 1,\n",
      "          'speeding': 1,\n",
      "          'car': 1,\n",
      "          'ncusack': 1,\n",
      "          'cool': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'forever': 1,\n",
      "          'referred': 1,\n",
      "          'add': 1,\n",
      "          'choice': 1,\n",
      "          'brand': 1,\n",
      "          'arent': 1,\n",
      "          'big': 1,\n",
      "          'moneymakers': 1,\n",
      "          'unassuming': 1,\n",
      "          'genius': 1,\n",
      "          'nwith': 1,\n",
      "          'pleasant': 1,\n",
      "          'common': 1,\n",
      "          'semiarticulate': 1,\n",
      "          'blatherings': 1,\n",
      "          'become': 1,\n",
      "          'romantic': 1,\n",
      "          'leading': 1,\n",
      "          'men': 1,\n",
      "          '90s': 1,\n",
      "          'nfrom': 1,\n",
      "          'merged': 1,\n",
      "          'hanks': 1,\n",
      "          'lemmon': 1,\n",
      "          'ndespite': 1,\n",
      "          'nearly': 1,\n",
      "          'variation': 1,\n",
      "          'schlumpy': 1,\n",
      "          'constantly': 1,\n",
      "          'screen': 1,\n",
      "          'persona': 1,\n",
      "          'albert': 1,\n",
      "          'brooks': 1,\n",
      "          'nand': 1,\n",
      "          'knows': 1,\n",
      "          'chose': 1,\n",
      "          'scripts': 1,\n",
      "          'baldwins': 1,\n",
      "          'val': 1,\n",
      "          'kilmers': 1,\n",
      "          'seem': 1,\n",
      "          'selves': 1,\n",
      "          'everything': 1,\n",
      "          'former': 1,\n",
      "          'actually': 1,\n",
      "          'insight': 1,\n",
      "          'follow': 1,\n",
      "          'oscar': 1,\n",
      "          'winner': 1,\n",
      "          'suspects': 1,\n",
      "          'pauly': 1,\n",
      "          'shore': 1,\n",
      "          'vehicle': 1,\n",
      "          'latest': 1,\n",
      "          'yet': 1,\n",
      "          'fire': 1,\n",
      "          'agent': 1,\n",
      "          'generally': 1,\n",
      "          'picks': 1,\n",
      "          'rewarding': 1,\n",
      "          'save': 1,\n",
      "          'unwatchable': 1,\n",
      "          'hot': 1,\n",
      "          'pursuit': 1,\n",
      "          '1988': 1,\n",
      "          'featuring': 1,\n",
      "          'young': 1,\n",
      "          'ben': 1,\n",
      "          'stiller': 1,\n",
      "          'second': 1,\n",
      "          'collaboration': 1,\n",
      "          'miss': 1,\n",
      "          'english': 1,\n",
      "          'director': 1,\n",
      "          'grifters': 1,\n",
      "          'hilo': 1,\n",
      "          'country': 1,\n",
      "          'nit': 1,\n",
      "          'cowritten': 1,\n",
      "          'collaborators': 1,\n",
      "          'comedy': 1,\n",
      "          'grosse': 1,\n",
      "          'blank': 1,\n",
      "          'nits': 1,\n",
      "          'entertaining': 1,\n",
      "          'progresses': 1,\n",
      "          'meandering': 1,\n",
      "          'fashion': 1,\n",
      "          'cast': 1,\n",
      "          'spell': 1,\n",
      "          'begins': 1,\n",
      "          'hipster': 1,\n",
      "          'ode': 1,\n",
      "          'noncommittal': 1,\n",
      "          'vinyl': 1,\n",
      "          'owner': 1,\n",
      "          'opens': 1,\n",
      "          'breaking': 1,\n",
      "          'fourth': 1,\n",
      "          'wall': 1,\n",
      "          'abandon': 1,\n",
      "          'educating': 1,\n",
      "          '5': 1,\n",
      "          'break': 1,\n",
      "          'ups': 1,\n",
      "          'list': 1,\n",
      "          'entire': 1,\n",
      "          'la': 1,\n",
      "          'ferris': 1,\n",
      "          'buellers': 1,\n",
      "          'first': 1,\n",
      "          'talkingdirectlyintothecameraschtick': 1,\n",
      "          'vaguely': 1,\n",
      "          'annoyed': 1,\n",
      "          'body': 1,\n",
      "          'shots': 1,\n",
      "          'used': 1,\n",
      "          'similar': 1,\n",
      "          'conceit': 1,\n",
      "          'began': 1,\n",
      "          'grow': 1,\n",
      "          'due': 1,\n",
      "          'witty': 1,\n",
      "          'delivery': 1,\n",
      "          'talking': 1,\n",
      "          'directly': 1,\n",
      "          'ngradually': 1,\n",
      "          'settles': 1,\n",
      "          'shampoolike': 1,\n",
      "          'tragicomic': 1,\n",
      "          'study': 1,\n",
      "          'confront': 1,\n",
      "          'personal': 1,\n",
      "          'failures': 1,\n",
      "          'order': 1,\n",
      "          'figure': 1,\n",
      "          'true': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'person': 1,\n",
      "          'existential': 1,\n",
      "          'nthough': 1,\n",
      "          'plotline': 1,\n",
      "          'liked': 1,\n",
      "          'pleasure': 1,\n",
      "          'offers': 1,\n",
      "          'introducing': 1,\n",
      "          'minor': 1,\n",
      "          'enough': 1,\n",
      "          'warrant': 1,\n",
      "          'best': 1,\n",
      "          'show': 1,\n",
      "          'tenacious': 1,\n",
      "          'program': 1,\n",
      "          'sadly': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'unfortunately': 1,\n",
      "          'smirk': 1,\n",
      "          'remains': 1,\n",
      "          'ardent': 1,\n",
      "          'employee': 1,\n",
      "          'bullies': 1,\n",
      "          'customers': 1,\n",
      "          'buying': 1,\n",
      "          'exactly': 1,\n",
      "          'wants': 1,\n",
      "          'buy': 1,\n",
      "          'weve': 1,\n",
      "          'met': 1,\n",
      "          'blowhard': 1,\n",
      "          'thinks': 1,\n",
      "          'always': 1,\n",
      "          'right': 1,\n",
      "          'power': 1,\n",
      "          'yell': 1,\n",
      "          'argue': 1,\n",
      "          'insult': 1,\n",
      "          'hoist': 1,\n",
      "          'opinion': 1,\n",
      "          'others': 1,\n",
      "          'portly': 1,\n",
      "          'round': 1,\n",
      "          'baby': 1,\n",
      "          'crazy': 1,\n",
      "          'eyes': 1,\n",
      "          'despite': 1,\n",
      "          'size': 1,\n",
      "          'leaps': 1,\n",
      "          'fro': 1,\n",
      "          'freak': 1,\n",
      "          'redundant': 1,\n",
      "          'description': 1,\n",
      "          'freaks': 1,\n",
      "          'supporting': 1,\n",
      "          'impossibly': 1,\n",
      "          'relief': 1,\n",
      "          'n': 1,\n",
      "          'look': 1,\n",
      "          'hack': 1,\n",
      "          'jan': 1,\n",
      "          'de': 1,\n",
      "          'bont': 1,\n",
      "          'phillip': 1,\n",
      "          'seymour': 1,\n",
      "          'hoffman': 1,\n",
      "          'twister': 1,\n",
      "          'let': 1,\n",
      "          'happen': 1,\n",
      "          'shucking': 1,\n",
      "          'jiving': 1,\n",
      "          'steeped': 1,\n",
      "          'reality': 1,\n",
      "          'relate': 1,\n",
      "          'ncatherine': 1,\n",
      "          'zetajones': 1,\n",
      "          'brief': 1,\n",
      "          'gives': 1,\n",
      "          'vivid': 1,\n",
      "          'portrayal': 1,\n",
      "          'women': 1,\n",
      "          'enamored': 1,\n",
      "          'charm': 1,\n",
      "          'ntim': 1,\n",
      "          'robbins': 1,\n",
      "          'registers': 1,\n",
      "          'tinier': 1,\n",
      "          'part': 1,\n",
      "          'new': 1,\n",
      "          'agetype': 1,\n",
      "          'cartoon': 1,\n",
      "          'yuks': 1,\n",
      "          'manages': 1,\n",
      "          'work': 1,\n",
      "          'desired': 1,\n",
      "          'effect': 1,\n",
      "          'exception': 1,\n",
      "          'acting': 1,\n",
      "          'department': 1,\n",
      "          'doozy': 1,\n",
      "          'main': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'actress': 1,\n",
      "          'iben': 1,\n",
      "          'hjejle': 1,\n",
      "          'mifune': 1,\n",
      "          'obliterates': 1,\n",
      "          'trace': 1,\n",
      "          'accent': 1,\n",
      "          'american': 1,\n",
      "          'phonation': 1,\n",
      "          'give': 1,\n",
      "          'kudos': 1,\n",
      "          'attempting': 1,\n",
      "          'contradictory': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'robotic': 1,\n",
      "          'hard': 1,\n",
      "          'obsessed': 1,\n",
      "          'especially': 1,\n",
      "          'intelligent': 1,\n",
      "          'writer': 1,\n",
      "          'gregson': 1,\n",
      "          'wagner': 1,\n",
      "          'potentially': 1,\n",
      "          'waiting': 1,\n",
      "          'wings': 1,\n",
      "          'charmless': 1,\n",
      "          'ione': 1,\n",
      "          'skye': 1,\n",
      "          'midnight': 1,\n",
      "          'garden': 1,\n",
      "          'evil': 1,\n",
      "          'bastard': 1,\n",
      "          'alison': 1,\n",
      "          'eastwood': 1,\n",
      "          'unbelievably': 1,\n",
      "          'wooden': 1,\n",
      "          'father': 1,\n",
      "          'clint': 1,\n",
      "          'special': 1,\n",
      "          'wheels': 1,\n",
      "          'turn': 1,\n",
      "          'slower': 1,\n",
      "          'nin': 1,\n",
      "          'personality': 1,\n",
      "          'matches': 1,\n",
      "          'though': 1,\n",
      "          'id': 1,\n",
      "          'bet': 1,\n",
      "          'laura': 1,\n",
      "          'switched': 1,\n",
      "          'result': 1,\n",
      "          'effective': 1,\n",
      "          'works': 1,\n",
      "          'strength': 1,\n",
      "          'performances': 1,\n",
      "          'nfears': 1,\n",
      "          'direction': 1,\n",
      "          'somewhat': 1,\n",
      "          'script': 1,\n",
      "          'sometimes': 1,\n",
      "          'word': 1,\n",
      "          'beginning': 1,\n",
      "          'hate': 1,\n",
      "          'use': 1,\n",
      "          'alas': 1,\n",
      "          'quirky': 1,\n",
      "          'think': 1,\n",
      "          'blame': 1,\n",
      "          'scott': 1,\n",
      "          'rosenberg': 1,\n",
      "          'girls': 1,\n",
      "          'con': 1,\n",
      "          'air': 1,\n",
      "          'things': 1,\n",
      "          'denver': 1,\n",
      "          'dead': 1,\n",
      "          'fingerprints': 1,\n",
      "          'irritating': 1,\n",
      "          'bits': 1,\n",
      "          'deserve': 1,\n",
      "          'damn': 1,\n",
      "          'cusackian': 1,\n",
      "          'afraid': 1,\n",
      "          'understated': 1,\n",
      "          'may': 1,\n",
      "          'wait': 1,\n",
      "          'hip': 1,\n",
      "          'needs': 1,\n",
      "          'offered': 1,\n",
      "          'worthy': 1,\n",
      "          'considerable': 1,\n",
      "          'talent': 1,\n",
      "          'nhis': 1,\n",
      "          'sort': 1,\n",
      "          'older': 1,\n",
      "          'bitter': 1,\n",
      "          'lloyd': 1,\n",
      "          'tragic': 1,\n",
      "          'without': 1,\n",
      "          'pathetic': 1,\n",
      "          'imprint': 1,\n",
      "          'minds': 1,\n",
      "          'audiences': 1,\n",
      "          'achievement': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'horror': 12,\n",
      "          'scream': 11,\n",
      "          '2': 8,\n",
      "          'film': 7,\n",
      "          'characters': 7,\n",
      "          'movies': 5,\n",
      "          'clearly': 5,\n",
      "          'media': 4,\n",
      "          'nthe': 4,\n",
      "          'movie': 4,\n",
      "          'one': 4,\n",
      "          'first': 3,\n",
      "          'genuine': 3,\n",
      "          'audience': 3,\n",
      "          'well': 3,\n",
      "          'seen': 3,\n",
      "          'even': 3,\n",
      "          'also': 3,\n",
      "          'n': 3,\n",
      "          'sendup': 2,\n",
      "          'director': 2,\n",
      "          'wes': 2,\n",
      "          'craven': 2,\n",
      "          'life': 2,\n",
      "          'slasher': 2,\n",
      "          'sequel': 2,\n",
      "          'nwhile': 2,\n",
      "          'violence': 2,\n",
      "          'lacking': 2,\n",
      "          'scares': 2,\n",
      "          'scene': 2,\n",
      "          'camp': 2,\n",
      "          'constant': 2,\n",
      "          'killings': 2,\n",
      "          'weathers': 2,\n",
      "          'ni': 2,\n",
      "          'see': 2,\n",
      "          'front': 2,\n",
      "          'disturbing': 2,\n",
      "          'perceptions': 2,\n",
      "          'randy': 2,\n",
      "          'sequels': 2,\n",
      "          'friends': 2,\n",
      "          'willing': 2,\n",
      "          'go': 2,\n",
      "          'whose': 2,\n",
      "          'fact': 2,\n",
      "          'situation': 2,\n",
      "          'several': 2,\n",
      "          'character': 2,\n",
      "          'pretty': 2,\n",
      "          'good': 2,\n",
      "          'get': 2,\n",
      "          'seem': 2,\n",
      "          'better': 2,\n",
      "          'year': 1,\n",
      "          'initial': 1,\n",
      "          'release': 1,\n",
      "          'veteran': 1,\n",
      "          'screenwriter': 1,\n",
      "          'kevin': 1,\n",
      "          'williamson': 1,\n",
      "          'seemed': 1,\n",
      "          'breathe': 1,\n",
      "          'new': 1,\n",
      "          'genre': 1,\n",
      "          'inevitable': 1,\n",
      "          'arrived': 1,\n",
      "          'theaters': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'parodic': 1,\n",
      "          'element': 1,\n",
      "          'still': 1,\n",
      "          'noticeable': 1,\n",
      "          'really': 1,\n",
      "          'sideshow': 1,\n",
      "          'broader': 1,\n",
      "          'commentary': 1,\n",
      "          'conventional': 1,\n",
      "          'story': 1,\n",
      "          'often': 1,\n",
      "          'violent': 1,\n",
      "          'gruesome': 1,\n",
      "          'mostly': 1,\n",
      "          'almost': 1,\n",
      "          'every': 1,\n",
      "          'played': 1,\n",
      "          'value': 1,\n",
      "          'discussion': 1,\n",
      "          'quirks': 1,\n",
      "          'cliches': 1,\n",
      "          'nearly': 1,\n",
      "          'premise': 1,\n",
      "          'series': 1,\n",
      "          'copycat': 1,\n",
      "          'begin': 1,\n",
      "          'called': 1,\n",
      "          'stab': 1,\n",
      "          'based': 1,\n",
      "          'book': 1,\n",
      "          'written': 1,\n",
      "          'opportunistic': 1,\n",
      "          'reporter': 1,\n",
      "          'gail': 1,\n",
      "          'courtney': 1,\n",
      "          'cox': 1,\n",
      "          'events': 1,\n",
      "          'released': 1,\n",
      "          'two': 1,\n",
      "          'members': 1,\n",
      "          'killed': 1,\n",
      "          'opening': 1,\n",
      "          'screening': 1,\n",
      "          'heard': 1,\n",
      "          'went': 1,\n",
      "          'surprised': 1,\n",
      "          'find': 1,\n",
      "          'sequence': 1,\n",
      "          'largely': 1,\n",
      "          'comedy': 1,\n",
      "          'nits': 1,\n",
      "          'conclusion': 1,\n",
      "          'bleeding': 1,\n",
      "          'wounded': 1,\n",
      "          'woman': 1,\n",
      "          'stumbles': 1,\n",
      "          'screen': 1,\n",
      "          'dies': 1,\n",
      "          'cheers': 1,\n",
      "          'think': 1,\n",
      "          'publicity': 1,\n",
      "          'stunt': 1,\n",
      "          'surreal': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'satire': 1,\n",
      "          'thus': 1,\n",
      "          'takes': 1,\n",
      "          'broad': 1,\n",
      "          'focus': 1,\n",
      "          'gradually': 1,\n",
      "          'evolves': 1,\n",
      "          'exploration': 1,\n",
      "          'general': 1,\n",
      "          'nalthough': 1,\n",
      "          'resident': 1,\n",
      "          'geek': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'back': 1,\n",
      "          'fresh': 1,\n",
      "          'dialogue': 1,\n",
      "          'interestingly': 1,\n",
      "          'enough': 1,\n",
      "          'usually': 1,\n",
      "          'inferior': 1,\n",
      "          'predecessors': 1,\n",
      "          'drawing': 1,\n",
      "          'entries': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'encyclopedia': 1,\n",
      "          'neverything': 1,\n",
      "          'saved': 1,\n",
      "          'bell': 1,\n",
      "          'showgirls': 1,\n",
      "          'terminator': 1,\n",
      "          'referenced': 1,\n",
      "          'many': 1,\n",
      "          'genres': 1,\n",
      "          'available': 1,\n",
      "          'lampooning': 1,\n",
      "          'arent': 1,\n",
      "          'carpenter': 1,\n",
      "          'jokes': 1,\n",
      "          'time': 1,\n",
      "          'nmore': 1,\n",
      "          'importantly': 1,\n",
      "          'portrays': 1,\n",
      "          'lengths': 1,\n",
      "          'attention': 1,\n",
      "          'warped': 1,\n",
      "          'tv': 1,\n",
      "          'imitation': 1,\n",
      "          'previous': 1,\n",
      "          'murders': 1,\n",
      "          'culprit': 1,\n",
      "          'plans': 1,\n",
      "          'use': 1,\n",
      "          'influence': 1,\n",
      "          'courtroom': 1,\n",
      "          'defense': 1,\n",
      "          'exploits': 1,\n",
      "          'notoriety': 1,\n",
      "          'man': 1,\n",
      "          'seems': 1,\n",
      "          'save': 1,\n",
      "          'heroines': 1,\n",
      "          'earn': 1,\n",
      "          'interview': 1,\n",
      "          'today': 1,\n",
      "          'show': 1,\n",
      "          'nunderstandably': 1,\n",
      "          'far': 1,\n",
      "          'actually': 1,\n",
      "          'blame': 1,\n",
      "          'rather': 1,\n",
      "          'shows': 1,\n",
      "          'imitate': 1,\n",
      "          'already': 1,\n",
      "          'sick': 1,\n",
      "          'twisted': 1,\n",
      "          'ncouple': 1,\n",
      "          'notably': 1,\n",
      "          'lead': 1,\n",
      "          'sidney': 1,\n",
      "          'prescott': 1,\n",
      "          'neve': 1,\n",
      "          'campbell': 1,\n",
      "          'fairly': 1,\n",
      "          'welldeveloped': 1,\n",
      "          'moments': 1,\n",
      "          'spinechilling': 1,\n",
      "          'suspense': 1,\n",
      "          'darned': 1,\n",
      "          'right': 1,\n",
      "          'nwe': 1,\n",
      "          'dont': 1,\n",
      "          'scary': 1,\n",
      "          'masks': 1,\n",
      "          'graphic': 1,\n",
      "          'gore': 1,\n",
      "          'sympathetic': 1,\n",
      "          'helpless': 1,\n",
      "          'slaughtered': 1,\n",
      "          'case': 1,\n",
      "          'significant': 1,\n",
      "          'favorite': 1,\n",
      "          'bites': 1,\n",
      "          'dust': 1,\n",
      "          'lives': 1,\n",
      "          'reduced': 1,\n",
      "          'fear': 1,\n",
      "          'crazed': 1,\n",
      "          'murderer': 1,\n",
      "          'lurking': 1,\n",
      "          'around': 1,\n",
      "          'corner': 1,\n",
      "          'work': 1,\n",
      "          'easy': 1,\n",
      "          'generally': 1,\n",
      "          'touted': 1,\n",
      "          'sophisticated': 1,\n",
      "          'cares': 1,\n",
      "          'something': 1,\n",
      "          'actual': 1,\n",
      "          'acts': 1,\n",
      "          'slashing': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'occasionally': 1,\n",
      "          'reverts': 1,\n",
      "          'timehonored': 1,\n",
      "          'tradition': 1,\n",
      "          'throwing': 1,\n",
      "          'logic': 1,\n",
      "          'window': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'quite': 1,\n",
      "          'dead': 1,\n",
      "          'inexplicably': 1,\n",
      "          'turn': 1,\n",
      "          'alive': 1,\n",
      "          'later': 1,\n",
      "          'running': 1,\n",
      "          'gag': 1,\n",
      "          'villain': 1,\n",
      "          'able': 1,\n",
      "          'pull': 1,\n",
      "          'particular': 1,\n",
      "          'trick': 1,\n",
      "          'happens': 1,\n",
      "          'less': 1,\n",
      "          'believable': 1,\n",
      "          'fashion': 1,\n",
      "          'nthere': 1,\n",
      "          'scenes': 1,\n",
      "          'killer': 1,\n",
      "          'suddenly': 1,\n",
      "          'appears': 1,\n",
      "          'behind': 1,\n",
      "          'next': 1,\n",
      "          'victim': 1,\n",
      "          'would': 1,\n",
      "          'moving': 1,\n",
      "          'direction': 1,\n",
      "          'nas': 1,\n",
      "          'question': 1,\n",
      "          'whether': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'predecessor': 1,\n",
      "          'nwell': 1,\n",
      "          'hard': 1,\n",
      "          'say': 1,\n",
      "          'gave': 1,\n",
      "          '3': 1,\n",
      "          '12': 1,\n",
      "          'stars': 1,\n",
      "          'worked': 1,\n",
      "          'consistently': 1,\n",
      "          'lighthearted': 1,\n",
      "          'bounces': 1,\n",
      "          'place': 1,\n",
      "          'stylistically': 1,\n",
      "          'job': 1,\n",
      "          'delivering': 1,\n",
      "          'asking': 1,\n",
      "          'questions': 1,\n",
      "          'hinted': 1,\n",
      "          'installment': 1,\n",
      "          'nim': 1,\n",
      "          'sure': 1,\n",
      "          'leave': 1,\n",
      "          'theater': 1,\n",
      "          'convinced': 1,\n",
      "          'thing': 1,\n",
      "          'however': 1,\n",
      "          'much': 1,\n",
      "          'might': 1,\n",
      "          'argue': 1,\n",
      "          'necessarily': 1,\n",
      "          'suck': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'full': 5,\n",
      "          'monty': 5,\n",
      "          'movie': 3,\n",
      "          'show': 3,\n",
      "          'nthe': 3,\n",
      "          'great': 3,\n",
      "          'fun': 2,\n",
      "          'nits': 2,\n",
      "          'oscar': 2,\n",
      "          'nominations': 2,\n",
      "          'million': 2,\n",
      "          'film': 2,\n",
      "          'may': 2,\n",
      "          'year': 2,\n",
      "          'put': 2,\n",
      "          'nas': 2,\n",
      "          'worried': 2,\n",
      "          'one': 2,\n",
      "          'best': 2,\n",
      "          'picture': 2,\n",
      "          'trainspotting': 2,\n",
      "          'whole': 1,\n",
      "          'lot': 1,\n",
      "          'wacky': 1,\n",
      "          'witty': 1,\n",
      "          'original': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'relatively': 1,\n",
      "          'unknowns': 1,\n",
      "          'simon': 1,\n",
      "          'beaufoy': 1,\n",
      "          'peter': 1,\n",
      "          'cattaneo': 1,\n",
      "          'turned': 1,\n",
      "          'nhow': 1,\n",
      "          'budget': 1,\n",
      "          '10': 1,\n",
      "          'gross': 1,\n",
      "          '175': 1,\n",
      "          'worldwide': 1,\n",
      "          'rumored': 1,\n",
      "          'second': 1,\n",
      "          'profitable': 1,\n",
      "          'nand': 1,\n",
      "          'think': 1,\n",
      "          'male': 1,\n",
      "          'exotic': 1,\n",
      "          'dancers': 1,\n",
      "          'sinking': 1,\n",
      "          'ships': 1,\n",
      "          'nsix': 1,\n",
      "          'steel': 1,\n",
      "          'workers': 1,\n",
      "          'recently': 1,\n",
      "          'laid': 1,\n",
      "          'looking': 1,\n",
      "          'jobs': 1,\n",
      "          'ninspired': 1,\n",
      "          'success': 1,\n",
      "          'chippendales': 1,\n",
      "          'production': 1,\n",
      "          'gaz': 1,\n",
      "          'robert': 1,\n",
      "          'carlyle': 1,\n",
      "          'decides': 1,\n",
      "          'strip': 1,\n",
      "          'make': 1,\n",
      "          'money': 1,\n",
      "          'quickly': 1,\n",
      "          'six': 1,\n",
      "          'team': 1,\n",
      "          'lives': 1,\n",
      "          'run': 1,\n",
      "          'problems': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'dave': 1,\n",
      "          'mark': 1,\n",
      "          'addy': 1,\n",
      "          'weight': 1,\n",
      "          'horse': 1,\n",
      "          'paul': 1,\n",
      "          'barber': 1,\n",
      "          'thinks': 1,\n",
      "          'inadequate': 1,\n",
      "          'gerald': 1,\n",
      "          'tom': 1,\n",
      "          'wilkinson': 1,\n",
      "          'reputation': 1,\n",
      "          'timing': 1,\n",
      "          'nso': 1,\n",
      "          'night': 1,\n",
      "          'comes': 1,\n",
      "          'men': 1,\n",
      "          'able': 1,\n",
      "          'said': 1,\n",
      "          'really': 1,\n",
      "          'artistically': 1,\n",
      "          'good': 1,\n",
      "          'writing': 1,\n",
      "          'direction': 1,\n",
      "          'acting': 1,\n",
      "          'appealing': 1,\n",
      "          'performances': 1,\n",
      "          'human': 1,\n",
      "          'quality': 1,\n",
      "          'relate': 1,\n",
      "          'least': 1,\n",
      "          'characters': 1,\n",
      "          'received': 1,\n",
      "          'four': 1,\n",
      "          'including': 1,\n",
      "          'nwhich': 1,\n",
      "          'left': 1,\n",
      "          'wondering': 1,\n",
      "          'thing': 1,\n",
      "          'didnt': 1,\n",
      "          'get': 1,\n",
      "          'nomination': 1,\n",
      "          'last': 1,\n",
      "          'nwhile': 1,\n",
      "          'lighthearted': 1,\n",
      "          'comedy': 1,\n",
      "          'doesnt': 1,\n",
      "          'carry': 1,\n",
      "          'social': 1,\n",
      "          'impact': 1,\n",
      "          'brilliant': 1,\n",
      "          'nstill': 1,\n",
      "          'must': 1,\n",
      "          'see': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 15,\n",
      "          'gattaca': 12,\n",
      "          'nthe': 9,\n",
      "          'one': 7,\n",
      "          'science': 6,\n",
      "          'fiction': 6,\n",
      "          'films': 6,\n",
      "          'genetic': 6,\n",
      "          'good': 5,\n",
      "          'story': 5,\n",
      "          'well': 5,\n",
      "          'character': 5,\n",
      "          'gives': 5,\n",
      "          'nand': 4,\n",
      "          'seen': 4,\n",
      "          'even': 4,\n",
      "          'vincent': 4,\n",
      "          'parents': 4,\n",
      "          'thurman': 4,\n",
      "          'best': 4,\n",
      "          'aliens': 3,\n",
      "          'engineering': 3,\n",
      "          'due': 3,\n",
      "          'however': 3,\n",
      "          'audience': 3,\n",
      "          'ngattaca': 3,\n",
      "          'way': 3,\n",
      "          'jerome': 3,\n",
      "          'morrow': 3,\n",
      "          'nhowever': 3,\n",
      "          'result': 3,\n",
      "          'flaws': 3,\n",
      "          'valid': 3,\n",
      "          'get': 3,\n",
      "          'past': 3,\n",
      "          'intelligent': 3,\n",
      "          'flat': 3,\n",
      "          'like': 3,\n",
      "          'performance': 3,\n",
      "          'nice': 3,\n",
      "          'general': 2,\n",
      "          'audiences': 2,\n",
      "          'thrills': 2,\n",
      "          'alien': 2,\n",
      "          'characters': 2,\n",
      "          'etc': 2,\n",
      "          'contact': 2,\n",
      "          'hollywood': 2,\n",
      "          'never': 2,\n",
      "          'look': 2,\n",
      "          '2001': 2,\n",
      "          'space': 2,\n",
      "          'made': 2,\n",
      "          'race': 2,\n",
      "          'technology': 2,\n",
      "          'comes': 2,\n",
      "          'nmost': 2,\n",
      "          'movie': 2,\n",
      "          'niccol': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'may': 2,\n",
      "          'asking': 2,\n",
      "          'people': 2,\n",
      "          'realize': 2,\n",
      "          'ndespite': 2,\n",
      "          'tell': 2,\n",
      "          'nniccols': 2,\n",
      "          'day': 2,\n",
      "          'produced': 2,\n",
      "          'realistic': 2,\n",
      "          'begins': 2,\n",
      "          'done': 2,\n",
      "          'child': 2,\n",
      "          'birth': 2,\n",
      "          'hawke': 2,\n",
      "          'program': 2,\n",
      "          'directors': 2,\n",
      "          'freeman': 2,\n",
      "          'nvincent': 2,\n",
      "          'world': 2,\n",
      "          'love': 2,\n",
      "          'several': 2,\n",
      "          'heart': 2,\n",
      "          'poor': 2,\n",
      "          'nas': 2,\n",
      "          'bring': 2,\n",
      "          'dean': 2,\n",
      "          'dream': 2,\n",
      "          'around': 2,\n",
      "          'society': 2,\n",
      "          'vincents': 2,\n",
      "          'law': 2,\n",
      "          'gattacas': 2,\n",
      "          'provide': 2,\n",
      "          'dreams': 2,\n",
      "          'left': 2,\n",
      "          'scene': 2,\n",
      "          'uma': 2,\n",
      "          'two': 2,\n",
      "          'thing': 2,\n",
      "          'scenes': 2,\n",
      "          'sets': 2,\n",
      "          'futuristic': 2,\n",
      "          'far': 2,\n",
      "          'brings': 2,\n",
      "          'plot': 2,\n",
      "          'credibility': 2,\n",
      "          'nif': 2,\n",
      "          'rid': 2,\n",
      "          'lot': 2,\n",
      "          'job': 2,\n",
      "          'behind': 2,\n",
      "          'giving': 2,\n",
      "          'slightly': 2,\n",
      "          'provides': 2,\n",
      "          'also': 2,\n",
      "          'berkeley': 2,\n",
      "          'turned': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'much': 2,\n",
      "          'release': 1,\n",
      "          'began': 1,\n",
      "          'wonder': 1,\n",
      "          'deal': 1,\n",
      "          'destructive': 1,\n",
      "          'nhollywood': 1,\n",
      "          'given': 1,\n",
      "          'plenty': 1,\n",
      "          'usually': 1,\n",
      "          'lacking': 1,\n",
      "          'acting': 1,\n",
      "          'exception': 1,\n",
      "          'reason': 1,\n",
      "          'taken': 1,\n",
      "          'earth': 1,\n",
      "          'closest': 1,\n",
      "          'anyway': 1,\n",
      "          'odyssey': 1,\n",
      "          'mankind': 1,\n",
      "          'dwarfed': 1,\n",
      "          'created': 1,\n",
      "          'nnow': 1,\n",
      "          'another': 1,\n",
      "          'reigning': 1,\n",
      "          'supreme': 1,\n",
      "          'except': 1,\n",
      "          'planet': 1,\n",
      "          'difference': 1,\n",
      "          'simple': 1,\n",
      "          'frightening': 1,\n",
      "          'concepts': 1,\n",
      "          'based': 1,\n",
      "          'recent': 1,\n",
      "          'discoveries': 1,\n",
      "          'nusing': 1,\n",
      "          'premise': 1,\n",
      "          'writerdirector': 1,\n",
      "          'andrew': 1,\n",
      "          'creates': 1,\n",
      "          'genuine': 1,\n",
      "          'suspense': 1,\n",
      "          'lack': 1,\n",
      "          'advertising': 1,\n",
      "          'fear': 1,\n",
      "          'fair': 1,\n",
      "          'horribly': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nsince': 1,\n",
      "          'seeing': 1,\n",
      "          'nlately': 1,\n",
      "          'heard': 1,\n",
      "          'dont': 1,\n",
      "          'fact': 1,\n",
      "          'surely': 1,\n",
      "          'hope': 1,\n",
      "          'members': 1,\n",
      "          'friends': 1,\n",
      "          'deserves': 1,\n",
      "          'independence': 1,\n",
      "          'smarter': 1,\n",
      "          'better': 1,\n",
      "          '21st': 1,\n",
      "          'century': 1,\n",
      "          'nprocreating': 1,\n",
      "          'petri': 1,\n",
      "          'dish': 1,\n",
      "          'normal': 1,\n",
      "          'nnatural': 1,\n",
      "          'considered': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'nwe': 1,\n",
      "          'introduced': 1,\n",
      "          'ethan': 1,\n",
      "          'employee': 1,\n",
      "          'none': 1,\n",
      "          'murdered': 1,\n",
      "          'main': 1,\n",
      "          'suspect': 1,\n",
      "          'problem': 1,\n",
      "          'born': 1,\n",
      "          'natural': 1,\n",
      "          'decided': 1,\n",
      "          'bringing': 1,\n",
      "          'first': 1,\n",
      "          'tests': 1,\n",
      "          'doctors': 1,\n",
      "          '99': 1,\n",
      "          'chance': 1,\n",
      "          'weak': 1,\n",
      "          'eye': 1,\n",
      "          'sight': 1,\n",
      "          'short': 1,\n",
      "          'life': 1,\n",
      "          'span': 1,\n",
      "          'decide': 1,\n",
      "          'next': 1,\n",
      "          'baby': 1,\n",
      "          'via': 1,\n",
      "          'genetics': 1,\n",
      "          'nanton': 1,\n",
      "          'loren': 1,\n",
      "          'without': 1,\n",
      "          'competition': 1,\n",
      "          'brothers': 1,\n",
      "          'spawns': 1,\n",
      "          'fly': 1,\n",
      "          'soloflight': 1,\n",
      "          'titan': 1,\n",
      "          '14th': 1,\n",
      "          'moon': 1,\n",
      "          'saturn': 1,\n",
      "          'condition': 1,\n",
      "          'forces': 1,\n",
      "          'menial': 1,\n",
      "          'labor': 1,\n",
      "          'company': 1,\n",
      "          'nlabeled': 1,\n",
      "          'invalid': 1,\n",
      "          'seems': 1,\n",
      "          'impossible': 1,\n",
      "          'meets': 1,\n",
      "          'blackmarket': 1,\n",
      "          'dna': 1,\n",
      "          'specialist': 1,\n",
      "          'german': 1,\n",
      "          'tony': 1,\n",
      "          'shalhoub': 1,\n",
      "          'ngerman': 1,\n",
      "          'introduces': 1,\n",
      "          'paralized': 1,\n",
      "          'waste': 1,\n",
      "          'automobile': 1,\n",
      "          'accident': 1,\n",
      "          'njerome': 1,\n",
      "          'jude': 1,\n",
      "          'agrees': 1,\n",
      "          'give': 1,\n",
      "          'proper': 1,\n",
      "          'identification': 1,\n",
      "          'tools': 1,\n",
      "          'urine': 1,\n",
      "          'blood': 1,\n",
      "          'skin': 1,\n",
      "          'hair': 1,\n",
      "          'samples': 1,\n",
      "          'need': 1,\n",
      "          'tight': 1,\n",
      "          'security': 1,\n",
      "          'nin': 1,\n",
      "          'exchange': 1,\n",
      "          'rent': 1,\n",
      "          'money': 1,\n",
      "          'friendship': 1,\n",
      "          'nafter': 1,\n",
      "          'murder': 1,\n",
      "          'put': 1,\n",
      "          'risk': 1,\n",
      "          'eyelashes': 1,\n",
      "          'crime': 1,\n",
      "          'nirene': 1,\n",
      "          'cassini': 1,\n",
      "          'genetically': 1,\n",
      "          'flawed': 1,\n",
      "          'working': 1,\n",
      "          'fall': 1,\n",
      "          'vincentjerome': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'nonly': 1,\n",
      "          'come': 1,\n",
      "          'years': 1,\n",
      "          'arrival': 1,\n",
      "          'rank': 1,\n",
      "          'among': 1,\n",
      "          'whenever': 1,\n",
      "          'special': 1,\n",
      "          'effectsladen': 1,\n",
      "          'normally': 1,\n",
      "          'gets': 1,\n",
      "          'buried': 1,\n",
      "          'second': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'jan': 1,\n",
      "          'roelfs': 1,\n",
      "          'orange': 1,\n",
      "          'glow': 1,\n",
      "          'impressive': 1,\n",
      "          'deserve': 1,\n",
      "          'credit': 1,\n",
      "          'creating': 1,\n",
      "          'sense': 1,\n",
      "          'alienate': 1,\n",
      "          'viewers': 1,\n",
      "          'designs': 1,\n",
      "          'buildings': 1,\n",
      "          'arent': 1,\n",
      "          'future': 1,\n",
      "          'nthis': 1,\n",
      "          'becomes': 1,\n",
      "          'possible': 1,\n",
      "          'every': 1,\n",
      "          'passing': 1,\n",
      "          'average': 1,\n",
      "          'scifithriller': 1,\n",
      "          'nat': 1,\n",
      "          'develops': 1,\n",
      "          'theme': 1,\n",
      "          'overpowering': 1,\n",
      "          'always': 1,\n",
      "          'present': 1,\n",
      "          'nperhaps': 1,\n",
      "          'warning': 1,\n",
      "          'changes': 1,\n",
      "          'tampering': 1,\n",
      "          'could': 1,\n",
      "          'nwould': 1,\n",
      "          'become': 1,\n",
      "          'bunch': 1,\n",
      "          'soulless': 1,\n",
      "          'zombies': 1,\n",
      "          'nmaybe': 1,\n",
      "          'human': 1,\n",
      "          'nature': 1,\n",
      "          'mankinds': 1,\n",
      "          'script': 1,\n",
      "          'handles': 1,\n",
      "          'questions': 1,\n",
      "          'extremely': 1,\n",
      "          'incredibly': 1,\n",
      "          'smart': 1,\n",
      "          'thriller': 1,\n",
      "          'set': 1,\n",
      "          'dramatic': 1,\n",
      "          'vice': 1,\n",
      "          'versa': 1,\n",
      "          'power': 1,\n",
      "          'actors': 1,\n",
      "          'nwhile': 1,\n",
      "          'sound': 1,\n",
      "          'niccols': 1,\n",
      "          'part': 1,\n",
      "          'actually': 1,\n",
      "          'enhances': 1,\n",
      "          'meaning': 1,\n",
      "          'nethan': 1,\n",
      "          'developed': 1,\n",
      "          'handsome': 1,\n",
      "          'adult': 1,\n",
      "          'actor': 1,\n",
      "          'lifetime': 1,\n",
      "          'nhis': 1,\n",
      "          'curiosity': 1,\n",
      "          'motivation': 1,\n",
      "          'pushes': 1,\n",
      "          'discouraging': 1,\n",
      "          'remarks': 1,\n",
      "          'peers': 1,\n",
      "          'numa': 1,\n",
      "          'nher': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'isnt': 1,\n",
      "          'depth': 1,\n",
      "          'njude': 1,\n",
      "          'complex': 1,\n",
      "          'disturbingly': 1,\n",
      "          'nhe': 1,\n",
      "          'touches': 1,\n",
      "          'final': 1,\n",
      "          'touching': 1,\n",
      "          'heartwrenching': 1,\n",
      "          'nloren': 1,\n",
      "          'welldeveloped': 1,\n",
      "          'ndean': 1,\n",
      "          'responsible': 1,\n",
      "          'suspenseful': 1,\n",
      "          'nalan': 1,\n",
      "          'arkin': 1,\n",
      "          'portrays': 1,\n",
      "          'detectives': 1,\n",
      "          'little': 1,\n",
      "          'less': 1,\n",
      "          'excitement': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'grosse': 1,\n",
      "          'pointe': 1,\n",
      "          'blank': 1,\n",
      "          'nstill': 1,\n",
      "          'ngore': 1,\n",
      "          'vidal': 1,\n",
      "          'xander': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'heartfelt': 1,\n",
      "          'discussion': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'rated': 1,\n",
      "          'pg13': 1,\n",
      "          'brief': 1,\n",
      "          'violent': 1,\n",
      "          'images': 1,\n",
      "          'language': 1,\n",
      "          'sexuality': 1,\n",
      "          'nudity': 1,\n",
      "          'somber': 1,\n",
      "          'desolate': 1,\n",
      "          'mood': 1,\n",
      "          'entire': 1,\n",
      "          'wasnt': 1,\n",
      "          'exactly': 1,\n",
      "          'prepared': 1,\n",
      "          'ending': 1,\n",
      "          'feeling': 1,\n",
      "          'empty': 1,\n",
      "          'nit': 1,\n",
      "          'realized': 1,\n",
      "          'everything': 1,\n",
      "          'typical': 1,\n",
      "          'would': 1,\n",
      "          'ended': 1,\n",
      "          'differently': 1,\n",
      "          'mindless': 1,\n",
      "          'doesnt': 1,\n",
      "          'talk': 1,\n",
      "          'especially': 1,\n",
      "          'ironic': 1,\n",
      "          'title': 1,\n",
      "          'consists': 1,\n",
      "          'four': 1,\n",
      "          'letters': 1,\n",
      "          'make': 1,\n",
      "          'coding': 1,\n",
      "          'g': 1,\n",
      "          'c': 1,\n",
      "          'ninstead': 1,\n",
      "          'needed': 1,\n",
      "          'entertainment': 1,\n",
      "          'us': 1,\n",
      "          'fanatics': 1,\n",
      "          'want': 1,\n",
      "          'morals': 1,\n",
      "          'nwhatever': 1,\n",
      "          'happened': 1,\n",
      "          'lesson': 1,\n",
      "          'entertaining': 1,\n",
      "          'nhopefully': 1,\n",
      "          'writers': 1,\n",
      "          'learn': 1,\n",
      "          'hopefully': 1,\n",
      "          'np': 1,\n",
      "          'personal': 1,\n",
      "          'note': 1,\n",
      "          'p': 1,\n",
      "          'j': 1,\n",
      "          'gladnick': 1,\n",
      "          'dare': 1,\n",
      "          'call': 1,\n",
      "          'worst': 1,\n",
      "          'year': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'begin': 1,\n",
      "          'image': 1,\n",
      "          'nthat': 1,\n",
      "          'frightens': 1,\n",
      "          'beyond': 1,\n",
      "          'anything': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'truman': 8,\n",
      "          'nthe': 5,\n",
      "          'would': 4,\n",
      "          'carrey': 4,\n",
      "          'best': 3,\n",
      "          'nand': 3,\n",
      "          'nit': 3,\n",
      "          'years': 3,\n",
      "          'character': 3,\n",
      "          'camera': 3,\n",
      "          'role': 3,\n",
      "          'trumans': 3,\n",
      "          'little': 3,\n",
      "          'vehicle': 2,\n",
      "          'jim': 2,\n",
      "          'niccol': 2,\n",
      "          'script': 2,\n",
      "          'ten': 2,\n",
      "          'existence': 2,\n",
      "          'audience': 2,\n",
      "          'weir': 2,\n",
      "          'task': 2,\n",
      "          'create': 2,\n",
      "          'universe': 2,\n",
      "          'stroke': 2,\n",
      "          'goofy': 2,\n",
      "          'academy': 2,\n",
      "          'well': 2,\n",
      "          'one': 2,\n",
      "          'carreys': 2,\n",
      "          'pivotal': 2,\n",
      "          'christof': 2,\n",
      "          'work': 2,\n",
      "          'could': 2,\n",
      "          'gigantic': 2,\n",
      "          'dome': 2,\n",
      "          'reason': 2,\n",
      "          'effortlessly': 2,\n",
      "          'must': 1,\n",
      "          'sort': 1,\n",
      "          'warped': 1,\n",
      "          'critical': 1,\n",
      "          'nightmare': 1,\n",
      "          'movie': 1,\n",
      "          'year': 1,\n",
      "          'summer': 1,\n",
      "          'n_the': 1,\n",
      "          'show_': 1,\n",
      "          'perplexing': 1,\n",
      "          'crazed': 1,\n",
      "          'paranoid': 1,\n",
      "          'ribtickling': 1,\n",
      "          'morality': 1,\n",
      "          'play': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'since': 1,\n",
      "          'idontknowwhen': 1,\n",
      "          'ndont': 1,\n",
      "          'credit': 1,\n",
      "          'starts': 1,\n",
      "          'andrew': 1,\n",
      "          'gattaca': 1,\n",
      "          'created': 1,\n",
      "          'ago': 1,\n",
      "          'story': 1,\n",
      "          'replete': 1,\n",
      "          'sublte': 1,\n",
      "          'religious': 1,\n",
      "          'philisophical': 1,\n",
      "          'undertones': 1,\n",
      "          'man': 1,\n",
      "          'discovers': 1,\n",
      "          'every': 1,\n",
      "          'day': 1,\n",
      "          'televised': 1,\n",
      "          'mass': 1,\n",
      "          'n': 1,\n",
      "          'ironically': 1,\n",
      "          'within': 1,\n",
      "          'past': 1,\n",
      "          'realitybased': 1,\n",
      "          'television': 1,\n",
      "          'become': 1,\n",
      "          'predominant': 1,\n",
      "          'fixture': 1,\n",
      "          'culture': 1,\n",
      "          'nwho': 1,\n",
      "          'knew': 1,\n",
      "          'noneupping': 1,\n",
      "          'unlikely': 1,\n",
      "          'candidatedirector': 1,\n",
      "          'peter': 1,\n",
      "          'took': 1,\n",
      "          'helm': 1,\n",
      "          'things': 1,\n",
      "          'fell': 1,\n",
      "          'place': 1,\n",
      "          'nweir': 1,\n",
      "          'nearly': 1,\n",
      "          'impossible': 1,\n",
      "          'unimitible': 1,\n",
      "          'tone': 1,\n",
      "          'deftly': 1,\n",
      "          'mixing': 1,\n",
      "          'capra': 1,\n",
      "          'kafka': 1,\n",
      "          'throwing': 1,\n",
      "          'george': 1,\n",
      "          'bailey': 1,\n",
      "          'inhabited': 1,\n",
      "          'rod': 1,\n",
      "          'serling': 1,\n",
      "          'weirs': 1,\n",
      "          'first': 1,\n",
      "          'genius': 1,\n",
      "          'seahaven': 1,\n",
      "          'suburban': 1,\n",
      "          'paradiseprison': 1,\n",
      "          'make': 1,\n",
      "          'spielberg': 1,\n",
      "          'cower': 1,\n",
      "          'shame': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'bystanderextras': 1,\n",
      "          'walk': 1,\n",
      "          'around': 1,\n",
      "          'block': 1,\n",
      "          'incessantly': 1,\n",
      "          'flowers': 1,\n",
      "          'along': 1,\n",
      "          'latest': 1,\n",
      "          'issue': 1,\n",
      "          '_dog': 1,\n",
      "          'fancy_': 1,\n",
      "          'nicest': 1,\n",
      "          'touch': 1,\n",
      "          'plethora': 1,\n",
      "          'subtle': 1,\n",
      "          'hints': 1,\n",
      "          '_not_': 1,\n",
      "          'leave': 1,\n",
      "          'island': 1,\n",
      "          'ncredit': 1,\n",
      "          'second': 1,\n",
      "          'casting': 1,\n",
      "          'ncarrey': 1,\n",
      "          'seems': 1,\n",
      "          'type': 1,\n",
      "          'actor': 1,\n",
      "          'always': 1,\n",
      "          'turn': 1,\n",
      "          'act': 1,\n",
      "          'whenever': 1,\n",
      "          'near': 1,\n",
      "          'nnot': 1,\n",
      "          'nhis': 1,\n",
      "          'performance': 1,\n",
      "          'subverted': 1,\n",
      "          'sometimes': 1,\n",
      "          'wonder': 1,\n",
      "          'ever': 1,\n",
      "          'aware': 1,\n",
      "          'although': 1,\n",
      "          'deserve': 1,\n",
      "          'award': 1,\n",
      "          'nomination': 1,\n",
      "          'rarely': 1,\n",
      "          'honors': 1,\n",
      "          'comedians': 1,\n",
      "          'excepting': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'stretches': 1,\n",
      "          'enough': 1,\n",
      "          'alter': 1,\n",
      "          'hypersilly': 1,\n",
      "          'image': 1,\n",
      "          'considerably': 1,\n",
      "          'nplaying': 1,\n",
      "          'cameras': 1,\n",
      "          'constantly': 1,\n",
      "          'invading': 1,\n",
      "          'intimate': 1,\n",
      "          'moments': 1,\n",
      "          'turns': 1,\n",
      "          'quite': 1,\n",
      "          'life': 1,\n",
      "          'nno': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'nbetter': 1,\n",
      "          'smaller': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'mixes': 1,\n",
      "          'right': 1,\n",
      "          'amount': 1,\n",
      "          'apollo': 1,\n",
      "          '13': 1,\n",
      "          'problem': 1,\n",
      "          'people': 1,\n",
      "          'dustin': 1,\n",
      "          'hoffmans': 1,\n",
      "          'megaglomaniac': 1,\n",
      "          'producer': 1,\n",
      "          '_wag': 1,\n",
      "          'dog_': 1,\n",
      "          'slightly': 1,\n",
      "          'svengalian': 1,\n",
      "          'clear': 1,\n",
      "          'torn': 1,\n",
      "          'nielson': 1,\n",
      "          'ratings': 1,\n",
      "          'nyes': 1,\n",
      "          'misguided': 1,\n",
      "          'way': 1,\n",
      "          'loves': 1,\n",
      "          'father': 1,\n",
      "          'son': 1,\n",
      "          'provided': 1,\n",
      "          'provide': 1,\n",
      "          'nhe': 1,\n",
      "          'thinks': 1,\n",
      "          'nrounding': 1,\n",
      "          'cast': 1,\n",
      "          'natascha': 1,\n",
      "          'mcelhone': 1,\n",
      "          'mrs': 1,\n",
      "          'ndalloway': 1,\n",
      "          'true': 1,\n",
      "          'forbidden': 1,\n",
      "          'love': 1,\n",
      "          'sylvia': 1,\n",
      "          'effective': 1,\n",
      "          'another': 1,\n",
      "          'small': 1,\n",
      "          'nlaura': 1,\n",
      "          'linney': 1,\n",
      "          'congo': 1,\n",
      "          'noah': 1,\n",
      "          'emmerich': 1,\n",
      "          'copland': 1,\n",
      "          'unfortunate': 1,\n",
      "          'playing': 1,\n",
      "          'wife': 1,\n",
      "          'friend': 1,\n",
      "          'sitcomish': 1,\n",
      "          'dialogue': 1,\n",
      "          'allow': 1,\n",
      "          'room': 1,\n",
      "          'authentic': 1,\n",
      "          'development': 1,\n",
      "          'exception': 1,\n",
      "          'beginning': 1,\n",
      "          'speak': 1,\n",
      "          'wholeheartedly': 1,\n",
      "          'believing': 1,\n",
      "          'participation': 1,\n",
      "          'truly': 1,\n",
      "          'good': 1,\n",
      "          'society': 1,\n",
      "          'general': 1,\n",
      "          'nthere': 1,\n",
      "          'problems': 1,\n",
      "          'nare': 1,\n",
      "          'assume': 1,\n",
      "          'toddler': 1,\n",
      "          'recollection': 1,\n",
      "          'hearing': 1,\n",
      "          'construction': 1,\n",
      "          'formative': 1,\n",
      "          'nwas': 1,\n",
      "          'scene': 1,\n",
      "          'rained': 1,\n",
      "          'solely': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'never': 1,\n",
      "          'nhow': 1,\n",
      "          'hire': 1,\n",
      "          'hundreds': 1,\n",
      "          'extras': 1,\n",
      "          'none': 1,\n",
      "          'drive': 1,\n",
      "          'boat': 1,\n",
      "          'yet': 1,\n",
      "          'fearful': 1,\n",
      "          'water': 1,\n",
      "          'helming': 1,\n",
      "          'sailboat': 1,\n",
      "          'couldnt': 1,\n",
      "          'turned': 1,\n",
      "          'wind': 1,\n",
      "          'strand': 1,\n",
      "          'sea': 1,\n",
      "          'nthese': 1,\n",
      "          'contrivances': 1,\n",
      "          'however': 1,\n",
      "          'hold': 1,\n",
      "          'candle': 1,\n",
      "          'overall': 1,\n",
      "          'effect': 1,\n",
      "          'gets': 1,\n",
      "          'feeling': 1,\n",
      "          'watching': 1,\n",
      "          'actual': 1,\n",
      "          'show': 1,\n",
      "          'drawn': 1,\n",
      "          'mundane': 1,\n",
      "          'final': 1,\n",
      "          'result': 1,\n",
      "          'combines': 1,\n",
      "          'emotional': 1,\n",
      "          'happy': 1,\n",
      "          'ending': 1,\n",
      "          'mainstream': 1,\n",
      "          'picture': 1,\n",
      "          'gnawing': 1,\n",
      "          'discomfort': 1,\n",
      "          'hits': 1,\n",
      "          'square': 1,\n",
      "          'gut': 1,\n",
      "          'nupon': 1,\n",
      "          'leaving': 1,\n",
      "          'theater': 1,\n",
      "          'looking': 1,\n",
      "          'sky': 1,\n",
      "          'wondering': 1,\n",
      "          'nothing': 1,\n",
      "          'njust': 1,\n",
      "          'checking': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'shark': 5,\n",
      "          'jaws': 5,\n",
      "          'film': 3,\n",
      "          'within': 3,\n",
      "          'water': 3,\n",
      "          'films': 2,\n",
      "          'nthe': 2,\n",
      "          'genre': 2,\n",
      "          'like': 2,\n",
      "          'cgi': 2,\n",
      "          'blue': 2,\n",
      "          'sea': 2,\n",
      "          'big': 2,\n",
      "          'research': 2,\n",
      "          'extraction': 2,\n",
      "          'hormone': 2,\n",
      "          'substance': 2,\n",
      "          'get': 2,\n",
      "          'time': 2,\n",
      "          'days': 2,\n",
      "          'action': 2,\n",
      "          'role': 2,\n",
      "          'cook': 2,\n",
      "          'offer': 2,\n",
      "          'thrills': 2,\n",
      "          'lets': 1,\n",
      "          'first': 1,\n",
      "          'look': 1,\n",
      "          'history': 1,\n",
      "          'nthere': 1,\n",
      "          'unforgettable': 1,\n",
      "          'exciting': 1,\n",
      "          '2': 1,\n",
      "          'rather': 1,\n",
      "          'flaky': 1,\n",
      "          '3d': 1,\n",
      "          'sometime': 1,\n",
      "          'late': 1,\n",
      "          '90s': 1,\n",
      "          'another': 1,\n",
      "          'cant': 1,\n",
      "          'seem': 1,\n",
      "          'recall': 1,\n",
      "          'son': 1,\n",
      "          'returning': 1,\n",
      "          'wreak': 1,\n",
      "          'revenge': 1,\n",
      "          'something': 1,\n",
      "          'nnow': 1,\n",
      "          'magic': 1,\n",
      "          'one': 1,\n",
      "          'simply': 1,\n",
      "          'enough': 1,\n",
      "          'deep': 1,\n",
      "          '3': 1,\n",
      "          'mean': 1,\n",
      "          'really': 1,\n",
      "          'smart': 1,\n",
      "          'ones': 1,\n",
      "          'nrussell': 1,\n",
      "          'frankiln': 1,\n",
      "          'jackson': 1,\n",
      "          'visits': 1,\n",
      "          'aquatica': 1,\n",
      "          'seabound': 1,\n",
      "          'center': 1,\n",
      "          'conducted': 1,\n",
      "          'found': 1,\n",
      "          'uniquely': 1,\n",
      "          'brain': 1,\n",
      "          'cure': 1,\n",
      "          'reverse': 1,\n",
      "          'effects': 1,\n",
      "          'alzheimers': 1,\n",
      "          'disease': 1,\n",
      "          'small': 1,\n",
      "          'quantity': 1,\n",
      "          'lead': 1,\n",
      "          'researcher': 1,\n",
      "          'dr': 1,\n",
      "          'susan': 1,\n",
      "          'macalaester': 1,\n",
      "          'genetically': 1,\n",
      "          'alters': 1,\n",
      "          'dna': 1,\n",
      "          'grows': 1,\n",
      "          'twice': 1,\n",
      "          'size': 1,\n",
      "          'brains': 1,\n",
      "          'humans': 1,\n",
      "          'naturally': 1,\n",
      "          'producing': 1,\n",
      "          'much': 1,\n",
      "          'treasured': 1,\n",
      "          'hormones': 1,\n",
      "          'nas': 1,\n",
      "          'sure': 1,\n",
      "          'sun': 1,\n",
      "          'sets': 1,\n",
      "          'west': 1,\n",
      "          'breaks': 1,\n",
      "          'lose': 1,\n",
      "          'wreaks': 1,\n",
      "          'havoc': 1,\n",
      "          'facility': 1,\n",
      "          'procedure': 1,\n",
      "          'nwith': 1,\n",
      "          'flexibility': 1,\n",
      "          'offered': 1,\n",
      "          'sharks': 1,\n",
      "          'fulllength': 1,\n",
      "          'screen': 1,\n",
      "          'predecessors': 1,\n",
      "          'remotecontrolled': 1,\n",
      "          'rubber': 1,\n",
      "          'suit': 1,\n",
      "          'ngone': 1,\n",
      "          'people': 1,\n",
      "          'getting': 1,\n",
      "          'pulled': 1,\n",
      "          'turning': 1,\n",
      "          'red': 1,\n",
      "          'right': 1,\n",
      "          'nthis': 1,\n",
      "          'see': 1,\n",
      "          'entire': 1,\n",
      "          'gobbling': 1,\n",
      "          'floating': 1,\n",
      "          'limbs': 1,\n",
      "          'nsoso': 1,\n",
      "          'acting': 1,\n",
      "          'expected': 1,\n",
      "          'average': 1,\n",
      "          'njackson': 1,\n",
      "          'fresh': 1,\n",
      "          'jedi': 1,\n",
      "          'master': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'takes': 1,\n",
      "          'darkside': 1,\n",
      "          'force': 1,\n",
      "          'different': 1,\n",
      "          'kind': 1,\n",
      "          'fits': 1,\n",
      "          'well': 1,\n",
      "          'wisecracking': 1,\n",
      "          'lines': 1,\n",
      "          'nll': 1,\n",
      "          'cool': 1,\n",
      "          'js': 1,\n",
      "          'preacher': 1,\n",
      "          'steven': 1,\n",
      "          'seagals': 1,\n",
      "          'could': 1,\n",
      "          'dream': 1,\n",
      "          'achieve': 1,\n",
      "          'two': 1,\n",
      "          'siege': 1,\n",
      "          'ndeep': 1,\n",
      "          'psychological': 1,\n",
      "          'nit': 1,\n",
      "          'however': 1,\n",
      "          'prove': 1,\n",
      "          'refreshing': 1,\n",
      "          'followup': 1,\n",
      "          'full': 1,\n",
      "          'visual': 1,\n",
      "          'suspense': 1,\n",
      "          'believe': 1,\n",
      "          'humour': 1,\n",
      "          'nits': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'nnothing': 1,\n",
      "          'stressful': 1,\n",
      "          'pure': 1,\n",
      "          'entertainment': 1,\n",
      "          'nrenny': 1,\n",
      "          'harlin': 1,\n",
      "          'forgiven': 1,\n",
      "          'making': 1,\n",
      "          'cutthroat': 1,\n",
      "          'island': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'nhe': 5,\n",
      "          'world': 4,\n",
      "          'evil': 3,\n",
      "          'kingpin': 3,\n",
      "          'seen': 3,\n",
      "          'creates': 3,\n",
      "          'like': 3,\n",
      "          'best': 2,\n",
      "          'good': 2,\n",
      "          'school': 2,\n",
      "          'recent': 2,\n",
      "          'makes': 2,\n",
      "          'lair': 2,\n",
      "          'sewer': 2,\n",
      "          'nit': 2,\n",
      "          'images': 2,\n",
      "          'nthis': 2,\n",
      "          'violence': 2,\n",
      "          'hear': 2,\n",
      "          'see': 2,\n",
      "          'great': 2,\n",
      "          'deal': 2,\n",
      "          'scale': 2,\n",
      "          '4': 2,\n",
      "          'british': 1,\n",
      "          'gangster': 1,\n",
      "          'since': 1,\n",
      "          'long': 1,\n",
      "          'friday': 1,\n",
      "          'njon': 1,\n",
      "          'bennet': 1,\n",
      "          'played': 1,\n",
      "          'andrew': 1,\n",
      "          'howard': 1,\n",
      "          'extremely': 1,\n",
      "          'assassin': 1,\n",
      "          'nas': 1,\n",
      "          'probably': 1,\n",
      "          'man': 1,\n",
      "          'worry': 1,\n",
      "          'become': 1,\n",
      "          'unquestioning': 1,\n",
      "          'weapon': 1,\n",
      "          'employ': 1,\n",
      "          'david': 1,\n",
      "          'calder': 1,\n",
      "          'far': 1,\n",
      "          'nbut': 1,\n",
      "          'even': 1,\n",
      "          'assassins': 1,\n",
      "          'innocent': 1,\n",
      "          'pasts': 1,\n",
      "          'runs': 1,\n",
      "          'old': 1,\n",
      "          'days': 1,\n",
      "          'married': 1,\n",
      "          'mutual': 1,\n",
      "          'girl': 1,\n",
      "          'friend': 1,\n",
      "          'ncomplicating': 1,\n",
      "          'matters': 1,\n",
      "          'live': 1,\n",
      "          'near': 1,\n",
      "          'job': 1,\n",
      "          'young': 1,\n",
      "          'daughter': 1,\n",
      "          'may': 1,\n",
      "          'crime': 1,\n",
      "          'na': 1,\n",
      "          'big': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'depiction': 1,\n",
      "          'ncalder': 1,\n",
      "          'familiar': 1,\n",
      "          'actor': 1,\n",
      "          'britain': 1,\n",
      "          'though': 1,\n",
      "          'frequently': 1,\n",
      "          'us': 1,\n",
      "          'enough': 1,\n",
      "          'nhere': 1,\n",
      "          'one': 1,\n",
      "          'screen': 1,\n",
      "          'villains': 1,\n",
      "          'years': 1,\n",
      "          'seductive': 1,\n",
      "          'repellent': 1,\n",
      "          'beautiful': 1,\n",
      "          'venomous': 1,\n",
      "          'snake': 1,\n",
      "          'nhis': 1,\n",
      "          'underground': 1,\n",
      "          'apparently': 1,\n",
      "          'lives': 1,\n",
      "          'king': 1,\n",
      "          'rats': 1,\n",
      "          'pulls': 1,\n",
      "          'strings': 1,\n",
      "          'control': 1,\n",
      "          'bennets': 1,\n",
      "          'life': 1,\n",
      "          'npaul': 1,\n",
      "          'sarossy': 1,\n",
      "          'directs': 1,\n",
      "          'spent': 1,\n",
      "          'career': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'cinematographer': 1,\n",
      "          'kingpins': 1,\n",
      "          'molded': 1,\n",
      "          'class': 1,\n",
      "          'style': 1,\n",
      "          'darkness': 1,\n",
      "          'nby': 1,\n",
      "          'using': 1,\n",
      "          'semidarkness': 1,\n",
      "          'letting': 1,\n",
      "          'colors': 1,\n",
      "          'deep': 1,\n",
      "          'blue': 1,\n",
      "          'black': 1,\n",
      "          'dominate': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'visually': 1,\n",
      "          'ominous': 1,\n",
      "          'anything': 1,\n",
      "          'nether': 1,\n",
      "          'cold': 1,\n",
      "          'unfriendly': 1,\n",
      "          'nsorossy': 1,\n",
      "          'much': 1,\n",
      "          'physical': 1,\n",
      "          'occurring': 1,\n",
      "          'reach': 1,\n",
      "          'nwe': 1,\n",
      "          'little': 1,\n",
      "          'imagine': 1,\n",
      "          'nthe': 1,\n",
      "          'screenplay': 1,\n",
      "          'peter': 1,\n",
      "          'waddington': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'neil': 1,\n",
      "          'cross': 1,\n",
      "          'sarossys': 1,\n",
      "          'way': 1,\n",
      "          'indelible': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '8': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          'low': 1,\n",
      "          '3': 1,\n",
      "          'n': 1,\n",
      "          'hope': 1,\n",
      "          'use': 1,\n",
      "          'tagline': 1,\n",
      "          'dont': 1,\n",
      "          'mess': 1,\n",
      "          'mr': 1,\n",
      "          'inbetween': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'casablanca': 5,\n",
      "          'film': 4,\n",
      "          'computer': 4,\n",
      "          'body': 4,\n",
      "          'nthe': 4,\n",
      "          'memory': 3,\n",
      "          'fingal': 3,\n",
      "          'nas': 3,\n",
      "          'system': 3,\n",
      "          'fingals': 3,\n",
      "          'peter': 3,\n",
      "          'lorre': 3,\n",
      "          'characters': 3,\n",
      "          'seen': 3,\n",
      "          'quite': 3,\n",
      "          'put': 2,\n",
      "          'overdrawn': 2,\n",
      "          'bank': 2,\n",
      "          'production': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'time': 2,\n",
      "          'julia': 2,\n",
      "          'data': 2,\n",
      "          'processing': 2,\n",
      "          'novicorp': 2,\n",
      "          'imagination': 2,\n",
      "          'hacking': 2,\n",
      "          'happens': 2,\n",
      "          'virtual': 2,\n",
      "          'reality': 2,\n",
      "          'fantasy': 2,\n",
      "          'world': 2,\n",
      "          'way': 2,\n",
      "          'hack': 2,\n",
      "          'bogart': 2,\n",
      "          'appearances': 2,\n",
      "          'best': 2,\n",
      "          'aspects': 2,\n",
      "          'fat': 2,\n",
      "          'man': 2,\n",
      "          'films': 2,\n",
      "          'futuristic': 2,\n",
      "          'today': 2,\n",
      "          'may': 2,\n",
      "          'keeping': 2,\n",
      "          'genre': 2,\n",
      "          'produced': 1,\n",
      "          'robert': 1,\n",
      "          'lantos': 1,\n",
      "          'stephen': 1,\n",
      "          'j': 1,\n",
      "          'roth': 1,\n",
      "          'ndirected': 1,\n",
      "          'douglas': 1,\n",
      "          'williams': 1,\n",
      "          'nmpaa': 1,\n",
      "          'rated': 1,\n",
      "          'though': 1,\n",
      "          'language': 1,\n",
      "          'violence': 1,\n",
      "          'medicalgrossouts': 1,\n",
      "          'sexual': 1,\n",
      "          'content': 1,\n",
      "          'id': 1,\n",
      "          'pg': 1,\n",
      "          'nthough': 1,\n",
      "          'made': 1,\n",
      "          'canada': 1,\n",
      "          'traces': 1,\n",
      "          'roots': 1,\n",
      "          'bbc': 1,\n",
      "          'school': 1,\n",
      "          'nusing': 1,\n",
      "          'part': 1,\n",
      "          'cheap': 1,\n",
      "          'video': 1,\n",
      "          'chyron': 1,\n",
      "          'text': 1,\n",
      "          'wildlife': 1,\n",
      "          'documentary': 1,\n",
      "          'footage': 1,\n",
      "          'sets': 1,\n",
      "          'sometimes': 1,\n",
      "          'obviously': 1,\n",
      "          'faked': 1,\n",
      "          'nonetheless': 1,\n",
      "          'manages': 1,\n",
      "          'tell': 1,\n",
      "          'good': 1,\n",
      "          'enough': 1,\n",
      "          'story': 1,\n",
      "          'youre': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'hooked': 1,\n",
      "          'nraul': 1,\n",
      "          'plays': 1,\n",
      "          'aram': 1,\n",
      "          'drone': 1,\n",
      "          'worker': 1,\n",
      "          'whose': 1,\n",
      "          'active': 1,\n",
      "          'predilection': 1,\n",
      "          'gets': 1,\n",
      "          'trouble': 1,\n",
      "          'authority': 1,\n",
      "          'ncaught': 1,\n",
      "          'watching': 1,\n",
      "          'desk': 1,\n",
      "          'monitor': 1,\n",
      "          'sentenced': 1,\n",
      "          'doppling': 1,\n",
      "          'rehabilitationhe': 1,\n",
      "          'spend': 1,\n",
      "          'fortyeight': 1,\n",
      "          'hours': 1,\n",
      "          'baboon': 1,\n",
      "          'n': 1,\n",
      "          'exactly': 1,\n",
      "          'supposed': 1,\n",
      "          'rehabilitate': 1,\n",
      "          'anybodys': 1,\n",
      "          'guess': 1,\n",
      "          'thanks': 1,\n",
      "          'visiting': 1,\n",
      "          'schoolboys': 1,\n",
      "          'prank': 1,\n",
      "          'temporarily': 1,\n",
      "          'misplaced': 1,\n",
      "          'mind': 1,\n",
      "          'shunted': 1,\n",
      "          'central': 1,\n",
      "          'keep': 1,\n",
      "          'alive': 1,\n",
      "          'find': 1,\n",
      "          'ticks': 1,\n",
      "          'away': 1,\n",
      "          'cube': 1,\n",
      "          'selfdestructs': 1,\n",
      "          'frantic': 1,\n",
      "          'search': 1,\n",
      "          'nfingal': 1,\n",
      "          'first': 1,\n",
      "          'creates': 1,\n",
      "          'finds': 1,\n",
      "          'theres': 1,\n",
      "          'better': 1,\n",
      "          'inside': 1,\n",
      "          'nduring': 1,\n",
      "          'chaos': 1,\n",
      "          'technician': 1,\n",
      "          'apollonia': 1,\n",
      "          'james': 1,\n",
      "          'linda': 1,\n",
      "          'griffiths': 1,\n",
      "          'maintains': 1,\n",
      "          'contact': 1,\n",
      "          'datalink': 1,\n",
      "          'manifesting': 1,\n",
      "          'several': 1,\n",
      "          'different': 1,\n",
      "          'times': 1,\n",
      "          'offer': 1,\n",
      "          'advice': 1,\n",
      "          'warnings': 1,\n",
      "          'nover': 1,\n",
      "          'course': 1,\n",
      "          'interactions': 1,\n",
      "          'interest': 1,\n",
      "          'parts': 1,\n",
      "          'grows': 1,\n",
      "          'budding': 1,\n",
      "          'romance': 1,\n",
      "          'ngiven': 1,\n",
      "          'favorite': 1,\n",
      "          'basis': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'movie': 1,\n",
      "          'homage': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'humphrey': 1,\n",
      "          'make': 1,\n",
      "          'played': 1,\n",
      "          'dual': 1,\n",
      "          'role': 1,\n",
      "          'louis': 1,\n",
      "          'negin': 1,\n",
      "          'respectively': 1,\n",
      "          'bar': 1,\n",
      "          'called': 1,\n",
      "          'place': 1,\n",
      "          'njulias': 1,\n",
      "          'portrayal': 1,\n",
      "          'passable': 1,\n",
      "          'avoids': 1,\n",
      "          'becoming': 1,\n",
      "          'schweethaat': 1,\n",
      "          'spouting': 1,\n",
      "          'parody': 1,\n",
      "          'cartoons': 1,\n",
      "          'nnegins': 1,\n",
      "          'credible': 1,\n",
      "          'easily': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'wasnt': 1,\n",
      "          'real': 1,\n",
      "          'thing': 1,\n",
      "          'two': 1,\n",
      "          'created': 1,\n",
      "          'serve': 1,\n",
      "          'personality': 1,\n",
      "          'driving': 1,\n",
      "          'quest': 1,\n",
      "          'nthose': 1,\n",
      "          'arent': 1,\n",
      "          'sydney': 1,\n",
      "          'greenstreet': 1,\n",
      "          'character': 1,\n",
      "          'also': 1,\n",
      "          'around': 1,\n",
      "          'alternate': 1,\n",
      "          'aspect': 1,\n",
      "          'main': 1,\n",
      "          'villain': 1,\n",
      "          'chairman': 1,\n",
      "          'donald': 1,\n",
      "          'c': 1,\n",
      "          'moore': 1,\n",
      "          'nwhile': 1,\n",
      "          'lost': 1,\n",
      "          'tries': 1,\n",
      "          'stop': 1,\n",
      "          'nless': 1,\n",
      "          'salutory': 1,\n",
      "          'results': 1,\n",
      "          'nits': 1,\n",
      "          'interesting': 1,\n",
      "          'note': 1,\n",
      "          'slang': 1,\n",
      "          'words': 1,\n",
      "          'thrown': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'goldenage': 1,\n",
      "          'tradition': 1,\n",
      "          'nwords': 1,\n",
      "          'like': 1,\n",
      "          'dopple': 1,\n",
      "          'psychist': 1,\n",
      "          'computech': 1,\n",
      "          'cinema': 1,\n",
      "          'reconst': 1,\n",
      "          'apparently': 1,\n",
      "          'common': 1,\n",
      "          'use': 1,\n",
      "          'nand': 1,\n",
      "          'people': 1,\n",
      "          'well': 1,\n",
      "          'laugh': 1,\n",
      "          'fourteen': 1,\n",
      "          'years': 1,\n",
      "          'pasts': 1,\n",
      "          'idea': 1,\n",
      "          'clerks': 1,\n",
      "          'surprisingly': 1,\n",
      "          'perfectly': 1,\n",
      "          'think': 1,\n",
      "          'cyberpunk': 1,\n",
      "          'go': 1,\n",
      "          'staple': 1,\n",
      "          'definitely': 1,\n",
      "          'recommended': 1,\n",
      "          'viewing': 1,\n",
      "          'primitive': 1,\n",
      "          'placing': 1,\n",
      "          'realm': 1,\n",
      "          'lowtomediumbudget': 1,\n",
      "          'television': 1,\n",
      "          'music': 1,\n",
      "          'completely': 1,\n",
      "          'electronicsynthesized': 1,\n",
      "          'fits': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'isnt': 1,\n",
      "          'really': 1,\n",
      "          'nhowever': 1,\n",
      "          'writing': 1,\n",
      "          'makes': 1,\n",
      "          'nthere': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'little': 1,\n",
      "          'injokes': 1,\n",
      "          'one': 1,\n",
      "          'needs': 1,\n",
      "          'appreciate': 1,\n",
      "          'properly': 1,\n",
      "          'nall': 1,\n",
      "          'give': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'life': 6,\n",
      "          'comedy': 5,\n",
      "          'beautiful': 5,\n",
      "          'movie': 4,\n",
      "          'benigni': 4,\n",
      "          'see': 3,\n",
      "          'really': 3,\n",
      "          'guido': 3,\n",
      "          'first': 2,\n",
      "          'headlines': 2,\n",
      "          'statement': 2,\n",
      "          'found': 2,\n",
      "          'fact': 2,\n",
      "          'greatest': 2,\n",
      "          'critics': 2,\n",
      "          'human': 2,\n",
      "          'something': 2,\n",
      "          'holocaust': 2,\n",
      "          'get': 2,\n",
      "          'camp': 2,\n",
      "          'nbut': 2,\n",
      "          'nthe': 2,\n",
      "          'films': 2,\n",
      "          'saying': 2,\n",
      "          'remember': 1,\n",
      "          'hearing': 1,\n",
      "          'appeared': 1,\n",
      "          'cannes': 1,\n",
      "          'year': 1,\n",
      "          'ago': 1,\n",
      "          'picking': 1,\n",
      "          'grand': 1,\n",
      "          'jury': 1,\n",
      "          'prize': 1,\n",
      "          'festival': 1,\n",
      "          'nholocaust': 1,\n",
      "          'receives': 1,\n",
      "          'standing': 1,\n",
      "          'ovation': 1,\n",
      "          'read': 1,\n",
      "          'nintrigued': 1,\n",
      "          'looked': 1,\n",
      "          'information': 1,\n",
      "          'sure': 1,\n",
      "          'enough': 1,\n",
      "          'atrocity': 1,\n",
      "          'last': 1,\n",
      "          'thousand': 1,\n",
      "          'years': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'extremely': 1,\n",
      "          'wellreceived': 1,\n",
      "          'public': 1,\n",
      "          'alike': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'disgusted': 1,\n",
      "          'notion': 1,\n",
      "          'tragedy': 1,\n",
      "          'feel': 1,\n",
      "          'celebrated': 1,\n",
      "          'nonly': 1,\n",
      "          'error': 1,\n",
      "          'ways': 1,\n",
      "          'nafter': 1,\n",
      "          'finally': 1,\n",
      "          'viewing': 1,\n",
      "          'avoiding': 1,\n",
      "          'time': 1,\n",
      "          'became': 1,\n",
      "          'clear': 1,\n",
      "          'proclaimed': 1,\n",
      "          'contrary': 1,\n",
      "          'even': 1,\n",
      "          'depict': 1,\n",
      "          'graphic': 1,\n",
      "          'events': 1,\n",
      "          'took': 1,\n",
      "          'place': 1,\n",
      "          'nazi': 1,\n",
      "          'deathcamps': 1,\n",
      "          'nrather': 1,\n",
      "          'focuses': 1,\n",
      "          'relationship': 1,\n",
      "          'father': 1,\n",
      "          'son': 1,\n",
      "          'trying': 1,\n",
      "          'desperately': 1,\n",
      "          'shield': 1,\n",
      "          'horrors': 1,\n",
      "          'situation': 1,\n",
      "          'nroberto': 1,\n",
      "          'also': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'stars': 1,\n",
      "          'orefice': 1,\n",
      "          'chaplininspired': 1,\n",
      "          'clown': 1,\n",
      "          'round': 1,\n",
      "          'jolly': 1,\n",
      "          'guy': 1,\n",
      "          'opens': 1,\n",
      "          'vying': 1,\n",
      "          'affections': 1,\n",
      "          'attractive': 1,\n",
      "          'school': 1,\n",
      "          'teacher': 1,\n",
      "          'nicoletta': 1,\n",
      "          'braschi': 1,\n",
      "          'real': 1,\n",
      "          'spouse': 1,\n",
      "          'nthrough': 1,\n",
      "          'course': 1,\n",
      "          'hour': 1,\n",
      "          'striving': 1,\n",
      "          'attention': 1,\n",
      "          'princess': 1,\n",
      "          'calls': 1,\n",
      "          'nemploying': 1,\n",
      "          'magic': 1,\n",
      "          'laughter': 1,\n",
      "          'italian': 1,\n",
      "          'comedian': 1,\n",
      "          'wins': 1,\n",
      "          'heart': 1,\n",
      "          'together': 1,\n",
      "          'raise': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'named': 1,\n",
      "          'giosue': 1,\n",
      "          'child': 1,\n",
      "          'actor': 1,\n",
      "          'giorgio': 1,\n",
      "          'cantarini': 1,\n",
      "          'nlife': 1,\n",
      "          'treats': 1,\n",
      "          'well': 1,\n",
      "          'hitlers': 1,\n",
      "          'minions': 1,\n",
      "          'rise': 1,\n",
      "          'power': 1,\n",
      "          'family': 1,\n",
      "          'whisked': 1,\n",
      "          'away': 1,\n",
      "          'german': 1,\n",
      "          'becomes': 1,\n",
      "          'convinced': 1,\n",
      "          'must': 1,\n",
      "          'upholds': 1,\n",
      "          'sons': 1,\n",
      "          'innocence': 1,\n",
      "          'matter': 1,\n",
      "          'sacrifice': 1,\n",
      "          'ngranted': 1,\n",
      "          'contains': 1,\n",
      "          'uproariously': 1,\n",
      "          'funny': 1,\n",
      "          'moments': 1,\n",
      "          'concentration': 1,\n",
      "          'pull': 1,\n",
      "          'hogans': 1,\n",
      "          'heros': 1,\n",
      "          'make': 1,\n",
      "          'light': 1,\n",
      "          'slaughtering': 1,\n",
      "          'six': 1,\n",
      "          'million': 1,\n",
      "          'innocent': 1,\n",
      "          'jews': 1,\n",
      "          'nsomehow': 1,\n",
      "          'achieves': 1,\n",
      "          'hilarity': 1,\n",
      "          'without': 1,\n",
      "          'disrespecting': 1,\n",
      "          'gravely': 1,\n",
      "          'serious': 1,\n",
      "          'subject': 1,\n",
      "          'nso': 1,\n",
      "          'weve': 1,\n",
      "          'established': 1,\n",
      "          'another': 1,\n",
      "          'complete': 1,\n",
      "          'misrepresentation': 1,\n",
      "          'material': 1,\n",
      "          'disturbs': 1,\n",
      "          'despite': 1,\n",
      "          'declarations': 1,\n",
      "          'triumph': 1,\n",
      "          'spirit': 1,\n",
      "          'thing': 1,\n",
      "          'eyes': 1,\n",
      "          'anyway': 1,\n",
      "          'nsome': 1,\n",
      "          'called': 1,\n",
      "          'story': 1,\n",
      "          'affirmation': 1,\n",
      "          'beauty': 1,\n",
      "          'say': 1,\n",
      "          'dark': 1,\n",
      "          'bleak': 1,\n",
      "          'mans': 1,\n",
      "          'capability': 1,\n",
      "          'denial': 1,\n",
      "          'masquerading': 1,\n",
      "          'endearing': 1,\n",
      "          'ending': 1,\n",
      "          'recognized': 1,\n",
      "          'entirely': 1,\n",
      "          'uplifting': 1,\n",
      "          'moment': 1,\n",
      "          'released': 1,\n",
      "          'recently': 1,\n",
      "          'truly': 1,\n",
      "          'discerning': 1,\n",
      "          'upsetting': 1,\n",
      "          'nessentially': 1,\n",
      "          'quite': 1,\n",
      "          'possibly': 1,\n",
      "          'hoax': 1,\n",
      "          'history': 1,\n",
      "          'nhowever': 1,\n",
      "          'denying': 1,\n",
      "          'movies': 1,\n",
      "          'greatness': 1,\n",
      "          'nbelieve': 1,\n",
      "          'fantastic': 1,\n",
      "          'nim': 1,\n",
      "          'think': 1,\n",
      "          'different': 1,\n",
      "          'people': 1,\n",
      "          'interpreting': 1,\n",
      "          'perhaps': 1,\n",
      "          'im': 1,\n",
      "          'reading': 1,\n",
      "          'nmaybe': 1,\n",
      "          'brilliance': 1,\n",
      "          'relies': 1,\n",
      "          'idea': 1,\n",
      "          'viewer': 1,\n",
      "          'interpret': 1,\n",
      "          'meaning': 1,\n",
      "          'way': 1,\n",
      "          'fit': 1,\n",
      "          'nin': 1,\n",
      "          'maybe': 1,\n",
      "          'roberto': 1,\n",
      "          'made': 1,\n",
      "          'sole': 1,\n",
      "          'argument': 1,\n",
      "          'old': 1,\n",
      "          'exactly': 1,\n",
      "          'put': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rocky': 11,\n",
      "          'nthe': 6,\n",
      "          'fight': 5,\n",
      "          'movie': 3,\n",
      "          'showing': 3,\n",
      "          'clubber': 3,\n",
      "          'nrockys': 3,\n",
      "          'seems': 2,\n",
      "          'wins': 2,\n",
      "          'last': 2,\n",
      "          'film': 2,\n",
      "          'well': 2,\n",
      "          'series': 2,\n",
      "          'fighting': 2,\n",
      "          'trainer': 2,\n",
      "          'movies': 1,\n",
      "          'seem': 1,\n",
      "          'release': 1,\n",
      "          'third': 1,\n",
      "          'called': 1,\n",
      "          'trilogy': 1,\n",
      "          'nrocky': 1,\n",
      "          'iii': 1,\n",
      "          'kind': 1,\n",
      "          'fit': 1,\n",
      "          'category': 1,\n",
      "          'manages': 1,\n",
      "          'slightly': 1,\n",
      "          'unique': 1,\n",
      "          'formula': 1,\n",
      "          'loses': 1,\n",
      "          'fightrocky': 1,\n",
      "          'trainsrocky': 1,\n",
      "          'carried': 1,\n",
      "          'letter': 1,\n",
      "          'nalso': 1,\n",
      "          'tradition': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'past': 1,\n",
      "          'used': 1,\n",
      "          'nthis': 1,\n",
      "          'begins': 1,\n",
      "          'clips': 1,\n",
      "          'famous': 1,\n",
      "          'sylvester': 1,\n",
      "          'stallone': 1,\n",
      "          'become': 1,\n",
      "          'neven': 1,\n",
      "          'brief': 1,\n",
      "          'appearance': 1,\n",
      "          'sesame': 1,\n",
      "          'street': 1,\n",
      "          'nthen': 1,\n",
      "          'moves': 1,\n",
      "          'fixed': 1,\n",
      "          'thunderlips': 1,\n",
      "          'hulk': 1,\n",
      "          'hogan': 1,\n",
      "          'na': 1,\n",
      "          'mysterious': 1,\n",
      "          'badass': 1,\n",
      "          'known': 1,\n",
      "          'lang': 1,\n",
      "          'mr': 1,\n",
      "          'trashtalks': 1,\n",
      "          'stupid': 1,\n",
      "          'decision': 1,\n",
      "          'retire': 1,\n",
      "          'boxing': 1,\n",
      "          'pities': 1,\n",
      "          'fool': 1,\n",
      "          'coming': 1,\n",
      "          'outright': 1,\n",
      "          'burgess': 1,\n",
      "          'meredith': 1,\n",
      "          'tells': 1,\n",
      "          'italian': 1,\n",
      "          'stallion': 1,\n",
      "          'doesnt': 1,\n",
      "          'listen': 1,\n",
      "          'nnaturally': 1,\n",
      "          'gets': 1,\n",
      "          'ass': 1,\n",
      "          'kicked': 1,\n",
      "          'nsomewhere': 1,\n",
      "          'along': 1,\n",
      "          'line': 1,\n",
      "          'several': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'longtime': 1,\n",
      "          'dies': 1,\n",
      "          'causing': 1,\n",
      "          'train': 1,\n",
      "          'former': 1,\n",
      "          'opponent': 1,\n",
      "          'apollo': 1,\n",
      "          'creed': 1,\n",
      "          'wife': 1,\n",
      "          'complains': 1,\n",
      "          'husband': 1,\n",
      "          'final': 1,\n",
      "          'ensues': 1,\n",
      "          'nguess': 1,\n",
      "          'winners': 1,\n",
      "          'name': 1,\n",
      "          'rhymes': 1,\n",
      "          'smocky': 1,\n",
      "          'entertaning': 1,\n",
      "          'mainly': 1,\n",
      "          'langs': 1,\n",
      "          'top': 1,\n",
      "          'performance': 1,\n",
      "          'dramatic': 1,\n",
      "          'aspect': 1,\n",
      "          'toned': 1,\n",
      "          'considerably': 1,\n",
      "          'since': 1,\n",
      "          'ii': 1,\n",
      "          'action': 1,\n",
      "          'strong': 1,\n",
      "          'point': 1,\n",
      "          'nwhich': 1,\n",
      "          'good': 1,\n",
      "          'like': 1,\n",
      "          'scenes': 1,\n",
      "          'match': 1,\n",
      "          'quite': 1,\n",
      "          'decent': 1,\n",
      "          'actually': 1,\n",
      "          'nif': 1,\n",
      "          'liked': 1,\n",
      "          'previous': 1,\n",
      "          'films': 1,\n",
      "          'rent': 1,\n",
      "          'one': 1,\n",
      "          'nits': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'fan': 1,\n",
      "          'nbut': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'shouting': 1,\n",
      "          'adrianne': 1,\n",
      "          'none': 1,\n",
      "          'time': 1,\n",
      "          'see': 1,\n",
      "          'something': 1,\n",
      "          'else': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nello': 20,\n",
      "          'film': 13,\n",
      "          'flanders': 12,\n",
      "          'dog': 10,\n",
      "          'aloise': 8,\n",
      "          'one': 8,\n",
      "          'story': 6,\n",
      "          'good': 6,\n",
      "          'really': 6,\n",
      "          'family': 6,\n",
      "          'life': 5,\n",
      "          'time': 5,\n",
      "          'nthis': 5,\n",
      "          'century': 4,\n",
      "          'grandfather': 4,\n",
      "          'also': 4,\n",
      "          'beautiful': 4,\n",
      "          'n': 4,\n",
      "          'patrasche': 4,\n",
      "          'enough': 4,\n",
      "          'kids': 4,\n",
      "          'nbut': 4,\n",
      "          'heart': 4,\n",
      "          'year': 4,\n",
      "          'home': 4,\n",
      "          'films': 4,\n",
      "          'delightful': 4,\n",
      "          'see': 4,\n",
      "          'nthe': 4,\n",
      "          'little': 3,\n",
      "          'boy': 3,\n",
      "          '19th': 3,\n",
      "          'happiness': 3,\n",
      "          'times': 3,\n",
      "          'pay': 3,\n",
      "          'ever': 3,\n",
      "          'seen': 3,\n",
      "          'movie': 3,\n",
      "          'things': 3,\n",
      "          'nellos': 3,\n",
      "          'however': 3,\n",
      "          'nhe': 3,\n",
      "          'nin': 3,\n",
      "          'addition': 3,\n",
      "          'even': 3,\n",
      "          'two': 3,\n",
      "          'mentioned': 3,\n",
      "          'day': 3,\n",
      "          'artist': 3,\n",
      "          'voight': 3,\n",
      "          'save': 3,\n",
      "          'around': 3,\n",
      "          'nwill': 3,\n",
      "          'heartwarming': 3,\n",
      "          'nthere': 3,\n",
      "          'right': 3,\n",
      "          'touching': 3,\n",
      "          'characters': 3,\n",
      "          'makes': 3,\n",
      "          'like': 3,\n",
      "          'big': 3,\n",
      "          'adorable': 2,\n",
      "          'named': 2,\n",
      "          'jehan': 2,\n",
      "          'warden': 2,\n",
      "          'cottage': 2,\n",
      "          'landlord': 2,\n",
      "          'dont': 2,\n",
      "          'rather': 2,\n",
      "          'drawing': 2,\n",
      "          'great': 2,\n",
      "          'nnot': 2,\n",
      "          'make': 2,\n",
      "          'happy': 2,\n",
      "          'best': 2,\n",
      "          'father': 2,\n",
      "          'none': 2,\n",
      "          'mysterious': 2,\n",
      "          'yet': 2,\n",
      "          'michel': 2,\n",
      "          'jon': 2,\n",
      "          'might': 2,\n",
      "          'every': 2,\n",
      "          'contest': 2,\n",
      "          'painting': 2,\n",
      "          'circus': 2,\n",
      "          'scenes': 2,\n",
      "          'gives': 2,\n",
      "          'performers': 2,\n",
      "          'naloises': 2,\n",
      "          'kindly': 2,\n",
      "          'miller': 2,\n",
      "          'william': 2,\n",
      "          'sweet': 2,\n",
      "          'get': 2,\n",
      "          'freezing': 2,\n",
      "          'win': 2,\n",
      "          'sure': 2,\n",
      "          'older': 2,\n",
      "          'ones': 2,\n",
      "          'powerful': 2,\n",
      "          'drama': 2,\n",
      "          'nit': 2,\n",
      "          'feel': 2,\n",
      "          'whole': 2,\n",
      "          'music': 2,\n",
      "          'another': 2,\n",
      "          'james': 2,\n",
      "          'kissner': 2,\n",
      "          'play': 2,\n",
      "          'young': 2,\n",
      "          'stars': 2,\n",
      "          'amount': 2,\n",
      "          'humor': 2,\n",
      "          'character': 2,\n",
      "          'charming': 2,\n",
      "          'us': 2,\n",
      "          'though': 2,\n",
      "          'since': 2,\n",
      "          'stuff': 2,\n",
      "          'kind': 2,\n",
      "          'better': 2,\n",
      "          'reviews': 2,\n",
      "          'critics': 2,\n",
      "          'entertainment': 2,\n",
      "          'bad': 2,\n",
      "          'review': 1,\n",
      "          'trials': 1,\n",
      "          'tribulations': 1,\n",
      "          'nliving': 1,\n",
      "          'jack': 1,\n",
      "          'poverty': 1,\n",
      "          'finds': 1,\n",
      "          'spite': 1,\n",
      "          'difficult': 1,\n",
      "          'renting': 1,\n",
      "          'spare': 1,\n",
      "          'oneroom': 1,\n",
      "          'greedy': 1,\n",
      "          'malevolent': 1,\n",
      "          'owns': 1,\n",
      "          'threatens': 1,\n",
      "          'throw': 1,\n",
      "          'house': 1,\n",
      "          'rent': 1,\n",
      "          'nnello': 1,\n",
      "          'creative': 1,\n",
      "          'talent': 1,\n",
      "          'pictures': 1,\n",
      "          'either': 1,\n",
      "          'real': 1,\n",
      "          'hero': 1,\n",
      "          'peter': 1,\n",
      "          'paul': 1,\n",
      "          'rubens': 1,\n",
      "          'flemish': 1,\n",
      "          'painter': 1,\n",
      "          '17th': 1,\n",
      "          'names': 1,\n",
      "          'heroic': 1,\n",
      "          'rintintin': 1,\n",
      "          'rescues': 1,\n",
      "          'cruel': 1,\n",
      "          'unkind': 1,\n",
      "          'master': 1,\n",
      "          'friend': 1,\n",
      "          'future': 1,\n",
      "          'sweetheart': 1,\n",
      "          'lovely': 1,\n",
      "          'wealthy': 1,\n",
      "          'whose': 1,\n",
      "          'strongly': 1,\n",
      "          'disapproves': 1,\n",
      "          'hanging': 1,\n",
      "          'lowerclass': 1,\n",
      "          'thinks': 1,\n",
      "          'hes': 1,\n",
      "          'would': 1,\n",
      "          'hate': 1,\n",
      "          'idea': 1,\n",
      "          'marrying': 1,\n",
      "          'poor': 1,\n",
      "          'guy': 1,\n",
      "          'married': 1,\n",
      "          'later': 1,\n",
      "          'encounters': 1,\n",
      "          'kindhearted': 1,\n",
      "          'la': 1,\n",
      "          'grande': 1,\n",
      "          'played': 1,\n",
      "          'wonderfully': 1,\n",
      "          'tells': 1,\n",
      "          'keep': 1,\n",
      "          'perhaps': 1,\n",
      "          'land': 1,\n",
      "          'career': 1,\n",
      "          'nand': 1,\n",
      "          'christmas': 1,\n",
      "          'winner': 1,\n",
      "          'getting': 1,\n",
      "          'lot': 1,\n",
      "          'money': 1,\n",
      "          'neager': 1,\n",
      "          'aging': 1,\n",
      "          'dying': 1,\n",
      "          'willingly': 1,\n",
      "          'decides': 1,\n",
      "          'become': 1,\n",
      "          'asking': 1,\n",
      "          'pose': 1,\n",
      "          'night': 1,\n",
      "          'travel': 1,\n",
      "          'fortune': 1,\n",
      "          'told': 1,\n",
      "          'destined': 1,\n",
      "          'nshe': 1,\n",
      "          'ring': 1,\n",
      "          'places': 1,\n",
      "          'aloises': 1,\n",
      "          'hand': 1,\n",
      "          'afterwards': 1,\n",
      "          'rollickingly': 1,\n",
      "          'dancing': 1,\n",
      "          'front': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nunfortunately': 1,\n",
      "          'ladeedah': 1,\n",
      "          'tale': 1,\n",
      "          'finally': 1,\n",
      "          'becomes': 1,\n",
      "          'angry': 1,\n",
      "          'forbids': 1,\n",
      "          'nbad': 1,\n",
      "          'cant': 1,\n",
      "          'although': 1,\n",
      "          'know': 1,\n",
      "          'thats': 1,\n",
      "          'start': 1,\n",
      "          'troubles': 1,\n",
      "          'farm': 1,\n",
      "          'burned': 1,\n",
      "          'wrongfully': 1,\n",
      "          'accused': 1,\n",
      "          'landord': 1,\n",
      "          'starting': 1,\n",
      "          'fire': 1,\n",
      "          'order': 1,\n",
      "          'take': 1,\n",
      "          'revenge': 1,\n",
      "          'forbidden': 1,\n",
      "          'decreases': 1,\n",
      "          'reputation': 1,\n",
      "          'town': 1,\n",
      "          'parents': 1,\n",
      "          'drops': 1,\n",
      "          'nmatters': 1,\n",
      "          'much': 1,\n",
      "          'worse': 1,\n",
      "          'dies': 1,\n",
      "          'funeral': 1,\n",
      "          'nasty': 1,\n",
      "          'exiles': 1,\n",
      "          'paying': 1,\n",
      "          'rental': 1,\n",
      "          'permanetly': 1,\n",
      "          'means': 1,\n",
      "          'starve': 1,\n",
      "          'walk': 1,\n",
      "          'cold': 1,\n",
      "          'wind': 1,\n",
      "          'nworst': 1,\n",
      "          'desperately': 1,\n",
      "          'working': 1,\n",
      "          'portrait': 1,\n",
      "          'princess': 1,\n",
      "          'fails': 1,\n",
      "          'prize': 1,\n",
      "          'festival': 1,\n",
      "          'nnow': 1,\n",
      "          'depressed': 1,\n",
      "          'close': 1,\n",
      "          'death': 1,\n",
      "          'able': 1,\n",
      "          'find': 1,\n",
      "          'fateful': 1,\n",
      "          'trip': 1,\n",
      "          'join': 1,\n",
      "          'mother': 1,\n",
      "          'paradise': 1,\n",
      "          'na': 1,\n",
      "          'entertain': 1,\n",
      "          'ages': 1,\n",
      "          'neven': 1,\n",
      "          'consider': 1,\n",
      "          'sophisticated': 1,\n",
      "          'kiddie': 1,\n",
      "          'fare': 1,\n",
      "          'surprised': 1,\n",
      "          'hear': 1,\n",
      "          'grownups': 1,\n",
      "          'movies': 1,\n",
      "          'ilk': 1,\n",
      "          'falls': 1,\n",
      "          'category': 1,\n",
      "          'mostly': 1,\n",
      "          'overcoming': 1,\n",
      "          'difficulties': 1,\n",
      "          'finding': 1,\n",
      "          'nmove': 1,\n",
      "          'roll': 1,\n",
      "          'old': 1,\n",
      "          'yeller': 1,\n",
      "          'delight': 1,\n",
      "          'cinematography': 1,\n",
      "          'courtesy': 1,\n",
      "          'walther': 1,\n",
      "          'van': 1,\n",
      "          'den': 1,\n",
      "          'ende': 1,\n",
      "          'adds': 1,\n",
      "          'respectably': 1,\n",
      "          'shot': 1,\n",
      "          'richard': 1,\n",
      "          'friedman': 1,\n",
      "          'remarkable': 1,\n",
      "          'evocative': 1,\n",
      "          'poignant': 1,\n",
      "          'score': 1,\n",
      "          'recaptures': 1,\n",
      "          'opening': 1,\n",
      "          'song': 1,\n",
      "          'credits': 1,\n",
      "          'hope': 1,\n",
      "          'soundtrack': 1,\n",
      "          'available': 1,\n",
      "          'theres': 1,\n",
      "          'brief': 1,\n",
      "          'excerpt': 1,\n",
      "          'cheer': 1,\n",
      "          'charlie': 1,\n",
      "          'willy': 1,\n",
      "          'wonka': 1,\n",
      "          'chocolate': 1,\n",
      "          'factory': 1,\n",
      "          'sung': 1,\n",
      "          'scene': 1,\n",
      "          'cast': 1,\n",
      "          'firstrate': 1,\n",
      "          'jesse': 1,\n",
      "          'jeremy': 1,\n",
      "          'endearing': 1,\n",
      "          'girls': 1,\n",
      "          'madyline': 1,\n",
      "          'sweeten': 1,\n",
      "          'younger': 1,\n",
      "          'farren': 1,\n",
      "          'monet': 1,\n",
      "          'njack': 1,\n",
      "          'ideal': 1,\n",
      "          'eliciting': 1,\n",
      "          'compassion': 1,\n",
      "          'required': 1,\n",
      "          'involving': 1,\n",
      "          'nalso': 1,\n",
      "          'bruce': 1,\n",
      "          'mcgill': 1,\n",
      "          'nhes': 1,\n",
      "          'favorite': 1,\n",
      "          'perfect': 1,\n",
      "          'choice': 1,\n",
      "          'brings': 1,\n",
      "          'gentle': 1,\n",
      "          'performance': 1,\n",
      "          'reassures': 1,\n",
      "          'insecure': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'welldefined': 1,\n",
      "          'pace': 1,\n",
      "          'ending': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'sorry': 1,\n",
      "          'strong': 1,\n",
      "          'identify': 1,\n",
      "          'nfor': 1,\n",
      "          'first': 1,\n",
      "          'beginning': 1,\n",
      "          '1999': 1,\n",
      "          'comes': 1,\n",
      "          'doesnt': 1,\n",
      "          'rely': 1,\n",
      "          'popular': 1,\n",
      "          'formula': 1,\n",
      "          'bigbudget': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'commercial': 1,\n",
      "          'rock': 1,\n",
      "          'soundtracks': 1,\n",
      "          'relies': 1,\n",
      "          'telling': 1,\n",
      "          'fully': 1,\n",
      "          'characteroriented': 1,\n",
      "          'nthat': 1,\n",
      "          'neleanor': 1,\n",
      "          'osullivan': 1,\n",
      "          'news': 1,\n",
      "          'tribune': 1,\n",
      "          'noticed': 1,\n",
      "          'generous': 1,\n",
      "          'welcome': 1,\n",
      "          'want': 1,\n",
      "          'word': 1,\n",
      "          'glow': 1,\n",
      "          'surrounds': 1,\n",
      "          'nits': 1,\n",
      "          'place': 1,\n",
      "          'engages': 1,\n",
      "          'nyou': 1,\n",
      "          'guess': 1,\n",
      "          'going': 1,\n",
      "          'welltraveled': 1,\n",
      "          'territory': 1,\n",
      "          'pros': 1,\n",
      "          'appealing': 1,\n",
      "          'oftentold': 1,\n",
      "          'well': 1,\n",
      "          'worth': 1,\n",
      "          'revisit': 1,\n",
      "          'couple': 1,\n",
      "          'enthusiasts': 1,\n",
      "          'chicagosun': 1,\n",
      "          'washington': 1,\n",
      "          'post': 1,\n",
      "          'read': 1,\n",
      "          'theyre': 1,\n",
      "          'positive': 1,\n",
      "          'nother': 1,\n",
      "          'nstephen': 1,\n",
      "          'holden': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'share': 1,\n",
      "          'beatings': 1,\n",
      "          'lay': 1,\n",
      "          'upon': 1,\n",
      "          'via': 1,\n",
      "          'pen': 1,\n",
      "          'writing': 1,\n",
      "          'found': 1,\n",
      "          'sea': 1,\n",
      "          'sugary': 1,\n",
      "          'bromides': 1,\n",
      "          'condemned': 1,\n",
      "          'mr': 1,\n",
      "          'voights': 1,\n",
      "          'hopelessly': 1,\n",
      "          'wooden': 1,\n",
      "          'adopts': 1,\n",
      "          'accent': 1,\n",
      "          'indeterminate': 1,\n",
      "          'came': 1,\n",
      "          'anaconda': 1,\n",
      "          'weekly': 1,\n",
      "          'slamdunked': 1,\n",
      "          'condemning': 1,\n",
      "          'worst': 1,\n",
      "          'many': 1,\n",
      "          'nmy': 1,\n",
      "          'suggestion': 1,\n",
      "          'disregard': 1,\n",
      "          'nthey': 1,\n",
      "          'problem': 1,\n",
      "          'never': 1,\n",
      "          'attention': 1,\n",
      "          'may': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'hit': 1,\n",
      "          'style': 1,\n",
      "          'titanic': 1,\n",
      "          'thing': 1,\n",
      "          'warm': 1,\n",
      "          'matters': 1,\n",
      "          'nnone': 1,\n",
      "          'lowkey': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'familystyle': 1,\n",
      "          'look': 1,\n",
      "          'boyanddog': 1,\n",
      "          'yarn': 1,\n",
      "          'ngo': 1,\n",
      "          'still': 1,\n",
      "          'bowwow': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'long': 1,\n",
      "          'nsee': 1,\n",
      "          'need': 1,\n",
      "          'compare': 1,\n",
      "          'multimillion': 1,\n",
      "          'dollar': 1,\n",
      "          'blockbuster': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'episode': 1,\n",
      "          'phantom': 1,\n",
      "          'menace': 1,\n",
      "          'tarzan': 1,\n",
      "          'iron': 1,\n",
      "          'giant': 1,\n",
      "          'tender': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 16,\n",
      "          'pulp': 10,\n",
      "          'jackie': 9,\n",
      "          'fiction': 9,\n",
      "          'ordell': 8,\n",
      "          'good': 6,\n",
      "          'movie': 5,\n",
      "          'would': 5,\n",
      "          'going': 5,\n",
      "          'much': 5,\n",
      "          'made': 5,\n",
      "          'really': 5,\n",
      "          'brown': 5,\n",
      "          'tarantino': 5,\n",
      "          'grier': 5,\n",
      "          'isnt': 5,\n",
      "          'critic': 4,\n",
      "          'first': 4,\n",
      "          'one': 4,\n",
      "          'comparison': 4,\n",
      "          'nit': 4,\n",
      "          'likely': 4,\n",
      "          'question': 4,\n",
      "          'role': 4,\n",
      "          'jackson': 4,\n",
      "          'niro': 4,\n",
      "          'characters': 4,\n",
      "          'dont': 3,\n",
      "          'go': 3,\n",
      "          'director': 3,\n",
      "          'na': 3,\n",
      "          'nthis': 3,\n",
      "          'viewpoint': 3,\n",
      "          'another': 3,\n",
      "          'fair': 3,\n",
      "          'think': 3,\n",
      "          'nand': 3,\n",
      "          'back': 3,\n",
      "          'know': 3,\n",
      "          'character': 3,\n",
      "          'help': 3,\n",
      "          'time': 3,\n",
      "          'become': 3,\n",
      "          'could': 3,\n",
      "          'tarantinos': 3,\n",
      "          'getting': 3,\n",
      "          'nnaturally': 2,\n",
      "          'tough': 2,\n",
      "          'accomplish': 2,\n",
      "          'along': 2,\n",
      "          'stars': 2,\n",
      "          'wed': 2,\n",
      "          'dumb': 2,\n",
      "          'im': 2,\n",
      "          'hand': 2,\n",
      "          'nits': 2,\n",
      "          'comparing': 2,\n",
      "          'compare': 2,\n",
      "          'actor': 2,\n",
      "          'even': 2,\n",
      "          'involved': 2,\n",
      "          'expect': 2,\n",
      "          'example': 2,\n",
      "          'take': 2,\n",
      "          'wrote': 2,\n",
      "          'average': 2,\n",
      "          'still': 2,\n",
      "          'taking': 2,\n",
      "          'behind': 2,\n",
      "          'n': 2,\n",
      "          'sides': 2,\n",
      "          'better': 2,\n",
      "          'well': 2,\n",
      "          'person': 2,\n",
      "          'interested': 2,\n",
      "          'ask': 2,\n",
      "          'responsible': 2,\n",
      "          'njackie': 2,\n",
      "          'big': 2,\n",
      "          'thanks': 2,\n",
      "          'part': 2,\n",
      "          'money': 2,\n",
      "          'nordell': 2,\n",
      "          'robert': 2,\n",
      "          'de': 2,\n",
      "          'prison': 2,\n",
      "          'ordells': 2,\n",
      "          'jackies': 2,\n",
      "          'bail': 2,\n",
      "          'nthe': 2,\n",
      "          'hes': 2,\n",
      "          'way': 2,\n",
      "          'wont': 2,\n",
      "          'yet': 2,\n",
      "          'face': 2,\n",
      "          'storytelling': 2,\n",
      "          'maybe': 2,\n",
      "          'play': 2,\n",
      "          'forster': 2,\n",
      "          'thin': 2,\n",
      "          'nde': 2,\n",
      "          'nin': 2,\n",
      "          'script': 2,\n",
      "          'nsadly': 2,\n",
      "          'bit': 2,\n",
      "          'story': 2,\n",
      "          'njackson': 2,\n",
      "          'new': 2,\n",
      "          'jules': 2,\n",
      "          'beginning': 2,\n",
      "          'makes': 2,\n",
      "          'directing': 2,\n",
      "          'youll': 2,\n",
      "          'critics': 1,\n",
      "          'morals': 1,\n",
      "          'nare': 1,\n",
      "          'unwritten': 1,\n",
      "          'laws': 1,\n",
      "          'ethical': 1,\n",
      "          'follow': 1,\n",
      "          'want': 1,\n",
      "          'preconceived': 1,\n",
      "          'notions': 1,\n",
      "          'pretty': 1,\n",
      "          'something': 1,\n",
      "          'nsecondly': 1,\n",
      "          'line': 1,\n",
      "          'cant': 1,\n",
      "          'prejudge': 1,\n",
      "          'etc': 1,\n",
      "          'difference': 1,\n",
      "          'nwell': 1,\n",
      "          'thinking': 1,\n",
      "          'affect': 1,\n",
      "          'viewing': 1,\n",
      "          'sounds': 1,\n",
      "          'looks': 1,\n",
      "          'expecting': 1,\n",
      "          'non': 1,\n",
      "          'second': 1,\n",
      "          'simply': 1,\n",
      "          'assuming': 1,\n",
      "          'bad': 1,\n",
      "          'personal': 1,\n",
      "          'grudge': 1,\n",
      "          'company': 1,\n",
      "          'disney': 1,\n",
      "          'noh': 1,\n",
      "          'merchandising': 1,\n",
      "          'ploy': 1,\n",
      "          'actors': 1,\n",
      "          'jim': 1,\n",
      "          'carreys': 1,\n",
      "          'gon': 1,\n",
      "          'stink': 1,\n",
      "          'ncant': 1,\n",
      "          'biased': 1,\n",
      "          'opposed': 1,\n",
      "          'impression': 1,\n",
      "          'nmake': 1,\n",
      "          'sense': 1,\n",
      "          'nok': 1,\n",
      "          'nisnt': 1,\n",
      "          'kind': 1,\n",
      "          'lines': 1,\n",
      "          'nwhen': 1,\n",
      "          'certain': 1,\n",
      "          'composers': 1,\n",
      "          'credibility': 1,\n",
      "          'nsure': 1,\n",
      "          'sequels': 1,\n",
      "          'accept': 1,\n",
      "          'comparisons': 1,\n",
      "          'lot': 1,\n",
      "          'nis': 1,\n",
      "          'review': 1,\n",
      "          'turn': 1,\n",
      "          'quentin': 1,\n",
      "          'directed': 1,\n",
      "          'screenplay': 1,\n",
      "          'ni': 1,\n",
      "          'ill': 1,\n",
      "          'tell': 1,\n",
      "          'able': 1,\n",
      "          'view': 1,\n",
      "          'joe': 1,\n",
      "          'jane': 1,\n",
      "          'account': 1,\n",
      "          'artistic': 1,\n",
      "          'integrity': 1,\n",
      "          'nsometimes': 1,\n",
      "          'acting': 1,\n",
      "          'superb': 1,\n",
      "          'bored': 1,\n",
      "          'loved': 1,\n",
      "          'sooooo': 1,\n",
      "          'cheezy': 1,\n",
      "          'nmight': 1,\n",
      "          'used': 1,\n",
      "          'describe': 1,\n",
      "          'nthese': 1,\n",
      "          'contradictions': 1,\n",
      "          'weigh': 1,\n",
      "          'come': 1,\n",
      "          'suitable': 1,\n",
      "          'balanced': 1,\n",
      "          'critique': 1,\n",
      "          'nbut': 1,\n",
      "          'important': 1,\n",
      "          'nan': 1,\n",
      "          'extremely': 1,\n",
      "          'shot': 1,\n",
      "          'acted': 1,\n",
      "          'boring': 1,\n",
      "          'amateurish': 1,\n",
      "          'wan': 1,\n",
      "          'ngetting': 1,\n",
      "          'point': 1,\n",
      "          'philosophy': 1,\n",
      "          'films': 1,\n",
      "          'works': 1,\n",
      "          'reflecting': 1,\n",
      "          'public': 1,\n",
      "          'wants': 1,\n",
      "          'anyway': 1,\n",
      "          'nevery': 1,\n",
      "          'whos': 1,\n",
      "          'already': 1,\n",
      "          'pam': 1,\n",
      "          'blaxploitation': 1,\n",
      "          'heroine': 1,\n",
      "          '1970s': 1,\n",
      "          'make': 1,\n",
      "          'comeback': 1,\n",
      "          'title': 1,\n",
      "          'ntarantinos': 1,\n",
      "          'john': 1,\n",
      "          'travoltas': 1,\n",
      "          'sudden': 1,\n",
      "          'revival': 1,\n",
      "          'industry': 1,\n",
      "          'talks': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'happen': 1,\n",
      "          'weve': 1,\n",
      "          'thru': 1,\n",
      "          '1': 1,\n",
      "          '44yearold': 1,\n",
      "          'airline': 1,\n",
      "          'stewardess': 1,\n",
      "          'brings': 1,\n",
      "          'extra': 1,\n",
      "          'cash': 1,\n",
      "          'probably': 1,\n",
      "          'main': 1,\n",
      "          'revenue': 1,\n",
      "          'smuggling': 1,\n",
      "          'large': 1,\n",
      "          'sums': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'robbie': 1,\n",
      "          'fictions': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          '2': 1,\n",
      "          'illegal': 1,\n",
      "          'firearms': 1,\n",
      "          'business': 1,\n",
      "          'enlisted': 1,\n",
      "          'aid': 1,\n",
      "          'louis': 1,\n",
      "          'gara': 1,\n",
      "          'bank': 1,\n",
      "          'robber': 1,\n",
      "          'got': 1,\n",
      "          'serving': 1,\n",
      "          'four': 1,\n",
      "          'years': 1,\n",
      "          'scheme': 1,\n",
      "          'worth': 1,\n",
      "          'half': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'ntrouble': 1,\n",
      "          'arises': 1,\n",
      "          'stopped': 1,\n",
      "          'atf': 1,\n",
      "          'agent': 1,\n",
      "          'ray': 1,\n",
      "          'nicolet': 1,\n",
      "          'michael': 1,\n",
      "          'keaton': 1,\n",
      "          'taken': 1,\n",
      "          'custody': 1,\n",
      "          'possession': 1,\n",
      "          'narcotics': 1,\n",
      "          'allowed': 1,\n",
      "          'airport': 1,\n",
      "          'without': 1,\n",
      "          'claimed': 1,\n",
      "          'proves': 1,\n",
      "          'obstacle': 1,\n",
      "          'plans': 1,\n",
      "          'friendly': 1,\n",
      "          'intended': 1,\n",
      "          'hope': 1,\n",
      "          'posts': 1,\n",
      "          'put': 1,\n",
      "          'bars': 1,\n",
      "          'thing': 1,\n",
      "          'learn': 1,\n",
      "          'previous': 1,\n",
      "          'actions': 1,\n",
      "          'willing': 1,\n",
      "          'kill': 1,\n",
      "          'anyone': 1,\n",
      "          'stands': 1,\n",
      "          'finds': 1,\n",
      "          'tight': 1,\n",
      "          'squeeze': 1,\n",
      "          'twice': 1,\n",
      "          'fails': 1,\n",
      "          'shes': 1,\n",
      "          'always': 1,\n",
      "          'done': 1,\n",
      "          'compromise': 1,\n",
      "          'authorities': 1,\n",
      "          'order': 1,\n",
      "          'evidence': 1,\n",
      "          'provided': 1,\n",
      "          'comes': 1,\n",
      "          'simple': 1,\n",
      "          'rather': 1,\n",
      "          'nwhat': 1,\n",
      "          'ensues': 1,\n",
      "          'rich': 1,\n",
      "          'intriguing': 1,\n",
      "          'law': 1,\n",
      "          'ncoming': 1,\n",
      "          '70s': 1,\n",
      "          'veteran': 1,\n",
      "          'bondsmen': 1,\n",
      "          'max': 1,\n",
      "          'cherry': 1,\n",
      "          'nmaxs': 1,\n",
      "          'obvious': 1,\n",
      "          'fondness': 1,\n",
      "          'major': 1,\n",
      "          'benefactor': 1,\n",
      "          'fight': 1,\n",
      "          'beat': 1,\n",
      "          'system': 1,\n",
      "          'plays': 1,\n",
      "          'subtle': 1,\n",
      "          'charm': 1,\n",
      "          'adds': 1,\n",
      "          'depth': 1,\n",
      "          'unbrewed': 1,\n",
      "          'romance': 1,\n",
      "          'nalso': 1,\n",
      "          'surfer': 1,\n",
      "          'girl': 1,\n",
      "          'girlfriend': 1,\n",
      "          'melanie': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'ditzy': 1,\n",
      "          'sun': 1,\n",
      "          'bleached': 1,\n",
      "          'babe': 1,\n",
      "          'spends': 1,\n",
      "          'watching': 1,\n",
      "          'tv': 1,\n",
      "          'bong': 1,\n",
      "          'nfonda': 1,\n",
      "          'best': 1,\n",
      "          'essentially': 1,\n",
      "          'theres': 1,\n",
      "          'nothing': 1,\n",
      "          'therefore': 1,\n",
      "          'becomes': 1,\n",
      "          'tossable': 1,\n",
      "          'addition': 1,\n",
      "          'otherwise': 1,\n",
      "          'flourishing': 1,\n",
      "          'bouquet': 1,\n",
      "          'also': 1,\n",
      "          'wasted': 1,\n",
      "          'quiet': 1,\n",
      "          'nobody': 1,\n",
      "          'crook': 1,\n",
      "          'score': 1,\n",
      "          'bucks': 1,\n",
      "          'brilliant': 1,\n",
      "          'hardly': 1,\n",
      "          'ever': 1,\n",
      "          'speaks': 1,\n",
      "          'doesnt': 1,\n",
      "          'need': 1,\n",
      "          'ncompared': 1,\n",
      "          '3': 1,\n",
      "          'replaceable': 1,\n",
      "          'small': 1,\n",
      "          'seemingly': 1,\n",
      "          'irrelevant': 1,\n",
      "          'wonderful': 1,\n",
      "          'complete': 1,\n",
      "          'lifelike': 1,\n",
      "          'whereas': 1,\n",
      "          'common': 1,\n",
      "          'figures': 1,\n",
      "          'wouldnt': 1,\n",
      "          'suffered': 1,\n",
      "          'lesser': 1,\n",
      "          'talented': 1,\n",
      "          'cast': 1,\n",
      "          'exception': 1,\n",
      "          'ntarantino': 1,\n",
      "          'specifically': 1,\n",
      "          'mind': 1,\n",
      "          'say': 1,\n",
      "          'reversed': 1,\n",
      "          'truth': 1,\n",
      "          'received': 1,\n",
      "          'attention': 1,\n",
      "          'especially': 1,\n",
      "          'newlyjarred': 1,\n",
      "          'perception': 1,\n",
      "          'life': 1,\n",
      "          'teams': 1,\n",
      "          'chemical': 1,\n",
      "          'reaction': 1,\n",
      "          'awesome': 1,\n",
      "          'njules': 1,\n",
      "          'rambling': 1,\n",
      "          'biblequoting': 1,\n",
      "          'hitman': 1,\n",
      "          'pulled': 1,\n",
      "          'although': 1,\n",
      "          'quite': 1,\n",
      "          'irreplaceable': 1,\n",
      "          'fact': 1,\n",
      "          'couldve': 1,\n",
      "          'remained': 1,\n",
      "          'guy': 1,\n",
      "          'forever': 1,\n",
      "          'remain': 1,\n",
      "          'memories': 1,\n",
      "          'except': 1,\n",
      "          'impressive': 1,\n",
      "          'putting': 1,\n",
      "          'hands': 1,\n",
      "          'deter': 1,\n",
      "          'fond': 1,\n",
      "          'recollections': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'focused': 1,\n",
      "          'griers': 1,\n",
      "          'spend': 1,\n",
      "          'long': 1,\n",
      "          'man': 1,\n",
      "          'supporting': 1,\n",
      "          'progresses': 1,\n",
      "          'feel': 1,\n",
      "          'little': 1,\n",
      "          'slanted': 1,\n",
      "          'slow': 1,\n",
      "          'longer': 1,\n",
      "          'meat': 1,\n",
      "          'pouring': 1,\n",
      "          'theater': 1,\n",
      "          'see': 1,\n",
      "          'anxious': 1,\n",
      "          'partake': 1,\n",
      "          'quirky': 1,\n",
      "          'dialogue': 1,\n",
      "          'eccentric': 1,\n",
      "          'style': 1,\n",
      "          'seeing': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'adaption': 1,\n",
      "          'elmore': 1,\n",
      "          'leonards': 1,\n",
      "          'novel': 1,\n",
      "          'rum': 1,\n",
      "          'punch': 1,\n",
      "          'nfor': 1,\n",
      "          'moviegoers': 1,\n",
      "          'satisfied': 1,\n",
      "          'oozes': 1,\n",
      "          'familiar': 1,\n",
      "          'brash': 1,\n",
      "          'qualities': 1,\n",
      "          'icon': 1,\n",
      "          '90s': 1,\n",
      "          'making': 1,\n",
      "          'toned': 1,\n",
      "          'however': 1,\n",
      "          'reminded': 1,\n",
      "          'odd': 1,\n",
      "          'splitscreen': 1,\n",
      "          'devices': 1,\n",
      "          'scenes': 1,\n",
      "          'replayed': 1,\n",
      "          'multiple': 1,\n",
      "          'times': 1,\n",
      "          'different': 1,\n",
      "          'viewpoints': 1,\n",
      "          'nso': 1,\n",
      "          'began': 1,\n",
      "          'anything': 1,\n",
      "          'revolutionary': 1,\n",
      "          'effort': 1,\n",
      "          'place': 1,\n",
      "          'conservative': 1,\n",
      "          'satiate': 1,\n",
      "          'true': 1,\n",
      "          'fans': 1,\n",
      "          'nif': 1,\n",
      "          'realize': 1,\n",
      "          'knock': 1,\n",
      "          'socks': 1,\n",
      "          'happy': 1,\n",
      "          'least': 1,\n",
      "          'let': 1,\n",
      "          'massage': 1,\n",
      "          'feet': 1,\n",
      "          'nafter': 1,\n",
      "          'loves': 1,\n",
      "          'particular': 1,\n",
      "          'human': 1,\n",
      "          'anatomy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jerry': 5,\n",
      "          'black': 3,\n",
      "          'killer': 3,\n",
      "          'lori': 3,\n",
      "          'pledge': 3,\n",
      "          'becomes': 2,\n",
      "          'gas': 2,\n",
      "          'station': 2,\n",
      "          'takes': 2,\n",
      "          'befriends': 2,\n",
      "          'first': 2,\n",
      "          'nit': 2,\n",
      "          'npenn': 2,\n",
      "          'jerrys': 2,\n",
      "          'much': 2,\n",
      "          'synopsis': 1,\n",
      "          'retiring': 1,\n",
      "          'detective': 1,\n",
      "          'nicholson': 1,\n",
      "          'involved': 1,\n",
      "          'case': 1,\n",
      "          'murdered': 1,\n",
      "          'girl': 1,\n",
      "          'promises': 1,\n",
      "          'parents': 1,\n",
      "          'find': 1,\n",
      "          'nhe': 1,\n",
      "          'purchases': 1,\n",
      "          'route': 1,\n",
      "          'believes': 1,\n",
      "          'wright': 1,\n",
      "          'penn': 1,\n",
      "          'young': 1,\n",
      "          'daughter': 1,\n",
      "          'nas': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'must': 1,\n",
      "          'done': 1,\n",
      "          'fulfill': 1,\n",
      "          'nreview': 1,\n",
      "          'appears': 1,\n",
      "          'another': 1,\n",
      "          'standard': 1,\n",
      "          'wellexecuted': 1,\n",
      "          'crime': 1,\n",
      "          'drama': 1,\n",
      "          'anything': 1,\n",
      "          'final': 1,\n",
      "          'hour': 1,\n",
      "          'turns': 1,\n",
      "          'corner': 1,\n",
      "          'riveting': 1,\n",
      "          'terrifying': 1,\n",
      "          'study': 1,\n",
      "          'lead': 1,\n",
      "          'character': 1,\n",
      "          'pays': 1,\n",
      "          'attention': 1,\n",
      "          'trappings': 1,\n",
      "          'serial': 1,\n",
      "          'genre': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'nhis': 1,\n",
      "          'interest': 1,\n",
      "          'unequivocally': 1,\n",
      "          'man': 1,\n",
      "          'haunted': 1,\n",
      "          'consumes': 1,\n",
      "          'entirety': 1,\n",
      "          'existence': 1,\n",
      "          'nat': 1,\n",
      "          'see': 1,\n",
      "          'small': 1,\n",
      "          'hints': 1,\n",
      "          'habits': 1,\n",
      "          'change': 1,\n",
      "          'instance': 1,\n",
      "          'suddenly': 1,\n",
      "          'smoking': 1,\n",
      "          'big': 1,\n",
      "          'way': 1,\n",
      "          'nbut': 1,\n",
      "          'buys': 1,\n",
      "          'true': 1,\n",
      "          'extent': 1,\n",
      "          'mania': 1,\n",
      "          'draws': 1,\n",
      "          'horrifyingly': 1,\n",
      "          'focus': 1,\n",
      "          'nnicholson': 1,\n",
      "          'fantastic': 1,\n",
      "          'portraying': 1,\n",
      "          'rare': 1,\n",
      "          'subtlety': 1,\n",
      "          'animus': 1,\n",
      "          'gradual': 1,\n",
      "          'descent': 1,\n",
      "          'obsession': 1,\n",
      "          'like': 1,\n",
      "          'car': 1,\n",
      "          'wreck': 1,\n",
      "          'thing': 1,\n",
      "          'horrible': 1,\n",
      "          'look': 1,\n",
      "          'impossible': 1,\n",
      "          'turn': 1,\n",
      "          'away': 1,\n",
      "          'coaxes': 1,\n",
      "          'good': 1,\n",
      "          'supporting': 1,\n",
      "          'performances': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'nonly': 1,\n",
      "          'eckhart': 1,\n",
      "          'disappoints': 1,\n",
      "          'replacement': 1,\n",
      "          'stan': 1,\n",
      "          'never': 1,\n",
      "          'seems': 1,\n",
      "          'entirely': 1,\n",
      "          'convincing': 1,\n",
      "          'tool': 1,\n",
      "          'plot': 1,\n",
      "          'npenns': 1,\n",
      "          'direction': 1,\n",
      "          'astounding': 1,\n",
      "          'frame': 1,\n",
      "          'looking': 1,\n",
      "          'though': 1,\n",
      "          'parched': 1,\n",
      "          'water': 1,\n",
      "          'perhaps': 1,\n",
      "          'sanity': 1,\n",
      "          'builds': 1,\n",
      "          'shattering': 1,\n",
      "          'devastating': 1,\n",
      "          'climax': 1,\n",
      "          'lingers': 1,\n",
      "          'uncomfortably': 1,\n",
      "          'mind': 1,\n",
      "          'long': 1,\n",
      "          'house': 1,\n",
      "          'lights': 1,\n",
      "          'come': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mamet': 7,\n",
      "          'one': 6,\n",
      "          'nit': 6,\n",
      "          'get': 4,\n",
      "          'film': 4,\n",
      "          'plot': 4,\n",
      "          'going': 3,\n",
      "          'story': 3,\n",
      "          'films': 3,\n",
      "          'team': 3,\n",
      "          'security': 3,\n",
      "          'heist': 3,\n",
      "          'clever': 3,\n",
      "          'robbery': 3,\n",
      "          'like': 3,\n",
      "          'problem': 3,\n",
      "          'joe': 3,\n",
      "          'time': 3,\n",
      "          'nthe': 3,\n",
      "          'never': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'little': 2,\n",
      "          'really': 2,\n",
      "          'nheist': 2,\n",
      "          'thriller': 2,\n",
      "          'kind': 2,\n",
      "          'frequently': 2,\n",
      "          'viewer': 2,\n",
      "          'around': 2,\n",
      "          'enough': 2,\n",
      "          'professional': 2,\n",
      "          'ricky': 2,\n",
      "          'jay': 2,\n",
      "          'rebecca': 2,\n",
      "          'ways': 2,\n",
      "          'nbut': 2,\n",
      "          'mamets': 2,\n",
      "          'dialog': 2,\n",
      "          'money': 2,\n",
      "          'timing': 2,\n",
      "          'good': 2,\n",
      "          'high': 2,\n",
      "          'nmy': 2,\n",
      "          'scale': 2,\n",
      "          '4': 2,\n",
      "          'quite': 1,\n",
      "          'knows': 1,\n",
      "          'nhis': 1,\n",
      "          'american': 1,\n",
      "          'buffalo': 1,\n",
      "          'setbound': 1,\n",
      "          'piece': 1,\n",
      "          'nsometimes': 1,\n",
      "          'tell': 1,\n",
      "          'moves': 1,\n",
      "          'entertaining': 1,\n",
      "          'work': 1,\n",
      "          'nunlike': 1,\n",
      "          'spanish': 1,\n",
      "          'prisoner': 1,\n",
      "          'lapses': 1,\n",
      "          'credibility': 1,\n",
      "          'probably': 1,\n",
      "          'best': 1,\n",
      "          'since': 1,\n",
      "          'house': 1,\n",
      "          'games': 1,\n",
      "          'sure': 1,\n",
      "          'doublecross': 1,\n",
      "          'doublecrossing': 1,\n",
      "          'nwatching': 1,\n",
      "          'getting': 1,\n",
      "          'asking': 1,\n",
      "          'either': 1,\n",
      "          'heck': 1,\n",
      "          'didnt': 1,\n",
      "          'anybody': 1,\n",
      "          'think': 1,\n",
      "          'nappropriately': 1,\n",
      "          'opens': 1,\n",
      "          'jewelry': 1,\n",
      "          'store': 1,\n",
      "          'job': 1,\n",
      "          'wonders': 1,\n",
      "          'thinks': 1,\n",
      "          'ideas': 1,\n",
      "          'help': 1,\n",
      "          'magician': 1,\n",
      "          'con': 1,\n",
      "          'expert': 1,\n",
      "          'regular': 1,\n",
      "          'actor': 1,\n",
      "          'nthis': 1,\n",
      "          'works': 1,\n",
      "          'welloiled': 1,\n",
      "          'machine': 1,\n",
      "          'nthere': 1,\n",
      "          'moore': 1,\n",
      "          'played': 1,\n",
      "          'gene': 1,\n",
      "          'hackman': 1,\n",
      "          'filmed': 1,\n",
      "          'camera': 1,\n",
      "          'nnow': 1,\n",
      "          'business': 1,\n",
      "          'coming': 1,\n",
      "          'anyway': 1,\n",
      "          'njoes': 1,\n",
      "          'including': 1,\n",
      "          'bobby': 1,\n",
      "          'blane': 1,\n",
      "          'delroy': 1,\n",
      "          'lindo': 1,\n",
      "          'fran': 1,\n",
      "          'moor': 1,\n",
      "          'pidgeon': 1,\n",
      "          'pinky': 1,\n",
      "          'pincus': 1,\n",
      "          'split': 1,\n",
      "          'go': 1,\n",
      "          'separate': 1,\n",
      "          'crime': 1,\n",
      "          'boss': 1,\n",
      "          'bergman': 1,\n",
      "          'danny': 1,\n",
      "          'devito': 1,\n",
      "          'pulling': 1,\n",
      "          'strings': 1,\n",
      "          'says': 1,\n",
      "          'people': 1,\n",
      "          'manage': 1,\n",
      "          'nand': 1,\n",
      "          'take': 1,\n",
      "          'along': 1,\n",
      "          'young': 1,\n",
      "          'kid': 1,\n",
      "          'short': 1,\n",
      "          'fused': 1,\n",
      "          'jimmy': 1,\n",
      "          'silk': 1,\n",
      "          'sam': 1,\n",
      "          'rockwell': 1,\n",
      "          'nimmediately': 1,\n",
      "          'obvious': 1,\n",
      "          'meets': 1,\n",
      "          'eye': 1,\n",
      "          'nmuch': 1,\n",
      "          'distinguishes': 1,\n",
      "          'nremarkably': 1,\n",
      "          'serves': 1,\n",
      "          'double': 1,\n",
      "          'purpose': 1,\n",
      "          'sounds': 1,\n",
      "          'special': 1,\n",
      "          'feel': 1,\n",
      "          'nhackman': 1,\n",
      "          'lines': 1,\n",
      "          'everybody': 1,\n",
      "          'needs': 1,\n",
      "          'nthats': 1,\n",
      "          'call': 1,\n",
      "          'nmamets': 1,\n",
      "          'perfect': 1,\n",
      "          'direction': 1,\n",
      "          'terrible': 1,\n",
      "          'production': 1,\n",
      "          'coincidentally': 1,\n",
      "          'lot': 1,\n",
      "          'recent': 1,\n",
      "          'score': 1,\n",
      "          'fact': 1,\n",
      "          'similar': 1,\n",
      "          'nboth': 1,\n",
      "          'perhaps': 1,\n",
      "          'reasons': 1,\n",
      "          'least': 1,\n",
      "          'level': 1,\n",
      "          'much': 1,\n",
      "          'involves': 1,\n",
      "          'airport': 1,\n",
      "          'ni': 1,\n",
      "          'saw': 1,\n",
      "          'toronto': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'september': 1,\n",
      "          '12': 1,\n",
      "          '2001': 1,\n",
      "          'nthat': 1,\n",
      "          'made': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'timely': 1,\n",
      "          'understanding': 1,\n",
      "          'release': 1,\n",
      "          'delayed': 1,\n",
      "          'biggest': 1,\n",
      "          'pidgeons': 1,\n",
      "          'acting': 1,\n",
      "          'times': 1,\n",
      "          'seems': 1,\n",
      "          'poor': 1,\n",
      "          'trademark': 1,\n",
      "          'understand': 1,\n",
      "          'women': 1,\n",
      "          'talk': 1,\n",
      "          'without': 1,\n",
      "          'inflection': 1,\n",
      "          'reading': 1,\n",
      "          'words': 1,\n",
      "          'first': 1,\n",
      "          'irritation': 1,\n",
      "          'distracts': 1,\n",
      "          'us': 1,\n",
      "          'otherwise': 1,\n",
      "          'rate': 1,\n",
      "          '8': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          '2': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'foster': 9,\n",
      "          'scene': 8,\n",
      "          'nthe': 7,\n",
      "          'science': 5,\n",
      "          'one': 4,\n",
      "          'nit': 4,\n",
      "          'good': 4,\n",
      "          'audience': 4,\n",
      "          'sense': 4,\n",
      "          'contact': 3,\n",
      "          'jodie': 3,\n",
      "          'john': 3,\n",
      "          'zemeckis': 3,\n",
      "          'case': 3,\n",
      "          'fiction': 3,\n",
      "          'nthis': 3,\n",
      "          'supporting': 3,\n",
      "          'cast': 3,\n",
      "          'acting': 3,\n",
      "          'scenes': 3,\n",
      "          'new': 3,\n",
      "          'fosters': 3,\n",
      "          'beach': 3,\n",
      "          'ncontact': 2,\n",
      "          'hurt': 2,\n",
      "          'director': 2,\n",
      "          'star': 2,\n",
      "          'predictable': 2,\n",
      "          'terms': 2,\n",
      "          'evoke': 2,\n",
      "          'let': 2,\n",
      "          'characterization': 2,\n",
      "          'movies': 2,\n",
      "          'certainly': 2,\n",
      "          'long': 2,\n",
      "          'lowe': 2,\n",
      "          'world': 2,\n",
      "          'immensely': 2,\n",
      "          'memory': 2,\n",
      "          'nin': 2,\n",
      "          'manipulated': 2,\n",
      "          'nbut': 2,\n",
      "          'film': 2,\n",
      "          'clinton': 2,\n",
      "          'vis': 2,\n",
      "          'sagan': 2,\n",
      "          'shows': 1,\n",
      "          'best': 1,\n",
      "          'actresses': 1,\n",
      "          'nsee': 1,\n",
      "          'family': 1,\n",
      "          'ages': 1,\n",
      "          'na': 1,\n",
      "          'review': 1,\n",
      "          'stuart': 1,\n",
      "          'cracraft': 1,\n",
      "          'starring': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'robert': 1,\n",
      "          'nafter': 1,\n",
      "          'mit': 1,\n",
      "          'phillip': 1,\n",
      "          'morrison': 1,\n",
      "          'powersof10': 1,\n",
      "          'zoomout': 1,\n",
      "          'start': 1,\n",
      "          'surprising': 1,\n",
      "          'familiar': 1,\n",
      "          'prof': 1,\n",
      "          'morrisons': 1,\n",
      "          'work': 1,\n",
      "          'picks': 1,\n",
      "          'steam': 1,\n",
      "          'gradually': 1,\n",
      "          'building': 1,\n",
      "          'bytheend': 1,\n",
      "          'irresistable': 1,\n",
      "          'juggernaut': 1,\n",
      "          'often': 1,\n",
      "          'fall': 1,\n",
      "          'outofbalance': 1,\n",
      "          'much': 1,\n",
      "          'pandering': 1,\n",
      "          'technological': 1,\n",
      "          'geek': 1,\n",
      "          'side': 1,\n",
      "          'nby': 1,\n",
      "          'end': 1,\n",
      "          'left': 1,\n",
      "          'supposed': 1,\n",
      "          'wonder': 1,\n",
      "          'universe': 1,\n",
      "          'questions': 1,\n",
      "          'mind': 1,\n",
      "          'whats': 1,\n",
      "          'technology': 1,\n",
      "          'overshadow': 1,\n",
      "          'unusual': 1,\n",
      "          'amongst': 1,\n",
      "          'hightech': 1,\n",
      "          'nhowever': 1,\n",
      "          'except': 1,\n",
      "          'elie': 1,\n",
      "          'arroway': 1,\n",
      "          'r': 1,\n",
      "          'nhadden': 1,\n",
      "          'actors': 1,\n",
      "          'exceptional': 1,\n",
      "          'caliber': 1,\n",
      "          'especially': 1,\n",
      "          'impressive': 1,\n",
      "          'nhurt': 1,\n",
      "          'better': 1,\n",
      "          'roles': 1,\n",
      "          'stephen': 1,\n",
      "          'ward': 1,\n",
      "          'scandal': 1,\n",
      "          'multibillionare': 1,\n",
      "          'hadden': 1,\n",
      "          'skills': 1,\n",
      "          'justice': 1,\n",
      "          'clearly': 1,\n",
      "          'great': 1,\n",
      "          'hollywood': 1,\n",
      "          'lights': 1,\n",
      "          'generation': 1,\n",
      "          'nfosters': 1,\n",
      "          'radiance': 1,\n",
      "          'never': 1,\n",
      "          'strong': 1,\n",
      "          'finally': 1,\n",
      "          'meets': 1,\n",
      "          'vegans': 1,\n",
      "          'nearly': 1,\n",
      "          'take': 1,\n",
      "          'time': 1,\n",
      "          'build': 1,\n",
      "          'pacing': 1,\n",
      "          'subtle': 1,\n",
      "          'panoramas': 1,\n",
      "          'radio': 1,\n",
      "          'dishes': 1,\n",
      "          'arecibo': 1,\n",
      "          'ceti': 1,\n",
      "          'mexico': 1,\n",
      "          'puerto': 1,\n",
      "          'rico': 1,\n",
      "          'beautiful': 1,\n",
      "          'politics': 1,\n",
      "          'character': 1,\n",
      "          'attempting': 1,\n",
      "          'obtain': 1,\n",
      "          'funding': 1,\n",
      "          'research': 1,\n",
      "          'places': 1,\n",
      "          'trite': 1,\n",
      "          'however': 1,\n",
      "          'none': 1,\n",
      "          'entertaining': 1,\n",
      "          'short': 1,\n",
      "          'confronted': 1,\n",
      "          'rob': 1,\n",
      "          'cabinetlevel': 1,\n",
      "          'presidential': 1,\n",
      "          'meeting': 1,\n",
      "          'discuss': 1,\n",
      "          'alien': 1,\n",
      "          'invitation': 1,\n",
      "          'nthere': 1,\n",
      "          'real': 1,\n",
      "          'sparks': 1,\n",
      "          'would': 1,\n",
      "          'behoove': 1,\n",
      "          'consider': 1,\n",
      "          'vehicles': 1,\n",
      "          'dynamism': 1,\n",
      "          'could': 1,\n",
      "          'explored': 1,\n",
      "          'tremendous': 1,\n",
      "          'dynamics': 1,\n",
      "          'two': 1,\n",
      "          'characters': 1,\n",
      "          'neverything': 1,\n",
      "          'else': 1,\n",
      "          'onesided': 1,\n",
      "          'e': 1,\n",
      "          'g': 1,\n",
      "          'nfoster': 1,\n",
      "          'nlowe': 1,\n",
      "          'stand': 1,\n",
      "          'showed': 1,\n",
      "          'cabinet': 1,\n",
      "          'table': 1,\n",
      "          'core': 1,\n",
      "          'set': 1,\n",
      "          'surrealistic': 1,\n",
      "          'faraway': 1,\n",
      "          'starsystem': 1,\n",
      "          'vega': 1,\n",
      "          'feels': 1,\n",
      "          'lot': 1,\n",
      "          'like': 1,\n",
      "          'writer': 1,\n",
      "          'varleys': 1,\n",
      "          'book': 1,\n",
      "          'steel': 1,\n",
      "          'female': 1,\n",
      "          'protagonists': 1,\n",
      "          'encounters': 1,\n",
      "          'superior': 1,\n",
      "          'intelligence': 1,\n",
      "          'computer': 1,\n",
      "          'manufactured': 1,\n",
      "          'mankind': 1,\n",
      "          'illusion': 1,\n",
      "          'drawn': 1,\n",
      "          'another': 1,\n",
      "          'moving': 1,\n",
      "          'evokes': 1,\n",
      "          'gene': 1,\n",
      "          'roddenberrys': 1,\n",
      "          'trek': 1,\n",
      "          'pilot': 1,\n",
      "          'cage': 1,\n",
      "          'later': 1,\n",
      "          'menagerie': 1,\n",
      "          'jeffrey': 1,\n",
      "          'hunter': 1,\n",
      "          'susan': 1,\n",
      "          'oliver': 1,\n",
      "          'memories': 1,\n",
      "          'create': 1,\n",
      "          'worlds': 1,\n",
      "          'live': 1,\n",
      "          'encounter': 1,\n",
      "          'aliens': 1,\n",
      "          'concept': 1,\n",
      "          'centerpiece': 1,\n",
      "          'whole': 1,\n",
      "          'driven': 1,\n",
      "          'nfreed': 1,\n",
      "          'needs': 1,\n",
      "          'direct': 1,\n",
      "          'zemecki': 1,\n",
      "          'able': 1,\n",
      "          'hang': 1,\n",
      "          'lead': 1,\n",
      "          'provides': 1,\n",
      "          'nas': 1,\n",
      "          'gains': 1,\n",
      "          'speed': 1,\n",
      "          'intensifies': 1,\n",
      "          'really': 1,\n",
      "          'experience': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'unquestionably': 1,\n",
      "          'well': 1,\n",
      "          'throws': 1,\n",
      "          'humor': 1,\n",
      "          'president': 1,\n",
      "          'cameos': 1,\n",
      "          'cleverly': 1,\n",
      "          'george': 1,\n",
      "          'stephanopolusstyle': 1,\n",
      "          'seem': 1,\n",
      "          'forrest': 1,\n",
      "          'gump': 1,\n",
      "          'fact': 1,\n",
      "          'et': 1,\n",
      "          'nal': 1,\n",
      "          'ngot': 1,\n",
      "          'trouble': 1,\n",
      "          'usage': 1,\n",
      "          'footage': 1,\n",
      "          'seen': 1,\n",
      "          'attended': 1,\n",
      "          'chuckles': 1,\n",
      "          'clintons': 1,\n",
      "          'walkons': 1,\n",
      "          'muchdiscussed': 1,\n",
      "          'tension': 1,\n",
      "          'religion': 1,\n",
      "          'particularly': 1,\n",
      "          'insightful': 1,\n",
      "          'already': 1,\n",
      "          'gone': 1,\n",
      "          'course': 1,\n",
      "          'though': 1,\n",
      "          'helpful': 1,\n",
      "          'nalso': 1,\n",
      "          'nearfinal': 1,\n",
      "          'senate': 1,\n",
      "          'judiciary': 1,\n",
      "          'hearing': 1,\n",
      "          'room': 1,\n",
      "          'disappointing': 1,\n",
      "          'fitting': 1,\n",
      "          'memorial': 1,\n",
      "          'carl': 1,\n",
      "          'popularizer': 1,\n",
      "          'sometime': 1,\n",
      "          'pedantic': 1,\n",
      "          'gadfly': 1,\n",
      "          'halls': 1,\n",
      "          'academe': 1,\n",
      "          'nperhaps': 1,\n",
      "          'said': 1,\n",
      "          'dragons': 1,\n",
      "          'eden': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'first': 9,\n",
      "          'sight': 9,\n",
      "          'virgil': 8,\n",
      "          'nthe': 6,\n",
      "          'since': 5,\n",
      "          'amy': 5,\n",
      "          'awakenings': 4,\n",
      "          'begins': 4,\n",
      "          'sorvino': 4,\n",
      "          'kilmer': 4,\n",
      "          'even': 4,\n",
      "          'surgery': 4,\n",
      "          'relationship': 4,\n",
      "          'directed': 3,\n",
      "          'irwin': 3,\n",
      "          'winkler': 3,\n",
      "          'inspired': 3,\n",
      "          'story': 3,\n",
      "          'made': 3,\n",
      "          'new': 3,\n",
      "          'york': 3,\n",
      "          'time': 3,\n",
      "          'later': 3,\n",
      "          'blind': 3,\n",
      "          'finally': 3,\n",
      "          'virgils': 3,\n",
      "          'amys': 3,\n",
      "          'done': 3,\n",
      "          'life': 3,\n",
      "          'always': 3,\n",
      "          'usually': 3,\n",
      "          'little': 3,\n",
      "          'come': 3,\n",
      "          'drama': 2,\n",
      "          'true': 2,\n",
      "          'documented': 2,\n",
      "          'nsince': 2,\n",
      "          'year': 2,\n",
      "          'strong': 2,\n",
      "          'still': 2,\n",
      "          'intelligent': 2,\n",
      "          'take': 2,\n",
      "          'country': 2,\n",
      "          'nat': 2,\n",
      "          'care': 2,\n",
      "          'love': 2,\n",
      "          'type': 2,\n",
      "          'years': 2,\n",
      "          'comes': 2,\n",
      "          'though': 2,\n",
      "          'travels': 2,\n",
      "          'sister': 2,\n",
      "          'mcgillis': 2,\n",
      "          'problems': 2,\n",
      "          'apartment': 2,\n",
      "          'many': 2,\n",
      "          'also': 2,\n",
      "          'easily': 2,\n",
      "          'romantic': 2,\n",
      "          'well': 2,\n",
      "          'scenes': 2,\n",
      "          'known': 2,\n",
      "          'given': 2,\n",
      "          'performances': 2,\n",
      "          'role': 2,\n",
      "          'character': 2,\n",
      "          'play': 2,\n",
      "          'nin': 2,\n",
      "          'one': 2,\n",
      "          'bad': 2,\n",
      "          'simply': 2,\n",
      "          'would': 2,\n",
      "          'way': 2,\n",
      "          'like': 1,\n",
      "          'wonderful': 1,\n",
      "          '1990': 1,\n",
      "          'starring': 1,\n",
      "          'robin': 1,\n",
      "          'williams': 1,\n",
      "          'robert': 1,\n",
      "          'de': 1,\n",
      "          'niro': 1,\n",
      "          'physicfirst': 1,\n",
      "          'physician': 1,\n",
      "          'oliver': 1,\n",
      "          'sacks': 1,\n",
      "          'good': 1,\n",
      "          'top': 1,\n",
      "          'ten': 1,\n",
      "          'list': 1,\n",
      "          'released': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'hand': 1,\n",
      "          'penny': 1,\n",
      "          'marshall': 1,\n",
      "          'vibrantlyacted': 1,\n",
      "          'mira': 1,\n",
      "          'stressedout': 1,\n",
      "          'architect': 1,\n",
      "          'decides': 1,\n",
      "          'travel': 1,\n",
      "          'upstate': 1,\n",
      "          'hotel': 1,\n",
      "          'staying': 1,\n",
      "          'makes': 1,\n",
      "          'massage': 1,\n",
      "          'appointment': 1,\n",
      "          'long': 1,\n",
      "          'soothing': 1,\n",
      "          'session': 1,\n",
      "          'ends': 1,\n",
      "          'crying': 1,\n",
      "          'release': 1,\n",
      "          'emotions': 1,\n",
      "          'strikes': 1,\n",
      "          'conversation': 1,\n",
      "          'handsome': 1,\n",
      "          'masseur': 1,\n",
      "          'val': 1,\n",
      "          'find': 1,\n",
      "          'actually': 1,\n",
      "          'namy': 1,\n",
      "          'doesnt': 1,\n",
      "          'really': 1,\n",
      "          'handicap': 1,\n",
      "          'spend': 1,\n",
      "          'start': 1,\n",
      "          'fall': 1,\n",
      "          'nonce': 1,\n",
      "          'returned': 1,\n",
      "          'research': 1,\n",
      "          'certain': 1,\n",
      "          'retinal': 1,\n",
      "          'blindness': 1,\n",
      "          'three': 1,\n",
      "          'age': 1,\n",
      "          'stroke': 1,\n",
      "          'luck': 1,\n",
      "          'contact': 1,\n",
      "          'doctor': 1,\n",
      "          'bruce': 1,\n",
      "          'davison': 1,\n",
      "          'believes': 1,\n",
      "          'repair': 1,\n",
      "          'thirty': 1,\n",
      "          'similar': 1,\n",
      "          'cases': 1,\n",
      "          'history': 1,\n",
      "          'reluctant': 1,\n",
      "          'nyc': 1,\n",
      "          'agrees': 1,\n",
      "          'much': 1,\n",
      "          'hesitance': 1,\n",
      "          'overbearing': 1,\n",
      "          'loving': 1,\n",
      "          'older': 1,\n",
      "          'kelly': 1,\n",
      "          'nultimately': 1,\n",
      "          'success': 1,\n",
      "          'arise': 1,\n",
      "          'relate': 1,\n",
      "          'sees': 1,\n",
      "          'never': 1,\n",
      "          'visually': 1,\n",
      "          'seen': 1,\n",
      "          'anything': 1,\n",
      "          'touched': 1,\n",
      "          'objects': 1,\n",
      "          'nhe': 1,\n",
      "          'moves': 1,\n",
      "          'eager': 1,\n",
      "          'stand': 1,\n",
      "          'maladjustment': 1,\n",
      "          'put': 1,\n",
      "          'strain': 1,\n",
      "          'non': 1,\n",
      "          'basis': 1,\n",
      "          'overall': 1,\n",
      "          'indeed': 1,\n",
      "          'times': 1,\n",
      "          'owes': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'predecessor': 1,\n",
      "          'nwhat': 1,\n",
      "          'happen': 1,\n",
      "          'throughout': 1,\n",
      "          'telegraphed': 1,\n",
      "          'advance': 1,\n",
      "          'nhowever': 1,\n",
      "          'helps': 1,\n",
      "          'rise': 1,\n",
      "          'predictability': 1,\n",
      "          'mature': 1,\n",
      "          'develops': 1,\n",
      "          'nusually': 1,\n",
      "          'pictures': 1,\n",
      "          'shameless': 1,\n",
      "          'puppydog': 1,\n",
      "          'sort': 1,\n",
      "          'recent': 1,\n",
      "          'tom': 1,\n",
      "          'hanksmeg': 1,\n",
      "          'ryanstarrer': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'mail': 1,\n",
      "          'immediately': 1,\n",
      "          'pops': 1,\n",
      "          'mind': 1,\n",
      "          'grew': 1,\n",
      "          'characters': 1,\n",
      "          'plight': 1,\n",
      "          'starts': 1,\n",
      "          'noticably': 1,\n",
      "          'north': 1,\n",
      "          'meets': 1,\n",
      "          'massaging': 1,\n",
      "          'sequences': 1,\n",
      "          'strangely': 1,\n",
      "          'erotic': 1,\n",
      "          'maybe': 1,\n",
      "          'actual': 1,\n",
      "          'involvement': 1,\n",
      "          'quickly': 1,\n",
      "          'developed': 1,\n",
      "          'entertaining': 1,\n",
      "          'sweet': 1,\n",
      "          'clearly': 1,\n",
      "          'lot': 1,\n",
      "          'chemistry': 1,\n",
      "          'two': 1,\n",
      "          'nthese': 1,\n",
      "          'joyous': 1,\n",
      "          'moments': 1,\n",
      "          'early': 1,\n",
      "          'balanced': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'seriously': 1,\n",
      "          'tested': 1,\n",
      "          'due': 1,\n",
      "          'contrast': 1,\n",
      "          'styles': 1,\n",
      "          'completely': 1,\n",
      "          'used': 1,\n",
      "          'comforting': 1,\n",
      "          'peaceful': 1,\n",
      "          'eventful': 1,\n",
      "          'big': 1,\n",
      "          'city': 1,\n",
      "          'major': 1,\n",
      "          'compliment': 1,\n",
      "          'must': 1,\n",
      "          'nearly': 1,\n",
      "          'flawless': 1,\n",
      "          'across': 1,\n",
      "          'board': 1,\n",
      "          'nval': 1,\n",
      "          'cast': 1,\n",
      "          'macho': 1,\n",
      "          'believable': 1,\n",
      "          'person': 1,\n",
      "          'playing': 1,\n",
      "          'probably': 1,\n",
      "          'tricky': 1,\n",
      "          'appears': 1,\n",
      "          'nit': 1,\n",
      "          'someone': 1,\n",
      "          'pity': 1,\n",
      "          'sympathize': 1,\n",
      "          'pulled': 1,\n",
      "          'nmira': 1,\n",
      "          'spectacular': 1,\n",
      "          'debuting': 1,\n",
      "          'splash': 1,\n",
      "          '1995s': 1,\n",
      "          'hilarious': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'comedy': 1,\n",
      "          'mighty': 1,\n",
      "          'aphrodite': 1,\n",
      "          'welldeserved': 1,\n",
      "          'oscar': 1,\n",
      "          'kindhearted': 1,\n",
      "          'ditzy': 1,\n",
      "          'hooker': 1,\n",
      "          'standout': 1,\n",
      "          'nalthough': 1,\n",
      "          'mediocre': 1,\n",
      "          'choices': 1,\n",
      "          '1997s': 1,\n",
      "          'mimic': 1,\n",
      "          '1998s': 1,\n",
      "          'replacement': 1,\n",
      "          'killers': 1,\n",
      "          'managed': 1,\n",
      "          'unscathed': 1,\n",
      "          'another': 1,\n",
      "          'juicy': 1,\n",
      "          'truthful': 1,\n",
      "          'climactic': 1,\n",
      "          'scene': 1,\n",
      "          'set': 1,\n",
      "          'proves': 1,\n",
      "          'gifted': 1,\n",
      "          'young': 1,\n",
      "          'actresses': 1,\n",
      "          'around': 1,\n",
      "          'today': 1,\n",
      "          'flare': 1,\n",
      "          'comedic': 1,\n",
      "          'dramatic': 1,\n",
      "          'pieces': 1,\n",
      "          'nkelly': 1,\n",
      "          'could': 1,\n",
      "          'onedimensional': 1,\n",
      "          'instead': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'multifaceted': 1,\n",
      "          'woman': 1,\n",
      "          'may': 1,\n",
      "          'overly': 1,\n",
      "          'protective': 1,\n",
      "          'cares': 1,\n",
      "          'brother': 1,\n",
      "          'nfinally': 1,\n",
      "          'nathan': 1,\n",
      "          'lane': 1,\n",
      "          'overthetop': 1,\n",
      "          'appropriately': 1,\n",
      "          'restrained': 1,\n",
      "          'vision': 1,\n",
      "          'therapist': 1,\n",
      "          'misstep': 1,\n",
      "          'treatment': 1,\n",
      "          'medical': 1,\n",
      "          'procedure': 1,\n",
      "          'nvery': 1,\n",
      "          'ever': 1,\n",
      "          'said': 1,\n",
      "          'discussed': 1,\n",
      "          'concerning': 1,\n",
      "          'occurs': 1,\n",
      "          'briefly': 1,\n",
      "          'glimpsed': 1,\n",
      "          'impossible': 1,\n",
      "          'see': 1,\n",
      "          'eyes': 1,\n",
      "          'nperhaps': 1,\n",
      "          'reason': 1,\n",
      "          'aspect': 1,\n",
      "          'indepth': 1,\n",
      "          'makers': 1,\n",
      "          'afraid': 1,\n",
      "          'gross': 1,\n",
      "          'audiences': 1,\n",
      "          'personally': 1,\n",
      "          'realism': 1,\n",
      "          'graphic': 1,\n",
      "          'day': 1,\n",
      "          'giving': 1,\n",
      "          'explanation': 1,\n",
      "          'cold': 1,\n",
      "          'shoulder': 1,\n",
      "          'patients': 1,\n",
      "          'illness': 1,\n",
      "          'far': 1,\n",
      "          'satisfyingly': 1,\n",
      "          'portrayed': 1,\n",
      "          'nbecause': 1,\n",
      "          'screenplay': 1,\n",
      "          'written': 1,\n",
      "          'steve': 1,\n",
      "          'levitt': 1,\n",
      "          'deals': 1,\n",
      "          'main': 1,\n",
      "          'fabulous': 1,\n",
      "          'films': 1,\n",
      "          'swept': 1,\n",
      "          'side': 1,\n",
      "          'adult': 1,\n",
      "          'romance': 1,\n",
      "          'depicted': 1,\n",
      "          'director': 1,\n",
      "          'doubt': 1,\n",
      "          'respect': 1,\n",
      "          'reallife': 1,\n",
      "          'couple': 1,\n",
      "          'together': 1,\n",
      "          'setting': 1,\n",
      "          'changed': 1,\n",
      "          'january': 1,\n",
      "          'dumping': 1,\n",
      "          'ground': 1,\n",
      "          'movies': 1,\n",
      "          'refreshing': 1,\n",
      "          'sophisticated': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'chad': 14,\n",
      "          'film': 8,\n",
      "          'christine': 7,\n",
      "          'men': 6,\n",
      "          'office': 6,\n",
      "          'howard': 6,\n",
      "          'nthe': 5,\n",
      "          'us': 5,\n",
      "          'may': 4,\n",
      "          'company': 3,\n",
      "          'nit': 3,\n",
      "          'nchad': 3,\n",
      "          'nhoward': 3,\n",
      "          'one': 3,\n",
      "          'loves': 3,\n",
      "          'allegory': 3,\n",
      "          'year': 2,\n",
      "          'outside': 2,\n",
      "          'think': 2,\n",
      "          'eckhart': 2,\n",
      "          'two': 2,\n",
      "          'corporate': 2,\n",
      "          'branch': 2,\n",
      "          'find': 2,\n",
      "          'golden': 2,\n",
      "          'boy': 2,\n",
      "          'chads': 2,\n",
      "          'nwe': 2,\n",
      "          'nthere': 2,\n",
      "          'woman': 2,\n",
      "          'easy': 2,\n",
      "          'route': 2,\n",
      "          'little': 2,\n",
      "          'dignity': 2,\n",
      "          'edwards': 2,\n",
      "          'temp': 2,\n",
      "          'smile': 2,\n",
      "          'since': 2,\n",
      "          'social': 2,\n",
      "          'level': 2,\n",
      "          'nhis': 2,\n",
      "          'coworkers': 2,\n",
      "          'humiliates': 2,\n",
      "          'works': 2,\n",
      "          'real': 2,\n",
      "          'happen': 2,\n",
      "          'go': 2,\n",
      "          'walk': 2,\n",
      "          'best': 2,\n",
      "          'black': 2,\n",
      "          'functions': 2,\n",
      "          'moment': 2,\n",
      "          'world': 2,\n",
      "          'script': 2,\n",
      "          'nbut': 2,\n",
      "          'work': 2,\n",
      "          'well': 2,\n",
      "          'end': 2,\n",
      "          'made': 1,\n",
      "          'splash': 1,\n",
      "          'sundance': 1,\n",
      "          'festival': 1,\n",
      "          'plagued': 1,\n",
      "          'brothers': 1,\n",
      "          'mcmullenstyle': 1,\n",
      "          'earnestly': 1,\n",
      "          'shallow': 1,\n",
      "          'genx': 1,\n",
      "          'angst': 1,\n",
      "          'pictures': 1,\n",
      "          'seemed': 1,\n",
      "          'actually': 1,\n",
      "          'something': 1,\n",
      "          'angered': 1,\n",
      "          'people': 1,\n",
      "          'started': 1,\n",
      "          'arguments': 1,\n",
      "          'theater': 1,\n",
      "          'riled': 1,\n",
      "          'things': 1,\n",
      "          'ignited': 1,\n",
      "          'spark': 1,\n",
      "          'excitement': 1,\n",
      "          'otherwise': 1,\n",
      "          'disappointing': 1,\n",
      "          'independent': 1,\n",
      "          'nhaving': 1,\n",
      "          'endured': 1,\n",
      "          'share': 1,\n",
      "          'hype': 1,\n",
      "          'waited': 1,\n",
      "          'calmly': 1,\n",
      "          'reach': 1,\n",
      "          'hinterlands': 1,\n",
      "          'wherein': 1,\n",
      "          'reside': 1,\n",
      "          'checked': 1,\n",
      "          'see': 1,\n",
      "          'fuss': 1,\n",
      "          'ndoes': 1,\n",
      "          'live': 1,\n",
      "          'press': 1,\n",
      "          'nwell': 1,\n",
      "          'yes': 1,\n",
      "          'nand': 1,\n",
      "          'make': 1,\n",
      "          'twice': 1,\n",
      "          'consider': 1,\n",
      "          'dating': 1,\n",
      "          'anyone': 1,\n",
      "          'nfor': 1,\n",
      "          'uninitiated': 1,\n",
      "          'newcomers': 1,\n",
      "          'aaron': 1,\n",
      "          'matt': 1,\n",
      "          'malloy': 1,\n",
      "          'play': 1,\n",
      "          'drones': 1,\n",
      "          'dispatched': 1,\n",
      "          'nameless': 1,\n",
      "          'remote': 1,\n",
      "          'six': 1,\n",
      "          'week': 1,\n",
      "          'assignment': 1,\n",
      "          'archetypes': 1,\n",
      "          'examples': 1,\n",
      "          'doubt': 1,\n",
      "          'place': 1,\n",
      "          'business': 1,\n",
      "          'blond': 1,\n",
      "          'genetically': 1,\n",
      "          'engineered': 1,\n",
      "          'success': 1,\n",
      "          'natural': 1,\n",
      "          'charmer': 1,\n",
      "          'seems': 1,\n",
      "          'glide': 1,\n",
      "          'effortlessly': 1,\n",
      "          'ladder': 1,\n",
      "          'boss': 1,\n",
      "          'weaker': 1,\n",
      "          'clumsy': 1,\n",
      "          'practitioner': 1,\n",
      "          'politics': 1,\n",
      "          'achieved': 1,\n",
      "          'position': 1,\n",
      "          'dogged': 1,\n",
      "          'persistence': 1,\n",
      "          'rather': 1,\n",
      "          'raw': 1,\n",
      "          'talent': 1,\n",
      "          'first': 1,\n",
      "          'meet': 1,\n",
      "          'awaiting': 1,\n",
      "          'flight': 1,\n",
      "          'drab': 1,\n",
      "          'airport': 1,\n",
      "          'lounge': 1,\n",
      "          'suggests': 1,\n",
      "          'scheme': 1,\n",
      "          'worthy': 1,\n",
      "          'shakespearean': 1,\n",
      "          'villain': 1,\n",
      "          'vulnerable': 1,\n",
      "          'single': 1,\n",
      "          'woo': 1,\n",
      "          'simultaneously': 1,\n",
      "          'win': 1,\n",
      "          'love': 1,\n",
      "          'dump': 1,\n",
      "          'reason': 1,\n",
      "          'nboth': 1,\n",
      "          'recently': 1,\n",
      "          'dumped': 1,\n",
      "          'sees': 1,\n",
      "          'revenge': 1,\n",
      "          'fairer': 1,\n",
      "          'sex': 1,\n",
      "          'n': 1,\n",
      "          'itll': 1,\n",
      "          'restore': 1,\n",
      "          'lives': 1,\n",
      "          'says': 1,\n",
      "          'helpless': 1,\n",
      "          'force': 1,\n",
      "          'agrees': 1,\n",
      "          'plan': 1,\n",
      "          'nthey': 1,\n",
      "          'quickly': 1,\n",
      "          'spot': 1,\n",
      "          'prey': 1,\n",
      "          'form': 1,\n",
      "          'stacy': 1,\n",
      "          'fragile': 1,\n",
      "          'deaf': 1,\n",
      "          'working': 1,\n",
      "          'moves': 1,\n",
      "          'kill': 1,\n",
      "          'flashing': 1,\n",
      "          'plying': 1,\n",
      "          'lunch': 1,\n",
      "          'flowers': 1,\n",
      "          'dinner': 1,\n",
      "          'follows': 1,\n",
      "          'suit': 1,\n",
      "          'though': 1,\n",
      "          'efforts': 1,\n",
      "          'contrast': 1,\n",
      "          'hamhanded': 1,\n",
      "          'desperate': 1,\n",
      "          'nflattered': 1,\n",
      "          'attention': 1,\n",
      "          'eligible': 1,\n",
      "          'dates': 1,\n",
      "          'nyou': 1,\n",
      "          'guess': 1,\n",
      "          'falls': 1,\n",
      "          'nsoon': 1,\n",
      "          'tragic': 1,\n",
      "          'lovers': 1,\n",
      "          'triangle': 1,\n",
      "          'develops': 1,\n",
      "          'grounds': 1,\n",
      "          'shes': 1,\n",
      "          'handicapped': 1,\n",
      "          'shy': 1,\n",
      "          'might': 1,\n",
      "          'wretched': 1,\n",
      "          'lonely': 1,\n",
      "          'enough': 1,\n",
      "          'settle': 1,\n",
      "          'nadult': 1,\n",
      "          'interaction': 1,\n",
      "          'never': 1,\n",
      "          'really': 1,\n",
      "          'progresses': 1,\n",
      "          'beyond': 1,\n",
      "          'junior': 1,\n",
      "          'high': 1,\n",
      "          'nin': 1,\n",
      "          'writerdirector': 1,\n",
      "          'labute': 1,\n",
      "          'actor': 1,\n",
      "          'created': 1,\n",
      "          'chilling': 1,\n",
      "          'monsters': 1,\n",
      "          'ever': 1,\n",
      "          'committed': 1,\n",
      "          'filmhannibal': 1,\n",
      "          'lector': 1,\n",
      "          'eat': 1,\n",
      "          'human': 1,\n",
      "          'flesh': 1,\n",
      "          'eater': 1,\n",
      "          'souls': 1,\n",
      "          'evil': 1,\n",
      "          'subtle': 1,\n",
      "          'vipers': 1,\n",
      "          'watch': 1,\n",
      "          'stunned': 1,\n",
      "          'disbelief': 1,\n",
      "          'backstabs': 1,\n",
      "          'subordinates': 1,\n",
      "          'deadly': 1,\n",
      "          'venom': 1,\n",
      "          'christines': 1,\n",
      "          'heart': 1,\n",
      "          'character': 1,\n",
      "          'would': 1,\n",
      "          'joke': 1,\n",
      "          'wasnt': 1,\n",
      "          'chillingly': 1,\n",
      "          'worked': 1,\n",
      "          'nhes': 1,\n",
      "          'guy': 1,\n",
      "          'takes': 1,\n",
      "          'job': 1,\n",
      "          'laughs': 1,\n",
      "          'weakness': 1,\n",
      "          'nif': 1,\n",
      "          'postal': 1,\n",
      "          'bag': 1,\n",
      "          'full': 1,\n",
      "          'handguns': 1,\n",
      "          'escape': 1,\n",
      "          'clearly': 1,\n",
      "          'mind': 1,\n",
      "          'npolitics': 1,\n",
      "          'game': 1,\n",
      "          'modern': 1,\n",
      "          'cubiclefilled': 1,\n",
      "          'playground': 1,\n",
      "          'nmen': 1,\n",
      "          'wears': 1,\n",
      "          'guise': 1,\n",
      "          'comedy': 1,\n",
      "          'controversial': 1,\n",
      "          'happens': 1,\n",
      "          'asking': 1,\n",
      "          'badly': 1,\n",
      "          'wants': 1,\n",
      "          'succeed': 1,\n",
      "          'forces': 1,\n",
      "          'prove': 1,\n",
      "          'manner': 1,\n",
      "          'wont': 1,\n",
      "          'describe': 1,\n",
      "          'scene': 1,\n",
      "          'charged': 1,\n",
      "          'racism': 1,\n",
      "          'fraught': 1,\n",
      "          'peril': 1,\n",
      "          'ncould': 1,\n",
      "          'nprobably': 1,\n",
      "          'ntaken': 1,\n",
      "          'however': 1,\n",
      "          'representative': 1,\n",
      "          'treatment': 1,\n",
      "          'meek': 1,\n",
      "          'powerful': 1,\n",
      "          'facets': 1,\n",
      "          'society': 1,\n",
      "          'nmaybe': 1,\n",
      "          'english': 1,\n",
      "          'major': 1,\n",
      "          'motiveless': 1,\n",
      "          'cruelty': 1,\n",
      "          'towards': 1,\n",
      "          'careful': 1,\n",
      "          'manipulation': 1,\n",
      "          'seen': 1,\n",
      "          'symbol': 1,\n",
      "          'unbridled': 1,\n",
      "          'capitalism': 1,\n",
      "          'greed': 1,\n",
      "          'without': 1,\n",
      "          'conscience': 1,\n",
      "          'entire': 1,\n",
      "          'metaphor': 1,\n",
      "          'darwinism': 1,\n",
      "          'strong': 1,\n",
      "          'survive': 1,\n",
      "          'marvel': 1,\n",
      "          'labutes': 1,\n",
      "          'multilayered': 1,\n",
      "          'disturb': 1,\n",
      "          'member': 1,\n",
      "          'audience': 1,\n",
      "          'entirely': 1,\n",
      "          'different': 1,\n",
      "          'way': 1,\n",
      "          'entertainment': 1,\n",
      "          'nits': 1,\n",
      "          'darned': 1,\n",
      "          'funny': 1,\n",
      "          'spots': 1,\n",
      "          'particularly': 1,\n",
      "          'mens': 1,\n",
      "          'room': 1,\n",
      "          'scenes': 1,\n",
      "          'demonstrate': 1,\n",
      "          'lengths': 1,\n",
      "          'guys': 1,\n",
      "          'hold': 1,\n",
      "          'conversation': 1,\n",
      "          'engaged': 1,\n",
      "          'basic': 1,\n",
      "          'bodily': 1,\n",
      "          'less': 1,\n",
      "          'drama': 1,\n",
      "          'necessity': 1,\n",
      "          'characters': 1,\n",
      "          'tend': 1,\n",
      "          'flat': 1,\n",
      "          'ciphers': 1,\n",
      "          'nstacy': 1,\n",
      "          'gives': 1,\n",
      "          'measured': 1,\n",
      "          'succeeds': 1,\n",
      "          'making': 1,\n",
      "          'care': 1,\n",
      "          'still': 1,\n",
      "          'know': 1,\n",
      "          'nothing': 1,\n",
      "          'nlikewise': 1,\n",
      "          'simply': 1,\n",
      "          'sum': 1,\n",
      "          'actions': 1,\n",
      "          'nby': 1,\n",
      "          'youll': 1,\n",
      "          'feel': 1,\n",
      "          'youve': 1,\n",
      "          'met': 1,\n",
      "          'genuine': 1,\n",
      "          'monster': 1,\n",
      "          'perhaps': 1,\n",
      "          'also': 1,\n",
      "          'classify': 1,\n",
      "          'horror': 1,\n",
      "          'ncertainly': 1,\n",
      "          'expecting': 1,\n",
      "          'conventional': 1,\n",
      "          'hollywood': 1,\n",
      "          'resolution': 1,\n",
      "          'story': 1,\n",
      "          'away': 1,\n",
      "          'disappointed': 1,\n",
      "          'picture': 1,\n",
      "          'often': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'fine': 1,\n",
      "          'craftsmanship': 1,\n",
      "          'makes': 1,\n",
      "          'worth': 1,\n",
      "          'time': 1,\n",
      "          'nlike': 1,\n",
      "          'good': 1,\n",
      "          'films': 1,\n",
      "          'offers': 1,\n",
      "          'myriad': 1,\n",
      "          'parallels': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'triumph': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'bill': 1,\n",
      "          'gates': 1,\n",
      "          'must': 1,\n",
      "          'felt': 1,\n",
      "          'sort': 1,\n",
      "          'cold': 1,\n",
      "          'merciless': 1,\n",
      "          'satisfaction': 1,\n",
      "          'finally': 1,\n",
      "          'stuck': 1,\n",
      "          'steve': 1,\n",
      "          'jobs': 1,\n",
      "          'bit': 1,\n",
      "          'taken': 1,\n",
      "          'chadness': 1,\n",
      "          'art': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'good': 9,\n",
      "          'quaid': 6,\n",
      "          'mars': 6,\n",
      "          'nthe': 5,\n",
      "          'none': 4,\n",
      "          'played': 4,\n",
      "          'film': 4,\n",
      "          'goes': 4,\n",
      "          'action': 4,\n",
      "          'bad': 4,\n",
      "          'schwarzenegger': 3,\n",
      "          'wife': 3,\n",
      "          'plot': 3,\n",
      "          'nquaid': 3,\n",
      "          'cohagen': 3,\n",
      "          'air': 3,\n",
      "          'like': 3,\n",
      "          'pretty': 3,\n",
      "          'getting': 3,\n",
      "          'nbut': 3,\n",
      "          'course': 3,\n",
      "          'guys': 3,\n",
      "          'great': 3,\n",
      "          'red': 2,\n",
      "          'two': 2,\n",
      "          'face': 2,\n",
      "          'wakes': 2,\n",
      "          'nhe': 2,\n",
      "          'next': 2,\n",
      "          'beautiful': 2,\n",
      "          'recall': 2,\n",
      "          'never': 2,\n",
      "          'planet': 2,\n",
      "          'hes': 2,\n",
      "          'called': 2,\n",
      "          'rekall': 2,\n",
      "          'agent': 2,\n",
      "          'really': 2,\n",
      "          'wrong': 2,\n",
      "          'minutes': 2,\n",
      "          'normal': 2,\n",
      "          'cant': 2,\n",
      "          'remember': 2,\n",
      "          'thing': 2,\n",
      "          'knows': 2,\n",
      "          'gets': 2,\n",
      "          'rebels': 2,\n",
      "          'yet': 2,\n",
      "          'reactor': 2,\n",
      "          'deaths': 2,\n",
      "          'lot': 2,\n",
      "          'death': 2,\n",
      "          'sex': 2,\n",
      "          'movie': 2,\n",
      "          'heads': 2,\n",
      "          'violent': 2,\n",
      "          'useless': 2,\n",
      "          'even': 2,\n",
      "          'hero': 2,\n",
      "          'poor': 2,\n",
      "          'end': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'work': 2,\n",
      "          'model': 2,\n",
      "          'look': 2,\n",
      "          'hugely': 2,\n",
      "          'booming': 1,\n",
      "          'introduction': 1,\n",
      "          'music': 1,\n",
      "          'finishes': 1,\n",
      "          'camera': 1,\n",
      "          'sweeps': 1,\n",
      "          'mountains': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'figures': 1,\n",
      "          'looking': 1,\n",
      "          'barren': 1,\n",
      "          'landscape': 1,\n",
      "          'nthey': 1,\n",
      "          'kiss': 1,\n",
      "          'walk': 1,\n",
      "          'characters': 1,\n",
      "          'slips': 1,\n",
      "          'falls': 1,\n",
      "          'glass': 1,\n",
      "          'mask': 1,\n",
      "          'cracks': 1,\n",
      "          'nhis': 1,\n",
      "          'scruches': 1,\n",
      "          'eyes': 1,\n",
      "          'begin': 1,\n",
      "          'pop': 1,\n",
      "          'nthen': 1,\n",
      "          'doug': 1,\n",
      "          'nits': 1,\n",
      "          'dream': 1,\n",
      "          'stone': 1,\n",
      "          'begins': 1,\n",
      "          'ntotal': 1,\n",
      "          'typical': 1,\n",
      "          'scifi': 1,\n",
      "          'wrapped': 1,\n",
      "          'around': 1,\n",
      "          'intresting': 1,\n",
      "          'far': 1,\n",
      "          'fetched': 1,\n",
      "          'keeps': 1,\n",
      "          'dreams': 1,\n",
      "          'colanised': 1,\n",
      "          'day': 1,\n",
      "          'riding': 1,\n",
      "          'train': 1,\n",
      "          'sees': 1,\n",
      "          'ad': 1,\n",
      "          'company': 1,\n",
      "          'implants': 1,\n",
      "          'memories': 1,\n",
      "          'holiday': 1,\n",
      "          'instead': 1,\n",
      "          'actually': 1,\n",
      "          'going': 1,\n",
      "          'chooses': 1,\n",
      "          'secret': 1,\n",
      "          'memory': 1,\n",
      "          'hits': 1,\n",
      "          'fan': 1,\n",
      "          'implant': 1,\n",
      "          'thinks': 1,\n",
      "          'back': 1,\n",
      "          'nhowever': 1,\n",
      "          'everyone': 1,\n",
      "          'workmates': 1,\n",
      "          'turn': 1,\n",
      "          'saying': 1,\n",
      "          'blabbed': 1,\n",
      "          'blew': 1,\n",
      "          'cover': 1,\n",
      "          'mission': 1,\n",
      "          'strange': 1,\n",
      "          'man': 1,\n",
      "          'richter': 1,\n",
      "          'ironside': 1,\n",
      "          'wants': 1,\n",
      "          'kill': 1,\n",
      "          'hopelessly': 1,\n",
      "          'confused': 1,\n",
      "          'follows': 1,\n",
      "          'advice': 1,\n",
      "          'given': 1,\n",
      "          'friend': 1,\n",
      "          'ass': 1,\n",
      "          'nmars': 1,\n",
      "          'ruled': 1,\n",
      "          'cox': 1,\n",
      "          'charges': 1,\n",
      "          'people': 1,\n",
      "          'nagainst': 1,\n",
      "          'mainly': 1,\n",
      "          'mutants': 1,\n",
      "          'need': 1,\n",
      "          'defeat': 1,\n",
      "          'produces': 1,\n",
      "          'neventually': 1,\n",
      "          'kills': 1,\n",
      "          'turns': 1,\n",
      "          'saves': 1,\n",
      "          'away': 1,\n",
      "          'girl': 1,\n",
      "          'guy': 1,\n",
      "          'promised': 1,\n",
      "          'nthroughout': 1,\n",
      "          'huge': 1,\n",
      "          'explosions': 1,\n",
      "          'thousands': 1,\n",
      "          'mean': 1,\n",
      "          'swearing': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'makes': 1,\n",
      "          'verhoeven': 1,\n",
      "          'director': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'nnaturally': 1,\n",
      "          'theres': 1,\n",
      "          'imaginative': 1,\n",
      "          'arms': 1,\n",
      "          'ripped': 1,\n",
      "          'someone': 1,\n",
      "          'drilled': 1,\n",
      "          'exploding': 1,\n",
      "          'nas': 1,\n",
      "          'tell': 1,\n",
      "          'stuff': 1,\n",
      "          'done': 1,\n",
      "          'stylishly': 1,\n",
      "          'arnie': 1,\n",
      "          'tones': 1,\n",
      "          'one': 1,\n",
      "          'liner': 1,\n",
      "          'thats': 1,\n",
      "          'excusable': 1,\n",
      "          'acting': 1,\n",
      "          'variable': 1,\n",
      "          'narnie': 1,\n",
      "          'lines': 1,\n",
      "          'first': 1,\n",
      "          'twenty': 1,\n",
      "          'acts': 1,\n",
      "          'bloke': 1,\n",
      "          'nstone': 1,\n",
      "          'making': 1,\n",
      "          'scenes': 1,\n",
      "          'alright': 1,\n",
      "          'nticoton': 1,\n",
      "          'recently': 1,\n",
      "          'seen': 1,\n",
      "          'con': 1,\n",
      "          'ok': 1,\n",
      "          'emotions': 1,\n",
      "          'minute': 1,\n",
      "          'hates': 1,\n",
      "          'loves': 1,\n",
      "          'tranisition': 1,\n",
      "          'right': 1,\n",
      "          'nso': 1,\n",
      "          'awful': 1,\n",
      "          'excellent': 1,\n",
      "          'ncox': 1,\n",
      "          'basically': 1,\n",
      "          'reprising': 1,\n",
      "          'robocop': 1,\n",
      "          'still': 1,\n",
      "          'delivers': 1,\n",
      "          'best': 1,\n",
      "          'line': 1,\n",
      "          'whole': 1,\n",
      "          'near': 1,\n",
      "          'nironside': 1,\n",
      "          'superbly': 1,\n",
      "          'evil': 1,\n",
      "          'utterly': 1,\n",
      "          'emotionless': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'fine': 1,\n",
      "          'comedy': 1,\n",
      "          'sidekick': 1,\n",
      "          'time': 1,\n",
      "          'form': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'annoying': 1,\n",
      "          'disappointing': 1,\n",
      "          'aspect': 1,\n",
      "          'though': 1,\n",
      "          'nilm': 1,\n",
      "          'dreamquest': 1,\n",
      "          'subway': 1,\n",
      "          'station': 1,\n",
      "          'scene': 1,\n",
      "          'nsome': 1,\n",
      "          'appaling': 1,\n",
      "          'fake': 1,\n",
      "          'quatto': 1,\n",
      "          'major': 1,\n",
      "          'disappointment': 1,\n",
      "          'nanother': 1,\n",
      "          'irritating': 1,\n",
      "          'product': 1,\n",
      "          'placement': 1,\n",
      "          'nthere': 1,\n",
      "          'plugs': 1,\n",
      "          'today': 1,\n",
      "          'gag': 1,\n",
      "          'however': 1,\n",
      "          'sets': 1,\n",
      "          'arent': 1,\n",
      "          'either': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'soundtrack': 1,\n",
      "          'running': 1,\n",
      "          'jerry': 1,\n",
      "          'goldsmith': 1,\n",
      "          'omen': 1,\n",
      "          'poltergeist': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'noverall': 1,\n",
      "          'total': 1,\n",
      "          'enjoyable': 1,\n",
      "          'fest': 1,\n",
      "          'reasonable': 1,\n",
      "          'thrown': 1,\n",
      "          'imaganitive': 1,\n",
      "          'nfor': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 8,\n",
      "          'sethe': 6,\n",
      "          'book': 5,\n",
      "          'film': 5,\n",
      "          'beloved': 5,\n",
      "          'sethes': 5,\n",
      "          'ghost': 5,\n",
      "          'novel': 4,\n",
      "          'morrisons': 4,\n",
      "          'story': 4,\n",
      "          'nthe': 4,\n",
      "          'years': 4,\n",
      "          'woman': 4,\n",
      "          'films': 4,\n",
      "          'end': 3,\n",
      "          'know': 3,\n",
      "          'denver': 3,\n",
      "          'paul': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'demme': 3,\n",
      "          'role': 3,\n",
      "          'suggs': 3,\n",
      "          '_the': 3,\n",
      "          'demmes': 2,\n",
      "          '_beloved_': 2,\n",
      "          'non': 2,\n",
      "          'hand': 2,\n",
      "          'storys': 2,\n",
      "          'nthis': 2,\n",
      "          'choice': 2,\n",
      "          'much': 2,\n",
      "          'long': 2,\n",
      "          'n_beloved_': 2,\n",
      "          'takes': 2,\n",
      "          'nfor': 2,\n",
      "          'slave': 2,\n",
      "          'escaped': 2,\n",
      "          'kentucky': 2,\n",
      "          'farmhouse': 2,\n",
      "          'terror': 2,\n",
      "          'would': 2,\n",
      "          'family': 2,\n",
      "          'across': 2,\n",
      "          'run': 2,\n",
      "          'daughter': 2,\n",
      "          'take': 2,\n",
      "          'ghosts': 2,\n",
      "          'glover': 2,\n",
      "          'house': 2,\n",
      "          'later': 2,\n",
      "          'doesnt': 2,\n",
      "          'nas': 2,\n",
      "          'fact': 2,\n",
      "          'nsethe': 2,\n",
      "          'least': 2,\n",
      "          'newton': 2,\n",
      "          'appears': 2,\n",
      "          'eighteen': 2,\n",
      "          'make': 2,\n",
      "          'baby': 2,\n",
      "          'used': 2,\n",
      "          'viewer': 2,\n",
      "          'movie': 2,\n",
      "          'like': 2,\n",
      "          'jonathan': 1,\n",
      "          'based': 1,\n",
      "          'toni': 1,\n",
      "          'morrison': 1,\n",
      "          'study': 1,\n",
      "          'skillful': 1,\n",
      "          'literary': 1,\n",
      "          'adaptation': 1,\n",
      "          'manages': 1,\n",
      "          'recreate': 1,\n",
      "          'key': 1,\n",
      "          'moments': 1,\n",
      "          'evoking': 1,\n",
      "          'pragmatic': 1,\n",
      "          'narrative': 1,\n",
      "          'style': 1,\n",
      "          'without': 1,\n",
      "          'using': 1,\n",
      "          'authorial': 1,\n",
      "          'voice': 1,\n",
      "          'omits': 1,\n",
      "          'finer': 1,\n",
      "          'details': 1,\n",
      "          'favoring': 1,\n",
      "          'ambiguously': 1,\n",
      "          'defined': 1,\n",
      "          'back': 1,\n",
      "          'upon': 1,\n",
      "          'build': 1,\n",
      "          'main': 1,\n",
      "          'events': 1,\n",
      "          'smartly': 1,\n",
      "          'made': 1,\n",
      "          'creates': 1,\n",
      "          'open': 1,\n",
      "          'space': 1,\n",
      "          'wide': 1,\n",
      "          'range': 1,\n",
      "          'emotions': 1,\n",
      "          'gestate': 1,\n",
      "          'grow': 1,\n",
      "          'nindeed': 1,\n",
      "          'impact': 1,\n",
      "          'protracted': 1,\n",
      "          'felt': 1,\n",
      "          'credits': 1,\n",
      "          'rolled': 1,\n",
      "          'place': 1,\n",
      "          'second': 1,\n",
      "          'half': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'socalled': 1,\n",
      "          'reconstruction': 1,\n",
      "          'era': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'newlyfreed': 1,\n",
      "          'slaves': 1,\n",
      "          'time': 1,\n",
      "          'confusion': 1,\n",
      "          'turmoil': 1,\n",
      "          'noprah': 1,\n",
      "          'winfrey': 1,\n",
      "          'plantation': 1,\n",
      "          'took': 1,\n",
      "          'children': 1,\n",
      "          'ohio': 1,\n",
      "          'hoped': 1,\n",
      "          'nwhat': 1,\n",
      "          'follow': 1,\n",
      "          'remain': 1,\n",
      "          'physical': 1,\n",
      "          'threat': 1,\n",
      "          'vanished': 1,\n",
      "          'ultimately': 1,\n",
      "          'tells': 1,\n",
      "          'search': 1,\n",
      "          'forgiveness': 1,\n",
      "          'longhampered': 1,\n",
      "          'unforgettable': 1,\n",
      "          'sin': 1,\n",
      "          'starts': 1,\n",
      "          'dreary': 1,\n",
      "          'day': 1,\n",
      "          'ten': 1,\n",
      "          'escape': 1,\n",
      "          'violent': 1,\n",
      "          'unseen': 1,\n",
      "          'energy': 1,\n",
      "          'rocks': 1,\n",
      "          'dilapidated': 1,\n",
      "          'ninvisible': 1,\n",
      "          'hands': 1,\n",
      "          'terrorize': 1,\n",
      "          'flinging': 1,\n",
      "          'objects': 1,\n",
      "          'rooms': 1,\n",
      "          'shaking': 1,\n",
      "          'tables': 1,\n",
      "          'rattling': 1,\n",
      "          'floorboards': 1,\n",
      "          'nsethes': 1,\n",
      "          'sons': 1,\n",
      "          'away': 1,\n",
      "          'perhaps': 1,\n",
      "          'good': 1,\n",
      "          'leaving': 1,\n",
      "          'fend': 1,\n",
      "          'ndemmes': 1,\n",
      "          'matteroffact': 1,\n",
      "          'handling': 1,\n",
      "          'supernatural': 1,\n",
      "          'element': 1,\n",
      "          '_beloved_s': 1,\n",
      "          'intriguing': 1,\n",
      "          'aspects': 1,\n",
      "          'nall': 1,\n",
      "          'characters': 1,\n",
      "          'granted': 1,\n",
      "          'real': 1,\n",
      "          'nwhen': 1,\n",
      "          'danny': 1,\n",
      "          'former': 1,\n",
      "          'along': 1,\n",
      "          'arrives': 1,\n",
      "          'eight': 1,\n",
      "          'confronted': 1,\n",
      "          'hellish': 1,\n",
      "          'visions': 1,\n",
      "          'ninstead': 1,\n",
      "          'asks': 1,\n",
      "          'quickly': 1,\n",
      "          'establishes': 1,\n",
      "          'horror': 1,\n",
      "          'come': 1,\n",
      "          'terrifying': 1,\n",
      "          'past': 1,\n",
      "          'created': 1,\n",
      "          'haunted': 1,\n",
      "          'fears': 1,\n",
      "          'nin': 1,\n",
      "          'reasons': 1,\n",
      "          'chooses': 1,\n",
      "          'stay': 1,\n",
      "          'bizarre': 1,\n",
      "          'turn': 1,\n",
      "          'appearance': 1,\n",
      "          'thandie': 1,\n",
      "          'young': 1,\n",
      "          'blackclad': 1,\n",
      "          'front': 1,\n",
      "          'lawn': 1,\n",
      "          'leaned': 1,\n",
      "          'christlike': 1,\n",
      "          'tree': 1,\n",
      "          'stump': 1,\n",
      "          'immediately': 1,\n",
      "          'rasping': 1,\n",
      "          'try': 1,\n",
      "          'nurse': 1,\n",
      "          'health': 1,\n",
      "          'nthey': 1,\n",
      "          'matter': 1,\n",
      "          'nonly': 1,\n",
      "          'suspicious': 1,\n",
      "          'stranger': 1,\n",
      "          'nlittle': 1,\n",
      "          'bring': 1,\n",
      "          'many': 1,\n",
      "          'changes': 1,\n",
      "          'force': 1,\n",
      "          'release': 1,\n",
      "          'guilt': 1,\n",
      "          'held': 1,\n",
      "          'onto': 1,\n",
      "          'urgently': 1,\n",
      "          'nwinfrey': 1,\n",
      "          'arguably': 1,\n",
      "          'beloveds': 1,\n",
      "          'greatest': 1,\n",
      "          'asset': 1,\n",
      "          'nshe': 1,\n",
      "          'inhabits': 1,\n",
      "          'convincingly': 1,\n",
      "          'hard': 1,\n",
      "          'believe': 1,\n",
      "          'shines': 1,\n",
      "          'brightly': 1,\n",
      "          'tv': 1,\n",
      "          'talk': 1,\n",
      "          'show': 1,\n",
      "          'nlisa': 1,\n",
      "          'gay': 1,\n",
      "          'hamilton': 1,\n",
      "          'impressive': 1,\n",
      "          'job': 1,\n",
      "          'emotionally': 1,\n",
      "          'demanding': 1,\n",
      "          'younger': 1,\n",
      "          'whose': 1,\n",
      "          'appalling': 1,\n",
      "          'actions': 1,\n",
      "          'disturbed': 1,\n",
      "          'see': 1,\n",
      "          'ndanny': 1,\n",
      "          'affable': 1,\n",
      "          'sympathetic': 1,\n",
      "          'kimberly': 1,\n",
      "          'elise': 1,\n",
      "          'wanderlusting': 1,\n",
      "          'sagelike': 1,\n",
      "          'motherinlaw': 1,\n",
      "          'old': 1,\n",
      "          'beah': 1,\n",
      "          'richards': 1,\n",
      "          'authoritatively': 1,\n",
      "          'commands': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'palatable': 1,\n",
      "          'casting': 1,\n",
      "          'unfortunately': 1,\n",
      "          'nthandie': 1,\n",
      "          'plays': 1,\n",
      "          'glassyeyed': 1,\n",
      "          'girl': 1,\n",
      "          'demented': 1,\n",
      "          'fervor': 1,\n",
      "          'endearing': 1,\n",
      "          'first': 1,\n",
      "          'becomes': 1,\n",
      "          'offputting': 1,\n",
      "          'unintentionally': 1,\n",
      "          'laughable': 1,\n",
      "          'ndeparting': 1,\n",
      "          'honed': 1,\n",
      "          'aesthetic': 1,\n",
      "          'silence': 1,\n",
      "          'lambs_': 1,\n",
      "          '_melvin': 1,\n",
      "          'howard_': 1,\n",
      "          'director': 1,\n",
      "          'bit': 1,\n",
      "          'dramatic': 1,\n",
      "          'overstatement': 1,\n",
      "          'get': 1,\n",
      "          'vivid': 1,\n",
      "          'descriptions': 1,\n",
      "          'ntotemic': 1,\n",
      "          'camera': 1,\n",
      "          'shots': 1,\n",
      "          'colorsaturated': 1,\n",
      "          'scenery': 1,\n",
      "          'decidedly': 1,\n",
      "          'uncommon': 1,\n",
      "          'uses': 1,\n",
      "          'work': 1,\n",
      "          'benefit': 1,\n",
      "          'n_beloved_s': 1,\n",
      "          'memorable': 1,\n",
      "          'scenes': 1,\n",
      "          'gatherings': 1,\n",
      "          'forest': 1,\n",
      "          'clearing': 1,\n",
      "          'bright': 1,\n",
      "          'yellowgreens': 1,\n",
      "          'nature': 1,\n",
      "          'entrance': 1,\n",
      "          'words': 1,\n",
      "          'part': 1,\n",
      "          'though': 1,\n",
      "          'maintains': 1,\n",
      "          'trademark': 1,\n",
      "          'directorial': 1,\n",
      "          'neutrality': 1,\n",
      "          'combined': 1,\n",
      "          'equally': 1,\n",
      "          'frugal': 1,\n",
      "          'method': 1,\n",
      "          'storytelling': 1,\n",
      "          'may': 1,\n",
      "          'somewhat': 1,\n",
      "          'challenge': 1,\n",
      "          'watch': 1,\n",
      "          'even': 1,\n",
      "          'familiar': 1,\n",
      "          'nthough': 1,\n",
      "          'compliments': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'well': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'allowing': 1,\n",
      "          'sort': 1,\n",
      "          'accessibility': 1,\n",
      "          'usually': 1,\n",
      "          'expects': 1,\n",
      "          'nnothing': 1,\n",
      "          'spoonfed': 1,\n",
      "          'nmorrisons': 1,\n",
      "          'enigmatic': 1,\n",
      "          'unlike': 1,\n",
      "          'put': 1,\n",
      "          'allow': 1,\n",
      "          'various': 1,\n",
      "          'undercurrents': 1,\n",
      "          'themes': 1,\n",
      "          'churn': 1,\n",
      "          'absorb': 1,\n",
      "          'begins': 1,\n",
      "          '_poltergeist_': 1,\n",
      "          'ends': 1,\n",
      "          'color': 1,\n",
      "          'purple_': 1,\n",
      "          'shades': 1,\n",
      "          'scarlet': 1,\n",
      "          'letter_': 1,\n",
      "          '_little': 1,\n",
      "          'women_': 1,\n",
      "          'somewhere': 1,\n",
      "          'middle': 1,\n",
      "          'ntaken': 1,\n",
      "          'whole': 1,\n",
      "          'disquieting': 1,\n",
      "          'oneofakind': 1,\n",
      "          'experience': 1,\n",
      "          'viewed': 1,\n",
      "          'guards': 1,\n",
      "          'spirits': 1,\n",
      "          'abeyance': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'scream': 12,\n",
      "          '2': 9,\n",
      "          'movie': 6,\n",
      "          'original': 6,\n",
      "          'horror': 5,\n",
      "          'sidney': 5,\n",
      "          'theres': 4,\n",
      "          'two': 4,\n",
      "          'little': 4,\n",
      "          'stab': 4,\n",
      "          'dont': 3,\n",
      "          'one': 3,\n",
      "          'films': 3,\n",
      "          'craven': 3,\n",
      "          'david': 3,\n",
      "          'film': 3,\n",
      "          'features': 3,\n",
      "          'characters': 3,\n",
      "          'pinkett': 3,\n",
      "          'scenes': 3,\n",
      "          'go': 2,\n",
      "          'latest': 2,\n",
      "          'slasher': 2,\n",
      "          'nscream': 2,\n",
      "          'nthe': 2,\n",
      "          'surprise': 2,\n",
      "          'whose': 2,\n",
      "          'time': 2,\n",
      "          'na': 2,\n",
      "          'sequel': 2,\n",
      "          'williamson': 2,\n",
      "          'neve': 2,\n",
      "          'campbell': 2,\n",
      "          'courtney': 2,\n",
      "          'cox': 2,\n",
      "          'arquette': 2,\n",
      "          'jamie': 2,\n",
      "          'kennedy': 2,\n",
      "          'liev': 2,\n",
      "          'schreiber': 2,\n",
      "          'nas': 2,\n",
      "          'lot': 2,\n",
      "          'less': 2,\n",
      "          'ncraven': 2,\n",
      "          'second': 2,\n",
      "          'movies': 2,\n",
      "          'first': 2,\n",
      "          'picture': 2,\n",
      "          'prologue': 2,\n",
      "          'victims': 2,\n",
      "          'epps': 2,\n",
      "          'local': 2,\n",
      "          'addition': 2,\n",
      "          'boyfriend': 2,\n",
      "          'act': 2,\n",
      "          'played': 2,\n",
      "          'prescott': 2,\n",
      "          'see': 2,\n",
      "          'fun': 2,\n",
      "          'windsor': 2,\n",
      "          'college': 2,\n",
      "          'murder': 2,\n",
      "          'big': 2,\n",
      "          'last': 2,\n",
      "          'sorority': 2,\n",
      "          'sisters': 2,\n",
      "          'like': 2,\n",
      "          'could': 2,\n",
      "          'n': 2,\n",
      "          'end': 2,\n",
      "          'isnt': 1,\n",
      "          'quite': 1,\n",
      "          'clever': 1,\n",
      "          'predecessor': 1,\n",
      "          'fills': 1,\n",
      "          'gap': 1,\n",
      "          'cutting': 1,\n",
      "          'wit': 1,\n",
      "          'ndeath': 1,\n",
      "          'even': 1,\n",
      "          'gruesome': 1,\n",
      "          'bloody': 1,\n",
      "          'death': 1,\n",
      "          'funny': 1,\n",
      "          'handled': 1,\n",
      "          'right': 1,\n",
      "          'way': 1,\n",
      "          'offended': 1,\n",
      "          'statement': 1,\n",
      "          'need': 1,\n",
      "          'look': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'example': 1,\n",
      "          'nand': 1,\n",
      "          'plenty': 1,\n",
      "          'around': 1,\n",
      "          '90s': 1,\n",
      "          'flick': 1,\n",
      "          'incarnation': 1,\n",
      "          'also': 1,\n",
      "          'laughs': 1,\n",
      "          'sliceanddice': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'success': 1,\n",
      "          'took': 1,\n",
      "          'everyone': 1,\n",
      "          'industry': 1,\n",
      "          'unexpected': 1,\n",
      "          'blockbuster': 1,\n",
      "          'gross': 1,\n",
      "          'soared': 1,\n",
      "          '100': 1,\n",
      "          'million': 1,\n",
      "          'mark': 1,\n",
      "          'six': 1,\n",
      "          'month': 1,\n",
      "          'release': 1,\n",
      "          'window': 1,\n",
      "          'opened': 1,\n",
      "          'year': 1,\n",
      "          'ago': 1,\n",
      "          'turned': 1,\n",
      "          'profitable': 1,\n",
      "          'inevitable': 1,\n",
      "          'fortunately': 1,\n",
      "          'nearly': 1,\n",
      "          'entire': 1,\n",
      "          'creative': 1,\n",
      "          'team': 1,\n",
      "          'returned': 1,\n",
      "          'including': 1,\n",
      "          'director': 1,\n",
      "          'wes': 1,\n",
      "          'screenwriter': 1,\n",
      "          'kevin': 1,\n",
      "          'actors': 1,\n",
      "          'stipulated': 1,\n",
      "          'rules': 1,\n",
      "          'sequels': 1,\n",
      "          'uttered': 1,\n",
      "          'obsessed': 1,\n",
      "          'character': 1,\n",
      "          'body': 1,\n",
      "          'count': 1,\n",
      "          'higher': 1,\n",
      "          'nparadoxically': 1,\n",
      "          'gore': 1,\n",
      "          'nthere': 1,\n",
      "          'blood': 1,\n",
      "          'course': 1,\n",
      "          'nothing': 1,\n",
      "          'excessive': 1,\n",
      "          'slashermovie': 1,\n",
      "          'standards': 1,\n",
      "          'depictions': 1,\n",
      "          'spilled': 1,\n",
      "          'entrails': 1,\n",
      "          'remembered': 1,\n",
      "          'scares': 1,\n",
      "          'important': 1,\n",
      "          'graphic': 1,\n",
      "          'displays': 1,\n",
      "          'human': 1,\n",
      "          'insides': 1,\n",
      "          'bodily': 1,\n",
      "          'fluids': 1,\n",
      "          'strength': 1,\n",
      "          'gallery': 1,\n",
      "          'legitimate': 1,\n",
      "          'rather': 1,\n",
      "          'group': 1,\n",
      "          'cardboard': 1,\n",
      "          'cutout': 1,\n",
      "          'stereotypes': 1,\n",
      "          'lined': 1,\n",
      "          'slaughter': 1,\n",
      "          'nafter': 1,\n",
      "          'weve': 1,\n",
      "          'known': 1,\n",
      "          'people': 1,\n",
      "          'almost': 1,\n",
      "          'impossible': 1,\n",
      "          'care': 1,\n",
      "          'least': 1,\n",
      "          'opens': 1,\n",
      "          'approximately': 1,\n",
      "          'years': 1,\n",
      "          'slick': 1,\n",
      "          'selfmocking': 1,\n",
      "          'nthis': 1,\n",
      "          'jada': 1,\n",
      "          'omar': 1,\n",
      "          'visiting': 1,\n",
      "          'theater': 1,\n",
      "          'preview': 1,\n",
      "          'screening': 1,\n",
      "          'based': 1,\n",
      "          'true': 1,\n",
      "          'life': 1,\n",
      "          'events': 1,\n",
      "          'nsome': 1,\n",
      "          'smartest': 1,\n",
      "          'dialogue': 1,\n",
      "          'comes': 1,\n",
      "          'sequence': 1,\n",
      "          'bemoans': 1,\n",
      "          'lack': 1,\n",
      "          'african': 1,\n",
      "          'american': 1,\n",
      "          'participation': 1,\n",
      "          'surely': 1,\n",
      "          'coincidence': 1,\n",
      "          'black': 1,\n",
      "          'nshortly': 1,\n",
      "          'thereafter': 1,\n",
      "          'gutted': 1,\n",
      "          'signaling': 1,\n",
      "          'beginning': 1,\n",
      "          'series': 1,\n",
      "          'copycat': 1,\n",
      "          'murders': 1,\n",
      "          'lets': 1,\n",
      "          'loose': 1,\n",
      "          'burst': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'creativity': 1,\n",
      "          'within': 1,\n",
      "          'sequences': 1,\n",
      "          'nthey': 1,\n",
      "          'give': 1,\n",
      "          'opportunity': 1,\n",
      "          'openly': 1,\n",
      "          'parody': 1,\n",
      "          'accomplishes': 1,\n",
      "          'great': 1,\n",
      "          'panache': 1,\n",
      "          'nstab': 1,\n",
      "          'heather': 1,\n",
      "          'graham': 1,\n",
      "          'casey': 1,\n",
      "          'becker': 1,\n",
      "          'role': 1,\n",
      "          'drew': 1,\n",
      "          'barrymore': 1,\n",
      "          'tori': 1,\n",
      "          'spelling': 1,\n",
      "          'nsadly': 1,\n",
      "          'couple': 1,\n",
      "          'nit': 1,\n",
      "          'would': 1,\n",
      "          'think': 1,\n",
      "          'used': 1,\n",
      "          'joe': 1,\n",
      "          'dantes': 1,\n",
      "          'approach': 1,\n",
      "          'matinee': 1,\n",
      "          'shown': 1,\n",
      "          'lengthy': 1,\n",
      "          'excerpts': 1,\n",
      "          'satirical': 1,\n",
      "          'production': 1,\n",
      "          'nfollowing': 1,\n",
      "          'reintroduced': 1,\n",
      "          'left': 1,\n",
      "          'sleepy': 1,\n",
      "          'hometown': 1,\n",
      "          'nher': 1,\n",
      "          'friend': 1,\n",
      "          'randy': 1,\n",
      "          'student': 1,\n",
      "          'well': 1,\n",
      "          'hes': 1,\n",
      "          'knowledgeable': 1,\n",
      "          'ever': 1,\n",
      "          'nonce': 1,\n",
      "          'double': 1,\n",
      "          'becomes': 1,\n",
      "          'news': 1,\n",
      "          'media': 1,\n",
      "          'converges': 1,\n",
      "          'looking': 1,\n",
      "          'interview': 1,\n",
      "          'victim': 1,\n",
      "          'nat': 1,\n",
      "          'head': 1,\n",
      "          'flock': 1,\n",
      "          'vultures': 1,\n",
      "          'gale': 1,\n",
      "          'weathers': 1,\n",
      "          'nshe': 1,\n",
      "          'brought': 1,\n",
      "          'cotton': 1,\n",
      "          'weary': 1,\n",
      "          'man': 1,\n",
      "          'falsely': 1,\n",
      "          'accused': 1,\n",
      "          'nalso': 1,\n",
      "          'arriving': 1,\n",
      "          'deputy': 1,\n",
      "          'dewey': 1,\n",
      "          'brother': 1,\n",
      "          'round': 1,\n",
      "          'tribulations': 1,\n",
      "          'nin': 1,\n",
      "          'survivors': 1,\n",
      "          'field': 1,\n",
      "          'potential': 1,\n",
      "          'wellpopulated': 1,\n",
      "          'ntheres': 1,\n",
      "          'blond': 1,\n",
      "          'coed': 1,\n",
      "          'named': 1,\n",
      "          'cece': 1,\n",
      "          'sarah': 1,\n",
      "          'michelle': 1,\n",
      "          'gellar': 1,\n",
      "          'appeared': 1,\n",
      "          'williamsons': 1,\n",
      "          'know': 1,\n",
      "          'summer': 1,\n",
      "          'sidneys': 1,\n",
      "          'requisite': 1,\n",
      "          'derek': 1,\n",
      "          'jerry': 1,\n",
      "          'oconnell': 1,\n",
      "          'newswoman': 1,\n",
      "          'laurie': 1,\n",
      "          'metcalf': 1,\n",
      "          'gales': 1,\n",
      "          'new': 1,\n",
      "          'cameraman': 1,\n",
      "          'duane': 1,\n",
      "          'martin': 1,\n",
      "          'british': 1,\n",
      "          'drama': 1,\n",
      "          'teacher': 1,\n",
      "          'warner': 1,\n",
      "          'several': 1,\n",
      "          'wouldbe': 1,\n",
      "          'portia': 1,\n",
      "          'de': 1,\n",
      "          'rossi': 1,\n",
      "          'rebecca': 1,\n",
      "          'gayheart': 1,\n",
      "          'elise': 1,\n",
      "          'neal': 1,\n",
      "          'marisol': 1,\n",
      "          'nichols': 1,\n",
      "          'nultimately': 1,\n",
      "          'lots': 1,\n",
      "          'attractive': 1,\n",
      "          'corpses': 1,\n",
      "          'nfrom': 1,\n",
      "          'lines': 1,\n",
      "          'brothers': 1,\n",
      "          'long': 1,\n",
      "          'situations': 1,\n",
      "          'clearly': 1,\n",
      "          'enjoyable': 1,\n",
      "          'overlong': 1,\n",
      "          'livelier': 1,\n",
      "          'hour': 1,\n",
      "          'better': 1,\n",
      "          'ntheir': 1,\n",
      "          'resolution': 1,\n",
      "          'obligatory': 1,\n",
      "          'whodunit': 1,\n",
      "          'nis': 1,\n",
      "          'letdown': 1,\n",
      "          'knowingly': 1,\n",
      "          'offers': 1,\n",
      "          'wink': 1,\n",
      "          'nod': 1,\n",
      "          'past': 1,\n",
      "          'unmasking': 1,\n",
      "          'nice': 1,\n",
      "          'twist': 1,\n",
      "          'quips': 1,\n",
      "          'killer': 1,\n",
      "          'didnt': 1,\n",
      "          'coming': 1,\n",
      "          'didya': 1,\n",
      "          'none': 1,\n",
      "          'senses': 1,\n",
      "          'however': 1,\n",
      "          'overall': 1,\n",
      "          'concept': 1,\n",
      "          'hip': 1,\n",
      "          'selfreferential': 1,\n",
      "          'nsupposedly': 1,\n",
      "          'going': 1,\n",
      "          '3': 1,\n",
      "          'makers': 1,\n",
      "          'come': 1,\n",
      "          'something': 1,\n",
      "          'radical': 1,\n",
      "          'classic': 1,\n",
      "          'case': 1,\n",
      "          'overkill': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'beau': 7,\n",
      "          'reese': 7,\n",
      "          'nthe': 6,\n",
      "          'becomes': 4,\n",
      "          'mom': 3,\n",
      "          'margaret': 3,\n",
      "          'swinton': 3,\n",
      "          'lake': 3,\n",
      "          'body': 3,\n",
      "          'deep': 3,\n",
      "          'end': 3,\n",
      "          'turn': 3,\n",
      "          'year': 2,\n",
      "          'old': 2,\n",
      "          'tucker': 2,\n",
      "          'gets': 2,\n",
      "          'car': 2,\n",
      "          'companion': 2,\n",
      "          'tahoe': 2,\n",
      "          'learns': 2,\n",
      "          'mother': 2,\n",
      "          'dead': 2,\n",
      "          'spera': 2,\n",
      "          'visnjic': 2,\n",
      "          'jack': 2,\n",
      "          'shows': 2,\n",
      "          'even': 2,\n",
      "          'apparent': 2,\n",
      "          'concerns': 2,\n",
      "          'later': 2,\n",
      "          'yet': 2,\n",
      "          'terrific': 2,\n",
      "          'directors': 2,\n",
      "          'mcgehee': 2,\n",
      "          'reno': 2,\n",
      "          'set': 2,\n",
      "          'though': 2,\n",
      "          'comes': 2,\n",
      "          'love': 2,\n",
      "          'nhis': 2,\n",
      "          'deeper': 2,\n",
      "          'early': 2,\n",
      "          'story': 2,\n",
      "          '17': 1,\n",
      "          'hall': 1,\n",
      "          'jonathan': 1,\n",
      "          'virgin': 1,\n",
      "          'suicides': 1,\n",
      "          'accident': 1,\n",
      "          'drinking': 1,\n",
      "          '30': 1,\n",
      "          'club': 1,\n",
      "          'owner': 1,\n",
      "          'darby': 1,\n",
      "          'josh': 1,\n",
      "          'lucas': 1,\n",
      "          'session': 1,\n",
      "          '9': 1,\n",
      "          'tilda': 1,\n",
      "          'war': 1,\n",
      "          'zone': 1,\n",
      "          'pays': 1,\n",
      "          'visit': 1,\n",
      "          'convince': 1,\n",
      "          'leave': 1,\n",
      "          'son': 1,\n",
      "          'alone': 1,\n",
      "          'ninstead': 1,\n",
      "          'travels': 1,\n",
      "          'home': 1,\n",
      "          'lures': 1,\n",
      "          'boat': 1,\n",
      "          'house': 1,\n",
      "          'right': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'discovers': 1,\n",
      "          'darbys': 1,\n",
      "          'beach': 1,\n",
      "          'suspecting': 1,\n",
      "          'worst': 1,\n",
      "          'weights': 1,\n",
      "          'distant': 1,\n",
      "          'part': 1,\n",
      "          'nbut': 1,\n",
      "          'troubles': 1,\n",
      "          'beginning': 1,\n",
      "          'soon': 1,\n",
      "          'arrival': 1,\n",
      "          'blackmailer': 1,\n",
      "          'alek': 1,\n",
      "          'goran': 1,\n",
      "          'practical': 1,\n",
      "          'magic': 1,\n",
      "          'incredibly': 1,\n",
      "          'pale': 1,\n",
      "          'redheaded': 1,\n",
      "          'scottish': 1,\n",
      "          'actress': 1,\n",
      "          'immerses': 1,\n",
      "          'role': 1,\n",
      "          'reserved': 1,\n",
      "          'american': 1,\n",
      "          'supermom': 1,\n",
      "          'whose': 1,\n",
      "          'life': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'serving': 1,\n",
      "          'needs': 1,\n",
      "          'three': 1,\n",
      "          'children': 1,\n",
      "          'livein': 1,\n",
      "          'fatherinlaw': 1,\n",
      "          'peter': 1,\n",
      "          'donat': 1,\n",
      "          'game': 1,\n",
      "          'nshe': 1,\n",
      "          'great': 1,\n",
      "          'strength': 1,\n",
      "          'allowing': 1,\n",
      "          'emotions': 1,\n",
      "          'glimmer': 1,\n",
      "          'discomfort': 1,\n",
      "          'challenging': 1,\n",
      "          'gay': 1,\n",
      "          'disco': 1,\n",
      "          'named': 1,\n",
      "          'near': 1,\n",
      "          'panic': 1,\n",
      "          'dive': 1,\n",
      "          'retrieve': 1,\n",
      "          'keys': 1,\n",
      "          'wry': 1,\n",
      "          'humor': 1,\n",
      "          'attempt': 1,\n",
      "          'get': 1,\n",
      "          'help': 1,\n",
      "          'hopelessly': 1,\n",
      "          'miscommunicated': 1,\n",
      "          'ngradually': 1,\n",
      "          'loneliness': 1,\n",
      "          'husbands': 1,\n",
      "          'naval': 1,\n",
      "          'officer': 1,\n",
      "          'usually': 1,\n",
      "          'away': 1,\n",
      "          'sea': 1,\n",
      "          'attempts': 1,\n",
      "          'email': 1,\n",
      "          'deleted': 1,\n",
      "          'unusual': 1,\n",
      "          'chaste': 1,\n",
      "          'romance': 1,\n",
      "          'turns': 1,\n",
      "          'tragic': 1,\n",
      "          'nits': 1,\n",
      "          'performance': 1,\n",
      "          'stendahl': 1,\n",
      "          'syndromelike': 1,\n",
      "          'script': 1,\n",
      "          'adapted': 1,\n",
      "          'elisabeth': 1,\n",
      "          'sanxay': 1,\n",
      "          'holdings': 1,\n",
      "          '40s': 1,\n",
      "          'noir': 1,\n",
      "          'novel': 1,\n",
      "          'blank': 1,\n",
      "          'wall': 1,\n",
      "          'scott': 1,\n",
      "          'david': 1,\n",
      "          'siegel': 1,\n",
      "          'would': 1,\n",
      "          'unbelievable': 1,\n",
      "          'costar': 1,\n",
      "          'nalek': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wrong': 1,\n",
      "          'side': 1,\n",
      "          'tracks': 1,\n",
      "          'loser': 1,\n",
      "          'arrives': 1,\n",
      "          'reeses': 1,\n",
      "          'discovered': 1,\n",
      "          'nhe': 1,\n",
      "          'videotape': 1,\n",
      "          'sex': 1,\n",
      "          'demands': 1,\n",
      "          '50': 1,\n",
      "          '000': 1,\n",
      "          'hell': 1,\n",
      "          'tape': 1,\n",
      "          'police': 1,\n",
      "          'nsubsequent': 1,\n",
      "          'visits': 1,\n",
      "          'mind': 1,\n",
      "          'upside': 1,\n",
      "          'backwards': 1,\n",
      "          'admire': 1,\n",
      "          'woman': 1,\n",
      "          'blackmail': 1,\n",
      "          'ntheres': 1,\n",
      "          'another': 1,\n",
      "          'problem': 1,\n",
      "          'partner': 1,\n",
      "          'nagle': 1,\n",
      "          'raymond': 1,\n",
      "          'barry': 1,\n",
      "          'man': 1,\n",
      "          'walking': 1,\n",
      "          'harder': 1,\n",
      "          'cored': 1,\n",
      "          'criminal': 1,\n",
      "          'wont': 1,\n",
      "          'let': 1,\n",
      "          'share': 1,\n",
      "          'money': 1,\n",
      "          'delivered': 1,\n",
      "          'nvisnjics': 1,\n",
      "          'dark': 1,\n",
      "          'brooding': 1,\n",
      "          'interior': 1,\n",
      "          'shading': 1,\n",
      "          'makes': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'hes': 1,\n",
      "          'victim': 1,\n",
      "          'circumstance': 1,\n",
      "          'environment': 1,\n",
      "          'turnaround': 1,\n",
      "          'palpable': 1,\n",
      "          'witnesses': 1,\n",
      "          'margarets': 1,\n",
      "          'inherent': 1,\n",
      "          'decency': 1,\n",
      "          'workaday': 1,\n",
      "          'surroundings': 1,\n",
      "          'nalso': 1,\n",
      "          'outstanding': 1,\n",
      "          'character': 1,\n",
      "          'arc': 1,\n",
      "          'pas': 1,\n",
      "          'de': 1,\n",
      "          'deux': 1,\n",
      "          'ninitially': 1,\n",
      "          'beaus': 1,\n",
      "          'typical': 1,\n",
      "          'sullen': 1,\n",
      "          'teen': 1,\n",
      "          'nyoure': 1,\n",
      "          'blowing': 1,\n",
      "          'proportion': 1,\n",
      "          'says': 1,\n",
      "          'comprehending': 1,\n",
      "          'enough': 1,\n",
      "          'insight': 1,\n",
      "          'divined': 1,\n",
      "          'true': 1,\n",
      "          'nature': 1,\n",
      "          'relationship': 1,\n",
      "          'nas': 1,\n",
      "          'trying': 1,\n",
      "          'cover': 1,\n",
      "          'crime': 1,\n",
      "          'didnt': 1,\n",
      "          'commit': 1,\n",
      "          'suspicious': 1,\n",
      "          'actions': 1,\n",
      "          'new': 1,\n",
      "          'turning': 1,\n",
      "          'tables': 1,\n",
      "          'black': 1,\n",
      "          'eye': 1,\n",
      "          'split': 1,\n",
      "          'lip': 1,\n",
      "          'nwhile': 1,\n",
      "          'two': 1,\n",
      "          'never': 1,\n",
      "          'completely': 1,\n",
      "          'honest': 1,\n",
      "          'strongly': 1,\n",
      "          'suture': 1,\n",
      "          'firm': 1,\n",
      "          'grip': 1,\n",
      "          'material': 1,\n",
      "          'cast': 1,\n",
      "          'builds': 1,\n",
      "          'perfectly': 1,\n",
      "          'bold': 1,\n",
      "          'strokes': 1,\n",
      "          'amidst': 1,\n",
      "          'myriad': 1,\n",
      "          'subtler': 1,\n",
      "          'underpinnings': 1,\n",
      "          'nwater': 1,\n",
      "          'imagery': 1,\n",
      "          'constant': 1,\n",
      "          'shot': 1,\n",
      "          'weirdly': 1,\n",
      "          'rushing': 1,\n",
      "          'green': 1,\n",
      "          'revealed': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'cleaning': 1,\n",
      "          'aquarium': 1,\n",
      "          'ngiles': 1,\n",
      "          'nuttgens': 1,\n",
      "          'fire': 1,\n",
      "          'cinematography': 1,\n",
      "          '2001': 1,\n",
      "          'sundance': 1,\n",
      "          'festival': 1,\n",
      "          'award': 1,\n",
      "          'crisp': 1,\n",
      "          'startlingly': 1,\n",
      "          'clear': 1,\n",
      "          'locations': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'kelly': 1,\n",
      "          'christopher': 1,\n",
      "          'tandon': 1,\n",
      "          'provide': 1,\n",
      "          'dual': 1,\n",
      "          'personality': 1,\n",
      "          'film': 1,\n",
      "          'contrasting': 1,\n",
      "          'calm': 1,\n",
      "          'well': 1,\n",
      "          'existence': 1,\n",
      "          'gambling': 1,\n",
      "          'city': 1,\n",
      "          'n': 1,\n",
      "          'complex': 1,\n",
      "          'domino': 1,\n",
      "          'deeds': 1,\n",
      "          'shifting': 1,\n",
      "          'relationships': 1,\n",
      "          'ntake': 1,\n",
      "          'plunge': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'shakespeares': 4,\n",
      "          'juliet': 4,\n",
      "          'film': 3,\n",
      "          'decaprio': 2,\n",
      "          'danes': 2,\n",
      "          'luhrmanns': 2,\n",
      "          'version': 2,\n",
      "          'romeo': 2,\n",
      "          'sorvino': 2,\n",
      "          'dennehy': 2,\n",
      "          'boys': 2,\n",
      "          'one': 2,\n",
      "          'another': 2,\n",
      "          'like': 2,\n",
      "          'old': 2,\n",
      "          'could': 2,\n",
      "          'rival': 2,\n",
      "          'led': 2,\n",
      "          'problem': 2,\n",
      "          'movie': 2,\n",
      "          'leonardo': 1,\n",
      "          'whats': 1,\n",
      "          'eating': 1,\n",
      "          'gilbert': 1,\n",
      "          'grape': 1,\n",
      "          'claire': 1,\n",
      "          'tvs': 1,\n",
      "          'called': 1,\n",
      "          'life': 1,\n",
      "          'star': 1,\n",
      "          'director': 1,\n",
      "          'baz': 1,\n",
      "          'modernized': 1,\n",
      "          'william': 1,\n",
      "          'classic': 1,\n",
      "          'nsurrounded': 1,\n",
      "          'superb': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'paul': 1,\n",
      "          'goodfellas': 1,\n",
      "          'brian': 1,\n",
      "          'tommy': 1,\n",
      "          'boy': 1,\n",
      "          'pete': 1,\n",
      "          'poslethwaite': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'john': 1,\n",
      "          'leguizamo': 1,\n",
      "          'executive': 1,\n",
      "          'decision': 1,\n",
      "          'shine': 1,\n",
      "          'throughout': 1,\n",
      "          'nthe': 1,\n",
      "          'story': 1,\n",
      "          'starts': 1,\n",
      "          'gas': 1,\n",
      "          'station': 1,\n",
      "          'montague': 1,\n",
      "          'meet': 1,\n",
      "          'capulet': 1,\n",
      "          'square': 1,\n",
      "          'nsymbolizing': 1,\n",
      "          'swords': 1,\n",
      "          'day': 1,\n",
      "          'weapons': 1,\n",
      "          'rapier9mm': 1,\n",
      "          'longsword': 1,\n",
      "          'shotgun': 1,\n",
      "          'ninstead': 1,\n",
      "          'killing': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'shoot': 1,\n",
      "          'around': 1,\n",
      "          'sword': 1,\n",
      "          'fights': 1,\n",
      "          'nanother': 1,\n",
      "          'great': 1,\n",
      "          'thing': 1,\n",
      "          'performance': 1,\n",
      "          'harold': 1,\n",
      "          'perrineau': 1,\n",
      "          'romeos': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'nmercutio': 1,\n",
      "          'novel': 1,\n",
      "          'quite': 1,\n",
      "          'stud': 1,\n",
      "          'portrayed': 1,\n",
      "          'africanamerican': 1,\n",
      "          'crossdresser': 1,\n",
      "          'whose': 1,\n",
      "          'violent': 1,\n",
      "          'nature': 1,\n",
      "          'definite': 1,\n",
      "          'plus': 1,\n",
      "          'nmiriam': 1,\n",
      "          'margoyles': 1,\n",
      "          'virtually': 1,\n",
      "          'unknown': 1,\n",
      "          'actress': 1,\n",
      "          'astounding': 1,\n",
      "          'juliets': 1,\n",
      "          'nurse': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'never': 1,\n",
      "          'given': 1,\n",
      "          'name': 1,\n",
      "          'nshe': 1,\n",
      "          'keep': 1,\n",
      "          'fantasy': 1,\n",
      "          'world': 1,\n",
      "          'nverona': 1,\n",
      "          'home': 1,\n",
      "          'families': 1,\n",
      "          'slightly': 1,\n",
      "          'changed': 1,\n",
      "          'nnow': 1,\n",
      "          'known': 1,\n",
      "          'verona': 1,\n",
      "          'beach': 1,\n",
      "          'capulets': 1,\n",
      "          'montagues': 1,\n",
      "          'corporate': 1,\n",
      "          'dynasties': 1,\n",
      "          'nand': 1,\n",
      "          'small': 1,\n",
      "          'family': 1,\n",
      "          'skirmishes': 1,\n",
      "          'huge': 1,\n",
      "          'gang': 1,\n",
      "          'wars': 1,\n",
      "          'none': 1,\n",
      "          'slight': 1,\n",
      "          'difficulty': 1,\n",
      "          'comprehend': 1,\n",
      "          'dialogue': 1,\n",
      "          'since': 1,\n",
      "          'spoken': 1,\n",
      "          'english': 1,\n",
      "          'nsubtitles': 1,\n",
      "          'helped': 1,\n",
      "          'beginning': 1,\n",
      "          'toward': 1,\n",
      "          'end': 1,\n",
      "          'became': 1,\n",
      "          'easier': 1,\n",
      "          'understand': 1,\n",
      "          'nthis': 1,\n",
      "          'excellent': 1,\n",
      "          'poses': 1,\n",
      "          'genre': 1,\n",
      "          'nromeo': 1,\n",
      "          'contains': 1,\n",
      "          'much': 1,\n",
      "          'drama': 1,\n",
      "          'yet': 1,\n",
      "          'enough': 1,\n",
      "          'comedy': 1,\n",
      "          'action': 1,\n",
      "          'placed': 1,\n",
      "          'either': 1,\n",
      "          'categories': 1,\n",
      "          'nwith': 1,\n",
      "          'awardwinning': 1,\n",
      "          'formula': 1,\n",
      "          'used': 1,\n",
      "          'quentin': 1,\n",
      "          'tarantino': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogs': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'sure': 1,\n",
      "          'fire': 1,\n",
      "          'modern': 1,\n",
      "          'masterpiece': 1,\n",
      "          'n': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'south': 6,\n",
      "          'park': 6,\n",
      "          'nbut': 5,\n",
      "          'kids': 4,\n",
      "          'kid': 3,\n",
      "          'terrance': 3,\n",
      "          'phillip': 3,\n",
      "          'get': 3,\n",
      "          'bigger': 2,\n",
      "          'longer': 2,\n",
      "          'uncut': 2,\n",
      "          'tv': 2,\n",
      "          'show': 2,\n",
      "          'cartman': 2,\n",
      "          'nkenny': 2,\n",
      "          'talks': 2,\n",
      "          'regular': 2,\n",
      "          'nand': 2,\n",
      "          'kyle': 2,\n",
      "          'nthe': 2,\n",
      "          'kenny': 2,\n",
      "          'fire': 2,\n",
      "          'tickets': 2,\n",
      "          'anyone': 2,\n",
      "          'nwhile': 2,\n",
      "          'laughing': 2,\n",
      "          'cuss': 2,\n",
      "          'go': 2,\n",
      "          'isnt': 2,\n",
      "          'good': 2,\n",
      "          'voices': 1,\n",
      "          'trey': 1,\n",
      "          'parker': 1,\n",
      "          'matt': 1,\n",
      "          'stone': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'minnie': 1,\n",
      "          'driver': 1,\n",
      "          'n': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'crude': 1,\n",
      "          'offensive': 1,\n",
      "          'meanspirited': 1,\n",
      "          'comes': 1,\n",
      "          'politcally': 1,\n",
      "          'correct': 1,\n",
      "          'nif': 1,\n",
      "          'canadian': 1,\n",
      "          'strong': 1,\n",
      "          'christian': 1,\n",
      "          'fat': 1,\n",
      "          'gay': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'offended': 1,\n",
      "          'watch': 1,\n",
      "          'doubt': 1,\n",
      "          'laugh': 1,\n",
      "          'nbased': 1,\n",
      "          'wildly': 1,\n",
      "          'popular': 1,\n",
      "          'comedy': 1,\n",
      "          'central': 1,\n",
      "          'stars': 1,\n",
      "          'overweight': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'attitude': 1,\n",
      "          'sweet': 1,\n",
      "          'side': 1,\n",
      "          'poor': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'every': 1,\n",
      "          'episode': 1,\n",
      "          'coat': 1,\n",
      "          'hood': 1,\n",
      "          'covering': 1,\n",
      "          'head': 1,\n",
      "          'nstan': 1,\n",
      "          'sometimes': 1,\n",
      "          'boring': 1,\n",
      "          'problems': 1,\n",
      "          'women': 1,\n",
      "          'lonely': 1,\n",
      "          'jew': 1,\n",
      "          'poop': 1,\n",
      "          'opens': 1,\n",
      "          'funny': 1,\n",
      "          'messageable': 1,\n",
      "          'song': 1,\n",
      "          'people': 1,\n",
      "          'sing': 1,\n",
      "          'ncartman': 1,\n",
      "          'stan': 1,\n",
      "          'excited': 1,\n",
      "          'see': 1,\n",
      "          'new': 1,\n",
      "          'beavis': 1,\n",
      "          'butthead': 1,\n",
      "          'types': 1,\n",
      "          'asses': 1,\n",
      "          'learn': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'course': 1,\n",
      "          'means': 1,\n",
      "          'age': 1,\n",
      "          '17': 1,\n",
      "          'without': 1,\n",
      "          'parent': 1,\n",
      "          'legal': 1,\n",
      "          'guardian': 1,\n",
      "          'understand': 1,\n",
      "          'pay': 1,\n",
      "          'homeless': 1,\n",
      "          'man': 1,\n",
      "          'buy': 1,\n",
      "          'repeatedly': 1,\n",
      "          'entertaining': 1,\n",
      "          'nthey': 1,\n",
      "          'getting': 1,\n",
      "          'trouble': 1,\n",
      "          'causing': 1,\n",
      "          'kyles': 1,\n",
      "          'mom': 1,\n",
      "          'mpaa': 1,\n",
      "          'learns': 1,\n",
      "          'thing': 1,\n",
      "          'proving': 1,\n",
      "          'light': 1,\n",
      "          'fart': 1,\n",
      "          'dies': 1,\n",
      "          'goes': 1,\n",
      "          'hell': 1,\n",
      "          'find': 1,\n",
      "          'satan': 1,\n",
      "          'saddam': 1,\n",
      "          'huiessan': 1,\n",
      "          'homosexual': 1,\n",
      "          'lovers': 1,\n",
      "          'take': 1,\n",
      "          'world': 1,\n",
      "          'die': 1,\n",
      "          'nfrom': 1,\n",
      "          'nothing': 1,\n",
      "          'said': 1,\n",
      "          'keep': 1,\n",
      "          'rest': 1,\n",
      "          'surprise': 1,\n",
      "          'believe': 1,\n",
      "          'seen': 1,\n",
      "          '14': 1,\n",
      "          'nthis': 1,\n",
      "          'film': 1,\n",
      "          'contains': 1,\n",
      "          'extreme': 1,\n",
      "          'profanity': 1,\n",
      "          '130': 1,\n",
      "          'f': 1,\n",
      "          'words': 1,\n",
      "          'collection': 1,\n",
      "          'others': 1,\n",
      "          'beyond': 1,\n",
      "          'bad': 1,\n",
      "          'tasteless': 1,\n",
      "          'type': 1,\n",
      "          'way': 1,\n",
      "          'many': 1,\n",
      "          'messages': 1,\n",
      "          'embedded': 1,\n",
      "          'inside': 1,\n",
      "          'bet': 1,\n",
      "          'leave': 1,\n",
      "          'least': 1,\n",
      "          'one': 1,\n",
      "          'time': 1,\n",
      "          'enjoying': 1,\n",
      "          'ntake': 1,\n",
      "          'b': 1,\n",
      "          'l': 1,\n",
      "          'u': 1,\n",
      "          'youd': 1,\n",
      "          'hope': 1,\n",
      "          'laughs': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'n': 33,\n",
      "          'spice': 14,\n",
      "          'girls': 11,\n",
      "          'film': 8,\n",
      "          'like': 6,\n",
      "          'world': 5,\n",
      "          'fun': 5,\n",
      "          'melanie': 4,\n",
      "          'great': 3,\n",
      "          'music': 3,\n",
      "          'well': 3,\n",
      "          'concert': 3,\n",
      "          'richard': 3,\n",
      "          'dance': 3,\n",
      "          'quite': 3,\n",
      "          'people': 2,\n",
      "          'exactly': 2,\n",
      "          'done': 2,\n",
      "          'perhaps': 2,\n",
      "          'first': 2,\n",
      "          'isnt': 2,\n",
      "          'songs': 2,\n",
      "          'lot': 2,\n",
      "          'number': 2,\n",
      "          'films': 2,\n",
      "          'get': 2,\n",
      "          'plot': 2,\n",
      "          'minutes': 2,\n",
      "          'geri': 2,\n",
      "          'victoria': 2,\n",
      "          'adams': 2,\n",
      "          'chisolm': 2,\n",
      "          'brown': 2,\n",
      "          'emma': 2,\n",
      "          'bunton': 2,\n",
      "          'part': 2,\n",
      "          'look': 2,\n",
      "          'e': 2,\n",
      "          'grant': 2,\n",
      "          'quick': 2,\n",
      "          'roger': 2,\n",
      "          'moore': 2,\n",
      "          'bob': 2,\n",
      "          'spiers': 2,\n",
      "          '1998': 2,\n",
      "          'hate': 1,\n",
      "          'wrong': 1,\n",
      "          'offend': 1,\n",
      "          'fashion': 1,\n",
      "          'police': 1,\n",
      "          'singersthey': 1,\n",
      "          'aint': 1,\n",
      "          'singing': 1,\n",
      "          'opera': 1,\n",
      "          'folks': 1,\n",
      "          'pop': 1,\n",
      "          'singer': 1,\n",
      "          'njudging': 1,\n",
      "          'opening': 1,\n",
      "          'paragraph': 1,\n",
      "          'obvious': 1,\n",
      "          'dosing': 1,\n",
      "          'catchy': 1,\n",
      "          'tunesand': 1,\n",
      "          'pretty': 1,\n",
      "          'able': 1,\n",
      "          'carry': 1,\n",
      "          'certainly': 1,\n",
      "          'filmgoing': 1,\n",
      "          'experience': 1,\n",
      "          'nwhat': 1,\n",
      "          'girl': 1,\n",
      "          'power': 1,\n",
      "          'ndrawing': 1,\n",
      "          'different': 1,\n",
      "          'beatles': 1,\n",
      "          'hard': 1,\n",
      "          'days': 1,\n",
      "          'night': 1,\n",
      "          'chronicles': 1,\n",
      "          'week': 1,\n",
      "          'heading': 1,\n",
      "          'londons': 1,\n",
      "          'albert': 1,\n",
      "          'hall': 1,\n",
      "          'tool': 1,\n",
      "          'around': 1,\n",
      "          'london': 1,\n",
      "          'big': 1,\n",
      "          'ol': 1,\n",
      "          'bus': 1,\n",
      "          'driven': 1,\n",
      "          'meat': 1,\n",
      "          'loaf': 1,\n",
      "          'generally': 1,\n",
      "          'order': 1,\n",
      "          'semblence': 1,\n",
      "          'evil': 1,\n",
      "          'tabloid': 1,\n",
      "          'publisher': 1,\n",
      "          'played': 1,\n",
      "          'barry': 1,\n",
      "          'humphries': 1,\n",
      "          'better': 1,\n",
      "          'known': 1,\n",
      "          'americans': 1,\n",
      "          '15': 1,\n",
      "          'dame': 1,\n",
      "          'edna': 1,\n",
      "          'remember': 1,\n",
      "          'wants': 1,\n",
      "          'sabotage': 1,\n",
      "          'sell': 1,\n",
      "          'papers': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'point': 1,\n",
      "          'movie': 1,\n",
      "          'center': 1,\n",
      "          'ginger': 1,\n",
      "          'recently': 1,\n",
      "          'departed': 1,\n",
      "          'haliwell': 1,\n",
      "          'posh': 1,\n",
      "          'sporty': 1,\n",
      "          'scary': 1,\n",
      "          'baby': 1,\n",
      "          'one': 1,\n",
      "          'personality': 1,\n",
      "          'best': 1,\n",
      "          'honesttogoodness': 1,\n",
      "          'something': 1,\n",
      "          'cant': 1,\n",
      "          'said': 1,\n",
      "          'today': 1,\n",
      "          'nalong': 1,\n",
      "          'ride': 1,\n",
      "          'manager': 1,\n",
      "          'clifford': 1,\n",
      "          'various': 1,\n",
      "          'characters': 1,\n",
      "          'making': 1,\n",
      "          'cameo': 1,\n",
      "          'appearances': 1,\n",
      "          'including': 1,\n",
      "          'teriffic': 1,\n",
      "          'british': 1,\n",
      "          'actors': 1,\n",
      "          'briers': 1,\n",
      "          'stephen': 1,\n",
      "          'fry': 1,\n",
      "          'every': 1,\n",
      "          'pops': 1,\n",
      "          'chief': 1,\n",
      "          'spout': 1,\n",
      "          'odd': 1,\n",
      "          'koans': 1,\n",
      "          'added': 1,\n",
      "          'bonus': 1,\n",
      "          'gets': 1,\n",
      "          'words': 1,\n",
      "          'craig': 1,\n",
      "          'kilborn': 1,\n",
      "          'nwatching': 1,\n",
      "          'slow': 1,\n",
      "          'segments': 1,\n",
      "          'overly': 1,\n",
      "          'director': 1,\n",
      "          'keeps': 1,\n",
      "          'things': 1,\n",
      "          'moving': 1,\n",
      "          'pace': 1,\n",
      "          'plenty': 1,\n",
      "          'hummable': 1,\n",
      "          'background': 1,\n",
      "          'camerawork': 1,\n",
      "          'fairly': 1,\n",
      "          'pedestrian': 1,\n",
      "          'though': 1,\n",
      "          'final': 1,\n",
      "          'effective': 1,\n",
      "          'use': 1,\n",
      "          'editing': 1,\n",
      "          'nthe': 1,\n",
      "          'promotes': 1,\n",
      "          'high': 1,\n",
      "          'design': 1,\n",
      "          'spicebus': 1,\n",
      "          'original': 1,\n",
      "          'eyecatching': 1,\n",
      "          'add': 1,\n",
      "          'walltowall': 1,\n",
      "          'lovable': 1,\n",
      "          'romp': 1,\n",
      "          'dont': 1,\n",
      "          'wont': 1,\n",
      "          'change': 1,\n",
      "          'mind': 1,\n",
      "          'find': 1,\n",
      "          'least': 1,\n",
      "          'tolerable': 1,\n",
      "          'ready': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'chill': 1,\n",
      "          'entertain': 1,\n",
      "          'nand': 1,\n",
      "          'directed': 1,\n",
      "          'written': 1,\n",
      "          'kim': 1,\n",
      "          'fuller': 1,\n",
      "          'halliwell': 1,\n",
      "          'claire': 1,\n",
      "          'rushbrook': 1,\n",
      "          'distributed': 1,\n",
      "          'columbia': 1,\n",
      "          'pictures': 1,\n",
      "          'running': 1,\n",
      "          'time': 1,\n",
      "          '92': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'available': 1,\n",
      "          'home': 1,\n",
      "          'video': 1,\n",
      "          '29': 1,\n",
      "          'june': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'n': 12,\n",
      "          'gladiator': 8,\n",
      "          'maximus': 8,\n",
      "          'commodus': 5,\n",
      "          'epic': 4,\n",
      "          'roman': 4,\n",
      "          'son': 4,\n",
      "          'phoenix': 4,\n",
      "          'look': 4,\n",
      "          'emperor': 3,\n",
      "          'braveheart': 3,\n",
      "          'wife': 3,\n",
      "          'family': 3,\n",
      "          'nthe': 3,\n",
      "          'evil': 3,\n",
      "          'battle': 3,\n",
      "          'genre': 2,\n",
      "          'hollywood': 2,\n",
      "          'give': 2,\n",
      "          'grand': 2,\n",
      "          'empire': 2,\n",
      "          'last': 2,\n",
      "          'best': 2,\n",
      "          'russell': 2,\n",
      "          'crowe': 2,\n",
      "          'richard': 2,\n",
      "          'rome': 2,\n",
      "          'nwhen': 2,\n",
      "          'father': 2,\n",
      "          'murdered': 2,\n",
      "          'nmaximus': 2,\n",
      "          'late': 2,\n",
      "          'na': 2,\n",
      "          'caravan': 2,\n",
      "          'hero': 2,\n",
      "          'never': 2,\n",
      "          'juba': 2,\n",
      "          'oliver': 2,\n",
      "          'reed': 2,\n",
      "          'king': 2,\n",
      "          'nalso': 2,\n",
      "          'like': 2,\n",
      "          'appeal': 2,\n",
      "          'forward': 2,\n",
      "          'devotion': 2,\n",
      "          'opposite': 2,\n",
      "          'way': 2,\n",
      "          'seems': 2,\n",
      "          'flick': 2,\n",
      "          'parts': 2,\n",
      "          'character': 2,\n",
      "          'nin': 2,\n",
      "          'role': 2,\n",
      "          'ni': 2,\n",
      "          'scenes': 2,\n",
      "          'tinted': 2,\n",
      "          'payback': 2,\n",
      "          'style': 2,\n",
      "          'forty': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'sword': 1,\n",
      "          'sandals': 1,\n",
      "          'historical': 1,\n",
      "          'ruled': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'nduring': 1,\n",
      "          '1950s': 1,\n",
      "          'sought': 1,\n",
      "          'audiences': 1,\n",
      "          'reason': 1,\n",
      "          'turn': 1,\n",
      "          'televisions': 1,\n",
      "          'go': 1,\n",
      "          'movies': 1,\n",
      "          'offering': 1,\n",
      "          'spectacle': 1,\n",
      "          'cinemascope': 1,\n",
      "          'benhur': 1,\n",
      "          'cleopatra': 1,\n",
      "          'robe': 1,\n",
      "          'sparticus': 1,\n",
      "          'fall': 1,\n",
      "          'quo': 1,\n",
      "          'vadis': 1,\n",
      "          'nsometimes': 1,\n",
      "          'brilliant': 1,\n",
      "          'sometimes': 1,\n",
      "          'campy': 1,\n",
      "          'technicolor': 1,\n",
      "          'funeral': 1,\n",
      "          'pyre': 1,\n",
      "          'classic': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nsince': 1,\n",
      "          'epics': 1,\n",
      "          'appeared': 1,\n",
      "          'infrequently': 1,\n",
      "          'smallscreen': 1,\n",
      "          'affairs': 1,\n",
      "          'produced': 1,\n",
      "          '1970s': 1,\n",
      "          'roots': 1,\n",
      "          'shogun': 1,\n",
      "          'nyet': 1,\n",
      "          'phrase': 1,\n",
      "          'die': 1,\n",
      "          'salute': 1,\n",
      "          'absent': 1,\n",
      "          'begins': 1,\n",
      "          'germania': 1,\n",
      "          '180': 1,\n",
      "          'nroman': 1,\n",
      "          'general': 1,\n",
      "          'conquered': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'group': 1,\n",
      "          'barbarians': 1,\n",
      "          'marcus': 1,\n",
      "          'aurelius': 1,\n",
      "          'harris': 1,\n",
      "          'eager': 1,\n",
      "          'retire': 1,\n",
      "          'plantation': 1,\n",
      "          'spain': 1,\n",
      "          'waiting': 1,\n",
      "          'nhowever': 1,\n",
      "          'worried': 1,\n",
      "          'decadent': 1,\n",
      "          'weakling': 1,\n",
      "          'joaquin': 1,\n",
      "          'prove': 1,\n",
      "          'poor': 1,\n",
      "          'successor': 1,\n",
      "          'wants': 1,\n",
      "          'make': 1,\n",
      "          'heir': 1,\n",
      "          'transition': 1,\n",
      "          'toward': 1,\n",
      "          'becoming': 1,\n",
      "          'republic': 1,\n",
      "          'hears': 1,\n",
      "          'plan': 1,\n",
      "          'strangles': 1,\n",
      "          'orders': 1,\n",
      "          'escapes': 1,\n",
      "          'executioners': 1,\n",
      "          'arrives': 1,\n",
      "          'home': 1,\n",
      "          'save': 1,\n",
      "          'slavers': 1,\n",
      "          'pick': 1,\n",
      "          'wounded': 1,\n",
      "          'carry': 1,\n",
      "          'north': 1,\n",
      "          'africa': 1,\n",
      "          'happened': 1,\n",
      "          'cruising': 1,\n",
      "          'place': 1,\n",
      "          'explained': 1,\n",
      "          'nan': 1,\n",
      "          'african': 1,\n",
      "          'named': 1,\n",
      "          'djimon': 1,\n",
      "          'hounsou': 1,\n",
      "          'treats': 1,\n",
      "          'wounds': 1,\n",
      "          'nproximo': 1,\n",
      "          'freedom': 1,\n",
      "          'purchases': 1,\n",
      "          'fodder': 1,\n",
      "          'arena': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'proves': 1,\n",
      "          'able': 1,\n",
      "          'soldier': 1,\n",
      "          'fame': 1,\n",
      "          'spreads': 1,\n",
      "          'reopens': 1,\n",
      "          'coliseum': 1,\n",
      "          'proximo': 1,\n",
      "          'brings': 1,\n",
      "          'troupe': 1,\n",
      "          'warriors': 1,\n",
      "          'compete': 1,\n",
      "          'nour': 1,\n",
      "          'wins': 1,\n",
      "          'hearts': 1,\n",
      "          'minds': 1,\n",
      "          'cheering': 1,\n",
      "          'crowds': 1,\n",
      "          'finds': 1,\n",
      "          'ally': 1,\n",
      "          'sister': 1,\n",
      "          'lucilla': 1,\n",
      "          'connie': 1,\n",
      "          'nielsen': 1,\n",
      "          'similarities': 1,\n",
      "          'obvious': 1,\n",
      "          'determined': 1,\n",
      "          'warrior': 1,\n",
      "          'seeking': 1,\n",
      "          'revenge': 1,\n",
      "          'aid': 1,\n",
      "          'lovestruck': 1,\n",
      "          'princess': 1,\n",
      "          'mel': 1,\n",
      "          'gibsons': 1,\n",
      "          'primarily': 1,\n",
      "          'visceral': 1,\n",
      "          'driven': 1,\n",
      "          'heros': 1,\n",
      "          'anger': 1,\n",
      "          'nits': 1,\n",
      "          'simple': 1,\n",
      "          'tale': 1,\n",
      "          'good': 1,\n",
      "          'versus': 1,\n",
      "          'manly': 1,\n",
      "          'virtues': 1,\n",
      "          'nobility': 1,\n",
      "          'purpose': 1,\n",
      "          'courage': 1,\n",
      "          'loyalty': 1,\n",
      "          'country': 1,\n",
      "          'physical': 1,\n",
      "          'stamina': 1,\n",
      "          'ncommodus': 1,\n",
      "          'every': 1,\n",
      "          'sniveling': 1,\n",
      "          'selfish': 1,\n",
      "          'coward': 1,\n",
      "          'intended': 1,\n",
      "          'disgust': 1,\n",
      "          'audience': 1,\n",
      "          'opening': 1,\n",
      "          'night': 1,\n",
      "          'crowd': 1,\n",
      "          'theater': 1,\n",
      "          '70': 1,\n",
      "          'male': 1,\n",
      "          'appropriate': 1,\n",
      "          'guy': 1,\n",
      "          'movie': 1,\n",
      "          'would': 1,\n",
      "          'chick': 1,\n",
      "          'dick': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'pumping': 1,\n",
      "          'testosterone': 1,\n",
      "          'chopping': 1,\n",
      "          'body': 1,\n",
      "          'gruesome': 1,\n",
      "          'sequences': 1,\n",
      "          'easily': 1,\n",
      "          'offended': 1,\n",
      "          'gore': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'nlucilla': 1,\n",
      "          'female': 1,\n",
      "          'sparks': 1,\n",
      "          'dampened': 1,\n",
      "          'dead': 1,\n",
      "          'njoaquin': 1,\n",
      "          'gives': 1,\n",
      "          'astounding': 1,\n",
      "          'performance': 1,\n",
      "          'scene': 1,\n",
      "          'kills': 1,\n",
      "          'shows': 1,\n",
      "          'pain': 1,\n",
      "          'fathers': 1,\n",
      "          'love': 1,\n",
      "          'pride': 1,\n",
      "          'nthroughout': 1,\n",
      "          'picture': 1,\n",
      "          'manages': 1,\n",
      "          'depth': 1,\n",
      "          'whos': 1,\n",
      "          'scripted': 1,\n",
      "          'caricature': 1,\n",
      "          'nive': 1,\n",
      "          'fan': 1,\n",
      "          'since': 1,\n",
      "          'romper': 1,\n",
      "          'stomper': 1,\n",
      "          'nthis': 1,\n",
      "          'doesnt': 1,\n",
      "          'offer': 1,\n",
      "          'complexities': 1,\n",
      "          'l': 1,\n",
      "          'confidential': 1,\n",
      "          'insider': 1,\n",
      "          'essentially': 1,\n",
      "          'job': 1,\n",
      "          'grunt': 1,\n",
      "          'heroically': 1,\n",
      "          'voice': 1,\n",
      "          'burton': 1,\n",
      "          'resonance': 1,\n",
      "          'textured': 1,\n",
      "          'clint': 1,\n",
      "          'eastwood': 1,\n",
      "          'rasp': 1,\n",
      "          'perfect': 1,\n",
      "          'gave': 1,\n",
      "          'us': 1,\n",
      "          'work': 1,\n",
      "          'career': 1,\n",
      "          'hope': 1,\n",
      "          'rewarded': 1,\n",
      "          'oscar': 1,\n",
      "          'nmy': 1,\n",
      "          'major': 1,\n",
      "          'quibble': 1,\n",
      "          'stylized': 1,\n",
      "          'nseveral': 1,\n",
      "          'nweve': 1,\n",
      "          'seen': 1,\n",
      "          'lot': 1,\n",
      "          'lately': 1,\n",
      "          'particularly': 1,\n",
      "          'matrix': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'makes': 1,\n",
      "          'feature': 1,\n",
      "          'films': 1,\n",
      "          'tv': 1,\n",
      "          'ads': 1,\n",
      "          'merely': 1,\n",
      "          'annoying': 1,\n",
      "          'bleaches': 1,\n",
      "          'color': 1,\n",
      "          'spectacles': 1,\n",
      "          'raison': 1,\n",
      "          'detre': 1,\n",
      "          'perhaps': 1,\n",
      "          'meant': 1,\n",
      "          'gloss': 1,\n",
      "          'imperfections': 1,\n",
      "          'computergenerated': 1,\n",
      "          'shots': 1,\n",
      "          'filmed': 1,\n",
      "          'strange': 1,\n",
      "          'herky': 1,\n",
      "          'jerky': 1,\n",
      "          'slo': 1,\n",
      "          'mo': 1,\n",
      "          'fast': 1,\n",
      "          'simultaneously': 1,\n",
      "          'reminds': 1,\n",
      "          'flash': 1,\n",
      "          'runs': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'leaving': 1,\n",
      "          'halfblurred': 1,\n",
      "          'trail': 1,\n",
      "          'images': 1,\n",
      "          'behind': 1,\n",
      "          'nwith': 1,\n",
      "          'realistic': 1,\n",
      "          'could': 1,\n",
      "          'even': 1,\n",
      "          'satisfying': 1,\n",
      "          'tighter': 1,\n",
      "          'script': 1,\n",
      "          'fulfilling': 1,\n",
      "          'conclusion': 1,\n",
      "          'nbottom': 1,\n",
      "          'line': 1,\n",
      "          'rousing': 1,\n",
      "          'action': 1,\n",
      "          'film': 1,\n",
      "          'enriched': 1,\n",
      "          'fine': 1,\n",
      "          'performances': 1,\n",
      "          'tarnished': 1,\n",
      "          'stylistic': 1,\n",
      "          'choices': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'andromeda': 6,\n",
      "          'science': 6,\n",
      "          'town': 6,\n",
      "          'film': 5,\n",
      "          'scientists': 5,\n",
      "          'strain': 4,\n",
      "          'fiction': 4,\n",
      "          'find': 4,\n",
      "          'one': 3,\n",
      "          'nthe': 3,\n",
      "          'satellite': 3,\n",
      "          'call': 3,\n",
      "          'every': 3,\n",
      "          'organism': 3,\n",
      "          'like': 3,\n",
      "          'made': 2,\n",
      "          'films': 2,\n",
      "          'stories': 2,\n",
      "          'space': 2,\n",
      "          'probably': 2,\n",
      "          'really': 2,\n",
      "          'action': 2,\n",
      "          'two': 2,\n",
      "          'looking': 2,\n",
      "          'stone': 2,\n",
      "          'directly': 2,\n",
      "          'blood': 2,\n",
      "          'baby': 2,\n",
      "          'old': 2,\n",
      "          'nthey': 2,\n",
      "          'back': 2,\n",
      "          'lab': 2,\n",
      "          'around': 2,\n",
      "          'bomb': 2,\n",
      "          'nwhat': 2,\n",
      "          'mutates': 2,\n",
      "          'time': 2,\n",
      "          'nbut': 2,\n",
      "          'labs': 2,\n",
      "          'nthis': 2,\n",
      "          'nto': 2,\n",
      "          'seem': 2,\n",
      "          'screens': 2,\n",
      "          'see': 2,\n",
      "          'step': 2,\n",
      "          'way': 2,\n",
      "          'greatest': 1,\n",
      "          'ever': 1,\n",
      "          'ni': 1,\n",
      "          'know': 1,\n",
      "          'sweeping': 1,\n",
      "          'statement': 1,\n",
      "          'ill': 1,\n",
      "          'qualify': 1,\n",
      "          'adding': 1,\n",
      "          'genuinely': 1,\n",
      "          'deserve': 1,\n",
      "          'label': 1,\n",
      "          'speculative': 1,\n",
      "          'core': 1,\n",
      "          'plot': 1,\n",
      "          'n2001': 1,\n",
      "          'odyssey': 1,\n",
      "          'better': 1,\n",
      "          'qualifies': 1,\n",
      "          'consider': 1,\n",
      "          'metaphysics': 1,\n",
      "          'nmost': 1,\n",
      "          'normally': 1,\n",
      "          'classify': 1,\n",
      "          'sf': 1,\n",
      "          'fantasy': 1,\n",
      "          'horror': 1,\n",
      "          'set': 1,\n",
      "          'futuristic': 1,\n",
      "          'setting': 1,\n",
      "          'starts': 1,\n",
      "          'soldiers': 1,\n",
      "          'hightech': 1,\n",
      "          '1970': 1,\n",
      "          'van': 1,\n",
      "          'crashed': 1,\n",
      "          'tiny': 1,\n",
      "          'new': 1,\n",
      "          'mexico': 1,\n",
      "          'nsomething': 1,\n",
      "          'bad': 1,\n",
      "          'happens': 1,\n",
      "          'npictures': 1,\n",
      "          'reconnaissance': 1,\n",
      "          'plane': 1,\n",
      "          'show': 1,\n",
      "          'shocking': 1,\n",
      "          'sight': 1,\n",
      "          'napparently': 1,\n",
      "          'everyone': 1,\n",
      "          'dead': 1,\n",
      "          'authorities': 1,\n",
      "          'wildfire': 1,\n",
      "          'alert': 1,\n",
      "          'summoning': 1,\n",
      "          'four': 1,\n",
      "          'somewhat': 1,\n",
      "          'reluctant': 1,\n",
      "          'supersecret': 1,\n",
      "          'underground': 1,\n",
      "          'germ': 1,\n",
      "          'warfare': 1,\n",
      "          'laboratory': 1,\n",
      "          'nevada': 1,\n",
      "          'ntwo': 1,\n",
      "          'hall': 1,\n",
      "          'fly': 1,\n",
      "          'suits': 1,\n",
      "          'almost': 1,\n",
      "          'single': 1,\n",
      "          'resident': 1,\n",
      "          'literally': 1,\n",
      "          'dropped': 1,\n",
      "          'tracks': 1,\n",
      "          'turned': 1,\n",
      "          'powder': 1,\n",
      "          'veins': 1,\n",
      "          'nsome': 1,\n",
      "          'went': 1,\n",
      "          'insane': 1,\n",
      "          'died': 1,\n",
      "          'wino': 1,\n",
      "          'miraculously': 1,\n",
      "          'still': 1,\n",
      "          'alive': 1,\n",
      "          'take': 1,\n",
      "          'survivors': 1,\n",
      "          'pressures': 1,\n",
      "          'white': 1,\n",
      "          'house': 1,\n",
      "          'directive': 1,\n",
      "          '712': 1,\n",
      "          'executive': 1,\n",
      "          'order': 1,\n",
      "          'cauterize': 1,\n",
      "          'area': 1,\n",
      "          'nuclear': 1,\n",
      "          'get': 1,\n",
      "          'defies': 1,\n",
      "          'normal': 1,\n",
      "          'rules': 1,\n",
      "          'earthlike': 1,\n",
      "          'life': 1,\n",
      "          'grows': 1,\n",
      "          'ntheir': 1,\n",
      "          'hope': 1,\n",
      "          'cure': 1,\n",
      "          'perfectly': 1,\n",
      "          'healthy': 1,\n",
      "          'boy': 1,\n",
      "          'common': 1,\n",
      "          'derelict': 1,\n",
      "          'feeds': 1,\n",
      "          'energy': 1,\n",
      "          'detonating': 1,\n",
      "          'abomb': 1,\n",
      "          'would': 1,\n",
      "          'spread': 1,\n",
      "          'across': 1,\n",
      "          'entire': 1,\n",
      "          'planet': 1,\n",
      "          'barely': 1,\n",
      "          'bombing': 1,\n",
      "          'something': 1,\n",
      "          'threatens': 1,\n",
      "          'eat': 1,\n",
      "          'defenses': 1,\n",
      "          'break': 1,\n",
      "          'triggers': 1,\n",
      "          'lastditch': 1,\n",
      "          'defense': 1,\n",
      "          'mechanism': 1,\n",
      "          'atomic': 1,\n",
      "          'raised': 1,\n",
      "          'brainless': 1,\n",
      "          'fare': 1,\n",
      "          'pollutes': 1,\n",
      "          'movie': 1,\n",
      "          'theaters': 1,\n",
      "          'days': 1,\n",
      "          'interminably': 1,\n",
      "          'slow': 1,\n",
      "          'nmuch': 1,\n",
      "          'lot': 1,\n",
      "          'people': 1,\n",
      "          'standing': 1,\n",
      "          'video': 1,\n",
      "          'computer': 1,\n",
      "          'readouts': 1,\n",
      "          'characters': 1,\n",
      "          'ratchets': 1,\n",
      "          'tension': 1,\n",
      "          'turn': 1,\n",
      "          'screw': 1,\n",
      "          'performances': 1,\n",
      "          'universally': 1,\n",
      "          'fine': 1,\n",
      "          'actors': 1,\n",
      "          'keeping': 1,\n",
      "          'things': 1,\n",
      "          'lowkey': 1,\n",
      "          'restrained': 1,\n",
      "          'real': 1,\n",
      "          'appeal': 1,\n",
      "          'fact': 1,\n",
      "          'shows': 1,\n",
      "          'acting': 1,\n",
      "          'makes': 1,\n",
      "          'exciting': 1,\n",
      "          'nwe': 1,\n",
      "          'follow': 1,\n",
      "          'logic': 1,\n",
      "          'deduction': 1,\n",
      "          'methodical': 1,\n",
      "          'puzzling': 1,\n",
      "          'behaves': 1,\n",
      "          'dont': 1,\n",
      "          'expect': 1,\n",
      "          'available': 1,\n",
      "          'wide': 1,\n",
      "          'screen': 1,\n",
      "          'dvd': 1,\n",
      "          'nit': 1,\n",
      "          'originally': 1,\n",
      "          'rated': 1,\n",
      "          'g': 1,\n",
      "          'first': 1,\n",
      "          'released': 1,\n",
      "          'carries': 1,\n",
      "          'pg': 1,\n",
      "          'rating': 1,\n",
      "          'mostly': 1,\n",
      "          'mild': 1,\n",
      "          'nudity': 1,\n",
      "          'scene': 1,\n",
      "          'bodys': 1,\n",
      "          'wrist': 1,\n",
      "          'slashed': 1,\n",
      "          'spilling': 1,\n",
      "          'powdered': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'charles': 8,\n",
      "          'charlie': 4,\n",
      "          'uncle': 4,\n",
      "          'know': 3,\n",
      "          'scene': 3,\n",
      "          'nthe': 3,\n",
      "          'family': 3,\n",
      "          'niece': 2,\n",
      "          'welsh': 2,\n",
      "          'ncharlie': 2,\n",
      "          'widow': 2,\n",
      "          'doubt': 2,\n",
      "          'avoid': 2,\n",
      "          'victim': 2,\n",
      "          'story': 2,\n",
      "          'small': 2,\n",
      "          'town': 2,\n",
      "          'petaluma': 2,\n",
      "          'movie': 2,\n",
      "          'visit': 2,\n",
      "          'magazine': 2,\n",
      "          'picture': 2,\n",
      "          'first': 2,\n",
      "          'feel': 2,\n",
      "          'nis': 2,\n",
      "          'would': 2,\n",
      "          'good': 1,\n",
      "          'much': 1,\n",
      "          'someone': 1,\n",
      "          'warns': 1,\n",
      "          'margaret': 1,\n",
      "          'devilish': 1,\n",
      "          'grin': 1,\n",
      "          'infatuated': 1,\n",
      "          'namesake': 1,\n",
      "          'soul': 1,\n",
      "          'mate': 1,\n",
      "          'calls': 1,\n",
      "          'since': 1,\n",
      "          'mother': 1,\n",
      "          'gave': 1,\n",
      "          'name': 1,\n",
      "          'ntheres': 1,\n",
      "          'lot': 1,\n",
      "          'least': 1,\n",
      "          'strangled': 1,\n",
      "          '3': 1,\n",
      "          'widows': 1,\n",
      "          'back': 1,\n",
      "          'east': 1,\n",
      "          'nmark': 1,\n",
      "          'harmon': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'anything': 1,\n",
      "          'killer': 1,\n",
      "          'specializes': 1,\n",
      "          'playing': 1,\n",
      "          'plays': 1,\n",
      "          'merry': 1,\n",
      "          'murderer': 1,\n",
      "          '1991': 1,\n",
      "          'hallmark': 1,\n",
      "          'hall': 1,\n",
      "          'fame': 1,\n",
      "          'remake': 1,\n",
      "          '1943': 1,\n",
      "          'hitchcock': 1,\n",
      "          'film': 1,\n",
      "          'shadow': 1,\n",
      "          'nand': 1,\n",
      "          'questions': 1,\n",
      "          'guilt': 1,\n",
      "          'see': 1,\n",
      "          'action': 1,\n",
      "          'opening': 1,\n",
      "          'last': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'early': 1,\n",
      "          '1950s': 1,\n",
      "          'california': 1,\n",
      "          'heads': 1,\n",
      "          'police': 1,\n",
      "          'njohn': 1,\n",
      "          'gays': 1,\n",
      "          'script': 1,\n",
      "          'uses': 1,\n",
      "          'original': 1,\n",
      "          'screenplay': 1,\n",
      "          'sally': 1,\n",
      "          'benson': 1,\n",
      "          'alma': 1,\n",
      "          'reville': 1,\n",
      "          'thornton': 1,\n",
      "          'wilder': 1,\n",
      "          'nkaren': 1,\n",
      "          'arthurs': 1,\n",
      "          'direction': 1,\n",
      "          'certainly': 1,\n",
      "          'match': 1,\n",
      "          'great': 1,\n",
      "          'master': 1,\n",
      "          'absolute': 1,\n",
      "          'scale': 1,\n",
      "          'maintains': 1,\n",
      "          'high': 1,\n",
      "          'level': 1,\n",
      "          'suspense': 1,\n",
      "          'nwhen': 1,\n",
      "          'supercilious': 1,\n",
      "          'deceitful': 1,\n",
      "          'comes': 1,\n",
      "          'pay': 1,\n",
      "          'indeterminate': 1,\n",
      "          'length': 1,\n",
      "          'sister': 1,\n",
      "          'dont': 1,\n",
      "          'nefarious': 1,\n",
      "          'activities': 1,\n",
      "          'nhe': 1,\n",
      "          'showers': 1,\n",
      "          'elaborate': 1,\n",
      "          'gifts': 1,\n",
      "          'buy': 1,\n",
      "          'love': 1,\n",
      "          'already': 1,\n",
      "          'given': 1,\n",
      "          'anyway': 1,\n",
      "          'ntwo': 1,\n",
      "          'mysterious': 1,\n",
      "          'exceedingly': 1,\n",
      "          'cleancut': 1,\n",
      "          'writers': 1,\n",
      "          'show': 1,\n",
      "          'take': 1,\n",
      "          'pictures': 1,\n",
      "          'spread': 1,\n",
      "          'average': 1,\n",
      "          'american': 1,\n",
      "          'interest': 1,\n",
      "          'focused': 1,\n",
      "          'especially': 1,\n",
      "          'taking': 1,\n",
      "          'learning': 1,\n",
      "          'background': 1,\n",
      "          'welcomed': 1,\n",
      "          'uncles': 1,\n",
      "          'begins': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'suspicious': 1,\n",
      "          'disingenuous': 1,\n",
      "          'reporters': 1,\n",
      "          'advances': 1,\n",
      "          'delicate': 1,\n",
      "          'power': 1,\n",
      "          'using': 1,\n",
      "          'details': 1,\n",
      "          'newspaper': 1,\n",
      "          'article': 1,\n",
      "          'tries': 1,\n",
      "          'secretly': 1,\n",
      "          'remove': 1,\n",
      "          'discovers': 1,\n",
      "          'beauty': 1,\n",
      "          'pas': 1,\n",
      "          'de': 1,\n",
      "          'deux': 1,\n",
      "          'try': 1,\n",
      "          'psych': 1,\n",
      "          'nshe': 1,\n",
      "          'wants': 1,\n",
      "          'leave': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'go': 1,\n",
      "          'local': 1,\n",
      "          'rich': 1,\n",
      "          'prospective': 1,\n",
      "          'nwill': 1,\n",
      "          'kill': 1,\n",
      "          'get': 1,\n",
      "          'nharmon': 1,\n",
      "          'wonderfully': 1,\n",
      "          'creepy': 1,\n",
      "          'smug': 1,\n",
      "          'tough': 1,\n",
      "          'trapped': 1,\n",
      "          'nwith': 1,\n",
      "          'deft': 1,\n",
      "          'touch': 1,\n",
      "          'director': 1,\n",
      "          'sets': 1,\n",
      "          'several': 1,\n",
      "          'thunderstorms': 1,\n",
      "          'tom': 1,\n",
      "          'neuwirths': 1,\n",
      "          'sepiatoned': 1,\n",
      "          'cinematography': 1,\n",
      "          'makes': 1,\n",
      "          'filmed': 1,\n",
      "          '50s': 1,\n",
      "          'nmy': 1,\n",
      "          'quibble': 1,\n",
      "          'directors': 1,\n",
      "          'awkward': 1,\n",
      "          'staging': 1,\n",
      "          'final': 1,\n",
      "          'train': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'version': 1,\n",
      "          'better': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'one': 1,\n",
      "          'worth': 1,\n",
      "          'watching': 1,\n",
      "          'well': 1,\n",
      "          'nactually': 1,\n",
      "          'yes': 1,\n",
      "          'nshadow': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '40': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'adult': 1,\n",
      "          'themes': 1,\n",
      "          'fine': 1,\n",
      "          'kids': 1,\n",
      "          'around': 1,\n",
      "          'nine': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'abby': 5,\n",
      "          'man': 5,\n",
      "          'nthe': 4,\n",
      "          'men': 3,\n",
      "          'nora': 3,\n",
      "          'person': 3,\n",
      "          'dog': 3,\n",
      "          'know': 2,\n",
      "          'truth': 2,\n",
      "          'cats': 2,\n",
      "          'dogs': 2,\n",
      "          'movie': 2,\n",
      "          'us': 2,\n",
      "          'certain': 2,\n",
      "          'get': 2,\n",
      "          'beautiful': 2,\n",
      "          'thing': 2,\n",
      "          'janeane': 2,\n",
      "          'well': 2,\n",
      "          'nlike': 2,\n",
      "          'sees': 2,\n",
      "          'uma': 2,\n",
      "          'noras': 2,\n",
      "          'knows': 2,\n",
      "          'personality': 2,\n",
      "          'asks': 2,\n",
      "          'though': 2,\n",
      "          'body': 2,\n",
      "          'doesnt': 2,\n",
      "          'quite': 2,\n",
      "          'furthering': 2,\n",
      "          'phone': 2,\n",
      "          'rather': 2,\n",
      "          'life': 2,\n",
      "          'want': 1,\n",
      "          'ndo': 1,\n",
      "          'nwell': 1,\n",
      "          'shows': 1,\n",
      "          'make': 1,\n",
      "          'good': 1,\n",
      "          'companions': 1,\n",
      "          'pale': 1,\n",
      "          'comparison': 1,\n",
      "          'joy': 1,\n",
      "          'fulfillment': 1,\n",
      "          'romantic': 1,\n",
      "          'relationships': 1,\n",
      "          'bring': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'theres': 1,\n",
      "          'giant': 1,\n",
      "          'roadblock': 1,\n",
      "          'set': 1,\n",
      "          'culture': 1,\n",
      "          'people': 1,\n",
      "          'rest': 1,\n",
      "          'mill': 1,\n",
      "          'around': 1,\n",
      "          'outside': 1,\n",
      "          'feeling': 1,\n",
      "          'sorry': 1,\n",
      "          'na': 1,\n",
      "          'checkpoint': 1,\n",
      "          'kind': 1,\n",
      "          'garafolos': 1,\n",
      "          'character': 1,\n",
      "          'relates': 1,\n",
      "          'oversized': 1,\n",
      "          'teenage': 1,\n",
      "          'critic': 1,\n",
      "          'intelligent': 1,\n",
      "          'great': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'strikes': 1,\n",
      "          'opposite': 1,\n",
      "          'sex': 1,\n",
      "          'physically': 1,\n",
      "          'unattractive': 1,\n",
      "          'seem': 1,\n",
      "          'backing': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'gorgeous': 1,\n",
      "          'neighbor': 1,\n",
      "          'thurman': 1,\n",
      "          'numa': 1,\n",
      "          'womans': 1,\n",
      "          'name': 1,\n",
      "          'worse': 1,\n",
      "          'attracts': 1,\n",
      "          'like': 1,\n",
      "          'flies': 1,\n",
      "          'nas': 1,\n",
      "          'tells': 1,\n",
      "          'burp': 1,\n",
      "          'think': 1,\n",
      "          'cute': 1,\n",
      "          'nyou': 1,\n",
      "          'barf': 1,\n",
      "          'line': 1,\n",
      "          'hold': 1,\n",
      "          'hair': 1,\n",
      "          'back': 1,\n",
      "          'nbut': 1,\n",
      "          'shallow': 1,\n",
      "          'superficial': 1,\n",
      "          'nwe': 1,\n",
      "          'prwhen': 1,\n",
      "          'calls': 1,\n",
      "          'veterinarian': 1,\n",
      "          'abbys': 1,\n",
      "          'talk': 1,\n",
      "          'radio': 1,\n",
      "          'show': 1,\n",
      "          'wanting': 1,\n",
      "          'roller': 1,\n",
      "          'skates': 1,\n",
      "          'basset': 1,\n",
      "          'hound': 1,\n",
      "          'n': 1,\n",
      "          'oh': 1,\n",
      "          'come': 1,\n",
      "          'idiot': 1,\n",
      "          'handle': 1,\n",
      "          'problem': 1,\n",
      "          'nhe': 1,\n",
      "          'likes': 1,\n",
      "          'professional': 1,\n",
      "          'demeanor': 1,\n",
      "          'meet': 1,\n",
      "          'nabby': 1,\n",
      "          'match': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'chance': 1,\n",
      "          'nso': 1,\n",
      "          'gives': 1,\n",
      "          'description': 1,\n",
      "          'stands': 1,\n",
      "          'nnora': 1,\n",
      "          'happens': 1,\n",
      "          'studio': 1,\n",
      "          'next': 1,\n",
      "          'day': 1,\n",
      "          'comes': 1,\n",
      "          'big': 1,\n",
      "          'favor': 1,\n",
      "          'nshe': 1,\n",
      "          'goes': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'along': 1,\n",
      "          'masquerade': 1,\n",
      "          'three': 1,\n",
      "          'head': 1,\n",
      "          'night': 1,\n",
      "          'fun': 1,\n",
      "          'assuming': 1,\n",
      "          'role': 1,\n",
      "          'goat': 1,\n",
      "          'cheese': 1,\n",
      "          'farmer': 1,\n",
      "          'named': 1,\n",
      "          'donna': 1,\n",
      "          'finds': 1,\n",
      "          'even': 1,\n",
      "          'girl': 1,\n",
      "          'shes': 1,\n",
      "          'intellectual': 1,\n",
      "          'confident': 1,\n",
      "          'suspect': 1,\n",
      "          'anything': 1,\n",
      "          'realizing': 1,\n",
      "          'hes': 1,\n",
      "          'living': 1,\n",
      "          'threes': 1,\n",
      "          'company': 1,\n",
      "          'episode': 1,\n",
      "          'charade': 1,\n",
      "          'continues': 1,\n",
      "          'relationship': 1,\n",
      "          'including': 1,\n",
      "          'decidedly': 1,\n",
      "          'unnecessary': 1,\n",
      "          'sexmasturbation': 1,\n",
      "          'sequence': 1,\n",
      "          'eventually': 1,\n",
      "          'finding': 1,\n",
      "          'attracted': 1,\n",
      "          'sleepless': 1,\n",
      "          'seattle': 1,\n",
      "          'comedyromance': 1,\n",
      "          'predictable': 1,\n",
      "          'way': 1,\n",
      "          'care': 1,\n",
      "          'enough': 1,\n",
      "          'characters': 1,\n",
      "          'root': 1,\n",
      "          'romance': 1,\n",
      "          'blossom': 1,\n",
      "          'isnt': 1,\n",
      "          'entertaining': 1,\n",
      "          'expecting': 1,\n",
      "          'handles': 1,\n",
      "          'theme': 1,\n",
      "          'could': 1,\n",
      "          'identify': 1,\n",
      "          'find': 1,\n",
      "          'garafolo': 1,\n",
      "          'attractive': 1,\n",
      "          'nshes': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'real': 1,\n",
      "          'shed': 1,\n",
      "          'problems': 1,\n",
      "          'attracting': 1,\n",
      "          'ni': 1,\n",
      "          'hand': 1,\n",
      "          'couldnt': 1,\n",
      "          'attract': 1,\n",
      "          'save': 1,\n",
      "          'nand': 1,\n",
      "          'proud': 1,\n",
      "          'fact': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'alien': 31,\n",
      "          'film': 23,\n",
      "          '3': 15,\n",
      "          'one': 14,\n",
      "          'nthe': 13,\n",
      "          'ripley': 10,\n",
      "          'aliens': 9,\n",
      "          'see': 7,\n",
      "          'films': 7,\n",
      "          'characters': 7,\n",
      "          'fincher': 7,\n",
      "          'quite': 6,\n",
      "          'ni': 5,\n",
      "          'like': 5,\n",
      "          'dialogue': 5,\n",
      "          'two': 5,\n",
      "          'nalien': 5,\n",
      "          'lot': 5,\n",
      "          'didnt': 4,\n",
      "          'course': 4,\n",
      "          'nin': 4,\n",
      "          'action': 4,\n",
      "          'scene': 4,\n",
      "          'long': 4,\n",
      "          'nas': 4,\n",
      "          'nhowever': 4,\n",
      "          'really': 4,\n",
      "          'movie': 4,\n",
      "          'sets': 4,\n",
      "          'title': 4,\n",
      "          'nits': 4,\n",
      "          'actors': 4,\n",
      "          'order': 3,\n",
      "          'camerons': 3,\n",
      "          'many': 3,\n",
      "          'people': 3,\n",
      "          'series': 3,\n",
      "          'extremely': 3,\n",
      "          'entertaining': 3,\n",
      "          'nmany': 3,\n",
      "          'chase': 3,\n",
      "          'much': 3,\n",
      "          'bit': 3,\n",
      "          'suspense': 3,\n",
      "          'screen': 3,\n",
      "          'dark': 3,\n",
      "          'result': 3,\n",
      "          'nwe': 3,\n",
      "          'care': 3,\n",
      "          'dance': 3,\n",
      "          'exactly': 3,\n",
      "          'entire': 3,\n",
      "          'little': 3,\n",
      "          'n': 3,\n",
      "          'first': 3,\n",
      "          'facehugger': 3,\n",
      "          'sent': 3,\n",
      "          'nripley': 3,\n",
      "          'inmates': 3,\n",
      "          'nthis': 3,\n",
      "          'memorable': 3,\n",
      "          'nfincher': 3,\n",
      "          'symbolism': 3,\n",
      "          'creates': 3,\n",
      "          'finchers': 3,\n",
      "          'fake': 3,\n",
      "          'actually': 3,\n",
      "          'several': 3,\n",
      "          'terrific': 3,\n",
      "          'thing': 3,\n",
      "          'though': 3,\n",
      "          'could': 3,\n",
      "          'turns': 3,\n",
      "          'performance': 3,\n",
      "          'must': 2,\n",
      "          'admit': 2,\n",
      "          'nof': 2,\n",
      "          'need': 2,\n",
      "          'away': 2,\n",
      "          'best': 2,\n",
      "          'critics': 2,\n",
      "          'thought': 2,\n",
      "          'final': 2,\n",
      "          'sequence': 2,\n",
      "          'confusion': 2,\n",
      "          'something': 2,\n",
      "          'normally': 2,\n",
      "          'language': 2,\n",
      "          'always': 2,\n",
      "          'get': 2,\n",
      "          'saying': 2,\n",
      "          'swearing': 2,\n",
      "          'seeing': 2,\n",
      "          'mainly': 2,\n",
      "          'aspect': 2,\n",
      "          'major': 2,\n",
      "          'never': 2,\n",
      "          'scenes': 2,\n",
      "          'lt': 2,\n",
      "          'weaver': 2,\n",
      "          'although': 2,\n",
      "          'character': 2,\n",
      "          'charles': 2,\n",
      "          'cinematic': 2,\n",
      "          'impressive': 2,\n",
      "          'shot': 2,\n",
      "          'nand': 2,\n",
      "          'remarkable': 2,\n",
      "          'time': 2,\n",
      "          'escape': 2,\n",
      "          'pod': 2,\n",
      "          'planet': 2,\n",
      "          'refinery': 2,\n",
      "          'prison': 2,\n",
      "          'killed': 2,\n",
      "          'taken': 2,\n",
      "          'back': 2,\n",
      "          'dog': 2,\n",
      "          'asks': 2,\n",
      "          'dutton': 2,\n",
      "          'found': 2,\n",
      "          'moments': 2,\n",
      "          'easily': 2,\n",
      "          'kubrick': 2,\n",
      "          'fact': 2,\n",
      "          'figure': 2,\n",
      "          'complete': 2,\n",
      "          'metaphorical': 2,\n",
      "          'images': 2,\n",
      "          'nothing': 2,\n",
      "          'portrayal': 2,\n",
      "          'motion': 2,\n",
      "          'nice': 2,\n",
      "          'iron': 2,\n",
      "          'mood': 2,\n",
      "          'seem': 2,\n",
      "          'want': 2,\n",
      "          'die': 2,\n",
      "          'nwhy': 2,\n",
      "          'ending': 2,\n",
      "          'faces': 2,\n",
      "          'look': 2,\n",
      "          'makes': 2,\n",
      "          'context': 2,\n",
      "          'plot': 2,\n",
      "          'take': 2,\n",
      "          'predecessors': 2,\n",
      "          'thats': 2,\n",
      "          'pretty': 2,\n",
      "          'nagain': 2,\n",
      "          'different': 2,\n",
      "          'life': 2,\n",
      "          'even': 2,\n",
      "          'previous': 2,\n",
      "          'nwhile': 2,\n",
      "          'camera': 2,\n",
      "          'well': 2,\n",
      "          'around': 2,\n",
      "          'create': 2,\n",
      "          'yet': 2,\n",
      "          'future': 2,\n",
      "          'far': 2,\n",
      "          'critical': 2,\n",
      "          'ncharles': 2,\n",
      "          'strong': 2,\n",
      "          'immediately': 2,\n",
      "          'reminds': 2,\n",
      "          'throughout': 2,\n",
      "          'may': 2,\n",
      "          'us': 2,\n",
      "          'mistake': 2,\n",
      "          'seen': 1,\n",
      "          'theaters': 1,\n",
      "          'saw': 1,\n",
      "          '13': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'expecting': 1,\n",
      "          'believe': 1,\n",
      "          'fault': 1,\n",
      "          'appreciate': 1,\n",
      "          'also': 1,\n",
      "          'wipe': 1,\n",
      "          'expectations': 1,\n",
      "          'predecessor': 1,\n",
      "          'njames': 1,\n",
      "          'consider': 1,\n",
      "          'among': 1,\n",
      "          'group': 1,\n",
      "          'bashed': 1,\n",
      "          'originality': 1,\n",
      "          'went': 1,\n",
      "          'others': 1,\n",
      "          'enough': 1,\n",
      "          'nboth': 1,\n",
      "          'untrue': 1,\n",
      "          'essential': 1,\n",
      "          'wellwritten': 1,\n",
      "          'overly': 1,\n",
      "          'creating': 1,\n",
      "          'nperhaps': 1,\n",
      "          'watching': 1,\n",
      "          'video': 1,\n",
      "          'helped': 1,\n",
      "          'non': 1,\n",
      "          'big': 1,\n",
      "          'overwhelmed': 1,\n",
      "          'nit': 1,\n",
      "          'harsh': 1,\n",
      "          'figured': 1,\n",
      "          'rely': 1,\n",
      "          'smart': 1,\n",
      "          'instead': 1,\n",
      "          'moronic': 1,\n",
      "          'profanities': 1,\n",
      "          'ndont': 1,\n",
      "          'wrongim': 1,\n",
      "          'eliminate': 1,\n",
      "          'substitutes': 1,\n",
      "          'profane': 1,\n",
      "          'remarks': 1,\n",
      "          'gets': 1,\n",
      "          'rather': 1,\n",
      "          'distracting': 1,\n",
      "          'since': 1,\n",
      "          'realize': 1,\n",
      "          'restrained': 1,\n",
      "          'hatred': 1,\n",
      "          '3s': 1,\n",
      "          'flaw': 1,\n",
      "          'albeit': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'feeling': 1,\n",
      "          'cut': 1,\n",
      "          'shorten': 1,\n",
      "          'length': 1,\n",
      "          'nthere': 1,\n",
      "          'liked': 1,\n",
      "          'sigourney': 1,\n",
      "          'gotten': 1,\n",
      "          'know': 1,\n",
      "          'dr': 1,\n",
      "          'clemens': 1,\n",
      "          'inevitable': 1,\n",
      "          'occurs': 1,\n",
      "          'begins': 1,\n",
      "          'left': 1,\n",
      "          'prologue': 1,\n",
      "          'pure': 1,\n",
      "          'achievement': 1,\n",
      "          'director': 1,\n",
      "          'david': 1,\n",
      "          'directed': 1,\n",
      "          'music': 1,\n",
      "          'videos': 1,\n",
      "          'chance': 1,\n",
      "          'entry': 1,\n",
      "          'nwithout': 1,\n",
      "          'using': 1,\n",
      "          'single': 1,\n",
      "          'line': 1,\n",
      "          'unless': 1,\n",
      "          'count': 1,\n",
      "          'computer': 1,\n",
      "          'warnings': 1,\n",
      "          'nan': 1,\n",
      "          'shows': 1,\n",
      "          'seconds': 1,\n",
      "          'cutting': 1,\n",
      "          'card': 1,\n",
      "          'girl': 1,\n",
      "          'cryogenic': 1,\n",
      "          'compartments': 1,\n",
      "          'na': 1,\n",
      "          'egg': 1,\n",
      "          'legs': 1,\n",
      "          'stretch': 1,\n",
      "          'air': 1,\n",
      "          'nduring': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'learned': 1,\n",
      "          'everything': 1,\n",
      "          'proceed': 1,\n",
      "          'opening': 1,\n",
      "          'remain': 1,\n",
      "          'mind': 1,\n",
      "          'nbecause': 1,\n",
      "          'hatched': 1,\n",
      "          'aboard': 1,\n",
      "          'vessel': 1,\n",
      "          'hypersleep': 1,\n",
      "          'containers': 1,\n",
      "          'nearest': 1,\n",
      "          'fiorina': 1,\n",
      "          'fury161': 1,\n",
      "          'ore': 1,\n",
      "          'turned': 1,\n",
      "          'maximum': 1,\n",
      "          'security': 1,\n",
      "          'managed': 1,\n",
      "          'attach': 1,\n",
      "          'cryotubes': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'landing': 1,\n",
      "          'survivors': 1,\n",
      "          'discovered': 1,\n",
      "          'carrier': 1,\n",
      "          'attachs': 1,\n",
      "          'came': 1,\n",
      "          'team': 1,\n",
      "          'revived': 1,\n",
      "          'ship': 1,\n",
      "          'nafter': 1,\n",
      "          'mysterious': 1,\n",
      "          'acideaten': 1,\n",
      "          'section': 1,\n",
      "          'dead': 1,\n",
      "          'bodies': 1,\n",
      "          'cremated': 1,\n",
      "          'cremation': 1,\n",
      "          'powerful': 1,\n",
      "          'nfeaturing': 1,\n",
      "          'monologue': 1,\n",
      "          'dillon': 1,\n",
      "          'prisoner': 1,\n",
      "          'god': 1,\n",
      "          'cuts': 1,\n",
      "          'forth': 1,\n",
      "          'ceremony': 1,\n",
      "          'dogs': 1,\n",
      "          'demise': 1,\n",
      "          'speech': 1,\n",
      "          'reflects': 1,\n",
      "          'going': 1,\n",
      "          'succeeds': 1,\n",
      "          'injects': 1,\n",
      "          'becoming': 1,\n",
      "          'next': 1,\n",
      "          'stanley': 1,\n",
      "          'alfred': 1,\n",
      "          'hitchcock': 1,\n",
      "          'mixture': 1,\n",
      "          'knows': 1,\n",
      "          'directors': 1,\n",
      "          'control': 1,\n",
      "          'riddled': 1,\n",
      "          'symbolic': 1,\n",
      "          'speeches': 1,\n",
      "          'nby': 1,\n",
      "          'franchise': 1,\n",
      "          'criticized': 1,\n",
      "          'filming': 1,\n",
      "          'death': 1,\n",
      "          'reveal': 1,\n",
      "          'looking': 1,\n",
      "          'enjoy': 1,\n",
      "          'relish': 1,\n",
      "          'nshowing': 1,\n",
      "          'fall': 1,\n",
      "          'slow': 1,\n",
      "          'touch': 1,\n",
      "          'showing': 1,\n",
      "          'hit': 1,\n",
      "          'vat': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'derived': 1,\n",
      "          'feel': 1,\n",
      "          'would': 1,\n",
      "          'spoiled': 1,\n",
      "          'shown': 1,\n",
      "          'splash': 1,\n",
      "          'molten': 1,\n",
      "          'witness': 1,\n",
      "          'paradox': 1,\n",
      "          'surprises': 1,\n",
      "          'dont': 1,\n",
      "          'plan': 1,\n",
      "          'spoiling': 1,\n",
      "          'review': 1,\n",
      "          'nfrom': 1,\n",
      "          'every': 1,\n",
      "          'comes': 1,\n",
      "          'stick': 1,\n",
      "          'forever': 1,\n",
      "          'moment': 1,\n",
      "          'burst': 1,\n",
      "          'kanes': 1,\n",
      "          'stomach': 1,\n",
      "          'showdown': 1,\n",
      "          'machine': 1,\n",
      "          'involving': 1,\n",
      "          'pushed': 1,\n",
      "          'wall': 1,\n",
      "          'stands': 1,\n",
      "          'inches': 1,\n",
      "          'doesnt': 1,\n",
      "          'kill': 1,\n",
      "          'shocker': 1,\n",
      "          'later': 1,\n",
      "          'leads': 1,\n",
      "          'surprise': 1,\n",
      "          'apparently': 1,\n",
      "          'loves': 1,\n",
      "          'use': 1,\n",
      "          'closeups': 1,\n",
      "          'michael': 1,\n",
      "          'douglas': 1,\n",
      "          'clown': 1,\n",
      "          'faceoff': 1,\n",
      "          'game': 1,\n",
      "          'style': 1,\n",
      "          'shaving': 1,\n",
      "          'hair': 1,\n",
      "          'bald': 1,\n",
      "          'sense': 1,\n",
      "          'nmost': 1,\n",
      "          'works': 1,\n",
      "          'story': 1,\n",
      "          'try': 1,\n",
      "          'compare': 1,\n",
      "          'turn': 1,\n",
      "          'seems': 1,\n",
      "          'gloomy': 1,\n",
      "          'bad': 1,\n",
      "          'rehash': 1,\n",
      "          'twists': 1,\n",
      "          'setup': 1,\n",
      "          'picked': 1,\n",
      "          'tons': 1,\n",
      "          'arsenal': 1,\n",
      "          'especially': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'devoid': 1,\n",
      "          'human': 1,\n",
      "          'except': 1,\n",
      "          'rundown': 1,\n",
      "          'weapons': 1,\n",
      "          'tension': 1,\n",
      "          'added': 1,\n",
      "          'worst': 1,\n",
      "          'wellmade': 1,\n",
      "          'picture': 1,\n",
      "          'merits': 1,\n",
      "          'unfortunate': 1,\n",
      "          'surrounding': 1,\n",
      "          'second': 1,\n",
      "          'sequel': 1,\n",
      "          'onedimensional': 1,\n",
      "          'emotionally': 1,\n",
      "          'involved': 1,\n",
      "          'hardcore': 1,\n",
      "          'criminals': 1,\n",
      "          'less': 1,\n",
      "          'ndespite': 1,\n",
      "          'central': 1,\n",
      "          'important': 1,\n",
      "          'began': 1,\n",
      "          'act': 1,\n",
      "          'guys': 1,\n",
      "          'technical': 1,\n",
      "          'side': 1,\n",
      "          'better': 1,\n",
      "          'versions': 1,\n",
      "          'version': 1,\n",
      "          'pumped': 1,\n",
      "          'massive': 1,\n",
      "          'artillary': 1,\n",
      "          'uses': 1,\n",
      "          'brilliant': 1,\n",
      "          'angles': 1,\n",
      "          'lighting': 1,\n",
      "          'moody': 1,\n",
      "          'cinematography': 1,\n",
      "          'alex': 1,\n",
      "          'thomson': 1,\n",
      "          'done': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'draws': 1,\n",
      "          'viewer': 1,\n",
      "          'confused': 1,\n",
      "          'chased': 1,\n",
      "          'yellows': 1,\n",
      "          'reds': 1,\n",
      "          'oranges': 1,\n",
      "          'lights': 1,\n",
      "          'nshadows': 1,\n",
      "          'walls': 1,\n",
      "          'shadows': 1,\n",
      "          'swiftness': 1,\n",
      "          'intense': 1,\n",
      "          'likes': 1,\n",
      "          'perspective': 1,\n",
      "          'racing': 1,\n",
      "          'incredible': 1,\n",
      "          'reminiscient': 1,\n",
      "          'nostromo': 1,\n",
      "          'narrow': 1,\n",
      "          'corridors': 1,\n",
      "          'labrynthine': 1,\n",
      "          'hallways': 1,\n",
      "          'constructed': 1,\n",
      "          'appear': 1,\n",
      "          'none': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'aids': 1,\n",
      "          'destruction': 1,\n",
      "          'surprising': 1,\n",
      "          'nsigourney': 1,\n",
      "          'another': 1,\n",
      "          'good': 1,\n",
      "          'equaling': 1,\n",
      "          'nshe': 1,\n",
      "          'snubbed': 1,\n",
      "          'oscars': 1,\n",
      "          'bomb': 1,\n",
      "          'nher': 1,\n",
      "          'reactions': 1,\n",
      "          'realistic': 1,\n",
      "          'crying': 1,\n",
      "          'loss': 1,\n",
      "          'child': 1,\n",
      "          'risked': 1,\n",
      "          'saving': 1,\n",
      "          'encounter': 1,\n",
      "          'touching': 1,\n",
      "          'brink': 1,\n",
      "          'caring': 1,\n",
      "          'lowkey': 1,\n",
      "          'cared': 1,\n",
      "          'nlance': 1,\n",
      "          'henriksen': 1,\n",
      "          'brief': 1,\n",
      "          'appearance': 1,\n",
      "          'bishop': 1,\n",
      "          'ii': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'stale': 1,\n",
      "          'pete': 1,\n",
      "          'postlethwaite': 1,\n",
      "          'sticks': 1,\n",
      "          'due': 1,\n",
      "          'recent': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'lost': 1,\n",
      "          'world': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'violence': 1,\n",
      "          'sex': 1,\n",
      "          'nalthough': 1,\n",
      "          'flaws': 1,\n",
      "          'highly': 1,\n",
      "          'rich': 1,\n",
      "          'fun': 1,\n",
      "          'spot': 1,\n",
      "          'moral': 1,\n",
      "          'message': 1,\n",
      "          'relies': 1,\n",
      "          'devices': 1,\n",
      "          'bring': 1,\n",
      "          'meanings': 1,\n",
      "          'okay': 1,\n",
      "          'sacrifice': 1,\n",
      "          'quality': 1,\n",
      "          'quantity': 1,\n",
      "          'tells': 1,\n",
      "          'society': 1,\n",
      "          'become': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'nwhenever': 1,\n",
      "          'looks': 1,\n",
      "          'point': 1,\n",
      "          'nbut': 1,\n",
      "          'perhaps': 1,\n",
      "          'isnt': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'dead': 5,\n",
      "          'films': 5,\n",
      "          'two': 5,\n",
      "          'scene': 5,\n",
      "          'evil': 4,\n",
      "          'nthe': 4,\n",
      "          'sam': 4,\n",
      "          'title': 4,\n",
      "          'budget': 3,\n",
      "          'woods': 3,\n",
      "          '1': 3,\n",
      "          'audio': 3,\n",
      "          'track': 3,\n",
      "          'rob': 3,\n",
      "          'nalso': 3,\n",
      "          'time': 3,\n",
      "          'footage': 3,\n",
      "          'many': 3,\n",
      "          'much': 3,\n",
      "          'low': 2,\n",
      "          'extremely': 2,\n",
      "          'horror': 2,\n",
      "          'group': 2,\n",
      "          'friends': 2,\n",
      "          'book': 2,\n",
      "          'campbell': 2,\n",
      "          'demons': 2,\n",
      "          'dvd': 2,\n",
      "          'release': 2,\n",
      "          'entertainment': 2,\n",
      "          'contains': 2,\n",
      "          'original': 2,\n",
      "          'disc': 2,\n",
      "          'commentary': 2,\n",
      "          'features': 2,\n",
      "          'raimi': 2,\n",
      "          'tapert': 2,\n",
      "          'bruce': 2,\n",
      "          'informative': 2,\n",
      "          'thats': 2,\n",
      "          'marijuana': 2,\n",
      "          'became': 2,\n",
      "          'say': 2,\n",
      "          'entertaining': 2,\n",
      "          'long': 2,\n",
      "          'good': 2,\n",
      "          'raw': 2,\n",
      "          'edition': 2,\n",
      "          'fan': 2,\n",
      "          'ultra': 1,\n",
      "          'inventive': 1,\n",
      "          'vacationing': 1,\n",
      "          'cabin': 1,\n",
      "          'accidentally': 1,\n",
      "          'awaken': 1,\n",
      "          'force': 1,\n",
      "          'via': 1,\n",
      "          'necronomicon': 1,\n",
      "          'nbruce': 1,\n",
      "          'stars': 1,\n",
      "          'ash': 1,\n",
      "          'eventually': 1,\n",
      "          'becomes': 1,\n",
      "          'sole': 1,\n",
      "          'survivor': 1,\n",
      "          'battle': 1,\n",
      "          'become': 1,\n",
      "          'including': 1,\n",
      "          'girlfriend': 1,\n",
      "          'results': 1,\n",
      "          'shown': 1,\n",
      "          'screen': 1,\n",
      "          'amazing': 1,\n",
      "          'considering': 1,\n",
      "          'tiny': 1,\n",
      "          'constant': 1,\n",
      "          'location': 1,\n",
      "          'changes': 1,\n",
      "          'filming': 1,\n",
      "          'schedule': 1,\n",
      "          'sporadic': 1,\n",
      "          'years': 1,\n",
      "          'nfollowed': 1,\n",
      "          'sequels': 1,\n",
      "          'ii': 1,\n",
      "          '1987': 1,\n",
      "          'army': 1,\n",
      "          'darkness': 1,\n",
      "          '1993': 1,\n",
      "          'elite': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '33': 1,\n",
      "          'versions': 1,\n",
      "          'stereo': 1,\n",
      "          '2': 1,\n",
      "          '0': 1,\n",
      "          'newly': 1,\n",
      "          'remastered': 1,\n",
      "          'dolby': 1,\n",
      "          'digital': 1,\n",
      "          '5': 1,\n",
      "          'nincluded': 1,\n",
      "          'separate': 1,\n",
      "          'running': 1,\n",
      "          'tracks': 1,\n",
      "          'first': 1,\n",
      "          'writerdirector': 1,\n",
      "          'producer': 1,\n",
      "          'second': 1,\n",
      "          'star': 1,\n",
      "          'ncampbells': 1,\n",
      "          'witty': 1,\n",
      "          'story': 1,\n",
      "          'tell': 1,\n",
      "          'virtually': 1,\n",
      "          'every': 1,\n",
      "          'nsuch': 1,\n",
      "          'tidbits': 1,\n",
      "          'include': 1,\n",
      "          'going': 1,\n",
      "          'fact': 1,\n",
      "          'premiered': 1,\n",
      "          '1981': 1,\n",
      "          'asked': 1,\n",
      "          'change': 1,\n",
      "          'everyone': 1,\n",
      "          'thought': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'heard': 1,\n",
      "          'theres': 1,\n",
      "          'early': 1,\n",
      "          'sits': 1,\n",
      "          'around': 1,\n",
      "          'listens': 1,\n",
      "          'tape': 1,\n",
      "          'recorder': 1,\n",
      "          'theyve': 1,\n",
      "          'found': 1,\n",
      "          'explaining': 1,\n",
      "          'demonic': 1,\n",
      "          'forces': 1,\n",
      "          'nfor': 1,\n",
      "          'written': 1,\n",
      "          'characters': 1,\n",
      "          'smoking': 1,\n",
      "          'wacky': 1,\n",
      "          'kids': 1,\n",
      "          'decided': 1,\n",
      "          'actually': 1,\n",
      "          'smoke': 1,\n",
      "          'nalmost': 1,\n",
      "          'unusable': 1,\n",
      "          'actors': 1,\n",
      "          'never': 1,\n",
      "          'smoked': 1,\n",
      "          'result': 1,\n",
      "          'confused': 1,\n",
      "          'unable': 1,\n",
      "          'perform': 1,\n",
      "          'ni': 1,\n",
      "          'wish': 1,\n",
      "          'factor': 1,\n",
      "          'high': 1,\n",
      "          'raimirob': 1,\n",
      "          'people': 1,\n",
      "          'youd': 1,\n",
      "          'think': 1,\n",
      "          'would': 1,\n",
      "          'enthusiastic': 1,\n",
      "          'talking': 1,\n",
      "          'instead': 1,\n",
      "          'barely': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'wrong': 1,\n",
      "          'speak': 1,\n",
      "          'hear': 1,\n",
      "          'instances': 1,\n",
      "          'silent': 1,\n",
      "          'periods': 1,\n",
      "          'nsometimes': 1,\n",
      "          'one': 1,\n",
      "          'silences': 1,\n",
      "          'ask': 1,\n",
      "          'anything': 1,\n",
      "          'nto': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'sign': 1,\n",
      "          'seems': 1,\n",
      "          'like': 1,\n",
      "          'doesnt': 1,\n",
      "          'remember': 1,\n",
      "          'production': 1,\n",
      "          'nwell': 1,\n",
      "          'compared': 1,\n",
      "          'anyway': 1,\n",
      "          'included': 1,\n",
      "          'photo': 1,\n",
      "          'gallery': 1,\n",
      "          'includes': 1,\n",
      "          'pictures': 1,\n",
      "          'gala': 1,\n",
      "          'premiere': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'nthis': 1,\n",
      "          'really': 1,\n",
      "          'shows': 1,\n",
      "          'improved': 1,\n",
      "          'upon': 1,\n",
      "          'using': 1,\n",
      "          'simple': 1,\n",
      "          'techniques': 1,\n",
      "          'noverall': 1,\n",
      "          'superior': 1,\n",
      "          'genre': 1,\n",
      "          'nand': 1,\n",
      "          'collectors': 1,\n",
      "          'well': 1,\n",
      "          'worth': 1,\n",
      "          'youre': 1,\n",
      "          'either': 1,\n",
      "          'filmmaking': 1,\n",
      "          'process': 1,\n",
      "          'nall': 1,\n",
      "          'special': 1,\n",
      "          'dvds': 1,\n",
      "          'thorough': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'jack': 6,\n",
      "          'karen': 5,\n",
      "          'sight': 4,\n",
      "          'foley': 4,\n",
      "          'nbut': 4,\n",
      "          'gives': 3,\n",
      "          'best': 3,\n",
      "          'clooney': 3,\n",
      "          'love': 3,\n",
      "          'crime': 3,\n",
      "          'delivers': 3,\n",
      "          'actually': 3,\n",
      "          'good': 3,\n",
      "          'leonard': 2,\n",
      "          'quickly': 2,\n",
      "          'one': 2,\n",
      "          'nout': 2,\n",
      "          'robber': 2,\n",
      "          'nhe': 2,\n",
      "          'escape': 2,\n",
      "          'zahn': 2,\n",
      "          'sisco': 2,\n",
      "          'lopez': 2,\n",
      "          'nhowever': 2,\n",
      "          'performance': 2,\n",
      "          'role': 2,\n",
      "          'excellent': 2,\n",
      "          'nshe': 2,\n",
      "          'may': 2,\n",
      "          'cast': 2,\n",
      "          'nwith': 2,\n",
      "          'films': 2,\n",
      "          'action': 2,\n",
      "          'seem': 2,\n",
      "          'spots': 2,\n",
      "          'elmore': 1,\n",
      "          'become': 1,\n",
      "          'hollywoods': 1,\n",
      "          'favorite': 1,\n",
      "          'authors': 1,\n",
      "          'four': 1,\n",
      "          'adaptations': 1,\n",
      "          'many': 1,\n",
      "          'years': 1,\n",
      "          'witty': 1,\n",
      "          'inventive': 1,\n",
      "          'get': 1,\n",
      "          'shorty': 1,\n",
      "          'run': 1,\n",
      "          'money': 1,\n",
      "          'adaptation': 1,\n",
      "          'around': 1,\n",
      "          'ngeorge': 1,\n",
      "          'stars': 1,\n",
      "          'nice': 1,\n",
      "          'bank': 1,\n",
      "          'nknow': 1,\n",
      "          'type': 1,\n",
      "          'uses': 1,\n",
      "          'charm': 1,\n",
      "          'wits': 1,\n",
      "          'rather': 1,\n",
      "          'gun': 1,\n",
      "          'even': 1,\n",
      "          'charming': 1,\n",
      "          'guys': 1,\n",
      "          'end': 1,\n",
      "          'unlucky': 1,\n",
      "          'ends': 1,\n",
      "          'jail': 1,\n",
      "          'long': 1,\n",
      "          'plots': 1,\n",
      "          'help': 1,\n",
      "          'friend': 1,\n",
      "          'fellow': 1,\n",
      "          'buddy': 1,\n",
      "          'bragg': 1,\n",
      "          'ving': 1,\n",
      "          'rhames': 1,\n",
      "          'slowwitted': 1,\n",
      "          'pothead': 1,\n",
      "          'associate': 1,\n",
      "          'glenn': 1,\n",
      "          'michaels': 1,\n",
      "          'steve': 1,\n",
      "          'didnt': 1,\n",
      "          'count': 1,\n",
      "          'u': 1,\n",
      "          'marshal': 1,\n",
      "          'jennifer': 1,\n",
      "          'nappearing': 1,\n",
      "          'right': 1,\n",
      "          'place': 1,\n",
      "          'wrong': 1,\n",
      "          'time': 1,\n",
      "          'gets': 1,\n",
      "          'involved': 1,\n",
      "          'foleys': 1,\n",
      "          'attempt': 1,\n",
      "          'subsequent': 1,\n",
      "          'manhunt': 1,\n",
      "          'bring': 1,\n",
      "          'develops': 1,\n",
      "          'rapport': 1,\n",
      "          'finds': 1,\n",
      "          'begrudgingly': 1,\n",
      "          'likes': 1,\n",
      "          'guy': 1,\n",
      "          'prosper': 1,\n",
      "          'opposite': 1,\n",
      "          'sides': 1,\n",
      "          'law': 1,\n",
      "          'straighten': 1,\n",
      "          'goes': 1,\n",
      "          'far': 1,\n",
      "          'pursuit': 1,\n",
      "          'last': 1,\n",
      "          'nclooney': 1,\n",
      "          'string': 1,\n",
      "          'solid': 1,\n",
      "          'never': 1,\n",
      "          'stellar': 1,\n",
      "          'roles': 1,\n",
      "          'date': 1,\n",
      "          'blends': 1,\n",
      "          'perfectly': 1,\n",
      "          'risk': 1,\n",
      "          'taking': 1,\n",
      "          'whos': 1,\n",
      "          'willing': 1,\n",
      "          'gamble': 1,\n",
      "          'everything': 1,\n",
      "          'chance': 1,\n",
      "          'might': 1,\n",
      "          'true': 1,\n",
      "          'njennifer': 1,\n",
      "          'job': 1,\n",
      "          'well': 1,\n",
      "          'trickier': 1,\n",
      "          'woman': 1,\n",
      "          'balance': 1,\n",
      "          'emotions': 1,\n",
      "          'sense': 1,\n",
      "          'duty': 1,\n",
      "          'develop': 1,\n",
      "          'chemistry': 1,\n",
      "          'together': 1,\n",
      "          'nthe': 1,\n",
      "          'boasts': 1,\n",
      "          'superb': 1,\n",
      "          'ensemble': 1,\n",
      "          'nsteve': 1,\n",
      "          'hilarious': 1,\n",
      "          'steals': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'hes': 1,\n",
      "          'ndon': 1,\n",
      "          'cheadle': 1,\n",
      "          'appropriately': 1,\n",
      "          'sinister': 1,\n",
      "          'violent': 1,\n",
      "          'excon': 1,\n",
      "          'teaming': 1,\n",
      "          'nalbert': 1,\n",
      "          'brooks': 1,\n",
      "          'enjoyable': 1,\n",
      "          'white': 1,\n",
      "          'collar': 1,\n",
      "          'criminal': 1,\n",
      "          'talks': 1,\n",
      "          'much': 1,\n",
      "          'dennis': 1,\n",
      "          'farina': 1,\n",
      "          'seems': 1,\n",
      "          'underused': 1,\n",
      "          'karens': 1,\n",
      "          'exlawman': 1,\n",
      "          'father': 1,\n",
      "          'nsteven': 1,\n",
      "          'soderbergh': 1,\n",
      "          'sharp': 1,\n",
      "          'stylistic': 1,\n",
      "          'direction': 1,\n",
      "          'affectation': 1,\n",
      "          'freeze': 1,\n",
      "          'frames': 1,\n",
      "          'unique': 1,\n",
      "          'take': 1,\n",
      "          'scenes': 1,\n",
      "          'places': 1,\n",
      "          'notch': 1,\n",
      "          'routine': 1,\n",
      "          'na': 1,\n",
      "          'recurring': 1,\n",
      "          'series': 1,\n",
      "          'flashbacks': 1,\n",
      "          'makes': 1,\n",
      "          'complex': 1,\n",
      "          'ndevoid': 1,\n",
      "          'bells': 1,\n",
      "          'whistles': 1,\n",
      "          'fairly': 1,\n",
      "          'straightforward': 1,\n",
      "          'story': 1,\n",
      "          'bare': 1,\n",
      "          'pass': 1,\n",
      "          'smart': 1,\n",
      "          'dialogue': 1,\n",
      "          'characters': 1,\n",
      "          'easily': 1,\n",
      "          'smoothes': 1,\n",
      "          'rough': 1,\n",
      "          'plot': 1,\n",
      "          'romantic': 1,\n",
      "          'fronts': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'matrix': 3,\n",
      "          'reeves': 3,\n",
      "          'neo': 2,\n",
      "          'role': 2,\n",
      "          'ntheres': 2,\n",
      "          'story': 2,\n",
      "          'fishburne': 2,\n",
      "          'quite': 2,\n",
      "          'fight': 2,\n",
      "          'wachowskis': 2,\n",
      "          'great': 2,\n",
      "          'build': 2,\n",
      "          'films': 2,\n",
      "          'plenty': 2,\n",
      "          'course': 2,\n",
      "          'bob': 1,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          'quickie': 1,\n",
      "          'review': 1,\n",
      "          'nthe': 1,\n",
      "          'nwhats': 1,\n",
      "          'worse': 1,\n",
      "          'y2k': 1,\n",
      "          'nhow': 1,\n",
      "          'fully': 1,\n",
      "          'digital': 1,\n",
      "          'future': 1,\n",
      "          'nothing': 1,\n",
      "          'real': 1,\n",
      "          'nthats': 1,\n",
      "          'computer': 1,\n",
      "          'programmer': 1,\n",
      "          'keanu': 1,\n",
      "          'slowly': 1,\n",
      "          'learns': 1,\n",
      "          'enters': 1,\n",
      "          'dangerous': 1,\n",
      "          'world': 1,\n",
      "          'movie': 1,\n",
      "          'directed': 1,\n",
      "          'wachowski': 1,\n",
      "          'brothers': 1,\n",
      "          'guys': 1,\n",
      "          'behind': 1,\n",
      "          'hip': 1,\n",
      "          'thriller': 1,\n",
      "          'bound': 1,\n",
      "          'nbefore': 1,\n",
      "          'groan': 1,\n",
      "          'presence': 1,\n",
      "          'lead': 1,\n",
      "          'hold': 1,\n",
      "          'actually': 1,\n",
      "          'depth': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'group': 1,\n",
      "          'hackers': 1,\n",
      "          'stop': 1,\n",
      "          'system': 1,\n",
      "          'led': 1,\n",
      "          'bald': 1,\n",
      "          'brilliant': 1,\n",
      "          'laurence': 1,\n",
      "          'assisted': 1,\n",
      "          'carrie': 1,\n",
      "          'ann': 1,\n",
      "          'moss': 1,\n",
      "          'looks': 1,\n",
      "          'cool': 1,\n",
      "          'leather': 1,\n",
      "          'must': 1,\n",
      "          'say': 1,\n",
      "          'nneo': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'key': 1,\n",
      "          'player': 1,\n",
      "          'although': 1,\n",
      "          'really': 1,\n",
      "          'doesnt': 1,\n",
      "          'look': 1,\n",
      "          'first': 1,\n",
      "          'ncould': 1,\n",
      "          'amateur': 1,\n",
      "          'one': 1,\n",
      "          'fisburne': 1,\n",
      "          'thinks': 1,\n",
      "          'ncredit': 1,\n",
      "          'putting': 1,\n",
      "          'together': 1,\n",
      "          'allows': 1,\n",
      "          'suspense': 1,\n",
      "          'something': 1,\n",
      "          'special': 1,\n",
      "          'effectsladen': 1,\n",
      "          'seem': 1,\n",
      "          'days': 1,\n",
      "          'effects': 1,\n",
      "          'go': 1,\n",
      "          'around': 1,\n",
      "          'least': 1,\n",
      "          'theres': 1,\n",
      "          'backbone': 1,\n",
      "          'well': 1,\n",
      "          'nreeves': 1,\n",
      "          'surprisingly': 1,\n",
      "          'good': 1,\n",
      "          'particularly': 1,\n",
      "          'scene': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'goofy': 1,\n",
      "          'yet': 1,\n",
      "          'ni': 1,\n",
      "          'wish': 1,\n",
      "          'villains': 1,\n",
      "          'werent': 1,\n",
      "          'generic': 1,\n",
      "          'leftover': 1,\n",
      "          'gmen': 1,\n",
      "          'looking': 1,\n",
      "          'sweet': 1,\n",
      "          'scifi': 1,\n",
      "          'actioner': 1,\n",
      "          'stopmotion': 1,\n",
      "          'swooping': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'motherlode': 1,\n",
      "          'helicopter': 1,\n",
      "          'explosion': 1,\n",
      "          'nnow': 1,\n",
      "          'headed': 1,\n",
      "          'horror': 1,\n",
      "          'next': 1,\n",
      "          'project': 1,\n",
      "          'nbring': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'dalai': 3,\n",
      "          'lama': 3,\n",
      "          'kundun': 2,\n",
      "          'buddhist': 2,\n",
      "          'china': 2,\n",
      "          'way': 2,\n",
      "          'political': 2,\n",
      "          'interesting': 2,\n",
      "          'martin': 1,\n",
      "          'scorseses': 1,\n",
      "          'chronicles': 1,\n",
      "          'roughly': 1,\n",
      "          'first': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'life': 1,\n",
      "          'currently': 1,\n",
      "          'exiled': 1,\n",
      "          'criticized': 1,\n",
      "          'lack': 1,\n",
      "          'narrative': 1,\n",
      "          'structure': 1,\n",
      "          'npersonally': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'needs': 1,\n",
      "          'one': 1,\n",
      "          'works': 1,\n",
      "          'perfectly': 1,\n",
      "          'well': 1,\n",
      "          'study': 1,\n",
      "          'tibetan': 1,\n",
      "          'culture': 1,\n",
      "          'communist': 1,\n",
      "          'nscorsese': 1,\n",
      "          'views': 1,\n",
      "          'many': 1,\n",
      "          'tibetans': 1,\n",
      "          'probably': 1,\n",
      "          'largerthanlife': 1,\n",
      "          'symbol': 1,\n",
      "          'spirituality': 1,\n",
      "          'leadership': 1,\n",
      "          'glimpses': 1,\n",
      "          'head': 1,\n",
      "          'come': 1,\n",
      "          'several': 1,\n",
      "          'yet': 1,\n",
      "          'oblique': 1,\n",
      "          'dream': 1,\n",
      "          'sequences': 1,\n",
      "          'portrayal': 1,\n",
      "          'appropriate': 1,\n",
      "          'film': 1,\n",
      "          'concentrates': 1,\n",
      "          'spiritual': 1,\n",
      "          'rather': 1,\n",
      "          'personal': 1,\n",
      "          'nthe': 1,\n",
      "          'set': 1,\n",
      "          'design': 1,\n",
      "          'cinematography': 1,\n",
      "          'outstanding': 1,\n",
      "          'scorsese': 1,\n",
      "          'occasionally': 1,\n",
      "          'seems': 1,\n",
      "          'get': 1,\n",
      "          'carried': 1,\n",
      "          'away': 1,\n",
      "          'spectacle': 1,\n",
      "          'helps': 1,\n",
      "          'augment': 1,\n",
      "          'cultural': 1,\n",
      "          'contrast': 1,\n",
      "          'travels': 1,\n",
      "          'meet': 1,\n",
      "          'chairman': 1,\n",
      "          'mao': 1,\n",
      "          'npolitical': 1,\n",
      "          'art': 1,\n",
      "          'sometimes': 1,\n",
      "          'succumbs': 1,\n",
      "          'temptation': 1,\n",
      "          'start': 1,\n",
      "          'shouting': 1,\n",
      "          'slogans': 1,\n",
      "          'succeeds': 1,\n",
      "          'delivering': 1,\n",
      "          'message': 1,\n",
      "          'artistically': 1,\n",
      "          'without': 1,\n",
      "          'overly': 1,\n",
      "          'manipulative': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'beauty': 5,\n",
      "          'feel': 4,\n",
      "          'nthe': 4,\n",
      "          'lester': 3,\n",
      "          'people': 3,\n",
      "          'appreciate': 3,\n",
      "          'american': 3,\n",
      "          'movie': 3,\n",
      "          'family': 2,\n",
      "          'kevin': 2,\n",
      "          'spacey': 2,\n",
      "          'able': 2,\n",
      "          'edge': 2,\n",
      "          'world': 2,\n",
      "          'person': 2,\n",
      "          'life': 2,\n",
      "          'like': 2,\n",
      "          'ability': 2,\n",
      "          'good': 2,\n",
      "          'simply': 2,\n",
      "          'nonformula': 2,\n",
      "          'offers': 2,\n",
      "          'performances': 2,\n",
      "          'synopsis': 1,\n",
      "          'upper': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'suburban': 1,\n",
      "          'man': 1,\n",
      "          'realizes': 1,\n",
      "          'going': 1,\n",
      "          'motions': 1,\n",
      "          'unable': 1,\n",
      "          'passion': 1,\n",
      "          'soulless': 1,\n",
      "          'cynical': 1,\n",
      "          'longer': 1,\n",
      "          'success': 1,\n",
      "          'failure': 1,\n",
      "          'neveryone': 1,\n",
      "          'else': 1,\n",
      "          'around': 1,\n",
      "          'similar': 1,\n",
      "          'symptoms': 1,\n",
      "          'nlesters': 1,\n",
      "          'unassertive': 1,\n",
      "          'daughter': 1,\n",
      "          'jane': 1,\n",
      "          'thora': 1,\n",
      "          'birch': 1,\n",
      "          'lethargic': 1,\n",
      "          'change': 1,\n",
      "          'yet': 1,\n",
      "          'ready': 1,\n",
      "          'whine': 1,\n",
      "          'complain': 1,\n",
      "          'nhis': 1,\n",
      "          'wife': 1,\n",
      "          'carolyn': 1,\n",
      "          'annette': 1,\n",
      "          'bening': 1,\n",
      "          'reduced': 1,\n",
      "          'keeping': 1,\n",
      "          'appearances': 1,\n",
      "          'reciting': 1,\n",
      "          'commercialist': 1,\n",
      "          'slogans': 1,\n",
      "          'nand': 1,\n",
      "          'big': 1,\n",
      "          'house': 1,\n",
      "          'decent': 1,\n",
      "          'standard': 1,\n",
      "          'living': 1,\n",
      "          'seems': 1,\n",
      "          'freedom': 1,\n",
      "          'deprived': 1,\n",
      "          'dopedealing': 1,\n",
      "          'teen': 1,\n",
      "          'across': 1,\n",
      "          'street': 1,\n",
      "          'practically': 1,\n",
      "          'imprisoned': 1,\n",
      "          'domineering': 1,\n",
      "          'bullying': 1,\n",
      "          'father': 1,\n",
      "          'nwhen': 1,\n",
      "          'embarks': 1,\n",
      "          'mad': 1,\n",
      "          'scramble': 1,\n",
      "          'fact': 1,\n",
      "          'quit': 1,\n",
      "          'job': 1,\n",
      "          'newfound': 1,\n",
      "          'interest': 1,\n",
      "          'exercise': 1,\n",
      "          'impress': 1,\n",
      "          'teenage': 1,\n",
      "          'girl': 1,\n",
      "          'ruffle': 1,\n",
      "          'lot': 1,\n",
      "          'feathers': 1,\n",
      "          'nwill': 1,\n",
      "          'regain': 1,\n",
      "          'nopinion': 1,\n",
      "          'say': 1,\n",
      "          'time': 1,\n",
      "          'never': 1,\n",
      "          'health': 1,\n",
      "          'gone': 1,\n",
      "          'nlikewise': 1,\n",
      "          'raised': 1,\n",
      "          'fabulously': 1,\n",
      "          'pampered': 1,\n",
      "          'prosperity': 1,\n",
      "          'become': 1,\n",
      "          'unhappy': 1,\n",
      "          'spiteful': 1,\n",
      "          'dumbest': 1,\n",
      "          'inconsequential': 1,\n",
      "          'problems': 1,\n",
      "          'clue': 1,\n",
      "          'nsometimes': 1,\n",
      "          'takes': 1,\n",
      "          'near': 1,\n",
      "          'fall': 1,\n",
      "          'accidentally': 1,\n",
      "          'deliberate': 1,\n",
      "          'fasting': 1,\n",
      "          'move': 1,\n",
      "          'apathy': 1,\n",
      "          'reclaim': 1,\n",
      "          'challenge': 1,\n",
      "          'deprivationappreciation': 1,\n",
      "          'cycle': 1,\n",
      "          'major': 1,\n",
      "          'theme': 1,\n",
      "          'namerican': 1,\n",
      "          'intelligent': 1,\n",
      "          'articulate': 1,\n",
      "          'fantastic': 1,\n",
      "          'everyone': 1,\n",
      "          'cast': 1,\n",
      "          'especially': 1,\n",
      "          'gosh': 1,\n",
      "          'darn': 1,\n",
      "          'amazing': 1,\n",
      "          'thing': 1,\n",
      "          'sentimental': 1,\n",
      "          'music': 1,\n",
      "          'hospital': 1,\n",
      "          'scene': 1,\n",
      "          'overly': 1,\n",
      "          'dramatic': 1,\n",
      "          'hokum': 1,\n",
      "          'entertains': 1,\n",
      "          'brilliant': 1,\n",
      "          'nif': 1,\n",
      "          'mood': 1,\n",
      "          'thoughtful': 1,\n",
      "          'flick': 1,\n",
      "          'highly': 1,\n",
      "          'recommend': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'elizabeth': 7,\n",
      "          'nthe': 5,\n",
      "          'much': 4,\n",
      "          'though': 3,\n",
      "          'films': 3,\n",
      "          'didnt': 3,\n",
      "          'characters': 3,\n",
      "          'well': 3,\n",
      "          'england': 3,\n",
      "          'queen': 3,\n",
      "          'would': 3,\n",
      "          'film': 3,\n",
      "          'love': 3,\n",
      "          'light': 3,\n",
      "          'piece': 2,\n",
      "          'something': 2,\n",
      "          'think': 2,\n",
      "          'quite': 2,\n",
      "          'care': 2,\n",
      "          'create': 2,\n",
      "          'many': 2,\n",
      "          'half': 2,\n",
      "          'sister': 2,\n",
      "          'side': 2,\n",
      "          'result': 2,\n",
      "          'council': 2,\n",
      "          'political': 2,\n",
      "          'cinematographer': 2,\n",
      "          'beautifully': 2,\n",
      "          'frame': 2,\n",
      "          'fine': 1,\n",
      "          'filmmaking': 1,\n",
      "          'theres': 1,\n",
      "          'nleft': 1,\n",
      "          'bit': 1,\n",
      "          'cold': 1,\n",
      "          'bugs': 1,\n",
      "          'often': 1,\n",
      "          'particularly': 1,\n",
      "          'days': 1,\n",
      "          'nto': 1,\n",
      "          'first': 1,\n",
      "          'foremost': 1,\n",
      "          'job': 1,\n",
      "          'filmmaker': 1,\n",
      "          'imagined': 1,\n",
      "          'historical': 1,\n",
      "          'case': 1,\n",
      "          'may': 1,\n",
      "          'audience': 1,\n",
      "          'gives': 1,\n",
      "          'hoot': 1,\n",
      "          'nand': 1,\n",
      "          'works': 1,\n",
      "          'levels': 1,\n",
      "          'falls': 1,\n",
      "          'short': 1,\n",
      "          'excellence': 1,\n",
      "          'reason': 1,\n",
      "          'nelizabeth': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          '1554': 1,\n",
      "          'mary': 1,\n",
      "          'monarch': 1,\n",
      "          'catholicism': 1,\n",
      "          'dying': 1,\n",
      "          'nbefore': 1,\n",
      "          'dies': 1,\n",
      "          'bear': 1,\n",
      "          'sign': 1,\n",
      "          'document': 1,\n",
      "          'condemn': 1,\n",
      "          'death': 1,\n",
      "          'heretical': 1,\n",
      "          'protestant': 1,\n",
      "          'beliefs': 1,\n",
      "          'nas': 1,\n",
      "          'amidst': 1,\n",
      "          'anger': 1,\n",
      "          'within': 1,\n",
      "          'becomes': 1,\n",
      "          'chronicles': 1,\n",
      "          'rise': 1,\n",
      "          'power': 1,\n",
      "          'fights': 1,\n",
      "          'unified': 1,\n",
      "          'church': 1,\n",
      "          'tries': 1,\n",
      "          'bring': 1,\n",
      "          'order': 1,\n",
      "          'personal': 1,\n",
      "          'life': 1,\n",
      "          'nmuch': 1,\n",
      "          'deals': 1,\n",
      "          'elizabeths': 1,\n",
      "          'lord': 1,\n",
      "          'robert': 1,\n",
      "          'mysterious': 1,\n",
      "          'man': 1,\n",
      "          'thrusts': 1,\n",
      "          'lordship': 1,\n",
      "          'onto': 1,\n",
      "          'woman': 1,\n",
      "          'continues': 1,\n",
      "          'proclaim': 1,\n",
      "          'nthere': 1,\n",
      "          'ado': 1,\n",
      "          'lack': 1,\n",
      "          'husband': 1,\n",
      "          'pressures': 1,\n",
      "          'spain': 1,\n",
      "          'france': 1,\n",
      "          'enter': 1,\n",
      "          'equation': 1,\n",
      "          'problem': 1,\n",
      "          'lies': 1,\n",
      "          'centerpiece': 1,\n",
      "          'interests': 1,\n",
      "          'character': 1,\n",
      "          'driven': 1,\n",
      "          'element': 1,\n",
      "          'ni': 1,\n",
      "          'perhaps': 1,\n",
      "          'aside': 1,\n",
      "          'played': 1,\n",
      "          'blanchett': 1,\n",
      "          'interest': 1,\n",
      "          'join': 1,\n",
      "          'nuptials': 1,\n",
      "          'cast': 1,\n",
      "          'rounded': 1,\n",
      "          'marvelous': 1,\n",
      "          'rush': 1,\n",
      "          'plays': 1,\n",
      "          'queens': 1,\n",
      "          'loyal': 1,\n",
      "          'advisor': 1,\n",
      "          'sir': 1,\n",
      "          'francis': 1,\n",
      "          'attenborough': 1,\n",
      "          'wellmeaning': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'lead': 1,\n",
      "          'nwhy': 1,\n",
      "          'must': 1,\n",
      "          'asking': 1,\n",
      "          'recommend': 1,\n",
      "          'nsimply': 1,\n",
      "          'perfect': 1,\n",
      "          'pairing': 1,\n",
      "          'director': 1,\n",
      "          'nkapur': 1,\n",
      "          'remi': 1,\n",
      "          'adefarasin': 1,\n",
      "          'neither': 1,\n",
      "          'heard': 1,\n",
      "          'realized': 1,\n",
      "          'filmmkaing': 1,\n",
      "          'technical': 1,\n",
      "          'streams': 1,\n",
      "          'painting': 1,\n",
      "          'period': 1,\n",
      "          'captures': 1,\n",
      "          'realistic': 1,\n",
      "          'sources': 1,\n",
      "          'found': 1,\n",
      "          'churches': 1,\n",
      "          'cellars': 1,\n",
      "          'castles': 1,\n",
      "          '16th': 1,\n",
      "          'century': 1,\n",
      "          'europe': 1,\n",
      "          'neach': 1,\n",
      "          'rich': 1,\n",
      "          'color': 1,\n",
      "          'contrasted': 1,\n",
      "          'blackness': 1,\n",
      "          'blownout': 1,\n",
      "          'white': 1,\n",
      "          'windows': 1,\n",
      "          'costumes': 1,\n",
      "          'alexandra': 1,\n",
      "          'byrne': 1,\n",
      "          'deserve': 1,\n",
      "          'mention': 1,\n",
      "          'inportant': 1,\n",
      "          'aspect': 1,\n",
      "          'shot': 1,\n",
      "          'nindeed': 1,\n",
      "          'one': 1,\n",
      "          'visually': 1,\n",
      "          'beautiful': 1,\n",
      "          'decade': 1,\n",
      "          'ranking': 1,\n",
      "          'kundun': 1,\n",
      "          'braveheart': 1,\n",
      "          'nwatch': 1,\n",
      "          'also': 1,\n",
      "          'incredibly': 1,\n",
      "          'godfatheresque': 1,\n",
      "          'mass': 1,\n",
      "          'murder': 1,\n",
      "          'scene': 1,\n",
      "          'nit': 1,\n",
      "          'made': 1,\n",
      "          'retrospect': 1,\n",
      "          'similarities': 1,\n",
      "          'two': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 10,\n",
      "          'film': 6,\n",
      "          'effects': 5,\n",
      "          'action': 4,\n",
      "          'science': 3,\n",
      "          'fiction': 3,\n",
      "          'best': 3,\n",
      "          'memory': 3,\n",
      "          'robocop': 2,\n",
      "          'create': 2,\n",
      "          'total': 2,\n",
      "          'recall': 2,\n",
      "          'sets': 2,\n",
      "          'special': 2,\n",
      "          'nquaid': 2,\n",
      "          'mars': 2,\n",
      "          'go': 2,\n",
      "          'people': 2,\n",
      "          'really': 2,\n",
      "          'plot': 2,\n",
      "          'twist': 2,\n",
      "          'terrific': 2,\n",
      "          'level': 2,\n",
      "          'carolco': 1,\n",
      "          'pictures': 1,\n",
      "          'dutch': 1,\n",
      "          'director': 1,\n",
      "          'paul': 1,\n",
      "          'verhoeven': 1,\n",
      "          'came': 1,\n",
      "          'together': 1,\n",
      "          '1990': 1,\n",
      "          'mega': 1,\n",
      "          'hit': 1,\n",
      "          'masterpiece': 1,\n",
      "          'naction': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'better': 1,\n",
      "          'story': 1,\n",
      "          'involves': 1,\n",
      "          'construction': 1,\n",
      "          'worker': 1,\n",
      "          'named': 1,\n",
      "          'douglas': 1,\n",
      "          'quaid': 1,\n",
      "          'arnold': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'lives': 1,\n",
      "          'earth': 1,\n",
      "          'beautiful': 1,\n",
      "          'wife': 1,\n",
      "          'lori': 1,\n",
      "          'sharon': 1,\n",
      "          'stone': 1,\n",
      "          'obsessed': 1,\n",
      "          'decides': 1,\n",
      "          'second': 1,\n",
      "          'choice': 1,\n",
      "          'brain': 1,\n",
      "          'implant': 1,\n",
      "          'fake': 1,\n",
      "          'two': 1,\n",
      "          'week': 1,\n",
      "          'vacation': 1,\n",
      "          'nwhile': 1,\n",
      "          'implanted': 1,\n",
      "          'cap': 1,\n",
      "          'triggered': 1,\n",
      "          'doctors': 1,\n",
      "          'realize': 1,\n",
      "          'quaids': 1,\n",
      "          'previously': 1,\n",
      "          'erased': 1,\n",
      "          'nnow': 1,\n",
      "          'must': 1,\n",
      "          'find': 1,\n",
      "          'want': 1,\n",
      "          'dead': 1,\n",
      "          'unfolds': 1,\n",
      "          'rapid': 1,\n",
      "          'pace': 1,\n",
      "          'explaining': 1,\n",
      "          'great': 1,\n",
      "          'mindboggling': 1,\n",
      "          'nit': 1,\n",
      "          'grabs': 1,\n",
      "          'never': 1,\n",
      "          'lets': 1,\n",
      "          'nthis': 1,\n",
      "          'winner': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'superb': 1,\n",
      "          'combining': 1,\n",
      "          'elements': 1,\n",
      "          'psychological': 1,\n",
      "          'mystery': 1,\n",
      "          'riproaring': 1,\n",
      "          'saga': 1,\n",
      "          'nschwarzenegger': 1,\n",
      "          'gives': 1,\n",
      "          'performance': 1,\n",
      "          'ever': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'good': 1,\n",
      "          'stunts': 1,\n",
      "          'huge': 1,\n",
      "          'elaborate': 1,\n",
      "          'lot': 1,\n",
      "          'attention': 1,\n",
      "          'payed': 1,\n",
      "          'detail': 1,\n",
      "          'music': 1,\n",
      "          'sound': 1,\n",
      "          'perfect': 1,\n",
      "          'add': 1,\n",
      "          'certain': 1,\n",
      "          'impact': 1,\n",
      "          'makeup': 1,\n",
      "          'rob': 1,\n",
      "          'bottin': 1,\n",
      "          'howling': 1,\n",
      "          'thing': 1,\n",
      "          'top': 1,\n",
      "          'notch': 1,\n",
      "          'mention': 1,\n",
      "          'extremely': 1,\n",
      "          'outlandish': 1,\n",
      "          'visual': 1,\n",
      "          'dream': 1,\n",
      "          'quest': 1,\n",
      "          'abyss': 1,\n",
      "          'industrial': 1,\n",
      "          'light': 1,\n",
      "          'magic': 1,\n",
      "          'star': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wars': 1,\n",
      "          'trilogy': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'terminator': 1,\n",
      "          '2': 1,\n",
      "          'phenomenal': 1,\n",
      "          'visuals': 1,\n",
      "          'state': 1,\n",
      "          'art': 1,\n",
      "          'slickness': 1,\n",
      "          'oscar': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'isnt': 1,\n",
      "          'always': 1,\n",
      "          'realistic': 1,\n",
      "          'nfor': 1,\n",
      "          'example': 1,\n",
      "          'true': 1,\n",
      "          'body': 1,\n",
      "          'wont': 1,\n",
      "          'explode': 1,\n",
      "          'vacuum': 1,\n",
      "          'space': 1,\n",
      "          'nwho': 1,\n",
      "          'cares': 1,\n",
      "          'nits': 1,\n",
      "          'movie': 1,\n",
      "          'nmovies': 1,\n",
      "          'supposed': 1,\n",
      "          'entertain': 1,\n",
      "          'nand': 1,\n",
      "          'opinion': 1,\n",
      "          'achieves': 1,\n",
      "          'entertainment': 1,\n",
      "          'may': 1,\n",
      "          'impossible': 1,\n",
      "          'beat': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'run': 8,\n",
      "          'movie': 7,\n",
      "          'lola': 5,\n",
      "          'something': 4,\n",
      "          'marks': 3,\n",
      "          'minutes': 3,\n",
      "          'movies': 2,\n",
      "          'late': 2,\n",
      "          'film': 2,\n",
      "          'truly': 2,\n",
      "          'perhaps': 2,\n",
      "          'need': 2,\n",
      "          'tykwers': 2,\n",
      "          'boyfriend': 2,\n",
      "          'one': 2,\n",
      "          'nit': 2,\n",
      "          'hundred': 2,\n",
      "          'thousand': 2,\n",
      "          'twenty': 2,\n",
      "          'like': 2,\n",
      "          'much': 2,\n",
      "          'achievement': 2,\n",
      "          'abundance': 1,\n",
      "          'trite': 1,\n",
      "          'recycled': 1,\n",
      "          '90s': 1,\n",
      "          'tremendous': 1,\n",
      "          'demand': 1,\n",
      "          'lovers': 1,\n",
      "          'never': 1,\n",
      "          'mind': 1,\n",
      "          'critics': 1,\n",
      "          'present': 1,\n",
      "          'wide': 1,\n",
      "          'audience': 1,\n",
      "          'original': 1,\n",
      "          'audaciously': 1,\n",
      "          'purely': 1,\n",
      "          'thematically': 1,\n",
      "          'nfor': 1,\n",
      "          'former': 1,\n",
      "          'look': 1,\n",
      "          'director': 1,\n",
      "          'tom': 1,\n",
      "          'incredible': 1,\n",
      "          'german': 1,\n",
      "          'thriller': 1,\n",
      "          'may': 1,\n",
      "          'make': 1,\n",
      "          'viewers': 1,\n",
      "          'cooling': 1,\n",
      "          'period': 1,\n",
      "          'afterwards': 1,\n",
      "          'nlola': 1,\n",
      "          'contemporary': 1,\n",
      "          'gothgirl': 1,\n",
      "          'blazing': 1,\n",
      "          'red': 1,\n",
      "          'hair': 1,\n",
      "          'receives': 1,\n",
      "          'desperate': 1,\n",
      "          'phone': 1,\n",
      "          'call': 1,\n",
      "          'manni': 1,\n",
      "          'day': 1,\n",
      "          'seems': 1,\n",
      "          'delivering': 1,\n",
      "          'lost': 1,\n",
      "          'bag': 1,\n",
      "          'containing': 1,\n",
      "          'doesnt': 1,\n",
      "          'deliver': 1,\n",
      "          'within': 1,\n",
      "          'next': 1,\n",
      "          'killed': 1,\n",
      "          'nthis': 1,\n",
      "          'gives': 1,\n",
      "          'come': 1,\n",
      "          '100': 1,\n",
      "          '000': 1,\n",
      "          'dies': 1,\n",
      "          'nso': 1,\n",
      "          'runs': 1,\n",
      "          'jogs': 1,\n",
      "          'sprints': 1,\n",
      "          'hopes': 1,\n",
      "          'somehow': 1,\n",
      "          'someway': 1,\n",
      "          'shell': 1,\n",
      "          'able': 1,\n",
      "          'obtain': 1,\n",
      "          'money': 1,\n",
      "          'save': 1,\n",
      "          'life': 1,\n",
      "          'nfrom': 1,\n",
      "          'critic': 1,\n",
      "          'steve': 1,\n",
      "          'rhodes': 1,\n",
      "          'described': 1,\n",
      "          'plays': 1,\n",
      "          'bit': 1,\n",
      "          'sliding': 1,\n",
      "          'doors': 1,\n",
      "          'steroids': 1,\n",
      "          'nwith': 1,\n",
      "          'nonstop': 1,\n",
      "          'techno': 1,\n",
      "          'soundtrack': 1,\n",
      "          'wierd': 1,\n",
      "          'camerawork': 1,\n",
      "          'kinds': 1,\n",
      "          'insane': 1,\n",
      "          'zooms': 1,\n",
      "          'breakneck': 1,\n",
      "          'pace': 1,\n",
      "          'anyone': 1,\n",
      "          'bored': 1,\n",
      "          'smoking': 1,\n",
      "          'nindeed': 1,\n",
      "          'often': 1,\n",
      "          'outrageously': 1,\n",
      "          'exciting': 1,\n",
      "          'well': 1,\n",
      "          'bitterly': 1,\n",
      "          'ironic': 1,\n",
      "          'subtly': 1,\n",
      "          'serious': 1,\n",
      "          'nvery': 1,\n",
      "          'titanic': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nthe': 1,\n",
      "          'way': 1,\n",
      "          'made': 1,\n",
      "          'pure': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'breathtaking': 1,\n",
      "          'literally': 1,\n",
      "          'sometimes': 1,\n",
      "          'nthematically': 1,\n",
      "          'leave': 1,\n",
      "          'desired': 1,\n",
      "          'toys': 1,\n",
      "          'around': 1,\n",
      "          'intriguing': 1,\n",
      "          'ideas': 1,\n",
      "          'occasionally': 1,\n",
      "          'seem': 1,\n",
      "          'little': 1,\n",
      "          'substance': 1,\n",
      "          'behind': 1,\n",
      "          'flash': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'matter': 1,\n",
      "          'nrunning': 1,\n",
      "          'breezy': 1,\n",
      "          '81': 1,\n",
      "          'wished': 1,\n",
      "          'longer': 1,\n",
      "          'damn': 1,\n",
      "          'good': 1,\n",
      "          'lasted': 1,\n",
      "          'equivalent': 1,\n",
      "          'rollercoaster': 1,\n",
      "          'amount': 1,\n",
      "          'thrills': 1,\n",
      "          'fun': 1,\n",
      "          'offers': 1,\n",
      "          'n': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'horror': 12,\n",
      "          'film': 7,\n",
      "          'know': 5,\n",
      "          'neve': 4,\n",
      "          'campbell': 4,\n",
      "          'movie': 4,\n",
      "          'good': 4,\n",
      "          'familar': 3,\n",
      "          'killer': 3,\n",
      "          'whos': 3,\n",
      "          'typical': 3,\n",
      "          'stuff': 3,\n",
      "          'scene': 3,\n",
      "          'casey': 3,\n",
      "          'killed': 3,\n",
      "          'sidneys': 3,\n",
      "          'director': 3,\n",
      "          'wes': 3,\n",
      "          'craven': 3,\n",
      "          'time': 2,\n",
      "          'friend': 2,\n",
      "          'stupid': 2,\n",
      "          'cant': 2,\n",
      "          'act': 2,\n",
      "          'running': 2,\n",
      "          'door': 2,\n",
      "          'watching': 2,\n",
      "          'question': 2,\n",
      "          'ntheyre': 2,\n",
      "          'guy': 2,\n",
      "          'makes': 2,\n",
      "          'scary': 2,\n",
      "          'funny': 2,\n",
      "          'drew': 2,\n",
      "          'barrymore': 2,\n",
      "          'like': 2,\n",
      "          'gets': 2,\n",
      "          'boyfriend': 2,\n",
      "          'answer': 2,\n",
      "          'nthat': 2,\n",
      "          'half': 2,\n",
      "          'happen': 2,\n",
      "          'would': 2,\n",
      "          'nthe': 2,\n",
      "          'impressive': 2,\n",
      "          'school': 2,\n",
      "          'movies': 2,\n",
      "          'first': 2,\n",
      "          'nightmare': 2,\n",
      "          'obviously': 2,\n",
      "          'carpenter': 2,\n",
      "          'ni': 2,\n",
      "          'hate': 2,\n",
      "          'actors': 2,\n",
      "          'overexposed': 2,\n",
      "          'enough': 2,\n",
      "          'anxious': 1,\n",
      "          'see': 1,\n",
      "          'long': 1,\n",
      "          'na': 1,\n",
      "          'mine': 1,\n",
      "          'recommended': 1,\n",
      "          'crush': 1,\n",
      "          'wanted': 1,\n",
      "          'prove': 1,\n",
      "          'shes': 1,\n",
      "          'hot': 1,\n",
      "          'thinks': 1,\n",
      "          'nhe': 1,\n",
      "          'proved': 1,\n",
      "          'right': 1,\n",
      "          'reasons': 1,\n",
      "          'enjoy': 1,\n",
      "          'go': 1,\n",
      "          'way': 1,\n",
      "          'beyond': 1,\n",
      "          'nscream': 1,\n",
      "          'treads': 1,\n",
      "          'ground': 1,\n",
      "          'star': 1,\n",
      "          'puts': 1,\n",
      "          'stalking': 1,\n",
      "          'big': 1,\n",
      "          'breasted': 1,\n",
      "          'girl': 1,\n",
      "          'always': 1,\n",
      "          'stairs': 1,\n",
      "          'front': 1,\n",
      "          'nits': 1,\n",
      "          'nso': 1,\n",
      "          'may': 1,\n",
      "          'ask': 1,\n",
      "          'seem': 1,\n",
      "          'new': 1,\n",
      "          'original': 1,\n",
      "          'nbecause': 1,\n",
      "          'treats': 1,\n",
      "          'hasnt': 1,\n",
      "          'done': 1,\n",
      "          'thus': 1,\n",
      "          'viewer': 1,\n",
      "          'disilusioned': 1,\n",
      "          'believing': 1,\n",
      "          'old': 1,\n",
      "          'tired': 1,\n",
      "          'nthis': 1,\n",
      "          'raises': 1,\n",
      "          'another': 1,\n",
      "          'nsimple': 1,\n",
      "          'characters': 1,\n",
      "          'victims': 1,\n",
      "          'dont': 1,\n",
      "          'hell': 1,\n",
      "          'chased': 1,\n",
      "          'ski': 1,\n",
      "          'mask': 1,\n",
      "          'machette': 1,\n",
      "          'nthey': 1,\n",
      "          'fans': 1,\n",
      "          'happens': 1,\n",
      "          'even': 1,\n",
      "          'certain': 1,\n",
      "          'times': 1,\n",
      "          'nyou': 1,\n",
      "          'tell': 1,\n",
      "          'opening': 1,\n",
      "          'becker': 1,\n",
      "          'making': 1,\n",
      "          'popcorn': 1,\n",
      "          'getting': 1,\n",
      "          'ready': 1,\n",
      "          'watch': 1,\n",
      "          'video': 1,\n",
      "          'sounds': 1,\n",
      "          'calls': 1,\n",
      "          'play': 1,\n",
      "          'game': 1,\n",
      "          'involves': 1,\n",
      "          'triva': 1,\n",
      "          'wrong': 1,\n",
      "          'get': 1,\n",
      "          'nshe': 1,\n",
      "          'knows': 1,\n",
      "          'asks': 1,\n",
      "          'questions': 1,\n",
      "          'final': 1,\n",
      "          'nand': 1,\n",
      "          'works': 1,\n",
      "          'normal': 1,\n",
      "          'things': 1,\n",
      "          'never': 1,\n",
      "          'plot': 1,\n",
      "          'sidney': 1,\n",
      "          'prescott': 1,\n",
      "          'attractive': 1,\n",
      "          'young': 1,\n",
      "          'high': 1,\n",
      "          'student': 1,\n",
      "          'mother': 1,\n",
      "          'year': 1,\n",
      "          'ago': 1,\n",
      "          'tommorrow': 1,\n",
      "          'stalked': 1,\n",
      "          'previously': 1,\n",
      "          'murdered': 1,\n",
      "          'one': 1,\n",
      "          'classmates': 1,\n",
      "          'naturally': 1,\n",
      "          'everybody': 1,\n",
      "          'small': 1,\n",
      "          'california': 1,\n",
      "          'town': 1,\n",
      "          'suspect': 1,\n",
      "          'including': 1,\n",
      "          'billy': 1,\n",
      "          'loomis': 1,\n",
      "          'nbut': 1,\n",
      "          'said': 1,\n",
      "          'people': 1,\n",
      "          'work': 1,\n",
      "          'thats': 1,\n",
      "          'appealing': 1,\n",
      "          'references': 1,\n",
      "          'says': 1,\n",
      "          'elm': 1,\n",
      "          'street': 1,\n",
      "          'rest': 1,\n",
      "          'sucked': 1,\n",
      "          'nwhich': 1,\n",
      "          'job': 1,\n",
      "          'poking': 1,\n",
      "          'fun': 1,\n",
      "          'genre': 1,\n",
      "          'made': 1,\n",
      "          'legend': 1,\n",
      "          'patting': 1,\n",
      "          'back': 1,\n",
      "          'directed': 1,\n",
      "          'none': 1,\n",
      "          'others': 1,\n",
      "          'tatum': 1,\n",
      "          'mentions': 1,\n",
      "          'homage': 1,\n",
      "          'writer': 1,\n",
      "          'kevin': 1,\n",
      "          'williamson': 1,\n",
      "          'also': 1,\n",
      "          'john': 1,\n",
      "          'cast': 1,\n",
      "          'well': 1,\n",
      "          'chosen': 1,\n",
      "          'pulls': 1,\n",
      "          'heroine': 1,\n",
      "          'unlike': 1,\n",
      "          'heroines': 1,\n",
      "          'janet': 1,\n",
      "          'leigh': 1,\n",
      "          'impression': 1,\n",
      "          'little': 1,\n",
      "          'david': 1,\n",
      "          'arquette': 1,\n",
      "          'nalso': 1,\n",
      "          'role': 1,\n",
      "          'henry': 1,\n",
      "          'winkler': 1,\n",
      "          'fonz': 1,\n",
      "          'principal': 1,\n",
      "          'took': 1,\n",
      "          'point': 1,\n",
      "          'unnecessary': 1,\n",
      "          'albeit': 1,\n",
      "          'limited': 1,\n",
      "          'appearance': 1,\n",
      "          'friends': 1,\n",
      "          'courteney': 1,\n",
      "          'cox': 1,\n",
      "          'reporter': 1,\n",
      "          'gail': 1,\n",
      "          'edwards': 1,\n",
      "          'rival': 1,\n",
      "          'covered': 1,\n",
      "          'mothers': 1,\n",
      "          'disappearance': 1,\n",
      "          'show': 1,\n",
      "          'untalented': 1,\n",
      "          'overpaid': 1,\n",
      "          'imho': 1,\n",
      "          'think': 1,\n",
      "          'smart': 1,\n",
      "          'suppose': 1,\n",
      "          'isnt': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'mulan': 6,\n",
      "          'disney': 4,\n",
      "          'nmulan': 4,\n",
      "          'place': 4,\n",
      "          'mulans': 4,\n",
      "          'movie': 3,\n",
      "          'story': 3,\n",
      "          'father': 3,\n",
      "          'new': 2,\n",
      "          'world': 2,\n",
      "          'strong': 2,\n",
      "          'characters': 2,\n",
      "          'young': 2,\n",
      "          'woman': 2,\n",
      "          'nmulans': 2,\n",
      "          'takes': 2,\n",
      "          'nation': 2,\n",
      "          'emperor': 2,\n",
      "          'called': 2,\n",
      "          'asianamerican': 2,\n",
      "          'voices': 2,\n",
      "          'interest': 2,\n",
      "          'nalso': 2,\n",
      "          'mushu': 2,\n",
      "          'youngsters': 2,\n",
      "          'animated': 2,\n",
      "          'paraphrase': 1,\n",
      "          'song': 1,\n",
      "          'title': 1,\n",
      "          'earlier': 1,\n",
      "          'whole': 1,\n",
      "          'mouse': 1,\n",
      "          'factorys': 1,\n",
      "          'latest': 1,\n",
      "          'feature': 1,\n",
      "          'treasure': 1,\n",
      "          'featuring': 1,\n",
      "          'magnificent': 1,\n",
      "          'animation': 1,\n",
      "          'finely': 1,\n",
      "          'drawn': 1,\n",
      "          'fiesty': 1,\n",
      "          'headstrong': 1,\n",
      "          'unlike': 1,\n",
      "          'heroines': 1,\n",
      "          'isnt': 1,\n",
      "          'seeking': 1,\n",
      "          'prince': 1,\n",
      "          'charming': 1,\n",
      "          'motivations': 1,\n",
      "          'simple': 1,\n",
      "          'save': 1,\n",
      "          'serve': 1,\n",
      "          'country': 1,\n",
      "          'find': 1,\n",
      "          'females': 1,\n",
      "          'say': 1,\n",
      "          'ancient': 1,\n",
      "          'china': 1,\n",
      "          'time': 1,\n",
      "          'huns': 1,\n",
      "          'invaded': 1,\n",
      "          'conscription': 1,\n",
      "          'one': 1,\n",
      "          'man': 1,\n",
      "          'family': 1,\n",
      "          'join': 1,\n",
      "          'army': 1,\n",
      "          'defend': 1,\n",
      "          'crippled': 1,\n",
      "          'sneaks': 1,\n",
      "          'steals': 1,\n",
      "          'armor': 1,\n",
      "          'saga': 1,\n",
      "          'courage': 1,\n",
      "          'selfdiscovery': 1,\n",
      "          'nyet': 1,\n",
      "          'despite': 1,\n",
      "          'grim': 1,\n",
      "          'backdrop': 1,\n",
      "          'war': 1,\n",
      "          'lively': 1,\n",
      "          'tale': 1,\n",
      "          'selfreliance': 1,\n",
      "          'brainoverbrawn': 1,\n",
      "          'even': 1,\n",
      "          'smallest': 1,\n",
      "          'child': 1,\n",
      "          'appreciate': 1,\n",
      "          'enjoy': 1,\n",
      "          'utilizes': 1,\n",
      "          'corps': 1,\n",
      "          'talent': 1,\n",
      "          'main': 1,\n",
      "          'including': 1,\n",
      "          'wonderful': 1,\n",
      "          'mingna': 1,\n",
      "          'wen': 1,\n",
      "          'joy': 1,\n",
      "          'luck': 1,\n",
      "          'club': 1,\n",
      "          'b': 1,\n",
      "          'nwong': 1,\n",
      "          'shang': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'later': 1,\n",
      "          'love': 1,\n",
      "          'pat': 1,\n",
      "          'morita': 1,\n",
      "          'veteran': 1,\n",
      "          'soontek': 1,\n",
      "          'oh': 1,\n",
      "          'proud': 1,\n",
      "          'loving': 1,\n",
      "          'adding': 1,\n",
      "          'proceedings': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'dragon': 1,\n",
      "          'sent': 1,\n",
      "          'ancestors': 1,\n",
      "          'watch': 1,\n",
      "          'help': 1,\n",
      "          'nhis': 1,\n",
      "          'fast': 1,\n",
      "          'wisecracking': 1,\n",
      "          'hiptalking': 1,\n",
      "          'may': 1,\n",
      "          'seem': 1,\n",
      "          'crowd': 1,\n",
      "          'pleasing': 1,\n",
      "          'performance': 1,\n",
      "          'especially': 1,\n",
      "          'features': 1,\n",
      "          'couple': 1,\n",
      "          'songs': 1,\n",
      "          'fewer': 1,\n",
      "          'previous': 1,\n",
      "          'flicks': 1,\n",
      "          'winners': 1,\n",
      "          'music': 1,\n",
      "          'matthew': 1,\n",
      "          'wilder': 1,\n",
      "          'lyrics': 1,\n",
      "          'david': 1,\n",
      "          'zippel': 1,\n",
      "          'fit': 1,\n",
      "          'nicely': 1,\n",
      "          'plot': 1,\n",
      "          'overall': 1,\n",
      "          'score': 1,\n",
      "          'jerry': 1,\n",
      "          'goldsmith': 1,\n",
      "          'also': 1,\n",
      "          'plus': 1,\n",
      "          'treat': 1,\n",
      "          'powerful': 1,\n",
      "          'hercules': 1,\n",
      "          'heart': 1,\n",
      "          'hunchback': 1,\n",
      "          'notre': 1,\n",
      "          'dame': 1,\n",
      "          'nat': 1,\n",
      "          '85': 1,\n",
      "          'minutes': 1,\n",
      "          'moves': 1,\n",
      "          'rapidly': 1,\n",
      "          'hold': 1,\n",
      "          'attention': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'set': 1,\n",
      "          'standard': 1,\n",
      "          'future': 1,\n",
      "          'efforts': 1,\n",
      "          'studios': 1,\n",
      "          'work': 1,\n",
      "          'hard': 1,\n",
      "          'attain': 1,\n",
      "          'hoped': 1,\n",
      "          'success': 1,\n",
      "          'doubt': 1,\n",
      "          'prove': 1,\n",
      "          'popular': 1,\n",
      "          'vehicle': 1,\n",
      "          'spur': 1,\n",
      "          'movies': 1,\n",
      "          'oriential': 1,\n",
      "          'themes': 1,\n",
      "          'provide': 1,\n",
      "          'substantial': 1,\n",
      "          'roles': 1,\n",
      "          'talented': 1,\n",
      "          'performers': 1,\n",
      "          'gave': 1,\n",
      "          'production': 1,\n",
      "          'nit': 1,\n",
      "          'would': 1,\n",
      "          'nice': 1,\n",
      "          'see': 1,\n",
      "          'screen': 1,\n",
      "          'well': 1,\n",
      "          'hear': 1,\n",
      "          'ncommitted': 1,\n",
      "          'lifelong': 1,\n",
      "          'learning': 1,\n",
      "          'effective': 1,\n",
      "          'communication': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'martin': 7,\n",
      "          'patriot': 6,\n",
      "          'war': 5,\n",
      "          'film': 4,\n",
      "          'time': 4,\n",
      "          'nand': 4,\n",
      "          'hero': 3,\n",
      "          'nas': 3,\n",
      "          'away': 3,\n",
      "          'british': 3,\n",
      "          'battle': 3,\n",
      "          'tavington': 3,\n",
      "          'revolutionary': 2,\n",
      "          'gibson': 2,\n",
      "          'another': 2,\n",
      "          'nyou': 2,\n",
      "          'type': 2,\n",
      "          'always': 2,\n",
      "          'face': 2,\n",
      "          'kill': 2,\n",
      "          'enemies': 2,\n",
      "          'emmerich': 2,\n",
      "          'action': 2,\n",
      "          'like': 2,\n",
      "          'gladiator': 2,\n",
      "          'times': 2,\n",
      "          'good': 2,\n",
      "          'ni': 2,\n",
      "          'images': 2,\n",
      "          'weapon': 2,\n",
      "          'day': 2,\n",
      "          'left': 2,\n",
      "          'children': 2,\n",
      "          'colonel': 2,\n",
      "          'jason': 2,\n",
      "          'isaacs': 2,\n",
      "          'save': 2,\n",
      "          'america': 2,\n",
      "          'farmers': 2,\n",
      "          'tactics': 2,\n",
      "          'unfair': 2,\n",
      "          'one': 2,\n",
      "          'nthe': 2,\n",
      "          'scenes': 2,\n",
      "          'general': 2,\n",
      "          'give': 2,\n",
      "          'performed': 2,\n",
      "          'side': 2,\n",
      "          'evil': 2,\n",
      "          'even': 2,\n",
      "          'stick': 2,\n",
      "          'figures': 2,\n",
      "          'guys': 2,\n",
      "          'bless': 2,\n",
      "          'mel': 1,\n",
      "          'provides': 1,\n",
      "          'macho': 1,\n",
      "          'man': 1,\n",
      "          'performance': 1,\n",
      "          'hollywood': 1,\n",
      "          'audiences': 1,\n",
      "          'know': 1,\n",
      "          'shirt': 1,\n",
      "          'shredded': 1,\n",
      "          'scarred': 1,\n",
      "          'soft': 1,\n",
      "          'spot': 1,\n",
      "          'loved': 1,\n",
      "          'ones': 1,\n",
      "          'list': 1,\n",
      "          'noscarhungry': 1,\n",
      "          'directorexecutive': 1,\n",
      "          'producer': 1,\n",
      "          'roland': 1,\n",
      "          'intend': 1,\n",
      "          'made': 1,\n",
      "          'stereotypical': 1,\n",
      "          '18th': 1,\n",
      "          'century': 1,\n",
      "          'delivers': 1,\n",
      "          'lines': 1,\n",
      "          'going': 1,\n",
      "          'schwarzenegger': 1,\n",
      "          'commando': 1,\n",
      "          'stallone': 1,\n",
      "          'cobra': 1,\n",
      "          'immediately': 1,\n",
      "          'come': 1,\n",
      "          'mind': 1,\n",
      "          'noddly': 1,\n",
      "          'enough': 1,\n",
      "          'much': 1,\n",
      "          'epic': 1,\n",
      "          'threehourtearfest': 1,\n",
      "          'ninetyminute': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'nat': 1,\n",
      "          'absorbing': 1,\n",
      "          'others': 1,\n",
      "          'enjoyably': 1,\n",
      "          'insipid': 1,\n",
      "          'bloody': 1,\n",
      "          'summer': 1,\n",
      "          'fun': 1,\n",
      "          'probably': 1,\n",
      "          'would': 1,\n",
      "          'despised': 1,\n",
      "          'released': 1,\n",
      "          'july': 1,\n",
      "          '4th': 1,\n",
      "          'weekend': 1,\n",
      "          'nsome': 1,\n",
      "          'zealously': 1,\n",
      "          'americanized': 1,\n",
      "          'flag': 1,\n",
      "          'used': 1,\n",
      "          'lifesaving': 1,\n",
      "          'example': 1,\n",
      "          'independence': 1,\n",
      "          'seems': 1,\n",
      "          'appropriate': 1,\n",
      "          'year': 1,\n",
      "          'wholeheartedly': 1,\n",
      "          'accept': 1,\n",
      "          'nlike': 1,\n",
      "          'emmerichs': 1,\n",
      "          'id4': 1,\n",
      "          'obvious': 1,\n",
      "          'propaganda': 1,\n",
      "          'americans': 1,\n",
      "          'hapless': 1,\n",
      "          'underdogs': 1,\n",
      "          'motivated': 1,\n",
      "          'freedom': 1,\n",
      "          'nsure': 1,\n",
      "          'predictable': 1,\n",
      "          'melodramatic': 1,\n",
      "          'moment': 1,\n",
      "          'leaving': 1,\n",
      "          'theater': 1,\n",
      "          'dumbfounded': 1,\n",
      "          'patriotism': 1,\n",
      "          'isnt': 1,\n",
      "          'point': 1,\n",
      "          'ngibson': 1,\n",
      "          'plays': 1,\n",
      "          'benjamin': 1,\n",
      "          'lionized': 1,\n",
      "          'french': 1,\n",
      "          'indian': 1,\n",
      "          'veteran': 1,\n",
      "          'beginning': 1,\n",
      "          'emotionally': 1,\n",
      "          'suffering': 1,\n",
      "          'loving': 1,\n",
      "          'wife': 1,\n",
      "          'passed': 1,\n",
      "          'nhe': 1,\n",
      "          'father': 1,\n",
      "          'seven': 1,\n",
      "          'south': 1,\n",
      "          'carolina': 1,\n",
      "          'estate': 1,\n",
      "          'along': 1,\n",
      "          'black': 1,\n",
      "          'servants': 1,\n",
      "          'slaves': 1,\n",
      "          'rumbles': 1,\n",
      "          'miles': 1,\n",
      "          'swears': 1,\n",
      "          'keep': 1,\n",
      "          'family': 1,\n",
      "          'close': 1,\n",
      "          'battlefields': 1,\n",
      "          'nbut': 1,\n",
      "          'oldest': 1,\n",
      "          'son': 1,\n",
      "          'enlists': 1,\n",
      "          'anyway': 1,\n",
      "          'murdered': 1,\n",
      "          'wicked': 1,\n",
      "          'redcoat': 1,\n",
      "          'quickly': 1,\n",
      "          'decides': 1,\n",
      "          'fate': 1,\n",
      "          'presented': 1,\n",
      "          'nforming': 1,\n",
      "          'band': 1,\n",
      "          'aggressive': 1,\n",
      "          'using': 1,\n",
      "          'guerilla': 1,\n",
      "          'considered': 1,\n",
      "          'art': 1,\n",
      "          'becomes': 1,\n",
      "          'number': 1,\n",
      "          'target': 1,\n",
      "          'army': 1,\n",
      "          'best': 1,\n",
      "          'parts': 1,\n",
      "          'rugged': 1,\n",
      "          'militia': 1,\n",
      "          'men': 1,\n",
      "          'outsmart': 1,\n",
      "          'armies': 1,\n",
      "          'right': 1,\n",
      "          'nevery': 1,\n",
      "          'attacked': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'enemy': 1,\n",
      "          'see': 1,\n",
      "          'disbelief': 1,\n",
      "          'cornwallis': 1,\n",
      "          'tom': 1,\n",
      "          'wilkinson': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'priceless': 1,\n",
      "          'entertainment': 1,\n",
      "          'tension': 1,\n",
      "          'gradually': 1,\n",
      "          'formulates': 1,\n",
      "          'running': 1,\n",
      "          'final': 1,\n",
      "          'inevitable': 1,\n",
      "          'numerous': 1,\n",
      "          'expertly': 1,\n",
      "          'done': 1,\n",
      "          'nclearer': 1,\n",
      "          'realistic': 1,\n",
      "          'gruesome': 1,\n",
      "          'r': 1,\n",
      "          'rating': 1,\n",
      "          'really': 1,\n",
      "          'get': 1,\n",
      "          'sense': 1,\n",
      "          'warfare': 1,\n",
      "          'period': 1,\n",
      "          'neverything': 1,\n",
      "          'orderly': 1,\n",
      "          'still': 1,\n",
      "          'quite': 1,\n",
      "          'gory': 1,\n",
      "          'fashion': 1,\n",
      "          'shoots': 1,\n",
      "          'remaining': 1,\n",
      "          'soldiers': 1,\n",
      "          'charge': 1,\n",
      "          'nits': 1,\n",
      "          'organized': 1,\n",
      "          'strategic': 1,\n",
      "          'according': 1,\n",
      "          'ineffective': 1,\n",
      "          'nthere': 1,\n",
      "          'interesting': 1,\n",
      "          'contrast': 1,\n",
      "          'traditional': 1,\n",
      "          'style': 1,\n",
      "          'martins': 1,\n",
      "          'takenoprisoners': 1,\n",
      "          'method': 1,\n",
      "          'nwhat': 1,\n",
      "          'drives': 1,\n",
      "          'supposedly': 1,\n",
      "          'actions': 1,\n",
      "          'originally': 1,\n",
      "          'brutal': 1,\n",
      "          'nplayed': 1,\n",
      "          'wonderfully': 1,\n",
      "          'loves': 1,\n",
      "          'glare': 1,\n",
      "          'horse': 1,\n",
      "          'civilians': 1,\n",
      "          'nervously': 1,\n",
      "          'avoid': 1,\n",
      "          'eye': 1,\n",
      "          'contact': 1,\n",
      "          'nthis': 1,\n",
      "          'character': 1,\n",
      "          'viciously': 1,\n",
      "          'kills': 1,\n",
      "          'women': 1,\n",
      "          'laughs': 1,\n",
      "          'way': 1,\n",
      "          'home': 1,\n",
      "          'eyes': 1,\n",
      "          'nhis': 1,\n",
      "          'portrayal': 1,\n",
      "          'sparked': 1,\n",
      "          'controversy': 1,\n",
      "          'britain': 1,\n",
      "          'claim': 1,\n",
      "          'falsely': 1,\n",
      "          'represents': 1,\n",
      "          'countrymen': 1,\n",
      "          'cowardly': 1,\n",
      "          'sadistic': 1,\n",
      "          'disagree': 1,\n",
      "          'accusation': 1,\n",
      "          'ntavington': 1,\n",
      "          'represent': 1,\n",
      "          'country': 1,\n",
      "          'unnecessary': 1,\n",
      "          'executions': 1,\n",
      "          'shock': 1,\n",
      "          'colleagues': 1,\n",
      "          'anger': 1,\n",
      "          'nbesides': 1,\n",
      "          'redcoats': 1,\n",
      "          'remain': 1,\n",
      "          'neither': 1,\n",
      "          'glorified': 1,\n",
      "          'patronized': 1,\n",
      "          'make': 1,\n",
      "          'easiest': 1,\n",
      "          'kinds': 1,\n",
      "          'movies': 1,\n",
      "          'audience': 1,\n",
      "          'reason': 1,\n",
      "          'love': 1,\n",
      "          'bad': 1,\n",
      "          'nheck': 1,\n",
      "          'spend': 1,\n",
      "          'entire': 1,\n",
      "          'glossing': 1,\n",
      "          'three': 1,\n",
      "          'hours': 1,\n",
      "          'fictional': 1,\n",
      "          'fireworks': 1,\n",
      "          'nwith': 1,\n",
      "          'seeking': 1,\n",
      "          'revenge': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'villain': 1,\n",
      "          'ready': 1,\n",
      "          'take': 1,\n",
      "          'lethal': 1,\n",
      "          'colonial': 1,\n",
      "          'ngod': 1,\n",
      "          'god': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'path': 8,\n",
      "          'jordan': 6,\n",
      "          'fairy': 6,\n",
      "          'tales': 6,\n",
      "          'story': 5,\n",
      "          'angela': 4,\n",
      "          'carter': 4,\n",
      "          'wolves': 4,\n",
      "          'nin': 3,\n",
      "          'world': 3,\n",
      "          'life': 3,\n",
      "          'become': 3,\n",
      "          'dark': 3,\n",
      "          'fate': 3,\n",
      "          'stories': 3,\n",
      "          'company': 3,\n",
      "          'werewolves': 3,\n",
      "          'dream': 3,\n",
      "          'ways': 3,\n",
      "          'film': 3,\n",
      "          'sense': 3,\n",
      "          'nthis': 3,\n",
      "          'women': 2,\n",
      "          'sarah': 2,\n",
      "          'patterson': 2,\n",
      "          'lansbury': 2,\n",
      "          'neil': 2,\n",
      "          'years': 2,\n",
      "          'trend': 2,\n",
      "          'fantasy': 2,\n",
      "          'tale': 2,\n",
      "          'witches': 2,\n",
      "          'nbut': 2,\n",
      "          'wicked': 2,\n",
      "          'eyes': 2,\n",
      "          'version': 2,\n",
      "          'old': 2,\n",
      "          'going': 2,\n",
      "          'mind': 2,\n",
      "          'rosaleen': 2,\n",
      "          'told': 2,\n",
      "          'surprisingly': 2,\n",
      "          'many': 2,\n",
      "          'nand': 2,\n",
      "          'wise': 2,\n",
      "          'becomes': 2,\n",
      "          'village': 2,\n",
      "          'script': 2,\n",
      "          'good': 2,\n",
      "          'girls': 2,\n",
      "          'forest': 2,\n",
      "          'stray': 2,\n",
      "          'conventional': 2,\n",
      "          'leave': 2,\n",
      "          'death': 2,\n",
      "          'sex': 2,\n",
      "          'knowledge': 2,\n",
      "          'risk': 2,\n",
      "          'theres': 1,\n",
      "          'beast': 1,\n",
      "          'men': 1,\n",
      "          'meets': 1,\n",
      "          'match': 1,\n",
      "          'nstarring': 1,\n",
      "          'tusse': 1,\n",
      "          'silberg': 1,\n",
      "          'david': 1,\n",
      "          'warner': 1,\n",
      "          'directed': 1,\n",
      "          'written': 1,\n",
      "          'cinematography': 1,\n",
      "          'bryan': 1,\n",
      "          'loftus': 1,\n",
      "          'recent': 1,\n",
      "          'field': 1,\n",
      "          'writers': 1,\n",
      "          'revisiting': 1,\n",
      "          'fertile': 1,\n",
      "          'myth': 1,\n",
      "          'reclaiming': 1,\n",
      "          'investing': 1,\n",
      "          'new': 1,\n",
      "          'energy': 1,\n",
      "          'modern': 1,\n",
      "          'times': 1,\n",
      "          'disneyfied': 1,\n",
      "          'debased': 1,\n",
      "          'trite': 1,\n",
      "          'adventures': 1,\n",
      "          'involving': 1,\n",
      "          'leering': 1,\n",
      "          'friendly': 1,\n",
      "          'dwarves': 1,\n",
      "          'cuddly': 1,\n",
      "          'talking': 1,\n",
      "          'animals': 1,\n",
      "          'original': 1,\n",
      "          'forms': 1,\n",
      "          'edge': 1,\n",
      "          'ncrows': 1,\n",
      "          'tear': 1,\n",
      "          'cinderellas': 1,\n",
      "          'sisters': 1,\n",
      "          'gorier': 1,\n",
      "          'receive': 1,\n",
      "          'animated': 1,\n",
      "          'nhansel': 1,\n",
      "          'gretel': 1,\n",
      "          'relish': 1,\n",
      "          'cooking': 1,\n",
      "          'witch': 1,\n",
      "          'oven': 1,\n",
      "          'nwriters': 1,\n",
      "          'fascinated': 1,\n",
      "          'bloodier': 1,\n",
      "          'morally': 1,\n",
      "          'ambivalent': 1,\n",
      "          'aspects': 1,\n",
      "          'modernizing': 1,\n",
      "          'simultaneously': 1,\n",
      "          'back': 1,\n",
      "          'roots': 1,\n",
      "          'nbefore': 1,\n",
      "          'vogue': 1,\n",
      "          'carterwhose': 1,\n",
      "          'always': 1,\n",
      "          'subversive': 1,\n",
      "          'edgehad': 1,\n",
      "          'reinventing': 1,\n",
      "          'retell': 1,\n",
      "          'red': 1,\n",
      "          'riding': 1,\n",
      "          'hood': 1,\n",
      "          'enlivening': 1,\n",
      "          'rolls': 1,\n",
      "          'royces': 1,\n",
      "          'visit': 1,\n",
      "          'satan': 1,\n",
      "          'structured': 1,\n",
      "          'occurring': 1,\n",
      "          'adolescent': 1,\n",
      "          'girl': 1,\n",
      "          'whose': 1,\n",
      "          'real': 1,\n",
      "          'learn': 1,\n",
      "          'little': 1,\n",
      "          'nwithin': 1,\n",
      "          'number': 1,\n",
      "          'inset': 1,\n",
      "          'dreamrosaleens': 1,\n",
      "          'grandmother': 1,\n",
      "          'gloss': 1,\n",
      "          'central': 1,\n",
      "          'intriguing': 1,\n",
      "          'suggestive': 1,\n",
      "          'result': 1,\n",
      "          'successful': 1,\n",
      "          'example': 1,\n",
      "          'sinister': 1,\n",
      "          'contemporary': 1,\n",
      "          'ni': 1,\n",
      "          'say': 1,\n",
      "          'could': 1,\n",
      "          'gone': 1,\n",
      "          'wrong': 1,\n",
      "          'performances': 1,\n",
      "          'mediocre': 1,\n",
      "          'except': 1,\n",
      "          'lansburysshe': 1,\n",
      "          'finds': 1,\n",
      "          'right': 1,\n",
      "          'note': 1,\n",
      "          'prim': 1,\n",
      "          'applecheeked': 1,\n",
      "          'granny': 1,\n",
      "          'stern': 1,\n",
      "          'teller': 1,\n",
      "          'cautionary': 1,\n",
      "          'soundtrack': 1,\n",
      "          'synthheavy': 1,\n",
      "          'reminded': 1,\n",
      "          'bad': 1,\n",
      "          '80s': 1,\n",
      "          'horror': 1,\n",
      "          'movies': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'shapechanging': 1,\n",
      "          'scenes': 1,\n",
      "          'nprobably': 1,\n",
      "          'stateoftheart': 1,\n",
      "          'time': 1,\n",
      "          'laughable': 1,\n",
      "          'succeeds': 1,\n",
      "          'consider': 1,\n",
      "          'trickiest': 1,\n",
      "          'aspect': 1,\n",
      "          'transcends': 1,\n",
      "          'poor': 1,\n",
      "          'actingmusiceffects': 1,\n",
      "          'conveys': 1,\n",
      "          'fantastic': 1,\n",
      "          'otherness': 1,\n",
      "          'none': 1,\n",
      "          'problems': 1,\n",
      "          'adapting': 1,\n",
      "          'fullblown': 1,\n",
      "          'fantasies': 1,\n",
      "          'often': 1,\n",
      "          'best': 1,\n",
      "          'left': 1,\n",
      "          'imagination': 1,\n",
      "          'reader': 1,\n",
      "          'rather': 1,\n",
      "          'subjected': 1,\n",
      "          'realism': 1,\n",
      "          'screen': 1,\n",
      "          'npart': 1,\n",
      "          'would': 1,\n",
      "          'love': 1,\n",
      "          'see': 1,\n",
      "          'adaptation': 1,\n",
      "          'lord': 1,\n",
      "          'rings': 1,\n",
      "          'hand': 1,\n",
      "          'know': 1,\n",
      "          'filmmakers': 1,\n",
      "          'recreation': 1,\n",
      "          'ents': 1,\n",
      "          'hobbits': 1,\n",
      "          'balrogs': 1,\n",
      "          'inevitably': 1,\n",
      "          'really': 1,\n",
      "          'lame': 1,\n",
      "          'compared': 1,\n",
      "          'picture': 1,\n",
      "          'makes': 1,\n",
      "          'jordans': 1,\n",
      "          'accomplishment': 1,\n",
      "          'seem': 1,\n",
      "          'mighty': 1,\n",
      "          'impressive': 1,\n",
      "          'imbues': 1,\n",
      "          'genuine': 1,\n",
      "          'magic': 1,\n",
      "          'mystery': 1,\n",
      "          'somewhat': 1,\n",
      "          'ruritanian': 1,\n",
      "          'dreamworld': 1,\n",
      "          'kind': 1,\n",
      "          'urreality': 1,\n",
      "          'sunshine': 1,\n",
      "          'exceptionally': 1,\n",
      "          'warm': 1,\n",
      "          'abundant': 1,\n",
      "          'nights': 1,\n",
      "          'quiet': 1,\n",
      "          'misty': 1,\n",
      "          'eerie': 1,\n",
      "          'ghostly': 1,\n",
      "          'peasant': 1,\n",
      "          'rustic': 1,\n",
      "          'cozy': 1,\n",
      "          'woods': 1,\n",
      "          'hoary': 1,\n",
      "          'archetypal': 1,\n",
      "          'realm': 1,\n",
      "          'setting': 1,\n",
      "          'smart': 1,\n",
      "          'subtle': 1,\n",
      "          'literate': 1,\n",
      "          'youd': 1,\n",
      "          'expect': 1,\n",
      "          'accomplished': 1,\n",
      "          'fiction': 1,\n",
      "          'writer': 1,\n",
      "          'nfor': 1,\n",
      "          'cauldron': 1,\n",
      "          'brew': 1,\n",
      "          'bubbling': 1,\n",
      "          'primal': 1,\n",
      "          'ingredients': 1,\n",
      "          'mistshrouded': 1,\n",
      "          'forests': 1,\n",
      "          'ancient': 1,\n",
      "          'graveyards': 1,\n",
      "          'virginal': 1,\n",
      "          'glowing': 1,\n",
      "          'nshe': 1,\n",
      "          'adeptly': 1,\n",
      "          'blends': 1,\n",
      "          'together': 1,\n",
      "          'nthere': 1,\n",
      "          'symbolic': 1,\n",
      "          'richness': 1,\n",
      "          'everything': 1,\n",
      "          'permeated': 1,\n",
      "          'significance': 1,\n",
      "          'point': 1,\n",
      "          'think': 1,\n",
      "          'represent': 1,\n",
      "          'ritesofpassage': 1,\n",
      "          'unconscious': 1,\n",
      "          'primordial': 1,\n",
      "          'level': 1,\n",
      "          'na': 1,\n",
      "          'nightjourney': 1,\n",
      "          'grandmothers': 1,\n",
      "          'home': 1,\n",
      "          'crux': 1,\n",
      "          'n': 1,\n",
      "          'dont': 1,\n",
      "          'literal': 1,\n",
      "          'figurative': 1,\n",
      "          'nstaying': 1,\n",
      "          'approach': 1,\n",
      "          'suggested': 1,\n",
      "          'rosaleens': 1,\n",
      "          'elders': 1,\n",
      "          'ncarter': 1,\n",
      "          'never': 1,\n",
      "          'explore': 1,\n",
      "          'goes': 1,\n",
      "          'nthose': 1,\n",
      "          'supposedly': 1,\n",
      "          'meet': 1,\n",
      "          'literalized': 1,\n",
      "          'connote': 1,\n",
      "          'things': 1,\n",
      "          'nif': 1,\n",
      "          'straying': 1,\n",
      "          'leads': 1,\n",
      "          'ideabut': 1,\n",
      "          'thats': 1,\n",
      "          'get': 1,\n",
      "          'therefore': 1,\n",
      "          'power': 1,\n",
      "          'maybe': 1,\n",
      "          'worth': 1,\n",
      "          'nwhen': 1,\n",
      "          'dangerous': 1,\n",
      "          'ambiguous': 1,\n",
      "          'place': 1,\n",
      "          'full': 1,\n",
      "          'potential': 1,\n",
      "          'certainly': 1,\n",
      "          'interesting': 1,\n",
      "          'disney': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'story': 11,\n",
      "          'film': 7,\n",
      "          'great': 7,\n",
      "          'boxing': 5,\n",
      "          'love': 5,\n",
      "          'one': 4,\n",
      "          'danny': 4,\n",
      "          'nbut': 4,\n",
      "          'eachother': 4,\n",
      "          'nthe': 4,\n",
      "          'good': 4,\n",
      "          'theyre': 4,\n",
      "          'characters': 4,\n",
      "          'boxer': 3,\n",
      "          'time': 3,\n",
      "          'political': 3,\n",
      "          'work': 3,\n",
      "          'seen': 3,\n",
      "          'excellent': 3,\n",
      "          'daylewis': 3,\n",
      "          'prison': 3,\n",
      "          'two': 3,\n",
      "          'together': 3,\n",
      "          'since': 3,\n",
      "          'get': 3,\n",
      "          'really': 3,\n",
      "          'acting': 3,\n",
      "          'could': 3,\n",
      "          'title': 2,\n",
      "          'nits': 2,\n",
      "          'three': 2,\n",
      "          'pretty': 2,\n",
      "          'elements': 2,\n",
      "          'nweve': 2,\n",
      "          'like': 2,\n",
      "          'well': 2,\n",
      "          'still': 2,\n",
      "          'jim': 2,\n",
      "          'sheridan': 2,\n",
      "          'daniel': 2,\n",
      "          'ira': 2,\n",
      "          'leader': 2,\n",
      "          'cox': 2,\n",
      "          'opposing': 2,\n",
      "          'many': 2,\n",
      "          'going': 2,\n",
      "          'old': 2,\n",
      "          'ike': 2,\n",
      "          'ken': 2,\n",
      "          'stott': 2,\n",
      "          'begins': 2,\n",
      "          'shape': 2,\n",
      "          'start': 2,\n",
      "          'real': 2,\n",
      "          'people': 2,\n",
      "          'nand': 2,\n",
      "          'watson': 2,\n",
      "          'liam': 2,\n",
      "          'works': 2,\n",
      "          'least': 2,\n",
      "          'sometimes': 2,\n",
      "          'even': 2,\n",
      "          'times': 2,\n",
      "          'never': 2,\n",
      "          'didnt': 2,\n",
      "          'circumstances': 2,\n",
      "          'chemistry': 2,\n",
      "          'worse': 2,\n",
      "          'hollywood': 2,\n",
      "          'much': 2,\n",
      "          'equally': 2,\n",
      "          'parts': 2,\n",
      "          'ni': 2,\n",
      "          'sure': 2,\n",
      "          'nim': 2,\n",
      "          'greatly': 2,\n",
      "          'cowriting': 2,\n",
      "          'half': 2,\n",
      "          'better': 2,\n",
      "          'contrary': 1,\n",
      "          'another': 1,\n",
      "          'rocky': 1,\n",
      "          'spliced': 1,\n",
      "          'cold': 1,\n",
      "          'hard': 1,\n",
      "          'politics': 1,\n",
      "          'actually': 1,\n",
      "          'movies': 1,\n",
      "          'nall': 1,\n",
      "          'respects': 1,\n",
      "          'decent': 1,\n",
      "          'balancing': 1,\n",
      "          'betwixt': 1,\n",
      "          'somehow': 1,\n",
      "          'seems': 1,\n",
      "          'kind': 1,\n",
      "          'cliched': 1,\n",
      "          'unoriginal': 1,\n",
      "          'blown': 1,\n",
      "          'away': 1,\n",
      "          'noh': 1,\n",
      "          'irish': 1,\n",
      "          'n': 1,\n",
      "          'flynn': 1,\n",
      "          'staple': 1,\n",
      "          'exira': 1,\n",
      "          'member': 1,\n",
      "          'gets': 1,\n",
      "          'belfast': 1,\n",
      "          '14': 1,\n",
      "          'years': 1,\n",
      "          'finds': 1,\n",
      "          'troubles': 1,\n",
      "          'far': 1,\n",
      "          'nfirst': 1,\n",
      "          'small': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'joe': 1,\n",
      "          'hamill': 1,\n",
      "          'brian': 1,\n",
      "          'subleaders': 1,\n",
      "          'harry': 1,\n",
      "          'gerard': 1,\n",
      "          'mcsorley': 1,\n",
      "          'views': 1,\n",
      "          'getting': 1,\n",
      "          'members': 1,\n",
      "          'jail': 1,\n",
      "          'nwhile': 1,\n",
      "          'drunkard': 1,\n",
      "          'buddie': 1,\n",
      "          'played': 1,\n",
      "          'chief': 1,\n",
      "          'inspector': 1,\n",
      "          'boyles': 1,\n",
      "          'shallow': 1,\n",
      "          'grave': 1,\n",
      "          'reopen': 1,\n",
      "          'gym': 1,\n",
      "          'allows': 1,\n",
      "          'religios': 1,\n",
      "          'sects': 1,\n",
      "          'protestant': 1,\n",
      "          'catholics': 1,\n",
      "          'ndanny': 1,\n",
      "          'teaching': 1,\n",
      "          'kids': 1,\n",
      "          'box': 1,\n",
      "          'stayed': 1,\n",
      "          'whilst': 1,\n",
      "          'ready': 1,\n",
      "          'runs': 1,\n",
      "          'exlove': 1,\n",
      "          'maggie': 1,\n",
      "          'breaking': 1,\n",
      "          'waves': 1,\n",
      "          'emily': 1,\n",
      "          'hasnt': 1,\n",
      "          'went': 1,\n",
      "          'nthey': 1,\n",
      "          'dont': 1,\n",
      "          'easily': 1,\n",
      "          'romance': 1,\n",
      "          'shes': 1,\n",
      "          'wife': 1,\n",
      "          'prisoner': 1,\n",
      "          'married': 1,\n",
      "          'dannys': 1,\n",
      "          'tenure': 1,\n",
      "          'also': 1,\n",
      "          'son': 1,\n",
      "          'ciaran': 1,\n",
      "          'fitzgerald': 1,\n",
      "          'hoping': 1,\n",
      "          'soon': 1,\n",
      "          'slowly': 1,\n",
      "          'redrawn': 1,\n",
      "          'complicate': 1,\n",
      "          'things': 1,\n",
      "          'nothing': 1,\n",
      "          'special': 1,\n",
      "          'interesting': 1,\n",
      "          'emotional': 1,\n",
      "          'riveting': 1,\n",
      "          'ntheres': 1,\n",
      "          'big': 1,\n",
      "          'riot': 1,\n",
      "          'towards': 1,\n",
      "          'middle': 1,\n",
      "          'frightening': 1,\n",
      "          'brutality': 1,\n",
      "          'honesty': 1,\n",
      "          'minor': 1,\n",
      "          'represent': 1,\n",
      "          'coming': 1,\n",
      "          'fight': 1,\n",
      "          'fairly': 1,\n",
      "          'sportsmanship': 1,\n",
      "          'nthere': 1,\n",
      "          'scenes': 1,\n",
      "          'raging': 1,\n",
      "          'bull': 1,\n",
      "          'letsstripdownthesporttoitsbones': 1,\n",
      "          'brilliant': 1,\n",
      "          'ntheyre': 1,\n",
      "          'realistic': 1,\n",
      "          'instead': 1,\n",
      "          'bone': 1,\n",
      "          'crunching': 1,\n",
      "          'hear': 1,\n",
      "          'sound': 1,\n",
      "          'gloves': 1,\n",
      "          'hitting': 1,\n",
      "          'slightly': 1,\n",
      "          'unerving': 1,\n",
      "          'know': 1,\n",
      "          'backbone': 1,\n",
      "          'nbecause': 1,\n",
      "          'given': 1,\n",
      "          'horrible': 1,\n",
      "          'leads': 1,\n",
      "          'feel': 1,\n",
      "          'plight': 1,\n",
      "          'nas': 1,\n",
      "          'goes': 1,\n",
      "          'make': 1,\n",
      "          'human': 1,\n",
      "          'decisions': 1,\n",
      "          'sympathize': 1,\n",
      "          'humans': 1,\n",
      "          'nthis': 1,\n",
      "          'write': 1,\n",
      "          'take': 1,\n",
      "          'note': 1,\n",
      "          'nthese': 1,\n",
      "          'balanced': 1,\n",
      "          'stories': 1,\n",
      "          'working': 1,\n",
      "          'handinhand': 1,\n",
      "          'loved': 1,\n",
      "          'different': 1,\n",
      "          'plot': 1,\n",
      "          'mattered': 1,\n",
      "          'spilled': 1,\n",
      "          'next': 1,\n",
      "          'nit': 1,\n",
      "          'made': 1,\n",
      "          'care': 1,\n",
      "          'saying': 1,\n",
      "          'carries': 1,\n",
      "          'respectively': 1,\n",
      "          'amazing': 1,\n",
      "          'giving': 1,\n",
      "          'performances': 1,\n",
      "          'showing': 1,\n",
      "          'oscarnominee': 1,\n",
      "          'bound': 1,\n",
      "          'nin': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'billy': 1,\n",
      "          'sympathetic': 1,\n",
      "          'losing': 1,\n",
      "          'control': 1,\n",
      "          'daughter': 1,\n",
      "          'workers': 1,\n",
      "          'stolen': 1,\n",
      "          'wise': 1,\n",
      "          'scene': 1,\n",
      "          'stealer': 1,\n",
      "          'direction': 1,\n",
      "          'credit': 1,\n",
      "          'terry': 1,\n",
      "          'george': 1,\n",
      "          'rounding': 1,\n",
      "          'pacing': 1,\n",
      "          'everything': 1,\n",
      "          'noticed': 1,\n",
      "          'first': 1,\n",
      "          'leisurely': 1,\n",
      "          'yet': 1,\n",
      "          'fascinating': 1,\n",
      "          'second': 1,\n",
      "          'whirls': 1,\n",
      "          'quick': 1,\n",
      "          'pace': 1,\n",
      "          'ends': 1,\n",
      "          'quickly': 1,\n",
      "          'nmore': 1,\n",
      "          'spent': 1,\n",
      "          'thinking': 1,\n",
      "          'ending': 1,\n",
      "          'seem': 1,\n",
      "          'quite': 1,\n",
      "          'sloppy': 1,\n",
      "          'nthough': 1,\n",
      "          'achieves': 1,\n",
      "          'greatness': 1,\n",
      "          'nsure': 1,\n",
      "          'masterpiece': 1,\n",
      "          'compared': 1,\n",
      "          'drivel': 1,\n",
      "          'usually': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'combined': 1,\n",
      "          'drama': 1,\n",
      "          'features': 1,\n",
      "          'neven': 1,\n",
      "          'thisll': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mike': 7,\n",
      "          'like': 4,\n",
      "          'friends': 4,\n",
      "          'hes': 3,\n",
      "          'get': 3,\n",
      "          'want': 2,\n",
      "          'badly': 2,\n",
      "          'bad': 2,\n",
      "          'comedian': 2,\n",
      "          'starbucks': 2,\n",
      "          'gets': 2,\n",
      "          'even': 2,\n",
      "          'worse': 2,\n",
      "          'played': 2,\n",
      "          'nswingers': 2,\n",
      "          'mikes': 2,\n",
      "          'swing': 2,\n",
      "          'nto': 2,\n",
      "          'films': 2,\n",
      "          'gift': 2,\n",
      "          'lack': 2,\n",
      "          'talk': 2,\n",
      "          'never': 2,\n",
      "          'walk': 2,\n",
      "          'look': 2,\n",
      "          'cheerleading': 2,\n",
      "          'dont': 1,\n",
      "          'nmike': 1,\n",
      "          'nembarrassingly': 1,\n",
      "          'nhe': 1,\n",
      "          'broke': 1,\n",
      "          'sixyear': 1,\n",
      "          'relationship': 1,\n",
      "          'six': 1,\n",
      "          'months': 1,\n",
      "          'ago': 1,\n",
      "          'move': 1,\n",
      "          'n': 1,\n",
      "          'l': 1,\n",
      "          'still': 1,\n",
      "          'nas': 1,\n",
      "          'result': 1,\n",
      "          'jokes': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'tries': 1,\n",
      "          'impress': 1,\n",
      "          'nwell': 1,\n",
      "          'unemployed': 1,\n",
      "          'one': 1,\n",
      "          'hollywoods': 1,\n",
      "          'little': 1,\n",
      "          'fish': 1,\n",
      "          'gotten': 1,\n",
      "          'asked': 1,\n",
      "          'application': 1,\n",
      "          'nactually': 1,\n",
      "          'thing': 1,\n",
      "          'nand': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'fail': 1,\n",
      "          'however': 1,\n",
      "          'endearingly': 1,\n",
      "          'jon': 1,\n",
      "          'favreau': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'halfhearted': 1,\n",
      "          'awkward': 1,\n",
      "          'efforts': 1,\n",
      "          'back': 1,\n",
      "          'social': 1,\n",
      "          'things': 1,\n",
      "          'end': 1,\n",
      "          'enthusiastically': 1,\n",
      "          'assisted': 1,\n",
      "          'equally': 1,\n",
      "          'underachieving': 1,\n",
      "          'twentysomething': 1,\n",
      "          'actor': 1,\n",
      "          'trent': 1,\n",
      "          'vince': 1,\n",
      "          'vaughn': 1,\n",
      "          'animated': 1,\n",
      "          'performance': 1,\n",
      "          'gab': 1,\n",
      "          'bordering': 1,\n",
      "          'disturbing': 1,\n",
      "          'side': 1,\n",
      "          'motivational': 1,\n",
      "          'speaking': 1,\n",
      "          'guntoting': 1,\n",
      "          'sue': 1,\n",
      "          'patrick': 1,\n",
      "          'van': 1,\n",
      "          'horn': 1,\n",
      "          'rob': 1,\n",
      "          'ron': 1,\n",
      "          'livingston': 1,\n",
      "          'hamlet': 1,\n",
      "          'longs': 1,\n",
      "          'work': 1,\n",
      "          'goofy': 1,\n",
      "          'disneyland': 1,\n",
      "          'doesnt': 1,\n",
      "          'succeed': 1,\n",
      "          'theme': 1,\n",
      "          'park': 1,\n",
      "          'experience': 1,\n",
      "          'ntogether': 1,\n",
      "          'women': 1,\n",
      "          'make': 1,\n",
      "          'eye': 1,\n",
      "          'contact': 1,\n",
      "          'involves': 1,\n",
      "          'avoiding': 1,\n",
      "          'call': 1,\n",
      "          'appear': 1,\n",
      "          'desperate': 1,\n",
      "          'two': 1,\n",
      "          'days': 1,\n",
      "          'industry': 1,\n",
      "          'standard': 1,\n",
      "          'nafter': 1,\n",
      "          'talking': 1,\n",
      "          'strutting': 1,\n",
      "          'cool': 1,\n",
      "          'swingers': 1,\n",
      "          'aspire': 1,\n",
      "          'always': 1,\n",
      "          'laughable': 1,\n",
      "          'effect': 1,\n",
      "          'funk': 1,\n",
      "          'persistently': 1,\n",
      "          'convince': 1,\n",
      "          'outside': 1,\n",
      "          'whether': 1,\n",
      "          'quickie': 1,\n",
      "          'night': 1,\n",
      "          'trip': 1,\n",
      "          'seedy': 1,\n",
      "          'vegas': 1,\n",
      "          'casino': 1,\n",
      "          'cutthroat': 1,\n",
      "          'hollywood': 1,\n",
      "          'party': 1,\n",
      "          'beautiful': 1,\n",
      "          'people': 1,\n",
      "          '50s': 1,\n",
      "          'lounge': 1,\n",
      "          'neverywhere': 1,\n",
      "          'encourage': 1,\n",
      "          'replacement': 1,\n",
      "          'honey': 1,\n",
      "          'keep': 1,\n",
      "          'vigil': 1,\n",
      "          'progress': 1,\n",
      "          'nlike': 1,\n",
      "          'dotty': 1,\n",
      "          'doting': 1,\n",
      "          'parents': 1,\n",
      "          'leaves': 1,\n",
      "          'company': 1,\n",
      "          'without': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'recipient': 1,\n",
      "          'confidence': 1,\n",
      "          'youre': 1,\n",
      "          'money': 1,\n",
      "          'honeys': 1,\n",
      "          'know': 1,\n",
      "          'equipped': 1,\n",
      "          'eccentric': 1,\n",
      "          'dating': 1,\n",
      "          'philosophies': 1,\n",
      "          'analogy': 1,\n",
      "          'flirting': 1,\n",
      "          'bear': 1,\n",
      "          'bunny': 1,\n",
      "          'nwith': 1,\n",
      "          'unwavering': 1,\n",
      "          'support': 1,\n",
      "          'maybe': 1,\n",
      "          'nfavreau': 1,\n",
      "          'also': 1,\n",
      "          'doubled': 1,\n",
      "          'screenwriter': 1,\n",
      "          'proves': 1,\n",
      "          'creating': 1,\n",
      "          'engaging': 1,\n",
      "          'characters': 1,\n",
      "          'witty': 1,\n",
      "          'banter': 1,\n",
      "          'goes': 1,\n",
      "          'beyond': 1,\n",
      "          'todays': 1,\n",
      "          'bon': 1,\n",
      "          'mot': 1,\n",
      "          'nthere': 1,\n",
      "          'reassuring': 1,\n",
      "          'honesty': 1,\n",
      "          'friendships': 1,\n",
      "          'hits': 1,\n",
      "          'low': 1,\n",
      "          'points': 1,\n",
      "          'commiserate': 1,\n",
      "          'nwhen': 1,\n",
      "          'gumption': 1,\n",
      "          'love': 1,\n",
      "          'join': 1,\n",
      "          'section': 1,\n",
      "          'well': 1,\n",
      "          'light': 1,\n",
      "          'unassuming': 1,\n",
      "          'fare': 1,\n",
      "          'sweet': 1,\n",
      "          'candy': 1,\n",
      "          'bust': 1,\n",
      "          'gut': 1,\n",
      "          'laughing': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 6,\n",
      "          'years': 5,\n",
      "          'president': 4,\n",
      "          'nthe': 4,\n",
      "          'ford': 3,\n",
      "          'afraid': 3,\n",
      "          'film': 3,\n",
      "          'actors': 3,\n",
      "          'hes': 3,\n",
      "          'could': 3,\n",
      "          'movie': 2,\n",
      "          'marshall': 2,\n",
      "          'force': 2,\n",
      "          'alexander': 2,\n",
      "          'radek': 2,\n",
      "          'general': 2,\n",
      "          'ready': 2,\n",
      "          'fight': 2,\n",
      "          'n': 2,\n",
      "          'chance': 2,\n",
      "          'nmarshall': 2,\n",
      "          'doesnt': 2,\n",
      "          'us': 2,\n",
      "          'look': 2,\n",
      "          'best': 2,\n",
      "          'become': 2,\n",
      "          'nwhen': 2,\n",
      "          'guns': 2,\n",
      "          'man': 2,\n",
      "          'action': 2,\n",
      "          'executive': 2,\n",
      "          'political': 2,\n",
      "          'work': 2,\n",
      "          'america': 1,\n",
      "          'finally': 1,\n",
      "          'gotten': 1,\n",
      "          'needed': 1,\n",
      "          'compassionate': 1,\n",
      "          'sincere': 1,\n",
      "          'impressive': 1,\n",
      "          'ethics': 1,\n",
      "          'charisma': 1,\n",
      "          'nregretfully': 1,\n",
      "          'npresident': 1,\n",
      "          'james': 1,\n",
      "          'harrison': 1,\n",
      "          'fed': 1,\n",
      "          'terrorist': 1,\n",
      "          'activities': 1,\n",
      "          'nteaming': 1,\n",
      "          'russian': 1,\n",
      "          'government': 1,\n",
      "          'orders': 1,\n",
      "          'strike': 1,\n",
      "          'capture': 1,\n",
      "          'reactionary': 1,\n",
      "          'reunite': 1,\n",
      "          'soviet': 1,\n",
      "          'union': 1,\n",
      "          'fascist': 1,\n",
      "          'reign': 1,\n",
      "          'nduring': 1,\n",
      "          'celebration': 1,\n",
      "          'dinner': 1,\n",
      "          'announces': 1,\n",
      "          'world': 1,\n",
      "          'send': 1,\n",
      "          'troops': 1,\n",
      "          'oppression': 1,\n",
      "          'wherever': 1,\n",
      "          'exists': 1,\n",
      "          'turn': 1,\n",
      "          'declares': 1,\n",
      "          'nreturning': 1,\n",
      "          'home': 1,\n",
      "          'air': 1,\n",
      "          'gets': 1,\n",
      "          'demonstrate': 1,\n",
      "          'words': 1,\n",
      "          'personally': 1,\n",
      "          'nultranationalist': 1,\n",
      "          'militants': 1,\n",
      "          'loyal': 1,\n",
      "          'lead': 1,\n",
      "          'ivan': 1,\n",
      "          'korshunov': 1,\n",
      "          'gary': 1,\n",
      "          'oldman': 1,\n",
      "          'hijack': 1,\n",
      "          'plane': 1,\n",
      "          'threatening': 1,\n",
      "          'kill': 1,\n",
      "          'hostage': 1,\n",
      "          'every': 1,\n",
      "          'half': 1,\n",
      "          'hour': 1,\n",
      "          'released': 1,\n",
      "          'escape': 1,\n",
      "          'jettisoned': 1,\n",
      "          'capsule': 1,\n",
      "          'clinton': 1,\n",
      "          'says': 1,\n",
      "          'exist': 1,\n",
      "          'real': 1,\n",
      "          'life': 1,\n",
      "          'refuses': 1,\n",
      "          'preferring': 1,\n",
      "          'stay': 1,\n",
      "          'ndirector': 1,\n",
      "          'wolfgang': 1,\n",
      "          'peterson': 1,\n",
      "          'das': 1,\n",
      "          'boot': 1,\n",
      "          'line': 1,\n",
      "          'fire': 1,\n",
      "          'outbreak': 1,\n",
      "          'takes': 1,\n",
      "          'overused': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'theme': 1,\n",
      "          'gives': 1,\n",
      "          'something': 1,\n",
      "          'new': 1,\n",
      "          'combines': 1,\n",
      "          'brilliant': 1,\n",
      "          'acting': 1,\n",
      "          'holdyourbreath': 1,\n",
      "          'intensity': 1,\n",
      "          'nif': 1,\n",
      "          'take': 1,\n",
      "          'eyes': 1,\n",
      "          'screen': 1,\n",
      "          'steal': 1,\n",
      "          'audience': 1,\n",
      "          'neveryone': 1,\n",
      "          'totally': 1,\n",
      "          'engrossed': 1,\n",
      "          'two': 1,\n",
      "          'probably': 1,\n",
      "          'noldman': 1,\n",
      "          'typecast': 1,\n",
      "          'psychotic': 1,\n",
      "          'sadist': 1,\n",
      "          'wonder': 1,\n",
      "          'well': 1,\n",
      "          'engages': 1,\n",
      "          'teenage': 1,\n",
      "          'first': 1,\n",
      "          'daughter': 1,\n",
      "          'sensitive': 1,\n",
      "          'conversation': 1,\n",
      "          'family': 1,\n",
      "          'next': 1,\n",
      "          'minute': 1,\n",
      "          'threatens': 1,\n",
      "          'blow': 1,\n",
      "          'hole': 1,\n",
      "          'forehead': 1,\n",
      "          'know': 1,\n",
      "          'edge': 1,\n",
      "          'manner': 1,\n",
      "          'people': 1,\n",
      "          'cause': 1,\n",
      "          'nyou': 1,\n",
      "          'convinced': 1,\n",
      "          'young': 1,\n",
      "          'alice': 1,\n",
      "          'end': 1,\n",
      "          'terminated': 1,\n",
      "          'time': 1,\n",
      "          'korshonov': 1,\n",
      "          'executes': 1,\n",
      "          'passengers': 1,\n",
      "          'frightening': 1,\n",
      "          'reality': 1,\n",
      "          'deadly': 1,\n",
      "          'weapons': 1,\n",
      "          'cartoons': 1,\n",
      "          'nharrison': 1,\n",
      "          'done': 1,\n",
      "          'role': 1,\n",
      "          'several': 1,\n",
      "          'nhis': 1,\n",
      "          'mastery': 1,\n",
      "          'suit': 1,\n",
      "          'propelled': 1,\n",
      "          'desperate': 1,\n",
      "          'top': 1,\n",
      "          'form': 1,\n",
      "          'medal': 1,\n",
      "          'honor': 1,\n",
      "          'recipient': 1,\n",
      "          'desk': 1,\n",
      "          'job': 1,\n",
      "          'nrealistically': 1,\n",
      "          'act': 1,\n",
      "          'nford': 1,\n",
      "          'make': 1,\n",
      "          'believe': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'hero': 1,\n",
      "          'nindiana': 1,\n",
      "          'jones': 1,\n",
      "          'oval': 1,\n",
      "          'office': 1,\n",
      "          'nhe': 1,\n",
      "          'oldmans': 1,\n",
      "          'archetypes': 1,\n",
      "          'match': 1,\n",
      "          'perfectly': 1,\n",
      "          'roles': 1,\n",
      "          'also': 1,\n",
      "          'go': 1,\n",
      "          'accomplished': 1,\n",
      "          'nglenn': 1,\n",
      "          'close': 1,\n",
      "          'determined': 1,\n",
      "          'unsure': 1,\n",
      "          'vicepresident': 1,\n",
      "          'picture': 1,\n",
      "          'forced': 1,\n",
      "          'position': 1,\n",
      "          'shes': 1,\n",
      "          'quite': 1,\n",
      "          'ndean': 1,\n",
      "          'stockwell': 1,\n",
      "          'defense': 1,\n",
      "          'secretary': 1,\n",
      "          'eager': 1,\n",
      "          'authority': 1,\n",
      "          'im': 1,\n",
      "          'charge': 1,\n",
      "          'nis': 1,\n",
      "          'nemesis': 1,\n",
      "          'turns': 1,\n",
      "          'good': 1,\n",
      "          'haig': 1,\n",
      "          'performance': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'politics': 1,\n",
      "          'wrong': 1,\n",
      "          'na': 1,\n",
      "          'cowboy': 1,\n",
      "          'even': 1,\n",
      "          'name': 1,\n",
      "          'big': 1,\n",
      "          'shoots': 1,\n",
      "          'way': 1,\n",
      "          'problems': 1,\n",
      "          'nmuch': 1,\n",
      "          'like': 1,\n",
      "          'american': 1,\n",
      "          'collective': 1,\n",
      "          'memory': 1,\n",
      "          'jfks': 1,\n",
      "          'camelot': 1,\n",
      "          'image': 1,\n",
      "          'wondrous': 1,\n",
      "          'dont': 1,\n",
      "          'deep': 1,\n",
      "          'pulls': 1,\n",
      "          'patriotic': 1,\n",
      "          'heartstrings': 1,\n",
      "          'would': 1,\n",
      "          'much': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'spin': 1,\n",
      "          'put': 1,\n",
      "          'story': 1,\n",
      "          'outstanding': 1,\n",
      "          'ni': 1,\n",
      "          'left': 1,\n",
      "          'theater': 1,\n",
      "          'feeling': 1,\n",
      "          'hope': 1,\n",
      "          'countrys': 1,\n",
      "          'future': 1,\n",
      "          'common': 1,\n",
      "          'belief': 1,\n",
      "          'nowadays': 1,\n",
      "          'nnow': 1,\n",
      "          'get': 1,\n",
      "          'run': 1,\n",
      "          'njust': 1,\n",
      "          'actor': 1,\n",
      "          'didnt': 1,\n",
      "          'chief': 1,\n",
      "          'mean': 1,\n",
      "          'different': 1,\n",
      "          'couldnt': 1,\n",
      "          'michael': 1,\n",
      "          'redman': 1,\n",
      "          'lost': 1,\n",
      "          'count': 1,\n",
      "          'many': 1,\n",
      "          'writing': 1,\n",
      "          'column': 1,\n",
      "          '21': 1,\n",
      "          '22': 1,\n",
      "          'watching': 1,\n",
      "          'sunflowers': 1,\n",
      "          'outside': 1,\n",
      "          'window': 1,\n",
      "          'swaying': 1,\n",
      "          'cool': 1,\n",
      "          'breezes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'songcatcher': 3,\n",
      "          'romantic': 2,\n",
      "          'mountains': 2,\n",
      "          'elna': 2,\n",
      "          'folk': 2,\n",
      "          'theres': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'midst': 1,\n",
      "          'summers': 1,\n",
      "          'fare': 1,\n",
      "          'dinos': 1,\n",
      "          'revisited': 1,\n",
      "          'fiascoes': 1,\n",
      "          'thoughtful': 1,\n",
      "          'movies': 1,\n",
      "          'appalachian': 1,\n",
      "          'period': 1,\n",
      "          'drama': 1,\n",
      "          'one': 1,\n",
      "          'noscar': 1,\n",
      "          'nominee': 1,\n",
      "          'janet': 1,\n",
      "          'mcteer': 1,\n",
      "          'tumbleweeds': 1,\n",
      "          'stars': 1,\n",
      "          'dr': 1,\n",
      "          'lily': 1,\n",
      "          'penleric': 1,\n",
      "          'accomplished': 1,\n",
      "          'musicologist': 1,\n",
      "          'back': 1,\n",
      "          'prefeminist': 1,\n",
      "          'era': 1,\n",
      "          'refused': 1,\n",
      "          'full': 1,\n",
      "          'professorship': 1,\n",
      "          'university': 1,\n",
      "          'ndetermined': 1,\n",
      "          'prove': 1,\n",
      "          'worth': 1,\n",
      "          'ventures': 1,\n",
      "          'deep': 1,\n",
      "          'rugged': 1,\n",
      "          'north': 1,\n",
      "          'carolina': 1,\n",
      "          'younger': 1,\n",
      "          'sister': 1,\n",
      "          'jane': 1,\n",
      "          'adams': 1,\n",
      "          'runs': 1,\n",
      "          'school': 1,\n",
      "          'nthere': 1,\n",
      "          'bear': 1,\n",
      "          'creek': 1,\n",
      "          'discovers': 1,\n",
      "          'treasuretrove': 1,\n",
      "          'traditional': 1,\n",
      "          'scotsirish': 1,\n",
      "          'english': 1,\n",
      "          'ballads': 1,\n",
      "          'given': 1,\n",
      "          'unique': 1,\n",
      "          'interpretation': 1,\n",
      "          'insular': 1,\n",
      "          'locals': 1,\n",
      "          'nexcited': 1,\n",
      "          'sends': 1,\n",
      "          'recording': 1,\n",
      "          'equipment': 1,\n",
      "          'persuades': 1,\n",
      "          'vinie': 1,\n",
      "          'butler': 1,\n",
      "          'pat': 1,\n",
      "          'carroll': 1,\n",
      "          'selfsustaining': 1,\n",
      "          'mountain': 1,\n",
      "          'share': 1,\n",
      "          'musical': 1,\n",
      "          'heritage': 1,\n",
      "          'edison': 1,\n",
      "          'phonograph': 1,\n",
      "          'cylinders': 1,\n",
      "          'ntheir': 1,\n",
      "          'music': 1,\n",
      "          'puts': 1,\n",
      "          'much': 1,\n",
      "          'part': 1,\n",
      "          'life': 1,\n",
      "          'air': 1,\n",
      "          'breathe': 1,\n",
      "          'nthats': 1,\n",
      "          'main': 1,\n",
      "          'thrust': 1,\n",
      "          'writerdirector': 1,\n",
      "          'maggie': 1,\n",
      "          'greenwalds': 1,\n",
      "          'occasionally': 1,\n",
      "          'uneven': 1,\n",
      "          'cultureclash': 1,\n",
      "          'story': 1,\n",
      "          'loosely': 1,\n",
      "          'based': 1,\n",
      "          'olive': 1,\n",
      "          'dame': 1,\n",
      "          'campbells': 1,\n",
      "          'foray': 1,\n",
      "          'blue': 1,\n",
      "          'ridge': 1,\n",
      "          '1908': 1,\n",
      "          'also': 1,\n",
      "          'melodramatic': 1,\n",
      "          'spice': 1,\n",
      "          'nornery': 1,\n",
      "          'bearded': 1,\n",
      "          'banjopicking': 1,\n",
      "          'aidan': 1,\n",
      "          'quinn': 1,\n",
      "          'falls': 1,\n",
      "          'statuesque': 1,\n",
      "          'passionate': 1,\n",
      "          'secretly': 1,\n",
      "          'engages': 1,\n",
      "          'lesbian': 1,\n",
      "          'relationship': 1,\n",
      "          'colleague': 1,\n",
      "          'e': 1,\n",
      "          'nkatherine': 1,\n",
      "          'kerr': 1,\n",
      "          'nim': 1,\n",
      "          'ready': 1,\n",
      "          'buy': 1,\n",
      "          'soulful': 1,\n",
      "          'soundtrack': 1,\n",
      "          'vocalists': 1,\n",
      "          'like': 1,\n",
      "          'emmylou': 1,\n",
      "          'harris': 1,\n",
      "          'iris': 1,\n",
      "          'dement': 1,\n",
      "          'taj': 1,\n",
      "          'mahal': 1,\n",
      "          'young': 1,\n",
      "          'opera': 1,\n",
      "          'star': 1,\n",
      "          'emmy': 1,\n",
      "          'rossum': 1,\n",
      "          'plays': 1,\n",
      "          'pivotal': 1,\n",
      "          'role': 1,\n",
      "          'mcteers': 1,\n",
      "          'wideeyed': 1,\n",
      "          'prot': 1,\n",
      "          'g': 1,\n",
      "          'nrated': 1,\n",
      "          'pg13': 1,\n",
      "          'intense': 1,\n",
      "          'scene': 1,\n",
      "          'primitive': 1,\n",
      "          'childbirth': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'intelligent': 1,\n",
      "          'extraordinary': 1,\n",
      "          '8': 1,\n",
      "          'transported': 1,\n",
      "          'transcendent': 1,\n",
      "          'power': 1,\n",
      "          'song': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'elizabeth': 12,\n",
      "          'queen': 5,\n",
      "          'england': 3,\n",
      "          'struggle': 3,\n",
      "          'one': 3,\n",
      "          'sir': 3,\n",
      "          'time': 2,\n",
      "          'power': 2,\n",
      "          'young': 2,\n",
      "          'blanchett': 2,\n",
      "          'nthe': 2,\n",
      "          'film': 2,\n",
      "          'elizabeths': 2,\n",
      "          'kingdom': 2,\n",
      "          'nas': 2,\n",
      "          'subjects': 2,\n",
      "          'ruler': 2,\n",
      "          'performance': 2,\n",
      "          'deserves': 2,\n",
      "          'nshe': 2,\n",
      "          'right': 2,\n",
      "          'nthough': 2,\n",
      "          'little': 2,\n",
      "          'potent': 1,\n",
      "          'historical': 1,\n",
      "          'drama': 1,\n",
      "          'set': 1,\n",
      "          'mid1500s': 1,\n",
      "          'nit': 1,\n",
      "          'stately': 1,\n",
      "          'royal': 1,\n",
      "          'ceremonies': 1,\n",
      "          'commonplace': 1,\n",
      "          'public': 1,\n",
      "          'burnings': 1,\n",
      "          'ninternally': 1,\n",
      "          'catholics': 1,\n",
      "          'wage': 1,\n",
      "          'war': 1,\n",
      "          'protestants': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'spain': 1,\n",
      "          'scotland': 1,\n",
      "          'france': 1,\n",
      "          'strategize': 1,\n",
      "          'next': 1,\n",
      "          'moves': 1,\n",
      "          'nlittle': 1,\n",
      "          'know': 1,\n",
      "          'woman': 1,\n",
      "          'named': 1,\n",
      "          'cate': 1,\n",
      "          'greatest': 1,\n",
      "          'hope': 1,\n",
      "          'survival': 1,\n",
      "          'charts': 1,\n",
      "          'tumultuous': 1,\n",
      "          'gain': 1,\n",
      "          'true': 1,\n",
      "          'protestant': 1,\n",
      "          'last': 1,\n",
      "          'person': 1,\n",
      "          'catholic': 1,\n",
      "          'royalty': 1,\n",
      "          'would': 1,\n",
      "          'want': 1,\n",
      "          'nbut': 1,\n",
      "          'halfsister': 1,\n",
      "          'mary': 1,\n",
      "          'kathy': 1,\n",
      "          'burke': 1,\n",
      "          'deathly': 1,\n",
      "          'ill': 1,\n",
      "          'unable': 1,\n",
      "          'conceive': 1,\n",
      "          'child': 1,\n",
      "          'pleas': 1,\n",
      "          'take': 1,\n",
      "          'throne': 1,\n",
      "          'nmary': 1,\n",
      "          'gives': 1,\n",
      "          'blessing': 1,\n",
      "          'condition': 1,\n",
      "          'renounce': 1,\n",
      "          'faith': 1,\n",
      "          'uphold': 1,\n",
      "          'teachings': 1,\n",
      "          'catholicism': 1,\n",
      "          'across': 1,\n",
      "          'land': 1,\n",
      "          'nonce': 1,\n",
      "          'declared': 1,\n",
      "          'immediately': 1,\n",
      "          'finds': 1,\n",
      "          'assault': 1,\n",
      "          'including': 1,\n",
      "          'duke': 1,\n",
      "          'norfolk': 1,\n",
      "          'played': 1,\n",
      "          'steelyeyed': 1,\n",
      "          'grace': 1,\n",
      "          'christopher': 1,\n",
      "          'eccleston': 1,\n",
      "          'forces': 1,\n",
      "          'abroad': 1,\n",
      "          'nslowly': 1,\n",
      "          'surely': 1,\n",
      "          'neophyte': 1,\n",
      "          'takes': 1,\n",
      "          'reigns': 1,\n",
      "          'forges': 1,\n",
      "          'new': 1,\n",
      "          'path': 1,\n",
      "          'nelizabeth': 1,\n",
      "          'surrounded': 1,\n",
      "          'keenly': 1,\n",
      "          'drawn': 1,\n",
      "          'cadre': 1,\n",
      "          'advisers': 1,\n",
      "          'nher': 1,\n",
      "          'closest': 1,\n",
      "          'ally': 1,\n",
      "          'mysterious': 1,\n",
      "          'francis': 1,\n",
      "          'walsingham': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'perfectly': 1,\n",
      "          'subtle': 1,\n",
      "          'nalso': 1,\n",
      "          'side': 1,\n",
      "          'william': 1,\n",
      "          'cecil': 1,\n",
      "          'richard': 1,\n",
      "          'attenborough': 1,\n",
      "          'wellmeaning': 1,\n",
      "          'misguided': 1,\n",
      "          'chief': 1,\n",
      "          'adviser': 1,\n",
      "          'nwith': 1,\n",
      "          'people': 1,\n",
      "          'trust': 1,\n",
      "          'must': 1,\n",
      "          'prove': 1,\n",
      "          'selfworth': 1,\n",
      "          'way': 1,\n",
      "          'even': 1,\n",
      "          'means': 1,\n",
      "          'ironfisted': 1,\n",
      "          'secretly': 1,\n",
      "          'despises': 1,\n",
      "          'nblanchett': 1,\n",
      "          'oscar': 1,\n",
      "          'portrays': 1,\n",
      "          'balance': 1,\n",
      "          'gawky': 1,\n",
      "          'selfconsciousness': 1,\n",
      "          'shrewd': 1,\n",
      "          'charisma': 1,\n",
      "          'classical': 1,\n",
      "          'beauty': 1,\n",
      "          'able': 1,\n",
      "          'entrance': 1,\n",
      "          'viewer': 1,\n",
      "          'coy': 1,\n",
      "          'smile': 1,\n",
      "          'impish': 1,\n",
      "          'smirk': 1,\n",
      "          'home': 1,\n",
      "          'characters': 1,\n",
      "          'playful': 1,\n",
      "          'tendencies': 1,\n",
      "          'particularly': 1,\n",
      "          'scene': 1,\n",
      "          'dances': 1,\n",
      "          'unabashedly': 1,\n",
      "          'childhood': 1,\n",
      "          'friend': 1,\n",
      "          'lover': 1,\n",
      "          'lord': 1,\n",
      "          'robert': 1,\n",
      "          'dudley': 1,\n",
      "          'joseph': 1,\n",
      "          'fiennes': 1,\n",
      "          'nwhether': 1,\n",
      "          'fending': 1,\n",
      "          'unctuous': 1,\n",
      "          'suitors': 1,\n",
      "          'playing': 1,\n",
      "          'houses': 1,\n",
      "          'court': 1,\n",
      "          'blanchetts': 1,\n",
      "          'radiates': 1,\n",
      "          'confidence': 1,\n",
      "          'impossible': 1,\n",
      "          'dislike': 1,\n",
      "          'nalmost': 1,\n",
      "          'interesting': 1,\n",
      "          'character': 1,\n",
      "          'shekhar': 1,\n",
      "          'kapurs': 1,\n",
      "          'visual': 1,\n",
      "          'delights': 1,\n",
      "          'nhe': 1,\n",
      "          'cinematographer': 1,\n",
      "          'remi': 1,\n",
      "          'adefarasin': 1,\n",
      "          'crafted': 1,\n",
      "          'rich': 1,\n",
      "          'color': 1,\n",
      "          'palette': 1,\n",
      "          'feast': 1,\n",
      "          'eyes': 1,\n",
      "          'nrolling': 1,\n",
      "          'green': 1,\n",
      "          'hills': 1,\n",
      "          'extravagant': 1,\n",
      "          'ceremonial': 1,\n",
      "          'galas': 1,\n",
      "          'dark': 1,\n",
      "          'foreboding': 1,\n",
      "          'corridors': 1,\n",
      "          'depicted': 1,\n",
      "          'real': 1,\n",
      "          'sense': 1,\n",
      "          'artistic': 1,\n",
      "          'appreciation': 1,\n",
      "          'castles': 1,\n",
      "          'cathedrals': 1,\n",
      "          'europe': 1,\n",
      "          'rarely': 1,\n",
      "          'doted': 1,\n",
      "          'lovingly': 1,\n",
      "          'writer': 1,\n",
      "          'michael': 1,\n",
      "          'hirsts': 1,\n",
      "          'script': 1,\n",
      "          'gets': 1,\n",
      "          'murky': 1,\n",
      "          'times': 1,\n",
      "          'injections': 1,\n",
      "          'humor': 1,\n",
      "          'get': 1,\n",
      "          'overplayed': 1,\n",
      "          'pulses': 1,\n",
      "          'amount': 1,\n",
      "          'dramatic': 1,\n",
      "          'cinematic': 1,\n",
      "          'verve': 1,\n",
      "          'make': 1,\n",
      "          'deserving': 1,\n",
      "          'theatrical': 1,\n",
      "          'viewing': 1,\n",
      "          'whole': 1,\n",
      "          'story': 1,\n",
      "          'survives': 1,\n",
      "          'attention': 1,\n",
      "          'nby': 1,\n",
      "          'makes': 1,\n",
      "          'shocking': 1,\n",
      "          'sensible': 1,\n",
      "          'final': 1,\n",
      "          'declaration': 1,\n",
      "          'ready': 1,\n",
      "          'bow': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ricky': 6,\n",
      "          'bobby': 5,\n",
      "          'two': 4,\n",
      "          'vaughn': 3,\n",
      "          'nfavreau': 3,\n",
      "          'also': 3,\n",
      "          'bobbys': 3,\n",
      "          'max': 3,\n",
      "          'directorial': 2,\n",
      "          'debut': 2,\n",
      "          'favreau': 2,\n",
      "          'along': 2,\n",
      "          'much': 2,\n",
      "          'job': 2,\n",
      "          'new': 2,\n",
      "          'york': 2,\n",
      "          'nbobby': 2,\n",
      "          'another': 2,\n",
      "          'nearly': 2,\n",
      "          'nthe': 2,\n",
      "          'made': 2,\n",
      "          'watch': 2,\n",
      "          'like': 2,\n",
      "          'yakking': 2,\n",
      "          'creates': 2,\n",
      "          'heart': 2,\n",
      "          'making': 1,\n",
      "          'actor': 1,\n",
      "          'jon': 1,\n",
      "          'brings': 1,\n",
      "          'swingers': 1,\n",
      "          'costar': 1,\n",
      "          'vince': 1,\n",
      "          'tale': 1,\n",
      "          'mugs': 1,\n",
      "          'career': 1,\n",
      "          'trajectory': 1,\n",
      "          'nowheresville': 1,\n",
      "          'wrote': 1,\n",
      "          'script': 1,\n",
      "          'nby': 1,\n",
      "          'day': 1,\n",
      "          'construction': 1,\n",
      "          'workers': 1,\n",
      "          'nthey': 1,\n",
      "          'wannabe': 1,\n",
      "          'contenders': 1,\n",
      "          'neither': 1,\n",
      "          'success': 1,\n",
      "          'ntheir': 1,\n",
      "          'last': 1,\n",
      "          'bout': 1,\n",
      "          'pitted': 1,\n",
      "          'draw': 1,\n",
      "          'leaving': 1,\n",
      "          'record': 1,\n",
      "          '551': 1,\n",
      "          'nthese': 1,\n",
      "          'l': 1,\n",
      "          'notsowise': 1,\n",
      "          'guys': 1,\n",
      "          'work': 1,\n",
      "          'peter': 1,\n",
      "          'falk': 1,\n",
      "          'midlevel': 1,\n",
      "          'mobster': 1,\n",
      "          'patient': 1,\n",
      "          'understanding': 1,\n",
      "          'hates': 1,\n",
      "          'rickys': 1,\n",
      "          'guts': 1,\n",
      "          'nmax': 1,\n",
      "          'easy': 1,\n",
      "          'fly': 1,\n",
      "          'make': 1,\n",
      "          'simple': 1,\n",
      "          'delivery': 1,\n",
      "          'gangster': 1,\n",
      "          'named': 1,\n",
      "          'ruiz': 1,\n",
      "          'smooth': 1,\n",
      "          'silky': 1,\n",
      "          'sean': 1,\n",
      "          'combs': 1,\n",
      "          'lifelong': 1,\n",
      "          'friendship': 1,\n",
      "          'pleads': 1,\n",
      "          'give': 1,\n",
      "          'pal': 1,\n",
      "          'chance': 1,\n",
      "          'let': 1,\n",
      "          'tag': 1,\n",
      "          'big': 1,\n",
      "          'apple': 1,\n",
      "          'nagainst': 1,\n",
      "          'better': 1,\n",
      "          'judgment': 1,\n",
      "          'agrees': 1,\n",
      "          'nof': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'course': 1,\n",
      "          'motormouth': 1,\n",
      "          'inserts': 1,\n",
      "          'feet': 1,\n",
      "          'everytime': 1,\n",
      "          'speaks': 1,\n",
      "          'screws': 1,\n",
      "          'everything': 1,\n",
      "          'nwhile': 1,\n",
      "          'tries': 1,\n",
      "          'stay': 1,\n",
      "          'calm': 1,\n",
      "          'professional': 1,\n",
      "          'begins': 1,\n",
      "          'swaggering': 1,\n",
      "          'throwing': 1,\n",
      "          'money': 1,\n",
      "          'around': 1,\n",
      "          'john': 1,\n",
      "          'gotti': 1,\n",
      "          'tony': 1,\n",
      "          'soprano': 1,\n",
      "          'constrast': 1,\n",
      "          'styles': 1,\n",
      "          'chemistry': 1,\n",
      "          'makes': 1,\n",
      "          'enjoyable': 1,\n",
      "          'hounddog': 1,\n",
      "          'face': 1,\n",
      "          'slowburn': 1,\n",
      "          'personality': 1,\n",
      "          'could': 1,\n",
      "          'modernday': 1,\n",
      "          'oliver': 1,\n",
      "          'hardy': 1,\n",
      "          'wiser': 1,\n",
      "          'nvaughn': 1,\n",
      "          'someone': 1,\n",
      "          'vaccinated': 1,\n",
      "          'phonograph': 1,\n",
      "          'needle': 1,\n",
      "          'keeps': 1,\n",
      "          'unaware': 1,\n",
      "          'havoc': 1,\n",
      "          'nyet': 1,\n",
      "          'despite': 1,\n",
      "          'constant': 1,\n",
      "          'aggravation': 1,\n",
      "          'agitation': 1,\n",
      "          'partner': 1,\n",
      "          'bond': 1,\n",
      "          'affection': 1,\n",
      "          'loyalty': 1,\n",
      "          'binds': 1,\n",
      "          'contrast': 1,\n",
      "          'friends': 1,\n",
      "          'interesting': 1,\n",
      "          'buttondowned': 1,\n",
      "          'tightlywound': 1,\n",
      "          'always': 1,\n",
      "          'waiting': 1,\n",
      "          'next': 1,\n",
      "          'shoe': 1,\n",
      "          'courtesy': 1,\n",
      "          'drop': 1,\n",
      "          'nricky': 1,\n",
      "          'mostly': 1,\n",
      "          'oblivious': 1,\n",
      "          'problems': 1,\n",
      "          'genuinely': 1,\n",
      "          'surprised': 1,\n",
      "          'comes': 1,\n",
      "          'attack': 1,\n",
      "          'faux': 1,\n",
      "          'paus': 1,\n",
      "          'nin': 1,\n",
      "          'lackeys': 1,\n",
      "          'fish': 1,\n",
      "          'water': 1,\n",
      "          'stumbling': 1,\n",
      "          'one': 1,\n",
      "          'situation': 1,\n",
      "          'trying': 1,\n",
      "          'keep': 1,\n",
      "          'alive': 1,\n",
      "          'ncombs': 1,\n",
      "          'elegant': 1,\n",
      "          'cool': 1,\n",
      "          'lowkey': 1,\n",
      "          'menacing': 1,\n",
      "          'gangsta': 1,\n",
      "          'sent': 1,\n",
      "          'meet': 1,\n",
      "          'nfalk': 1,\n",
      "          'amusing': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'famke': 1,\n",
      "          'janssen': 1,\n",
      "          'breaks': 1,\n",
      "          'lowlife': 1,\n",
      "          'girlfriend': 1,\n",
      "          'nmore': 1,\n",
      "          'anything': 1,\n",
      "          'movie': 1,\n",
      "          'nit': 1,\n",
      "          'loud': 1,\n",
      "          'obnoxious': 1,\n",
      "          'talkative': 1,\n",
      "          'nbut': 1,\n",
      "          'cameraderie': 1,\n",
      "          'holds': 1,\n",
      "          'key': 1,\n",
      "          'interest': 1,\n",
      "          'commendable': 1,\n",
      "          'nhe': 1,\n",
      "          'player': 1,\n",
      "          'watched': 1,\n",
      "          'improve': 1,\n",
      "          'experience': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'carry': 7,\n",
      "          'rumpo': 7,\n",
      "          'marshall': 6,\n",
      "          'kid': 5,\n",
      "          'film': 5,\n",
      "          'city': 4,\n",
      "          'part': 4,\n",
      "          'james': 3,\n",
      "          'stodge': 3,\n",
      "          'judge': 3,\n",
      "          'williams': 3,\n",
      "          'sheriff': 3,\n",
      "          'sanitary': 3,\n",
      "          'heap': 3,\n",
      "          'played': 3,\n",
      "          'west': 2,\n",
      "          'burke': 2,\n",
      "          'kenneth': 2,\n",
      "          'albert': 2,\n",
      "          'earp': 2,\n",
      "          'jon': 2,\n",
      "          'pertwee': 2,\n",
      "          'law': 2,\n",
      "          'misunderstanding': 2,\n",
      "          'engineer': 2,\n",
      "          'dale': 2,\n",
      "          'arrives': 2,\n",
      "          'annie': 2,\n",
      "          'oakley': 2,\n",
      "          'angela': 2,\n",
      "          'douglas': 2,\n",
      "          'rather': 2,\n",
      "          'past': 2,\n",
      "          'provides': 2,\n",
      "          'best': 2,\n",
      "          'movie': 2,\n",
      "          'hawtrey': 2,\n",
      "          'local': 2,\n",
      "          'amusing': 2,\n",
      "          'performance': 2,\n",
      "          'na': 2,\n",
      "          'nthe': 2,\n",
      "          'song': 2,\n",
      "          'set': 1,\n",
      "          'wild': 1,\n",
      "          'centres': 1,\n",
      "          'around': 1,\n",
      "          'arrival': 1,\n",
      "          'sidney': 1,\n",
      "          'cronies': 1,\n",
      "          'nhis': 1,\n",
      "          'dodgy': 1,\n",
      "          'dealings': 1,\n",
      "          'summary': 1,\n",
      "          'shootings': 1,\n",
      "          'aggravate': 1,\n",
      "          'much': 1,\n",
      "          'asks': 1,\n",
      "          'drive': 1,\n",
      "          'town': 1,\n",
      "          'ninstead': 1,\n",
      "          'shoots': 1,\n",
      "          'dead': 1,\n",
      "          'ntherefore': 1,\n",
      "          'sends': 1,\n",
      "          'come': 1,\n",
      "          'clean': 1,\n",
      "          'ndue': 1,\n",
      "          'english': 1,\n",
      "          'called': 1,\n",
      "          'p': 1,\n",
      "          'knutt': 1,\n",
      "          'jim': 1,\n",
      "          'assigned': 1,\n",
      "          'without': 1,\n",
      "          'knowing': 1,\n",
      "          'nhe': 1,\n",
      "          'time': 1,\n",
      "          'seeking': 1,\n",
      "          'revenge': 1,\n",
      "          'father': 1,\n",
      "          'sheriffs': 1,\n",
      "          'murder': 1,\n",
      "          'nwhen': 1,\n",
      "          'soon': 1,\n",
      "          'becomes': 1,\n",
      "          'aware': 1,\n",
      "          'due': 1,\n",
      "          'limited': 1,\n",
      "          'intellect': 1,\n",
      "          'manipulated': 1,\n",
      "          'always': 1,\n",
      "          'ends': 1,\n",
      "          'getting': 1,\n",
      "          'things': 1,\n",
      "          'wrong': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'headtohead': 1,\n",
      "          'nwith': 1,\n",
      "          'rumpos': 1,\n",
      "          'experience': 1,\n",
      "          'would': 1,\n",
      "          'seem': 1,\n",
      "          'depth': 1,\n",
      "          'using': 1,\n",
      "          'skills': 1,\n",
      "          'learning': 1,\n",
      "          'ways': 1,\n",
      "          'least': 1,\n",
      "          'stands': 1,\n",
      "          'chance': 1,\n",
      "          'nsid': 1,\n",
      "          'american': 1,\n",
      "          'accent': 1,\n",
      "          'perfect': 1,\n",
      "          'suits': 1,\n",
      "          'ground': 1,\n",
      "          'njim': 1,\n",
      "          'one': 1,\n",
      "          'performances': 1,\n",
      "          'stupid': 1,\n",
      "          'effective': 1,\n",
      "          'role': 1,\n",
      "          'revengeful': 1,\n",
      "          'daughter': 1,\n",
      "          'nother': 1,\n",
      "          'regulars': 1,\n",
      "          'appear': 1,\n",
      "          'include': 1,\n",
      "          'charles': 1,\n",
      "          'bernard': 1,\n",
      "          'bresslaw': 1,\n",
      "          'debut': 1,\n",
      "          'big': 1,\n",
      "          'little': 1,\n",
      "          'respectively': 1,\n",
      "          'nbig': 1,\n",
      "          'indian': 1,\n",
      "          'leader': 1,\n",
      "          'crazy': 1,\n",
      "          'casting': 1,\n",
      "          'steals': 1,\n",
      "          'every': 1,\n",
      "          'scene': 1,\n",
      "          'even': 1,\n",
      "          'though': 1,\n",
      "          'enter': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'njoan': 1,\n",
      "          'sims': 1,\n",
      "          'useful': 1,\n",
      "          'support': 1,\n",
      "          'belle': 1,\n",
      "          'bar': 1,\n",
      "          'owner': 1,\n",
      "          'takes': 1,\n",
      "          'fancy': 1,\n",
      "          'nhowever': 1,\n",
      "          'doc': 1,\n",
      "          'peter': 1,\n",
      "          'butterworth': 1,\n",
      "          'really': 1,\n",
      "          'necessary': 1,\n",
      "          'pertwees': 1,\n",
      "          'poor': 1,\n",
      "          'nkenneth': 1,\n",
      "          'uses': 1,\n",
      "          'new': 1,\n",
      "          'voice': 1,\n",
      "          'struggles': 1,\n",
      "          'weak': 1,\n",
      "          'neven': 1,\n",
      "          'sid': 1,\n",
      "          'favourite': 1,\n",
      "          'different': 1,\n",
      "          'seriously': 1,\n",
      "          'actors': 1,\n",
      "          'possesses': 1,\n",
      "          'realism': 1,\n",
      "          'death': 1,\n",
      "          'count': 1,\n",
      "          'highest': 1,\n",
      "          'nsets': 1,\n",
      "          'costumes': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'commendable': 1,\n",
      "          'songs': 1,\n",
      "          'included': 1,\n",
      "          'title': 1,\n",
      "          'annies': 1,\n",
      "          'impressive': 1,\n",
      "          'strange': 1,\n",
      "          'therefore': 1,\n",
      "          'interesting': 1,\n",
      "          'nnot': 1,\n",
      "          'kind': 1,\n",
      "          'certainly': 1,\n",
      "          'distinctive': 1,\n",
      "          'series': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'sandler': 10,\n",
      "          'movie': 8,\n",
      "          'wedding': 8,\n",
      "          'robbie': 7,\n",
      "          'doesnt': 6,\n",
      "          'nthe': 5,\n",
      "          'nhe': 5,\n",
      "          'someone': 5,\n",
      "          'make': 4,\n",
      "          'really': 4,\n",
      "          'singer': 4,\n",
      "          'story': 4,\n",
      "          'weddings': 4,\n",
      "          'new': 4,\n",
      "          'happy': 3,\n",
      "          'gilmore': 3,\n",
      "          'would': 3,\n",
      "          'seems': 3,\n",
      "          'fun': 3,\n",
      "          'love': 3,\n",
      "          'barrymore': 3,\n",
      "          'chemistry': 3,\n",
      "          'two': 3,\n",
      "          'soundtrack': 3,\n",
      "          'ha': 3,\n",
      "          'example': 2,\n",
      "          'rookie': 2,\n",
      "          'selfconfident': 2,\n",
      "          'jerk': 2,\n",
      "          'also': 2,\n",
      "          'nthat': 2,\n",
      "          'motive': 2,\n",
      "          'nin': 2,\n",
      "          'fact': 2,\n",
      "          'nbut': 2,\n",
      "          'sandlers': 2,\n",
      "          'gesture': 2,\n",
      "          'right': 2,\n",
      "          'ndavid': 2,\n",
      "          'could': 2,\n",
      "          'embarrassing': 2,\n",
      "          'people': 2,\n",
      "          'mature': 2,\n",
      "          'nrobbie': 2,\n",
      "          'gets': 2,\n",
      "          'exactly': 2,\n",
      "          'man': 2,\n",
      "          'hard': 2,\n",
      "          'njulia': 2,\n",
      "          'julia': 2,\n",
      "          'fianc': 2,\n",
      "          'leave': 2,\n",
      "          'serious': 2,\n",
      "          'works': 2,\n",
      "          'looking': 2,\n",
      "          'settle': 2,\n",
      "          '80s': 2,\n",
      "          'references': 2,\n",
      "          'part': 2,\n",
      "          'liked': 2,\n",
      "          'get': 2,\n",
      "          'van': 2,\n",
      "          'halen': 2,\n",
      "          'n': 2,\n",
      "          'herlihy': 2,\n",
      "          'good': 2,\n",
      "          'plays': 1,\n",
      "          'golfer': 1,\n",
      "          'trying': 1,\n",
      "          'beat': 1,\n",
      "          'pro': 1,\n",
      "          'nif': 1,\n",
      "          'star': 1,\n",
      "          'comic': 1,\n",
      "          'enough': 1,\n",
      "          'motivation': 1,\n",
      "          'drive': 1,\n",
      "          'wants': 1,\n",
      "          'win': 1,\n",
      "          'prize': 1,\n",
      "          'money': 1,\n",
      "          'help': 1,\n",
      "          'grandma': 1,\n",
      "          'keep': 1,\n",
      "          'house': 1,\n",
      "          'extra': 1,\n",
      "          'funnier': 1,\n",
      "          'nit': 1,\n",
      "          'add': 1,\n",
      "          'genuine': 1,\n",
      "          'emotional': 1,\n",
      "          'depth': 1,\n",
      "          'either': 1,\n",
      "          'almost': 1,\n",
      "          'totally': 1,\n",
      "          'irrelevant': 1,\n",
      "          'philosophy': 1,\n",
      "          'token': 1,\n",
      "          'nice': 1,\n",
      "          'endlessly': 1,\n",
      "          'refreshing': 1,\n",
      "          'track': 1,\n",
      "          'hes': 1,\n",
      "          'superficially': 1,\n",
      "          'relevant': 1,\n",
      "          'nwhat': 1,\n",
      "          'kind': 1,\n",
      "          'even': 1,\n",
      "          'less': 1,\n",
      "          'important': 1,\n",
      "          'spade': 1,\n",
      "          'filled': 1,\n",
      "          'role': 1,\n",
      "          'cynicism': 1,\n",
      "          'sarcasm': 1,\n",
      "          'fat': 1,\n",
      "          'ugly': 1,\n",
      "          'meets': 1,\n",
      "          'intact': 1,\n",
      "          'instead': 1,\n",
      "          'brings': 1,\n",
      "          'goodness': 1,\n",
      "          'character': 1,\n",
      "          'enjoy': 1,\n",
      "          'treats': 1,\n",
      "          'though': 1,\n",
      "          'family': 1,\n",
      "          'hart': 1,\n",
      "          'sing': 1,\n",
      "          'loners': 1,\n",
      "          'join': 1,\n",
      "          'smooths': 1,\n",
      "          'something': 1,\n",
      "          'want': 1,\n",
      "          'day': 1,\n",
      "          'comes': 1,\n",
      "          'stood': 1,\n",
      "          'heavymetal': 1,\n",
      "          'bride': 1,\n",
      "          'set': 1,\n",
      "          '1985': 1,\n",
      "          'takes': 1,\n",
      "          'sleep': 1,\n",
      "          'eat': 1,\n",
      "          'punched': 1,\n",
      "          'work': 1,\n",
      "          'sings': 1,\n",
      "          'stinks': 1,\n",
      "          'drew': 1,\n",
      "          'waitresses': 1,\n",
      "          'town': 1,\n",
      "          'gives': 1,\n",
      "          'shoulder': 1,\n",
      "          'cry': 1,\n",
      "          'ear': 1,\n",
      "          'talk': 1,\n",
      "          'neventually': 1,\n",
      "          'starts': 1,\n",
      "          'rebounding': 1,\n",
      "          'toward': 1,\n",
      "          'likes': 1,\n",
      "          'shes': 1,\n",
      "          'engaged': 1,\n",
      "          'nher': 1,\n",
      "          'see': 1,\n",
      "          'trend': 1,\n",
      "          'nope': 1,\n",
      "          'formula': 1,\n",
      "          'deserve': 1,\n",
      "          'depressed': 1,\n",
      "          'fight': 1,\n",
      "          'hand': 1,\n",
      "          'like': 1,\n",
      "          'cant': 1,\n",
      "          'seemingly': 1,\n",
      "          'safe': 1,\n",
      "          'stable': 1,\n",
      "          'offchance': 1,\n",
      "          'might': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'nyouve': 1,\n",
      "          'seen': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'ntheres': 1,\n",
      "          'always': 1,\n",
      "          'way': 1,\n",
      "          'tell': 1,\n",
      "          'lovers': 1,\n",
      "          'details': 1,\n",
      "          'nand': 1,\n",
      "          'sometimes': 1,\n",
      "          'nfirst': 1,\n",
      "          'effective': 1,\n",
      "          'nactually': 1,\n",
      "          'much': 1,\n",
      "          'ones': 1,\n",
      "          'romantic': 1,\n",
      "          'tension': 1,\n",
      "          'nsandler': 1,\n",
      "          'captures': 1,\n",
      "          'forlorn': 1,\n",
      "          'sleepwalking': 1,\n",
      "          'look': 1,\n",
      "          'jilted': 1,\n",
      "          'struck': 1,\n",
      "          'unattainable': 1,\n",
      "          'nbarrymore': 1,\n",
      "          'charming': 1,\n",
      "          'girl': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'nsparks': 1,\n",
      "          'dont': 1,\n",
      "          'fly': 1,\n",
      "          'kiss': 1,\n",
      "          'seem': 1,\n",
      "          'nsecond': 1,\n",
      "          'nthey': 1,\n",
      "          'driven': 1,\n",
      "          'passionate': 1,\n",
      "          'sexual': 1,\n",
      "          'attraction': 1,\n",
      "          'theyre': 1,\n",
      "          'cute': 1,\n",
      "          'couple': 1,\n",
      "          'neither': 1,\n",
      "          'centerfold': 1,\n",
      "          'material': 1,\n",
      "          'ninstead': 1,\n",
      "          'meaningful': 1,\n",
      "          'grow': 1,\n",
      "          'old': 1,\n",
      "          'nat': 1,\n",
      "          'comforts': 1,\n",
      "          'kid': 1,\n",
      "          'throwing': 1,\n",
      "          'dumpster': 1,\n",
      "          'sits': 1,\n",
      "          'repulsing': 1,\n",
      "          'situation': 1,\n",
      "          'taken': 1,\n",
      "          'stride': 1,\n",
      "          'already': 1,\n",
      "          'parents': 1,\n",
      "          'caring': 1,\n",
      "          'sick': 1,\n",
      "          'child': 1,\n",
      "          'play': 1,\n",
      "          'big': 1,\n",
      "          'nother': 1,\n",
      "          'critics': 1,\n",
      "          'ni': 1,\n",
      "          'spite': 1,\n",
      "          'noften': 1,\n",
      "          'music': 1,\n",
      "          'felt': 1,\n",
      "          'forced': 1,\n",
      "          'nfor': 1,\n",
      "          'tells': 1,\n",
      "          'exfianc': 1,\n",
      "          'tshirt': 1,\n",
      "          'jinx': 1,\n",
      "          'band': 1,\n",
      "          'break': 1,\n",
      "          'nget': 1,\n",
      "          'lee': 1,\n",
      "          'roth': 1,\n",
      "          'sammy': 1,\n",
      "          'allen': 1,\n",
      "          'covert': 1,\n",
      "          'robbies': 1,\n",
      "          'chauffeur': 1,\n",
      "          'friend': 1,\n",
      "          'shows': 1,\n",
      "          'party': 1,\n",
      "          'wearing': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'jacket': 1,\n",
      "          'single': 1,\n",
      "          'silver': 1,\n",
      "          'glove': 1,\n",
      "          'thats': 1,\n",
      "          'mj': 1,\n",
      "          'used': 1,\n",
      "          'wear': 1,\n",
      "          'time': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'making': 1,\n",
      "          'generalizations': 1,\n",
      "          'past': 1,\n",
      "          'era': 1,\n",
      "          'easy': 1,\n",
      "          'rewarding': 1,\n",
      "          'nthats': 1,\n",
      "          'say': 1,\n",
      "          'isnt': 1,\n",
      "          'funny': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'tim': 1,\n",
      "          'written': 1,\n",
      "          'billy': 1,\n",
      "          'madison': 1,\n",
      "          'combination': 1,\n",
      "          'nherlihy': 1,\n",
      "          'knows': 1,\n",
      "          'sort': 1,\n",
      "          'jokes': 1,\n",
      "          'tailored': 1,\n",
      "          'script': 1,\n",
      "          'straightfaced': 1,\n",
      "          'smartaleck': 1,\n",
      "          'style': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'stick': 1,\n",
      "          'together': 1,\n",
      "          'projects': 1,\n",
      "          'nwith': 1,\n",
      "          'barrymores': 1,\n",
      "          'charm': 1,\n",
      "          'heart': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'neverything': 4,\n",
      "          'lives': 4,\n",
      "          'say': 4,\n",
      "          'nthe': 4,\n",
      "          'think': 4,\n",
      "          'one': 4,\n",
      "          'clean': 3,\n",
      "          'mikey': 3,\n",
      "          'wood': 3,\n",
      "          'ice': 3,\n",
      "          'storm': 3,\n",
      "          'story': 3,\n",
      "          'character': 3,\n",
      "          'start': 3,\n",
      "          'film': 3,\n",
      "          'family': 3,\n",
      "          'nhe': 3,\n",
      "          'movie': 3,\n",
      "          'might': 3,\n",
      "          'dont': 3,\n",
      "          'characters': 3,\n",
      "          'cold': 2,\n",
      "          'molecules': 2,\n",
      "          'arent': 2,\n",
      "          'moving': 2,\n",
      "          'words': 2,\n",
      "          'elijah': 2,\n",
      "          'young': 2,\n",
      "          'teenage': 2,\n",
      "          'boy': 2,\n",
      "          'much': 2,\n",
      "          'parallel': 2,\n",
      "          'life': 2,\n",
      "          'affair': 2,\n",
      "          'hood': 2,\n",
      "          'kevin': 2,\n",
      "          'kline': 2,\n",
      "          'wife': 2,\n",
      "          'joan': 2,\n",
      "          'doesnt': 2,\n",
      "          'anything': 2,\n",
      "          'ricci': 2,\n",
      "          'sexual': 2,\n",
      "          'ntobey': 2,\n",
      "          'maguire': 2,\n",
      "          'paul': 2,\n",
      "          'nwe': 2,\n",
      "          'even': 2,\n",
      "          'something': 2,\n",
      "          'return': 2,\n",
      "          'go': 2,\n",
      "          'trying': 2,\n",
      "          'drugs': 2,\n",
      "          'sex': 2,\n",
      "          'nobody': 2,\n",
      "          'neven': 2,\n",
      "          'families': 2,\n",
      "          'empty': 2,\n",
      "          'thats': 2,\n",
      "          'point': 2,\n",
      "          'nat': 2,\n",
      "          'first': 2,\n",
      "          'seem': 2,\n",
      "          'know': 2,\n",
      "          'watch': 2,\n",
      "          'lost': 2,\n",
      "          'quite': 2,\n",
      "          'good': 2,\n",
      "          'perhaps': 2,\n",
      "          'many': 2,\n",
      "          'films': 2,\n",
      "          'nthese': 1,\n",
      "          'essential': 1,\n",
      "          'carver': 1,\n",
      "          'living': 1,\n",
      "          '1973': 1,\n",
      "          'new': 1,\n",
      "          'canaan': 1,\n",
      "          'connecticut': 1,\n",
      "          'nwhen': 1,\n",
      "          'delivers': 1,\n",
      "          'bored': 1,\n",
      "          'science': 1,\n",
      "          'class': 1,\n",
      "          'unlikely': 1,\n",
      "          'anyone': 1,\n",
      "          'realizes': 1,\n",
      "          'mikeys': 1,\n",
      "          'surround': 1,\n",
      "          'nhis': 1,\n",
      "          'father': 1,\n",
      "          'jim': 1,\n",
      "          'jamey': 1,\n",
      "          'sheridan': 1,\n",
      "          'rarely': 1,\n",
      "          'seen': 1,\n",
      "          'mother': 1,\n",
      "          'janey': 1,\n",
      "          'sigourney': 1,\n",
      "          'weaver': 1,\n",
      "          'married': 1,\n",
      "          'neighbor': 1,\n",
      "          'ben': 1,\n",
      "          'nbens': 1,\n",
      "          'elena': 1,\n",
      "          'allen': 1,\n",
      "          'suspects': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'bens': 1,\n",
      "          '14yearold': 1,\n",
      "          'daughter': 1,\n",
      "          'wendy': 1,\n",
      "          'christina': 1,\n",
      "          'continuously': 1,\n",
      "          'lures': 1,\n",
      "          'younger': 1,\n",
      "          'brother': 1,\n",
      "          'sandy': 1,\n",
      "          'adam': 1,\n",
      "          'hannbyrd': 1,\n",
      "          'explorations': 1,\n",
      "          'plays': 1,\n",
      "          '16yearold': 1,\n",
      "          'narrator': 1,\n",
      "          'also': 1,\n",
      "          'happens': 1,\n",
      "          'least': 1,\n",
      "          'prevalent': 1,\n",
      "          'interesting': 1,\n",
      "          'outlook': 1,\n",
      "          'compares': 1,\n",
      "          'fantastic': 1,\n",
      "          'four': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'goes': 1,\n",
      "          'far': 1,\n",
      "          'everybodys': 1,\n",
      "          'antimatter': 1,\n",
      "          'everybody': 1,\n",
      "          'eventually': 1,\n",
      "          'farther': 1,\n",
      "          'deeper': 1,\n",
      "          'youll': 1,\n",
      "          'piece': 1,\n",
      "          'explores': 1,\n",
      "          'dismal': 1,\n",
      "          'time': 1,\n",
      "          'america': 1,\n",
      "          'individual': 1,\n",
      "          'portrayed': 1,\n",
      "          'parallels': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'teenagers': 1,\n",
      "          'discover': 1,\n",
      "          'thru': 1,\n",
      "          'alcohol': 1,\n",
      "          'really': 1,\n",
      "          'almost': 1,\n",
      "          'identical': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'parents': 1,\n",
      "          'figure': 1,\n",
      "          'purpose': 1,\n",
      "          'using': 1,\n",
      "          'methods': 1,\n",
      "          'n': 1,\n",
      "          'outside': 1,\n",
      "          'admit': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'president': 1,\n",
      "          'tv': 1,\n",
      "          'denying': 1,\n",
      "          'wrongdoings': 1,\n",
      "          'nhow': 1,\n",
      "          'expect': 1,\n",
      "          'couple': 1,\n",
      "          'suburban': 1,\n",
      "          'riding': 1,\n",
      "          'coattails': 1,\n",
      "          'revolution': 1,\n",
      "          'nall': 1,\n",
      "          'obviously': 1,\n",
      "          'viewing': 1,\n",
      "          'entire': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nyou': 1,\n",
      "          'get': 1,\n",
      "          'deeply': 1,\n",
      "          'knows': 1,\n",
      "          'either': 1,\n",
      "          'sadly': 1,\n",
      "          'two': 1,\n",
      "          'nearly': 1,\n",
      "          'oblivious': 1,\n",
      "          'another': 1,\n",
      "          'glance': 1,\n",
      "          'emotion': 1,\n",
      "          'ending': 1,\n",
      "          'scenes': 1,\n",
      "          'havent': 1,\n",
      "          'gotten': 1,\n",
      "          'well': 1,\n",
      "          'enough': 1,\n",
      "          'sympathize': 1,\n",
      "          'realize': 1,\n",
      "          'feel': 1,\n",
      "          'pain': 1,\n",
      "          'acting': 1,\n",
      "          'particularly': 1,\n",
      "          'liked': 1,\n",
      "          'receiving': 1,\n",
      "          'recognition': 1,\n",
      "          'others': 1,\n",
      "          'still': 1,\n",
      "          'found': 1,\n",
      "          'possess': 1,\n",
      "          'real': 1,\n",
      "          'sense': 1,\n",
      "          'nchristina': 1,\n",
      "          'acclaimed': 1,\n",
      "          'part': 1,\n",
      "          'misguided': 1,\n",
      "          'temptress': 1,\n",
      "          'looks': 1,\n",
      "          'pants': 1,\n",
      "          'every': 1,\n",
      "          'available': 1,\n",
      "          'nstill': 1,\n",
      "          'hats': 1,\n",
      "          'remain': 1,\n",
      "          'allens': 1,\n",
      "          'subtle': 1,\n",
      "          'believable': 1,\n",
      "          'performance': 1,\n",
      "          'lonely': 1,\n",
      "          'unappreciated': 1,\n",
      "          'always': 1,\n",
      "          'excellent': 1,\n",
      "          'fine': 1,\n",
      "          'job': 1,\n",
      "          'intact': 1,\n",
      "          'sensible': 1,\n",
      "          'person': 1,\n",
      "          'seemed': 1,\n",
      "          'little': 1,\n",
      "          'needed': 1,\n",
      "          'shouldve': 1,\n",
      "          'used': 1,\n",
      "          'hailed': 1,\n",
      "          'best': 1,\n",
      "          'year': 1,\n",
      "          'ni': 1,\n",
      "          'hate': 1,\n",
      "          'agree': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'would': 1,\n",
      "          'rank': 1,\n",
      "          'higher': 1,\n",
      "          'nit': 1,\n",
      "          'takes': 1,\n",
      "          'lot': 1,\n",
      "          'retrospect': 1,\n",
      "          'fully': 1,\n",
      "          'appreciate': 1,\n",
      "          'art': 1,\n",
      "          'finally': 1,\n",
      "          'seeing': 1,\n",
      "          'things': 1,\n",
      "          'didnt': 1,\n",
      "          'grow': 1,\n",
      "          'fonder': 1,\n",
      "          'nperhaps': 1,\n",
      "          'see': 1,\n",
      "          'ponder': 1,\n",
      "          'different': 1,\n",
      "          'eyes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'neil': 4,\n",
      "          'nits': 4,\n",
      "          'nit': 4,\n",
      "          'jordan': 3,\n",
      "          'moving': 3,\n",
      "          'film': 3,\n",
      "          'maurice': 3,\n",
      "          'sarah': 3,\n",
      "          'moore': 3,\n",
      "          'well': 3,\n",
      "          'love': 3,\n",
      "          'really': 3,\n",
      "          'affair': 2,\n",
      "          'dark': 2,\n",
      "          'slow': 2,\n",
      "          'confusing': 2,\n",
      "          'still': 2,\n",
      "          'ralph': 2,\n",
      "          'fiennes': 2,\n",
      "          'henry': 2,\n",
      "          'finds': 2,\n",
      "          'guy': 2,\n",
      "          'work': 2,\n",
      "          'nwhile': 2,\n",
      "          'anything': 2,\n",
      "          'two': 2,\n",
      "          'nthis': 2,\n",
      "          'us': 2,\n",
      "          'present': 2,\n",
      "          'see': 2,\n",
      "          'may': 2,\n",
      "          'sound': 2,\n",
      "          'ever': 2,\n",
      "          'movie': 2,\n",
      "          'definitely': 2,\n",
      "          'films': 2,\n",
      "          'nthe': 2,\n",
      "          'also': 2,\n",
      "          'little': 2,\n",
      "          'never': 2,\n",
      "          'best': 2,\n",
      "          'end': 1,\n",
      "          'moody': 1,\n",
      "          'romantic': 1,\n",
      "          'period': 1,\n",
      "          'piece': 1,\n",
      "          'exquisitely': 1,\n",
      "          'writes': 1,\n",
      "          'directs': 1,\n",
      "          'nalthough': 1,\n",
      "          'sometimes': 1,\n",
      "          'follow': 1,\n",
      "          'manages': 1,\n",
      "          'give': 1,\n",
      "          'audiences': 1,\n",
      "          'experience': 1,\n",
      "          'nbased': 1,\n",
      "          'graham': 1,\n",
      "          'greenes': 1,\n",
      "          'novel': 1,\n",
      "          'name': 1,\n",
      "          'mainly': 1,\n",
      "          'follows': 1,\n",
      "          '3': 1,\n",
      "          'characters': 1,\n",
      "          'ntheres': 1,\n",
      "          'bendrix': 1,\n",
      "          'miles': 1,\n",
      "          'stephen': 1,\n",
      "          'rea': 1,\n",
      "          'wife': 1,\n",
      "          'julianne': 1,\n",
      "          'nsarah': 1,\n",
      "          'bore': 1,\n",
      "          'hes': 1,\n",
      "          'normal': 1,\n",
      "          'play': 1,\n",
      "          'hand': 1,\n",
      "          'falls': 1,\n",
      "          'madly': 1,\n",
      "          'would': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'break': 1,\n",
      "          'witnessed': 1,\n",
      "          'serious': 1,\n",
      "          'flashbacks': 1,\n",
      "          'leads': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'think': 1,\n",
      "          'hires': 1,\n",
      "          'private': 1,\n",
      "          'detective': 1,\n",
      "          'ian': 1,\n",
      "          'hart': 1,\n",
      "          'straight': 1,\n",
      "          'forward': 1,\n",
      "          'deep': 1,\n",
      "          'tale': 1,\n",
      "          'jealousy': 1,\n",
      "          'lies': 1,\n",
      "          'men': 1,\n",
      "          'unhappiness': 1,\n",
      "          'lasting': 1,\n",
      "          'nall': 1,\n",
      "          'like': 1,\n",
      "          'drag': 1,\n",
      "          'captures': 1,\n",
      "          'interest': 1,\n",
      "          'nwith': 1,\n",
      "          'great': 1,\n",
      "          'performances': 1,\n",
      "          'another': 1,\n",
      "          'english': 1,\n",
      "          'patient': 1,\n",
      "          'type': 1,\n",
      "          'better': 1,\n",
      "          'julianna': 1,\n",
      "          'deserves': 1,\n",
      "          'oscar': 1,\n",
      "          '5': 1,\n",
      "          '1999': 1,\n",
      "          'believe': 1,\n",
      "          'role': 1,\n",
      "          'passion': 1,\n",
      "          'story': 1,\n",
      "          'written': 1,\n",
      "          'thanks': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'didnt': 1,\n",
      "          'read': 1,\n",
      "          'book': 1,\n",
      "          'theres': 1,\n",
      "          'doubt': 1,\n",
      "          'mind': 1,\n",
      "          'descriptive': 1,\n",
      "          'nwhats': 1,\n",
      "          'ask': 1,\n",
      "          'tragedy': 1,\n",
      "          'typical': 1,\n",
      "          'romance': 1,\n",
      "          'girl': 1,\n",
      "          'fall': 1,\n",
      "          'complicated': 1,\n",
      "          'depressing': 1,\n",
      "          'shows': 1,\n",
      "          'complexity': 1,\n",
      "          'relationship': 1,\n",
      "          'nothing': 1,\n",
      "          'perfect': 1,\n",
      "          'neveryone': 1,\n",
      "          'feels': 1,\n",
      "          'different': 1,\n",
      "          'way': 1,\n",
      "          'tears': 1,\n",
      "          'pieces': 1,\n",
      "          'nback': 1,\n",
      "          'jordans': 1,\n",
      "          'script': 1,\n",
      "          'wasnt': 1,\n",
      "          'red': 1,\n",
      "          'roses': 1,\n",
      "          'nthere': 1,\n",
      "          'times': 1,\n",
      "          'felt': 1,\n",
      "          'romances': 1,\n",
      "          'tended': 1,\n",
      "          'bit': 1,\n",
      "          'especially': 1,\n",
      "          'start': 1,\n",
      "          'keep': 1,\n",
      "          'jumping': 1,\n",
      "          'around': 1,\n",
      "          'past': 1,\n",
      "          'obviously': 1,\n",
      "          'took': 1,\n",
      "          'awhile': 1,\n",
      "          'get': 1,\n",
      "          'grasp': 1,\n",
      "          'things': 1,\n",
      "          'nalso': 1,\n",
      "          'notable': 1,\n",
      "          'superb': 1,\n",
      "          'direction': 1,\n",
      "          'nid': 1,\n",
      "          'say': 1,\n",
      "          'finest': 1,\n",
      "          'achievement': 1,\n",
      "          'date': 1,\n",
      "          'quite': 1,\n",
      "          'frankly': 1,\n",
      "          'ive': 1,\n",
      "          'found': 1,\n",
      "          'par': 1,\n",
      "          'nwhen': 1,\n",
      "          'ends': 1,\n",
      "          'leaves': 1,\n",
      "          'viewers': 1,\n",
      "          'saddened': 1,\n",
      "          'provoked': 1,\n",
      "          'nonetheless': 1,\n",
      "          'one': 1,\n",
      "          '99': 1,\n",
      "          'acting': 1,\n",
      "          'notably': 1,\n",
      "          'nnot': 1,\n",
      "          'goers': 1,\n",
      "          'buffs': 1,\n",
      "          'want': 1,\n",
      "          'something': 1,\n",
      "          'value': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'titanic': 9,\n",
      "          'film': 8,\n",
      "          'movie': 5,\n",
      "          'nthe': 5,\n",
      "          'diamond': 5,\n",
      "          'nits': 4,\n",
      "          'true': 4,\n",
      "          'rose': 4,\n",
      "          'jack': 4,\n",
      "          'love': 4,\n",
      "          'seen': 3,\n",
      "          'truly': 3,\n",
      "          'picture': 3,\n",
      "          'hour': 3,\n",
      "          'said': 3,\n",
      "          'doesnt': 3,\n",
      "          'didnt': 3,\n",
      "          'nof': 3,\n",
      "          'course': 3,\n",
      "          'cameron': 3,\n",
      "          'bill': 3,\n",
      "          'would': 3,\n",
      "          'young': 3,\n",
      "          'named': 3,\n",
      "          'cal': 3,\n",
      "          'dawson': 3,\n",
      "          'story': 3,\n",
      "          'people': 3,\n",
      "          'best': 2,\n",
      "          'year': 2,\n",
      "          'nand': 2,\n",
      "          'old': 2,\n",
      "          'eyes': 2,\n",
      "          'screen': 2,\n",
      "          'watch': 2,\n",
      "          'see': 2,\n",
      "          'despite': 2,\n",
      "          'time': 2,\n",
      "          'friend': 2,\n",
      "          'like': 2,\n",
      "          'want': 2,\n",
      "          'comes': 2,\n",
      "          'one': 2,\n",
      "          'nif': 2,\n",
      "          'terminator': 2,\n",
      "          'bottom': 2,\n",
      "          'paxton': 2,\n",
      "          'woman': 2,\n",
      "          'girl': 2,\n",
      "          'narration': 2,\n",
      "          'us': 2,\n",
      "          'man': 2,\n",
      "          'hockley': 2,\n",
      "          'marry': 2,\n",
      "          'nthey': 2,\n",
      "          'sailing': 2,\n",
      "          'america': 2,\n",
      "          'aboard': 2,\n",
      "          'nfor': 2,\n",
      "          'life': 2,\n",
      "          'first': 2,\n",
      "          'half': 2,\n",
      "          'make': 2,\n",
      "          'help': 2,\n",
      "          'characters': 2,\n",
      "          'nmost': 2,\n",
      "          'back': 2,\n",
      "          'get': 2,\n",
      "          'going': 2,\n",
      "          'part': 2,\n",
      "          'opinion': 2,\n",
      "          'roses': 2,\n",
      "          'dream': 2,\n",
      "          'think': 2,\n",
      "          'without': 1,\n",
      "          'doubt': 1,\n",
      "          'ive': 1,\n",
      "          'believe': 1,\n",
      "          'im': 1,\n",
      "          'easy': 1,\n",
      "          'critic': 1,\n",
      "          'impress': 1,\n",
      "          'english': 1,\n",
      "          'patient': 1,\n",
      "          'long': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'overhyped': 1,\n",
      "          'several': 1,\n",
      "          'big': 1,\n",
      "          'summer': 1,\n",
      "          'releases': 1,\n",
      "          'dead': 1,\n",
      "          'water': 1,\n",
      "          'nthank': 1,\n",
      "          'god': 1,\n",
      "          'got': 1,\n",
      "          'delayed': 1,\n",
      "          'december': 1,\n",
      "          'christmas': 1,\n",
      "          'present': 1,\n",
      "          'ntitanic': 1,\n",
      "          'tradition': 1,\n",
      "          'hollywood': 1,\n",
      "          'epics': 1,\n",
      "          'yearsgoneby': 1,\n",
      "          'stunning': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'completely': 1,\n",
      "          'mesmerized': 1,\n",
      "          'never': 1,\n",
      "          'taking': 1,\n",
      "          'checking': 1,\n",
      "          'much': 1,\n",
      "          'longer': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'last': 1,\n",
      "          '3': 1,\n",
      "          'plus': 1,\n",
      "          'running': 1,\n",
      "          'nas': 1,\n",
      "          'mine': 1,\n",
      "          'whos': 1,\n",
      "          'titanicbuff': 1,\n",
      "          'someone': 1,\n",
      "          'ntruer': 1,\n",
      "          'words': 1,\n",
      "          'hard': 1,\n",
      "          'come': 1,\n",
      "          'hurt': 1,\n",
      "          'favorite': 1,\n",
      "          'directors': 1,\n",
      "          'james': 1,\n",
      "          'unarguably': 1,\n",
      "          'greatest': 1,\n",
      "          'action': 1,\n",
      "          'director': 1,\n",
      "          'wish': 1,\n",
      "          'argue': 1,\n",
      "          'point': 1,\n",
      "          'look': 1,\n",
      "          'list': 1,\n",
      "          'credits': 1,\n",
      "          'aliens': 1,\n",
      "          'abyss': 1,\n",
      "          '2': 1,\n",
      "          'lies': 1,\n",
      "          'etc': 1,\n",
      "          'still': 1,\n",
      "          'care': 1,\n",
      "          'disagree': 1,\n",
      "          'nnot': 1,\n",
      "          'helmed': 1,\n",
      "          'directorial': 1,\n",
      "          'duties': 1,\n",
      "          'also': 1,\n",
      "          'wrote': 1,\n",
      "          'produced': 1,\n",
      "          'edited': 1,\n",
      "          'show': 1,\n",
      "          'faith': 1,\n",
      "          'project': 1,\n",
      "          'renenged': 1,\n",
      "          'directing': 1,\n",
      "          'fees': 1,\n",
      "          'percentage': 1,\n",
      "          'points': 1,\n",
      "          'ease': 1,\n",
      "          'budget': 1,\n",
      "          'costs': 1,\n",
      "          'obvious': 1,\n",
      "          'loves': 1,\n",
      "          'opens': 1,\n",
      "          'footage': 1,\n",
      "          'real': 1,\n",
      "          'fake': 1,\n",
      "          'underwater': 1,\n",
      "          'excursion': 1,\n",
      "          'special': 1,\n",
      "          'submarines': 1,\n",
      "          'atlantic': 1,\n",
      "          'team': 1,\n",
      "          'explorers': 1,\n",
      "          'lead': 1,\n",
      "          'searcing': 1,\n",
      "          'called': 1,\n",
      "          'heart': 1,\n",
      "          'ocean': 1,\n",
      "          'according': 1,\n",
      "          'paxtons': 1,\n",
      "          'character': 1,\n",
      "          'worth': 1,\n",
      "          'hope': 1,\n",
      "          'today': 1,\n",
      "          'ntheir': 1,\n",
      "          'search': 1,\n",
      "          'turns': 1,\n",
      "          'dissapointly': 1,\n",
      "          'instead': 1,\n",
      "          'drawing': 1,\n",
      "          'wearing': 1,\n",
      "          'nthis': 1,\n",
      "          'broadcast': 1,\n",
      "          'cnn': 1,\n",
      "          '101': 1,\n",
      "          'claims': 1,\n",
      "          'nshe': 1,\n",
      "          'flown': 1,\n",
      "          'sea': 1,\n",
      "          'meet': 1,\n",
      "          'tell': 1,\n",
      "          'nalmost': 1,\n",
      "          'rest': 1,\n",
      "          'past': 1,\n",
      "          'nroses': 1,\n",
      "          'shows': 1,\n",
      "          'unhappy': 1,\n",
      "          'engaged': 1,\n",
      "          'rich': 1,\n",
      "          'billy': 1,\n",
      "          'zane': 1,\n",
      "          'nher': 1,\n",
      "          'mother': 1,\n",
      "          'pushy': 1,\n",
      "          'obnoxious': 1,\n",
      "          'arrogant': 1,\n",
      "          'boarding': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'italian': 1,\n",
      "          'danny': 1,\n",
      "          'nucci': 1,\n",
      "          'win': 1,\n",
      "          'two': 1,\n",
      "          '3rd': 1,\n",
      "          'class': 1,\n",
      "          'tickets': 1,\n",
      "          'poker': 1,\n",
      "          'game': 1,\n",
      "          'overjoyed': 1,\n",
      "          'rush': 1,\n",
      "          'boat': 1,\n",
      "          'leaving': 1,\n",
      "          'ticket': 1,\n",
      "          'better': 1,\n",
      "          'doom': 1,\n",
      "          'tells': 1,\n",
      "          'dewitt': 1,\n",
      "          'kate': 1,\n",
      "          'winslet': 1,\n",
      "          'fall': 1,\n",
      "          'classic': 1,\n",
      "          'wrongsideofthetracks': 1,\n",
      "          'sometimes': 1,\n",
      "          'resort': 1,\n",
      "          'cliches': 1,\n",
      "          'nbut': 1,\n",
      "          'portion': 1,\n",
      "          'isnt': 1,\n",
      "          'sappy': 1,\n",
      "          'weigh': 1,\n",
      "          'critics': 1,\n",
      "          'sweet': 1,\n",
      "          'restless': 1,\n",
      "          'fact': 1,\n",
      "          'usually': 1,\n",
      "          'hate': 1,\n",
      "          'stories': 1,\n",
      "          'might': 1,\n",
      "          'introduces': 1,\n",
      "          'pretty': 1,\n",
      "          'interesting': 1,\n",
      "          'keep': 1,\n",
      "          'glued': 1,\n",
      "          'actually': 1,\n",
      "          'passengers': 1,\n",
      "          '1912': 1,\n",
      "          'including': 1,\n",
      "          'enigmatic': 1,\n",
      "          'molly': 1,\n",
      "          'brown': 1,\n",
      "          'played': 1,\n",
      "          'talented': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'captain': 1,\n",
      "          'bernard': 1,\n",
      "          'hill': 1,\n",
      "          'nall': 1,\n",
      "          'add': 1,\n",
      "          'extra': 1,\n",
      "          'depth': 1,\n",
      "          'easier': 1,\n",
      "          'things': 1,\n",
      "          'really': 1,\n",
      "          'start': 1,\n",
      "          'mark': 1,\n",
      "          'strikes': 1,\n",
      "          'iceberg': 1,\n",
      "          'begins': 1,\n",
      "          'slow': 1,\n",
      "          'sink': 1,\n",
      "          'sinking': 1,\n",
      "          'depicted': 1,\n",
      "          'realisticly': 1,\n",
      "          'effects': 1,\n",
      "          'amazing': 1,\n",
      "          'nit': 1,\n",
      "          'told': 1,\n",
      "          'heroic': 1,\n",
      "          'fashion': 1,\n",
      "          'sense': 1,\n",
      "          'either': 1,\n",
      "          'portrayed': 1,\n",
      "          'panicking': 1,\n",
      "          'pushing': 1,\n",
      "          'others': 1,\n",
      "          'aside': 1,\n",
      "          'limited': 1,\n",
      "          'lifeboats': 1,\n",
      "          'drowning': 1,\n",
      "          'dying': 1,\n",
      "          'horrible': 1,\n",
      "          'deaths': 1,\n",
      "          'end': 1,\n",
      "          'flash': 1,\n",
      "          'future': 1,\n",
      "          'crew': 1,\n",
      "          'skeptical': 1,\n",
      "          'totally': 1,\n",
      "          'aborbed': 1,\n",
      "          'nrose': 1,\n",
      "          'goes': 1,\n",
      "          'onto': 1,\n",
      "          'ships': 1,\n",
      "          'ledge': 1,\n",
      "          'learn': 1,\n",
      "          'secret': 1,\n",
      "          'catches': 1,\n",
      "          'guard': 1,\n",
      "          'nwe': 1,\n",
      "          'returns': 1,\n",
      "          'dancing': 1,\n",
      "          'talked': 1,\n",
      "          'saw': 1,\n",
      "          'nhowever': 1,\n",
      "          'symbolized': 1,\n",
      "          'meant': 1,\n",
      "          'died': 1,\n",
      "          'sort': 1,\n",
      "          'heaven': 1,\n",
      "          'happiest': 1,\n",
      "          'anyone': 1,\n",
      "          'voice': 1,\n",
      "          'email': 1,\n",
      "          'venom8hotmail': 1,\n",
      "          'com': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'truman': 17,\n",
      "          'film': 6,\n",
      "          'cams': 6,\n",
      "          'nthe': 5,\n",
      "          'wife': 5,\n",
      "          'show': 4,\n",
      "          'nbut': 4,\n",
      "          'best': 4,\n",
      "          'town': 4,\n",
      "          'marlon': 4,\n",
      "          'us': 4,\n",
      "          'picture': 3,\n",
      "          'good': 3,\n",
      "          'carrey': 3,\n",
      "          'sky': 3,\n",
      "          'world': 3,\n",
      "          'weir': 3,\n",
      "          'watching': 3,\n",
      "          'christof': 3,\n",
      "          'reality': 3,\n",
      "          'enjoy': 2,\n",
      "          'latest': 2,\n",
      "          'take': 2,\n",
      "          'may': 2,\n",
      "          'say': 2,\n",
      "          'id': 2,\n",
      "          'really': 2,\n",
      "          'seems': 2,\n",
      "          'side': 2,\n",
      "          'jim': 2,\n",
      "          'however': 2,\n",
      "          'ncarrey': 2,\n",
      "          'burbank': 2,\n",
      "          'perfect': 2,\n",
      "          'small': 2,\n",
      "          'would': 2,\n",
      "          'nthere': 2,\n",
      "          'life': 2,\n",
      "          'work': 2,\n",
      "          'nthis': 2,\n",
      "          'worlds': 2,\n",
      "          'soundstage': 2,\n",
      "          '000': 2,\n",
      "          'television': 2,\n",
      "          'nwhat': 2,\n",
      "          'magical': 2,\n",
      "          'second': 2,\n",
      "          'manmade': 2,\n",
      "          'camera': 2,\n",
      "          'creator': 2,\n",
      "          'nhis': 2,\n",
      "          'always': 2,\n",
      "          'nhe': 2,\n",
      "          'people': 2,\n",
      "          'way': 2,\n",
      "          'sincerity': 2,\n",
      "          'much': 2,\n",
      "          'doubted': 2,\n",
      "          'credit': 2,\n",
      "          'jimmy': 2,\n",
      "          'stewart': 2,\n",
      "          'sometimes': 1,\n",
      "          'tip': 1,\n",
      "          'hat': 1,\n",
      "          'nsometimes': 1,\n",
      "          'jump': 1,\n",
      "          'bandwagon': 1,\n",
      "          'ride': 1,\n",
      "          'ni': 1,\n",
      "          'saw': 1,\n",
      "          'audience': 1,\n",
      "          'full': 1,\n",
      "          'teenagers': 1,\n",
      "          'doubt': 1,\n",
      "          'drawn': 1,\n",
      "          'ace': 1,\n",
      "          'ventura': 1,\n",
      "          'hoping': 1,\n",
      "          'see': 1,\n",
      "          'fart': 1,\n",
      "          'jokes': 1,\n",
      "          'nsurprised': 1,\n",
      "          'realized': 1,\n",
      "          'actually': 1,\n",
      "          'something': 1,\n",
      "          'attentiveness': 1,\n",
      "          'crowd': 1,\n",
      "          'cant': 1,\n",
      "          'tell': 1,\n",
      "          'yet': 1,\n",
      "          'comparison': 1,\n",
      "          'awful': 1,\n",
      "          'mountain': 1,\n",
      "          'crap': 1,\n",
      "          'spewed': 1,\n",
      "          'forth': 1,\n",
      "          'bowls': 1,\n",
      "          'hollywood': 1,\n",
      "          'far': 1,\n",
      "          'year': 1,\n",
      "          'ntime': 1,\n",
      "          'alone': 1,\n",
      "          'make': 1,\n",
      "          'call': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'end': 1,\n",
      "          'burbanks': 1,\n",
      "          'nwe': 1,\n",
      "          'concerned': 1,\n",
      "          'wellbeing': 1,\n",
      "          'wanted': 1,\n",
      "          'win': 1,\n",
      "          'nthat': 1,\n",
      "          'felt': 1,\n",
      "          'tribute': 1,\n",
      "          'achieved': 1,\n",
      "          'legitimacy': 1,\n",
      "          'last': 1,\n",
      "          'viewed': 1,\n",
      "          'cold': 1,\n",
      "          'little': 1,\n",
      "          'foreknowledge': 1,\n",
      "          'possible': 1,\n",
      "          'plot': 1,\n",
      "          'nunless': 1,\n",
      "          'youre': 1,\n",
      "          'media': 1,\n",
      "          'blackout': 1,\n",
      "          'probably': 1,\n",
      "          'know': 1,\n",
      "          'basics': 1,\n",
      "          'stars': 1,\n",
      "          'capraesque': 1,\n",
      "          'everyman': 1,\n",
      "          'insurance': 1,\n",
      "          'agent': 1,\n",
      "          'living': 1,\n",
      "          'beautiful': 1,\n",
      "          'meryl': 1,\n",
      "          'laura': 1,\n",
      "          'linney': 1,\n",
      "          'south': 1,\n",
      "          'florida': 1,\n",
      "          'island': 1,\n",
      "          'seahaven': 1,\n",
      "          'looks': 1,\n",
      "          'like': 1,\n",
      "          'michael': 1,\n",
      "          'eisners': 1,\n",
      "          'idea': 1,\n",
      "          'american': 1,\n",
      "          'ntruman': 1,\n",
      "          'seem': 1,\n",
      "          'live': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'lifestyle': 1,\n",
      "          'complete': 1,\n",
      "          'working': 1,\n",
      "          'bud': 1,\n",
      "          'friendly': 1,\n",
      "          'neighbors': 1,\n",
      "          'interesting': 1,\n",
      "          'coworkers': 1,\n",
      "          'tragedy': 1,\n",
      "          'past': 1,\n",
      "          'father': 1,\n",
      "          'drowned': 1,\n",
      "          'horrible': 1,\n",
      "          'boating': 1,\n",
      "          'accident': 1,\n",
      "          'leaving': 1,\n",
      "          'dreadful': 1,\n",
      "          'fear': 1,\n",
      "          'water': 1,\n",
      "          'travel': 1,\n",
      "          'general': 1,\n",
      "          'overall': 1,\n",
      "          'one': 1,\n",
      "          'day': 1,\n",
      "          'leaves': 1,\n",
      "          'house': 1,\n",
      "          'klieg': 1,\n",
      "          'light': 1,\n",
      "          'falls': 1,\n",
      "          'magically': 1,\n",
      "          'curious': 1,\n",
      "          'event': 1,\n",
      "          'lead': 1,\n",
      "          'discover': 1,\n",
      "          'rest': 1,\n",
      "          'already': 1,\n",
      "          'knows': 1,\n",
      "          'prisoner': 1,\n",
      "          'biggest': 1,\n",
      "          'friends': 1,\n",
      "          'relatives': 1,\n",
      "          'actors': 1,\n",
      "          'paid': 1,\n",
      "          'interact': 1,\n",
      "          '10': 1,\n",
      "          'days': 1,\n",
      "          'broadcast': 1,\n",
      "          'popular': 1,\n",
      "          'program': 1,\n",
      "          'makes': 1,\n",
      "          'first': 1,\n",
      "          'hour': 1,\n",
      "          'enjoyable': 1,\n",
      "          'watch': 1,\n",
      "          'verisimilitude': 1,\n",
      "          'painstakingly': 1,\n",
      "          'constructed': 1,\n",
      "          'niccol': 1,\n",
      "          'told': 1,\n",
      "          'structure': 1,\n",
      "          'visible': 1,\n",
      "          'space': 1,\n",
      "          'ntrumans': 1,\n",
      "          'movements': 1,\n",
      "          'tracked': 1,\n",
      "          'ceaselessly': 1,\n",
      "          '5': 1,\n",
      "          'cameras': 1,\n",
      "          'scattered': 1,\n",
      "          'throughout': 1,\n",
      "          'button': 1,\n",
      "          'dashboard': 1,\n",
      "          'mirror': 1,\n",
      "          'big': 1,\n",
      "          'nweir': 1,\n",
      "          'cuts': 1,\n",
      "          'never': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'director': 1,\n",
      "          'shows': 1,\n",
      "          'omnipotent': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'oversees': 1,\n",
      "          'control': 1,\n",
      "          'room': 1,\n",
      "          'built': 1,\n",
      "          'moon': 1,\n",
      "          'seahavens': 1,\n",
      "          'act': 1,\n",
      "          'offers': 1,\n",
      "          'plethora': 1,\n",
      "          'clues': 1,\n",
      "          'truth': 1,\n",
      "          'existence': 1,\n",
      "          'friend': 1,\n",
      "          'noah': 1,\n",
      "          'emmerich': 1,\n",
      "          'six': 1,\n",
      "          'pack': 1,\n",
      "          'beer': 1,\n",
      "          'exist': 1,\n",
      "          'eternal': 1,\n",
      "          'commercial': 1,\n",
      "          'endorsing': 1,\n",
      "          'hot': 1,\n",
      "          'household': 1,\n",
      "          'product': 1,\n",
      "          'sees': 1,\n",
      "          'walking': 1,\n",
      "          'set': 1,\n",
      "          'patterns': 1,\n",
      "          'none': 1,\n",
      "          'wonders': 1,\n",
      "          'didnt': 1,\n",
      "          'pick': 1,\n",
      "          'earlier': 1,\n",
      "          'answer': 1,\n",
      "          'tend': 1,\n",
      "          'accept': 1,\n",
      "          'theyre': 1,\n",
      "          'presented': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'begins': 1,\n",
      "          'grow': 1,\n",
      "          'restless': 1,\n",
      "          'dreams': 1,\n",
      "          'escape': 1,\n",
      "          'fiji': 1,\n",
      "          'old': 1,\n",
      "          'college': 1,\n",
      "          'sweetheart': 1,\n",
      "          'natasha': 1,\n",
      "          'mcelhone': 1,\n",
      "          'supposedly': 1,\n",
      "          'lives': 1,\n",
      "          'convincing': 1,\n",
      "          'progenitor': 1,\n",
      "          'provocative': 1,\n",
      "          'concept': 1,\n",
      "          'thing': 1,\n",
      "          'stay': 1,\n",
      "          'nby': 1,\n",
      "          'underplaying': 1,\n",
      "          'allows': 1,\n",
      "          'subtle': 1,\n",
      "          'manipulations': 1,\n",
      "          'particularly': 1,\n",
      "          'poignant': 1,\n",
      "          'scene': 1,\n",
      "          'confides': 1,\n",
      "          'fears': 1,\n",
      "          'answers': 1,\n",
      "          'bestfriend': 1,\n",
      "          'gladly': 1,\n",
      "          'step': 1,\n",
      "          'front': 1,\n",
      "          'bus': 1,\n",
      "          'line': 1,\n",
      "          'fed': 1,\n",
      "          'earpiece': 1,\n",
      "          'abject': 1,\n",
      "          'cruelty': 1,\n",
      "          'subjected': 1,\n",
      "          'hits': 1,\n",
      "          'home': 1,\n",
      "          'moment': 1,\n",
      "          'derives': 1,\n",
      "          'success': 1,\n",
      "          'playing': 1,\n",
      "          'secret': 1,\n",
      "          'paranoid': 1,\n",
      "          'fantasies': 1,\n",
      "          'havent': 1,\n",
      "          'least': 1,\n",
      "          'place': 1,\n",
      "          'closest': 1,\n",
      "          'nultimately': 1,\n",
      "          'rises': 1,\n",
      "          'artifice': 1,\n",
      "          'raise': 1,\n",
      "          'real': 1,\n",
      "          'questions': 1,\n",
      "          'relationship': 1,\n",
      "          'humankind': 1,\n",
      "          'god': 1,\n",
      "          'think': 1,\n",
      "          'ndoes': 1,\n",
      "          'resent': 1,\n",
      "          'abandonment': 1,\n",
      "          'paradise': 1,\n",
      "          'nwho': 1,\n",
      "          'exactly': 1,\n",
      "          'nif': 1,\n",
      "          'allowing': 1,\n",
      "          'magic': 1,\n",
      "          'screenplay': 1,\n",
      "          'nas': 1,\n",
      "          'well': 1,\n",
      "          'kind': 1,\n",
      "          'role': 1,\n",
      "          'born': 1,\n",
      "          'play': 1,\n",
      "          'doesnt': 1,\n",
      "          'try': 1,\n",
      "          'tries': 1,\n",
      "          'feel': 1,\n",
      "          'suddenly': 1,\n",
      "          'found': 1,\n",
      "          'whole': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'n': 5,\n",
      "          'homosexuality': 5,\n",
      "          'trailer': 5,\n",
      "          'mpaa': 4,\n",
      "          'gay': 4,\n",
      "          'see': 4,\n",
      "          'someone': 4,\n",
      "          'r': 3,\n",
      "          'rated': 3,\n",
      "          'closet': 3,\n",
      "          'lesbian': 3,\n",
      "          'time': 3,\n",
      "          'seen': 3,\n",
      "          'times': 3,\n",
      "          'could': 3,\n",
      "          'one': 3,\n",
      "          'dont': 3,\n",
      "          'america': 2,\n",
      "          'decide': 2,\n",
      "          'ask': 2,\n",
      "          'preview': 2,\n",
      "          'make': 2,\n",
      "          'sense': 2,\n",
      "          'let': 2,\n",
      "          'celluloid': 2,\n",
      "          'documentary': 2,\n",
      "          'past': 2,\n",
      "          'nit': 2,\n",
      "          'watch': 2,\n",
      "          'audiences': 2,\n",
      "          'feel': 2,\n",
      "          'seems': 2,\n",
      "          'nthe': 2,\n",
      "          'good': 2,\n",
      "          'sex': 2,\n",
      "          'knowing': 2,\n",
      "          'things': 2,\n",
      "          'whether': 2,\n",
      "          'nbut': 2,\n",
      "          'nnow': 2,\n",
      "          'film': 2,\n",
      "          'violence': 2,\n",
      "          'would': 2,\n",
      "          'words': 2,\n",
      "          'scene': 2,\n",
      "          'nwhen': 2,\n",
      "          'rating': 2,\n",
      "          'handbook': 2,\n",
      "          'contain': 2,\n",
      "          'lesbianism': 2,\n",
      "          'ive': 2,\n",
      "          'well': 2,\n",
      "          'trained': 2,\n",
      "          'nin': 2,\n",
      "          'made': 2,\n",
      "          'ni': 2,\n",
      "          'like': 2,\n",
      "          'suggest': 2,\n",
      "          'light': 2,\n",
      "          'straight': 2,\n",
      "          'people': 2,\n",
      "          'point': 2,\n",
      "          'go': 2,\n",
      "          'nlet': 2,\n",
      "          'reflect': 2,\n",
      "          'content': 2,\n",
      "          'id': 2,\n",
      "          'didnt': 1,\n",
      "          'realize': 1,\n",
      "          'apt': 1,\n",
      "          'name': 1,\n",
      "          'called': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'association': 1,\n",
      "          'folks': 1,\n",
      "          'whats': 1,\n",
      "          'g': 1,\n",
      "          'nc': 1,\n",
      "          '17': 1,\n",
      "          'pg': 1,\n",
      "          'x': 1,\n",
      "          'response': 1,\n",
      "          'tell': 1,\n",
      "          'portrayed': 1,\n",
      "          'movies': 1,\n",
      "          'several': 1,\n",
      "          'decades': 1,\n",
      "          'nits': 1,\n",
      "          'brilliant': 1,\n",
      "          'funny': 1,\n",
      "          'naughty': 1,\n",
      "          'extremely': 1,\n",
      "          'poignant': 1,\n",
      "          'tore': 1,\n",
      "          'heart': 1,\n",
      "          'gifted': 1,\n",
      "          'screenwriter': 1,\n",
      "          'explain': 1,\n",
      "          'rule': 1,\n",
      "          'hunger': 1,\n",
      "          'hint': 1,\n",
      "          'screen': 1,\n",
      "          'nregardless': 1,\n",
      "          'veiled': 1,\n",
      "          'sordid': 1,\n",
      "          'presence': 1,\n",
      "          'person': 1,\n",
      "          'allows': 1,\n",
      "          'others': 1,\n",
      "          'lessen': 1,\n",
      "          'isolation': 1,\n",
      "          'makes': 1,\n",
      "          'theyre': 1,\n",
      "          'quite': 1,\n",
      "          'invisible': 1,\n",
      "          'want': 1,\n",
      "          'reason': 1,\n",
      "          'contains': 1,\n",
      "          'scenes': 1,\n",
      "          'bloody': 1,\n",
      "          'violent': 1,\n",
      "          'bashing': 1,\n",
      "          'graphic': 1,\n",
      "          'uninhibited': 1,\n",
      "          'nas': 1,\n",
      "          'appreciate': 1,\n",
      "          'ahead': 1,\n",
      "          'friend': 1,\n",
      "          'date': 1,\n",
      "          '11': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'niece': 1,\n",
      "          'alone': 1,\n",
      "          'thats': 1,\n",
      "          'back': 1,\n",
      "          'nprior': 1,\n",
      "          'theatrically': 1,\n",
      "          'released': 1,\n",
      "          'originally': 1,\n",
      "          'filmed': 1,\n",
      "          'hbo': 1,\n",
      "          'coming': 1,\n",
      "          'attractions': 1,\n",
      "          'least': 1,\n",
      "          'six': 1,\n",
      "          'nthere': 1,\n",
      "          'nudity': 1,\n",
      "          'bad': 1,\n",
      "          'language': 1,\n",
      "          'nothing': 1,\n",
      "          'offensive': 1,\n",
      "          'inappropriate': 1,\n",
      "          'general': 1,\n",
      "          'audience': 1,\n",
      "          'okay': 1,\n",
      "          'whoopi': 1,\n",
      "          'goldberg': 1,\n",
      "          'refer': 1,\n",
      "          'boning': 1,\n",
      "          'last': 1,\n",
      "          'knew': 1,\n",
      "          'wasnt': 1,\n",
      "          'seven': 1,\n",
      "          'cant': 1,\n",
      "          'say': 1,\n",
      "          'tv': 1,\n",
      "          'nexcept': 1,\n",
      "          'two': 1,\n",
      "          'fully': 1,\n",
      "          'clothed': 1,\n",
      "          'men': 1,\n",
      "          'kissing': 1,\n",
      "          'nhmmmmm': 1,\n",
      "          'inquired': 1,\n",
      "          'nice': 1,\n",
      "          'woman': 1,\n",
      "          'quoted': 1,\n",
      "          'approved': 1,\n",
      "          'going': 1,\n",
      "          'nhello': 1,\n",
      "          'office': 1,\n",
      "          'middle': 1,\n",
      "          'day': 1,\n",
      "          'nbravely': 1,\n",
      "          'pursued': 1,\n",
      "          'oh': 1,\n",
      "          'nprobably': 1,\n",
      "          'half': 1,\n",
      "          'dozen': 1,\n",
      "          'gulped': 1,\n",
      "          'remember': 1,\n",
      "          'chirped': 1,\n",
      "          'nour': 1,\n",
      "          'little': 1,\n",
      "          'eyes': 1,\n",
      "          'nno': 1,\n",
      "          'really': 1,\n",
      "          'dave': 1,\n",
      "          'barry': 1,\n",
      "          'making': 1,\n",
      "          'nthey': 1,\n",
      "          'shocked': 1,\n",
      "          'first': 1,\n",
      "          'note': 1,\n",
      "          'carefully': 1,\n",
      "          'following': 1,\n",
      "          'five': 1,\n",
      "          'managed': 1,\n",
      "          'slip': 1,\n",
      "          'ngosh': 1,\n",
      "          'certainly': 1,\n",
      "          'mean': 1,\n",
      "          'question': 1,\n",
      "          'however': 1,\n",
      "          'nand': 1,\n",
      "          'aint': 1,\n",
      "          'handful': 1,\n",
      "          'involved': 1,\n",
      "          'primarily': 1,\n",
      "          'weekly': 1,\n",
      "          'bible': 1,\n",
      "          'study': 1,\n",
      "          'email': 1,\n",
      "          'ill': 1,\n",
      "          'give': 1,\n",
      "          'details': 1,\n",
      "          'none': 1,\n",
      "          'big': 1,\n",
      "          'surprise': 1,\n",
      "          'even': 1,\n",
      "          'politically': 1,\n",
      "          'correct': 1,\n",
      "          '90s': 1,\n",
      "          'ridiculously': 1,\n",
      "          'perceived': 1,\n",
      "          'threat': 1,\n",
      "          'mostly': 1,\n",
      "          'heterosexual': 1,\n",
      "          'society': 1,\n",
      "          'na': 1,\n",
      "          'candid': 1,\n",
      "          'honest': 1,\n",
      "          'mpaas': 1,\n",
      "          'ruling': 1,\n",
      "          'must': 1,\n",
      "          'defined': 1,\n",
      "          'particularly': 1,\n",
      "          'sexual': 1,\n",
      "          'nonsexual': 1,\n",
      "          'watched': 1,\n",
      "          'trailers': 1,\n",
      "          'need': 1,\n",
      "          'obvious': 1,\n",
      "          'nill': 1,\n",
      "          'instead': 1,\n",
      "          'reevaluated': 1,\n",
      "          'evaluation': 1,\n",
      "          'criteria': 1,\n",
      "          'ratings': 1,\n",
      "          'subject': 1,\n",
      "          'attitude': 1,\n",
      "          'future': 1,\n",
      "          'interested': 1,\n",
      "          'disrespectful': 1,\n",
      "          'stereotyped': 1,\n",
      "          'nthen': 1,\n",
      "          'truly': 1,\n",
      "          'able': 1,\n",
      "          'informed': 1,\n",
      "          'decision': 1,\n",
      "          'spent': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'film': 7,\n",
      "          'patlabor': 7,\n",
      "          'series': 7,\n",
      "          'labors': 7,\n",
      "          'nas': 6,\n",
      "          'movie': 6,\n",
      "          'story': 5,\n",
      "          'new': 5,\n",
      "          'nthis': 5,\n",
      "          'though': 4,\n",
      "          'animated': 4,\n",
      "          '_ghost': 4,\n",
      "          'shell_': 4,\n",
      "          'japan': 4,\n",
      "          'characters': 4,\n",
      "          'labor': 4,\n",
      "          'action': 4,\n",
      "          'animation': 3,\n",
      "          'many': 3,\n",
      "          'two': 3,\n",
      "          'ever': 3,\n",
      "          'giant': 3,\n",
      "          'robot': 3,\n",
      "          'come': 3,\n",
      "          'special': 3,\n",
      "          'vehicle': 3,\n",
      "          'around': 3,\n",
      "          'sv2': 3,\n",
      "          'almost': 3,\n",
      "          'hos': 3,\n",
      "          'go': 3,\n",
      "          'movie_': 3,\n",
      "          'part': 3,\n",
      "          'setting': 3,\n",
      "          'far': 3,\n",
      "          'used': 3,\n",
      "          'rated': 2,\n",
      "          'oshii': 2,\n",
      "          'audiences': 2,\n",
      "          'perhaps': 2,\n",
      "          'japanese': 2,\n",
      "          'known': 2,\n",
      "          'among': 2,\n",
      "          'fans': 2,\n",
      "          'anime': 2,\n",
      "          'films': 2,\n",
      "          'deep': 2,\n",
      "          'first': 2,\n",
      "          'novels': 2,\n",
      "          'different': 2,\n",
      "          'oavs': 2,\n",
      "          'short': 2,\n",
      "          'television': 2,\n",
      "          'running': 2,\n",
      "          'one': 2,\n",
      "          'near': 2,\n",
      "          'future': 2,\n",
      "          'features': 2,\n",
      "          'whole': 2,\n",
      "          'robots': 2,\n",
      "          'interesting': 2,\n",
      "          'however': 2,\n",
      "          'crime': 2,\n",
      "          'patrol': 2,\n",
      "          'centers': 2,\n",
      "          'deadly': 2,\n",
      "          'serious': 2,\n",
      "          'may': 2,\n",
      "          'find': 2,\n",
      "          'slightly': 2,\n",
      "          'much': 2,\n",
      "          'project': 2,\n",
      "          'tokyo': 2,\n",
      "          'notably': 2,\n",
      "          'case': 2,\n",
      "          'heavy': 2,\n",
      "          'industries': 2,\n",
      "          'operating': 2,\n",
      "          'system': 2,\n",
      "          'including': 2,\n",
      "          'shinohara': 2,\n",
      "          'movies': 2,\n",
      "          'make': 2,\n",
      "          'old': 2,\n",
      "          'similar': 2,\n",
      "          'sequences': 2,\n",
      "          'large': 2,\n",
      "          'ive': 2,\n",
      "          'seen': 2,\n",
      "          'clear': 2,\n",
      "          'storyline': 2,\n",
      "          'cinematography': 2,\n",
      "          '_patlabor': 2,\n",
      "          'dont': 2,\n",
      "          'side': 2,\n",
      "          'screen': 2,\n",
      "          'subtitles': 2,\n",
      "          'enough': 2,\n",
      "          'nalthough': 2,\n",
      "          '118': 1,\n",
      "          'minutes': 1,\n",
      "          'suspect': 1,\n",
      "          'would': 1,\n",
      "          'pg': 1,\n",
      "          'adult': 1,\n",
      "          'themes': 1,\n",
      "          'language': 1,\n",
      "          'nmamoru': 1,\n",
      "          'name': 1,\n",
      "          'probably': 1,\n",
      "          'isnt': 1,\n",
      "          'wellknown': 1,\n",
      "          'american': 1,\n",
      "          'noshii': 1,\n",
      "          'director': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'bestknown': 1,\n",
      "          'import': 1,\n",
      "          'making': 1,\n",
      "          'philosophical': 1,\n",
      "          'bent': 1,\n",
      "          'none': 1,\n",
      "          'theatrical': 1,\n",
      "          'venture': 1,\n",
      "          'nin': 1,\n",
      "          'incarnationsgraphic': 1,\n",
      "          'manga': 1,\n",
      "          'runs': 1,\n",
      "          'madeforvideo': 1,\n",
      "          'episodes': 1,\n",
      "          'original': 1,\n",
      "          'videos': 1,\n",
      "          'nearly': 1,\n",
      "          'fifty': 1,\n",
      "          'episodespatlabor': 1,\n",
      "          'proven': 1,\n",
      "          'popular': 1,\n",
      "          'nset': 1,\n",
      "          'somewhat': 1,\n",
      "          'farther': 1,\n",
      "          'away': 1,\n",
      "          'conceived': 1,\n",
      "          'atypical': 1,\n",
      "          'rather': 1,\n",
      "          'machinery': 1,\n",
      "          'primary': 1,\n",
      "          'focus': 1,\n",
      "          'exciting': 1,\n",
      "          'time': 1,\n",
      "          'prologue': 1,\n",
      "          'episode': 1,\n",
      "          'explains': 1,\n",
      "          'industrial': 1,\n",
      "          'play': 1,\n",
      "          'words': 1,\n",
      "          'considering': 1,\n",
      "          'derived': 1,\n",
      "          'czech': 1,\n",
      "          'word': 1,\n",
      "          'widespread': 1,\n",
      "          'use': 1,\n",
      "          'toward': 1,\n",
      "          'close': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'nwith': 1,\n",
      "          'rise': 1,\n",
      "          'menacelabor': 1,\n",
      "          'led': 1,\n",
      "          'creation': 1,\n",
      "          'divisions': 1,\n",
      "          'using': 1,\n",
      "          'fight': 1,\n",
      "          'second': 1,\n",
      "          'division': 1,\n",
      "          'fault': 1,\n",
      "          'acquired': 1,\n",
      "          'bad': 1,\n",
      "          'reputation': 1,\n",
      "          'destructiveness': 1,\n",
      "          'nsometimes': 1,\n",
      "          'utterly': 1,\n",
      "          'hilarious': 1,\n",
      "          'sometimes': 1,\n",
      "          'explores': 1,\n",
      "          'interpersonal': 1,\n",
      "          'relationships': 1,\n",
      "          'crewmembers': 1,\n",
      "          'also': 1,\n",
      "          'looks': 1,\n",
      "          'effects': 1,\n",
      "          'technology': 1,\n",
      "          'modern': 1,\n",
      "          'life': 1,\n",
      "          'nthose': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'confused': 1,\n",
      "          'coming': 1,\n",
      "          'although': 1,\n",
      "          'ample': 1,\n",
      "          'background': 1,\n",
      "          'exposition': 1,\n",
      "          'provided': 1,\n",
      "          'viewers': 1,\n",
      "          'controversial': 1,\n",
      "          'babylon': 1,\n",
      "          'gigantic': 1,\n",
      "          'seawall': 1,\n",
      "          'completion': 1,\n",
      "          'allow': 1,\n",
      "          'reclamation': 1,\n",
      "          'thousands': 1,\n",
      "          'square': 1,\n",
      "          'miles': 1,\n",
      "          'land': 1,\n",
      "          'bay': 1,\n",
      "          'constant': 1,\n",
      "          'target': 1,\n",
      "          'environmentalist': 1,\n",
      "          'terrorists': 1,\n",
      "          'house': 1,\n",
      "          'sea': 1,\n",
      "          'organization': 1,\n",
      "          'nhowever': 1,\n",
      "          'threat': 1,\n",
      "          'comes': 1,\n",
      "          'terrorist': 1,\n",
      "          'someone': 1,\n",
      "          'already': 1,\n",
      "          'dead': 1,\n",
      "          'nshinohara': 1,\n",
      "          'premier': 1,\n",
      "          'manufacturer': 1,\n",
      "          'world': 1,\n",
      "          'increases': 1,\n",
      "          'movement': 1,\n",
      "          'speed': 1,\n",
      "          'efficiency': 1,\n",
      "          '30': 1,\n",
      "          'hyper': 1,\n",
      "          'quickly': 1,\n",
      "          'installed': 1,\n",
      "          'well': 1,\n",
      "          '90': 1,\n",
      "          'nations': 1,\n",
      "          'nsince': 1,\n",
      "          'installation': 1,\n",
      "          'dozens': 1,\n",
      "          'heavilyarmed': 1,\n",
      "          'military': 1,\n",
      "          'model': 1,\n",
      "          'begun': 1,\n",
      "          'berzerk': 1,\n",
      "          'rampages': 1,\n",
      "          'apparent': 1,\n",
      "          'reason': 1,\n",
      "          'factor': 1,\n",
      "          'common': 1,\n",
      "          'n': 1,\n",
      "          'wags': 1,\n",
      "          'compared': 1,\n",
      "          'windows': 1,\n",
      "          '95': 1,\n",
      "          'nits': 1,\n",
      "          'asuma': 1,\n",
      "          'command': 1,\n",
      "          'officer': 1,\n",
      "          'son': 1,\n",
      "          'president': 1,\n",
      "          'source': 1,\n",
      "          'problems': 1,\n",
      "          'laborsincluding': 1,\n",
      "          'sv2s': 1,\n",
      "          'ownfall': 1,\n",
      "          'victim': 1,\n",
      "          'drags': 1,\n",
      "          'fathers': 1,\n",
      "          'company': 1,\n",
      "          'want': 1,\n",
      "          'nobrainer': 1,\n",
      "          'actionfest': 1,\n",
      "          'might': 1,\n",
      "          'n_patlabor': 1,\n",
      "          'psychological': 1,\n",
      "          'thriller': 1,\n",
      "          'technological': 1,\n",
      "          'suspense': 1,\n",
      "          'drama': 1,\n",
      "          'nit': 1,\n",
      "          'closer': 1,\n",
      "          'chrichton': 1,\n",
      "          'novel': 1,\n",
      "          'crichton': 1,\n",
      "          'made': 1,\n",
      "          '_into_': 1,\n",
      "          'notwithstanding': 1,\n",
      "          'nthere': 1,\n",
      "          'long': 1,\n",
      "          'thoughtful': 1,\n",
      "          'montages': 1,\n",
      "          'dialogueless': 1,\n",
      "          'footage': 1,\n",
      "          'investigators': 1,\n",
      "          'way': 1,\n",
      "          'slums': 1,\n",
      "          'derelict': 1,\n",
      "          'housing': 1,\n",
      "          'quarters': 1,\n",
      "          'fraught': 1,\n",
      "          'symbolismin': 1,\n",
      "          'fact': 1,\n",
      "          'based': 1,\n",
      "          'christian': 1,\n",
      "          'symbolism': 1,\n",
      "          'npatlabors': 1,\n",
      "          'nearfuture': 1,\n",
      "          'aside': 1,\n",
      "          'tromping': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'uses': 1,\n",
      "          'central': 1,\n",
      "          'point': 1,\n",
      "          'progress': 1,\n",
      "          'moving': 1,\n",
      "          'fast': 1,\n",
      "          'humans': 1,\n",
      "          'keep': 1,\n",
      "          'nare': 1,\n",
      "          'history': 1,\n",
      "          'culture': 1,\n",
      "          'falling': 1,\n",
      "          'wayside': 1,\n",
      "          'like': 1,\n",
      "          'buildings': 1,\n",
      "          'torn': 1,\n",
      "          'replaced': 1,\n",
      "          'question': 1,\n",
      "          'applicable': 1,\n",
      "          'today': 1,\n",
      "          'patlabors': 1,\n",
      "          'alternate1999': 1,\n",
      "          'technical': 1,\n",
      "          'aspects': 1,\n",
      "          'referring': 1,\n",
      "          'subtitled': 1,\n",
      "          'version': 1,\n",
      "          'thats': 1,\n",
      "          'transfer': 1,\n",
      "          'phenomenally': 1,\n",
      "          'quality': 1,\n",
      "          'incredible': 1,\n",
      "          'character': 1,\n",
      "          'design': 1,\n",
      "          'tv': 1,\n",
      "          'cheerful': 1,\n",
      "          'bettersuited': 1,\n",
      "          'humor': 1,\n",
      "          'makes': 1,\n",
      "          'everyone': 1,\n",
      "          'look': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'less': 1,\n",
      "          'cute': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'emphasizes': 1,\n",
      "          'going': 1,\n",
      "          'goes': 1,\n",
      "          'moments': 1,\n",
      "          'ni': 1,\n",
      "          'think': 1,\n",
      "          'recall': 1,\n",
      "          'seeing': 1,\n",
      "          'fisheye': 1,\n",
      "          'perspective': 1,\n",
      "          'save': 1,\n",
      "          'another': 1,\n",
      "          'indeed': 1,\n",
      "          'wellsuited': 1,\n",
      "          'emphasizing': 1,\n",
      "          'needs': 1,\n",
      "          'couple': 1,\n",
      "          'scenes': 1,\n",
      "          'exaggerated': 1,\n",
      "          'anger': 1,\n",
      "          'seem': 1,\n",
      "          'strange': 1,\n",
      "          'western': 1,\n",
      "          'audio': 1,\n",
      "          'track': 1,\n",
      "          'glorious': 1,\n",
      "          'hifi': 1,\n",
      "          'stereo': 1,\n",
      "          'demonstrate': 1,\n",
      "          'home': 1,\n",
      "          'theater': 1,\n",
      "          'systemsit': 1,\n",
      "          '_is_': 1,\n",
      "          'good': 1,\n",
      "          'neven': 1,\n",
      "          'without': 1,\n",
      "          'headphones': 1,\n",
      "          'sounds': 1,\n",
      "          'either': 1,\n",
      "          'clearly': 1,\n",
      "          'heard': 1,\n",
      "          '_come_': 1,\n",
      "          'ngiant': 1,\n",
      "          'footsteps': 1,\n",
      "          'booming': 1,\n",
      "          'sometimesunderstated': 1,\n",
      "          'sometimesblaring': 1,\n",
      "          'score': 1,\n",
      "          'crisp': 1,\n",
      "          'always': 1,\n",
      "          'right': 1,\n",
      "          'mark': 1,\n",
      "          'enhancing': 1,\n",
      "          'moods': 1,\n",
      "          'created': 1,\n",
      "          'scenery': 1,\n",
      "          'say': 1,\n",
      "          'theyre': 1,\n",
      "          'easilyreadable': 1,\n",
      "          '_anything_': 1,\n",
      "          'nlarge': 1,\n",
      "          'strain': 1,\n",
      "          'eyes': 1,\n",
      "          'small': 1,\n",
      "          'conceal': 1,\n",
      "          'several': 1,\n",
      "          'climactic': 1,\n",
      "          'conclusion': 1,\n",
      "          '_patlabor_': 1,\n",
      "          'foremost': 1,\n",
      "          'superblyrealized': 1,\n",
      "          'relies': 1,\n",
      "          'upon': 1,\n",
      "          'prior': 1,\n",
      "          'familiarity': 1,\n",
      "          'carry': 1,\n",
      "          'could': 1,\n",
      "          'detract': 1,\n",
      "          'peoples': 1,\n",
      "          'enjoyment': 1,\n",
      "          'nmy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'beavis': 4,\n",
      "          'butthead': 4,\n",
      "          'show': 4,\n",
      "          'tv': 3,\n",
      "          'wants': 3,\n",
      "          'keep': 3,\n",
      "          'first': 2,\n",
      "          'nif': 2,\n",
      "          'like': 2,\n",
      "          'go': 2,\n",
      "          'see': 2,\n",
      "          'nthe': 2,\n",
      "          'starts': 2,\n",
      "          'nthey': 2,\n",
      "          'find': 2,\n",
      "          'nthis': 2,\n",
      "          'searching': 2,\n",
      "          'think': 2,\n",
      "          'okay': 1,\n",
      "          'let': 1,\n",
      "          'say': 1,\n",
      "          'nhowever': 1,\n",
      "          'recommened': 1,\n",
      "          'get': 1,\n",
      "          'right': 1,\n",
      "          'boys': 1,\n",
      "          'wondering': 1,\n",
      "          'happened': 1,\n",
      "          'notice': 1,\n",
      "          'stolen': 1,\n",
      "          'vow': 1,\n",
      "          'wind': 1,\n",
      "          'way': 1,\n",
      "          'america': 1,\n",
      "          'dallas': 1,\n",
      "          'woman': 1,\n",
      "          'look': 1,\n",
      "          'drunk': 1,\n",
      "          'wife': 1,\n",
      "          'nwell': 1,\n",
      "          'course': 1,\n",
      "          'score': 1,\n",
      "          'actually': 1,\n",
      "          'kill': 1,\n",
      "          'nand': 1,\n",
      "          'fun': 1,\n",
      "          'mix': 1,\n",
      "          'funny': 1,\n",
      "          'gags': 1,\n",
      "          'anly': 1,\n",
      "          'could': 1,\n",
      "          'pull': 1,\n",
      "          'nit': 1,\n",
      "          'quality': 1,\n",
      "          'entertainment': 1,\n",
      "          'fan': 1,\n",
      "          'would': 1,\n",
      "          'enjoy': 1,\n",
      "          'ni': 1,\n",
      "          'enjoyed': 1,\n",
      "          'alot': 1,\n",
      "          'mike': 1,\n",
      "          'judge': 1,\n",
      "          'knew': 1,\n",
      "          'pace': 1,\n",
      "          'neven': 1,\n",
      "          'crawling': 1,\n",
      "          'desert': 1,\n",
      "          'thought': 1,\n",
      "          'started': 1,\n",
      "          'lag': 1,\n",
      "          'manages': 1,\n",
      "          'laughs': 1,\n",
      "          'coming': 1,\n",
      "          'expecting': 1,\n",
      "          'changes': 1,\n",
      "          'looking': 1,\n",
      "          'character': 1,\n",
      "          'voices': 1,\n",
      "          'everything': 1,\n",
      "          'thats': 1,\n",
      "          'makes': 1,\n",
      "          'good': 1,\n",
      "          'nyou': 1,\n",
      "          'might': 1,\n",
      "          'change': 1,\n",
      "          'things': 1,\n",
      "          'noften': 1,\n",
      "          'times': 1,\n",
      "          'spells': 1,\n",
      "          'disaster': 1,\n",
      "          'films': 1,\n",
      "          'film': 1,\n",
      "          'makers': 1,\n",
      "          'veer': 1,\n",
      "          'away': 1,\n",
      "          'made': 1,\n",
      "          'popular': 1,\n",
      "          'place': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'go': 5,\n",
      "          'film': 4,\n",
      "          'much': 4,\n",
      "          'one': 4,\n",
      "          'swingers': 3,\n",
      "          'get': 3,\n",
      "          'entertaining': 3,\n",
      "          'enjoy': 3,\n",
      "          'good': 3,\n",
      "          'cast': 3,\n",
      "          'never': 3,\n",
      "          'rather': 3,\n",
      "          'stories': 3,\n",
      "          'script': 3,\n",
      "          'movie': 3,\n",
      "          'pulp': 2,\n",
      "          'fiction': 2,\n",
      "          'director': 2,\n",
      "          'story': 2,\n",
      "          'around': 2,\n",
      "          'checkout': 2,\n",
      "          'polley': 2,\n",
      "          'three': 2,\n",
      "          'chapters': 2,\n",
      "          'touch': 2,\n",
      "          'rollercoaster': 2,\n",
      "          'ride': 2,\n",
      "          'also': 2,\n",
      "          'scenes': 2,\n",
      "          'particular': 2,\n",
      "          'pretty': 2,\n",
      "          'twisted': 2,\n",
      "          'throughout': 2,\n",
      "          'talent': 2,\n",
      "          'largely': 2,\n",
      "          'make': 2,\n",
      "          'dimensional': 2,\n",
      "          'slightly': 2,\n",
      "          'audience': 2,\n",
      "          'funny': 2,\n",
      "          'annoying': 2,\n",
      "          'makes': 2,\n",
      "          'drug': 2,\n",
      "          'performance': 2,\n",
      "          'nalso': 2,\n",
      "          'dialogue': 2,\n",
      "          'nit': 2,\n",
      "          'starts': 2,\n",
      "          'however': 2,\n",
      "          'little': 2,\n",
      "          'parts': 2,\n",
      "          'ngo': 2,\n",
      "          'characters': 2,\n",
      "          'things': 2,\n",
      "          'taking': 1,\n",
      "          'tips': 1,\n",
      "          'school': 1,\n",
      "          'filmmaking': 1,\n",
      "          'new': 1,\n",
      "          'feature': 1,\n",
      "          'cult': 1,\n",
      "          'hit': 1,\n",
      "          'centres': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'include': 1,\n",
      "          'brit': 1,\n",
      "          'simon': 1,\n",
      "          'askew': 1,\n",
      "          'girls': 1,\n",
      "          'claire': 1,\n",
      "          'holmes': 1,\n",
      "          'ronna': 1,\n",
      "          'misadventures': 1,\n",
      "          'split': 1,\n",
      "          'neverything': 1,\n",
      "          'sex': 1,\n",
      "          'drugs': 1,\n",
      "          'violence': 1,\n",
      "          'covered': 1,\n",
      "          'blacker': 1,\n",
      "          'edge': 1,\n",
      "          'comedy': 1,\n",
      "          'nalthough': 1,\n",
      "          'qts': 1,\n",
      "          'evident': 1,\n",
      "          'nearly': 1,\n",
      "          'every': 1,\n",
      "          'frame': 1,\n",
      "          'enough': 1,\n",
      "          'forget': 1,\n",
      "          'similarities': 1,\n",
      "          'nliman': 1,\n",
      "          'photographed': 1,\n",
      "          'deft': 1,\n",
      "          'camera': 1,\n",
      "          'looks': 1,\n",
      "          'seems': 1,\n",
      "          'benefited': 1,\n",
      "          'budget': 1,\n",
      "          'nightclub': 1,\n",
      "          'looking': 1,\n",
      "          'ntheres': 1,\n",
      "          'sense': 1,\n",
      "          'humour': 1,\n",
      "          'running': 1,\n",
      "          'ensures': 1,\n",
      "          'even': 1,\n",
      "          'darkest': 1,\n",
      "          'smirk': 1,\n",
      "          'young': 1,\n",
      "          'talented': 1,\n",
      "          'help': 1,\n",
      "          'bring': 1,\n",
      "          'life': 1,\n",
      "          'nholmes': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'show': 1,\n",
      "          'im': 1,\n",
      "          'particularly': 1,\n",
      "          'fond': 1,\n",
      "          'displays': 1,\n",
      "          'despite': 1,\n",
      "          'limited': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'manages': 1,\n",
      "          'character': 1,\n",
      "          'becomes': 1,\n",
      "          'caricature': 1,\n",
      "          'naskew': 1,\n",
      "          'successful': 1,\n",
      "          'obnoxious': 1,\n",
      "          'nno': 1,\n",
      "          'doubt': 1,\n",
      "          'filmmakers': 1,\n",
      "          'intended': 1,\n",
      "          'cheer': 1,\n",
      "          'happens': 1,\n",
      "          'instead': 1,\n",
      "          'hes': 1,\n",
      "          'nhe': 1,\n",
      "          'drags': 1,\n",
      "          'funniest': 1,\n",
      "          'tale': 1,\n",
      "          'real': 1,\n",
      "          'standout': 1,\n",
      "          'sarah': 1,\n",
      "          'dealing': 1,\n",
      "          'girl': 1,\n",
      "          'refreshing': 1,\n",
      "          'deeply': 1,\n",
      "          'enjoyable': 1,\n",
      "          'heavy': 1,\n",
      "          'going': 1,\n",
      "          'involved': 1,\n",
      "          'timothy': 1,\n",
      "          'olyphant': 1,\n",
      "          'sinister': 1,\n",
      "          'dealer': 1,\n",
      "          'gives': 1,\n",
      "          'nice': 1,\n",
      "          'evil': 1,\n",
      "          'written': 1,\n",
      "          'john': 1,\n",
      "          'august': 1,\n",
      "          'sharp': 1,\n",
      "          'witty': 1,\n",
      "          'jokes': 1,\n",
      "          'slow': 1,\n",
      "          'twenty': 1,\n",
      "          'minutes': 1,\n",
      "          'found': 1,\n",
      "          'footing': 1,\n",
      "          'keeps': 1,\n",
      "          'getting': 1,\n",
      "          'better': 1,\n",
      "          'satisfying': 1,\n",
      "          'although': 1,\n",
      "          'occasionally': 1,\n",
      "          'theres': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'another': 1,\n",
      "          'endings': 1,\n",
      "          'seem': 1,\n",
      "          'forced': 1,\n",
      "          'lucky': 1,\n",
      "          'nstill': 1,\n",
      "          'meaty': 1,\n",
      "          'obviously': 1,\n",
      "          'could': 1,\n",
      "          'tried': 1,\n",
      "          'harder': 1,\n",
      "          'lag': 1,\n",
      "          'nbecause': 1,\n",
      "          'genxer': 1,\n",
      "          'obligatory': 1,\n",
      "          'rave': 1,\n",
      "          'soundtrack': 1,\n",
      "          'must': 1,\n",
      "          'accompany': 1,\n",
      "          'gos': 1,\n",
      "          'decent': 1,\n",
      "          'nunlike': 1,\n",
      "          'genxers': 1,\n",
      "          'movies': 1,\n",
      "          'allows': 1,\n",
      "          'music': 1,\n",
      "          'substitute': 1,\n",
      "          'plot': 1,\n",
      "          'plus': 1,\n",
      "          'easy': 1,\n",
      "          'absorb': 1,\n",
      "          'really': 1,\n",
      "          'feeling': 1,\n",
      "          'nthankfully': 1,\n",
      "          'become': 1,\n",
      "          'two': 1,\n",
      "          'bent': 1,\n",
      "          'fit': 1,\n",
      "          'mechanics': 1,\n",
      "          'like': 1,\n",
      "          'heroine': 1,\n",
      "          '10': 1,\n",
      "          'hate': 1,\n",
      "          'nthey': 1,\n",
      "          'stay': 1,\n",
      "          'way': 1,\n",
      "          'great': 1,\n",
      "          'fun': 1,\n",
      "          'worthy': 1,\n",
      "          'follow': 1,\n",
      "          'nignore': 1,\n",
      "          'fact': 1,\n",
      "          'steals': 1,\n",
      "          'bad': 1,\n",
      "          'sit': 1,\n",
      "          'back': 1,\n",
      "          'nerm': 1,\n",
      "          'guess': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 7,\n",
      "          'planet': 6,\n",
      "          'nthe': 5,\n",
      "          'well': 5,\n",
      "          'character': 4,\n",
      "          'disc': 4,\n",
      "          'shandling': 3,\n",
      "          'makes': 3,\n",
      "          'harold': 3,\n",
      "          'gets': 3,\n",
      "          'see': 3,\n",
      "          'fine': 3,\n",
      "          'isolated': 3,\n",
      "          'score': 3,\n",
      "          'track': 3,\n",
      "          'long': 2,\n",
      "          'men': 2,\n",
      "          'given': 2,\n",
      "          'disastrous': 2,\n",
      "          'bening': 2,\n",
      "          'tells': 2,\n",
      "          'married': 2,\n",
      "          'kingsley': 2,\n",
      "          'nis': 2,\n",
      "          'funny': 2,\n",
      "          'sort': 2,\n",
      "          'gives': 2,\n",
      "          'cast': 2,\n",
      "          'certainly': 2,\n",
      "          'good': 2,\n",
      "          'nwhat': 2,\n",
      "          'dvd': 2,\n",
      "          'columbia': 2,\n",
      "          'tristar': 2,\n",
      "          'home': 2,\n",
      "          'video': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          '1': 2,\n",
      "          'great': 2,\n",
      "          'garry': 1,\n",
      "          'overdue': 1,\n",
      "          'starring': 1,\n",
      "          'debut': 1,\n",
      "          'alien': 1,\n",
      "          'populated': 1,\n",
      "          'genetically': 1,\n",
      "          'created': 1,\n",
      "          'looking': 1,\n",
      "          'take': 1,\n",
      "          'earth': 1,\n",
      "          'propagating': 1,\n",
      "          'species': 1,\n",
      "          'nshandling': 1,\n",
      "          'chosen': 1,\n",
      "          'mission': 1,\n",
      "          'name': 1,\n",
      "          'anderson': 1,\n",
      "          'set': 1,\n",
      "          'banker': 1,\n",
      "          'seattle': 1,\n",
      "          'nafter': 1,\n",
      "          'mating': 1,\n",
      "          'attempts': 1,\n",
      "          'figures': 1,\n",
      "          'best': 1,\n",
      "          'bet': 1,\n",
      "          'susan': 1,\n",
      "          'annette': 1,\n",
      "          'former': 1,\n",
      "          'alcoholic': 1,\n",
      "          'eventually': 1,\n",
      "          'wont': 1,\n",
      "          'sex': 1,\n",
      "          'leader': 1,\n",
      "          'harolds': 1,\n",
      "          'ben': 1,\n",
      "          'marry': 1,\n",
      "          'soon': 1,\n",
      "          'exposed': 1,\n",
      "          'joys': 1,\n",
      "          'life': 1,\n",
      "          'ndespite': 1,\n",
      "          'title': 1,\n",
      "          'premise': 1,\n",
      "          'seem': 1,\n",
      "          'imply': 1,\n",
      "          'jerry': 1,\n",
      "          'lewis': 1,\n",
      "          'vehicle': 1,\n",
      "          'late': 1,\n",
      "          '1960s': 1,\n",
      "          'movie': 1,\n",
      "          'plot': 1,\n",
      "          'wisely': 1,\n",
      "          'doesnt': 1,\n",
      "          'linger': 1,\n",
      "          'specifics': 1,\n",
      "          'course': 1,\n",
      "          'nothing': 1,\n",
      "          'framework': 1,\n",
      "          'jokes': 1,\n",
      "          'work': 1,\n",
      "          'material': 1,\n",
      "          'may': 1,\n",
      "          'considered': 1,\n",
      "          'crude': 1,\n",
      "          'tasteless': 1,\n",
      "          'many': 1,\n",
      "          'might': 1,\n",
      "          'thought': 1,\n",
      "          'lead': 1,\n",
      "          'nbut': 1,\n",
      "          'brings': 1,\n",
      "          'pathetic': 1,\n",
      "          'charm': 1,\n",
      "          'role': 1,\n",
      "          'performance': 1,\n",
      "          'truly': 1,\n",
      "          'instead': 1,\n",
      "          'offensive': 1,\n",
      "          'nplus': 1,\n",
      "          'think': 1,\n",
      "          'ncould': 1,\n",
      "          'easily': 1,\n",
      "          'gone': 1,\n",
      "          'grossout': 1,\n",
      "          'route': 1,\n",
      "          'considering': 1,\n",
      "          'shandlings': 1,\n",
      "          'detachable': 1,\n",
      "          'penis': 1,\n",
      "          'vibrates': 1,\n",
      "          'hums': 1,\n",
      "          'excited': 1,\n",
      "          'nwe': 1,\n",
      "          'never': 1,\n",
      "          'anything': 1,\n",
      "          'though': 1,\n",
      "          'implied': 1,\n",
      "          'touch': 1,\n",
      "          'class': 1,\n",
      "          'amidst': 1,\n",
      "          'crudeness': 1,\n",
      "          'nim': 1,\n",
      "          'glad': 1,\n",
      "          'someone': 1,\n",
      "          'hollywood': 1,\n",
      "          'still': 1,\n",
      "          'understands': 1,\n",
      "          'concept': 1,\n",
      "          'less': 1,\n",
      "          'talented': 1,\n",
      "          'supporting': 1,\n",
      "          'adds': 1,\n",
      "          'ones': 1,\n",
      "          'enjoyment': 1,\n",
      "          'nannette': 1,\n",
      "          'oddly': 1,\n",
      "          'playing': 1,\n",
      "          'merged': 1,\n",
      "          'version': 1,\n",
      "          'real': 1,\n",
      "          'estate': 1,\n",
      "          'salesman': 1,\n",
      "          'american': 1,\n",
      "          'beauty': 1,\n",
      "          'ditzy': 1,\n",
      "          'spiritualist': 1,\n",
      "          'mars': 1,\n",
      "          'attacks': 1,\n",
      "          'ndoes': 1,\n",
      "          'job': 1,\n",
      "          'keeping': 1,\n",
      "          'catalyst': 1,\n",
      "          'brand': 1,\n",
      "          'humor': 1,\n",
      "          'nshe': 1,\n",
      "          'even': 1,\n",
      "          'manages': 1,\n",
      "          'pull': 1,\n",
      "          'potentially': 1,\n",
      "          'scene': 1,\n",
      "          'perform': 1,\n",
      "          'rather': 1,\n",
      "          'goofy': 1,\n",
      "          'rendition': 1,\n",
      "          'high': 1,\n",
      "          'hopes': 1,\n",
      "          'lengthy': 1,\n",
      "          'period': 1,\n",
      "          'time': 1,\n",
      "          'nben': 1,\n",
      "          'john': 1,\n",
      "          'goodman': 1,\n",
      "          'greg': 1,\n",
      "          'kinnear': 1,\n",
      "          'fare': 1,\n",
      "          'performances': 1,\n",
      "          'linda': 1,\n",
      "          'fiorentino': 1,\n",
      "          'ngood': 1,\n",
      "          'lord': 1,\n",
      "          'law': 1,\n",
      "          'stating': 1,\n",
      "          'woman': 1,\n",
      "          'sexy': 1,\n",
      "          'neverything': 1,\n",
      "          'oozes': 1,\n",
      "          'raw': 1,\n",
      "          'sexuality': 1,\n",
      "          'available': 1,\n",
      "          'choice': 1,\n",
      "          'either': 1,\n",
      "          'watching': 1,\n",
      "          'full': 1,\n",
      "          'frame': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '85': 1,\n",
      "          'enhanced': 1,\n",
      "          '16x9': 1,\n",
      "          'televisions': 1,\n",
      "          'nalso': 1,\n",
      "          'included': 1,\n",
      "          'extras': 1,\n",
      "          'decent': 1,\n",
      "          'makingof': 1,\n",
      "          'featurette': 1,\n",
      "          'talent': 1,\n",
      "          'files': 1,\n",
      "          'crew': 1,\n",
      "          'films': 1,\n",
      "          'trailer': 1,\n",
      "          'trailers': 1,\n",
      "          'wolf': 1,\n",
      "          'black': 1,\n",
      "          'bugsy': 1,\n",
      "          'nwhen': 1,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'featured': 1,\n",
      "          'actually': 1,\n",
      "          'laughed': 1,\n",
      "          'nhow': 1,\n",
      "          'could': 1,\n",
      "          'music': 1,\n",
      "          'silly': 1,\n",
      "          'little': 1,\n",
      "          'comedy': 1,\n",
      "          'get': 1,\n",
      "          'nwell': 1,\n",
      "          'turns': 1,\n",
      "          'mighty': 1,\n",
      "          'carter': 1,\n",
      "          'burwell': 1,\n",
      "          'fargo': 1,\n",
      "          'hudsucker': 1,\n",
      "          'proxy': 1,\n",
      "          'enjoyed': 1,\n",
      "          'listening': 1,\n",
      "          'typed': 1,\n",
      "          'review': 1,\n",
      "          'nkudos': 1,\n",
      "          'adding': 1,\n",
      "          'feature': 1,\n",
      "          'nwas': 1,\n",
      "          'unjustly': 1,\n",
      "          'ignored': 1,\n",
      "          'theaters': 1,\n",
      "          'hope': 1,\n",
      "          'finds': 1,\n",
      "          'deserved': 1,\n",
      "          'audience': 1,\n",
      "          'nthis': 1,\n",
      "          'way': 1,\n",
      "          'nr': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'nthe': 5,\n",
      "          'nit': 4,\n",
      "          'man': 4,\n",
      "          'schindlers': 3,\n",
      "          'list': 3,\n",
      "          'nthis': 3,\n",
      "          'one': 3,\n",
      "          'leaves': 3,\n",
      "          'much': 3,\n",
      "          'moment': 2,\n",
      "          'jews': 2,\n",
      "          'ground': 2,\n",
      "          'red': 2,\n",
      "          'eyes': 2,\n",
      "          'probably': 2,\n",
      "          'nwhen': 2,\n",
      "          'saw': 2,\n",
      "          'could': 2,\n",
      "          'many': 2,\n",
      "          'see': 2,\n",
      "          'godfather': 2,\n",
      "          'films': 2,\n",
      "          'money': 2,\n",
      "          'nbut': 2,\n",
      "          'movie': 2,\n",
      "          'spielberg': 2,\n",
      "          'filmmaker': 2,\n",
      "          'sense': 2,\n",
      "          'deep': 2,\n",
      "          'watch': 2,\n",
      "          'schindler': 2,\n",
      "          'experience': 2,\n",
      "          'hands': 2,\n",
      "          'masterpiece': 2,\n",
      "          'would': 2,\n",
      "          'told': 2,\n",
      "          'theres': 1,\n",
      "          'number': 1,\n",
      "          'trudging': 1,\n",
      "          'snow': 1,\n",
      "          'clean': 1,\n",
      "          'crisp': 1,\n",
      "          'dark': 1,\n",
      "          'edges': 1,\n",
      "          'frost': 1,\n",
      "          'none': 1,\n",
      "          'girl': 1,\n",
      "          'waltzes': 1,\n",
      "          'wearing': 1,\n",
      "          'dress': 1,\n",
      "          'stings': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'finest': 1,\n",
      "          'first': 1,\n",
      "          'began': 1,\n",
      "          'cry': 1,\n",
      "          'though': 1,\n",
      "          'say': 1,\n",
      "          'landscape': 1,\n",
      "          'setting': 1,\n",
      "          'small': 1,\n",
      "          'moments': 1,\n",
      "          'add': 1,\n",
      "          'big': 1,\n",
      "          'whole': 1,\n",
      "          'shot': 1,\n",
      "          'head': 1,\n",
      "          'blood': 1,\n",
      "          'oozing': 1,\n",
      "          'onto': 1,\n",
      "          'black': 1,\n",
      "          'murky': 1,\n",
      "          'almost': 1,\n",
      "          'pomegranate': 1,\n",
      "          'nat': 1,\n",
      "          'another': 1,\n",
      "          'time': 1,\n",
      "          'follow': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'runs': 1,\n",
      "          'searching': 1,\n",
      "          'hiding': 1,\n",
      "          'spot': 1,\n",
      "          'finally': 1,\n",
      "          'squeezing': 1,\n",
      "          'toilet': 1,\n",
      "          'already': 1,\n",
      "          'occupied': 1,\n",
      "          'nlike': 1,\n",
      "          'citizen': 1,\n",
      "          'kane': 1,\n",
      "          'fargo': 1,\n",
      "          'part': 1,\n",
      "          'ii': 1,\n",
      "          'greed': 1,\n",
      "          'greatest': 1,\n",
      "          'american': 1,\n",
      "          'plays': 1,\n",
      "          'concepts': 1,\n",
      "          'power': 1,\n",
      "          'soul': 1,\n",
      "          'right': 1,\n",
      "          'thing': 1,\n",
      "          'nstarkly': 1,\n",
      "          'emotional': 1,\n",
      "          'brutally': 1,\n",
      "          'powerful': 1,\n",
      "          'strips': 1,\n",
      "          'away': 1,\n",
      "          'everything': 1,\n",
      "          'outset': 1,\n",
      "          'us': 1,\n",
      "          'ony': 1,\n",
      "          'feelings': 1,\n",
      "          'following': 1,\n",
      "          'gained': 1,\n",
      "          'suprising': 1,\n",
      "          'thus': 1,\n",
      "          'far': 1,\n",
      "          'best': 1,\n",
      "          'decade': 1,\n",
      "          'nsteven': 1,\n",
      "          'always': 1,\n",
      "          'skilfull': 1,\n",
      "          'assured': 1,\n",
      "          'hand': 1,\n",
      "          'churned': 1,\n",
      "          'jurassic': 1,\n",
      "          'parks': 1,\n",
      "          'jaws': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'e': 1,\n",
      "          'n': 1,\n",
      "          'wasnt': 1,\n",
      "          '1993': 1,\n",
      "          'brilliant': 1,\n",
      "          'product': 1,\n",
      "          'genuis': 1,\n",
      "          'really': 1,\n",
      "          'something': 1,\n",
      "          'bring': 1,\n",
      "          'tears': 1,\n",
      "          'uplifts': 1,\n",
      "          'nthroughout': 1,\n",
      "          'control': 1,\n",
      "          'masterfully': 1,\n",
      "          'spreads': 1,\n",
      "          'nwe': 1,\n",
      "          'oskar': 1,\n",
      "          'liam': 1,\n",
      "          'neeson': 1,\n",
      "          'grow': 1,\n",
      "          'arrogant': 1,\n",
      "          'self': 1,\n",
      "          'important': 1,\n",
      "          'hires': 1,\n",
      "          'save': 1,\n",
      "          'moving': 1,\n",
      "          'figure': 1,\n",
      "          'pride': 1,\n",
      "          'accomplishment': 1,\n",
      "          'requires': 1,\n",
      "          'work': 1,\n",
      "          'harrowing': 1,\n",
      "          'go': 1,\n",
      "          'expecting': 1,\n",
      "          'quick': 1,\n",
      "          'entertainment': 1,\n",
      "          'youll': 1,\n",
      "          'bitterly': 1,\n",
      "          'dissapointed': 1,\n",
      "          'reward': 1,\n",
      "          'patient': 1,\n",
      "          'viewer': 1,\n",
      "          'mature': 1,\n",
      "          'deft': 1,\n",
      "          'shape': 1,\n",
      "          'absoloute': 1,\n",
      "          'eqsuisite': 1,\n",
      "          'beautiful': 1,\n",
      "          'rare': 1,\n",
      "          'gem': 1,\n",
      "          'good': 1,\n",
      "          'job': 1,\n",
      "          'summarizing': 1,\n",
      "          'love': 1,\n",
      "          'movies': 1,\n",
      "          'breathless': 1,\n",
      "          'uplifted': 1,\n",
      "          'think': 1,\n",
      "          'nafterwards': 1,\n",
      "          'reflect': 1,\n",
      "          'individual': 1,\n",
      "          'images': 1,\n",
      "          'visions': 1,\n",
      "          'people': 1,\n",
      "          'nlaconic': 1,\n",
      "          'removed': 1,\n",
      "          'strides': 1,\n",
      "          'detached': 1,\n",
      "          'prescence': 1,\n",
      "          'watches': 1,\n",
      "          'feeling': 1,\n",
      "          'done': 1,\n",
      "          'able': 1,\n",
      "          'change': 1,\n",
      "          'seems': 1,\n",
      "          'natural': 1,\n",
      "          'lesser': 1,\n",
      "          'crude': 1,\n",
      "          'cheat': 1,\n",
      "          'audience': 1,\n",
      "          'ninstead': 1,\n",
      "          'tale': 1,\n",
      "          'story': 1,\n",
      "          'punishing': 1,\n",
      "          'yes': 1,\n",
      "          'anyone': 1,\n",
      "          'allows': 1,\n",
      "          'get': 1,\n",
      "          'involved': 1,\n",
      "          'miracle': 1,\n",
      "          'genuine': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nbut': 6,\n",
      "          'sex': 5,\n",
      "          'years': 3,\n",
      "          'girls': 3,\n",
      "          'sometimes': 3,\n",
      "          'pie': 3,\n",
      "          'four': 3,\n",
      "          'want': 3,\n",
      "          'know': 3,\n",
      "          'rating': 3,\n",
      "          'school': 2,\n",
      "          'say': 2,\n",
      "          'thing': 2,\n",
      "          'raging': 2,\n",
      "          'hormones': 2,\n",
      "          'curiosity': 2,\n",
      "          'scarier': 2,\n",
      "          'trying': 2,\n",
      "          'like': 2,\n",
      "          'fight': 2,\n",
      "          'invisible': 2,\n",
      "          'monster': 2,\n",
      "          'almost': 2,\n",
      "          'nand': 2,\n",
      "          'funny': 2,\n",
      "          'shocking': 2,\n",
      "          'brought': 2,\n",
      "          'watching': 2,\n",
      "          'nthe': 2,\n",
      "          'jim': 2,\n",
      "          'one': 2,\n",
      "          'doesnt': 2,\n",
      "          'time': 2,\n",
      "          'nthere': 2,\n",
      "          'way': 2,\n",
      "          'nhe': 2,\n",
      "          'chance': 2,\n",
      "          'completely': 2,\n",
      "          'yet': 2,\n",
      "          'film': 2,\n",
      "          'recall': 1,\n",
      "          'trials': 1,\n",
      "          'tribulations': 1,\n",
      "          'high': 1,\n",
      "          'nit': 1,\n",
      "          'period': 1,\n",
      "          'would': 1,\n",
      "          'mercilessly': 1,\n",
      "          'force': 1,\n",
      "          'exit': 1,\n",
      "          'boyhood': 1,\n",
      "          'thrust': 1,\n",
      "          'unwelcome': 1,\n",
      "          'arms': 1,\n",
      "          'adulthood': 1,\n",
      "          'experiences': 1,\n",
      "          'collected': 1,\n",
      "          'throughout': 1,\n",
      "          'tender': 1,\n",
      "          'honestly': 1,\n",
      "          'toughest': 1,\n",
      "          'scariest': 1,\n",
      "          'cope': 1,\n",
      "          'crazed': 1,\n",
      "          'nyes': 1,\n",
      "          'seventh': 1,\n",
      "          'grade': 1,\n",
      "          'english': 1,\n",
      "          'teacher': 1,\n",
      "          'even': 1,\n",
      "          'bullies': 1,\n",
      "          'constantly': 1,\n",
      "          'hounded': 1,\n",
      "          'deal': 1,\n",
      "          'personal': 1,\n",
      "          'wonderment': 1,\n",
      "          'nfor': 1,\n",
      "          'teenagers': 1,\n",
      "          'rite': 1,\n",
      "          'passage': 1,\n",
      "          'downright': 1,\n",
      "          'nasty': 1,\n",
      "          'terrifically': 1,\n",
      "          'shamelessly': 1,\n",
      "          'light': 1,\n",
      "          'might': 1,\n",
      "          'funniest': 1,\n",
      "          'movie': 1,\n",
      "          'summer': 1,\n",
      "          'namerican': 1,\n",
      "          'comedy': 1,\n",
      "          'sexually': 1,\n",
      "          'frustrated': 1,\n",
      "          'seniors': 1,\n",
      "          'enter': 1,\n",
      "          'pact': 1,\n",
      "          'lose': 1,\n",
      "          'virginity': 1,\n",
      "          'end': 1,\n",
      "          'year': 1,\n",
      "          'njust': 1,\n",
      "          'great': 1,\n",
      "          'none': 1,\n",
      "          'notes': 1,\n",
      "          'disneys': 1,\n",
      "          'little': 1,\n",
      "          'mermaid': 1,\n",
      "          'ariel': 1,\n",
      "          'soooo': 1,\n",
      "          'hot': 1,\n",
      "          'schoolmates': 1,\n",
      "          'kevin': 1,\n",
      "          'oz': 1,\n",
      "          'finch': 1,\n",
      "          'nkevin': 1,\n",
      "          'steady': 1,\n",
      "          'girlfriend': 1,\n",
      "          'right': 1,\n",
      "          'perfect': 1,\n",
      "          'frightens': 1,\n",
      "          'noz': 1,\n",
      "          'big': 1,\n",
      "          'jock': 1,\n",
      "          'decides': 1,\n",
      "          'score': 1,\n",
      "          'listen': 1,\n",
      "          'sensitive': 1,\n",
      "          'joins': 1,\n",
      "          'jazz': 1,\n",
      "          'choir': 1,\n",
      "          'discovers': 1,\n",
      "          'getting': 1,\n",
      "          'touch': 1,\n",
      "          'feminine': 1,\n",
      "          'side': 1,\n",
      "          'tremendous': 1,\n",
      "          'advantages': 1,\n",
      "          'nfinch': 1,\n",
      "          'phobic': 1,\n",
      "          'hermit': 1,\n",
      "          'stand': 1,\n",
      "          'girl': 1,\n",
      "          'nso': 1,\n",
      "          'pays': 1,\n",
      "          'someone': 1,\n",
      "          '200': 1,\n",
      "          'start': 1,\n",
      "          'spreading': 1,\n",
      "          'rumors': 1,\n",
      "          'prowess': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'lining': 1,\n",
      "          'go': 1,\n",
      "          'among': 1,\n",
      "          'friends': 1,\n",
      "          'curious': 1,\n",
      "          'fearful': 1,\n",
      "          'nwhen': 1,\n",
      "          'romp': 1,\n",
      "          'pretty': 1,\n",
      "          'exchange': 1,\n",
      "          'student': 1,\n",
      "          'inexperience': 1,\n",
      "          'comes': 1,\n",
      "          'shining': 1,\n",
      "          'much': 1,\n",
      "          'learn': 1,\n",
      "          'anything': 1,\n",
      "          'seek': 1,\n",
      "          'kind': 1,\n",
      "          'knowledge': 1,\n",
      "          'nthis': 1,\n",
      "          'may': 1,\n",
      "          'include': 1,\n",
      "          'scrambled': 1,\n",
      "          'porn': 1,\n",
      "          'channels': 1,\n",
      "          'experimenting': 1,\n",
      "          'moms': 1,\n",
      "          'apple': 1,\n",
      "          'scene': 1,\n",
      "          'raunchy': 1,\n",
      "          'unbelievably': 1,\n",
      "          'well': 1,\n",
      "          'deserves': 1,\n",
      "          'r': 1,\n",
      "          'stuff': 1,\n",
      "          'gross': 1,\n",
      "          'manner': 1,\n",
      "          'theres': 1,\n",
      "          'something': 1,\n",
      "          'mary': 1,\n",
      "          'gloriously': 1,\n",
      "          'ribald': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'first': 1,\n",
      "          'received': 1,\n",
      "          'sinful': 1,\n",
      "          'nc17': 1,\n",
      "          'couple': 1,\n",
      "          'cuts': 1,\n",
      "          'finally': 1,\n",
      "          'teenaccessible': 1,\n",
      "          'guess': 1,\n",
      "          'seeing': 1,\n",
      "          'noholdsbarred': 1,\n",
      "          'coarseness': 1,\n",
      "          'south': 1,\n",
      "          'park': 1,\n",
      "          'seems': 1,\n",
      "          'tame': 1,\n",
      "          'comparison': 1,\n",
      "          'nteens': 1,\n",
      "          'anyone': 1,\n",
      "          'still': 1,\n",
      "          'remember': 1,\n",
      "          'acne': 1,\n",
      "          'ones': 1,\n",
      "          'laugh': 1,\n",
      "          'hardest': 1,\n",
      "          'unlike': 1,\n",
      "          'many': 1,\n",
      "          'teen': 1,\n",
      "          'comedies': 1,\n",
      "          'genuine': 1,\n",
      "          'intelligence': 1,\n",
      "          'work': 1,\n",
      "          'nthese': 1,\n",
      "          'normal': 1,\n",
      "          'boys': 1,\n",
      "          'natural': 1,\n",
      "          'ntheir': 1,\n",
      "          'plans': 1,\n",
      "          'action': 1,\n",
      "          'thoughtful': 1,\n",
      "          'think': 1,\n",
      "          'consequences': 1,\n",
      "          'nthey': 1,\n",
      "          'temper': 1,\n",
      "          'responsibility': 1,\n",
      "          'always': 1,\n",
      "          'impossible': 1,\n",
      "          'episodes': 1,\n",
      "          'make': 1,\n",
      "          'american': 1,\n",
      "          'carnal': 1,\n",
      "          'delight': 1,\n",
      "          'watch': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'metal': 5,\n",
      "          'jacket': 5,\n",
      "          'war': 5,\n",
      "          'joker': 5,\n",
      "          'full': 4,\n",
      "          'vietnam': 4,\n",
      "          'extremely': 4,\n",
      "          'nhe': 4,\n",
      "          'platoon': 3,\n",
      "          'way': 3,\n",
      "          'man': 3,\n",
      "          'private': 3,\n",
      "          'life': 3,\n",
      "          'nthe': 3,\n",
      "          'well': 3,\n",
      "          'drill': 3,\n",
      "          'instructor': 3,\n",
      "          'sgt': 3,\n",
      "          'nhartman': 3,\n",
      "          'like': 2,\n",
      "          'everyone': 2,\n",
      "          'nthis': 2,\n",
      "          'young': 2,\n",
      "          'played': 2,\n",
      "          'combat': 2,\n",
      "          'best': 2,\n",
      "          'even': 2,\n",
      "          'found': 2,\n",
      "          'gets': 2,\n",
      "          'start': 2,\n",
      "          'recruits': 2,\n",
      "          'find': 2,\n",
      "          'sergeant': 2,\n",
      "          'ermey': 2,\n",
      "          'subjected': 2,\n",
      "          'nprivate': 2,\n",
      "          'pyle': 2,\n",
      "          'continually': 2,\n",
      "          'however': 2,\n",
      "          'worst': 2,\n",
      "          'punishment': 2,\n",
      "          'nthat': 2,\n",
      "          'npyle': 2,\n",
      "          'ever': 2,\n",
      "          'documenting': 2,\n",
      "          'along': 2,\n",
      "          'also': 2,\n",
      "          'powerful': 2,\n",
      "          'others': 2,\n",
      "          'much': 1,\n",
      "          'every': 1,\n",
      "          'hardhitting': 1,\n",
      "          'shocking': 1,\n",
      "          'emotional': 1,\n",
      "          'depiction': 1,\n",
      "          'effected': 1,\n",
      "          'almost': 1,\n",
      "          'america': 1,\n",
      "          'chronicles': 1,\n",
      "          'struggles': 1,\n",
      "          'matthew': 1,\n",
      "          'modine': 1,\n",
      "          'tour': 1,\n",
      "          'nhowever': 1,\n",
      "          'gives': 1,\n",
      "          'audience': 1,\n",
      "          'insight': 1,\n",
      "          'rarely': 1,\n",
      "          'seen': 1,\n",
      "          'boot': 1,\n",
      "          'camp': 1,\n",
      "          'nthese': 1,\n",
      "          'sequences': 1,\n",
      "          'considered': 1,\n",
      "          'part': 1,\n",
      "          'three': 1,\n",
      "          'act': 1,\n",
      "          'though': 1,\n",
      "          'later': 1,\n",
      "          'portions': 1,\n",
      "          'equally': 1,\n",
      "          'stunning': 1,\n",
      "          'nas': 1,\n",
      "          'quick': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'initiation': 1,\n",
      "          'getting': 1,\n",
      "          'heads': 1,\n",
      "          'shaved': 1,\n",
      "          'nfrom': 1,\n",
      "          'standing': 1,\n",
      "          'attention': 1,\n",
      "          'receiving': 1,\n",
      "          'orders': 1,\n",
      "          'hard': 1,\n",
      "          'punishing': 1,\n",
      "          'hartman': 1,\n",
      "          'former': 1,\n",
      "          'r': 1,\n",
      "          'lee': 1,\n",
      "          'napparently': 1,\n",
      "          'solution': 1,\n",
      "          'perfect': 1,\n",
      "          'play': 1,\n",
      "          'movies': 1,\n",
      "          'depicts': 1,\n",
      "          'character': 1,\n",
      "          'make': 1,\n",
      "          'thank': 1,\n",
      "          'whomever': 1,\n",
      "          'never': 1,\n",
      "          'horrible': 1,\n",
      "          'situations': 1,\n",
      "          'wrong': 1,\n",
      "          'foot': 1,\n",
      "          'large': 1,\n",
      "          'bodied': 1,\n",
      "          'leonard': 1,\n",
      "          'lawrence': 1,\n",
      "          'vincent': 1,\n",
      "          'donofrio': 1,\n",
      "          'dubbed': 1,\n",
      "          'gomer': 1,\n",
      "          'narrated': 1,\n",
      "          'explains': 1,\n",
      "          'visions': 1,\n",
      "          'going': 1,\n",
      "          'entire': 1,\n",
      "          'corps': 1,\n",
      "          'although': 1,\n",
      "          'repeatedly': 1,\n",
      "          'hammered': 1,\n",
      "          'continues': 1,\n",
      "          'seems': 1,\n",
      "          'rag': 1,\n",
      "          'doll': 1,\n",
      "          'absorbs': 1,\n",
      "          'humiliation': 1,\n",
      "          'basically': 1,\n",
      "          'stop': 1,\n",
      "          'comes': 1,\n",
      "          'new': 1,\n",
      "          'plan': 1,\n",
      "          'punish': 1,\n",
      "          'rest': 1,\n",
      "          'soontobemarines': 1,\n",
      "          'pyles': 1,\n",
      "          'goofups': 1,\n",
      "          'assigned': 1,\n",
      "          'help': 1,\n",
      "          'receives': 1,\n",
      "          'fellow': 1,\n",
      "          'things': 1,\n",
      "          'take': 1,\n",
      "          'turn': 1,\n",
      "          'proves': 1,\n",
      "          'emotionally': 1,\n",
      "          'physically': 1,\n",
      "          'mentally': 1,\n",
      "          'cut': 1,\n",
      "          'marine': 1,\n",
      "          'nafter': 1,\n",
      "          'graduation': 1,\n",
      "          'sent': 1,\n",
      "          'height': 1,\n",
      "          'action': 1,\n",
      "          'order': 1,\n",
      "          'document': 1,\n",
      "          'service': 1,\n",
      "          'member': 1,\n",
      "          'infantry': 1,\n",
      "          'unclear': 1,\n",
      "          'actually': 1,\n",
      "          'nwhen': 1,\n",
      "          'sets': 1,\n",
      "          'mission': 1,\n",
      "          'question': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'njoker': 1,\n",
      "          'joins': 1,\n",
      "          'hometown': 1,\n",
      "          'friend': 1,\n",
      "          'cowboy': 1,\n",
      "          'arliss': 1,\n",
      "          'howard': 1,\n",
      "          'follows': 1,\n",
      "          'everyday': 1,\n",
      "          'actions': 1,\n",
      "          'interviewing': 1,\n",
      "          'filmming': 1,\n",
      "          'soon': 1,\n",
      "          'finds': 1,\n",
      "          'position': 1,\n",
      "          'must': 1,\n",
      "          'fight': 1,\n",
      "          'die': 1,\n",
      "          'nagain': 1,\n",
      "          'tradition': 1,\n",
      "          'films': 1,\n",
      "          'debated': 1,\n",
      "          'whether': 1,\n",
      "          'antiwar': 1,\n",
      "          'na': 1,\n",
      "          'scenes': 1,\n",
      "          'toward': 1,\n",
      "          'end': 1,\n",
      "          'leave': 1,\n",
      "          'decide': 1,\n",
      "          'nfull': 1,\n",
      "          'succeeds': 1,\n",
      "          'past': 1,\n",
      "          'different': 1,\n",
      "          'ways': 1,\n",
      "          'viewed': 1,\n",
      "          'debate': 1,\n",
      "          'depends': 1,\n",
      "          'opinion': 1,\n",
      "          'none': 1,\n",
      "          'thing': 1,\n",
      "          'sure': 1,\n",
      "          'one': 1,\n",
      "          'wants': 1,\n",
      "          'experience': 1,\n",
      "          'absolute': 1,\n",
      "          'hell': 1,\n",
      "          'soldiers': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'many': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nixon': 6,\n",
      "          'nthe': 4,\n",
      "          'one': 3,\n",
      "          'nstone': 3,\n",
      "          'white': 3,\n",
      "          'nhe': 3,\n",
      "          'long': 2,\n",
      "          'american': 2,\n",
      "          'presidents': 2,\n",
      "          'saga': 2,\n",
      "          'doesnt': 2,\n",
      "          'politics': 2,\n",
      "          'legal': 2,\n",
      "          'maneuvers': 2,\n",
      "          'house': 2,\n",
      "          'nat': 2,\n",
      "          'time': 2,\n",
      "          'human': 2,\n",
      "          'character': 2,\n",
      "          'nixons': 2,\n",
      "          'flaws': 2,\n",
      "          'magnificent': 2,\n",
      "          'captivating': 2,\n",
      "          'honest': 2,\n",
      "          'showing': 2,\n",
      "          'oliver': 1,\n",
      "          'stones': 1,\n",
      "          'latest': 1,\n",
      "          'feature': 1,\n",
      "          'last': 1,\n",
      "          'standing': 1,\n",
      "          'line': 1,\n",
      "          'biographies': 1,\n",
      "          'nits': 1,\n",
      "          'threehour': 1,\n",
      "          'life': 1,\n",
      "          'hated': 1,\n",
      "          'misunderstood': 1,\n",
      "          'leaders': 1,\n",
      "          '20th': 1,\n",
      "          'century': 1,\n",
      "          'hold': 1,\n",
      "          'back': 1,\n",
      "          'anything': 1,\n",
      "          'digs': 1,\n",
      "          'deep': 1,\n",
      "          'inside': 1,\n",
      "          'director': 1,\n",
      "          'holds': 1,\n",
      "          'responsible': 1,\n",
      "          'everything': 1,\n",
      "          'done': 1,\n",
      "          'creates': 1,\n",
      "          'brilliant': 1,\n",
      "          'tortured': 1,\n",
      "          'man': 1,\n",
      "          'caught': 1,\n",
      "          'dirty': 1,\n",
      "          'game': 1,\n",
      "          'pictured': 1,\n",
      "          'wild': 1,\n",
      "          'animal': 1,\n",
      "          'simply': 1,\n",
      "          'trying': 1,\n",
      "          'tame': 1,\n",
      "          'nbut': 1,\n",
      "          'occasional': 1,\n",
      "          'switch': 1,\n",
      "          'raging': 1,\n",
      "          'sky': 1,\n",
      "          'clouds': 1,\n",
      "          'swiftly': 1,\n",
      "          'fleeing': 1,\n",
      "          'events': 1,\n",
      "          'run': 1,\n",
      "          'ahead': 1,\n",
      "          'ability': 1,\n",
      "          'control': 1,\n",
      "          'way': 1,\n",
      "          'apologize': 1,\n",
      "          'blames': 1,\n",
      "          'also': 1,\n",
      "          'imperial': 1,\n",
      "          'presidency': 1,\n",
      "          'system': 1,\n",
      "          'set': 1,\n",
      "          'motion': 1,\n",
      "          'behaves': 1,\n",
      "          'mindlessness': 1,\n",
      "          'n': 1,\n",
      "          'modern': 1,\n",
      "          'shakespeare': 1,\n",
      "          'story': 1,\n",
      "          'ruler': 1,\n",
      "          'destroyed': 1,\n",
      "          'fatal': 1,\n",
      "          'ntheres': 1,\n",
      "          'something': 1,\n",
      "          'almost': 1,\n",
      "          'majestic': 1,\n",
      "          'process': 1,\n",
      "          'goes': 1,\n",
      "          'film': 1,\n",
      "          'gloating': 1,\n",
      "          'watery': 1,\n",
      "          'sigh': 1,\n",
      "          'great': 1,\n",
      "          'ship': 1,\n",
      "          'sinking': 1,\n",
      "          'nsir': 1,\n",
      "          'anthony': 1,\n",
      "          'hopkins': 1,\n",
      "          'staggering': 1,\n",
      "          'plays': 1,\n",
      "          'incredible': 1,\n",
      "          'honesty': 1,\n",
      "          'understanding': 1,\n",
      "          'creating': 1,\n",
      "          'emotional': 1,\n",
      "          'picture': 1,\n",
      "          '37th': 1,\n",
      "          'president': 1,\n",
      "          'njoan': 1,\n",
      "          'allens': 1,\n",
      "          'performance': 1,\n",
      "          'certainly': 1,\n",
      "          'worth': 1,\n",
      "          'oscar': 1,\n",
      "          'statuette': 1,\n",
      "          'nshe': 1,\n",
      "          'strong': 1,\n",
      "          'loyal': 1,\n",
      "          'mrs': 1,\n",
      "          'rest': 1,\n",
      "          'cast': 1,\n",
      "          'equally': 1,\n",
      "          'including': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'j': 1,\n",
      "          'walsh': 1,\n",
      "          'paul': 1,\n",
      "          'sorvino': 1,\n",
      "          'ed': 1,\n",
      "          'harris': 1,\n",
      "          'bob': 1,\n",
      "          'hoskins': 1,\n",
      "          'neveryone': 1,\n",
      "          'serious': 1,\n",
      "          'demanding': 1,\n",
      "          'job': 1,\n",
      "          'disappointing': 1,\n",
      "          'never': 1,\n",
      "          'loses': 1,\n",
      "          'focus': 1,\n",
      "          'direction': 1,\n",
      "          'steddy': 1,\n",
      "          'determined': 1,\n",
      "          'displaying': 1,\n",
      "          'historical': 1,\n",
      "          'facts': 1,\n",
      "          'concentrating': 1,\n",
      "          'element': 1,\n",
      "          'times': 1,\n",
      "          'black': 1,\n",
      "          'flashbacks': 1,\n",
      "          'youth': 1,\n",
      "          'childhood': 1,\n",
      "          'flashy': 1,\n",
      "          'editing': 1,\n",
      "          'brian': 1,\n",
      "          'berdan': 1,\n",
      "          'frank': 1,\n",
      "          'corwin': 1,\n",
      "          'robert': 1,\n",
      "          'richardsons': 1,\n",
      "          'rich': 1,\n",
      "          'cinematography': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'create': 1,\n",
      "          'hectic': 1,\n",
      "          'bizarre': 1,\n",
      "          'atmosphere': 1,\n",
      "          'films': 1,\n",
      "          'fault': 1,\n",
      "          'bit': 1,\n",
      "          'tiering': 1,\n",
      "          'overloaded': 1,\n",
      "          'much': 1,\n",
      "          'political': 1,\n",
      "          'material': 1,\n",
      "          'nstill': 1,\n",
      "          'solid': 1,\n",
      "          'piece': 1,\n",
      "          'movie': 1,\n",
      "          'making': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hollow': 8,\n",
      "          'sleepy': 7,\n",
      "          'horseman': 5,\n",
      "          'burton': 5,\n",
      "          'nthe': 5,\n",
      "          'burtons': 4,\n",
      "          'film': 4,\n",
      "          'crane': 4,\n",
      "          'headless': 3,\n",
      "          'mystery': 3,\n",
      "          'nas': 3,\n",
      "          'murders': 3,\n",
      "          'ichabod': 3,\n",
      "          'tim': 2,\n",
      "          'residents': 2,\n",
      "          'town': 2,\n",
      "          'classic': 2,\n",
      "          'tale': 2,\n",
      "          'offers': 2,\n",
      "          'horror': 2,\n",
      "          'walker': 2,\n",
      "          'decapitated': 2,\n",
      "          'constable': 2,\n",
      "          'depp': 2,\n",
      "          'von': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'michael': 2,\n",
      "          'taken': 2,\n",
      "          'separate': 2,\n",
      "          'wonderful': 2,\n",
      "          'perfectly': 2,\n",
      "          'particularly': 2,\n",
      "          'enjoy': 2,\n",
      "          'enjoyable': 2,\n",
      "          'still': 2,\n",
      "          'effective': 2,\n",
      "          'elusive': 2,\n",
      "          'demon': 2,\n",
      "          'many': 2,\n",
      "          'mysterious': 1,\n",
      "          'decapitates': 1,\n",
      "          'small': 1,\n",
      "          'name': 1,\n",
      "          'nhe': 1,\n",
      "          'rides': 1,\n",
      "          'beautiful': 1,\n",
      "          'black': 1,\n",
      "          'steed': 1,\n",
      "          'carries': 1,\n",
      "          'imposing': 1,\n",
      "          'sword': 1,\n",
      "          'cauterizes': 1,\n",
      "          'wound': 1,\n",
      "          'victims': 1,\n",
      "          'immediate': 1,\n",
      "          'swipe': 1,\n",
      "          'nburtons': 1,\n",
      "          'update': 1,\n",
      "          'washington': 1,\n",
      "          'irvings': 1,\n",
      "          'legend': 1,\n",
      "          'us': 1,\n",
      "          'screenplay': 1,\n",
      "          'merely': 1,\n",
      "          'settled': 1,\n",
      "          'aspect': 1,\n",
      "          'nwriter': 1,\n",
      "          'andrew': 1,\n",
      "          'kevin': 1,\n",
      "          'seven': 1,\n",
      "          'throws': 1,\n",
      "          'perhaps': 1,\n",
      "          'healthy': 1,\n",
      "          'dosage': 1,\n",
      "          'sherlock': 1,\n",
      "          'holmes': 1,\n",
      "          'visual': 1,\n",
      "          'treatment': 1,\n",
      "          'absolutely': 1,\n",
      "          'entrancing': 1,\n",
      "          'foggy': 1,\n",
      "          'locales': 1,\n",
      "          'detailed': 1,\n",
      "          'costumes': 1,\n",
      "          'gorgeous': 1,\n",
      "          'stirring': 1,\n",
      "          'examine': 1,\n",
      "          'opens': 1,\n",
      "          'greeted': 1,\n",
      "          'juicy': 1,\n",
      "          'cameo': 1,\n",
      "          'martin': 1,\n",
      "          'landau': 1,\n",
      "          'oscar': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'nlandau': 1,\n",
      "          'plays': 1,\n",
      "          'prominent': 1,\n",
      "          'citizen': 1,\n",
      "          'fateful': 1,\n",
      "          'carriage': 1,\n",
      "          'ride': 1,\n",
      "          'forest': 1,\n",
      "          'unseen': 1,\n",
      "          'horseback': 1,\n",
      "          'rider': 1,\n",
      "          'nafter': 1,\n",
      "          'two': 1,\n",
      "          'haunt': 1,\n",
      "          'quaint': 1,\n",
      "          'little': 1,\n",
      "          'johnny': 1,\n",
      "          'sent': 1,\n",
      "          'investigate': 1,\n",
      "          'nlandlord': 1,\n",
      "          'baltus': 1,\n",
      "          'tassel': 1,\n",
      "          'gambon': 1,\n",
      "          'explains': 1,\n",
      "          'heads': 1,\n",
      "          'severed': 1,\n",
      "          'carcass': 1,\n",
      "          'mysteriously': 1,\n",
      "          'case': 1,\n",
      "          'believe': 1,\n",
      "          'murderer': 1,\n",
      "          'dead': 1,\n",
      "          'hessian': 1,\n",
      "          'trooper': 1,\n",
      "          'played': 1,\n",
      "          'briefly': 1,\n",
      "          'wonderfully': 1,\n",
      "          'jarring': 1,\n",
      "          'christopher': 1,\n",
      "          'walken': 1,\n",
      "          'risen': 1,\n",
      "          'grave': 1,\n",
      "          'western': 1,\n",
      "          'woods': 1,\n",
      "          'ncrane': 1,\n",
      "          'man': 1,\n",
      "          'great': 1,\n",
      "          'superstition': 1,\n",
      "          'determined': 1,\n",
      "          'root': 1,\n",
      "          'human': 1,\n",
      "          'culprit': 1,\n",
      "          'assortment': 1,\n",
      "          'gizmos': 1,\n",
      "          'gadgets': 1,\n",
      "          'things': 1,\n",
      "          'surprised': 1,\n",
      "          'find': 1,\n",
      "          'movie': 1,\n",
      "          'nfirst': 1,\n",
      "          'foremost': 1,\n",
      "          'fun': 1,\n",
      "          'virtually': 1,\n",
      "          'movies': 1,\n",
      "          'treated': 1,\n",
      "          'score': 1,\n",
      "          'composer': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'poured': 1,\n",
      "          'excitement': 1,\n",
      "          'imagination': 1,\n",
      "          'atmospheric': 1,\n",
      "          'soundtrack': 1,\n",
      "          'accentuates': 1,\n",
      "          'gothic': 1,\n",
      "          'mood': 1,\n",
      "          'fx': 1,\n",
      "          'stylish': 1,\n",
      "          'impressive': 1,\n",
      "          'blended': 1,\n",
      "          'battle': 1,\n",
      "          'sequences': 1,\n",
      "          'involving': 1,\n",
      "          'actual': 1,\n",
      "          'actors': 1,\n",
      "          'nbut': 1,\n",
      "          'much': 1,\n",
      "          'nalthough': 1,\n",
      "          'numerous': 1,\n",
      "          'beheadings': 1,\n",
      "          'plentiful': 1,\n",
      "          'gore': 1,\n",
      "          'spurted': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'nit': 1,\n",
      "          'light': 1,\n",
      "          'comic': 1,\n",
      "          'touch': 1,\n",
      "          'applied': 1,\n",
      "          'sweetness': 1,\n",
      "          'candy': 1,\n",
      "          'apple': 1,\n",
      "          'usually': 1,\n",
      "          'channeled': 1,\n",
      "          'depps': 1,\n",
      "          'performance': 1,\n",
      "          'lovable': 1,\n",
      "          'geek': 1,\n",
      "          'longer': 1,\n",
      "          'mildmannered': 1,\n",
      "          'school': 1,\n",
      "          'teacher': 1,\n",
      "          'attains': 1,\n",
      "          'cowardly': 1,\n",
      "          'qualities': 1,\n",
      "          'nthis': 1,\n",
      "          'certainly': 1,\n",
      "          'alteration': 1,\n",
      "          'thats': 1,\n",
      "          'made': 1,\n",
      "          'progresses': 1,\n",
      "          'becomes': 1,\n",
      "          'apparent': 1,\n",
      "          'concerned': 1,\n",
      "          'momentum': 1,\n",
      "          'slowed': 1,\n",
      "          'considerably': 1,\n",
      "          'begins': 1,\n",
      "          'piecing': 1,\n",
      "          'together': 1,\n",
      "          'audience': 1,\n",
      "          'issue': 1,\n",
      "          'wish': 1,\n",
      "          'solved': 1,\n",
      "          'nits': 1,\n",
      "          'ulterior': 1,\n",
      "          'motive': 1,\n",
      "          'nstill': 1,\n",
      "          'captivated': 1,\n",
      "          'breathtaking': 1,\n",
      "          'technical': 1,\n",
      "          'detail': 1,\n",
      "          'keen': 1,\n",
      "          'eye': 1,\n",
      "          'capture': 1,\n",
      "          'attention': 1,\n",
      "          'costuming': 1,\n",
      "          'exceptional': 1,\n",
      "          'dialogue': 1,\n",
      "          'crisp': 1,\n",
      "          'throughout': 1,\n",
      "          'recognizable': 1,\n",
      "          'script': 1,\n",
      "          'refined': 1,\n",
      "          'awardwinning': 1,\n",
      "          'playwright': 1,\n",
      "          'tom': 1,\n",
      "          'stoppard': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'exhibits': 1,\n",
      "          'color': 1,\n",
      "          'playfulness': 1,\n",
      "          'na': 1,\n",
      "          'blonde': 1,\n",
      "          'christina': 1,\n",
      "          'ricci': 1,\n",
      "          'fine': 1,\n",
      "          'form': 1,\n",
      "          'tassels': 1,\n",
      "          'daughter': 1,\n",
      "          'katrina': 1,\n",
      "          'unlikely': 1,\n",
      "          'romance': 1,\n",
      "          'surprisingly': 1,\n",
      "          'consistent': 1,\n",
      "          'nwalken': 1,\n",
      "          'gough': 1,\n",
      "          'appeared': 1,\n",
      "          'batman': 1,\n",
      "          'films': 1,\n",
      "          'miranda': 1,\n",
      "          'richardson': 1,\n",
      "          'tackling': 1,\n",
      "          'roles': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'strengths': 1,\n",
      "          'behind': 1,\n",
      "          'lie': 1,\n",
      "          'within': 1,\n",
      "          'central': 1,\n",
      "          'trio': 1,\n",
      "          'director': 1,\n",
      "          'hunts': 1,\n",
      "          'ruthless': 1,\n",
      "          'accuracy': 1,\n",
      "          'nall': 1,\n",
      "          'seriously': 1,\n",
      "          'course': 1,\n",
      "          'nsleepy': 1,\n",
      "          'lavish': 1,\n",
      "          'frightening': 1,\n",
      "          'altogether': 1,\n",
      "          'amusing': 1,\n",
      "          'reworking': 1,\n",
      "          'people': 1,\n",
      "          'cherished': 1,\n",
      "          'children': 1,\n",
      "          'nif': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'decent': 1,\n",
      "          'head': 1,\n",
      "          'shoulders': 1,\n",
      "          'youll': 1,\n",
      "          'good': 1,\n",
      "          'sense': 1,\n",
      "          'gallop': 1,\n",
      "          'theater': 1,\n",
      "          'one': 1,\n",
      "          'last': 1,\n",
      "          'time': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'kids': 5,\n",
      "          'nwill': 4,\n",
      "          'n': 4,\n",
      "          'good': 3,\n",
      "          'really': 3,\n",
      "          'movie': 3,\n",
      "          'predictable': 3,\n",
      "          'one': 3,\n",
      "          'bad': 2,\n",
      "          'single': 2,\n",
      "          'working': 2,\n",
      "          'parents': 2,\n",
      "          'cute': 2,\n",
      "          'thrown': 2,\n",
      "          'nbut': 2,\n",
      "          'nit': 2,\n",
      "          'lot': 2,\n",
      "          'nin': 2,\n",
      "          'though': 2,\n",
      "          'think': 2,\n",
      "          'together': 2,\n",
      "          'get': 2,\n",
      "          'another': 2,\n",
      "          'hate': 2,\n",
      "          'much': 2,\n",
      "          'nthe': 2,\n",
      "          'screwball': 2,\n",
      "          'certain': 2,\n",
      "          'especially': 2,\n",
      "          'pretty': 2,\n",
      "          'ok': 1,\n",
      "          'admit': 1,\n",
      "          'attitude': 1,\n",
      "          'start': 1,\n",
      "          'na': 1,\n",
      "          'romantic': 1,\n",
      "          'comedy': 1,\n",
      "          'trials': 1,\n",
      "          'tribulations': 1,\n",
      "          'nwith': 1,\n",
      "          'couple': 1,\n",
      "          'incredibly': 1,\n",
      "          'measure': 1,\n",
      "          'nyuck': 1,\n",
      "          'least': 1,\n",
      "          'addition': 1,\n",
      "          'typical': 1,\n",
      "          'recent': 1,\n",
      "          'movies': 1,\n",
      "          'glorified': 1,\n",
      "          'madefortv': 1,\n",
      "          'longer': 1,\n",
      "          'bigger': 1,\n",
      "          'stars': 1,\n",
      "          'pay': 1,\n",
      "          'see': 1,\n",
      "          'win': 1,\n",
      "          'even': 1,\n",
      "          'painfully': 1,\n",
      "          'njust': 1,\n",
      "          'two': 1,\n",
      "          'due': 1,\n",
      "          'missed': 1,\n",
      "          'field': 1,\n",
      "          'trip': 1,\n",
      "          'nthrough': 1,\n",
      "          'day': 1,\n",
      "          'near': 1,\n",
      "          'disasters': 1,\n",
      "          'cont': 1,\n",
      "          'inually': 1,\n",
      "          'meet': 1,\n",
      "          'anothers': 1,\n",
      "          'way': 1,\n",
      "          'cause': 1,\n",
      "          'trouble': 1,\n",
      "          'generally': 1,\n",
      "          'insult': 1,\n",
      "          'every': 1,\n",
      "          'opportunity': 1,\n",
      "          'fact': 1,\n",
      "          'know': 1,\n",
      "          'soon': 1,\n",
      "          'love': 1,\n",
      "          'people': 1,\n",
      "          'lovers': 1,\n",
      "          'married': 1,\n",
      "          'couples': 1,\n",
      "          'nso': 1,\n",
      "          'comedies': 1,\n",
      "          'classical': 1,\n",
      "          'hollywood': 1,\n",
      "          'cinema': 1,\n",
      "          'genre': 1,\n",
      "          'obviously': 1,\n",
      "          'hoffmans': 1,\n",
      "          'model': 1,\n",
      "          'fired': 1,\n",
      "          'yuppie': 1,\n",
      "          'jobs': 1,\n",
      "          'make': 1,\n",
      "          'big': 1,\n",
      "          'soccer': 1,\n",
      "          'game': 1,\n",
      "          'important': 1,\n",
      "          'pfeiffer': 1,\n",
      "          'realize': 1,\n",
      "          'jerk': 1,\n",
      "          'exhusband': 1,\n",
      "          'drummer': 1,\n",
      "          'bruce': 1,\n",
      "          'springsteen': 1,\n",
      "          'arent': 1,\n",
      "          'finally': 1,\n",
      "          'kiss': 1,\n",
      "          'nwell': 1,\n",
      "          'expect': 1,\n",
      "          'amount': 1,\n",
      "          'satisfaction': 1,\n",
      "          'expectations': 1,\n",
      "          'fulfilled': 1,\n",
      "          'done': 1,\n",
      "          'humour': 1,\n",
      "          'along': 1,\n",
      "          'lack': 1,\n",
      "          'sticky': 1,\n",
      "          'sentimentality': 1,\n",
      "          'npfeiffer': 1,\n",
      "          'clooney': 1,\n",
      "          'chemistry': 1,\n",
      "          'surprisingly': 1,\n",
      "          'charming': 1,\n",
      "          'neither': 1,\n",
      "          'shoved': 1,\n",
      "          'background': 1,\n",
      "          'allowed': 1,\n",
      "          'steal': 1,\n",
      "          'show': 1,\n",
      "          'none': 1,\n",
      "          'word': 1,\n",
      "          'caution': 1,\n",
      "          'nthis': 1,\n",
      "          'billed': 1,\n",
      "          'places': 1,\n",
      "          'family': 1,\n",
      "          'ndont': 1,\n",
      "          'let': 1,\n",
      "          'stop': 1,\n",
      "          'nhowever': 1,\n",
      "          'boys': 1,\n",
      "          'would': 1,\n",
      "          'bored': 1,\n",
      "          'move': 1,\n",
      "          'nafter': 1,\n",
      "          'nobody': 1,\n",
      "          'gets': 1,\n",
      "          'killed': 1,\n",
      "          'explosions': 1,\n",
      "          'nall': 1,\n",
      "          'nonoffensive': 1,\n",
      "          'date': 1,\n",
      "          'flying': 1,\n",
      "          'inkpot': 1,\n",
      "          'rating': 1,\n",
      "          'system': 1,\n",
      "          'wait': 1,\n",
      "          'tv2': 1,\n",
      "          'broadcast': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'better': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bowfinger': 8,\n",
      "          'nthe': 6,\n",
      "          'ramsey': 6,\n",
      "          'murphy': 5,\n",
      "          'movie': 4,\n",
      "          'martin': 4,\n",
      "          'film': 4,\n",
      "          'star': 4,\n",
      "          'scenes': 4,\n",
      "          'one': 3,\n",
      "          'hollywood': 3,\n",
      "          'comedy': 3,\n",
      "          'behind': 3,\n",
      "          'producer': 3,\n",
      "          'kit': 3,\n",
      "          'jiff': 3,\n",
      "          'making': 2,\n",
      "          'bad': 2,\n",
      "          'screenplay': 2,\n",
      "          'entire': 2,\n",
      "          'premise': 2,\n",
      "          'always': 2,\n",
      "          'never': 2,\n",
      "          'new': 2,\n",
      "          'script': 2,\n",
      "          'entitled': 2,\n",
      "          'chubby': 2,\n",
      "          'rain': 2,\n",
      "          'caught': 2,\n",
      "          'bowfingers': 2,\n",
      "          'nafter': 2,\n",
      "          'named': 2,\n",
      "          'made': 2,\n",
      "          'nbut': 2,\n",
      "          'eddie': 2,\n",
      "          'still': 2,\n",
      "          'cast': 2,\n",
      "          'actors': 2,\n",
      "          'actually': 2,\n",
      "          'even': 2,\n",
      "          'nthese': 2,\n",
      "          'include': 2,\n",
      "          'attempting': 2,\n",
      "          'supporting': 2,\n",
      "          'actress': 2,\n",
      "          'heather': 2,\n",
      "          'graham': 2,\n",
      "          'high': 2,\n",
      "          'real': 2,\n",
      "          'nthis': 2,\n",
      "          'every': 2,\n",
      "          'well': 2,\n",
      "          'good': 1,\n",
      "          'written': 1,\n",
      "          'costar': 1,\n",
      "          'steve': 1,\n",
      "          'skewers': 1,\n",
      "          'everything': 1,\n",
      "          'cheesy': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'movies': 1,\n",
      "          'chopsocky': 1,\n",
      "          'fight': 1,\n",
      "          'sequences': 1,\n",
      "          'crafty': 1,\n",
      "          'accomplished': 1,\n",
      "          'manner': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nanyone': 1,\n",
      "          'knows': 1,\n",
      "          'association': 1,\n",
      "          'moviemaking': 1,\n",
      "          'thoroughly': 1,\n",
      "          'enjoy': 1,\n",
      "          'clever': 1,\n",
      "          'duration': 1,\n",
      "          'central': 1,\n",
      "          'inspired': 1,\n",
      "          'promising': 1,\n",
      "          'nbobby': 1,\n",
      "          'cheapskate': 1,\n",
      "          'smalltime': 1,\n",
      "          'dreamed': 1,\n",
      "          'successful': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'attained': 1,\n",
      "          'proper': 1,\n",
      "          'tools': 1,\n",
      "          'na': 1,\n",
      "          'alien': 1,\n",
      "          'invasion': 1,\n",
      "          'story': 1,\n",
      "          'eye': 1,\n",
      "          'confronting': 1,\n",
      "          'bigname': 1,\n",
      "          'jerry': 1,\n",
      "          'renfro': 1,\n",
      "          'robert': 1,\n",
      "          'downey': 1,\n",
      "          'jr': 1,\n",
      "          'restaurant': 1,\n",
      "          'agreement': 1,\n",
      "          'finance': 1,\n",
      "          'first': 1,\n",
      "          'must': 1,\n",
      "          'get': 1,\n",
      "          'renowned': 1,\n",
      "          'action': 1,\n",
      "          'sign': 1,\n",
      "          'project': 1,\n",
      "          'nkit': 1,\n",
      "          'turns': 1,\n",
      "          'offer': 1,\n",
      "          'immediately': 1,\n",
      "          'intent': 1,\n",
      "          'shoot': 1,\n",
      "          'emptying': 1,\n",
      "          'life': 1,\n",
      "          'savings': 1,\n",
      "          'hapless': 1,\n",
      "          'tells': 1,\n",
      "          'remaining': 1,\n",
      "          'crew': 1,\n",
      "          'involved': 1,\n",
      "          'prepares': 1,\n",
      "          'without': 1,\n",
      "          'stars': 1,\n",
      "          'knowledge': 1,\n",
      "          'confront': 1,\n",
      "          'street': 1,\n",
      "          'saying': 1,\n",
      "          'lines': 1,\n",
      "          'hidden': 1,\n",
      "          'cameras': 1,\n",
      "          'peek': 1,\n",
      "          'bushes': 1,\n",
      "          'capture': 1,\n",
      "          'footage': 1,\n",
      "          'unknowing': 1,\n",
      "          'terrified': 1,\n",
      "          'aliens': 1,\n",
      "          'abducted': 1,\n",
      "          'brought': 1,\n",
      "          'believe': 1,\n",
      "          'pod': 1,\n",
      "          'people': 1,\n",
      "          'nwhen': 1,\n",
      "          'conditions': 1,\n",
      "          'become': 1,\n",
      "          'treacherous': 1,\n",
      "          'forced': 1,\n",
      "          'hire': 1,\n",
      "          'lookalike': 1,\n",
      "          'also': 1,\n",
      "          'sweetnatured': 1,\n",
      "          'dork': 1,\n",
      "          'runs': 1,\n",
      "          'coffee': 1,\n",
      "          'inbetween': 1,\n",
      "          'shooting': 1,\n",
      "          'vital': 1,\n",
      "          'suicide': 1,\n",
      "          'run': 1,\n",
      "          'across': 1,\n",
      "          '8lane': 1,\n",
      "          'freeway': 1,\n",
      "          'hot': 1,\n",
      "          'involving': 1,\n",
      "          'daisy': 1,\n",
      "          'removing': 1,\n",
      "          'blouse': 1,\n",
      "          'nbowfinger': 1,\n",
      "          'takes': 1,\n",
      "          'sweet': 1,\n",
      "          'time': 1,\n",
      "          'getting': 1,\n",
      "          'started': 1,\n",
      "          'plot': 1,\n",
      "          'switches': 1,\n",
      "          'gear': 1,\n",
      "          'great': 1,\n",
      "          'things': 1,\n",
      "          'happen': 1,\n",
      "          'ncertain': 1,\n",
      "          'precisely': 1,\n",
      "          'executed': 1,\n",
      "          'perfectly': 1,\n",
      "          'framing': 1,\n",
      "          'moments': 1,\n",
      "          'absolutely': 1,\n",
      "          'falldown': 1,\n",
      "          'funny': 1,\n",
      "          'nno': 1,\n",
      "          'hilarious': 1,\n",
      "          'nstandouts': 1,\n",
      "          'chase': 1,\n",
      "          'parking': 1,\n",
      "          'garage': 1,\n",
      "          'whos': 1,\n",
      "          'supposed': 1,\n",
      "          'followed': 1,\n",
      "          'keeps': 1,\n",
      "          'checking': 1,\n",
      "          'investigate': 1,\n",
      "          'strange': 1,\n",
      "          'tapping': 1,\n",
      "          'noise': 1,\n",
      "          'dog': 1,\n",
      "          'heels': 1,\n",
      "          'nand': 1,\n",
      "          'try': 1,\n",
      "          'laugh': 1,\n",
      "          'climactic': 1,\n",
      "          'kungfu': 1,\n",
      "          'sequence': 1,\n",
      "          'featuring': 1,\n",
      "          'excerpt': 1,\n",
      "          'another': 1,\n",
      "          'classic': 1,\n",
      "          'fake': 1,\n",
      "          'purse': 1,\n",
      "          'ninjas': 1,\n",
      "          'nwhile': 1,\n",
      "          '97minutes': 1,\n",
      "          'isnt': 1,\n",
      "          'target': 1,\n",
      "          'individual': 1,\n",
      "          'may': 1,\n",
      "          'rolling': 1,\n",
      "          'aisles': 1,\n",
      "          'nmasterful': 1,\n",
      "          'director': 1,\n",
      "          'frank': 1,\n",
      "          'oz': 1,\n",
      "          'dirty': 1,\n",
      "          'rotten': 1,\n",
      "          'scoundrels': 1,\n",
      "          'ensures': 1,\n",
      "          'quality': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'aided': 1,\n",
      "          'immensely': 1,\n",
      "          'martins': 1,\n",
      "          'sharpedged': 1,\n",
      "          'nhowever': 1,\n",
      "          'onscreen': 1,\n",
      "          'finest': 1,\n",
      "          'work': 1,\n",
      "          'since': 1,\n",
      "          'breakthrough': 1,\n",
      "          'market': 1,\n",
      "          'early': 1,\n",
      "          '80s': 1,\n",
      "          'nmurphy': 1,\n",
      "          'excels': 1,\n",
      "          'corner': 1,\n",
      "          'succeeding': 1,\n",
      "          'presenting': 1,\n",
      "          'believable': 1,\n",
      "          'paranoia': 1,\n",
      "          'eyes': 1,\n",
      "          'creating': 1,\n",
      "          'likable': 1,\n",
      "          'buffoon': 1,\n",
      "          'three': 1,\n",
      "          'talented': 1,\n",
      "          'comic': 1,\n",
      "          'minds': 1,\n",
      "          'squeezed': 1,\n",
      "          'morsel': 1,\n",
      "          'potential': 1,\n",
      "          'reward': 1,\n",
      "          'virtually': 1,\n",
      "          'guaranteed': 1,\n",
      "          'helping': 1,\n",
      "          'hearty': 1,\n",
      "          'laughs': 1,\n",
      "          'nsteve': 1,\n",
      "          'generates': 1,\n",
      "          'power': 1,\n",
      "          'fuels': 1,\n",
      "          'summertime': 1,\n",
      "          'unlike': 1,\n",
      "          'something': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'south': 1,\n",
      "          'park': 1,\n",
      "          'doesnt': 1,\n",
      "          'break': 1,\n",
      "          'rules': 1,\n",
      "          'uproarious': 1,\n",
      "          'perhaps': 1,\n",
      "          'sidesplitting': 1,\n",
      "          'anything': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'season': 1,\n",
      "          'including': 1,\n",
      "          'christine': 1,\n",
      "          'baranski': 1,\n",
      "          'workloving': 1,\n",
      "          'jamie': 1,\n",
      "          'kennedy': 1,\n",
      "          'cameraman': 1,\n",
      "          'perform': 1,\n",
      "          'within': 1,\n",
      "          'limits': 1,\n",
      "          'presence': 1,\n",
      "          'demands': 1,\n",
      "          'attention': 1,\n",
      "          'placed': 1,\n",
      "          'next': 1,\n",
      "          'beautiful': 1,\n",
      "          'young': 1,\n",
      "          'plans': 1,\n",
      "          'sleep': 1,\n",
      "          'way': 1,\n",
      "          'top': 1,\n",
      "          'ngraham': 1,\n",
      "          'stardom': 1,\n",
      "          'appearing': 1,\n",
      "          'powers': 1,\n",
      "          'girl': 1,\n",
      "          'ap2': 1,\n",
      "          'displays': 1,\n",
      "          'cheerful': 1,\n",
      "          'naive': 1,\n",
      "          'persona': 1,\n",
      "          'nicely': 1,\n",
      "          'corresponds': 1,\n",
      "          'wackiness': 1,\n",
      "          'ni': 1,\n",
      "          'wouldnt': 1,\n",
      "          'dead': 1,\n",
      "          'buying': 1,\n",
      "          'ticket': 1,\n",
      "          'watching': 1,\n",
      "          'came': 1,\n",
      "          'certainly': 1,\n",
      "          'entertaining': 1,\n",
      "          'enough': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'two': 9,\n",
      "          'man': 6,\n",
      "          'men': 5,\n",
      "          'vincent': 5,\n",
      "          'jules': 5,\n",
      "          'nthe': 5,\n",
      "          'dialogue': 4,\n",
      "          'marsellus': 4,\n",
      "          'fiction': 3,\n",
      "          'quentin': 3,\n",
      "          'one': 3,\n",
      "          'films': 3,\n",
      "          'perfect': 3,\n",
      "          'tarantino': 3,\n",
      "          'characters': 3,\n",
      "          'butch': 3,\n",
      "          'pumpkin': 3,\n",
      "          'honey': 3,\n",
      "          'bunny': 3,\n",
      "          'mia': 3,\n",
      "          'nafter': 3,\n",
      "          'rather': 3,\n",
      "          'pulp': 2,\n",
      "          'tarantinos': 2,\n",
      "          'superb': 2,\n",
      "          'reservoir': 2,\n",
      "          'dogs': 2,\n",
      "          'alltime': 2,\n",
      "          'greatly': 2,\n",
      "          'ahead': 2,\n",
      "          'movie': 2,\n",
      "          'violence': 2,\n",
      "          'major': 2,\n",
      "          'terrific': 2,\n",
      "          'acting': 2,\n",
      "          'actor': 2,\n",
      "          'hit': 2,\n",
      "          'vega': 2,\n",
      "          'nthese': 2,\n",
      "          'boxer': 2,\n",
      "          'coolidge': 2,\n",
      "          'big': 2,\n",
      "          'wallace': 2,\n",
      "          'young': 2,\n",
      "          'wife': 2,\n",
      "          'lance': 2,\n",
      "          'end': 2,\n",
      "          'stories': 2,\n",
      "          'seem': 2,\n",
      "          'coffee': 2,\n",
      "          'shop': 2,\n",
      "          'things': 2,\n",
      "          'foot': 2,\n",
      "          'apartment': 2,\n",
      "          'recover': 2,\n",
      "          'briefcase': 2,\n",
      "          'especially': 2,\n",
      "          'nthis': 2,\n",
      "          'completely': 2,\n",
      "          'take': 2,\n",
      "          'new': 2,\n",
      "          'nvincent': 2,\n",
      "          'date': 2,\n",
      "          'proves': 2,\n",
      "          'anxiously': 1,\n",
      "          'awaited': 1,\n",
      "          'followup': 1,\n",
      "          'absolutely': 1,\n",
      "          'without': 1,\n",
      "          'doubt': 1,\n",
      "          'progressing': 1,\n",
      "          'talked': 1,\n",
      "          'loved': 1,\n",
      "          'hated': 1,\n",
      "          'nin': 1,\n",
      "          'fairness': 1,\n",
      "          'noted': 1,\n",
      "          'love': 1,\n",
      "          'outnumber': 1,\n",
      "          'hate': 1,\n",
      "          'nas': 1,\n",
      "          'wasnt': 1,\n",
      "          'went': 1,\n",
      "          'improved': 1,\n",
      "          'perfection': 1,\n",
      "          'creating': 1,\n",
      "          'fastpaced': 1,\n",
      "          'hard': 1,\n",
      "          'talking': 1,\n",
      "          'roller': 1,\n",
      "          'coaster': 1,\n",
      "          'ride': 1,\n",
      "          'combines': 1,\n",
      "          'extraordinary': 1,\n",
      "          'seemingly': 1,\n",
      "          'way': 1,\n",
      "          'nevery': 1,\n",
      "          'character': 1,\n",
      "          'represented': 1,\n",
      "          'performance': 1,\n",
      "          'nto': 1,\n",
      "          'begin': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'winnfield': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'jackson': 1,\n",
      "          'work': 1,\n",
      "          'together': 1,\n",
      "          'perfectly': 1,\n",
      "          'performances': 1,\n",
      "          'nearly': 1,\n",
      "          'ntravolta': 1,\n",
      "          'fact': 1,\n",
      "          'still': 1,\n",
      "          'trying': 1,\n",
      "          'get': 1,\n",
      "          'role': 1,\n",
      "          'nif': 1,\n",
      "          'enough': 1,\n",
      "          'theres': 1,\n",
      "          'struggling': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'smalltime': 1,\n",
      "          'criminals': 1,\n",
      "          'tim': 1,\n",
      "          'roth': 1,\n",
      "          'amanda': 1,\n",
      "          'plummer': 1,\n",
      "          'charge': 1,\n",
      "          'ving': 1,\n",
      "          'rhames': 1,\n",
      "          'attractive': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'problem': 1,\n",
      "          'solver': 1,\n",
      "          'wolf': 1,\n",
      "          'harvey': 1,\n",
      "          'keitel': 1,\n",
      "          'nsmaller': 1,\n",
      "          'roles': 1,\n",
      "          'equally': 1,\n",
      "          'handed': 1,\n",
      "          'jimmie': 1,\n",
      "          'married': 1,\n",
      "          'gets': 1,\n",
      "          'caught': 1,\n",
      "          'serious': 1,\n",
      "          'gangster': 1,\n",
      "          'business': 1,\n",
      "          'eric': 1,\n",
      "          'stoltz': 1,\n",
      "          'farout': 1,\n",
      "          'drug': 1,\n",
      "          'dealer': 1,\n",
      "          'well': 1,\n",
      "          'maynard': 1,\n",
      "          'duane': 1,\n",
      "          'whitaker': 1,\n",
      "          'zed': 1,\n",
      "          'peter': 1,\n",
      "          'greene': 1,\n",
      "          'hillbillies': 1,\n",
      "          'behind': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'seen': 1,\n",
      "          'disturbing': 1,\n",
      "          'scene': 1,\n",
      "          'towards': 1,\n",
      "          'interweaves': 1,\n",
      "          'three': 1,\n",
      "          'first': 1,\n",
      "          'nothing': 1,\n",
      "          'alike': 1,\n",
      "          'later': 1,\n",
      "          'prove': 1,\n",
      "          'critical': 1,\n",
      "          'begins': 1,\n",
      "          'small': 1,\n",
      "          'discussing': 1,\n",
      "          'recent': 1,\n",
      "          'robberies': 1,\n",
      "          'holdups': 1,\n",
      "          'quickly': 1,\n",
      "          'decide': 1,\n",
      "          'hold': 1,\n",
      "          'unknowing': 1,\n",
      "          'lies': 1,\n",
      "          'focuses': 1,\n",
      "          'time': 1,\n",
      "          'lifestyle': 1,\n",
      "          'nutilizing': 1,\n",
      "          'unforgettable': 1,\n",
      "          'discuss': 1,\n",
      "          'hamburgers': 1,\n",
      "          'massages': 1,\n",
      "          'bust': 1,\n",
      "          'terrorize': 1,\n",
      "          'occupants': 1,\n",
      "          'sent': 1,\n",
      "          'mysterious': 1,\n",
      "          'boss': 1,\n",
      "          'basically': 1,\n",
      "          'toying': 1,\n",
      "          'unfortunate': 1,\n",
      "          'brett': 1,\n",
      "          'frank': 1,\n",
      "          'whaley': 1,\n",
      "          'complete': 1,\n",
      "          'mission': 1,\n",
      "          'jumps': 1,\n",
      "          'bathroom': 1,\n",
      "          '357': 1,\n",
      "          'n': 1,\n",
      "          'hand': 1,\n",
      "          'cannon': 1,\n",
      "          'shooting': 1,\n",
      "          'gangsters': 1,\n",
      "          'nhe': 1,\n",
      "          'somehow': 1,\n",
      "          'misses': 1,\n",
      "          'leading': 1,\n",
      "          'cite': 1,\n",
      "          'divine': 1,\n",
      "          'intervention': 1,\n",
      "          'also': 1,\n",
      "          'basis': 1,\n",
      "          'nowfamous': 1,\n",
      "          'shifts': 1,\n",
      "          'focus': 1,\n",
      "          'boxing': 1,\n",
      "          'escapades': 1,\n",
      "          'nbutch': 1,\n",
      "          'ordered': 1,\n",
      "          'fall': 1,\n",
      "          'latest': 1,\n",
      "          'fight': 1,\n",
      "          'vows': 1,\n",
      "          'find': 1,\n",
      "          'wherever': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'able': 1,\n",
      "          'enjoy': 1,\n",
      "          'fortune': 1,\n",
      "          'meanwhile': 1,\n",
      "          'honor': 1,\n",
      "          'taking': 1,\n",
      "          'town': 1,\n",
      "          'obviously': 1,\n",
      "          'nervous': 1,\n",
      "          'hearing': 1,\n",
      "          'tale': 1,\n",
      "          'thrown': 1,\n",
      "          'window': 1,\n",
      "          'supposedly': 1,\n",
      "          'giving': 1,\n",
      "          'massage': 1,\n",
      "          'seems': 1,\n",
      "          'smoothly': 1,\n",
      "          'turn': 1,\n",
      "          'worst': 1,\n",
      "          'hands': 1,\n",
      "          'vincents': 1,\n",
      "          'highpriced': 1,\n",
      "          'heroin': 1,\n",
      "          'dubbed': 1,\n",
      "          'monster': 1,\n",
      "          'neach': 1,\n",
      "          'story': 1,\n",
      "          'continually': 1,\n",
      "          'progresses': 1,\n",
      "          'amazing': 1,\n",
      "          'events': 1,\n",
      "          'occur': 1,\n",
      "          'neventually': 1,\n",
      "          'meet': 1,\n",
      "          'holding': 1,\n",
      "          'restaurant': 1,\n",
      "          'happens': 1,\n",
      "          'contain': 1,\n",
      "          'npulp': 1,\n",
      "          'definitely': 1,\n",
      "          'best': 1,\n",
      "          'decade': 1,\n",
      "          'possibly': 1,\n",
      "          'nalong': 1,\n",
      "          'action': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'latch': 1,\n",
      "          'onto': 1,\n",
      "          'want': 1,\n",
      "          'release': 1,\n",
      "          'sunk': 1,\n",
      "          'claws': 1,\n",
      "          'nand': 1,\n",
      "          'fans': 1,\n",
      "          'proved': 1,\n",
      "          'easy': 1,\n",
      "          'task': 1,\n",
      "          'although': 1,\n",
      "          'times': 1,\n",
      "          'graphic': 1,\n",
      "          'images': 1,\n",
      "          'language': 1,\n",
      "          'may': 1,\n",
      "          'bit': 1,\n",
      "          'overpowering': 1,\n",
      "          'nsurely': 1,\n",
      "          'fame': 1,\n",
      "          'escalated': 1,\n",
      "          'fade': 1,\n",
      "          'existence': 1,\n",
      "          'soon': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 22,\n",
      "          'xfiles': 8,\n",
      "          'movies': 8,\n",
      "          'summer': 8,\n",
      "          'nthe': 7,\n",
      "          'nyou': 7,\n",
      "          'time': 7,\n",
      "          'mulder': 7,\n",
      "          'series': 5,\n",
      "          'several': 5,\n",
      "          'know': 5,\n",
      "          'go': 5,\n",
      "          'duchovny': 4,\n",
      "          'never': 4,\n",
      "          'effects': 4,\n",
      "          'good': 4,\n",
      "          'monster': 4,\n",
      "          'half': 4,\n",
      "          'one': 4,\n",
      "          'think': 3,\n",
      "          'first': 3,\n",
      "          'thing': 3,\n",
      "          'looks': 3,\n",
      "          'many': 3,\n",
      "          'great': 3,\n",
      "          'nin': 3,\n",
      "          'ni': 3,\n",
      "          'need': 3,\n",
      "          'maybe': 3,\n",
      "          'get': 3,\n",
      "          'coming': 3,\n",
      "          'scary': 3,\n",
      "          'take': 3,\n",
      "          'last': 3,\n",
      "          'would': 3,\n",
      "          'like': 3,\n",
      "          'right': 3,\n",
      "          'scenes': 3,\n",
      "          'scene': 3,\n",
      "          'nif': 3,\n",
      "          'godzilla': 3,\n",
      "          'twice': 3,\n",
      "          'fan': 2,\n",
      "          'let': 2,\n",
      "          'experience': 2,\n",
      "          'fully': 2,\n",
      "          'enjoy': 2,\n",
      "          'fans': 2,\n",
      "          'nonfans': 2,\n",
      "          'behind': 2,\n",
      "          'nbut': 2,\n",
      "          'later': 2,\n",
      "          'provide': 2,\n",
      "          'going': 2,\n",
      "          'feel': 2,\n",
      "          'watch': 2,\n",
      "          'nothing': 2,\n",
      "          'kind': 2,\n",
      "          'episodes': 2,\n",
      "          'watched': 2,\n",
      "          'far': 2,\n",
      "          'chance': 2,\n",
      "          'hill': 2,\n",
      "          'sound': 2,\n",
      "          'unlike': 2,\n",
      "          'nthis': 2,\n",
      "          'best': 2,\n",
      "          'way': 2,\n",
      "          'always': 2,\n",
      "          'critter': 2,\n",
      "          'jump': 2,\n",
      "          'heroes': 2,\n",
      "          'fact': 2,\n",
      "          'might': 2,\n",
      "          'much': 2,\n",
      "          'saw': 2,\n",
      "          'creature': 2,\n",
      "          'nso': 2,\n",
      "          'even': 2,\n",
      "          'see': 2,\n",
      "          'nno': 2,\n",
      "          'gets': 2,\n",
      "          'find': 2,\n",
      "          'dialogue': 2,\n",
      "          'every': 2,\n",
      "          'happens': 2,\n",
      "          'purpose': 2,\n",
      "          'something': 2,\n",
      "          'enough': 2,\n",
      "          'important': 2,\n",
      "          'people': 2,\n",
      "          'truman': 2,\n",
      "          'show': 2,\n",
      "          'nits': 2,\n",
      "          'four': 2,\n",
      "          'five': 2,\n",
      "          'stars': 2,\n",
      "          'give': 2,\n",
      "          'truck': 2,\n",
      "          'miles': 2,\n",
      "          'driving': 2,\n",
      "          'reviewer': 1,\n",
      "          'mention': 1,\n",
      "          'wether': 1,\n",
      "          'nfirst': 1,\n",
      "          'assure': 1,\n",
      "          'prior': 1,\n",
      "          'required': 1,\n",
      "          'producers': 1,\n",
      "          'stupid': 1,\n",
      "          'making': 1,\n",
      "          'profitable': 1,\n",
      "          'reach': 1,\n",
      "          'larger': 1,\n",
      "          'audience': 1,\n",
      "          'ntherefore': 1,\n",
      "          'quite': 1,\n",
      "          'userfriendly': 1,\n",
      "          'naltough': 1,\n",
      "          'fail': 1,\n",
      "          'understand': 1,\n",
      "          'certain': 1,\n",
      "          'emotions': 1,\n",
      "          'characters': 1,\n",
      "          'exchange': 1,\n",
      "          'fear': 1,\n",
      "          'another': 1,\n",
      "          'man': 1,\n",
      "          'adequate': 1,\n",
      "          'background': 1,\n",
      "          'info': 1,\n",
      "          'walked': 1,\n",
      "          'third': 1,\n",
      "          'act': 1,\n",
      "          'opera': 1,\n",
      "          'case': 1,\n",
      "          'answer': 1,\n",
      "          'else': 1,\n",
      "          'prefer': 1,\n",
      "          'millennium': 1,\n",
      "          'nhowever': 1,\n",
      "          'since': 1,\n",
      "          'fox': 1,\n",
      "          'network': 1,\n",
      "          'air': 1,\n",
      "          'key': 1,\n",
      "          'weeks': 1,\n",
      "          'opening': 1,\n",
      "          'weekend': 1,\n",
      "          'took': 1,\n",
      "          'opportunity': 1,\n",
      "          'test': 1,\n",
      "          'taped': 1,\n",
      "          'seing': 1,\n",
      "          'glad': 1,\n",
      "          'report': 1,\n",
      "          'learned': 1,\n",
      "          'new': 1,\n",
      "          'neverything': 1,\n",
      "          'explained': 1,\n",
      "          'viewer': 1,\n",
      "          'others': 1,\n",
      "          'bit': 1,\n",
      "          'make': 1,\n",
      "          'point': 1,\n",
      "          'everybody': 1,\n",
      "          'nwarning': 1,\n",
      "          'major': 1,\n",
      "          'spoilers': 1,\n",
      "          'follow': 1,\n",
      "          'nplease': 1,\n",
      "          'read': 1,\n",
      "          'must': 1,\n",
      "          'able': 1,\n",
      "          'exactly': 1,\n",
      "          'weird': 1,\n",
      "          'hummm': 1,\n",
      "          'warned': 1,\n",
      "          'nexciting': 1,\n",
      "          'special': 1,\n",
      "          'really': 1,\n",
      "          'necessary': 1,\n",
      "          'performances': 1,\n",
      "          'guy': 1,\n",
      "          'thinks': 1,\n",
      "          'david': 1,\n",
      "          'human': 1,\n",
      "          'equivalent': 1,\n",
      "          'wooden': 1,\n",
      "          'plank': 1,\n",
      "          'nfrom': 1,\n",
      "          'start': 1,\n",
      "          'finish': 1,\n",
      "          'nwhen': 1,\n",
      "          'compare': 1,\n",
      "          'summers': 1,\n",
      "          'describe': 1,\n",
      "          'excitement': 1,\n",
      "          'score': 1,\n",
      "          'faceoff': 1,\n",
      "          'deadly': 1,\n",
      "          'use': 1,\n",
      "          'event': 1,\n",
      "          'horizon': 1,\n",
      "          'flick': 1,\n",
      "          'b': 1,\n",
      "          'makes': 1,\n",
      "          'apperance': 1,\n",
      "          'totally': 1,\n",
      "          'blue': 1,\n",
      "          'well': 1,\n",
      "          'bring': 1,\n",
      "          'ear': 1,\n",
      "          'plugs': 1,\n",
      "          'louuuudd': 1,\n",
      "          'scared': 1,\n",
      "          'aliens': 1,\n",
      "          'six': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'kid': 1,\n",
      "          'affraid': 1,\n",
      "          'put': 1,\n",
      "          'feet': 1,\n",
      "          'floor': 1,\n",
      "          'chair': 1,\n",
      "          'keep': 1,\n",
      "          'trying': 1,\n",
      "          'cover': 1,\n",
      "          'throat': 1,\n",
      "          'shirt': 1,\n",
      "          'yeah': 1,\n",
      "          'nand': 1,\n",
      "          'guess': 1,\n",
      "          'imagination': 1,\n",
      "          'works': 1,\n",
      "          'overtime': 1,\n",
      "          'sure': 1,\n",
      "          'beats': 1,\n",
      "          'flawed': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'babyzilla': 1,\n",
      "          'could': 1,\n",
      "          'walk': 1,\n",
      "          'scarier': 1,\n",
      "          'grandma': 1,\n",
      "          'undies': 1,\n",
      "          'type': 1,\n",
      "          'ndo': 1,\n",
      "          'three': 1,\n",
      "          'minutes': 1,\n",
      "          'total': 1,\n",
      "          'definately': 1,\n",
      "          'episode': 1,\n",
      "          'nscully': 1,\n",
      "          'side': 1,\n",
      "          'course': 1,\n",
      "          'gillian': 1,\n",
      "          'anderson': 1,\n",
      "          'screen': 1,\n",
      "          'nshe': 1,\n",
      "          'couple': 1,\n",
      "          'kidnapped': 1,\n",
      "          'hour': 1,\n",
      "          'mulders': 1,\n",
      "          'spotlight': 1,\n",
      "          'nby': 1,\n",
      "          'heard': 1,\n",
      "          'showers': 1,\n",
      "          'independence': 1,\n",
      "          'day': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'spoil': 1,\n",
      "          'lets': 1,\n",
      "          'say': 1,\n",
      "          'due': 1,\n",
      "          'recent': 1,\n",
      "          'events': 1,\n",
      "          'showering': 1,\n",
      "          'instead': 1,\n",
      "          'nto': 1,\n",
      "          'wondering': 1,\n",
      "          'discovers': 1,\n",
      "          'truth': 1,\n",
      "          'indeed': 1,\n",
      "          'ncares': 1,\n",
      "          'anyway': 1,\n",
      "          'complaining': 1,\n",
      "          'interesting': 1,\n",
      "          'director': 1,\n",
      "          'marvelous': 1,\n",
      "          'camera': 1,\n",
      "          'almost': 1,\n",
      "          'looking': 1,\n",
      "          'shoulder': 1,\n",
      "          'open': 1,\n",
      "          'door': 1,\n",
      "          'climb': 1,\n",
      "          'script': 1,\n",
      "          'spotless': 1,\n",
      "          'confused': 1,\n",
      "          'worry': 1,\n",
      "          'become': 1,\n",
      "          'clear': 1,\n",
      "          'stress': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'nunlike': 1,\n",
      "          'nmiss': 1,\n",
      "          'vital': 1,\n",
      "          'piece': 1,\n",
      "          'information': 1,\n",
      "          'talk': 1,\n",
      "          'home': 1,\n",
      "          'tell': 1,\n",
      "          'friends': 1,\n",
      "          'made': 1,\n",
      "          'sense': 1,\n",
      "          'nalso': 1,\n",
      "          'bathroom': 1,\n",
      "          'dont': 1,\n",
      "          'person': 1,\n",
      "          'missed': 1,\n",
      "          'conversation': 1,\n",
      "          'nthere': 1,\n",
      "          'breather': 1,\n",
      "          'anybody': 1,\n",
      "          'n': 1,\n",
      "          'fill': 1,\n",
      "          'suspense': 1,\n",
      "          'action': 1,\n",
      "          'useless': 1,\n",
      "          'subplots': 1,\n",
      "          'crucial': 1,\n",
      "          'serves': 1,\n",
      "          'nwho': 1,\n",
      "          'needs': 1,\n",
      "          'blond': 1,\n",
      "          'chiouaoua': 1,\n",
      "          'big': 1,\n",
      "          'emotional': 1,\n",
      "          'attacks': 1,\n",
      "          'seen': 1,\n",
      "          'ranks': 1,\n",
      "          'higher': 1,\n",
      "          'list': 1,\n",
      "          'id': 1,\n",
      "          'recommend': 1,\n",
      "          'wins': 1,\n",
      "          'nose': 1,\n",
      "          'call': 1,\n",
      "          'nwhat': 1,\n",
      "          'ask': 1,\n",
      "          'excited': 1,\n",
      "          'ncool': 1,\n",
      "          'npulse': 1,\n",
      "          'pounding': 1,\n",
      "          'nhell': 1,\n",
      "          'yes': 1,\n",
      "          'nstrangely': 1,\n",
      "          'hate': 1,\n",
      "          'nit': 1,\n",
      "          'answers': 1,\n",
      "          'shows': 1,\n",
      "          'questions': 1,\n",
      "          'status': 1,\n",
      "          'quo': 1,\n",
      "          'remains': 1,\n",
      "          'nearly': 1,\n",
      "          'scully': 1,\n",
      "          'together': 1,\n",
      "          'nrating': 1,\n",
      "          'yet': 1,\n",
      "          'seat': 1,\n",
      "          'thrills': 1,\n",
      "          'whoah': 1,\n",
      "          'nmoments': 1,\n",
      "          'holy': 1,\n",
      "          'shit': 1,\n",
      "          'hell': 1,\n",
      "          'come': 1,\n",
      "          'heck': 1,\n",
      "          'ending': 1,\n",
      "          'may': 1,\n",
      "          'wonder': 1,\n",
      "          'lost': 1,\n",
      "          'star': 1,\n",
      "          'nwell': 1,\n",
      "          'swore': 1,\n",
      "          'full': 1,\n",
      "          'ice': 1,\n",
      "          'tracks': 1,\n",
      "          'leaves': 1,\n",
      "          'snow': 1,\n",
      "          'stop': 1,\n",
      "          'pretty': 1,\n",
      "          'obvious': 1,\n",
      "          'films': 1,\n",
      "          'makers': 1,\n",
      "          'drove': 1,\n",
      "          'appearance': 1,\n",
      "          'long': 1,\n",
      "          'end': 1,\n",
      "          'dropped': 1,\n",
      "          'sky': 1,\n",
      "          'started': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rushmore': 4,\n",
      "          'one': 4,\n",
      "          'max': 4,\n",
      "          'nthe': 4,\n",
      "          'cross': 4,\n",
      "          'eventually': 3,\n",
      "          'herman': 3,\n",
      "          'miss': 3,\n",
      "          'got': 2,\n",
      "          'feeling': 2,\n",
      "          'scene': 2,\n",
      "          'happy': 2,\n",
      "          'good': 2,\n",
      "          'well': 2,\n",
      "          'academy': 2,\n",
      "          'schools': 2,\n",
      "          'aquarium': 2,\n",
      "          'bill': 2,\n",
      "          'love': 2,\n",
      "          'fun': 2,\n",
      "          'head': 2,\n",
      "          'wasnt': 2,\n",
      "          'film': 2,\n",
      "          'know': 1,\n",
      "          'already': 1,\n",
      "          'opened': 1,\n",
      "          'december': 1,\n",
      "          'finally': 1,\n",
      "          'around': 1,\n",
      "          'seeing': 1,\n",
      "          'last': 1,\n",
      "          'weekend': 1,\n",
      "          'rare': 1,\n",
      "          'oppritunites': 1,\n",
      "          'leave': 1,\n",
      "          'theatre': 1,\n",
      "          'proud': 1,\n",
      "          'paying': 1,\n",
      "          'expensive': 1,\n",
      "          'ticket': 1,\n",
      "          'price': 1,\n",
      "          'nas': 1,\n",
      "          'final': 1,\n",
      "          'closed': 1,\n",
      "          'slowmo': 1,\n",
      "          'fashion': 1,\n",
      "          'felt': 1,\n",
      "          'priveleged': 1,\n",
      "          'enough': 1,\n",
      "          'watch': 1,\n",
      "          'display': 1,\n",
      "          'filmmaking': 1,\n",
      "          'njason': 1,\n",
      "          'schwartzman': 1,\n",
      "          'face': 1,\n",
      "          'oddly': 1,\n",
      "          'intriguing': 1,\n",
      "          'behind': 1,\n",
      "          'large': 1,\n",
      "          'braces': 1,\n",
      "          'glasses': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'fischer': 1,\n",
      "          'known': 1,\n",
      "          'student': 1,\n",
      "          'gets': 1,\n",
      "          'terrible': 1,\n",
      "          'grades': 1,\n",
      "          'compensates': 1,\n",
      "          'organizing': 1,\n",
      "          'clubs': 1,\n",
      "          'organizations': 1,\n",
      "          'e': 1,\n",
      "          'fencing': 1,\n",
      "          'team': 1,\n",
      "          'writing': 1,\n",
      "          'producing': 1,\n",
      "          'school': 1,\n",
      "          'plays': 1,\n",
      "          'often': 1,\n",
      "          'pulling': 1,\n",
      "          'outrageous': 1,\n",
      "          'stunts': 1,\n",
      "          'earns': 1,\n",
      "          'expulsion': 1,\n",
      "          'nthis': 1,\n",
      "          'stunt': 1,\n",
      "          'building': 1,\n",
      "          'baseball': 1,\n",
      "          'diamond': 1,\n",
      "          'plot': 1,\n",
      "          'steal': 1,\n",
      "          'heart': 1,\n",
      "          'widowed': 1,\n",
      "          'elementary': 1,\n",
      "          'teacher': 1,\n",
      "          'rosemary': 1,\n",
      "          'olivia': 1,\n",
      "          'williams': 1,\n",
      "          'nhe': 1,\n",
      "          'funds': 1,\n",
      "          'help': 1,\n",
      "          'millionare': 1,\n",
      "          'blume': 1,\n",
      "          'oscarworthy': 1,\n",
      "          'murray': 1,\n",
      "          'finds': 1,\n",
      "          'falling': 1,\n",
      "          'nrosemary': 1,\n",
      "          'begin': 1,\n",
      "          'datingand': 1,\n",
      "          'begins': 1,\n",
      "          'go': 1,\n",
      "          'battle': 1,\n",
      "          'nherman': 1,\n",
      "          'manages': 1,\n",
      "          'destroy': 1,\n",
      "          'maxs': 1,\n",
      "          'bike': 1,\n",
      "          'cuts': 1,\n",
      "          'hermans': 1,\n",
      "          'brakes': 1,\n",
      "          'goes': 1,\n",
      "          'like': 1,\n",
      "          'nbut': 1,\n",
      "          'realizes': 1,\n",
      "          'young': 1,\n",
      "          'cant': 1,\n",
      "          'stand': 1,\n",
      "          'way': 1,\n",
      "          'two': 1,\n",
      "          'people': 1,\n",
      "          'arts': 1,\n",
      "          'sciences': 1,\n",
      "          'really': 1,\n",
      "          'messed': 1,\n",
      "          'year': 1,\n",
      "          'completely': 1,\n",
      "          'overlooked': 1,\n",
      "          'ask': 1,\n",
      "          'accident': 1,\n",
      "          'nit': 1,\n",
      "          'maybe': 1,\n",
      "          'best': 1,\n",
      "          'picture': 1,\n",
      "          'material': 1,\n",
      "          'certainly': 1,\n",
      "          'deserved': 1,\n",
      "          'screenplay': 1,\n",
      "          'nod': 1,\n",
      "          'instead': 1,\n",
      "          'elizabeth': 1,\n",
      "          'murrays': 1,\n",
      "          'absense': 1,\n",
      "          'ballot': 1,\n",
      "          'complete': 1,\n",
      "          'snub': 1,\n",
      "          'entire': 1,\n",
      "          'mood': 1,\n",
      "          'reason': 1,\n",
      "          'point': 1,\n",
      "          'next': 1,\n",
      "          'turn': 1,\n",
      "          'serious': 1,\n",
      "          'dramatic': 1,\n",
      "          'cinematography': 1,\n",
      "          'gives': 1,\n",
      "          'movie': 1,\n",
      "          'important': 1,\n",
      "          'ni': 1,\n",
      "          'hope': 1,\n",
      "          'overcome': 1,\n",
      "          'oscar': 1,\n",
      "          'snubs': 1,\n",
      "          'enjoyed': 1,\n",
      "          'intelligent': 1,\n",
      "          'goers': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'furtwangler': 8,\n",
      "          'arnold': 6,\n",
      "          'orchestra': 4,\n",
      "          'conductor': 4,\n",
      "          'nazis': 4,\n",
      "          'war': 4,\n",
      "          'nthe': 4,\n",
      "          'investigation': 4,\n",
      "          '4': 4,\n",
      "          'germany': 3,\n",
      "          'much': 3,\n",
      "          'nin': 3,\n",
      "          'one': 3,\n",
      "          'never': 3,\n",
      "          'greatest': 2,\n",
      "          'stayed': 2,\n",
      "          'know': 2,\n",
      "          'crimes': 2,\n",
      "          'high': 2,\n",
      "          '2': 2,\n",
      "          'films': 2,\n",
      "          'hungarian': 2,\n",
      "          'nit': 2,\n",
      "          'classical': 2,\n",
      "          'music': 2,\n",
      "          'assigned': 2,\n",
      "          'perhaps': 2,\n",
      "          'nwhen': 2,\n",
      "          'members': 2,\n",
      "          'told': 2,\n",
      "          'something': 2,\n",
      "          'nas': 2,\n",
      "          'may': 2,\n",
      "          'point': 2,\n",
      "          'nthere': 2,\n",
      "          'getting': 2,\n",
      "          'nperhaps': 2,\n",
      "          'end': 2,\n",
      "          'obvious': 2,\n",
      "          'like': 2,\n",
      "          'stage': 2,\n",
      "          'play': 2,\n",
      "          'scale': 2,\n",
      "          'na': 2,\n",
      "          'could': 2,\n",
      "          'capsule': 1,\n",
      "          'avoids': 1,\n",
      "          'easy': 1,\n",
      "          'answers': 1,\n",
      "          'nwilhelm': 1,\n",
      "          'worlds': 1,\n",
      "          'cooperated': 1,\n",
      "          'nwhat': 1,\n",
      "          'views': 1,\n",
      "          'criminal': 1,\n",
      "          'secret': 1,\n",
      "          'resistance': 1,\n",
      "          'fighter': 1,\n",
      "          'nhow': 1,\n",
      "          'humanity': 1,\n",
      "          'us': 1,\n",
      "          'government': 1,\n",
      "          'investigated': 1,\n",
      "          'dramatization': 1,\n",
      "          'n': 1,\n",
      "          'opinion': 1,\n",
      "          'best': 1,\n",
      "          'last': 1,\n",
      "          'years': 1,\n",
      "          'istvan': 1,\n",
      "          'szabos': 1,\n",
      "          'sunshine': 1,\n",
      "          'covers': 1,\n",
      "          'fortunes': 1,\n",
      "          'jewish': 1,\n",
      "          'family': 1,\n",
      "          'reigns': 1,\n",
      "          'three': 1,\n",
      "          'different': 1,\n",
      "          'regimes': 1,\n",
      "          'aristocrats': 1,\n",
      "          'communists': 1,\n",
      "          'nszabos': 1,\n",
      "          'followup': 1,\n",
      "          'german': 1,\n",
      "          'production': 1,\n",
      "          'limited': 1,\n",
      "          'scope': 1,\n",
      "          'postwar': 1,\n",
      "          'criminally': 1,\n",
      "          'supported': 1,\n",
      "          'opposed': 1,\n",
      "          'nronald': 1,\n",
      "          'harwoods': 1,\n",
      "          'screenplay': 1,\n",
      "          'ambiguously': 1,\n",
      "          'looks': 1,\n",
      "          'great': 1,\n",
      "          'took': 1,\n",
      "          'power': 1,\n",
      "          'became': 1,\n",
      "          'popular': 1,\n",
      "          'third': 1,\n",
      "          'reich': 1,\n",
      "          'nmaj': 1,\n",
      "          'steve': 1,\n",
      "          'played': 1,\n",
      "          'harvey': 1,\n",
      "          'keitel': 1,\n",
      "          'superiors': 1,\n",
      "          'investigate': 1,\n",
      "          'wilhelm': 1,\n",
      "          'stellan': 1,\n",
      "          'skarsgard': 1,\n",
      "          'europes': 1,\n",
      "          'artists': 1,\n",
      "          'fled': 1,\n",
      "          'remained': 1,\n",
      "          'behind': 1,\n",
      "          'conducted': 1,\n",
      "          'hitler': 1,\n",
      "          'henchmen': 1,\n",
      "          'nafter': 1,\n",
      "          'interview': 1,\n",
      "          'appropriate': 1,\n",
      "          'prosecute': 1,\n",
      "          'nhe': 1,\n",
      "          'secretly': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'find': 1,\n",
      "          'guilty': 1,\n",
      "          'nfrom': 1,\n",
      "          'follow': 1,\n",
      "          'learn': 1,\n",
      "          'little': 1,\n",
      "          'interviews': 1,\n",
      "          'wartime': 1,\n",
      "          'starts': 1,\n",
      "          'noticing': 1,\n",
      "          'odd': 1,\n",
      "          'peculiarities': 1,\n",
      "          'conspiracy': 1,\n",
      "          'certain': 1,\n",
      "          'sameness': 1,\n",
      "          'responses': 1,\n",
      "          'cooperation': 1,\n",
      "          'ways': 1,\n",
      "          'managed': 1,\n",
      "          'nif': 1,\n",
      "          'come': 1,\n",
      "          'truth': 1,\n",
      "          'large': 1,\n",
      "          'part': 1,\n",
      "          'mind': 1,\n",
      "          'games': 1,\n",
      "          'uses': 1,\n",
      "          'manipulate': 1,\n",
      "          'interviewees': 1,\n",
      "          'especially': 1,\n",
      "          'nwhere': 1,\n",
      "          'script': 1,\n",
      "          'problems': 1,\n",
      "          'ambiguous': 1,\n",
      "          'resolution': 1,\n",
      "          'final': 1,\n",
      "          'act': 1,\n",
      "          'whether': 1,\n",
      "          'anything': 1,\n",
      "          'established': 1,\n",
      "          'open': 1,\n",
      "          'interpretation': 1,\n",
      "          'better': 1,\n",
      "          'many': 1,\n",
      "          'make': 1,\n",
      "          'audience': 1,\n",
      "          'believe': 1,\n",
      "          'watching': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'finding': 1,\n",
      "          'killer': 1,\n",
      "          'nwe': 1,\n",
      "          'given': 1,\n",
      "          'clues': 1,\n",
      "          'tied': 1,\n",
      "          'basically': 1,\n",
      "          'visual': 1,\n",
      "          'important': 1,\n",
      "          'ncorners': 1,\n",
      "          'cut': 1,\n",
      "          'visually': 1,\n",
      "          'including': 1,\n",
      "          'touches': 1,\n",
      "          'filling': 1,\n",
      "          'windows': 1,\n",
      "          'photographs': 1,\n",
      "          'avoid': 1,\n",
      "          'shoot': 1,\n",
      "          'location': 1,\n",
      "          'centers': 1,\n",
      "          'dialog': 1,\n",
      "          'intriguing': 1,\n",
      "          'ni': 1,\n",
      "          'rate': 1,\n",
      "          '8': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          'piece': 1,\n",
      "          'sloppiness': 1,\n",
      "          'people': 1,\n",
      "          'would': 1,\n",
      "          'notice': 1,\n",
      "          'nat': 1,\n",
      "          'clearly': 1,\n",
      "          'see': 1,\n",
      "          'arnolds': 1,\n",
      "          'desk': 1,\n",
      "          'calendar': 1,\n",
      "          'say': 1,\n",
      "          'jan': 1,\n",
      "          '16': 1,\n",
      "          'tues': 1,\n",
      "          'quick': 1,\n",
      "          'mental': 1,\n",
      "          'calculation': 1,\n",
      "          'combination': 1,\n",
      "          'occur': 1,\n",
      "          '1945': 1,\n",
      "          '1951': 1,\n",
      "          'events': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          '1946': 1,\n",
      "          '1947': 1,\n",
      "          'possible': 1,\n",
      "          'date': 1,\n",
      "          'obtained': 1,\n",
      "          'world': 1,\n",
      "          'almanac': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'gattaca': 8,\n",
      "          'one': 5,\n",
      "          'vincent': 5,\n",
      "          'movie': 4,\n",
      "          'jerome': 4,\n",
      "          'takes': 3,\n",
      "          'eye': 3,\n",
      "          'also': 3,\n",
      "          'way': 3,\n",
      "          'hawke': 3,\n",
      "          'upcoming': 3,\n",
      "          'vincents': 3,\n",
      "          'without': 3,\n",
      "          'smart': 3,\n",
      "          'films': 2,\n",
      "          'doesnt': 2,\n",
      "          'story': 2,\n",
      "          'nthe': 2,\n",
      "          'futuristic': 2,\n",
      "          'genetic': 2,\n",
      "          'life': 2,\n",
      "          'pesky': 2,\n",
      "          'invalids': 2,\n",
      "          'confined': 2,\n",
      "          'home': 2,\n",
      "          'brother': 2,\n",
      "          'position': 2,\n",
      "          'nhis': 2,\n",
      "          'jude': 2,\n",
      "          'law': 2,\n",
      "          'blood': 2,\n",
      "          'skin': 2,\n",
      "          'high': 2,\n",
      "          'thurman': 2,\n",
      "          'flawless': 2,\n",
      "          'neven': 2,\n",
      "          'production': 2,\n",
      "          'ever': 2,\n",
      "          'designer': 2,\n",
      "          'comes': 2,\n",
      "          'film': 2,\n",
      "          'represents': 1,\n",
      "          'solid': 1,\n",
      "          'breakthrough': 1,\n",
      "          'recent': 1,\n",
      "          'onslaught': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'genre': 1,\n",
      "          'picture': 1,\n",
      "          'rely': 1,\n",
      "          'alien': 1,\n",
      "          'creatures': 1,\n",
      "          'loud': 1,\n",
      "          'explosions': 1,\n",
      "          'tell': 1,\n",
      "          'place': 1,\n",
      "          'world': 1,\n",
      "          'babies': 1,\n",
      "          'created': 1,\n",
      "          'tampering': 1,\n",
      "          'sexual': 1,\n",
      "          'reproduction': 1,\n",
      "          'nthis': 1,\n",
      "          'allows': 1,\n",
      "          'parents': 1,\n",
      "          'predetermine': 1,\n",
      "          'kind': 1,\n",
      "          'color': 1,\n",
      "          'intelligence': 1,\n",
      "          'span': 1,\n",
      "          'theyd': 1,\n",
      "          'like': 1,\n",
      "          'child': 1,\n",
      "          'eliminates': 1,\n",
      "          'chances': 1,\n",
      "          'health': 1,\n",
      "          'defects': 1,\n",
      "          'nthose': 1,\n",
      "          'made': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'labeled': 1,\n",
      "          'lower': 1,\n",
      "          'rung': 1,\n",
      "          'society': 1,\n",
      "          'nvincent': 1,\n",
      "          'freeman': 1,\n",
      "          'ethan': 1,\n",
      "          'person': 1,\n",
      "          'born': 1,\n",
      "          'long': 1,\n",
      "          'process': 1,\n",
      "          'perfected': 1,\n",
      "          'forced': 1,\n",
      "          'grow': 1,\n",
      "          'petrie': 1,\n",
      "          'dishmolded': 1,\n",
      "          'younger': 1,\n",
      "          'anton': 1,\n",
      "          'nfed': 1,\n",
      "          'secondrate': 1,\n",
      "          'enchanted': 1,\n",
      "          'dreams': 1,\n",
      "          'day': 1,\n",
      "          'traveling': 1,\n",
      "          'space': 1,\n",
      "          'leaves': 1,\n",
      "          'janitorial': 1,\n",
      "          'aerospace': 1,\n",
      "          'corporation': 1,\n",
      "          'neveryday': 1,\n",
      "          'watches': 1,\n",
      "          'superior': 1,\n",
      "          'folk': 1,\n",
      "          'make': 1,\n",
      "          'fantasy': 1,\n",
      "          'reality': 1,\n",
      "          'ndetermined': 1,\n",
      "          'meets': 1,\n",
      "          'dna': 1,\n",
      "          'broker': 1,\n",
      "          'tony': 1,\n",
      "          'shalhoub': 1,\n",
      "          'funny': 1,\n",
      "          'cameo': 1,\n",
      "          'sells': 1,\n",
      "          'fake': 1,\n",
      "          'identities': 1,\n",
      "          'counterpart': 1,\n",
      "          'scam': 1,\n",
      "          'morrow': 1,\n",
      "          'exathlete': 1,\n",
      "          'left': 1,\n",
      "          'paralyzed': 1,\n",
      "          'accident': 1,\n",
      "          'wheelchair': 1,\n",
      "          'nfor': 1,\n",
      "          'price': 1,\n",
      "          'promise': 1,\n",
      "          'caretaker': 1,\n",
      "          'supplies': 1,\n",
      "          'identity': 1,\n",
      "          'well': 1,\n",
      "          'urine': 1,\n",
      "          'samples': 1,\n",
      "          'onthejob': 1,\n",
      "          'tests': 1,\n",
      "          'physical': 1,\n",
      "          'examinations': 1,\n",
      "          'future': 1,\n",
      "          'employees': 1,\n",
      "          'clock': 1,\n",
      "          'pricking': 1,\n",
      "          'fingers': 1,\n",
      "          'instead': 1,\n",
      "          'punching': 1,\n",
      "          'time': 1,\n",
      "          'card': 1,\n",
      "          'nbecause': 1,\n",
      "          'drastically': 1,\n",
      "          'improved': 1,\n",
      "          'status': 1,\n",
      "          'quickly': 1,\n",
      "          'propelled': 1,\n",
      "          'catches': 1,\n",
      "          'comely': 1,\n",
      "          'coworker': 1,\n",
      "          'irene': 1,\n",
      "          'uma': 1,\n",
      "          'obsessed': 1,\n",
      "          'minor': 1,\n",
      "          'heart': 1,\n",
      "          'defect': 1,\n",
      "          'shes': 1,\n",
      "          'enamored': 1,\n",
      "          'persona': 1,\n",
      "          'know': 1,\n",
      "          'lie': 1,\n",
      "          'nbut': 1,\n",
      "          'figurative': 1,\n",
      "          'eve': 1,\n",
      "          'planetary': 1,\n",
      "          'departure': 1,\n",
      "          'mission': 1,\n",
      "          'director': 1,\n",
      "          'murdered': 1,\n",
      "          'ntwo': 1,\n",
      "          'ardent': 1,\n",
      "          'detectives': 1,\n",
      "          'alan': 1,\n",
      "          'arkin': 1,\n",
      "          'billy': 1,\n",
      "          'bathgates': 1,\n",
      "          'loren': 1,\n",
      "          'dean': 1,\n",
      "          'determine': 1,\n",
      "          'killer': 1,\n",
      "          'inside': 1,\n",
      "          'sole': 1,\n",
      "          'clue': 1,\n",
      "          'find': 1,\n",
      "          'crime': 1,\n",
      "          'scene': 1,\n",
      "          'eyelashes': 1,\n",
      "          'threatens': 1,\n",
      "          'blow': 1,\n",
      "          'cover': 1,\n",
      "          'derail': 1,\n",
      "          'goal': 1,\n",
      "          'dramatically': 1,\n",
      "          'empty': 1,\n",
      "          'would': 1,\n",
      "          'still': 1,\n",
      "          'boast': 1,\n",
      "          'sublime': 1,\n",
      "          'set': 1,\n",
      "          'credentials': 1,\n",
      "          'look': 1,\n",
      "          'dazzling': 1,\n",
      "          'flashy': 1,\n",
      "          'nfirsttime': 1,\n",
      "          'directorwriter': 1,\n",
      "          'andrew': 1,\n",
      "          'niccol': 1,\n",
      "          'wrote': 1,\n",
      "          'screenplay': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'drama': 1,\n",
      "          'truman': 1,\n",
      "          'show': 1,\n",
      "          'demonstrates': 1,\n",
      "          'keen': 1,\n",
      "          'stylish': 1,\n",
      "          'collaboration': 1,\n",
      "          'cinematographer': 1,\n",
      "          'slawomir': 1,\n",
      "          'idziak': 1,\n",
      "          'jan': 1,\n",
      "          'roelfs': 1,\n",
      "          'costume': 1,\n",
      "          'colleen': 1,\n",
      "          'atwood': 1,\n",
      "          'result': 1,\n",
      "          'sophisticated': 1,\n",
      "          'composition': 1,\n",
      "          'emanates': 1,\n",
      "          'classy': 1,\n",
      "          'retro': 1,\n",
      "          'ambiance': 1,\n",
      "          'nan': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'sequence': 1,\n",
      "          'nail': 1,\n",
      "          'hair': 1,\n",
      "          'fragments': 1,\n",
      "          'fall': 1,\n",
      "          'slowmotion': 1,\n",
      "          'colored': 1,\n",
      "          'camera': 1,\n",
      "          'lens': 1,\n",
      "          'displays': 1,\n",
      "          'combined': 1,\n",
      "          'talents': 1,\n",
      "          'uncannily': 1,\n",
      "          'nniccol': 1,\n",
      "          'even': 1,\n",
      "          'utilizes': 1,\n",
      "          'voiceover': 1,\n",
      "          'narration': 1,\n",
      "          'device': 1,\n",
      "          'almost': 1,\n",
      "          'always': 1,\n",
      "          'poorlyemployed': 1,\n",
      "          'effective': 1,\n",
      "          'nwhen': 1,\n",
      "          'acting': 1,\n",
      "          'nethan': 1,\n",
      "          'magnificent': 1,\n",
      "          'work': 1,\n",
      "          'proving': 1,\n",
      "          'ability': 1,\n",
      "          'carry': 1,\n",
      "          'reaffirming': 1,\n",
      "          'enormously': 1,\n",
      "          'charisma': 1,\n",
      "          'level': 1,\n",
      "          'chemistry': 1,\n",
      "          'bit': 1,\n",
      "          'icy': 1,\n",
      "          'side': 1,\n",
      "          'needfully': 1,\n",
      "          'adding': 1,\n",
      "          'settings': 1,\n",
      "          'clinical': 1,\n",
      "          'chill': 1,\n",
      "          'nas': 1,\n",
      "          'bitter': 1,\n",
      "          'starmaking': 1,\n",
      "          'presence': 1,\n",
      "          'scenes': 1,\n",
      "          'give': 1,\n",
      "          'fine': 1,\n",
      "          'emotional': 1,\n",
      "          'core': 1,\n",
      "          'nin': 1,\n",
      "          'series': 1,\n",
      "          'final': 1,\n",
      "          'shots': 1,\n",
      "          'fates': 1,\n",
      "          'superimposed': 1,\n",
      "          'effect': 1,\n",
      "          'sad': 1,\n",
      "          'lyrical': 1,\n",
      "          'beautiful': 1,\n",
      "          'nthings': 1,\n",
      "          'get': 1,\n",
      "          'little': 1,\n",
      "          'strange': 1,\n",
      "          'nears': 1,\n",
      "          'climax': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'relationship': 1,\n",
      "          'back': 1,\n",
      "          'view': 1,\n",
      "          'big': 1,\n",
      "          'dramatic': 1,\n",
      "          'culmination': 1,\n",
      "          'swim': 1,\n",
      "          'race': 1,\n",
      "          'somewhat': 1,\n",
      "          'silly': 1,\n",
      "          'albeit': 1,\n",
      "          'beautifully': 1,\n",
      "          'photographed': 1,\n",
      "          'nstill': 1,\n",
      "          'single': 1,\n",
      "          'surprising': 1,\n",
      "          'aspect': 1,\n",
      "          'use': 1,\n",
      "          'backdrop': 1,\n",
      "          'successful': 1,\n",
      "          'scifi': 1,\n",
      "          'showy': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'crisp': 1,\n",
      "          'thriller': 1,\n",
      "          'characterdriven': 1,\n",
      "          'thrills': 1,\n",
      "          'fable': 1,\n",
      "          'guts': 1,\n",
      "          'murder': 1,\n",
      "          'mystery': 1,\n",
      "          'relegated': 1,\n",
      "          'secondary': 1,\n",
      "          'subplot': 1,\n",
      "          'ensuring': 1,\n",
      "          'people': 1,\n",
      "          'science': 1,\n",
      "          'center': 1,\n",
      "          'stage': 1,\n",
      "          'nalthough': 1,\n",
      "          'portrayal': 1,\n",
      "          'century': 1,\n",
      "          'grim': 1,\n",
      "          'serves': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'societal': 1,\n",
      "          'forecasts': 1,\n",
      "          'depicted': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nephew': 5,\n",
      "          'movie': 5,\n",
      "          'nthe': 4,\n",
      "          'premiere': 3,\n",
      "          'scenes': 3,\n",
      "          'irish': 3,\n",
      "          'many': 2,\n",
      "          'screening': 2,\n",
      "          'first': 2,\n",
      "          'ireland': 2,\n",
      "          'nhe': 2,\n",
      "          'character': 2,\n",
      "          'brady': 2,\n",
      "          'america': 2,\n",
      "          'rest': 2,\n",
      "          'source': 2,\n",
      "          'huge': 1,\n",
      "          'crowd': 1,\n",
      "          '100': 1,\n",
      "          'people': 1,\n",
      "          'could': 1,\n",
      "          'admitted': 1,\n",
      "          'major': 1,\n",
      "          'general': 1,\n",
      "          'audience': 1,\n",
      "          'admittance': 1,\n",
      "          'nthis': 1,\n",
      "          'santa': 1,\n",
      "          'barbara': 1,\n",
      "          'international': 1,\n",
      "          'film': 1,\n",
      "          'festival': 1,\n",
      "          'npierce': 1,\n",
      "          'brosnan': 1,\n",
      "          '007': 1,\n",
      "          'produced': 1,\n",
      "          'beau': 1,\n",
      "          'st': 1,\n",
      "          'clair': 1,\n",
      "          'nit': 1,\n",
      "          'constantly': 1,\n",
      "          'mindmoving': 1,\n",
      "          'personal': 1,\n",
      "          'lovely': 1,\n",
      "          'nchad': 1,\n",
      "          'hill': 1,\n",
      "          'harper': 1,\n",
      "          'beloved': 1,\n",
      "          'cute': 1,\n",
      "          '17': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'mixed': 1,\n",
      "          'race': 1,\n",
      "          'african': 1,\n",
      "          'american': 1,\n",
      "          'whos': 1,\n",
      "          'mother': 1,\n",
      "          'died': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'living': 1,\n",
      "          'curmudgeon': 1,\n",
      "          'uncle': 1,\n",
      "          'tony': 1,\n",
      "          'egan': 1,\n",
      "          'donal': 1,\n",
      "          'mccann': 1,\n",
      "          'meets': 1,\n",
      "          'pierce': 1,\n",
      "          'brosnans': 1,\n",
      "          'mr': 1,\n",
      "          'obrady': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'beautiful': 1,\n",
      "          'daughter': 1,\n",
      "          'nthere': 1,\n",
      "          'ah': 1,\n",
      "          'laugh': 1,\n",
      "          'others': 1,\n",
      "          'pull': 1,\n",
      "          'tears': 1,\n",
      "          'three': 1,\n",
      "          'mentioned': 1,\n",
      "          'flesh': 1,\n",
      "          'director': 1,\n",
      "          'eugene': 1,\n",
      "          'nafter': 1,\n",
      "          'took': 1,\n",
      "          'questions': 1,\n",
      "          'good': 1,\n",
      "          'fantastic': 1,\n",
      "          'picked': 1,\n",
      "          'north': 1,\n",
      "          'world': 1,\n",
      "          'generation': 1,\n",
      "          'secrecy': 1,\n",
      "          'titanic': 1,\n",
      "          'proportion': 1,\n",
      "          'nlets': 1,\n",
      "          'hope': 1,\n",
      "          'able': 1,\n",
      "          'see': 1,\n",
      "          'ncontact': 1,\n",
      "          'given': 1,\n",
      "          'program': 1,\n",
      "          'guide': 1,\n",
      "          'print': 1,\n",
      "          'dream': 1,\n",
      "          'inc': 1,\n",
      "          'tel': 1,\n",
      "          '310': 1,\n",
      "          '4493411': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'nthe': 7,\n",
      "          'murnaus': 4,\n",
      "          'nosferatu': 4,\n",
      "          'title': 4,\n",
      "          'video': 3,\n",
      "          'vampire': 3,\n",
      "          'one': 3,\n",
      "          'bram': 3,\n",
      "          'like': 3,\n",
      "          'latest': 3,\n",
      "          'new': 2,\n",
      "          'arrow': 2,\n",
      "          'entertainment': 2,\n",
      "          'carradine': 2,\n",
      "          'written': 2,\n",
      "          'man': 2,\n",
      "          'probably': 2,\n",
      "          'symphony': 2,\n",
      "          'horror': 2,\n",
      "          'schreck': 2,\n",
      "          'silent': 2,\n",
      "          'stokers': 2,\n",
      "          'dracula': 2,\n",
      "          'hutter': 2,\n",
      "          'count': 2,\n",
      "          'emily': 2,\n",
      "          'orlocks': 2,\n",
      "          'digitally': 2,\n",
      "          'cover': 2,\n",
      "          'art': 2,\n",
      "          'goateed': 2,\n",
      "          'sexy': 2,\n",
      "          'writhing': 2,\n",
      "          'woman': 2,\n",
      "          'movie': 2,\n",
      "          'nthis': 2,\n",
      "          'makes': 2,\n",
      "          'scenes': 2,\n",
      "          'seems': 2,\n",
      "          'cards': 2,\n",
      "          'music': 2,\n",
      "          'type': 2,\n",
      "          'negative': 2,\n",
      "          'called': 2,\n",
      "          'available': 1,\n",
      "          'edition': 1,\n",
      "          '29': 1,\n",
      "          '95': 1,\n",
      "          'introduction': 1,\n",
      "          'david': 1,\n",
      "          'produced': 1,\n",
      "          'wayne': 1,\n",
      "          'j': 1,\n",
      "          'keeley': 1,\n",
      "          'nf': 1,\n",
      "          'w': 1,\n",
      "          'career': 1,\n",
      "          'ended': 1,\n",
      "          'sadly': 1,\n",
      "          'prematurely': 1,\n",
      "          'german': 1,\n",
      "          'director': 1,\n",
      "          'classics': 1,\n",
      "          'sunrise': 1,\n",
      "          'last': 1,\n",
      "          'laugh': 1,\n",
      "          'died': 1,\n",
      "          'car': 1,\n",
      "          'accident': 1,\n",
      "          'shortly': 1,\n",
      "          'signing': 1,\n",
      "          'deal': 1,\n",
      "          'make': 1,\n",
      "          'american': 1,\n",
      "          'pictures': 1,\n",
      "          'paramount': 1,\n",
      "          'nmurnau': 1,\n",
      "          'reportedly': 1,\n",
      "          'giant': 1,\n",
      "          'well': 1,\n",
      "          'six': 1,\n",
      "          'feet': 1,\n",
      "          'towering': 1,\n",
      "          'figure': 1,\n",
      "          'incapable': 1,\n",
      "          'anything': 1,\n",
      "          'grand': 1,\n",
      "          'entrance': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'surely': 1,\n",
      "          'felt': 1,\n",
      "          'kinship': 1,\n",
      "          'character': 1,\n",
      "          'looming': 1,\n",
      "          'embodied': 1,\n",
      "          'intimidating': 1,\n",
      "          'max': 1,\n",
      "          'indelible': 1,\n",
      "          'images': 1,\n",
      "          'history': 1,\n",
      "          'otherwise': 1,\n",
      "          'rises': 1,\n",
      "          'grave': 1,\n",
      "          'gnarled': 1,\n",
      "          'hands': 1,\n",
      "          'outstretched': 1,\n",
      "          'hes': 1,\n",
      "          'big': 1,\n",
      "          'part': 1,\n",
      "          'head': 1,\n",
      "          'cropped': 1,\n",
      "          'top': 1,\n",
      "          'frame': 1,\n",
      "          'plot': 1,\n",
      "          'nis': 1,\n",
      "          'liftedunauthorizedfrom': 1,\n",
      "          'british': 1,\n",
      "          'eager': 1,\n",
      "          'real': 1,\n",
      "          'estate': 1,\n",
      "          'assigned': 1,\n",
      "          'visit': 1,\n",
      "          'discuss': 1,\n",
      "          'future': 1,\n",
      "          'living': 1,\n",
      "          'arrangements': 1,\n",
      "          'orlock': 1,\n",
      "          'transylvania': 1,\n",
      "          'nhe': 1,\n",
      "          'leaves': 1,\n",
      "          'behind': 1,\n",
      "          'girlfriend': 1,\n",
      "          'discover': 1,\n",
      "          'secrethes': 1,\n",
      "          'bloodsuckerand': 1,\n",
      "          'struggle': 1,\n",
      "          'return': 1,\n",
      "          'england': 1,\n",
      "          'reaches': 1,\n",
      "          'lady': 1,\n",
      "          'love': 1,\n",
      "          'nin': 1,\n",
      "          'addition': 1,\n",
      "          'schrecks': 1,\n",
      "          'performance': 1,\n",
      "          'cinematography': 1,\n",
      "          'effects': 1,\n",
      "          'outstanding': 1,\n",
      "          'narrow': 1,\n",
      "          'videos': 1,\n",
      "          'remastered': 1,\n",
      "          'version': 1,\n",
      "          'classic': 1,\n",
      "          'something': 1,\n",
      "          'mixedcoffin': 1,\n",
      "          'features': 1,\n",
      "          'redtinted': 1,\n",
      "          'hairy': 1,\n",
      "          'staring': 1,\n",
      "          'straight': 1,\n",
      "          'fanged': 1,\n",
      "          'mouth': 1,\n",
      "          'agape': 1,\n",
      "          'bodies': 1,\n",
      "          'two': 1,\n",
      "          'women': 1,\n",
      "          'entice': 1,\n",
      "          'ntrouble': 1,\n",
      "          'monster': 1,\n",
      "          'palefaced': 1,\n",
      "          'bald': 1,\n",
      "          'pointyeared': 1,\n",
      "          'nongoateed': 1,\n",
      "          'isnt': 1,\n",
      "          'single': 1,\n",
      "          'found': 1,\n",
      "          'sort': 1,\n",
      "          'misleading': 1,\n",
      "          'packaging': 1,\n",
      "          'little': 1,\n",
      "          'sense': 1,\n",
      "          'recalls': 1,\n",
      "          'countless': 1,\n",
      "          'number': 1,\n",
      "          'ghouslish': 1,\n",
      "          'cool': 1,\n",
      "          'could': 1,\n",
      "          'extracted': 1,\n",
      "          'nadditionally': 1,\n",
      "          'notifying': 1,\n",
      "          'viewer': 1,\n",
      "          'fact': 1,\n",
      "          'afterthought': 1,\n",
      "          'since': 1,\n",
      "          'name': 1,\n",
      "          'genuine': 1,\n",
      "          'small': 1,\n",
      "          'print': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'good': 1,\n",
      "          'mastering': 1,\n",
      "          'job': 1,\n",
      "          'performed': 1,\n",
      "          'original': 1,\n",
      "          'elements': 1,\n",
      "          'best': 1,\n",
      "          'conditionnonstudio': 1,\n",
      "          'silents': 1,\n",
      "          'unlucky': 1,\n",
      "          'preservation': 1,\n",
      "          'still': 1,\n",
      "          'dealing': 1,\n",
      "          'slightly': 1,\n",
      "          'washed': 1,\n",
      "          'scratched': 1,\n",
      "          'jittering': 1,\n",
      "          'image': 1,\n",
      "          'nbut': 1,\n",
      "          'least': 1,\n",
      "          'day': 1,\n",
      "          'night': 1,\n",
      "          'tinted': 1,\n",
      "          'sepia': 1,\n",
      "          'blue': 1,\n",
      "          'respectively': 1,\n",
      "          'especially': 1,\n",
      "          'helpful': 1,\n",
      "          'audience': 1,\n",
      "          'may': 1,\n",
      "          'question': 1,\n",
      "          'nosferatus': 1,\n",
      "          'waltzing': 1,\n",
      "          'around': 1,\n",
      "          'sunlight': 1,\n",
      "          'took': 1,\n",
      "          'lot': 1,\n",
      "          'light': 1,\n",
      "          'expose': 1,\n",
      "          'stock': 1,\n",
      "          'twenties': 1,\n",
      "          'redone': 1,\n",
      "          'legible': 1,\n",
      "          'accurate': 1,\n",
      "          'altered': 1,\n",
      "          'flickera': 1,\n",
      "          'nice': 1,\n",
      "          'touch': 1,\n",
      "          'n': 1,\n",
      "          'even': 1,\n",
      "          'opening': 1,\n",
      "          'copyright': 1,\n",
      "          'warning': 1,\n",
      "          'flickers': 1,\n",
      "          'score': 1,\n",
      "          'replaced': 1,\n",
      "          'hardrock': 1,\n",
      "          'group': 1,\n",
      "          'arguably': 1,\n",
      "          'gothic': 1,\n",
      "          'songs': 1,\n",
      "          'underscore': 1,\n",
      "          'nicely': 1,\n",
      "          'certainly': 1,\n",
      "          'coolest': 1,\n",
      "          'band': 1,\n",
      "          'ask': 1,\n",
      "          'nwhen': 1,\n",
      "          'hero': 1,\n",
      "          'first': 1,\n",
      "          'steps': 1,\n",
      "          'onto': 1,\n",
      "          'doomed': 1,\n",
      "          'carriage': 1,\n",
      "          'castle': 1,\n",
      "          'hear': 1,\n",
      "          'welltimed': 1,\n",
      "          'youre': 1,\n",
      "          'dead': 1,\n",
      "          'nfrom': 1,\n",
      "          'lead': 1,\n",
      "          'singer': 1,\n",
      "          'peter': 1,\n",
      "          'steele': 1,\n",
      "          'ndavid': 1,\n",
      "          'appropriately': 1,\n",
      "          'vampiric': 1,\n",
      "          'host': 1,\n",
      "          'fiddles': 1,\n",
      "          'blade': 1,\n",
      "          'cane': 1,\n",
      "          'introducing': 1,\n",
      "          'nafter': 1,\n",
      "          'feature': 1,\n",
      "          'runs': 1,\n",
      "          '63': 1,\n",
      "          'minutes': 1,\n",
      "          'included': 1,\n",
      "          'blackandwhite': 1,\n",
      "          'fangfest': 1,\n",
      "          'black': 1,\n",
      "          '1': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'main': 1,\n",
      "          'attraction': 1,\n",
      "          'viewing': 1,\n",
      "          'raised': 1,\n",
      "          'questions': 1,\n",
      "          'mina': 1,\n",
      "          'stoker': 1,\n",
      "          'herin': 1,\n",
      "          'hutters': 1,\n",
      "          'letters': 1,\n",
      "          'instance': 1,\n",
      "          'made': 1,\n",
      "          'realize': 1,\n",
      "          'much': 1,\n",
      "          'inspired': 1,\n",
      "          'stolen': 1,\n",
      "          'ncoppolas': 1,\n",
      "          '1992': 1,\n",
      "          'owes': 1,\n",
      "          'great': 1,\n",
      "          'stylistic': 1,\n",
      "          'debt': 1,\n",
      "          'masterpiece': 1,\n",
      "          'thing': 1,\n",
      "          'couldnt': 1,\n",
      "          'thieve': 1,\n",
      "          'originals': 1,\n",
      "          'abstract': 1,\n",
      "          'charms': 1,\n",
      "          'incarnation': 1,\n",
      "          'rescored': 1,\n",
      "          'metropolis': 1,\n",
      "          'years': 1,\n",
      "          'backturn': 1,\n",
      "          'palpable': 1,\n",
      "          'generation': 1,\n",
      "          'freaks': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'lost': 7,\n",
      "          'highway': 7,\n",
      "          'mystery': 7,\n",
      "          'lynchs': 4,\n",
      "          'fred': 4,\n",
      "          'arquette': 4,\n",
      "          'man': 4,\n",
      "          'nthe': 4,\n",
      "          'pete': 4,\n",
      "          'dayton': 4,\n",
      "          'like': 3,\n",
      "          'lynch': 3,\n",
      "          'one': 3,\n",
      "          'much': 3,\n",
      "          'time': 3,\n",
      "          'character': 3,\n",
      "          'typically': 3,\n",
      "          'left': 2,\n",
      "          'put': 2,\n",
      "          'years': 2,\n",
      "          'picture': 2,\n",
      "          'enough': 2,\n",
      "          'make': 2,\n",
      "          'nit': 2,\n",
      "          'describe': 2,\n",
      "          'ni': 2,\n",
      "          'renee': 2,\n",
      "          'infidelity': 2,\n",
      "          'house': 2,\n",
      "          'little': 2,\n",
      "          'doesnt': 2,\n",
      "          'help': 2,\n",
      "          'proceeds': 2,\n",
      "          'unnerving': 2,\n",
      "          'another': 2,\n",
      "          'murder': 2,\n",
      "          'prison': 2,\n",
      "          'whose': 2,\n",
      "          'otherwise': 2,\n",
      "          'sound': 2,\n",
      "          'giddy': 2,\n",
      "          'weird': 2,\n",
      "          'takes': 2,\n",
      "          'nthere': 2,\n",
      "          'times': 2,\n",
      "          'disturbing': 2,\n",
      "          'psyche': 2,\n",
      "          'freds': 2,\n",
      "          'case': 2,\n",
      "          'characters': 2,\n",
      "          'story': 2,\n",
      "          'scenes': 2,\n",
      "          'nothing': 2,\n",
      "          'effective': 2,\n",
      "          'nlynchs': 2,\n",
      "          'exactly': 2,\n",
      "          'two': 2,\n",
      "          'films': 2,\n",
      "          'theater': 1,\n",
      "          'seeing': 1,\n",
      "          'david': 1,\n",
      "          'remarked': 1,\n",
      "          'fellow': 1,\n",
      "          'moviegoer': 1,\n",
      "          'feel': 1,\n",
      "          'someone': 1,\n",
      "          'sucked': 1,\n",
      "          'brains': 1,\n",
      "          'nose': 1,\n",
      "          'back': 1,\n",
      "          'ears': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'feature': 1,\n",
      "          'five': 1,\n",
      "          'delivers': 1,\n",
      "          'second': 1,\n",
      "          'debut': 1,\n",
      "          'eraserhead': 1,\n",
      "          'weirdness': 1,\n",
      "          'scale': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'know': 1,\n",
      "          'happened': 1,\n",
      "          'though': 1,\n",
      "          'certainly': 1,\n",
      "          'clues': 1,\n",
      "          'reasonable': 1,\n",
      "          'guesses': 1,\n",
      "          'difficult': 1,\n",
      "          'plot': 1,\n",
      "          'depends': 1,\n",
      "          'partly': 1,\n",
      "          'interpret': 1,\n",
      "          'however': 1,\n",
      "          'see': 1,\n",
      "          'screen': 1,\n",
      "          'l': 1,\n",
      "          'jazz': 1,\n",
      "          'saxophonist': 1,\n",
      "          'madison': 1,\n",
      "          'bill': 1,\n",
      "          'pullman': 1,\n",
      "          'wife': 1,\n",
      "          'patricia': 1,\n",
      "          'clearly': 1,\n",
      "          'suspects': 1,\n",
      "          'receive': 1,\n",
      "          'series': 1,\n",
      "          'videotapes': 1,\n",
      "          'apparently': 1,\n",
      "          'filmed': 1,\n",
      "          'inside': 1,\n",
      "          'asleep': 1,\n",
      "          'nthey': 1,\n",
      "          'naturally': 1,\n",
      "          'frightened': 1,\n",
      "          'confused': 1,\n",
      "          'matters': 1,\n",
      "          'robert': 1,\n",
      "          'blake': 1,\n",
      "          'approaches': 1,\n",
      "          'party': 1,\n",
      "          'call': 1,\n",
      "          'telephone': 1,\n",
      "          'madisons': 1,\n",
      "          'scene': 1,\n",
      "          'hilarious': 1,\n",
      "          'next': 1,\n",
      "          'morning': 1,\n",
      "          'finds': 1,\n",
      "          'videotape': 1,\n",
      "          'surprise': 1,\n",
      "          'shows': 1,\n",
      "          'brutally': 1,\n",
      "          'murdering': 1,\n",
      "          'bedroom': 1,\n",
      "          'nhe': 1,\n",
      "          'convicted': 1,\n",
      "          'sent': 1,\n",
      "          'death': 1,\n",
      "          'row': 1,\n",
      "          'inexplicably': 1,\n",
      "          'disappears': 1,\n",
      "          'night': 1,\n",
      "          'replaced': 1,\n",
      "          'young': 1,\n",
      "          'mechanic': 1,\n",
      "          'named': 1,\n",
      "          'balthazar': 1,\n",
      "          'getty': 1,\n",
      "          'perplexed': 1,\n",
      "          'officials': 1,\n",
      "          'release': 1,\n",
      "          'life': 1,\n",
      "          'begins': 1,\n",
      "          'intersect': 1,\n",
      "          'number': 1,\n",
      "          'ways': 1,\n",
      "          'notably': 1,\n",
      "          'affair': 1,\n",
      "          'alice': 1,\n",
      "          'wakefield': 1,\n",
      "          'blonde': 1,\n",
      "          'renees': 1,\n",
      "          'spitting': 1,\n",
      "          'image': 1,\n",
      "          'encounter': 1,\n",
      "          'would': 1,\n",
      "          'giving': 1,\n",
      "          'away': 1,\n",
      "          'reveal': 1,\n",
      "          'suffice': 1,\n",
      "          'say': 1,\n",
      "          'offer': 1,\n",
      "          'neat': 1,\n",
      "          'wrap': 1,\n",
      "          'ups': 1,\n",
      "          'lid': 1,\n",
      "          'metaphysical': 1,\n",
      "          'confusion': 1,\n",
      "          'cinematic': 1,\n",
      "          'demons': 1,\n",
      "          'full': 1,\n",
      "          'force': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'nthis': 1,\n",
      "          'description': 1,\n",
      "          'might': 1,\n",
      "          'exercise': 1,\n",
      "          'haywire': 1,\n",
      "          'surrealism': 1,\n",
      "          'fact': 1,\n",
      "          'traces': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'anything': 1,\n",
      "          'non': 1,\n",
      "          'contrary': 1,\n",
      "          'dark': 1,\n",
      "          'perplexing': 1,\n",
      "          'previous': 1,\n",
      "          'excursions': 1,\n",
      "          'intrigue': 1,\n",
      "          'step': 1,\n",
      "          'farther': 1,\n",
      "          'revolve': 1,\n",
      "          'around': 1,\n",
      "          'investigating': 1,\n",
      "          'rather': 1,\n",
      "          'recurring': 1,\n",
      "          'deeply': 1,\n",
      "          'images': 1,\n",
      "          'suspicion': 1,\n",
      "          'distrust': 1,\n",
      "          'thoughout': 1,\n",
      "          'seem': 1,\n",
      "          'indicate': 1,\n",
      "          'deluded': 1,\n",
      "          'fractured': 1,\n",
      "          'root': 1,\n",
      "          'bizarre': 1,\n",
      "          'goingson': 1,\n",
      "          'nwe': 1,\n",
      "          'audience': 1,\n",
      "          'puzzle': 1,\n",
      "          'driving': 1,\n",
      "          'probably': 1,\n",
      "          'opinion': 1,\n",
      "          'events': 1,\n",
      "          'meant': 1,\n",
      "          'represent': 1,\n",
      "          'nall': 1,\n",
      "          'appropriately': 1,\n",
      "          'slowpaced': 1,\n",
      "          'idiosyncratic': 1,\n",
      "          'style': 1,\n",
      "          'nas': 1,\n",
      "          'often': 1,\n",
      "          'relies': 1,\n",
      "          'imagery': 1,\n",
      "          'mood': 1,\n",
      "          'dialogue': 1,\n",
      "          'action': 1,\n",
      "          'tell': 1,\n",
      "          'works': 1,\n",
      "          'perfectly': 1,\n",
      "          'camera': 1,\n",
      "          'lingers': 1,\n",
      "          'blank': 1,\n",
      "          'expression': 1,\n",
      "          'drifts': 1,\n",
      "          'uncomfortably': 1,\n",
      "          'hallway': 1,\n",
      "          'pained': 1,\n",
      "          'face': 1,\n",
      "          'cell': 1,\n",
      "          'haunting': 1,\n",
      "          'strains': 1,\n",
      "          'mortal': 1,\n",
      "          'coils': 1,\n",
      "          'song': 1,\n",
      "          'siren': 1,\n",
      "          'heard': 1,\n",
      "          'faintly': 1,\n",
      "          'background': 1,\n",
      "          'technically': 1,\n",
      "          'happening': 1,\n",
      "          'yet': 1,\n",
      "          'present': 1,\n",
      "          'vivid': 1,\n",
      "          'losing': 1,\n",
      "          'grip': 1,\n",
      "          'hysterical': 1,\n",
      "          'screaming': 1,\n",
      "          'found': 1,\n",
      "          'movie': 1,\n",
      "          'presentations': 1,\n",
      "          'insanity': 1,\n",
      "          'direction': 1,\n",
      "          'director': 1,\n",
      "          'photography': 1,\n",
      "          'demings': 1,\n",
      "          'darkly': 1,\n",
      "          'lit': 1,\n",
      "          'cinematography': 1,\n",
      "          'serve': 1,\n",
      "          'create': 1,\n",
      "          'nearly': 1,\n",
      "          'suffocating': 1,\n",
      "          'atmosphere': 1,\n",
      "          'tension': 1,\n",
      "          'fear': 1,\n",
      "          'needed': 1,\n",
      "          'nwell': 1,\n",
      "          'anyway': 1,\n",
      "          'admit': 1,\n",
      "          'bit': 1,\n",
      "          'bored': 1,\n",
      "          'section': 1,\n",
      "          'protgaonist': 1,\n",
      "          'less': 1,\n",
      "          'inherently': 1,\n",
      "          'interesting': 1,\n",
      "          'mostly': 1,\n",
      "          'keeps': 1,\n",
      "          'viewers': 1,\n",
      "          'attention': 1,\n",
      "          'tieins': 1,\n",
      "          'original': 1,\n",
      "          'main': 1,\n",
      "          'reality': 1,\n",
      "          'wellmeaning': 1,\n",
      "          'none': 1,\n",
      "          'intelligent': 1,\n",
      "          '24yearold': 1,\n",
      "          'sleazy': 1,\n",
      "          'gangster': 1,\n",
      "          'reason': 1,\n",
      "          'names': 1,\n",
      "          'pretty': 1,\n",
      "          'stock': 1,\n",
      "          'pornstar': 1,\n",
      "          'girlfriend': 1,\n",
      "          'blond': 1,\n",
      "          'couldnt': 1,\n",
      "          'find': 1,\n",
      "          'dozen': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'wannabes': 1,\n",
      "          'fortunately': 1,\n",
      "          'reappearance': 1,\n",
      "          'well': 1,\n",
      "          'lynchian': 1,\n",
      "          'elements': 1,\n",
      "          'strained': 1,\n",
      "          'awkward': 1,\n",
      "          'conversations': 1,\n",
      "          'parents': 1,\n",
      "          'preserve': 1,\n",
      "          'spooky': 1,\n",
      "          'tone': 1,\n",
      "          'stretch': 1,\n",
      "          'graphic': 1,\n",
      "          'portrayals': 1,\n",
      "          'fringe': 1,\n",
      "          'sexuality': 1,\n",
      "          'relevant': 1,\n",
      "          'themes': 1,\n",
      "          'jealousy': 1,\n",
      "          'adultery': 1,\n",
      "          'also': 1,\n",
      "          'somewhat': 1,\n",
      "          'overdone': 1,\n",
      "          'nits': 1,\n",
      "          'exploitative': 1,\n",
      "          'almost': 1,\n",
      "          'everything': 1,\n",
      "          'else': 1,\n",
      "          'sex': 1,\n",
      "          'thoroughly': 1,\n",
      "          'creepy': 1,\n",
      "          'unlikely': 1,\n",
      "          'provide': 1,\n",
      "          'cheap': 1,\n",
      "          'lurid': 1,\n",
      "          'thrills': 1,\n",
      "          'unnecessary': 1,\n",
      "          'frankly': 1,\n",
      "          'kind': 1,\n",
      "          'dumb': 1,\n",
      "          'seventh': 1,\n",
      "          'eighth': 1,\n",
      "          'clothes': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'minor': 1,\n",
      "          'flaws': 1,\n",
      "          'dont': 1,\n",
      "          'prevent': 1,\n",
      "          'attaining': 1,\n",
      "          'place': 1,\n",
      "          'darkest': 1,\n",
      "          'unsettling': 1,\n",
      "          'hit': 1,\n",
      "          'screens': 1,\n",
      "          'recent': 1,\n",
      "          'oneway': 1,\n",
      "          'ride': 1,\n",
      "          'disturbed': 1,\n",
      "          'mind': 1,\n",
      "          'gripping': 1,\n",
      "          'intense': 1,\n",
      "          'brilliantly': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'melvin': 6,\n",
      "          'dog': 4,\n",
      "          'simon': 3,\n",
      "          'playing': 3,\n",
      "          'none': 2,\n",
      "          'day': 2,\n",
      "          'serve': 2,\n",
      "          'carol': 2,\n",
      "          'threatens': 2,\n",
      "          'shut': 2,\n",
      "          'brooks': 2,\n",
      "          'udall': 1,\n",
      "          'heartless': 1,\n",
      "          'man': 1,\n",
      "          'nhe': 1,\n",
      "          'spends': 1,\n",
      "          'days': 1,\n",
      "          'inside': 1,\n",
      "          'spacious': 1,\n",
      "          'manhattan': 1,\n",
      "          'apartment': 1,\n",
      "          'writing': 1,\n",
      "          'romance': 1,\n",
      "          'novels': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'seems': 1,\n",
      "          'never': 1,\n",
      "          'change': 1,\n",
      "          'dines': 1,\n",
      "          'ar': 1,\n",
      "          'favorite': 1,\n",
      "          'restaurant': 1,\n",
      "          'little': 1,\n",
      "          'mean': 1,\n",
      "          'normal': 1,\n",
      "          'waitress': 1,\n",
      "          'waittress': 1,\n",
      "          'played': 1,\n",
      "          'perfection': 1,\n",
      "          'lovely': 1,\n",
      "          'sexy': 1,\n",
      "          'helen': 1,\n",
      "          'hunt': 1,\n",
      "          'nshe': 1,\n",
      "          'doesnt': 1,\n",
      "          'asthmatic': 1,\n",
      "          'son': 1,\n",
      "          'nto': 1,\n",
      "          'make': 1,\n",
      "          'matters': 1,\n",
      "          'considerably': 1,\n",
      "          'worse': 1,\n",
      "          'obsessive': 1,\n",
      "          'compulsive': 1,\n",
      "          'disorder': 1,\n",
      "          'gay': 1,\n",
      "          'artist': 1,\n",
      "          'neighbor': 1,\n",
      "          'greg': 1,\n",
      "          'kinear': 1,\n",
      "          'talk': 1,\n",
      "          'soup': 1,\n",
      "          'fame': 1,\n",
      "          'oscarworthy': 1,\n",
      "          'role': 1,\n",
      "          'dismiss': 1,\n",
      "          'melvons': 1,\n",
      "          'door': 1,\n",
      "          'nthe': 1,\n",
      "          'meets': 1,\n",
      "          'garbage': 1,\n",
      "          'chute': 1,\n",
      "          'nsoon': 1,\n",
      "          'sadly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'beaten': 1,\n",
      "          'thieveing': 1,\n",
      "          'burglars': 1,\n",
      "          'ray': 1,\n",
      "          'cuba': 1,\n",
      "          'gooding': 1,\n",
      "          'jr': 1,\n",
      "          'simons': 1,\n",
      "          'agent': 1,\n",
      "          'takes': 1,\n",
      "          'verdell': 1,\n",
      "          'dogsit': 1,\n",
      "          'nand': 1,\n",
      "          'rather': 1,\n",
      "          'heartwrenching': 1,\n",
      "          'car': 1,\n",
      "          'trip': 1,\n",
      "          'involves': 1,\n",
      "          'learns': 1,\n",
      "          'emerge': 1,\n",
      "          'cantakerous': 1,\n",
      "          'shell': 1,\n",
      "          'njack': 1,\n",
      "          'nicholson': 1,\n",
      "          'gives': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'oscarcaliber': 1,\n",
      "          'performance': 1,\n",
      "          'films': 1,\n",
      "          'cynical': 1,\n",
      "          'lead': 1,\n",
      "          'back': 1,\n",
      "          'work': 1,\n",
      "          'goofy': 1,\n",
      "          'u': 1,\n",
      "          'president': 1,\n",
      "          'comic': 1,\n",
      "          'book': 1,\n",
      "          'villian': 1,\n",
      "          'instead': 1,\n",
      "          'jack': 1,\n",
      "          'nicjolson': 1,\n",
      "          'full': 1,\n",
      "          'force': 1,\n",
      "          'nall': 1,\n",
      "          'adds': 1,\n",
      "          'years': 1,\n",
      "          'funniest': 1,\n",
      "          'comedy': 1,\n",
      "          'creative': 1,\n",
      "          'witty': 1,\n",
      "          'scathing': 1,\n",
      "          'film': 1,\n",
      "          'james': 1,\n",
      "          'l': 1,\n",
      "          'gets': 1,\n",
      "          'awardworthy': 1,\n",
      "          'performances': 1,\n",
      "          'entire': 1,\n",
      "          'cast': 1,\n",
      "          'na': 1,\n",
      "          'winner': 1,\n",
      "          'every': 1,\n",
      "          'aspect': 1,\n",
      "          'truly': 1,\n",
      "          'delicious': 1,\n",
      "          'slice': 1,\n",
      "          'cyncial': 1,\n",
      "          'life': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 14,\n",
      "          'sex': 11,\n",
      "          'nthe': 11,\n",
      "          'car': 10,\n",
      "          'people': 9,\n",
      "          'porn': 8,\n",
      "          'one': 8,\n",
      "          'scene': 8,\n",
      "          'pretty': 7,\n",
      "          'james': 7,\n",
      "          'crash': 6,\n",
      "          'also': 6,\n",
      "          'another': 6,\n",
      "          'almost': 6,\n",
      "          'nbut': 5,\n",
      "          'nwhile': 5,\n",
      "          'scenes': 5,\n",
      "          'hes': 5,\n",
      "          'completely': 4,\n",
      "          'like': 4,\n",
      "          'several': 4,\n",
      "          'little': 4,\n",
      "          'edge': 4,\n",
      "          'two': 4,\n",
      "          'sure': 3,\n",
      "          'boring': 3,\n",
      "          'cool': 3,\n",
      "          'generally': 3,\n",
      "          'see': 3,\n",
      "          'good': 3,\n",
      "          'erotic': 3,\n",
      "          'thing': 3,\n",
      "          'even': 3,\n",
      "          'spader': 3,\n",
      "          'freaky': 3,\n",
      "          'go': 3,\n",
      "          'get': 3,\n",
      "          'crashes': 3,\n",
      "          'rush': 3,\n",
      "          'shes': 3,\n",
      "          'nhe': 3,\n",
      "          'really': 2,\n",
      "          'think': 2,\n",
      "          'cold': 2,\n",
      "          'name': 2,\n",
      "          'director': 2,\n",
      "          'mean': 2,\n",
      "          'kinda': 2,\n",
      "          'plot': 2,\n",
      "          'maybe': 2,\n",
      "          'characterization': 2,\n",
      "          'acting': 2,\n",
      "          'dont': 2,\n",
      "          'lot': 2,\n",
      "          'different': 2,\n",
      "          'fact': 2,\n",
      "          'nthis': 2,\n",
      "          'would': 2,\n",
      "          'leaves': 2,\n",
      "          'many': 2,\n",
      "          'group': 2,\n",
      "          'live': 2,\n",
      "          'woman': 2,\n",
      "          'catherine': 2,\n",
      "          'deborah': 2,\n",
      "          'kara': 2,\n",
      "          'ungar': 2,\n",
      "          'man': 2,\n",
      "          'take': 2,\n",
      "          'doesnt': 2,\n",
      "          'nc17': 2,\n",
      "          'next': 2,\n",
      "          'together': 2,\n",
      "          'us': 2,\n",
      "          'nsoon': 2,\n",
      "          'afterwards': 2,\n",
      "          'something': 2,\n",
      "          'face': 2,\n",
      "          'hunter': 2,\n",
      "          'getting': 2,\n",
      "          'run': 2,\n",
      "          'accident': 2,\n",
      "          'aroused': 2,\n",
      "          'wouldnt': 2,\n",
      "          'kind': 2,\n",
      "          'fetish': 2,\n",
      "          'elias': 2,\n",
      "          'kosteas': 2,\n",
      "          'rosanna': 2,\n",
      "          'arquette': 2,\n",
      "          'living': 2,\n",
      "          'level': 2,\n",
      "          'recreate': 2,\n",
      "          'nin': 2,\n",
      "          'bit': 2,\n",
      "          'portrayal': 2,\n",
      "          'main': 2,\n",
      "          'connection': 2,\n",
      "          'shows': 2,\n",
      "          'definite': 2,\n",
      "          'quick': 2,\n",
      "          'looks': 2,\n",
      "          'happens': 2,\n",
      "          'breath': 2,\n",
      "          'although': 2,\n",
      "          'nthese': 2,\n",
      "          'taking': 2,\n",
      "          'tad': 2,\n",
      "          'na': 2,\n",
      "          'hour': 2,\n",
      "          'still': 2,\n",
      "          'creating': 2,\n",
      "          'nand': 2,\n",
      "          'amazing': 2,\n",
      "          'way': 2,\n",
      "          'shot': 2,\n",
      "          'especially': 2,\n",
      "          'speaks': 2,\n",
      "          'showing': 2,\n",
      "          'viewer': 2,\n",
      "          'role': 2,\n",
      "          'later': 2,\n",
      "          'share': 2,\n",
      "          'light': 2,\n",
      "          'im': 1,\n",
      "          'non': 1,\n",
      "          'surface': 1,\n",
      "          'unerotic': 1,\n",
      "          'starts': 1,\n",
      "          'camerawork': 1,\n",
      "          'ni': 1,\n",
      "          'left': 1,\n",
      "          'bored': 1,\n",
      "          'unsatisfied': 1,\n",
      "          'weirded': 1,\n",
      "          'every': 1,\n",
      "          'films': 1,\n",
      "          'supposed': 1,\n",
      "          'leave': 1,\n",
      "          'entertained': 1,\n",
      "          'n': 1,\n",
      "          'structured': 1,\n",
      "          'play': 1,\n",
      "          'flick': 1,\n",
      "          'significantly': 1,\n",
      "          'dialogue': 1,\n",
      "          'extremely': 1,\n",
      "          'taboo': 1,\n",
      "          'weirdo': 1,\n",
      "          'skimpy': 1,\n",
      "          'going': 1,\n",
      "          'mostly': 1,\n",
      "          'towards': 1,\n",
      "          'beginning': 1,\n",
      "          'hair': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'actors': 1,\n",
      "          'exposed': 1,\n",
      "          'makes': 1,\n",
      "          'supremely': 1,\n",
      "          'experience': 1,\n",
      "          'posess': 1,\n",
      "          'hypnotism': 1,\n",
      "          'henry': 1,\n",
      "          'june': 1,\n",
      "          'plain': 1,\n",
      "          'horniness': 1,\n",
      "          'say': 1,\n",
      "          'deep': 1,\n",
      "          'throat': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'nif': 1,\n",
      "          'made': 1,\n",
      "          'hot': 1,\n",
      "          'probably': 1,\n",
      "          'whole': 1,\n",
      "          'auto': 1,\n",
      "          'eroticism': 1,\n",
      "          'erotically': 1,\n",
      "          'ways': 1,\n",
      "          'present': 1,\n",
      "          'opens': 1,\n",
      "          'game': 1,\n",
      "          'pressing': 1,\n",
      "          'bare': 1,\n",
      "          'breast': 1,\n",
      "          'public': 1,\n",
      "          'air': 1,\n",
      "          'hangar': 1,\n",
      "          'nsuddenly': 1,\n",
      "          'enters': 1,\n",
      "          'frame': 1,\n",
      "          'begins': 1,\n",
      "          'behind': 1,\n",
      "          'show': 1,\n",
      "          'though': 1,\n",
      "          'camera': 1,\n",
      "          'alice': 1,\n",
      "          'poon': 1,\n",
      "          'office': 1,\n",
      "          'highlypopulated': 1,\n",
      "          'set': 1,\n",
      "          'movie': 1,\n",
      "          'coming': 1,\n",
      "          'revealing': 1,\n",
      "          'theyre': 1,\n",
      "          'husband': 1,\n",
      "          'wife': 1,\n",
      "          'sharing': 1,\n",
      "          'anothers': 1,\n",
      "          'escapades': 1,\n",
      "          'arguably': 1,\n",
      "          'least': 1,\n",
      "          'know': 1,\n",
      "          'love': 1,\n",
      "          'driving': 1,\n",
      "          'road': 1,\n",
      "          'night': 1,\n",
      "          'reclessly': 1,\n",
      "          'course': 1,\n",
      "          'reading': 1,\n",
      "          'drifts': 1,\n",
      "          'lane': 1,\n",
      "          'hits': 1,\n",
      "          'njames': 1,\n",
      "          'killed': 1,\n",
      "          'passenger': 1,\n",
      "          'flies': 1,\n",
      "          'seat': 1,\n",
      "          'obviously': 1,\n",
      "          'dying': 1,\n",
      "          'leaving': 1,\n",
      "          'driver': 1,\n",
      "          'helen': 1,\n",
      "          'remington': 1,\n",
      "          'holly': 1,\n",
      "          'alive': 1,\n",
      "          'therapy': 1,\n",
      "          'eachother': 1,\n",
      "          'nwhen': 1,\n",
      "          'gives': 1,\n",
      "          'ride': 1,\n",
      "          'home': 1,\n",
      "          'immeadiately': 1,\n",
      "          'unbusy': 1,\n",
      "          'parking': 1,\n",
      "          'quickie': 1,\n",
      "          'nyou': 1,\n",
      "          'shared': 1,\n",
      "          'guy': 1,\n",
      "          'named': 1,\n",
      "          'vaughan': 1,\n",
      "          'crutchcarrying': 1,\n",
      "          'girlfriend': 1,\n",
      "          'gabrielle': 1,\n",
      "          'nvaughan': 1,\n",
      "          'takes': 1,\n",
      "          'loves': 1,\n",
      "          'famous': 1,\n",
      "          'friend': 1,\n",
      "          'colin': 1,\n",
      "          'seagrave': 1,\n",
      "          'peter': 1,\n",
      "          'macneill': 1,\n",
      "          'deans': 1,\n",
      "          'without': 1,\n",
      "          'padding': 1,\n",
      "          'safety': 1,\n",
      "          'belts': 1,\n",
      "          'suffer': 1,\n",
      "          'concussions': 1,\n",
      "          'nevertheless': 1,\n",
      "          'attention': 1,\n",
      "          'police': 1,\n",
      "          'five': 1,\n",
      "          'straight': 1,\n",
      "          'gay': 1,\n",
      "          'lesbian': 1,\n",
      "          'admittingly': 1,\n",
      "          'comical': 1,\n",
      "          'black': 1,\n",
      "          'comedy': 1,\n",
      "          'awesome': 1,\n",
      "          'whos': 1,\n",
      "          'nim': 1,\n",
      "          'somewhere': 1,\n",
      "          'accidents': 1,\n",
      "          'personally': 1,\n",
      "          'cronenberg': 1,\n",
      "          'give': 1,\n",
      "          'nhis': 1,\n",
      "          'exciting': 1,\n",
      "          'minimasterpieces': 1,\n",
      "          'first': 1,\n",
      "          'theyll': 1,\n",
      "          'place': 1,\n",
      "          'everytime': 1,\n",
      "          'may': 1,\n",
      "          'occur': 1,\n",
      "          'gasp': 1,\n",
      "          'nthen': 1,\n",
      "          'hold': 1,\n",
      "          'fashion': 1,\n",
      "          'merely': 1,\n",
      "          'problem': 1,\n",
      "          'redundant': 1,\n",
      "          'normal': 1,\n",
      "          'lasts': 1,\n",
      "          'half': 1,\n",
      "          'goes': 1,\n",
      "          '100': 1,\n",
      "          'minutes': 1,\n",
      "          'seems': 1,\n",
      "          'long': 1,\n",
      "          'far': 1,\n",
      "          'time': 1,\n",
      "          'side': 1,\n",
      "          'ntheres': 1,\n",
      "          'could': 1,\n",
      "          'definitely': 1,\n",
      "          'argued': 1,\n",
      "          'hey': 1,\n",
      "          'sympathize': 1,\n",
      "          'coulda': 1,\n",
      "          'cut': 1,\n",
      "          'saved': 1,\n",
      "          'presentation': 1,\n",
      "          'well': 1,\n",
      "          'elements': 1,\n",
      "          'atmosphere': 1,\n",
      "          'dark': 1,\n",
      "          'forboding': 1,\n",
      "          'weird': 1,\n",
      "          'feeling': 1,\n",
      "          'none': 1,\n",
      "          'softly': 1,\n",
      "          'asks': 1,\n",
      "          'questions': 1,\n",
      "          'sounds': 1,\n",
      "          'says': 1,\n",
      "          'sequence': 1,\n",
      "          'involving': 1,\n",
      "          'characters': 1,\n",
      "          'death': 1,\n",
      "          'filled': 1,\n",
      "          'edgy': 1,\n",
      "          'disjointment': 1,\n",
      "          'needs': 1,\n",
      "          'final': 1,\n",
      "          'perfectly': 1,\n",
      "          'image': 1,\n",
      "          'couple': 1,\n",
      "          'front': 1,\n",
      "          'despite': 1,\n",
      "          'wounded': 1,\n",
      "          'ousting': 1,\n",
      "          'linda': 1,\n",
      "          'lovelace': 1,\n",
      "          'best': 1,\n",
      "          'actress': 1,\n",
      "          'usually': 1,\n",
      "          'intense': 1,\n",
      "          'nshe': 1,\n",
      "          'words': 1,\n",
      "          'zombielike': 1,\n",
      "          'hushes': 1,\n",
      "          'blank': 1,\n",
      "          'look': 1,\n",
      "          'whether': 1,\n",
      "          'enjoying': 1,\n",
      "          'actually': 1,\n",
      "          'dead': 1,\n",
      "          'someone': 1,\n",
      "          'nholly': 1,\n",
      "          'gets': 1,\n",
      "          'extra': 1,\n",
      "          'credit': 1,\n",
      "          'appearing': 1,\n",
      "          'adds': 1,\n",
      "          'kinkiness': 1,\n",
      "          'stolen': 1,\n",
      "          'plays': 1,\n",
      "          'character': 1,\n",
      "          'intensely': 1,\n",
      "          'upstages': 1,\n",
      "          'everyone': 1,\n",
      "          'often': 1,\n",
      "          'affinity': 1,\n",
      "          'life': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'energy': 1,\n",
      "          'photographs': 1,\n",
      "          'picture': 1,\n",
      "          'tatoo': 1,\n",
      "          'sexual': 1,\n",
      "          'chemistry': 1,\n",
      "          'foreshadowing': 1,\n",
      "          'nkosteas': 1,\n",
      "          'known': 1,\n",
      "          'actor': 1,\n",
      "          'biggest': 1,\n",
      "          'casey': 1,\n",
      "          'jones': 1,\n",
      "          'teenage': 1,\n",
      "          'mutant': 1,\n",
      "          'ninja': 1,\n",
      "          'turtles': 1,\n",
      "          'denirolike': 1,\n",
      "          'presence': 1,\n",
      "          'hinting': 1,\n",
      "          'capable': 1,\n",
      "          'bigger': 1,\n",
      "          'roles': 1,\n",
      "          'hardly': 1,\n",
      "          'enjoyed': 1,\n",
      "          'intriguing': 1,\n",
      "          'exist': 1,\n",
      "          'strangest': 1,\n",
      "          'bizarre': 1,\n",
      "          'world': 1,\n",
      "          'able': 1,\n",
      "          'entities': 1,\n",
      "          'exactly': 1,\n",
      "          'pain': 1,\n",
      "          'negative': 1,\n",
      "          'sucessful': 1,\n",
      "          'bringing': 1,\n",
      "          'unnerved': 1,\n",
      "          'freaked': 1,\n",
      "          'ndespite': 1,\n",
      "          'hardcore': 1,\n",
      "          'nature': 1,\n",
      "          'subsequent': 1,\n",
      "          'rating': 1,\n",
      "          'theres': 1,\n",
      "          'rrated': 1,\n",
      "          'version': 1,\n",
      "          'near': 1,\n",
      "          'anyone': 1,\n",
      "          'looking': 1,\n",
      "          'turnon': 1,\n",
      "          'rent': 1,\n",
      "          'regular': 1,\n",
      "          'porno': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'scenes': 4,\n",
      "          'movie': 2,\n",
      "          'cold': 2,\n",
      "          'minnesota': 2,\n",
      "          'long': 2,\n",
      "          'works': 2,\n",
      "          'way': 2,\n",
      "          'possible': 2,\n",
      "          'get': 2,\n",
      "          'shot': 2,\n",
      "          'face': 2,\n",
      "          'film': 2,\n",
      "          'every': 2,\n",
      "          'first': 1,\n",
      "          'thing': 1,\n",
      "          'notice': 1,\n",
      "          'nplaced': 1,\n",
      "          'north': 1,\n",
      "          'dakota': 1,\n",
      "          'winter': 1,\n",
      "          'many': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'outside': 1,\n",
      "          'snowcovered': 1,\n",
      "          'ground': 1,\n",
      "          'background': 1,\n",
      "          'white': 1,\n",
      "          'njust': 1,\n",
      "          'need': 1,\n",
      "          'bloomington': 1,\n",
      "          'struggles': 1,\n",
      "          'endless': 1,\n",
      "          'night': 1,\n",
      "          'nas': 1,\n",
      "          'coen': 1,\n",
      "          'brothers': 1,\n",
      "          'films': 1,\n",
      "          'features': 1,\n",
      "          'outlandish': 1,\n",
      "          'characters': 1,\n",
      "          'nefarious': 1,\n",
      "          'schemes': 1,\n",
      "          'oddest': 1,\n",
      "          'na': 1,\n",
      "          'car': 1,\n",
      "          'salesman': 1,\n",
      "          'hires': 1,\n",
      "          'couple': 1,\n",
      "          'hoods': 1,\n",
      "          'kidnap': 1,\n",
      "          'wife': 1,\n",
      "          'collect': 1,\n",
      "          'ransom': 1,\n",
      "          'father': 1,\n",
      "          'nalong': 1,\n",
      "          'everything': 1,\n",
      "          'possibly': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'nin': 1,\n",
      "          'brief': 1,\n",
      "          'vicious': 1,\n",
      "          'violence': 1,\n",
      "          'people': 1,\n",
      "          'head': 1,\n",
      "          'back': 1,\n",
      "          'chest': 1,\n",
      "          'various': 1,\n",
      "          'areas': 1,\n",
      "          'anatomy': 1,\n",
      "          'nthere': 1,\n",
      "          'also': 1,\n",
      "          'one': 1,\n",
      "          'unpleasant': 1,\n",
      "          'body': 1,\n",
      "          'disposal': 1,\n",
      "          'yet': 1,\n",
      "          'seen': 1,\n",
      "          'screen': 1,\n",
      "          'nremarkably': 1,\n",
      "          'enough': 1,\n",
      "          'played': 1,\n",
      "          'laughs': 1,\n",
      "          'neven': 1,\n",
      "          'remarkably': 1,\n",
      "          'nthe': 1,\n",
      "          'likable': 1,\n",
      "          'person': 1,\n",
      "          'pregnant': 1,\n",
      "          'sheriff': 1,\n",
      "          'frances': 1,\n",
      "          'mcdormand': 1,\n",
      "          'hunts': 1,\n",
      "          'killers': 1,\n",
      "          'eating': 1,\n",
      "          'opportunity': 1,\n",
      "          'nwith': 1,\n",
      "          'good': 1,\n",
      "          'audience': 1,\n",
      "          'gains': 1,\n",
      "          'new': 1,\n",
      "          'knowledge': 1,\n",
      "          'nhere': 1,\n",
      "          'learn': 1,\n",
      "          '_two_': 1,\n",
      "          'things': 1,\n",
      "          'neveryone': 1,\n",
      "          'speaks': 1,\n",
      "          'annoying': 1,\n",
      "          'whining': 1,\n",
      "          'accent': 1,\n",
      "          'would': 1,\n",
      "          'drive': 1,\n",
      "          'crazy': 1,\n",
      "          'nand': 1,\n",
      "          'dont': 1,\n",
      "          'violent': 1,\n",
      "          'illegal': 1,\n",
      "          'business': 1,\n",
      "          'lowlife': 1,\n",
      "          'amoral': 1,\n",
      "          'degenerate': 1,\n",
      "          'scumsucking': 1,\n",
      "          'losers': 1,\n",
      "          'noh': 1,\n",
      "          'yeah': 1,\n",
      "          'using': 1,\n",
      "          'brightly': 1,\n",
      "          'decorated': 1,\n",
      "          'napkin': 1,\n",
      "          'stop': 1,\n",
      "          'bleeding': 1,\n",
      "          'makes': 1,\n",
      "          'look': 1,\n",
      "          'goofy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'also': 5,\n",
      "          'character': 5,\n",
      "          'ni': 5,\n",
      "          'much': 5,\n",
      "          'nin': 4,\n",
      "          'fact': 4,\n",
      "          'film': 4,\n",
      "          'pretty': 4,\n",
      "          'great': 3,\n",
      "          'high': 3,\n",
      "          'school': 3,\n",
      "          'basketball': 3,\n",
      "          'like': 3,\n",
      "          'love': 3,\n",
      "          'definitely': 3,\n",
      "          'scene': 3,\n",
      "          'nits': 3,\n",
      "          '710': 3,\n",
      "          'girl': 2,\n",
      "          'coach': 2,\n",
      "          'loves': 2,\n",
      "          'set': 2,\n",
      "          'one': 2,\n",
      "          'thing': 2,\n",
      "          'leads': 2,\n",
      "          'see': 2,\n",
      "          'nelson': 2,\n",
      "          'shakespearian': 2,\n",
      "          'performances': 2,\n",
      "          'taking': 2,\n",
      "          'especially': 2,\n",
      "          'good': 2,\n",
      "          'actor': 2,\n",
      "          'side': 2,\n",
      "          'things': 2,\n",
      "          'appreciated': 2,\n",
      "          'man': 2,\n",
      "          'music': 2,\n",
      "          'little': 2,\n",
      "          'nthe': 2,\n",
      "          'thats': 2,\n",
      "          'final': 2,\n",
      "          'plot': 1,\n",
      "          'odin': 1,\n",
      "          'player': 1,\n",
      "          'nhes': 1,\n",
      "          'dating': 1,\n",
      "          'hot': 1,\n",
      "          'ass': 1,\n",
      "          'even': 1,\n",
      "          'admits': 1,\n",
      "          'fatherly': 1,\n",
      "          'feelings': 1,\n",
      "          'towards': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'coachs': 1,\n",
      "          'real': 1,\n",
      "          'son': 1,\n",
      "          'hugo': 1,\n",
      "          'isnt': 1,\n",
      "          'pleased': 1,\n",
      "          'hear': 1,\n",
      "          'doesnt': 1,\n",
      "          'hearing': 1,\n",
      "          'odins': 1,\n",
      "          'triumphs': 1,\n",
      "          'generally': 1,\n",
      "          'supersede': 1,\n",
      "          'nso': 1,\n",
      "          'nwell': 1,\n",
      "          'lets': 1,\n",
      "          'say': 1,\n",
      "          'starts': 1,\n",
      "          'mess': 1,\n",
      "          'peoples': 1,\n",
      "          'heads': 1,\n",
      "          'another': 1,\n",
      "          'well': 1,\n",
      "          'nyoull': 1,\n",
      "          'ncritique': 1,\n",
      "          'powerful': 1,\n",
      "          'thoroughly': 1,\n",
      "          'depressing': 1,\n",
      "          'wellacted': 1,\n",
      "          'nonteen': 1,\n",
      "          'starring': 1,\n",
      "          'bunch': 1,\n",
      "          'teens': 1,\n",
      "          'ncredit': 1,\n",
      "          'director': 1,\n",
      "          'tim': 1,\n",
      "          'blake': 1,\n",
      "          'creating': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'version': 1,\n",
      "          'classic': 1,\n",
      "          'realistic': 1,\n",
      "          'environment': 1,\n",
      "          'championships': 1,\n",
      "          'backdrop': 1,\n",
      "          'impending': 1,\n",
      "          'sense': 1,\n",
      "          'doom': 1,\n",
      "          'core': 1,\n",
      "          'nyou': 1,\n",
      "          'give': 1,\n",
      "          'actors': 1,\n",
      "          'turn': 1,\n",
      "          'convincing': 1,\n",
      "          'characters': 1,\n",
      "          'ups': 1,\n",
      "          'downs': 1,\n",
      "          'nhartnett': 1,\n",
      "          'applauded': 1,\n",
      "          'despicable': 1,\n",
      "          'dude': 1,\n",
      "          'want': 1,\n",
      "          'grab': 1,\n",
      "          'throat': 1,\n",
      "          'beat': 1,\n",
      "          'shit': 1,\n",
      "          'sign': 1,\n",
      "          'ask': 1,\n",
      "          'nphifer': 1,\n",
      "          'comes': 1,\n",
      "          'play': 1,\n",
      "          'nice': 1,\n",
      "          'blend': 1,\n",
      "          'charisma': 1,\n",
      "          'fear': 1,\n",
      "          'anger': 1,\n",
      "          'spread': 1,\n",
      "          'always': 1,\n",
      "          'guys': 1,\n",
      "          'felt': 1,\n",
      "          'sorry': 1,\n",
      "          'moved': 1,\n",
      "          'along': 1,\n",
      "          'njulia': 1,\n",
      "          'stiles': 1,\n",
      "          'wasnt': 1,\n",
      "          'different': 1,\n",
      "          'others': 1,\n",
      "          'shes': 1,\n",
      "          'played': 1,\n",
      "          'recently': 1,\n",
      "          'however': 1,\n",
      "          'surprised': 1,\n",
      "          'martin': 1,\n",
      "          'sheens': 1,\n",
      "          'showing': 1,\n",
      "          'since': 1,\n",
      "          'hadnt': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'past': 1,\n",
      "          'years': 1,\n",
      "          'nhis': 1,\n",
      "          'overthetop': 1,\n",
      "          'fervor': 1,\n",
      "          'rage': 1,\n",
      "          'ultimate': 1,\n",
      "          'blind': 1,\n",
      "          'desire': 1,\n",
      "          'win': 1,\n",
      "          'na': 1,\n",
      "          'example': 1,\n",
      "          'workaholic': 1,\n",
      "          'trees': 1,\n",
      "          'forest': 1,\n",
      "          'reservations': 1,\n",
      "          'though': 1,\n",
      "          'nfirst': 1,\n",
      "          'gangsta': 1,\n",
      "          'hiphop': 1,\n",
      "          'used': 1,\n",
      "          'every': 1,\n",
      "          'transition': 1,\n",
      "          'nit': 1,\n",
      "          'cute': 1,\n",
      "          'first': 1,\n",
      "          'became': 1,\n",
      "          'obvious': 1,\n",
      "          'annoying': 1,\n",
      "          'times': 1,\n",
      "          'edited': 1,\n",
      "          'choppily': 1,\n",
      "          'nsome': 1,\n",
      "          'scenes': 1,\n",
      "          'cut': 1,\n",
      "          'cleaned': 1,\n",
      "          'afterwards': 1,\n",
      "          'didnt': 1,\n",
      "          'hartnetts': 1,\n",
      "          'behind': 1,\n",
      "          'nastiness': 1,\n",
      "          'goes': 1,\n",
      "          'infallible': 1,\n",
      "          'words': 1,\n",
      "          'everything': 1,\n",
      "          'says': 1,\n",
      "          'asks': 1,\n",
      "          'someone': 1,\n",
      "          'happens': 1,\n",
      "          'automatically': 1,\n",
      "          'without': 1,\n",
      "          'goofups': 1,\n",
      "          'mean': 1,\n",
      "          'know': 1,\n",
      "          'guy': 1,\n",
      "          'smart': 1,\n",
      "          'would': 1,\n",
      "          'realism': 1,\n",
      "          'circumstances': 1,\n",
      "          'nbut': 1,\n",
      "          'overall': 1,\n",
      "          'devastate': 1,\n",
      "          'fun': 1,\n",
      "          'date': 1,\n",
      "          'team': 1,\n",
      "          'black': 1,\n",
      "          'star': 1,\n",
      "          'falls': 1,\n",
      "          'white': 1,\n",
      "          'tracks': 1,\n",
      "          'jealousy': 1,\n",
      "          'envy': 1,\n",
      "          'fury': 1,\n",
      "          'passion': 1,\n",
      "          'revenge': 1,\n",
      "          'negative': 1,\n",
      "          'thought': 1,\n",
      "          'ever': 1,\n",
      "          'passed': 1,\n",
      "          'head': 1,\n",
      "          'nis': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'noh': 1,\n",
      "          'n': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'moving': 1,\n",
      "          'picture': 1,\n",
      "          'speak': 1,\n",
      "          'thank': 1,\n",
      "          'god': 1,\n",
      "          'outstanding': 1,\n",
      "          'directorial': 1,\n",
      "          'job': 1,\n",
      "          'alone': 1,\n",
      "          'enough': 1,\n",
      "          'send': 1,\n",
      "          'massive': 1,\n",
      "          'chill': 1,\n",
      "          'spine': 1,\n",
      "          'impressed': 1,\n",
      "          'directors': 1,\n",
      "          'choice': 1,\n",
      "          'near': 1,\n",
      "          'end': 1,\n",
      "          'whole': 1,\n",
      "          'sequence': 1,\n",
      "          'quite': 1,\n",
      "          'reminiscent': 1,\n",
      "          'showdown': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'guess': 1,\n",
      "          'saying': 1,\n",
      "          'something': 1,\n",
      "          'right': 1,\n",
      "          'nwheres': 1,\n",
      "          'joblo': 1,\n",
      "          'coming': 1,\n",
      "          'n10': 1,\n",
      "          'hate': 1,\n",
      "          'election': 1,\n",
      "          'hamlet': 1,\n",
      "          '610': 1,\n",
      "          'labors': 1,\n",
      "          'lost': 1,\n",
      "          '810': 1,\n",
      "          'natural': 1,\n",
      "          'born': 1,\n",
      "          'killers': 1,\n",
      "          '910': 1,\n",
      "          'save': 1,\n",
      "          'last': 1,\n",
      "          'dance': 1,\n",
      "          'shakespeare': 1,\n",
      "          '510': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'brooks': 5,\n",
      "          'also': 3,\n",
      "          'life': 2,\n",
      "          'days': 2,\n",
      "          'judgement': 2,\n",
      "          'city': 2,\n",
      "          'higher': 2,\n",
      "          'torn': 2,\n",
      "          'movie': 2,\n",
      "          'away': 2,\n",
      "          'defending': 1,\n",
      "          'imaginative': 1,\n",
      "          'vision': 1,\n",
      "          'afterlife': 1,\n",
      "          'twisted': 1,\n",
      "          'mind': 1,\n",
      "          'writerdirector': 1,\n",
      "          'albert': 1,\n",
      "          'stars': 1,\n",
      "          'comedy': 1,\n",
      "          'nafter': 1,\n",
      "          'dying': 1,\n",
      "          'car': 1,\n",
      "          'crash': 1,\n",
      "          'birthday': 1,\n",
      "          'wakes': 1,\n",
      "          'satirical': 1,\n",
      "          'rendition': 1,\n",
      "          'purgatory': 1,\n",
      "          'beings': 1,\n",
      "          'evaluate': 1,\n",
      "          'lives': 1,\n",
      "          'newly': 1,\n",
      "          'deceased': 1,\n",
      "          'earthlings': 1,\n",
      "          'nbrooks': 1,\n",
      "          'five': 1,\n",
      "          'convince': 1,\n",
      "          'two': 1,\n",
      "          'judges': 1,\n",
      "          'hes': 1,\n",
      "          'worthy': 1,\n",
      "          'passing': 1,\n",
      "          'plains': 1,\n",
      "          'existence': 1,\n",
      "          'nenter': 1,\n",
      "          'rip': 1,\n",
      "          'slick': 1,\n",
      "          'lawyer': 1,\n",
      "          'defends': 1,\n",
      "          'court': 1,\n",
      "          'prosecutor': 1,\n",
      "          'lee': 1,\n",
      "          'grant': 1,\n",
      "          'nduring': 1,\n",
      "          'trial': 1,\n",
      "          'must': 1,\n",
      "          'view': 1,\n",
      "          'episodes': 1,\n",
      "          'screen': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'scenes': 1,\n",
      "          'hysterically': 1,\n",
      "          'funny': 1,\n",
      "          'painfully': 1,\n",
      "          'poignant': 1,\n",
      "          'nits': 1,\n",
      "          'impossible': 1,\n",
      "          'resist': 1,\n",
      "          'chuckling': 1,\n",
      "          'cringing': 1,\n",
      "          'try': 1,\n",
      "          'explain': 1,\n",
      "          'cowardly': 1,\n",
      "          'behavior': 1,\n",
      "          'earth': 1,\n",
      "          'ntorn': 1,\n",
      "          'particular': 1,\n",
      "          'vintage': 1,\n",
      "          'comic': 1,\n",
      "          'form': 1,\n",
      "          'walks': 1,\n",
      "          'picture': 1,\n",
      "          'nthe': 1,\n",
      "          'features': 1,\n",
      "          'meryl': 1,\n",
      "          'streep': 1,\n",
      "          'appealing': 1,\n",
      "          'loveinterest': 1,\n",
      "          'shirley': 1,\n",
      "          'maclaine': 1,\n",
      "          'pops': 1,\n",
      "          'hilarious': 1,\n",
      "          'cameo': 1,\n",
      "          'nwhile': 1,\n",
      "          'film': 1,\n",
      "          'uneven': 1,\n",
      "          'many': 1,\n",
      "          'gags': 1,\n",
      "          'price': 1,\n",
      "          'less': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'food': 1,\n",
      "          'always': 1,\n",
      "          'delicious': 1,\n",
      "          'youve': 1,\n",
      "          'ever': 1,\n",
      "          'tasted': 1,\n",
      "          'nand': 1,\n",
      "          'caloriefreeso': 1,\n",
      "          'chow': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'zero': 10,\n",
      "          'zeros': 6,\n",
      "          'part': 5,\n",
      "          'character': 5,\n",
      "          'case': 5,\n",
      "          'nhowever': 5,\n",
      "          'scenes': 5,\n",
      "          'kasdan': 3,\n",
      "          'one': 3,\n",
      "          'film': 3,\n",
      "          'nhe': 3,\n",
      "          'many': 3,\n",
      "          'effect': 3,\n",
      "          'never': 3,\n",
      "          'well': 3,\n",
      "          'best': 2,\n",
      "          'around': 2,\n",
      "          'detective': 2,\n",
      "          'mystery': 2,\n",
      "          'nfor': 2,\n",
      "          'pullman': 2,\n",
      "          'though': 2,\n",
      "          'rather': 2,\n",
      "          'even': 2,\n",
      "          'way': 2,\n",
      "          'detachment': 2,\n",
      "          'makes': 2,\n",
      "          'arlo': 2,\n",
      "          'ben': 2,\n",
      "          'brilliance': 2,\n",
      "          'behavior': 2,\n",
      "          'frustrating': 2,\n",
      "          'nand': 2,\n",
      "          'nthis': 2,\n",
      "          'stark': 2,\n",
      "          'kept': 2,\n",
      "          'box': 2,\n",
      "          'key': 2,\n",
      "          'time': 2,\n",
      "          'gloria': 2,\n",
      "          'may': 2,\n",
      "          'less': 2,\n",
      "          'nzero': 2,\n",
      "          'daryl': 2,\n",
      "          'theres': 2,\n",
      "          'place': 2,\n",
      "          'begins': 2,\n",
      "          'viewer': 2,\n",
      "          'moment': 2,\n",
      "          'jake': 1,\n",
      "          'son': 1,\n",
      "          'screenwriters': 1,\n",
      "          'breaks': 1,\n",
      "          'filmmaking': 1,\n",
      "          'writing': 1,\n",
      "          'directing': 1,\n",
      "          'hardtocategorize': 1,\n",
      "          'story': 1,\n",
      "          'comedy': 1,\n",
      "          'study': 1,\n",
      "          'romance': 1,\n",
      "          'manages': 1,\n",
      "          'combine': 1,\n",
      "          'genres': 1,\n",
      "          'successfully': 1,\n",
      "          'create': 1,\n",
      "          'captivating': 1,\n",
      "          'ndaryl': 1,\n",
      "          'bill': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'sherlock': 1,\n",
      "          'holmes': 1,\n",
      "          'nthe': 1,\n",
      "          'parallel': 1,\n",
      "          'present': 1,\n",
      "          'love': 1,\n",
      "          'music': 1,\n",
      "          'plays': 1,\n",
      "          'guitar': 1,\n",
      "          'violin': 1,\n",
      "          'addiction': 1,\n",
      "          'drugs': 1,\n",
      "          'amphetamines': 1,\n",
      "          'morphine': 1,\n",
      "          'titles': 1,\n",
      "          'cases': 1,\n",
      "          'sherlockian': 1,\n",
      "          'epigrams': 1,\n",
      "          'mismatched': 1,\n",
      "          'shoelaces': 1,\n",
      "          'man': 1,\n",
      "          'lied': 1,\n",
      "          'age': 1,\n",
      "          'hired': 1,\n",
      "          'gun': 1,\n",
      "          'made': 1,\n",
      "          'mistakes': 1,\n",
      "          'observance': 1,\n",
      "          'fine': 1,\n",
      "          'art': 1,\n",
      "          'brilliant': 1,\n",
      "          'private': 1,\n",
      "          'investigator': 1,\n",
      "          'somewhat': 1,\n",
      "          'selfimposed': 1,\n",
      "          'outcast': 1,\n",
      "          'society': 1,\n",
      "          'could': 1,\n",
      "          'nothing': 1,\n",
      "          'without': 1,\n",
      "          'legwork': 1,\n",
      "          'trusty': 1,\n",
      "          'assistant': 1,\n",
      "          'dr': 1,\n",
      "          'watson': 1,\n",
      "          'mean': 1,\n",
      "          'steve': 1,\n",
      "          'stiller': 1,\n",
      "          'narlo': 1,\n",
      "          'happy': 1,\n",
      "          'job': 1,\n",
      "          'thrilled': 1,\n",
      "          'bizarre': 1,\n",
      "          'strange': 1,\n",
      "          'requests': 1,\n",
      "          'former': 1,\n",
      "          'lawyer': 1,\n",
      "          'theyre': 1,\n",
      "          'girlfriend': 1,\n",
      "          'jess': 1,\n",
      "          'angela': 1,\n",
      "          'featherstone': 1,\n",
      "          'fed': 1,\n",
      "          'boyfriends': 1,\n",
      "          'boss': 1,\n",
      "          'means': 1,\n",
      "          'situation': 1,\n",
      "          'new': 1,\n",
      "          'comes': 1,\n",
      "          'knocking': 1,\n",
      "          'ngregory': 1,\n",
      "          'ryan': 1,\n",
      "          'oneill': 1,\n",
      "          'hires': 1,\n",
      "          'find': 1,\n",
      "          'lost': 1,\n",
      "          'keys': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'safety': 1,\n",
      "          'deposit': 1,\n",
      "          'ring': 1,\n",
      "          'apparently': 1,\n",
      "          'contains': 1,\n",
      "          'incriminating': 1,\n",
      "          'evidence': 1,\n",
      "          'nnow': 1,\n",
      "          'blackmailed': 1,\n",
      "          'needs': 1,\n",
      "          'reclaim': 1,\n",
      "          'nightmare': 1,\n",
      "          'end': 1,\n",
      "          'nto': 1,\n",
      "          'solve': 1,\n",
      "          'reluctantly': 1,\n",
      "          'crawls': 1,\n",
      "          'shell': 1,\n",
      "          'vulnerable': 1,\n",
      "          'falls': 1,\n",
      "          'charms': 1,\n",
      "          'wily': 1,\n",
      "          'paramedic': 1,\n",
      "          'sullivan': 1,\n",
      "          'kim': 1,\n",
      "          'dickens': 1,\n",
      "          'involved': 1,\n",
      "          'blackmail': 1,\n",
      "          'scheme': 1,\n",
      "          'first': 1,\n",
      "          'question': 1,\n",
      "          'objectivity': 1,\n",
      "          'finds': 1,\n",
      "          'client': 1,\n",
      "          'sympathetic': 1,\n",
      "          'weakest': 1,\n",
      "          'obviously': 1,\n",
      "          'wacky': 1,\n",
      "          'depicting': 1,\n",
      "          'odd': 1,\n",
      "          'nsuch': 1,\n",
      "          'might': 1,\n",
      "          'appropriate': 1,\n",
      "          'outandout': 1,\n",
      "          'satire': 1,\n",
      "          'making': 1,\n",
      "          'ace': 1,\n",
      "          'venturaish': 1,\n",
      "          'much': 1,\n",
      "          'meatier': 1,\n",
      "          'movie': 1,\n",
      "          'takes': 1,\n",
      "          'get': 1,\n",
      "          'nthats': 1,\n",
      "          'say': 1,\n",
      "          'humor': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'stillers': 1,\n",
      "          'wonderfully': 1,\n",
      "          'underplayed': 1,\n",
      "          'comic': 1,\n",
      "          'moments': 1,\n",
      "          'absolute': 1,\n",
      "          'disgust': 1,\n",
      "          'frustration': 1,\n",
      "          'employer': 1,\n",
      "          'overthetop': 1,\n",
      "          'quite': 1,\n",
      "          'gel': 1,\n",
      "          'rest': 1,\n",
      "          'arent': 1,\n",
      "          'funny': 1,\n",
      "          'enough': 1,\n",
      "          'stand': 1,\n",
      "          'nonce': 1,\n",
      "          'investigation': 1,\n",
      "          'underway': 1,\n",
      "          'however': 1,\n",
      "          'really': 1,\n",
      "          'shine': 1,\n",
      "          'nhis': 1,\n",
      "          'lightning': 1,\n",
      "          'quick': 1,\n",
      "          'inferences': 1,\n",
      "          'fascinating': 1,\n",
      "          'sherlocks': 1,\n",
      "          'nas': 1,\n",
      "          'unfold': 1,\n",
      "          'deductions': 1,\n",
      "          'lead': 1,\n",
      "          'plot': 1,\n",
      "          'interesting': 1,\n",
      "          'directions': 1,\n",
      "          'lose': 1,\n",
      "          'works': 1,\n",
      "          'romantic': 1,\n",
      "          'nzeros': 1,\n",
      "          'relationship': 1,\n",
      "          'lowkey': 1,\n",
      "          'hits': 1,\n",
      "          'right': 1,\n",
      "          'notes': 1,\n",
      "          'always': 1,\n",
      "          'distant': 1,\n",
      "          'glorias': 1,\n",
      "          'nshes': 1,\n",
      "          'given': 1,\n",
      "          'plenty': 1,\n",
      "          'development': 1,\n",
      "          'understand': 1,\n",
      "          'thinking': 1,\n",
      "          'nperhaps': 1,\n",
      "          'intentional': 1,\n",
      "          'audience': 1,\n",
      "          'zone': 1,\n",
      "          'nbut': 1,\n",
      "          'whole': 1,\n",
      "          'nbill': 1,\n",
      "          'hes': 1,\n",
      "          'spacing': 1,\n",
      "          'creates': 1,\n",
      "          'vibrant': 1,\n",
      "          'ntheres': 1,\n",
      "          'briefly': 1,\n",
      "          'connects': 1,\n",
      "          'world': 1,\n",
      "          'managed': 1,\n",
      "          'detach': 1,\n",
      "          'years': 1,\n",
      "          'shockingly': 1,\n",
      "          'moving': 1,\n",
      "          'expressing': 1,\n",
      "          'seriousness': 1,\n",
      "          'heretofore': 1,\n",
      "          'unassociated': 1,\n",
      "          'fits': 1,\n",
      "          'although': 1,\n",
      "          'sometimes': 1,\n",
      "          'hard': 1,\n",
      "          'take': 1,\n",
      "          'called': 1,\n",
      "          'seriously': 1,\n",
      "          'understands': 1,\n",
      "          'meaning': 1,\n",
      "          'behind': 1,\n",
      "          'name': 1,\n",
      "          'nalthough': 1,\n",
      "          'bit': 1,\n",
      "          'awkward': 1,\n",
      "          'places': 1,\n",
      "          'strong': 1,\n",
      "          'debut': 1,\n",
      "          'shows': 1,\n",
      "          'great': 1,\n",
      "          'promise': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'earth': 4,\n",
      "          'film': 4,\n",
      "          'blood': 4,\n",
      "          'far': 3,\n",
      "          'scifi': 3,\n",
      "          'johnson': 3,\n",
      "          'michael': 3,\n",
      "          'york': 3,\n",
      "          'nbut': 3,\n",
      "          'nand': 3,\n",
      "          'one': 3,\n",
      "          'nnot': 2,\n",
      "          '1988': 2,\n",
      "          'remake': 2,\n",
      "          'real': 2,\n",
      "          'quite': 2,\n",
      "          'best': 2,\n",
      "          'bmovie': 2,\n",
      "          'original': 2,\n",
      "          'time': 2,\n",
      "          'video': 2,\n",
      "          'alien': 2,\n",
      "          'eccentric': 2,\n",
      "          'nhe': 2,\n",
      "          'nurse': 2,\n",
      "          'amanda': 2,\n",
      "          'performance': 2,\n",
      "          'cool': 2,\n",
      "          'made': 2,\n",
      "          'doesnt': 2,\n",
      "          'schlock': 2,\n",
      "          'given': 2,\n",
      "          'well': 1,\n",
      "          'ill': 1,\n",
      "          'damned': 1,\n",
      "          'excellent': 1,\n",
      "          'surprise': 1,\n",
      "          'confused': 1,\n",
      "          'campy': 1,\n",
      "          'inferior': 1,\n",
      "          'starring': 1,\n",
      "          'exporn': 1,\n",
      "          'star': 1,\n",
      "          'traci': 1,\n",
      "          'lords': 1,\n",
      "          'recent': 1,\n",
      "          'attempt': 1,\n",
      "          'remaking': 1,\n",
      "          '1950s': 1,\n",
      "          'drivein': 1,\n",
      "          'schlockfest': 1,\n",
      "          'gem': 1,\n",
      "          'possibly': 1,\n",
      "          'flick': 1,\n",
      "          '1995': 1,\n",
      "          'nonce': 1,\n",
      "          'king': 1,\n",
      "          'roger': 1,\n",
      "          'corman': 1,\n",
      "          'behind': 1,\n",
      "          'effort': 1,\n",
      "          'directed': 1,\n",
      "          'appears': 1,\n",
      "          'role': 1,\n",
      "          'executive': 1,\n",
      "          'producer': 1,\n",
      "          'rest': 1,\n",
      "          'crew': 1,\n",
      "          'cast': 1,\n",
      "          'relative': 1,\n",
      "          'unknowns': 1,\n",
      "          'nit': 1,\n",
      "          'seems': 1,\n",
      "          'criminal': 1,\n",
      "          'released': 1,\n",
      "          'direct': 1,\n",
      "          'countries': 1,\n",
      "          'absolute': 1,\n",
      "          'mustsee': 1,\n",
      "          'fans': 1,\n",
      "          'treat': 1,\n",
      "          'anyone': 1,\n",
      "          'enjoys': 1,\n",
      "          'decently': 1,\n",
      "          'acted': 1,\n",
      "          'written': 1,\n",
      "          'thrillers': 1,\n",
      "          'kooky': 1,\n",
      "          'bent': 1,\n",
      "          'plot': 1,\n",
      "          'brief': 1,\n",
      "          'npaul': 1,\n",
      "          'posing': 1,\n",
      "          'millionaire': 1,\n",
      "          'though': 1,\n",
      "          'needing': 1,\n",
      "          'kill': 1,\n",
      "          'people': 1,\n",
      "          'live': 1,\n",
      "          'visiting': 1,\n",
      "          'selfish': 1,\n",
      "          'reasons': 1,\n",
      "          'nhis': 1,\n",
      "          'race': 1,\n",
      "          'dying': 1,\n",
      "          'mysterious': 1,\n",
      "          'disease': 1,\n",
      "          'desperately': 1,\n",
      "          'trying': 1,\n",
      "          'find': 1,\n",
      "          'cure': 1,\n",
      "          'key': 1,\n",
      "          'lies': 1,\n",
      "          'humans': 1,\n",
      "          'visits': 1,\n",
      "          'soon': 1,\n",
      "          'puts': 1,\n",
      "          'spell': 1,\n",
      "          'respected': 1,\n",
      "          'physician': 1,\n",
      "          'dr': 1,\n",
      "          'rochelle': 1,\n",
      "          'hypnotises': 1,\n",
      "          'secret': 1,\n",
      "          'research': 1,\n",
      "          'behalf': 1,\n",
      "          'also': 1,\n",
      "          'doctor': 1,\n",
      "          'convince': 1,\n",
      "          'smart': 1,\n",
      "          'sexy': 1,\n",
      "          'elizabeth': 1,\n",
      "          'barondes': 1,\n",
      "          'move': 1,\n",
      "          'private': 1,\n",
      "          'give': 1,\n",
      "          'transfusions': 1,\n",
      "          'constantly': 1,\n",
      "          'requires': 1,\n",
      "          'long': 1,\n",
      "          'johnsons': 1,\n",
      "          'sleazy': 1,\n",
      "          'chauffeur': 1,\n",
      "          'release': 1,\n",
      "          'lot': 1,\n",
      "          'ni': 1,\n",
      "          'must': 1,\n",
      "          'admit': 1,\n",
      "          'first': 1,\n",
      "          'glimpse': 1,\n",
      "          'cover': 1,\n",
      "          'encouraging': 1,\n",
      "          'nbritish': 1,\n",
      "          'actor': 1,\n",
      "          'appeared': 1,\n",
      "          'stinkers': 1,\n",
      "          'past': 1,\n",
      "          'decades': 1,\n",
      "          'cry': 1,\n",
      "          'quality': 1,\n",
      "          'fare': 1,\n",
      "          'younger': 1,\n",
      "          'days': 1,\n",
      "          'caberat': 1,\n",
      "          '1972': 1,\n",
      "          'human': 1,\n",
      "          'disguise': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'outstanding': 1,\n",
      "          'weird': 1,\n",
      "          'twitches': 1,\n",
      "          'bizarre': 1,\n",
      "          'modes': 1,\n",
      "          'speech': 1,\n",
      "          'dapper': 1,\n",
      "          'clothes': 1,\n",
      "          'spectacles': 1,\n",
      "          'unexpected': 1,\n",
      "          'pathos': 1,\n",
      "          'invests': 1,\n",
      "          'character': 1,\n",
      "          'nyork': 1,\n",
      "          'turns': 1,\n",
      "          'hilarious': 1,\n",
      "          'menacing': 1,\n",
      "          'tragic': 1,\n",
      "          'nthis': 1,\n",
      "          'tourdeforce': 1,\n",
      "          'simply': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'obviously': 1,\n",
      "          'modest': 1,\n",
      "          'budget': 1,\n",
      "          'boasts': 1,\n",
      "          'enormous': 1,\n",
      "          'strengths': 1,\n",
      "          'casting': 1,\n",
      "          'spot': 1,\n",
      "          'acting': 1,\n",
      "          'terrific': 1,\n",
      "          'script': 1,\n",
      "          'intelligent': 1,\n",
      "          'witty': 1,\n",
      "          'consistently': 1,\n",
      "          'engaging': 1,\n",
      "          'cleverly': 1,\n",
      "          'updating': 1,\n",
      "          'balance': 1,\n",
      "          'horror': 1,\n",
      "          'humour': 1,\n",
      "          'perfect': 1,\n",
      "          'marked': 1,\n",
      "          'contrast': 1,\n",
      "          'earlier': 1,\n",
      "          'drag': 1,\n",
      "          'second': 1,\n",
      "          '90': 1,\n",
      "          'minute': 1,\n",
      "          'running': 1,\n",
      "          'thanks': 1,\n",
      "          'tight': 1,\n",
      "          'editing': 1,\n",
      "          'sure': 1,\n",
      "          'hand': 1,\n",
      "          'littleknown': 1,\n",
      "          'director': 1,\n",
      "          'terrance': 1,\n",
      "          'h': 1,\n",
      "          'winkless': 1,\n",
      "          'matter': 1,\n",
      "          'bit': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'cheesy': 1,\n",
      "          'even': 1,\n",
      "          'high': 1,\n",
      "          'class': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'criticism': 1,\n",
      "          'things': 1,\n",
      "          'get': 1,\n",
      "          'tad': 1,\n",
      "          'weak': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'ntighter': 1,\n",
      "          'direction': 1,\n",
      "          'could': 1,\n",
      "          'climax': 1,\n",
      "          'urgency': 1,\n",
      "          'characters': 1,\n",
      "          'act': 1,\n",
      "          'rather': 1,\n",
      "          'illogically': 1,\n",
      "          'lifethreatening': 1,\n",
      "          'situation': 1,\n",
      "          'minor': 1,\n",
      "          'complaints': 1,\n",
      "          'njust': 1,\n",
      "          'see': 1,\n",
      "          'biggest': 1,\n",
      "          'surprises': 1,\n",
      "          'years': 1,\n",
      "          'swoop': 1,\n",
      "          'youve': 1,\n",
      "          'legend': 1,\n",
      "          'dude': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'rush': 8,\n",
      "          'hour': 8,\n",
      "          'carter': 7,\n",
      "          'chan': 6,\n",
      "          'tucker': 5,\n",
      "          'film': 5,\n",
      "          'time': 5,\n",
      "          'lee': 5,\n",
      "          'jackie': 4,\n",
      "          '2': 4,\n",
      "          'bad': 4,\n",
      "          'well': 3,\n",
      "          'original': 3,\n",
      "          'getting': 3,\n",
      "          'first': 3,\n",
      "          'point': 3,\n",
      "          'hong': 3,\n",
      "          'kong': 3,\n",
      "          'chief': 3,\n",
      "          'friend': 3,\n",
      "          'high': 3,\n",
      "          'best': 3,\n",
      "          'takes': 3,\n",
      "          'gives': 3,\n",
      "          'ratner': 2,\n",
      "          'chris': 2,\n",
      "          'genre': 2,\n",
      "          'million': 2,\n",
      "          'team': 2,\n",
      "          'better': 2,\n",
      "          'combo': 2,\n",
      "          'terrific': 2,\n",
      "          'physical': 2,\n",
      "          'motor': 2,\n",
      "          'mouth': 2,\n",
      "          'made': 2,\n",
      "          'duet': 2,\n",
      "          'around': 2,\n",
      "          'nim': 2,\n",
      "          'wastes': 2,\n",
      "          'characters': 2,\n",
      "          'developed': 2,\n",
      "          'right': 2,\n",
      "          'us': 2,\n",
      "          'two': 2,\n",
      "          'american': 2,\n",
      "          'much': 2,\n",
      "          'case': 2,\n",
      "          'get': 2,\n",
      "          'chemistry': 2,\n",
      "          'things': 2,\n",
      "          'rh2': 2,\n",
      "          'chans': 2,\n",
      "          'artistry': 2,\n",
      "          'martial': 2,\n",
      "          'arts': 2,\n",
      "          'work': 2,\n",
      "          'guys': 2,\n",
      "          'continues': 2,\n",
      "          'look': 2,\n",
      "          'las': 2,\n",
      "          'vegas': 2,\n",
      "          'casino': 2,\n",
      "          'watch': 2,\n",
      "          'nwhen': 2,\n",
      "          'big': 2,\n",
      "          'fun': 2,\n",
      "          'karaoke': 2,\n",
      "          'bar': 2,\n",
      "          'guy': 2,\n",
      "          'ricky': 2,\n",
      "          'tan': 2,\n",
      "          'lone': 2,\n",
      "          'stage': 2,\n",
      "          'move': 2,\n",
      "          'fast': 2,\n",
      "          'make': 2,\n",
      "          'behind': 2,\n",
      "          'doesnt': 2,\n",
      "          'camera': 2,\n",
      "          'summer': 2,\n",
      "          '1998': 1,\n",
      "          'director': 1,\n",
      "          'brett': 1,\n",
      "          'stars': 1,\n",
      "          'breathed': 1,\n",
      "          'new': 1,\n",
      "          'life': 1,\n",
      "          'buddyaction': 1,\n",
      "          'crosscultural': 1,\n",
      "          'tune': 1,\n",
      "          '250': 1,\n",
      "          'nyou': 1,\n",
      "          'dont': 1,\n",
      "          'mess': 1,\n",
      "          'success': 1,\n",
      "          'back': 1,\n",
      "          'talents': 1,\n",
      "          'nonstop': 1,\n",
      "          'ethnically': 1,\n",
      "          'unusual': 1,\n",
      "          'played': 1,\n",
      "          'audiences': 1,\n",
      "          'world': 1,\n",
      "          'formula': 1,\n",
      "          'worked': 1,\n",
      "          'fact': 1,\n",
      "          'sequel': 1,\n",
      "          'inevitable': 1,\n",
      "          'never': 1,\n",
      "          'thrilled': 1,\n",
      "          'idea': 1,\n",
      "          'followup': 1,\n",
      "          'successful': 1,\n",
      "          'since': 1,\n",
      "          'rarely': 1,\n",
      "          'meet': 1,\n",
      "          'previously': 1,\n",
      "          'set': 1,\n",
      "          'expectations': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'business': 1,\n",
      "          'turns': 1,\n",
      "          'flick': 1,\n",
      "          'spawned': 1,\n",
      "          'script': 1,\n",
      "          'jeff': 1,\n",
      "          'nathanson': 1,\n",
      "          'utilizing': 1,\n",
      "          'ross': 1,\n",
      "          'lamanna': 1,\n",
      "          'start': 1,\n",
      "          'nterrorists': 1,\n",
      "          'bombed': 1,\n",
      "          'embassy': 1,\n",
      "          'killing': 1,\n",
      "          'translators': 1,\n",
      "          'inspector': 1,\n",
      "          'handed': 1,\n",
      "          'job': 1,\n",
      "          'solving': 1,\n",
      "          'crime': 1,\n",
      "          'nconcurrently': 1,\n",
      "          'james': 1,\n",
      "          'arrives': 1,\n",
      "          'island': 1,\n",
      "          'needed': 1,\n",
      "          'rr': 1,\n",
      "          'expects': 1,\n",
      "          'spend': 1,\n",
      "          'show': 1,\n",
      "          'sights': 1,\n",
      "          'ninstead': 1,\n",
      "          'drags': 1,\n",
      "          'duo': 1,\n",
      "          'involved': 1,\n",
      "          'stopping': 1,\n",
      "          'conspiracy': 1,\n",
      "          'counterfeit': 1,\n",
      "          'hundreds': 1,\n",
      "          'dollars': 1,\n",
      "          'makers': 1,\n",
      "          'working': 1,\n",
      "          'distinct': 1,\n",
      "          'advantage': 1,\n",
      "          'nwe': 1,\n",
      "          'viewer': 1,\n",
      "          'familiar': 1,\n",
      "          'lead': 1,\n",
      "          'alreadyexisting': 1,\n",
      "          'nthat': 1,\n",
      "          'probably': 1,\n",
      "          'saving': 1,\n",
      "          'pair': 1,\n",
      "          'wears': 1,\n",
      "          'friendship': 1,\n",
      "          'like': 1,\n",
      "          'comfortable': 1,\n",
      "          'suit': 1,\n",
      "          'nlittle': 1,\n",
      "          'wasted': 1,\n",
      "          'know': 1,\n",
      "          'key': 1,\n",
      "          'players': 1,\n",
      "          'screenplay': 1,\n",
      "          'capitalizes': 1,\n",
      "          'liked': 1,\n",
      "          'nfirst': 1,\n",
      "          'foremost': 1,\n",
      "          'immense': 1,\n",
      "          'pleasure': 1,\n",
      "          'watching': 1,\n",
      "          'fight': 1,\n",
      "          'choreography': 1,\n",
      "          '47year': 1,\n",
      "          'old': 1,\n",
      "          'master': 1,\n",
      "          'renowned': 1,\n",
      "          'reputation': 1,\n",
      "          'stunt': 1,\n",
      "          'disappoint': 1,\n",
      "          'nchans': 1,\n",
      "          'use': 1,\n",
      "          'props': 1,\n",
      "          'battling': 1,\n",
      "          'pulverizes': 1,\n",
      "          'opponents': 1,\n",
      "          'whatever': 1,\n",
      "          'item': 1,\n",
      "          'comes': 1,\n",
      "          'hand': 1,\n",
      "          'trash': 1,\n",
      "          'bucket': 1,\n",
      "          'nhis': 1,\n",
      "          'moves': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'good': 1,\n",
      "          'ever': 1,\n",
      "          'fights': 1,\n",
      "          'four': 1,\n",
      "          'five': 1,\n",
      "          'nemesis': 1,\n",
      "          'bamboo': 1,\n",
      "          'scaffolding': 1,\n",
      "          'tail': 1,\n",
      "          'end': 1,\n",
      "          'yacht': 1,\n",
      "          'massage': 1,\n",
      "          'parlor': 1,\n",
      "          'finale': 1,\n",
      "          'nlike': 1,\n",
      "          'harold': 1,\n",
      "          'lloyd': 1,\n",
      "          'buster': 1,\n",
      "          'keaton': 1,\n",
      "          'pride': 1,\n",
      "          'putting': 1,\n",
      "          'self': 1,\n",
      "          'line': 1,\n",
      "          'pursuit': 1,\n",
      "          'joy': 1,\n",
      "          'nchris': 1,\n",
      "          'reprises': 1,\n",
      "          'role': 1,\n",
      "          'mouthed': 1,\n",
      "          'la': 1,\n",
      "          'cop': 1,\n",
      "          'teams': 1,\n",
      "          'put': 1,\n",
      "          'unceremoniously': 1,\n",
      "          'pulled': 1,\n",
      "          'vacation': 1,\n",
      "          'help': 1,\n",
      "          'colleague': 1,\n",
      "          'still': 1,\n",
      "          'looks': 1,\n",
      "          'goes': 1,\n",
      "          'lair': 1,\n",
      "          'john': 1,\n",
      "          'hoods': 1,\n",
      "          'spotlight': 1,\n",
      "          'credible': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'riff': 1,\n",
      "          'comedian': 1,\n",
      "          'improv': 1,\n",
      "          'screen': 1,\n",
      "          'franchise': 1,\n",
      "          'hang': 1,\n",
      "          'coat': 1,\n",
      "          'pay': 1,\n",
      "          'bills': 1,\n",
      "          'flying': 1,\n",
      "          'feet': 1,\n",
      "          'fists': 1,\n",
      "          'tuckers': 1,\n",
      "          'endearing': 1,\n",
      "          'riggs': 1,\n",
      "          'murtaugh': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'films': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'along': 1,\n",
      "          'efficiently': 1,\n",
      "          'njohn': 1,\n",
      "          'suave': 1,\n",
      "          'villain': 1,\n",
      "          'real': 1,\n",
      "          'power': 1,\n",
      "          'throne': 1,\n",
      "          'bigwig': 1,\n",
      "          'steven': 1,\n",
      "          'reign': 1,\n",
      "          'alan': 1,\n",
      "          'king': 1,\n",
      "          'walk': 1,\n",
      "          'performance': 1,\n",
      "          'nlone': 1,\n",
      "          'chew': 1,\n",
      "          'scenery': 1,\n",
      "          'pronouncements': 1,\n",
      "          'elegance': 1,\n",
      "          'nzhang': 1,\n",
      "          'ziyi': 1,\n",
      "          'crouching': 1,\n",
      "          'tiger': 1,\n",
      "          'hidden': 1,\n",
      "          'dragon': 1,\n",
      "          'display': 1,\n",
      "          'skills': 1,\n",
      "          'rickys': 1,\n",
      "          'taciturn': 1,\n",
      "          'henchlady': 1,\n",
      "          'hu': 1,\n",
      "          'li': 1,\n",
      "          'carries': 1,\n",
      "          'ongoing': 1,\n",
      "          'battle': 1,\n",
      "          'n': 1,\n",
      "          'problem': 1,\n",
      "          'hitting': 1,\n",
      "          'woman': 1,\n",
      "          'falls': 1,\n",
      "          'aside': 1,\n",
      "          'eventual': 1,\n",
      "          'oneonone': 1,\n",
      "          'melee': 1,\n",
      "          'conclusion': 1,\n",
      "          'nroselyn': 1,\n",
      "          'sanchez': 1,\n",
      "          'knockdown': 1,\n",
      "          'gorgeous': 1,\n",
      "          'resembles': 1,\n",
      "          'sandra': 1,\n",
      "          'bullock': 1,\n",
      "          'undercover': 1,\n",
      "          'agent': 1,\n",
      "          'isabella': 1,\n",
      "          'molina': 1,\n",
      "          'add': 1,\n",
      "          'equation': 1,\n",
      "          'ndirector': 1,\n",
      "          'production': 1,\n",
      "          'assembled': 1,\n",
      "          'crew': 1,\n",
      "          'skilled': 1,\n",
      "          'craftsmen': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'matthew': 1,\n",
      "          'f': 1,\n",
      "          'leonetti': 1,\n",
      "          'long': 1,\n",
      "          'career': 1,\n",
      "          'shooting': 1,\n",
      "          'action': 1,\n",
      "          'flicks': 1,\n",
      "          'fluid': 1,\n",
      "          'movement': 1,\n",
      "          'needs': 1,\n",
      "          'nproduction': 1,\n",
      "          'design': 1,\n",
      "          'terrence': 1,\n",
      "          'marsh': 1,\n",
      "          'spans': 1,\n",
      "          'continents': 1,\n",
      "          'whether': 1,\n",
      "          'stakes': 1,\n",
      "          'rest': 1,\n",
      "          'techs': 1,\n",
      "          'quality': 1,\n",
      "          'surprised': 1,\n",
      "          'even': 1,\n",
      "          'say': 1,\n",
      "          'entertaining': 1,\n",
      "          'blockbuster': 1,\n",
      "          'movies': 1,\n",
      "          'nit': 1,\n",
      "          'kicks': 1,\n",
      "          'jurassic': 1,\n",
      "          'dino': 1,\n",
      "          'butt': 1,\n",
      "          'frolic': 1,\n",
      "          'pace': 1,\n",
      "          'mainstream': 1,\n",
      "          'thing': 1,\n",
      "          'far': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'b': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'actor': 6,\n",
      "          'hamlet': 5,\n",
      "          'well': 5,\n",
      "          'shakespeare': 4,\n",
      "          'english': 4,\n",
      "          'nhamlet': 4,\n",
      "          'nthe': 4,\n",
      "          'branagh': 4,\n",
      "          'scene': 4,\n",
      "          'hamlets': 4,\n",
      "          'high': 3,\n",
      "          'would': 3,\n",
      "          'nif': 3,\n",
      "          'right': 3,\n",
      "          'read': 3,\n",
      "          'king': 3,\n",
      "          'ghost': 3,\n",
      "          'story': 3,\n",
      "          'help': 3,\n",
      "          'scenes': 3,\n",
      "          'also': 3,\n",
      "          'quite': 3,\n",
      "          'nin': 3,\n",
      "          'nas': 3,\n",
      "          'actors': 3,\n",
      "          'many': 3,\n",
      "          'heston': 3,\n",
      "          'time': 3,\n",
      "          'us': 3,\n",
      "          'school': 2,\n",
      "          'kenneth': 2,\n",
      "          'branaghs': 2,\n",
      "          'might': 2,\n",
      "          'lover': 2,\n",
      "          'something': 2,\n",
      "          'denmark': 2,\n",
      "          'kings': 2,\n",
      "          'brother': 2,\n",
      "          'claudius': 2,\n",
      "          'play': 2,\n",
      "          'nhis': 2,\n",
      "          'father': 2,\n",
      "          'friend': 2,\n",
      "          'horatio': 2,\n",
      "          'treachery': 2,\n",
      "          'one': 2,\n",
      "          'grand': 2,\n",
      "          'equally': 2,\n",
      "          'characters': 2,\n",
      "          'film': 2,\n",
      "          'best': 2,\n",
      "          'directing': 2,\n",
      "          'around': 2,\n",
      "          'much': 2,\n",
      "          'seems': 2,\n",
      "          'classic': 2,\n",
      "          'nrichard': 2,\n",
      "          'excellent': 2,\n",
      "          'known': 2,\n",
      "          'lines': 2,\n",
      "          'think': 2,\n",
      "          'attention': 2,\n",
      "          'ni': 2,\n",
      "          'lemmon': 2,\n",
      "          'lord': 2,\n",
      "          'role': 2,\n",
      "          'two': 2,\n",
      "          'handsome': 2,\n",
      "          'kind': 2,\n",
      "          'hardly': 1,\n",
      "          'understood': 1,\n",
      "          'nwhy': 1,\n",
      "          'want': 1,\n",
      "          'grade': 1,\n",
      "          'doesnt': 1,\n",
      "          'count': 1,\n",
      "          'attitude': 1,\n",
      "          'ill': 1,\n",
      "          'say': 1,\n",
      "          'bat': 1,\n",
      "          'probably': 1,\n",
      "          'stop': 1,\n",
      "          'reading': 1,\n",
      "          'however': 1,\n",
      "          'bard': 1,\n",
      "          'least': 1,\n",
      "          'openminded': 1,\n",
      "          'challenging': 1,\n",
      "          'script': 1,\n",
      "          'rotten': 1,\n",
      "          'state': 1,\n",
      "          'nnamely': 1,\n",
      "          'died': 1,\n",
      "          'widow': 1,\n",
      "          'queen': 1,\n",
      "          'wed': 1,\n",
      "          'prince': 1,\n",
      "          'suspects': 1,\n",
      "          'foul': 1,\n",
      "          'suspicions': 1,\n",
      "          'confirmed': 1,\n",
      "          'appears': 1,\n",
      "          'relates': 1,\n",
      "          'murder': 1,\n",
      "          'brothers': 1,\n",
      "          'hands': 1,\n",
      "          'enlisting': 1,\n",
      "          'conspires': 1,\n",
      "          'capture': 1,\n",
      "          'conscience': 1,\n",
      "          'new': 1,\n",
      "          'expose': 1,\n",
      "          'game': 1,\n",
      "          'afoot': 1,\n",
      "          'first': 1,\n",
      "          'things': 1,\n",
      "          'notice': 1,\n",
      "          'production': 1,\n",
      "          'sets': 1,\n",
      "          'costumes': 1,\n",
      "          'nwith': 1,\n",
      "          'external': 1,\n",
      "          'filmed': 1,\n",
      "          'blemheim': 1,\n",
      "          'palace': 1,\n",
      "          'england': 1,\n",
      "          'sites': 1,\n",
      "          'recent': 1,\n",
      "          'avengers': 1,\n",
      "          'grandiose': 1,\n",
      "          'quality': 1,\n",
      "          'setting': 1,\n",
      "          'immediately': 1,\n",
      "          'established': 1,\n",
      "          'ninterior': 1,\n",
      "          'similarly': 1,\n",
      "          'graced': 1,\n",
      "          'intricate': 1,\n",
      "          'flamboyant': 1,\n",
      "          'rooms': 1,\n",
      "          'chambers': 1,\n",
      "          'castles': 1,\n",
      "          'throne': 1,\n",
      "          'room': 1,\n",
      "          'impressive': 1,\n",
      "          'piece': 1,\n",
      "          'work': 1,\n",
      "          'incorporating': 1,\n",
      "          'ceilings': 1,\n",
      "          'mirrorpanel': 1,\n",
      "          'doors': 1,\n",
      "          'bridges': 1,\n",
      "          'connect': 1,\n",
      "          'opposite': 1,\n",
      "          'sides': 1,\n",
      "          'secondstory': 1,\n",
      "          'loft': 1,\n",
      "          'ncostuming': 1,\n",
      "          'drawing': 1,\n",
      "          'upon': 1,\n",
      "          'history': 1,\n",
      "          'imagination': 1,\n",
      "          'nnot': 1,\n",
      "          '1600s': 1,\n",
      "          'attire': 1,\n",
      "          'cross': 1,\n",
      "          'era': 1,\n",
      "          'turn': 1,\n",
      "          'century': 1,\n",
      "          'russia': 1,\n",
      "          'effectively': 1,\n",
      "          'giving': 1,\n",
      "          'timeless': 1,\n",
      "          'feel': 1,\n",
      "          'nit': 1,\n",
      "          'surprising': 1,\n",
      "          'tim': 1,\n",
      "          'harvey': 1,\n",
      "          'alexandra': 1,\n",
      "          'byrne': 1,\n",
      "          'nominated': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'costume': 1,\n",
      "          'design': 1,\n",
      "          'oscars': 1,\n",
      "          'respectively': 1,\n",
      "          'addition': 1,\n",
      "          'plays': 1,\n",
      "          'title': 1,\n",
      "          'character': 1,\n",
      "          'revengedriven': 1,\n",
      "          'royal': 1,\n",
      "          'heir': 1,\n",
      "          'provides': 1,\n",
      "          'riveting': 1,\n",
      "          'performance': 1,\n",
      "          'emotional': 1,\n",
      "          'highs': 1,\n",
      "          'lows': 1,\n",
      "          'nfrom': 1,\n",
      "          'anticipation': 1,\n",
      "          'seeing': 1,\n",
      "          'fathers': 1,\n",
      "          'melancholy': 1,\n",
      "          'finding': 1,\n",
      "          'burial': 1,\n",
      "          'site': 1,\n",
      "          'childhood': 1,\n",
      "          'jester': 1,\n",
      "          'eventual': 1,\n",
      "          'wrath': 1,\n",
      "          'delivers': 1,\n",
      "          'spades': 1,\n",
      "          'nevery': 1,\n",
      "          'truly': 1,\n",
      "          'revolves': 1,\n",
      "          'tribute': 1,\n",
      "          'acting': 1,\n",
      "          'shakespeares': 1,\n",
      "          'manuscript': 1,\n",
      "          'whos': 1,\n",
      "          'shakespeareantrained': 1,\n",
      "          'watching': 1,\n",
      "          'perform': 1,\n",
      "          'craft': 1,\n",
      "          'love': 1,\n",
      "          'delight': 1,\n",
      "          'njulie': 1,\n",
      "          'christie': 1,\n",
      "          'mother': 1,\n",
      "          'gertrude': 1,\n",
      "          'derek': 1,\n",
      "          'jacobi': 1,\n",
      "          'murderous': 1,\n",
      "          'uncle': 1,\n",
      "          'fill': 1,\n",
      "          'roles': 1,\n",
      "          'superbly': 1,\n",
      "          'supporting': 1,\n",
      "          'players': 1,\n",
      "          'nkate': 1,\n",
      "          'winslet': 1,\n",
      "          'ophelia': 1,\n",
      "          'outstanding': 1,\n",
      "          'job': 1,\n",
      "          'demonstrating': 1,\n",
      "          'plummet': 1,\n",
      "          'depths': 1,\n",
      "          'dispair': 1,\n",
      "          'madness': 1,\n",
      "          'briers': 1,\n",
      "          'ophelias': 1,\n",
      "          'polonius': 1,\n",
      "          'michael': 1,\n",
      "          'moloney': 1,\n",
      "          'laertes': 1,\n",
      "          'convincing': 1,\n",
      "          'nnicholas': 1,\n",
      "          'farrell': 1,\n",
      "          'trusted': 1,\n",
      "          'timothy': 1,\n",
      "          'spall': 1,\n",
      "          'reece': 1,\n",
      "          'dinsdale': 1,\n",
      "          'twotiming': 1,\n",
      "          'rosencrantz': 1,\n",
      "          'guildenstern': 1,\n",
      "          'round': 1,\n",
      "          'core': 1,\n",
      "          'cast': 1,\n",
      "          'someone': 1,\n",
      "          'tried': 1,\n",
      "          'stuff': 1,\n",
      "          'possible': 1,\n",
      "          'cases': 1,\n",
      "          'made': 1,\n",
      "          'interesting': 1,\n",
      "          'nbilly': 1,\n",
      "          'crystal': 1,\n",
      "          'surprisingly': 1,\n",
      "          'good': 1,\n",
      "          'gravedigger': 1,\n",
      "          'unearths': 1,\n",
      "          'skull': 1,\n",
      "          'yorick': 1,\n",
      "          'knew': 1,\n",
      "          'ncrystal': 1,\n",
      "          'proves': 1,\n",
      "          'able': 1,\n",
      "          'deliver': 1,\n",
      "          'timing': 1,\n",
      "          'verbal': 1,\n",
      "          'countenance': 1,\n",
      "          'comedian': 1,\n",
      "          'result': 1,\n",
      "          'funny': 1,\n",
      "          'nhowever': 1,\n",
      "          'charleton': 1,\n",
      "          'butcher': 1,\n",
      "          'biggest': 1,\n",
      "          'surprise': 1,\n",
      "          'player': 1,\n",
      "          'leader': 1,\n",
      "          'troupe': 1,\n",
      "          'traveling': 1,\n",
      "          'absolutely': 1,\n",
      "          'breathtaking': 1,\n",
      "          'narrating': 1,\n",
      "          'priam': 1,\n",
      "          'hecuba': 1,\n",
      "          'npart': 1,\n",
      "          'monologue': 1,\n",
      "          'overlaid': 1,\n",
      "          'visual': 1,\n",
      "          'enactment': 1,\n",
      "          'sir': 1,\n",
      "          'john': 1,\n",
      "          'gielgud': 1,\n",
      "          'judi': 1,\n",
      "          'dench': 1,\n",
      "          'unfortunate': 1,\n",
      "          'robs': 1,\n",
      "          'deserves': 1,\n",
      "          'offcamera': 1,\n",
      "          'speaking': 1,\n",
      "          'gripping': 1,\n",
      "          'sort': 1,\n",
      "          'downplays': 1,\n",
      "          'narration': 1,\n",
      "          'done': 1,\n",
      "          'wellvoiced': 1,\n",
      "          'wish': 1,\n",
      "          'chosen': 1,\n",
      "          'allow': 1,\n",
      "          'envision': 1,\n",
      "          'minds': 1,\n",
      "          'lays': 1,\n",
      "          'let': 1,\n",
      "          'venerable': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'casting': 1,\n",
      "          'choices': 1,\n",
      "          'led': 1,\n",
      "          'poor': 1,\n",
      "          'distractions': 1,\n",
      "          'njack': 1,\n",
      "          'cant': 1,\n",
      "          'marcellus': 1,\n",
      "          'guard': 1,\n",
      "          'sees': 1,\n",
      "          'elder': 1,\n",
      "          'sadly': 1,\n",
      "          'underperforms': 1,\n",
      "          'shown': 1,\n",
      "          'left': 1,\n",
      "          'ngerard': 1,\n",
      "          'depardieu': 1,\n",
      "          'another': 1,\n",
      "          'talented': 1,\n",
      "          'wasted': 1,\n",
      "          'given': 1,\n",
      "          'little': 1,\n",
      "          'utterances': 1,\n",
      "          'yes': 1,\n",
      "          'reynaldo': 1,\n",
      "          'attenborough': 1,\n",
      "          'literally': 1,\n",
      "          'walkon': 1,\n",
      "          'showing': 1,\n",
      "          'eleventh': 1,\n",
      "          'hour': 1,\n",
      "          'ambassador': 1,\n",
      "          'nthen': 1,\n",
      "          'rufus': 1,\n",
      "          'sewell': 1,\n",
      "          'fortinbras': 1,\n",
      "          'norway': 1,\n",
      "          'nwhen': 1,\n",
      "          'went': 1,\n",
      "          'see': 1,\n",
      "          'dangerous': 1,\n",
      "          'beauty': 1,\n",
      "          'earlier': 1,\n",
      "          'year': 1,\n",
      "          'ladies': 1,\n",
      "          'behind': 1,\n",
      "          'kept': 1,\n",
      "          'commenting': 1,\n",
      "          'bulging': 1,\n",
      "          'eyes': 1,\n",
      "          'idea': 1,\n",
      "          'guess': 1,\n",
      "          'comic': 1,\n",
      "          'marty': 1,\n",
      "          'feldman': 1,\n",
      "          'sex': 1,\n",
      "          'symbol': 1,\n",
      "          'complicated': 1,\n",
      "          'tale': 1,\n",
      "          'revenge': 1,\n",
      "          'triumph': 1,\n",
      "          'defeat': 1,\n",
      "          'become': 1,\n",
      "          'nbranagh': 1,\n",
      "          'attempts': 1,\n",
      "          'intricacies': 1,\n",
      "          'visually': 1,\n",
      "          'representing': 1,\n",
      "          'elusive': 1,\n",
      "          'stretches': 1,\n",
      "          'dialogue': 1,\n",
      "          'presenting': 1,\n",
      "          'flashbacktype': 1,\n",
      "          'images': 1,\n",
      "          'nthis': 1,\n",
      "          'works': 1,\n",
      "          'half': 1,\n",
      "          'wonder': 1,\n",
      "          'without': 1,\n",
      "          'nyou': 1,\n",
      "          'dont': 1,\n",
      "          'genius': 1,\n",
      "          'appreciate': 1,\n",
      "          'difficult': 1,\n",
      "          'understand': 1,\n",
      "          'unless': 1,\n",
      "          'hear': 1,\n",
      "          'carefully': 1,\n",
      "          'repeatedly': 1,\n",
      "          'alternate': 1,\n",
      "          'method': 1,\n",
      "          'comprehension': 1,\n",
      "          'familiar': 1,\n",
      "          'course': 1,\n",
      "          'hopefully': 1,\n",
      "          'fortunate': 1,\n",
      "          'enough': 1,\n",
      "          'educator': 1,\n",
      "          'willing': 1,\n",
      "          'plot': 1,\n",
      "          'points': 1,\n",
      "          'nuances': 1,\n",
      "          'essential': 1,\n",
      "          'understanding': 1,\n",
      "          'written': 1,\n",
      "          'rigmarole': 1,\n",
      "          'suppose': 1,\n",
      "          'could': 1,\n",
      "          'cliff': 1,\n",
      "          'notes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 11,\n",
      "          'hank': 8,\n",
      "          'nhe': 6,\n",
      "          'carly': 6,\n",
      "          'family': 6,\n",
      "          'co': 5,\n",
      "          'tests': 4,\n",
      "          'two': 4,\n",
      "          'deal': 4,\n",
      "          'film': 4,\n",
      "          'one': 3,\n",
      "          'ncarly': 3,\n",
      "          'tries': 3,\n",
      "          'home': 3,\n",
      "          'even': 3,\n",
      "          'wife': 3,\n",
      "          'military': 2,\n",
      "          'jones': 2,\n",
      "          'army': 2,\n",
      "          'time': 2,\n",
      "          'underground': 2,\n",
      "          'also': 2,\n",
      "          'way': 2,\n",
      "          'shes': 2,\n",
      "          'shed': 2,\n",
      "          'violent': 2,\n",
      "          'husband': 2,\n",
      "          'daughters': 2,\n",
      "          'testing': 2,\n",
      "          'alabama': 2,\n",
      "          'new': 2,\n",
      "          'try': 2,\n",
      "          'things': 2,\n",
      "          'together': 2,\n",
      "          'problems': 2,\n",
      "          'locane': 2,\n",
      "          'cos': 2,\n",
      "          'mother': 2,\n",
      "          'nhank': 2,\n",
      "          'put': 2,\n",
      "          'strong': 2,\n",
      "          'performances': 2,\n",
      "          'stagner': 2,\n",
      "          'year': 1,\n",
      "          '1962': 1,\n",
      "          'conducting': 1,\n",
      "          'nuclear': 1,\n",
      "          'testings': 1,\n",
      "          'ninvolved': 1,\n",
      "          'marshall': 1,\n",
      "          'colonel': 1,\n",
      "          'critical': 1,\n",
      "          'aboveground': 1,\n",
      "          'done': 1,\n",
      "          'urges': 1,\n",
      "          'belowground': 1,\n",
      "          'consider': 1,\n",
      "          'learned': 1,\n",
      "          'soviets': 1,\n",
      "          'conducted': 1,\n",
      "          'nmarshall': 1,\n",
      "          'troubled': 1,\n",
      "          'turbulent': 1,\n",
      "          'marriage': 1,\n",
      "          'lange': 1,\n",
      "          'topless': 1,\n",
      "          'bases': 1,\n",
      "          'beach': 1,\n",
      "          'full': 1,\n",
      "          'view': 1,\n",
      "          'entire': 1,\n",
      "          'personnel': 1,\n",
      "          'nhanks': 1,\n",
      "          'reaction': 1,\n",
      "          'amusement': 1,\n",
      "          'nhes': 1,\n",
      "          'deals': 1,\n",
      "          'knows': 1,\n",
      "          'problem': 1,\n",
      "          'manicdepressive': 1,\n",
      "          'isnt': 1,\n",
      "          'flirting': 1,\n",
      "          'man': 1,\n",
      "          'happens': 1,\n",
      "          'near': 1,\n",
      "          'fantasizing': 1,\n",
      "          'fictious': 1,\n",
      "          'world': 1,\n",
      "          'rather': 1,\n",
      "          'ntypical': 1,\n",
      "          'mental': 1,\n",
      "          'illness': 1,\n",
      "          'promiscuous': 1,\n",
      "          'foultempered': 1,\n",
      "          'mood': 1,\n",
      "          'swings': 1,\n",
      "          'quick': 1,\n",
      "          'torment': 1,\n",
      "          'puts': 1,\n",
      "          'considerable': 1,\n",
      "          'nfrom': 1,\n",
      "          'hanks': 1,\n",
      "          'reports': 1,\n",
      "          'state': 1,\n",
      "          'opposition': 1,\n",
      "          'armys': 1,\n",
      "          'methods': 1,\n",
      "          'transferred': 1,\n",
      "          'hawaii': 1,\n",
      "          'patterns': 1,\n",
      "          'movie': 1,\n",
      "          'stars': 1,\n",
      "          'become': 1,\n",
      "          'marilyn': 1,\n",
      "          'monroe': 1,\n",
      "          'bleachblond': 1,\n",
      "          'pretty': 1,\n",
      "          'rundown': 1,\n",
      "          'depressing': 1,\n",
      "          'sets': 1,\n",
      "          'tantrum': 1,\n",
      "          'nafter': 1,\n",
      "          'meeting': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'booth': 1,\n",
      "          'sees': 1,\n",
      "          'familiar': 1,\n",
      "          'pattern': 1,\n",
      "          'begin': 1,\n",
      "          'repeat': 1,\n",
      "          'openly': 1,\n",
      "          'flirts': 1,\n",
      "          'situation': 1,\n",
      "          'resort': 1,\n",
      "          'carry': 1,\n",
      "          'throw': 1,\n",
      "          'nearby': 1,\n",
      "          'pool': 1,\n",
      "          'narguments': 1,\n",
      "          'ensue': 1,\n",
      "          'becomes': 1,\n",
      "          'alienated': 1,\n",
      "          'interested': 1,\n",
      "          'pursuing': 1,\n",
      "          'encounter': 1,\n",
      "          'sends': 1,\n",
      "          'observe': 1,\n",
      "          'test': 1,\n",
      "          'causes': 1,\n",
      "          'irradiation': 1,\n",
      "          'local': 1,\n",
      "          'ranchers': 1,\n",
      "          'much': 1,\n",
      "          'vocal': 1,\n",
      "          'objections': 1,\n",
      "          'spots': 1,\n",
      "          'unable': 1,\n",
      "          'cancel': 1,\n",
      "          'detonation': 1,\n",
      "          'bomb': 1,\n",
      "          'nback': 1,\n",
      "          'girls': 1,\n",
      "          'hold': 1,\n",
      "          'wonder': 1,\n",
      "          'father': 1,\n",
      "          'cant': 1,\n",
      "          'mothers': 1,\n",
      "          'none': 1,\n",
      "          'daughter': 1,\n",
      "          'says': 1,\n",
      "          'hes': 1,\n",
      "          'blind': 1,\n",
      "          'crazy': 1,\n",
      "          'answers': 1,\n",
      "          'theyre': 1,\n",
      "          'perfect': 1,\n",
      "          'nit': 1,\n",
      "          'reaches': 1,\n",
      "          'breaking': 1,\n",
      "          'point': 1,\n",
      "          'older': 1,\n",
      "          'girl': 1,\n",
      "          'boy': 1,\n",
      "          'son': 1,\n",
      "          'odonnell': 1,\n",
      "          'see': 1,\n",
      "          'making': 1,\n",
      "          'love': 1,\n",
      "          'abandoned': 1,\n",
      "          'nshe': 1,\n",
      "          'forces': 1,\n",
      "          'tell': 1,\n",
      "          'get': 1,\n",
      "          'open': 1,\n",
      "          'returns': 1,\n",
      "          'finds': 1,\n",
      "          'middle': 1,\n",
      "          'musical': 1,\n",
      "          'wives': 1,\n",
      "          'including': 1,\n",
      "          'snodgress': 1,\n",
      "          'confronts': 1,\n",
      "          'c': 1,\n",
      "          'nbut': 1,\n",
      "          'upset': 1,\n",
      "          'coverup': 1,\n",
      "          'surrounding': 1,\n",
      "          'accident': 1,\n",
      "          'na': 1,\n",
      "          'fight': 1,\n",
      "          'breaks': 1,\n",
      "          'accuses': 1,\n",
      "          'able': 1,\n",
      "          'satisfy': 1,\n",
      "          'arrested': 1,\n",
      "          'nwhat': 1,\n",
      "          'follows': 1,\n",
      "          'manipulation': 1,\n",
      "          'revenge': 1,\n",
      "          'part': 1,\n",
      "          'convinces': 1,\n",
      "          'commit': 1,\n",
      "          'hospital': 1,\n",
      "          'observation': 1,\n",
      "          'ninstead': 1,\n",
      "          'fill': 1,\n",
      "          'many': 1,\n",
      "          'drugs': 1,\n",
      "          'barely': 1,\n",
      "          'cope': 1,\n",
      "          'foams': 1,\n",
      "          'mouth': 1,\n",
      "          'finish': 1,\n",
      "          'sewing': 1,\n",
      "          'leather': 1,\n",
      "          'wallet': 1,\n",
      "          'presents': 1,\n",
      "          'determined': 1,\n",
      "          'free': 1,\n",
      "          'clutches': 1,\n",
      "          'succeeds': 1,\n",
      "          'first': 1,\n",
      "          'upbeat': 1,\n",
      "          'ending': 1,\n",
      "          'hope': 1,\n",
      "          'found': 1,\n",
      "          'solid': 1,\n",
      "          'throughout': 1,\n",
      "          'njones': 1,\n",
      "          'sympathetic': 1,\n",
      "          'loving': 1,\n",
      "          'effective': 1,\n",
      "          'quiet': 1,\n",
      "          'moments': 1,\n",
      "          'wifes': 1,\n",
      "          'rage': 1,\n",
      "          'comforts': 1,\n",
      "          'offers': 1,\n",
      "          'protection': 1,\n",
      "          'nlange': 1,\n",
      "          'gives': 1,\n",
      "          'spirited': 1,\n",
      "          'portrayal': 1,\n",
      "          'woman': 1,\n",
      "          'edge': 1,\n",
      "          'draws': 1,\n",
      "          'courage': 1,\n",
      "          'right': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'namy': 1,\n",
      "          'good': 1,\n",
      "          'fights': 1,\n",
      "          'keep': 1,\n",
      "          'struggling': 1,\n",
      "          'doubts': 1,\n",
      "          'whether': 1,\n",
      "          'nblue': 1,\n",
      "          'sky': 1,\n",
      "          'based': 1,\n",
      "          'story': 1,\n",
      "          'screenplay': 1,\n",
      "          'written': 1,\n",
      "          'rama': 1,\n",
      "          'laurie': 1,\n",
      "          'arlene': 1,\n",
      "          'sarner': 1,\n",
      "          'jerry': 1,\n",
      "          'leichtling': 1,\n",
      "          'marks': 1,\n",
      "          'final': 1,\n",
      "          'work': 1,\n",
      "          'tony': 1,\n",
      "          'richardson': 1,\n",
      "          'died': 1,\n",
      "          'shortly': 1,\n",
      "          'completion': 1,\n",
      "          '1991': 1,\n",
      "          'made': 1,\n",
      "          'classics': 1,\n",
      "          'look': 1,\n",
      "          'back': 1,\n",
      "          'anger': 1,\n",
      "          '1958': 1,\n",
      "          'tom': 1,\n",
      "          '1963': 1,\n",
      "          'norion': 1,\n",
      "          'pictures': 1,\n",
      "          'underwent': 1,\n",
      "          'bankruptcy': 1,\n",
      "          'caused': 1,\n",
      "          'sit': 1,\n",
      "          'shelf': 1,\n",
      "          'three': 1,\n",
      "          'years': 1,\n",
      "          'joins': 1,\n",
      "          'alread': 1,\n",
      "          'promising': 1,\n",
      "          'fall': 1,\n",
      "          'lineup': 1,\n",
      "          'films': 1,\n",
      "          'well': 1,\n",
      "          'worth': 1,\n",
      "          'catching': 1,\n",
      "          'alone': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'pie': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 3,\n",
      "          'nif': 3,\n",
      "          'youre': 3,\n",
      "          'one': 3,\n",
      "          'raunch': 2,\n",
      "          'theatres': 2,\n",
      "          'sick': 2,\n",
      "          'american': 2,\n",
      "          'levy': 2,\n",
      "          'school': 2,\n",
      "          'get': 2,\n",
      "          'bits': 2,\n",
      "          'sex': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          '30second': 1,\n",
      "          'review': 1,\n",
      "          'namerican': 1,\n",
      "          'summer': 1,\n",
      "          'continues': 1,\n",
      "          'spread': 1,\n",
      "          'latest': 1,\n",
      "          'yuk': 1,\n",
      "          'fest': 1,\n",
      "          'filled': 1,\n",
      "          'jokes': 1,\n",
      "          'teen': 1,\n",
      "          'dialogue': 1,\n",
      "          'aplenty': 1,\n",
      "          'go': 1,\n",
      "          'expecting': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'problem': 1,\n",
      "          'expectations': 1,\n",
      "          'lower': 1,\n",
      "          'better': 1,\n",
      "          'might': 1,\n",
      "          'add': 1,\n",
      "          'enjoy': 1,\n",
      "          'hell': 1,\n",
      "          'casts': 1,\n",
      "          'several': 1,\n",
      "          'unknowns': 1,\n",
      "          'real': 1,\n",
      "          'recognizable': 1,\n",
      "          'sctvs': 1,\n",
      "          'eugene': 1,\n",
      "          'happygolucky': 1,\n",
      "          'dad': 1,\n",
      "          'story': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'four': 1,\n",
      "          'high': 1,\n",
      "          'seniors': 1,\n",
      "          'goal': 1,\n",
      "          'year': 1,\n",
      "          'gets': 1,\n",
      "          'laid': 1,\n",
      "          'nthats': 1,\n",
      "          'pretty': 1,\n",
      "          'much': 1,\n",
      "          'nthroughout': 1,\n",
      "          'little': 1,\n",
      "          'comic': 1,\n",
      "          'sprinkled': 1,\n",
      "          'throughout': 1,\n",
      "          'including': 1,\n",
      "          'memorable': 1,\n",
      "          'scene': 1,\n",
      "          'involving': 1,\n",
      "          'apple': 1,\n",
      "          'wont': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'probably': 1,\n",
      "          'know': 1,\n",
      "          'internet': 1,\n",
      "          'broadcast': 1,\n",
      "          'gone': 1,\n",
      "          'horribly': 1,\n",
      "          'awry': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'slightly': 1,\n",
      "          'sentimental': 1,\n",
      "          'dont': 1,\n",
      "          'drag': 1,\n",
      "          'movies': 1,\n",
      "          'humor': 1,\n",
      "          'content': 1,\n",
      "          'bad': 1,\n",
      "          'nmost': 1,\n",
      "          'actors': 1,\n",
      "          'job': 1,\n",
      "          'done': 1,\n",
      "          'whos': 1,\n",
      "          'hoot': 1,\n",
      "          'father': 1,\n",
      "          'tries': 1,\n",
      "          'talk': 1,\n",
      "          'son': 1,\n",
      "          'help': 1,\n",
      "          'curious': 1,\n",
      "          'visual': 1,\n",
      "          'aids': 1,\n",
      "          'ni': 1,\n",
      "          'couldnt': 1,\n",
      "          'stop': 1,\n",
      "          'laughing': 1,\n",
      "          'stand': 1,\n",
      "          'references': 1,\n",
      "          'conservative': 1,\n",
      "          'types': 1,\n",
      "          'well': 1,\n",
      "          'ill': 1,\n",
      "          'bet': 1,\n",
      "          'fun': 1,\n",
      "          'home': 1,\n",
      "          'south': 1,\n",
      "          'park': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'ii': 1,\n",
      "          'plays': 1,\n",
      "          'arent': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'ni': 9,\n",
      "          'hour': 9,\n",
      "          'would': 8,\n",
      "          'well': 7,\n",
      "          'nits': 6,\n",
      "          'story': 6,\n",
      "          'rose': 6,\n",
      "          'though': 6,\n",
      "          'lot': 5,\n",
      "          'titanic': 5,\n",
      "          'think': 5,\n",
      "          'dialogue': 5,\n",
      "          'films': 5,\n",
      "          'first': 4,\n",
      "          'see': 4,\n",
      "          'last': 4,\n",
      "          'didnt': 4,\n",
      "          'much': 4,\n",
      "          'nthe': 4,\n",
      "          'romance': 4,\n",
      "          'winslet': 4,\n",
      "          'dicaprio': 4,\n",
      "          'gloria': 4,\n",
      "          'moving': 4,\n",
      "          'half': 4,\n",
      "          'cameron': 4,\n",
      "          'dont': 4,\n",
      "          'one': 4,\n",
      "          'powerful': 4,\n",
      "          'bit': 4,\n",
      "          'havent': 3,\n",
      "          'seen': 3,\n",
      "          'yes': 3,\n",
      "          'like': 3,\n",
      "          'saw': 3,\n",
      "          'happy': 3,\n",
      "          'talk': 3,\n",
      "          'ship': 3,\n",
      "          'jack': 3,\n",
      "          'stuart': 3,\n",
      "          'script': 3,\n",
      "          'form': 3,\n",
      "          'fact': 3,\n",
      "          'ending': 3,\n",
      "          'second': 3,\n",
      "          'get': 3,\n",
      "          'far': 3,\n",
      "          'sunk': 3,\n",
      "          'nbut': 3,\n",
      "          'rescue': 3,\n",
      "          'oscars': 3,\n",
      "          'brief': 2,\n",
      "          'nwell': 2,\n",
      "          'theres': 2,\n",
      "          'without': 2,\n",
      "          'went': 2,\n",
      "          'tragedy': 2,\n",
      "          'entirely': 2,\n",
      "          'anticipation': 2,\n",
      "          'wasnt': 2,\n",
      "          'sister': 2,\n",
      "          'nso': 2,\n",
      "          'slightly': 2,\n",
      "          'id': 2,\n",
      "          'ndid': 2,\n",
      "          'im': 2,\n",
      "          'beautifully': 2,\n",
      "          'stunning': 2,\n",
      "          'camerons': 2,\n",
      "          'directing': 2,\n",
      "          'cast': 2,\n",
      "          'strong': 2,\n",
      "          'knew': 2,\n",
      "          'n': 2,\n",
      "          'often': 2,\n",
      "          'device': 2,\n",
      "          'use': 2,\n",
      "          'sometimes': 2,\n",
      "          'work': 2,\n",
      "          'nin': 2,\n",
      "          'add': 2,\n",
      "          'know': 2,\n",
      "          'love': 2,\n",
      "          'jacks': 2,\n",
      "          'touching': 2,\n",
      "          'enjoyable': 2,\n",
      "          'us': 2,\n",
      "          'sure': 2,\n",
      "          'jackrose': 2,\n",
      "          'emotionally': 2,\n",
      "          'iceberg': 2,\n",
      "          'nand': 2,\n",
      "          'perhaps': 2,\n",
      "          'certainly': 2,\n",
      "          'shocking': 2,\n",
      "          'expect': 2,\n",
      "          '2': 2,\n",
      "          'nis': 2,\n",
      "          'overdone': 2,\n",
      "          'thought': 2,\n",
      "          'quite': 2,\n",
      "          'whether': 2,\n",
      "          'really': 2,\n",
      "          'someone': 2,\n",
      "          'go': 2,\n",
      "          'fine': 2,\n",
      "          'excessive': 2,\n",
      "          'mentioned': 2,\n",
      "          'ive': 2,\n",
      "          'thats': 2,\n",
      "          'period': 2,\n",
      "          'little': 2,\n",
      "          'doubt': 2,\n",
      "          'deserving': 2,\n",
      "          'alltime': 2,\n",
      "          '_in': 1,\n",
      "          '_': 1,\n",
      "          'needs': 1,\n",
      "          'introduction': 1,\n",
      "          'nif': 1,\n",
      "          'heard': 1,\n",
      "          'must': 1,\n",
      "          'space': 1,\n",
      "          'sabbatical': 1,\n",
      "          'suspect': 1,\n",
      "          'youre': 1,\n",
      "          'small': 1,\n",
      "          'minority': 1,\n",
      "          'nfirst': 1,\n",
      "          'things': 1,\n",
      "          'hyped': 1,\n",
      "          'good': 1,\n",
      "          'problems': 1,\n",
      "          'nwhen': 1,\n",
      "          'trailer': 1,\n",
      "          'bean': 1,\n",
      "          'summer': 1,\n",
      "          'intial': 1,\n",
      "          'reaction': 1,\n",
      "          'aint': 1,\n",
      "          'downright': 1,\n",
      "          'sick': 1,\n",
      "          'make': 1,\n",
      "          'disaster': 1,\n",
      "          'movie': 1,\n",
      "          'dreadful': 1,\n",
      "          'reallife': 1,\n",
      "          'mean': 1,\n",
      "          'whats': 1,\n",
      "          'happened': 1,\n",
      "          'hollywoods': 1,\n",
      "          'scriptwriters': 1,\n",
      "          'run': 1,\n",
      "          'new': 1,\n",
      "          'ideas': 1,\n",
      "          'ngads': 1,\n",
      "          'whatever': 1,\n",
      "          'next': 1,\n",
      "          'asked': 1,\n",
      "          'action': 1,\n",
      "          'based': 1,\n",
      "          'hiroshima': 1,\n",
      "          'starring': 1,\n",
      "          'jean': 1,\n",
      "          'claude': 1,\n",
      "          'van': 1,\n",
      "          'damme': 1,\n",
      "          'filled': 1,\n",
      "          'alone': 1,\n",
      "          'respect': 1,\n",
      "          'came': 1,\n",
      "          'cinema': 1,\n",
      "          'rave': 1,\n",
      "          'reviews': 1,\n",
      "          'mostly': 1,\n",
      "          'anyone': 1,\n",
      "          'whod': 1,\n",
      "          'seemed': 1,\n",
      "          'disturbingly': 1,\n",
      "          'obsessed': 1,\n",
      "          'started': 1,\n",
      "          'take': 1,\n",
      "          'notice': 1,\n",
      "          'several': 1,\n",
      "          'months': 1,\n",
      "          'release': 1,\n",
      "          'time': 1,\n",
      "          'four': 1,\n",
      "          'times': 1,\n",
      "          'open': 1,\n",
      "          'mind': 1,\n",
      "          'still': 1,\n",
      "          'enjoy': 1,\n",
      "          'nmainly': 1,\n",
      "          'say': 1,\n",
      "          'done': 1,\n",
      "          'scripting': 1,\n",
      "          'ill': 1,\n",
      "          'later': 1,\n",
      "          'recreated': 1,\n",
      "          'sets': 1,\n",
      "          'look': 1,\n",
      "          'performances': 1,\n",
      "          'principal': 1,\n",
      "          'human': 1,\n",
      "          'aspect': 1,\n",
      "          'kate': 1,\n",
      "          'leonardo': 1,\n",
      "          'enchanting': 1,\n",
      "          'told': 1,\n",
      "          'via': 1,\n",
      "          'flashback': 1,\n",
      "          'playing': 1,\n",
      "          'elderly': 1,\n",
      "          'modern': 1,\n",
      "          'day': 1,\n",
      "          'course': 1,\n",
      "          'effective': 1,\n",
      "          'storytelling': 1,\n",
      "          'fall': 1,\n",
      "          'flat': 1,\n",
      "          'ndoes': 1,\n",
      "          'doesnt': 1,\n",
      "          'nwhat': 1,\n",
      "          'whose': 1,\n",
      "          'performance': 1,\n",
      "          'strongest': 1,\n",
      "          'nher': 1,\n",
      "          'presence': 1,\n",
      "          'brings': 1,\n",
      "          'deeper': 1,\n",
      "          'level': 1,\n",
      "          'passion': 1,\n",
      "          'depth': 1,\n",
      "          'appearances': 1,\n",
      "          'relatively': 1,\n",
      "          'suffered': 1,\n",
      "          'nalso': 1,\n",
      "          'impressive': 1,\n",
      "          'wholly': 1,\n",
      "          'succeed': 1,\n",
      "          'rising': 1,\n",
      "          'poor': 1,\n",
      "          'bond': 1,\n",
      "          'heartfelt': 1,\n",
      "          'old': 1,\n",
      "          'forbidden': 1,\n",
      "          'ala': 1,\n",
      "          'romeo': 1,\n",
      "          'juliet': 1,\n",
      "          'works': 1,\n",
      "          'rescuing': 1,\n",
      "          'literal': 1,\n",
      "          'figurative': 1,\n",
      "          'senses': 1,\n",
      "          'teaching': 1,\n",
      "          'live': 1,\n",
      "          'life': 1,\n",
      "          'counts': 1,\n",
      "          'pointed': 1,\n",
      "          'enjoyed': 1,\n",
      "          'largely': 1,\n",
      "          'bring': 1,\n",
      "          'charm': 1,\n",
      "          'energy': 1,\n",
      "          'engaging': 1,\n",
      "          'ntheres': 1,\n",
      "          'tinge': 1,\n",
      "          'poignancy': 1,\n",
      "          'simply': 1,\n",
      "          'going': 1,\n",
      "          'nwhich': 1,\n",
      "          'leads': 1,\n",
      "          'nwe': 1,\n",
      "          'coming': 1,\n",
      "          'nim': 1,\n",
      "          'director': 1,\n",
      "          'looking': 1,\n",
      "          'forward': 1,\n",
      "          'eager': 1,\n",
      "          'hes': 1,\n",
      "          'stated': 1,\n",
      "          'interviews': 1,\n",
      "          'real': 1,\n",
      "          'thrust': 1,\n",
      "          'sinking': 1,\n",
      "          'merely': 1,\n",
      "          'manipulative': 1,\n",
      "          'plot': 1,\n",
      "          'understates': 1,\n",
      "          'importance': 1,\n",
      "          'found': 1,\n",
      "          'watching': 1,\n",
      "          'people': 1,\n",
      "          'die': 1,\n",
      "          'arrives': 1,\n",
      "          'captain': 1,\n",
      "          'announces': 1,\n",
      "          'nmy': 1,\n",
      "          'goodness': 1,\n",
      "          'miss': 1,\n",
      "          'ngratuitous': 1,\n",
      "          'todays': 1,\n",
      "          'standards': 1,\n",
      "          'worse': 1,\n",
      "          'produced': 1,\n",
      "          'banner': 1,\n",
      "          'entertainment': 1,\n",
      "          'prepared': 1,\n",
      "          'graphic': 1,\n",
      "          'nnot': 1,\n",
      "          'word': 1,\n",
      "          'understatement': 1,\n",
      "          'part': 1,\n",
      "          'vocabulary': 1,\n",
      "          'brought': 1,\n",
      "          'umm': 1,\n",
      "          'vivid': 1,\n",
      "          'terminator': 1,\n",
      "          'aliens': 1,\n",
      "          'nunderstatement': 1,\n",
      "          'wonders': 1,\n",
      "          'conveying': 1,\n",
      "          'nno': 1,\n",
      "          'expected': 1,\n",
      "          'horrendously': 1,\n",
      "          'scenes': 1,\n",
      "          'bombarded': 1,\n",
      "          'throughout': 1,\n",
      "          'nstill': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'shockfactor': 1,\n",
      "          'worked': 1,\n",
      "          'shocked': 1,\n",
      "          'moved': 1,\n",
      "          'spent': 1,\n",
      "          'tears': 1,\n",
      "          'nyou': 1,\n",
      "          'couldnt': 1,\n",
      "          'help': 1,\n",
      "          'involved': 1,\n",
      "          'wishing': 1,\n",
      "          'knock': 1,\n",
      "          'dreadfully': 1,\n",
      "          'psychotic': 1,\n",
      "          'fiance': 1,\n",
      "          'roses': 1,\n",
      "          'overboard': 1,\n",
      "          'desperately': 1,\n",
      "          'hoping': 1,\n",
      "          'survive': 1,\n",
      "          'nperhaps': 1,\n",
      "          'harrowing': 1,\n",
      "          'scene': 1,\n",
      "          'along': 1,\n",
      "          'freeze': 1,\n",
      "          'death': 1,\n",
      "          'water': 1,\n",
      "          'surface': 1,\n",
      "          'lets': 1,\n",
      "          'hand': 1,\n",
      "          'promising': 1,\n",
      "          'shell': 1,\n",
      "          'never': 1,\n",
      "          'let': 1,\n",
      "          'heart': 1,\n",
      "          'particularly': 1,\n",
      "          'heartwrenching': 1,\n",
      "          'sight': 1,\n",
      "          'boats': 1,\n",
      "          'sailing': 1,\n",
      "          'amid': 1,\n",
      "          'ocean': 1,\n",
      "          'corpses': 1,\n",
      "          'pretty': 1,\n",
      "          'image': 1,\n",
      "          'put': 1,\n",
      "          'point': 1,\n",
      "          'loved': 1,\n",
      "          'however': 1,\n",
      "          'uplifting': 1,\n",
      "          'following': 1,\n",
      "          'horror': 1,\n",
      "          'past': 1,\n",
      "          'weve': 1,\n",
      "          'established': 1,\n",
      "          'rather': 1,\n",
      "          'nhavent': 1,\n",
      "          'nplotwise': 1,\n",
      "          'ok': 1,\n",
      "          'relationship': 1,\n",
      "          'developed': 1,\n",
      "          'feeling': 1,\n",
      "          'actors': 1,\n",
      "          'credit': 1,\n",
      "          'anything': 1,\n",
      "          'nas': 1,\n",
      "          'set': 1,\n",
      "          '1912': 1,\n",
      "          'drama': 1,\n",
      "          'indication': 1,\n",
      "          'concerned': 1,\n",
      "          'phrases': 1,\n",
      "          'goddamn': 1,\n",
      "          'nback': 1,\n",
      "          'turn': 1,\n",
      "          'century': 1,\n",
      "          'nwould': 1,\n",
      "          'ya': 1,\n",
      "          'guy': 1,\n",
      "          'eyes': 1,\n",
      "          'clumsy': 1,\n",
      "          'nyes': 1,\n",
      "          'na': 1,\n",
      "          'attention': 1,\n",
      "          'gone': 1,\n",
      "          'astray': 1,\n",
      "          'blame': 1,\n",
      "          'wrote': 1,\n",
      "          'nstick': 1,\n",
      "          'dude': 1,\n",
      "          'redeemed': 1,\n",
      "          'acting': 1,\n",
      "          'ably': 1,\n",
      "          'supported': 1,\n",
      "          'nstar': 1,\n",
      "          'show': 1,\n",
      "          'win': 1,\n",
      "          'oscar': 1,\n",
      "          'nafter': 1,\n",
      "          'throwing': 1,\n",
      "          'left': 1,\n",
      "          'right': 1,\n",
      "          'centre': 1,\n",
      "          'nominee': 1,\n",
      "          'ndirectingwise': 1,\n",
      "          'spectacular': 1,\n",
      "          'job': 1,\n",
      "          'nlike': 1,\n",
      "          'said': 1,\n",
      "          'vision': 1,\n",
      "          'least': 1,\n",
      "          'directed': 1,\n",
      "          'even': 1,\n",
      "          'james': 1,\n",
      "          'horners': 1,\n",
      "          'beautiful': 1,\n",
      "          'score': 1,\n",
      "          'nutterly': 1,\n",
      "          'heavenly': 1,\n",
      "          'dad': 1,\n",
      "          'play': 1,\n",
      "          'soundtrack': 1,\n",
      "          'start': 1,\n",
      "          'bored': 1,\n",
      "          'nive': 1,\n",
      "          'finished': 1,\n",
      "          'rant': 1,\n",
      "          'lasted': 1,\n",
      "          'longer': 1,\n",
      "          'njust': 1,\n",
      "          'leaves': 1,\n",
      "          'couple': 1,\n",
      "          'questions': 1,\n",
      "          'worth': 1,\n",
      "          'nhell': 1,\n",
      "          'nbloomin': 1,\n",
      "          'farce': 1,\n",
      "          'nit': 1,\n",
      "          'number': 1,\n",
      "          'departments': 1,\n",
      "          'nlast': 1,\n",
      "          'question': 1,\n",
      "          'suggest': 1,\n",
      "          'best': 1,\n",
      "          'nnope': 1,\n",
      "          'memorable': 1,\n",
      "          'ever': 1,\n",
      "          'ranks': 1,\n",
      "          'favourites': 1,\n",
      "          'theyre': 1,\n",
      "          'reportedly': 1,\n",
      "          'making': 1,\n",
      "          'guess': 1,\n",
      "          'typical': 1,\n",
      "          'hollywood': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jackie': 9,\n",
      "          'chan': 9,\n",
      "          'film': 6,\n",
      "          'hour': 5,\n",
      "          'films': 5,\n",
      "          'nthe': 4,\n",
      "          'character': 4,\n",
      "          'makes': 4,\n",
      "          'rush': 3,\n",
      "          'cop': 3,\n",
      "          'case': 3,\n",
      "          'element': 3,\n",
      "          'necessarily': 3,\n",
      "          'chans': 3,\n",
      "          'one': 3,\n",
      "          'lee': 3,\n",
      "          'carter': 3,\n",
      "          'action': 3,\n",
      "          'culture': 3,\n",
      "          'nwhile': 3,\n",
      "          'hero': 2,\n",
      "          'chinese': 2,\n",
      "          'people': 2,\n",
      "          'must': 2,\n",
      "          'always': 2,\n",
      "          'nhowever': 2,\n",
      "          'first': 2,\n",
      "          'hollywood': 2,\n",
      "          'nstill': 2,\n",
      "          'may': 2,\n",
      "          'familiar': 2,\n",
      "          'east': 2,\n",
      "          'meets': 2,\n",
      "          'west': 2,\n",
      "          'njackie': 2,\n",
      "          'help': 2,\n",
      "          'tucker': 2,\n",
      "          'fbi': 2,\n",
      "          'also': 2,\n",
      "          'fun': 2,\n",
      "          'youll': 2,\n",
      "          'kicks': 2,\n",
      "          'nchris': 2,\n",
      "          'whiny': 2,\n",
      "          'still': 2,\n",
      "          'characters': 2,\n",
      "          'attempts': 2,\n",
      "          'american': 2,\n",
      "          'nwhen': 2,\n",
      "          'kung': 2,\n",
      "          'fu': 2,\n",
      "          'come': 2,\n",
      "          'level': 2,\n",
      "          'mouth': 2,\n",
      "          'fastest': 2,\n",
      "          'appropriate': 2,\n",
      "          'well': 2,\n",
      "          'knowledge': 2,\n",
      "          'teaches': 2,\n",
      "          'respects': 1,\n",
      "          'ultimate': 1,\n",
      "          'exercise': 1,\n",
      "          'cliched': 1,\n",
      "          'filmmaking': 1,\n",
      "          'renegade': 1,\n",
      "          'prefers': 1,\n",
      "          'work': 1,\n",
      "          'alone': 1,\n",
      "          'question': 1,\n",
      "          'solve': 1,\n",
      "          'gets': 1,\n",
      "          'trouble': 1,\n",
      "          'nall': 1,\n",
      "          'somehow': 1,\n",
      "          'involved': 1,\n",
      "          'criminal': 1,\n",
      "          'duo': 1,\n",
      "          'completely': 1,\n",
      "          'mismatched': 1,\n",
      "          'say': 1,\n",
      "          'smartassed': 1,\n",
      "          'comment': 1,\n",
      "          'shooting': 1,\n",
      "          'someone': 1,\n",
      "          'doesnt': 1,\n",
      "          'make': 1,\n",
      "          'bad': 1,\n",
      "          'nrush': 1,\n",
      "          'major': 1,\n",
      "          'since': 1,\n",
      "          'dismal': 1,\n",
      "          'protector': 1,\n",
      "          '1985': 1,\n",
      "          'nproving': 1,\n",
      "          'learn': 1,\n",
      "          'many': 1,\n",
      "          'things': 1,\n",
      "          'foreign': 1,\n",
      "          'markets': 1,\n",
      "          'ie': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'given': 1,\n",
      "          'much': 1,\n",
      "          'free': 1,\n",
      "          'reign': 1,\n",
      "          'diehard': 1,\n",
      "          'fans': 1,\n",
      "          'disappointed': 1,\n",
      "          'even': 1,\n",
      "          'voiced': 1,\n",
      "          'displeasure': 1,\n",
      "          'length': 1,\n",
      "          'fight': 1,\n",
      "          'scenes': 1,\n",
      "          'views': 1,\n",
      "          'short': 1,\n",
      "          'according': 1,\n",
      "          'interview': 1,\n",
      "          'nthis': 1,\n",
      "          'takes': 1,\n",
      "          'theme': 1,\n",
      "          'straight': 1,\n",
      "          'laced': 1,\n",
      "          'inspector': 1,\n",
      "          'imported': 1,\n",
      "          'deal': 1,\n",
      "          'kidnapping': 1,\n",
      "          'chris': 1,\n",
      "          'loudmouthed': 1,\n",
      "          'destructive': 1,\n",
      "          'promoted': 1,\n",
      "          'least': 1,\n",
      "          'thinks': 1,\n",
      "          'another': 1,\n",
      "          'classic': 1,\n",
      "          'notion': 1,\n",
      "          'get': 1,\n",
      "          'way': 1,\n",
      "          'heroes': 1,\n",
      "          'ndespite': 1,\n",
      "          'necessary': 1,\n",
      "          'conventions': 1,\n",
      "          'spend': 1,\n",
      "          'forty': 1,\n",
      "          'minutes': 1,\n",
      "          'watching': 1,\n",
      "          'continues': 1,\n",
      "          'exciting': 1,\n",
      "          'martial': 1,\n",
      "          'artists': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'continuing': 1,\n",
      "          'perform': 1,\n",
      "          'stunts': 1,\n",
      "          'dazzling': 1,\n",
      "          'audiences': 1,\n",
      "          'flashy': 1,\n",
      "          'punches': 1,\n",
      "          'annoying': 1,\n",
      "          'role': 1,\n",
      "          'fifth': 1,\n",
      "          'palatable': 1,\n",
      "          'complementing': 1,\n",
      "          'straightlaced': 1,\n",
      "          'maintains': 1,\n",
      "          'comicslapstick': 1,\n",
      "          'edge': 1,\n",
      "          'expected': 1,\n",
      "          'nperfectly': 1,\n",
      "          'downplaying': 1,\n",
      "          'fishoutofwater': 1,\n",
      "          'routine': 1,\n",
      "          'mixing': 1,\n",
      "          'time': 1,\n",
      "          'experiences': 1,\n",
      "          'however': 1,\n",
      "          'amused': 1,\n",
      "          'dazzled': 1,\n",
      "          'inventive': 1,\n",
      "          'use': 1,\n",
      "          'objects': 1,\n",
      "          'beat': 1,\n",
      "          'steering': 1,\n",
      "          'wheel': 1,\n",
      "          'serving': 1,\n",
      "          'tray': 1,\n",
      "          'barstool': 1,\n",
      "          'proves': 1,\n",
      "          'pioneer': 1,\n",
      "          'slapstick': 1,\n",
      "          'tuckers': 1,\n",
      "          'across': 1,\n",
      "          'irritating': 1,\n",
      "          'yet': 1,\n",
      "          'humorous': 1,\n",
      "          'nsince': 1,\n",
      "          'hes': 1,\n",
      "          'physical': 1,\n",
      "          'actor': 1,\n",
      "          'uses': 1,\n",
      "          'main': 1,\n",
      "          'weapon': 1,\n",
      "          'hence': 1,\n",
      "          'tagline': 1,\n",
      "          'hands': 1,\n",
      "          'dialogue': 1,\n",
      "          'shakespeare': 1,\n",
      "          'funny': 1,\n",
      "          'poignant': 1,\n",
      "          'development': 1,\n",
      "          'growth': 1,\n",
      "          'surprisingly': 1,\n",
      "          'nlees': 1,\n",
      "          'pop': 1,\n",
      "          'thats': 1,\n",
      "          'beach': 1,\n",
      "          'boys': 1,\n",
      "          'contrasted': 1,\n",
      "          'carters': 1,\n",
      "          'lack': 1,\n",
      "          'interesting': 1,\n",
      "          'scene': 1,\n",
      "          'disarming': 1,\n",
      "          'trick': 1,\n",
      "          'hiphop': 1,\n",
      "          'dance': 1,\n",
      "          'moves': 1,\n",
      "          'police': 1,\n",
      "          'story': 1,\n",
      "          '3': 1,\n",
      "          '4': 1,\n",
      "          'known': 1,\n",
      "          'north': 1,\n",
      "          'america': 1,\n",
      "          'supercop': 1,\n",
      "          'strike': 1,\n",
      "          'respectively': 1,\n",
      "          'poorly': 1,\n",
      "          'received': 1,\n",
      "          'operation': 1,\n",
      "          'condor': 1,\n",
      "          'mr': 1,\n",
      "          'nice': 1,\n",
      "          'guy': 1,\n",
      "          'nwith': 1,\n",
      "          'mixture': 1,\n",
      "          'high': 1,\n",
      "          'lots': 1,\n",
      "          'laughs': 1,\n",
      "          'nas': 1,\n",
      "          'true': 1,\n",
      "          'departure': 1,\n",
      "          'missing': 1,\n",
      "          'common': 1,\n",
      "          'female': 1,\n",
      "          'costar': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 5,\n",
      "          'kramer': 3,\n",
      "          'garner': 3,\n",
      "          'glance': 2,\n",
      "          'two': 2,\n",
      "          'together': 2,\n",
      "          'nthis': 2,\n",
      "          'exactly': 2,\n",
      "          'quick': 2,\n",
      "          'lemmon': 2,\n",
      "          'douglas': 2,\n",
      "          'haney': 2,\n",
      "          'president': 2,\n",
      "          'found': 2,\n",
      "          'people': 2,\n",
      "          'well': 2,\n",
      "          'one': 2,\n",
      "          'man': 2,\n",
      "          'played': 2,\n",
      "          'fellow': 1,\n",
      "          'americans': 1,\n",
      "          'first': 1,\n",
      "          'looks': 1,\n",
      "          'little': 1,\n",
      "          'substance': 1,\n",
      "          'weve': 1,\n",
      "          'seen': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'lifetime': 1,\n",
      "          'rivals': 1,\n",
      "          'thrown': 1,\n",
      "          'fun': 1,\n",
      "          'begins': 1,\n",
      "          'happened': 1,\n",
      "          'fortunately': 1,\n",
      "          'managed': 1,\n",
      "          'interesting': 1,\n",
      "          'funny': 1,\n",
      "          'way': 1,\n",
      "          'nthe': 1,\n",
      "          'starts': 1,\n",
      "          'mean': 1,\n",
      "          'presidents': 1,\n",
      "          'russell': 1,\n",
      "          'jack': 1,\n",
      "          'matt': 1,\n",
      "          'james': 1,\n",
      "          'nwilliam': 1,\n",
      "          'dan': 1,\n",
      "          'aykroyd': 1,\n",
      "          'ted': 1,\n",
      "          'matthews': 1,\n",
      "          'john': 1,\n",
      "          'heard': 1,\n",
      "          'new': 1,\n",
      "          'vice': 1,\n",
      "          'nthere': 1,\n",
      "          'scandal': 1,\n",
      "          'arises': 1,\n",
      "          'involving': 1,\n",
      "          'kickback': 1,\n",
      "          'contractor': 1,\n",
      "          'positive': 1,\n",
      "          'buried': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'nhe': 1,\n",
      "          'finds': 1,\n",
      "          'scapegoat': 1,\n",
      "          'everyone': 1,\n",
      "          'wants': 1,\n",
      "          'dead': 1,\n",
      "          'exceptional': 1,\n",
      "          'many': 1,\n",
      "          'reasons': 1,\n",
      "          'none': 1,\n",
      "          'good': 1,\n",
      "          'chemisty': 1,\n",
      "          'nthey': 1,\n",
      "          'worked': 1,\n",
      "          'unit': 1,\n",
      "          'mirrored': 1,\n",
      "          'perfectly': 1,\n",
      "          'ladies': 1,\n",
      "          'old': 1,\n",
      "          'ill': 1,\n",
      "          'let': 1,\n",
      "          'fiqure': 1,\n",
      "          'nalso': 1,\n",
      "          'know': 1,\n",
      "          'parts': 1,\n",
      "          'govenment': 1,\n",
      "          'officials': 1,\n",
      "          'nit': 1,\n",
      "          'seemed': 1,\n",
      "          'almost': 1,\n",
      "          'role': 1,\n",
      "          'distinquished': 1,\n",
      "          'gentleman': 1,\n",
      "          'except': 1,\n",
      "          'congressman': 1,\n",
      "          'nexperience': 1,\n",
      "          'counts': 1,\n",
      "          'lot': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'steven': 8,\n",
      "          'muse': 6,\n",
      "          'nand': 5,\n",
      "          'jack': 4,\n",
      "          'albert': 3,\n",
      "          'brooks': 3,\n",
      "          'hes': 3,\n",
      "          'something': 3,\n",
      "          'success': 3,\n",
      "          'doesnt': 3,\n",
      "          'wants': 3,\n",
      "          'like': 3,\n",
      "          'although': 3,\n",
      "          'good': 3,\n",
      "          'movie': 3,\n",
      "          'phillips': 2,\n",
      "          'hollywood': 2,\n",
      "          'screenwriter': 2,\n",
      "          'quick': 2,\n",
      "          'nhe': 2,\n",
      "          'best': 2,\n",
      "          'enjoyed': 2,\n",
      "          'sees': 2,\n",
      "          'woman': 2,\n",
      "          'sharon': 2,\n",
      "          'stone': 2,\n",
      "          'think': 2,\n",
      "          'n': 2,\n",
      "          'nsteven': 2,\n",
      "          'take': 2,\n",
      "          'meeting': 2,\n",
      "          'sarah': 2,\n",
      "          'life': 2,\n",
      "          'nthe': 2,\n",
      "          'question': 2,\n",
      "          'thats': 2,\n",
      "          'film': 2,\n",
      "          'plays': 1,\n",
      "          'winning': 1,\n",
      "          'humanitarian': 1,\n",
      "          'award': 1,\n",
      "          'work': 1,\n",
      "          'dumped': 1,\n",
      "          'studio': 1,\n",
      "          'nthey': 1,\n",
      "          'claim': 1,\n",
      "          'lost': 1,\n",
      "          'edge': 1,\n",
      "          'agent': 1,\n",
      "          'agree': 1,\n",
      "          'knows': 1,\n",
      "          'needs': 1,\n",
      "          'write': 1,\n",
      "          'fresh': 1,\n",
      "          'original': 1,\n",
      "          'else': 1,\n",
      "          'career': 1,\n",
      "          'nso': 1,\n",
      "          'turns': 1,\n",
      "          'friend': 1,\n",
      "          'jeff': 1,\n",
      "          'bridges': 1,\n",
      "          'another': 1,\n",
      "          'whos': 1,\n",
      "          'non': 1,\n",
      "          'way': 1,\n",
      "          'jacks': 1,\n",
      "          'house': 1,\n",
      "          'helping': 1,\n",
      "          'attractive': 1,\n",
      "          'cab': 1,\n",
      "          'begins': 1,\n",
      "          'affair': 1,\n",
      "          'nwhen': 1,\n",
      "          'confronted': 1,\n",
      "          'relunctently': 1,\n",
      "          'tells': 1,\n",
      "          'mystery': 1,\n",
      "          'fact': 1,\n",
      "          'mythological': 1,\n",
      "          'figure': 1,\n",
      "          'believed': 1,\n",
      "          'inspired': 1,\n",
      "          'creativity': 1,\n",
      "          'helped': 1,\n",
      "          'garner': 1,\n",
      "          'actual': 1,\n",
      "          'writing': 1,\n",
      "          'told': 1,\n",
      "          'inspires': 1,\n",
      "          'excited': 1,\n",
      "          'hearing': 1,\n",
      "          'asks': 1,\n",
      "          'call': 1,\n",
      "          'see': 1,\n",
      "          'shell': 1,\n",
      "          'new': 1,\n",
      "          'client': 1,\n",
      "          'njack': 1,\n",
      "          'arranges': 1,\n",
      "          'two': 1,\n",
      "          'suggests': 1,\n",
      "          'bring': 1,\n",
      "          'present': 1,\n",
      "          'preferably': 1,\n",
      "          'tiffanys': 1,\n",
      "          'nafter': 1,\n",
      "          'decides': 1,\n",
      "          'price': 1,\n",
      "          'suite': 1,\n",
      "          'four': 1,\n",
      "          'seasons': 1,\n",
      "          'perform': 1,\n",
      "          'odd': 1,\n",
      "          'tasks': 1,\n",
      "          'bringing': 1,\n",
      "          'salads': 1,\n",
      "          'middle': 1,\n",
      "          'night': 1,\n",
      "          'nstevens': 1,\n",
      "          'wife': 1,\n",
      "          'andy': 1,\n",
      "          'macdowell': 1,\n",
      "          'food': 1,\n",
      "          'store': 1,\n",
      "          'questions': 1,\n",
      "          'tampons': 1,\n",
      "          'wagon': 1,\n",
      "          'confesses': 1,\n",
      "          'everything': 1,\n",
      "          'first': 1,\n",
      "          'suspicious': 1,\n",
      "          'later': 1,\n",
      "          'allows': 1,\n",
      "          'move': 1,\n",
      "          'guest': 1,\n",
      "          'room': 1,\n",
      "          'eventually': 1,\n",
      "          'worth': 1,\n",
      "          'trouble': 1,\n",
      "          'going': 1,\n",
      "          'time': 1,\n",
      "          'tell': 1,\n",
      "          'sixth': 1,\n",
      "          'writerdirectoractor': 1,\n",
      "          'cowrote': 1,\n",
      "          'monica': 1,\n",
      "          'johnson': 1,\n",
      "          'level': 1,\n",
      "          'works': 1,\n",
      "          'defending': 1,\n",
      "          'mother': 1,\n",
      "          'problem': 1,\n",
      "          'lies': 1,\n",
      "          'script': 1,\n",
      "          'relies': 1,\n",
      "          'dialogue': 1,\n",
      "          'humor': 1,\n",
      "          'arent': 1,\n",
      "          'nearly': 1,\n",
      "          'many': 1,\n",
      "          'laughs': 1,\n",
      "          'chuckles': 1,\n",
      "          'despite': 1,\n",
      "          'oneliners': 1,\n",
      "          'nit': 1,\n",
      "          'great': 1,\n",
      "          'premise': 1,\n",
      "          'deliver': 1,\n",
      "          'full': 1,\n",
      "          'potential': 1,\n",
      "          'nbut': 1,\n",
      "          'identify': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'may': 1,\n",
      "          'whine': 1,\n",
      "          'complain': 1,\n",
      "          'support': 1,\n",
      "          'family': 1,\n",
      "          'happy': 1,\n",
      "          'nice': 1,\n",
      "          'change': 1,\n",
      "          'pace': 1,\n",
      "          'also': 1,\n",
      "          'cameos': 1,\n",
      "          'featuring': 1,\n",
      "          'likes': 1,\n",
      "          'rob': 1,\n",
      "          'reiner': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'martin': 1,\n",
      "          'scorsese': 1,\n",
      "          'much': 1,\n",
      "          'say': 1,\n",
      "          'robert': 1,\n",
      "          'altmans': 1,\n",
      "          'player': 1,\n",
      "          'still': 1,\n",
      "          'left': 1,\n",
      "          'theater': 1,\n",
      "          'feeling': 1,\n",
      "          'wish': 1,\n",
      "          'got': 1,\n",
      "          'movies': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'football': 9,\n",
      "          'film': 7,\n",
      "          'movie': 6,\n",
      "          'james': 4,\n",
      "          'van': 4,\n",
      "          'der': 4,\n",
      "          'also': 4,\n",
      "          'good': 3,\n",
      "          'high': 3,\n",
      "          'school': 3,\n",
      "          'nthe': 3,\n",
      "          'ta': 3,\n",
      "          'beek': 3,\n",
      "          'plays': 3,\n",
      "          'watch': 3,\n",
      "          'ol': 2,\n",
      "          'texan': 2,\n",
      "          'kid': 2,\n",
      "          'play': 2,\n",
      "          'teams': 2,\n",
      "          'team': 2,\n",
      "          'coach': 2,\n",
      "          'want': 2,\n",
      "          'said': 2,\n",
      "          'fun': 2,\n",
      "          'nthis': 2,\n",
      "          'towards': 2,\n",
      "          'teen': 2,\n",
      "          'behind': 2,\n",
      "          'tv': 2,\n",
      "          'actor': 2,\n",
      "          'role': 2,\n",
      "          'enjoyed': 2,\n",
      "          'thought': 2,\n",
      "          'performance': 2,\n",
      "          'loved': 2,\n",
      "          'ni': 2,\n",
      "          'actually': 2,\n",
      "          'comedy': 2,\n",
      "          'might': 2,\n",
      "          'stuff': 2,\n",
      "          'like': 2,\n",
      "          'stars': 2,\n",
      "          'real': 2,\n",
      "          'life': 2,\n",
      "          'caan': 2,\n",
      "          'son': 2,\n",
      "          'played': 2,\n",
      "          'plot': 1,\n",
      "          'suddenly': 1,\n",
      "          'gets': 1,\n",
      "          'firststring': 1,\n",
      "          'quarterback': 1,\n",
      "          'town': 1,\n",
      "          'considered': 1,\n",
      "          'religion': 1,\n",
      "          'biggest': 1,\n",
      "          'ahole': 1,\n",
      "          'youd': 1,\n",
      "          'ever': 1,\n",
      "          'meet': 1,\n",
      "          'practically': 1,\n",
      "          'anything': 1,\n",
      "          'win': 1,\n",
      "          'boy': 1,\n",
      "          'approve': 1,\n",
      "          'mans': 1,\n",
      "          'methods': 1,\n",
      "          'ncritique': 1,\n",
      "          'obviously': 1,\n",
      "          'geared': 1,\n",
      "          'market': 1,\n",
      "          'mtv': 1,\n",
      "          'production': 1,\n",
      "          'big': 1,\n",
      "          'star': 1,\n",
      "          'lead': 1,\n",
      "          'rockin': 1,\n",
      "          'hip': 1,\n",
      "          'music': 1,\n",
      "          'galore': 1,\n",
      "          'plenty': 1,\n",
      "          'nhaving': 1,\n",
      "          'look': 1,\n",
      "          'feel': 1,\n",
      "          'gave': 1,\n",
      "          'solid': 1,\n",
      "          'slick': 1,\n",
      "          'sounds': 1,\n",
      "          'yup': 1,\n",
      "          'going': 1,\n",
      "          'overall': 1,\n",
      "          'dramatic': 1,\n",
      "          'jon': 1,\n",
      "          'voights': 1,\n",
      "          'stubborn': 1,\n",
      "          'dick': 1,\n",
      "          'well': 1,\n",
      "          'many': 1,\n",
      "          'character': 1,\n",
      "          'players': 1,\n",
      "          'classic': 1,\n",
      "          'stretch': 1,\n",
      "          'imagination': 1,\n",
      "          'teach': 1,\n",
      "          'kids': 1,\n",
      "          'hard': 1,\n",
      "          'lessons': 1,\n",
      "          'game': 1,\n",
      "          'allow': 1,\n",
      "          'time': 1,\n",
      "          'hour': 1,\n",
      "          'fortyfive': 1,\n",
      "          'minutes': 1,\n",
      "          'theatre': 1,\n",
      "          'comfort': 1,\n",
      "          'home': 1,\n",
      "          'depending': 1,\n",
      "          'nall': 1,\n",
      "          'would': 1,\n",
      "          'definitely': 1,\n",
      "          'succeed': 1,\n",
      "          'nyou': 1,\n",
      "          'could': 1,\n",
      "          'flicks': 1,\n",
      "          'lot': 1,\n",
      "          'cute': 1,\n",
      "          'guys': 1,\n",
      "          'girls': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'nand': 1,\n",
      "          'mention': 1,\n",
      "          'n': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'started': 1,\n",
      "          'acting': 1,\n",
      "          'concussion': 1,\n",
      "          'stopped': 1,\n",
      "          'playing': 1,\n",
      "          'nhe': 1,\n",
      "          'oldest': 1,\n",
      "          'three': 1,\n",
      "          'children': 1,\n",
      "          'father': 1,\n",
      "          'cellular': 1,\n",
      "          'phone': 1,\n",
      "          'salesman': 1,\n",
      "          'mom': 1,\n",
      "          'runs': 1,\n",
      "          'gymnastics': 1,\n",
      "          'studio': 1,\n",
      "          'nhes': 1,\n",
      "          'born': 1,\n",
      "          'connecticut': 1,\n",
      "          'received': 1,\n",
      "          '200': 1,\n",
      "          '000': 1,\n",
      "          'nactor': 1,\n",
      "          'scott': 1,\n",
      "          'player': 1,\n",
      "          'tweeder': 1,\n",
      "          'famed': 1,\n",
      "          'nthats': 1,\n",
      "          'right': 1,\n",
      "          'hes': 1,\n",
      "          'sonnys': 1,\n",
      "          'nactress': 1,\n",
      "          'amy': 1,\n",
      "          'smart': 1,\n",
      "          'beeks': 1,\n",
      "          'girlfriend': 1,\n",
      "          'main': 1,\n",
      "          'girl': 1,\n",
      "          '1999': 1,\n",
      "          'outside': 1,\n",
      "          'providence': 1,\n",
      "          '6': 1,\n",
      "          '510': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'w': 1,\n",
      "          'peter': 1,\n",
      "          'iliff': 1,\n",
      "          'part': 1,\n",
      "          'writing': 1,\n",
      "          'screenplays': 1,\n",
      "          '1992': 1,\n",
      "          'harrison': 1,\n",
      "          'ford': 1,\n",
      "          'patriot': 1,\n",
      "          'games': 1,\n",
      "          'keanu': 1,\n",
      "          'reeves': 1,\n",
      "          'surfing': 1,\n",
      "          'flick': 1,\n",
      "          'point': 1,\n",
      "          'break': 1,\n",
      "          'ndirector': 1,\n",
      "          'brian': 1,\n",
      "          'robbins': 1,\n",
      "          'best': 1,\n",
      "          'remembered': 1,\n",
      "          'cool': 1,\n",
      "          'dude': 1,\n",
      "          'series': 1,\n",
      "          'head': 1,\n",
      "          'class': 1,\n",
      "          'nhis': 1,\n",
      "          'name': 1,\n",
      "          'eric': 1,\n",
      "          'mandrian': 1,\n",
      "          'generally': 1,\n",
      "          'wore': 1,\n",
      "          'long': 1,\n",
      "          'black': 1,\n",
      "          'trench': 1,\n",
      "          'coat': 1,\n",
      "          'show': 1,\n",
      "          'book': 1,\n",
      "          'mox': 1,\n",
      "          'reading': 1,\n",
      "          'sidelines': 1,\n",
      "          'hidden': 1,\n",
      "          'inside': 1,\n",
      "          'playbook': 1,\n",
      "          'slaughterhousefive': 1,\n",
      "          'kurt': 1,\n",
      "          'vonnegut': 1,\n",
      "          'jr': 1,\n",
      "          'fight': 1,\n",
      "          'song': 1,\n",
      "          'pep': 1,\n",
      "          'rally': 1,\n",
      "          'texas': 1,\n",
      "          'war': 1,\n",
      "          'hymn': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'halloween': 8,\n",
      "          'ni': 5,\n",
      "          'edition': 4,\n",
      "          'dvd': 4,\n",
      "          'michael': 4,\n",
      "          'creepy': 3,\n",
      "          'made': 3,\n",
      "          'years': 3,\n",
      "          'time': 3,\n",
      "          'new': 3,\n",
      "          'myers': 3,\n",
      "          'person': 3,\n",
      "          '1978': 3,\n",
      "          'nthe': 3,\n",
      "          'movie': 3,\n",
      "          'classic': 2,\n",
      "          'score': 2,\n",
      "          'john': 2,\n",
      "          'carpenter': 2,\n",
      "          'brilliant': 2,\n",
      "          'think': 2,\n",
      "          'scared': 2,\n",
      "          'even': 2,\n",
      "          'going': 2,\n",
      "          'vhs': 2,\n",
      "          'limited': 2,\n",
      "          'nin': 2,\n",
      "          'words': 2,\n",
      "          'nit': 2,\n",
      "          'horror': 2,\n",
      "          'spawned': 2,\n",
      "          '4': 2,\n",
      "          '7': 2,\n",
      "          'released': 2,\n",
      "          'one': 2,\n",
      "          'best': 2,\n",
      "          'ever': 2,\n",
      "          'nno': 2,\n",
      "          'laurie': 2,\n",
      "          'strode': 2,\n",
      "          'played': 2,\n",
      "          'october': 2,\n",
      "          'flick': 2,\n",
      "          'nhalloween': 2,\n",
      "          'starts': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'writerdirectorproducer': 1,\n",
      "          'mind': 1,\n",
      "          'director': 1,\n",
      "          'really': 1,\n",
      "          'nhe': 1,\n",
      "          'wrote': 1,\n",
      "          'directed': 1,\n",
      "          'produced': 1,\n",
      "          'excessively': 1,\n",
      "          'always': 1,\n",
      "          'famous': 1,\n",
      "          '21': 1,\n",
      "          'lost': 1,\n",
      "          'popularity': 1,\n",
      "          'ability': 1,\n",
      "          'scare': 1,\n",
      "          'wits': 1,\n",
      "          'people': 1,\n",
      "          'seen': 1,\n",
      "          '100': 1,\n",
      "          'times': 1,\n",
      "          'find': 1,\n",
      "          'something': 1,\n",
      "          'though': 1,\n",
      "          'know': 1,\n",
      "          'happen': 1,\n",
      "          'three': 1,\n",
      "          'different': 1,\n",
      "          'versions': 1,\n",
      "          'regular': 1,\n",
      "          'version': 1,\n",
      "          'came': 1,\n",
      "          '20th': 1,\n",
      "          'anniversary': 1,\n",
      "          'tshirt': 1,\n",
      "          'boxed': 1,\n",
      "          'hardcover': 1,\n",
      "          'case': 1,\n",
      "          'digitally': 1,\n",
      "          'remastered': 1,\n",
      "          'original': 1,\n",
      "          'theatrical': 1,\n",
      "          'widescreen': 1,\n",
      "          'presentation': 1,\n",
      "          'nifty': 1,\n",
      "          'plastic': 1,\n",
      "          'picture': 1,\n",
      "          'decorated': 1,\n",
      "          'box': 1,\n",
      "          'numbered': 1,\n",
      "          'snowglobe': 1,\n",
      "          'completely': 1,\n",
      "          'utterly': 1,\n",
      "          'obsessed': 1,\n",
      "          'changed': 1,\n",
      "          'movies': 1,\n",
      "          'forever': 1,\n",
      "          'six': 1,\n",
      "          'sequels': 1,\n",
      "          '2': 1,\n",
      "          'truly': 1,\n",
      "          'good': 1,\n",
      "          'also': 1,\n",
      "          'several': 1,\n",
      "          'cheap': 1,\n",
      "          'imitations': 1,\n",
      "          'offensive': 1,\n",
      "          'ways': 1,\n",
      "          'true': 1,\n",
      "          'fan': 1,\n",
      "          'nsince': 1,\n",
      "          'heard': 1,\n",
      "          '30': 1,\n",
      "          '000': 1,\n",
      "          'copies': 1,\n",
      "          'knew': 1,\n",
      "          'buy': 1,\n",
      "          'matter': 1,\n",
      "          'man': 1,\n",
      "          'manufactured': 1,\n",
      "          'brilliance': 1,\n",
      "          'describe': 1,\n",
      "          'evil': 1,\n",
      "          'killed': 1,\n",
      "          'sister': 1,\n",
      "          'cold': 1,\n",
      "          'blood': 1,\n",
      "          '16': 1,\n",
      "          'ago': 1,\n",
      "          '1963': 1,\n",
      "          'nnow': 1,\n",
      "          'grown': 1,\n",
      "          'mental': 1,\n",
      "          'hospital': 1,\n",
      "          'escapes': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'hometown': 1,\n",
      "          'haddonfield': 1,\n",
      "          'illinois': 1,\n",
      "          'followed': 1,\n",
      "          'past': 1,\n",
      "          'doctor': 1,\n",
      "          'sam': 1,\n",
      "          'loomis': 1,\n",
      "          'targeting': 1,\n",
      "          'jamie': 1,\n",
      "          'lee': 1,\n",
      "          'curtis': 1,\n",
      "          'debut': 1,\n",
      "          'nwhy': 1,\n",
      "          'stalking': 1,\n",
      "          'ncheck': 1,\n",
      "          'ii': 1,\n",
      "          'explains': 1,\n",
      "          'non': 1,\n",
      "          'unholy': 1,\n",
      "          'night': 1,\n",
      "          '31': 1,\n",
      "          'two': 1,\n",
      "          'friends': 1,\n",
      "          'lives': 1,\n",
      "          'trying': 1,\n",
      "          'stay': 1,\n",
      "          'alive': 1,\n",
      "          'whole': 1,\n",
      "          'filled': 1,\n",
      "          'terrifying': 1,\n",
      "          'moments': 1,\n",
      "          'coming': 1,\n",
      "          'seeing': 1,\n",
      "          'walk': 1,\n",
      "          'nnick': 1,\n",
      "          'castle': 1,\n",
      "          'shape': 1,\n",
      "          'first': 1,\n",
      "          'incredible': 1,\n",
      "          'job': 1,\n",
      "          'nwhat': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'scares': 1,\n",
      "          'wit': 1,\n",
      "          'style': 1,\n",
      "          'flawless': 1,\n",
      "          'perfect': 1,\n",
      "          'sequel': 1,\n",
      "          'lived': 1,\n",
      "          'opinion': 1,\n",
      "          'never': 1,\n",
      "          'like': 1,\n",
      "          'psycho': 1,\n",
      "          'still': 1,\n",
      "          'extremely': 1,\n",
      "          'popular': 1,\n",
      "          'almost': 1,\n",
      "          '40': 1,\n",
      "          'later': 1,\n",
      "          'hope': 1,\n",
      "          'someday': 1,\n",
      "          'dolby': 1,\n",
      "          'soundtrack': 1,\n",
      "          'extra': 1,\n",
      "          'scenes': 1,\n",
      "          'isnt': 1,\n",
      "          'another': 1,\n",
      "          'sliceanddice': 1,\n",
      "          'intelligent': 1,\n",
      "          'horrifying': 1,\n",
      "          'experience': 1,\n",
      "          'nsee': 1,\n",
      "          'nwatch': 1,\n",
      "          'nreviewed': 1,\n",
      "          'brandon': 1,\n",
      "          'herring': 1,\n",
      "          '1999': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 10,\n",
      "          'film': 9,\n",
      "          'second': 6,\n",
      "          'first': 6,\n",
      "          'two': 6,\n",
      "          'movie': 4,\n",
      "          'act': 4,\n",
      "          'battle': 4,\n",
      "          'ryan': 4,\n",
      "          'mood': 3,\n",
      "          'one': 3,\n",
      "          'nits': 3,\n",
      "          'disliked': 2,\n",
      "          'nit': 2,\n",
      "          'sheer': 2,\n",
      "          'nthat': 2,\n",
      "          'said': 2,\n",
      "          'right': 2,\n",
      "          'absolutely': 2,\n",
      "          'incredible': 2,\n",
      "          'favorite': 2,\n",
      "          '1998': 2,\n",
      "          'would': 2,\n",
      "          'films': 2,\n",
      "          'compare': 2,\n",
      "          'seen': 2,\n",
      "          'artsy': 2,\n",
      "          'incredibly': 2,\n",
      "          'structure': 2,\n",
      "          'sort': 2,\n",
      "          'set': 2,\n",
      "          'characters': 2,\n",
      "          'even': 2,\n",
      "          'intense': 2,\n",
      "          'soldiers': 2,\n",
      "          'scenes': 2,\n",
      "          'amazing': 2,\n",
      "          'saving': 2,\n",
      "          'private': 2,\n",
      "          'times': 2,\n",
      "          'ever': 2,\n",
      "          'problems': 2,\n",
      "          'come': 2,\n",
      "          'long': 2,\n",
      "          'nalthough': 2,\n",
      "          'going': 2,\n",
      "          'effective': 2,\n",
      "          'nolte': 2,\n",
      "          'hard': 2,\n",
      "          'yet': 2,\n",
      "          'war': 2,\n",
      "          'easily': 2,\n",
      "          'thin': 2,\n",
      "          'red': 2,\n",
      "          'line': 2,\n",
      "          'admit': 1,\n",
      "          'initially': 1,\n",
      "          'certianly': 1,\n",
      "          'isnt': 1,\n",
      "          'every': 1,\n",
      "          'taste': 1,\n",
      "          'torture': 1,\n",
      "          'sit': 1,\n",
      "          'youre': 1,\n",
      "          'restless': 1,\n",
      "          'nthis': 1,\n",
      "          'shooin': 1,\n",
      "          'almost': 1,\n",
      "          'year': 1,\n",
      "          'nperhaps': 1,\n",
      "          'big': 1,\n",
      "          'turnoff': 1,\n",
      "          'many': 1,\n",
      "          'unconventionality': 1,\n",
      "          'nid': 1,\n",
      "          'hardpressed': 1,\n",
      "          'ive': 1,\n",
      "          'slow': 1,\n",
      "          'amazingly': 1,\n",
      "          'works': 1,\n",
      "          'beautifully': 1,\n",
      "          'non': 1,\n",
      "          'viewing': 1,\n",
      "          'realized': 1,\n",
      "          'follows': 1,\n",
      "          'three': 1,\n",
      "          'didnt': 1,\n",
      "          'think': 1,\n",
      "          'saw': 1,\n",
      "          'serves': 1,\n",
      "          'exists': 1,\n",
      "          'moreso': 1,\n",
      "          'tension': 1,\n",
      "          'restlesness': 1,\n",
      "          'perhaps': 1,\n",
      "          'feelings': 1,\n",
      "          'boredom': 1,\n",
      "          'nand': 1,\n",
      "          'shattered': 1,\n",
      "          'violence': 1,\n",
      "          'encompasses': 1,\n",
      "          'majority': 1,\n",
      "          'extended': 1,\n",
      "          'scene': 1,\n",
      "          'intercut': 1,\n",
      "          'brief': 1,\n",
      "          'flashbacks': 1,\n",
      "          'voiceovers': 1,\n",
      "          'artsier': 1,\n",
      "          'elements': 1,\n",
      "          'detract': 1,\n",
      "          'action': 1,\n",
      "          'add': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'succeed': 1,\n",
      "          'briefly': 1,\n",
      "          'letting': 1,\n",
      "          'viewer': 1,\n",
      "          'peek': 1,\n",
      "          'minds': 1,\n",
      "          'suddenly': 1,\n",
      "          'yanked': 1,\n",
      "          'back': 1,\n",
      "          'reality': 1,\n",
      "          'resumes': 1,\n",
      "          'opinion': 1,\n",
      "          'ntheyre': 1,\n",
      "          'brutal': 1,\n",
      "          'horrifying': 1,\n",
      "          'beautiful': 1,\n",
      "          'due': 1,\n",
      "          'cinematography': 1,\n",
      "          'immersive': 1,\n",
      "          'brilliant': 1,\n",
      "          'haunting': 1,\n",
      "          'third': 1,\n",
      "          'acts': 1,\n",
      "          'nmalick': 1,\n",
      "          'takes': 1,\n",
      "          'little': 1,\n",
      "          'get': 1,\n",
      "          'started': 1,\n",
      "          'initial': 1,\n",
      "          'consist': 1,\n",
      "          'experiencing': 1,\n",
      "          'nearedenlike': 1,\n",
      "          'paradise': 1,\n",
      "          'awol': 1,\n",
      "          'preperations': 1,\n",
      "          'necessary': 1,\n",
      "          'hints': 1,\n",
      "          'pretentiousness': 1,\n",
      "          'sink': 1,\n",
      "          'tad': 1,\n",
      "          'near': 1,\n",
      "          'beginning': 1,\n",
      "          'lot': 1,\n",
      "          'people': 1,\n",
      "          'probably': 1,\n",
      "          'gave': 1,\n",
      "          'final': 1,\n",
      "          'winding': 1,\n",
      "          'persist': 1,\n",
      "          'bit': 1,\n",
      "          'comes': 1,\n",
      "          'pretentious': 1,\n",
      "          'sequences': 1,\n",
      "          'soldier': 1,\n",
      "          'gets': 1,\n",
      "          'devastating': 1,\n",
      "          'note': 1,\n",
      "          'wife': 1,\n",
      "          'another': 1,\n",
      "          'main': 1,\n",
      "          'killed': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'performances': 1,\n",
      "          'phenominal': 1,\n",
      "          'around': 1,\n",
      "          'standouts': 1,\n",
      "          'nick': 1,\n",
      "          'newcomer': 1,\n",
      "          'jim': 1,\n",
      "          'caviezel': 1,\n",
      "          'nominated': 1,\n",
      "          'oscars': 1,\n",
      "          'nnolte': 1,\n",
      "          'riveting': 1,\n",
      "          'colonel': 1,\n",
      "          'charge': 1,\n",
      "          'operation': 1,\n",
      "          'nhis': 1,\n",
      "          'character': 1,\n",
      "          'mean': 1,\n",
      "          'somewhat': 1,\n",
      "          'reckless': 1,\n",
      "          'lives': 1,\n",
      "          'men': 1,\n",
      "          'somehow': 1,\n",
      "          'manages': 1,\n",
      "          'evoke': 1,\n",
      "          'sympathy': 1,\n",
      "          'ncaviezel': 1,\n",
      "          'forever': 1,\n",
      "          'questioning': 1,\n",
      "          'nature': 1,\n",
      "          'place': 1,\n",
      "          'theres': 1,\n",
      "          'deeper': 1,\n",
      "          'meaning': 1,\n",
      "          'hell': 1,\n",
      "          'hes': 1,\n",
      "          'nhe': 1,\n",
      "          'perfect': 1,\n",
      "          'genuine': 1,\n",
      "          'sympathetic': 1,\n",
      "          'sincere': 1,\n",
      "          'strong': 1,\n",
      "          'needs': 1,\n",
      "          'restricted': 1,\n",
      "          'relatively': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'sean': 1,\n",
      "          'penn': 1,\n",
      "          'also': 1,\n",
      "          'good': 1,\n",
      "          'companys': 1,\n",
      "          'pessimistic': 1,\n",
      "          'seargent': 1,\n",
      "          'nas': 1,\n",
      "          'stacks': 1,\n",
      "          'really': 1,\n",
      "          'different': 1,\n",
      "          'wont': 1,\n",
      "          'beyond': 1,\n",
      "          'saying': 1,\n",
      "          'spielbergs': 1,\n",
      "          'impact': 1,\n",
      "          'nhowever': 1,\n",
      "          'comparable': 1,\n",
      "          'standpoint': 1,\n",
      "          'quality': 1,\n",
      "          'see': 1,\n",
      "          'someone': 1,\n",
      "          'ni': 1,\n",
      "          'highly': 1,\n",
      "          'recommend': 1,\n",
      "          'consider': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'made': 1,\n",
      "          'nall': 1,\n",
      "          'filmmaking': 1,\n",
      "          'high': 1,\n",
      "          'order': 1,\n",
      "          'slight': 1,\n",
      "          'faults': 1,\n",
      "          'offset': 1,\n",
      "          'brilliance': 1,\n",
      "          'done': 1,\n",
      "          'real': 1,\n",
      "          'shame': 1,\n",
      "          'tanked': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'unconventional': 1,\n",
      "          'powerful': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'dont': 1,\n",
      "          'along': 1,\n",
      "          'often': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'nelson': 4,\n",
      "          'see': 3,\n",
      "          'mst3k': 3,\n",
      "          'film': 3,\n",
      "          'making': 3,\n",
      "          'big': 3,\n",
      "          'films': 3,\n",
      "          'effects': 3,\n",
      "          'tm': 2,\n",
      "          'episodes': 2,\n",
      "          'show': 2,\n",
      "          'watched': 2,\n",
      "          'comedy': 2,\n",
      "          'many': 2,\n",
      "          'nfor': 2,\n",
      "          'world': 2,\n",
      "          'series': 2,\n",
      "          'missing': 2,\n",
      "          'movies': 2,\n",
      "          'time': 2,\n",
      "          'two': 2,\n",
      "          'robot': 2,\n",
      "          'servo': 2,\n",
      "          'crow': 2,\n",
      "          'nthe': 2,\n",
      "          'format': 2,\n",
      "          'segments': 2,\n",
      "          'set': 2,\n",
      "          'jokes': 2,\n",
      "          'screen': 2,\n",
      "          'special': 2,\n",
      "          'larger': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'seat': 2,\n",
      "          'keep': 2,\n",
      "          'months': 2,\n",
      "          'rainy': 1,\n",
      "          'friday': 1,\n",
      "          'afternoon': 1,\n",
      "          'columbus': 1,\n",
      "          'persuaded': 1,\n",
      "          'friend': 1,\n",
      "          'matinee': 1,\n",
      "          'performance': 1,\n",
      "          'nhe': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'scant': 1,\n",
      "          'due': 1,\n",
      "          'unsocial': 1,\n",
      "          'airtime': 1,\n",
      "          'central': 1,\n",
      "          'uneven': 1,\n",
      "          'nature': 1,\n",
      "          'familiar': 1,\n",
      "          'premise': 1,\n",
      "          'dr': 1,\n",
      "          'clayton': 1,\n",
      "          'forrester': 1,\n",
      "          'beaulieu': 1,\n",
      "          'wishes': 1,\n",
      "          'take': 1,\n",
      "          'finding': 1,\n",
      "          'worst': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'unleashing': 1,\n",
      "          'upon': 1,\n",
      "          'unsuspecting': 1,\n",
      "          'public': 1,\n",
      "          'nto': 1,\n",
      "          'achieve': 1,\n",
      "          'words': 1,\n",
      "          'tv': 1,\n",
      "          'theme': 1,\n",
      "          'bumped': 1,\n",
      "          'mike': 1,\n",
      "          'noggin': 1,\n",
      "          'shot': 1,\n",
      "          'space': 1,\n",
      "          'monitoring': 1,\n",
      "          'nelsons': 1,\n",
      "          'reactions': 1,\n",
      "          'forced': 1,\n",
      "          'endure': 1,\n",
      "          'nrather': 1,\n",
      "          'succumb': 1,\n",
      "          'sheer': 1,\n",
      "          'awfulness': 1,\n",
      "          'spends': 1,\n",
      "          'wisecracks': 1,\n",
      "          'help': 1,\n",
      "          'companions': 1,\n",
      "          'tom': 1,\n",
      "          'consists': 1,\n",
      "          'comments': 1,\n",
      "          'silhouetted': 1,\n",
      "          'breaks': 1,\n",
      "          'every': 1,\n",
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'satellite': 1,\n",
      "          'love': 1,\n",
      "          'ship': 1,\n",
      "          'heroes': 1,\n",
      "          'marooned': 1,\n",
      "          'nonly': 1,\n",
      "          'things': 1,\n",
      "          'different': 1,\n",
      "          'absence': 1,\n",
      "          'forresters': 1,\n",
      "          'sidekick': 1,\n",
      "          'tvs': 1,\n",
      "          'frank': 1,\n",
      "          'slower': 1,\n",
      "          'pace': 1,\n",
      "          'nthis': 1,\n",
      "          'latter': 1,\n",
      "          'change': 1,\n",
      "          'presumably': 1,\n",
      "          'deliberate': 1,\n",
      "          'avoid': 1,\n",
      "          'viewing': 1,\n",
      "          'audience': 1,\n",
      "          'best': 1,\n",
      "          'lines': 1,\n",
      "          'laughing': 1,\n",
      "          'previous': 1,\n",
      "          'joke': 1,\n",
      "          'outing': 1,\n",
      "          'producers': 1,\n",
      "          'chosen': 1,\n",
      "          'island': 1,\n",
      "          'earth': 1,\n",
      "          '1954': 1,\n",
      "          'classic': 1,\n",
      "          'one': 1,\n",
      "          'first': 1,\n",
      "          'sf': 1,\n",
      "          'budget': 1,\n",
      "          'average': 1,\n",
      "          'grocery': 1,\n",
      "          'bill': 1,\n",
      "          'ideal': 1,\n",
      "          'fodder': 1,\n",
      "          'acting': 1,\n",
      "          'dialogue': 1,\n",
      "          'appear': 1,\n",
      "          'taken': 1,\n",
      "          'back': 1,\n",
      "          'todays': 1,\n",
      "          'standards': 1,\n",
      "          'less': 1,\n",
      "          'impressive': 1,\n",
      "          'nnelson': 1,\n",
      "          'co': 1,\n",
      "          'make': 1,\n",
      "          'everything': 1,\n",
      "          'japans': 1,\n",
      "          'dominance': 1,\n",
      "          'market': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'state': 1,\n",
      "          'disrepair': 1,\n",
      "          'seattles': 1,\n",
      "          'kingdome': 1,\n",
      "          'work': 1,\n",
      "          'outside': 1,\n",
      "          'satellites': 1,\n",
      "          'theater': 1,\n",
      "          'seem': 1,\n",
      "          'place': 1,\n",
      "          'arent': 1,\n",
      "          'particularly': 1,\n",
      "          'funny': 1,\n",
      "          'least': 1,\n",
      "          'theyre': 1,\n",
      "          'fairly': 1,\n",
      "          'short': 1,\n",
      "          'question': 1,\n",
      "          'though': 1,\n",
      "          'ni': 1,\n",
      "          'presume': 1,\n",
      "          'attempt': 1,\n",
      "          'gain': 1,\n",
      "          'following': 1,\n",
      "          'support': 1,\n",
      "          'behind': 1,\n",
      "          'rumours': 1,\n",
      "          'impending': 1,\n",
      "          'demise': 1,\n",
      "          'circulated': 1,\n",
      "          'plug': 1,\n",
      "          'eventually': 1,\n",
      "          'pulled': 1,\n",
      "          'ago': 1,\n",
      "          'gains': 1,\n",
      "          'nothing': 1,\n",
      "          'transition': 1,\n",
      "          'dazzle': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'edge': 1,\n",
      "          'use': 1,\n",
      "          'digital': 1,\n",
      "          'surround': 1,\n",
      "          'sound': 1,\n",
      "          'nso': 1,\n",
      "          'seems': 1,\n",
      "          'pointless': 1,\n",
      "          'spend': 1,\n",
      "          '8': 1,\n",
      "          'per': 1,\n",
      "          'person': 1,\n",
      "          'video': 1,\n",
      "          'watch': 1,\n",
      "          '3': 1,\n",
      "          'sit': 1,\n",
      "          'room': 1,\n",
      "          'full': 1,\n",
      "          'popcorn': 1,\n",
      "          'addicts': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'provides': 1,\n",
      "          'laughoutloud': 1,\n",
      "          'opportunities': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'year': 1,\n",
      "          'thoroughly': 1,\n",
      "          'recommend': 1,\n",
      "          'anyone': 1,\n",
      "          'pulse': 1,\n",
      "          'ngiven': 1,\n",
      "          'uniqueness': 1,\n",
      "          'hesitate': 1,\n",
      "          'grade': 1,\n",
      "          'fulfils': 1,\n",
      "          'claims': 1,\n",
      "          'class': 1,\n",
      "          'unsubtle': 1,\n",
      "          'whose': 1,\n",
      "          'laughs': 1,\n",
      "          'come': 1,\n",
      "          'expense': 1,\n",
      "          'bad': 1,\n",
      "          'bmovies': 1,\n",
      "          'well': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rylance': 6,\n",
      "          'fox': 5,\n",
      "          'scenes': 4,\n",
      "          'intimacy': 3,\n",
      "          'may': 3,\n",
      "          'jay': 3,\n",
      "          'one': 3,\n",
      "          'much': 2,\n",
      "          'mark': 2,\n",
      "          'eyes': 2,\n",
      "          'raw': 2,\n",
      "          'less': 2,\n",
      "          'often': 2,\n",
      "          'without': 2,\n",
      "          'single': 2,\n",
      "          'sexual': 2,\n",
      "          'nthe': 2,\n",
      "          'human': 2,\n",
      "          'especially': 2,\n",
      "          'nintimacy': 2,\n",
      "          'might': 2,\n",
      "          'love': 2,\n",
      "          'scene': 2,\n",
      "          'cake': 2,\n",
      "          'two': 2,\n",
      "          'meet': 2,\n",
      "          'nhes': 2,\n",
      "          'restaurant': 2,\n",
      "          'nas': 2,\n",
      "          'takes': 2,\n",
      "          'claires': 2,\n",
      "          'routines': 2,\n",
      "          'nin': 2,\n",
      "          'attempt': 2,\n",
      "          'restless': 2,\n",
      "          'shots': 2,\n",
      "          'opposite': 2,\n",
      "          'also': 2,\n",
      "          'spall': 2,\n",
      "          'best': 2,\n",
      "          'uncompromising': 1,\n",
      "          'nudity': 1,\n",
      "          'bared': 1,\n",
      "          'throughout': 1,\n",
      "          'petrice': 1,\n",
      "          'chereaus': 1,\n",
      "          'already': 1,\n",
      "          'garnered': 1,\n",
      "          'notoriety': 1,\n",
      "          'naked': 1,\n",
      "          'faces': 1,\n",
      "          'fearless': 1,\n",
      "          'actors': 1,\n",
      "          'angels': 1,\n",
      "          'insects': 1,\n",
      "          'kerry': 1,\n",
      "          'welcome': 1,\n",
      "          'sarajevo': 1,\n",
      "          'tender': 1,\n",
      "          'ache': 1,\n",
      "          'emotional': 1,\n",
      "          'resonance': 1,\n",
      "          'discovered': 1,\n",
      "          'nwith': 1,\n",
      "          'sharp': 1,\n",
      "          'intelligent': 1,\n",
      "          'reflect': 1,\n",
      "          'experience': 1,\n",
      "          'maturity': 1,\n",
      "          'refreshingly': 1,\n",
      "          'detached': 1,\n",
      "          'false': 1,\n",
      "          'glamour': 1,\n",
      "          'hollywood': 1,\n",
      "          'idols': 1,\n",
      "          'ntheir': 1,\n",
      "          'sex': 1,\n",
      "          'together': 1,\n",
      "          'bracing': 1,\n",
      "          'honesty': 1,\n",
      "          'acceptance': 1,\n",
      "          'flesh': 1,\n",
      "          'messiness': 1,\n",
      "          'nless': 1,\n",
      "          'apparent': 1,\n",
      "          'remarkable': 1,\n",
      "          'astute': 1,\n",
      "          'observations': 1,\n",
      "          'behavior': 1,\n",
      "          'revealed': 1,\n",
      "          'carnal': 1,\n",
      "          'beats': 1,\n",
      "          'haste': 1,\n",
      "          'hesitance': 1,\n",
      "          'line': 1,\n",
      "          'dialogue': 1,\n",
      "          'nnot': 1,\n",
      "          'aiming': 1,\n",
      "          'spiritual': 1,\n",
      "          'poetry': 1,\n",
      "          'realm': 1,\n",
      "          'senses': 1,\n",
      "          'philosophical': 1,\n",
      "          'transgressions': 1,\n",
      "          'crash': 1,\n",
      "          'chereau': 1,\n",
      "          'keeps': 1,\n",
      "          'odyssey': 1,\n",
      "          'firmly': 1,\n",
      "          'grounded': 1,\n",
      "          'terms': 1,\n",
      "          'straightforward': 1,\n",
      "          'character': 1,\n",
      "          'development': 1,\n",
      "          'nthat': 1,\n",
      "          'reason': 1,\n",
      "          'seems': 1,\n",
      "          'unerringly': 1,\n",
      "          'impressive': 1,\n",
      "          'never': 1,\n",
      "          'particularly': 1,\n",
      "          'significant': 1,\n",
      "          'tactile': 1,\n",
      "          'sensory': 1,\n",
      "          'level': 1,\n",
      "          'themes': 1,\n",
      "          'isolation': 1,\n",
      "          'barren': 1,\n",
      "          'obvious': 1,\n",
      "          'science': 1,\n",
      "          'project': 1,\n",
      "          'devoid': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'hypothesis': 1,\n",
      "          'manage': 1,\n",
      "          'stand': 1,\n",
      "          'lesser': 1,\n",
      "          'portraits': 1,\n",
      "          'interconnectedness': 1,\n",
      "          'pinteresque': 1,\n",
      "          'rummages': 1,\n",
      "          'psychological': 1,\n",
      "          'dirty': 1,\n",
      "          'drawers': 1,\n",
      "          'okay': 1,\n",
      "          'kill': 1,\n",
      "          'nshallow': 1,\n",
      "          'though': 1,\n",
      "          'sound': 1,\n",
      "          'amazing': 1,\n",
      "          'filled': 1,\n",
      "          'inspired': 1,\n",
      "          'cast': 1,\n",
      "          'perceptive': 1,\n",
      "          'camerawork': 1,\n",
      "          'imaginative': 1,\n",
      "          'ways': 1,\n",
      "          'treating': 1,\n",
      "          'nthose': 1,\n",
      "          'ingredients': 1,\n",
      "          'assured': 1,\n",
      "          'confident': 1,\n",
      "          'merely': 1,\n",
      "          'dismiss': 1,\n",
      "          'icing': 1,\n",
      "          'since': 1,\n",
      "          'substance': 1,\n",
      "          'nadapted': 1,\n",
      "          'pair': 1,\n",
      "          'short': 1,\n",
      "          'stories': 1,\n",
      "          'british': 1,\n",
      "          'novelist': 1,\n",
      "          'hanif': 1,\n",
      "          'kureishi': 1,\n",
      "          'weaves': 1,\n",
      "          'desperate': 1,\n",
      "          'lovemaking': 1,\n",
      "          'strangers': 1,\n",
      "          'london': 1,\n",
      "          'nevery': 1,\n",
      "          'wednesday': 1,\n",
      "          'claire': 1,\n",
      "          'cluttered': 1,\n",
      "          'dank': 1,\n",
      "          'apartment': 1,\n",
      "          'hour': 1,\n",
      "          'release': 1,\n",
      "          'uninspired': 1,\n",
      "          'lives': 1,\n",
      "          'head': 1,\n",
      "          'bartender': 1,\n",
      "          'posh': 1,\n",
      "          'six': 1,\n",
      "          'years': 1,\n",
      "          'nshes': 1,\n",
      "          'mystery': 1,\n",
      "          'glum': 1,\n",
      "          'workaday': 1,\n",
      "          'appearance': 1,\n",
      "          'reveals': 1,\n",
      "          'similar': 1,\n",
      "          'dissatisfaction': 1,\n",
      "          'ntheyre': 1,\n",
      "          'married': 1,\n",
      "          'relationship': 1,\n",
      "          'curdled': 1,\n",
      "          'embittered': 1,\n",
      "          'separation': 1,\n",
      "          'weeks': 1,\n",
      "          'draw': 1,\n",
      "          'obsessively': 1,\n",
      "          'upon': 1,\n",
      "          'uncover': 1,\n",
      "          'personal': 1,\n",
      "          'gain': 1,\n",
      "          'fuller': 1,\n",
      "          'semblance': 1,\n",
      "          'opens': 1,\n",
      "          'wounds': 1,\n",
      "          'hadnt': 1,\n",
      "          'existed': 1,\n",
      "          'singlehandedly': 1,\n",
      "          'corrupting': 1,\n",
      "          'fantasy': 1,\n",
      "          'nif': 1,\n",
      "          'werent': 1,\n",
      "          'unnecessary': 1,\n",
      "          'subplots': 1,\n",
      "          'involving': 1,\n",
      "          'jays': 1,\n",
      "          'brother': 1,\n",
      "          'bevy': 1,\n",
      "          'disgruntled': 1,\n",
      "          'coworkers': 1,\n",
      "          'minimalist': 1,\n",
      "          'premise': 1,\n",
      "          'described': 1,\n",
      "          'modern': 1,\n",
      "          'fable': 1,\n",
      "          'perils': 1,\n",
      "          'wish': 1,\n",
      "          'fulfillment': 1,\n",
      "          'nchareaus': 1,\n",
      "          'camera': 1,\n",
      "          'wielded': 1,\n",
      "          'superb': 1,\n",
      "          'everattentive': 1,\n",
      "          'cinematographer': 1,\n",
      "          'eric': 1,\n",
      "          'gautier': 1,\n",
      "          'appropriate': 1,\n",
      "          'family': 1,\n",
      "          'transitoriented': 1,\n",
      "          'take': 1,\n",
      "          'train': 1,\n",
      "          'linger': 1,\n",
      "          'still': 1,\n",
      "          'ones': 1,\n",
      "          'separately': 1,\n",
      "          'pensively': 1,\n",
      "          'carry': 1,\n",
      "          'makeshift': 1,\n",
      "          'household': 1,\n",
      "          'nthese': 1,\n",
      "          'captured': 1,\n",
      "          'lingering': 1,\n",
      "          'unblinking': 1,\n",
      "          'wide': 1,\n",
      "          'view': 1,\n",
      "          'stranded': 1,\n",
      "          'amidst': 1,\n",
      "          'drab': 1,\n",
      "          'workplaces': 1,\n",
      "          'homes': 1,\n",
      "          'nseparation': 1,\n",
      "          'proves': 1,\n",
      "          'haunting': 1,\n",
      "          'melancholy': 1,\n",
      "          'series': 1,\n",
      "          'intercut': 1,\n",
      "          'undress': 1,\n",
      "          'sides': 1,\n",
      "          'room': 1,\n",
      "          'crawling': 1,\n",
      "          'across': 1,\n",
      "          'floor': 1,\n",
      "          'center': 1,\n",
      "          'ndespite': 1,\n",
      "          'fly': 1,\n",
      "          'hyperactive': 1,\n",
      "          'better': 1,\n",
      "          'blend': 1,\n",
      "          'hustling': 1,\n",
      "          'crowd': 1,\n",
      "          'gabby': 1,\n",
      "          'trendsetters': 1,\n",
      "          'youd': 1,\n",
      "          'hard': 1,\n",
      "          'pressed': 1,\n",
      "          'find': 1,\n",
      "          'uninteresting': 1,\n",
      "          'image': 1,\n",
      "          'interest': 1,\n",
      "          'sordid': 1,\n",
      "          'world': 1,\n",
      "          'lowermiddle': 1,\n",
      "          'class': 1,\n",
      "          'lonely': 1,\n",
      "          'pubs': 1,\n",
      "          'busy': 1,\n",
      "          'shopping': 1,\n",
      "          'streets': 1,\n",
      "          'understands': 1,\n",
      "          'people': 1,\n",
      "          'inhabit': 1,\n",
      "          'spaces': 1,\n",
      "          'viewing': 1,\n",
      "          'sympathy': 1,\n",
      "          'scraped': 1,\n",
      "          'nan': 1,\n",
      "          'evaluation': 1,\n",
      "          'would': 1,\n",
      "          'incomplete': 1,\n",
      "          'highlighting': 1,\n",
      "          'great': 1,\n",
      "          'timothy': 1,\n",
      "          'robust': 1,\n",
      "          'scenestealer': 1,\n",
      "          'many': 1,\n",
      "          'mike': 1,\n",
      "          'leigh': 1,\n",
      "          'collaboration': 1,\n",
      "          'cuckolded': 1,\n",
      "          'husband': 1,\n",
      "          'jocular': 1,\n",
      "          'heavyweight': 1,\n",
      "          'plays': 1,\n",
      "          'handful': 1,\n",
      "          'bitter': 1,\n",
      "          'pill': 1,\n",
      "          'unforced': 1,\n",
      "          'menace': 1,\n",
      "          'selfeffacing': 1,\n",
      "          'embarrassment': 1,\n",
      "          'imposing': 1,\n",
      "          'bulk': 1,\n",
      "          'nbangs': 1,\n",
      "          'mouth': 1,\n",
      "          'forming': 1,\n",
      "          'quizzical': 1,\n",
      "          'pouts': 1,\n",
      "          'dry': 1,\n",
      "          'smirks': 1,\n",
      "          'seem': 1,\n",
      "          'fool': 1,\n",
      "          'barroom': 1,\n",
      "          'encounters': 1,\n",
      "          'sarcastic': 1,\n",
      "          'gleaming': 1,\n",
      "          'whose': 1,\n",
      "          'arrived': 1,\n",
      "          'looking': 1,\n",
      "          'stir': 1,\n",
      "          'trouble': 1,\n",
      "          'trifle': 1,\n",
      "          'nhis': 1,\n",
      "          'overreaching': 1,\n",
      "          'pal': 1,\n",
      "          'demeanor': 1,\n",
      "          'suggests': 1,\n",
      "          'mind': 1,\n",
      "          'abuzz': 1,\n",
      "          'secret': 1,\n",
      "          'passageways': 1,\n",
      "          'guile': 1,\n",
      "          'pointed': 1,\n",
      "          'questions': 1,\n",
      "          'na': 1,\n",
      "          'choose': 1,\n",
      "          'read': 1,\n",
      "          'crafty': 1,\n",
      "          'insinuations': 1,\n",
      "          'unassuming': 1,\n",
      "          'way': 1,\n",
      "          'spalls': 1,\n",
      "          'carefully': 1,\n",
      "          'etched': 1,\n",
      "          'interpretation': 1,\n",
      "          'hostility': 1,\n",
      "          'buried': 1,\n",
      "          'mountain': 1,\n",
      "          'surface': 1,\n",
      "          'propriety': 1,\n",
      "          'become': 1,\n",
      "          'criminally': 1,\n",
      "          'underappreciated': 1,\n",
      "          'performances': 1,\n",
      "          'year': 1,\n",
      "          'maybe': 1,\n",
      "          'good': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'little': 11,\n",
      "          'stuart': 10,\n",
      "          'film': 8,\n",
      "          'dvd': 7,\n",
      "          'commentary': 7,\n",
      "          'track': 6,\n",
      "          'features': 6,\n",
      "          'nthe': 5,\n",
      "          'effects': 5,\n",
      "          'nthere': 4,\n",
      "          'also': 4,\n",
      "          'movie': 4,\n",
      "          'films': 4,\n",
      "          'video': 4,\n",
      "          'director': 4,\n",
      "          'called': 4,\n",
      "          'mouse': 3,\n",
      "          'house': 3,\n",
      "          'family': 3,\n",
      "          'boat': 3,\n",
      "          'race': 3,\n",
      "          'nstuart': 3,\n",
      "          'computer': 3,\n",
      "          'great': 3,\n",
      "          'one': 3,\n",
      "          'columbia': 3,\n",
      "          'tristar': 3,\n",
      "          'full': 3,\n",
      "          '1': 3,\n",
      "          'audio': 3,\n",
      "          'animation': 3,\n",
      "          'visual': 3,\n",
      "          'know': 3,\n",
      "          'song': 3,\n",
      "          'party': 3,\n",
      "          'way': 3,\n",
      "          'wants': 2,\n",
      "          'brother': 2,\n",
      "          'voiced': 2,\n",
      "          'ngeorge': 2,\n",
      "          'snowbell': 2,\n",
      "          'cat': 2,\n",
      "          'nathan': 2,\n",
      "          'lane': 2,\n",
      "          'live': 2,\n",
      "          'generated': 2,\n",
      "          'obviously': 2,\n",
      "          'youll': 2,\n",
      "          'see': 2,\n",
      "          'special': 2,\n",
      "          'actual': 2,\n",
      "          'cats': 2,\n",
      "          'nits': 2,\n",
      "          'give': 2,\n",
      "          'without': 2,\n",
      "          'script': 2,\n",
      "          'sequence': 2,\n",
      "          'nkids': 2,\n",
      "          'love': 2,\n",
      "          'original': 2,\n",
      "          'theatrical': 2,\n",
      "          'nboth': 2,\n",
      "          'versions': 2,\n",
      "          'dolby': 2,\n",
      "          'lot': 2,\n",
      "          'length': 2,\n",
      "          'rob': 2,\n",
      "          'minkoff': 2,\n",
      "          'supervisor': 2,\n",
      "          'henry': 2,\n",
      "          'anderson': 2,\n",
      "          'supervisors': 2,\n",
      "          'interactive': 2,\n",
      "          'game': 2,\n",
      "          'step': 2,\n",
      "          'eight': 2,\n",
      "          'story': 2,\n",
      "          'read': 2,\n",
      "          'music': 2,\n",
      "          'videos': 2,\n",
      "          'six': 2,\n",
      "          'trailers': 2,\n",
      "          'baby': 2,\n",
      "          'geniuses': 2,\n",
      "          'disc': 2,\n",
      "          'wait': 2,\n",
      "          'ntheres': 2,\n",
      "          'animators': 2,\n",
      "          'scenes': 2,\n",
      "          'gag': 2,\n",
      "          'reel': 2,\n",
      "          'production': 2,\n",
      "          'scene': 2,\n",
      "          'first': 2,\n",
      "          'nthey': 2,\n",
      "          'like': 2,\n",
      "          'larry': 2,\n",
      "          'wrote': 2,\n",
      "          'people': 2,\n",
      "          'worked': 2,\n",
      "          'second': 2,\n",
      "          'need': 2,\n",
      "          'nthis': 2,\n",
      "          'girls': 2,\n",
      "          'slumber': 2,\n",
      "          'words': 2,\n",
      "          'nwhat': 2,\n",
      "          'suitable': 2,\n",
      "          'kids': 2,\n",
      "          'george': 1,\n",
      "          'jonathan': 1,\n",
      "          'lipnicki': 1,\n",
      "          'nafter': 1,\n",
      "          'mr': 1,\n",
      "          'mrs': 1,\n",
      "          'hugh': 1,\n",
      "          'laurie': 1,\n",
      "          'geena': 1,\n",
      "          'davis': 1,\n",
      "          'visit': 1,\n",
      "          'orphange': 1,\n",
      "          'decide': 1,\n",
      "          'adopt': 1,\n",
      "          'talking': 1,\n",
      "          'michael': 1,\n",
      "          'j': 1,\n",
      "          'fox': 1,\n",
      "          'isnt': 1,\n",
      "          'fond': 1,\n",
      "          'new': 1,\n",
      "          'arrives': 1,\n",
      "          'neither': 1,\n",
      "          'eventually': 1,\n",
      "          'bond': 1,\n",
      "          'preparing': 1,\n",
      "          'remote': 1,\n",
      "          'control': 1,\n",
      "          'hes': 1,\n",
      "          'unable': 1,\n",
      "          'taunts': 1,\n",
      "          'neighborhood': 1,\n",
      "          'felines': 1,\n",
      "          'saying': 1,\n",
      "          'ridiculous': 1,\n",
      "          'pet': 1,\n",
      "          'mix': 1,\n",
      "          'action': 1,\n",
      "          'imagery': 1,\n",
      "          'cgi': 1,\n",
      "          'character': 1,\n",
      "          'image': 1,\n",
      "          'grows': 1,\n",
      "          'progresses': 1,\n",
      "          'soon': 1,\n",
      "          'much': 1,\n",
      "          'mere': 1,\n",
      "          'effect': 1,\n",
      "          'deal': 1,\n",
      "          'animal': 1,\n",
      "          'training': 1,\n",
      "          'involved': 1,\n",
      "          'many': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'animated': 1,\n",
      "          'mouths': 1,\n",
      "          'speak': 1,\n",
      "          'fascinating': 1,\n",
      "          'watch': 1,\n",
      "          'performances': 1,\n",
      "          'interact': 1,\n",
      "          'charming': 1,\n",
      "          'laughs': 1,\n",
      "          'cowritten': 1,\n",
      "          'sixth': 1,\n",
      "          'senses': 1,\n",
      "          'night': 1,\n",
      "          'shyamalan': 1,\n",
      "          'less': 1,\n",
      "          'nsome': 1,\n",
      "          'moments': 1,\n",
      "          'described': 1,\n",
      "          'cute': 1,\n",
      "          'even': 1,\n",
      "          'majority': 1,\n",
      "          'oneliners': 1,\n",
      "          'common': 1,\n",
      "          'nowadays': 1,\n",
      "          'childrens': 1,\n",
      "          'featuring': 1,\n",
      "          'tolerable': 1,\n",
      "          'parents': 1,\n",
      "          'available': 1,\n",
      "          'home': 1,\n",
      "          'two': 1,\n",
      "          'different': 1,\n",
      "          'dvds': 1,\n",
      "          'sale': 1,\n",
      "          'contains': 1,\n",
      "          'frame': 1,\n",
      "          'presents': 1,\n",
      "          'aspect': 1,\n",
      "          'ratio': 1,\n",
      "          '66': 1,\n",
      "          'feature': 1,\n",
      "          'choices': 1,\n",
      "          'either': 1,\n",
      "          'surround': 1,\n",
      "          'digital': 1,\n",
      "          '5': 1,\n",
      "          'contain': 1,\n",
      "          'following': 1,\n",
      "          'extras': 1,\n",
      "          'hang': 1,\n",
      "          'theres': 1,\n",
      "          'isolated': 1,\n",
      "          'score': 1,\n",
      "          'trivia': 1,\n",
      "          'featurette': 1,\n",
      "          'goes': 1,\n",
      "          'making': 1,\n",
      "          'documentary': 1,\n",
      "          'originally': 1,\n",
      "          'aried': 1,\n",
      "          'hbo': 1,\n",
      "          'readalong': 1,\n",
      "          'three': 1,\n",
      "          'thecatrical': 1,\n",
      "          'nget': 1,\n",
      "          'funny': 1,\n",
      "          'five': 1,\n",
      "          'releases': 1,\n",
      "          'adventures': 1,\n",
      "          'elmo': 1,\n",
      "          'grouchland': 1,\n",
      "          'madeline': 1,\n",
      "          'nuttiest': 1,\n",
      "          'nutcracker': 1,\n",
      "          'muppets': 1,\n",
      "          'space': 1,\n",
      "          'bad': 1,\n",
      "          'thing': 1,\n",
      "          'entire': 1,\n",
      "          'ni': 1,\n",
      "          'want': 1,\n",
      "          'reminded': 1,\n",
      "          'awfulness': 1,\n",
      "          'ndvdrom': 1,\n",
      "          'including': 1,\n",
      "          'web': 1,\n",
      "          'links': 1,\n",
      "          'demo': 1,\n",
      "          'cdrom': 1,\n",
      "          'nbut': 1,\n",
      "          'still': 1,\n",
      "          'section': 1,\n",
      "          'basement': 1,\n",
      "          'treasures': 1,\n",
      "          'find': 1,\n",
      "          'auditions': 1,\n",
      "          'deleted': 1,\n",
      "          'select': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'view': 1,\n",
      "          'incredible': 1,\n",
      "          'minute': 1,\n",
      "          'storyboard': 1,\n",
      "          'detailing': 1,\n",
      "          'concept': 1,\n",
      "          'insightful': 1,\n",
      "          'detailed': 1,\n",
      "          'thoughts': 1,\n",
      "          'nminkoff': 1,\n",
      "          'likes': 1,\n",
      "          'point': 1,\n",
      "          'screenwriters': 1,\n",
      "          'came': 1,\n",
      "          'polished': 1,\n",
      "          'namely': 1,\n",
      "          'writers': 1,\n",
      "          'scott': 1,\n",
      "          'alexander': 1,\n",
      "          'karaszewski': 1,\n",
      "          'vs': 1,\n",
      "          'flynt': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'lowell': 1,\n",
      "          'ganz': 1,\n",
      "          'babaloo': 1,\n",
      "          'mandel': 1,\n",
      "          'splash': 1,\n",
      "          'multiplicity': 1,\n",
      "          'among': 1,\n",
      "          'others': 1,\n",
      "          'nanderson': 1,\n",
      "          'appreciative': 1,\n",
      "          'often': 1,\n",
      "          'points': 1,\n",
      "          'animator': 1,\n",
      "          'occur': 1,\n",
      "          'john': 1,\n",
      "          'dykstra': 1,\n",
      "          'jerome': 1,\n",
      "          'chen': 1,\n",
      "          'discuss': 1,\n",
      "          'specific': 1,\n",
      "          'details': 1,\n",
      "          'nmovie': 1,\n",
      "          'fans': 1,\n",
      "          'enjoy': 1,\n",
      "          'informative': 1,\n",
      "          'serious': 1,\n",
      "          'buffs': 1,\n",
      "          'nnow': 1,\n",
      "          'slightly': 1,\n",
      "          'topic': 1,\n",
      "          'related': 1,\n",
      "          'specifically': 1,\n",
      "          'must': 1,\n",
      "          'voice': 1,\n",
      "          'none': 1,\n",
      "          'group': 1,\n",
      "          'r': 1,\n",
      "          'angels': 1,\n",
      "          'four': 1,\n",
      "          'midteenage': 1,\n",
      "          'singers': 1,\n",
      "          'ask': 1,\n",
      "          'ouija': 1,\n",
      "          'board': 1,\n",
      "          'nwho': 1,\n",
      "          'begins': 1,\n",
      "          'sneak': 1,\n",
      "          'along': 1,\n",
      "          'strike': 1,\n",
      "          'pose': 1,\n",
      "          'pajamas': 1,\n",
      "          'magically': 1,\n",
      "          'transformed': 1,\n",
      "          'middle': 1,\n",
      "          'class': 1,\n",
      "          'streetwalker': 1,\n",
      "          'outfits': 1,\n",
      "          'nthen': 1,\n",
      "          'head': 1,\n",
      "          'dance': 1,\n",
      "          'suggestively': 1,\n",
      "          'guys': 1,\n",
      "          'singing': 1,\n",
      "          'lyrics': 1,\n",
      "          'ill': 1,\n",
      "          'pleasure': 1,\n",
      "          'time': 1,\n",
      "          'njust': 1,\n",
      "          'say': 1,\n",
      "          'mine': 1,\n",
      "          'num': 1,\n",
      "          'hell': 1,\n",
      "          'nhow': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'nwhen': 1,\n",
      "          'concludes': 1,\n",
      "          'continued': 1,\n",
      "          'appear': 1,\n",
      "          'noh': 1,\n",
      "          'cant': 1,\n",
      "          'theyve': 1,\n",
      "          'slept': 1,\n",
      "          'toy': 1,\n",
      "          '2': 1,\n",
      "          'comes': 1,\n",
      "          'wont': 1,\n",
      "          'care': 1,\n",
      "          'us': 1,\n",
      "          'sometimes': 1,\n",
      "          'turned': 1,\n",
      "          'kid': 1,\n",
      "          'heart': 1,\n",
      "          'thanks': 1,\n",
      "          'winning': 1,\n",
      "          'sure': 1,\n",
      "          'appreciate': 1,\n",
      "          'good': 1,\n",
      "          'loaded': 1,\n",
      "          'reasonable': 1,\n",
      "          'cost': 1,\n",
      "          'diney': 1,\n",
      "          'could': 1,\n",
      "          'learn': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'star': 15,\n",
      "          'wars': 14,\n",
      "          'movie': 10,\n",
      "          'movies': 10,\n",
      "          'lucas': 9,\n",
      "          'science': 8,\n",
      "          'fiction': 8,\n",
      "          'film': 7,\n",
      "          'nthe': 7,\n",
      "          'time': 7,\n",
      "          'hollywood': 7,\n",
      "          'would': 6,\n",
      "          'old': 6,\n",
      "          'special': 5,\n",
      "          'nin': 5,\n",
      "          'even': 5,\n",
      "          'personal': 5,\n",
      "          'two': 5,\n",
      "          'one': 4,\n",
      "          'like': 4,\n",
      "          'new': 4,\n",
      "          'audience': 4,\n",
      "          'dark': 4,\n",
      "          'space': 4,\n",
      "          'sf': 4,\n",
      "          'man': 4,\n",
      "          'enough': 4,\n",
      "          'reviewers': 3,\n",
      "          '1977': 3,\n",
      "          'epic': 3,\n",
      "          'george': 3,\n",
      "          'millions': 3,\n",
      "          'must': 3,\n",
      "          'also': 3,\n",
      "          'use': 3,\n",
      "          'many': 3,\n",
      "          'ago': 3,\n",
      "          'away': 3,\n",
      "          'important': 3,\n",
      "          'authors': 3,\n",
      "          'mostly': 3,\n",
      "          'ngeorge': 3,\n",
      "          'among': 3,\n",
      "          'success': 3,\n",
      "          'inspiration': 3,\n",
      "          'popular': 3,\n",
      "          'good': 3,\n",
      "          'considered': 3,\n",
      "          'young': 3,\n",
      "          'death': 3,\n",
      "          'information': 3,\n",
      "          'last': 3,\n",
      "          'effects': 3,\n",
      "          'john': 3,\n",
      "          'could': 2,\n",
      "          'arent': 2,\n",
      "          'small': 2,\n",
      "          'case': 2,\n",
      "          'fans': 2,\n",
      "          'something': 2,\n",
      "          'seen': 2,\n",
      "          'best': 2,\n",
      "          'nthose': 2,\n",
      "          'dont': 2,\n",
      "          'usually': 2,\n",
      "          'artistic': 2,\n",
      "          'first': 2,\n",
      "          'years': 2,\n",
      "          'long': 2,\n",
      "          'galaxy': 2,\n",
      "          'far': 2,\n",
      "          'perhaps': 2,\n",
      "          'comic': 2,\n",
      "          'books': 2,\n",
      "          'going': 2,\n",
      "          'come': 2,\n",
      "          'probably': 2,\n",
      "          'nuntil': 2,\n",
      "          'american': 2,\n",
      "          'industry': 2,\n",
      "          'social': 2,\n",
      "          '1960s': 2,\n",
      "          'financial': 2,\n",
      "          'technical': 2,\n",
      "          'serious': 2,\n",
      "          'artsy': 2,\n",
      "          'nas': 2,\n",
      "          'result': 2,\n",
      "          'didnt': 2,\n",
      "          'want': 2,\n",
      "          'role': 2,\n",
      "          'began': 2,\n",
      "          'blockbuster': 2,\n",
      "          'genre': 2,\n",
      "          '2001': 2,\n",
      "          'odyssey': 2,\n",
      "          'nbut': 2,\n",
      "          'production': 2,\n",
      "          'dystopic': 2,\n",
      "          'nhowever': 2,\n",
      "          'although': 2,\n",
      "          'continued': 2,\n",
      "          'early': 2,\n",
      "          'nafter': 2,\n",
      "          'family': 2,\n",
      "          'member': 2,\n",
      "          'begins': 2,\n",
      "          'evil': 2,\n",
      "          'empire': 2,\n",
      "          'republic': 2,\n",
      "          'order': 2,\n",
      "          'princess': 2,\n",
      "          'carrie': 2,\n",
      "          'fisher': 2,\n",
      "          'imperial': 2,\n",
      "          'voice': 2,\n",
      "          'james': 2,\n",
      "          'earl': 2,\n",
      "          'jones': 2,\n",
      "          'robots': 2,\n",
      "          'r2d2': 2,\n",
      "          'luke': 2,\n",
      "          'mark': 2,\n",
      "          'hamill': 2,\n",
      "          'become': 2,\n",
      "          'pilot': 2,\n",
      "          'obi': 2,\n",
      "          'wan': 2,\n",
      "          'alec': 2,\n",
      "          'guiness': 2,\n",
      "          'force': 2,\n",
      "          'harrison': 2,\n",
      "          'ford': 2,\n",
      "          'peter': 2,\n",
      "          'cant': 2,\n",
      "          'non': 2,\n",
      "          'might': 2,\n",
      "          'yet': 2,\n",
      "          'element': 2,\n",
      "          'decades': 2,\n",
      "          'impressive': 2,\n",
      "          'somewhat': 2,\n",
      "          'form': 2,\n",
      "          'whose': 2,\n",
      "          'main': 2,\n",
      "          'career': 2,\n",
      "          'release': 2,\n",
      "          'countries': 1,\n",
      "          'legal': 1,\n",
      "          'systems': 1,\n",
      "          'take': 1,\n",
      "          'rule': 1,\n",
      "          'law': 1,\n",
      "          'principle': 1,\n",
      "          'seriously': 1,\n",
      "          'forbidden': 1,\n",
      "          'judges': 1,\n",
      "          'juries': 1,\n",
      "          'make': 1,\n",
      "          'judgements': 1,\n",
      "          'matters': 1,\n",
      "          'involve': 1,\n",
      "          'personally': 1,\n",
      "          'nluckily': 1,\n",
      "          'burdened': 1,\n",
      "          'legislation': 1,\n",
      "          'notherwise': 1,\n",
      "          'pool': 1,\n",
      "          'forever': 1,\n",
      "          'ignored': 1,\n",
      "          'reviewer': 1,\n",
      "          'consequences': 1,\n",
      "          'severe': 1,\n",
      "          'tens': 1,\n",
      "          'hundreds': 1,\n",
      "          'objectivity': 1,\n",
      "          'seldom': 1,\n",
      "          'reviews': 1,\n",
      "          'undisputed': 1,\n",
      "          'majority': 1,\n",
      "          'rate': 1,\n",
      "          'times': 1,\n",
      "          'difficulties': 1,\n",
      "          'hiding': 1,\n",
      "          'snobbery': 1,\n",
      "          'author': 1,\n",
      "          'review': 1,\n",
      "          'concede': 1,\n",
      "          'inability': 1,\n",
      "          'cold': 1,\n",
      "          'objective': 1,\n",
      "          'standards': 1,\n",
      "          'reviewing': 1,\n",
      "          'nlike': 1,\n",
      "          'previous': 1,\n",
      "          'note': 1,\n",
      "          'watched': 1,\n",
      "          'twenty': 1,\n",
      "          'remained': 1,\n",
      "          'enchanted': 1,\n",
      "          'experience': 1,\n",
      "          'ever': 1,\n",
      "          'since': 1,\n",
      "          'nperhaps': 1,\n",
      "          'childlike': 1,\n",
      "          'fascination': 1,\n",
      "          'unimaginable': 1,\n",
      "          'wonders': 1,\n",
      "          'happened': 1,\n",
      "          'rush': 1,\n",
      "          'felt': 1,\n",
      "          'minutes': 1,\n",
      "          'opening': 1,\n",
      "          'shots': 1,\n",
      "          'expectations': 1,\n",
      "          'already': 1,\n",
      "          'pumped': 1,\n",
      "          'serialised': 1,\n",
      "          'novelisation': 1,\n",
      "          'read': 1,\n",
      "          'nanyway': 1,\n",
      "          'watching': 1,\n",
      "          'experiences': 1,\n",
      "          'life': 1,\n",
      "          'nand': 1,\n",
      "          'unmatched': 1,\n",
      "          'managed': 1,\n",
      "          'strong': 1,\n",
      "          'impact': 1,\n",
      "          'nstar': 1,\n",
      "          'wasnt': 1,\n",
      "          'share': 1,\n",
      "          'sentiment': 1,\n",
      "          'nit': 1,\n",
      "          'defining': 1,\n",
      "          'moment': 1,\n",
      "          'history': 1,\n",
      "          'modern': 1,\n",
      "          'cinema': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'limbo': 1,\n",
      "          'turmoil': 1,\n",
      "          'practically': 1,\n",
      "          'destroyed': 1,\n",
      "          'filled': 1,\n",
      "          'void': 1,\n",
      "          'using': 1,\n",
      "          'hollywoods': 1,\n",
      "          'resources': 1,\n",
      "          'create': 1,\n",
      "          'traumatised': 1,\n",
      "          'reality': 1,\n",
      "          'vietnam': 1,\n",
      "          'watergate': 1,\n",
      "          'see': 1,\n",
      "          'content': 1,\n",
      "          'silver': 1,\n",
      "          'screen': 1,\n",
      "          'rescue': 1,\n",
      "          'responded': 1,\n",
      "          'unprecedented': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'huge': 1,\n",
      "          'later': 1,\n",
      "          'backed': 1,\n",
      "          'supplement': 1,\n",
      "          'toys': 1,\n",
      "          'comics': 1,\n",
      "          'playing': 1,\n",
      "          'games': 1,\n",
      "          'merchandise': 1,\n",
      "          'slowly': 1,\n",
      "          'change': 1,\n",
      "          'face': 1,\n",
      "          'nserious': 1,\n",
      "          'adult': 1,\n",
      "          'ambitions': 1,\n",
      "          'faded': 1,\n",
      "          'oblivion': 1,\n",
      "          'replaced': 1,\n",
      "          'industrial': 1,\n",
      "          'products': 1,\n",
      "          'philosophy': 1,\n",
      "          'none': 1,\n",
      "          'biggest': 1,\n",
      "          'casualties': 1,\n",
      "          'trend': 1,\n",
      "          'bproduction': 1,\n",
      "          'domain': 1,\n",
      "          'late': 1,\n",
      "          'bigger': 1,\n",
      "          'budgets': 1,\n",
      "          'look': 1,\n",
      "          'strange': 1,\n",
      "          'anymore': 1,\n",
      "          'thanks': 1,\n",
      "          'great': 1,\n",
      "          'coincided': 1,\n",
      "          'surge': 1,\n",
      "          'pesimism': 1,\n",
      "          'bleak': 1,\n",
      "          'rest': 1,\n",
      "          'showed': 1,\n",
      "          'doesnt': 1,\n",
      "          'seriousness': 1,\n",
      "          'cinematic': 1,\n",
      "          'fading': 1,\n",
      "          'cult': 1,\n",
      "          'quality': 1,\n",
      "          'filmed': 1,\n",
      "          '1980s': 1,\n",
      "          'synonym': 1,\n",
      "          'entertainment': 1,\n",
      "          'nironically': 1,\n",
      "          'responsible': 1,\n",
      "          'generation': 1,\n",
      "          'made': 1,\n",
      "          'films': 1,\n",
      "          '1970s': 1,\n",
      "          'established': 1,\n",
      "          'thx': 1,\n",
      "          '1138': 1,\n",
      "          'nostalgic': 1,\n",
      "          'drama': 1,\n",
      "          'graffiti': 1,\n",
      "          'nboth': 1,\n",
      "          'despite': 1,\n",
      "          'latter': 1,\n",
      "          'becoming': 1,\n",
      "          'sense': 1,\n",
      "          'thorny': 1,\n",
      "          'way': 1,\n",
      "          'final': 1,\n",
      "          'shows': 1,\n",
      "          'commercial': 1,\n",
      "          'considerations': 1,\n",
      "          'unlike': 1,\n",
      "          'era': 1,\n",
      "          'personality': 1,\n",
      "          'line': 1,\n",
      "          'wishes': 1,\n",
      "          'general': 1,\n",
      "          'plot': 1,\n",
      "          'set': 1,\n",
      "          'civil': 1,\n",
      "          'war': 1,\n",
      "          'threatened': 1,\n",
      "          'rebels': 1,\n",
      "          'restore': 1,\n",
      "          'quash': 1,\n",
      "          'opposition': 1,\n",
      "          'built': 1,\n",
      "          'superweapon': 1,\n",
      "          'powerful': 1,\n",
      "          'destroy': 1,\n",
      "          'whole': 1,\n",
      "          'planets': 1,\n",
      "          'acquired': 1,\n",
      "          'rebel': 1,\n",
      "          'intelligence': 1,\n",
      "          'transported': 1,\n",
      "          'leia': 1,\n",
      "          'organa': 1,\n",
      "          'ship': 1,\n",
      "          'gets': 1,\n",
      "          'intercepted': 1,\n",
      "          'cruiser': 1,\n",
      "          'nprincess': 1,\n",
      "          'arrested': 1,\n",
      "          'warlord': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'played': 1,\n",
      "          'david': 1,\n",
      "          'prowse': 1,\n",
      "          'sent': 1,\n",
      "          'nearby': 1,\n",
      "          'desert': 1,\n",
      "          'planet': 1,\n",
      "          'tatooine': 1,\n",
      "          'via': 1,\n",
      "          'humanoid': 1,\n",
      "          'c3po': 1,\n",
      "          'anthony': 1,\n",
      "          'daniels': 1,\n",
      "          'kenny': 1,\n",
      "          'baker': 1,\n",
      "          'sold': 1,\n",
      "          'skywalker': 1,\n",
      "          'restless': 1,\n",
      "          'wants': 1,\n",
      "          'leave': 1,\n",
      "          'farm': 1,\n",
      "          'nhis': 1,\n",
      "          'adventure': 1,\n",
      "          'escapes': 1,\n",
      "          'reach': 1,\n",
      "          'mysterious': 1,\n",
      "          'local': 1,\n",
      "          'hermit': 1,\n",
      "          'kenobi': 1,\n",
      "          'nold': 1,\n",
      "          'actually': 1,\n",
      "          'surviving': 1,\n",
      "          'jedi': 1,\n",
      "          'knight': 1,\n",
      "          'ancient': 1,\n",
      "          'defended': 1,\n",
      "          'mystical': 1,\n",
      "          'hesitation': 1,\n",
      "          'agrees': 1,\n",
      "          'join': 1,\n",
      "          'mission': 1,\n",
      "          'save': 1,\n",
      "          'teach': 1,\n",
      "          'ways': 1,\n",
      "          'ntheir': 1,\n",
      "          'band': 1,\n",
      "          'comes': 1,\n",
      "          'colourful': 1,\n",
      "          'spaceport': 1,\n",
      "          'moss': 1,\n",
      "          'eisely': 1,\n",
      "          'hire': 1,\n",
      "          'spaceship': 1,\n",
      "          'owned': 1,\n",
      "          'rogue': 1,\n",
      "          'han': 1,\n",
      "          'solo': 1,\n",
      "          'furry': 1,\n",
      "          'sidekick': 1,\n",
      "          'chewbacca': 1,\n",
      "          'mayhew': 1,\n",
      "          'ncritics': 1,\n",
      "          'especially': 1,\n",
      "          'forgive': 1,\n",
      "          'contribution': 1,\n",
      "          'quashing': 1,\n",
      "          'prone': 1,\n",
      "          'point': 1,\n",
      "          'lack': 1,\n",
      "          'originality': 1,\n",
      "          'surface': 1,\n",
      "          'right': 1,\n",
      "          'admits': 1,\n",
      "          'found': 1,\n",
      "          'lot': 1,\n",
      "          'lore': 1,\n",
      "          'westerns': 1,\n",
      "          'wwii': 1,\n",
      "          'aviation': 1,\n",
      "          'cliffhanger': 1,\n",
      "          'serials': 1,\n",
      "          '1930s': 1,\n",
      "          '1940s': 1,\n",
      "          'obvious': 1,\n",
      "          'akira': 1,\n",
      "          'kurosawas': 1,\n",
      "          'samurai': 1,\n",
      "          'classic': 1,\n",
      "          'hidden': 1,\n",
      "          'fortress': 1,\n",
      "          'hand': 1,\n",
      "          'spent': 1,\n",
      "          'studying': 1,\n",
      "          'say': 1,\n",
      "          'went': 1,\n",
      "          'collective': 1,\n",
      "          'subconscious': 1,\n",
      "          'western': 1,\n",
      "          'civilisation': 1,\n",
      "          'hinted': 1,\n",
      "          'mild': 1,\n",
      "          'tolkien': 1,\n",
      "          'references': 1,\n",
      "          'others': 1,\n",
      "          'find': 1,\n",
      "          'within': 1,\n",
      "          'story': 1,\n",
      "          'anti': 1,\n",
      "          'establishment': 1,\n",
      "          'longhaired': 1,\n",
      "          'easy': 1,\n",
      "          'natureloving': 1,\n",
      "          'heroes': 1,\n",
      "          'fighting': 1,\n",
      "          'uptight': 1,\n",
      "          'oppressive': 1,\n",
      "          'forces': 1,\n",
      "          'supertechnology': 1,\n",
      "          'demonic': 1,\n",
      "          'purposes': 1,\n",
      "          'neven': 1,\n",
      "          'historical': 1,\n",
      "          'context': 1,\n",
      "          'strictly': 1,\n",
      "          'piece': 1,\n",
      "          'seven': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'clever': 1,\n",
      "          'editing': 1,\n",
      "          'wellpaced': 1,\n",
      "          'segments': 1,\n",
      "          'action': 1,\n",
      "          'dramatic': 1,\n",
      "          'buildup': 1,\n",
      "          'ncharacters': 1,\n",
      "          'welldrawn': 1,\n",
      "          'deliver': 1,\n",
      "          'necessary': 1,\n",
      "          'ingredients': 1,\n",
      "          'opera': 1,\n",
      "          'nwe': 1,\n",
      "          'comingofage': 1,\n",
      "          'hero': 1,\n",
      "          'damselindistress': 1,\n",
      "          'toned': 1,\n",
      "          'due': 1,\n",
      "          'feminist': 1,\n",
      "          'trends': 1,\n",
      "          'reluctant': 1,\n",
      "          'helper': 1,\n",
      "          'benevolent': 1,\n",
      "          'mentor': 1,\n",
      "          'diabolical': 1,\n",
      "          'villain': 1,\n",
      "          'finally': 1,\n",
      "          'relief': 1,\n",
      "          'nonhuman': 1,\n",
      "          'characters': 1,\n",
      "          'nsome': 1,\n",
      "          'actors': 1,\n",
      "          'famous': 1,\n",
      "          'date': 1,\n",
      "          'cause': 1,\n",
      "          'unease': 1,\n",
      "          'cushing': 1,\n",
      "          'incarnation': 1,\n",
      "          'pure': 1,\n",
      "          'human': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'said': 1,\n",
      "          'leads': 1,\n",
      "          'trio': 1,\n",
      "          'character': 1,\n",
      "          'threedimensional': 1,\n",
      "          'launch': 1,\n",
      "          'acting': 1,\n",
      "          'thing': 1,\n",
      "          'looked': 1,\n",
      "          'segment': 1,\n",
      "          'phenomena': 1,\n",
      "          'initial': 1,\n",
      "          'level': 1,\n",
      "          'technology': 1,\n",
      "          'noften': 1,\n",
      "          'comparisons': 1,\n",
      "          'another': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'citing': 1,\n",
      "          'sheer': 1,\n",
      "          'number': 1,\n",
      "          'proof': 1,\n",
      "          'superiority': 1,\n",
      "          'kubrick': 1,\n",
      "          'dykstra': 1,\n",
      "          'stears': 1,\n",
      "          'indeed': 1,\n",
      "          '1997': 1,\n",
      "          'edition': 1,\n",
      "          'improve': 1,\n",
      "          'significantly': 1,\n",
      "          'remembered': 1,\n",
      "          'trademark': 1,\n",
      "          'nthat': 1,\n",
      "          'honour': 1,\n",
      "          'definitely': 1,\n",
      "          'go': 1,\n",
      "          'oscar': 1,\n",
      "          'winning': 1,\n",
      "          'soundtrack': 1,\n",
      "          'williams': 1,\n",
      "          'work': 1,\n",
      "          'brightest': 1,\n",
      "          'gem': 1,\n",
      "          'brilliant': 1,\n",
      "          'nnewer': 1,\n",
      "          'generations': 1,\n",
      "          'viewers': 1,\n",
      "          'deprived': 1,\n",
      "          'enchantment': 1,\n",
      "          'still': 1,\n",
      "          'holds': 1,\n",
      "          'lucky': 1,\n",
      "          'witness': 1,\n",
      "          'original': 1,\n",
      "          'nyet': 1,\n",
      "          'immune': 1,\n",
      "          'magic': 1,\n",
      "          'watch': 1,\n",
      "          'nevertheless': 1,\n",
      "          'familiar': 1,\n",
      "          'essential': 1,\n",
      "          'part': 1,\n",
      "          'contemporary': 1,\n",
      "          'culture': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'frequency': 4,\n",
      "          'film': 4,\n",
      "          'n': 3,\n",
      "          'number': 3,\n",
      "          'know': 3,\n",
      "          'new': 3,\n",
      "          'john': 3,\n",
      "          'frank': 3,\n",
      "          'past': 3,\n",
      "          'future': 3,\n",
      "          'movie': 3,\n",
      "          'specified': 2,\n",
      "          'nwhen': 2,\n",
      "          'premise': 2,\n",
      "          'may': 2,\n",
      "          'york': 2,\n",
      "          'father': 2,\n",
      "          'thirty': 2,\n",
      "          'years': 2,\n",
      "          'ago': 2,\n",
      "          'stop': 2,\n",
      "          'wasnt': 2,\n",
      "          'one': 2,\n",
      "          'serial': 2,\n",
      "          'killer': 2,\n",
      "          'save': 2,\n",
      "          'present': 2,\n",
      "          'buy': 2,\n",
      "          'plot': 2,\n",
      "          'people': 2,\n",
      "          'would': 2,\n",
      "          'family': 2,\n",
      "          'kids': 2,\n",
      "          'nfrequency': 2,\n",
      "          'also': 2,\n",
      "          'nboth': 2,\n",
      "          'change': 2,\n",
      "          'scene': 2,\n",
      "          'story': 2,\n",
      "          'end': 2,\n",
      "          'think': 2,\n",
      "          'times': 1,\n",
      "          'phenomenon': 1,\n",
      "          'occurs': 1,\n",
      "          'within': 1,\n",
      "          'interval': 1,\n",
      "          'repetitions': 1,\n",
      "          'complete': 1,\n",
      "          'sequence': 1,\n",
      "          'values': 1,\n",
      "          'periodic': 1,\n",
      "          'function': 1,\n",
      "          'per': 1,\n",
      "          'unit': 1,\n",
      "          'variation': 1,\n",
      "          'independent': 1,\n",
      "          'variable': 1,\n",
      "          'etc': 1,\n",
      "          'ndont': 1,\n",
      "          'worry': 1,\n",
      "          'watching': 1,\n",
      "          'thriller': 1,\n",
      "          'wont': 1,\n",
      "          'heck': 1,\n",
      "          'means': 1,\n",
      "          'although': 1,\n",
      "          'sound': 1,\n",
      "          'complex': 1,\n",
      "          'basic': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'na': 1,\n",
      "          'cop': 1,\n",
      "          'jim': 1,\n",
      "          'caviezel': 1,\n",
      "          'finds': 1,\n",
      "          'radio': 1,\n",
      "          'house': 1,\n",
      "          'allows': 1,\n",
      "          'communicate': 1,\n",
      "          'firefighter': 1,\n",
      "          'dennis': 1,\n",
      "          'quaid': 1,\n",
      "          'died': 1,\n",
      "          'nimmediately': 1,\n",
      "          'warns': 1,\n",
      "          'die': 1,\n",
      "          'trying': 1,\n",
      "          'fire': 1,\n",
      "          'abandoned': 1,\n",
      "          'warehouse': 1,\n",
      "          'takes': 1,\n",
      "          'advice': 1,\n",
      "          'survives': 1,\n",
      "          'accident': 1,\n",
      "          'supposed': 1,\n",
      "          'two': 1,\n",
      "          'eventually': 1,\n",
      "          'realize': 1,\n",
      "          'changing': 1,\n",
      "          'moment': 1,\n",
      "          'created': 1,\n",
      "          'whole': 1,\n",
      "          'murders': 1,\n",
      "          'johns': 1,\n",
      "          'mother': 1,\n",
      "          'nine': 1,\n",
      "          'women': 1,\n",
      "          'nit': 1,\n",
      "          'use': 1,\n",
      "          'special': 1,\n",
      "          'connection': 1,\n",
      "          'make': 1,\n",
      "          'time': 1,\n",
      "          'better': 1,\n",
      "          'place': 1,\n",
      "          'told': 1,\n",
      "          'confusing': 1,\n",
      "          'noverall': 1,\n",
      "          'pleased': 1,\n",
      "          'nits': 1,\n",
      "          'occasional': 1,\n",
      "          'sappy': 1,\n",
      "          'moments': 1,\n",
      "          'perfectly': 1,\n",
      "          'synchronized': 1,\n",
      "          'suspenseful': 1,\n",
      "          'scenes': 1,\n",
      "          'ni': 1,\n",
      "          'usually': 1,\n",
      "          'dont': 1,\n",
      "          'cheesy': 1,\n",
      "          'love': 1,\n",
      "          'dad': 1,\n",
      "          'segments': 1,\n",
      "          'movies': 1,\n",
      "          'surprisingly': 1,\n",
      "          'satisfied': 1,\n",
      "          'nmaybe': 1,\n",
      "          'creative': 1,\n",
      "          'universal': 1,\n",
      "          'believed': 1,\n",
      "          'act': 1,\n",
      "          'talking': 1,\n",
      "          'dead': 1,\n",
      "          'relative': 1,\n",
      "          'nfrequencys': 1,\n",
      "          'creepy': 1,\n",
      "          'left': 1,\n",
      "          'thinking': 1,\n",
      "          'ended': 1,\n",
      "          'nwhat': 1,\n",
      "          'nwould': 1,\n",
      "          'help': 1,\n",
      "          'historical': 1,\n",
      "          'figure': 1,\n",
      "          'assasinated': 1,\n",
      "          'shooting': 1,\n",
      "          'stock': 1,\n",
      "          'yahoo': 1,\n",
      "          'character': 1,\n",
      "          'latter': 1,\n",
      "          'humorous': 1,\n",
      "          'consequences': 1,\n",
      "          'reminded': 1,\n",
      "          'fantastic': 1,\n",
      "          'back': 1,\n",
      "          'share': 1,\n",
      "          'slightly': 1,\n",
      "          'youll': 1,\n",
      "          'heavily': 1,\n",
      "          'warning': 1,\n",
      "          'changes': 1,\n",
      "          'different': 1,\n",
      "          'newspaper': 1,\n",
      "          'headlines': 1,\n",
      "          'disappearing': 1,\n",
      "          'reappearing': 1,\n",
      "          'photographs': 1,\n",
      "          'similar': 1,\n",
      "          'wonderful': 1,\n",
      "          'feelgood': 1,\n",
      "          'films': 1,\n",
      "          'attract': 1,\n",
      "          'generations': 1,\n",
      "          'difference': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          'frequencys': 1,\n",
      "          'final': 1,\n",
      "          'doesnt': 1,\n",
      "          'set': 1,\n",
      "          'possibility': 1,\n",
      "          'lucrative': 1,\n",
      "          'sequel': 1,\n",
      "          'already': 1,\n",
      "          'making': 1,\n",
      "          'nthere': 1,\n",
      "          'problems': 1,\n",
      "          'though': 1,\n",
      "          'nfirst': 1,\n",
      "          'major': 1,\n",
      "          'flaw': 1,\n",
      "          'towards': 1,\n",
      "          'somewhat': 1,\n",
      "          'distracting': 1,\n",
      "          'email': 1,\n",
      "          'seen': 1,\n",
      "          'want': 1,\n",
      "          'must': 1,\n",
      "          'confused': 1,\n",
      "          'even': 1,\n",
      "          'filmmakers': 1,\n",
      "          'frequently': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'switch': 1,\n",
      "          '1969': 1,\n",
      "          '1999': 1,\n",
      "          'telling': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'noah': 1,\n",
      "          'emmerich': 1,\n",
      "          'andre': 1,\n",
      "          'braugher': 1,\n",
      "          'underused': 1,\n",
      "          'nwhile': 1,\n",
      "          'enough': 1,\n",
      "          'aforementioned': 1,\n",
      "          'actors': 1,\n",
      "          'steal': 1,\n",
      "          'every': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'pleasant': 1,\n",
      "          'surprise': 1,\n",
      "          'audience': 1,\n",
      "          'saw': 1,\n",
      "          'cheered': 1,\n",
      "          'neven': 1,\n",
      "          'going': 1,\n",
      "          'happen': 1,\n",
      "          'preview': 1,\n",
      "          'ruined': 1,\n",
      "          'like': 1,\n",
      "          'almost': 1,\n",
      "          'check': 1,\n",
      "          'nyou': 1,\n",
      "          'surprised': 1,\n",
      "          'well': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'suspiria': 6,\n",
      "          'argentos': 5,\n",
      "          'film': 5,\n",
      "          'nthe': 5,\n",
      "          'argento': 4,\n",
      "          'one': 4,\n",
      "          'na': 3,\n",
      "          'italian': 3,\n",
      "          'always': 3,\n",
      "          'well': 3,\n",
      "          'ballet': 3,\n",
      "          'school': 3,\n",
      "          'harper': 3,\n",
      "          'quite': 3,\n",
      "          'example': 3,\n",
      "          'psycho': 2,\n",
      "          'like': 2,\n",
      "          'comes': 2,\n",
      "          'horror': 2,\n",
      "          'director': 2,\n",
      "          'dario': 2,\n",
      "          'nwhat': 2,\n",
      "          'directorial': 2,\n",
      "          'flair': 2,\n",
      "          'better': 2,\n",
      "          'nfortunately': 2,\n",
      "          'de': 2,\n",
      "          'films': 2,\n",
      "          'major': 2,\n",
      "          'sequence': 2,\n",
      "          'intensity': 2,\n",
      "          'scene': 2,\n",
      "          'baroque': 2,\n",
      "          'gore': 2,\n",
      "          'gothic': 2,\n",
      "          'else': 2,\n",
      "          'minutes': 2,\n",
      "          'played': 2,\n",
      "          'would': 2,\n",
      "          'thats': 2,\n",
      "          'english': 2,\n",
      "          'actors': 2,\n",
      "          'nand': 2,\n",
      "          'soundtrack': 2,\n",
      "          'use': 2,\n",
      "          'music': 2,\n",
      "          'overall': 2,\n",
      "          'superb': 2,\n",
      "          'also': 2,\n",
      "          'bassan': 2,\n",
      "          'meets': 1,\n",
      "          'exorcist': 1,\n",
      "          'holds': 1,\n",
      "          'barred': 1,\n",
      "          'blurb': 1,\n",
      "          'sounds': 1,\n",
      "          'desperate': 1,\n",
      "          'publicity': 1,\n",
      "          'low': 1,\n",
      "          'budget': 1,\n",
      "          'third': 1,\n",
      "          'rate': 1,\n",
      "          'ripoff': 1,\n",
      "          'nbut': 1,\n",
      "          'tacky': 1,\n",
      "          'plug': 1,\n",
      "          'poster': 1,\n",
      "          'perhaps': 1,\n",
      "          'consistently': 1,\n",
      "          'successful': 1,\n",
      "          'impresses': 1,\n",
      "          'rewatching': 1,\n",
      "          'surrealistic': 1,\n",
      "          'supernatural': 1,\n",
      "          'thriller': 1,\n",
      "          'stylish': 1,\n",
      "          'visuals': 1,\n",
      "          'matched': 1,\n",
      "          'nearfully': 1,\n",
      "          'coherent': 1,\n",
      "          'narrative': 1,\n",
      "          'nscreenplays': 1,\n",
      "          'achilles': 1,\n",
      "          'heel': 1,\n",
      "          'confusing': 1,\n",
      "          'subplots': 1,\n",
      "          'gaping': 1,\n",
      "          'holes': 1,\n",
      "          'totally': 1,\n",
      "          'illogical': 1,\n",
      "          'incidents': 1,\n",
      "          'reactions': 1,\n",
      "          'nno': 1,\n",
      "          'question': 1,\n",
      "          'writer': 1,\n",
      "          'gets': 1,\n",
      "          'plotting': 1,\n",
      "          'pretty': 1,\n",
      "          'right': 1,\n",
      "          'taking': 1,\n",
      "          'cue': 1,\n",
      "          'book': 1,\n",
      "          'thomas': 1,\n",
      "          'quincey': 1,\n",
      "          'called': 1,\n",
      "          'profundis': 1,\n",
      "          'storyline': 1,\n",
      "          'suffers': 1,\n",
      "          'lapses': 1,\n",
      "          'logic': 1,\n",
      "          'provided': 1,\n",
      "          'accept': 1,\n",
      "          'premise': 1,\n",
      "          'front': 1,\n",
      "          'coven': 1,\n",
      "          'witches': 1,\n",
      "          'njessica': 1,\n",
      "          'plays': 1,\n",
      "          'american': 1,\n",
      "          'travels': 1,\n",
      "          'germany': 1,\n",
      "          'studies': 1,\n",
      "          'dance': 1,\n",
      "          'narriving': 1,\n",
      "          'late': 1,\n",
      "          'night': 1,\n",
      "          'driving': 1,\n",
      "          'rain': 1,\n",
      "          'sees': 1,\n",
      "          'girl': 1,\n",
      "          'leave': 1,\n",
      "          'run': 1,\n",
      "          'storm': 1,\n",
      "          'clearly': 1,\n",
      "          'distressed': 1,\n",
      "          'state': 1,\n",
      "          'happens': 1,\n",
      "          'next': 1,\n",
      "          'dont': 1,\n",
      "          'make': 1,\n",
      "          'comparison': 1,\n",
      "          'lightly': 1,\n",
      "          'murder': 1,\n",
      "          'shock': 1,\n",
      "          'value': 1,\n",
      "          'sheer': 1,\n",
      "          'ranks': 1,\n",
      "          'alongside': 1,\n",
      "          'alfred': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'infamous': 1,\n",
      "          'shower': 1,\n",
      "          'nits': 1,\n",
      "          'possibly': 1,\n",
      "          'homage': 1,\n",
      "          'hitchcock': 1,\n",
      "          'sets': 1,\n",
      "          'graphic': 1,\n",
      "          'brilliantly': 1,\n",
      "          'chaotic': 1,\n",
      "          'musical': 1,\n",
      "          'accompaniment': 1,\n",
      "          'rock': 1,\n",
      "          'group': 1,\n",
      "          'goblin': 1,\n",
      "          'stunning': 1,\n",
      "          'remains': 1,\n",
      "          'much': 1,\n",
      "          'nthough': 1,\n",
      "          'nothing': 1,\n",
      "          'equals': 1,\n",
      "          'suspirias': 1,\n",
      "          'opening': 1,\n",
      "          '15': 1,\n",
      "          'continues': 1,\n",
      "          'never': 1,\n",
      "          'anything': 1,\n",
      "          'less': 1,\n",
      "          'engrossing': 1,\n",
      "          'begins': 1,\n",
      "          'investigations': 1,\n",
      "          'slowly': 1,\n",
      "          'realise': 1,\n",
      "          'ordinary': 1,\n",
      "          'nwe': 1,\n",
      "          'meet': 1,\n",
      "          'assortment': 1,\n",
      "          'slightly': 1,\n",
      "          'sinister': 1,\n",
      "          'characters': 1,\n",
      "          'notably': 1,\n",
      "          'head': 1,\n",
      "          'teacher': 1,\n",
      "          'alida': 1,\n",
      "          'valli': 1,\n",
      "          'another': 1,\n",
      "          'delicious': 1,\n",
      "          'souroldmatriarchfromhell': 1,\n",
      "          'roles': 1,\n",
      "          'nseveral': 1,\n",
      "          'violent': 1,\n",
      "          'murders': 1,\n",
      "          'ensue': 1,\n",
      "          'including': 1,\n",
      "          'startling': 1,\n",
      "          'deserted': 1,\n",
      "          'square': 1,\n",
      "          'blind': 1,\n",
      "          'man': 1,\n",
      "          'wouldnt': 1,\n",
      "          'want': 1,\n",
      "          'spoil': 1,\n",
      "          'things': 1,\n",
      "          'climax': 1,\n",
      "          'staged': 1,\n",
      "          'amid': 1,\n",
      "          'secret': 1,\n",
      "          'corridors': 1,\n",
      "          'hidden': 1,\n",
      "          'rooms': 1,\n",
      "          'ghoulishness': 1,\n",
      "          'impressive': 1,\n",
      "          'language': 1,\n",
      "          'versions': 1,\n",
      "          'movies': 1,\n",
      "          'usually': 1,\n",
      "          'suffer': 1,\n",
      "          'trimming': 1,\n",
      "          'violence': 1,\n",
      "          'deep': 1,\n",
      "          'red': 1,\n",
      "          'phenomena': 1,\n",
      "          'appallingly': 1,\n",
      "          'hacked': 1,\n",
      "          'cuts': 1,\n",
      "          '7': 1,\n",
      "          'version': 1,\n",
      "          'adversely': 1,\n",
      "          'affected': 1,\n",
      "          'dubbing': 1,\n",
      "          'competently': 1,\n",
      "          'done': 1,\n",
      "          'excepting': 1,\n",
      "          'appalling': 1,\n",
      "          'unintentionally': 1,\n",
      "          'hilarious': 1,\n",
      "          'effort': 1,\n",
      "          'conversation': 1,\n",
      "          'professor': 1,\n",
      "          'history': 1,\n",
      "          'witchcraft': 1,\n",
      "          'region': 1,\n",
      "          'nit': 1,\n",
      "          'interesting': 1,\n",
      "          'imagine': 1,\n",
      "          'power': 1,\n",
      "          'lost': 1,\n",
      "          'scored': 1,\n",
      "          'someone': 1,\n",
      "          'nas': 1,\n",
      "          'stands': 1,\n",
      "          'goblins': 1,\n",
      "          'outstanding': 1,\n",
      "          'napparently': 1,\n",
      "          'location': 1,\n",
      "          'filming': 1,\n",
      "          'could': 1,\n",
      "          'hear': 1,\n",
      "          'acted': 1,\n",
      "          'parts': 1,\n",
      "          'stereo': 1,\n",
      "          'video': 1,\n",
      "          'player': 1,\n",
      "          'adds': 1,\n",
      "          'greatly': 1,\n",
      "          'viewers': 1,\n",
      "          'experience': 1,\n",
      "          'neven': 1,\n",
      "          'see': 1,\n",
      "          'cinema': 1,\n",
      "          'youll': 1,\n",
      "          'get': 1,\n",
      "          'added': 1,\n",
      "          'bonus': 1,\n",
      "          'widescreen': 1,\n",
      "          'colours': 1,\n",
      "          'ndeep': 1,\n",
      "          'reds': 1,\n",
      "          'eerie': 1,\n",
      "          'blues': 1,\n",
      "          'shadow': 1,\n",
      "          'contrast': 1,\n",
      "          'cinematography': 1,\n",
      "          'luciano': 1,\n",
      "          'tovoli': 1,\n",
      "          'whose': 1,\n",
      "          'recent': 1,\n",
      "          'credits': 1,\n",
      "          'include': 1,\n",
      "          'reversal': 1,\n",
      "          'fortune': 1,\n",
      "          'single': 1,\n",
      "          'white': 1,\n",
      "          'female': 1,\n",
      "          'uniformly': 1,\n",
      "          'nod': 1,\n",
      "          'must': 1,\n",
      "          'go': 1,\n",
      "          'production': 1,\n",
      "          'designer': 1,\n",
      "          'giuseppe': 1,\n",
      "          'wonderful': 1,\n",
      "          'interiors': 1,\n",
      "          'nthese': 1,\n",
      "          'kinds': 1,\n",
      "          'settings': 1,\n",
      "          'crucial': 1,\n",
      "          'atmosphere': 1,\n",
      "          'surreal': 1,\n",
      "          'excursions': 1,\n",
      "          'notable': 1,\n",
      "          'inferno': 1,\n",
      "          '1980': 1,\n",
      "          'worked': 1,\n",
      "          'nsuspiria': 1,\n",
      "          'broke': 1,\n",
      "          'league': 1,\n",
      "          'european': 1,\n",
      "          'directors': 1,\n",
      "          'fully': 1,\n",
      "          'deserving': 1,\n",
      "          'cult': 1,\n",
      "          'status': 1,\n",
      "          'times': 1,\n",
      "          'little': 1,\n",
      "          'excessive': 1,\n",
      "          'overstated': 1,\n",
      "          'shortcomings': 1,\n",
      "          'fascinating': 1,\n",
      "          'compelling': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jackie': 16,\n",
      "          'film': 12,\n",
      "          'ordell': 10,\n",
      "          'one': 6,\n",
      "          'get': 6,\n",
      "          'brown': 5,\n",
      "          'tarantino': 5,\n",
      "          'money': 5,\n",
      "          'us': 5,\n",
      "          'really': 5,\n",
      "          'since': 4,\n",
      "          'scene': 4,\n",
      "          'max': 4,\n",
      "          'de': 4,\n",
      "          'niro': 4,\n",
      "          'little': 3,\n",
      "          'nthis': 3,\n",
      "          'also': 3,\n",
      "          'njackie': 3,\n",
      "          'back': 3,\n",
      "          'makes': 3,\n",
      "          'gun': 3,\n",
      "          'nhowever': 3,\n",
      "          'bringing': 3,\n",
      "          'time': 3,\n",
      "          'ordells': 3,\n",
      "          'deal': 3,\n",
      "          'think': 3,\n",
      "          'actually': 3,\n",
      "          'many': 3,\n",
      "          'even': 3,\n",
      "          'see': 3,\n",
      "          'nin': 3,\n",
      "          'looking': 3,\n",
      "          'say': 2,\n",
      "          'four': 2,\n",
      "          'last': 2,\n",
      "          'silver': 2,\n",
      "          'surfer': 2,\n",
      "          'screen': 2,\n",
      "          'never': 2,\n",
      "          'years': 2,\n",
      "          'making': 2,\n",
      "          'nthe': 2,\n",
      "          'grier': 2,\n",
      "          'cabo': 2,\n",
      "          'cash': 2,\n",
      "          'courier': 2,\n",
      "          'l': 2,\n",
      "          'jackson': 2,\n",
      "          'mexico': 2,\n",
      "          'dollars': 2,\n",
      "          'agent': 2,\n",
      "          'dargus': 2,\n",
      "          'michael': 2,\n",
      "          'nicolet': 2,\n",
      "          'couple': 2,\n",
      "          'know': 2,\n",
      "          'thats': 2,\n",
      "          'course': 2,\n",
      "          'using': 2,\n",
      "          'turn': 2,\n",
      "          'honest': 2,\n",
      "          'robert': 2,\n",
      "          'forster': 2,\n",
      "          'enough': 2,\n",
      "          'apartment': 2,\n",
      "          'ninstead': 2,\n",
      "          'head': 2,\n",
      "          'might': 2,\n",
      "          'interesting': 2,\n",
      "          'attention': 2,\n",
      "          'shes': 2,\n",
      "          'well': 2,\n",
      "          'way': 2,\n",
      "          'around': 2,\n",
      "          'movies': 2,\n",
      "          'least': 2,\n",
      "          'plays': 2,\n",
      "          'character': 2,\n",
      "          'comes': 2,\n",
      "          'simply': 2,\n",
      "          'nature': 2,\n",
      "          'louis': 2,\n",
      "          'melanie': 2,\n",
      "          'lines': 2,\n",
      "          'hes': 2,\n",
      "          'much': 2,\n",
      "          'hand': 2,\n",
      "          'whats': 2,\n",
      "          'going': 2,\n",
      "          'nwe': 2,\n",
      "          'idea': 2,\n",
      "          'follow': 2,\n",
      "          'something': 2,\n",
      "          'entered': 1,\n",
      "          'theaters': 1,\n",
      "          'fanfare': 1,\n",
      "          'lot': 1,\n",
      "          'expectation': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'advance': 1,\n",
      "          'publicity': 1,\n",
      "          'fairly': 1,\n",
      "          'limited': 1,\n",
      "          'audiences': 1,\n",
      "          'waited': 1,\n",
      "          'showings': 1,\n",
      "          'heightened': 1,\n",
      "          'anticipation': 1,\n",
      "          'first': 1,\n",
      "          'movie': 1,\n",
      "          'quentin': 1,\n",
      "          'directed': 1,\n",
      "          'highly': 1,\n",
      "          'touted': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'nto': 1,\n",
      "          'inactive': 1,\n",
      "          'would': 1,\n",
      "          'tell': 1,\n",
      "          'falsehood': 1,\n",
      "          'involved': 1,\n",
      "          'projects': 1,\n",
      "          'destiny': 1,\n",
      "          'turns': 1,\n",
      "          'radio': 1,\n",
      "          'desperado': 1,\n",
      "          'rooms': 1,\n",
      "          'dusk': 1,\n",
      "          'til': 1,\n",
      "          'dawn': 1,\n",
      "          'nhe': 1,\n",
      "          'called': 1,\n",
      "          'minute': 1,\n",
      "          'help': 1,\n",
      "          'punch': 1,\n",
      "          'screenplay': 1,\n",
      "          'crimson': 1,\n",
      "          'tide': 1,\n",
      "          'n': 1,\n",
      "          'im': 1,\n",
      "          'willing': 1,\n",
      "          'wager': 1,\n",
      "          'debate': 1,\n",
      "          'true': 1,\n",
      "          'penned': 1,\n",
      "          'ntarantino': 1,\n",
      "          'contributed': 1,\n",
      "          'films': 1,\n",
      "          'took': 1,\n",
      "          'directors': 1,\n",
      "          'helm': 1,\n",
      "          'nnearly': 1,\n",
      "          'gaining': 1,\n",
      "          'notoriety': 1,\n",
      "          'hollywood': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'star': 1,\n",
      "          'returns': 1,\n",
      "          'call': 1,\n",
      "          'opens': 1,\n",
      "          'homage': 1,\n",
      "          'graduate': 1,\n",
      "          'pam': 1,\n",
      "          'airport': 1,\n",
      "          'people': 1,\n",
      "          'movers': 1,\n",
      "          'credits': 1,\n",
      "          'displayed': 1,\n",
      "          'front': 1,\n",
      "          'flight': 1,\n",
      "          'attendant': 1,\n",
      "          'air': 1,\n",
      "          'flies': 1,\n",
      "          'fourth': 1,\n",
      "          'los': 1,\n",
      "          'angeles': 1,\n",
      "          'san': 1,\n",
      "          'lucas': 1,\n",
      "          'convenient': 1,\n",
      "          'dealer': 1,\n",
      "          'robbi': 1,\n",
      "          'samuel': 1,\n",
      "          'currently': 1,\n",
      "          'keeping': 1,\n",
      "          'stashed': 1,\n",
      "          'fifty': 1,\n",
      "          'thousand': 1,\n",
      "          'u': 1,\n",
      "          'apprehended': 1,\n",
      "          'fbi': 1,\n",
      "          'mark': 1,\n",
      "          'bowen': 1,\n",
      "          'atf': 1,\n",
      "          'ray': 1,\n",
      "          'keaton': 1,\n",
      "          'catch': 1,\n",
      "          'bonus': 1,\n",
      "          'ounces': 1,\n",
      "          'illicit': 1,\n",
      "          'drugs': 1,\n",
      "          'didnt': 1,\n",
      "          'package': 1,\n",
      "          'consequence': 1,\n",
      "          'authorities': 1,\n",
      "          'threaten': 1,\n",
      "          'hard': 1,\n",
      "          'convicted': 1,\n",
      "          'nof': 1,\n",
      "          'sentence': 1,\n",
      "          'big': 1,\n",
      "          'fish': 1,\n",
      "          'nordell': 1,\n",
      "          'uses': 1,\n",
      "          'bail': 1,\n",
      "          'bondsman': 1,\n",
      "          'cherry': 1,\n",
      "          'jail': 1,\n",
      "          'immediately': 1,\n",
      "          'attracted': 1,\n",
      "          'concerned': 1,\n",
      "          'immediate': 1,\n",
      "          'safety': 1,\n",
      "          'killed': 1,\n",
      "          'operatives': 1,\n",
      "          'got': 1,\n",
      "          'picked': 1,\n",
      "          'police': 1,\n",
      "          'nsure': 1,\n",
      "          'shows': 1,\n",
      "          'jackies': 1,\n",
      "          'evening': 1,\n",
      "          'tries': 1,\n",
      "          'silence': 1,\n",
      "          'good': 1,\n",
      "          'borrows': 1,\n",
      "          'maxs': 1,\n",
      "          'pistol': 1,\n",
      "          'manages': 1,\n",
      "          'tables': 1,\n",
      "          'closing': 1,\n",
      "          'irony': 1,\n",
      "          'circle': 1,\n",
      "          'relocating': 1,\n",
      "          'bullet': 1,\n",
      "          'pistols': 1,\n",
      "          'chamber': 1,\n",
      "          'proposes': 1,\n",
      "          'nsince': 1,\n",
      "          'wants': 1,\n",
      "          'old': 1,\n",
      "          'tricks': 1,\n",
      "          'substantial': 1,\n",
      "          'fee': 1,\n",
      "          'fifteen': 1,\n",
      "          'percent': 1,\n",
      "          'half': 1,\n",
      "          'million': 1,\n",
      "          'nwith': 1,\n",
      "          'face': 1,\n",
      "          'agree': 1,\n",
      "          'nby': 1,\n",
      "          'premise': 1,\n",
      "          'carry': 1,\n",
      "          'introduced': 1,\n",
      "          'number': 1,\n",
      "          'double': 1,\n",
      "          'crosses': 1,\n",
      "          'make': 1,\n",
      "          'pay': 1,\n",
      "          'claims': 1,\n",
      "          'feds': 1,\n",
      "          'throws': 1,\n",
      "          'every': 1,\n",
      "          'leading': 1,\n",
      "          'believe': 1,\n",
      "          'thought': 1,\n",
      "          'authentic': 1,\n",
      "          'sham': 1,\n",
      "          'done': 1,\n",
      "          'extent': 1,\n",
      "          'feel': 1,\n",
      "          'jerked': 1,\n",
      "          'nice': 1,\n",
      "          'departure': 1,\n",
      "          'predictability': 1,\n",
      "          'prevalent': 1,\n",
      "          'todays': 1,\n",
      "          'nat': 1,\n",
      "          'imagination': 1,\n",
      "          'nmost': 1,\n",
      "          'performances': 1,\n",
      "          'par': 1,\n",
      "          'npam': 1,\n",
      "          'taken': 1,\n",
      "          'notice': 1,\n",
      "          'mix': 1,\n",
      "          'confidence': 1,\n",
      "          'vulnerability': 1,\n",
      "          'believable': 1,\n",
      "          'nsamuel': 1,\n",
      "          'kind': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'quality': 1,\n",
      "          'handles': 1,\n",
      "          'situations': 1,\n",
      "          'total': 1,\n",
      "          'control': 1,\n",
      "          'nrobert': 1,\n",
      "          'thoroughly': 1,\n",
      "          'likable': 1,\n",
      "          'across': 1,\n",
      "          'guy': 1,\n",
      "          'trying': 1,\n",
      "          'best': 1,\n",
      "          'nnever': 1,\n",
      "          'mind': 1,\n",
      "          'belongs': 1,\n",
      "          'profession': 1,\n",
      "          'sneaking': 1,\n",
      "          'guys': 1,\n",
      "          'zap': 1,\n",
      "          'stun': 1,\n",
      "          'matter': 1,\n",
      "          'nhes': 1,\n",
      "          'downtoearth': 1,\n",
      "          'job': 1,\n",
      "          'doesnt': 1,\n",
      "          'occur': 1,\n",
      "          'shown': 1,\n",
      "          'handcuffed': 1,\n",
      "          'woman': 1,\n",
      "          'prison': 1,\n",
      "          'tools': 1,\n",
      "          'trade': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'gara': 1,\n",
      "          'recently': 1,\n",
      "          'paroled': 1,\n",
      "          'friend': 1,\n",
      "          'bridget': 1,\n",
      "          'fonda': 1,\n",
      "          'girls': 1,\n",
      "          'keeps': 1,\n",
      "          'town': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'basically': 1,\n",
      "          'wasted': 1,\n",
      "          'far': 1,\n",
      "          'mostly': 1,\n",
      "          'clipped': 1,\n",
      "          'sentences': 1,\n",
      "          'stereotypical': 1,\n",
      "          'uttering': 1,\n",
      "          'things': 1,\n",
      "          'like': 1,\n",
      "          'bit': 1,\n",
      "          'pretty': 1,\n",
      "          'nfonda': 1,\n",
      "          'slightly': 1,\n",
      "          'spacedout': 1,\n",
      "          'satisfactory': 1,\n",
      "          'relish': 1,\n",
      "          'cuteness': 1,\n",
      "          'annoying': 1,\n",
      "          'taking': 1,\n",
      "          'side': 1,\n",
      "          'nas': 1,\n",
      "          'characteristic': 1,\n",
      "          'dialog': 1,\n",
      "          'quick': 1,\n",
      "          'snappy': 1,\n",
      "          'nit': 1,\n",
      "          'grabs': 1,\n",
      "          'respects': 1,\n",
      "          'needs': 1,\n",
      "          'visuals': 1,\n",
      "          'form': 1,\n",
      "          'art': 1,\n",
      "          'amongst': 1,\n",
      "          'ndont': 1,\n",
      "          'count': 1,\n",
      "          'camera': 1,\n",
      "          'however': 1,\n",
      "          'ntheres': 1,\n",
      "          'unwittingly': 1,\n",
      "          'watching': 1,\n",
      "          'dry': 1,\n",
      "          'run': 1,\n",
      "          'exchange': 1,\n",
      "          'sure': 1,\n",
      "          'happening': 1,\n",
      "          'composing': 1,\n",
      "          'realization': 1,\n",
      "          'felt': 1,\n",
      "          'simultaneously': 1,\n",
      "          'audience': 1,\n",
      "          'look': 1,\n",
      "          'gee': 1,\n",
      "          'clever': 1,\n",
      "          'thing': 1,\n",
      "          'induced': 1,\n",
      "          'wonderful': 1,\n",
      "          'feeling': 1,\n",
      "          'catching': 1,\n",
      "          'nalthough': 1,\n",
      "          'isnt': 1,\n",
      "          'afraid': 1,\n",
      "          'drag': 1,\n",
      "          'shot': 1,\n",
      "          'dramatic': 1,\n",
      "          'effect': 1,\n",
      "          'unfortunately': 1,\n",
      "          'works': 1,\n",
      "          'varying': 1,\n",
      "          'degrees': 1,\n",
      "          'nthere': 1,\n",
      "          'shots': 1,\n",
      "          'driving': 1,\n",
      "          'watch': 1,\n",
      "          'person': 1,\n",
      "          'somehow': 1,\n",
      "          'tribute': 1,\n",
      "          'direction': 1,\n",
      "          'acting': 1,\n",
      "          'mall': 1,\n",
      "          'desperately': 1,\n",
      "          'frantic': 1,\n",
      "          'search': 1,\n",
      "          'long': 1,\n",
      "          'end': 1,\n",
      "          'caring': 1,\n",
      "          'instead': 1,\n",
      "          'hoping': 1,\n",
      "          'shell': 1,\n",
      "          'stop': 1,\n",
      "          'noverall': 1,\n",
      "          'viewing': 1,\n",
      "          'spent': 1,\n",
      "          'nsome': 1,\n",
      "          'flap': 1,\n",
      "          'already': 1,\n",
      "          'made': 1,\n",
      "          'language': 1,\n",
      "          'used': 1,\n",
      "          'worse': 1,\n",
      "          'today': 1,\n",
      "          'fact': 1,\n",
      "          'able': 1,\n",
      "          'offensive': 1,\n",
      "          'words': 1,\n",
      "          'employed': 1,\n",
      "          'almost': 1,\n",
      "          'cause': 1,\n",
      "          'parody': 1,\n",
      "          'therefore': 1,\n",
      "          'transcend': 1,\n",
      "          'offensiveness': 1,\n",
      "          'ngo': 1,\n",
      "          'mean': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'fantasia': 7,\n",
      "          '2000': 5,\n",
      "          'images': 4,\n",
      "          'james': 3,\n",
      "          'paul': 3,\n",
      "          'released': 3,\n",
      "          'music': 3,\n",
      "          'program': 3,\n",
      "          'new': 3,\n",
      "          'original': 3,\n",
      "          'segment': 3,\n",
      "          'levine': 2,\n",
      "          'george': 2,\n",
      "          'camille': 2,\n",
      "          'saintsaens': 2,\n",
      "          'dukas': 2,\n",
      "          'sir': 2,\n",
      "          'edward': 2,\n",
      "          'elgar': 2,\n",
      "          'igor': 2,\n",
      "          '1': 2,\n",
      "          'disney': 2,\n",
      "          'nfantasia': 2,\n",
      "          'two': 2,\n",
      "          'art': 2,\n",
      "          'animation': 2,\n",
      "          'something': 2,\n",
      "          'nit': 2,\n",
      "          'old': 2,\n",
      "          'shorter': 2,\n",
      "          'audience': 2,\n",
      "          'short': 2,\n",
      "          'theaters': 2,\n",
      "          'nthere': 2,\n",
      "          'enough': 2,\n",
      "          'people': 2,\n",
      "          'story': 2,\n",
      "          'animals': 2,\n",
      "          'playing': 2,\n",
      "          'also': 2,\n",
      "          'positive': 2,\n",
      "          'upon': 2,\n",
      "          'tell': 2,\n",
      "          'nbut': 2,\n",
      "          'directed': 1,\n",
      "          'pixote': 1,\n",
      "          'hunt': 1,\n",
      "          'hendel': 1,\n",
      "          'butoy': 1,\n",
      "          'eric': 1,\n",
      "          'goldberg': 1,\n",
      "          'algar': 1,\n",
      "          'francis': 1,\n",
      "          'glebas': 1,\n",
      "          'gaetan': 1,\n",
      "          'brizzi': 1,\n",
      "          'conducted': 1,\n",
      "          'composed': 1,\n",
      "          'ludwig': 1,\n",
      "          'van': 1,\n",
      "          'beethoven': 1,\n",
      "          'ottorino': 1,\n",
      "          'respighi': 1,\n",
      "          'gershwin': 1,\n",
      "          'dmitri': 1,\n",
      "          'shostakovich': 1,\n",
      "          'stravinsky': 1,\n",
      "          'rated': 1,\n",
      "          'g': 1,\n",
      "          'scripture': 1,\n",
      "          'references': 1,\n",
      "          'samuel': 1,\n",
      "          '16': 1,\n",
      "          '23': 1,\n",
      "          'ephesians': 1,\n",
      "          '5': 1,\n",
      "          '19': 1,\n",
      "          'chronicles': 1,\n",
      "          '15': 1,\n",
      "          '1516': 1,\n",
      "          'nin': 1,\n",
      "          '1940': 1,\n",
      "          'walt': 1,\n",
      "          'filmed': 1,\n",
      "          'experiment': 1,\n",
      "          'blend': 1,\n",
      "          'forms': 1,\n",
      "          'classical': 1,\n",
      "          'nwhile': 1,\n",
      "          'immediately': 1,\n",
      "          'popular': 1,\n",
      "          'audiences': 1,\n",
      "          'day': 1,\n",
      "          'since': 1,\n",
      "          'become': 1,\n",
      "          'recognized': 1,\n",
      "          'classic': 1,\n",
      "          'naccording': 1,\n",
      "          'notes': 1,\n",
      "          'mr': 1,\n",
      "          'disneys': 1,\n",
      "          'intention': 1,\n",
      "          'continual': 1,\n",
      "          'work': 1,\n",
      "          'progress': 1,\n",
      "          'nsixty': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'thanks': 1,\n",
      "          'ongoing': 1,\n",
      "          'efforts': 1,\n",
      "          'walts': 1,\n",
      "          'nephew': 1,\n",
      "          'worth': 1,\n",
      "          'waiting': 1,\n",
      "          'evidence': 1,\n",
      "          'far': 1,\n",
      "          'come': 1,\n",
      "          'past': 1,\n",
      "          'halfdecade': 1,\n",
      "          'nwith': 1,\n",
      "          'seven': 1,\n",
      "          'sequences': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'one': 1,\n",
      "          'favorite': 1,\n",
      "          'exhibits': 1,\n",
      "          'imagination': 1,\n",
      "          'respect': 1,\n",
      "          'form': 1,\n",
      "          'absent': 1,\n",
      "          'feature': 1,\n",
      "          'films': 1,\n",
      "          'nlike': 1,\n",
      "          'likely': 1,\n",
      "          'bore': 1,\n",
      "          'young': 1,\n",
      "          'although': 1,\n",
      "          'narrative': 1,\n",
      "          'appeal': 1,\n",
      "          'newer': 1,\n",
      "          'version': 1,\n",
      "          'segments': 1,\n",
      "          'appear': 1,\n",
      "          'substantially': 1,\n",
      "          'perhaps': 1,\n",
      "          'nod': 1,\n",
      "          'attention': 1,\n",
      "          'span': 1,\n",
      "          'studios': 1,\n",
      "          'primary': 1,\n",
      "          'nranging': 1,\n",
      "          'silly': 1,\n",
      "          'sublime': 1,\n",
      "          'preceded': 1,\n",
      "          'humorous': 1,\n",
      "          'introduction': 1,\n",
      "          'interstitial': 1,\n",
      "          'guest': 1,\n",
      "          'celebrity': 1,\n",
      "          'host': 1,\n",
      "          'steve': 1,\n",
      "          'martin': 1,\n",
      "          'bowfinger': 1,\n",
      "          'first': 1,\n",
      "          'effective': 1,\n",
      "          'nthese': 1,\n",
      "          'quickly': 1,\n",
      "          'forgotten': 1,\n",
      "          'conductor': 1,\n",
      "          'leads': 1,\n",
      "          'chicago': 1,\n",
      "          'symphony': 1,\n",
      "          'orchestra': 1,\n",
      "          'musical': 1,\n",
      "          'along': 1,\n",
      "          'drawn': 1,\n",
      "          'team': 1,\n",
      "          'animators': 1,\n",
      "          'thoughtfully': 1,\n",
      "          'beautifully': 1,\n",
      "          'brought': 1,\n",
      "          'stunning': 1,\n",
      "          'synthesis': 1,\n",
      "          'exclusively': 1,\n",
      "          'giantscreened': 1,\n",
      "          'imax': 1,\n",
      "          'making': 1,\n",
      "          'unique': 1,\n",
      "          'viewing': 1,\n",
      "          'experience': 1,\n",
      "          'variety': 1,\n",
      "          'provide': 1,\n",
      "          'enjoyable': 1,\n",
      "          'everyone': 1,\n",
      "          'surely': 1,\n",
      "          'exit': 1,\n",
      "          'personal': 1,\n",
      "          'favorites': 1,\n",
      "          'nfor': 1,\n",
      "          'would': 1,\n",
      "          'jazz': 1,\n",
      "          'age': 1,\n",
      "          'four': 1,\n",
      "          'unconnected': 1,\n",
      "          'discontented': 1,\n",
      "          'living': 1,\n",
      "          'nyc': 1,\n",
      "          'unknowingly': 1,\n",
      "          'help': 1,\n",
      "          'realize': 1,\n",
      "          'dreams': 1,\n",
      "          'ndrawn': 1,\n",
      "          'style': 1,\n",
      "          'caricaturist': 1,\n",
      "          'al': 1,\n",
      "          'hirschfeld': 1,\n",
      "          'inspired': 1,\n",
      "          'gershwins': 1,\n",
      "          'rhapsody': 1,\n",
      "          'blue': 1,\n",
      "          'blended': 1,\n",
      "          'perfectly': 1,\n",
      "          'resulting': 1,\n",
      "          'product': 1,\n",
      "          'greater': 1,\n",
      "          'sum': 1,\n",
      "          'parts': 1,\n",
      "          'nchildren': 1,\n",
      "          'like': 1,\n",
      "          'piece': 1,\n",
      "          'set': 1,\n",
      "          'carnival': 1,\n",
      "          'nhere': 1,\n",
      "          'goofy': 1,\n",
      "          'looking': 1,\n",
      "          'flamingo': 1,\n",
      "          'irritates': 1,\n",
      "          'rest': 1,\n",
      "          'flock': 1,\n",
      "          'yoyo': 1,\n",
      "          'antics': 1,\n",
      "          'nthey': 1,\n",
      "          'giggle': 1,\n",
      "          'donald': 1,\n",
      "          'duck': 1,\n",
      "          'noahs': 1,\n",
      "          'assistant': 1,\n",
      "          'tries': 1,\n",
      "          'load': 1,\n",
      "          'ark': 1,\n",
      "          'familiar': 1,\n",
      "          'strains': 1,\n",
      "          'pomp': 1,\n",
      "          'circumstance': 1,\n",
      "          'n': 1,\n",
      "          'depiction': 1,\n",
      "          'biblically': 1,\n",
      "          'accurate': 1,\n",
      "          'entertaining': 1,\n",
      "          'might': 1,\n",
      "          'excuse': 1,\n",
      "          'familiarize': 1,\n",
      "          'true': 1,\n",
      "          'record': 1,\n",
      "          'reading': 1,\n",
      "          'written': 1,\n",
      "          'genesis': 1,\n",
      "          '7': 1,\n",
      "          'na': 1,\n",
      "          'note': 1,\n",
      "          'studio': 1,\n",
      "          'avoided': 1,\n",
      "          'perversely': 1,\n",
      "          'dark': 1,\n",
      "          'nihgt': 1,\n",
      "          'bald': 1,\n",
      "          'mountain': 1,\n",
      "          'film': 1,\n",
      "          'ended': 1,\n",
      "          'based': 1,\n",
      "          'fantasy': 1,\n",
      "          'flying': 1,\n",
      "          'whales': 1,\n",
      "          'respighis': 1,\n",
      "          'pines': 1,\n",
      "          'rome': 1,\n",
      "          'roots': 1,\n",
      "          'mythology': 1,\n",
      "          'ethereal': 1,\n",
      "          'creatures': 1,\n",
      "          'natures': 1,\n",
      "          'cycle': 1,\n",
      "          'life': 1,\n",
      "          'death': 1,\n",
      "          'rebirth': 1,\n",
      "          'stravinskys': 1,\n",
      "          'firebird': 1,\n",
      "          'suite': 1,\n",
      "          'stories': 1,\n",
      "          'uplifting': 1,\n",
      "          'containing': 1,\n",
      "          'nothing': 1,\n",
      "          'frightening': 1,\n",
      "          'younger': 1,\n",
      "          'children': 1,\n",
      "          'nthe': 1,\n",
      "          'darkest': 1,\n",
      "          'spiritually': 1,\n",
      "          'speaking': 1,\n",
      "          'actually': 1,\n",
      "          'belongs': 1,\n",
      "          'holdover': 1,\n",
      "          'mickey': 1,\n",
      "          'mouse': 1,\n",
      "          'sorcerers': 1,\n",
      "          'apprentice': 1,\n",
      "          'overall': 1,\n",
      "          'emotions': 1,\n",
      "          'evoked': 1,\n",
      "          'ones': 1,\n",
      "          'full': 1,\n",
      "          'hope': 1,\n",
      "          'promise': 1,\n",
      "          'nmusic': 1,\n",
      "          'impact': 1,\n",
      "          'undeniably': 1,\n",
      "          'felt': 1,\n",
      "          'capable': 1,\n",
      "          'leading': 1,\n",
      "          'listener': 1,\n",
      "          'emotional': 1,\n",
      "          'peaks': 1,\n",
      "          'inspirational': 1,\n",
      "          'highs': 1,\n",
      "          'simply': 1,\n",
      "          'attainable': 1,\n",
      "          'mediums': 1,\n",
      "          'wonder': 1,\n",
      "          'levites': 1,\n",
      "          'priestly': 1,\n",
      "          'tribe': 1,\n",
      "          'testament': 1,\n",
      "          'appointed': 1,\n",
      "          'musicians': 1,\n",
      "          'nif': 1,\n",
      "          'able': 1,\n",
      "          'introduce': 1,\n",
      "          'inspires': 1,\n",
      "          'exalts': 1,\n",
      "          'done': 1,\n",
      "          'incredible': 1,\n",
      "          'service': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'little': 6,\n",
      "          'tree': 5,\n",
      "          'boy': 4,\n",
      "          'orphan': 3,\n",
      "          'grandpa': 3,\n",
      "          'grandma': 3,\n",
      "          'grandparents': 2,\n",
      "          'mountains': 2,\n",
      "          'native': 2,\n",
      "          'american': 2,\n",
      "          'film': 2,\n",
      "          'world': 2,\n",
      "          'tennessee': 2,\n",
      "          'wondrous': 2,\n",
      "          'learns': 2,\n",
      "          'nature': 2,\n",
      "          'life': 2,\n",
      "          'experiences': 2,\n",
      "          'people': 2,\n",
      "          'excellent': 2,\n",
      "          'family': 2,\n",
      "          'find': 2,\n",
      "          'ingredients': 1,\n",
      "          'rural': 1,\n",
      "          'lore': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'loving': 1,\n",
      "          'portrayal': 1,\n",
      "          'idyllic': 1,\n",
      "          'pivotal': 1,\n",
      "          'time': 1,\n",
      "          'young': 1,\n",
      "          'spends': 1,\n",
      "          'self': 1,\n",
      "          'recollections': 1,\n",
      "          'unseen': 1,\n",
      "          'narrator': 1,\n",
      "          'focus': 1,\n",
      "          'view': 1,\n",
      "          'learning': 1,\n",
      "          'heritage': 1,\n",
      "          'nthe': 1,\n",
      "          'setting': 1,\n",
      "          'first': 1,\n",
      "          'war': 1,\n",
      "          'great': 1,\n",
      "          'depression': 1,\n",
      "          'years': 1,\n",
      "          'na': 1,\n",
      "          'nineyearold': 1,\n",
      "          'named': 1,\n",
      "          'joseph': 1,\n",
      "          'ashton': 1,\n",
      "          'taken': 1,\n",
      "          'taught': 1,\n",
      "          'ways': 1,\n",
      "          'woods': 1,\n",
      "          'caucasian': 1,\n",
      "          'moonshiner': 1,\n",
      "          'james': 1,\n",
      "          'cromwell': 1,\n",
      "          'tantoo': 1,\n",
      "          'cardinal': 1,\n",
      "          'wilderness': 1,\n",
      "          'nhere': 1,\n",
      "          'almost': 1,\n",
      "          'magical': 1,\n",
      "          'appreciation': 1,\n",
      "          'farm': 1,\n",
      "          'beautiful': 1,\n",
      "          'things': 1,\n",
      "          'sunrise': 1,\n",
      "          'neverything': 1,\n",
      "          'miraculous': 1,\n",
      "          'child': 1,\n",
      "          'nbut': 1,\n",
      "          'comes': 1,\n",
      "          'crashing': 1,\n",
      "          'u': 1,\n",
      "          'government': 1,\n",
      "          'forcibly': 1,\n",
      "          'takes': 1,\n",
      "          'custody': 1,\n",
      "          'away': 1,\n",
      "          'forces': 1,\n",
      "          'attend': 1,\n",
      "          'notched': 1,\n",
      "          'gap': 1,\n",
      "          'boarding': 1,\n",
      "          'school': 1,\n",
      "          'kind': 1,\n",
      "          'internment': 1,\n",
      "          'camp': 1,\n",
      "          'multiracial': 1,\n",
      "          'cherokee': 1,\n",
      "          'kids': 1,\n",
      "          'indoctrinated': 1,\n",
      "          'dress': 1,\n",
      "          'pray': 1,\n",
      "          'speak': 1,\n",
      "          'think': 1,\n",
      "          'like': 1,\n",
      "          'white': 1,\n",
      "          'face': 1,\n",
      "          'solitary': 1,\n",
      "          'confinement': 1,\n",
      "          'corporeal': 1,\n",
      "          'punishment': 1,\n",
      "          'nthrough': 1,\n",
      "          'childhood': 1,\n",
      "          'lessons': 1,\n",
      "          'love': 1,\n",
      "          'race': 1,\n",
      "          'death': 1,\n",
      "          'folk': 1,\n",
      "          'wisdom': 1,\n",
      "          'nopinion': 1,\n",
      "          'movie': 1,\n",
      "          'nit': 1,\n",
      "          'one': 1,\n",
      "          'priceless': 1,\n",
      "          'screen': 1,\n",
      "          'gems': 1,\n",
      "          'nobody': 1,\n",
      "          'knows': 1,\n",
      "          'highly': 1,\n",
      "          'advertised': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'formula': 1,\n",
      "          'schlock': 1,\n",
      "          'cutesy': 1,\n",
      "          'characters': 1,\n",
      "          'canned': 1,\n",
      "          'spirituality': 1,\n",
      "          'sequel': 1,\n",
      "          'teasers': 1,\n",
      "          'commercial': 1,\n",
      "          'tie': 1,\n",
      "          'ins': 1,\n",
      "          'education': 1,\n",
      "          'refreshing': 1,\n",
      "          'impeccably': 1,\n",
      "          'acted': 1,\n",
      "          'original': 1,\n",
      "          'wonderful': 1,\n",
      "          'touching': 1,\n",
      "          'ntake': 1,\n",
      "          'whole': 1,\n",
      "          'bring': 1,\n",
      "          'box': 1,\n",
      "          'tissues': 1,\n",
      "          'tearjerkers': 1,\n",
      "          'nthis': 1,\n",
      "          'ones': 1,\n",
      "          'good': 1,\n",
      "          'old': 1,\n",
      "          'yeller': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 7,\n",
      "          'nthe': 7,\n",
      "          'disney': 5,\n",
      "          'mulan': 5,\n",
      "          'nothing': 3,\n",
      "          'family': 3,\n",
      "          'time': 3,\n",
      "          'nbut': 3,\n",
      "          'nmulan': 3,\n",
      "          'humor': 3,\n",
      "          'place': 2,\n",
      "          'animation': 2,\n",
      "          'nwhile': 2,\n",
      "          'singing': 2,\n",
      "          'doesnt': 2,\n",
      "          'customs': 2,\n",
      "          'man': 2,\n",
      "          'well': 2,\n",
      "          'story': 2,\n",
      "          'could': 2,\n",
      "          'good': 2,\n",
      "          'disneys': 2,\n",
      "          'songs': 2,\n",
      "          'death': 2,\n",
      "          'tradition': 2,\n",
      "          'cements': 1,\n",
      "          'forefront': 1,\n",
      "          'feature': 1,\n",
      "          'release': 1,\n",
      "          'latest': 1,\n",
      "          'animated': 1,\n",
      "          'adventure': 1,\n",
      "          'adheres': 1,\n",
      "          'bit': 1,\n",
      "          'close': 1,\n",
      "          'formula': 1,\n",
      "          'perfect': 1,\n",
      "          'nonetheless': 1,\n",
      "          'entertaining': 1,\n",
      "          'kids': 1,\n",
      "          'adults': 1,\n",
      "          'nfa': 1,\n",
      "          'mingna': 1,\n",
      "          'wen': 1,\n",
      "          'lea': 1,\n",
      "          'salonga': 1,\n",
      "          'wants': 1,\n",
      "          'dutiful': 1,\n",
      "          'daughter': 1,\n",
      "          'honor': 1,\n",
      "          'njust': 1,\n",
      "          'quite': 1,\n",
      "          'fit': 1,\n",
      "          'chafing': 1,\n",
      "          'girls': 1,\n",
      "          'age': 1,\n",
      "          'trying': 1,\n",
      "          'quietly': 1,\n",
      "          'demurely': 1,\n",
      "          'seek': 1,\n",
      "          'approval': 1,\n",
      "          'local': 1,\n",
      "          'matchmaker': 1,\n",
      "          'miriam': 1,\n",
      "          'margoyles': 1,\n",
      "          'would': 1,\n",
      "          'prefer': 1,\n",
      "          'speaking': 1,\n",
      "          'mind': 1,\n",
      "          'trouble': 1,\n",
      "          'horizon': 1,\n",
      "          'evil': 1,\n",
      "          'huns': 1,\n",
      "          'led': 1,\n",
      "          'shanyu': 1,\n",
      "          'miguel': 1,\n",
      "          'ferrer': 1,\n",
      "          'invading': 1,\n",
      "          'china': 1,\n",
      "          'emperor': 1,\n",
      "          'pat': 1,\n",
      "          'morita': 1,\n",
      "          'decreed': 1,\n",
      "          'must': 1,\n",
      "          'donate': 1,\n",
      "          'one': 1,\n",
      "          'serve': 1,\n",
      "          'army': 1,\n",
      "          'male': 1,\n",
      "          'mulans': 1,\n",
      "          'father': 1,\n",
      "          'fa': 1,\n",
      "          'zhou': 1,\n",
      "          'soontek': 1,\n",
      "          'oh': 1,\n",
      "          'old': 1,\n",
      "          'bad': 1,\n",
      "          'leg': 1,\n",
      "          'honorably': 1,\n",
      "          'accepts': 1,\n",
      "          'fate': 1,\n",
      "          'hand': 1,\n",
      "          'decides': 1,\n",
      "          'save': 1,\n",
      "          'fathers': 1,\n",
      "          'life': 1,\n",
      "          'nsecretly': 1,\n",
      "          'masquerading': 1,\n",
      "          'taking': 1,\n",
      "          'battlefield': 1,\n",
      "          'assumed': 1,\n",
      "          'name': 1,\n",
      "          'ping': 1,\n",
      "          'appears': 1,\n",
      "          'camp': 1,\n",
      "          'along': 1,\n",
      "          'bumbling': 1,\n",
      "          'recruits': 1,\n",
      "          'yao': 1,\n",
      "          'harvey': 1,\n",
      "          'fierstein': 1,\n",
      "          'chienpo': 1,\n",
      "          'jerry': 1,\n",
      "          'tondo': 1,\n",
      "          'ling': 1,\n",
      "          'gedde': 1,\n",
      "          'watanabe': 1,\n",
      "          'trained': 1,\n",
      "          'art': 1,\n",
      "          'war': 1,\n",
      "          'captain': 1,\n",
      "          'shang': 1,\n",
      "          'b': 1,\n",
      "          'nwong': 1,\n",
      "          'donny': 1,\n",
      "          'osmond': 1,\n",
      "          'shes': 1,\n",
      "          'alone': 1,\n",
      "          'tasks': 1,\n",
      "          'ntypical': 1,\n",
      "          'fashion': 1,\n",
      "          'three': 1,\n",
      "          'animal': 1,\n",
      "          'companions': 1,\n",
      "          'horse': 1,\n",
      "          'khan': 1,\n",
      "          'lucky': 1,\n",
      "          'cricket': 1,\n",
      "          'crickey': 1,\n",
      "          'pintsized': 1,\n",
      "          'guardian': 1,\n",
      "          'dragon': 1,\n",
      "          'called': 1,\n",
      "          'mushu': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'nmuch': 1,\n",
      "          'like': 1,\n",
      "          'gargoyles': 1,\n",
      "          'hunchback': 1,\n",
      "          'notre': 1,\n",
      "          'dame': 1,\n",
      "          'lukewarm': 1,\n",
      "          'flow': 1,\n",
      "          'rest': 1,\n",
      "          'serious': 1,\n",
      "          'nsure': 1,\n",
      "          'occasional': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'welcome': 1,\n",
      "          'particularly': 1,\n",
      "          'geared': 1,\n",
      "          'younger': 1,\n",
      "          'set': 1,\n",
      "          'overdoes': 1,\n",
      "          'overdose': 1,\n",
      "          'turns': 1,\n",
      "          'powerfully': 1,\n",
      "          'great': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'experience': 1,\n",
      "          'commentary': 1,\n",
      "          'aside': 1,\n",
      "          'made': 1,\n",
      "          'makes': 1,\n",
      "          'formulaic': 1,\n",
      "          'additions': 1,\n",
      "          'regrettable': 1,\n",
      "          'par': 1,\n",
      "          'best': 1,\n",
      "          'interesting': 1,\n",
      "          'action': 1,\n",
      "          'scenes': 1,\n",
      "          'aweinspiring': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'enjoyable': 1,\n",
      "          'though': 1,\n",
      "          'case': 1,\n",
      "          'recent': 1,\n",
      "          'work': 1,\n",
      "          'mostly': 1,\n",
      "          'forgettable': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'subjected': 1,\n",
      "          'four': 1,\n",
      "          'around': 1,\n",
      "          'boasts': 1,\n",
      "          'highest': 1,\n",
      "          'toll': 1,\n",
      "          'cartoon': 1,\n",
      "          'date': 1,\n",
      "          'nmost': 1,\n",
      "          'killing': 1,\n",
      "          'offscreen': 1,\n",
      "          'highly': 1,\n",
      "          'depersonalized': 1,\n",
      "          'theres': 1,\n",
      "          'compare': 1,\n",
      "          'mufasa': 1,\n",
      "          'bambis': 1,\n",
      "          'mom': 1,\n",
      "          'ntheres': 1,\n",
      "          'graphic': 1,\n",
      "          'resides': 1,\n",
      "          'snugly': 1,\n",
      "          'inside': 1,\n",
      "          'g': 1,\n",
      "          'rating': 1,\n",
      "          'nchildren': 1,\n",
      "          'probably': 1,\n",
      "          'questions': 1,\n",
      "          'restrictive': 1,\n",
      "          'ancient': 1,\n",
      "          'slaughter': 1,\n",
      "          'armies': 1,\n",
      "          'nits': 1,\n",
      "          'ironic': 1,\n",
      "          'concerned': 1,\n",
      "          'bucking': 1,\n",
      "          'hampered': 1,\n",
      "          'strict': 1,\n",
      "          'adherence': 1,\n",
      "          'nif': 1,\n",
      "          'filmmakers': 1,\n",
      "          'guts': 1,\n",
      "          'lessen': 1,\n",
      "          'ax': 1,\n",
      "          'compulsory': 1,\n",
      "          'remove': 1,\n",
      "          'obligatory': 1,\n",
      "          'somewhat': 1,\n",
      "          'unrealistic': 1,\n",
      "          'romance': 1,\n",
      "          'classic': 1,\n",
      "          'hands': 1,\n",
      "          'ninstead': 1,\n",
      "          'merely': 1,\n",
      "          'deliver': 1,\n",
      "          'movies': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'n': 16,\n",
      "          'film': 5,\n",
      "          'last': 4,\n",
      "          'nthe': 4,\n",
      "          'would': 4,\n",
      "          'world': 3,\n",
      "          'end': 3,\n",
      "          'midnight': 3,\n",
      "          'people': 3,\n",
      "          'much': 3,\n",
      "          'may': 3,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          '4': 2,\n",
      "          'night': 2,\n",
      "          'david': 2,\n",
      "          'wrote': 2,\n",
      "          'story': 2,\n",
      "          'matheson': 2,\n",
      "          'release': 2,\n",
      "          'though': 2,\n",
      "          'appropriate': 2,\n",
      "          'nit': 2,\n",
      "          'get': 2,\n",
      "          'person': 2,\n",
      "          'nwhat': 2,\n",
      "          'capsule': 1,\n",
      "          'come': 1,\n",
      "          'neveryone': 1,\n",
      "          'knows': 1,\n",
      "          'must': 1,\n",
      "          'make': 1,\n",
      "          'final': 1,\n",
      "          'peace': 1,\n",
      "          'hours': 1,\n",
      "          'lives': 1,\n",
      "          'nthis': 1,\n",
      "          'intelligent': 1,\n",
      "          'personalities': 1,\n",
      "          'ideas': 1,\n",
      "          'high': 1,\n",
      "          '2': 1,\n",
      "          'planet': 1,\n",
      "          'several': 1,\n",
      "          'different': 1,\n",
      "          'reacting': 1,\n",
      "          'way': 1,\n",
      "          'covers': 1,\n",
      "          '6': 1,\n",
      "          'pm': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'patrick': 1,\n",
      "          'played': 1,\n",
      "          'mckellan': 1,\n",
      "          'also': 1,\n",
      "          'directed': 1,\n",
      "          'reminiscent': 1,\n",
      "          'beach': 1,\n",
      "          'nbut': 1,\n",
      "          'richard': 1,\n",
      "          'day': 1,\n",
      "          'p': 1,\n",
      "          'non': 1,\n",
      "          'rereading': 1,\n",
      "          '1953': 1,\n",
      "          'almost': 1,\n",
      "          'loose': 1,\n",
      "          'adaptation': 1,\n",
      "          'similarities': 1,\n",
      "          'mere': 1,\n",
      "          'coincidence': 1,\n",
      "          'numerous': 1,\n",
      "          'striking': 1,\n",
      "          'us': 1,\n",
      "          'problematical': 1,\n",
      "          'title': 1,\n",
      "          'lackluster': 1,\n",
      "          'nonmemorable': 1,\n",
      "          'know': 1,\n",
      "          'nalso': 1,\n",
      "          'provincial': 1,\n",
      "          'americans': 1,\n",
      "          'care': 1,\n",
      "          'coming': 1,\n",
      "          'toronto': 1,\n",
      "          'nthey': 1,\n",
      "          'probably': 1,\n",
      "          'feel': 1,\n",
      "          'affect': 1,\n",
      "          'nperhaps': 1,\n",
      "          'pbs': 1,\n",
      "          'possible': 1,\n",
      "          'patricks': 1,\n",
      "          'family': 1,\n",
      "          'declared': 1,\n",
      "          'christmas': 1,\n",
      "          'hurt': 1,\n",
      "          'adult': 1,\n",
      "          'children': 1,\n",
      "          'spend': 1,\n",
      "          'whole': 1,\n",
      "          'evening': 1,\n",
      "          'grocery': 1,\n",
      "          'stores': 1,\n",
      "          'mostly': 1,\n",
      "          'looted': 1,\n",
      "          'seems': 1,\n",
      "          'one': 1,\n",
      "          'everything': 1,\n",
      "          'left': 1,\n",
      "          'continue': 1,\n",
      "          'business': 1,\n",
      "          'usual': 1,\n",
      "          'want': 1,\n",
      "          'sex': 1,\n",
      "          'react': 1,\n",
      "          'religion': 1,\n",
      "          'riot': 1,\n",
      "          'nsome': 1,\n",
      "          'total': 1,\n",
      "          'denial': 1,\n",
      "          'comedy': 1,\n",
      "          'drama': 1,\n",
      "          'canadian': 1,\n",
      "          'cast': 1,\n",
      "          'dark': 1,\n",
      "          'always': 1,\n",
      "          'daytime': 1,\n",
      "          'radio': 1,\n",
      "          'playing': 1,\n",
      "          'didnt': 1,\n",
      "          'sleep': 1,\n",
      "          'nhow': 1,\n",
      "          'cronenberg': 1,\n",
      "          'kind': 1,\n",
      "          'bland': 1,\n",
      "          'functionary': 1,\n",
      "          'manager': 1,\n",
      "          'gas': 1,\n",
      "          'company': 1,\n",
      "          'ngenvieve': 1,\n",
      "          'bujold': 1,\n",
      "          'french': 1,\n",
      "          'teacher': 1,\n",
      "          'visiting': 1,\n",
      "          'former': 1,\n",
      "          'student': 1,\n",
      "          'cost': 1,\n",
      "          'two': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'thrown': 1,\n",
      "          'together': 1,\n",
      "          'chance': 1,\n",
      "          'becomes': 1,\n",
      "          'important': 1,\n",
      "          'rest': 1,\n",
      "          'life': 1,\n",
      "          'precisely': 1,\n",
      "          'time': 1,\n",
      "          'zones': 1,\n",
      "          'nature': 1,\n",
      "          'destroying': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'josie': 6,\n",
      "          'movie': 5,\n",
      "          'cole': 4,\n",
      "          'wife': 3,\n",
      "          'one': 3,\n",
      "          'nbut': 3,\n",
      "          'going': 3,\n",
      "          'tony': 3,\n",
      "          'nand': 3,\n",
      "          'rich': 2,\n",
      "          'mans': 2,\n",
      "          'like': 2,\n",
      "          'body': 2,\n",
      "          'know': 2,\n",
      "          'get': 2,\n",
      "          'things': 2,\n",
      "          'bad': 2,\n",
      "          'better': 2,\n",
      "          'ni': 2,\n",
      "          'realize': 2,\n",
      "          'best': 2,\n",
      "          'right': 2,\n",
      "          'guy': 2,\n",
      "          'good': 2,\n",
      "          'married': 2,\n",
      "          'much': 2,\n",
      "          'cough': 2,\n",
      "          'jake': 2,\n",
      "          'work': 2,\n",
      "          'begins': 2,\n",
      "          'night': 2,\n",
      "          'suspense': 2,\n",
      "          'movies': 1,\n",
      "          'final': 1,\n",
      "          'analysis': 1,\n",
      "          'double': 1,\n",
      "          'story': 1,\n",
      "          'characters': 1,\n",
      "          'onedimensional': 1,\n",
      "          'contrived': 1,\n",
      "          'shouldnt': 1,\n",
      "          'enjoying': 1,\n",
      "          'somehow': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'begin': 1,\n",
      "          'forgive': 1,\n",
      "          'swing': 1,\n",
      "          'nnot': 1,\n",
      "          'done': 1,\n",
      "          'opinion': 1,\n",
      "          'sound': 1,\n",
      "          'pretty': 1,\n",
      "          'bizarre': 1,\n",
      "          'probably': 1,\n",
      "          'analogy': 1,\n",
      "          'come': 1,\n",
      "          'see': 1,\n",
      "          'spider': 1,\n",
      "          'something': 1,\n",
      "          'toilet': 1,\n",
      "          'striving': 1,\n",
      "          'helplessly': 1,\n",
      "          'instead': 1,\n",
      "          'flushing': 1,\n",
      "          'end': 1,\n",
      "          'kind': 1,\n",
      "          'rooting': 1,\n",
      "          'little': 1,\n",
      "          'nthats': 1,\n",
      "          'basically': 1,\n",
      "          'felt': 1,\n",
      "          'mean': 1,\n",
      "          'completely': 1,\n",
      "          'either': 1,\n",
      "          'nthe': 1,\n",
      "          'title': 1,\n",
      "          'potenza': 1,\n",
      "          'played': 1,\n",
      "          'nicely': 1,\n",
      "          'halle': 1,\n",
      "          'berry': 1,\n",
      "          'nshe': 1,\n",
      "          'christopher': 1,\n",
      "          'mcdonald': 1,\n",
      "          'nknow': 1,\n",
      "          'looks': 1,\n",
      "          'joe': 1,\n",
      "          'piscapo': 1,\n",
      "          'really': 1,\n",
      "          'stressedout': 1,\n",
      "          'businessman': 1,\n",
      "          'drinks': 1,\n",
      "          'way': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'attention': 1,\n",
      "          'deserves': 1,\n",
      "          'nthus': 1,\n",
      "          'driven': 1,\n",
      "          'arms': 1,\n",
      "          'another': 1,\n",
      "          'man': 1,\n",
      "          'golden': 1,\n",
      "          'clive': 1,\n",
      "          'owen': 1,\n",
      "          'nnear': 1,\n",
      "          'beginning': 1,\n",
      "          'film': 1,\n",
      "          'decides': 1,\n",
      "          'try': 1,\n",
      "          'dumping': 1,\n",
      "          'vacation': 1,\n",
      "          'remote': 1,\n",
      "          'cabin': 1,\n",
      "          'woods': 1,\n",
      "          'nonce': 1,\n",
      "          'however': 1,\n",
      "          'leave': 1,\n",
      "          'almost': 1,\n",
      "          'immediately': 1,\n",
      "          'due': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'business': 1,\n",
      "          'details': 1,\n",
      "          'im': 1,\n",
      "          'still': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'line': 1,\n",
      "          'hes': 1,\n",
      "          'nmaking': 1,\n",
      "          'situation': 1,\n",
      "          'stays': 1,\n",
      "          'making': 1,\n",
      "          'rounds': 1,\n",
      "          'local': 1,\n",
      "          'bars': 1,\n",
      "          'none': 1,\n",
      "          'meets': 1,\n",
      "          'stranger': 1,\n",
      "          'named': 1,\n",
      "          'peter': 1,\n",
      "          'greene': 1,\n",
      "          'finally': 1,\n",
      "          'getting': 1,\n",
      "          'meaty': 1,\n",
      "          'role': 1,\n",
      "          'nthey': 1,\n",
      "          'dinner': 1,\n",
      "          'together': 1,\n",
      "          'eventually': 1,\n",
      "          'audience': 1,\n",
      "          'start': 1,\n",
      "          'homicidal': 1,\n",
      "          'nafter': 1,\n",
      "          'learning': 1,\n",
      "          'happily': 1,\n",
      "          'offers': 1,\n",
      "          'take': 1,\n",
      "          'care': 1,\n",
      "          'problem': 1,\n",
      "          'nmanaging': 1,\n",
      "          'escape': 1,\n",
      "          'psychotic': 1,\n",
      "          'maniac': 1,\n",
      "          'returns': 1,\n",
      "          'home': 1,\n",
      "          'starts': 1,\n",
      "          'reconciliation': 1,\n",
      "          'estranged': 1,\n",
      "          'wealthy': 1,\n",
      "          'husband': 1,\n",
      "          'shows': 1,\n",
      "          'fun': 1,\n",
      "          'nfrom': 1,\n",
      "          'point': 1,\n",
      "          'noholds': 1,\n",
      "          'barred': 1,\n",
      "          'clichefest': 1,\n",
      "          'ripping': 1,\n",
      "          'every': 1,\n",
      "          'strangers': 1,\n",
      "          'train': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'nthis': 1,\n",
      "          'critics': 1,\n",
      "          'panned': 1,\n",
      "          'first': 1,\n",
      "          'came': 1,\n",
      "          'part': 1,\n",
      "          'theyre': 1,\n",
      "          'nary': 1,\n",
      "          'original': 1,\n",
      "          'bone': 1,\n",
      "          'cares': 1,\n",
      "          'nif': 1,\n",
      "          'youre': 1,\n",
      "          'looking': 1,\n",
      "          'ol': 1,\n",
      "          'dumb': 1,\n",
      "          'cant': 1,\n",
      "          'buffs': 1,\n",
      "          'arent': 1,\n",
      "          'already': 1,\n",
      "          'sold': 1,\n",
      "          'killer': 1,\n",
      "          'ending': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 7,\n",
      "          'game': 3,\n",
      "          'final': 3,\n",
      "          'fantasy': 3,\n",
      "          'nbut': 3,\n",
      "          'story': 3,\n",
      "          'dialogue': 3,\n",
      "          'humans': 3,\n",
      "          'aliens': 3,\n",
      "          'anything': 2,\n",
      "          'like': 2,\n",
      "          'see': 2,\n",
      "          'great': 2,\n",
      "          'individual': 2,\n",
      "          'dont': 2,\n",
      "          'animation': 2,\n",
      "          'much': 2,\n",
      "          'one': 2,\n",
      "          'plot': 2,\n",
      "          'outside': 2,\n",
      "          'japanese': 2,\n",
      "          'nits': 2,\n",
      "          'world': 2,\n",
      "          'phantoms': 2,\n",
      "          'pass': 2,\n",
      "          'nwhile': 2,\n",
      "          'plan': 2,\n",
      "          'dr': 2,\n",
      "          'spirits': 2,\n",
      "          'team': 1,\n",
      "          '200': 1,\n",
      "          'graphic': 1,\n",
      "          'artists': 1,\n",
      "          'animators': 1,\n",
      "          'working': 1,\n",
      "          'first': 1,\n",
      "          'production': 1,\n",
      "          'developer': 1,\n",
      "          'squaresofts': 1,\n",
      "          'square': 1,\n",
      "          'pictures': 1,\n",
      "          'inspired': 1,\n",
      "          'topselling': 1,\n",
      "          'franchise': 1,\n",
      "          'visually': 1,\n",
      "          'aweinspiring': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'nno': 1,\n",
      "          'doubt': 1,\n",
      "          'never': 1,\n",
      "          'seen': 1,\n",
      "          'hyperbolic': 1,\n",
      "          'fanfare': 1,\n",
      "          'surrounding': 1,\n",
      "          'release': 1,\n",
      "          'absolutely': 1,\n",
      "          'deserved': 1,\n",
      "          'tremendous': 1,\n",
      "          'feat': 1,\n",
      "          'eye': 1,\n",
      "          'candy': 1,\n",
      "          'weighted': 1,\n",
      "          'problematic': 1,\n",
      "          'wooden': 1,\n",
      "          'generally': 1,\n",
      "          'uncharismatic': 1,\n",
      "          'voice': 1,\n",
      "          'acting': 1,\n",
      "          'nobviously': 1,\n",
      "          'primary': 1,\n",
      "          'goal': 1,\n",
      "          'stun': 1,\n",
      "          'amaze': 1,\n",
      "          'audiences': 1,\n",
      "          'extremely': 1,\n",
      "          'sophisticated': 1,\n",
      "          'cgi': 1,\n",
      "          'neverything': 1,\n",
      "          'rendered': 1,\n",
      "          'detail': 1,\n",
      "          'threads': 1,\n",
      "          'fabric': 1,\n",
      "          'strands': 1,\n",
      "          'hair': 1,\n",
      "          'swaying': 1,\n",
      "          'wrinkles': 1,\n",
      "          'pimples': 1,\n",
      "          'skin': 1,\n",
      "          'incredible': 1,\n",
      "          'water': 1,\n",
      "          'effects': 1,\n",
      "          'noverall': 1,\n",
      "          'expressions': 1,\n",
      "          'lip': 1,\n",
      "          'movements': 1,\n",
      "          'fairly': 1,\n",
      "          'accurately': 1,\n",
      "          'match': 1,\n",
      "          'emotions': 1,\n",
      "          'times': 1,\n",
      "          'sync': 1,\n",
      "          'perfectly': 1,\n",
      "          'really': 1,\n",
      "          'stand': 1,\n",
      "          'since': 1,\n",
      "          'usually': 1,\n",
      "          'dazzling': 1,\n",
      "          'wont': 1,\n",
      "          'spend': 1,\n",
      "          'time': 1,\n",
      "          'dwelling': 1,\n",
      "          'gaffes': 1,\n",
      "          'soon': 1,\n",
      "          'catch': 1,\n",
      "          'next': 1,\n",
      "          'stellar': 1,\n",
      "          'monster': 1,\n",
      "          'effect': 1,\n",
      "          'muttering': 1,\n",
      "          'wow': 1,\n",
      "          'nlike': 1,\n",
      "          'series': 1,\n",
      "          'games': 1,\n",
      "          'fantasys': 1,\n",
      "          'characters': 1,\n",
      "          'little': 1,\n",
      "          'predecessors': 1,\n",
      "          'born': 1,\n",
      "          'mastermind': 1,\n",
      "          'hironobu': 1,\n",
      "          'sakaguchi': 1,\n",
      "          'year': 1,\n",
      "          '2065': 1,\n",
      "          'prisoners': 1,\n",
      "          'caged': 1,\n",
      "          'cities': 1,\n",
      "          'making': 1,\n",
      "          'guard': 1,\n",
      "          'overrun': 1,\n",
      "          'deadly': 1,\n",
      "          'alien': 1,\n",
      "          'nwhenever': 1,\n",
      "          'human': 1,\n",
      "          'comes': 1,\n",
      "          'contact': 1,\n",
      "          'ghostly': 1,\n",
      "          'visitors': 1,\n",
      "          'ofteninvisible': 1,\n",
      "          'beings': 1,\n",
      "          'body': 1,\n",
      "          'wrench': 1,\n",
      "          'soul': 1,\n",
      "          'unexplainable': 1,\n",
      "          'reason': 1,\n",
      "          'many': 1,\n",
      "          'agree': 1,\n",
      "          'monomaniacal': 1,\n",
      "          'general': 1,\n",
      "          'hein': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'blast': 1,\n",
      "          'zeus': 1,\n",
      "          'cannon': 1,\n",
      "          'aki': 1,\n",
      "          'ross': 1,\n",
      "          'mingna': 1,\n",
      "          'sid': 1,\n",
      "          'donald': 1,\n",
      "          'sutherland': 1,\n",
      "          'build': 1,\n",
      "          'wave': 1,\n",
      "          'using': 1,\n",
      "          'eight': 1,\n",
      "          'collected': 1,\n",
      "          'counteract': 1,\n",
      "          'kill': 1,\n",
      "          'images': 1,\n",
      "          'serve': 1,\n",
      "          'scifi': 1,\n",
      "          'aspect': 1,\n",
      "          'well': 1,\n",
      "          'storytelling': 1,\n",
      "          'doesnt': 1,\n",
      "          'unfortunate': 1,\n",
      "          'seems': 1,\n",
      "          'intricately': 1,\n",
      "          'thought': 1,\n",
      "          'nperhaps': 1,\n",
      "          'far': 1,\n",
      "          'complex': 1,\n",
      "          'enormous': 1,\n",
      "          'entirely': 1,\n",
      "          'incorporated': 1,\n",
      "          'script': 1,\n",
      "          'nsome': 1,\n",
      "          'could': 1,\n",
      "          'blame': 1,\n",
      "          'weakness': 1,\n",
      "          'fact': 1,\n",
      "          'concept': 1,\n",
      "          'translated': 1,\n",
      "          'english': 1,\n",
      "          'except': 1,\n",
      "          'two': 1,\n",
      "          'americans': 1,\n",
      "          'wrote': 1,\n",
      "          'screenplay': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'end': 1,\n",
      "          'result': 1,\n",
      "          'elaborate': 1,\n",
      "          'complicated': 1,\n",
      "          'confusing': 1,\n",
      "          'holes': 1,\n",
      "          'nwhy': 1,\n",
      "          'feed': 1,\n",
      "          'souls': 1,\n",
      "          'nif': 1,\n",
      "          'bodies': 1,\n",
      "          'ships': 1,\n",
      "          'hurt': 1,\n",
      "          'guns': 1,\n",
      "          'nwhat': 1,\n",
      "          'special': 1,\n",
      "          'would': 1,\n",
      "          'create': 1,\n",
      "          'force': 1,\n",
      "          'strong': 1,\n",
      "          'enough': 1,\n",
      "          'destroy': 1,\n",
      "          'nworse': 1,\n",
      "          'yet': 1,\n",
      "          'scripted': 1,\n",
      "          'either': 1,\n",
      "          'scienceheavy': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'episode': 1,\n",
      "          'installment': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'sappy': 1,\n",
      "          'love': 1,\n",
      "          'depending': 1,\n",
      "          'whos': 1,\n",
      "          'talking': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'bearable': 1,\n",
      "          'considering': 1,\n",
      "          'genre': 1,\n",
      "          'tedious': 1,\n",
      "          'speeches': 1,\n",
      "          'cheesy': 1,\n",
      "          'lines': 1,\n",
      "          'help': 1,\n",
      "          'actors': 1,\n",
      "          'get': 1,\n",
      "          'annoying': 1,\n",
      "          'longer': 1,\n",
      "          'scenes': 1,\n",
      "          'nthe': 1,\n",
      "          'exception': 1,\n",
      "          'steve': 1,\n",
      "          'buscemi': 1,\n",
      "          'pilot': 1,\n",
      "          'neil': 1,\n",
      "          'fleming': 1,\n",
      "          'always': 1,\n",
      "          'cracks': 1,\n",
      "          'tense': 1,\n",
      "          'moments': 1,\n",
      "          'lights': 1,\n",
      "          'come': 1,\n",
      "          'credits': 1,\n",
      "          'roll': 1,\n",
      "          'youre': 1,\n",
      "          'likely': 1,\n",
      "          'remarking': 1,\n",
      "          'fantastic': 1,\n",
      "          'looked': 1,\n",
      "          'ntheres': 1,\n",
      "          'question': 1,\n",
      "          'roughly': 1,\n",
      "          '33': 1,\n",
      "          'million': 1,\n",
      "          'people': 1,\n",
      "          'bought': 1,\n",
      "          'least': 1,\n",
      "          'eager': 1,\n",
      "          'movie': 1,\n",
      "          'anyone': 1,\n",
      "          'enjoys': 1,\n",
      "          'floored': 1,\n",
      "          'best': 1,\n",
      "          'cg': 1,\n",
      "          'ever': 1,\n",
      "          'put': 1,\n",
      "          'nyoud': 1,\n",
      "          'living': 1,\n",
      "          'expected': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 27,\n",
      "          'troopers': 20,\n",
      "          'nthe': 12,\n",
      "          'starship': 11,\n",
      "          'star': 7,\n",
      "          'rico': 7,\n",
      "          'scifi': 6,\n",
      "          'nstarship': 6,\n",
      "          'wars': 6,\n",
      "          'gives': 6,\n",
      "          'nhowever': 6,\n",
      "          'fiction': 5,\n",
      "          'nin': 5,\n",
      "          'quite': 5,\n",
      "          'characters': 5,\n",
      "          'cast': 5,\n",
      "          'performance': 5,\n",
      "          'nand': 4,\n",
      "          'ni': 4,\n",
      "          'sense': 4,\n",
      "          'humor': 4,\n",
      "          'result': 4,\n",
      "          'science': 4,\n",
      "          'never': 4,\n",
      "          'would': 4,\n",
      "          'verhoeven': 4,\n",
      "          'plot': 4,\n",
      "          'violence': 4,\n",
      "          'extremely': 4,\n",
      "          'war': 4,\n",
      "          'also': 4,\n",
      "          'funny': 4,\n",
      "          'one': 4,\n",
      "          'setup': 4,\n",
      "          'carmen': 4,\n",
      "          'dizzy': 4,\n",
      "          'see': 4,\n",
      "          'independence': 3,\n",
      "          'day': 3,\n",
      "          'nits': 3,\n",
      "          'realize': 3,\n",
      "          'first': 3,\n",
      "          'hour': 3,\n",
      "          'still': 3,\n",
      "          'give': 3,\n",
      "          'well': 3,\n",
      "          'may': 3,\n",
      "          'seem': 3,\n",
      "          'fact': 3,\n",
      "          'watching': 3,\n",
      "          'another': 3,\n",
      "          'nthis': 3,\n",
      "          'alien': 3,\n",
      "          'bugs': 3,\n",
      "          'morals': 3,\n",
      "          'something': 3,\n",
      "          'like': 3,\n",
      "          'know': 3,\n",
      "          'take': 3,\n",
      "          'year': 3,\n",
      "          'van': 3,\n",
      "          'dien': 3,\n",
      "          'signs': 3,\n",
      "          'position': 3,\n",
      "          'left': 3,\n",
      "          'special': 3,\n",
      "          'effects': 3,\n",
      "          'many': 3,\n",
      "          'good': 3,\n",
      "          'violent': 3,\n",
      "          'character': 3,\n",
      "          'surprising': 3,\n",
      "          'surprisingly': 2,\n",
      "          'entertaining': 2,\n",
      "          'gave': 2,\n",
      "          'years': 2,\n",
      "          'rating': 2,\n",
      "          'nafter': 2,\n",
      "          'feel': 2,\n",
      "          'really': 2,\n",
      "          'review': 2,\n",
      "          'perfectly': 2,\n",
      "          'probably': 2,\n",
      "          'could': 2,\n",
      "          'space': 2,\n",
      "          'nwhile': 2,\n",
      "          'comes': 2,\n",
      "          'easiest': 2,\n",
      "          'call': 2,\n",
      "          'nperhaps': 2,\n",
      "          'romance': 2,\n",
      "          'way': 2,\n",
      "          'films': 2,\n",
      "          'original': 2,\n",
      "          'style': 2,\n",
      "          'except': 2,\n",
      "          'likely': 2,\n",
      "          'basic': 2,\n",
      "          'mankind': 2,\n",
      "          'species': 2,\n",
      "          'civilization': 2,\n",
      "          'scenes': 2,\n",
      "          'us': 2,\n",
      "          'time': 2,\n",
      "          'intended': 2,\n",
      "          'event': 2,\n",
      "          'nit': 2,\n",
      "          'watch': 2,\n",
      "          'begins': 2,\n",
      "          'gory': 2,\n",
      "          'nwe': 2,\n",
      "          'richards': 2,\n",
      "          'isnt': 2,\n",
      "          'interested': 2,\n",
      "          'pilot': 2,\n",
      "          'meyer': 2,\n",
      "          'nunfortunately': 2,\n",
      "          'gets': 2,\n",
      "          'patrick': 2,\n",
      "          'harris': 2,\n",
      "          'training': 2,\n",
      "          'main': 2,\n",
      "          'story': 2,\n",
      "          'place': 2,\n",
      "          'better': 2,\n",
      "          'na': 2,\n",
      "          'grew': 2,\n",
      "          'audience': 2,\n",
      "          'sometimes': 2,\n",
      "          'flat': 2,\n",
      "          'hard': 2,\n",
      "          'superficial': 2,\n",
      "          'dramas': 2,\n",
      "          'planet': 2,\n",
      "          'much': 2,\n",
      "          'hopefully': 2,\n",
      "          'ndirector': 2,\n",
      "          'despite': 2,\n",
      "          'book': 2,\n",
      "          'gore': 2,\n",
      "          'r': 2,\n",
      "          'old': 2,\n",
      "          'guess': 2,\n",
      "          'chiseled': 2,\n",
      "          'world': 2,\n",
      "          'made': 2,\n",
      "          'nthankfully': 2,\n",
      "          'guys': 2,\n",
      "          'come': 2,\n",
      "          'job': 2,\n",
      "          'rest': 2,\n",
      "          'nhis': 2,\n",
      "          'bad': 2,\n",
      "          'screenplay': 2,\n",
      "          'smart': 2,\n",
      "          'dont': 2,\n",
      "          'governmental': 2,\n",
      "          'even': 2,\n",
      "          'ladies': 1,\n",
      "          'gentlemen': 1,\n",
      "          '1997s': 1,\n",
      "          'title': 1,\n",
      "          'id4': 1,\n",
      "          'last': 1,\n",
      "          'hit': 1,\n",
      "          '4': 1,\n",
      "          'spell': 1,\n",
      "          'powerful': 1,\n",
      "          'subsequent': 1,\n",
      "          'viewings': 1,\n",
      "          'wasnt': 1,\n",
      "          'great': 1,\n",
      "          'seemedthough': 1,\n",
      "          'positive': 1,\n",
      "          'hand': 1,\n",
      "          'mocking': 1,\n",
      "          'knowing': 1,\n",
      "          'ridiculous': 1,\n",
      "          'nas': 1,\n",
      "          'exciting': 1,\n",
      "          'energetic': 1,\n",
      "          'lively': 1,\n",
      "          'get': 1,\n",
      "          'tired': 1,\n",
      "          'reminiscient': 1,\n",
      "          'kickass': 1,\n",
      "          'opera': 1,\n",
      "          'reinvented': 1,\n",
      "          'drama': 1,\n",
      "          'altogether': 1,\n",
      "          'close': 1,\n",
      "          'assessment': 1,\n",
      "          '90s': 1,\n",
      "          'nam': 1,\n",
      "          'generous': 1,\n",
      "          'along': 1,\n",
      "          'mix': 1,\n",
      "          'effectively': 1,\n",
      "          'warring': 1,\n",
      "          'races': 1,\n",
      "          'essence': 1,\n",
      "          'equivolence': 1,\n",
      "          'pulp': 1,\n",
      "          'write': 1,\n",
      "          'compare': 1,\n",
      "          'persay': 1,\n",
      "          'director': 1,\n",
      "          'paul': 1,\n",
      "          'kickthealiensasses': 1,\n",
      "          'nid4': 1,\n",
      "          'forced': 1,\n",
      "          'cause': 1,\n",
      "          'smith': 1,\n",
      "          'major': 1,\n",
      "          'role': 1,\n",
      "          'new': 1,\n",
      "          'simple': 1,\n",
      "          'vs': 1,\n",
      "          'question': 1,\n",
      "          'seemingly': 1,\n",
      "          'advanced': 1,\n",
      "          'arachnidtype': 1,\n",
      "          'insects': 1,\n",
      "          'underlying': 1,\n",
      "          'fleshed': 1,\n",
      "          'deadly': 1,\n",
      "          'accuracy': 1,\n",
      "          'nsometimes': 1,\n",
      "          'buried': 1,\n",
      "          'bloody': 1,\n",
      "          'intense': 1,\n",
      "          'action': 1,\n",
      "          'quiet': 1,\n",
      "          'moments': 1,\n",
      "          'tell': 1,\n",
      "          'nmore': 1,\n",
      "          'overpowered': 1,\n",
      "          'quickly': 1,\n",
      "          'forgotten': 1,\n",
      "          'movie': 1,\n",
      "          'ends': 1,\n",
      "          'doubt': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'average': 1,\n",
      "          'refreshing': 1,\n",
      "          'actually': 1,\n",
      "          'root': 1,\n",
      "          'human': 1,\n",
      "          'side': 1,\n",
      "          'achieved': 1,\n",
      "          'satirical': 1,\n",
      "          'portrayal': 1,\n",
      "          'strange': 1,\n",
      "          'join': 1,\n",
      "          'army': 1,\n",
      "          'ads': 1,\n",
      "          'nmixing': 1,\n",
      "          'webbased': 1,\n",
      "          'interface': 1,\n",
      "          'summations': 1,\n",
      "          'events': 1,\n",
      "          'refreshingly': 1,\n",
      "          'nstating': 1,\n",
      "          'nthese': 1,\n",
      "          'short': 1,\n",
      "          'news': 1,\n",
      "          'bulletins': 1,\n",
      "          'immediate': 1,\n",
      "          'seriously': 1,\n",
      "          'witness': 1,\n",
      "          'murder': 1,\n",
      "          'several': 1,\n",
      "          'battle': 1,\n",
      "          'yet': 1,\n",
      "          'witnessing': 1,\n",
      "          'slaughter': 1,\n",
      "          'jumps': 1,\n",
      "          'back': 1,\n",
      "          'saw': 1,\n",
      "          'introduced': 1,\n",
      "          'johnny': 1,\n",
      "          'casper': 1,\n",
      "          'ibanez': 1,\n",
      "          'denise': 1,\n",
      "          'nrico': 1,\n",
      "          'flirts': 1,\n",
      "          'sending': 1,\n",
      "          'messages': 1,\n",
      "          'computer': 1,\n",
      "          'terminals': 1,\n",
      "          'school': 1,\n",
      "          'classrooms': 1,\n",
      "          'becoming': 1,\n",
      "          'classmate': 1,\n",
      "          'flores': 1,\n",
      "          'dina': 1,\n",
      "          'eye': 1,\n",
      "          'rather': 1,\n",
      "          'cliched': 1,\n",
      "          'fun': 1,\n",
      "          'ncarmen': 1,\n",
      "          'become': 1,\n",
      "          'trooper': 1,\n",
      "          'neveryone': 1,\n",
      "          'assigned': 1,\n",
      "          'certain': 1,\n",
      "          'academy': 1,\n",
      "          'wanted': 1,\n",
      "          'carl': 1,\n",
      "          'jenkins': 1,\n",
      "          'neil': 1,\n",
      "          'psychic': 1,\n",
      "          'program': 1,\n",
      "          'lowest': 1,\n",
      "          'class': 1,\n",
      "          'mobile': 1,\n",
      "          'infantry': 1,\n",
      "          'follows': 1,\n",
      "          'trials': 1,\n",
      "          'relationships': 1,\n",
      "          'reality': 1,\n",
      "          'found': 1,\n",
      "          'version': 1,\n",
      "          'melrose': 1,\n",
      "          'nan': 1,\n",
      "          'tension': 1,\n",
      "          'watched': 1,\n",
      "          'unintentionally': 1,\n",
      "          'care': 1,\n",
      "          'matter': 1,\n",
      "          'tried': 1,\n",
      "          'gorgeous': 1,\n",
      "          'looks': 1,\n",
      "          'must': 1,\n",
      "          'nfollowing': 1,\n",
      "          'sessions': 1,\n",
      "          'mention': 1,\n",
      "          'sent': 1,\n",
      "          'live': 1,\n",
      "          'klendathu': 1,\n",
      "          'consists': 1,\n",
      "          'dirt': 1,\n",
      "          'rock': 1,\n",
      "          'pretty': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'nmany': 1,\n",
      "          'occur': 1,\n",
      "          'finally': 1,\n",
      "          'behind': 1,\n",
      "          'attacks': 1,\n",
      "          'sort': 1,\n",
      "          'intelligence': 1,\n",
      "          'masterminds': 1,\n",
      "          'defense': 1,\n",
      "          'ordered': 1,\n",
      "          'locate': 1,\n",
      "          'brain': 1,\n",
      "          'capture': 1,\n",
      "          'vague': 1,\n",
      "          'possible': 1,\n",
      "          'known': 1,\n",
      "          'nudie': 1,\n",
      "          'showgirls': 1,\n",
      "          'instinct': 1,\n",
      "          'returns': 1,\n",
      "          'days': 1,\n",
      "          'total': 1,\n",
      "          'recall': 1,\n",
      "          'nverhoeven': 1,\n",
      "          'likes': 1,\n",
      "          'push': 1,\n",
      "          'envelope': 1,\n",
      "          'mpaa': 1,\n",
      "          'comic': 1,\n",
      "          'falsehood': 1,\n",
      "          'horizon': 1,\n",
      "          'deserved': 1,\n",
      "          'parents': 1,\n",
      "          'allow': 1,\n",
      "          '12': 1,\n",
      "          'children': 1,\n",
      "          'nmy': 1,\n",
      "          'verhoevens': 1,\n",
      "          'target': 1,\n",
      "          '18': 1,\n",
      "          '25': 1,\n",
      "          'male': 1,\n",
      "          'group': 1,\n",
      "          'testosterone': 1,\n",
      "          'level': 1,\n",
      "          'charts': 1,\n",
      "          'men': 1,\n",
      "          'beautiful': 1,\n",
      "          'women': 1,\n",
      "          'ndespite': 1,\n",
      "          'elements': 1,\n",
      "          'creates': 1,\n",
      "          'successful': 1,\n",
      "          'second': 1,\n",
      "          'decisions': 1,\n",
      "          'clear': 1,\n",
      "          'hero': 1,\n",
      "          'punching': 1,\n",
      "          'aliens': 1,\n",
      "          'face': 1,\n",
      "          'depth': 1,\n",
      "          'identify': 1,\n",
      "          'annoying': 1,\n",
      "          'begin': 1,\n",
      "          'soon': 1,\n",
      "          'grow': 1,\n",
      "          'ncasper': 1,\n",
      "          'facial': 1,\n",
      "          'features': 1,\n",
      "          'tan': 1,\n",
      "          'skin': 1,\n",
      "          'make': 1,\n",
      "          'girls': 1,\n",
      "          'swoon': 1,\n",
      "          'nto': 1,\n",
      "          'across': 1,\n",
      "          'artificial': 1,\n",
      "          'nfortunately': 1,\n",
      "          'worst': 1,\n",
      "          'tries': 1,\n",
      "          'real': 1,\n",
      "          'ndina': 1,\n",
      "          'fleshing': 1,\n",
      "          'nher': 1,\n",
      "          'likeable': 1,\n",
      "          'ndenise': 1,\n",
      "          'done': 1,\n",
      "          'njake': 1,\n",
      "          'busey': 1,\n",
      "          'gary': 1,\n",
      "          'buseys': 1,\n",
      "          'son': 1,\n",
      "          'wonderfully': 1,\n",
      "          'provides': 1,\n",
      "          'biggest': 1,\n",
      "          'laughs': 1,\n",
      "          'nneil': 1,\n",
      "          'remember': 1,\n",
      "          'doogie': 1,\n",
      "          'howser': 1,\n",
      "          'little': 1,\n",
      "          'wooden': 1,\n",
      "          'slightly': 1,\n",
      "          'nmichael': 1,\n",
      "          'ironside': 1,\n",
      "          'best': 1,\n",
      "          'teacher': 1,\n",
      "          'arm': 1,\n",
      "          'rises': 1,\n",
      "          'developed': 1,\n",
      "          'think': 1,\n",
      "          'ironsides': 1,\n",
      "          'presence': 1,\n",
      "          'screen': 1,\n",
      "          'particular': 1,\n",
      "          'member': 1,\n",
      "          'starmaking': 1,\n",
      "          'material': 1,\n",
      "          'members': 1,\n",
      "          'stars': 1,\n",
      "          'direction': 1,\n",
      "          'fast': 1,\n",
      "          'unrelentless': 1,\n",
      "          'nhe': 1,\n",
      "          'slows': 1,\n",
      "          'pace': 1,\n",
      "          'makes': 1,\n",
      "          'wild': 1,\n",
      "          'ride': 1,\n",
      "          'nwriter': 1,\n",
      "          'edward': 1,\n",
      "          'neumeier': 1,\n",
      "          'adapted': 1,\n",
      "          'robert': 1,\n",
      "          'heinlein': 1,\n",
      "          'writing': 1,\n",
      "          'usually': 1,\n",
      "          'corny': 1,\n",
      "          'dialogue': 1,\n",
      "          'arent': 1,\n",
      "          'required': 1,\n",
      "          'everything': 1,\n",
      "          'holes': 1,\n",
      "          'unanswered': 1,\n",
      "          'notice': 1,\n",
      "          'lingered': 1,\n",
      "          'mind': 1,\n",
      "          'namazingly': 1,\n",
      "          'going': 1,\n",
      "          'manages': 1,\n",
      "          'include': 1,\n",
      "          'issues': 1,\n",
      "          'changes': 1,\n",
      "          'fairly': 1,\n",
      "          'plausible': 1,\n",
      "          'adds': 1,\n",
      "          'layer': 1,\n",
      "          'moral': 1,\n",
      "          'debate': 1,\n",
      "          'find': 1,\n",
      "          'genre': 1,\n",
      "          'amount': 1,\n",
      "          'included': 1,\n",
      "          'carnage': 1,\n",
      "          'havent': 1,\n",
      "          'laughed': 1,\n",
      "          'loud': 1,\n",
      "          'comedies': 1,\n",
      "          'noh': 1,\n",
      "          'rate': 1,\n",
      "          'rated': 1,\n",
      "          'graphic': 1,\n",
      "          'language': 1,\n",
      "          'nudity': 1,\n",
      "          'nbelieve': 1,\n",
      "          'say': 1,\n",
      "          'young': 1,\n",
      "          'kids': 1,\n",
      "          'enough': 1,\n",
      "          '17': 1,\n",
      "          'guaranteed': 1,\n",
      "          'entertain': 1,\n",
      "          'long': 1,\n",
      "          'since': 1,\n",
      "          'cheered': 1,\n",
      "          'heros': 1,\n",
      "          'cheering': 1,\n",
      "          'dream': 1,\n",
      "          'race': 1,\n",
      "          'destroys': 1,\n",
      "          'nnow': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'porn': 6,\n",
      "          'bubbles': 5,\n",
      "          'one': 4,\n",
      "          'nthe': 4,\n",
      "          'sex': 3,\n",
      "          'galore': 3,\n",
      "          'hartley': 3,\n",
      "          'takes': 3,\n",
      "          'nthis': 3,\n",
      "          'role': 3,\n",
      "          'traditional': 3,\n",
      "          'women': 3,\n",
      "          'fantasy': 2,\n",
      "          'canadian': 2,\n",
      "          'cynthia': 2,\n",
      "          'roberts': 2,\n",
      "          'doubt': 2,\n",
      "          'title': 2,\n",
      "          'character': 2,\n",
      "          'nina': 2,\n",
      "          'films': 2,\n",
      "          'however': 2,\n",
      "          'love': 2,\n",
      "          'story': 2,\n",
      "          'romantic': 2,\n",
      "          'sexton': 2,\n",
      "          'nin': 2,\n",
      "          'tracy': 2,\n",
      "          'wright': 2,\n",
      "          'considerable': 2,\n",
      "          'godfrey': 2,\n",
      "          'macivor': 2,\n",
      "          'make': 2,\n",
      "          'presence': 2,\n",
      "          'god': 2,\n",
      "          'sexy': 2,\n",
      "          'performances': 2,\n",
      "          'nmaking': 2,\n",
      "          'debut': 2,\n",
      "          'star': 2,\n",
      "          'screen': 2,\n",
      "          'appears': 2,\n",
      "          'appearance': 2,\n",
      "          'trade': 2,\n",
      "          'place': 2,\n",
      "          'subversive': 2,\n",
      "          'funding': 2,\n",
      "          'billed': 1,\n",
      "          'feminist': 1,\n",
      "          'spirited': 1,\n",
      "          'imaginative': 1,\n",
      "          'thoroughly': 1,\n",
      "          'engaging': 1,\n",
      "          'awardwinning': 1,\n",
      "          'director': 1,\n",
      "          'destined': 1,\n",
      "          'extreme': 1,\n",
      "          'reactions': 1,\n",
      "          'ncamille': 1,\n",
      "          'paglia': 1,\n",
      "          'enthusiasts': 1,\n",
      "          'champion': 1,\n",
      "          'heartfelt': 1,\n",
      "          'tale': 1,\n",
      "          'pornactressturnedpornproducer': 1,\n",
      "          'faces': 1,\n",
      "          'uphill': 1,\n",
      "          'battle': 1,\n",
      "          'quest': 1,\n",
      "          'sexual': 1,\n",
      "          'economic': 1,\n",
      "          'independence': 1,\n",
      "          'nhowever': 1,\n",
      "          'andrea': 1,\n",
      "          'dworkin': 1,\n",
      "          'camp': 1,\n",
      "          'loathe': 1,\n",
      "          'decidedly': 1,\n",
      "          'proporn': 1,\n",
      "          'stance': 1,\n",
      "          'npolitical': 1,\n",
      "          'considerations': 1,\n",
      "          'aside': 1,\n",
      "          'delightful': 1,\n",
      "          'lesbian': 1,\n",
      "          'us': 1,\n",
      "          'whirlwind': 1,\n",
      "          'tour': 1,\n",
      "          'entanglements': 1,\n",
      "          'naive': 1,\n",
      "          'virginal': 1,\n",
      "          'young': 1,\n",
      "          'starlet': 1,\n",
      "          'dory': 1,\n",
      "          'drawers': 1,\n",
      "          'shauny': 1,\n",
      "          'backdrop': 1,\n",
      "          'loyal': 1,\n",
      "          'assistant': 1,\n",
      "          'vivian': 1,\n",
      "          'klitorsky': 1,\n",
      "          'pines': 1,\n",
      "          'longingly': 1,\n",
      "          'affections': 1,\n",
      "          'bubbly': 1,\n",
      "          'boss': 1,\n",
      "          'femmebutchfemme': 1,\n",
      "          'triangle': 1,\n",
      "          'provides': 1,\n",
      "          'humanity': 1,\n",
      "          'sensuality': 1,\n",
      "          'addition': 1,\n",
      "          'aspects': 1,\n",
      "          'stalked': 1,\n",
      "          'terrorized': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'montana': 1,\n",
      "          'daniel': 1,\n",
      "          'slimy': 1,\n",
      "          'mogul': 1,\n",
      "          'wishes': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'life': 1,\n",
      "          'miserable': 1,\n",
      "          'possibly': 1,\n",
      "          'nwhen': 1,\n",
      "          'plans': 1,\n",
      "          'sabotage': 1,\n",
      "          'latest': 1,\n",
      "          'fall': 1,\n",
      "          'snaps': 1,\n",
      "          'psychotically': 1,\n",
      "          'decides': 1,\n",
      "          'kill': 1,\n",
      "          'nthese': 1,\n",
      "          'proceedings': 1,\n",
      "          'presided': 1,\n",
      "          'heavenly': 1,\n",
      "          'ngod': 1,\n",
      "          'yes': 1,\n",
      "          'world': 1,\n",
      "          'definitely': 1,\n",
      "          'chorus': 1,\n",
      "          'undulating': 1,\n",
      "          'scantilyclad': 1,\n",
      "          'angels': 1,\n",
      "          'watchful': 1,\n",
      "          'lustful': 1,\n",
      "          'eyes': 1,\n",
      "          'events': 1,\n",
      "          'unfold': 1,\n",
      "          'adding': 1,\n",
      "          'lovely': 1,\n",
      "          'element': 1,\n",
      "          'frothy': 1,\n",
      "          'concoction': 1,\n",
      "          'bright': 1,\n",
      "          'colourful': 1,\n",
      "          'deliriously': 1,\n",
      "          'chockfull': 1,\n",
      "          'great': 1,\n",
      "          'dramatic': 1,\n",
      "          'appearing': 1,\n",
      "          '300': 1,\n",
      "          'triple': 1,\n",
      "          'x': 1,\n",
      "          'adult': 1,\n",
      "          'command': 1,\n",
      "          'assurance': 1,\n",
      "          'puts': 1,\n",
      "          'many': 1,\n",
      "          'contemporary': 1,\n",
      "          'straight': 1,\n",
      "          'actresses': 1,\n",
      "          'shame': 1,\n",
      "          'nhartley': 1,\n",
      "          'overwhelming': 1,\n",
      "          'power': 1,\n",
      "          'wonders': 1,\n",
      "          'nontriplex': 1,\n",
      "          'producers': 1,\n",
      "          'havent': 1,\n",
      "          'used': 1,\n",
      "          'bountiful': 1,\n",
      "          'talents': 1,\n",
      "          'nit': 1,\n",
      "          'also': 1,\n",
      "          'interesting': 1,\n",
      "          'note': 1,\n",
      "          'recent': 1,\n",
      "          'release': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'far': 1,\n",
      "          'doomandgloom': 1,\n",
      "          'approach': 1,\n",
      "          'industry': 1,\n",
      "          'cameo': 1,\n",
      "          'former': 1,\n",
      "          'actress': 1,\n",
      "          'annie': 1,\n",
      "          'sprinkle': 1,\n",
      "          'true': 1,\n",
      "          'artist': 1,\n",
      "          'right': 1,\n",
      "          'gives': 1,\n",
      "          'entire': 1,\n",
      "          'earthy': 1,\n",
      "          'sensual': 1,\n",
      "          'glow': 1,\n",
      "          'certainly': 1,\n",
      "          'solidifies': 1,\n",
      "          'downright': 1,\n",
      "          'justifies': 1,\n",
      "          'themes': 1,\n",
      "          'movie': 1,\n",
      "          'equally': 1,\n",
      "          'solid': 1,\n",
      "          'ndaniel': 1,\n",
      "          'appropriately': 1,\n",
      "          'chews': 1,\n",
      "          'scenery': 1,\n",
      "          'villainous': 1,\n",
      "          'lends': 1,\n",
      "          'able': 1,\n",
      "          'support': 1,\n",
      "          'complex': 1,\n",
      "          'nshauny': 1,\n",
      "          'erotic': 1,\n",
      "          'dancer': 1,\n",
      "          'pinup': 1,\n",
      "          'model': 1,\n",
      "          'makes': 1,\n",
      "          'impressive': 1,\n",
      "          'noverall': 1,\n",
      "          'wears': 1,\n",
      "          'politics': 1,\n",
      "          'sleeve': 1,\n",
      "          'proudly': 1,\n",
      "          'indeed': 1,\n",
      "          'nat': 1,\n",
      "          'point': 1,\n",
      "          'declares': 1,\n",
      "          'instead': 1,\n",
      "          'trying': 1,\n",
      "          'save': 1,\n",
      "          'working': 1,\n",
      "          'ensure': 1,\n",
      "          'safe': 1,\n",
      "          'work': 1,\n",
      "          'direction': 1,\n",
      "          'daring': 1,\n",
      "          'nroberts': 1,\n",
      "          'afraid': 1,\n",
      "          'plunge': 1,\n",
      "          'otherwise': 1,\n",
      "          'straightahead': 1,\n",
      "          'simple': 1,\n",
      "          'narrative': 1,\n",
      "          'extended': 1,\n",
      "          'extremely': 1,\n",
      "          'avantgarde': 1,\n",
      "          'montage': 1,\n",
      "          'sequences': 1,\n",
      "          'scenes': 1,\n",
      "          'especially': 1,\n",
      "          'beautiful': 1,\n",
      "          'musical': 1,\n",
      "          'score': 1,\n",
      "          'nicholas': 1,\n",
      "          'stirling': 1,\n",
      "          'blends': 1,\n",
      "          'cool': 1,\n",
      "          'jazz': 1,\n",
      "          'lounge': 1,\n",
      "          'stylings': 1,\n",
      "          'skilful': 1,\n",
      "          'cinematography': 1,\n",
      "          'harald': 1,\n",
      "          'bachmann': 1,\n",
      "          'terrifically': 1,\n",
      "          'captures': 1,\n",
      "          'blend': 1,\n",
      "          'garish': 1,\n",
      "          '70s': 1,\n",
      "          'psychedelia': 1,\n",
      "          'namazingly': 1,\n",
      "          'received': 1,\n",
      "          'good': 1,\n",
      "          'deal': 1,\n",
      "          'variety': 1,\n",
      "          'government': 1,\n",
      "          'cultural': 1,\n",
      "          'agencies': 1,\n",
      "          'speaks': 1,\n",
      "          'volumes': 1,\n",
      "          'towards': 1,\n",
      "          'importance': 1,\n",
      "          'state': 1,\n",
      "          'culture': 1,\n",
      "          'imagine': 1,\n",
      "          'entertaining': 1,\n",
      "          'original': 1,\n",
      "          'vital': 1,\n",
      "          'made': 1,\n",
      "          'setting': 1,\n",
      "          'conformity': 1,\n",
      "          'formula': 1,\n",
      "          'rule': 1,\n",
      "          'day': 1,\n",
      "          'nbubbles': 1,\n",
      "          'seems': 1,\n",
      "          'making': 1,\n",
      "          'festival': 1,\n",
      "          'rounds': 1,\n",
      "          'present': 1,\n",
      "          'appear': 1,\n",
      "          'distribution': 1,\n",
      "          'keep': 1,\n",
      "          'eye': 1,\n",
      "          'alternative': 1,\n",
      "          'listings': 1,\n",
      "          'nits': 1,\n",
      "          'funny': 1,\n",
      "          'nand': 1,\n",
      "          'shouldnt': 1,\n",
      "          'missed': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'nand': 6,\n",
      "          'supermarket': 5,\n",
      "          'woman': 5,\n",
      "          'itami': 5,\n",
      "          'also': 5,\n",
      "          'much': 5,\n",
      "          'juzo': 4,\n",
      "          'way': 4,\n",
      "          'taxing': 4,\n",
      "          'hanako': 4,\n",
      "          'many': 4,\n",
      "          'food': 3,\n",
      "          'satire': 3,\n",
      "          'films': 3,\n",
      "          'funny': 3,\n",
      "          'take': 3,\n",
      "          'prices': 3,\n",
      "          'end': 3,\n",
      "          'operation': 3,\n",
      "          'even': 3,\n",
      "          'store': 3,\n",
      "          'one': 3,\n",
      "          'director': 2,\n",
      "          'nif': 2,\n",
      "          'buy': 2,\n",
      "          'local': 2,\n",
      "          'better': 2,\n",
      "          'give': 2,\n",
      "          'go': 2,\n",
      "          'funeral': 2,\n",
      "          'returns': 2,\n",
      "          'side': 2,\n",
      "          'ngoro': 2,\n",
      "          'less': 2,\n",
      "          'else': 2,\n",
      "          'gets': 2,\n",
      "          'discovers': 2,\n",
      "          'elders': 2,\n",
      "          'new': 2,\n",
      "          'customers': 2,\n",
      "          'work': 2,\n",
      "          'along': 2,\n",
      "          'make': 2,\n",
      "          'away': 2,\n",
      "          'people': 2,\n",
      "          'things': 2,\n",
      "          'well': 2,\n",
      "          'nwith': 2,\n",
      "          'ways': 2,\n",
      "          'although': 2,\n",
      "          'would': 2,\n",
      "          'nworth': 2,\n",
      "          'seeing': 2,\n",
      "          'nwe': 2,\n",
      "          'seen': 1,\n",
      "          '21st': 1,\n",
      "          'portland': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'nfilm': 1,\n",
      "          'title': 1,\n",
      "          'country': 1,\n",
      "          'japan': 1,\n",
      "          '1997': 1,\n",
      "          'cinematography': 1,\n",
      "          'yonezo': 1,\n",
      "          'maeda': 1,\n",
      "          'music': 1,\n",
      "          'toshiyuki': 1,\n",
      "          'honda': 1,\n",
      "          'cast': 1,\n",
      "          'nobuko': 1,\n",
      "          'miyamoto': 1,\n",
      "          'masahitko': 1,\n",
      "          'tsugawa': 1,\n",
      "          'shiro': 1,\n",
      "          'ito': 1,\n",
      "          'yuji': 1,\n",
      "          'miyake': 1,\n",
      "          'akiko': 1,\n",
      "          'matsumoto': 1,\n",
      "          'super': 1,\n",
      "          'features': 1,\n",
      "          'typical': 1,\n",
      "          'nfunny': 1,\n",
      "          'pointed': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'goes': 1,\n",
      "          'nmaybe': 1,\n",
      "          'ignore': 1,\n",
      "          'strong': 1,\n",
      "          'biting': 1,\n",
      "          'deliver': 1,\n",
      "          'insight': 1,\n",
      "          'foods': 1,\n",
      "          'nhaving': 1,\n",
      "          'past': 1,\n",
      "          'made': 1,\n",
      "          'pulled': 1,\n",
      "          'every': 1,\n",
      "          'punch': 1,\n",
      "          'imaginable': 1,\n",
      "          'family': 1,\n",
      "          'traditions': 1,\n",
      "          'taxes': 1,\n",
      "          'diabolical': 1,\n",
      "          'gangsters': 1,\n",
      "          'minbo': 1,\n",
      "          'hospitals': 1,\n",
      "          'seriously': 1,\n",
      "          'ill': 1,\n",
      "          'time': 1,\n",
      "          'takes': 1,\n",
      "          'supermarkets': 1,\n",
      "          'war': 1,\n",
      "          'get': 1,\n",
      "          'consumers': 1,\n",
      "          'crazy': 1,\n",
      "          'situations': 1,\n",
      "          'creates': 1,\n",
      "          'shows': 1,\n",
      "          'another': 1,\n",
      "          'attitude': 1,\n",
      "          'corporate': 1,\n",
      "          'structure': 1,\n",
      "          'concerned': 1,\n",
      "          'profits': 1,\n",
      "          'customer': 1,\n",
      "          'competitor': 1,\n",
      "          'comes': 1,\n",
      "          'neighborhood': 1,\n",
      "          'trying': 1,\n",
      "          'business': 1,\n",
      "          'providing': 1,\n",
      "          'expensive': 1,\n",
      "          'everything': 1,\n",
      "          'sold': 1,\n",
      "          'nbargains': 1,\n",
      "          'galore': 1,\n",
      "          'name': 1,\n",
      "          'mind': 1,\n",
      "          'closure': 1,\n",
      "          'goros': 1,\n",
      "          'humbler': 1,\n",
      "          'venue': 1,\n",
      "          'mark': 1,\n",
      "          'hires': 1,\n",
      "          'housewife': 1,\n",
      "          'whose': 1,\n",
      "          'talents': 1,\n",
      "          'seem': 1,\n",
      "          'suited': 1,\n",
      "          'management': 1,\n",
      "          'anything': 1,\n",
      "          'nhanako': 1,\n",
      "          'familiar': 1,\n",
      "          'tricks': 1,\n",
      "          'trade': 1,\n",
      "          'done': 1,\n",
      "          'charge': 1,\n",
      "          'section': 1,\n",
      "          'market': 1,\n",
      "          'procedures': 1,\n",
      "          'always': 1,\n",
      "          'fresh': 1,\n",
      "          'packaging': 1,\n",
      "          'date': 1,\n",
      "          'try': 1,\n",
      "          'convince': 1,\n",
      "          'quality': 1,\n",
      "          'shelves': 1,\n",
      "          'nhanakos': 1,\n",
      "          'ideas': 1,\n",
      "          'hold': 1,\n",
      "          'starting': 1,\n",
      "          'women': 1,\n",
      "          'shop': 1,\n",
      "          'giveaways': 1,\n",
      "          'bit': 1,\n",
      "          'difference': 1,\n",
      "          'cause': 1,\n",
      "          'serious': 1,\n",
      "          'problems': 1,\n",
      "          'running': 1,\n",
      "          'na': 1,\n",
      "          'price': 1,\n",
      "          'error': 1,\n",
      "          'forces': 1,\n",
      "          'eggs': 1,\n",
      "          'low': 1,\n",
      "          'causes': 1,\n",
      "          'hassles': 1,\n",
      "          'brought': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'nas': 1,\n",
      "          'stronger': 1,\n",
      "          'competition': 1,\n",
      "          'trickery': 1,\n",
      "          'sleeve': 1,\n",
      "          'undermining': 1,\n",
      "          'paybacks': 1,\n",
      "          'managers': 1,\n",
      "          'meat': 1,\n",
      "          'fish': 1,\n",
      "          'elder': 1,\n",
      "          'supervisors': 1,\n",
      "          'neventually': 1,\n",
      "          'found': 1,\n",
      "          'tread': 1,\n",
      "          'slowly': 1,\n",
      "          'carefully': 1,\n",
      "          'showdown': 1,\n",
      "          'truth': 1,\n",
      "          'honesty': 1,\n",
      "          'win': 1,\n",
      "          'decides': 1,\n",
      "          'stay': 1,\n",
      "          'rather': 1,\n",
      "          'corrupt': 1,\n",
      "          'opponent': 1,\n",
      "          'nin': 1,\n",
      "          'process': 1,\n",
      "          'find': 1,\n",
      "          'freshness': 1,\n",
      "          'jokes': 1,\n",
      "          'word': 1,\n",
      "          'becomes': 1,\n",
      "          'important': 1,\n",
      "          'tool': 1,\n",
      "          'imagined': 1,\n",
      "          'nice': 1,\n",
      "          'performances': 1,\n",
      "          'hectic': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'sitting': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'satisfying': 1,\n",
      "          'failed': 1,\n",
      "          'love': 1,\n",
      "          'story': 1,\n",
      "          'goro': 1,\n",
      "          'come': 1,\n",
      "          'though': 1,\n",
      "          'towards': 1,\n",
      "          'suggested': 1,\n",
      "          'nbut': 1,\n",
      "          'strengths': 1,\n",
      "          'gags': 1,\n",
      "          'place': 1,\n",
      "          'lets': 1,\n",
      "          'fun': 1,\n",
      "          'n': 1,\n",
      "          'editorial': 1,\n",
      "          'died': 1,\n",
      "          'shortly': 1,\n",
      "          'finished': 1,\n",
      "          'left': 1,\n",
      "          'behind': 1,\n",
      "          'legacy': 1,\n",
      "          'comedy': 1,\n",
      "          'rare': 1,\n",
      "          'uncompromising': 1,\n",
      "          'wish': 1,\n",
      "          'able': 1,\n",
      "          'making': 1,\n",
      "          'must': 1,\n",
      "          'stories': 1,\n",
      "          'tell': 1,\n",
      "          'japanese': 1,\n",
      "          'society': 1,\n",
      "          'errant': 1,\n",
      "          'nnot': 1,\n",
      "          'say': 1,\n",
      "          'happen': 1,\n",
      "          'anywhere': 1,\n",
      "          'namerica': 1,\n",
      "          'guilty': 1,\n",
      "          'subjects': 1,\n",
      "          'anyone': 1,\n",
      "          'guts': 1,\n",
      "          'tackle': 1,\n",
      "          'could': 1,\n",
      "          'learn': 1,\n",
      "          'something': 1,\n",
      "          'specially': 1,\n",
      "          'follow': 1,\n",
      "          'nthe': 1,\n",
      "          'good': 1,\n",
      "          'later': 1,\n",
      "          'ntampopo': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nall': 1,\n",
      "          'four': 1,\n",
      "          'available': 1,\n",
      "          'video': 1,\n",
      "          'means': 1,\n",
      "          'best': 1,\n",
      "          'site': 1,\n",
      "          'foreign': 1,\n",
      "          'may': 1,\n",
      "          'nask': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'strike': 4,\n",
      "          'first': 3,\n",
      "          'chan': 3,\n",
      "          'film': 3,\n",
      "          'one': 2,\n",
      "          'jackie': 2,\n",
      "          'nfor': 2,\n",
      "          'simple': 2,\n",
      "          'reason': 2,\n",
      "          'stunts': 2,\n",
      "          'hes': 2,\n",
      "          'nthe': 2,\n",
      "          'rumble': 2,\n",
      "          'well': 2,\n",
      "          'practice': 2,\n",
      "          'almost': 2,\n",
      "          'mafia': 2,\n",
      "          'thats': 2,\n",
      "          'sum': 1,\n",
      "          'word': 1,\n",
      "          'awesome': 1,\n",
      "          'nnever': 1,\n",
      "          'life': 1,\n",
      "          'seen': 1,\n",
      "          'actor': 1,\n",
      "          'insanely': 1,\n",
      "          'dedicated': 1,\n",
      "          'performed': 1,\n",
      "          'every': 1,\n",
      "          'movie': 1,\n",
      "          'ever': 1,\n",
      "          'appeared': 1,\n",
      "          'awarded': 1,\n",
      "          'greatly': 1,\n",
      "          'tom': 1,\n",
      "          'jerry': 1,\n",
      "          'formula': 1,\n",
      "          'used': 1,\n",
      "          'make': 1,\n",
      "          'chans': 1,\n",
      "          'bronx': 1,\n",
      "          'supercop': 1,\n",
      "          'entertaining': 1,\n",
      "          'found': 1,\n",
      "          'nhowever': 1,\n",
      "          'probably': 1,\n",
      "          'exciting': 1,\n",
      "          'three': 1,\n",
      "          'makes': 1,\n",
      "          'perfect': 1,\n",
      "          'nhis': 1,\n",
      "          'last': 1,\n",
      "          'two': 1,\n",
      "          'movies': 1,\n",
      "          'like': 1,\n",
      "          'great': 1,\n",
      "          'nlike': 1,\n",
      "          'former': 1,\n",
      "          'kgb': 1,\n",
      "          'nnow': 1,\n",
      "          'must': 1,\n",
      "          'battle': 1,\n",
      "          'freezing': 1,\n",
      "          'arctic': 1,\n",
      "          'temperatures': 1,\n",
      "          'ukraine': 1,\n",
      "          'group': 1,\n",
      "          'large': 1,\n",
      "          'bad': 1,\n",
      "          'men': 1,\n",
      "          'trailer': 1,\n",
      "          'sums': 1,\n",
      "          'quite': 1,\n",
      "          'nfirst': 1,\n",
      "          'actionpacked': 1,\n",
      "          'fight': 1,\n",
      "          'scenes': 1,\n",
      "          'fast': 1,\n",
      "          'furious': 1,\n",
      "          'witty': 1,\n",
      "          'italianlike': 1,\n",
      "          'humor': 1,\n",
      "          'njackie': 1,\n",
      "          'regular': 1,\n",
      "          'comedian': 1,\n",
      "          'nwell': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'really': 1,\n",
      "          'crack': 1,\n",
      "          'example': 1,\n",
      "          'hanging': 1,\n",
      "          'roof': 1,\n",
      "          'humorously': 1,\n",
      "          'taunts': 1,\n",
      "          'foes': 1,\n",
      "          'come': 1,\n",
      "          'get': 1,\n",
      "          'claims': 1,\n",
      "          'korean': 1,\n",
      "          '007': 1,\n",
      "          'secret': 1,\n",
      "          'agent': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'neven': 1,\n",
      "          'plot': 1,\n",
      "          'improved': 1,\n",
      "          'others': 1,\n",
      "          'sortof': 1,\n",
      "          'twisted': 1,\n",
      "          'nuclearweapon': 1,\n",
      "          'smuggling': 1,\n",
      "          'deal': 1,\n",
      "          'botched': 1,\n",
      "          'takes': 1,\n",
      "          'blame': 1,\n",
      "          'nbut': 1,\n",
      "          'never': 1,\n",
      "          'fear': 1,\n",
      "          'chinese': 1,\n",
      "          'aids': 1,\n",
      "          'uncovering': 1,\n",
      "          'truth': 1,\n",
      "          'behind': 1,\n",
      "          'incident': 1,\n",
      "          'nwith': 1,\n",
      "          'highflying': 1,\n",
      "          'sidesplitting': 1,\n",
      "          'comedy': 1,\n",
      "          'surefire': 1,\n",
      "          'hit': 1,\n",
      "          'guaranteed': 1,\n",
      "          'draw': 1,\n",
      "          'major': 1,\n",
      "          'worldwide': 1,\n",
      "          'attention': 1,\n",
      "          'n': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'aliens': 5,\n",
      "          'say': 3,\n",
      "          'proof': 3,\n",
      "          'god': 3,\n",
      "          'religion': 2,\n",
      "          'believe': 2,\n",
      "          'nellie': 2,\n",
      "          'believes': 2,\n",
      "          'nhow': 2,\n",
      "          'fax': 2,\n",
      "          'one': 2,\n",
      "          'go': 2,\n",
      "          'end': 2,\n",
      "          'best': 2,\n",
      "          'movie': 2,\n",
      "          'devout': 1,\n",
      "          'atheist': 1,\n",
      "          'avowed': 1,\n",
      "          'believer': 1,\n",
      "          'idea': 1,\n",
      "          'ellie': 1,\n",
      "          'aroway': 1,\n",
      "          'jodie': 1,\n",
      "          'foster': 1,\n",
      "          'feels': 1,\n",
      "          'nbut': 1,\n",
      "          'reasons': 1,\n",
      "          'partaking': 1,\n",
      "          'different': 1,\n",
      "          'cant': 1,\n",
      "          'exactly': 1,\n",
      "          'nher': 1,\n",
      "          'reason': 1,\n",
      "          'needs': 1,\n",
      "          'solid': 1,\n",
      "          'existed': 1,\n",
      "          'therefor': 1,\n",
      "          'also': 1,\n",
      "          'spent': 1,\n",
      "          'life': 1,\n",
      "          'trying': 1,\n",
      "          'prove': 1,\n",
      "          'exist': 1,\n",
      "          'doesnt': 1,\n",
      "          'lack': 1,\n",
      "          'gereally': 1,\n",
      "          'less': 1,\n",
      "          'believed': 1,\n",
      "          'without': 1,\n",
      "          'sounding': 1,\n",
      "          'like': 1,\n",
      "          'hypocrite': 1,\n",
      "          'nthats': 1,\n",
      "          'catch22': 1,\n",
      "          'nwhen': 1,\n",
      "          'star': 1,\n",
      "          'vega': 1,\n",
      "          'plans': 1,\n",
      "          'device': 1,\n",
      "          'transport': 1,\n",
      "          'someone': 1,\n",
      "          'okay': 1,\n",
      "          'well': 1,\n",
      "          'didnt': 1,\n",
      "          'really': 1,\n",
      "          'wants': 1,\n",
      "          'atheism': 1,\n",
      "          'denied': 1,\n",
      "          'position': 1,\n",
      "          'dumb': 1,\n",
      "          'nshe': 1,\n",
      "          'discovers': 1,\n",
      "          'transmitions': 1,\n",
      "          'isnt': 1,\n",
      "          'allowed': 1,\n",
      "          'nwell': 1,\n",
      "          'bomb': 1,\n",
      "          'psychopath': 1,\n",
      "          'jake': 1,\n",
      "          'busey': 1,\n",
      "          'going': 1,\n",
      "          'way': 1,\n",
      "          'wouldve': 1,\n",
      "          'thought': 1,\n",
      "          'ncontact': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'carl': 1,\n",
      "          'sagan': 1,\n",
      "          'died': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nit': 1,\n",
      "          'alien': 1,\n",
      "          'since': 1,\n",
      "          'close': 1,\n",
      "          'encounters': 1,\n",
      "          '3rd': 1,\n",
      "          'kind': 1,\n",
      "          'film': 1,\n",
      "          'year': 1,\n",
      "          'nits': 1,\n",
      "          'views': 1,\n",
      "          'science': 1,\n",
      "          'doubt': 1,\n",
      "          'aggrivate': 1,\n",
      "          'stimulate': 1,\n",
      "          'nim': 1,\n",
      "          'glad': 1,\n",
      "          'least': 1,\n",
      "          '90s': 1,\n",
      "          'portray': 1,\n",
      "          'psitive': 1,\n",
      "          'light': 1,\n",
      "          'rather': 1,\n",
      "          'bunch': 1,\n",
      "          'slimey': 1,\n",
      "          'beasts': 1,\n",
      "          'eat': 1,\n",
      "          'insides': 1,\n",
      "          'put': 1,\n",
      "          'body': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'paradine': 8,\n",
      "          'nthe': 7,\n",
      "          'mrs': 6,\n",
      "          'case': 5,\n",
      "          'hitchcock': 4,\n",
      "          'one': 4,\n",
      "          'nas': 4,\n",
      "          'plays': 4,\n",
      "          'n': 4,\n",
      "          'first': 4,\n",
      "          'nto': 3,\n",
      "          'fine': 3,\n",
      "          'anthony': 3,\n",
      "          'gay': 3,\n",
      "          'half': 3,\n",
      "          'part': 3,\n",
      "          'id': 2,\n",
      "          'film': 2,\n",
      "          'times': 2,\n",
      "          'master': 2,\n",
      "          'movies': 2,\n",
      "          'nthis': 2,\n",
      "          'like': 2,\n",
      "          'films': 2,\n",
      "          'story': 2,\n",
      "          'husband': 2,\n",
      "          'woman': 2,\n",
      "          'music': 2,\n",
      "          'tells': 2,\n",
      "          'barrister': 2,\n",
      "          'shes': 2,\n",
      "          'wife': 2,\n",
      "          'back': 2,\n",
      "          'client': 2,\n",
      "          'comes': 2,\n",
      "          'high': 2,\n",
      "          'camera': 2,\n",
      "          'paradines': 2,\n",
      "          'nin': 2,\n",
      "          'little': 2,\n",
      "          'mr': 2,\n",
      "          'valet': 2,\n",
      "          'coburn': 2,\n",
      "          'horfield': 2,\n",
      "          'british': 2,\n",
      "          'judges': 2,\n",
      "          'many': 2,\n",
      "          'none': 2,\n",
      "          'sometimes': 2,\n",
      "          'make': 2,\n",
      "          'nomination': 2,\n",
      "          'second': 2,\n",
      "          'would': 2,\n",
      "          'figured': 1,\n",
      "          'seen': 1,\n",
      "          'every': 1,\n",
      "          'alfred': 1,\n",
      "          'least': 1,\n",
      "          'halfdozen': 1,\n",
      "          'im': 1,\n",
      "          'complaining': 1,\n",
      "          'call': 1,\n",
      "          'suspense': 1,\n",
      "          'understatement': 1,\n",
      "          '1947': 1,\n",
      "          'admittedly': 1,\n",
      "          'hitchcocks': 1,\n",
      "          'lesser': 1,\n",
      "          'turned': 1,\n",
      "          'missed': 1,\n",
      "          'well': 1,\n",
      "          'worth': 1,\n",
      "          'savoring': 1,\n",
      "          'opens': 1,\n",
      "          'rich': 1,\n",
      "          'maddalena': 1,\n",
      "          'anna': 1,\n",
      "          'arrested': 1,\n",
      "          'home': 1,\n",
      "          'poisoning': 1,\n",
      "          'blind': 1,\n",
      "          'alida': 1,\n",
      "          'valli': 1,\n",
      "          'aloof': 1,\n",
      "          'alluring': 1,\n",
      "          'world': 1,\n",
      "          'franz': 1,\n",
      "          'waxmans': 1,\n",
      "          'stark': 1,\n",
      "          'moody': 1,\n",
      "          'see': 1,\n",
      "          'prison': 1,\n",
      "          'guards': 1,\n",
      "          'divesting': 1,\n",
      "          'luxurious': 1,\n",
      "          'garments': 1,\n",
      "          'jewels': 1,\n",
      "          'nstripped': 1,\n",
      "          'raiment': 1,\n",
      "          'becomes': 1,\n",
      "          'commoner': 1,\n",
      "          'turns': 1,\n",
      "          'met': 1,\n",
      "          'brief': 1,\n",
      "          'skirmish': 1,\n",
      "          'youll': 1,\n",
      "          'lunching': 1,\n",
      "          'savoy': 1,\n",
      "          'keane': 1,\n",
      "          'ultraconfident': 1,\n",
      "          'attorney': 1,\n",
      "          'meeting': 1,\n",
      "          'predicting': 1,\n",
      "          'fast': 1,\n",
      "          'easy': 1,\n",
      "          'trial': 1,\n",
      "          'ngregory': 1,\n",
      "          'peck': 1,\n",
      "          'successful': 1,\n",
      "          'debonair': 1,\n",
      "          'murderess': 1,\n",
      "          'argues': 1,\n",
      "          'simplistically': 1,\n",
      "          'smitten': 1,\n",
      "          'beauty': 1,\n",
      "          'nhis': 1,\n",
      "          'attitude': 1,\n",
      "          'upsets': 1,\n",
      "          'beautiful': 1,\n",
      "          'increasing': 1,\n",
      "          'jealous': 1,\n",
      "          'ann': 1,\n",
      "          'todd': 1,\n",
      "          'nunlike': 1,\n",
      "          'centered': 1,\n",
      "          'thriller': 1,\n",
      "          'mystery': 1,\n",
      "          'romantic': 1,\n",
      "          'melodrama': 1,\n",
      "          'ntypical': 1,\n",
      "          'scene': 1,\n",
      "          'flings': 1,\n",
      "          'head': 1,\n",
      "          'shakes': 1,\n",
      "          'hair': 1,\n",
      "          'bathed': 1,\n",
      "          'light': 1,\n",
      "          'nshe': 1,\n",
      "          'deflects': 1,\n",
      "          'husbands': 1,\n",
      "          'affections': 1,\n",
      "          'fears': 1,\n",
      "          'beginning': 1,\n",
      "          'fall': 1,\n",
      "          'love': 1,\n",
      "          'dramatic': 1,\n",
      "          'dwells': 1,\n",
      "          'portrait': 1,\n",
      "          'nearby': 1,\n",
      "          'relatively': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'happens': 1,\n",
      "          'domestic': 1,\n",
      "          'squabbles': 1,\n",
      "          'overtones': 1,\n",
      "          'intense': 1,\n",
      "          'adulterous': 1,\n",
      "          'desires': 1,\n",
      "          'sound': 1,\n",
      "          'sweeping': 1,\n",
      "          'violins': 1,\n",
      "          'must': 1,\n",
      "          'get': 1,\n",
      "          'acquitted': 1,\n",
      "          'dies': 1,\n",
      "          'heart': 1,\n",
      "          'go': 1,\n",
      "          'nif': 1,\n",
      "          'freed': 1,\n",
      "          'able': 1,\n",
      "          'forget': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'mysterious': 1,\n",
      "          'louis': 1,\n",
      "          'jordan': 1,\n",
      "          'discussed': 1,\n",
      "          'relationships': 1,\n",
      "          'ncharles': 1,\n",
      "          'anthonys': 1,\n",
      "          'legal': 1,\n",
      "          'partner': 1,\n",
      "          'sir': 1,\n",
      "          'simon': 1,\n",
      "          'flaquer': 1,\n",
      "          'nand': 1,\n",
      "          'charles': 1,\n",
      "          'laughton': 1,\n",
      "          'looks': 1,\n",
      "          'judge': 1,\n",
      "          'lord': 1,\n",
      "          'proper': 1,\n",
      "          'society': 1,\n",
      "          'dine': 1,\n",
      "          'together': 1,\n",
      "          'house': 1,\n",
      "          'long': 1,\n",
      "          'begins': 1,\n",
      "          'ncourt': 1,\n",
      "          'tv': 1,\n",
      "          'junkies': 1,\n",
      "          'probably': 1,\n",
      "          'pick': 1,\n",
      "          'differences': 1,\n",
      "          'subtle': 1,\n",
      "          'others': 1,\n",
      "          'american': 1,\n",
      "          'judicial': 1,\n",
      "          'systems': 1,\n",
      "          'example': 1,\n",
      "          'aware': 1,\n",
      "          'speak': 1,\n",
      "          'recess': 1,\n",
      "          'process': 1,\n",
      "          'testifying': 1,\n",
      "          'wonders': 1,\n",
      "          'academy': 1,\n",
      "          'thinking': 1,\n",
      "          'oscar': 1,\n",
      "          'nominations': 1,\n",
      "          'lady': 1,\n",
      "          'sophie': 1,\n",
      "          'ethel': 1,\n",
      "          'barrymore': 1,\n",
      "          'got': 1,\n",
      "          'best': 1,\n",
      "          'supporting': 1,\n",
      "          'actress': 1,\n",
      "          'inconsequential': 1,\n",
      "          'merit': 1,\n",
      "          'big': 1,\n",
      "          'question': 1,\n",
      "          'obligatory': 1,\n",
      "          'walkon': 1,\n",
      "          'nat': 1,\n",
      "          '37': 1,\n",
      "          'minutes': 1,\n",
      "          'leaves': 1,\n",
      "          'train': 1,\n",
      "          'station': 1,\n",
      "          'carrying': 1,\n",
      "          'large': 1,\n",
      "          'musical': 1,\n",
      "          'instrument': 1,\n",
      "          'ndont': 1,\n",
      "          'miss': 1,\n",
      "          'finally': 1,\n",
      "          'alive': 1,\n",
      "          'gets': 1,\n",
      "          'courtroom': 1,\n",
      "          'great': 1,\n",
      "          'shows': 1,\n",
      "          'hand': 1,\n",
      "          'tensions': 1,\n",
      "          'build': 1,\n",
      "          'rapidly': 1,\n",
      "          'lay': 1,\n",
      "          'fallow': 1,\n",
      "          'nwatch': 1,\n",
      "          'angles': 1,\n",
      "          'way': 1,\n",
      "          'set': 1,\n",
      "          'exact': 1,\n",
      "          'tone': 1,\n",
      "          'trials': 1,\n",
      "          'action': 1,\n",
      "          'explains': 1,\n",
      "          'simple': 1,\n",
      "          '3': 1,\n",
      "          'possibilities': 1,\n",
      "          'poisoned': 1,\n",
      "          'end': 1,\n",
      "          'includes': 1,\n",
      "          'devastating': 1,\n",
      "          'revelations': 1,\n",
      "          'nice': 1,\n",
      "          'twists': 1,\n",
      "          'bad': 1,\n",
      "          'languid': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '53': 1,\n",
      "          'picture': 1,\n",
      "          'black': 1,\n",
      "          'white': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'mature': 1,\n",
      "          'themes': 1,\n",
      "          'kids': 1,\n",
      "          'around': 1,\n",
      "          'nine': 1,\n",
      "          'interested': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 11,\n",
      "          'wayland': 5,\n",
      "          'like': 5,\n",
      "          'deceiver': 4,\n",
      "          'film': 4,\n",
      "          'ndeceiver': 4,\n",
      "          'police': 3,\n",
      "          'michael': 3,\n",
      "          'two': 3,\n",
      "          'three': 3,\n",
      "          'audience': 3,\n",
      "          'effective': 3,\n",
      "          'work': 3,\n",
      "          'investigation': 2,\n",
      "          'prostitute': 2,\n",
      "          'zellweger': 2,\n",
      "          'none': 2,\n",
      "          'half': 2,\n",
      "          'station': 2,\n",
      "          'miles': 2,\n",
      "          'away': 2,\n",
      "          'chris': 2,\n",
      "          'penn': 2,\n",
      "          'kennesaw': 2,\n",
      "          'rooker': 2,\n",
      "          'leads': 2,\n",
      "          'one': 2,\n",
      "          'suspect': 2,\n",
      "          'tim': 2,\n",
      "          'roth': 2,\n",
      "          'character': 2,\n",
      "          'movie': 2,\n",
      "          'plays': 2,\n",
      "          'us': 2,\n",
      "          'waylands': 2,\n",
      "          'contrast': 2,\n",
      "          'kennesaws': 2,\n",
      "          'setting': 2,\n",
      "          'room': 2,\n",
      "          'days': 2,\n",
      "          'questions': 2,\n",
      "          'characters': 2,\n",
      "          'plot': 2,\n",
      "          'wife': 2,\n",
      "          'arquette': 2,\n",
      "          'elizabeths': 2,\n",
      "          'mostly': 2,\n",
      "          'play': 2,\n",
      "          'atmosphere': 2,\n",
      "          'could': 2,\n",
      "          'manner': 2,\n",
      "          'occasionally': 2,\n",
      "          'pates': 2,\n",
      "          'use': 2,\n",
      "          'noir': 2,\n",
      "          'although': 2,\n",
      "          'nsome': 2,\n",
      "          'things': 2,\n",
      "          'several': 2,\n",
      "          'performance': 2,\n",
      "          'arent': 2,\n",
      "          'best': 2,\n",
      "          'never': 2,\n",
      "          'wednesday': 1,\n",
      "          'march': 1,\n",
      "          '27': 1,\n",
      "          'murder': 1,\n",
      "          'underway': 1,\n",
      "          'charlotte': 1,\n",
      "          'south': 1,\n",
      "          'carolina': 1,\n",
      "          'crime': 1,\n",
      "          'young': 1,\n",
      "          'elizabeth': 1,\n",
      "          'renee': 1,\n",
      "          'brutally': 1,\n",
      "          'slain': 1,\n",
      "          'severed': 1,\n",
      "          'body': 1,\n",
      "          'found': 1,\n",
      "          'bag': 1,\n",
      "          'train': 1,\n",
      "          'discovered': 1,\n",
      "          'trunk': 1,\n",
      "          'harbor': 1,\n",
      "          'authority': 1,\n",
      "          'duo': 1,\n",
      "          'braxton': 1,\n",
      "          'strapped': 1,\n",
      "          'nat': 1,\n",
      "          'moment': 1,\n",
      "          'possible': 1,\n",
      "          'wealthy': 1,\n",
      "          'unemployed': 1,\n",
      "          'genius': 1,\n",
      "          'graduated': 1,\n",
      "          'summa': 1,\n",
      "          'cum': 1,\n",
      "          'laude': 1,\n",
      "          'princeton': 1,\n",
      "          'appears': 1,\n",
      "          'least': 1,\n",
      "          'likely': 1,\n",
      "          'commit': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'heinous': 1,\n",
      "          'act': 1,\n",
      "          'nthats': 1,\n",
      "          'premise': 1,\n",
      "          'new': 1,\n",
      "          'thriller': 1,\n",
      "          'pate': 1,\n",
      "          'brothers': 1,\n",
      "          'jonas': 1,\n",
      "          'josh': 1,\n",
      "          'made': 1,\n",
      "          'mark': 1,\n",
      "          'world': 1,\n",
      "          'years': 1,\n",
      "          'ago': 1,\n",
      "          'sundance': 1,\n",
      "          'grave': 1,\n",
      "          'mind': 1,\n",
      "          'game': 1,\n",
      "          'intellectually': 1,\n",
      "          'superior': 1,\n",
      "          'sobright': 1,\n",
      "          'cops': 1,\n",
      "          'captions': 1,\n",
      "          'early': 1,\n",
      "          'proceedings': 1,\n",
      "          'let': 1,\n",
      "          'know': 1,\n",
      "          'iq': 1,\n",
      "          '151': 1,\n",
      "          '122': 1,\n",
      "          'braxtons': 1,\n",
      "          '102': 1,\n",
      "          'interrogation': 1,\n",
      "          'lie': 1,\n",
      "          'detector': 1,\n",
      "          'test': 1,\n",
      "          'administered': 1,\n",
      "          'nover': 1,\n",
      "          'returns': 1,\n",
      "          'answer': 1,\n",
      "          'drama': 1,\n",
      "          'tension': 1,\n",
      "          'among': 1,\n",
      "          'gradually': 1,\n",
      "          'escalates': 1,\n",
      "          'inevitably': 1,\n",
      "          'boils': 1,\n",
      "          'nother': 1,\n",
      "          'elements': 1,\n",
      "          'thrown': 1,\n",
      "          'good': 1,\n",
      "          'measure': 1,\n",
      "          'nwayland': 1,\n",
      "          'suffers': 1,\n",
      "          'peculiar': 1,\n",
      "          'kind': 1,\n",
      "          'epilepsy': 1,\n",
      "          'stressful': 1,\n",
      "          'situations': 1,\n",
      "          'render': 1,\n",
      "          'virtually': 1,\n",
      "          'catatonic': 1,\n",
      "          'extremely': 1,\n",
      "          'violent': 1,\n",
      "          'nbraxton': 1,\n",
      "          'compulsive': 1,\n",
      "          'gambler': 1,\n",
      "          'deep': 1,\n",
      "          'debt': 1,\n",
      "          'local': 1,\n",
      "          'syndicate': 1,\n",
      "          'nand': 1,\n",
      "          'haunted': 1,\n",
      "          'dark': 1,\n",
      "          'abusive': 1,\n",
      "          'side': 1,\n",
      "          'delights': 1,\n",
      "          'terrorizing': 1,\n",
      "          'women': 1,\n",
      "          'especially': 1,\n",
      "          'rosanna': 1,\n",
      "          'suspects': 1,\n",
      "          'unfaithful': 1,\n",
      "          'foibles': 1,\n",
      "          'failings': 1,\n",
      "          'brought': 1,\n",
      "          'open': 1,\n",
      "          'mystery': 1,\n",
      "          'around': 1,\n",
      "          'death': 1,\n",
      "          'deepens': 1,\n",
      "          'becomes': 1,\n",
      "          'unclear': 1,\n",
      "          'upper': 1,\n",
      "          'hand': 1,\n",
      "          'questioners': 1,\n",
      "          'transpires': 1,\n",
      "          'dimlylit': 1,\n",
      "          'involves': 1,\n",
      "          'lot': 1,\n",
      "          'smart': 1,\n",
      "          'dialogue': 1,\n",
      "          'feel': 1,\n",
      "          'david': 1,\n",
      "          'mamet': 1,\n",
      "          'edgy': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'tense': 1,\n",
      "          'explosive': 1,\n",
      "          'pivotal': 1,\n",
      "          'moments': 1,\n",
      "          'confrontation': 1,\n",
      "          'riveting': 1,\n",
      "          'power': 1,\n",
      "          'grab': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'end': 1,\n",
      "          'succumbs': 1,\n",
      "          'need': 1,\n",
      "          'throw': 1,\n",
      "          'last': 1,\n",
      "          'unexpected': 1,\n",
      "          'twist': 1,\n",
      "          'undoing': 1,\n",
      "          'nfor': 1,\n",
      "          'surprise': 1,\n",
      "          'certainly': 1,\n",
      "          'shock': 1,\n",
      "          'viewers': 1,\n",
      "          'also': 1,\n",
      "          'stretches': 1,\n",
      "          'credulity': 1,\n",
      "          'much': 1,\n",
      "          'raises': 1,\n",
      "          'answers': 1,\n",
      "          'nits': 1,\n",
      "          'wrapup': 1,\n",
      "          'dont': 1,\n",
      "          'think': 1,\n",
      "          'carefully': 1,\n",
      "          'full': 1,\n",
      "          'implications': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'whole': 1,\n",
      "          'fast': 1,\n",
      "          'loose': 1,\n",
      "          'reality': 1,\n",
      "          'logic': 1,\n",
      "          'npolice': 1,\n",
      "          'procedure': 1,\n",
      "          'totally': 1,\n",
      "          'ignored': 1,\n",
      "          'almost': 1,\n",
      "          'impossible': 1,\n",
      "          'accept': 1,\n",
      "          'criminal': 1,\n",
      "          'would': 1,\n",
      "          'proceed': 1,\n",
      "          'nbut': 1,\n",
      "          'real': 1,\n",
      "          'focus': 1,\n",
      "          'interaction': 1,\n",
      "          'details': 1,\n",
      "          'gets': 1,\n",
      "          'instances': 1,\n",
      "          'occur': 1,\n",
      "          'primarily': 1,\n",
      "          'flashbacks': 1,\n",
      "          'featuring': 1,\n",
      "          'employ': 1,\n",
      "          'number': 1,\n",
      "          'interesting': 1,\n",
      "          'techniques': 1,\n",
      "          'present': 1,\n",
      "          'vignettes': 1,\n",
      "          'final': 1,\n",
      "          'hours': 1,\n",
      "          'intriguing': 1,\n",
      "          'unreliable': 1,\n",
      "          'narrator': 1,\n",
      "          'underlining': 1,\n",
      "          'discrepancies': 1,\n",
      "          'voiceover': 1,\n",
      "          'visually': 1,\n",
      "          'showing': 1,\n",
      "          'really': 1,\n",
      "          'happened': 1,\n",
      "          'nmoments': 1,\n",
      "          'dismissed': 1,\n",
      "          'gimmicks': 1,\n",
      "          'obviously': 1,\n",
      "          'fashioned': 1,\n",
      "          'classic': 1,\n",
      "          'drips': 1,\n",
      "          'nthere': 1,\n",
      "          'fascinating': 1,\n",
      "          'stylistic': 1,\n",
      "          'touches': 1,\n",
      "          'example': 1,\n",
      "          'contemporary': 1,\n",
      "          'telephones': 1,\n",
      "          'oldfashioned': 1,\n",
      "          'rotary': 1,\n",
      "          'models': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'bill': 1,\n",
      "          'butler': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'unconventional': 1,\n",
      "          'camera': 1,\n",
      "          'liven': 1,\n",
      "          'deceivers': 1,\n",
      "          'look': 1,\n",
      "          'tries': 1,\n",
      "          'involve': 1,\n",
      "          'light': 1,\n",
      "          'shadow': 1,\n",
      "          'exceptionally': 1,\n",
      "          'well': 1,\n",
      "          'others': 1,\n",
      "          'lazy': 1,\n",
      "          'susan': 1,\n",
      "          'shots': 1,\n",
      "          'seem': 1,\n",
      "          'unnecessary': 1,\n",
      "          'visual': 1,\n",
      "          'tricks': 1,\n",
      "          'nas': 1,\n",
      "          'gives': 1,\n",
      "          'films': 1,\n",
      "          'top': 1,\n",
      "          'despite': 1,\n",
      "          'treading': 1,\n",
      "          'tightrope': 1,\n",
      "          'acting': 1,\n",
      "          'overacting': 1,\n",
      "          'nroth': 1,\n",
      "          'makes': 1,\n",
      "          'believe': 1,\n",
      "          'brilliant': 1,\n",
      "          'troubled': 1,\n",
      "          'hes': 1,\n",
      "          'supposed': 1,\n",
      "          'nboth': 1,\n",
      "          'familiar': 1,\n",
      "          'types': 1,\n",
      "          'npenns': 1,\n",
      "          'uninspired': 1,\n",
      "          'rookers': 1,\n",
      "          'lacks': 1,\n",
      "          'subtlety': 1,\n",
      "          'turned': 1,\n",
      "          'supporting': 1,\n",
      "          'actors': 1,\n",
      "          'nrenee': 1,\n",
      "          'role': 1,\n",
      "          'thats': 1,\n",
      "          'starmaking': 1,\n",
      "          'turn': 1,\n",
      "          'jerry': 1,\n",
      "          'maguire': 1,\n",
      "          'brings': 1,\n",
      "          'note': 1,\n",
      "          'vulnerability': 1,\n",
      "          'humanity': 1,\n",
      "          'part': 1,\n",
      "          'easily': 1,\n",
      "          'become': 1,\n",
      "          'caricature': 1,\n",
      "          'nrosanna': 1,\n",
      "          'solid': 1,\n",
      "          'parks': 1,\n",
      "          'delivers': 1,\n",
      "          'wonderful': 1,\n",
      "          'scenes': 1,\n",
      "          'psychiatrist': 1,\n",
      "          'whos': 1,\n",
      "          'entrusted': 1,\n",
      "          'evaluating': 1,\n",
      "          'condition': 1,\n",
      "          'talks': 1,\n",
      "          'nplot': 1,\n",
      "          'points': 1,\n",
      "          'hammered': 1,\n",
      "          'home': 1,\n",
      "          'ending': 1,\n",
      "          'weaknesses': 1,\n",
      "          'everything': 1,\n",
      "          'isnt': 1,\n",
      "          'spelled': 1,\n",
      "          'bold': 1,\n",
      "          'letters': 1,\n",
      "          'give': 1,\n",
      "          'members': 1,\n",
      "          'credit': 1,\n",
      "          'brains': 1,\n",
      "          'increasingly': 1,\n",
      "          'rare': 1,\n",
      "          'characteristic': 1,\n",
      "          'makers': 1,\n",
      "          'noccasionally': 1,\n",
      "          'gripping': 1,\n",
      "          'uninteresting': 1,\n",
      "          'fine': 1,\n",
      "          'effort': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'jack': 4,\n",
      "          'emotion': 3,\n",
      "          'nit': 3,\n",
      "          'nthe': 3,\n",
      "          'rose': 3,\n",
      "          'titanic': 2,\n",
      "          'made': 2,\n",
      "          'movie': 2,\n",
      "          'paxton': 2,\n",
      "          'ships': 2,\n",
      "          'comes': 2,\n",
      "          'nude': 2,\n",
      "          'drawing': 2,\n",
      "          'young': 2,\n",
      "          'woman': 2,\n",
      "          'seems': 2,\n",
      "          'time': 2,\n",
      "          'us': 2,\n",
      "          'people': 2,\n",
      "          'certain': 2,\n",
      "          '200': 2,\n",
      "          'million': 2,\n",
      "          'also': 2,\n",
      "          'first': 2,\n",
      "          'april': 1,\n",
      "          '12th': 1,\n",
      "          '1912': 1,\n",
      "          'astonishing': 1,\n",
      "          'shipwreck': 1,\n",
      "          'history': 1,\n",
      "          'world': 1,\n",
      "          'occurred': 1,\n",
      "          'non': 1,\n",
      "          'fateful': 1,\n",
      "          'night': 1,\n",
      "          'sunk': 1,\n",
      "          'nnow': 1,\n",
      "          '50': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'nand': 1,\n",
      "          'njames': 1,\n",
      "          'camerons': 1,\n",
      "          'newest': 1,\n",
      "          'landmark': 1,\n",
      "          'storytelling': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'starts': 1,\n",
      "          'present': 1,\n",
      "          'bill': 1,\n",
      "          'band': 1,\n",
      "          'scientists': 1,\n",
      "          'explore': 1,\n",
      "          'depths': 1,\n",
      "          'wreckage': 1,\n",
      "          'nexploring': 1,\n",
      "          'old': 1,\n",
      "          'chest': 1,\n",
      "          'across': 1,\n",
      "          'televised': 1,\n",
      "          'gloria': 1,\n",
      "          'stuart': 1,\n",
      "          'whose': 1,\n",
      "          'portrait': 1,\n",
      "          'painting': 1,\n",
      "          'forward': 1,\n",
      "          'slowly': 1,\n",
      "          'surely': 1,\n",
      "          'story': 1,\n",
      "          'told': 1,\n",
      "          'nleonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'stars': 1,\n",
      "          'dawson': 1,\n",
      "          'man': 1,\n",
      "          'sketch': 1,\n",
      "          'book': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'intelligent': 1,\n",
      "          'mind': 1,\n",
      "          'much': 1,\n",
      "          'else': 1,\n",
      "          'wins': 1,\n",
      "          'ticket': 1,\n",
      "          'aboard': 1,\n",
      "          'poker': 1,\n",
      "          'game': 1,\n",
      "          'perfect': 1,\n",
      "          'match': 1,\n",
      "          'dewitt': 1,\n",
      "          'bukater': 1,\n",
      "          'kate': 1,\n",
      "          'winslett': 1,\n",
      "          'nshe': 1,\n",
      "          'grows': 1,\n",
      "          'love': 1,\n",
      "          'unable': 1,\n",
      "          'escape': 1,\n",
      "          'slimy': 1,\n",
      "          'clutches': 1,\n",
      "          'arranged': 1,\n",
      "          'fiance': 1,\n",
      "          'cal': 1,\n",
      "          'hockley': 1,\n",
      "          'billy': 1,\n",
      "          'zane': 1,\n",
      "          'takes': 1,\n",
      "          'makes': 1,\n",
      "          'care': 1,\n",
      "          'characters': 1,\n",
      "          'shows': 1,\n",
      "          'full': 1,\n",
      "          'aspects': 1,\n",
      "          'human': 1,\n",
      "          'leads': 1,\n",
      "          'shine': 1,\n",
      "          'bad': 1,\n",
      "          'performance': 1,\n",
      "          'fact': 1,\n",
      "          'like': 1,\n",
      "          'performances': 1,\n",
      "          'genuine': 1,\n",
      "          'trapped': 1,\n",
      "          'doomed': 1,\n",
      "          'vessel': 1,\n",
      "          'facing': 1,\n",
      "          'death': 1,\n",
      "          'nwatching': 1,\n",
      "          'amazed': 1,\n",
      "          'vivid': 1,\n",
      "          'real': 1,\n",
      "          'situations': 1,\n",
      "          'feel': 1,\n",
      "          'spend': 1,\n",
      "          'together': 1,\n",
      "          'thirdclassparty': 1,\n",
      "          'naivety': 1,\n",
      "          'feels': 1,\n",
      "          'skecthes': 1,\n",
      "          'terror': 1,\n",
      "          'felt': 1,\n",
      "          'onboard': 1,\n",
      "          'doom': 1,\n",
      "          'turns': 1,\n",
      "          'cowards': 1,\n",
      "          'heroes': 1,\n",
      "          'nthis': 1,\n",
      "          'expensive': 1,\n",
      "          'ever': 1,\n",
      "          'destined': 1,\n",
      "          'make': 1,\n",
      "          'profit': 1,\n",
      "          'back': 1,\n",
      "          'warmth': 1,\n",
      "          'year': 1,\n",
      "          'even': 1,\n",
      "          'decade': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'dollar': 1,\n",
      "          'romance': 1,\n",
      "          'every': 1,\n",
      "          'critic': 1,\n",
      "          'country': 1,\n",
      "          'agree': 1,\n",
      "          'indeed': 1,\n",
      "          'money': 1,\n",
      "          'extremely': 1,\n",
      "          'n': 1,\n",
      "          'well': 1,\n",
      "          'nspent': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'band': 8,\n",
      "          'song': 5,\n",
      "          'group': 4,\n",
      "          'nbut': 3,\n",
      "          'fame': 3,\n",
      "          'lead': 3,\n",
      "          'become': 3,\n",
      "          'nthe': 3,\n",
      "          'contest': 3,\n",
      "          'much': 3,\n",
      "          'thing': 2,\n",
      "          'film': 2,\n",
      "          'hanks': 2,\n",
      "          'enjoyable': 2,\n",
      "          'wonders': 2,\n",
      "          'fastest': 2,\n",
      "          'selling': 2,\n",
      "          'album': 2,\n",
      "          'another': 2,\n",
      "          'gig': 2,\n",
      "          'play': 2,\n",
      "          'guy': 2,\n",
      "          'nhe': 2,\n",
      "          'well': 2,\n",
      "          'way': 2,\n",
      "          'doesnt': 2,\n",
      "          'playtone': 2,\n",
      "          'records': 2,\n",
      "          'members': 2,\n",
      "          'appear': 2,\n",
      "          'television': 2,\n",
      "          'things': 2,\n",
      "          'work': 2,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'tom': 1,\n",
      "          'tale': 1,\n",
      "          'fictional': 1,\n",
      "          'goes': 1,\n",
      "          'garage': 1,\n",
      "          'country': 1,\n",
      "          'question': 1,\n",
      "          'arrises': 1,\n",
      "          'seduction': 1,\n",
      "          'fortune': 1,\n",
      "          'corrupt': 1,\n",
      "          'onehit': 1,\n",
      "          'wonder': 1,\n",
      "          'stick': 1,\n",
      "          'together': 1,\n",
      "          'next': 1,\n",
      "          'teen': 1,\n",
      "          'sensations': 1,\n",
      "          'oneders': 1,\n",
      "          'originally': 1,\n",
      "          'known': 1,\n",
      "          'first': 1,\n",
      "          'smalltime': 1,\n",
      "          'njimmy': 1,\n",
      "          'singer': 1,\n",
      "          'written': 1,\n",
      "          'catchy': 1,\n",
      "          'intends': 1,\n",
      "          'short': 1,\n",
      "          'time': 1,\n",
      "          'begins': 1,\n",
      "          'current': 1,\n",
      "          'drummer': 1,\n",
      "          'becomes': 1,\n",
      "          'injured': 1,\n",
      "          'replacement': 1,\n",
      "          'needed': 1,\n",
      "          'nenter': 1,\n",
      "          'patterson': 1,\n",
      "          'skilled': 1,\n",
      "          'musician': 1,\n",
      "          'currently': 1,\n",
      "          'works': 1,\n",
      "          'fathers': 1,\n",
      "          'appliance': 1,\n",
      "          'store': 1,\n",
      "          'looking': 1,\n",
      "          'break': 1,\n",
      "          'free': 1,\n",
      "          'restricting': 1,\n",
      "          'clutches': 1,\n",
      "          'bind': 1,\n",
      "          'seems': 1,\n",
      "          'fit': 1,\n",
      "          'takes': 1,\n",
      "          'stage': 1,\n",
      "          'nwhen': 1,\n",
      "          'begin': 1,\n",
      "          'guys': 1,\n",
      "          'beat': 1,\n",
      "          'fast': 1,\n",
      "          'pace': 1,\n",
      "          'intended': 1,\n",
      "          'nit': 1,\n",
      "          'looks': 1,\n",
      "          'though': 1,\n",
      "          'doomed': 1,\n",
      "          'failure': 1,\n",
      "          'new': 1,\n",
      "          'hit': 1,\n",
      "          'nthis': 1,\n",
      "          'leads': 1,\n",
      "          'soon': 1,\n",
      "          'enough': 1,\n",
      "          'agent': 1,\n",
      "          'get': 1,\n",
      "          'played': 1,\n",
      "          'radio': 1,\n",
      "          'neventually': 1,\n",
      "          'mr': 1,\n",
      "          'white': 1,\n",
      "          'approaches': 1,\n",
      "          'informs': 1,\n",
      "          'want': 1,\n",
      "          'release': 1,\n",
      "          'record': 1,\n",
      "          'nbefore': 1,\n",
      "          'say': 1,\n",
      "          'billboard': 1,\n",
      "          'renamed': 1,\n",
      "          'speeding': 1,\n",
      "          'gigs': 1,\n",
      "          'getting': 1,\n",
      "          'better': 1,\n",
      "          'increasing': 1,\n",
      "          'history': 1,\n",
      "          'invited': 1,\n",
      "          'feature': 1,\n",
      "          'fly': 1,\n",
      "          'hollywood': 1,\n",
      "          'nafter': 1,\n",
      "          'appearance': 1,\n",
      "          'start': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'ntwo': 1,\n",
      "          'pretty': 1,\n",
      "          'disappear': 1,\n",
      "          'working': 1,\n",
      "          'jimmy': 1,\n",
      "          'nwill': 1,\n",
      "          'split': 1,\n",
      "          'go': 1,\n",
      "          'separate': 1,\n",
      "          'journeys': 1,\n",
      "          'towards': 1,\n",
      "          'success': 1,\n",
      "          'nthat': 1,\n",
      "          'complete': 1,\n",
      "          'nifty': 1,\n",
      "          'original': 1,\n",
      "          'actually': 1,\n",
      "          'sounded': 1,\n",
      "          'authentic': 1,\n",
      "          'fun': 1,\n",
      "          'movie': 1,\n",
      "          'although': 1,\n",
      "          'clear': 1,\n",
      "          'wants': 1,\n",
      "          'comedy': 1,\n",
      "          'drama': 1,\n",
      "          'romance': 1,\n",
      "          'wellmade': 1,\n",
      "          'look': 1,\n",
      "          'world': 1,\n",
      "          'music': 1,\n",
      "          'ntom': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'good': 1,\n",
      "          'one': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'mute': 5,\n",
      "          'witness': 3,\n",
      "          'first': 3,\n",
      "          'movie': 2,\n",
      "          'moscow': 2,\n",
      "          'snuff': 2,\n",
      "          'subsequently': 2,\n",
      "          'sister': 2,\n",
      "          'video': 2,\n",
      "          'one': 2,\n",
      "          'nthe': 2,\n",
      "          'billys': 2,\n",
      "          'figures': 2,\n",
      "          'comic': 2,\n",
      "          'several': 2,\n",
      "          'scenes': 2,\n",
      "          'synopsis': 1,\n",
      "          'attractive': 1,\n",
      "          'makeup': 1,\n",
      "          'artist': 1,\n",
      "          'working': 1,\n",
      "          'ultracheesy': 1,\n",
      "          'slasher': 1,\n",
      "          'witnesses': 1,\n",
      "          'production': 1,\n",
      "          'brutal': 1,\n",
      "          'chased': 1,\n",
      "          'really': 1,\n",
      "          'bad': 1,\n",
      "          'russians': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'artists': 1,\n",
      "          'boyfriend': 1,\n",
      "          'clumsily': 1,\n",
      "          'try': 1,\n",
      "          'save': 1,\n",
      "          'ncomments': 1,\n",
      "          'came': 1,\n",
      "          'surprise': 1,\n",
      "          'time': 1,\n",
      "          'watched': 1,\n",
      "          'ndrawn': 1,\n",
      "          'clever': 1,\n",
      "          'artwork': 1,\n",
      "          'box': 1,\n",
      "          'rented': 1,\n",
      "          'expecting': 1,\n",
      "          'complete': 1,\n",
      "          'turkey': 1,\n",
      "          'nmute': 1,\n",
      "          'however': 1,\n",
      "          'original': 1,\n",
      "          'offbeat': 1,\n",
      "          'wellmade': 1,\n",
      "          'nits': 1,\n",
      "          'cool': 1,\n",
      "          'little': 1,\n",
      "          'finds': 1,\n",
      "          'seems': 1,\n",
      "          'know': 1,\n",
      "          'nive': 1,\n",
      "          'found': 1,\n",
      "          'rental': 1,\n",
      "          'places': 1,\n",
      "          'visit': 1,\n",
      "          'may': 1,\n",
      "          'seen': 1,\n",
      "          'occasion': 1,\n",
      "          'independent': 1,\n",
      "          'channel': 1,\n",
      "          'hour': 1,\n",
      "          'extremely': 1,\n",
      "          'tense': 1,\n",
      "          'billy': 1,\n",
      "          'quite': 1,\n",
      "          'believable': 1,\n",
      "          'heroine': 1,\n",
      "          'sees': 1,\n",
      "          'members': 1,\n",
      "          'russian': 1,\n",
      "          'mob': 1,\n",
      "          'brutally': 1,\n",
      "          'kill': 1,\n",
      "          'prostitute': 1,\n",
      "          'filming': 1,\n",
      "          'illegal': 1,\n",
      "          'rest': 1,\n",
      "          'takes': 1,\n",
      "          'good': 1,\n",
      "          'advantage': 1,\n",
      "          'vulnerable': 1,\n",
      "          'position': 1,\n",
      "          'foreigner': 1,\n",
      "          'pursued': 1,\n",
      "          'powerful': 1,\n",
      "          'criminal': 1,\n",
      "          'nto': 1,\n",
      "          'throw': 1,\n",
      "          'curveball': 1,\n",
      "          'fray': 1,\n",
      "          'karen': 1,\n",
      "          'filmmaking': 1,\n",
      "          'beau': 1,\n",
      "          'become': 1,\n",
      "          'bizarre': 1,\n",
      "          'relief': 1,\n",
      "          'offset': 1,\n",
      "          'violent': 1,\n",
      "          'sequences': 1,\n",
      "          'genuinely': 1,\n",
      "          'funny': 1,\n",
      "          'na': 1,\n",
      "          'disappointingly': 1,\n",
      "          'trite': 1,\n",
      "          'ending': 1,\n",
      "          'occasional': 1,\n",
      "          'blunders': 1,\n",
      "          'two': 1,\n",
      "          'things': 1,\n",
      "          'mar': 1,\n",
      "          'otherwise': 1,\n",
      "          'suspenseful': 1,\n",
      "          'nlook': 1,\n",
      "          'alec': 1,\n",
      "          'guinness': 1,\n",
      "          'obiwan': 1,\n",
      "          'kenobi': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'trilogy': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'evil': 1,\n",
      "          'reaper': 1,\n",
      "          'ndefinately': 1,\n",
      "          'check': 1,\n",
      "          'although': 1,\n",
      "          'word': 1,\n",
      "          'warning': 1,\n",
      "          'contain': 1,\n",
      "          'rather': 1,\n",
      "          'grisly': 1,\n",
      "          'violence': 1,\n",
      "          'certainly': 1,\n",
      "          'arent': 1,\n",
      "          'squeamish': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'italian': 5,\n",
      "          'bava': 5,\n",
      "          'horror': 4,\n",
      "          'door': 4,\n",
      "          'beyond': 3,\n",
      "          'ii': 3,\n",
      "          'film': 3,\n",
      "          'dora': 3,\n",
      "          'movies': 2,\n",
      "          'director': 2,\n",
      "          'chair': 2,\n",
      "          'one': 2,\n",
      "          'note': 2,\n",
      "          'behind': 2,\n",
      "          'story': 2,\n",
      "          'son': 2,\n",
      "          'marco': 2,\n",
      "          'nthe': 2,\n",
      "          'bruno': 2,\n",
      "          'usually': 2,\n",
      "          'somehow': 2,\n",
      "          'suffering': 2,\n",
      "          'surprisingly': 2,\n",
      "          'grandfather': 1,\n",
      "          'late': 1,\n",
      "          'mario': 1,\n",
      "          'credits': 1,\n",
      "          'nearly': 1,\n",
      "          '100': 1,\n",
      "          'films': 1,\n",
      "          'tv': 1,\n",
      "          'produced': 1,\n",
      "          'italy': 1,\n",
      "          '1939': 1,\n",
      "          'death': 1,\n",
      "          'early': 1,\n",
      "          '80s': 1,\n",
      "          'nmore': 1,\n",
      "          'practiced': 1,\n",
      "          'cinematographer': 1,\n",
      "          'nonetheless': 1,\n",
      "          'sat': 1,\n",
      "          'directors': 1,\n",
      "          'project': 1,\n",
      "          'turned': 1,\n",
      "          'last': 1,\n",
      "          'fulllength': 1,\n",
      "          'feature': 1,\n",
      "          'nalongside': 1,\n",
      "          'appalling': 1,\n",
      "          'zombie': 1,\n",
      "          'schlock': 1,\n",
      "          'hacks': 1,\n",
      "          'like': 1,\n",
      "          'lucio': 1,\n",
      "          'fulci': 1,\n",
      "          'simply': 1,\n",
      "          'revelation': 1,\n",
      "          'nin': 1,\n",
      "          'day': 1,\n",
      "          'considered': 1,\n",
      "          'great': 1,\n",
      "          'filmmaker': 1,\n",
      "          'yet': 1,\n",
      "          'fashioned': 1,\n",
      "          'finest': 1,\n",
      "          '1970s': 1,\n",
      "          'n': 1,\n",
      "          'connection': 1,\n",
      "          '1975': 1,\n",
      "          'exorcistrip': 1,\n",
      "          'unexplained': 1,\n",
      "          'reason': 1,\n",
      "          'given': 1,\n",
      "          'related': 1,\n",
      "          'title': 1,\n",
      "          'release': 1,\n",
      "          'usa': 1,\n",
      "          'australia': 1,\n",
      "          'nthis': 1,\n",
      "          'focuses': 1,\n",
      "          'women': 1,\n",
      "          'set': 1,\n",
      "          'upon': 1,\n",
      "          'malevolent': 1,\n",
      "          'spirit': 1,\n",
      "          'channels': 1,\n",
      "          'young': 1,\n",
      "          'opens': 1,\n",
      "          'second': 1,\n",
      "          'husband': 1,\n",
      "          'returning': 1,\n",
      "          'house': 1,\n",
      "          'sea': 1,\n",
      "          'scene': 1,\n",
      "          'first': 1,\n",
      "          'husbands': 1,\n",
      "          'suicide': 1,\n",
      "          'subsequent': 1,\n",
      "          'trauma': 1,\n",
      "          '7': 1,\n",
      "          'years': 1,\n",
      "          'earlier': 1,\n",
      "          'nthey': 1,\n",
      "          'hope': 1,\n",
      "          'put': 1,\n",
      "          'past': 1,\n",
      "          'small': 1,\n",
      "          'accidents': 1,\n",
      "          'start': 1,\n",
      "          'befall': 1,\n",
      "          'away': 1,\n",
      "          'business': 1,\n",
      "          'starts': 1,\n",
      "          'suspect': 1,\n",
      "          'played': 1,\n",
      "          'uncanny': 1,\n",
      "          'ability': 1,\n",
      "          '8': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'david': 1,\n",
      "          'colin': 1,\n",
      "          'jr': 1,\n",
      "          'involved': 1,\n",
      "          'strange': 1,\n",
      "          'goings': 1,\n",
      "          'nto': 1,\n",
      "          'reveal': 1,\n",
      "          'would': 1,\n",
      "          'unfair': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'artfully': 1,\n",
      "          'paced': 1,\n",
      "          'study': 1,\n",
      "          'woman': 1,\n",
      "          'nervous': 1,\n",
      "          'breakdown': 1,\n",
      "          'offers': 1,\n",
      "          'intriguing': 1,\n",
      "          'plot': 1,\n",
      "          'loads': 1,\n",
      "          'atmosphere': 1,\n",
      "          'solid': 1,\n",
      "          'acting': 1,\n",
      "          'though': 1,\n",
      "          'dialogue': 1,\n",
      "          'somewhat': 1,\n",
      "          'weakened': 1,\n",
      "          'dubbing': 1,\n",
      "          'english': 1,\n",
      "          'nbava': 1,\n",
      "          'coaches': 1,\n",
      "          'good': 1,\n",
      "          'performance': 1,\n",
      "          'wooden': 1,\n",
      "          'daria': 1,\n",
      "          'nicolodi': 1,\n",
      "          'wife': 1,\n",
      "          'famed': 1,\n",
      "          'dario': 1,\n",
      "          'argento': 1,\n",
      "          'nher': 1,\n",
      "          'character': 1,\n",
      "          'invested': 1,\n",
      "          'sufficient': 1,\n",
      "          'depth': 1,\n",
      "          'allow': 1,\n",
      "          'audience': 1,\n",
      "          'real': 1,\n",
      "          'empathy': 1,\n",
      "          'doras': 1,\n",
      "          'troubled': 1,\n",
      "          'soul': 1,\n",
      "          'music': 1,\n",
      "          'ensemble': 1,\n",
      "          'libra': 1,\n",
      "          'also': 1,\n",
      "          'effective': 1,\n",
      "          'mixing': 1,\n",
      "          'oddsounding': 1,\n",
      "          '70s': 1,\n",
      "          'rock': 1,\n",
      "          'classic': 1,\n",
      "          'gothic': 1,\n",
      "          'piano': 1,\n",
      "          'sequences': 1,\n",
      "          'nand': 1,\n",
      "          'least': 1,\n",
      "          'moment': 1,\n",
      "          'brilliantly': 1,\n",
      "          'engineered': 1,\n",
      "          'guaranteed': 1,\n",
      "          'lift': 1,\n",
      "          'ten': 1,\n",
      "          'feet': 1,\n",
      "          'nyet': 1,\n",
      "          'bloodletting': 1,\n",
      "          'minimal': 1,\n",
      "          'nlamberto': 1,\n",
      "          'francesco': 1,\n",
      "          'barbieris': 1,\n",
      "          'script': 1,\n",
      "          'concerned': 1,\n",
      "          'deeper': 1,\n",
      "          'psychological': 1,\n",
      "          'terrors': 1,\n",
      "          'themes': 1,\n",
      "          'guilt': 1,\n",
      "          'notion': 1,\n",
      "          'sow': 1,\n",
      "          'shall': 1,\n",
      "          'somewhere': 1,\n",
      "          'eventually': 1,\n",
      "          'reap': 1,\n",
      "          'nscholars': 1,\n",
      "          'genre': 1,\n",
      "          'take': 1,\n",
      "          'stylish': 1,\n",
      "          'chilling': 1,\n",
      "          'essential': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'comic': 11,\n",
      "          'film': 10,\n",
      "          'nthe': 10,\n",
      "          'one': 9,\n",
      "          'book': 8,\n",
      "          'vampire': 8,\n",
      "          'vampires': 6,\n",
      "          'batman': 6,\n",
      "          'blade': 5,\n",
      "          'films': 5,\n",
      "          'robin': 5,\n",
      "          'snipes': 4,\n",
      "          'blood': 4,\n",
      "          'crow': 4,\n",
      "          'im': 4,\n",
      "          'atmosphere': 4,\n",
      "          'effects': 4,\n",
      "          'based': 3,\n",
      "          'story': 3,\n",
      "          'wesley': 3,\n",
      "          'books': 3,\n",
      "          'director': 3,\n",
      "          'nthis': 3,\n",
      "          'single': 3,\n",
      "          'also': 3,\n",
      "          'use': 3,\n",
      "          'scenes': 3,\n",
      "          'cgi': 3,\n",
      "          'spiderman': 2,\n",
      "          'played': 2,\n",
      "          'latest': 2,\n",
      "          'deacon': 2,\n",
      "          'frost': 2,\n",
      "          'summoning': 2,\n",
      "          'god': 2,\n",
      "          'least': 2,\n",
      "          'often': 2,\n",
      "          'standards': 2,\n",
      "          'list': 2,\n",
      "          'would': 2,\n",
      "          'come': 2,\n",
      "          'medium': 2,\n",
      "          'nto': 2,\n",
      "          'number': 2,\n",
      "          'including': 2,\n",
      "          'mask': 2,\n",
      "          'appropriate': 2,\n",
      "          'comics': 2,\n",
      "          'flash': 2,\n",
      "          'uses': 2,\n",
      "          'incorporates': 2,\n",
      "          'show': 2,\n",
      "          'audience': 2,\n",
      "          'back': 2,\n",
      "          'trace': 2,\n",
      "          'every': 2,\n",
      "          'means': 2,\n",
      "          'elements': 2,\n",
      "          'interesting': 2,\n",
      "          'sword': 2,\n",
      "          'antitheft': 2,\n",
      "          'device': 2,\n",
      "          'extensive': 2,\n",
      "          'comes': 2,\n",
      "          'fight': 2,\n",
      "          'ritual': 2,\n",
      "          'standing': 2,\n",
      "          'murdered': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'surface': 2,\n",
      "          'scene': 2,\n",
      "          'either': 2,\n",
      "          'special': 2,\n",
      "          'nwhile': 2,\n",
      "          'computer': 2,\n",
      "          'generated': 2,\n",
      "          'given': 2,\n",
      "          'look': 2,\n",
      "          'rating': 2,\n",
      "          'violence': 2,\n",
      "          'made': 2,\n",
      "          'saving': 2,\n",
      "          'without': 2,\n",
      "          'much': 2,\n",
      "          'relatively': 1,\n",
      "          'unknown': 1,\n",
      "          'comparison': 1,\n",
      "          'marvel': 1,\n",
      "          'tells': 1,\n",
      "          'halfvampire': 1,\n",
      "          'halfhuman': 1,\n",
      "          'born': 1,\n",
      "          'meal': 1,\n",
      "          'nnow': 1,\n",
      "          'swearing': 1,\n",
      "          'vengeance': 1,\n",
      "          'hunts': 1,\n",
      "          'nhis': 1,\n",
      "          'challenge': 1,\n",
      "          'biggest': 1,\n",
      "          'though': 1,\n",
      "          'nmust': 1,\n",
      "          'stop': 1,\n",
      "          'stephen': 1,\n",
      "          'dorff': 1,\n",
      "          'turning': 1,\n",
      "          'rest': 1,\n",
      "          'world': 1,\n",
      "          'nadmitedly': 1,\n",
      "          'appreciated': 1,\n",
      "          'mediums': 1,\n",
      "          'viewed': 1,\n",
      "          'juvenile': 1,\n",
      "          'even': 1,\n",
      "          'seen': 1,\n",
      "          'illiterate': 1,\n",
      "          'njudging': 1,\n",
      "          'series': 1,\n",
      "          'poorly': 1,\n",
      "          'recieved': 1,\n",
      "          'financial': 1,\n",
      "          'critical': 1,\n",
      "          'steel': 1,\n",
      "          'barb': 1,\n",
      "          'wire': 1,\n",
      "          'city': 1,\n",
      "          'angels': 1,\n",
      "          'goes': 1,\n",
      "          'conclusion': 1,\n",
      "          'worst': 1,\n",
      "          'translate': 1,\n",
      "          'degree': 1,\n",
      "          'agree': 1,\n",
      "          'sentiment': 1,\n",
      "          'nhaving': 1,\n",
      "          'read': 1,\n",
      "          'since': 1,\n",
      "          'age': 1,\n",
      "          'nine': 1,\n",
      "          '21': 1,\n",
      "          'right': 1,\n",
      "          'count': 1,\n",
      "          'good': 1,\n",
      "          'movies': 1,\n",
      "          'japanese': 1,\n",
      "          'manga': 1,\n",
      "          'hand': 1,\n",
      "          '1': 1,\n",
      "          '1994': 1,\n",
      "          '2': 1,\n",
      "          '1989': 1,\n",
      "          '3': 1,\n",
      "          'superman': 1,\n",
      "          '4': 1,\n",
      "          '5': 1,\n",
      "          'n': 1,\n",
      "          'men': 1,\n",
      "          'black': 1,\n",
      "          'extreme': 1,\n",
      "          'deviation': 1,\n",
      "          'original': 1,\n",
      "          'nwhy': 1,\n",
      "          'nfor': 1,\n",
      "          'part': 1,\n",
      "          'filmmakers': 1,\n",
      "          'understand': 1,\n",
      "          'match': 1,\n",
      "          'call': 1,\n",
      "          'dark': 1,\n",
      "          'gothic': 1,\n",
      "          'provided': 1,\n",
      "          'features': 1,\n",
      "          'wacky': 1,\n",
      "          'superhero': 1,\n",
      "          'wall': 1,\n",
      "          'antics': 1,\n",
      "          'casting': 1,\n",
      "          'cg': 1,\n",
      "          'reflect': 1,\n",
      "          'nsuperman': 1,\n",
      "          'nis': 1,\n",
      "          'top': 1,\n",
      "          'colour': 1,\n",
      "          'reflects': 1,\n",
      "          'nblade': 1,\n",
      "          'common': 1,\n",
      "          'notions': 1,\n",
      "          'creating': 1,\n",
      "          'stark': 1,\n",
      "          'contrast': 1,\n",
      "          'joel': 1,\n",
      "          'schumachers': 1,\n",
      "          'contrived': 1,\n",
      "          'vision': 1,\n",
      "          'reflecting': 1,\n",
      "          'dated': 1,\n",
      "          '1960s': 1,\n",
      "          'television': 1,\n",
      "          'nbatman': 1,\n",
      "          'proved': 1,\n",
      "          'failed': 1,\n",
      "          'realize': 1,\n",
      "          'fundamental': 1,\n",
      "          'fact': 1,\n",
      "          'grown': 1,\n",
      "          'working': 1,\n",
      "          'scathing': 1,\n",
      "          'review': 1,\n",
      "          'post': 1,\n",
      "          'ready': 1,\n",
      "          'nwhich': 1,\n",
      "          'brings': 1,\n",
      "          'nalthough': 1,\n",
      "          'may': 1,\n",
      "          'familiar': 1,\n",
      "          'character': 1,\n",
      "          'due': 1,\n",
      "          'appearances': 1,\n",
      "          'animated': 1,\n",
      "          'fox': 1,\n",
      "          'find': 1,\n",
      "          'warmandfuzzy': 1,\n",
      "          'hunter': 1,\n",
      "          'depicted': 1,\n",
      "          'cartoon': 1,\n",
      "          'depicts': 1,\n",
      "          'vicious': 1,\n",
      "          'killer': 1,\n",
      "          'nuses': 1,\n",
      "          'disposal': 1,\n",
      "          'reach': 1,\n",
      "          'ends': 1,\n",
      "          'end': 1,\n",
      "          'results': 1,\n",
      "          'pretty': 1,\n",
      "          'work': 1,\n",
      "          'well': 1,\n",
      "          'nscreenwriter': 1,\n",
      "          'david': 1,\n",
      "          'goyer': 1,\n",
      "          'wrote': 1,\n",
      "          'lore': 1,\n",
      "          'using': 1,\n",
      "          'science': 1,\n",
      "          'explain': 1,\n",
      "          'many': 1,\n",
      "          'ideas': 1,\n",
      "          'dismissed': 1,\n",
      "          'presented': 1,\n",
      "          'karen': 1,\n",
      "          'hematologist': 1,\n",
      "          'portrayed': 1,\n",
      "          'nbushe': 1,\n",
      "          'wright': 1,\n",
      "          'leads': 1,\n",
      "          'inventive': 1,\n",
      "          'standard': 1,\n",
      "          'medical': 1,\n",
      "          'treatments': 1,\n",
      "          'kill': 1,\n",
      "          'nadd': 1,\n",
      "          'neat': 1,\n",
      "          'little': 1,\n",
      "          'gadgets': 1,\n",
      "          'titanium': 1,\n",
      "          'complete': 1,\n",
      "          'premise': 1,\n",
      "          'nhowever': 1,\n",
      "          'works': 1,\n",
      "          'best': 1,\n",
      "          'action': 1,\n",
      "          'nactor': 1,\n",
      "          'nan': 1,\n",
      "          'background': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'capoeira': 1,\n",
      "          'brazillian': 1,\n",
      "          'form': 1,\n",
      "          'incorporating': 1,\n",
      "          'flashy': 1,\n",
      "          'kicks': 1,\n",
      "          'choreographing': 1,\n",
      "          'move': 1,\n",
      "          'nproving': 1,\n",
      "          'quick': 1,\n",
      "          'cutting': 1,\n",
      "          'edits': 1,\n",
      "          'substitute': 1,\n",
      "          'choreographed': 1,\n",
      "          'sequences': 1,\n",
      "          'see': 1,\n",
      "          'ngood': 1,\n",
      "          'example': 1,\n",
      "          'dazzles': 1,\n",
      "          'incredible': 1,\n",
      "          'nregardless': 1,\n",
      "          'far': 1,\n",
      "          'perfect': 1,\n",
      "          'suffers': 1,\n",
      "          'major': 1,\n",
      "          'plot': 1,\n",
      "          'hole': 1,\n",
      "          'regarding': 1,\n",
      "          'requires': 1,\n",
      "          'pure': 1,\n",
      "          'nmarked': 1,\n",
      "          'squares': 1,\n",
      "          'yet': 1,\n",
      "          'viciously': 1,\n",
      "          'allowing': 1,\n",
      "          'pass': 1,\n",
      "          'later': 1,\n",
      "          'shown': 1,\n",
      "          'square': 1,\n",
      "          'nobvious': 1,\n",
      "          'continuity': 1,\n",
      "          'errors': 1,\n",
      "          'especially': 1,\n",
      "          'takes': 1,\n",
      "          'drag': 1,\n",
      "          'cigarette': 1,\n",
      "          'exhaling': 1,\n",
      "          'next': 1,\n",
      "          'frame': 1,\n",
      "          'smoke': 1,\n",
      "          'nmuch': 1,\n",
      "          'spectacular': 1,\n",
      "          'disintegration': 1,\n",
      "          'intriguing': 1,\n",
      "          'watch': 1,\n",
      "          'imagery': 1,\n",
      "          'almost': 1,\n",
      "          'slapped': 1,\n",
      "          'together': 1,\n",
      "          'surprising': 1,\n",
      "          'amount': 1,\n",
      "          'time': 1,\n",
      "          'released': 1,\n",
      "          'release': 1,\n",
      "          'date': 1,\n",
      "          'pushed': 1,\n",
      "          'multiple': 1,\n",
      "          'times': 1,\n",
      "          'nscenes': 1,\n",
      "          'extremely': 1,\n",
      "          'fake': 1,\n",
      "          'knocking': 1,\n",
      "          'believability': 1,\n",
      "          'factor': 1,\n",
      "          'notches': 1,\n",
      "          'really': 1,\n",
      "          'hard': 1,\n",
      "          'impress': 1,\n",
      "          'r': 1,\n",
      "          'gory': 1,\n",
      "          'lack': 1,\n",
      "          'nrealism': 1,\n",
      "          'wonder': 1,\n",
      "          'got': 1,\n",
      "          'realistic': 1,\n",
      "          'nwatch': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'overuse': 1,\n",
      "          'yearn': 1,\n",
      "          'days': 1,\n",
      "          'george': 1,\n",
      "          'romero': 1,\n",
      "          'makeup': 1,\n",
      "          'wizard': 1,\n",
      "          'rob': 1,\n",
      "          'bottin': 1,\n",
      "          'pioneers': 1,\n",
      "          'art': 1,\n",
      "          'gore': 1,\n",
      "          'nstill': 1,\n",
      "          'involving': 1,\n",
      "          'noncgi': 1,\n",
      "          'impressive': 1,\n",
      "          'particularly': 1,\n",
      "          'gruesome': 1,\n",
      "          'tries': 1,\n",
      "          'blades': 1,\n",
      "          'deactivating': 1,\n",
      "          'nwesley': 1,\n",
      "          'grace': 1,\n",
      "          'behind': 1,\n",
      "          'otherwise': 1,\n",
      "          'muddled': 1,\n",
      "          'mess': 1,\n",
      "          'talking': 1,\n",
      "          'grand': 1,\n",
      "          'physical': 1,\n",
      "          'presence': 1,\n",
      "          'leaving': 1,\n",
      "          'superheroes': 1,\n",
      "          'dust': 1,\n",
      "          'na': 1,\n",
      "          'decent': 1,\n",
      "          'storyline': 1,\n",
      "          'helps': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'brown': 17,\n",
      "          'film': 14,\n",
      "          'one': 13,\n",
      "          'tarantino': 11,\n",
      "          'jackie': 10,\n",
      "          'nthe': 8,\n",
      "          'performance': 7,\n",
      "          'pulp': 6,\n",
      "          'fiction': 6,\n",
      "          'grier': 6,\n",
      "          'good': 6,\n",
      "          'time': 6,\n",
      "          'seems': 5,\n",
      "          'njackie': 5,\n",
      "          'quentin': 4,\n",
      "          'acting': 4,\n",
      "          'well': 4,\n",
      "          'gives': 4,\n",
      "          'jackson': 4,\n",
      "          'fonda': 4,\n",
      "          'much': 4,\n",
      "          'ordell': 4,\n",
      "          'tell': 4,\n",
      "          'side': 4,\n",
      "          'nafter': 3,\n",
      "          'many': 3,\n",
      "          'quite': 3,\n",
      "          'except': 3,\n",
      "          'pam': 3,\n",
      "          'really': 3,\n",
      "          'name': 3,\n",
      "          'writing': 3,\n",
      "          'another': 3,\n",
      "          'l': 3,\n",
      "          'michael': 3,\n",
      "          'keaton': 3,\n",
      "          'forster': 3,\n",
      "          'see': 3,\n",
      "          'oscar': 3,\n",
      "          'cant': 3,\n",
      "          'ni': 3,\n",
      "          'impressive': 3,\n",
      "          'order': 3,\n",
      "          'cops': 3,\n",
      "          'nhowever': 3,\n",
      "          'find': 3,\n",
      "          'nthey': 3,\n",
      "          'ordells': 3,\n",
      "          'course': 3,\n",
      "          'characters': 3,\n",
      "          'role': 3,\n",
      "          'even': 3,\n",
      "          'giving': 2,\n",
      "          'stars': 2,\n",
      "          'jobs': 2,\n",
      "          'made': 2,\n",
      "          'hand': 2,\n",
      "          'cast': 2,\n",
      "          'likely': 2,\n",
      "          'films': 2,\n",
      "          'whose': 2,\n",
      "          'result': 2,\n",
      "          'entertainment': 2,\n",
      "          'robert': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'come': 2,\n",
      "          'nominations': 2,\n",
      "          'spoil': 2,\n",
      "          'ends': 2,\n",
      "          'buyers': 2,\n",
      "          'money': 2,\n",
      "          'agent': 2,\n",
      "          'bowen': 2,\n",
      "          'try': 2,\n",
      "          'tucker': 2,\n",
      "          'nbut': 2,\n",
      "          'friends': 2,\n",
      "          'nordell': 2,\n",
      "          'bail': 2,\n",
      "          'told': 2,\n",
      "          'like': 2,\n",
      "          'scheme': 2,\n",
      "          'nthis': 2,\n",
      "          'going': 2,\n",
      "          'may': 2,\n",
      "          'biggest': 2,\n",
      "          'hitmen': 2,\n",
      "          'slang': 2,\n",
      "          'terms': 2,\n",
      "          'done': 2,\n",
      "          'nhis': 2,\n",
      "          'nof': 2,\n",
      "          'know': 2,\n",
      "          'expect': 2,\n",
      "          'nand': 2,\n",
      "          'lot': 2,\n",
      "          'perspective': 2,\n",
      "          'around': 2,\n",
      "          'although': 2,\n",
      "          'tarantinos': 2,\n",
      "          'use': 2,\n",
      "          'offensive': 2,\n",
      "          'back': 2,\n",
      "          'understand': 2,\n",
      "          'previous': 2,\n",
      "          'nperhaps': 2,\n",
      "          'elmore': 2,\n",
      "          'leonard': 2,\n",
      "          'performances': 2,\n",
      "          'nher': 2,\n",
      "          'didnt': 2,\n",
      "          'actually': 2,\n",
      "          'comes': 2,\n",
      "          'small': 2,\n",
      "          'nrobert': 2,\n",
      "          'best': 2,\n",
      "          'terrific': 2,\n",
      "          'short': 2,\n",
      "          'hopefully': 2,\n",
      "          'knack': 1,\n",
      "          'big': 1,\n",
      "          'careers': 1,\n",
      "          'actors': 1,\n",
      "          'began': 1,\n",
      "          'receiving': 1,\n",
      "          'offers': 1,\n",
      "          'njohn': 1,\n",
      "          'travolta': 1,\n",
      "          'comeback': 1,\n",
      "          'todays': 1,\n",
      "          'bankable': 1,\n",
      "          'nbruce': 1,\n",
      "          'willis': 1,\n",
      "          'proved': 1,\n",
      "          'chops': 1,\n",
      "          'considered': 1,\n",
      "          'actual': 1,\n",
      "          'actor': 1,\n",
      "          'boasts': 1,\n",
      "          'known': 1,\n",
      "          'main': 1,\n",
      "          'lead': 1,\n",
      "          'nmost': 1,\n",
      "          'heard': 1,\n",
      "          'seen': 1,\n",
      "          'shes': 1,\n",
      "          'never': 1,\n",
      "          'breakthrough': 1,\n",
      "          'first': 1,\n",
      "          'roger': 1,\n",
      "          'ebertwritten': 1,\n",
      "          'beyond': 1,\n",
      "          'valley': 1,\n",
      "          'dolls': 1,\n",
      "          'nthat': 1,\n",
      "          'highly': 1,\n",
      "          'anticipated': 1,\n",
      "          'feature': 1,\n",
      "          'last': 1,\n",
      "          'huge': 1,\n",
      "          'hit': 1,\n",
      "          'mediocre': 1,\n",
      "          'returns': 1,\n",
      "          'household': 1,\n",
      "          'directing': 1,\n",
      "          'fantastic': 1,\n",
      "          'ndespite': 1,\n",
      "          'excellent': 1,\n",
      "          'direction': 1,\n",
      "          'steals': 1,\n",
      "          'npam': 1,\n",
      "          'stunning': 1,\n",
      "          'supported': 1,\n",
      "          'incredible': 1,\n",
      "          'mix': 1,\n",
      "          'talentsamuel': 1,\n",
      "          'bridget': 1,\n",
      "          'nmore': 1,\n",
      "          'names': 1,\n",
      "          'pool': 1,\n",
      "          'ndescribing': 1,\n",
      "          'difficult': 1,\n",
      "          'say': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'tread': 1,\n",
      "          'lightly': 1,\n",
      "          'opens': 1,\n",
      "          'shot': 1,\n",
      "          'blue': 1,\n",
      "          'outfit': 1,\n",
      "          'walking': 1,\n",
      "          'airport': 1,\n",
      "          'camera': 1,\n",
      "          'tracks': 1,\n",
      "          'along': 1,\n",
      "          'revealing': 1,\n",
      "          'occupation': 1,\n",
      "          'nwe': 1,\n",
      "          'also': 1,\n",
      "          'introduced': 1,\n",
      "          'robbie': 1,\n",
      "          'sells': 1,\n",
      "          'illegal': 1,\n",
      "          'guns': 1,\n",
      "          'interested': 1,\n",
      "          'nfor': 1,\n",
      "          'hefty': 1,\n",
      "          'price': 1,\n",
      "          'nms': 1,\n",
      "          'carries': 1,\n",
      "          'buyer': 1,\n",
      "          'keep': 1,\n",
      "          'away': 1,\n",
      "          'fbi': 1,\n",
      "          'local': 1,\n",
      "          'cop': 1,\n",
      "          'catch': 1,\n",
      "          'taking': 1,\n",
      "          'reach': 1,\n",
      "          'beaumont': 1,\n",
      "          'livingston': 1,\n",
      "          'chris': 1,\n",
      "          'mysteriously': 1,\n",
      "          'dead': 1,\n",
      "          'hesitant': 1,\n",
      "          'admit': 1,\n",
      "          'wrongdoing': 1,\n",
      "          'unknowingly': 1,\n",
      "          'carrying': 1,\n",
      "          'drugs': 1,\n",
      "          'caught': 1,\n",
      "          'sent': 1,\n",
      "          'jail': 1,\n",
      "          'pays': 1,\n",
      "          'bond': 1,\n",
      "          'max': 1,\n",
      "          'cherry': 1,\n",
      "          'wants': 1,\n",
      "          'claims': 1,\n",
      "          'said': 1,\n",
      "          'nothing': 1,\n",
      "          'reveals': 1,\n",
      "          'fact': 1,\n",
      "          'stay': 1,\n",
      "          'prison': 1,\n",
      "          'doesnt': 1,\n",
      "          'throw': 1,\n",
      "          'feds': 1,\n",
      "          'track': 1,\n",
      "          'planned': 1,\n",
      "          'unexpected': 1,\n",
      "          'occurances': 1,\n",
      "          'foul': 1,\n",
      "          'goal': 1,\n",
      "          'nrevealing': 1,\n",
      "          'would': 1,\n",
      "          'fun': 1,\n",
      "          'thats': 1,\n",
      "          'reason': 1,\n",
      "          'go': 1,\n",
      "          'ntarantino': 1,\n",
      "          'fascination': 1,\n",
      "          'unusual': 1,\n",
      "          'predicaments': 1,\n",
      "          'always': 1,\n",
      "          'believably': 1,\n",
      "          'normally': 1,\n",
      "          'cruel': 1,\n",
      "          'pleasant': 1,\n",
      "          'nasty': 1,\n",
      "          'sort': 1,\n",
      "          'way': 1,\n",
      "          'talk': 1,\n",
      "          'normal': 1,\n",
      "          'people': 1,\n",
      "          'business': 1,\n",
      "          'rude': 1,\n",
      "          'girlfriends': 1,\n",
      "          'awkward': 1,\n",
      "          'situations': 1,\n",
      "          'arise': 1,\n",
      "          'perhaps': 1,\n",
      "          'flaw': 1,\n",
      "          'slow': 1,\n",
      "          'middle': 1,\n",
      "          'section': 1,\n",
      "          'pace': 1,\n",
      "          'begins': 1,\n",
      "          'drop': 1,\n",
      "          'fixes': 1,\n",
      "          'moving': 1,\n",
      "          'onto': 1,\n",
      "          'climax': 1,\n",
      "          'adding': 1,\n",
      "          'reservoir': 1,\n",
      "          'dogsstyle': 1,\n",
      "          'storytelling': 1,\n",
      "          'nthings': 1,\n",
      "          'persons': 1,\n",
      "          'learning': 1,\n",
      "          'leads': 1,\n",
      "          'interesting': 1,\n",
      "          'conclusion': 1,\n",
      "          'decides': 1,\n",
      "          'non': 1,\n",
      "          'technical': 1,\n",
      "          'directs': 1,\n",
      "          'style': 1,\n",
      "          '1994': 1,\n",
      "          'isnt': 1,\n",
      "          'nearly': 1,\n",
      "          'original': 1,\n",
      "          'story': 1,\n",
      "          'jumps': 1,\n",
      "          'forth': 1,\n",
      "          'easy': 1,\n",
      "          'needed': 1,\n",
      "          'second': 1,\n",
      "          'viewing': 1,\n",
      "          'differentiation': 1,\n",
      "          'simply': 1,\n",
      "          'follow': 1,\n",
      "          'especially': 1,\n",
      "          'considering': 1,\n",
      "          'given': 1,\n",
      "          'leaps': 1,\n",
      "          'screenplay': 1,\n",
      "          'written': 1,\n",
      "          'novel': 1,\n",
      "          'rum': 1,\n",
      "          'punch': 1,\n",
      "          'dialogue': 1,\n",
      "          'pretty': 1,\n",
      "          'intelligent': 1,\n",
      "          'fully': 1,\n",
      "          'realized': 1,\n",
      "          'cinematography': 1,\n",
      "          'guillermo': 1,\n",
      "          'navarro': 1,\n",
      "          'worked': 1,\n",
      "          'editing': 1,\n",
      "          'music': 1,\n",
      "          'highlight': 1,\n",
      "          'bringing': 1,\n",
      "          'memorable': 1,\n",
      "          'songs': 1,\n",
      "          '70s': 1,\n",
      "          '80s': 1,\n",
      "          'unforgettable': 1,\n",
      "          'incredibly': 1,\n",
      "          'rich': 1,\n",
      "          'hidden': 1,\n",
      "          'meaning': 1,\n",
      "          'behind': 1,\n",
      "          'every': 1,\n",
      "          'actions': 1,\n",
      "          'nnothing': 1,\n",
      "          'person': 1,\n",
      "          'real': 1,\n",
      "          'treat': 1,\n",
      "          'astonishing': 1,\n",
      "          'poor': 1,\n",
      "          'living': 1,\n",
      "          'conditions': 1,\n",
      "          'superceded': 1,\n",
      "          'superior': 1,\n",
      "          'wits': 1,\n",
      "          'play': 1,\n",
      "          'important': 1,\n",
      "          'nwatching': 1,\n",
      "          'grieg': 1,\n",
      "          'could': 1,\n",
      "          'mind': 1,\n",
      "          'thinking': 1,\n",
      "          'face': 1,\n",
      "          'portrays': 1,\n",
      "          'emotion': 1,\n",
      "          'sad': 1,\n",
      "          'happy': 1,\n",
      "          'deep': 1,\n",
      "          'thought': 1,\n",
      "          'nbridget': 1,\n",
      "          'druggie': 1,\n",
      "          'couch': 1,\n",
      "          'potato': 1,\n",
      "          'realize': 1,\n",
      "          'saw': 1,\n",
      "          'final': 1,\n",
      "          'credits': 1,\n",
      "          'reminded': 1,\n",
      "          'heather': 1,\n",
      "          'grahams': 1,\n",
      "          'boogie': 1,\n",
      "          'nights': 1,\n",
      "          'nmichael': 1,\n",
      "          'across': 1,\n",
      "          'nchris': 1,\n",
      "          'effective': 1,\n",
      "          'nsamuel': 1,\n",
      "          'replaying': 1,\n",
      "          'jules': 1,\n",
      "          'winnfield': 1,\n",
      "          'character': 1,\n",
      "          'less': 1,\n",
      "          'cynical': 1,\n",
      "          'matter': 1,\n",
      "          'njackson': 1,\n",
      "          'strong': 1,\n",
      "          'little': 1,\n",
      "          'annoying': 1,\n",
      "          'times': 1,\n",
      "          'overall': 1,\n",
      "          'job': 1,\n",
      "          'clients': 1,\n",
      "          'developed': 1,\n",
      "          'nhe': 1,\n",
      "          'present': 1,\n",
      "          'throughout': 1,\n",
      "          'holds': 1,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'language': 1,\n",
      "          'sex': 1,\n",
      "          'violence': 1,\n",
      "          'drug': 1,\n",
      "          'remarks': 1,\n",
      "          'nas': 1,\n",
      "          'piece': 1,\n",
      "          'complex': 1,\n",
      "          'plot': 1,\n",
      "          'draw': 1,\n",
      "          'viewers': 1,\n",
      "          'help': 1,\n",
      "          'compare': 1,\n",
      "          'great': 1,\n",
      "          'results': 1,\n",
      "          'nwhen': 1,\n",
      "          'compared': 1,\n",
      "          'nits': 1,\n",
      "          'worthy': 1,\n",
      "          'effort': 1,\n",
      "          'thing': 1,\n",
      "          'discovery': 1,\n",
      "          'major': 1,\n",
      "          'hollywood': 1,\n",
      "          'actress': 1,\n",
      "          'remember': 1,\n",
      "          'seeing': 1,\n",
      "          'anything': 1,\n",
      "          'mars': 1,\n",
      "          'attacks': 1,\n",
      "          'get': 1,\n",
      "          'roles': 1,\n",
      "          'nexpect': 1,\n",
      "          'floating': 1,\n",
      "          'able': 1,\n",
      "          'nab': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'twister': 10,\n",
      "          'n': 8,\n",
      "          'destruction': 6,\n",
      "          'tornadoes': 5,\n",
      "          'bill': 5,\n",
      "          'nthe': 4,\n",
      "          'path': 4,\n",
      "          'get': 4,\n",
      "          'storm': 3,\n",
      "          'nunlike': 3,\n",
      "          'terror': 3,\n",
      "          'sure': 3,\n",
      "          'effects': 3,\n",
      "          'caused': 3,\n",
      "          'close': 3,\n",
      "          'tornado': 3,\n",
      "          'good': 3,\n",
      "          'device': 3,\n",
      "          'action': 3,\n",
      "          'sequences': 3,\n",
      "          'director': 2,\n",
      "          'speed': 2,\n",
      "          'earthquakes': 2,\n",
      "          'precise': 2,\n",
      "          'hurricanes': 2,\n",
      "          'part': 2,\n",
      "          'seen': 2,\n",
      "          'twisters': 2,\n",
      "          'comes': 2,\n",
      "          'near': 2,\n",
      "          'may': 2,\n",
      "          'unpredictable': 2,\n",
      "          'houses': 2,\n",
      "          'livestock': 2,\n",
      "          'anything': 2,\n",
      "          'see': 2,\n",
      "          'ntwister': 2,\n",
      "          'group': 2,\n",
      "          'chasers': 2,\n",
      "          'people': 2,\n",
      "          'njo': 2,\n",
      "          'hunt': 2,\n",
      "          'leader': 2,\n",
      "          'pack': 2,\n",
      "          'satellite': 2,\n",
      "          'paxton': 2,\n",
      "          'team': 2,\n",
      "          'jo': 2,\n",
      "          'days': 2,\n",
      "          'implemented': 2,\n",
      "          'better': 2,\n",
      "          'system': 2,\n",
      "          'film': 2,\n",
      "          'movie': 2,\n",
      "          'digital': 2,\n",
      "          'well': 2,\n",
      "          'sound': 2,\n",
      "          'makers': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'conjure': 1,\n",
      "          'reviewed': 1,\n",
      "          'eng': 1,\n",
      "          'wahs': 1,\n",
      "          'new': 1,\n",
      "          'jubilee': 1,\n",
      "          'cineplex': 1,\n",
      "          'ang': 1,\n",
      "          'mo': 1,\n",
      "          'kio': 1,\n",
      "          'unlike': 1,\n",
      "          'fury': 1,\n",
      "          'reach': 1,\n",
      "          'unlimited': 1,\n",
      "          'fires': 1,\n",
      "          'way': 1,\n",
      "          'combat': 1,\n",
      "          'floods': 1,\n",
      "          'sudden': 1,\n",
      "          'excerpt': 1,\n",
      "          'production': 1,\n",
      "          'notes': 1,\n",
      "          'nim': 1,\n",
      "          'many': 1,\n",
      "          'us': 1,\n",
      "          'living': 1,\n",
      "          'world': 1,\n",
      "          'never': 1,\n",
      "          'ni': 1,\n",
      "          'one': 1,\n",
      "          'devastating': 1,\n",
      "          'footage': 1,\n",
      "          'news': 1,\n",
      "          'reports': 1,\n",
      "          'tv': 1,\n",
      "          'personally': 1,\n",
      "          'feel': 1,\n",
      "          'tornadocaused': 1,\n",
      "          'saw': 1,\n",
      "          'widespread': 1,\n",
      "          'moves': 1,\n",
      "          'fast': 1,\n",
      "          'nit': 1,\n",
      "          'suck': 1,\n",
      "          'cars': 1,\n",
      "          'etc': 1,\n",
      "          'nbasically': 1,\n",
      "          'firmly': 1,\n",
      "          'rooted': 1,\n",
      "          'ground': 1,\n",
      "          'youll': 1,\n",
      "          'tells': 1,\n",
      "          'tale': 1,\n",
      "          'nthese': 1,\n",
      "          'basically': 1,\n",
      "          'outoftheirmind': 1,\n",
      "          'sake': 1,\n",
      "          'obtaining': 1,\n",
      "          'data': 1,\n",
      "          'twisteroccurrences': 1,\n",
      "          'risk': 1,\n",
      "          'lives': 1,\n",
      "          'literally': 1,\n",
      "          'chasing': 1,\n",
      "          'trying': 1,\n",
      "          'nis': 1,\n",
      "          'suddenly': 1,\n",
      "          'decide': 1,\n",
      "          'change': 1,\n",
      "          'towards': 1,\n",
      "          'helen': 1,\n",
      "          'kamikazes': 1,\n",
      "          'nwhile': 1,\n",
      "          'gearing': 1,\n",
      "          'motherofallstorms': 1,\n",
      "          'predicted': 1,\n",
      "          'recon': 1,\n",
      "          'former': 1,\n",
      "          'co': 1,\n",
      "          'returns': 1,\n",
      "          'settle': 1,\n",
      "          'divorce': 1,\n",
      "          'papers': 1,\n",
      "          'napparently': 1,\n",
      "          'left': 1,\n",
      "          'rogueish': 1,\n",
      "          'greener': 1,\n",
      "          'practical': 1,\n",
      "          'pastures': 1,\n",
      "          'television': 1,\n",
      "          'weatherman': 1,\n",
      "          'nhe': 1,\n",
      "          'catches': 1,\n",
      "          'oldself': 1,\n",
      "          'follows': 1,\n",
      "          'like': 1,\n",
      "          'ole': 1,\n",
      "          'bringing': 1,\n",
      "          'wifetobe': 1,\n",
      "          'melissa': 1,\n",
      "          'jamie': 1,\n",
      "          'gertz': 1,\n",
      "          'along': 1,\n",
      "          'citybred': 1,\n",
      "          'woman': 1,\n",
      "          'toting': 1,\n",
      "          'around': 1,\n",
      "          'handphone': 1,\n",
      "          'finally': 1,\n",
      "          'bills': 1,\n",
      "          'initial': 1,\n",
      "          'idea': 1,\n",
      "          'called': 1,\n",
      "          'dorothy': 1,\n",
      "          'measurements': 1,\n",
      "          'lead': 1,\n",
      "          'understanding': 1,\n",
      "          'formed': 1,\n",
      "          'reliable': 1,\n",
      "          'earlywarning': 1,\n",
      "          'problem': 1,\n",
      "          'placed': 1,\n",
      "          'practically': 1,\n",
      "          'order': 1,\n",
      "          'function': 1,\n",
      "          'nto': 1,\n",
      "          'add': 1,\n",
      "          'current': 1,\n",
      "          'challenge': 1,\n",
      "          'another': 1,\n",
      "          'corporationfunded': 1,\n",
      "          'led': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'jonas': 1,\n",
      "          'cary': 1,\n",
      "          'elwes': 1,\n",
      "          'similar': 1,\n",
      "          'nthus': 1,\n",
      "          'begins': 1,\n",
      "          'race': 1,\n",
      "          'jos': 1,\n",
      "          'cheap': 1,\n",
      "          'government': 1,\n",
      "          'equipment': 1,\n",
      "          'beatenup': 1,\n",
      "          'vehicles': 1,\n",
      "          'jonass': 1,\n",
      "          'hightech': 1,\n",
      "          'computers': 1,\n",
      "          'linkups': 1,\n",
      "          'sleek': 1,\n",
      "          'black': 1,\n",
      "          'allterrain': 1,\n",
      "          'vans': 1,\n",
      "          'nplot': 1,\n",
      "          'wise': 1,\n",
      "          'really': 1,\n",
      "          'shout': 1,\n",
      "          'predictable': 1,\n",
      "          'summer': 1,\n",
      "          'boxoffice': 1,\n",
      "          'hit': 1,\n",
      "          'nthere': 1,\n",
      "          'danger': 1,\n",
      "          'competition': 1,\n",
      "          'jonasos': 1,\n",
      "          'welloff': 1,\n",
      "          'course': 1,\n",
      "          'settling': 1,\n",
      "          'differences': 1,\n",
      "          'gives': 1,\n",
      "          'human': 1,\n",
      "          'substance': 1,\n",
      "          'nhelen': 1,\n",
      "          'rest': 1,\n",
      "          'actorsactresses': 1,\n",
      "          'give': 1,\n",
      "          'average': 1,\n",
      "          'performances': 1,\n",
      "          'take': 1,\n",
      "          'back': 1,\n",
      "          'seat': 1,\n",
      "          'main': 1,\n",
      "          'thespian': 1,\n",
      "          'nthanks': 1,\n",
      "          'impressive': 1,\n",
      "          'ilm': 1,\n",
      "          'lucasfilms': 1,\n",
      "          'industrial': 1,\n",
      "          'light': 1,\n",
      "          'magic': 1,\n",
      "          'stripping': 1,\n",
      "          'barns': 1,\n",
      "          'lifting': 1,\n",
      "          'njan': 1,\n",
      "          'de': 1,\n",
      "          'bont': 1,\n",
      "          'proves': 1,\n",
      "          'visual': 1,\n",
      "          'abiility': 1,\n",
      "          'thanks': 1,\n",
      "          'years': 1,\n",
      "          'experience': 1,\n",
      "          'photography': 1,\n",
      "          'films': 1,\n",
      "          'nlike': 1,\n",
      "          'previous': 1,\n",
      "          'essentially': 1,\n",
      "          'visualised': 1,\n",
      "          'edited': 1,\n",
      "          'naudiences': 1,\n",
      "          'holding': 1,\n",
      "          'tight': 1,\n",
      "          'chairs': 1,\n",
      "          'everytime': 1,\n",
      "          'screen': 1,\n",
      "          'surround': 1,\n",
      "          'help': 1,\n",
      "          'lot': 1,\n",
      "          'stressing': 1,\n",
      "          'cinema': 1,\n",
      "          'must': 1,\n",
      "          'least': 1,\n",
      "          'support': 1,\n",
      "          'fully': 1,\n",
      "          'appreciate': 1,\n",
      "          'definitely': 1,\n",
      "          'effectdependent': 1,\n",
      "          'nnow': 1,\n",
      "          'id4': 1,\n",
      "          'fever': 1,\n",
      "          'begun': 1,\n",
      "          'reside': 1,\n",
      "          'getting': 1,\n",
      "          'bored': 1,\n",
      "          'watching': 1,\n",
      "          'smith': 1,\n",
      "          'whoop': 1,\n",
      "          'ets': 1,\n",
      "          'ass': 1,\n",
      "          'umpteenth': 1,\n",
      "          'time': 1,\n",
      "          'bet': 1,\n",
      "          '7': 1,\n",
      "          'bucks': 1,\n",
      "          'spent': 1,\n",
      "          'nwatch': 1,\n",
      "          'theatre': 1,\n",
      "          'please': 1,\n",
      "          'flying': 1,\n",
      "          'inkpots': 1,\n",
      "          'rating': 1,\n",
      "          'wait': 1,\n",
      "          'video': 1,\n",
      "          'little': 1,\n",
      "          'creaky': 1,\n",
      "          'still': 1,\n",
      "          'staying': 1,\n",
      "          'home': 1,\n",
      "          'gotcha': 1,\n",
      "          'pretty': 1,\n",
      "          'bring': 1,\n",
      "          'friend': 1,\n",
      "          'amazing': 1,\n",
      "          'potent': 1,\n",
      "          'stuff': 1,\n",
      "          'perfection': 1,\n",
      "          'nsee': 1,\n",
      "          'twice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'carter': 14,\n",
      "          'film': 13,\n",
      "          'hurricane': 13,\n",
      "          'one': 8,\n",
      "          'washington': 8,\n",
      "          'nthe': 8,\n",
      "          'good': 8,\n",
      "          'work': 6,\n",
      "          'scene': 6,\n",
      "          'rubin': 5,\n",
      "          'carters': 5,\n",
      "          'prison': 5,\n",
      "          'every': 5,\n",
      "          'real': 5,\n",
      "          'people': 4,\n",
      "          'could': 4,\n",
      "          'convicted': 4,\n",
      "          'boxer': 4,\n",
      "          'canadians': 4,\n",
      "          'efforts': 4,\n",
      "          'much': 4,\n",
      "          'entirely': 3,\n",
      "          'person': 3,\n",
      "          'would': 3,\n",
      "          'jewison': 3,\n",
      "          'denzel': 3,\n",
      "          'group': 3,\n",
      "          'racist': 3,\n",
      "          'cop': 3,\n",
      "          'life': 3,\n",
      "          'feels': 3,\n",
      "          'make': 3,\n",
      "          'actor': 3,\n",
      "          'well': 3,\n",
      "          'time': 3,\n",
      "          'look': 3,\n",
      "          'wanted': 3,\n",
      "          'actors': 2,\n",
      "          'performance': 2,\n",
      "          'rather': 2,\n",
      "          'movie': 2,\n",
      "          'something': 2,\n",
      "          'nwhen': 2,\n",
      "          'comes': 2,\n",
      "          'along': 2,\n",
      "          'put': 2,\n",
      "          'possible': 2,\n",
      "          'carry': 2,\n",
      "          'nbut': 2,\n",
      "          'case': 2,\n",
      "          'director': 2,\n",
      "          'though': 2,\n",
      "          'reason': 2,\n",
      "          'works': 2,\n",
      "          'nwashington': 2,\n",
      "          'plays': 2,\n",
      "          'never': 2,\n",
      "          'remained': 2,\n",
      "          'jail': 2,\n",
      "          'second': 2,\n",
      "          'trial': 2,\n",
      "          'eventually': 2,\n",
      "          'ruled': 2,\n",
      "          'dan': 2,\n",
      "          'multiple': 2,\n",
      "          'lesra': 2,\n",
      "          'shannon': 2,\n",
      "          'young': 2,\n",
      "          'canadian': 2,\n",
      "          'book': 2,\n",
      "          'round': 2,\n",
      "          'n': 2,\n",
      "          'nhe': 2,\n",
      "          'nits': 2,\n",
      "          'accurate': 2,\n",
      "          'say': 2,\n",
      "          'character': 2,\n",
      "          'far': 2,\n",
      "          'hope': 2,\n",
      "          'masterful': 2,\n",
      "          'audience': 2,\n",
      "          'fight': 2,\n",
      "          'nhis': 2,\n",
      "          'job': 2,\n",
      "          'drawn': 2,\n",
      "          'nicely': 2,\n",
      "          'njewison': 2,\n",
      "          'boxing': 2,\n",
      "          'clear': 2,\n",
      "          'get': 2,\n",
      "          'pretty': 2,\n",
      "          'game': 2,\n",
      "          'showing': 2,\n",
      "          'films': 2,\n",
      "          'gets': 2,\n",
      "          'route': 2,\n",
      "          'example': 2,\n",
      "          'ncarter': 2,\n",
      "          'everyone': 2,\n",
      "          'bad': 2,\n",
      "          'commune': 2,\n",
      "          'takes': 2,\n",
      "          'ni': 2,\n",
      "          'hes': 2,\n",
      "          'truth': 2,\n",
      "          'really': 2,\n",
      "          'giardello': 2,\n",
      "          'times': 1,\n",
      "          'success': 1,\n",
      "          'particular': 1,\n",
      "          'depends': 1,\n",
      "          'effort': 1,\n",
      "          'noften': 1,\n",
      "          'single': 1,\n",
      "          'turn': 1,\n",
      "          'might': 1,\n",
      "          'mediocre': 1,\n",
      "          'worthwhile': 1,\n",
      "          'usually': 1,\n",
      "          'try': 1,\n",
      "          'think': 1,\n",
      "          'many': 1,\n",
      "          'way': 1,\n",
      "          'entire': 1,\n",
      "          'project': 1,\n",
      "          'shoulders': 1,\n",
      "          'sometimes': 1,\n",
      "          'simply': 1,\n",
      "          'explanation': 1,\n",
      "          'nthis': 1,\n",
      "          'biopic': 1,\n",
      "          'falsely': 1,\n",
      "          'normally': 1,\n",
      "          'called': 1,\n",
      "          'norman': 1,\n",
      "          'jewisons': 1,\n",
      "          'per': 1,\n",
      "          'tradition': 1,\n",
      "          'referring': 1,\n",
      "          'belonging': 1,\n",
      "          'decent': 1,\n",
      "          'claim': 1,\n",
      "          'ownership': 1,\n",
      "          'name': 1,\n",
      "          '1967': 1,\n",
      "          'latenight': 1,\n",
      "          'shooting': 1,\n",
      "          'bar': 1,\n",
      "          'njailed': 1,\n",
      "          '20': 1,\n",
      "          'years': 1,\n",
      "          'maintained': 1,\n",
      "          'committed': 1,\n",
      "          'crimes': 1,\n",
      "          'countless': 1,\n",
      "          'appeals': 1,\n",
      "          'situation': 1,\n",
      "          'changed': 1,\n",
      "          'moved': 1,\n",
      "          'worked': 1,\n",
      "          'freeing': 1,\n",
      "          'nthrough': 1,\n",
      "          'lawyers': 1,\n",
      "          'freed': 1,\n",
      "          'heard': 1,\n",
      "          'federal': 1,\n",
      "          'court': 1,\n",
      "          'judge': 1,\n",
      "          'unfairly': 1,\n",
      "          'details': 1,\n",
      "          'childhood': 1,\n",
      "          'hedaya': 1,\n",
      "          'finally': 1,\n",
      "          'got': 1,\n",
      "          'became': 1,\n",
      "          'rising': 1,\n",
      "          'star': 1,\n",
      "          'middleweight': 1,\n",
      "          'pro': 1,\n",
      "          'seemingly': 1,\n",
      "          'career': 1,\n",
      "          'track': 1,\n",
      "          'police': 1,\n",
      "          'framed': 1,\n",
      "          'homicide': 1,\n",
      "          'ndespite': 1,\n",
      "          'political': 1,\n",
      "          'activists': 1,\n",
      "          'celebrities': 1,\n",
      "          'imprisoned': 1,\n",
      "          'nflash': 1,\n",
      "          'forward': 1,\n",
      "          '1983': 1,\n",
      "          'vicellous': 1,\n",
      "          'reon': 1,\n",
      "          'africanamerican': 1,\n",
      "          'boy': 1,\n",
      "          'living': 1,\n",
      "          'tutors': 1,\n",
      "          'reads': 1,\n",
      "          'wrote': 1,\n",
      "          'entitled': 1,\n",
      "          'sixteenth': 1,\n",
      "          'opens': 1,\n",
      "          'lesras': 1,\n",
      "          'eyes': 1,\n",
      "          'injustice': 1,\n",
      "          'vows': 1,\n",
      "          'help': 1,\n",
      "          'free': 1,\n",
      "          'incarcerated': 1,\n",
      "          'nlesra': 1,\n",
      "          'convinces': 1,\n",
      "          'friends': 1,\n",
      "          'deborah': 1,\n",
      "          'unger': 1,\n",
      "          'liev': 1,\n",
      "          'schreiber': 1,\n",
      "          'john': 1,\n",
      "          'hannah': 1,\n",
      "          'towards': 1,\n",
      "          'goal': 1,\n",
      "          'leans': 1,\n",
      "          'must': 1,\n",
      "          'virtually': 1,\n",
      "          'sheer': 1,\n",
      "          'force': 1,\n",
      "          'brilliantly': 1,\n",
      "          'probably': 1,\n",
      "          'embody': 1,\n",
      "          'stronger': 1,\n",
      "          'nobler': 1,\n",
      "          'nit': 1,\n",
      "          'perhaps': 1,\n",
      "          'embodies': 1,\n",
      "          'cartera': 1,\n",
      "          'fictional': 1,\n",
      "          'personality': 1,\n",
      "          'invented': 1,\n",
      "          'solely': 1,\n",
      "          'throws': 1,\n",
      "          'moment': 1,\n",
      "          'refusing': 1,\n",
      "          'keep': 1,\n",
      "          'arms': 1,\n",
      "          'length': 1,\n",
      "          'nwe': 1,\n",
      "          'feel': 1,\n",
      "          'everything': 1,\n",
      "          'humiliation': 1,\n",
      "          'return': 1,\n",
      "          'fighting': 1,\n",
      "          'hard': 1,\n",
      "          'pain': 1,\n",
      "          'order': 1,\n",
      "          'wife': 1,\n",
      "          'give': 1,\n",
      "          'utter': 1,\n",
      "          'despair': 1,\n",
      "          'coming': 1,\n",
      "          'conclusion': 1,\n",
      "          'lost': 1,\n",
      "          'nwashingtons': 1,\n",
      "          'weight': 1,\n",
      "          'emotional': 1,\n",
      "          'depth': 1,\n",
      "          'doesnt': 1,\n",
      "          'merely': 1,\n",
      "          'play': 1,\n",
      "          'angry': 1,\n",
      "          'happy': 1,\n",
      "          'sad': 1,\n",
      "          'deepest': 1,\n",
      "          'level': 1,\n",
      "          'half': 1,\n",
      "          'realized': 1,\n",
      "          'watching': 1,\n",
      "          'nearly': 1,\n",
      "          'affecting': 1,\n",
      "          'hands': 1,\n",
      "          'another': 1,\n",
      "          'nnorman': 1,\n",
      "          'directs': 1,\n",
      "          'reasonably': 1,\n",
      "          'pacing': 1,\n",
      "          'shot': 1,\n",
      "          'selection': 1,\n",
      "          'moves': 1,\n",
      "          'quickly': 1,\n",
      "          'necessary': 1,\n",
      "          'narrative': 1,\n",
      "          'galloping': 1,\n",
      "          'handles': 1,\n",
      "          'flashbacks': 1,\n",
      "          'always': 1,\n",
      "          'aware': 1,\n",
      "          'place': 1,\n",
      "          'nothing': 1,\n",
      "          'terribly': 1,\n",
      "          'confusing': 1,\n",
      "          'scenes': 1,\n",
      "          'constructed': 1,\n",
      "          'inspiration': 1,\n",
      "          'raging': 1,\n",
      "          'bull': 1,\n",
      "          'inside': 1,\n",
      "          'action': 1,\n",
      "          'believable': 1,\n",
      "          'sports': 1,\n",
      "          'footage': 1,\n",
      "          'puts': 1,\n",
      "          'together': 1,\n",
      "          'particularly': 1,\n",
      "          'nice': 1,\n",
      "          'utilizing': 1,\n",
      "          'cool': 1,\n",
      "          'trick': 1,\n",
      "          'sent': 1,\n",
      "          'solitary': 1,\n",
      "          'confinement': 1,\n",
      "          '90': 1,\n",
      "          'days': 1,\n",
      "          'refuses': 1,\n",
      "          'wear': 1,\n",
      "          'uniform': 1,\n",
      "          'assisted': 1,\n",
      "          'wonderful': 1,\n",
      "          'acting': 1,\n",
      "          'shows': 1,\n",
      "          'gradually': 1,\n",
      "          'starts': 1,\n",
      "          'lose': 1,\n",
      "          'mind': 1,\n",
      "          'constant': 1,\n",
      "          'solitude': 1,\n",
      "          'three': 1,\n",
      "          'arguing': 1,\n",
      "          'cell': 1,\n",
      "          'njewisons': 1,\n",
      "          'best': 1,\n",
      "          'achievement': 1,\n",
      "          'succeeding': 1,\n",
      "          'becomes': 1,\n",
      "          'embittered': 1,\n",
      "          'man': 1,\n",
      "          'hardknock': 1,\n",
      "          'able': 1,\n",
      "          'break': 1,\n",
      "          'bitterness': 1,\n",
      "          'learn': 1,\n",
      "          'trust': 1,\n",
      "          'nsadly': 1,\n",
      "          'chief': 1,\n",
      "          'failures': 1,\n",
      "          'lie': 1,\n",
      "          'screenplay': 1,\n",
      "          'goodbutnotgreat': 1,\n",
      "          'pike': 1,\n",
      "          'winter': 1,\n",
      "          'nthere': 1,\n",
      "          'interest': 1,\n",
      "          'viewer': 1,\n",
      "          'seems': 1,\n",
      "          'chance': 1,\n",
      "          'take': 1,\n",
      "          'clich': 1,\n",
      "          'ntake': 1,\n",
      "          'supporting': 1,\n",
      "          'characters': 1,\n",
      "          'either': 1,\n",
      "          'evil': 1,\n",
      "          'played': 1,\n",
      "          'deserves': 1,\n",
      "          'credit': 1,\n",
      "          'else': 1,\n",
      "          'stereotype': 1,\n",
      "          'cops': 1,\n",
      "          'spend': 1,\n",
      "          'dolefully': 1,\n",
      "          'grinning': 1,\n",
      "          'loveydovey': 1,\n",
      "          'despite': 1,\n",
      "          'failure': 1,\n",
      "          'especially': 1,\n",
      "          'hedayas': 1,\n",
      "          'melts': 1,\n",
      "          'shadows': 1,\n",
      "          'glowers': 1,\n",
      "          'black': 1,\n",
      "          'enters': 1,\n",
      "          'room': 1,\n",
      "          'nmuch': 1,\n",
      "          'dialogue': 1,\n",
      "          'hokey': 1,\n",
      "          'hate': 1,\n",
      "          'nloves': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'bust': 1,\n",
      "          'big': 1,\n",
      "          'courtroom': 1,\n",
      "          'climax': 1,\n",
      "          'impassioned': 1,\n",
      "          'speech': 1,\n",
      "          'lifted': 1,\n",
      "          'madefortv': 1,\n",
      "          'lifetime': 1,\n",
      "          'special': 1,\n",
      "          'cast': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'interesting': 1,\n",
      "          'script': 1,\n",
      "          'safer': 1,\n",
      "          'slightly': 1,\n",
      "          'boring': 1,\n",
      "          'often': 1,\n",
      "          'hold': 1,\n",
      "          'grudge': 1,\n",
      "          'pig': 1,\n",
      "          'evidence': 1,\n",
      "          'faults': 1,\n",
      "          'virtues': 1,\n",
      "          'instead': 1,\n",
      "          'bunch': 1,\n",
      "          'saintly': 1,\n",
      "          'crusaders': 1,\n",
      "          'looking': 1,\n",
      "          'justice': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'see': 1,\n",
      "          'less': 1,\n",
      "          'distorted': 1,\n",
      "          'lens': 1,\n",
      "          'ncriticism': 1,\n",
      "          'levied': 1,\n",
      "          'liberties': 1,\n",
      "          'happened': 1,\n",
      "          'deserved': 1,\n",
      "          'nfor': 1,\n",
      "          'gives': 1,\n",
      "          'us': 1,\n",
      "          'pummeling': 1,\n",
      "          'defending': 1,\n",
      "          'champ': 1,\n",
      "          'joey': 1,\n",
      "          'screwed': 1,\n",
      "          'judges': 1,\n",
      "          'winner': 1,\n",
      "          'nmost': 1,\n",
      "          'accounts': 1,\n",
      "          'however': 1,\n",
      "          'losing': 1,\n",
      "          'fairly': 1,\n",
      "          'nfurthermore': 1,\n",
      "          'criminal': 1,\n",
      "          'past': 1,\n",
      "          'conveniently': 1,\n",
      "          'left': 1,\n",
      "          'explained': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'mainly': 1,\n",
      "          'fable': 1,\n",
      "          'digressions': 1,\n",
      "          'excused': 1,\n",
      "          'least': 1,\n",
      "          'partially': 1,\n",
      "          'even': 1,\n",
      "          'dismissing': 1,\n",
      "          'issues': 1,\n",
      "          'dont': 1,\n",
      "          'remove': 1,\n",
      "          'fact': 1,\n",
      "          'highly': 1,\n",
      "          'flawed': 1,\n",
      "          'nonly': 1,\n",
      "          'made': 1,\n",
      "          'schmaltzy': 1,\n",
      "          'predictable': 1,\n",
      "          'picture': 1,\n",
      "          'like': 1,\n",
      "          'thing': 1,\n",
      "          'quoted': 1,\n",
      "          'saying': 1,\n",
      "          'making': 1,\n",
      "          'makes': 1,\n",
      "          'ndenzel': 1,\n",
      "          'washingtons': 1,\n",
      "          'nsounds': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'ellie': 11,\n",
      "          'nthe': 11,\n",
      "          'first': 8,\n",
      "          'science': 8,\n",
      "          'machine': 8,\n",
      "          'religious': 7,\n",
      "          'faith': 6,\n",
      "          'real': 6,\n",
      "          'even': 5,\n",
      "          'signal': 4,\n",
      "          'message': 4,\n",
      "          'one': 4,\n",
      "          'person': 4,\n",
      "          'like': 4,\n",
      "          'place': 4,\n",
      "          'take': 4,\n",
      "          'form': 4,\n",
      "          'character': 4,\n",
      "          'contact': 3,\n",
      "          'radio': 3,\n",
      "          'project': 3,\n",
      "          'nher': 3,\n",
      "          'research': 3,\n",
      "          'david': 3,\n",
      "          'drumlin': 3,\n",
      "          'nin': 3,\n",
      "          'appears': 3,\n",
      "          'gets': 3,\n",
      "          'n': 3,\n",
      "          'right': 3,\n",
      "          'interest': 3,\n",
      "          'nellie': 3,\n",
      "          'father': 3,\n",
      "          'say': 3,\n",
      "          'know': 3,\n",
      "          'nothing': 3,\n",
      "          'use': 3,\n",
      "          'end': 3,\n",
      "          'dealing': 3,\n",
      "          'religion': 3,\n",
      "          'never': 3,\n",
      "          'problem': 3,\n",
      "          'ni': 3,\n",
      "          'nalso': 3,\n",
      "          'president': 3,\n",
      "          'would': 3,\n",
      "          'nit': 2,\n",
      "          'life': 2,\n",
      "          'named': 2,\n",
      "          'arroway': 2,\n",
      "          'meet': 2,\n",
      "          'part': 2,\n",
      "          'search': 2,\n",
      "          'killed': 2,\n",
      "          'however': 2,\n",
      "          'pure': 2,\n",
      "          'nshe': 2,\n",
      "          'nhadden': 2,\n",
      "          'nthen': 2,\n",
      "          'sitting': 2,\n",
      "          'large': 2,\n",
      "          'array': 2,\n",
      "          'another': 2,\n",
      "          'aliens': 2,\n",
      "          'home': 2,\n",
      "          'world': 2,\n",
      "          'big': 2,\n",
      "          'question': 2,\n",
      "          'ride': 2,\n",
      "          'thing': 2,\n",
      "          'rather': 2,\n",
      "          'professes': 2,\n",
      "          'ndrumlin': 2,\n",
      "          'god': 2,\n",
      "          'second': 2,\n",
      "          'lot': 2,\n",
      "          'gone': 2,\n",
      "          'hours': 2,\n",
      "          'story': 2,\n",
      "          'although': 2,\n",
      "          'dont': 2,\n",
      "          'static': 2,\n",
      "          'portrayed': 2,\n",
      "          'best': 2,\n",
      "          'interesting': 2,\n",
      "          'figures': 2,\n",
      "          'movie': 2,\n",
      "          'love': 2,\n",
      "          'obviously': 2,\n",
      "          'palmer': 2,\n",
      "          'joss': 2,\n",
      "          'presentation': 2,\n",
      "          'since': 2,\n",
      "          'nthis': 2,\n",
      "          'level': 2,\n",
      "          'really': 2,\n",
      "          'actual': 2,\n",
      "          'issues': 2,\n",
      "          'pretty': 2,\n",
      "          'people': 2,\n",
      "          'voice': 2,\n",
      "          'supposed': 2,\n",
      "          'atheist': 2,\n",
      "          'send': 2,\n",
      "          'last': 2,\n",
      "          'want': 2,\n",
      "          'shouldnt': 2,\n",
      "          'evidence': 2,\n",
      "          'using': 2,\n",
      "          'nobly': 1,\n",
      "          'intentioned': 1,\n",
      "          'ultimately': 1,\n",
      "          'unsatisfying': 1,\n",
      "          'adaptation': 1,\n",
      "          'carl': 1,\n",
      "          'sagans': 1,\n",
      "          'novel': 1,\n",
      "          'details': 1,\n",
      "          'circumstances': 1,\n",
      "          'surrounding': 1,\n",
      "          'clear': 1,\n",
      "          'sign': 1,\n",
      "          'intelligent': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'effects': 1,\n",
      "          'young': 1,\n",
      "          'idealistic': 1,\n",
      "          'astronomer': 1,\n",
      "          'jodie': 1,\n",
      "          'foster': 1,\n",
      "          'nwe': 1,\n",
      "          'giant': 1,\n",
      "          'telescope': 1,\n",
      "          'puerto': 1,\n",
      "          'rico': 1,\n",
      "          'seti': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'intelligence': 1,\n",
      "          'quickly': 1,\n",
      "          'highly': 1,\n",
      "          'political': 1,\n",
      "          'tom': 1,\n",
      "          'skerrit': 1,\n",
      "          'disdains': 1,\n",
      "          'favor': 1,\n",
      "          'commercial': 1,\n",
      "          'applications': 1,\n",
      "          'goes': 1,\n",
      "          'private': 1,\n",
      "          'funding': 1,\n",
      "          'turned': 1,\n",
      "          'every': 1,\n",
      "          'step': 1,\n",
      "          'pitches': 1,\n",
      "          'corporation': 1,\n",
      "          'run': 1,\n",
      "          'mysterious': 1,\n",
      "          'r': 1,\n",
      "          'john': 1,\n",
      "          'hurt': 1,\n",
      "          'money': 1,\n",
      "          'finally': 1,\n",
      "          'dry': 1,\n",
      "          'desert': 1,\n",
      "          'near': 1,\n",
      "          'new': 1,\n",
      "          'mexico': 1,\n",
      "          'hears': 1,\n",
      "          'headphones': 1,\n",
      "          'powerful': 1,\n",
      "          'pulsing': 1,\n",
      "          'movies': 1,\n",
      "          'exciting': 1,\n",
      "          'believable': 1,\n",
      "          'sequence': 1,\n",
      "          'coworkers': 1,\n",
      "          'determine': 1,\n",
      "          'coming': 1,\n",
      "          'star': 1,\n",
      "          'vega': 1,\n",
      "          'nat': 1,\n",
      "          'sequences': 1,\n",
      "          'prime': 1,\n",
      "          'numbers': 1,\n",
      "          'turns': 1,\n",
      "          'tv': 1,\n",
      "          'berlin': 1,\n",
      "          'olympics': 1,\n",
      "          'bounced': 1,\n",
      "          'back': 1,\n",
      "          'earth': 1,\n",
      "          '50': 1,\n",
      "          'years': 1,\n",
      "          'nfurther': 1,\n",
      "          'decoding': 1,\n",
      "          'haddens': 1,\n",
      "          'help': 1,\n",
      "          'reveals': 1,\n",
      "          'layer': 1,\n",
      "          'containing': 1,\n",
      "          'detailed': 1,\n",
      "          'plans': 1,\n",
      "          'massive': 1,\n",
      "          'complex': 1,\n",
      "          'transport': 1,\n",
      "          'allow': 1,\n",
      "          'travel': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'becomes': 1,\n",
      "          'whos': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'pay': 1,\n",
      "          'nto': 1,\n",
      "          'boil': 1,\n",
      "          'denied': 1,\n",
      "          'seat': 1,\n",
      "          'bluntly': 1,\n",
      "          'acknowledges': 1,\n",
      "          'atheism': 1,\n",
      "          'go': 1,\n",
      "          'insincerely': 1,\n",
      "          'deep': 1,\n",
      "          'destroyed': 1,\n",
      "          'fanatics': 1,\n",
      "          'bomb': 1,\n",
      "          'launch': 1,\n",
      "          'platform': 1,\n",
      "          'apparently': 1,\n",
      "          'keep': 1,\n",
      "          'godless': 1,\n",
      "          'talking': 1,\n",
      "          'something': 1,\n",
      "          'hadden': 1,\n",
      "          'reappears': 1,\n",
      "          'startling': 1,\n",
      "          'news': 1,\n",
      "          'nhe': 1,\n",
      "          'secretly': 1,\n",
      "          'constructed': 1,\n",
      "          'coast': 1,\n",
      "          'japan': 1,\n",
      "          'reserved': 1,\n",
      "          'taken': 1,\n",
      "          'paternal': 1,\n",
      "          'boards': 1,\n",
      "          'transported': 1,\n",
      "          'kind': 1,\n",
      "          'wormhole': 1,\n",
      "          'dreamlike': 1,\n",
      "          'looks': 1,\n",
      "          'waikiki': 1,\n",
      "          'beach': 1,\n",
      "          'built': 1,\n",
      "          'hotels': 1,\n",
      "          'meets': 1,\n",
      "          'late': 1,\n",
      "          'morse': 1,\n",
      "          'nwhen': 1,\n",
      "          'returns': 1,\n",
      "          'believes': 1,\n",
      "          'though': 1,\n",
      "          'remembers': 1,\n",
      "          '18': 1,\n",
      "          'officially': 1,\n",
      "          'discredited': 1,\n",
      "          'believed': 1,\n",
      "          'segment': 1,\n",
      "          'public': 1,\n",
      "          'computer': 1,\n",
      "          'records': 1,\n",
      "          'trip': 1,\n",
      "          'contain': 1,\n",
      "          'neighteen': 1,\n",
      "          'worth': 1,\n",
      "          'nthere': 1,\n",
      "          'highlight': 1,\n",
      "          'points': 1,\n",
      "          'wellrounded': 1,\n",
      "          'actresses': 1,\n",
      "          'currently': 1,\n",
      "          'working': 1,\n",
      "          'nneither': 1,\n",
      "          'performance': 1,\n",
      "          'depth': 1,\n",
      "          'clarice': 1,\n",
      "          'starling': 1,\n",
      "          'silence': 1,\n",
      "          'lambs': 1,\n",
      "          'thats': 1,\n",
      "          'tough': 1,\n",
      "          'standard': 1,\n",
      "          'woman': 1,\n",
      "          'defined': 1,\n",
      "          'strange': 1,\n",
      "          'idealized': 1,\n",
      "          'dad': 1,\n",
      "          'daughter': 1,\n",
      "          'unconditionally': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'distant': 1,\n",
      "          'stepfather': 1,\n",
      "          'irritating': 1,\n",
      "          'teenager': 1,\n",
      "          'wants': 1,\n",
      "          'toys': 1,\n",
      "          'get': 1,\n",
      "          'trouble': 1,\n",
      "          'affection': 1,\n",
      "          'seems': 1,\n",
      "          'see': 1,\n",
      "          'creation': 1,\n",
      "          'favorite': 1,\n",
      "          'piece': 1,\n",
      "          'chess': 1,\n",
      "          'board': 1,\n",
      "          'neven': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaughey': 1,\n",
      "          'ellies': 1,\n",
      "          'takes': 1,\n",
      "          'paternalistic': 1,\n",
      "          'seeing': 1,\n",
      "          'misguided': 1,\n",
      "          'needs': 1,\n",
      "          'protection': 1,\n",
      "          'impulses': 1,\n",
      "          'technically': 1,\n",
      "          'impressive': 1,\n",
      "          'especially': 1,\n",
      "          'scenes': 1,\n",
      "          'received': 1,\n",
      "          'destruction': 1,\n",
      "          'andromeda': 1,\n",
      "          'strain': 1,\n",
      "          'falls': 1,\n",
      "          'apart': 1,\n",
      "          'central': 1,\n",
      "          'theme': 1,\n",
      "          'dichotomy': 1,\n",
      "          'debate': 1,\n",
      "          'boils': 1,\n",
      "          'simplistic': 1,\n",
      "          'touches': 1,\n",
      "          'involved': 1,\n",
      "          'presents': 1,\n",
      "          'well': 1,\n",
      "          'stems': 1,\n",
      "          'nreligious': 1,\n",
      "          'presented': 1,\n",
      "          'shallow': 1,\n",
      "          'caricatures': 1,\n",
      "          'nrob': 1,\n",
      "          'lowe': 1,\n",
      "          'plays': 1,\n",
      "          'ralph': 1,\n",
      "          'reed': 1,\n",
      "          'clone': 1,\n",
      "          'richard': 1,\n",
      "          'rank': 1,\n",
      "          'subtle': 1,\n",
      "          'guys': 1,\n",
      "          'nanother': 1,\n",
      "          'figure': 1,\n",
      "          'fanatic': 1,\n",
      "          'blows': 1,\n",
      "          'jake': 1,\n",
      "          'busey': 1,\n",
      "          'fleshedout': 1,\n",
      "          'minister': 1,\n",
      "          'sort': 1,\n",
      "          'left': 1,\n",
      "          'vague': 1,\n",
      "          'cant': 1,\n",
      "          'certain': 1,\n",
      "          'christian': 1,\n",
      "          'nall': 1,\n",
      "          'dropped': 1,\n",
      "          'seminary': 1,\n",
      "          'qualms': 1,\n",
      "          'premarital': 1,\n",
      "          'sex': 1,\n",
      "          'drops': 1,\n",
      "          'ball': 1,\n",
      "          'assert': 1,\n",
      "          'things': 1,\n",
      "          'scientists': 1,\n",
      "          'must': 1,\n",
      "          'day': 1,\n",
      "          'age': 1,\n",
      "          'theory': 1,\n",
      "          'evolution': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'denounced': 1,\n",
      "          'doctrine': 1,\n",
      "          'exactly': 1,\n",
      "          'wrong': 1,\n",
      "          'scientist': 1,\n",
      "          'abandon': 1,\n",
      "          'principle': 1,\n",
      "          'scientific': 1,\n",
      "          'skepticism': 1,\n",
      "          'nwhat': 1,\n",
      "          'said': 1,\n",
      "          'believe': 1,\n",
      "          'nnot': 1,\n",
      "          'without': 1,\n",
      "          'happened': 1,\n",
      "          'word': 1,\n",
      "          'alone': 1,\n",
      "          'nthat': 1,\n",
      "          'speaking': 1,\n",
      "          'nhis': 1,\n",
      "          'attitudes': 1,\n",
      "          'toward': 1,\n",
      "          'seem': 1,\n",
      "          'position': 1,\n",
      "          'profession': 1,\n",
      "          'selection': 1,\n",
      "          'committee': 1,\n",
      "          'nakedly': 1,\n",
      "          'transparently': 1,\n",
      "          'insincere': 1,\n",
      "          'pack': 1,\n",
      "          'idiots': 1,\n",
      "          'fallen': 1,\n",
      "          'personalities': 1,\n",
      "          'various': 1,\n",
      "          'roles': 1,\n",
      "          'media': 1,\n",
      "          'bernard': 1,\n",
      "          'shaw': 1,\n",
      "          'jay': 1,\n",
      "          'leno': 1,\n",
      "          'arent': 1,\n",
      "          'bad': 1,\n",
      "          'much': 1,\n",
      "          'participation': 1,\n",
      "          'voluntary': 1,\n",
      "          'bill': 1,\n",
      "          'clinton': 1,\n",
      "          'give': 1,\n",
      "          'anyone': 1,\n",
      "          'pause': 1,\n",
      "          'nfirst': 1,\n",
      "          'lifting': 1,\n",
      "          'image': 1,\n",
      "          'head': 1,\n",
      "          'state': 1,\n",
      "          'inserting': 1,\n",
      "          'fictional': 1,\n",
      "          'line': 1,\n",
      "          'thus': 1,\n",
      "          'words': 1,\n",
      "          'outside': 1,\n",
      "          'context': 1,\n",
      "          'spoken': 1,\n",
      "          'plain': 1,\n",
      "          'creepy': 1,\n",
      "          'places': 1,\n",
      "          '1993': 1,\n",
      "          '2001': 1,\n",
      "          'forever': 1,\n",
      "          'dating': 1,\n",
      "          'npeople': 1,\n",
      "          'watching': 1,\n",
      "          'future': 1,\n",
      "          'hey': 1,\n",
      "          'took': 1,\n",
      "          'clintons': 1,\n",
      "          'term': 1,\n",
      "          'bit': 1,\n",
      "          'unreality': 1,\n",
      "          'jar': 1,\n",
      "          'suspension': 1,\n",
      "          'disbelief': 1,\n",
      "          'technology': 1,\n",
      "          'advanced': 1,\n",
      "          'decade': 1,\n",
      "          'next': 1,\n",
      "          'century': 1,\n",
      "          'nbetter': 1,\n",
      "          'fictitious': 1,\n",
      "          'played': 1,\n",
      "          'actor': 1,\n",
      "          'raise': 1,\n",
      "          'develops': 1,\n",
      "          'satisfying': 1,\n",
      "          'way': 1,\n",
      "          'nif': 1,\n",
      "          'picking': 1,\n",
      "          'emissary': 1,\n",
      "          'alien': 1,\n",
      "          'culture': 1,\n",
      "          'automatically': 1,\n",
      "          'disqualified': 1,\n",
      "          'ninety': 1,\n",
      "          'percent': 1,\n",
      "          'population': 1,\n",
      "          'belief': 1,\n",
      "          'least': 1,\n",
      "          'supernatural': 1,\n",
      "          'creator': 1,\n",
      "          'npersonally': 1,\n",
      "          'hope': 1,\n",
      "          'basically': 1,\n",
      "          'opinion': 1,\n",
      "          'ideology': 1,\n",
      "          'ideological': 1,\n",
      "          'test': 1,\n",
      "          'import': 1,\n",
      "          'task': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'world': 10,\n",
      "          'existenz': 9,\n",
      "          'game': 8,\n",
      "          'reality': 7,\n",
      "          'film': 7,\n",
      "          'nit': 5,\n",
      "          'virtual': 5,\n",
      "          'place': 5,\n",
      "          'dark': 5,\n",
      "          'life': 5,\n",
      "          'one': 4,\n",
      "          'many': 4,\n",
      "          'films': 4,\n",
      "          'nthe': 4,\n",
      "          'real': 4,\n",
      "          'characters': 4,\n",
      "          'different': 4,\n",
      "          'n': 4,\n",
      "          'cronenberg': 3,\n",
      "          'future': 3,\n",
      "          'events': 3,\n",
      "          'plot': 3,\n",
      "          'complete': 3,\n",
      "          'matrix': 3,\n",
      "          'unreal': 3,\n",
      "          'worth': 3,\n",
      "          'another': 2,\n",
      "          'strange': 2,\n",
      "          'science': 2,\n",
      "          'fiction': 2,\n",
      "          'last': 2,\n",
      "          'issues': 2,\n",
      "          'play': 2,\n",
      "          'important': 2,\n",
      "          'story': 2,\n",
      "          'games': 2,\n",
      "          'jennifer': 2,\n",
      "          'jason': 2,\n",
      "          'leigh': 2,\n",
      "          'leading': 2,\n",
      "          'designer': 2,\n",
      "          'organic': 2,\n",
      "          'ted': 2,\n",
      "          'doesnt': 2,\n",
      "          'exist': 2,\n",
      "          'players': 2,\n",
      "          'forced': 2,\n",
      "          'impossible': 2,\n",
      "          'premise': 2,\n",
      "          'city': 2,\n",
      "          'entertaining': 2,\n",
      "          'experience': 2,\n",
      "          'frightening': 2,\n",
      "          'possibilities': 2,\n",
      "          'never': 2,\n",
      "          'nand': 2,\n",
      "          'seemed': 2,\n",
      "          'failure': 2,\n",
      "          'dialogue': 2,\n",
      "          'silly': 2,\n",
      "          'performances': 2,\n",
      "          'scenes': 2,\n",
      "          'fails': 2,\n",
      "          'character': 2,\n",
      "          'rather': 2,\n",
      "          'create': 2,\n",
      "          'sacrificing': 2,\n",
      "          'mutated': 2,\n",
      "          'creatures': 2,\n",
      "          'even': 2,\n",
      "          'like': 2,\n",
      "          'blood': 2,\n",
      "          'see': 2,\n",
      "          'time': 2,\n",
      "          'everyday': 2,\n",
      "          'interesting': 2,\n",
      "          'david': 1,\n",
      "          'presents': 1,\n",
      "          'us': 1,\n",
      "          'tale': 1,\n",
      "          'crawling': 1,\n",
      "          'impressively': 1,\n",
      "          'twisted': 1,\n",
      "          'head': 1,\n",
      "          'released': 1,\n",
      "          'year': 1,\n",
      "          'millenium': 1,\n",
      "          'tackles': 1,\n",
      "          'role': 1,\n",
      "          'unfolds': 1,\n",
      "          'near': 1,\n",
      "          'line': 1,\n",
      "          'blurs': 1,\n",
      "          'unfriendly': 1,\n",
      "          'scared': 1,\n",
      "          'inhabitants': 1,\n",
      "          'hiding': 1,\n",
      "          'fantasy': 1,\n",
      "          'escape': 1,\n",
      "          'uncertainty': 1,\n",
      "          'nallegra': 1,\n",
      "          'geller': 1,\n",
      "          'testing': 1,\n",
      "          'new': 1,\n",
      "          'focus': 1,\n",
      "          'group': 1,\n",
      "          'nas': 1,\n",
      "          'begin': 1,\n",
      "          'attacked': 1,\n",
      "          'fanatic': 1,\n",
      "          'assassin': 1,\n",
      "          'employing': 1,\n",
      "          'bizarre': 1,\n",
      "          'gun': 1,\n",
      "          'nshe': 1,\n",
      "          'flees': 1,\n",
      "          'young': 1,\n",
      "          'marketing': 1,\n",
      "          'trainee': 1,\n",
      "          'pikul': 1,\n",
      "          'jude': 1,\n",
      "          'law': 1,\n",
      "          'suddenly': 1,\n",
      "          'assigned': 1,\n",
      "          'bodyguard': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'pod': 1,\n",
      "          'gaming': 1,\n",
      "          'device': 1,\n",
      "          'contains': 1,\n",
      "          'copy': 1,\n",
      "          'program': 1,\n",
      "          'damaged': 1,\n",
      "          'nto': 1,\n",
      "          'inspect': 1,\n",
      "          'talks': 1,\n",
      "          'accepting': 1,\n",
      "          'gameport': 1,\n",
      "          'body': 1,\n",
      "          'resulting': 1,\n",
      "          'lead': 1,\n",
      "          'pair': 1,\n",
      "          'adventure': 1,\n",
      "          'individuality': 1,\n",
      "          'perform': 1,\n",
      "          'unknown': 1,\n",
      "          'nhere': 1,\n",
      "          'actions': 1,\n",
      "          'determine': 1,\n",
      "          'either': 1,\n",
      "          'perspective': 1,\n",
      "          'ni': 1,\n",
      "          'dont': 1,\n",
      "          'intend': 1,\n",
      "          'reveal': 1,\n",
      "          'structured': 1,\n",
      "          'computer': 1,\n",
      "          'tasks': 1,\n",
      "          'must': 1,\n",
      "          'win': 1,\n",
      "          'nreleased': 1,\n",
      "          'similarities': 1,\n",
      "          'parallels': 1,\n",
      "          'connect': 1,\n",
      "          'nhowever': 1,\n",
      "          'moving': 1,\n",
      "          'direction': 1,\n",
      "          'na': 1,\n",
      "          'combination': 1,\n",
      "          'dazzling': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'brilliantly': 1,\n",
      "          'coordinated': 1,\n",
      "          'action': 1,\n",
      "          'sequences': 1,\n",
      "          'intelligent': 1,\n",
      "          'sophisticated': 1,\n",
      "          'made': 1,\n",
      "          'rare': 1,\n",
      "          'ideas': 1,\n",
      "          'hidden': 1,\n",
      "          'sparkling': 1,\n",
      "          'facade': 1,\n",
      "          'completely': 1,\n",
      "          'atmosphere': 1,\n",
      "          'resembling': 1,\n",
      "          'darker': 1,\n",
      "          'serious': 1,\n",
      "          'less': 1,\n",
      "          'opportunities': 1,\n",
      "          'potential': 1,\n",
      "          'enormous': 1,\n",
      "          'quite': 1,\n",
      "          'explored': 1,\n",
      "          'nafter': 1,\n",
      "          'engaging': 1,\n",
      "          'beginning': 1,\n",
      "          'starts': 1,\n",
      "          'falter': 1,\n",
      "          'nwhile': 1,\n",
      "          'watching': 1,\n",
      "          'left': 1,\n",
      "          'theatre': 1,\n",
      "          'first': 1,\n",
      "          'hour': 1,\n",
      "          'indeed': 1,\n",
      "          'actors': 1,\n",
      "          'unfinished': 1,\n",
      "          'relationships': 1,\n",
      "          'unexplained': 1,\n",
      "          'followed': 1,\n",
      "          'nbut': 1,\n",
      "          'fifteen': 1,\n",
      "          'minutes': 1,\n",
      "          'lifted': 1,\n",
      "          'level': 1,\n",
      "          'explaining': 1,\n",
      "          'past': 1,\n",
      "          'within': 1,\n",
      "          'jet': 1,\n",
      "          'several': 1,\n",
      "          'nprobably': 1,\n",
      "          'best': 1,\n",
      "          'written': 1,\n",
      "          'would': 1,\n",
      "          'spend': 1,\n",
      "          'rest': 1,\n",
      "          'face': 1,\n",
      "          'nthis': 1,\n",
      "          'great': 1,\n",
      "          'possibility': 1,\n",
      "          'magnificent': 1,\n",
      "          'stretches': 1,\n",
      "          'cronenbergs': 1,\n",
      "          'script': 1,\n",
      "          'limits': 1,\n",
      "          'advantages': 1,\n",
      "          'comparison': 1,\n",
      "          'shown': 1,\n",
      "          'nexistenz': 1,\n",
      "          'might': 1,\n",
      "          'dream': 1,\n",
      "          'fantasies': 1,\n",
      "          'nits': 1,\n",
      "          'cold': 1,\n",
      "          'interrelate': 1,\n",
      "          'eat': 1,\n",
      "          'murder': 1,\n",
      "          'look': 1,\n",
      "          'thinking': 1,\n",
      "          'ndavid': 1,\n",
      "          'creator': 1,\n",
      "          'fly': 1,\n",
      "          'videodrome': 1,\n",
      "          'dead': 1,\n",
      "          'zone': 1,\n",
      "          'hard': 1,\n",
      "          'guess': 1,\n",
      "          'violent': 1,\n",
      "          'gory': 1,\n",
      "          'nbesides': 1,\n",
      "          'regular': 1,\n",
      "          'murders': 1,\n",
      "          'innocent': 1,\n",
      "          'people': 1,\n",
      "          'audiences': 1,\n",
      "          'enjoy': 1,\n",
      "          'autopsy': 1,\n",
      "          'twoheaded': 1,\n",
      "          'amfibium': 1,\n",
      "          'nscenes': 1,\n",
      "          'become': 1,\n",
      "          'trademark': 1,\n",
      "          'seems': 1,\n",
      "          'cant': 1,\n",
      "          'make': 1,\n",
      "          'without': 1,\n",
      "          'flowing': 1,\n",
      "          'foul': 1,\n",
      "          'way': 1,\n",
      "          'crucial': 1,\n",
      "          'cronenbergto': 1,\n",
      "          'beautiful': 1,\n",
      "          'space': 1,\n",
      "          'problems': 1,\n",
      "          'blooming': 1,\n",
      "          'blossoms': 1,\n",
      "          'green': 1,\n",
      "          'forests': 1,\n",
      "          'clear': 1,\n",
      "          'waters': 1,\n",
      "          'really': 1,\n",
      "          'nbecause': 1,\n",
      "          'lack': 1,\n",
      "          'three': 1,\n",
      "          'dimensionality': 1,\n",
      "          'looses': 1,\n",
      "          'stays': 1,\n",
      "          'afloat': 1,\n",
      "          'amusing': 1,\n",
      "          'especially': 1,\n",
      "          'willem': 1,\n",
      "          'dafoe': 1,\n",
      "          'thought': 1,\n",
      "          'depicted': 1,\n",
      "          'ways': 1,\n",
      "          'throughout': 1,\n",
      "          'movie': 1,\n",
      "          'nduring': 1,\n",
      "          'audience': 1,\n",
      "          'confused': 1,\n",
      "          'detached': 1,\n",
      "          'existence': 1,\n",
      "          'longer': 1,\n",
      "          'able': 1,\n",
      "          'difference': 1,\n",
      "          'alternative': 1,\n",
      "          'created': 1,\n",
      "          'despite': 1,\n",
      "          'disturbing': 1,\n",
      "          'thoughts': 1,\n",
      "          'ends': 1,\n",
      "          'light': 1,\n",
      "          'end': 1,\n",
      "          'tunnel': 1,\n",
      "          'ending': 1,\n",
      "          'gore': 1,\n",
      "          'madness': 1,\n",
      "          'forecast': 1,\n",
      "          'tomorrow': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 6,\n",
      "          'makes': 5,\n",
      "          'film': 5,\n",
      "          'mystery': 4,\n",
      "          'killer': 4,\n",
      "          'much': 4,\n",
      "          'mills': 4,\n",
      "          'even': 4,\n",
      "          'sommerset': 4,\n",
      "          'seven': 3,\n",
      "          'intriguing': 3,\n",
      "          'quite': 3,\n",
      "          'dont': 3,\n",
      "          'story': 3,\n",
      "          'way': 3,\n",
      "          'nits': 2,\n",
      "          'catch': 2,\n",
      "          'man': 2,\n",
      "          'ni': 2,\n",
      "          'go': 2,\n",
      "          'give': 2,\n",
      "          'good': 2,\n",
      "          'seem': 2,\n",
      "          'detective': 2,\n",
      "          'nthere': 2,\n",
      "          'nthis': 2,\n",
      "          'mood': 2,\n",
      "          'tense': 2,\n",
      "          'place': 2,\n",
      "          'city': 2,\n",
      "          'evil': 2,\n",
      "          'scary': 2,\n",
      "          'many': 2,\n",
      "          'words': 2,\n",
      "          'really': 2,\n",
      "          'suspense': 2,\n",
      "          'detectives': 2,\n",
      "          'films': 2,\n",
      "          'suspect': 2,\n",
      "          'doe': 2,\n",
      "          'terrific': 2,\n",
      "          'scene': 2,\n",
      "          'surprising': 2,\n",
      "          'comes': 2,\n",
      "          'justice': 2,\n",
      "          'one': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'extremely': 1,\n",
      "          'suspenseful': 1,\n",
      "          'also': 1,\n",
      "          'fun': 1,\n",
      "          'serial': 1,\n",
      "          'care': 1,\n",
      "          'making': 1,\n",
      "          'pay': 1,\n",
      "          'hope': 1,\n",
      "          'copsonthetrailofserialkiller': 1,\n",
      "          'nsomeone': 1,\n",
      "          'murdering': 1,\n",
      "          'people': 1,\n",
      "          'offenders': 1,\n",
      "          'deadly': 1,\n",
      "          'sins': 1,\n",
      "          'na': 1,\n",
      "          'fat': 1,\n",
      "          'gluttony': 1,\n",
      "          'forced': 1,\n",
      "          'eat': 1,\n",
      "          'death': 1,\n",
      "          'lawyer': 1,\n",
      "          'greed': 1,\n",
      "          'slaughtered': 1,\n",
      "          'rich': 1,\n",
      "          'possessions': 1,\n",
      "          'could': 1,\n",
      "          'revealing': 1,\n",
      "          'would': 1,\n",
      "          'away': 1,\n",
      "          'entirely': 1,\n",
      "          'nwhat': 1,\n",
      "          'unique': 1,\n",
      "          'characterization': 1,\n",
      "          'guys': 1,\n",
      "          'unseen': 1,\n",
      "          'villain': 1,\n",
      "          'vile': 1,\n",
      "          'nbrad': 1,\n",
      "          'pitt': 1,\n",
      "          'stars': 1,\n",
      "          'excellent': 1,\n",
      "          'david': 1,\n",
      "          'cocky': 1,\n",
      "          'rookie': 1,\n",
      "          'nhowever': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'better': 1,\n",
      "          'william': 1,\n",
      "          'wise': 1,\n",
      "          'veteran': 1,\n",
      "          'verge': 1,\n",
      "          'retirement': 1,\n",
      "          'doesnt': 1,\n",
      "          'get': 1,\n",
      "          'killed': 1,\n",
      "          'end': 1,\n",
      "          'great': 1,\n",
      "          'sense': 1,\n",
      "          'camaraderie': 1,\n",
      "          'often': 1,\n",
      "          'provides': 1,\n",
      "          'breath': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'impressive': 1,\n",
      "          'fact': 1,\n",
      "          'downplayed': 1,\n",
      "          'well': 1,\n",
      "          'let': 1,\n",
      "          'alone': 1,\n",
      "          'accomplishment': 1,\n",
      "          'setting': 1,\n",
      "          'takes': 1,\n",
      "          'present': 1,\n",
      "          'day': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'able': 1,\n",
      "          'feeling': 1,\n",
      "          'believe': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'superb': 1,\n",
      "          'spirit': 1,\n",
      "          'batman': 1,\n",
      "          'crow': 1,\n",
      "          'embodies': 1,\n",
      "          'gothic': 1,\n",
      "          'fade': 1,\n",
      "          'along': 1,\n",
      "          'freaky': 1,\n",
      "          'nine': 1,\n",
      "          'inch': 1,\n",
      "          'nails': 1,\n",
      "          'music': 1,\n",
      "          'add': 1,\n",
      "          'lot': 1,\n",
      "          'subconscious': 1,\n",
      "          'level': 1,\n",
      "          'credits': 1,\n",
      "          'killers': 1,\n",
      "          'victims': 1,\n",
      "          'connections': 1,\n",
      "          'thus': 1,\n",
      "          'solve': 1,\n",
      "          'case': 1,\n",
      "          'nthey': 1,\n",
      "          'wait': 1,\n",
      "          'next': 1,\n",
      "          'murder': 1,\n",
      "          'occur': 1,\n",
      "          'tremendous': 1,\n",
      "          'nwe': 1,\n",
      "          'become': 1,\n",
      "          'worried': 1,\n",
      "          'thick': 1,\n",
      "          'atmosphere': 1,\n",
      "          'unknown': 1,\n",
      "          'nnot': 1,\n",
      "          'interesting': 1,\n",
      "          'screenplay': 1,\n",
      "          'problem': 1,\n",
      "          'lead': 1,\n",
      "          'nlets': 1,\n",
      "          'say': 1,\n",
      "          'seems': 1,\n",
      "          'little': 1,\n",
      "          'movie': 1,\n",
      "          'convenient': 1,\n",
      "          'nwhen': 1,\n",
      "          'led': 1,\n",
      "          'name': 1,\n",
      "          'john': 1,\n",
      "          'chase': 1,\n",
      "          'ensues': 1,\n",
      "          'typical': 1,\n",
      "          'thrilling': 1,\n",
      "          'element': 1,\n",
      "          'works': 1,\n",
      "          'perfectly': 1,\n",
      "          'process': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'epitome': 1,\n",
      "          'twist': 1,\n",
      "          'endings': 1,\n",
      "          'tell': 1,\n",
      "          'finally': 1,\n",
      "          'criminal': 1,\n",
      "          'happens': 1,\n",
      "          'philosophy': 1,\n",
      "          'though': 1,\n",
      "          'hes': 1,\n",
      "          'obviously': 1,\n",
      "          'insane': 1,\n",
      "          'charisma': 1,\n",
      "          'points': 1,\n",
      "          'nwhats': 1,\n",
      "          'last': 1,\n",
      "          'scenes': 1,\n",
      "          'climax': 1,\n",
      "          'resolution': 1,\n",
      "          'question': 1,\n",
      "          'n': 1,\n",
      "          'crime': 1,\n",
      "          'within': 1,\n",
      "          'njohn': 1,\n",
      "          'felt': 1,\n",
      "          'society': 1,\n",
      "          'favor': 1,\n",
      "          'ridding': 1,\n",
      "          'scum': 1,\n",
      "          'nbut': 1,\n",
      "          'justified': 1,\n",
      "          'must': 1,\n",
      "          'never': 1,\n",
      "          'tempted': 1,\n",
      "          'twisted': 1,\n",
      "          'ideals': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 23,\n",
      "          'allen': 14,\n",
      "          'one': 10,\n",
      "          'really': 10,\n",
      "          'woody': 9,\n",
      "          'great': 9,\n",
      "          'nthe': 7,\n",
      "          'films': 6,\n",
      "          'like': 6,\n",
      "          'celebrities': 6,\n",
      "          'never': 5,\n",
      "          'good': 5,\n",
      "          'character': 5,\n",
      "          'lee': 5,\n",
      "          'davis': 5,\n",
      "          'allens': 4,\n",
      "          'movie': 4,\n",
      "          'celebrity': 4,\n",
      "          'personal': 4,\n",
      "          'almost': 4,\n",
      "          'fact': 4,\n",
      "          'become': 4,\n",
      "          'n': 4,\n",
      "          'totally': 4,\n",
      "          'takes': 4,\n",
      "          'hes': 4,\n",
      "          'happiness': 4,\n",
      "          'opening': 3,\n",
      "          'time': 3,\n",
      "          'ive': 3,\n",
      "          'ever': 3,\n",
      "          'help': 3,\n",
      "          'old': 3,\n",
      "          'take': 3,\n",
      "          'nand': 3,\n",
      "          'griffith': 3,\n",
      "          'though': 3,\n",
      "          'close': 3,\n",
      "          'could': 3,\n",
      "          'yes': 3,\n",
      "          'world': 3,\n",
      "          'knows': 3,\n",
      "          'crisis': 3,\n",
      "          'thing': 3,\n",
      "          'blah': 3,\n",
      "          'still': 3,\n",
      "          'trying': 3,\n",
      "          'scenes': 3,\n",
      "          'exactly': 3,\n",
      "          'get': 3,\n",
      "          'may': 3,\n",
      "          'terribly': 2,\n",
      "          'heart': 2,\n",
      "          'closely': 2,\n",
      "          'manhattan': 2,\n",
      "          'favorite': 2,\n",
      "          'nwoody': 2,\n",
      "          'flair': 2,\n",
      "          'seen': 2,\n",
      "          'beautiful': 2,\n",
      "          'black': 2,\n",
      "          'white': 2,\n",
      "          'best': 2,\n",
      "          'cant': 2,\n",
      "          'feel': 2,\n",
      "          'soundtrack': 2,\n",
      "          'screen': 2,\n",
      "          'city': 2,\n",
      "          'moment': 2,\n",
      "          'look': 2,\n",
      "          'lead': 2,\n",
      "          'actress': 2,\n",
      "          'wrong': 2,\n",
      "          'nits': 2,\n",
      "          'stale': 2,\n",
      "          'scene': 2,\n",
      "          'without': 2,\n",
      "          'soon': 2,\n",
      "          'new': 2,\n",
      "          'years': 2,\n",
      "          'deconstructing': 2,\n",
      "          'harry': 2,\n",
      "          'less': 2,\n",
      "          'funny': 2,\n",
      "          'insightful': 2,\n",
      "          'wonderful': 2,\n",
      "          'story': 2,\n",
      "          'everyone': 2,\n",
      "          'love': 2,\n",
      "          'way': 2,\n",
      "          'even': 2,\n",
      "          'subject': 2,\n",
      "          'bit': 2,\n",
      "          'fashioned': 2,\n",
      "          'la': 2,\n",
      "          'dolce': 2,\n",
      "          'vita': 2,\n",
      "          'flaws': 2,\n",
      "          'performance': 2,\n",
      "          'makes': 2,\n",
      "          'actually': 2,\n",
      "          'charm': 2,\n",
      "          'witty': 2,\n",
      "          'nhis': 2,\n",
      "          'ryder': 2,\n",
      "          'goes': 2,\n",
      "          'nwe': 2,\n",
      "          'nhe': 2,\n",
      "          'job': 2,\n",
      "          'journalist': 2,\n",
      "          'places': 2,\n",
      "          'maybe': 2,\n",
      "          'script': 2,\n",
      "          'girlfriend': 2,\n",
      "          'fling': 2,\n",
      "          'comes': 2,\n",
      "          'escapades': 2,\n",
      "          'theron': 2,\n",
      "          'see': 2,\n",
      "          'jokes': 2,\n",
      "          'ha': 2,\n",
      "          'wild': 2,\n",
      "          'ride': 2,\n",
      "          'relationship': 2,\n",
      "          'smart': 2,\n",
      "          'woman': 2,\n",
      "          'becomes': 2,\n",
      "          'happy': 2,\n",
      "          'mediums': 2,\n",
      "          'work': 2,\n",
      "          'nbut': 2,\n",
      "          'sequence': 2,\n",
      "          'darrow': 2,\n",
      "          'gets': 2,\n",
      "          'despite': 2,\n",
      "          'either': 2,\n",
      "          'seem': 2,\n",
      "          'enough': 2,\n",
      "          'make': 2,\n",
      "          'hearing': 1,\n",
      "          'reviews': 1,\n",
      "          'upteenth': 1,\n",
      "          'history': 1,\n",
      "          'range': 1,\n",
      "          'boring': 1,\n",
      "          'soso': 1,\n",
      "          'lept': 1,\n",
      "          'images': 1,\n",
      "          'resembled': 1,\n",
      "          'director': 1,\n",
      "          'rely': 1,\n",
      "          'visual': 1,\n",
      "          'textual': 1,\n",
      "          'resembles': 1,\n",
      "          'two': 1,\n",
      "          'entities': 1,\n",
      "          'fit': 1,\n",
      "          'handinhand': 1,\n",
      "          'bestlooking': 1,\n",
      "          'photography': 1,\n",
      "          'citys': 1,\n",
      "          'areas': 1,\n",
      "          'etc': 1,\n",
      "          'fan': 1,\n",
      "          'visibly': 1,\n",
      "          'moved': 1,\n",
      "          'opens': 1,\n",
      "          'usual': 1,\n",
      "          'credits': 1,\n",
      "          'plain': 1,\n",
      "          'font': 1,\n",
      "          'backgrounds': 1,\n",
      "          'ironic': 1,\n",
      "          'standard': 1,\n",
      "          'playing': 1,\n",
      "          'fills': 1,\n",
      "          'gorgeous': 1,\n",
      "          'dull': 1,\n",
      "          'gray': 1,\n",
      "          'sky': 1,\n",
      "          'word': 1,\n",
      "          'spelled': 1,\n",
      "          'airplane': 1,\n",
      "          'nbeethovens': 1,\n",
      "          '5th': 1,\n",
      "          'blasts': 1,\n",
      "          'seems': 1,\n",
      "          'stop': 1,\n",
      "          'notice': 1,\n",
      "          'rather': 1,\n",
      "          'lovely': 1,\n",
      "          'cut': 1,\n",
      "          'crew': 1,\n",
      "          'shooting': 1,\n",
      "          'hilariously': 1,\n",
      "          'banal': 1,\n",
      "          'key': 1,\n",
      "          'melanie': 1,\n",
      "          'looking': 1,\n",
      "          'buxom': 1,\n",
      "          'realize': 1,\n",
      "          'somethings': 1,\n",
      "          'life': 1,\n",
      "          'whatever': 1,\n",
      "          'shots': 1,\n",
      "          'sank': 1,\n",
      "          'got': 1,\n",
      "          'used': 1,\n",
      "          'going': 1,\n",
      "          'past': 1,\n",
      "          'works': 1,\n",
      "          'record': 1,\n",
      "          'last': 1,\n",
      "          'came': 1,\n",
      "          'awfully': 1,\n",
      "          'nwhat': 1,\n",
      "          'hell': 1,\n",
      "          'happened': 1,\n",
      "          'man': 1,\n",
      "          'relied': 1,\n",
      "          'neurotic': 1,\n",
      "          'freshness': 1,\n",
      "          'cinema': 1,\n",
      "          'tossed': 1,\n",
      "          'together': 1,\n",
      "          'unfinished': 1,\n",
      "          'ideas': 1,\n",
      "          'bullets': 1,\n",
      "          'broadway': 1,\n",
      "          'relies': 1,\n",
      "          'irony': 1,\n",
      "          'pull': 1,\n",
      "          'farce': 1,\n",
      "          'mighty': 1,\n",
      "          'aphrodite': 1,\n",
      "          'full': 1,\n",
      "          'moments': 1,\n",
      "          'lines': 1,\n",
      "          'says': 1,\n",
      "          'idea': 1,\n",
      "          'neven': 1,\n",
      "          'admittingly': 1,\n",
      "          'cheap': 1,\n",
      "          'top': 1,\n",
      "          'truly': 1,\n",
      "          'hilarious': 1,\n",
      "          'nif': 1,\n",
      "          'anything': 1,\n",
      "          'reception': 1,\n",
      "          'tip': 1,\n",
      "          'audience': 1,\n",
      "          'critics': 1,\n",
      "          'marginally': 1,\n",
      "          'satisfying': 1,\n",
      "          'ninstead': 1,\n",
      "          'creating': 1,\n",
      "          'created': 1,\n",
      "          'based': 1,\n",
      "          'entirely': 1,\n",
      "          'uninformed': 1,\n",
      "          'philosophy': 1,\n",
      "          'plays': 1,\n",
      "          'series': 1,\n",
      "          'skits': 1,\n",
      "          'minor': 1,\n",
      "          'connections': 1,\n",
      "          'accuracy': 1,\n",
      "          'right': 1,\n",
      "          'amount': 1,\n",
      "          'wit': 1,\n",
      "          'correct': 1,\n",
      "          'becoming': 1,\n",
      "          'insecure': 1,\n",
      "          'age': 1,\n",
      "          'choses': 1,\n",
      "          'drop': 1,\n",
      "          'hang': 1,\n",
      "          'scrutiny': 1,\n",
      "          'casting': 1,\n",
      "          'brit': 1,\n",
      "          'actor': 1,\n",
      "          'kenneth': 1,\n",
      "          'branagh': 1,\n",
      "          'nmuch': 1,\n",
      "          'said': 1,\n",
      "          'dead': 1,\n",
      "          'irritating': 1,\n",
      "          'yearn': 1,\n",
      "          'real': 1,\n",
      "          'anyone': 1,\n",
      "          'branaghs': 1,\n",
      "          'featuring': 1,\n",
      "          'mannerisms': 1,\n",
      "          'stuttering': 1,\n",
      "          'whining': 1,\n",
      "          'lots': 1,\n",
      "          'hand': 1,\n",
      "          'gestures': 1,\n",
      "          'hardly': 1,\n",
      "          'wartsandall': 1,\n",
      "          'impersonation': 1,\n",
      "          'nbranagh': 1,\n",
      "          'brings': 1,\n",
      "          'along': 1,\n",
      "          'little': 1,\n",
      "          'allows': 1,\n",
      "          'characters': 1,\n",
      "          'apparent': 1,\n",
      "          'nwoodys': 1,\n",
      "          'flawed': 1,\n",
      "          'guy': 1,\n",
      "          'know': 1,\n",
      "          'anyway': 1,\n",
      "          'intelligent': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'nbranaghs': 1,\n",
      "          'flatout': 1,\n",
      "          'bad': 1,\n",
      "          'sure': 1,\n",
      "          'person': 1,\n",
      "          'simon': 1,\n",
      "          'first': 1,\n",
      "          'set': 1,\n",
      "          'aforementioned': 1,\n",
      "          'hits': 1,\n",
      "          'extra': 1,\n",
      "          'winona': 1,\n",
      "          'interview': 1,\n",
      "          'childhood': 1,\n",
      "          'home': 1,\n",
      "          'pass': 1,\n",
      "          'denies': 1,\n",
      "          'sorta': 1,\n",
      "          'learn': 1,\n",
      "          'flashbacks': 1,\n",
      "          'sucked': 1,\n",
      "          'thanks': 1,\n",
      "          'midlife': 1,\n",
      "          'appearance': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'reunion': 1,\n",
      "          'since': 1,\n",
      "          'quit': 1,\n",
      "          'travel': 1,\n",
      "          'gossip': 1,\n",
      "          'sorts': 1,\n",
      "          'covering': 1,\n",
      "          'sets': 1,\n",
      "          'congregate': 1,\n",
      "          'meet': 1,\n",
      "          'sell': 1,\n",
      "          'bank': 1,\n",
      "          'robbery': 1,\n",
      "          'deep': 1,\n",
      "          'nas': 1,\n",
      "          'divorced': 1,\n",
      "          'wife': 1,\n",
      "          'several': 1,\n",
      "          'regular': 1,\n",
      "          'judy': 1,\n",
      "          'continues': 1,\n",
      "          'quest': 1,\n",
      "          'sexual': 1,\n",
      "          'boucing': 1,\n",
      "          'course': 1,\n",
      "          'nafter': 1,\n",
      "          'model': 1,\n",
      "          'charlize': 1,\n",
      "          'polymorphously': 1,\n",
      "          'perverse': 1,\n",
      "          'glad': 1,\n",
      "          'using': 1,\n",
      "          'different': 1,\n",
      "          'anita': 1,\n",
      "          'ekberg': 1,\n",
      "          'segment': 1,\n",
      "          'nfollowing': 1,\n",
      "          'safe': 1,\n",
      "          'working': 1,\n",
      "          'famke': 1,\n",
      "          'janssen': 1,\n",
      "          'assures': 1,\n",
      "          'success': 1,\n",
      "          'continued': 1,\n",
      "          'fancies': 1,\n",
      "          'juxtaposed': 1,\n",
      "          'flips': 1,\n",
      "          'stumbles': 1,\n",
      "          'onto': 1,\n",
      "          'runs': 1,\n",
      "          'handsome': 1,\n",
      "          'friendly': 1,\n",
      "          'tv': 1,\n",
      "          'exec': 1,\n",
      "          'joe': 1,\n",
      "          'mantegna': 1,\n",
      "          'lands': 1,\n",
      "          'furthers': 1,\n",
      "          'career': 1,\n",
      "          'national': 1,\n",
      "          'status': 1,\n",
      "          'nwhile': 1,\n",
      "          'fumbling': 1,\n",
      "          'selfishly': 1,\n",
      "          'ensure': 1,\n",
      "          'kind': 1,\n",
      "          'always': 1,\n",
      "          'hated': 1,\n",
      "          'nim': 1,\n",
      "          'loving': 1,\n",
      "          'nwithout': 1,\n",
      "          'result': 1,\n",
      "          'highs': 1,\n",
      "          'sitations': 1,\n",
      "          'dont': 1,\n",
      "          'pat': 1,\n",
      "          'back': 1,\n",
      "          'wished': 1,\n",
      "          'hadnt': 1,\n",
      "          'ended': 1,\n",
      "          'na': 1,\n",
      "          'banana': 1,\n",
      "          'bebe': 1,\n",
      "          'neuwirth': 1,\n",
      "          'droll': 1,\n",
      "          'perhaps': 1,\n",
      "          'romp': 1,\n",
      "          'hotashell': 1,\n",
      "          'teen': 1,\n",
      "          'idol': 1,\n",
      "          'brandon': 1,\n",
      "          'played': 1,\n",
      "          'none': 1,\n",
      "          'leo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'undicaprioesque': 1,\n",
      "          'fans': 1,\n",
      "          'sit': 1,\n",
      "          'theyd': 1,\n",
      "          'ignites': 1,\n",
      "          'intensity': 1,\n",
      "          'spares': 1,\n",
      "          'nothing': 1,\n",
      "          'showing': 1,\n",
      "          'narcissistically': 1,\n",
      "          'tyrannical': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'talk': 1,\n",
      "          'read': 1,\n",
      "          'finds': 1,\n",
      "          'allday': 1,\n",
      "          'nthey': 1,\n",
      "          'go': 1,\n",
      "          'atlantic': 1,\n",
      "          'watch': 1,\n",
      "          'fight': 1,\n",
      "          'gamble': 1,\n",
      "          'wind': 1,\n",
      "          'hotel': 1,\n",
      "          'room': 1,\n",
      "          'flame': 1,\n",
      "          'gretchen': 1,\n",
      "          'mol': 1,\n",
      "          'lends': 1,\n",
      "          'leftover': 1,\n",
      "          'groupies': 1,\n",
      "          'nallens': 1,\n",
      "          'writing': 1,\n",
      "          'id': 1,\n",
      "          'recommend': 1,\n",
      "          'nalmost': 1,\n",
      "          'liked': 1,\n",
      "          'mess': 1,\n",
      "          'needs': 1,\n",
      "          'rewrite': 1,\n",
      "          'nthough': 1,\n",
      "          'misplaced': 1,\n",
      "          'cartoonish': 1,\n",
      "          'environment': 1,\n",
      "          'manages': 1,\n",
      "          'across': 1,\n",
      "          'itd': 1,\n",
      "          'extremely': 1,\n",
      "          'outoftouch': 1,\n",
      "          'want': 1,\n",
      "          'equate': 1,\n",
      "          'celebrityhood': 1,\n",
      "          'actual': 1,\n",
      "          'theyre': 1,\n",
      "          'appear': 1,\n",
      "          'surface': 1,\n",
      "          'nlee': 1,\n",
      "          'obsessed': 1,\n",
      "          'phenomenon': 1,\n",
      "          'arms': 1,\n",
      "          'length': 1,\n",
      "          'involved': 1,\n",
      "          'nbesides': 1,\n",
      "          'nit': 1,\n",
      "          'fresh': 1,\n",
      "          'lively': 1,\n",
      "          'brilliant': 1,\n",
      "          'depiction': 1,\n",
      "          'part': 1,\n",
      "          'oeuvre': 1,\n",
      "          'merely': 1,\n",
      "          'blip': 1,\n",
      "          'annie': 1,\n",
      "          'hall': 1,\n",
      "          'shadows': 1,\n",
      "          'fog': 1,\n",
      "          'prove': 1,\n",
      "          'godard': 1,\n",
      "          'possibly': 1,\n",
      "          'horrible': 1,\n",
      "          'metaphor': 1,\n",
      "          'beginning': 1,\n",
      "          'twice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 11,\n",
      "          'jesus': 11,\n",
      "          'christ': 9,\n",
      "          'life': 8,\n",
      "          'nthe': 7,\n",
      "          'n': 5,\n",
      "          'also': 5,\n",
      "          'message': 5,\n",
      "          'moments': 5,\n",
      "          'truly': 5,\n",
      "          'nit': 5,\n",
      "          'die': 4,\n",
      "          'simply': 4,\n",
      "          'one': 4,\n",
      "          'new': 4,\n",
      "          'york': 4,\n",
      "          'temptation': 3,\n",
      "          'njesus': 3,\n",
      "          'judas': 3,\n",
      "          'confused': 3,\n",
      "          'audience': 3,\n",
      "          'movie': 2,\n",
      "          'last': 2,\n",
      "          'scorseses': 2,\n",
      "          'yet': 2,\n",
      "          'nscorsese': 2,\n",
      "          '20': 2,\n",
      "          'dafoe': 2,\n",
      "          'carpenter': 2,\n",
      "          'learns': 2,\n",
      "          'desert': 2,\n",
      "          'god': 2,\n",
      "          'leaving': 2,\n",
      "          'asks': 2,\n",
      "          'forgiveness': 2,\n",
      "          'mary': 2,\n",
      "          'magdelene': 2,\n",
      "          'true': 2,\n",
      "          'purpose': 2,\n",
      "          'world': 2,\n",
      "          'way': 2,\n",
      "          'prophets': 2,\n",
      "          'tries': 2,\n",
      "          'nchrist': 2,\n",
      "          'story': 2,\n",
      "          'love': 2,\n",
      "          'n20': 2,\n",
      "          'cross': 2,\n",
      "          'saved': 2,\n",
      "          'girl': 2,\n",
      "          'angel': 2,\n",
      "          'man': 2,\n",
      "          'deathbed': 2,\n",
      "          'breathtaking': 2,\n",
      "          'capture': 2,\n",
      "          'frailties': 2,\n",
      "          'nschrader': 2,\n",
      "          'words': 2,\n",
      "          'nthere': 2,\n",
      "          'glory': 2,\n",
      "          'us': 2,\n",
      "          'give': 2,\n",
      "          'hilarity': 2,\n",
      "          'scene': 2,\n",
      "          'astonishingly': 1,\n",
      "          'difficult': 1,\n",
      "          'watch': 1,\n",
      "          'may': 1,\n",
      "          'important': 1,\n",
      "          'impossibly': 1,\n",
      "          'abstract': 1,\n",
      "          'well': 1,\n",
      "          'presents': 1,\n",
      "          'nikos': 1,\n",
      "          'kazantzakis': 1,\n",
      "          'novel': 1,\n",
      "          'details': 1,\n",
      "          'approximately': 1,\n",
      "          'day': 1,\n",
      "          'crucifixtion': 1,\n",
      "          'nazareth': 1,\n",
      "          'opens': 1,\n",
      "          'making': 1,\n",
      "          'crosses': 1,\n",
      "          'escape': 1,\n",
      "          'fate': 1,\n",
      "          'subjected': 1,\n",
      "          'destiny': 1,\n",
      "          'earth': 1,\n",
      "          'soon': 1,\n",
      "          'evil': 1,\n",
      "          'ways': 1,\n",
      "          'aiding': 1,\n",
      "          'deaths': 1,\n",
      "          'others': 1,\n",
      "          'subjects': 1,\n",
      "          'exile': 1,\n",
      "          'hopes': 1,\n",
      "          'reach': 1,\n",
      "          'nbefore': 1,\n",
      "          'barbara': 1,\n",
      "          'hershey': 1,\n",
      "          'prostitute': 1,\n",
      "          'childhood': 1,\n",
      "          'friend': 1,\n",
      "          'nafter': 1,\n",
      "          'going': 1,\n",
      "          'must': 1,\n",
      "          'naided': 1,\n",
      "          'keitel': 1,\n",
      "          'sets': 1,\n",
      "          'teaching': 1,\n",
      "          'nalong': 1,\n",
      "          'meets': 1,\n",
      "          'john': 1,\n",
      "          'baptist': 1,\n",
      "          'rest': 1,\n",
      "          'teach': 1,\n",
      "          'confronted': 1,\n",
      "          'internal': 1,\n",
      "          'demons': 1,\n",
      "          'selfdoubt': 1,\n",
      "          'find': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'nduring': 1,\n",
      "          'closese': 1,\n",
      "          'ally': 1,\n",
      "          'betrayal': 1,\n",
      "          'argues': 1,\n",
      "          'hate': 1,\n",
      "          'order': 1,\n",
      "          'allow': 1,\n",
      "          'nhe': 1,\n",
      "          'eventually': 1,\n",
      "          'captured': 1,\n",
      "          'crucified': 1,\n",
      "          'per': 1,\n",
      "          'bibile': 1,\n",
      "          'however': 1,\n",
      "          'brings': 1,\n",
      "          'marriage': 1,\n",
      "          'guardian': 1,\n",
      "          'death': 1,\n",
      "          'goes': 1,\n",
      "          'live': 1,\n",
      "          'non': 1,\n",
      "          'final': 1,\n",
      "          'visited': 1,\n",
      "          'denounces': 1,\n",
      "          'master': 1,\n",
      "          'keeping': 1,\n",
      "          'end': 1,\n",
      "          'bargain': 1,\n",
      "          'njudas': 1,\n",
      "          'reveals': 1,\n",
      "          'devil': 1,\n",
      "          'lived': 1,\n",
      "          'ultimate': 1,\n",
      "          'selfish': 1,\n",
      "          'act': 1,\n",
      "          'escapes': 1,\n",
      "          'father': 1,\n",
      "          'succumbing': 1,\n",
      "          'nvisually': 1,\n",
      "          'aurally': 1,\n",
      "          'absolutely': 1,\n",
      "          'nno': 1,\n",
      "          'director': 1,\n",
      "          'even': 1,\n",
      "          'come': 1,\n",
      "          'close': 1,\n",
      "          'realizing': 1,\n",
      "          'jerusalem': 1,\n",
      "          'time': 1,\n",
      "          'christs': 1,\n",
      "          'screen': 1,\n",
      "          'npeter': 1,\n",
      "          'gabriel': 1,\n",
      "          'contributes': 1,\n",
      "          'score': 1,\n",
      "          'astonishing': 1,\n",
      "          'pulsing': 1,\n",
      "          'rhythms': 1,\n",
      "          'viewer': 1,\n",
      "          'performances': 1,\n",
      "          'exquisite': 1,\n",
      "          'leading': 1,\n",
      "          'mesmerizing': 1,\n",
      "          'turn': 1,\n",
      "          'nkeitel': 1,\n",
      "          'although': 1,\n",
      "          'accent': 1,\n",
      "          'problem': 1,\n",
      "          'passionately': 1,\n",
      "          'brilliant': 1,\n",
      "          'fighting': 1,\n",
      "          'language': 1,\n",
      "          'bring': 1,\n",
      "          'character': 1,\n",
      "          'visuals': 1,\n",
      "          'amazing': 1,\n",
      "          'frames': 1,\n",
      "          'harsh': 1,\n",
      "          'tone': 1,\n",
      "          'impression': 1,\n",
      "          'human': 1,\n",
      "          'though': 1,\n",
      "          'many': 1,\n",
      "          'trouble': 1,\n",
      "          'spots': 1,\n",
      "          'npaul': 1,\n",
      "          'schraders': 1,\n",
      "          'script': 1,\n",
      "          'uses': 1,\n",
      "          'modernday': 1,\n",
      "          'english': 1,\n",
      "          'tell': 1,\n",
      "          'along': 1,\n",
      "          'mannerisms': 1,\n",
      "          'slang': 1,\n",
      "          'speech': 1,\n",
      "          'focus': 1,\n",
      "          'godly': 1,\n",
      "          'aspects': 1,\n",
      "          'underlying': 1,\n",
      "          'behind': 1,\n",
      "          'mans': 1,\n",
      "          'fails': 1,\n",
      "          'splendor': 1,\n",
      "          'nhad': 1,\n",
      "          'faithfully': 1,\n",
      "          'explored': 1,\n",
      "          'aspect': 1,\n",
      "          'dichotomy': 1,\n",
      "          'soul': 1,\n",
      "          'doubt': 1,\n",
      "          'mixed': 1,\n",
      "          'unmistakable': 1,\n",
      "          'would': 1,\n",
      "          'spectacular': 1,\n",
      "          'violence': 1,\n",
      "          'merely': 1,\n",
      "          'tells': 1,\n",
      "          'great': 1,\n",
      "          'instead': 1,\n",
      "          'showing': 1,\n",
      "          'greatness': 1,\n",
      "          'overlong': 1,\n",
      "          'drags': 1,\n",
      "          'middle': 1,\n",
      "          'nothing': 1,\n",
      "          'happening': 1,\n",
      "          'figure': 1,\n",
      "          'sense': 1,\n",
      "          'doesnt': 1,\n",
      "          'know': 1,\n",
      "          'really': 1,\n",
      "          'forgets': 1,\n",
      "          'show': 1,\n",
      "          'messiah': 1,\n",
      "          'divinity': 1,\n",
      "          'nwithout': 1,\n",
      "          'rambling': 1,\n",
      "          'prophet': 1,\n",
      "          'believe': 1,\n",
      "          'several': 1,\n",
      "          'accidental': 1,\n",
      "          'occur': 1,\n",
      "          'attempting': 1,\n",
      "          'preach': 1,\n",
      "          'brief': 1,\n",
      "          'awe': 1,\n",
      "          'power': 1,\n",
      "          'followed': 1,\n",
      "          'nthat': 1,\n",
      "          'said': 1,\n",
      "          'controversial': 1,\n",
      "          'sequence': 1,\n",
      "          'something': 1,\n",
      "          'behold': 1,\n",
      "          'step': 1,\n",
      "          'unexpected': 1,\n",
      "          'direction': 1,\n",
      "          'leaves': 1,\n",
      "          'puzzled': 1,\n",
      "          'arrival': 1,\n",
      "          'disciples': 1,\n",
      "          'mortal': 1,\n",
      "          'finest': 1,\n",
      "          'unfortunate': 1,\n",
      "          'scorsese': 1,\n",
      "          'couldnt': 1,\n",
      "          'make': 1,\n",
      "          'powerful': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ryan': 15,\n",
      "          'movie': 10,\n",
      "          'private': 9,\n",
      "          'one': 8,\n",
      "          'saving': 6,\n",
      "          'soldiers': 6,\n",
      "          'army': 6,\n",
      "          'hanks': 6,\n",
      "          'good': 5,\n",
      "          'scenes': 5,\n",
      "          'war': 5,\n",
      "          'movies': 5,\n",
      "          'time': 4,\n",
      "          'nthe': 4,\n",
      "          'battle': 3,\n",
      "          'like': 3,\n",
      "          'nand': 3,\n",
      "          'men': 3,\n",
      "          'interesting': 3,\n",
      "          'three': 3,\n",
      "          'mission': 3,\n",
      "          'way': 3,\n",
      "          'make': 3,\n",
      "          'get': 3,\n",
      "          'long': 3,\n",
      "          'crazy': 2,\n",
      "          'na': 2,\n",
      "          'realistic': 2,\n",
      "          'emotion': 2,\n",
      "          'spielbergs': 2,\n",
      "          'spielberg': 2,\n",
      "          'wouldnt': 2,\n",
      "          'go': 2,\n",
      "          'schindlers': 2,\n",
      "          'list': 2,\n",
      "          'thing': 2,\n",
      "          'flick': 2,\n",
      "          'damn': 2,\n",
      "          'goes': 2,\n",
      "          'audience': 2,\n",
      "          'find': 2,\n",
      "          'never': 2,\n",
      "          'none': 2,\n",
      "          'different': 2,\n",
      "          'combat': 2,\n",
      "          'mother': 2,\n",
      "          'telegram': 2,\n",
      "          'ni': 2,\n",
      "          'conversation': 2,\n",
      "          'worth': 2,\n",
      "          'admits': 2,\n",
      "          'following': 2,\n",
      "          'things': 2,\n",
      "          'would': 2,\n",
      "          'nby': 2,\n",
      "          'self': 2,\n",
      "          'person': 2,\n",
      "          'first': 2,\n",
      "          'man': 2,\n",
      "          'guy': 2,\n",
      "          'affleck': 2,\n",
      "          'isnt': 2,\n",
      "          'available': 2,\n",
      "          'hours': 2,\n",
      "          'still': 2,\n",
      "          'apparently': 2,\n",
      "          'definitely': 2,\n",
      "          'place': 2,\n",
      "          'eyes': 2,\n",
      "          'life': 2,\n",
      "          'dogtags': 2,\n",
      "          'theyre': 2,\n",
      "          'poker': 2,\n",
      "          'call': 1,\n",
      "          'dont': 1,\n",
      "          'see': 1,\n",
      "          'film': 1,\n",
      "          'summer': 1,\n",
      "          'yes': 1,\n",
      "          'chillingly': 1,\n",
      "          'spare': 1,\n",
      "          'nan': 1,\n",
      "          'utterly': 1,\n",
      "          'riviting': 1,\n",
      "          'par': 1,\n",
      "          'steven': 1,\n",
      "          'best': 1,\n",
      "          'work': 1,\n",
      "          'npersonally': 1,\n",
      "          'back': 1,\n",
      "          'world': 1,\n",
      "          'ii': 1,\n",
      "          'era': 1,\n",
      "          'indiana': 1,\n",
      "          'jones': 1,\n",
      "          'nim': 1,\n",
      "          'guessing': 1,\n",
      "          'steve': 1,\n",
      "          'nazis': 1,\n",
      "          'really': 1,\n",
      "          'surprised': 1,\n",
      "          'velociraptor': 1,\n",
      "          'ate': 1,\n",
      "          'swastikawearing': 1,\n",
      "          'dudes': 1,\n",
      "          'next': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'nall': 1,\n",
      "          'lofty': 1,\n",
      "          'pretenses': 1,\n",
      "          'aside': 1,\n",
      "          'goriest': 1,\n",
      "          'side': 1,\n",
      "          '1980s': 1,\n",
      "          'slasher': 1,\n",
      "          'difference': 1,\n",
      "          'easy': 1,\n",
      "          'friday': 1,\n",
      "          '13th': 1,\n",
      "          'laugh': 1,\n",
      "          'spear': 1,\n",
      "          'sticking': 1,\n",
      "          'kevin': 1,\n",
      "          'bacons': 1,\n",
      "          'chest': 1,\n",
      "          'blood': 1,\n",
      "          'spurts': 1,\n",
      "          'hard': 1,\n",
      "          'sit': 1,\n",
      "          'eat': 1,\n",
      "          'reeses': 1,\n",
      "          'pieces': 1,\n",
      "          'suffer': 1,\n",
      "          'machine': 1,\n",
      "          'gun': 1,\n",
      "          'bullets': 1,\n",
      "          'head': 1,\n",
      "          'intestines': 1,\n",
      "          'spilled': 1,\n",
      "          'onto': 1,\n",
      "          'battlefield': 1,\n",
      "          'believe': 1,\n",
      "          'theres': 1,\n",
      "          'plenty': 1,\n",
      "          '30minute': 1,\n",
      "          'sequence': 1,\n",
      "          'beginning': 1,\n",
      "          'captain': 1,\n",
      "          'tom': 1,\n",
      "          'landing': 1,\n",
      "          'omaha': 1,\n",
      "          'beach': 1,\n",
      "          'join': 1,\n",
      "          'countless': 1,\n",
      "          'americans': 1,\n",
      "          'already': 1,\n",
      "          'fire': 1,\n",
      "          'nlives': 1,\n",
      "          'lost': 1,\n",
      "          'seconds': 1,\n",
      "          'purposefully': 1,\n",
      "          'confusing': 1,\n",
      "          'jarring': 1,\n",
      "          'scene': 1,\n",
      "          'young': 1,\n",
      "          'ever': 1,\n",
      "          'wanting': 1,\n",
      "          'drafted': 1,\n",
      "          'ncut': 1,\n",
      "          'bureaucratic': 1,\n",
      "          'defense': 1,\n",
      "          'office': 1,\n",
      "          'hundred': 1,\n",
      "          'women': 1,\n",
      "          'pound': 1,\n",
      "          'sympathy': 1,\n",
      "          'form': 1,\n",
      "          'letters': 1,\n",
      "          'families': 1,\n",
      "          'casualties': 1,\n",
      "          'woman': 1,\n",
      "          'happens': 1,\n",
      "          'upon': 1,\n",
      "          'detail': 1,\n",
      "          'brothers': 1,\n",
      "          'platoons': 1,\n",
      "          'killed': 1,\n",
      "          'getting': 1,\n",
      "          'today': 1,\n",
      "          'guess': 1,\n",
      "          'piece': 1,\n",
      "          'everyone': 1,\n",
      "          'chief': 1,\n",
      "          'harve': 1,\n",
      "          'presnell': 1,\n",
      "          'sends': 1,\n",
      "          'essentially': 1,\n",
      "          'public': 1,\n",
      "          'relations': 1,\n",
      "          'fourth': 1,\n",
      "          'brother': 1,\n",
      "          'send': 1,\n",
      "          'home': 1,\n",
      "          'nthat': 1,\n",
      "          'saves': 1,\n",
      "          'postage': 1,\n",
      "          'yet': 1,\n",
      "          'another': 1,\n",
      "          'mrs': 1,\n",
      "          'headed': 1,\n",
      "          'rescue': 1,\n",
      "          'know': 1,\n",
      "          'designed': 1,\n",
      "          'look': 1,\n",
      "          'nthey': 1,\n",
      "          'question': 1,\n",
      "          'risking': 1,\n",
      "          'eight': 1,\n",
      "          'lives': 1,\n",
      "          'save': 1,\n",
      "          'character': 1,\n",
      "          'doesnt': 1,\n",
      "          'give': 1,\n",
      "          'hes': 1,\n",
      "          'orders': 1,\n",
      "          'nif': 1,\n",
      "          'john': 1,\n",
      "          'wayne': 1,\n",
      "          'nthered': 1,\n",
      "          'phony': 1,\n",
      "          'lets': 1,\n",
      "          'boy': 1,\n",
      "          'gosh': 1,\n",
      "          'darn': 1,\n",
      "          'nattitude': 1,\n",
      "          'sugarcoat': 1,\n",
      "          'reality': 1,\n",
      "          'instincts': 1,\n",
      "          'preservation': 1,\n",
      "          'complacency': 1,\n",
      "          'every': 1,\n",
      "          'normal': 1,\n",
      "          'nit': 1,\n",
      "          'makes': 1,\n",
      "          'lot': 1,\n",
      "          'powerful': 1,\n",
      "          'testosteronedriven': 1,\n",
      "          'stallone': 1,\n",
      "          'pattern': 1,\n",
      "          'followed': 1,\n",
      "          'quiet': 1,\n",
      "          'semiintrospective': 1,\n",
      "          'among': 1,\n",
      "          'nhanks': 1,\n",
      "          'painted': 1,\n",
      "          'nailstough': 1,\n",
      "          'careful': 1,\n",
      "          'hide': 1,\n",
      "          'true': 1,\n",
      "          'nits': 1,\n",
      "          'nedward': 1,\n",
      "          'burns': 1,\n",
      "          'ben': 1,\n",
      "          'impulsive': 1,\n",
      "          'njeremy': 1,\n",
      "          'davies': 1,\n",
      "          'plays': 1,\n",
      "          'translator': 1,\n",
      "          'seeing': 1,\n",
      "          'nnone': 1,\n",
      "          'characters': 1,\n",
      "          'fascinating': 1,\n",
      "          'natural': 1,\n",
      "          'born': 1,\n",
      "          'heroes': 1,\n",
      "          'obvious': 1,\n",
      "          'intention': 1,\n",
      "          'wondered': 1,\n",
      "          'heard': 1,\n",
      "          'going': 1,\n",
      "          'fill': 1,\n",
      "          'searching': 1,\n",
      "          'nthere': 1,\n",
      "          'false': 1,\n",
      "          'starts': 1,\n",
      "          'finds': 1,\n",
      "          'ted': 1,\n",
      "          'dansons': 1,\n",
      "          'company': 1,\n",
      "          'danson': 1,\n",
      "          'joined': 1,\n",
      "          'ink': 1,\n",
      "          'canceled': 1,\n",
      "          'breaks': 1,\n",
      "          'bad': 1,\n",
      "          'news': 1,\n",
      "          'learning': 1,\n",
      "          'wrong': 1,\n",
      "          'course': 1,\n",
      "          'far': 1,\n",
      "          'locate': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'nthats': 1,\n",
      "          'turns': 1,\n",
      "          'conventional': 1,\n",
      "          'although': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'limbs': 1,\n",
      "          'fly': 1,\n",
      "          'nsaving': 1,\n",
      "          'intense': 1,\n",
      "          'attempts': 1,\n",
      "          'sincere': 1,\n",
      "          'arent': 1,\n",
      "          'bookends': 1,\n",
      "          'particularly': 1,\n",
      "          'cheesy': 1,\n",
      "          'old': 1,\n",
      "          'cemetary': 1,\n",
      "          'family': 1,\n",
      "          'bawls': 1,\n",
      "          'whining': 1,\n",
      "          'tell': 1,\n",
      "          'ive': 1,\n",
      "          'led': 1,\n",
      "          'ntell': 1,\n",
      "          'im': 1,\n",
      "          'nspielberg': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'line': 1,\n",
      "          'thought': 1,\n",
      "          'threehour': 1,\n",
      "          'past': 1,\n",
      "          'framed': 1,\n",
      "          'selfcontained': 1,\n",
      "          'prologue': 1,\n",
      "          'epilogue': 1,\n",
      "          'takes': 1,\n",
      "          'present': 1,\n",
      "          'nmuch': 1,\n",
      "          'effective': 1,\n",
      "          'subtler': 1,\n",
      "          'several': 1,\n",
      "          'rifling': 1,\n",
      "          'thrugh': 1,\n",
      "          'bag': 1,\n",
      "          'dead': 1,\n",
      "          'light': 1,\n",
      "          'pretending': 1,\n",
      "          'playing': 1,\n",
      "          'nthis': 1,\n",
      "          'airborne': 1,\n",
      "          'division': 1,\n",
      "          'marches': 1,\n",
      "          'full': 1,\n",
      "          'mound': 1,\n",
      "          'explicitly': 1,\n",
      "          'pointing': 1,\n",
      "          'symbolizes': 1,\n",
      "          'random': 1,\n",
      "          'game': 1,\n",
      "          'death': 1,\n",
      "          'gets': 1,\n",
      "          'message': 1,\n",
      "          'even': 1,\n",
      "          'classic': 1,\n",
      "          'better': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'war': 8,\n",
      "          'one': 8,\n",
      "          'film': 8,\n",
      "          'men': 8,\n",
      "          'ryan': 7,\n",
      "          'sense': 7,\n",
      "          'battle': 6,\n",
      "          'soldiers': 6,\n",
      "          'good': 5,\n",
      "          'way': 5,\n",
      "          'killing': 5,\n",
      "          'fact': 4,\n",
      "          'saving': 4,\n",
      "          'private': 4,\n",
      "          'nazis': 4,\n",
      "          'reality': 4,\n",
      "          'make': 4,\n",
      "          'mission': 4,\n",
      "          'even': 3,\n",
      "          'nits': 3,\n",
      "          'n': 3,\n",
      "          'films': 3,\n",
      "          'theres': 3,\n",
      "          'seems': 3,\n",
      "          'characters': 3,\n",
      "          'must': 3,\n",
      "          'theyre': 3,\n",
      "          'germans': 3,\n",
      "          'really': 3,\n",
      "          'miller': 3,\n",
      "          'man': 3,\n",
      "          'like': 3,\n",
      "          'doesnt': 3,\n",
      "          'death': 3,\n",
      "          '6': 2,\n",
      "          'rotterdam': 2,\n",
      "          'help': 2,\n",
      "          'portrayed': 2,\n",
      "          'since': 2,\n",
      "          'general': 2,\n",
      "          'aspects': 2,\n",
      "          'victory': 2,\n",
      "          'easy': 2,\n",
      "          'armies': 2,\n",
      "          'nit': 2,\n",
      "          'graphic': 2,\n",
      "          'world': 2,\n",
      "          'military': 2,\n",
      "          'many': 2,\n",
      "          'nthere': 2,\n",
      "          'us': 2,\n",
      "          'feeling': 2,\n",
      "          'poor': 2,\n",
      "          'yet': 2,\n",
      "          'fighting': 2,\n",
      "          'little': 2,\n",
      "          'dont': 2,\n",
      "          'get': 2,\n",
      "          'actors': 2,\n",
      "          'killed': 2,\n",
      "          'nin': 2,\n",
      "          'happen': 2,\n",
      "          'nothing': 2,\n",
      "          'dead': 2,\n",
      "          'americans': 2,\n",
      "          'direction': 2,\n",
      "          'avoid': 2,\n",
      "          'group': 2,\n",
      "          'ni': 2,\n",
      "          'feel': 2,\n",
      "          'odds': 2,\n",
      "          'cliche': 2,\n",
      "          'story': 2,\n",
      "          'concerned': 2,\n",
      "          'never': 2,\n",
      "          'nhe': 2,\n",
      "          'want': 2,\n",
      "          'mother': 2,\n",
      "          'nwhen': 2,\n",
      "          'trying': 2,\n",
      "          'find': 2,\n",
      "          'isnt': 2,\n",
      "          'millers': 2,\n",
      "          'hope': 2,\n",
      "          'major': 2,\n",
      "          'act': 2,\n",
      "          'go': 2,\n",
      "          'boys': 2,\n",
      "          'calvin': 2,\n",
      "          'dad': 2,\n",
      "          'seen': 1,\n",
      "          'august': 1,\n",
      "          '8': 1,\n",
      "          '1998': 1,\n",
      "          'p': 1,\n",
      "          'square': 1,\n",
      "          'cinemas': 1,\n",
      "          'ny': 1,\n",
      "          'theater': 1,\n",
      "          'free': 1,\n",
      "          'using': 1,\n",
      "          'sonyloews': 1,\n",
      "          'critics': 1,\n",
      "          'pass': 1,\n",
      "          'ntheater': 1,\n",
      "          'rating': 1,\n",
      "          'seats': 1,\n",
      "          'sound': 1,\n",
      "          'picture': 1,\n",
      "          'nwar': 1,\n",
      "          'topic': 1,\n",
      "          'cant': 1,\n",
      "          'glorified': 1,\n",
      "          'media': 1,\n",
      "          'nmovies': 1,\n",
      "          'documentaries': 1,\n",
      "          'history': 1,\n",
      "          'books': 1,\n",
      "          'making': 1,\n",
      "          'darker': 1,\n",
      "          'side': 1,\n",
      "          'humanity': 1,\n",
      "          'exciting': 1,\n",
      "          'focused': 1,\n",
      "          'strategy': 1,\n",
      "          'politics': 1,\n",
      "          'forget': 1,\n",
      "          'basic': 1,\n",
      "          'form': 1,\n",
      "          'slaughter': 1,\n",
      "          'nforgotten': 1,\n",
      "          'easily': 1,\n",
      "          'soldier': 1,\n",
      "          'matter': 1,\n",
      "          'rank': 1,\n",
      "          'importance': 1,\n",
      "          'real': 1,\n",
      "          'fleshandblood': 1,\n",
      "          'person': 1,\n",
      "          'number': 1,\n",
      "          'dares': 1,\n",
      "          'play': 1,\n",
      "          'aspect': 1,\n",
      "          'especially': 1,\n",
      "          'unapologetic': 1,\n",
      "          'realistic': 1,\n",
      "          'delivery': 1,\n",
      "          'proves': 1,\n",
      "          'huge': 1,\n",
      "          'difference': 1,\n",
      "          'battling': 1,\n",
      "          'opens': 1,\n",
      "          'disturbing': 1,\n",
      "          'scenes': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'ii': 1,\n",
      "          'dday': 1,\n",
      "          'exact': 1,\n",
      "          'u': 1,\n",
      "          'invading': 1,\n",
      "          'omaha': 1,\n",
      "          'beach': 1,\n",
      "          'ready': 1,\n",
      "          'nspielberg': 1,\n",
      "          'uses': 1,\n",
      "          'techniques': 1,\n",
      "          'create': 1,\n",
      "          'total': 1,\n",
      "          'ninstead': 1,\n",
      "          'positioned': 1,\n",
      "          'cameras': 1,\n",
      "          'footage': 1,\n",
      "          'shot': 1,\n",
      "          'camera': 1,\n",
      "          'operators': 1,\n",
      "          'running': 1,\n",
      "          'alongside': 1,\n",
      "          'scared': 1,\n",
      "          'stability': 1,\n",
      "          'constant': 1,\n",
      "          'anxious': 1,\n",
      "          'confusing': 1,\n",
      "          'motion': 1,\n",
      "          'giving': 1,\n",
      "          'middle': 1,\n",
      "          'vulnerable': 1,\n",
      "          'troops': 1,\n",
      "          'proper': 1,\n",
      "          'word': 1,\n",
      "          'describe': 1,\n",
      "          'pathetic': 1,\n",
      "          'innocent': 1,\n",
      "          'dialogue': 1,\n",
      "          'throughout': 1,\n",
      "          'loud': 1,\n",
      "          'prologue': 1,\n",
      "          'define': 1,\n",
      "          'nwe': 1,\n",
      "          'handsome': 1,\n",
      "          'playing': 1,\n",
      "          'heroic': 1,\n",
      "          'roles': 1,\n",
      "          'kill': 1,\n",
      "          'reasons': 1,\n",
      "          'beyond': 1,\n",
      "          'understanding': 1,\n",
      "          'enemies': 1,\n",
      "          'hated': 1,\n",
      "          'people': 1,\n",
      "          'destroyed': 1,\n",
      "          'movies': 1,\n",
      "          'guys': 1,\n",
      "          'run': 1,\n",
      "          'firestorm': 1,\n",
      "          'bullets': 1,\n",
      "          'bombs': 1,\n",
      "          'scratch': 1,\n",
      "          'wouldnt': 1,\n",
      "          'shield': 1,\n",
      "          'protect': 1,\n",
      "          'besides': 1,\n",
      "          'metal': 1,\n",
      "          'flanks': 1,\n",
      "          'bodies': 1,\n",
      "          'nthey': 1,\n",
      "          'sitting': 1,\n",
      "          'ducks': 1,\n",
      "          'realize': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'perspective': 1,\n",
      "          'wellsecured': 1,\n",
      "          'actually': 1,\n",
      "          'see': 1,\n",
      "          'shooting': 1,\n",
      "          'unlike': 1,\n",
      "          'fire': 1,\n",
      "          'getting': 1,\n",
      "          'heads': 1,\n",
      "          'blown': 1,\n",
      "          'nperhaps': 1,\n",
      "          'flawed': 1,\n",
      "          'providing': 1,\n",
      "          'backstory': 1,\n",
      "          'part': 1,\n",
      "          'theme': 1,\n",
      "          'rely': 1,\n",
      "          'audiences': 1,\n",
      "          'patriotism': 1,\n",
      "          'american': 1,\n",
      "          'right': 1,\n",
      "          'inherently': 1,\n",
      "          'evil': 1,\n",
      "          'scene': 1,\n",
      "          'eventually': 1,\n",
      "          'focuses': 1,\n",
      "          'miraculously': 1,\n",
      "          'survived': 1,\n",
      "          'made': 1,\n",
      "          'close': 1,\n",
      "          'enemy': 1,\n",
      "          'stronghold': 1,\n",
      "          'whole': 1,\n",
      "          '50foot': 1,\n",
      "          'progression': 1,\n",
      "          'begin': 1,\n",
      "          'inflict': 1,\n",
      "          'damage': 1,\n",
      "          'admit': 1,\n",
      "          'first': 1,\n",
      "          'glimpse': 1,\n",
      "          'sprang': 1,\n",
      "          'couldnt': 1,\n",
      "          'joy': 1,\n",
      "          'relief': 1,\n",
      "          'nto': 1,\n",
      "          'triumph': 1,\n",
      "          'sure': 1,\n",
      "          'detailed': 1,\n",
      "          'atmosphere': 1,\n",
      "          'happened': 1,\n",
      "          'none': 1,\n",
      "          'surprising': 1,\n",
      "          'construction': 1,\n",
      "          'events': 1,\n",
      "          'take': 1,\n",
      "          'place': 1,\n",
      "          'interesting': 1,\n",
      "          'plot': 1,\n",
      "          'practically': 1,\n",
      "          'irrelevant': 1,\n",
      "          'meet': 1,\n",
      "          'ntom': 1,\n",
      "          'hanks': 1,\n",
      "          'stars': 1,\n",
      "          'captain': 1,\n",
      "          'relatively': 1,\n",
      "          'average': 1,\n",
      "          'happens': 1,\n",
      "          'leader': 1,\n",
      "          'platoon': 1,\n",
      "          'nhes': 1,\n",
      "          'obsessive': 1,\n",
      "          'generic': 1,\n",
      "          'cartoonish': 1,\n",
      "          'characteristic': 1,\n",
      "          'might': 1,\n",
      "          'dominate': 1,\n",
      "          'character': 1,\n",
      "          'given': 1,\n",
      "          'intends': 1,\n",
      "          'carry': 1,\n",
      "          'title': 1,\n",
      "          'states': 1,\n",
      "          'nthrough': 1,\n",
      "          'series': 1,\n",
      "          'command': 1,\n",
      "          'started': 1,\n",
      "          'ordinary': 1,\n",
      "          'clerical': 1,\n",
      "          'worker': 1,\n",
      "          'brought': 1,\n",
      "          'generals': 1,\n",
      "          'attention': 1,\n",
      "          'three': 1,\n",
      "          'brothers': 1,\n",
      "          'iowa': 1,\n",
      "          'action': 1,\n",
      "          'receive': 1,\n",
      "          'notices': 1,\n",
      "          'eachs': 1,\n",
      "          'simultaneously': 1,\n",
      "          'learn': 1,\n",
      "          'fourth': 1,\n",
      "          'brother': 1,\n",
      "          'stationed': 1,\n",
      "          'somewhere': 1,\n",
      "          'europe': 1,\n",
      "          'top': 1,\n",
      "          'priority': 1,\n",
      "          'returned': 1,\n",
      "          'safely': 1,\n",
      "          'sympathize': 1,\n",
      "          'situation': 1,\n",
      "          'lose': 1,\n",
      "          'children': 1,\n",
      "          'nbut': 1,\n",
      "          'finding': 1,\n",
      "          'puts': 1,\n",
      "          'needle': 1,\n",
      "          'stack': 1,\n",
      "          'needles': 1,\n",
      "          'dramatic': 1,\n",
      "          'device': 1,\n",
      "          'thematic': 1,\n",
      "          'nhis': 1,\n",
      "          'salvation': 1,\n",
      "          'represents': 1,\n",
      "          'innocence': 1,\n",
      "          'country': 1,\n",
      "          'convince': 1,\n",
      "          'still': 1,\n",
      "          'company': 1,\n",
      "          'hears': 1,\n",
      "          'scoff': 1,\n",
      "          'idea': 1,\n",
      "          'assuming': 1,\n",
      "          'quick': 1,\n",
      "          'shrug': 1,\n",
      "          'knows': 1,\n",
      "          'thing': 1,\n",
      "          'save': 1,\n",
      "          'opportunity': 1,\n",
      "          'someones': 1,\n",
      "          'gives': 1,\n",
      "          'destination': 1,\n",
      "          'nalong': 1,\n",
      "          'things': 1,\n",
      "          'bad': 1,\n",
      "          'na': 1,\n",
      "          'battles': 1,\n",
      "          'fought': 1,\n",
      "          'accomplishments': 1,\n",
      "          'encounter': 1,\n",
      "          'german': 1,\n",
      "          'choice': 1,\n",
      "          'becomes': 1,\n",
      "          'philosophical': 1,\n",
      "          'metaphors': 1,\n",
      "          'mind': 1,\n",
      "          'blind': 1,\n",
      "          'come': 1,\n",
      "          'across': 1,\n",
      "          'lone': 1,\n",
      "          'survivor': 1,\n",
      "          'begs': 1,\n",
      "          'let': 1,\n",
      "          'barely': 1,\n",
      "          'stop': 1,\n",
      "          'cold': 1,\n",
      "          'blood': 1,\n",
      "          'kind': 1,\n",
      "          'vengeance': 1,\n",
      "          'losses': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'try': 1,\n",
      "          'comes': 1,\n",
      "          'main': 1,\n",
      "          'spielberg': 1,\n",
      "          'think': 1,\n",
      "          'invincible': 1,\n",
      "          'small': 1,\n",
      "          'amount': 1,\n",
      "          'color': 1,\n",
      "          'personality': 1,\n",
      "          'sketched': 1,\n",
      "          'performances': 1,\n",
      "          'enough': 1,\n",
      "          'method': 1,\n",
      "          'work': 1,\n",
      "          'nalthough': 1,\n",
      "          'somewhat': 1,\n",
      "          'typical': 1,\n",
      "          'maintain': 1,\n",
      "          'control': 1,\n",
      "          'material': 1,\n",
      "          'time': 1,\n",
      "          'nwhether': 1,\n",
      "          'arguing': 1,\n",
      "          'telling': 1,\n",
      "          'stories': 1,\n",
      "          'back': 1,\n",
      "          'home': 1,\n",
      "          'overboard': 1,\n",
      "          'always': 1,\n",
      "          'seem': 1,\n",
      "          'believable': 1,\n",
      "          'nsure': 1,\n",
      "          'zinger': 1,\n",
      "          'change': 1,\n",
      "          'nif': 1,\n",
      "          'dies': 1,\n",
      "          'loss': 1,\n",
      "          'though': 1,\n",
      "          'hardly': 1,\n",
      "          'knew': 1,\n",
      "          'final': 1,\n",
      "          'brings': 1,\n",
      "          'full': 1,\n",
      "          'circle': 1,\n",
      "          'another': 1,\n",
      "          'tremendous': 1,\n",
      "          'violent': 1,\n",
      "          'sequence': 1,\n",
      "          'nprivate': 1,\n",
      "          'found': 1,\n",
      "          'facing': 1,\n",
      "          'four': 1,\n",
      "          'defeat': 1,\n",
      "          'keep': 1,\n",
      "          'alive': 1,\n",
      "          'nthats': 1,\n",
      "          'premise': 1,\n",
      "          'thrills': 1,\n",
      "          'symbolic': 1,\n",
      "          'everything': 1,\n",
      "          'worked': 1,\n",
      "          'would': 1,\n",
      "          'wrong': 1,\n",
      "          'say': 1,\n",
      "          'either': 1,\n",
      "          'happy': 1,\n",
      "          'sad': 1,\n",
      "          'ending': 1,\n",
      "          'ends': 1,\n",
      "          'end': 1,\n",
      "          'remember': 1,\n",
      "          'reading': 1,\n",
      "          'hobbes': 1,\n",
      "          'comic': 1,\n",
      "          'strip': 1,\n",
      "          'asked': 1,\n",
      "          'something': 1,\n",
      "          'solve': 1,\n",
      "          'problems': 1,\n",
      "          'adult': 1,\n",
      "          'version': 1,\n",
      "          'question': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 11,\n",
      "          'placid': 7,\n",
      "          'lake': 6,\n",
      "          'funny': 4,\n",
      "          'plays': 3,\n",
      "          'man': 3,\n",
      "          'find': 3,\n",
      "          'great': 3,\n",
      "          'nbut': 3,\n",
      "          'definately': 2,\n",
      "          'clever': 2,\n",
      "          'film': 2,\n",
      "          'kinda': 2,\n",
      "          'scary': 2,\n",
      "          'isnt': 2,\n",
      "          'original': 2,\n",
      "          'go': 2,\n",
      "          'really': 2,\n",
      "          'croc': 2,\n",
      "          'though': 2,\n",
      "          'huge': 2,\n",
      "          'see': 2,\n",
      "          'came': 2,\n",
      "          'watch': 2,\n",
      "          'enjoyed': 2,\n",
      "          'popcorn': 2,\n",
      "          'gore': 2,\n",
      "          'typical': 1,\n",
      "          'creature': 1,\n",
      "          'attacking': 1,\n",
      "          'people': 1,\n",
      "          'ok': 1,\n",
      "          'maybe': 1,\n",
      "          'one': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nactually': 1,\n",
      "          'comes': 1,\n",
      "          'comedy': 1,\n",
      "          'horror': 1,\n",
      "          'nwell': 1,\n",
      "          'ending': 1,\n",
      "          'horrorcomedies': 1,\n",
      "          'ni': 1,\n",
      "          'admit': 1,\n",
      "          'oscar': 1,\n",
      "          'worthy': 1,\n",
      "          'come': 1,\n",
      "          'inventive': 1,\n",
      "          'nbridget': 1,\n",
      "          'fonda': 1,\n",
      "          'palentologist': 1,\n",
      "          'finding': 1,\n",
      "          'boyfriend': 1,\n",
      "          'cheating': 1,\n",
      "          'forced': 1,\n",
      "          'investigate': 1,\n",
      "          'tooth': 1,\n",
      "          'bit': 1,\n",
      "          'half': 1,\n",
      "          'nshe': 1,\n",
      "          'gets': 1,\n",
      "          'doesnt': 1,\n",
      "          'understand': 1,\n",
      "          'nbill': 1,\n",
      "          'pullman': 1,\n",
      "          'also': 1,\n",
      "          'investigating': 1,\n",
      "          'happened': 1,\n",
      "          'along': 1,\n",
      "          'sherriff': 1,\n",
      "          'rich': 1,\n",
      "          'obsessed': 1,\n",
      "          'going': 1,\n",
      "          'nwhat': 1,\n",
      "          'na': 1,\n",
      "          'mean': 1,\n",
      "          'crocodile': 1,\n",
      "          'living': 1,\n",
      "          '150': 1,\n",
      "          'years': 1,\n",
      "          'old': 1,\n",
      "          'migrated': 1,\n",
      "          'knows': 1,\n",
      "          'nthey': 1,\n",
      "          'fight': 1,\n",
      "          'try': 1,\n",
      "          'trap': 1,\n",
      "          'study': 1,\n",
      "          'nbetty': 1,\n",
      "          'white': 1,\n",
      "          'woman': 1,\n",
      "          'lives': 1,\n",
      "          'shores': 1,\n",
      "          'well': 1,\n",
      "          'youll': 1,\n",
      "          'nher': 1,\n",
      "          'character': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'surprising': 1,\n",
      "          'hear': 1,\n",
      "          'betty': 1,\n",
      "          'spew': 1,\n",
      "          'words': 1,\n",
      "          'phrases': 1,\n",
      "          'pretty': 1,\n",
      "          'bad': 1,\n",
      "          'nto': 1,\n",
      "          'spoof': 1,\n",
      "          'jaws': 1,\n",
      "          'nwith': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'others': 1,\n",
      "          'nwhen': 1,\n",
      "          'notice': 1,\n",
      "          'smartness': 1,\n",
      "          'cleverness': 1,\n",
      "          'ndavid': 1,\n",
      "          'e': 1,\n",
      "          'kelly': 1,\n",
      "          'mastermind': 1,\n",
      "          'practice': 1,\n",
      "          'ally': 1,\n",
      "          'mcbeal': 1,\n",
      "          'writes': 1,\n",
      "          'ease': 1,\n",
      "          'surprisingly': 1,\n",
      "          'job': 1,\n",
      "          'nthe': 1,\n",
      "          'characters': 1,\n",
      "          'smartmouths': 1,\n",
      "          'two': 1,\n",
      "          'foul': 1,\n",
      "          'oneliners': 1,\n",
      "          'believe': 1,\n",
      "          'dont': 1,\n",
      "          'take': 1,\n",
      "          'seriously': 1,\n",
      "          'wont': 1,\n",
      "          'like': 1,\n",
      "          'fun': 1,\n",
      "          'type': 1,\n",
      "          'guess': 1,\n",
      "          'rates': 1,\n",
      "          'rating': 1,\n",
      "          'nsit': 1,\n",
      "          'back': 1,\n",
      "          'laugh': 1,\n",
      "          'scream': 1,\n",
      "          'whatever': 1,\n",
      "          'want': 1,\n",
      "          'neven': 1,\n",
      "          'r': 1,\n",
      "          'put': 1,\n",
      "          'violence': 1,\n",
      "          'ntheres': 1,\n",
      "          'much': 1,\n",
      "          'might': 1,\n",
      "          'seem': 1,\n",
      "          'gross': 1,\n",
      "          'nlake': 1,\n",
      "          'smart': 1,\n",
      "          'think': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'black': 4,\n",
      "          'one': 4,\n",
      "          'introduced': 4,\n",
      "          'film': 3,\n",
      "          'nmen': 3,\n",
      "          'n': 3,\n",
      "          'fun': 3,\n",
      "          'agent': 3,\n",
      "          'kay': 3,\n",
      "          'alien': 3,\n",
      "          'mib': 3,\n",
      "          'cant': 3,\n",
      "          'earth': 3,\n",
      "          'threestar': 2,\n",
      "          'ntheyre': 2,\n",
      "          'usually': 2,\n",
      "          'kind': 2,\n",
      "          'watch': 2,\n",
      "          'tommy': 2,\n",
      "          'lee': 2,\n",
      "          'jones': 2,\n",
      "          'organization': 2,\n",
      "          'edwards': 2,\n",
      "          'smith': 2,\n",
      "          'nthe': 2,\n",
      "          'going': 2,\n",
      "          'even': 2,\n",
      "          'nedwards': 2,\n",
      "          'jay': 2,\n",
      "          'comes': 2,\n",
      "          'na': 2,\n",
      "          'bug': 2,\n",
      "          'films': 2,\n",
      "          'summer': 2,\n",
      "          'lot': 1,\n",
      "          'times': 1,\n",
      "          'favorite': 1,\n",
      "          'movie': 1,\n",
      "          'often': 1,\n",
      "          'deep': 1,\n",
      "          'allowing': 1,\n",
      "          'semibrainless': 1,\n",
      "          'relaxation': 1,\n",
      "          'time': 1,\n",
      "          'dumb': 1,\n",
      "          'fourstar': 1,\n",
      "          'hope': 1,\n",
      "          'could': 1,\n",
      "          'follow': 1,\n",
      "          'doesnt': 1,\n",
      "          'wait': 1,\n",
      "          'get': 1,\n",
      "          'njust': 1,\n",
      "          'minutes': 1,\n",
      "          'awesome': 1,\n",
      "          'memorydiminishing': 1,\n",
      "          'tool': 1,\n",
      "          'agents': 1,\n",
      "          'use': 1,\n",
      "          'nafter': 1,\n",
      "          'witnesses': 1,\n",
      "          'running': 1,\n",
      "          'around': 1,\n",
      "          'knowledge': 1,\n",
      "          'course': 1,\n",
      "          'moniters': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'activity': 1,\n",
      "          'nnypd': 1,\n",
      "          'officer': 1,\n",
      "          'james': 1,\n",
      "          'routine': 1,\n",
      "          'foot': 1,\n",
      "          'chase': 1,\n",
      "          'suddenly': 1,\n",
      "          'nogood': 1,\n",
      "          'punk': 1,\n",
      "          'hes': 1,\n",
      "          'chasing': 1,\n",
      "          'starts': 1,\n",
      "          'leaping': 1,\n",
      "          'buildings': 1,\n",
      "          'blinking': 1,\n",
      "          'pair': 1,\n",
      "          'eyes': 1,\n",
      "          'delivers': 1,\n",
      "          'simple': 1,\n",
      "          'message': 1,\n",
      "          'world': 1,\n",
      "          'end': 1,\n",
      "          'dives': 1,\n",
      "          'roof': 1,\n",
      "          'nnaturally': 1,\n",
      "          'nobody': 1,\n",
      "          'believes': 1,\n",
      "          'story': 1,\n",
      "          'nnobody': 1,\n",
      "          'except': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          'government': 1,\n",
      "          'aware': 1,\n",
      "          'meets': 1,\n",
      "          'man': 1,\n",
      "          'never': 1,\n",
      "          'seems': 1,\n",
      "          'crack': 1,\n",
      "          'smile': 1,\n",
      "          'winds': 1,\n",
      "          'joining': 1,\n",
      "          'team': 1,\n",
      "          'stripped': 1,\n",
      "          'anything': 1,\n",
      "          'point': 1,\n",
      "          'back': 1,\n",
      "          'birth': 1,\n",
      "          'certificate': 1,\n",
      "          'drivers': 1,\n",
      "          'license': 1,\n",
      "          'literal': 1,\n",
      "          'removal': 1,\n",
      "          'fingerprints': 1,\n",
      "          'njames': 1,\n",
      "          'longer': 1,\n",
      "          'exists': 1,\n",
      "          'nmeet': 1,\n",
      "          'nagent': 1,\n",
      "          'takes': 1,\n",
      "          'rookie': 1,\n",
      "          'wing': 1,\n",
      "          'go': 1,\n",
      "          'regular': 1,\n",
      "          'duties': 1,\n",
      "          'neventually': 1,\n",
      "          'far': 1,\n",
      "          'treacherous': 1,\n",
      "          'event': 1,\n",
      "          'play': 1,\n",
      "          'landed': 1,\n",
      "          'wipe': 1,\n",
      "          'mankind': 1,\n",
      "          'two': 1,\n",
      "          'dont': 1,\n",
      "          'stop': 1,\n",
      "          'plot': 1,\n",
      "          'isnt': 1,\n",
      "          'exactly': 1,\n",
      "          'clear': 1,\n",
      "          'know': 1,\n",
      "          'galaxy': 1,\n",
      "          'big': 1,\n",
      "          'jewel': 1,\n",
      "          'marble': 1,\n",
      "          'sought': 1,\n",
      "          'crucial': 1,\n",
      "          'find': 1,\n",
      "          'nbarry': 1,\n",
      "          'sonnenfeld': 1,\n",
      "          'also': 1,\n",
      "          'addams': 1,\n",
      "          'family': 1,\n",
      "          'directs': 1,\n",
      "          'nicely': 1,\n",
      "          'nits': 1,\n",
      "          'funny': 1,\n",
      "          'actionpacked': 1,\n",
      "          'nice': 1,\n",
      "          'blockbuster': 1,\n",
      "          'rightfully': 1,\n",
      "          'turned': 1,\n",
      "          'nthis': 1,\n",
      "          'movies': 1,\n",
      "          'really': 1,\n",
      "          'summed': 1,\n",
      "          'nicer': 1,\n",
      "          'clearer': 1,\n",
      "          'nwill': 1,\n",
      "          'great': 1,\n",
      "          'jobs': 1,\n",
      "          'blast': 1,\n",
      "          'ndefinitely': 1,\n",
      "          'best': 1,\n",
      "          '97': 1,\n",
      "          'men': 1,\n",
      "          'highly': 1,\n",
      "          'recommeded': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'nthe': 8,\n",
      "          'nit': 7,\n",
      "          'nbut': 5,\n",
      "          'nand': 5,\n",
      "          'world': 4,\n",
      "          'land': 4,\n",
      "          'fbi': 4,\n",
      "          'u': 4,\n",
      "          'nwhat': 3,\n",
      "          'city': 3,\n",
      "          'new': 3,\n",
      "          'terrorist': 3,\n",
      "          'much': 3,\n",
      "          'cia': 3,\n",
      "          'siege': 3,\n",
      "          'never': 3,\n",
      "          'nhe': 3,\n",
      "          'one': 2,\n",
      "          'became': 2,\n",
      "          'target': 2,\n",
      "          'terror': 2,\n",
      "          'america': 2,\n",
      "          'really': 2,\n",
      "          'terrorism': 2,\n",
      "          'willing': 2,\n",
      "          'opportunities': 2,\n",
      "          'freedom': 2,\n",
      "          'nthis': 2,\n",
      "          'reality': 2,\n",
      "          'military': 2,\n",
      "          'william': 2,\n",
      "          'devereaux': 2,\n",
      "          'willis': 2,\n",
      "          'takes': 2,\n",
      "          'york': 2,\n",
      "          'na': 2,\n",
      "          'must': 2,\n",
      "          'way': 2,\n",
      "          'martial': 2,\n",
      "          'law': 2,\n",
      "          'men': 2,\n",
      "          'american': 2,\n",
      "          'washington': 2,\n",
      "          'agent': 2,\n",
      "          'intelligent': 2,\n",
      "          'usual': 2,\n",
      "          'group': 2,\n",
      "          'bening': 2,\n",
      "          'knows': 2,\n",
      "          'nthey': 2,\n",
      "          'great': 2,\n",
      "          'well': 2,\n",
      "          'terrifying': 2,\n",
      "          'best': 2,\n",
      "          'films': 2,\n",
      "          'director': 2,\n",
      "          'several': 2,\n",
      "          'power': 2,\n",
      "          'army': 2,\n",
      "          'involved': 2,\n",
      "          'palestinian': 2,\n",
      "          'exactly': 2,\n",
      "          'nin': 2,\n",
      "          'looses': 2,\n",
      "          'protests': 2,\n",
      "          'population': 2,\n",
      "          'n': 2,\n",
      "          'nzwick': 2,\n",
      "          'matter': 2,\n",
      "          'twist': 2,\n",
      "          'get': 2,\n",
      "          'comes': 2,\n",
      "          'point': 2,\n",
      "          'emotions': 2,\n",
      "          'patriotism': 2,\n",
      "          'courage': 2,\n",
      "          'enough': 2,\n",
      "          'cities': 1,\n",
      "          'increasing': 1,\n",
      "          'threat': 1,\n",
      "          'basic': 1,\n",
      "          'human': 1,\n",
      "          'rights': 1,\n",
      "          'sacrifice': 1,\n",
      "          'prevent': 1,\n",
      "          'another': 1,\n",
      "          'oklahoma': 1,\n",
      "          'disaster': 1,\n",
      "          'nso': 1,\n",
      "          'far': 1,\n",
      "          'leading': 1,\n",
      "          'nation': 1,\n",
      "          'opposing': 1,\n",
      "          'fundamentalist': 1,\n",
      "          'terrorists': 1,\n",
      "          'around': 1,\n",
      "          'dark': 1,\n",
      "          'fantasy': 1,\n",
      "          'unfortunately': 1,\n",
      "          'strong': 1,\n",
      "          'grounding': 1,\n",
      "          'nwhen': 1,\n",
      "          'special': 1,\n",
      "          'branch': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'command': 1,\n",
      "          'general': 1,\n",
      "          'bruce': 1,\n",
      "          'prisoner': 1,\n",
      "          'suspected': 1,\n",
      "          'mastermind': 1,\n",
      "          'sheik': 1,\n",
      "          'ahmed': 1,\n",
      "          'bin': 1,\n",
      "          'talal': 1,\n",
      "          'islamic': 1,\n",
      "          'fundamentalists': 1,\n",
      "          'across': 1,\n",
      "          'take': 1,\n",
      "          'notice': 1,\n",
      "          'warning': 1,\n",
      "          'receives': 1,\n",
      "          'single': 1,\n",
      "          'cryptic': 1,\n",
      "          'message': 1,\n",
      "          'release': 1,\n",
      "          'nthen': 1,\n",
      "          'hell': 1,\n",
      "          'breaks': 1,\n",
      "          'loose': 1,\n",
      "          'bus': 1,\n",
      "          'destroyed': 1,\n",
      "          'killing': 1,\n",
      "          '25': 1,\n",
      "          'civilians': 1,\n",
      "          'broadway': 1,\n",
      "          'theater': 1,\n",
      "          'bombed': 1,\n",
      "          'nhostages': 1,\n",
      "          'taken': 1,\n",
      "          'school': 1,\n",
      "          'nas': 1,\n",
      "          'wave': 1,\n",
      "          'activity': 1,\n",
      "          'crests': 1,\n",
      "          'president': 1,\n",
      "          'consider': 1,\n",
      "          'save': 1,\n",
      "          'break': 1,\n",
      "          'grip': 1,\n",
      "          'fear': 1,\n",
      "          'declare': 1,\n",
      "          'ndevereaux': 1,\n",
      "          'argues': 1,\n",
      "          'eventuality': 1,\n",
      "          'nevertheless': 1,\n",
      "          'ready': 1,\n",
      "          'lead': 1,\n",
      "          '10': 1,\n",
      "          '000': 1,\n",
      "          'action': 1,\n",
      "          'soil': 1,\n",
      "          'nanother': 1,\n",
      "          'person': 1,\n",
      "          'favor': 1,\n",
      "          'anthony': 1,\n",
      "          'hubbard': 1,\n",
      "          'denzel': 1,\n",
      "          'charge': 1,\n",
      "          'investigating': 1,\n",
      "          'activities': 1,\n",
      "          'nhis': 1,\n",
      "          'staff': 1,\n",
      "          'comprised': 1,\n",
      "          'smart': 1,\n",
      "          'energetic': 1,\n",
      "          'women': 1,\n",
      "          'unlike': 1,\n",
      "          'nf': 1,\n",
      "          'moronic': 1,\n",
      "          'feds': 1,\n",
      "          'used': 1,\n",
      "          'seeing': 1,\n",
      "          'movies': 1,\n",
      "          'nhubbard': 1,\n",
      "          'develops': 1,\n",
      "          'uneasy': 1,\n",
      "          'alliance': 1,\n",
      "          'elise': 1,\n",
      "          'kraft': 1,\n",
      "          'annette': 1,\n",
      "          'whose': 1,\n",
      "          'department': 1,\n",
      "          'situation': 1,\n",
      "          'theyre': 1,\n",
      "          'reveal': 1,\n",
      "          'attacks': 1,\n",
      "          'escalate': 1,\n",
      "          'helpless': 1,\n",
      "          'chasing': 1,\n",
      "          'invisible': 1,\n",
      "          'enemy': 1,\n",
      "          'lost': 1,\n",
      "          'control': 1,\n",
      "          'nterror': 1,\n",
      "          'coming': 1,\n",
      "          'within': 1,\n",
      "          'nwhats': 1,\n",
      "          'made': 1,\n",
      "          'holding': 1,\n",
      "          'mirror': 1,\n",
      "          'life': 1,\n",
      "          'reflects': 1,\n",
      "          'thats': 1,\n",
      "          'makes': 1,\n",
      "          'impact': 1,\n",
      "          'nedward': 1,\n",
      "          'zwick': 1,\n",
      "          'created': 1,\n",
      "          'clever': 1,\n",
      "          'written': 1,\n",
      "          'thriller': 1,\n",
      "          'may': 1,\n",
      "          'season': 1,\n",
      "          'manages': 1,\n",
      "          'tell': 1,\n",
      "          'stories': 1,\n",
      "          'simultaneously': 1,\n",
      "          'plays': 1,\n",
      "          'levels': 1,\n",
      "          'loosing': 1,\n",
      "          'focus': 1,\n",
      "          'main': 1,\n",
      "          'objective': 1,\n",
      "          'exploring': 1,\n",
      "          'abuse': 1,\n",
      "          'distrustful': 1,\n",
      "          'relationships': 1,\n",
      "          'exist': 1,\n",
      "          'various': 1,\n",
      "          'segments': 1,\n",
      "          'government': 1,\n",
      "          'look': 1,\n",
      "          'complexities': 1,\n",
      "          'inherent': 1,\n",
      "          'many': 1,\n",
      "          'secrets': 1,\n",
      "          'lies': 1,\n",
      "          'community': 1,\n",
      "          '1998': 1,\n",
      "          'treated': 1,\n",
      "          'japanese': 1,\n",
      "          'americans': 1,\n",
      "          'war': 1,\n",
      "          'ii': 1,\n",
      "          'nthere': 1,\n",
      "          'concentration': 1,\n",
      "          'camps': 1,\n",
      "          'unlawful': 1,\n",
      "          'interments': 1,\n",
      "          'name': 1,\n",
      "          'greater': 1,\n",
      "          'good': 1,\n",
      "          'latter': 1,\n",
      "          'part': 1,\n",
      "          'heart': 1,\n",
      "          'soul': 1,\n",
      "          'nwas': 1,\n",
      "          'nists': 1,\n",
      "          'wanted': 1,\n",
      "          'evoked': 1,\n",
      "          'objections': 1,\n",
      "          'arabamerican': 1,\n",
      "          'especially': 1,\n",
      "          'seem': 1,\n",
      "          'unnecessary': 1,\n",
      "          'careful': 1,\n",
      "          'step': 1,\n",
      "          'line': 1,\n",
      "          'make': 1,\n",
      "          'palestinians': 1,\n",
      "          'typical': 1,\n",
      "          'hollywood': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'script': 1,\n",
      "          'therefore': 1,\n",
      "          'wonderfully': 1,\n",
      "          'balanced': 1,\n",
      "          'nagent': 1,\n",
      "          'hubbards': 1,\n",
      "          'friend': 1,\n",
      "          'loyal': 1,\n",
      "          'colleague': 1,\n",
      "          'frank': 1,\n",
      "          'haddad': 1,\n",
      "          'tony': 1,\n",
      "          'shalhoub': 1,\n",
      "          'lebaneseamerican': 1,\n",
      "          'quite': 1,\n",
      "          'often': 1,\n",
      "          'hear': 1,\n",
      "          'lines': 1,\n",
      "          'first': 1,\n",
      "          'boyfriend': 1,\n",
      "          'seduce': 1,\n",
      "          'suffering': 1,\n",
      "          'love': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'country': 1,\n",
      "          'wont': 1,\n",
      "          'away': 1,\n",
      "          'fact': 1,\n",
      "          'wide': 1,\n",
      "          'arabspeaking': 1,\n",
      "          'majority': 1,\n",
      "          'nmore': 1,\n",
      "          'demonstrates': 1,\n",
      "          'injustice': 1,\n",
      "          'blanket': 1,\n",
      "          'condemnation': 1,\n",
      "          'ethnic': 1,\n",
      "          'depicting': 1,\n",
      "          'unfair': 1,\n",
      "          'treatment': 1,\n",
      "          'arabamericans': 1,\n",
      "          'thus': 1,\n",
      "          'serve': 1,\n",
      "          'source': 1,\n",
      "          'discrimination': 1,\n",
      "          'nway': 1,\n",
      "          'ndenzel': 1,\n",
      "          'dashing': 1,\n",
      "          'always': 1,\n",
      "          'role': 1,\n",
      "          'determined': 1,\n",
      "          'stronger': 1,\n",
      "          'nanette': 1,\n",
      "          'enjoyable': 1,\n",
      "          'believable': 1,\n",
      "          'shadowy': 1,\n",
      "          'operative': 1,\n",
      "          'prefers': 1,\n",
      "          'espionage': 1,\n",
      "          'network': 1,\n",
      "          'snitches': 1,\n",
      "          'seduction': 1,\n",
      "          'gather': 1,\n",
      "          'information': 1,\n",
      "          'nbruce': 1,\n",
      "          'sadist': 1,\n",
      "          'hungry': 1,\n",
      "          'connection': 1,\n",
      "          'audience': 1,\n",
      "          'since': 1,\n",
      "          'view': 1,\n",
      "          'hard': 1,\n",
      "          'understand': 1,\n",
      "          'elegantly': 1,\n",
      "          'shaped': 1,\n",
      "          'scenes': 1,\n",
      "          'easily': 1,\n",
      "          'floating': 1,\n",
      "          'seems': 1,\n",
      "          'overlong': 1,\n",
      "          'provoke': 1,\n",
      "          'tension': 1,\n",
      "          'horror': 1,\n",
      "          'rarely': 1,\n",
      "          'observed': 1,\n",
      "          'professionalism': 1,\n",
      "          'tightens': 1,\n",
      "          'intensity': 1,\n",
      "          'events': 1,\n",
      "          'progress': 1,\n",
      "          'plot': 1,\n",
      "          'actually': 1,\n",
      "          'surprising': 1,\n",
      "          'drained': 1,\n",
      "          'like': 1,\n",
      "          'work': 1,\n",
      "          'roland': 1,\n",
      "          'emerich': 1,\n",
      "          'nnor': 1,\n",
      "          'portrays': 1,\n",
      "          'explosions': 1,\n",
      "          'purely': 1,\n",
      "          'entertainment': 1,\n",
      "          'values': 1,\n",
      "          'daring': 1,\n",
      "          'picture': 1,\n",
      "          'undertake': 1,\n",
      "          'risky': 1,\n",
      "          'story': 1,\n",
      "          'difficult': 1,\n",
      "          'journey': 1,\n",
      "          'politics': 1,\n",
      "          'questions': 1,\n",
      "          'foreign': 1,\n",
      "          'policies': 1,\n",
      "          'mentality': 1,\n",
      "          'defense': 1,\n",
      "          'ni': 1,\n",
      "          'admit': 1,\n",
      "          'ends': 1,\n",
      "          'rather': 1,\n",
      "          'disappointing': 1,\n",
      "          'turns': 1,\n",
      "          'innovation': 1,\n",
      "          'despite': 1,\n",
      "          'certainly': 1,\n",
      "          'thrilling': 1,\n",
      "          'provokes': 1,\n",
      "          'thoughts': 1,\n",
      "          'virtue': 1,\n",
      "          'summer': 1,\n",
      "          'boast': 1,\n",
      "          'nits': 1,\n",
      "          'broadsword': 1,\n",
      "          'scalpel': 1,\n",
      "          'nbelieve': 1,\n",
      "          'want': 1,\n",
      "          'us': 1,\n",
      "          'gen': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'keaton': 6,\n",
      "          'nthe': 6,\n",
      "          'save': 4,\n",
      "          'life': 3,\n",
      "          'movies': 3,\n",
      "          'kill': 3,\n",
      "          'one': 3,\n",
      "          'would': 3,\n",
      "          'character': 3,\n",
      "          'desperate': 2,\n",
      "          'measures': 2,\n",
      "          'reason': 2,\n",
      "          'son': 2,\n",
      "          'san': 2,\n",
      "          'francisco': 2,\n",
      "          'police': 2,\n",
      "          'garcia': 2,\n",
      "          'escape': 2,\n",
      "          'could': 2,\n",
      "          'trying': 2,\n",
      "          'movie': 2,\n",
      "          'certainly': 2,\n",
      "          'keatons': 2,\n",
      "          'garcias': 2,\n",
      "          'many': 2,\n",
      "          'kids': 2,\n",
      "          'evil': 2,\n",
      "          'good': 2,\n",
      "          'really': 2,\n",
      "          'seen': 2,\n",
      "          'final': 2,\n",
      "          'scene': 2,\n",
      "          'menacing': 2,\n",
      "          'batman': 2,\n",
      "          'nand': 2,\n",
      "          'something': 1,\n",
      "          'excited': 1,\n",
      "          'seeing': 1,\n",
      "          'back': 1,\n",
      "          'originally': 1,\n",
      "          'scheduled': 1,\n",
      "          'released': 1,\n",
      "          'summer': 1,\n",
      "          '97': 1,\n",
      "          'nfor': 1,\n",
      "          'delayed': 1,\n",
      "          'hollywoods': 1,\n",
      "          'traditional': 1,\n",
      "          'dumping': 1,\n",
      "          'ground': 1,\n",
      "          'january': 1,\n",
      "          'nnow': 1,\n",
      "          'see': 1,\n",
      "          'real': 1,\n",
      "          'delay': 1,\n",
      "          'simple': 1,\n",
      "          'yet': 1,\n",
      "          'highly': 1,\n",
      "          'entertaining': 1,\n",
      "          'nmichael': 1,\n",
      "          'stars': 1,\n",
      "          'maniacial': 1,\n",
      "          'murderer': 1,\n",
      "          'whos': 1,\n",
      "          'bone': 1,\n",
      "          'marrow': 1,\n",
      "          'dying': 1,\n",
      "          'detective': 1,\n",
      "          'nkeaton': 1,\n",
      "          'agrees': 1,\n",
      "          'transplant': 1,\n",
      "          'attempt': 1,\n",
      "          'nhe': 1,\n",
      "          'succeeds': 1,\n",
      "          'plan': 1,\n",
      "          'course': 1,\n",
      "          'work': 1,\n",
      "          'force': 1,\n",
      "          'working': 1,\n",
      "          'keep': 1,\n",
      "          'alive': 1,\n",
      "          'order': 1,\n",
      "          'definately': 1,\n",
      "          'flaws': 1,\n",
      "          'plot': 1,\n",
      "          'strictly': 1,\n",
      "          'tv': 1,\n",
      "          'week': 1,\n",
      "          'fare': 1,\n",
      "          'acting': 1,\n",
      "          'direction': 1,\n",
      "          'boost': 1,\n",
      "          'far': 1,\n",
      "          'status': 1,\n",
      "          'nalso': 1,\n",
      "          'captain': 1,\n",
      "          'barks': 1,\n",
      "          'men': 1,\n",
      "          'die': 1,\n",
      "          'nwhich': 1,\n",
      "          'treats': 1,\n",
      "          'insignificant': 1,\n",
      "          'remark': 1,\n",
      "          'thing': 1,\n",
      "          'vaild': 1,\n",
      "          'point': 1,\n",
      "          'nhow': 1,\n",
      "          'people': 1,\n",
      "          'needlessly': 1,\n",
      "          'crippled': 1,\n",
      "          'burned': 1,\n",
      "          'killed': 1,\n",
      "          'child': 1,\n",
      "          'nwhats': 1,\n",
      "          'greater': 1,\n",
      "          'nmany': 1,\n",
      "          'lives': 1,\n",
      "          'nif': 1,\n",
      "          'guts': 1,\n",
      "          'nowadays': 1,\n",
      "          'loved': 1,\n",
      "          'come': 1,\n",
      "          'choice': 1,\n",
      "          'nplace': 1,\n",
      "          'situation': 1,\n",
      "          'knows': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'nalas': 1,\n",
      "          'days': 1,\n",
      "          'generally': 1,\n",
      "          'ambition': 1,\n",
      "          'pull': 1,\n",
      "          'audiences': 1,\n",
      "          'strings': 1,\n",
      "          'ways': 1,\n",
      "          'might': 1,\n",
      "          'make': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'ndespite': 1,\n",
      "          'silly': 1,\n",
      "          'moments': 1,\n",
      "          'two': 1,\n",
      "          'stupid': 1,\n",
      "          'ones': 1,\n",
      "          'things': 1,\n",
      "          'outnumber': 1,\n",
      "          'bad': 1,\n",
      "          'main': 1,\n",
      "          'highlight': 1,\n",
      "          'performance': 1,\n",
      "          'easily': 1,\n",
      "          'overacting': 1,\n",
      "          'chewing': 1,\n",
      "          'freak': 1,\n",
      "          'underplays': 1,\n",
      "          'nicely': 1,\n",
      "          'nhes': 1,\n",
      "          'pacific': 1,\n",
      "          'heights': 1,\n",
      "          'even': 1,\n",
      "          'yes': 1,\n",
      "          'used': 1,\n",
      "          'dark': 1,\n",
      "          'get': 1,\n",
      "          'idea': 1,\n",
      "          'hes': 1,\n",
      "          'neven': 1,\n",
      "          'normally': 1,\n",
      "          'hate': 1,\n",
      "          'seems': 1,\n",
      "          'strangely': 1,\n",
      "          'appropriate': 1,\n",
      "          'nso': 1,\n",
      "          'much': 1,\n",
      "          'didnt': 1,\n",
      "          'mind': 1,\n",
      "          'slightest': 1,\n",
      "          'another': 1,\n",
      "          'bonus': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'usually': 1,\n",
      "          'means': 1,\n",
      "          'car': 1,\n",
      "          'chase': 1,\n",
      "          'hills': 1,\n",
      "          'youve': 1,\n",
      "          'billion': 1,\n",
      "          'times': 1,\n",
      "          'moment': 1,\n",
      "          'looked': 1,\n",
      "          'though': 1,\n",
      "          'happen': 1,\n",
      "          'nbut': 1,\n",
      "          'doesnt': 1,\n",
      "          'thats': 1,\n",
      "          'creative': 1,\n",
      "          'nr': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'exorcist': 6,\n",
      "          'film': 6,\n",
      "          'new': 5,\n",
      "          'regan': 5,\n",
      "          'horror': 4,\n",
      "          'seen': 4,\n",
      "          'still': 4,\n",
      "          'man': 4,\n",
      "          'best': 4,\n",
      "          'ending': 3,\n",
      "          'actress': 3,\n",
      "          'help': 3,\n",
      "          'karras': 3,\n",
      "          'little': 3,\n",
      "          'girl': 3,\n",
      "          'scary': 2,\n",
      "          'nis': 2,\n",
      "          'person': 2,\n",
      "          'wants': 2,\n",
      "          'forever': 2,\n",
      "          'wait': 2,\n",
      "          'rave': 2,\n",
      "          'reviews': 2,\n",
      "          'audiences': 2,\n",
      "          'death': 2,\n",
      "          'year': 2,\n",
      "          'never': 2,\n",
      "          'six': 2,\n",
      "          'channel': 2,\n",
      "          'digital': 2,\n",
      "          'sound': 2,\n",
      "          'fifteen': 2,\n",
      "          'minutes': 2,\n",
      "          'footage': 2,\n",
      "          'daughter': 2,\n",
      "          'chris': 2,\n",
      "          'starts': 2,\n",
      "          'possessed': 2,\n",
      "          'getting': 2,\n",
      "          'jason': 2,\n",
      "          'miller': 2,\n",
      "          'father': 2,\n",
      "          'twenty': 2,\n",
      "          'years': 2,\n",
      "          'way': 2,\n",
      "          'cut': 2,\n",
      "          'friedkin': 2,\n",
      "          'time': 2,\n",
      "          'well': 2,\n",
      "          'nthe': 2,\n",
      "          'wonderful': 2,\n",
      "          'amazing': 2,\n",
      "          'one': 2,\n",
      "          'burstyn': 2,\n",
      "          'going': 2,\n",
      "          'think': 2,\n",
      "          'performance': 2,\n",
      "          'people': 2,\n",
      "          'laughing': 2,\n",
      "          'stuff': 2,\n",
      "          'come': 2,\n",
      "          'rerelease': 2,\n",
      "          'anyhow': 1,\n",
      "          'gets': 1,\n",
      "          'ripped': 1,\n",
      "          'shreds': 1,\n",
      "          'chased': 1,\n",
      "          'damned': 1,\n",
      "          'teenager': 1,\n",
      "          'revenge': 1,\n",
      "          'npossibly': 1,\n",
      "          'guy': 1,\n",
      "          'hook': 1,\n",
      "          'know': 1,\n",
      "          'last': 1,\n",
      "          'summer': 1,\n",
      "          'nwhat': 1,\n",
      "          'ever': 1,\n",
      "          'happened': 1,\n",
      "          'movies': 1,\n",
      "          'atmosphere': 1,\n",
      "          'characters': 1,\n",
      "          'nmovies': 1,\n",
      "          'like': 1,\n",
      "          'halloween': 1,\n",
      "          'psycho': 1,\n",
      "          'revolutionized': 1,\n",
      "          'genre': 1,\n",
      "          '1973': 1,\n",
      "          'came': 1,\n",
      "          'based': 1,\n",
      "          'bestselling': 1,\n",
      "          'book': 1,\n",
      "          'william': 1,\n",
      "          'peter': 1,\n",
      "          'blatty': 1,\n",
      "          'entitled': 1,\n",
      "          'opened': 1,\n",
      "          'scared': 1,\n",
      "          '2000': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'version': 1,\n",
      "          'youve': 1,\n",
      "          'complete': 1,\n",
      "          'surround': 1,\n",
      "          'long': 1,\n",
      "          'nchris': 1,\n",
      "          'mcniell': 1,\n",
      "          'living': 1,\n",
      "          'georgetown': 1,\n",
      "          'washington': 1,\n",
      "          'twelve': 1,\n",
      "          'old': 1,\n",
      "          'nwhile': 1,\n",
      "          'working': 1,\n",
      "          'stays': 1,\n",
      "          'close': 1,\n",
      "          'wonder': 1,\n",
      "          'bed': 1,\n",
      "          'shakes': 1,\n",
      "          'night': 1,\n",
      "          'convulsions': 1,\n",
      "          'sudden': 1,\n",
      "          'nwhen': 1,\n",
      "          'finds': 1,\n",
      "          'demon': 1,\n",
      "          'shuns': 1,\n",
      "          'fact': 1,\n",
      "          'considers': 1,\n",
      "          'priest': 1,\n",
      "          'nfather': 1,\n",
      "          'bring': 1,\n",
      "          'mother': 1,\n",
      "          'died': 1,\n",
      "          'mourning': 1,\n",
      "          'decides': 1,\n",
      "          'nchrist': 1,\n",
      "          'nanny': 1,\n",
      "          'sharon': 1,\n",
      "          'kitty': 1,\n",
      "          'winn': 1,\n",
      "          'sit': 1,\n",
      "          'shows': 1,\n",
      "          'nexcrutiatingly': 1,\n",
      "          'classic': 1,\n",
      "          'seven': 1,\n",
      "          'later': 1,\n",
      "          'scares': 1,\n",
      "          'half': 1,\n",
      "          'nnow': 1,\n",
      "          'get': 1,\n",
      "          'experience': 1,\n",
      "          'meant': 1,\n",
      "          'directors': 1,\n",
      "          'incorpates': 1,\n",
      "          'release': 1,\n",
      "          'content': 1,\n",
      "          'added': 1,\n",
      "          'adds': 1,\n",
      "          'lighter': 1,\n",
      "          'feeling': 1,\n",
      "          'prefer': 1,\n",
      "          'original': 1,\n",
      "          'darker': 1,\n",
      "          'also': 1,\n",
      "          'remastered': 1,\n",
      "          'mix': 1,\n",
      "          'voices': 1,\n",
      "          'clear': 1,\n",
      "          'music': 1,\n",
      "          'pours': 1,\n",
      "          'engulfs': 1,\n",
      "          'richness': 1,\n",
      "          'nas': 1,\n",
      "          'director': 1,\n",
      "          'known': 1,\n",
      "          'films': 1,\n",
      "          'standout': 1,\n",
      "          'nominated': 1,\n",
      "          'several': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'somehow': 1,\n",
      "          'doubted': 1,\n",
      "          'picture': 1,\n",
      "          'ellen': 1,\n",
      "          'supporting': 1,\n",
      "          'linda': 1,\n",
      "          'blair': 1,\n",
      "          'age': 1,\n",
      "          'believe': 1,\n",
      "          'thirteen': 1,\n",
      "          'job': 1,\n",
      "          'alone': 1,\n",
      "          'unable': 1,\n",
      "          'stop': 1,\n",
      "          'nellen': 1,\n",
      "          'gives': 1,\n",
      "          'date': 1,\n",
      "          'currently': 1,\n",
      "          'requiem': 1,\n",
      "          'dream': 1,\n",
      "          'njason': 1,\n",
      "          'patriks': 1,\n",
      "          'dad': 1,\n",
      "          'embedded': 1,\n",
      "          'mind': 1,\n",
      "          'character': 1,\n",
      "          'makes': 1,\n",
      "          'entire': 1,\n",
      "          'float': 1,\n",
      "          'along': 1,\n",
      "          'ni': 1,\n",
      "          'saddened': 1,\n",
      "          'saw': 1,\n",
      "          'audience': 1,\n",
      "          'mostly': 1,\n",
      "          'younger': 1,\n",
      "          'see': 1,\n",
      "          'comical': 1,\n",
      "          'yes': 1,\n",
      "          'says': 1,\n",
      "          'funny': 1,\n",
      "          'head': 1,\n",
      "          'spinning': 1,\n",
      "          'green': 1,\n",
      "          'pea': 1,\n",
      "          'soup': 1,\n",
      "          'creepy': 1,\n",
      "          'nanyway': 1,\n",
      "          'managed': 1,\n",
      "          'make': 1,\n",
      "          '40': 1,\n",
      "          'million': 1,\n",
      "          'dollars': 1,\n",
      "          'nhopefully': 1,\n",
      "          'day': 1,\n",
      "          'generations': 1,\n",
      "          'enjoy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'graham': 5,\n",
      "          'nthe': 4,\n",
      "          'second': 4,\n",
      "          'best': 4,\n",
      "          'njames': 4,\n",
      "          'chris': 3,\n",
      "          'must': 3,\n",
      "          'father': 3,\n",
      "          'person': 3,\n",
      "          'also': 3,\n",
      "          'really': 2,\n",
      "          'theme': 2,\n",
      "          'cleary': 2,\n",
      "          'miles': 2,\n",
      "          'boy': 2,\n",
      "          'home': 2,\n",
      "          'mother': 2,\n",
      "          'nhe': 2,\n",
      "          'living': 2,\n",
      "          'life': 2,\n",
      "          'feels': 2,\n",
      "          'social': 2,\n",
      "          'worker': 2,\n",
      "          'adopt': 2,\n",
      "          'nthis': 2,\n",
      "          'holt': 2,\n",
      "          'hurt': 2,\n",
      "          'ngraham': 2,\n",
      "          'real': 2,\n",
      "          'parents': 2,\n",
      "          'love': 2,\n",
      "          'get': 2,\n",
      "          'james': 2,\n",
      "          'nbut': 2,\n",
      "          'n': 2,\n",
      "          'film': 2,\n",
      "          'directed': 2,\n",
      "          'menges': 2,\n",
      "          'made': 2,\n",
      "          'nand': 2,\n",
      "          'wonderful': 1,\n",
      "          'little': 1,\n",
      "          'movie': 1,\n",
      "          'interested': 1,\n",
      "          'characters': 1,\n",
      "          'scene': 1,\n",
      "          'laid': 1,\n",
      "          'wales': 1,\n",
      "          '10yearold': 1,\n",
      "          'live': 1,\n",
      "          'keith': 1,\n",
      "          'allen': 1,\n",
      "          'prison': 1,\n",
      "          'committed': 1,\n",
      "          'suicide': 1,\n",
      "          'mentally': 1,\n",
      "          'unbalanced': 1,\n",
      "          'child': 1,\n",
      "          'cant': 1,\n",
      "          'forget': 1,\n",
      "          'happened': 1,\n",
      "          'past': 1,\n",
      "          'dreams': 1,\n",
      "          'happy': 1,\n",
      "          'beloved': 1,\n",
      "          'nin': 1,\n",
      "          'sadly': 1,\n",
      "          'lonely': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'alan': 1,\n",
      "          'cumming': 1,\n",
      "          'tells': 1,\n",
      "          'wants': 1,\n",
      "          'william': 1,\n",
      "          'manages': 1,\n",
      "          'post': 1,\n",
      "          'office': 1,\n",
      "          'shop': 1,\n",
      "          'village': 1,\n",
      "          'single': 1,\n",
      "          'hasnt': 1,\n",
      "          'friends': 1,\n",
      "          'nhis': 1,\n",
      "          'dead': 1,\n",
      "          'ill': 1,\n",
      "          'die': 1,\n",
      "          'disappointment': 1,\n",
      "          'nthere': 1,\n",
      "          'never': 1,\n",
      "          'ngrahams': 1,\n",
      "          'monotonous': 1,\n",
      "          'would': 1,\n",
      "          'new': 1,\n",
      "          'sense': 1,\n",
      "          'could': 1,\n",
      "          'convince': 1,\n",
      "          'institutions': 1,\n",
      "          'win': 1,\n",
      "          'open': 1,\n",
      "          'theirselves': 1,\n",
      "          'nthey': 1,\n",
      "          'know': 1,\n",
      "          'learn': 1,\n",
      "          'understand': 1,\n",
      "          'trust': 1,\n",
      "          'aid': 1,\n",
      "          'cope': 1,\n",
      "          'problems': 1,\n",
      "          'relationship': 1,\n",
      "          'future': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'david': 1,\n",
      "          'cook': 1,\n",
      "          'wrote': 1,\n",
      "          'screenplay': 1,\n",
      "          'directing': 1,\n",
      "          'debut': 1,\n",
      "          'good': 1,\n",
      "          'antiapartheid': 1,\n",
      "          'drama': 1,\n",
      "          'world': 1,\n",
      "          'apart': 1,\n",
      "          '198788': 1,\n",
      "          'maybe': 1,\n",
      "          'even': 1,\n",
      "          'greater': 1,\n",
      "          'picture': 1,\n",
      "          'precise': 1,\n",
      "          'richly': 1,\n",
      "          'detailed': 1,\n",
      "          'sensitively': 1,\n",
      "          'convincingly': 1,\n",
      "          'study': 1,\n",
      "          'special': 1,\n",
      "          'adoption': 1,\n",
      "          'treats': 1,\n",
      "          'great': 1,\n",
      "          'seriousness': 1,\n",
      "          'breathtakingly': 1,\n",
      "          'intense': 1,\n",
      "          'shows': 1,\n",
      "          'necessity': 1,\n",
      "          'human': 1,\n",
      "          'contact': 1,\n",
      "          'communication': 1,\n",
      "          'nwilliam': 1,\n",
      "          'delivers': 1,\n",
      "          'outstanding': 1,\n",
      "          'performance': 1,\n",
      "          'remarkably': 1,\n",
      "          'convincing': 1,\n",
      "          'role': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'fine': 1,\n",
      "          'especially': 1,\n",
      "          'jane': 1,\n",
      "          'horrocks': 1,\n",
      "          'debbie': 1,\n",
      "          'charged': 1,\n",
      "          'examine': 1,\n",
      "          'grahams': 1,\n",
      "          'circumstances': 1,\n",
      "          'underestimated': 1,\n",
      "          'masterpiece': 1,\n",
      "          'nits': 1,\n",
      "          'pity': 1,\n",
      "          'films': 1,\n",
      "          'like': 1,\n",
      "          'one': 1,\n",
      "          'seldom': 1,\n",
      "          'ni': 1,\n",
      "          'eagerly': 1,\n",
      "          'await': 1,\n",
      "          'next': 1,\n",
      "          'directorial': 1,\n",
      "          'work': 1,\n",
      "          'lost': 1,\n",
      "          'son': 1,\n",
      "          'star': 1,\n",
      "          'daniel': 1,\n",
      "          'auteuil': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'event': 6,\n",
      "          'horizon': 6,\n",
      "          'good': 5,\n",
      "          'nthe': 5,\n",
      "          'ship': 5,\n",
      "          'film': 5,\n",
      "          'search': 4,\n",
      "          'team': 3,\n",
      "          'events': 3,\n",
      "          'nit': 3,\n",
      "          'becomes': 3,\n",
      "          'year': 2,\n",
      "          'plenty': 2,\n",
      "          'black': 2,\n",
      "          'later': 2,\n",
      "          'invented': 2,\n",
      "          'gravity': 2,\n",
      "          'drive': 2,\n",
      "          'na': 2,\n",
      "          'craft': 2,\n",
      "          'case': 2,\n",
      "          'nhowever': 2,\n",
      "          'trace': 2,\n",
      "          'leaving': 2,\n",
      "          'years': 2,\n",
      "          'starts': 2,\n",
      "          'laurence': 2,\n",
      "          'fishburne': 2,\n",
      "          'neill': 2,\n",
      "          'scientist': 2,\n",
      "          'find': 2,\n",
      "          'nnot': 2,\n",
      "          'make': 2,\n",
      "          'worse': 2,\n",
      "          'bloody': 2,\n",
      "          'occur': 2,\n",
      "          'together': 2,\n",
      "          'acting': 2,\n",
      "          'quite': 2,\n",
      "          'behind': 2,\n",
      "          'one': 2,\n",
      "          'biting': 2,\n",
      "          'want': 1,\n",
      "          'scifi': 1,\n",
      "          'multiplex': 1,\n",
      "          'nfrom': 1,\n",
      "          'comedies': 1,\n",
      "          'mars': 1,\n",
      "          'attacks': 1,\n",
      "          'men': 1,\n",
      "          'luc': 1,\n",
      "          'bessons': 1,\n",
      "          'powerful': 1,\n",
      "          'fifth': 1,\n",
      "          'element': 1,\n",
      "          'scifihorror': 1,\n",
      "          'n': 1,\n",
      "          'way': 1,\n",
      "          'contact': 1,\n",
      "          'alien': 1,\n",
      "          'ressurection': 1,\n",
      "          'released': 1,\n",
      "          'story': 1,\n",
      "          'thus': 1,\n",
      "          '2040': 1,\n",
      "          'explorer': 1,\n",
      "          'called': 1,\n",
      "          'tests': 1,\n",
      "          'newly': 1,\n",
      "          'device': 1,\n",
      "          'enables': 1,\n",
      "          'travel': 1,\n",
      "          'anywhere': 1,\n",
      "          'universe': 1,\n",
      "          'instantaneously': 1,\n",
      "          'nthis': 1,\n",
      "          'achieved': 1,\n",
      "          'creating': 1,\n",
      "          'gateway': 1,\n",
      "          'infact': 1,\n",
      "          'hole': 1,\n",
      "          'required': 1,\n",
      "          'destination': 1,\n",
      "          'nin': 1,\n",
      "          'near': 1,\n",
      "          'neptune': 1,\n",
      "          'proxima': 1,\n",
      "          'prime': 1,\n",
      "          'attempts': 1,\n",
      "          'dissappears': 1,\n",
      "          'without': 1,\n",
      "          'two': 1,\n",
      "          'searches': 1,\n",
      "          'fruitless': 1,\n",
      "          'nseven': 1,\n",
      "          'reappears': 1,\n",
      "          'transmitting': 1,\n",
      "          'distress': 1,\n",
      "          'signal': 1,\n",
      "          'rescue': 1,\n",
      "          'sent': 1,\n",
      "          'investigate': 1,\n",
      "          'led': 1,\n",
      "          'joining': 1,\n",
      "          'sam': 1,\n",
      "          'plays': 1,\n",
      "          'nas': 1,\n",
      "          'crew': 1,\n",
      "          'blood': 1,\n",
      "          'lying': 1,\n",
      "          'around': 1,\n",
      "          'sign': 1,\n",
      "          'nto': 1,\n",
      "          'matters': 1,\n",
      "          'subjected': 1,\n",
      "          'series': 1,\n",
      "          'illusions': 1,\n",
      "          'based': 1,\n",
      "          'individual': 1,\n",
      "          'inner': 1,\n",
      "          'secrets': 1,\n",
      "          'start': 1,\n",
      "          'slowly': 1,\n",
      "          'piece': 1,\n",
      "          'transpired': 1,\n",
      "          'seven': 1,\n",
      "          'ago': 1,\n",
      "          'soon': 1,\n",
      "          'apparent': 1,\n",
      "          'wherever': 1,\n",
      "          'went': 1,\n",
      "          'bought': 1,\n",
      "          'something': 1,\n",
      "          'back': 1,\n",
      "          'nsomething': 1,\n",
      "          'evil': 1,\n",
      "          'first': 1,\n",
      "          'thing': 1,\n",
      "          'youll': 1,\n",
      "          'notice': 1,\n",
      "          'incredible': 1,\n",
      "          'visual': 1,\n",
      "          'effects': 1,\n",
      "          'nthey': 1,\n",
      "          'really': 1,\n",
      "          'eye': 1,\n",
      "          'popping': 1,\n",
      "          'great': 1,\n",
      "          'models': 1,\n",
      "          'boot': 1,\n",
      "          'occasional': 1,\n",
      "          'witty': 1,\n",
      "          'moments': 1,\n",
      "          'nsam': 1,\n",
      "          'job': 1,\n",
      "          'increasingly': 1,\n",
      "          'disturbed': 1,\n",
      "          'continues': 1,\n",
      "          'tip': 1,\n",
      "          'hat': 1,\n",
      "          'goes': 1,\n",
      "          'leads': 1,\n",
      "          'cool': 1,\n",
      "          'calm': 1,\n",
      "          'take': 1,\n",
      "          'nonense': 1,\n",
      "          'manner': 1,\n",
      "          'skills': 1,\n",
      "          'help': 1,\n",
      "          'hold': 1,\n",
      "          'idea': 1,\n",
      "          'certainly': 1,\n",
      "          'incredibly': 1,\n",
      "          'well': 1,\n",
      "          'middle': 1,\n",
      "          'section': 1,\n",
      "          'confused': 1,\n",
      "          'sometimes': 1,\n",
      "          'muddled': 1,\n",
      "          'viewer': 1,\n",
      "          'unsure': 1,\n",
      "          'reasons': 1,\n",
      "          'bizarre': 1,\n",
      "          'closing': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          '20': 1,\n",
      "          'minutes': 1,\n",
      "          'producing': 1,\n",
      "          'nail': 1,\n",
      "          'straw': 1,\n",
      "          'drink': 1,\n",
      "          'nclimaxes': 1,\n",
      "          'ive': 1,\n",
      "          'recently': 1,\n",
      "          'witnessed': 1,\n",
      "          'noverall': 1,\n",
      "          'smart': 1,\n",
      "          'indeed': 1,\n",
      "          'nits': 1,\n",
      "          'enjoyable': 1,\n",
      "          'amazing': 1,\n",
      "          'visuals': 1,\n",
      "          'nbut': 1,\n",
      "          'warned': 1,\n",
      "          'horror': 1,\n",
      "          'scenes': 1,\n",
      "          'despite': 1,\n",
      "          'brief': 1,\n",
      "          'gory': 1,\n",
      "          'squemish': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'one': 8,\n",
      "          'film': 6,\n",
      "          'tony': 5,\n",
      "          'also': 3,\n",
      "          'performance': 3,\n",
      "          'miami': 3,\n",
      "          'crime': 3,\n",
      "          'scarface': 2,\n",
      "          'story': 2,\n",
      "          'corruption': 2,\n",
      "          'pacino': 2,\n",
      "          'montana': 2,\n",
      "          'movie': 2,\n",
      "          'becomes': 2,\n",
      "          'respected': 2,\n",
      "          'feared': 2,\n",
      "          'nthe': 2,\n",
      "          'begins': 2,\n",
      "          'cubans': 2,\n",
      "          'gangster': 2,\n",
      "          'ntony': 2,\n",
      "          'fall': 2,\n",
      "          'time': 2,\n",
      "          'force': 2,\n",
      "          'trust': 2,\n",
      "          'basically': 2,\n",
      "          'although': 2,\n",
      "          'stands': 2,\n",
      "          'nin': 2,\n",
      "          'nomination': 2,\n",
      "          'remake': 1,\n",
      "          '1932': 1,\n",
      "          'name': 1,\n",
      "          'gripping': 1,\n",
      "          'far': 1,\n",
      "          'know': 1,\n",
      "          'truetolife': 1,\n",
      "          'power': 1,\n",
      "          'violence': 1,\n",
      "          'lead': 1,\n",
      "          'nal': 1,\n",
      "          'named': 1,\n",
      "          'provides': 1,\n",
      "          'brilliant': 1,\n",
      "          'cuban': 1,\n",
      "          'refugee': 1,\n",
      "          'comes': 1,\n",
      "          'america': 1,\n",
      "          'less': 1,\n",
      "          'nothing': 1,\n",
      "          'highly': 1,\n",
      "          'drug': 1,\n",
      "          'lords': 1,\n",
      "          'noliver': 1,\n",
      "          'stone': 1,\n",
      "          'penned': 1,\n",
      "          'screenplay': 1,\n",
      "          'earlier': 1,\n",
      "          'writing': 1,\n",
      "          'roles': 1,\n",
      "          'disclosing': 1,\n",
      "          'fidel': 1,\n",
      "          'castro': 1,\n",
      "          'ordered': 1,\n",
      "          'thousands': 1,\n",
      "          'set': 1,\n",
      "          'sail': 1,\n",
      "          'head': 1,\n",
      "          'coasts': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'nmany': 1,\n",
      "          'criminal': 1,\n",
      "          'records': 1,\n",
      "          'cocky': 1,\n",
      "          'fasttalking': 1,\n",
      "          'man': 1,\n",
      "          'look': 1,\n",
      "          'nnearly': 1,\n",
      "          'right': 1,\n",
      "          'arrival': 1,\n",
      "          'thrust': 1,\n",
      "          'life': 1,\n",
      "          'participates': 1,\n",
      "          'cocaine': 1,\n",
      "          'buy': 1,\n",
      "          'goes': 1,\n",
      "          'awry': 1,\n",
      "          'nalong': 1,\n",
      "          'friend': 1,\n",
      "          'partner': 1,\n",
      "          'manolo': 1,\n",
      "          'steven': 1,\n",
      "          'bauer': 1,\n",
      "          'rises': 1,\n",
      "          'ranks': 1,\n",
      "          'forms': 1,\n",
      "          'friendship': 1,\n",
      "          'frank': 1,\n",
      "          'lopez': 1,\n",
      "          'robert': 1,\n",
      "          'loggia': 1,\n",
      "          'highroller': 1,\n",
      "          'organized': 1,\n",
      "          'field': 1,\n",
      "          'love': 1,\n",
      "          'elvira': 1,\n",
      "          'michelle': 1,\n",
      "          'pfeiffer': 1,\n",
      "          'franks': 1,\n",
      "          'lover': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'sooner': 1,\n",
      "          'later': 1,\n",
      "          'industry': 1,\n",
      "          'betrayal': 1,\n",
      "          'amount': 1,\n",
      "          'greater': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'ones': 1,\n",
      "          'victim': 1,\n",
      "          'nthis': 1,\n",
      "          'often': 1,\n",
      "          'men': 1,\n",
      "          'gets': 1,\n",
      "          'point': 1,\n",
      "          'anyone': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'feels': 1,\n",
      "          'way': 1,\n",
      "          'towards': 1,\n",
      "          'nno': 1,\n",
      "          'nscarface': 1,\n",
      "          'incredibly': 1,\n",
      "          'violent': 1,\n",
      "          'best': 1,\n",
      "          'films': 1,\n",
      "          'another': 1,\n",
      "          'great': 1,\n",
      "          'al': 1,\n",
      "          'nalthough': 1,\n",
      "          'receive': 1,\n",
      "          'recognition': 1,\n",
      "          'academy': 1,\n",
      "          'truly': 1,\n",
      "          'good': 1,\n",
      "          'fact': 1,\n",
      "          'accent': 1,\n",
      "          'facial': 1,\n",
      "          'movements': 1,\n",
      "          'alone': 1,\n",
      "          'enough': 1,\n",
      "          'mind': 1,\n",
      "          'win': 1,\n",
      "          'least': 1,\n",
      "          'get': 1,\n",
      "          'golden': 1,\n",
      "          'globe': 1,\n",
      "          'nanother': 1,\n",
      "          'element': 1,\n",
      "          'someone': 1,\n",
      "          'mentions': 1,\n",
      "          'profanity': 1,\n",
      "          'na': 1,\n",
      "          'figure': 1,\n",
      "          'tagged': 1,\n",
      "          'boasts': 1,\n",
      "          'word': 1,\n",
      "          'fuck': 1,\n",
      "          'uses': 1,\n",
      "          'uttered': 1,\n",
      "          '206': 1,\n",
      "          'times': 1,\n",
      "          'throughout': 1,\n",
      "          'apparently': 1,\n",
      "          'record': 1,\n",
      "          'thing': 1,\n",
      "          'vulgarity': 1,\n",
      "          'fits': 1,\n",
      "          'rather': 1,\n",
      "          'well': 1,\n",
      "          'nas': 1,\n",
      "          'odd': 1,\n",
      "          'sounds': 1,\n",
      "          'true': 1,\n",
      "          'end': 1,\n",
      "          'powerful': 1,\n",
      "          'hits': 1,\n",
      "          'home': 1,\n",
      "          'hard': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'trekkies': 8,\n",
      "          'nthe': 8,\n",
      "          'star': 6,\n",
      "          'trek': 6,\n",
      "          'conventions': 5,\n",
      "          'n': 5,\n",
      "          'would': 5,\n",
      "          'time': 5,\n",
      "          'film': 4,\n",
      "          'movie': 3,\n",
      "          'even': 3,\n",
      "          'certain': 3,\n",
      "          'fan': 3,\n",
      "          'fans': 3,\n",
      "          'people': 3,\n",
      "          'q': 3,\n",
      "          'nhe': 3,\n",
      "          'documentary': 2,\n",
      "          'fits': 2,\n",
      "          'reminds': 2,\n",
      "          'us': 2,\n",
      "          'oed': 2,\n",
      "          'new': 2,\n",
      "          'idea': 2,\n",
      "          'dedication': 2,\n",
      "          'none': 2,\n",
      "          'uniform': 2,\n",
      "          'many': 2,\n",
      "          'every': 2,\n",
      "          'nher': 2,\n",
      "          'well': 2,\n",
      "          'day': 2,\n",
      "          'reporters': 2,\n",
      "          'says': 2,\n",
      "          'crowd': 2,\n",
      "          'doesnt': 2,\n",
      "          'im': 2,\n",
      "          'federation': 2,\n",
      "          'show': 2,\n",
      "          'various': 2,\n",
      "          'seriess': 2,\n",
      "          'stars': 2,\n",
      "          'thought': 2,\n",
      "          'one': 2,\n",
      "          'briefly': 2,\n",
      "          'drank': 2,\n",
      "          'water': 2,\n",
      "          'nthey': 2,\n",
      "          'virus': 2,\n",
      "          'guy': 2,\n",
      "          'dentist': 2,\n",
      "          'like': 2,\n",
      "          'nit': 2,\n",
      "          'family': 2,\n",
      "          'klingon': 2,\n",
      "          'customs': 2,\n",
      "          'roger': 1,\n",
      "          'nygards': 1,\n",
      "          'energetic': 1,\n",
      "          'hilarious': 1,\n",
      "          'brings': 1,\n",
      "          'viewers': 1,\n",
      "          'world': 1,\n",
      "          'beauty': 1,\n",
      "          'good': 1,\n",
      "          'old': 1,\n",
      "          'fashion': 1,\n",
      "          'fun': 1,\n",
      "          'nonfans': 1,\n",
      "          'alike': 1,\n",
      "          'generally': 1,\n",
      "          'writes': 1,\n",
      "          'vs': 1,\n",
      "          'trekker': 1,\n",
      "          'polemic': 1,\n",
      "          'worth': 1,\n",
      "          'arguing': 1,\n",
      "          'goodspirited': 1,\n",
      "          'easily': 1,\n",
      "          'forces': 1,\n",
      "          'cynical': 1,\n",
      "          'viewer': 1,\n",
      "          'uncontrollable': 1,\n",
      "          'loud': 1,\n",
      "          'giggles': 1,\n",
      "          'yet': 1,\n",
      "          'picture': 1,\n",
      "          'treats': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'respect': 1,\n",
      "          'awe': 1,\n",
      "          'ndenise': 1,\n",
      "          'crosby': 1,\n",
      "          'played': 1,\n",
      "          'tasha': 1,\n",
      "          'yar': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'serves': 1,\n",
      "          'host': 1,\n",
      "          'nin': 1,\n",
      "          'opening': 1,\n",
      "          'credits': 1,\n",
      "          'group': 1,\n",
      "          'listed': 1,\n",
      "          'oxford': 1,\n",
      "          'english': 1,\n",
      "          'dictionary': 1,\n",
      "          'cites': 1,\n",
      "          'february': 1,\n",
      "          '1976': 1,\n",
      "          'caption': 1,\n",
      "          'yorker': 1,\n",
      "          'first': 1,\n",
      "          'recorded': 1,\n",
      "          'usage': 1,\n",
      "          'word': 1,\n",
      "          'nunless': 1,\n",
      "          'youve': 1,\n",
      "          'posit': 1,\n",
      "          'pointed': 1,\n",
      "          'apologetically': 1,\n",
      "          'stripe': 1,\n",
      "          'slightly': 1,\n",
      "          'inaccurate': 1,\n",
      "          'nothers': 1,\n",
      "          'talked': 1,\n",
      "          'attended': 1,\n",
      "          'several': 1,\n",
      "          'dozen': 1,\n",
      "          'typical': 1,\n",
      "          'hundreds': 1,\n",
      "          'unheard': 1,\n",
      "          'nmy': 1,\n",
      "          'personal': 1,\n",
      "          'favorite': 1,\n",
      "          'sir': 1,\n",
      "          'speedy': 1,\n",
      "          'photocopying': 1,\n",
      "          'worker': 1,\n",
      "          'barbara': 1,\n",
      "          'adams': 1,\n",
      "          'narguably': 1,\n",
      "          'famous': 1,\n",
      "          'wears': 1,\n",
      "          'waking': 1,\n",
      "          'hour': 1,\n",
      "          'diehard': 1,\n",
      "          'claim': 1,\n",
      "          'fame': 1,\n",
      "          'juror': 1,\n",
      "          'whitewater': 1,\n",
      "          'trial': 1,\n",
      "          'wore': 1,\n",
      "          'court': 1,\n",
      "          'walk': 1,\n",
      "          'past': 1,\n",
      "          'vulcanlike': 1,\n",
      "          'stoicism': 1,\n",
      "          'describing': 1,\n",
      "          'way': 1,\n",
      "          'dealing': 1,\n",
      "          'became': 1,\n",
      "          'obsessed': 1,\n",
      "          'obsession': 1,\n",
      "          'nshe': 1,\n",
      "          'quite': 1,\n",
      "          'understand': 1,\n",
      "          'uproar': 1,\n",
      "          'officer': 1,\n",
      "          '24': 1,\n",
      "          'hours': 1,\n",
      "          'fealty': 1,\n",
      "          'hobby': 1,\n",
      "          'approaches': 1,\n",
      "          'religious': 1,\n",
      "          'faith': 1,\n",
      "          'nalong': 1,\n",
      "          'laugher': 1,\n",
      "          'evokes': 1,\n",
      "          'equal': 1,\n",
      "          'measure': 1,\n",
      "          'sincere': 1,\n",
      "          'appreciation': 1,\n",
      "          'loyalty': 1,\n",
      "          'nand': 1,\n",
      "          'infectious': 1,\n",
      "          'joy': 1,\n",
      "          'provokes': 1,\n",
      "          'envy': 1,\n",
      "          'enjoyment': 1,\n",
      "          'nfew': 1,\n",
      "          'avocations': 1,\n",
      "          'could': 1,\n",
      "          'give': 1,\n",
      "          'much': 1,\n",
      "          'satisfaction': 1,\n",
      "          'nthese': 1,\n",
      "          'lives': 1,\n",
      "          'record': 1,\n",
      "          'although': 1,\n",
      "          'seen': 1,\n",
      "          'movies': 1,\n",
      "          'interviews': 1,\n",
      "          'convention': 1,\n",
      "          'lark': 1,\n",
      "          'soon': 1,\n",
      "          'fade': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'still': 1,\n",
      "          'going': 1,\n",
      "          'strong': 1,\n",
      "          'nfilled': 1,\n",
      "          'anecdotes': 1,\n",
      "          'talks': 1,\n",
      "          'happenings': 1,\n",
      "          'nat': 1,\n",
      "          'actor': 1,\n",
      "          'plays': 1,\n",
      "          'sick': 1,\n",
      "          'cancel': 1,\n",
      "          'nafter': 1,\n",
      "          'appearing': 1,\n",
      "          'left': 1,\n",
      "          'decided': 1,\n",
      "          'auction': 1,\n",
      "          'halfempty': 1,\n",
      "          'glass': 1,\n",
      "          'joking': 1,\n",
      "          'bidding': 1,\n",
      "          'immediately': 1,\n",
      "          'screamed': 1,\n",
      "          'nwith': 1,\n",
      "          'comes': 1,\n",
      "          'amount': 1,\n",
      "          'stupidity': 1,\n",
      "          'nnot': 1,\n",
      "          'flitting': 1,\n",
      "          'among': 1,\n",
      "          'takes': 1,\n",
      "          'let': 1,\n",
      "          'get': 1,\n",
      "          'know': 1,\n",
      "          'trekkie': 1,\n",
      "          'crossdresser': 1,\n",
      "          'another': 1,\n",
      "          'dresses': 1,\n",
      "          'cat': 1,\n",
      "          'entire': 1,\n",
      "          'office': 1,\n",
      "          'made': 1,\n",
      "          'look': 1,\n",
      "          'set': 1,\n",
      "          'oral': 1,\n",
      "          'hygienists': 1,\n",
      "          'receptionist': 1,\n",
      "          'wife': 1,\n",
      "          'kids': 1,\n",
      "          'wear': 1,\n",
      "          'outfits': 1,\n",
      "          'appears': 1,\n",
      "          'workers': 1,\n",
      "          'permitted': 1,\n",
      "          'take': 1,\n",
      "          'go': 1,\n",
      "          'home': 1,\n",
      "          'nfor': 1,\n",
      "          'variety': 1,\n",
      "          'change': 1,\n",
      "          'characters': 1,\n",
      "          'patients': 1,\n",
      "          'nwell': 1,\n",
      "          'complainer': 1,\n",
      "          'problem': 1,\n",
      "          'bill': 1,\n",
      "          'anyway': 1,\n",
      "          'nthere': 1,\n",
      "          'summer': 1,\n",
      "          'schools': 1,\n",
      "          'ph': 1,\n",
      "          'linguists': 1,\n",
      "          'teach': 1,\n",
      "          'language': 1,\n",
      "          'nhamlet': 1,\n",
      "          'available': 1,\n",
      "          'albeit': 1,\n",
      "          'perhaps': 1,\n",
      "          'local': 1,\n",
      "          'bookstore': 1,\n",
      "          'working': 1,\n",
      "          'translating': 1,\n",
      "          'bible': 1,\n",
      "          'sell': 1,\n",
      "          'united': 1,\n",
      "          'passports': 1,\n",
      "          'real': 1,\n",
      "          'enough': 1,\n",
      "          'used': 1,\n",
      "          'fool': 1,\n",
      "          'u': 1,\n",
      "          'bogs': 1,\n",
      "          'tries': 1,\n",
      "          'argue': 1,\n",
      "          'larger': 1,\n",
      "          'meaning': 1,\n",
      "          'diversity': 1,\n",
      "          'humanitarian': 1,\n",
      "          'concerns': 1,\n",
      "          'nsandwiched': 1,\n",
      "          'inbetween': 1,\n",
      "          'levity': 1,\n",
      "          'switch': 1,\n",
      "          'tone': 1,\n",
      "          'work': 1,\n",
      "          'incessantly': 1,\n",
      "          'upbeat': 1,\n",
      "          'ends': 1,\n",
      "          'singing': 1,\n",
      "          'elvis': 1,\n",
      "          'impersonator': 1,\n",
      "          'right': 1,\n",
      "          'ntrekkies': 1,\n",
      "          'runs': 1,\n",
      "          'breezy': 1,\n",
      "          '1': 1,\n",
      "          '26': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'brief': 1,\n",
      "          'sexual': 1,\n",
      "          'references': 1,\n",
      "          'fine': 1,\n",
      "          'ages': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'red': 9,\n",
      "          'october': 9,\n",
      "          'nthe': 8,\n",
      "          'hunt': 6,\n",
      "          'connery': 5,\n",
      "          'youre': 3,\n",
      "          'submarine': 3,\n",
      "          'sub': 3,\n",
      "          'neil': 3,\n",
      "          'love': 2,\n",
      "          'also': 2,\n",
      "          'film': 2,\n",
      "          'sean': 2,\n",
      "          'alec': 2,\n",
      "          'baldwin': 2,\n",
      "          'films': 2,\n",
      "          'die': 2,\n",
      "          'hard': 2,\n",
      "          'since': 2,\n",
      "          'best': 2,\n",
      "          'movie': 2,\n",
      "          'ramius': 2,\n",
      "          'played': 2,\n",
      "          'ryan': 2,\n",
      "          'doesnt': 2,\n",
      "          'u': 2,\n",
      "          'james': 2,\n",
      "          'plot': 2,\n",
      "          'story': 2,\n",
      "          'action': 2,\n",
      "          'type': 1,\n",
      "          'person': 1,\n",
      "          'goes': 1,\n",
      "          'ride': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'visit': 1,\n",
      "          'disneyland': 1,\n",
      "          'going': 1,\n",
      "          'nyoull': 1,\n",
      "          'enjoy': 1,\n",
      "          'cat': 1,\n",
      "          'mouse': 1,\n",
      "          'military': 1,\n",
      "          'tactics': 1,\n",
      "          'fan': 1,\n",
      "          'admired': 1,\n",
      "          'director': 1,\n",
      "          'john': 1,\n",
      "          'mctiernans': 1,\n",
      "          'earlier': 1,\n",
      "          'predator': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'people': 1,\n",
      "          'likely': 1,\n",
      "          'disappointed': 1,\n",
      "          'read': 1,\n",
      "          'book': 1,\n",
      "          'almost': 1,\n",
      "          'never': 1,\n",
      "          'live': 1,\n",
      "          'novels': 1,\n",
      "          'inspired': 1,\n",
      "          'epic': 1,\n",
      "          'thriller': 1,\n",
      "          'adapted': 1,\n",
      "          'tom': 1,\n",
      "          'clancys': 1,\n",
      "          'selling': 1,\n",
      "          'novel': 1,\n",
      "          'nset': 1,\n",
      "          'era': 1,\n",
      "          'glasnost': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'topsecret': 1,\n",
      "          'soviet': 1,\n",
      "          'called': 1,\n",
      "          'nuclear': 1,\n",
      "          'revolutionary': 1,\n",
      "          'propulsion': 1,\n",
      "          'system': 1,\n",
      "          'makes': 1,\n",
      "          'vessel': 1,\n",
      "          'silent': 1,\n",
      "          'allows': 1,\n",
      "          'escape': 1,\n",
      "          'sonar': 1,\n",
      "          'detection': 1,\n",
      "          'embarks': 1,\n",
      "          'maiden': 1,\n",
      "          'voyage': 1,\n",
      "          'command': 1,\n",
      "          'captain': 1,\n",
      "          'marko': 1,\n",
      "          'nramius': 1,\n",
      "          'strict': 1,\n",
      "          'orders': 1,\n",
      "          'test': 1,\n",
      "          'ideas': 1,\n",
      "          'nhe': 1,\n",
      "          'takes': 1,\n",
      "          'crew': 1,\n",
      "          'disappears': 1,\n",
      "          'atlantic': 1,\n",
      "          'ocean': 1,\n",
      "          'nis': 1,\n",
      "          'planning': 1,\n",
      "          'start': 1,\n",
      "          'world': 1,\n",
      "          'war': 1,\n",
      "          'iii': 1,\n",
      "          'ncia': 1,\n",
      "          'analyst': 1,\n",
      "          'jack': 1,\n",
      "          'think': 1,\n",
      "          'hes': 1,\n",
      "          'convinced': 1,\n",
      "          'plans': 1,\n",
      "          'defect': 1,\n",
      "          'given': 1,\n",
      "          'three': 1,\n",
      "          'days': 1,\n",
      "          'prove': 1,\n",
      "          'theory': 1,\n",
      "          'find': 1,\n",
      "          'missing': 1,\n",
      "          'characters': 1,\n",
      "          'paper': 1,\n",
      "          'thin': 1,\n",
      "          'performances': 1,\n",
      "          'thankfully': 1,\n",
      "          'rock': 1,\n",
      "          'solid': 1,\n",
      "          'nbaldwin': 1,\n",
      "          'anchor': 1,\n",
      "          'customary': 1,\n",
      "          'vigor': 1,\n",
      "          'nsam': 1,\n",
      "          'gives': 1,\n",
      "          'sturdy': 1,\n",
      "          'performance': 1,\n",
      "          'connerys': 1,\n",
      "          'somber': 1,\n",
      "          'first': 1,\n",
      "          'officer': 1,\n",
      "          'nits': 1,\n",
      "          'ironic': 1,\n",
      "          'see': 1,\n",
      "          'playing': 1,\n",
      "          'russians': 1,\n",
      "          'known': 1,\n",
      "          'roles': 1,\n",
      "          'british': 1,\n",
      "          'agents': 1,\n",
      "          'bond': 1,\n",
      "          'reilly': 1,\n",
      "          'ace': 1,\n",
      "          'spies': 1,\n",
      "          'large': 1,\n",
      "          'cast': 1,\n",
      "          'includes': 1,\n",
      "          'scott': 1,\n",
      "          'glenn': 1,\n",
      "          'earl': 1,\n",
      "          'jones': 1,\n",
      "          'tim': 1,\n",
      "          'curry': 1,\n",
      "          'joss': 1,\n",
      "          'ackland': 1,\n",
      "          'plus': 1,\n",
      "          'richard': 1,\n",
      "          'jordan': 1,\n",
      "          'smooth': 1,\n",
      "          'national': 1,\n",
      "          'security': 1,\n",
      "          'adviser': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'remarkable': 1,\n",
      "          'anything': 1,\n",
      "          'distinguished': 1,\n",
      "          'watertight': 1,\n",
      "          'nscreenwriters': 1,\n",
      "          'larry': 1,\n",
      "          'ferguson': 1,\n",
      "          'donald': 1,\n",
      "          'stewart': 1,\n",
      "          'gracefully': 1,\n",
      "          'navigated': 1,\n",
      "          'line': 1,\n",
      "          'full': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'nthey': 1,\n",
      "          'keep': 1,\n",
      "          'us': 1,\n",
      "          'involved': 1,\n",
      "          'unveiling': 1,\n",
      "          'strands': 1,\n",
      "          'right': 1,\n",
      "          'moment': 1,\n",
      "          'get': 1,\n",
      "          'sweaty': 1,\n",
      "          'breathless': 1,\n",
      "          'would': 1,\n",
      "          'rather': 1,\n",
      "          'tell': 1,\n",
      "          'good': 1,\n",
      "          'hit': 1,\n",
      "          'head': 1,\n",
      "          'nonstop': 1,\n",
      "          'finale': 1,\n",
      "          'rousing': 1,\n",
      "          'suspenseful': 1,\n",
      "          'essentially': 1,\n",
      "          'superior': 1,\n",
      "          'potboiler': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'titanic': 11,\n",
      "          'film': 7,\n",
      "          'ship': 5,\n",
      "          'story': 5,\n",
      "          'nthe': 5,\n",
      "          'good': 5,\n",
      "          'action': 4,\n",
      "          'movie': 4,\n",
      "          'nin': 4,\n",
      "          'zane': 4,\n",
      "          'well': 4,\n",
      "          'one': 3,\n",
      "          'would': 3,\n",
      "          'nhow': 3,\n",
      "          'could': 3,\n",
      "          'found': 3,\n",
      "          'lovett': 3,\n",
      "          'rose': 3,\n",
      "          'cal': 3,\n",
      "          'dicaprio': 3,\n",
      "          'love': 3,\n",
      "          'even': 3,\n",
      "          'winslet': 3,\n",
      "          'else': 3,\n",
      "          'way': 3,\n",
      "          'nwith': 2,\n",
      "          'budget': 2,\n",
      "          'throwing': 2,\n",
      "          'money': 2,\n",
      "          'see': 2,\n",
      "          'much': 2,\n",
      "          'many': 2,\n",
      "          'effects': 2,\n",
      "          'ive': 2,\n",
      "          'nthere': 2,\n",
      "          'made': 2,\n",
      "          'ocean': 2,\n",
      "          'james': 2,\n",
      "          'cameron': 2,\n",
      "          'tells': 2,\n",
      "          'two': 2,\n",
      "          'starts': 2,\n",
      "          'team': 2,\n",
      "          'atlantic': 2,\n",
      "          'necklace': 2,\n",
      "          'woman': 2,\n",
      "          'vessel': 2,\n",
      "          'young': 2,\n",
      "          'class': 2,\n",
      "          'ships': 2,\n",
      "          'snob': 2,\n",
      "          'expectations': 2,\n",
      "          'jack': 2,\n",
      "          'steerage': 2,\n",
      "          'performances': 2,\n",
      "          'role': 2,\n",
      "          'usually': 2,\n",
      "          'nhis': 2,\n",
      "          'character': 2,\n",
      "          'immediately': 2,\n",
      "          'makes': 2,\n",
      "          'characters': 2,\n",
      "          'fact': 2,\n",
      "          'cast': 2,\n",
      "          'something': 2,\n",
      "          'model': 2,\n",
      "          'warner': 2,\n",
      "          'unsinkable': 2,\n",
      "          'nalso': 2,\n",
      "          'passengers': 2,\n",
      "          'anyone': 2,\n",
      "          'scale': 2,\n",
      "          'beginning': 2,\n",
      "          'three': 2,\n",
      "          'pleasantly': 1,\n",
      "          'surprised': 1,\n",
      "          'topping': 1,\n",
      "          '200': 1,\n",
      "          'million': 1,\n",
      "          'quite': 1,\n",
      "          'skeptical': 1,\n",
      "          'whether': 1,\n",
      "          'toward': 1,\n",
      "          'twentieth': 1,\n",
      "          'centurys': 1,\n",
      "          'greatest': 1,\n",
      "          'tragedies': 1,\n",
      "          'make': 1,\n",
      "          'exciting': 1,\n",
      "          'enough': 1,\n",
      "          'dress': 1,\n",
      "          'sets': 1,\n",
      "          'models': 1,\n",
      "          'computer': 1,\n",
      "          'use': 1,\n",
      "          'pack': 1,\n",
      "          'sinks': 1,\n",
      "          'noh': 1,\n",
      "          'given': 1,\n",
      "          'away': 1,\n",
      "          'part': 1,\n",
      "          'plot': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'school': 1,\n",
      "          'nafter': 1,\n",
      "          'viewed': 1,\n",
      "          'however': 1,\n",
      "          'wellpaced': 1,\n",
      "          'welldesigned': 1,\n",
      "          'overall': 1,\n",
      "          'wellmade': 1,\n",
      "          'films': 1,\n",
      "          'maiden': 1,\n",
      "          'final': 1,\n",
      "          'voyage': 1,\n",
      "          'liner': 1,\n",
      "          'latest': 1,\n",
      "          'offering': 1,\n",
      "          'director': 1,\n",
      "          'best': 1,\n",
      "          'seen': 1,\n",
      "          'ntitanic': 1,\n",
      "          'time': 1,\n",
      "          'periods': 1,\n",
      "          'nit': 1,\n",
      "          'present': 1,\n",
      "          'explorer': 1,\n",
      "          'brock': 1,\n",
      "          'bill': 1,\n",
      "          'paxton': 1,\n",
      "          'exploring': 1,\n",
      "          'wreckage': 1,\n",
      "          'floor': 1,\n",
      "          'searching': 1,\n",
      "          'priceless': 1,\n",
      "          'diamond': 1,\n",
      "          'supposedly': 1,\n",
      "          'went': 1,\n",
      "          'nwhat': 1,\n",
      "          'find': 1,\n",
      "          'instead': 1,\n",
      "          'drawing': 1,\n",
      "          'wearing': 1,\n",
      "          'broadcast': 1,\n",
      "          'news': 1,\n",
      "          'picture': 1,\n",
      "          'recognizes': 1,\n",
      "          'phones': 1,\n",
      "          'flown': 1,\n",
      "          'exploration': 1,\n",
      "          'high': 1,\n",
      "          'seas': 1,\n",
      "          '1912': 1,\n",
      "          'dewitt': 1,\n",
      "          'bukater': 1,\n",
      "          'kate': 1,\n",
      "          'winslett': 1,\n",
      "          'lady': 1,\n",
      "          'belonging': 1,\n",
      "          'societys': 1,\n",
      "          'upper': 1,\n",
      "          'boards': 1,\n",
      "          'first': 1,\n",
      "          'crossing': 1,\n",
      "          'southampton': 1,\n",
      "          'england': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'nshe': 1,\n",
      "          'engaged': 1,\n",
      "          'hockley': 1,\n",
      "          'billy': 1,\n",
      "          'heir': 1,\n",
      "          'old': 1,\n",
      "          'every': 1,\n",
      "          'sense': 1,\n",
      "          'word': 1,\n",
      "          'non': 1,\n",
      "          'board': 1,\n",
      "          'feels': 1,\n",
      "          'stifling': 1,\n",
      "          'trappings': 1,\n",
      "          'highsocietys': 1,\n",
      "          'resolves': 1,\n",
      "          'escape': 1,\n",
      "          'titanics': 1,\n",
      "          'stern': 1,\n",
      "          'saved': 1,\n",
      "          'selfproclaimed': 1,\n",
      "          'fate': 1,\n",
      "          'dawson': 1,\n",
      "          'leonardo': 1,\n",
      "          'passenger': 1,\n",
      "          'thirdclass': 1,\n",
      "          'referred': 1,\n",
      "          'talks': 1,\n",
      "          'jumping': 1,\n",
      "          'nalthough': 1,\n",
      "          'attraction': 1,\n",
      "          'immediate': 1,\n",
      "          'affair': 1,\n",
      "          'soon': 1,\n",
      "          'develops': 1,\n",
      "          'endangers': 1,\n",
      "          'roses': 1,\n",
      "          'social': 1,\n",
      "          'standing': 1,\n",
      "          'engagement': 1,\n",
      "          'jealous': 1,\n",
      "          'sounds': 1,\n",
      "          'simple': 1,\n",
      "          'perhaps': 1,\n",
      "          'unexciting': 1,\n",
      "          'solid': 1,\n",
      "          'leads': 1,\n",
      "          'direction': 1,\n",
      "          'comes': 1,\n",
      "          'ndicaprio': 1,\n",
      "          'marvelous': 1,\n",
      "          'worldlywise': 1,\n",
      "          'playing': 1,\n",
      "          'confidence': 1,\n",
      "          'older': 1,\n",
      "          'actors': 1,\n",
      "          'likable': 1,\n",
      "          'knows': 1,\n",
      "          'wants': 1,\n",
      "          'life': 1,\n",
      "          'charmingly': 1,\n",
      "          'able': 1,\n",
      "          'handle': 1,\n",
      "          'variety': 1,\n",
      "          'situations': 1,\n",
      "          'ngirls': 1,\n",
      "          'going': 1,\n",
      "          'swoon': 1,\n",
      "          'nwinslet': 1,\n",
      "          'also': 1,\n",
      "          'proves': 1,\n",
      "          'actress': 1,\n",
      "          'delivering': 1,\n",
      "          'lines': 1,\n",
      "          'convincingly': 1,\n",
      "          'quality': 1,\n",
      "          'relationship': 1,\n",
      "          'believable': 1,\n",
      "          'problem': 1,\n",
      "          'carry': 1,\n",
      "          'accordance': 1,\n",
      "          'upbringing': 1,\n",
      "          'nsimply': 1,\n",
      "          'judgment': 1,\n",
      "          'gait': 1,\n",
      "          'distracted': 1,\n",
      "          'supposed': 1,\n",
      "          'uppercrust': 1,\n",
      "          'debutante': 1,\n",
      "          'nrather': 1,\n",
      "          'demonstrate': 1,\n",
      "          'poise': 1,\n",
      "          'expect': 1,\n",
      "          'possess': 1,\n",
      "          'sometimes': 1,\n",
      "          'looks': 1,\n",
      "          'positively': 1,\n",
      "          'clumsy': 1,\n",
      "          'unfortunately': 1,\n",
      "          'detracts': 1,\n",
      "          'otherwise': 1,\n",
      "          'great': 1,\n",
      "          'acting': 1,\n",
      "          'nbilly': 1,\n",
      "          'aristocratic': 1,\n",
      "          'since': 1,\n",
      "          'certain': 1,\n",
      "          'look': 1,\n",
      "          'want': 1,\n",
      "          'hate': 1,\n",
      "          'features': 1,\n",
      "          'smiles': 1,\n",
      "          'theres': 1,\n",
      "          'mistrustful': 1,\n",
      "          'scowls': 1,\n",
      "          'evil': 1,\n",
      "          'incarnate': 1,\n",
      "          'nhes': 1,\n",
      "          'like': 1,\n",
      "          'porcelain': 1,\n",
      "          'version': 1,\n",
      "          'peter': 1,\n",
      "          'gallagher': 1,\n",
      "          'cheaper': 1,\n",
      "          'nlike': 1,\n",
      "          'slips': 1,\n",
      "          'comfortably': 1,\n",
      "          'plays': 1,\n",
      "          'nbacking': 1,\n",
      "          'david': 1,\n",
      "          'lovejoy': 1,\n",
      "          'cals': 1,\n",
      "          'personal': 1,\n",
      "          'assistant': 1,\n",
      "          'man': 1,\n",
      "          'said': 1,\n",
      "          'turn': 1,\n",
      "          'century': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'always': 1,\n",
      "          'count': 1,\n",
      "          'performance': 1,\n",
      "          'seems': 1,\n",
      "          'play': 1,\n",
      "          'distinguished': 1,\n",
      "          'gentleman': 1,\n",
      "          'gaze': 1,\n",
      "          'steel': 1,\n",
      "          'match': 1,\n",
      "          'nadditionally': 1,\n",
      "          'number': 1,\n",
      "          'smaller': 1,\n",
      "          'fictional': 1,\n",
      "          'nonfictional': 1,\n",
      "          'roles': 1,\n",
      "          'thrown': 1,\n",
      "          'color': 1,\n",
      "          'kathy': 1,\n",
      "          'bates': 1,\n",
      "          'molly': 1,\n",
      "          'brown': 1,\n",
      "          'danny': 1,\n",
      "          'nucci': 1,\n",
      "          'jacks': 1,\n",
      "          'friend': 1,\n",
      "          'fabrizio': 1,\n",
      "          'de': 1,\n",
      "          'rossi': 1,\n",
      "          'eric': 1,\n",
      "          'braeden': 1,\n",
      "          'john': 1,\n",
      "          'jacob': 1,\n",
      "          'astor': 1,\n",
      "          'bernard': 1,\n",
      "          'fox': 1,\n",
      "          'colonel': 1,\n",
      "          'archibald': 1,\n",
      "          'gracie': 1,\n",
      "          'nnice': 1,\n",
      "          'dr': 1,\n",
      "          'bombay': 1,\n",
      "          'getting': 1,\n",
      "          'work': 1,\n",
      "          'scattered': 1,\n",
      "          'basically': 1,\n",
      "          'feel': 1,\n",
      "          'sorry': 1,\n",
      "          'die': 1,\n",
      "          'nthis': 1,\n",
      "          'may': 1,\n",
      "          'largely': 1,\n",
      "          'compulsory': 1,\n",
      "          'transcends': 1,\n",
      "          'status': 1,\n",
      "          'putting': 1,\n",
      "          'direct': 1,\n",
      "          'conflict': 1,\n",
      "          'crewmembers': 1,\n",
      "          'strive': 1,\n",
      "          'maintain': 1,\n",
      "          'order': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'assure': 1,\n",
      "          'firstclass': 1,\n",
      "          'placed': 1,\n",
      "          'aboard': 1,\n",
      "          'lifeboats': 1,\n",
      "          'possesses': 1,\n",
      "          'depth': 1,\n",
      "          'pictures': 1,\n",
      "          'nyou': 1,\n",
      "          'dont': 1,\n",
      "          'get': 1,\n",
      "          'tragedy': 1,\n",
      "          'backdrop': 1,\n",
      "          'real': 1,\n",
      "          'account': 1,\n",
      "          'struggle': 1,\n",
      "          'nas': 1,\n",
      "          'mentioned': 1,\n",
      "          'tremendous': 1,\n",
      "          'certainly': 1,\n",
      "          'showed': 1,\n",
      "          'set': 1,\n",
      "          'dressing': 1,\n",
      "          'special': 1,\n",
      "          'interiors': 1,\n",
      "          'nearly': 1,\n",
      "          'breathtaking': 1,\n",
      "          'elaborate': 1,\n",
      "          'trimmings': 1,\n",
      "          'intricate': 1,\n",
      "          'detail': 1,\n",
      "          'little': 1,\n",
      "          'doubt': 1,\n",
      "          'layouts': 1,\n",
      "          'authentic': 1,\n",
      "          'regard': 1,\n",
      "          'exteriors': 1,\n",
      "          'dare': 1,\n",
      "          'point': 1,\n",
      "          'recreated': 1,\n",
      "          'meticulousness': 1,\n",
      "          'ncameron': 1,\n",
      "          'actually': 1,\n",
      "          'built': 1,\n",
      "          'water': 1,\n",
      "          'tank': 1,\n",
      "          'room': 1,\n",
      "          '90': 1,\n",
      "          'therefore': 1,\n",
      "          'computergenerate': 1,\n",
      "          'remaining': 1,\n",
      "          '40': 1,\n",
      "          'feet': 1,\n",
      "          'ncouldve': 1,\n",
      "          'fooled': 1,\n",
      "          'everyone': 1,\n",
      "          'theater': 1,\n",
      "          'splicing': 1,\n",
      "          'seamless': 1,\n",
      "          'note': 1,\n",
      "          'audience': 1,\n",
      "          'presented': 1,\n",
      "          'anatomy': 1,\n",
      "          'disaster': 1,\n",
      "          'right': 1,\n",
      "          'nwe': 1,\n",
      "          'told': 1,\n",
      "          'iceberg': 1,\n",
      "          'struck': 1,\n",
      "          'flooding': 1,\n",
      "          'occurred': 1,\n",
      "          'sank': 1,\n",
      "          'manner': 1,\n",
      "          'nthese': 1,\n",
      "          'technical': 1,\n",
      "          'details': 1,\n",
      "          'serve': 1,\n",
      "          'guide': 1,\n",
      "          'later': 1,\n",
      "          'happening': 1,\n",
      "          'allow': 1,\n",
      "          'us': 1,\n",
      "          'view': 1,\n",
      "          'sinking': 1,\n",
      "          'informed': 1,\n",
      "          'analytic': 1,\n",
      "          'detraction': 1,\n",
      "          'addition': 1,\n",
      "          'conventional': 1,\n",
      "          'placement': 1,\n",
      "          'midst': 1,\n",
      "          'mayhem': 1,\n",
      "          'confusion': 1,\n",
      "          'camerons': 1,\n",
      "          'blend': 1,\n",
      "          'history': 1,\n",
      "          'runs': 1,\n",
      "          'longer': 1,\n",
      "          'hours': 1,\n",
      "          'almost': 1,\n",
      "          'unnoticed': 1,\n",
      "          'viewers': 1,\n",
      "          'attention': 1,\n",
      "          'held': 1,\n",
      "          'alternately': 1,\n",
      "          'main': 1,\n",
      "          'elements': 1,\n",
      "          'movies': 1,\n",
      "          'intriguing': 1,\n",
      "          'satisfactory': 1,\n",
      "          'ending': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'receipts': 1,\n",
      "          'undoubtedly': 1,\n",
      "          'live': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 7,\n",
      "          'kimble': 7,\n",
      "          'man': 6,\n",
      "          'fugitive': 5,\n",
      "          'jones': 5,\n",
      "          'gerard': 5,\n",
      "          'one': 4,\n",
      "          'go': 4,\n",
      "          'ford': 4,\n",
      "          'nits': 4,\n",
      "          'kimbles': 4,\n",
      "          'job': 4,\n",
      "          'action': 3,\n",
      "          'never': 3,\n",
      "          'lee': 3,\n",
      "          'always': 3,\n",
      "          'easy': 2,\n",
      "          'fear': 2,\n",
      "          'direction': 2,\n",
      "          'could': 2,\n",
      "          'genre': 2,\n",
      "          'davis': 2,\n",
      "          'tommy': 2,\n",
      "          'harrison': 2,\n",
      "          'wife': 2,\n",
      "          'escape': 2,\n",
      "          'finds': 2,\n",
      "          'run': 2,\n",
      "          'find': 2,\n",
      "          'script': 2,\n",
      "          'nin': 2,\n",
      "          'intelligence': 2,\n",
      "          'sequence': 2,\n",
      "          'way': 2,\n",
      "          'tells': 2,\n",
      "          'know': 2,\n",
      "          'exactly': 2,\n",
      "          'recognized': 2,\n",
      "          'likely': 2,\n",
      "          'two': 2,\n",
      "          'leads': 2,\n",
      "          'nfor': 2,\n",
      "          'turn': 2,\n",
      "          'nthis': 2,\n",
      "          'actor': 2,\n",
      "          'nhowever': 2,\n",
      "          'worst': 1,\n",
      "          'nbegin': 1,\n",
      "          'classic': 1,\n",
      "          '1960s': 1,\n",
      "          'television': 1,\n",
      "          'series': 1,\n",
      "          'add': 1,\n",
      "          'big': 1,\n",
      "          'budget': 1,\n",
      "          'alist': 1,\n",
      "          'star': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'stir': 1,\n",
      "          'nscript': 1,\n",
      "          'ask': 1,\n",
      "          'nwho': 1,\n",
      "          'needs': 1,\n",
      "          'kid': 1,\n",
      "          'nweve': 1,\n",
      "          'got': 1,\n",
      "          'formula': 1,\n",
      "          'nthat': 1,\n",
      "          'bloated': 1,\n",
      "          'monster': 1,\n",
      "          'without': 1,\n",
      "          'sense': 1,\n",
      "          'nthen': 1,\n",
      "          'much': 1,\n",
      "          'amazement': 1,\n",
      "          'everything': 1,\n",
      "          'possibly': 1,\n",
      "          'wrong': 1,\n",
      "          'ndidnt': 1,\n",
      "          'lean': 1,\n",
      "          'taut': 1,\n",
      "          'tense': 1,\n",
      "          'anything': 1,\n",
      "          'produced': 1,\n",
      "          'last': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'nunder': 1,\n",
      "          'andrew': 1,\n",
      "          '1992s': 1,\n",
      "          'siege': 1,\n",
      "          'grips': 1,\n",
      "          'throat': 1,\n",
      "          'outset': 1,\n",
      "          'lets': 1,\n",
      "          'nexpect': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'roof': 1,\n",
      "          'deservedly': 1,\n",
      "          'expect': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'nomination': 1,\n",
      "          'premise': 1,\n",
      "          'simple': 1,\n",
      "          'ndr': 1,\n",
      "          'richard': 1,\n",
      "          'wrongly': 1,\n",
      "          'convicted': 1,\n",
      "          'murder': 1,\n",
      "          'struggling': 1,\n",
      "          'real': 1,\n",
      "          'killer': 1,\n",
      "          'artificial': 1,\n",
      "          'arm': 1,\n",
      "          'nafter': 1,\n",
      "          'attempt': 1,\n",
      "          'prisoners': 1,\n",
      "          'transfer': 1,\n",
      "          'goes': 1,\n",
      "          'awry': 1,\n",
      "          'nhis': 1,\n",
      "          'goal': 1,\n",
      "          'onearmed': 1,\n",
      "          'andreas': 1,\n",
      "          'katsulas': 1,\n",
      "          'u': 1,\n",
      "          'marshall': 1,\n",
      "          'sam': 1,\n",
      "          'nwhere': 1,\n",
      "          'surprises': 1,\n",
      "          'jeb': 1,\n",
      "          'stuart': 1,\n",
      "          'david': 1,\n",
      "          'twohy': 1,\n",
      "          'almost': 1,\n",
      "          'asked': 1,\n",
      "          'allow': 1,\n",
      "          'leaps': 1,\n",
      "          'logic': 1,\n",
      "          'repeatedly': 1,\n",
      "          'astonished': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'respect': 1,\n",
      "          'audience': 1,\n",
      "          'early': 1,\n",
      "          'sneaks': 1,\n",
      "          'hospital': 1,\n",
      "          'shave': 1,\n",
      "          'beard': 1,\n",
      "          'slick': 1,\n",
      "          'back': 1,\n",
      "          'hair': 1,\n",
      "          'change': 1,\n",
      "          'lab': 1,\n",
      "          'coat': 1,\n",
      "          'non': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'jokingly': 1,\n",
      "          'doesnt': 1,\n",
      "          'zip': 1,\n",
      "          'pants': 1,\n",
      "          'small': 1,\n",
      "          'moment': 1,\n",
      "          'punches': 1,\n",
      "          'home': 1,\n",
      "          'urgency': 1,\n",
      "          'situation': 1,\n",
      "          'concerned': 1,\n",
      "          'might': 1,\n",
      "          'easily': 1,\n",
      "          'forget': 1,\n",
      "          'nlater': 1,\n",
      "          'trying': 1,\n",
      "          'lose': 1,\n",
      "          'parade': 1,\n",
      "          'thinks': 1,\n",
      "          'drop': 1,\n",
      "          'overcoat': 1,\n",
      "          'hed': 1,\n",
      "          'behind': 1,\n",
      "          'details': 1,\n",
      "          'convince': 1,\n",
      "          'us': 1,\n",
      "          'colleague': 1,\n",
      "          'hes': 1,\n",
      "          'smart': 1,\n",
      "          'caught': 1,\n",
      "          'may': 1,\n",
      "          'right': 1,\n",
      "          'ncredit': 1,\n",
      "          'must': 1,\n",
      "          'also': 1,\n",
      "          'given': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'stunt': 1,\n",
      "          'coordinators': 1,\n",
      "          'bus': 1,\n",
      "          'crash': 1,\n",
      "          'allows': 1,\n",
      "          'spectacular': 1,\n",
      "          'leap': 1,\n",
      "          'dam': 1,\n",
      "          'water': 1,\n",
      "          'crisp': 1,\n",
      "          'brutal': 1,\n",
      "          'romanticized': 1,\n",
      "          'nspecial': 1,\n",
      "          'kudos': 1,\n",
      "          'director': 1,\n",
      "          'maintaining': 1,\n",
      "          'relentless': 1,\n",
      "          'pace': 1,\n",
      "          'underscores': 1,\n",
      "          'singlemindedness': 1,\n",
      "          'nand': 1,\n",
      "          'pair': 1,\n",
      "          'performances': 1,\n",
      "          'ntommy': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'brilliant': 1,\n",
      "          'manages': 1,\n",
      "          'incredibly': 1,\n",
      "          'challenging': 1,\n",
      "          'feat': 1,\n",
      "          'first': 1,\n",
      "          'third': 1,\n",
      "          'film': 1,\n",
      "          'really': 1,\n",
      "          'villain': 1,\n",
      "          'per': 1,\n",
      "          'se': 1,\n",
      "          'nit': 1,\n",
      "          'would': 1,\n",
      "          'malevolent': 1,\n",
      "          'vindictive': 1,\n",
      "          'inspector': 1,\n",
      "          'javert': 1,\n",
      "          'happens': 1,\n",
      "          'ninstead': 1,\n",
      "          'plays': 1,\n",
      "          'sharp': 1,\n",
      "          'committed': 1,\n",
      "          'whos': 1,\n",
      "          'responds': 1,\n",
      "          'comment': 1,\n",
      "          'didnt': 1,\n",
      "          'kill': 1,\n",
      "          'matteroffact': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'means': 1,\n",
      "          'determine': 1,\n",
      "          'guilt': 1,\n",
      "          'innocence': 1,\n",
      "          'bring': 1,\n",
      "          'well': 1,\n",
      "          'written': 1,\n",
      "          'character': 1,\n",
      "          'played': 1,\n",
      "          'relish': 1,\n",
      "          'top': 1,\n",
      "          'form': 1,\n",
      "          'unfortunate': 1,\n",
      "          'thing': 1,\n",
      "          'stunning': 1,\n",
      "          'overshadow': 1,\n",
      "          'thats': 1,\n",
      "          'shame': 1,\n",
      "          'entire': 1,\n",
      "          'career': 1,\n",
      "          'underappreciated': 1,\n",
      "          'due': 1,\n",
      "          'pigeonholing': 1,\n",
      "          'hero': 1,\n",
      "          'fine': 1,\n",
      "          'less': 1,\n",
      "          'flashy': 1,\n",
      "          'part': 1,\n",
      "          'keeping': 1,\n",
      "          'forefront': 1,\n",
      "          'advantage': 1,\n",
      "          'work': 1,\n",
      "          'fullest': 1,\n",
      "          'protagonists': 1,\n",
      "          'seemed': 1,\n",
      "          'equal': 1,\n",
      "          'footing': 1,\n",
      "          'task': 1,\n",
      "          'summer': 1,\n",
      "          'loaded': 1,\n",
      "          'actionsuspense': 1,\n",
      "          'films': 1,\n",
      "          'brisk': 1,\n",
      "          'business': 1,\n",
      "          'time': 1,\n",
      "          'clint': 1,\n",
      "          'sean': 1,\n",
      "          'various': 1,\n",
      "          'dinosaurs': 1,\n",
      "          'step': 1,\n",
      "          'aside': 1,\n",
      "          'chase': 1,\n",
      "          'nmy': 1,\n",
      "          'advice': 1,\n",
      "          'catch': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'pollocks': 8,\n",
      "          'harris': 7,\n",
      "          'pollock': 6,\n",
      "          'n': 6,\n",
      "          '_pollock_': 6,\n",
      "          'ed': 3,\n",
      "          'film': 3,\n",
      "          'love': 3,\n",
      "          'like': 3,\n",
      "          'art': 3,\n",
      "          'krasner': 3,\n",
      "          'killing': 3,\n",
      "          'marcia': 2,\n",
      "          'gay': 2,\n",
      "          'harden': 2,\n",
      "          'jennifer': 2,\n",
      "          'connelly': 2,\n",
      "          'jackson': 2,\n",
      "          'movie': 2,\n",
      "          'know': 2,\n",
      "          'making': 2,\n",
      "          'njackson': 2,\n",
      "          'famous': 2,\n",
      "          'thing': 2,\n",
      "          'nthe': 2,\n",
      "          'actor': 2,\n",
      "          'director': 2,\n",
      "          'artist': 2,\n",
      "          'na': 2,\n",
      "          'paint': 2,\n",
      "          'leaves': 2,\n",
      "          'marrying': 2,\n",
      "          'would': 2,\n",
      "          'wife': 2,\n",
      "          'one': 2,\n",
      "          'nyou': 2,\n",
      "          'namuth': 2,\n",
      "          'starring': 1,\n",
      "          'tom': 1,\n",
      "          'bower': 1,\n",
      "          'screenplay': 1,\n",
      "          'barbara': 1,\n",
      "          'turner': 1,\n",
      "          'susan': 1,\n",
      "          'j': 1,\n",
      "          'emshwiller': 1,\n",
      "          'based': 1,\n",
      "          'book': 1,\n",
      "          'american': 1,\n",
      "          'saga': 1,\n",
      "          'steven': 1,\n",
      "          'naifeh': 1,\n",
      "          'gregory': 1,\n",
      "          'white': 1,\n",
      "          'smith': 1,\n",
      "          'directed': 1,\n",
      "          'dvd': 1,\n",
      "          'books': 1,\n",
      "          'reviews': 1,\n",
      "          'plus': 1,\n",
      "          'annual': 1,\n",
      "          'coverage': 1,\n",
      "          'toronto': 1,\n",
      "          'international': 1,\n",
      "          'festival': 1,\n",
      "          'visit': 1,\n",
      "          '_film': 1,\n",
      "          'freak': 1,\n",
      "          'central_': 1,\n",
      "          'http': 1,\n",
      "          'filmfreakcentral': 1,\n",
      "          'net': 1,\n",
      "          'search': 1,\n",
      "          'engine': 1,\n",
      "          'youre': 1,\n",
      "          'finished': 1,\n",
      "          'life': 1,\n",
      "          'magazine': 1,\n",
      "          'reporter': 1,\n",
      "          'recognizing': 1,\n",
      "          'youve': 1,\n",
      "          'completed': 1,\n",
      "          'painting': 1,\n",
      "          'quote': 1,\n",
      "          'practically': 1,\n",
      "          'breath': 1,\n",
      "          'said': 1,\n",
      "          'constructive': 1,\n",
      "          'looking': 1,\n",
      "          'bed': 1,\n",
      "          'flowerstear': 1,\n",
      "          'hair': 1,\n",
      "          'means': 1,\n",
      "          'nit': 1,\n",
      "          'took': 1,\n",
      "          'sixteen': 1,\n",
      "          'words': 1,\n",
      "          'whole': 1,\n",
      "          'dissertations': 1,\n",
      "          'tried': 1,\n",
      "          'failed': 1,\n",
      "          'equate': 1,\n",
      "          'god': 1,\n",
      "          'abstract': 1,\n",
      "          'offer': 1,\n",
      "          'kind': 1,\n",
      "          'backhanded': 1,\n",
      "          'comfort': 1,\n",
      "          'confused': 1,\n",
      "          'point': 1,\n",
      "          'resentment': 1,\n",
      "          'concept': 1,\n",
      "          'biopic': 1,\n",
      "          'directorial': 1,\n",
      "          'debut': 1,\n",
      "          'reflects': 1,\n",
      "          'second': 1,\n",
      "          'soundbite': 1,\n",
      "          'accepts': 1,\n",
      "          'creations': 1,\n",
      "          'part': 1,\n",
      "          'order': 1,\n",
      "          'things': 1,\n",
      "          'similarly': 1,\n",
      "          'disarm': 1,\n",
      "          'haters': 1,\n",
      "          'fine': 1,\n",
      "          'narguably': 1,\n",
      "          'living': 1,\n",
      "          'also': 1,\n",
      "          'plays': 1,\n",
      "          'embodies': 1,\n",
      "          'archetypal': 1,\n",
      "          'working': 1,\n",
      "          'stiff': 1,\n",
      "          'bluecollar': 1,\n",
      "          'demystification': 1,\n",
      "          'labourintensive': 1,\n",
      "          'performer': 1,\n",
      "          'makes': 1,\n",
      "          'unpretentious': 1,\n",
      "          'cinema': 1,\n",
      "          'born': 1,\n",
      "          'gifted': 1,\n",
      "          'lucky': 1,\n",
      "          'instead': 1,\n",
      "          'strong': 1,\n",
      "          'work': 1,\n",
      "          'ethic': 1,\n",
      "          'seed': 1,\n",
      "          'success': 1,\n",
      "          'ngranted': 1,\n",
      "          'possible': 1,\n",
      "          'alienate': 1,\n",
      "          'viewers': 1,\n",
      "          'perplexed': 1,\n",
      "          'imponderable': 1,\n",
      "          'purpose': 1,\n",
      "          'splatter': 1,\n",
      "          'series': 1,\n",
      "          'common': 1,\n",
      "          'thread': 1,\n",
      "          'lack': 1,\n",
      "          'editorializing': 1,\n",
      "          'purposeful': 1,\n",
      "          'gazes': 1,\n",
      "          'silent': 1,\n",
      "          'exchanges': 1,\n",
      "          'dotted': 1,\n",
      "          'tantrums': 1,\n",
      "          'motivations': 1,\n",
      "          'left': 1,\n",
      "          'perceptions': 1,\n",
      "          'nand': 1,\n",
      "          'sympathetic': 1,\n",
      "          'yet': 1,\n",
      "          'altogether': 1,\n",
      "          'forgiving': 1,\n",
      "          'illustrated': 1,\n",
      "          'disheartening': 1,\n",
      "          'conclusion': 1,\n",
      "          'n_pollock_': 1,\n",
      "          'encapsulates': 1,\n",
      "          'period': 1,\n",
      "          'fought': 1,\n",
      "          'losing': 1,\n",
      "          'battle': 1,\n",
      "          'personal': 1,\n",
      "          'demons': 1,\n",
      "          'alcoholism': 1,\n",
      "          'depression': 1,\n",
      "          'general': 1,\n",
      "          'attendant': 1,\n",
      "          'miseries': 1,\n",
      "          'finding': 1,\n",
      "          'place': 1,\n",
      "          'subconscious': 1,\n",
      "          'expression': 1,\n",
      "          'brief': 1,\n",
      "          'introduction': 1,\n",
      "          'raging': 1,\n",
      "          'drunk': 1,\n",
      "          'side': 1,\n",
      "          'segues': 1,\n",
      "          'getting': 1,\n",
      "          'accosted': 1,\n",
      "          'fellow': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'lee': 1,\n",
      "          'awarded': 1,\n",
      "          'best': 1,\n",
      "          'supporting': 1,\n",
      "          'actress': 1,\n",
      "          'oscar': 1,\n",
      "          'brilliant': 1,\n",
      "          'portrayal': 1,\n",
      "          'works': 1,\n",
      "          'outsidein': 1,\n",
      "          'preintellectualizing': 1,\n",
      "          'every': 1,\n",
      "          'stroke': 1,\n",
      "          'brush': 1,\n",
      "          'nin': 1,\n",
      "          'scene': 1,\n",
      "          'moved': 1,\n",
      "          'together': 1,\n",
      "          'established': 1,\n",
      "          'adjoining': 1,\n",
      "          'studios': 1,\n",
      "          'asks': 1,\n",
      "          'hopes': 1,\n",
      "          'achieve': 1,\n",
      "          'latest': 1,\n",
      "          'canvas': 1,\n",
      "          'grilling': 1,\n",
      "          'interplay': 1,\n",
      "          'cubism': 1,\n",
      "          'surrealism': 1,\n",
      "          'says': 1,\n",
      "          'fucking': 1,\n",
      "          'huff': 1,\n",
      "          'nby': 1,\n",
      "          'time': 1,\n",
      "          'wed': 1,\n",
      "          'become': 1,\n",
      "          'de': 1,\n",
      "          'facto': 1,\n",
      "          'manager': 1,\n",
      "          'form': 1,\n",
      "          'function': 1,\n",
      "          'chaos': 1,\n",
      "          'discipline': 1,\n",
      "          'harmonious': 1,\n",
      "          'collision': 1,\n",
      "          'denies': 1,\n",
      "          'baby': 1,\n",
      "          'indicating': 1,\n",
      "          'upset': 1,\n",
      "          'balance': 1,\n",
      "          'nsuch': 1,\n",
      "          'union': 1,\n",
      "          'destined': 1,\n",
      "          'implode': 1,\n",
      "          'hope': 1,\n",
      "          'im': 1,\n",
      "          'ruining': 1,\n",
      "          'experience': 1,\n",
      "          'saying': 1,\n",
      "          'nwhile': 1,\n",
      "          'never': 1,\n",
      "          'depicted': 1,\n",
      "          'romantic': 1,\n",
      "          'matrimony': 1,\n",
      "          'startpollock': 1,\n",
      "          'channel': 1,\n",
      "          'passions': 1,\n",
      "          'elsewheretheir': 1,\n",
      "          'symbiosis': 1,\n",
      "          'picked': 1,\n",
      "          'dry': 1,\n",
      "          'several': 1,\n",
      "          'years': 1,\n",
      "          'comes': 1,\n",
      "          'suffering': 1,\n",
      "          'conniptions': 1,\n",
      "          'many': 1,\n",
      "          'aside': 1,\n",
      "          'amy': 1,\n",
      "          'madigan': 1,\n",
      "          'unrecognizable': 1,\n",
      "          'exceptional': 1,\n",
      "          'gallery': 1,\n",
      "          'diva': 1,\n",
      "          'peggy': 1,\n",
      "          'guggenheim': 1,\n",
      "          'npollock': 1,\n",
      "          'moves': 1,\n",
      "          'dalliances': 1,\n",
      "          'younger': 1,\n",
      "          'women': 1,\n",
      "          'ruth': 1,\n",
      "          'klingman': 1,\n",
      "          'scorching': 1,\n",
      "          'hoping': 1,\n",
      "          'supposes': 1,\n",
      "          'catch': 1,\n",
      "          'revitalizing': 1,\n",
      "          'whiff': 1,\n",
      "          'youth': 1,\n",
      "          'ni': 1,\n",
      "          'stuff': 1,\n",
      "          'enamoured': 1,\n",
      "          'well': 1,\n",
      "          'nits': 1,\n",
      "          'scrappy': 1,\n",
      "          'observant': 1,\n",
      "          'coincidence': 1,\n",
      "          'minor': 1,\n",
      "          'failings': 1,\n",
      "          'occasional': 1,\n",
      "          'invasive': 1,\n",
      "          'flourish': 1,\n",
      "          'jeff': 1,\n",
      "          'beals': 1,\n",
      "          'hummable': 1,\n",
      "          'less': 1,\n",
      "          'lamentable': 1,\n",
      "          'scorei': 1,\n",
      "          'cant': 1,\n",
      "          'imagine': 1,\n",
      "          'anyone': 1,\n",
      "          'music': 1,\n",
      "          'puts': 1,\n",
      "          'filling': 1,\n",
      "          'soundtrack': 1,\n",
      "          'voids': 1,\n",
      "          'ahead': 1,\n",
      "          'complementing': 1,\n",
      "          'images': 1,\n",
      "          'none': 1,\n",
      "          'favourite': 1,\n",
      "          'sequences': 1,\n",
      "          'eerily': 1,\n",
      "          'quiet': 1,\n",
      "          'reenactment': 1,\n",
      "          'hans': 1,\n",
      "          'shooting': 1,\n",
      "          'footage': 1,\n",
      "          'east': 1,\n",
      "          'hampton': 1,\n",
      "          'long': 1,\n",
      "          'island': 1,\n",
      "          'mounting': 1,\n",
      "          'tension': 1,\n",
      "          'almost': 1,\n",
      "          'comic': 1,\n",
      "          'keeps': 1,\n",
      "          'interrupting': 1,\n",
      "          'process': 1,\n",
      "          'reload': 1,\n",
      "          'camera': 1,\n",
      "          'take': 1,\n",
      "          'dinner': 1,\n",
      "          'break': 1,\n",
      "          'seasoned': 1,\n",
      "          'mightve': 1,\n",
      "          'arrogant': 1,\n",
      "          'admit': 1,\n",
      "          'artists': 1,\n",
      "          'mediums': 1,\n",
      "          'created': 1,\n",
      "          'equal': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'tarzan': 10,\n",
      "          'disney': 4,\n",
      "          'film': 4,\n",
      "          'animation': 4,\n",
      "          'nthe': 4,\n",
      "          'big': 4,\n",
      "          'like': 3,\n",
      "          'nothing': 3,\n",
      "          'find': 3,\n",
      "          'gorilla': 3,\n",
      "          'nas': 3,\n",
      "          'classic': 2,\n",
      "          'along': 2,\n",
      "          'years': 2,\n",
      "          'hercules': 2,\n",
      "          'nbut': 2,\n",
      "          'rice': 2,\n",
      "          'burroughs': 2,\n",
      "          'new': 2,\n",
      "          'family': 2,\n",
      "          'tarzans': 2,\n",
      "          'forced': 2,\n",
      "          'voiced': 2,\n",
      "          'effective': 2,\n",
      "          'close': 2,\n",
      "          'mother': 2,\n",
      "          'pack': 2,\n",
      "          'raised': 2,\n",
      "          'one': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'characters': 2,\n",
      "          'quite': 2,\n",
      "          'guy': 2,\n",
      "          'game': 2,\n",
      "          'clayton': 2,\n",
      "          'brian': 2,\n",
      "          'blessed': 2,\n",
      "          'whos': 2,\n",
      "          'jane': 2,\n",
      "          'character': 2,\n",
      "          'also': 2,\n",
      "          'nthere': 2,\n",
      "          'presence': 2,\n",
      "          'much': 2,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'since': 1,\n",
      "          'walt': 1,\n",
      "          'delivered': 1,\n",
      "          'us': 1,\n",
      "          'lines': 1,\n",
      "          'little': 1,\n",
      "          'mermaid': 1,\n",
      "          'beauty': 1,\n",
      "          'beast': 1,\n",
      "          'nsure': 1,\n",
      "          'delightful': 1,\n",
      "          'outings': 1,\n",
      "          'last': 1,\n",
      "          'entirely': 1,\n",
      "          'groundbreaking': 1,\n",
      "          'nwith': 1,\n",
      "          'release': 1,\n",
      "          'studios': 1,\n",
      "          'newest': 1,\n",
      "          'feature': 1,\n",
      "          'length': 1,\n",
      "          'remake': 1,\n",
      "          'edgar': 1,\n",
      "          'creation': 1,\n",
      "          'plunged': 1,\n",
      "          'waters': 1,\n",
      "          'maturity': 1,\n",
      "          'techniques': 1,\n",
      "          'nits': 1,\n",
      "          'represents': 1,\n",
      "          'exactly': 1,\n",
      "          'plot': 1,\n",
      "          'loyal': 1,\n",
      "          'original': 1,\n",
      "          'storyline': 1,\n",
      "          'parents': 1,\n",
      "          'abandon': 1,\n",
      "          'ship': 1,\n",
      "          'caught': 1,\n",
      "          'fire': 1,\n",
      "          'shelter': 1,\n",
      "          'jungles': 1,\n",
      "          'africa': 1,\n",
      "          'killed': 1,\n",
      "          'offscreen': 1,\n",
      "          'snarling': 1,\n",
      "          'cheetah': 1,\n",
      "          'sabor': 1,\n",
      "          'leaving': 1,\n",
      "          'baby': 1,\n",
      "          'alone': 1,\n",
      "          'unharmed': 1,\n",
      "          'crib': 1,\n",
      "          'nfound': 1,\n",
      "          'kala': 1,\n",
      "          'gentleness': 1,\n",
      "          'glenn': 1,\n",
      "          'kindhearted': 1,\n",
      "          'member': 1,\n",
      "          'taken': 1,\n",
      "          'primate': 1,\n",
      "          'group': 1,\n",
      "          'nwe': 1,\n",
      "          'follow': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'partakes': 1,\n",
      "          'various': 1,\n",
      "          'adventures': 1,\n",
      "          'loud': 1,\n",
      "          'mouth': 1,\n",
      "          'friend': 1,\n",
      "          'terk': 1,\n",
      "          'brash': 1,\n",
      "          'funny': 1,\n",
      "          'rosie': 1,\n",
      "          'odonnell': 1,\n",
      "          'clumsy': 1,\n",
      "          'elephant': 1,\n",
      "          'tantor': 1,\n",
      "          'wayne': 1,\n",
      "          'knight': 1,\n",
      "          'given': 1,\n",
      "          'kind': 1,\n",
      "          'goofy': 1,\n",
      "          'sidekick': 1,\n",
      "          'humorous': 1,\n",
      "          'chum': 1,\n",
      "          'hero': 1,\n",
      "          'nin': 1,\n",
      "          'fill': 1,\n",
      "          'space': 1,\n",
      "          'rather': 1,\n",
      "          'inconspicuously': 1,\n",
      "          'ngags': 1,\n",
      "          'magnified': 1,\n",
      "          'films': 1,\n",
      "          'kept': 1,\n",
      "          'minor': 1,\n",
      "          'nmost': 1,\n",
      "          'amusing': 1,\n",
      "          'without': 1,\n",
      "          'grows': 1,\n",
      "          'manhood': 1,\n",
      "          'suspected': 1,\n",
      "          'antagonist': 1,\n",
      "          'stumbles': 1,\n",
      "          'picture': 1,\n",
      "          'nhere': 1,\n",
      "          'notorious': 1,\n",
      "          'bad': 1,\n",
      "          'hunter': 1,\n",
      "          'accompanying': 1,\n",
      "          'hapless': 1,\n",
      "          'professor': 1,\n",
      "          'nigel': 1,\n",
      "          'hawthorne': 1,\n",
      "          'expedition': 1,\n",
      "          'jungle': 1,\n",
      "          'theres': 1,\n",
      "          'professors': 1,\n",
      "          'daughter': 1,\n",
      "          'nicely': 1,\n",
      "          'vocalized': 1,\n",
      "          'cheerful': 1,\n",
      "          'minnie': 1,\n",
      "          'driver': 1,\n",
      "          'help': 1,\n",
      "          'supply': 1,\n",
      "          'romantic': 1,\n",
      "          'quotient': 1,\n",
      "          'movie': 1,\n",
      "          'thing': 1,\n",
      "          'blew': 1,\n",
      "          'socks': 1,\n",
      "          'version': 1,\n",
      "          'stunning': 1,\n",
      "          'ndirectors': 1,\n",
      "          'chris': 1,\n",
      "          'buck': 1,\n",
      "          'kevin': 1,\n",
      "          'lima': 1,\n",
      "          'applied': 1,\n",
      "          'breathtaking': 1,\n",
      "          '3d': 1,\n",
      "          'element': 1,\n",
      "          'movement': 1,\n",
      "          'athletic': 1,\n",
      "          'title': 1,\n",
      "          'fastpaced': 1,\n",
      "          'editing': 1,\n",
      "          'absolutely': 1,\n",
      "          'marvel': 1,\n",
      "          'carries': 1,\n",
      "          'treetops': 1,\n",
      "          'narrowly': 1,\n",
      "          'escaping': 1,\n",
      "          'nasty': 1,\n",
      "          'baboons': 1,\n",
      "          'slips': 1,\n",
      "          'slides': 1,\n",
      "          'daredevil': 1,\n",
      "          'snow': 1,\n",
      "          'boarder': 1,\n",
      "          'star': 1,\n",
      "          'surfer': 1,\n",
      "          'riding': 1,\n",
      "          'wave': 1,\n",
      "          'nyour': 1,\n",
      "          'eyes': 1,\n",
      "          'barely': 1,\n",
      "          'keep': 1,\n",
      "          'fantastic': 1,\n",
      "          'accomplishment': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'notch': 1,\n",
      "          'two': 1,\n",
      "          'average': 1,\n",
      "          'important': 1,\n",
      "          'questions': 1,\n",
      "          'place': 1,\n",
      "          'world': 1,\n",
      "          'handled': 1,\n",
      "          'exceptionally': 1,\n",
      "          'well': 1,\n",
      "          'screenwriters': 1,\n",
      "          'shred': 1,\n",
      "          'doubt': 1,\n",
      "          'left': 1,\n",
      "          'ponder': 1,\n",
      "          'afterward': 1,\n",
      "          'surprising': 1,\n",
      "          'plus': 1,\n",
      "          'wasnt': 1,\n",
      "          'expecting': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'adults': 1,\n",
      "          'children': 1,\n",
      "          'thoroughly': 1,\n",
      "          'entertained': 1,\n",
      "          'grownup': 1,\n",
      "          'tony': 1,\n",
      "          'goldwyn': 1,\n",
      "          'made': 1,\n",
      "          'name': 1,\n",
      "          'mean': 1,\n",
      "          'jerk': 1,\n",
      "          'ghost': 1,\n",
      "          'ngoldwyn': 1,\n",
      "          'playing': 1,\n",
      "          'someone': 1,\n",
      "          'aware': 1,\n",
      "          'worlds': 1,\n",
      "          'dangers': 1,\n",
      "          'nglenn': 1,\n",
      "          'memorable': 1,\n",
      "          'lance': 1,\n",
      "          'henriksen': 1,\n",
      "          'tvs': 1,\n",
      "          'millennium': 1,\n",
      "          'terrific': 1,\n",
      "          'silverback': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'father': 1,\n",
      "          'unsure': 1,\n",
      "          'accept': 1,\n",
      "          'human': 1,\n",
      "          'child': 1,\n",
      "          'movies': 1,\n",
      "          'villain': 1,\n",
      "          'particularly': 1,\n",
      "          'special': 1,\n",
      "          'catching': 1,\n",
      "          'nit': 1,\n",
      "          'helps': 1,\n",
      "          'supplies': 1,\n",
      "          'voice': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'compared': 1,\n",
      "          'james': 1,\n",
      "          'woods': 1,\n",
      "          'hilarious': 1,\n",
      "          'hades': 1,\n",
      "          'na': 1,\n",
      "          'burley': 1,\n",
      "          'gun': 1,\n",
      "          'wants': 1,\n",
      "          'capture': 1,\n",
      "          'gorillas': 1,\n",
      "          'constitute': 1,\n",
      "          'alltogether': 1,\n",
      "          'noticeable': 1,\n",
      "          'screen': 1,\n",
      "          'nstill': 1,\n",
      "          'great': 1,\n",
      "          'thrillride': 1,\n",
      "          'constructed': 1,\n",
      "          'ni': 1,\n",
      "          'never': 1,\n",
      "          'expected': 1,\n",
      "          'work': 1,\n",
      "          'transformed': 1,\n",
      "          'successfully': 1,\n",
      "          'live': 1,\n",
      "          'action': 1,\n",
      "          'emotional': 1,\n",
      "          'depth': 1,\n",
      "          'nparents': 1,\n",
      "          'kiddies': 1,\n",
      "          'going': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 13,\n",
      "          'much': 6,\n",
      "          'wars': 5,\n",
      "          'phantom': 5,\n",
      "          'menace': 5,\n",
      "          'star': 5,\n",
      "          'skywalker': 4,\n",
      "          'nthe': 4,\n",
      "          'many': 4,\n",
      "          'see': 3,\n",
      "          'nwhile': 3,\n",
      "          'jedi': 3,\n",
      "          'young': 3,\n",
      "          'anakin': 3,\n",
      "          'critics': 3,\n",
      "          'special': 3,\n",
      "          'fun': 3,\n",
      "          'times': 3,\n",
      "          'really': 3,\n",
      "          'blow': 2,\n",
      "          'plot': 2,\n",
      "          'difficult': 2,\n",
      "          'makes': 2,\n",
      "          'nwith': 2,\n",
      "          'level': 2,\n",
      "          'would': 2,\n",
      "          'definitely': 2,\n",
      "          'expectations': 2,\n",
      "          'story': 2,\n",
      "          'luke': 2,\n",
      "          'kenobi': 2,\n",
      "          'become': 2,\n",
      "          'planet': 2,\n",
      "          'naboo': 2,\n",
      "          'played': 2,\n",
      "          'direction': 2,\n",
      "          'actors': 2,\n",
      "          'effects': 2,\n",
      "          'nstill': 2,\n",
      "          'previous': 2,\n",
      "          'films': 2,\n",
      "          'nthere': 2,\n",
      "          'race': 2,\n",
      "          'made': 2,\n",
      "          'something': 2,\n",
      "          'bit': 2,\n",
      "          'jar': 2,\n",
      "          'character': 2,\n",
      "          'although': 2,\n",
      "          'seems': 2,\n",
      "          'warning': 1,\n",
      "          'actually': 1,\n",
      "          'wish': 1,\n",
      "          'stop': 1,\n",
      "          'reading': 1,\n",
      "          'dont': 1,\n",
      "          'details': 1,\n",
      "          'know': 1,\n",
      "          'movie': 1,\n",
      "          'disappointing': 1,\n",
      "          'built': 1,\n",
      "          'becomes': 1,\n",
      "          'waiting': 1,\n",
      "          'month': 1,\n",
      "          'titanic': 1,\n",
      "          'thing': 1,\n",
      "          'nbut': 1,\n",
      "          'nutshell': 1,\n",
      "          'good': 1,\n",
      "          'nstar': 1,\n",
      "          'episode': 1,\n",
      "          'reviewed': 1,\n",
      "          'vince': 1,\n",
      "          'yim': 1,\n",
      "          'nnever': 1,\n",
      "          'biggest': 1,\n",
      "          'fanatic': 1,\n",
      "          'world': 1,\n",
      "          'trek': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'relate': 1,\n",
      "          'mass': 1,\n",
      "          'fandom': 1,\n",
      "          'surrounding': 1,\n",
      "          'latest': 1,\n",
      "          'installment': 1,\n",
      "          'nhowever': 1,\n",
      "          'cant': 1,\n",
      "          'ignored': 1,\n",
      "          'nendless': 1,\n",
      "          'toys': 1,\n",
      "          'lining': 1,\n",
      "          'shelves': 1,\n",
      "          'endless': 1,\n",
      "          'news': 1,\n",
      "          'reports': 1,\n",
      "          'multibillion': 1,\n",
      "          'dollar': 1,\n",
      "          'advertising': 1,\n",
      "          'campaign': 1,\n",
      "          'hype': 1,\n",
      "          'one': 1,\n",
      "          'recall': 1,\n",
      "          'overhyped': 1,\n",
      "          'disaster': 1,\n",
      "          '1998': 1,\n",
      "          'godzilla': 1,\n",
      "          'failed': 1,\n",
      "          'live': 1,\n",
      "          'nthankfully': 1,\n",
      "          'better': 1,\n",
      "          'first': 1,\n",
      "          'trilogy': 1,\n",
      "          'told': 1,\n",
      "          'knight': 1,\n",
      "          'prequels': 1,\n",
      "          'backpedal': 1,\n",
      "          'tell': 1,\n",
      "          'backstory': 1,\n",
      "          'obi': 1,\n",
      "          'wan': 1,\n",
      "          'named': 1,\n",
      "          'father': 1,\n",
      "          'eventually': 1,\n",
      "          'darth': 1,\n",
      "          'vader': 1,\n",
      "          'nwithout': 1,\n",
      "          'blowing': 1,\n",
      "          'evolves': 1,\n",
      "          'around': 1,\n",
      "          'peaceful': 1,\n",
      "          'held': 1,\n",
      "          'hostage': 1,\n",
      "          'greedy': 1,\n",
      "          'trade': 1,\n",
      "          'federation': 1,\n",
      "          'two': 1,\n",
      "          'knights': 1,\n",
      "          'quigon': 1,\n",
      "          'ji': 1,\n",
      "          'liam': 1,\n",
      "          'neeson': 1,\n",
      "          'obiwan': 1,\n",
      "          'ewan': 1,\n",
      "          'mcgreggor': 1,\n",
      "          'free': 1,\n",
      "          'taken': 1,\n",
      "          'literal': 1,\n",
      "          'beating': 1,\n",
      "          'various': 1,\n",
      "          'leaving': 1,\n",
      "          'lower': 1,\n",
      "          'somewhat': 1,\n",
      "          'ncommon': 1,\n",
      "          'complaints': 1,\n",
      "          'range': 1,\n",
      "          'lack': 1,\n",
      "          'characterization': 1,\n",
      "          'weak': 1,\n",
      "          'narrative': 1,\n",
      "          'poor': 1,\n",
      "          'dated': 1,\n",
      "          'style': 1,\n",
      "          'focus': 1,\n",
      "          'often': 1,\n",
      "          'apply': 1,\n",
      "          'historical': 1,\n",
      "          'theory': 1,\n",
      "          'regards': 1,\n",
      "          'criticism': 1,\n",
      "          'average': 1,\n",
      "          'buff': 1,\n",
      "          'care': 1,\n",
      "          'nhence': 1,\n",
      "          'lot': 1,\n",
      "          'improvement': 1,\n",
      "          'even': 1,\n",
      "          'improvements': 1,\n",
      "          'editions': 1,\n",
      "          'memorable': 1,\n",
      "          'sequences': 1,\n",
      "          'throughout': 1,\n",
      "          'ranging': 1,\n",
      "          'fast': 1,\n",
      "          'furious': 1,\n",
      "          'pod': 1,\n",
      "          'sequence': 1,\n",
      "          'take': 1,\n",
      "          'chariot': 1,\n",
      "          'races': 1,\n",
      "          'ben': 1,\n",
      "          'hur': 1,\n",
      "          'fight': 1,\n",
      "          'scenes': 1,\n",
      "          'involving': 1,\n",
      "          'legions': 1,\n",
      "          'battle': 1,\n",
      "          'droids': 1,\n",
      "          'nutilizing': 1,\n",
      "          'technology': 1,\n",
      "          'light': 1,\n",
      "          'years': 1,\n",
      "          'beyond': 1,\n",
      "          'anything': 1,\n",
      "          'computers': 1,\n",
      "          'used': 1,\n",
      "          'create': 1,\n",
      "          'everything': 1,\n",
      "          'monsters': 1,\n",
      "          'robots': 1,\n",
      "          'amazing': 1,\n",
      "          'cityscapes': 1,\n",
      "          'incredible': 1,\n",
      "          'detail': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'watch': 1,\n",
      "          'catch': 1,\n",
      "          'new': 1,\n",
      "          'humour': 1,\n",
      "          'higher': 1,\n",
      "          'well': 1,\n",
      "          'mostly': 1,\n",
      "          'conveyed': 1,\n",
      "          'reluctant': 1,\n",
      "          'hero': 1,\n",
      "          'binks': 1,\n",
      "          'belongs': 1,\n",
      "          'known': 1,\n",
      "          'gungans': 1,\n",
      "          'nbest': 1,\n",
      "          'described': 1,\n",
      "          'mr': 1,\n",
      "          'bean': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'computergenerated': 1,\n",
      "          'tells': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'queen': 1,\n",
      "          'pretty': 1,\n",
      "          'effective': 1,\n",
      "          'jake': 1,\n",
      "          'lloyd': 1,\n",
      "          'mania': 1,\n",
      "          'time': 1,\n",
      "          'high': 1,\n",
      "          'risk': 1,\n",
      "          'disappoint': 1,\n",
      "          'doubts': 1,\n",
      "          'tendency': 1,\n",
      "          'logic': 1,\n",
      "          'problems': 1,\n",
      "          'several': 1,\n",
      "          'things': 1,\n",
      "          'left': 1,\n",
      "          'unchecked': 1,\n",
      "          'diehard': 1,\n",
      "          'fans': 1,\n",
      "          'appearance': 1,\n",
      "          'tusken': 1,\n",
      "          'raiders': 1,\n",
      "          'laughs': 1,\n",
      "          'nthat': 1,\n",
      "          'annoying': 1,\n",
      "          'coming': 1,\n",
      "          'smarmy': 1,\n",
      "          'arrogant': 1,\n",
      "          'brat': 1,\n",
      "          'attitude': 1,\n",
      "          'wonder': 1,\n",
      "          'turns': 1,\n",
      "          'dark': 1,\n",
      "          'side': 1,\n",
      "          'people': 1,\n",
      "          'especially': 1,\n",
      "          'missing': 1,\n",
      "          'point': 1,\n",
      "          '2': 1,\n",
      "          'half': 1,\n",
      "          'hours': 1,\n",
      "          'youll': 1,\n",
      "          'life': 1,\n",
      "          'wouldnt': 1,\n",
      "          'mind': 1,\n",
      "          'may': 1,\n",
      "          'psychological': 1,\n",
      "          'impact': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'contender': 1,\n",
      "          'cares': 1,\n",
      "          'pure': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'nand': 1,\n",
      "          'isnt': 1,\n",
      "          'matters': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'love': 5,\n",
      "          'american': 4,\n",
      "          'americans': 3,\n",
      "          'right': 3,\n",
      "          'flynt': 3,\n",
      "          'nbut': 3,\n",
      "          'great': 3,\n",
      "          'america': 2,\n",
      "          'political': 2,\n",
      "          'paradox': 2,\n",
      "          'exist': 2,\n",
      "          'movies': 2,\n",
      "          'born': 2,\n",
      "          'people': 2,\n",
      "          'larry': 2,\n",
      "          'pornography': 2,\n",
      "          'last': 2,\n",
      "          'movie': 2,\n",
      "          'picture': 2,\n",
      "          'harrelson': 2,\n",
      "          'atheist': 2,\n",
      "          'courtney': 2,\n",
      "          'award': 2,\n",
      "          'much': 2,\n",
      "          'like': 2,\n",
      "          'go': 2,\n",
      "          'beyond': 2,\n",
      "          'nthis': 2,\n",
      "          'doubt': 2,\n",
      "          'blah': 2,\n",
      "          'shows': 1,\n",
      "          'remains': 1,\n",
      "          'ambivalent': 1,\n",
      "          'nature': 1,\n",
      "          'system': 1,\n",
      "          'nno': 1,\n",
      "          'major': 1,\n",
      "          'surprise': 1,\n",
      "          'j': 1,\n",
      "          'mill': 1,\n",
      "          'victorian': 1,\n",
      "          'classic': 1,\n",
      "          'liberty': 1,\n",
      "          'could': 1,\n",
      "          'make': 1,\n",
      "          'mind': 1,\n",
      "          'liberal': 1,\n",
      "          'democracy': 1,\n",
      "          'either': 1,\n",
      "          'wrought': 1,\n",
      "          'archetypal': 1,\n",
      "          'supreme': 1,\n",
      "          'contradiction': 1,\n",
      "          'one': 1,\n",
      "          'majority': 1,\n",
      "          'nsmall': 1,\n",
      "          'wonder': 1,\n",
      "          'hollywoods': 1,\n",
      "          'compelling': 1,\n",
      "          'oft': 1,\n",
      "          'struggle': 1,\n",
      "          'individualunderdog': 1,\n",
      "          'larger': 1,\n",
      "          'collective': 1,\n",
      "          'oppressive': 1,\n",
      "          'witness': 1,\n",
      "          'braveheart': 1,\n",
      "          'fourth': 1,\n",
      "          'july': 1,\n",
      "          'rocky': 1,\n",
      "          'first': 1,\n",
      "          'blood': 1,\n",
      "          'clear': 1,\n",
      "          'present': 1,\n",
      "          'danger': 1,\n",
      "          'jfk': 1,\n",
      "          'list': 1,\n",
      "          'goes': 1,\n",
      "          'ntheres': 1,\n",
      "          'little': 1,\n",
      "          'singapore': 1,\n",
      "          'barred': 1,\n",
      "          'access': 1,\n",
      "          'playboy': 1,\n",
      "          'penthouse': 1,\n",
      "          'line': 1,\n",
      "          'though': 1,\n",
      "          'governments': 1,\n",
      "          'long': 1,\n",
      "          'worried': 1,\n",
      "          'younger': 1,\n",
      "          'getting': 1,\n",
      "          'americanised': 1,\n",
      "          'advocating': 1,\n",
      "          'individual': 1,\n",
      "          'rights': 1,\n",
      "          'parliamentary': 1,\n",
      "          'opposition': 1,\n",
      "          'vs': 1,\n",
      "          'locates': 1,\n",
      "          'debate': 1,\n",
      "          'within': 1,\n",
      "          'greatest': 1,\n",
      "          'social': 1,\n",
      "          'taboo': 1,\n",
      "          'sex': 1,\n",
      "          'ndoes': 1,\n",
      "          'circulate': 1,\n",
      "          'nlarry': 1,\n",
      "          'publisher': 1,\n",
      "          'hustler': 1,\n",
      "          'magazine': 1,\n",
      "          'thinks': 1,\n",
      "          'obviously': 1,\n",
      "          'u': 1,\n",
      "          'congress': 1,\n",
      "          'month': 1,\n",
      "          'threw': 1,\n",
      "          'bill': 1,\n",
      "          'curb': 1,\n",
      "          'net': 1,\n",
      "          'even': 1,\n",
      "          'actions': 1,\n",
      "          'remain': 1,\n",
      "          'undecided': 1,\n",
      "          'oscars': 1,\n",
      "          'apparently': 1,\n",
      "          'shunned': 1,\n",
      "          'embarrassing': 1,\n",
      "          'sensitive': 1,\n",
      "          'livewire': 1,\n",
      "          'nwhat': 1,\n",
      "          'ignored': 1,\n",
      "          'actually': 1,\n",
      "          'nwoody': 1,\n",
      "          'lead': 1,\n",
      "          'character': 1,\n",
      "          'reprises': 1,\n",
      "          'role': 1,\n",
      "          'tohellwithmorality': 1,\n",
      "          'tohellwiththelaw': 1,\n",
      "          'tohellwiththesystem': 1,\n",
      "          'antichrist': 1,\n",
      "          'saw': 1,\n",
      "          'natural': 1,\n",
      "          'killers': 1,\n",
      "          'nand': 1,\n",
      "          'outrageous': 1,\n",
      "          'convincing': 1,\n",
      "          'nihilistic': 1,\n",
      "          'nonetheless': 1,\n",
      "          'loves': 1,\n",
      "          'exstripper': 1,\n",
      "          'wife': 1,\n",
      "          'dearly': 1,\n",
      "          'latter': 1,\n",
      "          'played': 1,\n",
      "          'abandon': 1,\n",
      "          'conviction': 1,\n",
      "          'sensitivity': 1,\n",
      "          'real': 1,\n",
      "          'star': 1,\n",
      "          'show': 1,\n",
      "          'really': 1,\n",
      "          'snubbed': 1,\n",
      "          'academy': 1,\n",
      "          'best': 1,\n",
      "          'actress': 1,\n",
      "          'nomination': 1,\n",
      "          'nedward': 1,\n",
      "          'norton': 1,\n",
      "          'plays': 1,\n",
      "          'jerky': 1,\n",
      "          'lawyer': 1,\n",
      "          'relationship': 1,\n",
      "          'brings': 1,\n",
      "          'another': 1,\n",
      "          'superficially': 1,\n",
      "          'immoral': 1,\n",
      "          'outcasts': 1,\n",
      "          'whove': 1,\n",
      "          'coming': 1,\n",
      "          'woody': 1,\n",
      "          'gets': 1,\n",
      "          'shot': 1,\n",
      "          'becomes': 1,\n",
      "          'paralysed': 1,\n",
      "          'waist': 1,\n",
      "          'dies': 1,\n",
      "          'aids': 1,\n",
      "          'ngods': 1,\n",
      "          'damnation': 1,\n",
      "          'powerful': 1,\n",
      "          'standing': 1,\n",
      "          'turn': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'highlight': 1,\n",
      "          'question': 1,\n",
      "          'nihilist': 1,\n",
      "          'still': 1,\n",
      "          'moralist': 1,\n",
      "          'context': 1,\n",
      "          'christian': 1,\n",
      "          'care': 1,\n",
      "          'feel': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'personal': 1,\n",
      "          'level': 1,\n",
      "          'nfriedrich': 1,\n",
      "          'nietzsche': 1,\n",
      "          'talked': 1,\n",
      "          'must': 1,\n",
      "          'uncover': 1,\n",
      "          'full': 1,\n",
      "          'consequences': 1,\n",
      "          'atheism': 1,\n",
      "          'ridding': 1,\n",
      "          'moralchristian': 1,\n",
      "          'influences': 1,\n",
      "          'nto': 1,\n",
      "          'good': 1,\n",
      "          'evil': 1,\n",
      "          'personally': 1,\n",
      "          'nbecause': 1,\n",
      "          'moving': 1,\n",
      "          'funny': 1,\n",
      "          'ends': 1,\n",
      "          'open': 1,\n",
      "          'optimism': 1,\n",
      "          'admire': 1,\n",
      "          'comes': 1,\n",
      "          'fine': 1,\n",
      "          'tradition': 1,\n",
      "          'dares': 1,\n",
      "          'raise': 1,\n",
      "          'difficult': 1,\n",
      "          'questions': 1,\n",
      "          'call': 1,\n",
      "          'ideas': 1,\n",
      "          'doctrines': 1,\n",
      "          'otherwise': 1,\n",
      "          'used': 1,\n",
      "          'catchphrases': 1,\n",
      "          'nthere': 1,\n",
      "          'times': 1,\n",
      "          'story': 1,\n",
      "          'tell': 1,\n",
      "          'reflect': 1,\n",
      "          'something': 1,\n",
      "          'hidden': 1,\n",
      "          'realities': 1,\n",
      "          'society': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 5,\n",
      "          'horror': 4,\n",
      "          'nthe': 4,\n",
      "          'ring': 3,\n",
      "          'one': 2,\n",
      "          'ive': 2,\n",
      "          'films': 2,\n",
      "          'really': 2,\n",
      "          'long': 2,\n",
      "          'movie': 2,\n",
      "          'west': 2,\n",
      "          'much': 2,\n",
      "          'gore': 2,\n",
      "          'something': 2,\n",
      "          'japanese': 2,\n",
      "          'japan': 2,\n",
      "          'week': 2,\n",
      "          'prior': 2,\n",
      "          'husband': 2,\n",
      "          'plot': 2,\n",
      "          'audience': 2,\n",
      "          'probably': 1,\n",
      "          'creepiest': 1,\n",
      "          'movies': 1,\n",
      "          'seen': 1,\n",
      "          'years': 1,\n",
      "          'nbut': 1,\n",
      "          'always': 1,\n",
      "          'phobia': 1,\n",
      "          'asian': 1,\n",
      "          'born': 1,\n",
      "          'ni': 1,\n",
      "          'remember': 1,\n",
      "          'kid': 1,\n",
      "          'scared': 1,\n",
      "          'hell': 1,\n",
      "          'green': 1,\n",
      "          'faced': 1,\n",
      "          'longhaired': 1,\n",
      "          'floating': 1,\n",
      "          'ghosts': 1,\n",
      "          'donning': 1,\n",
      "          'white': 1,\n",
      "          'gownseuuugh': 1,\n",
      "          'brings': 1,\n",
      "          'back': 1,\n",
      "          'memories': 1,\n",
      "          'grips': 1,\n",
      "          'ended': 1,\n",
      "          'nunlike': 1,\n",
      "          'coming': 1,\n",
      "          'im': 1,\n",
      "          'pretty': 1,\n",
      "          'used': 1,\n",
      "          'visual': 1,\n",
      "          'effects': 1,\n",
      "          'become': 1,\n",
      "          'rather': 1,\n",
      "          'bland': 1,\n",
      "          'nowadays': 1,\n",
      "          'ntheres': 1,\n",
      "          'scary': 1,\n",
      "          'time': 1,\n",
      "          'nif': 1,\n",
      "          'mind': 1,\n",
      "          'please': 1,\n",
      "          'tell': 1,\n",
      "          'nthis': 1,\n",
      "          'flick': 1,\n",
      "          'supposed': 1,\n",
      "          'based': 1,\n",
      "          'upon': 1,\n",
      "          'stories': 1,\n",
      "          'written': 1,\n",
      "          'stephen': 1,\n",
      "          'king': 1,\n",
      "          'also': 1,\n",
      "          'heard': 1,\n",
      "          'televised': 1,\n",
      "          'air': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'mysterious': 1,\n",
      "          'videotape': 1,\n",
      "          'bring': 1,\n",
      "          'death': 1,\n",
      "          'sure': 1,\n",
      "          'person': 1,\n",
      "          'watches': 1,\n",
      "          'viewing': 1,\n",
      "          'na': 1,\n",
      "          'journalist': 1,\n",
      "          'stupid': 1,\n",
      "          'enough': 1,\n",
      "          'tests': 1,\n",
      "          'call': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'ends': 1,\n",
      "          'meets': 1,\n",
      "          'doom': 1,\n",
      "          'nshe': 1,\n",
      "          'goes': 1,\n",
      "          'search': 1,\n",
      "          'origin': 1,\n",
      "          'videocassette': 1,\n",
      "          'get': 1,\n",
      "          'root': 1,\n",
      "          'whole': 1,\n",
      "          'curse': 1,\n",
      "          'hopes': 1,\n",
      "          'freeing': 1,\n",
      "          'plays': 1,\n",
      "          'senses': 1,\n",
      "          'like': 1,\n",
      "          'today': 1,\n",
      "          'nvisual': 1,\n",
      "          'subtlety': 1,\n",
      "          'minimal': 1,\n",
      "          'music': 1,\n",
      "          'intriguing': 1,\n",
      "          'puts': 1,\n",
      "          'within': 1,\n",
      "          'aura': 1,\n",
      "          'suspense': 1,\n",
      "          'throughout': 1,\n",
      "          'entire': 1,\n",
      "          'nvery': 1,\n",
      "          'well': 1,\n",
      "          'done': 1,\n",
      "          'indeed': 1,\n",
      "          'especially': 1,\n",
      "          'single': 1,\n",
      "          'trace': 1,\n",
      "          'violence': 1,\n",
      "          'nnow': 1,\n",
      "          'thats': 1,\n",
      "          'budding': 1,\n",
      "          'filmmaker': 1,\n",
      "          'wannabes': 1,\n",
      "          'consider': 1,\n",
      "          'looking': 1,\n",
      "          'njust': 1,\n",
      "          'idea': 1,\n",
      "          'visually': 1,\n",
      "          'powerful': 1,\n",
      "          'subtitled': 1,\n",
      "          'chinese': 1,\n",
      "          'cant': 1,\n",
      "          'understand': 1,\n",
      "          'ok': 1,\n",
      "          'friend': 1,\n",
      "          'gave': 1,\n",
      "          'gist': 1,\n",
      "          'watching': 1,\n",
      "          'revealed': 1,\n",
      "          'little': 1,\n",
      "          'twists': 1,\n",
      "          'leading': 1,\n",
      "          'unforgettable': 1,\n",
      "          'climax': 1,\n",
      "          'definitely': 1,\n",
      "          'leave': 1,\n",
      "          'impression': 1,\n",
      "          'edge': 1,\n",
      "          'seat': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 8,\n",
      "          'know': 8,\n",
      "          'deep': 7,\n",
      "          'rising': 7,\n",
      "          'b': 7,\n",
      "          'good': 6,\n",
      "          'movies': 5,\n",
      "          'us': 4,\n",
      "          'guy': 4,\n",
      "          'nthe': 3,\n",
      "          'big': 3,\n",
      "          'person': 3,\n",
      "          'always': 3,\n",
      "          'funny': 3,\n",
      "          'times': 3,\n",
      "          'n': 3,\n",
      "          'one': 2,\n",
      "          'kind': 2,\n",
      "          'except': 2,\n",
      "          'like': 2,\n",
      "          'see': 2,\n",
      "          'monsters': 2,\n",
      "          'little': 2,\n",
      "          'nof': 2,\n",
      "          'course': 2,\n",
      "          'fails': 2,\n",
      "          'explain': 2,\n",
      "          'effects': 2,\n",
      "          'explosions': 2,\n",
      "          'things': 2,\n",
      "          'actually': 2,\n",
      "          'time': 2,\n",
      "          'behind': 2,\n",
      "          'door': 2,\n",
      "          'said': 2,\n",
      "          'make': 2,\n",
      "          'nwe': 2,\n",
      "          'dont': 2,\n",
      "          'ni': 2,\n",
      "          'went': 2,\n",
      "          'treat': 2,\n",
      "          'couple': 2,\n",
      "          'man': 2,\n",
      "          'hell': 2,\n",
      "          'live': 2,\n",
      "          'glasses': 2,\n",
      "          'dies': 2,\n",
      "          'black': 2,\n",
      "          'nhow': 2,\n",
      "          'kill': 2,\n",
      "          'fifteen': 2,\n",
      "          'minutes': 2,\n",
      "          'need': 2,\n",
      "          'firepower': 2,\n",
      "          'go': 2,\n",
      "          'serves': 1,\n",
      "          'purpose': 1,\n",
      "          'entertain': 1,\n",
      "          'nit': 1,\n",
      "          'ask': 1,\n",
      "          'think': 1,\n",
      "          'important': 1,\n",
      "          'questions': 1,\n",
      "          'life': 1,\n",
      "          'planets': 1,\n",
      "          'possibility': 1,\n",
      "          'god': 1,\n",
      "          'screw': 1,\n",
      "          'says': 1,\n",
      "          'boldly': 1,\n",
      "          'lets': 1,\n",
      "          'computer': 1,\n",
      "          'generated': 1,\n",
      "          'rip': 1,\n",
      "          'decapitate': 1,\n",
      "          'generally': 1,\n",
      "          'cause': 1,\n",
      "          'irreparable': 1,\n",
      "          'booboos': 1,\n",
      "          'bunch': 1,\n",
      "          'known': 1,\n",
      "          'actors': 1,\n",
      "          'nheh': 1,\n",
      "          'nthem': 1,\n",
      "          'wacky': 1,\n",
      "          'got': 1,\n",
      "          'ta': 1,\n",
      "          'love': 1,\n",
      "          'em': 1,\n",
      "          'since': 1,\n",
      "          'rent': 1,\n",
      "          'thousand': 1,\n",
      "          'story': 1,\n",
      "          'hollywood': 1,\n",
      "          'must': 1,\n",
      "          'give': 1,\n",
      "          'extra': 1,\n",
      "          'oumph': 1,\n",
      "          'get': 1,\n",
      "          'people': 1,\n",
      "          'theaters': 1,\n",
      "          'nthat': 1,\n",
      "          'thing': 1,\n",
      "          'nconfused': 1,\n",
      "          'nlet': 1,\n",
      "          'ndespite': 1,\n",
      "          'flashy': 1,\n",
      "          'still': 1,\n",
      "          'heart': 1,\n",
      "          'ol': 1,\n",
      "          'nluckily': 1,\n",
      "          'worst': 1,\n",
      "          'cliches': 1,\n",
      "          'history': 1,\n",
      "          'bread': 1,\n",
      "          'butter': 1,\n",
      "          'ntherefore': 1,\n",
      "          'would': 1,\n",
      "          'destroy': 1,\n",
      "          'serious': 1,\n",
      "          'help': 1,\n",
      "          'watching': 1,\n",
      "          'lower': 1,\n",
      "          'calibre': 1,\n",
      "          'theres': 1,\n",
      "          'slimy': 1,\n",
      "          'creature': 1,\n",
      "          'wander': 1,\n",
      "          'picked': 1,\n",
      "          'monster': 1,\n",
      "          'persons': 1,\n",
      "          'alive': 1,\n",
      "          'horrible': 1,\n",
      "          'expections': 1,\n",
      "          'low': 1,\n",
      "          'tolerance': 1,\n",
      "          'bad': 1,\n",
      "          'dialogue': 1,\n",
      "          'high': 1,\n",
      "          'nimagine': 1,\n",
      "          'surprise': 1,\n",
      "          'discover': 1,\n",
      "          'well': 1,\n",
      "          'pretty': 1,\n",
      "          'darn': 1,\n",
      "          'na': 1,\n",
      "          'nwell': 1,\n",
      "          'thats': 1,\n",
      "          'new': 1,\n",
      "          'nthese': 1,\n",
      "          'flicks': 1,\n",
      "          'supposed': 1,\n",
      "          'laugh': 1,\n",
      "          'unintended': 1,\n",
      "          'laughs': 1,\n",
      "          'nand': 1,\n",
      "          'williams': 1,\n",
      "          'wes': 1,\n",
      "          'studi': 1,\n",
      "          'famke': 1,\n",
      "          'jansen': 1,\n",
      "          'appear': 1,\n",
      "          'screen': 1,\n",
      "          'nhey': 1,\n",
      "          'guys': 1,\n",
      "          'gal': 1,\n",
      "          'ncool': 1,\n",
      "          'nfamiliar': 1,\n",
      "          'faces': 1,\n",
      "          'nso': 1,\n",
      "          'far': 1,\n",
      "          'nour': 1,\n",
      "          'hero': 1,\n",
      "          'nwes': 1,\n",
      "          'staple': 1,\n",
      "          'token': 1,\n",
      "          'victim': 1,\n",
      "          'buy': 1,\n",
      "          'farm': 1,\n",
      "          'take': 1,\n",
      "          'creeps': 1,\n",
      "          'way': 1,\n",
      "          'nfamke': 1,\n",
      "          'babe': 1,\n",
      "          'nuff': 1,\n",
      "          'nthere': 1,\n",
      "          'also': 1,\n",
      "          'buffs': 1,\n",
      "          'never': 1,\n",
      "          'nerdy': 1,\n",
      "          'ah': 1,\n",
      "          'ncomic': 1,\n",
      "          'relief': 1,\n",
      "          'possibly': 1,\n",
      "          'let': 1,\n",
      "          'nhim': 1,\n",
      "          'nafter': 1,\n",
      "          'first': 1,\n",
      "          'felt': 1,\n",
      "          'right': 1,\n",
      "          'home': 1,\n",
      "          'root': 1,\n",
      "          'boo': 1,\n",
      "          'gum': 1,\n",
      "          'chew': 1,\n",
      "          'please': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'next': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'jumped': 1,\n",
      "          'seat': 1,\n",
      "          'ewwww': 1,\n",
      "          'dozen': 1,\n",
      "          'nearly': 1,\n",
      "          'orgasm': 1,\n",
      "          'heroes': 1,\n",
      "          'packing': 1,\n",
      "          'nim': 1,\n",
      "          'nottice': 1,\n",
      "          'nall': 1,\n",
      "          'id': 1,\n",
      "          'recommend': 1,\n",
      "          'looking': 1,\n",
      "          'care': 1,\n",
      "          'leave': 1,\n",
      "          'brain': 1,\n",
      "          'nbring': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'excitement': 1,\n",
      "          'acting': 1,\n",
      "          'decent': 1,\n",
      "          'top': 1,\n",
      "          'rate': 1,\n",
      "          'best': 1,\n",
      "          'describe': 1,\n",
      "          'nput': 1,\n",
      "          'together': 1,\n",
      "          'jet': 1,\n",
      "          'ski': 1,\n",
      "          'scene': 1,\n",
      "          'hard': 1,\n",
      "          'rain': 1,\n",
      "          'bug': 1,\n",
      "          'attacks': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'stunts': 1,\n",
      "          'scenes': 1,\n",
      "          'friday': 1,\n",
      "          'thirteenth': 1,\n",
      "          'freddy': 1,\n",
      "          'keep': 1,\n",
      "          'screaming': 1,\n",
      "          'hes': 1,\n",
      "          'end': 1,\n",
      "          'nfor': 1,\n",
      "          'creepy': 1,\n",
      "          'crawly': 1,\n",
      "          'goodness': 1,\n",
      "          'tight': 1,\n",
      "          'tshirts': 1,\n",
      "          'major': 1,\n",
      "          'bathroom': 1,\n",
      "          'every': 1,\n",
      "          'seing': 1,\n",
      "          'water': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'lestat': 10,\n",
      "          'nthe': 8,\n",
      "          'dark': 6,\n",
      "          'vampire': 5,\n",
      "          'film': 5,\n",
      "          'luis': 5,\n",
      "          'beautiful': 5,\n",
      "          'young': 4,\n",
      "          'louis': 4,\n",
      "          'new': 4,\n",
      "          'films': 3,\n",
      "          'interesting': 3,\n",
      "          'rices': 3,\n",
      "          'life': 3,\n",
      "          'eternal': 3,\n",
      "          'nwhen': 3,\n",
      "          'script': 3,\n",
      "          'like': 3,\n",
      "          'well': 2,\n",
      "          'horror': 2,\n",
      "          'meant': 2,\n",
      "          'scare': 2,\n",
      "          'neil': 2,\n",
      "          'jordans': 2,\n",
      "          'also': 2,\n",
      "          'novel': 2,\n",
      "          'opens': 2,\n",
      "          'gothic': 2,\n",
      "          'man': 2,\n",
      "          'darkness': 2,\n",
      "          'n': 2,\n",
      "          'story': 2,\n",
      "          'pitt': 2,\n",
      "          'nhis': 2,\n",
      "          'orleans': 2,\n",
      "          'tom': 2,\n",
      "          'cruise': 2,\n",
      "          'one': 2,\n",
      "          'never': 2,\n",
      "          'damned': 2,\n",
      "          'hunger': 2,\n",
      "          'blood': 2,\n",
      "          'kill': 2,\n",
      "          'claudia': 2,\n",
      "          'dunst': 2,\n",
      "          'nbut': 2,\n",
      "          'claudias': 2,\n",
      "          'paris': 2,\n",
      "          'stephen': 2,\n",
      "          'rea': 2,\n",
      "          'banderas': 2,\n",
      "          'world': 2,\n",
      "          'incredible': 2,\n",
      "          'everything': 2,\n",
      "          'direction': 2,\n",
      "          'casting': 2,\n",
      "          'incredibly': 2,\n",
      "          'effective': 2,\n",
      "          'loneliness': 2,\n",
      "          'less': 2,\n",
      "          'emotional': 2,\n",
      "          'little': 2,\n",
      "          'child': 2,\n",
      "          'eternity': 2,\n",
      "          'nclaudia': 2,\n",
      "          'nmoments': 2,\n",
      "          'issues': 2,\n",
      "          'usually': 1,\n",
      "          'dumb': 1,\n",
      "          'predictable': 1,\n",
      "          'bmovies': 1,\n",
      "          'us': 1,\n",
      "          'cliches': 1,\n",
      "          'simple': 1,\n",
      "          'shocks': 1,\n",
      "          'nit': 1,\n",
      "          'therefore': 1,\n",
      "          'watch': 1,\n",
      "          'recent': 1,\n",
      "          'visually': 1,\n",
      "          'stunning': 1,\n",
      "          'plot': 1,\n",
      "          'worth': 1,\n",
      "          'making': 1,\n",
      "          'movies': 1,\n",
      "          'nbased': 1,\n",
      "          'anne': 1,\n",
      "          'interview': 1,\n",
      "          'long': 1,\n",
      "          'trip': 1,\n",
      "          'hell': 1,\n",
      "          'quire': 1,\n",
      "          'streets': 1,\n",
      "          'presentday': 1,\n",
      "          'san': 1,\n",
      "          'francisco': 1,\n",
      "          'camera': 1,\n",
      "          'slowly': 1,\n",
      "          'find': 1,\n",
      "          'particular': 1,\n",
      "          'window': 1,\n",
      "          'na': 1,\n",
      "          'shape': 1,\n",
      "          'visible': 1,\n",
      "          'want': 1,\n",
      "          'tell': 1,\n",
      "          'mysterious': 1,\n",
      "          'brad': 1,\n",
      "          'twocentury': 1,\n",
      "          'old': 1,\n",
      "          'telling': 1,\n",
      "          'fascinated': 1,\n",
      "          'interviewer': 1,\n",
      "          'christian': 1,\n",
      "          'slater': 1,\n",
      "          'tale': 1,\n",
      "          '1791': 1,\n",
      "          'louisiana': 1,\n",
      "          'south': 1,\n",
      "          'falls': 1,\n",
      "          'victim': 1,\n",
      "          'ngiven': 1,\n",
      "          'choice': 1,\n",
      "          'death': 1,\n",
      "          'undead': 1,\n",
      "          'chooses': 1,\n",
      "          'latter': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'decision': 1,\n",
      "          'forever': 1,\n",
      "          'regret': 1,\n",
      "          'neverlasting': 1,\n",
      "          'youth': 1,\n",
      "          'promised': 1,\n",
      "          'turn': 1,\n",
      "          'instead': 1,\n",
      "          'ending': 1,\n",
      "          'suffering': 1,\n",
      "          'longing': 1,\n",
      "          'peace': 1,\n",
      "          'nlouis': 1,\n",
      "          'impunity': 1,\n",
      "          'sate': 1,\n",
      "          'must': 1,\n",
      "          'feed': 1,\n",
      "          'animals': 1,\n",
      "          'enough': 1,\n",
      "          'neventually': 1,\n",
      "          'pierces': 1,\n",
      "          'neck': 1,\n",
      "          'griefstricken': 1,\n",
      "          'girl': 1,\n",
      "          'named': 1,\n",
      "          'kirsten': 1,\n",
      "          'curses': 1,\n",
      "          'unholy': 1,\n",
      "          'form': 1,\n",
      "          'resurrection': 1,\n",
      "          'surrogate': 1,\n",
      "          'daughter': 1,\n",
      "          'nfor': 1,\n",
      "          'big': 1,\n",
      "          'happy': 1,\n",
      "          'family': 1,\n",
      "          'things': 1,\n",
      "          'end': 1,\n",
      "          'growing': 1,\n",
      "          'resentment': 1,\n",
      "          'fuels': 1,\n",
      "          'bloody': 1,\n",
      "          'confrontation': 1,\n",
      "          'break': 1,\n",
      "          'loose': 1,\n",
      "          'travel': 1,\n",
      "          'eurovamps': 1,\n",
      "          'santiago': 1,\n",
      "          'armand': 1,\n",
      "          'antonio': 1,\n",
      "          'introduced': 1,\n",
      "          'bigger': 1,\n",
      "          'ndirector': 1,\n",
      "          'jordan': 1,\n",
      "          'crying': 1,\n",
      "          'game': 1,\n",
      "          'together': 1,\n",
      "          'talented': 1,\n",
      "          'director': 1,\n",
      "          'cinematography': 1,\n",
      "          'philippe': 1,\n",
      "          'rousselot': 1,\n",
      "          'composer': 1,\n",
      "          'elliot': 1,\n",
      "          'goldenthal': 1,\n",
      "          'created': 1,\n",
      "          'atmosphere': 1,\n",
      "          'nas': 1,\n",
      "          'begins': 1,\n",
      "          'palette': 1,\n",
      "          'colors': 1,\n",
      "          'sunrises': 1,\n",
      "          'lush': 1,\n",
      "          'golden': 1,\n",
      "          'fields': 1,\n",
      "          'green': 1,\n",
      "          'forests': 1,\n",
      "          'inkyblue': 1,\n",
      "          'clouds': 1,\n",
      "          'blending': 1,\n",
      "          'sun': 1,\n",
      "          'born': 1,\n",
      "          'suddenly': 1,\n",
      "          'changes': 1,\n",
      "          'velvet': 1,\n",
      "          'lit': 1,\n",
      "          'silver': 1,\n",
      "          'moonlight': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'dante': 1,\n",
      "          'ferretti': 1,\n",
      "          'wonderful': 1,\n",
      "          'costumes': 1,\n",
      "          'art': 1,\n",
      "          'malcolm': 1,\n",
      "          'middleton': 1,\n",
      "          'recreate': 1,\n",
      "          'multiple': 1,\n",
      "          'historical': 1,\n",
      "          'periods': 1,\n",
      "          'nfrom': 1,\n",
      "          'renaissance': 1,\n",
      "          'rococo': 1,\n",
      "          '18th': 1,\n",
      "          'century': 1,\n",
      "          'present': 1,\n",
      "          'days': 1,\n",
      "          'likewise': 1,\n",
      "          'good': 1,\n",
      "          'involving': 1,\n",
      "          'famous': 1,\n",
      "          'stars': 1,\n",
      "          'hollywood': 1,\n",
      "          'ireland': 1,\n",
      "          'spain': 1,\n",
      "          'controversial': 1,\n",
      "          'ncruise': 1,\n",
      "          'energetic': 1,\n",
      "          'sinister': 1,\n",
      "          'charismatic': 1,\n",
      "          'wild': 1,\n",
      "          'bloodthirsty': 1,\n",
      "          'ncruises': 1,\n",
      "          'likes': 1,\n",
      "          'seduce': 1,\n",
      "          'women': 1,\n",
      "          'exacting': 1,\n",
      "          'red': 1,\n",
      "          'sustenance': 1,\n",
      "          'nwith': 1,\n",
      "          'alarming': 1,\n",
      "          'swiftness': 1,\n",
      "          'victims': 1,\n",
      "          'switch': 1,\n",
      "          'sexual': 1,\n",
      "          'excitement': 1,\n",
      "          'outright': 1,\n",
      "          'murderous': 1,\n",
      "          'purpose': 1,\n",
      "          'becomes': 1,\n",
      "          'clear': 1,\n",
      "          'mercifully': 1,\n",
      "          'nyou': 1,\n",
      "          'ndo': 1,\n",
      "          'doubt': 1,\n",
      "          'killer': 1,\n",
      "          'nthat': 1,\n",
      "          'teaching': 1,\n",
      "          'behind': 1,\n",
      "          'furious': 1,\n",
      "          'facade': 1,\n",
      "          'anger': 1,\n",
      "          'carries': 1,\n",
      "          'centuries': 1,\n",
      "          'tries': 1,\n",
      "          'smother': 1,\n",
      "          'nightly': 1,\n",
      "          'rampages': 1,\n",
      "          'nbrad': 1,\n",
      "          'equally': 1,\n",
      "          'convincing': 1,\n",
      "          'human': 1,\n",
      "          'soul': 1,\n",
      "          'nantonio': 1,\n",
      "          'since': 1,\n",
      "          'play': 1,\n",
      "          'secondary': 1,\n",
      "          'characters': 1,\n",
      "          'performances': 1,\n",
      "          'almost': 1,\n",
      "          'invisible': 1,\n",
      "          'greatest': 1,\n",
      "          'performance': 1,\n",
      "          'comes': 1,\n",
      "          'suprisingly': 1,\n",
      "          'kristen': 1,\n",
      "          'manages': 1,\n",
      "          'create': 1,\n",
      "          'believable': 1,\n",
      "          'character': 1,\n",
      "          'changing': 1,\n",
      "          'around': 1,\n",
      "          'nshe': 1,\n",
      "          'remains': 1,\n",
      "          'unchangeable': 1,\n",
      "          'nonly': 1,\n",
      "          'wise': 1,\n",
      "          'eyes': 1,\n",
      "          'reveal': 1,\n",
      "          'age': 1,\n",
      "          'nironically': 1,\n",
      "          'miss': 1,\n",
      "          'nanne': 1,\n",
      "          'read': 1,\n",
      "          'rich': 1,\n",
      "          'colorful': 1,\n",
      "          'tiering': 1,\n",
      "          'melancholic': 1,\n",
      "          'times': 1,\n",
      "          'resembling': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'nlet': 1,\n",
      "          'go': 1,\n",
      "          'nfather': 1,\n",
      "          'made': 1,\n",
      "          'look': 1,\n",
      "          'angel': 1,\n",
      "          'gone': 1,\n",
      "          'nluis': 1,\n",
      "          'alright': 1,\n",
      "          'really': 1,\n",
      "          'believe': 1,\n",
      "          'nand': 1,\n",
      "          'hug': 1,\n",
      "          'emotionally': 1,\n",
      "          'displayed': 1,\n",
      "          'selfpity': 1,\n",
      "          'bit': 1,\n",
      "          'tiresome': 1,\n",
      "          'nhowever': 1,\n",
      "          'otherwise': 1,\n",
      "          'strong': 1,\n",
      "          'structured': 1,\n",
      "          'bringing': 1,\n",
      "          'humor': 1,\n",
      "          'comic': 1,\n",
      "          'episodes': 1,\n",
      "          'hidden': 1,\n",
      "          'book': 1,\n",
      "          'finds': 1,\n",
      "          'dead': 1,\n",
      "          'dressmaker': 1,\n",
      "          'killed': 1,\n",
      "          'cries': 1,\n",
      "          'make': 1,\n",
      "          'dress': 1,\n",
      "          'nbe': 1,\n",
      "          'practical': 1,\n",
      "          'nin': 1,\n",
      "          'house': 1,\n",
      "          'entertaining': 1,\n",
      "          'appealing': 1,\n",
      "          'nneil': 1,\n",
      "          'sensual': 1,\n",
      "          'plays': 1,\n",
      "          'homosexuality': 1,\n",
      "          'love': 1,\n",
      "          'saga': 1,\n",
      "          'display': 1,\n",
      "          'differently': 1,\n",
      "          'nwrapped': 1,\n",
      "          'mystery': 1,\n",
      "          'original': 1,\n",
      "          'picture': 1,\n",
      "          'brings': 1,\n",
      "          'vampirefilms': 1,\n",
      "          'height': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 20,\n",
      "          'nthe': 7,\n",
      "          'alice': 7,\n",
      "          'nbill': 6,\n",
      "          'see': 6,\n",
      "          'bill': 6,\n",
      "          'party': 5,\n",
      "          'nhe': 5,\n",
      "          'kidman': 4,\n",
      "          'nthis': 4,\n",
      "          'strange': 4,\n",
      "          'minutes': 3,\n",
      "          'kubrick': 3,\n",
      "          'ni': 3,\n",
      "          'follows': 3,\n",
      "          'another': 3,\n",
      "          'bit': 3,\n",
      "          'one': 3,\n",
      "          'nthey': 3,\n",
      "          'friend': 3,\n",
      "          'gets': 3,\n",
      "          'opportunity': 3,\n",
      "          'home': 3,\n",
      "          'hooker': 3,\n",
      "          'young': 3,\n",
      "          'events': 3,\n",
      "          'shot': 2,\n",
      "          'time': 2,\n",
      "          '2': 2,\n",
      "          'cruise': 2,\n",
      "          'hardford': 2,\n",
      "          'pollack': 2,\n",
      "          'leelee': 2,\n",
      "          'sobieski': 2,\n",
      "          'nick': 2,\n",
      "          'inspired': 2,\n",
      "          'state': 2,\n",
      "          'ncruise': 2,\n",
      "          'scene': 2,\n",
      "          'two': 2,\n",
      "          'would': 2,\n",
      "          'suggest': 2,\n",
      "          'sex': 2,\n",
      "          'look': 2,\n",
      "          'translation': 2,\n",
      "          'dream': 2,\n",
      "          'makes': 2,\n",
      "          'shooting': 2,\n",
      "          'got': 2,\n",
      "          'lighting': 2,\n",
      "          'much': 2,\n",
      "          'looks': 2,\n",
      "          'nas': 2,\n",
      "          'good': 2,\n",
      "          'occur': 2,\n",
      "          'least': 2,\n",
      "          'apartment': 2,\n",
      "          'almost': 2,\n",
      "          'quite': 2,\n",
      "          'version': 2,\n",
      "          'supposed': 2,\n",
      "          'next': 2,\n",
      "          'little': 2,\n",
      "          'starts': 2,\n",
      "          'getting': 2,\n",
      "          'go': 2,\n",
      "          'old': 2,\n",
      "          'medical': 2,\n",
      "          'school': 2,\n",
      "          'flirting': 2,\n",
      "          'called': 2,\n",
      "          'day': 2,\n",
      "          'previous': 2,\n",
      "          'women': 2,\n",
      "          'nin': 2,\n",
      "          'patients': 2,\n",
      "          'daughter': 2,\n",
      "          'nwhen': 2,\n",
      "          'affair': 2,\n",
      "          'wife': 2,\n",
      "          'heads': 2,\n",
      "          'night': 2,\n",
      "          'meets': 2,\n",
      "          'girl': 2,\n",
      "          'father': 2,\n",
      "          'nafter': 2,\n",
      "          'woman': 2,\n",
      "          'together': 2,\n",
      "          'life': 2,\n",
      "          'point': 2,\n",
      "          'many': 2,\n",
      "          'major': 1,\n",
      "          'spoilers': 1,\n",
      "          'forwarned': 1,\n",
      "          'wont': 1,\n",
      "          'appear': 1,\n",
      "          'till': 1,\n",
      "          'later': 1,\n",
      "          'article': 1,\n",
      "          'youre': 1,\n",
      "          'safe': 1,\n",
      "          'neyes': 1,\n",
      "          'wide': 1,\n",
      "          '1999': 1,\n",
      "          'running': 1,\n",
      "          'hours': 1,\n",
      "          '39': 1,\n",
      "          '35': 1,\n",
      "          '1': 1,\n",
      "          'theatrical': 1,\n",
      "          'aspect': 1,\n",
      "          'nstarring': 1,\n",
      "          'tom': 1,\n",
      "          'dr': 1,\n",
      "          'nicole': 1,\n",
      "          'sidney': 1,\n",
      "          'todd': 1,\n",
      "          'field': 1,\n",
      "          'nightingale': 1,\n",
      "          'directed': 1,\n",
      "          'cowritten': 1,\n",
      "          'produced': 1,\n",
      "          'stanley': 1,\n",
      "          'traumnovelle': 1,\n",
      "          'arthur': 1,\n",
      "          'schnitzer': 1,\n",
      "          'interesting': 1,\n",
      "          'must': 1,\n",
      "          'first': 1,\n",
      "          'musnt': 1,\n",
      "          'believe': 1,\n",
      "          'rumors': 1,\n",
      "          'cross': 1,\n",
      "          'dresser': 1,\n",
      "          'doesnt': 1,\n",
      "          'shoot': 1,\n",
      "          'heroin': 1,\n",
      "          'theres': 1,\n",
      "          'aided': 1,\n",
      "          'therapist': 1,\n",
      "          'book': 1,\n",
      "          'written': 1,\n",
      "          'novel': 1,\n",
      "          'thing': 1,\n",
      "          'titled': 1,\n",
      "          'nthere': 1,\n",
      "          'noticable': 1,\n",
      "          'amount': 1,\n",
      "          'graininess': 1,\n",
      "          'nrather': 1,\n",
      "          'complain': 1,\n",
      "          'may': 1,\n",
      "          'already': 1,\n",
      "          'style': 1,\n",
      "          'gather': 1,\n",
      "          'kick': 1,\n",
      "          'natural': 1,\n",
      "          'light': 1,\n",
      "          'could': 1,\n",
      "          'like': 1,\n",
      "          'pushed': 1,\n",
      "          'stops': 1,\n",
      "          'add': 1,\n",
      "          'grain': 1,\n",
      "          'brighten': 1,\n",
      "          'slightly': 1,\n",
      "          'auteur': 1,\n",
      "          'stickler': 1,\n",
      "          'details': 1,\n",
      "          'seemed': 1,\n",
      "          'lax': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'bloopersflubs': 1,\n",
      "          'nyou': 1,\n",
      "          'lots': 1,\n",
      "          'boom': 1,\n",
      "          'shots': 1,\n",
      "          'reflection': 1,\n",
      "          'camera': 1,\n",
      "          'twice': 1,\n",
      "          'n16': 1,\n",
      "          'months': 1,\n",
      "          'nwow': 1,\n",
      "          'nreflection': 1,\n",
      "          'biggest': 1,\n",
      "          'killer': 1,\n",
      "          'ntheir': 1,\n",
      "          'everything': 1,\n",
      "          'casts': 1,\n",
      "          'reflections': 1,\n",
      "          'crew': 1,\n",
      "          'seen': 1,\n",
      "          'glaringly': 1,\n",
      "          'none': 1,\n",
      "          'topic': 1,\n",
      "          'heated': 1,\n",
      "          'discussion': 1,\n",
      "          'saw': 1,\n",
      "          'austin': 1,\n",
      "          'powers': 1,\n",
      "          'perfectly': 1,\n",
      "          'frank': 1,\n",
      "          'unless': 1,\n",
      "          'know': 1,\n",
      "          'overlays': 1,\n",
      "          'youll': 1,\n",
      "          'probably': 1,\n",
      "          'ntwo': 1,\n",
      "          'girls': 1,\n",
      "          'standing': 1,\n",
      "          'suspicious': 1,\n",
      "          'wait': 1,\n",
      "          'unrated': 1,\n",
      "          'video': 1,\n",
      "          'way': 1,\n",
      "          'nspoilers': 1,\n",
      "          'ready': 1,\n",
      "          'xmas': 1,\n",
      "          'soiree': 1,\n",
      "          'elegant': 1,\n",
      "          'seems': 1,\n",
      "          'storagehouse': 1,\n",
      "          'equipment': 1,\n",
      "          'actually': 1,\n",
      "          'owned': 1,\n",
      "          'runs': 1,\n",
      "          'partys': 1,\n",
      "          'entertainment': 1,\n",
      "          'nsoon': 1,\n",
      "          'others': 1,\n",
      "          'thinking': 1,\n",
      "          'noticed': 1,\n",
      "          'help': 1,\n",
      "          'partygoer': 1,\n",
      "          'casually': 1,\n",
      "          'smoking': 1,\n",
      "          'marijunana': 1,\n",
      "          'bedroom': 1,\n",
      "          'discuss': 1,\n",
      "          'nights': 1,\n",
      "          'flirtations': 1,\n",
      "          'discover': 1,\n",
      "          'knew': 1,\n",
      "          'talking': 1,\n",
      "          'provide': 1,\n",
      "          'relationship': 1,\n",
      "          'extremely': 1,\n",
      "          'angry': 1,\n",
      "          'hazy': 1,\n",
      "          'tells': 1,\n",
      "          'acted': 1,\n",
      "          'cheat': 1,\n",
      "          'caring': 1,\n",
      "          'possible': 1,\n",
      "          'aftereffects': 1,\n",
      "          'away': 1,\n",
      "          'dies': 1,\n",
      "          'goes': 1,\n",
      "          'console': 1,\n",
      "          'engaged': 1,\n",
      "          'plea': 1,\n",
      "          'love': 1,\n",
      "          'affection': 1,\n",
      "          'struck': 1,\n",
      "          'images': 1,\n",
      "          'never': 1,\n",
      "          'occured': 1,\n",
      "          'naval': 1,\n",
      "          'officer': 1,\n",
      "          'sees': 1,\n",
      "          'betrayal': 1,\n",
      "          'continue': 1,\n",
      "          'interrupted': 1,\n",
      "          'strolls': 1,\n",
      "          'encounters': 1,\n",
      "          'nseeing': 1,\n",
      "          'arise': 1,\n",
      "          'toy': 1,\n",
      "          'around': 1,\n",
      "          'act': 1,\n",
      "          'ensues': 1,\n",
      "          'calls': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'breaks': 1,\n",
      "          'date': 1,\n",
      "          'back': 1,\n",
      "          'passes': 1,\n",
      "          'lounge': 1,\n",
      "          'notices': 1,\n",
      "          'buddy': 1,\n",
      "          'playing': 1,\n",
      "          'reveals': 1,\n",
      "          'extra': 1,\n",
      "          'scratch': 1,\n",
      "          'plays': 1,\n",
      "          'parties': 1,\n",
      "          'blindfolded': 1,\n",
      "          'intrigued': 1,\n",
      "          'wants': 1,\n",
      "          'nnick': 1,\n",
      "          'reluctantly': 1,\n",
      "          'sets': 1,\n",
      "          'directions': 1,\n",
      "          'password': 1,\n",
      "          'nwhat': 1,\n",
      "          'short': 1,\n",
      "          'meeting': 1,\n",
      "          'obtains': 1,\n",
      "          'costume': 1,\n",
      "          'drawn': 1,\n",
      "          'eye': 1,\n",
      "          'age': 1,\n",
      "          'prescence': 1,\n",
      "          'deter': 1,\n",
      "          'happening': 1,\n",
      "          'say': 1,\n",
      "          'partaking': 1,\n",
      "          'religious': 1,\n",
      "          'right': 1,\n",
      "          'men': 1,\n",
      "          'pair': 1,\n",
      "          'orgy': 1,\n",
      "          'end': 1,\n",
      "          'orgies': 1,\n",
      "          'na': 1,\n",
      "          'warns': 1,\n",
      "          'disguise': 1,\n",
      "          'leave': 1,\n",
      "          'exposed': 1,\n",
      "          'fraud': 1,\n",
      "          'detained': 1,\n",
      "          'second': 1,\n",
      "          'warning': 1,\n",
      "          'outed': 1,\n",
      "          'group': 1,\n",
      "          'hides': 1,\n",
      "          'evidence': 1,\n",
      "          'evenings': 1,\n",
      "          'nunable': 1,\n",
      "          'carry': 1,\n",
      "          'tries': 1,\n",
      "          'piece': 1,\n",
      "          'process': 1,\n",
      "          'finds': 1,\n",
      "          'disappeared': 1,\n",
      "          'possibly': 1,\n",
      "          'danger': 1,\n",
      "          'warned': 1,\n",
      "          'died': 1,\n",
      "          'nim': 1,\n",
      "          'trying': 1,\n",
      "          'save': 1,\n",
      "          'worth': 1,\n",
      "          'sitting': 1,\n",
      "          'get': 1,\n",
      "          '100': 1,\n",
      "          'despite': 1,\n",
      "          'strong': 1,\n",
      "          'family': 1,\n",
      "          'message': 1,\n",
      "          'behind': 1,\n",
      "          'nit': 1,\n",
      "          'hard': 1,\n",
      "          'pidgeonhole': 1,\n",
      "          'certain': 1,\n",
      "          'kind': 1,\n",
      "          'nits': 1,\n",
      "          'nudity': 1,\n",
      "          'drugs': 1,\n",
      "          'immoralistic': 1,\n",
      "          'values': 1,\n",
      "          'nbut': 1,\n",
      "          'serve': 1,\n",
      "          'show': 1,\n",
      "          'bad': 1,\n",
      "          'ones': 1,\n",
      "          'recommend': 1,\n",
      "          'highly': 1,\n",
      "          'merits': 1,\n",
      "          'rarely': 1,\n",
      "          'longer': 1,\n",
      "          '5': 1,\n",
      "          'opening': 1,\n",
      "          'secrecy': 1,\n",
      "          'shrouded': 1,\n",
      "          'hopefully': 1,\n",
      "          'apparent': 1,\n",
      "          'kept': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'robin': 6,\n",
      "          'film': 5,\n",
      "          'picture': 5,\n",
      "          'nand': 4,\n",
      "          'hood': 4,\n",
      "          'nrobin': 4,\n",
      "          'old': 3,\n",
      "          'even': 3,\n",
      "          'high': 3,\n",
      "          'story': 3,\n",
      "          'best': 3,\n",
      "          'acting': 3,\n",
      "          'nthe': 3,\n",
      "          'movie': 3,\n",
      "          'one': 2,\n",
      "          'kids': 2,\n",
      "          'nalthough': 2,\n",
      "          'films': 2,\n",
      "          'viewed': 2,\n",
      "          'ones': 2,\n",
      "          'color': 2,\n",
      "          'family': 2,\n",
      "          'classic': 2,\n",
      "          'section': 2,\n",
      "          'adventures': 2,\n",
      "          'three': 2,\n",
      "          'sir': 2,\n",
      "          'smile': 2,\n",
      "          'charms': 2,\n",
      "          'audience': 2,\n",
      "          'clearly': 2,\n",
      "          'popular': 2,\n",
      "          'rhodes': 2,\n",
      "          'much': 2,\n",
      "          'without': 2,\n",
      "          'rich': 2,\n",
      "          'poor': 2,\n",
      "          'gives': 2,\n",
      "          'nin': 2,\n",
      "          'king': 2,\n",
      "          'role': 2,\n",
      "          'scene': 2,\n",
      "          'win': 2,\n",
      "          'doesnt': 2,\n",
      "          'like': 2,\n",
      "          'people': 2,\n",
      "          'bloody': 2,\n",
      "          'nothing': 2,\n",
      "          'favorite': 2,\n",
      "          'fun': 1,\n",
      "          'activity': 1,\n",
      "          'parents': 1,\n",
      "          'holidays': 1,\n",
      "          'suggest': 1,\n",
      "          'see': 1,\n",
      "          'interest': 1,\n",
      "          'blackandwhite': 1,\n",
      "          'frequently': 1,\n",
      "          'suspect': 1,\n",
      "          'greeted': 1,\n",
      "          'open': 1,\n",
      "          'mind': 1,\n",
      "          'find': 1,\n",
      "          'colorful': 1,\n",
      "          'action': 1,\n",
      "          'six': 1,\n",
      "          'decades': 1,\n",
      "          'ago': 1,\n",
      "          'real': 1,\n",
      "          'possibility': 1,\n",
      "          'take': 1,\n",
      "          'home': 1,\n",
      "          'hit': 1,\n",
      "          'nso': 1,\n",
      "          'wandered': 1,\n",
      "          'local': 1,\n",
      "          'video': 1,\n",
      "          'store': 1,\n",
      "          'day': 1,\n",
      "          'picked': 1,\n",
      "          'copy': 1,\n",
      "          'spirited': 1,\n",
      "          'version': 1,\n",
      "          'walter': 1,\n",
      "          'scott': 1,\n",
      "          'nnominated': 1,\n",
      "          '1938': 1,\n",
      "          'academy': 1,\n",
      "          'award': 1,\n",
      "          'winner': 1,\n",
      "          'oscars': 1,\n",
      "          'erich': 1,\n",
      "          'wolfgang': 1,\n",
      "          'korngolds': 1,\n",
      "          'melodramatic': 1,\n",
      "          'music': 1,\n",
      "          'ralph': 1,\n",
      "          'dawsons': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'editing': 1,\n",
      "          'carl': 1,\n",
      "          'jules': 1,\n",
      "          'weyls': 1,\n",
      "          'lush': 1,\n",
      "          'sets': 1,\n",
      "          'probably': 1,\n",
      "          'remembered': 1,\n",
      "          'errol': 1,\n",
      "          'flynns': 1,\n",
      "          'charismatic': 1,\n",
      "          'locksley': 1,\n",
      "          'k': 1,\n",
      "          'nflynn': 1,\n",
      "          'handsome': 1,\n",
      "          'figure': 1,\n",
      "          'toothy': 1,\n",
      "          'time': 1,\n",
      "          'nlet': 1,\n",
      "          'cut': 1,\n",
      "          'chase': 1,\n",
      "          'say': 1,\n",
      "          'tape': 1,\n",
      "          'indeed': 1,\n",
      "          'household': 1,\n",
      "          'littlest': 1,\n",
      "          'jeffrey': 1,\n",
      "          'age': 1,\n",
      "          '8': 1,\n",
      "          'liked': 1,\n",
      "          'least': 1,\n",
      "          'times': 1,\n",
      "          'maybe': 1,\n",
      "          'nill': 1,\n",
      "          'let': 1,\n",
      "          'discuss': 1,\n",
      "          'fascination': 1,\n",
      "          'usual': 1,\n",
      "          'end': 1,\n",
      "          'review': 1,\n",
      "          'nsimply': 1,\n",
      "          'stated': 1,\n",
      "          'derives': 1,\n",
      "          'success': 1,\n",
      "          'genre': 1,\n",
      "          'swashbuckler': 1,\n",
      "          'eartoear': 1,\n",
      "          'fights': 1,\n",
      "          'hundred': 1,\n",
      "          'men': 1,\n",
      "          'scratch': 1,\n",
      "          'considered': 1,\n",
      "          'little': 1,\n",
      "          '1930s': 1,\n",
      "          'james': 1,\n",
      "          'bond': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'raise': 1,\n",
      "          'level': 1,\n",
      "          'steals': 1,\n",
      "          'every': 1,\n",
      "          'schoolchild': 1,\n",
      "          'knows': 1,\n",
      "          'however': 1,\n",
      "          'seems': 1,\n",
      "          'less': 1,\n",
      "          'interested': 1,\n",
      "          'income': 1,\n",
      "          'redistribution': 1,\n",
      "          'fighting': 1,\n",
      "          'country': 1,\n",
      "          'courage': 1,\n",
      "          'athletic': 1,\n",
      "          'skills': 1,\n",
      "          'serves': 1,\n",
      "          'model': 1,\n",
      "          'lovely': 1,\n",
      "          'olivia': 1,\n",
      "          'de': 1,\n",
      "          'havilland': 1,\n",
      "          'playing': 1,\n",
      "          'dreamyeyed': 1,\n",
      "          'lady': 1,\n",
      "          'marian': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'fitzswalter': 1,\n",
      "          'heavy': 1,\n",
      "          'romantic': 1,\n",
      "          'overtones': 1,\n",
      "          'nfilmed': 1,\n",
      "          'typical': 1,\n",
      "          'richly': 1,\n",
      "          'oversaturated': 1,\n",
      "          'colors': 1,\n",
      "          'produced': 1,\n",
      "          'early': 1,\n",
      "          'technicolor': 1,\n",
      "          'flesh': 1,\n",
      "          'tones': 1,\n",
      "          'overly': 1,\n",
      "          'pink': 1,\n",
      "          'subtleties': 1,\n",
      "          'match': 1,\n",
      "          'perfectly': 1,\n",
      "          'wonderfully': 1,\n",
      "          'exaggerated': 1,\n",
      "          'players': 1,\n",
      "          'nwho': 1,\n",
      "          'wouldnt': 1,\n",
      "          'fall': 1,\n",
      "          'shows': 1,\n",
      "          'incognito': 1,\n",
      "          'archery': 1,\n",
      "          'contest': 1,\n",
      "          'outcome': 1,\n",
      "          'preordained': 1,\n",
      "          'course': 1,\n",
      "          'splitting': 1,\n",
      "          'mans': 1,\n",
      "          'arrow': 1,\n",
      "          'nwatching': 1,\n",
      "          'today': 1,\n",
      "          'provide': 1,\n",
      "          'jarring': 1,\n",
      "          'moments': 1,\n",
      "          'nsherlock': 1,\n",
      "          'holmes': 1,\n",
      "          'villain': 1,\n",
      "          'guy': 1,\n",
      "          'gisbourne': 1,\n",
      "          'example': 1,\n",
      "          'seem': 1,\n",
      "          'right': 1,\n",
      "          'basil': 1,\n",
      "          'rathbone': 1,\n",
      "          'reallife': 1,\n",
      "          'identity': 1,\n",
      "          'outside': 1,\n",
      "          'famous': 1,\n",
      "          'wigs': 1,\n",
      "          'makeup': 1,\n",
      "          'department': 1,\n",
      "          'bad': 1,\n",
      "          'look': 1,\n",
      "          'rejects': 1,\n",
      "          'mel': 1,\n",
      "          'brooks': 1,\n",
      "          'comedy': 1,\n",
      "          'nas': 1,\n",
      "          'cinema': 1,\n",
      "          'era': 1,\n",
      "          'die': 1,\n",
      "          'gentle': 1,\n",
      "          'prick': 1,\n",
      "          'sword': 1,\n",
      "          'nasty': 1,\n",
      "          'holes': 1,\n",
      "          'spoil': 1,\n",
      "          'wardrobe': 1,\n",
      "          'looks': 1,\n",
      "          'nbad': 1,\n",
      "          'guys': 1,\n",
      "          'banished': 1,\n",
      "          'rather': 1,\n",
      "          'killed': 1,\n",
      "          'lovers': 1,\n",
      "          'go': 1,\n",
      "          'handinhand': 1,\n",
      "          'explicitly': 1,\n",
      "          'sexual': 1,\n",
      "          'kissing': 1,\n",
      "          'result': 1,\n",
      "          'wonderful': 1,\n",
      "          'fairy': 1,\n",
      "          'tale': 1,\n",
      "          'delightful': 1,\n",
      "          'cartoonish': 1,\n",
      "          'figures': 1,\n",
      "          'nhollywood': 1,\n",
      "          'rarely': 1,\n",
      "          'makes': 1,\n",
      "          'quality': 1,\n",
      "          'anymore': 1,\n",
      "          'try': 1,\n",
      "          'savor': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '42': 1,\n",
      "          'nit': 1,\n",
      "          'rated': 1,\n",
      "          'containing': 1,\n",
      "          'absolutely': 1,\n",
      "          'offensive': 1,\n",
      "          'would': 1,\n",
      "          'get': 1,\n",
      "          'g': 1,\n",
      "          'rating': 1,\n",
      "          'fine': 1,\n",
      "          'ages': 1,\n",
      "          'njeffrey': 1,\n",
      "          'thinks': 1,\n",
      "          'great': 1,\n",
      "          'nhe': 1,\n",
      "          'recommends': 1,\n",
      "          'particularly': 1,\n",
      "          'likely': 1,\n",
      "          'pictures': 1,\n",
      "          'hates': 1,\n",
      "          'sight': 1,\n",
      "          'blood': 1,\n",
      "          'movies': 1,\n",
      "          'nhis': 1,\n",
      "          'parts': 1,\n",
      "          'battles': 1,\n",
      "          'ending': 1,\n",
      "          'characters': 1,\n",
      "          'richard': 1,\n",
      "          'ian': 1,\n",
      "          'hunter': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'one': 6,\n",
      "          'film': 6,\n",
      "          'little': 6,\n",
      "          'zorro': 5,\n",
      "          'action': 4,\n",
      "          'banderas': 4,\n",
      "          'movie': 3,\n",
      "          'comedy': 3,\n",
      "          'nhowever': 3,\n",
      "          'bad': 3,\n",
      "          'jones': 3,\n",
      "          'put': 3,\n",
      "          'plot': 3,\n",
      "          'adventure': 2,\n",
      "          'money': 2,\n",
      "          'big': 2,\n",
      "          'nhopkins': 2,\n",
      "          'vega': 2,\n",
      "          'rafael': 2,\n",
      "          'montero': 2,\n",
      "          'wilson': 2,\n",
      "          'also': 2,\n",
      "          'still': 2,\n",
      "          'wants': 2,\n",
      "          'hes': 2,\n",
      "          'nbanderas': 2,\n",
      "          'letscher': 2,\n",
      "          'keeps': 2,\n",
      "          'scene': 2,\n",
      "          'sword': 2,\n",
      "          'hopkins': 2,\n",
      "          'chemistry': 2,\n",
      "          'seems': 2,\n",
      "          'excellent': 2,\n",
      "          'seem': 2,\n",
      "          'dimensional': 2,\n",
      "          'guy': 2,\n",
      "          'provides': 2,\n",
      "          'ntheres': 2,\n",
      "          'together': 2,\n",
      "          'well': 2,\n",
      "          'nalthough': 2,\n",
      "          'theres': 2,\n",
      "          'barely': 2,\n",
      "          'nit': 2,\n",
      "          'gold': 2,\n",
      "          'swashbuckling': 1,\n",
      "          'enjoyed': 1,\n",
      "          'children': 1,\n",
      "          'adults': 1,\n",
      "          'nsteven': 1,\n",
      "          'spielberg': 1,\n",
      "          'may': 1,\n",
      "          'directed': 1,\n",
      "          'executive': 1,\n",
      "          'produced': 1,\n",
      "          'touch': 1,\n",
      "          'certainly': 1,\n",
      "          'evident': 1,\n",
      "          'nand': 1,\n",
      "          'knows': 1,\n",
      "          'making': 1,\n",
      "          'winner': 1,\n",
      "          'sees': 1,\n",
      "          'mask': 1,\n",
      "          'hallmarks': 1,\n",
      "          'blockbuster': 1,\n",
      "          'funny': 1,\n",
      "          'pacing': 1,\n",
      "          'rollercoaster': 1,\n",
      "          'plays': 1,\n",
      "          'diego': 1,\n",
      "          'de': 1,\n",
      "          'la': 1,\n",
      "          'otherwise': 1,\n",
      "          'known': 1,\n",
      "          'na': 1,\n",
      "          'fighter': 1,\n",
      "          'people': 1,\n",
      "          'eventually': 1,\n",
      "          'captured': 1,\n",
      "          'stuart': 1,\n",
      "          'unintentionally': 1,\n",
      "          'kills': 1,\n",
      "          'wife': 1,\n",
      "          'cuts': 1,\n",
      "          'twenty': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'dead': 1,\n",
      "          'far': 1,\n",
      "          'old': 1,\n",
      "          'trains': 1,\n",
      "          'thief': 1,\n",
      "          'alejandro': 1,\n",
      "          'murrieta': 1,\n",
      "          'become': 1,\n",
      "          'new': 1,\n",
      "          'motive': 1,\n",
      "          'nto': 1,\n",
      "          'avenge': 1,\n",
      "          'death': 1,\n",
      "          'brother': 1,\n",
      "          'killed': 1,\n",
      "          'hands': 1,\n",
      "          'captain': 1,\n",
      "          'love': 1,\n",
      "          'matthew': 1,\n",
      "          'rather': 1,\n",
      "          'tastefully': 1,\n",
      "          'head': 1,\n",
      "          'jar': 1,\n",
      "          'graphic': 1,\n",
      "          'scenes': 1,\n",
      "          'family': 1,\n",
      "          'nwith': 1,\n",
      "          'set': 1,\n",
      "          'goes': 1,\n",
      "          'full': 1,\n",
      "          'blast': 1,\n",
      "          'fights': 1,\n",
      "          'aplenty': 1,\n",
      "          'witty': 1,\n",
      "          'liners': 1,\n",
      "          'marvellous': 1,\n",
      "          'two': 1,\n",
      "          'zorros': 1,\n",
      "          'playing': 1,\n",
      "          'ease': 1,\n",
      "          'come': 1,\n",
      "          'better': 1,\n",
      "          'work': 1,\n",
      "          'nas': 1,\n",
      "          'guys': 1,\n",
      "          'go': 1,\n",
      "          'shtick': 1,\n",
      "          'average': 1,\n",
      "          'way': 1,\n",
      "          'audience': 1,\n",
      "          'hate': 1,\n",
      "          'cant': 1,\n",
      "          'ncatherine': 1,\n",
      "          'zetajones': 1,\n",
      "          'pops': 1,\n",
      "          'daughter': 1,\n",
      "          'although': 1,\n",
      "          'usual': 1,\n",
      "          'female': 1,\n",
      "          'lead': 1,\n",
      "          'delivers': 1,\n",
      "          'charming': 1,\n",
      "          'note': 1,\n",
      "          'performance': 1,\n",
      "          'delightful': 1,\n",
      "          'fight': 1,\n",
      "          'every': 1,\n",
      "          'swipe': 1,\n",
      "          'item': 1,\n",
      "          'clothing': 1,\n",
      "          'gets': 1,\n",
      "          'slashed': 1,\n",
      "          'clothes': 1,\n",
      "          'fall': 1,\n",
      "          'director': 1,\n",
      "          'fresh': 1,\n",
      "          'enjoyable': 1,\n",
      "          'goldeneye': 1,\n",
      "          '1995': 1,\n",
      "          'handles': 1,\n",
      "          'perfectly': 1,\n",
      "          'done': 1,\n",
      "          'fast': 1,\n",
      "          'paced': 1,\n",
      "          'across': 1,\n",
      "          'cast': 1,\n",
      "          'help': 1,\n",
      "          'lot': 1,\n",
      "          'direction': 1,\n",
      "          'outstanding': 1,\n",
      "          'long': 1,\n",
      "          'chugging': 1,\n",
      "          'along': 1,\n",
      "          'dull': 1,\n",
      "          'moment': 1,\n",
      "          'indulgent': 1,\n",
      "          'could': 1,\n",
      "          'trimmed': 1,\n",
      "          'manages': 1,\n",
      "          'hold': 1,\n",
      "          'attention': 1,\n",
      "          'thankfully': 1,\n",
      "          'charm': 1,\n",
      "          'holds': 1,\n",
      "          'right': 1,\n",
      "          'last': 1,\n",
      "          'reel': 1,\n",
      "          'nscreenwriters': 1,\n",
      "          'john': 1,\n",
      "          'eskow': 1,\n",
      "          'ted': 1,\n",
      "          'elliot': 1,\n",
      "          'terry': 1,\n",
      "          'rosio': 1,\n",
      "          'unfortunately': 1,\n",
      "          'written': 1,\n",
      "          'cliched': 1,\n",
      "          'script': 1,\n",
      "          'theyve': 1,\n",
      "          'bought': 1,\n",
      "          'date': 1,\n",
      "          'explosions': 1,\n",
      "          'wild': 1,\n",
      "          'existent': 1,\n",
      "          'lots': 1,\n",
      "          'sub': 1,\n",
      "          'plots': 1,\n",
      "          'hanging': 1,\n",
      "          'around': 1,\n",
      "          'nothing': 1,\n",
      "          'substantial': 1,\n",
      "          'bring': 1,\n",
      "          'main': 1,\n",
      "          'story': 1,\n",
      "          'fact': 1,\n",
      "          'buy': 1,\n",
      "          'california': 1,\n",
      "          'using': 1,\n",
      "          'stolen': 1,\n",
      "          'buying': 1,\n",
      "          'land': 1,\n",
      "          'nthis': 1,\n",
      "          'sets': 1,\n",
      "          'temple': 1,\n",
      "          'doom': 1,\n",
      "          'type': 1,\n",
      "          'see': 1,\n",
      "          'peasants': 1,\n",
      "          'slave': 1,\n",
      "          'driven': 1,\n",
      "          'getting': 1,\n",
      "          'mines': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'nearly': 1,\n",
      "          'hour': 1,\n",
      "          'never': 1,\n",
      "          'quite': 1,\n",
      "          'sure': 1,\n",
      "          'going': 1,\n",
      "          'nin': 1,\n",
      "          'end': 1,\n",
      "          'however': 1,\n",
      "          'spades': 1,\n",
      "          'suitable': 1,\n",
      "          'everyone': 1,\n",
      "          'guilt': 1,\n",
      "          'behind': 1,\n",
      "          'spielbergs': 1,\n",
      "          'bank': 1,\n",
      "          'account': 1,\n",
      "          'nyou': 1,\n",
      "          'wont': 1,\n",
      "          'regret': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'generation': 7,\n",
      "          'without': 5,\n",
      "          'film': 5,\n",
      "          'dean': 5,\n",
      "          'rebel': 4,\n",
      "          'cause': 4,\n",
      "          'nthis': 4,\n",
      "          'america': 3,\n",
      "          'shows': 3,\n",
      "          'also': 3,\n",
      "          'stark': 3,\n",
      "          'past': 3,\n",
      "          'american': 2,\n",
      "          'everyone': 2,\n",
      "          'relate': 2,\n",
      "          'different': 2,\n",
      "          'way': 2,\n",
      "          'belong': 2,\n",
      "          'universal': 2,\n",
      "          'emotions': 2,\n",
      "          'nno': 2,\n",
      "          'matter': 2,\n",
      "          'actions': 2,\n",
      "          'nin': 2,\n",
      "          'strong': 2,\n",
      "          'change': 2,\n",
      "          'people': 2,\n",
      "          'could': 2,\n",
      "          'parents': 2,\n",
      "          'neven': 2,\n",
      "          'scene': 2,\n",
      "          'wood': 2,\n",
      "          'cool': 2,\n",
      "          'coolness': 2,\n",
      "          'nthe': 2,\n",
      "          'still': 2,\n",
      "          'even': 2,\n",
      "          'end': 2,\n",
      "          'important': 1,\n",
      "          'history': 1,\n",
      "          'true': 1,\n",
      "          'analysis': 1,\n",
      "          'youth': 1,\n",
      "          'ages': 1,\n",
      "          'neveryone': 1,\n",
      "          'feels': 1,\n",
      "          'dont': 1,\n",
      "          'places': 1,\n",
      "          'successfully': 1,\n",
      "          'screen': 1,\n",
      "          'feelings': 1,\n",
      "          'present': 1,\n",
      "          'james': 1,\n",
      "          'admired': 1,\n",
      "          'represents': 1,\n",
      "          'us': 1,\n",
      "          'would': 1,\n",
      "          'execute': 1,\n",
      "          'minds': 1,\n",
      "          'try': 1,\n",
      "          'right': 1,\n",
      "          'thing': 1,\n",
      "          'like': 1,\n",
      "          'deans': 1,\n",
      "          'jim': 1,\n",
      "          'nnot': 1,\n",
      "          'display': 1,\n",
      "          'suffered': 1,\n",
      "          'uniqe': 1,\n",
      "          'pattern': 1,\n",
      "          'social': 1,\n",
      "          'structure': 1,\n",
      "          'neach': 1,\n",
      "          'looks': 1,\n",
      "          'connection': 1,\n",
      "          'times': 1,\n",
      "          'response': 1,\n",
      "          'popular': 1,\n",
      "          'grows': 1,\n",
      "          'older': 1,\n",
      "          'newer': 1,\n",
      "          'breeds': 1,\n",
      "          'look': 1,\n",
      "          'light': 1,\n",
      "          'friends': 1,\n",
      "          'never': 1,\n",
      "          'form': 1,\n",
      "          'relationship': 1,\n",
      "          'insisted': 1,\n",
      "          'rebellious': 1,\n",
      "          'troublesome': 1,\n",
      "          'teens': 1,\n",
      "          'believe': 1,\n",
      "          'one': 1,\n",
      "          'humorous': 1,\n",
      "          'girlfriend': 1,\n",
      "          'judy': 1,\n",
      "          'natalie': 1,\n",
      "          'pal': 1,\n",
      "          'plato': 1,\n",
      "          'sal': 1,\n",
      "          'mineo': 1,\n",
      "          'pretend': 1,\n",
      "          'adults': 1,\n",
      "          'nthey': 1,\n",
      "          'use': 1,\n",
      "          'upper': 1,\n",
      "          'class': 1,\n",
      "          'british': 1,\n",
      "          'accents': 1,\n",
      "          'conversations': 1,\n",
      "          'make': 1,\n",
      "          'appear': 1,\n",
      "          'kids': 1,\n",
      "          'good': 1,\n",
      "          'ignored': 1,\n",
      "          'complete': 1,\n",
      "          'opposite': 1,\n",
      "          'another': 1,\n",
      "          'nspeaking': 1,\n",
      "          'behalf': 1,\n",
      "          'feel': 1,\n",
      "          'lost': 1,\n",
      "          'lot': 1,\n",
      "          'perspective': 1,\n",
      "          'years': 1,\n",
      "          'grown': 1,\n",
      "          'ones': 1,\n",
      "          'seem': 1,\n",
      "          'lionize': 1,\n",
      "          'members': 1,\n",
      "          'ngoes': 1,\n",
      "          'brando': 1,\n",
      "          'redford': 1,\n",
      "          'deniro': 1,\n",
      "          'ni': 1,\n",
      "          'imagine': 1,\n",
      "          'vaguely': 1,\n",
      "          'matt': 1,\n",
      "          'damon': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'brad': 1,\n",
      "          'pitt': 1,\n",
      "          'viewed': 1,\n",
      "          'mid': 1,\n",
      "          'point': 1,\n",
      "          'twenty': 1,\n",
      "          'first': 1,\n",
      "          'century': 1,\n",
      "          'nwill': 1,\n",
      "          'remembered': 1,\n",
      "          'newcomers': 1,\n",
      "          'forgotten': 1,\n",
      "          'nany': 1,\n",
      "          'sparks': 1,\n",
      "          'kind': 1,\n",
      "          'thought': 1,\n",
      "          'certainly': 1,\n",
      "          'milestone': 1,\n",
      "          'ridiculous': 1,\n",
      "          'scenes': 1,\n",
      "          'game': 1,\n",
      "          'chicken': 1,\n",
      "          'really': 1,\n",
      "          'act': 1,\n",
      "          'unbelievable': 1,\n",
      "          'conclusion': 1,\n",
      "          'abandoned': 1,\n",
      "          'mansion': 1,\n",
      "          'silly': 1,\n",
      "          'romance': 1,\n",
      "          'declares': 1,\n",
      "          'love': 1,\n",
      "          'talking': 1,\n",
      "          'couple': 1,\n",
      "          'hours': 1,\n",
      "          'fabulous': 1,\n",
      "          'acting': 1,\n",
      "          'believable': 1,\n",
      "          'wonder': 1,\n",
      "          'considered': 1,\n",
      "          'epitome': 1,\n",
      "          'nnow': 1,\n",
      "          'however': 1,\n",
      "          'fading': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mamet': 5,\n",
      "          'winslow': 5,\n",
      "          'still': 4,\n",
      "          'david': 3,\n",
      "          'seems': 3,\n",
      "          'boy': 3,\n",
      "          'arthur': 3,\n",
      "          'man': 3,\n",
      "          'n': 3,\n",
      "          'case': 3,\n",
      "          'fairly': 3,\n",
      "          'make': 3,\n",
      "          'films': 3,\n",
      "          'movie': 3,\n",
      "          'director': 2,\n",
      "          'dialogue': 2,\n",
      "          'style': 2,\n",
      "          'nearly': 2,\n",
      "          'require': 2,\n",
      "          'look': 2,\n",
      "          'plot': 2,\n",
      "          'concealed': 2,\n",
      "          'even': 2,\n",
      "          'real': 2,\n",
      "          'time': 2,\n",
      "          'century': 2,\n",
      "          'nhe': 2,\n",
      "          'ronnie': 2,\n",
      "          'didnt': 2,\n",
      "          'enough': 2,\n",
      "          'oldest': 2,\n",
      "          'daughter': 2,\n",
      "          'pidgeon': 2,\n",
      "          'help': 2,\n",
      "          'sir': 2,\n",
      "          'robert': 2,\n",
      "          'morton': 2,\n",
      "          'nit': 2,\n",
      "          'nbut': 2,\n",
      "          'nthe': 2,\n",
      "          'mamets': 2,\n",
      "          'wonderful': 2,\n",
      "          'performance': 2,\n",
      "          'nhis': 2,\n",
      "          'game': 2,\n",
      "          'like': 2,\n",
      "          'courtroom': 2,\n",
      "          'without': 2,\n",
      "          'long': 1,\n",
      "          'favorite': 1,\n",
      "          'screenwriter': 1,\n",
      "          'nwith': 1,\n",
      "          'distinctive': 1,\n",
      "          'often': 1,\n",
      "          'ingenious': 1,\n",
      "          'laid': 1,\n",
      "          'back': 1,\n",
      "          'direction': 1,\n",
      "          'movies': 1,\n",
      "          'absolutely': 1,\n",
      "          'irresistible': 1,\n",
      "          'nsome': 1,\n",
      "          'tend': 1,\n",
      "          'thickly': 1,\n",
      "          'layered': 1,\n",
      "          'deceptive': 1,\n",
      "          'productions': 1,\n",
      "          'audience': 1,\n",
      "          'film': 1,\n",
      "          'less': 1,\n",
      "          'superficial': 1,\n",
      "          'manner': 1,\n",
      "          'order': 1,\n",
      "          'discern': 1,\n",
      "          'message': 1,\n",
      "          'sometimes': 1,\n",
      "          'storyline': 1,\n",
      "          'nand': 1,\n",
      "          'although': 1,\n",
      "          'new': 1,\n",
      "          'project': 1,\n",
      "          'slightly': 1,\n",
      "          'conspicuous': 1,\n",
      "          'endeavors': 1,\n",
      "          'brilliantly': 1,\n",
      "          'complex': 1,\n",
      "          'consistently': 1,\n",
      "          'riveting': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'honor': 1,\n",
      "          'sacrifice': 1,\n",
      "          'difference': 1,\n",
      "          'commonly': 1,\n",
      "          'known': 1,\n",
      "          'justice': 1,\n",
      "          'right': 1,\n",
      "          'noh': 1,\n",
      "          'rated': 1,\n",
      "          'g': 1,\n",
      "          'nincidentally': 1,\n",
      "          'first': 1,\n",
      "          'decided': 1,\n",
      "          'adapt': 1,\n",
      "          'someone': 1,\n",
      "          'elses': 1,\n",
      "          'work': 1,\n",
      "          'namely': 1,\n",
      "          'play': 1,\n",
      "          'terrence': 1,\n",
      "          'rattigan': 1,\n",
      "          'set': 1,\n",
      "          '19th': 1,\n",
      "          'casts': 1,\n",
      "          'nigel': 1,\n",
      "          'hawthorne': 1,\n",
      "          'lead': 1,\n",
      "          'role': 1,\n",
      "          'rich': 1,\n",
      "          'aging': 1,\n",
      "          'finds': 1,\n",
      "          '14': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'son': 1,\n",
      "          'kicked': 1,\n",
      "          'naval': 1,\n",
      "          'academy': 1,\n",
      "          'allegedly': 1,\n",
      "          'stealing': 1,\n",
      "          '5': 1,\n",
      "          'shilling': 1,\n",
      "          'postal': 1,\n",
      "          'note': 1,\n",
      "          'asks': 1,\n",
      "          'father': 1,\n",
      "          'answers': 1,\n",
      "          'nthats': 1,\n",
      "          'rebecca': 1,\n",
      "          'immediately': 1,\n",
      "          'starts': 1,\n",
      "          'crusade': 1,\n",
      "          'bring': 1,\n",
      "          'sons': 1,\n",
      "          'court': 1,\n",
      "          'nthey': 1,\n",
      "          'enlist': 1,\n",
      "          'notorious': 1,\n",
      "          'attorney': 1,\n",
      "          'achieve': 1,\n",
      "          'formidably': 1,\n",
      "          'daunting': 1,\n",
      "          'task': 1,\n",
      "          'frivolous': 1,\n",
      "          'matter': 1,\n",
      "          'trial': 1,\n",
      "          'determined': 1,\n",
      "          'keep': 1,\n",
      "          'familys': 1,\n",
      "          'word': 1,\n",
      "          'clean': 1,\n",
      "          'willing': 1,\n",
      "          'go': 1,\n",
      "          'quite': 1,\n",
      "          'far': 1,\n",
      "          'sure': 1,\n",
      "          'nsoon': 1,\n",
      "          'along': 1,\n",
      "          'rest': 1,\n",
      "          'country': 1,\n",
      "          'becomes': 1,\n",
      "          'equally': 1,\n",
      "          'wrapped': 1,\n",
      "          'proceedings': 1,\n",
      "          'nso': 1,\n",
      "          'nall': 1,\n",
      "          'script': 1,\n",
      "          'tighten': 1,\n",
      "          'hone': 1,\n",
      "          'apparent': 1,\n",
      "          'characters': 1,\n",
      "          'talk': 1,\n",
      "          'trademark': 1,\n",
      "          'staccatto': 1,\n",
      "          'lines': 1,\n",
      "          'tension': 1,\n",
      "          'present': 1,\n",
      "          'conversations': 1,\n",
      "          'ordinary': 1,\n",
      "          'writer': 1,\n",
      "          'would': 1,\n",
      "          'able': 1,\n",
      "          'tense': 1,\n",
      "          'norm': 1,\n",
      "          'refreshing': 1,\n",
      "          'see': 1,\n",
      "          'deviate': 1,\n",
      "          'world': 1,\n",
      "          'crooks': 1,\n",
      "          'gangsters': 1,\n",
      "          'con': 1,\n",
      "          'men': 1,\n",
      "          'nnigel': 1,\n",
      "          'hawthornes': 1,\n",
      "          'flawless': 1,\n",
      "          'delivery': 1,\n",
      "          'dignified': 1,\n",
      "          'yet': 1,\n",
      "          'pompous': 1,\n",
      "          'getting': 1,\n",
      "          'beaten': 1,\n",
      "          'nwe': 1,\n",
      "          'pity': 1,\n",
      "          'also': 1,\n",
      "          'nrebecca': 1,\n",
      "          'wife': 1,\n",
      "          'gave': 1,\n",
      "          'awful': 1,\n",
      "          'spanish': 1,\n",
      "          'prisoner': 1,\n",
      "          'top': 1,\n",
      "          'arthurs': 1,\n",
      "          'flailing': 1,\n",
      "          'feminist': 1,\n",
      "          'gives': 1,\n",
      "          'way': 1,\n",
      "          'making': 1,\n",
      "          'lack': 1,\n",
      "          'success': 1,\n",
      "          'womens': 1,\n",
      "          'suffrage': 1,\n",
      "          'movement': 1,\n",
      "          'avoids': 1,\n",
      "          'cliches': 1,\n",
      "          'seemingly': 1,\n",
      "          'inevitable': 1,\n",
      "          'scene': 1,\n",
      "          'shoots': 1,\n",
      "          'higher': 1,\n",
      "          'wants': 1,\n",
      "          'impact': 1,\n",
      "          'rather': 1,\n",
      "          'phony': 1,\n",
      "          'one': 1,\n",
      "          'nbe': 1,\n",
      "          'honest': 1,\n",
      "          'feel': 1,\n",
      "          'anything': 1,\n",
      "          'profound': 1,\n",
      "          'scenes': 1,\n",
      "          'kill': 1,\n",
      "          'nif': 1,\n",
      "          'wanted': 1,\n",
      "          'epitome': 1,\n",
      "          'subtlety': 1,\n",
      "          'powerful': 1,\n",
      "          'emotional': 1,\n",
      "          'sad': 1,\n",
      "          'trying': 1,\n",
      "          'depressing': 1,\n",
      "          'ndavid': 1,\n",
      "          'churn': 1,\n",
      "          'great': 1,\n",
      "          'scripts': 1,\n",
      "          'proves': 1,\n",
      "          'ever': 1,\n",
      "          'doubted': 1,\n",
      "          'hell': 1,\n",
      "          'almost': 1,\n",
      "          'national': 1,\n",
      "          'treasure': 1,\n",
      "          'deserve': 1,\n",
      "          'genre': 1,\n",
      "          '1999': 1,\n",
      "          'eugene': 1,\n",
      "          'novikov137': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 15,\n",
      "          'cell': 9,\n",
      "          'stargher': 6,\n",
      "          'nthe': 6,\n",
      "          'images': 6,\n",
      "          'starghers': 5,\n",
      "          'mind': 5,\n",
      "          'victim': 4,\n",
      "          'first': 4,\n",
      "          'also': 4,\n",
      "          'project': 3,\n",
      "          'victims': 3,\n",
      "          'boys': 3,\n",
      "          'nas': 3,\n",
      "          'na': 3,\n",
      "          'donofrio': 3,\n",
      "          'like': 3,\n",
      "          'singh': 3,\n",
      "          'video': 3,\n",
      "          'script': 3,\n",
      "          'sequences': 3,\n",
      "          'music': 3,\n",
      "          'one': 3,\n",
      "          'catherine': 2,\n",
      "          'deane': 2,\n",
      "          'try': 2,\n",
      "          'attempt': 2,\n",
      "          'moderate': 2,\n",
      "          'parents': 2,\n",
      "          'life': 2,\n",
      "          'mental': 2,\n",
      "          'vincent': 2,\n",
      "          'kidnapping': 2,\n",
      "          'locking': 2,\n",
      "          'slowly': 2,\n",
      "          'catatonia': 2,\n",
      "          'body': 2,\n",
      "          'nin': 2,\n",
      "          'completely': 2,\n",
      "          'lambs': 2,\n",
      "          'films': 2,\n",
      "          'seems': 2,\n",
      "          'contain': 2,\n",
      "          'elements': 2,\n",
      "          'feature': 2,\n",
      "          'r': 2,\n",
      "          'e': 2,\n",
      "          'could': 2,\n",
      "          'contains': 2,\n",
      "          'remarkable': 2,\n",
      "          'imagery': 2,\n",
      "          'would': 2,\n",
      "          'lead': 2,\n",
      "          'sequence': 2,\n",
      "          'far': 2,\n",
      "          'best': 2,\n",
      "          'ever': 2,\n",
      "          'seen': 2,\n",
      "          'probably': 2,\n",
      "          'nipple': 2,\n",
      "          'ring': 2,\n",
      "          'removal': 2,\n",
      "          'floor': 2,\n",
      "          'character': 2,\n",
      "          'though': 2,\n",
      "          'violence': 2,\n",
      "          'disturbing': 2,\n",
      "          'done': 2,\n",
      "          'mtv': 2,\n",
      "          'jennifer': 1,\n",
      "          'lopez': 1,\n",
      "          'psychologist': 1,\n",
      "          'hired': 1,\n",
      "          'participate': 1,\n",
      "          'enter': 1,\n",
      "          'minds': 1,\n",
      "          'comatose': 1,\n",
      "          'interact': 1,\n",
      "          'subconscious': 1,\n",
      "          'wake': 1,\n",
      "          'nshe': 1,\n",
      "          'experiencing': 1,\n",
      "          'success': 1,\n",
      "          'young': 1,\n",
      "          'boy': 1,\n",
      "          'coma': 1,\n",
      "          'arent': 1,\n",
      "          'happy': 1,\n",
      "          'apparent': 1,\n",
      "          'lack': 1,\n",
      "          'progress': 1,\n",
      "          'toll': 1,\n",
      "          'job': 1,\n",
      "          'adverse': 1,\n",
      "          'affects': 1,\n",
      "          'regular': 1,\n",
      "          'trying': 1,\n",
      "          'assure': 1,\n",
      "          'wasnt': 1,\n",
      "          'hard': 1,\n",
      "          'enough': 1,\n",
      "          'new': 1,\n",
      "          'development': 1,\n",
      "          'arises': 1,\n",
      "          'furthers': 1,\n",
      "          'strain': 1,\n",
      "          'deanes': 1,\n",
      "          'faculties': 1,\n",
      "          'vicious': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'named': 1,\n",
      "          'carl': 1,\n",
      "          'women': 1,\n",
      "          'automated': 1,\n",
      "          'drowns': 1,\n",
      "          'matter': 1,\n",
      "          'days': 1,\n",
      "          'soaking': 1,\n",
      "          'corpses': 1,\n",
      "          'bleach': 1,\n",
      "          'turn': 1,\n",
      "          'lifesized': 1,\n",
      "          'dolls': 1,\n",
      "          'njust': 1,\n",
      "          'latest': 1,\n",
      "          'traumatic': 1,\n",
      "          'experience': 1,\n",
      "          'triggers': 1,\n",
      "          'schizophrenic': 1,\n",
      "          'virus': 1,\n",
      "          'brain': 1,\n",
      "          'causes': 1,\n",
      "          'sink': 1,\n",
      "          'eternal': 1,\n",
      "          'police': 1,\n",
      "          'led': 1,\n",
      "          'fbi': 1,\n",
      "          'agent': 1,\n",
      "          'peter': 1,\n",
      "          'novak': 1,\n",
      "          'vince': 1,\n",
      "          'vaughn': 1,\n",
      "          'able': 1,\n",
      "          'locate': 1,\n",
      "          'clues': 1,\n",
      "          'left': 1,\n",
      "          'dumping': 1,\n",
      "          'previous': 1,\n",
      "          'feel': 1,\n",
      "          'hope': 1,\n",
      "          'lost': 1,\n",
      "          'current': 1,\n",
      "          'due': 1,\n",
      "          'vegetative': 1,\n",
      "          'state': 1,\n",
      "          'last': 1,\n",
      "          'ditch': 1,\n",
      "          'ask': 1,\n",
      "          'scientists': 1,\n",
      "          'created': 1,\n",
      "          'undergo': 1,\n",
      "          'frightening': 1,\n",
      "          'task': 1,\n",
      "          'entering': 1,\n",
      "          'find': 1,\n",
      "          'location': 1,\n",
      "          'locked': 1,\n",
      "          'deadly': 1,\n",
      "          'fill': 1,\n",
      "          'water': 1,\n",
      "          'next': 1,\n",
      "          '40': 1,\n",
      "          'hours': 1,\n",
      "          'ninitial': 1,\n",
      "          'reports': 1,\n",
      "          'described': 1,\n",
      "          'cross': 1,\n",
      "          'silence': 1,\n",
      "          'matrix': 1,\n",
      "          'nwhile': 1,\n",
      "          'share': 1,\n",
      "          'characteristics': 1,\n",
      "          'particularly': 1,\n",
      "          'forty': 1,\n",
      "          'minutes': 1,\n",
      "          'seem': 1,\n",
      "          'almost': 1,\n",
      "          'condensed': 1,\n",
      "          'version': 1,\n",
      "          'dreamscape': 1,\n",
      "          'brainstorm': 1,\n",
      "          'buzz': 1,\n",
      "          'around': 1,\n",
      "          'firsttime': 1,\n",
      "          'director': 1,\n",
      "          'tarsem': 1,\n",
      "          'many': 1,\n",
      "          'awards': 1,\n",
      "          'losing': 1,\n",
      "          'religion': 1,\n",
      "          'wanted': 1,\n",
      "          'fashion': 1,\n",
      "          'instead': 1,\n",
      "          'cohesive': 1,\n",
      "          'story': 1,\n",
      "          'good': 1,\n",
      "          'portion': 1,\n",
      "          'supports': 1,\n",
      "          'theory': 1,\n",
      "          'ndespite': 1,\n",
      "          'borrowed': 1,\n",
      "          'aforementioned': 1,\n",
      "          'several': 1,\n",
      "          'logically': 1,\n",
      "          'questionable': 1,\n",
      "          'moments': 1,\n",
      "          'nall': 1,\n",
      "          'delve': 1,\n",
      "          'someones': 1,\n",
      "          'incredibly': 1,\n",
      "          'beautiful': 1,\n",
      "          'including': 1,\n",
      "          'dank': 1,\n",
      "          'whose': 1,\n",
      "          'thoughts': 1,\n",
      "          'reminiscent': 1,\n",
      "          'h': 1,\n",
      "          'giger': 1,\n",
      "          'painting': 1,\n",
      "          'come': 1,\n",
      "          'mixed': 1,\n",
      "          'tool': 1,\n",
      "          'proving': 1,\n",
      "          'adept': 1,\n",
      "          'filming': 1,\n",
      "          'strange': 1,\n",
      "          'wonderful': 1,\n",
      "          'acclaim': 1,\n",
      "          'us': 1,\n",
      "          'believe': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'featuring': 1,\n",
      "          'ingenious': 1,\n",
      "          'traps': 1,\n",
      "          'ive': 1,\n",
      "          'involving': 1,\n",
      "          'horse': 1,\n",
      "          'seeing': 1,\n",
      "          'forget': 1,\n",
      "          'zoolike': 1,\n",
      "          'display': 1,\n",
      "          'animated': 1,\n",
      "          'marionettes': 1,\n",
      "          'giant': 1,\n",
      "          'purple': 1,\n",
      "          'cape': 1,\n",
      "          'spans': 1,\n",
      "          'walls': 1,\n",
      "          'throne': 1,\n",
      "          'room': 1,\n",
      "          'nif': 1,\n",
      "          'continued': 1,\n",
      "          'within': 1,\n",
      "          'dirty': 1,\n",
      "          'monstrous': 1,\n",
      "          'world': 1,\n",
      "          'deemed': 1,\n",
      "          'brilliant': 1,\n",
      "          'alas': 1,\n",
      "          'become': 1,\n",
      "          'silly': 1,\n",
      "          'go': 1,\n",
      "          'along': 1,\n",
      "          'despite': 1,\n",
      "          'painful': 1,\n",
      "          'later': 1,\n",
      "          'cast': 1,\n",
      "          'basically': 1,\n",
      "          'excuse': 1,\n",
      "          'plot': 1,\n",
      "          'semblance': 1,\n",
      "          'parade': 1,\n",
      "          'least': 1,\n",
      "          'turns': 1,\n",
      "          'usual': 1,\n",
      "          'bizarre': 1,\n",
      "          'psychotic': 1,\n",
      "          'performance': 1,\n",
      "          'magnified': 1,\n",
      "          'ten': 1,\n",
      "          'thanks': 1,\n",
      "          'environment': 1,\n",
      "          'placed': 1,\n",
      "          'opinion': 1,\n",
      "          'creepy': 1,\n",
      "          'actors': 1,\n",
      "          'choices': 1,\n",
      "          'late': 1,\n",
      "          'awful': 1,\n",
      "          'newton': 1,\n",
      "          'feeling': 1,\n",
      "          'minnesota': 1,\n",
      "          'thirteenth': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'velocity': 1,\n",
      "          'gary': 1,\n",
      "          'begun': 1,\n",
      "          'rethink': 1,\n",
      "          'initial': 1,\n",
      "          'assessment': 1,\n",
      "          'excellent': 1,\n",
      "          'role': 1,\n",
      "          'bit': 1,\n",
      "          'typecasting': 1,\n",
      "          'ndetractors': 1,\n",
      "          'want': 1,\n",
      "          'stay': 1,\n",
      "          'away': 1,\n",
      "          'heavy': 1,\n",
      "          'doses': 1,\n",
      "          'nbesides': 1,\n",
      "          'mention': 1,\n",
      "          'penchant': 1,\n",
      "          'hanging': 1,\n",
      "          'suspended': 1,\n",
      "          'rings': 1,\n",
      "          'pierce': 1,\n",
      "          'back': 1,\n",
      "          'legs': 1,\n",
      "          'prior': 1,\n",
      "          'capture': 1,\n",
      "          'audiences': 1,\n",
      "          'recoiling': 1,\n",
      "          'enters': 1,\n",
      "          'finds': 1,\n",
      "          'recreating': 1,\n",
      "          'disemboweling': 1,\n",
      "          'pretty': 1,\n",
      "          'disquieting': 1,\n",
      "          'none': 1,\n",
      "          'moment': 1,\n",
      "          'features': 1,\n",
      "          'intestines': 1,\n",
      "          'removed': 1,\n",
      "          'old': 1,\n",
      "          'fashioned': 1,\n",
      "          'hand': 1,\n",
      "          'cranked': 1,\n",
      "          'spitlike': 1,\n",
      "          'device': 1,\n",
      "          'narrative': 1,\n",
      "          'sorely': 1,\n",
      "          'lacking': 1,\n",
      "          'collection': 1,\n",
      "          'extremely': 1,\n",
      "          'well': 1,\n",
      "          'nalthough': 1,\n",
      "          'latter': 1,\n",
      "          'fewer': 1,\n",
      "          'half': 1,\n",
      "          'supposedly': 1,\n",
      "          'set': 1,\n",
      "          'make': 1,\n",
      "          'solely': 1,\n",
      "          'purpose': 1,\n",
      "          'stringing': 1,\n",
      "          'together': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'wellwritten': 1,\n",
      "          'considered': 1,\n",
      "          'without': 1,\n",
      "          'see': 1,\n",
      "          'provided': 1,\n",
      "          'course': 1,\n",
      "          'allowed': 1,\n",
      "          'use': 1,\n",
      "          'graphic': 1,\n",
      "          'language': 1,\n",
      "          'videos': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'prince': 6,\n",
      "          'egypt': 6,\n",
      "          'moses': 5,\n",
      "          'movie': 5,\n",
      "          'first': 4,\n",
      "          'casting': 3,\n",
      "          'voice': 3,\n",
      "          'would': 3,\n",
      "          'animated': 3,\n",
      "          'one': 3,\n",
      "          'make': 3,\n",
      "          'adults': 3,\n",
      "          'antz': 3,\n",
      "          'life': 3,\n",
      "          'half': 3,\n",
      "          'probably': 2,\n",
      "          'kilmer': 2,\n",
      "          'traditionally': 2,\n",
      "          'dreamworks': 2,\n",
      "          'took': 2,\n",
      "          'department': 2,\n",
      "          'animation': 2,\n",
      "          'film': 2,\n",
      "          'movies': 2,\n",
      "          'appropriate': 2,\n",
      "          'quite': 2,\n",
      "          'much': 2,\n",
      "          'martin': 2,\n",
      "          'queen': 2,\n",
      "          'story': 2,\n",
      "          'classic': 2,\n",
      "          'mosess': 2,\n",
      "          'nwe': 2,\n",
      "          'finds': 2,\n",
      "          'ramses': 2,\n",
      "          'true': 2,\n",
      "          'identity': 2,\n",
      "          'nafter': 2,\n",
      "          'nthis': 2,\n",
      "          'nit': 2,\n",
      "          'temple': 2,\n",
      "          'family': 2,\n",
      "          'key': 1,\n",
      "          'part': 1,\n",
      "          'peoples': 1,\n",
      "          'candidate': 1,\n",
      "          'controversial': 1,\n",
      "          'actor': 1,\n",
      "          'val': 1,\n",
      "          'saint': 1,\n",
      "          'island': 1,\n",
      "          'dr': 1,\n",
      "          'nmoreau': 1,\n",
      "          'dreamworkss': 1,\n",
      "          'choice': 1,\n",
      "          'selection': 1,\n",
      "          'proved': 1,\n",
      "          'wise': 1,\n",
      "          'biggest': 1,\n",
      "          'risk': 1,\n",
      "          'wasnt': 1,\n",
      "          'radical': 1,\n",
      "          'departure': 1,\n",
      "          'decided': 1,\n",
      "          'use': 1,\n",
      "          'medium': 1,\n",
      "          'biblical': 1,\n",
      "          'epic': 1,\n",
      "          'la': 1,\n",
      "          'cecil': 1,\n",
      "          'b': 1,\n",
      "          'demille': 1,\n",
      "          'move': 1,\n",
      "          'hearts': 1,\n",
      "          'minds': 1,\n",
      "          'rather': 1,\n",
      "          'tickle': 1,\n",
      "          'funny': 1,\n",
      "          'bones': 1,\n",
      "          'nin': 1,\n",
      "          'press': 1,\n",
      "          'kit': 1,\n",
      "          'producer': 1,\n",
      "          'penney': 1,\n",
      "          'cox': 1,\n",
      "          'says': 1,\n",
      "          'wanted': 1,\n",
      "          'based': 1,\n",
      "          'sophisticated': 1,\n",
      "          'themes': 1,\n",
      "          'exclude': 1,\n",
      "          'children': 1,\n",
      "          'nanimated': 1,\n",
      "          'kids': 1,\n",
      "          'comedies': 1,\n",
      "          'something': 1,\n",
      "          'fresh': 1,\n",
      "          'nlet': 1,\n",
      "          'admit': 1,\n",
      "          'upfront': 1,\n",
      "          'skeptical': 1,\n",
      "          'whether': 1,\n",
      "          'could': 1,\n",
      "          'pull': 1,\n",
      "          'ndreamworkss': 1,\n",
      "          'seemed': 1,\n",
      "          'age': 1,\n",
      "          'group': 1,\n",
      "          'may': 1,\n",
      "          'harder': 1,\n",
      "          'market': 1,\n",
      "          'satisfying': 1,\n",
      "          'nlike': 1,\n",
      "          'unlike': 1,\n",
      "          'modest': 1,\n",
      "          'pixars': 1,\n",
      "          'bugs': 1,\n",
      "          'egpyt': 1,\n",
      "          'hollywood': 1,\n",
      "          'voices': 1,\n",
      "          'ndanny': 1,\n",
      "          'glover': 1,\n",
      "          'jethro': 1,\n",
      "          'jeff': 1,\n",
      "          'goldblum': 1,\n",
      "          'aaron': 1,\n",
      "          'steve': 1,\n",
      "          'hotep': 1,\n",
      "          'helen': 1,\n",
      "          'mirren': 1,\n",
      "          'michelle': 1,\n",
      "          'pfeiffer': 1,\n",
      "          'tzipporah': 1,\n",
      "          'short': 1,\n",
      "          'huy': 1,\n",
      "          'patrick': 1,\n",
      "          'stewart': 1,\n",
      "          'seti': 1,\n",
      "          'nyou': 1,\n",
      "          'figure': 1,\n",
      "          'god': 1,\n",
      "          'weakest': 1,\n",
      "          'cliffs': 1,\n",
      "          'notes': 1,\n",
      "          'version': 1,\n",
      "          'demilles': 1,\n",
      "          'ten': 1,\n",
      "          'commandments': 1,\n",
      "          'script': 1,\n",
      "          'kelly': 1,\n",
      "          'asbury': 1,\n",
      "          'lorna': 1,\n",
      "          'cook': 1,\n",
      "          'obsession': 1,\n",
      "          'touching': 1,\n",
      "          'briefly': 1,\n",
      "          'every': 1,\n",
      "          'event': 1,\n",
      "          'ndemille': 1,\n",
      "          'three': 1,\n",
      "          'hours': 1,\n",
      "          'order': 1,\n",
      "          'justice': 1,\n",
      "          'nat': 1,\n",
      "          'less': 1,\n",
      "          'rushes': 1,\n",
      "          'material': 1,\n",
      "          'doesnt': 1,\n",
      "          'establish': 1,\n",
      "          'sufficient': 1,\n",
      "          'depth': 1,\n",
      "          'us': 1,\n",
      "          'bond': 1,\n",
      "          'characters': 1,\n",
      "          'meet': 1,\n",
      "          'floating': 1,\n",
      "          'little': 1,\n",
      "          'basket': 1,\n",
      "          'watch': 1,\n",
      "          'grow': 1,\n",
      "          'become': 1,\n",
      "          'best': 1,\n",
      "          'bud': 1,\n",
      "          'chariot': 1,\n",
      "          'racing': 1,\n",
      "          'partner': 1,\n",
      "          'ralph': 1,\n",
      "          'fiennes': 1,\n",
      "          'future': 1,\n",
      "          'pharaoh': 1,\n",
      "          'nmoses': 1,\n",
      "          'free': 1,\n",
      "          'spirit': 1,\n",
      "          'practical': 1,\n",
      "          'joker': 1,\n",
      "          'jew': 1,\n",
      "          'n': 1,\n",
      "          'ive': 1,\n",
      "          'ever': 1,\n",
      "          'known': 1,\n",
      "          'lie': 1,\n",
      "          'complains': 1,\n",
      "          'finding': 1,\n",
      "          'real': 1,\n",
      "          'sees': 1,\n",
      "          'time': 1,\n",
      "          'oppression': 1,\n",
      "          'jewish': 1,\n",
      "          'slaves': 1,\n",
      "          'around': 1,\n",
      "          'leaving': 1,\n",
      "          'comes': 1,\n",
      "          'back': 1,\n",
      "          'ask': 1,\n",
      "          'let': 1,\n",
      "          'people': 1,\n",
      "          'go': 1,\n",
      "          'leads': 1,\n",
      "          'scene': 1,\n",
      "          'parting': 1,\n",
      "          'red': 1,\n",
      "          'sea': 1,\n",
      "          'many': 1,\n",
      "          'places': 1,\n",
      "          'computers': 1,\n",
      "          'used': 1,\n",
      "          'enhance': 1,\n",
      "          'handdrawn': 1,\n",
      "          'production': 1,\n",
      "          'absolutely': 1,\n",
      "          'stunning': 1,\n",
      "          'visuals': 1,\n",
      "          'compelling': 1,\n",
      "          'ndrawn': 1,\n",
      "          'rich': 1,\n",
      "          'palette': 1,\n",
      "          'luxurious': 1,\n",
      "          'roses': 1,\n",
      "          'blues': 1,\n",
      "          'golds': 1,\n",
      "          'picture': 1,\n",
      "          'looks': 1,\n",
      "          'sumptuous': 1,\n",
      "          'frame': 1,\n",
      "          'last': 1,\n",
      "          'construction': 1,\n",
      "          'shown': 1,\n",
      "          'blowing': 1,\n",
      "          'dust': 1,\n",
      "          'scenes': 1,\n",
      "          'shot': 1,\n",
      "          'glow': 1,\n",
      "          'rising': 1,\n",
      "          'sun': 1,\n",
      "          'original': 1,\n",
      "          'visual': 1,\n",
      "          'sequence': 1,\n",
      "          'occurs': 1,\n",
      "          'dream': 1,\n",
      "          'ndone': 1,\n",
      "          'explicit': 1,\n",
      "          'twodimensional': 1,\n",
      "          'look': 1,\n",
      "          'colorful': 1,\n",
      "          'images': 1,\n",
      "          'painted': 1,\n",
      "          'walls': 1,\n",
      "          'come': 1,\n",
      "          'tell': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'weaknesses': 1,\n",
      "          'noble': 1,\n",
      "          'attempt': 1,\n",
      "          'carve': 1,\n",
      "          'new': 1,\n",
      "          'genre': 1,\n",
      "          'serious': 1,\n",
      "          'acceptable': 1,\n",
      "          'entire': 1,\n",
      "          'aweinspiring': 1,\n",
      "          'deserves': 1,\n",
      "          'seen': 1,\n",
      "          'runs': 1,\n",
      "          '1': 1,\n",
      "          '30': 1,\n",
      "          'rated': 1,\n",
      "          'pg': 1,\n",
      "          'thematic': 1,\n",
      "          'elements': 1,\n",
      "          'fine': 1,\n",
      "          'whole': 1,\n",
      "          'nhow': 1,\n",
      "          'old': 1,\n",
      "          'kid': 1,\n",
      "          'need': 1,\n",
      "          'interested': 1,\n",
      "          'depends': 1,\n",
      "          'child': 1,\n",
      "          '8': 1,\n",
      "          'like': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'frankenstein': 15,\n",
      "          'nthe': 10,\n",
      "          'film': 9,\n",
      "          'victor': 8,\n",
      "          'life': 6,\n",
      "          'death': 6,\n",
      "          'story': 5,\n",
      "          'branagh': 5,\n",
      "          'novel': 5,\n",
      "          'one': 5,\n",
      "          'creation': 5,\n",
      "          'previous': 4,\n",
      "          'nbut': 4,\n",
      "          'nbranagh': 4,\n",
      "          'nhis': 4,\n",
      "          'man': 4,\n",
      "          'character': 4,\n",
      "          'monster': 3,\n",
      "          'picture': 3,\n",
      "          'every': 3,\n",
      "          'adaptions': 3,\n",
      "          'ends': 3,\n",
      "          'nhe': 3,\n",
      "          'without': 3,\n",
      "          'mother': 3,\n",
      "          'surrogate': 3,\n",
      "          'sister': 3,\n",
      "          'creature': 3,\n",
      "          'never': 3,\n",
      "          'characters': 3,\n",
      "          'nand': 3,\n",
      "          'nin': 3,\n",
      "          'certainly': 2,\n",
      "          'n': 2,\n",
      "          'kenneth': 2,\n",
      "          'mary': 2,\n",
      "          'shelleys': 2,\n",
      "          'nkenneth': 2,\n",
      "          'throughout': 2,\n",
      "          'almost': 2,\n",
      "          'world': 2,\n",
      "          'version': 2,\n",
      "          'dark': 2,\n",
      "          'body': 2,\n",
      "          'probably': 2,\n",
      "          'total': 2,\n",
      "          'horror': 2,\n",
      "          'classic': 2,\n",
      "          'begins': 2,\n",
      "          'arctic': 2,\n",
      "          'ocean': 2,\n",
      "          'ship': 2,\n",
      "          'unknown': 2,\n",
      "          'nas': 2,\n",
      "          'terrifying': 2,\n",
      "          'nhere': 2,\n",
      "          'boham': 2,\n",
      "          'carter': 2,\n",
      "          'changed': 2,\n",
      "          'quite': 2,\n",
      "          'science': 2,\n",
      "          'becomes': 2,\n",
      "          'mothers': 2,\n",
      "          'grave': 2,\n",
      "          'die': 2,\n",
      "          'nafter': 2,\n",
      "          'ingolstadt': 2,\n",
      "          'obsession': 2,\n",
      "          'dead': 2,\n",
      "          'bodies': 2,\n",
      "          'wanted': 2,\n",
      "          'create': 2,\n",
      "          'perfect': 2,\n",
      "          'strong': 2,\n",
      "          'electrical': 2,\n",
      "          'managed': 2,\n",
      "          'ugliness': 2,\n",
      "          'done': 2,\n",
      "          'everything': 2,\n",
      "          'loved': 2,\n",
      "          'less': 2,\n",
      "          'nanother': 2,\n",
      "          'thing': 2,\n",
      "          'magnificent': 2,\n",
      "          'cast': 2,\n",
      "          'comes': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'love': 2,\n",
      "          'frankensteins': 2,\n",
      "          'face': 2,\n",
      "          'nature': 2,\n",
      "          'evil': 2,\n",
      "          'vital': 2,\n",
      "          'simply': 2,\n",
      "          'scientist': 2,\n",
      "          'god': 2,\n",
      "          'charecter': 2,\n",
      "          'sets': 2,\n",
      "          'constantly': 2,\n",
      "          'playing': 2,\n",
      "          'camera': 2,\n",
      "          'fire': 2,\n",
      "          'actions': 2,\n",
      "          'dracula': 2,\n",
      "          'stronger': 2,\n",
      "          'best': 2,\n",
      "          'directoractorcowriter': 1,\n",
      "          'branaghs': 1,\n",
      "          'new': 1,\n",
      "          'motion': 1,\n",
      "          'compete': 1,\n",
      "          'frankensteinfilms': 1,\n",
      "          'made': 1,\n",
      "          'years': 1,\n",
      "          'part': 1,\n",
      "          'including': 1,\n",
      "          'controversial': 1,\n",
      "          'directed': 1,\n",
      "          'james': 1,\n",
      "          'whale': 1,\n",
      "          'stormy': 1,\n",
      "          'nights': 1,\n",
      "          'lightning': 1,\n",
      "          'bolts': 1,\n",
      "          'charnel': 1,\n",
      "          'houses': 1,\n",
      "          'spare': 1,\n",
      "          'parts': 1,\n",
      "          'laboratory': 1,\n",
      "          'stirs': 1,\n",
      "          'steaming': 1,\n",
      "          'cauldron': 1,\n",
      "          'effectful': 1,\n",
      "          'center': 1,\n",
      "          'quieter': 1,\n",
      "          'thoughtful': 1,\n",
      "          'contains': 1,\n",
      "          'real': 1,\n",
      "          'nhorrorfans': 1,\n",
      "          'disappointed': 1,\n",
      "          'lack': 1,\n",
      "          'instead': 1,\n",
      "          'concentrated': 1,\n",
      "          'serious': 1,\n",
      "          'issues': 1,\n",
      "          'morality': 1,\n",
      "          'philosophy': 1,\n",
      "          'human': 1,\n",
      "          'elements': 1,\n",
      "          'old': 1,\n",
      "          'fashioned': 1,\n",
      "          'cliches': 1,\n",
      "          'much': 1,\n",
      "          'closer': 1,\n",
      "          'book': 1,\n",
      "          'somewhere': 1,\n",
      "          'year': 1,\n",
      "          '1794': 1,\n",
      "          'na': 1,\n",
      "          'bold': 1,\n",
      "          'captain': 1,\n",
      "          'steering': 1,\n",
      "          'waters': 1,\n",
      "          'gole': 1,\n",
      "          'reach': 1,\n",
      "          'north': 1,\n",
      "          'pole': 1,\n",
      "          'costs': 1,\n",
      "          'ice': 1,\n",
      "          'closes': 1,\n",
      "          'around': 1,\n",
      "          'figure': 1,\n",
      "          'appears': 1,\n",
      "          'horizon': 1,\n",
      "          'nits': 1,\n",
      "          'nexhausted': 1,\n",
      "          'brink': 1,\n",
      "          'approaches': 1,\n",
      "          'frightening': 1,\n",
      "          'crew': 1,\n",
      "          'name': 1,\n",
      "          'scare': 1,\n",
      "          'everyone': 1,\n",
      "          'venturing': 1,\n",
      "          'myserious': 1,\n",
      "          'stranger': 1,\n",
      "          'tale': 1,\n",
      "          'precisely': 1,\n",
      "          'confession': 1,\n",
      "          'geneva': 1,\n",
      "          '1773': 1,\n",
      "          'remembering': 1,\n",
      "          'childhood': 1,\n",
      "          'youth': 1,\n",
      "          'nlaughter': 1,\n",
      "          'banquets': 1,\n",
      "          'parties': 1,\n",
      "          'happy': 1,\n",
      "          'troubles': 1,\n",
      "          'concerns': 1,\n",
      "          'lived': 1,\n",
      "          'father': 1,\n",
      "          'ian': 1,\n",
      "          'holm': 1,\n",
      "          'cherie': 1,\n",
      "          'lunghi': 1,\n",
      "          'helena': 1,\n",
      "          'servants': 1,\n",
      "          'happiness': 1,\n",
      "          'harmony': 1,\n",
      "          'nthis': 1,\n",
      "          'idyllic': 1,\n",
      "          'lifestyle': 1,\n",
      "          'suddenly': 1,\n",
      "          'nlike': 1,\n",
      "          'thunder': 1,\n",
      "          'sky': 1,\n",
      "          'dies': 1,\n",
      "          'giving': 1,\n",
      "          'birth': 1,\n",
      "          'youngest': 1,\n",
      "          'brother': 1,\n",
      "          'nshocked': 1,\n",
      "          'baffled': 1,\n",
      "          'gradually': 1,\n",
      "          'grief': 1,\n",
      "          'despair': 1,\n",
      "          'already': 1,\n",
      "          'interested': 1,\n",
      "          'obsessed': 1,\n",
      "          'nstanding': 1,\n",
      "          'says': 1,\n",
      "          'oh': 1,\n",
      "          'ndid': 1,\n",
      "          'ever': 1,\n",
      "          'nwill': 1,\n",
      "          'stop': 1,\n",
      "          'npromiss': 1,\n",
      "          'proposing': 1,\n",
      "          'marridge': 1,\n",
      "          'promising': 1,\n",
      "          'return': 1,\n",
      "          'soon': 1,\n",
      "          'studies': 1,\n",
      "          'finished': 1,\n",
      "          'travels': 1,\n",
      "          'presuite': 1,\n",
      "          'medical': 1,\n",
      "          'career': 1,\n",
      "          'totally': 1,\n",
      "          'overtakes': 1,\n",
      "          'working': 1,\n",
      "          'day': 1,\n",
      "          'night': 1,\n",
      "          'creating': 1,\n",
      "          'ncomposing': 1,\n",
      "          'physically': 1,\n",
      "          'mentally': 1,\n",
      "          'nwith': 1,\n",
      "          'impulses': 1,\n",
      "          'breeth': 1,\n",
      "          'result': 1,\n",
      "          'nrealizing': 1,\n",
      "          'tried': 1,\n",
      "          'undo': 1,\n",
      "          'work': 1,\n",
      "          'late': 1,\n",
      "          'escaped': 1,\n",
      "          'nbecause': 1,\n",
      "          'epidemic': 1,\n",
      "          'hoped': 1,\n",
      "          'died': 1,\n",
      "          'returned': 1,\n",
      "          'home': 1,\n",
      "          'making': 1,\n",
      "          'plans': 1,\n",
      "          'wedding': 1,\n",
      "          'nfor': 1,\n",
      "          'dying': 1,\n",
      "          'mysteriously': 1,\n",
      "          'nwhales': 1,\n",
      "          'although': 1,\n",
      "          'powerful': 1,\n",
      "          'capture': 1,\n",
      "          'depth': 1,\n",
      "          'nbrannagh': 1,\n",
      "          'actors': 1,\n",
      "          'developed': 1,\n",
      "          'assembled': 1,\n",
      "          'greatest': 1,\n",
      "          'performances': 1,\n",
      "          'played': 1,\n",
      "          'among': 1,\n",
      "          'others': 1,\n",
      "          'charles': 1,\n",
      "          'ogle': 1,\n",
      "          'karloff': 1,\n",
      "          'lon': 1,\n",
      "          'chaney': 1,\n",
      "          'bela': 1,\n",
      "          'lugosi': 1,\n",
      "          'glenn': 1,\n",
      "          'strange': 1,\n",
      "          'christopher': 1,\n",
      "          'lee': 1,\n",
      "          'fred': 1,\n",
      "          'gwynne': 1,\n",
      "          'herman': 1,\n",
      "          'munster': 1,\n",
      "          'robert': 1,\n",
      "          'nalone': 1,\n",
      "          'hated': 1,\n",
      "          'feared': 1,\n",
      "          'completely': 1,\n",
      "          'aware': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'like': 1,\n",
      "          'helpless': 1,\n",
      "          'abandoned': 1,\n",
      "          'child': 1,\n",
      "          'desperately': 1,\n",
      "          'reaching': 1,\n",
      "          'nlater': 1,\n",
      "          'reads': 1,\n",
      "          'journal': 1,\n",
      "          'learns': 1,\n",
      "          'composed': 1,\n",
      "          'turns': 1,\n",
      "          'rage': 1,\n",
      "          'seeking': 1,\n",
      "          'revenge': 1,\n",
      "          'capable': 1,\n",
      "          'killing': 1,\n",
      "          'regret': 1,\n",
      "          'took': 1,\n",
      "          'lifted': 1,\n",
      "          'ground': 1,\n",
      "          'nthen': 1,\n",
      "          'slowly': 1,\n",
      "          'crushed': 1,\n",
      "          'neck': 1,\n",
      "          'killed': 1,\n",
      "          'saw': 1,\n",
      "          'nthat': 1,\n",
      "          'reveals': 1,\n",
      "          'savage': 1,\n",
      "          'creator': 1,\n",
      "          'yet': 1,\n",
      "          'eyes': 1,\n",
      "          'vaulerbility': 1,\n",
      "          'loneliness': 1,\n",
      "          'palpable': 1,\n",
      "          'sympathy': 1,\n",
      "          'living': 1,\n",
      "          'would': 1,\n",
      "          'make': 1,\n",
      "          'peace': 1,\n",
      "          'nrarely': 1,\n",
      "          'cinematic': 1,\n",
      "          'interpretation': 1,\n",
      "          'daemon': 1,\n",
      "          'approached': 1,\n",
      "          'level': 1,\n",
      "          'threedimensionality': 1,\n",
      "          'humanity': 1,\n",
      "          'portrayed': 1,\n",
      "          'mad': 1,\n",
      "          'trolls': 1,\n",
      "          'graveyards': 1,\n",
      "          'corpses': 1,\n",
      "          'creates': 1,\n",
      "          'knows': 1,\n",
      "          'power': 1,\n",
      "          'storm': 1,\n",
      "          'nalmost': 1,\n",
      "          'time': 1,\n",
      "          'granted': 1,\n",
      "          'important': 1,\n",
      "          'introduces': 1,\n",
      "          'establishes': 1,\n",
      "          'intellectual': 1,\n",
      "          'ideological': 1,\n",
      "          'conflict': 1,\n",
      "          'academic': 1,\n",
      "          'establishment': 1,\n",
      "          'somehow': 1,\n",
      "          'manages': 1,\n",
      "          'build': 1,\n",
      "          'rousing': 1,\n",
      "          'horrifying': 1,\n",
      "          'scene': 1,\n",
      "          'plays': 1,\n",
      "          'remarkable': 1,\n",
      "          'understanding': 1,\n",
      "          'non': 1,\n",
      "          'outside': 1,\n",
      "          'ambitious': 1,\n",
      "          'talented': 1,\n",
      "          'deep': 1,\n",
      "          'unsecure': 1,\n",
      "          'fragile': 1,\n",
      "          'vaulerble': 1,\n",
      "          'haunted': 1,\n",
      "          'ghosts': 1,\n",
      "          'past': 1,\n",
      "          'nhelen': 1,\n",
      "          'equally': 1,\n",
      "          'wonderful': 1,\n",
      "          'end': 1,\n",
      "          'wife': 1,\n",
      "          'little': 1,\n",
      "          'drives': 1,\n",
      "          'apart': 1,\n",
      "          'rest': 1,\n",
      "          'secondary': 1,\n",
      "          'solid': 1,\n",
      "          'nothing': 1,\n",
      "          'convincing': 1,\n",
      "          'nvisually': 1,\n",
      "          'stunning': 1,\n",
      "          'especially': 1,\n",
      "          'makeup': 1,\n",
      "          'spinning': 1,\n",
      "          'buildingup': 1,\n",
      "          'musical': 1,\n",
      "          'acore': 1,\n",
      "          'art': 1,\n",
      "          'direction': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'costumes': 1,\n",
      "          'swiss': 1,\n",
      "          'alps': 1,\n",
      "          'forests': 1,\n",
      "          'plagueriddled': 1,\n",
      "          'streets': 1,\n",
      "          'wonder': 1,\n",
      "          'behold': 1,\n",
      "          'directs': 1,\n",
      "          'script': 1,\n",
      "          'written': 1,\n",
      "          'shakespeare': 1,\n",
      "          'ni': 1,\n",
      "          'lies': 1,\n",
      "          'shallow': 1,\n",
      "          'nmy': 1,\n",
      "          'hand': 1,\n",
      "          'exacly': 1,\n",
      "          'hamlet': 1,\n",
      "          'creators': 1,\n",
      "          'burning': 1,\n",
      "          'hellish': 1,\n",
      "          'darkness': 1,\n",
      "          'last': 1,\n",
      "          'closeup': 1,\n",
      "          'creatures': 1,\n",
      "          'smiling': 1,\n",
      "          'ncan': 1,\n",
      "          'abandon': 1,\n",
      "          'appearance': 1,\n",
      "          'horrifies': 1,\n",
      "          'nto': 1,\n",
      "          'attributable': 1,\n",
      "          'brought': 1,\n",
      "          'existence': 1,\n",
      "          'nshelley': 1,\n",
      "          'answer': 1,\n",
      "          'questions': 1,\n",
      "          'posed': 1,\n",
      "          'nfollowing': 1,\n",
      "          'example': 1,\n",
      "          'tragic': 1,\n",
      "          'saga': 1,\n",
      "          'nvictor': 1,\n",
      "          'change': 1,\n",
      "          'better': 1,\n",
      "          'represents': 1,\n",
      "          'stands': 1,\n",
      "          'acting': 1,\n",
      "          'doubts': 1,\n",
      "          'considering': 1,\n",
      "          'consequences': 1,\n",
      "          'nproduced': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          'coppola': 1,\n",
      "          'resembles': 1,\n",
      "          'respects': 1,\n",
      "          'coppolas': 1,\n",
      "          'comparison': 1,\n",
      "          'say': 1,\n",
      "          'visuals': 1,\n",
      "          'even': 1,\n",
      "          'live': 1,\n",
      "          'casting': 1,\n",
      "          'aspect': 1,\n",
      "          'neil': 1,\n",
      "          'jordans': 1,\n",
      "          'interview': 1,\n",
      "          'vampire': 1,\n",
      "          'nalthough': 1,\n",
      "          'refuses': 1,\n",
      "          'stay': 1,\n",
      "          'still': 1,\n",
      "          'occasionally': 1,\n",
      "          'pushy': 1,\n",
      "          'score': 1,\n",
      "          'times': 1,\n",
      "          'tiering': 1,\n",
      "          'effective': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'minor': 1,\n",
      "          'faults': 1,\n",
      "          'easily': 1,\n",
      "          'forgivable': 1,\n",
      "          'otherwise': 1,\n",
      "          'captivating': 1,\n",
      "          'stimulating': 1,\n",
      "          'created': 1,\n",
      "          'shellys': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 21,\n",
      "          'one': 10,\n",
      "          'love': 7,\n",
      "          'like': 7,\n",
      "          'way': 6,\n",
      "          'bizarre': 6,\n",
      "          'ni': 6,\n",
      "          'rather': 5,\n",
      "          'bacon': 5,\n",
      "          'george': 5,\n",
      "          'almost': 5,\n",
      "          'devil': 4,\n",
      "          'looks': 4,\n",
      "          'nthe': 4,\n",
      "          'nhe': 4,\n",
      "          'still': 4,\n",
      "          'shot': 3,\n",
      "          'looking': 3,\n",
      "          'life': 3,\n",
      "          'something': 3,\n",
      "          'world': 3,\n",
      "          'nas': 3,\n",
      "          'nits': 3,\n",
      "          'delight': 3,\n",
      "          'friends': 3,\n",
      "          'night': 3,\n",
      "          'nbacon': 3,\n",
      "          'substance': 3,\n",
      "          'drove': 3,\n",
      "          'even': 3,\n",
      "          'wish': 3,\n",
      "          'mans': 3,\n",
      "          'audience': 2,\n",
      "          'plot': 2,\n",
      "          'perhaps': 2,\n",
      "          'artists': 2,\n",
      "          'psyche': 2,\n",
      "          'nwatching': 2,\n",
      "          'look': 2,\n",
      "          'neverything': 2,\n",
      "          'painter': 2,\n",
      "          'francis': 2,\n",
      "          'wasnt': 2,\n",
      "          'close': 2,\n",
      "          'times': 2,\n",
      "          'bacons': 2,\n",
      "          'real': 2,\n",
      "          'first': 2,\n",
      "          'really': 2,\n",
      "          'come': 2,\n",
      "          'great': 2,\n",
      "          'derek': 2,\n",
      "          'jacobi': 2,\n",
      "          'lives': 2,\n",
      "          'wants': 2,\n",
      "          'taking': 2,\n",
      "          'maybe': 2,\n",
      "          'pain': 2,\n",
      "          'anything': 2,\n",
      "          'shows': 2,\n",
      "          'together': 2,\n",
      "          'least': 2,\n",
      "          'another': 2,\n",
      "          'nwhile': 2,\n",
      "          'certain': 2,\n",
      "          'doesnt': 2,\n",
      "          'especially': 2,\n",
      "          'thought': 2,\n",
      "          'hypnotic': 2,\n",
      "          'point': 2,\n",
      "          'merely': 2,\n",
      "          'style': 2,\n",
      "          'scene': 2,\n",
      "          'bit': 2,\n",
      "          'meaning': 2,\n",
      "          'humanity': 2,\n",
      "          'truly': 2,\n",
      "          'respect': 2,\n",
      "          'sit': 2,\n",
      "          'seems': 2,\n",
      "          'challenging': 1,\n",
      "          'munundating': 1,\n",
      "          'wild': 1,\n",
      "          'imagery': 1,\n",
      "          'structure': 1,\n",
      "          'disallows': 1,\n",
      "          'attempt': 1,\n",
      "          'get': 1,\n",
      "          'us': 1,\n",
      "          'know': 1,\n",
      "          'lifeline': 1,\n",
      "          'enthralled': 1,\n",
      "          'director': 1,\n",
      "          'everything': 1,\n",
      "          'personalized': 1,\n",
      "          'filter': 1,\n",
      "          'films': 1,\n",
      "          'subject': 1,\n",
      "          'looked': 1,\n",
      "          'personally': 1,\n",
      "          'nbut': 1,\n",
      "          'engrossed': 1,\n",
      "          'stumbled': 1,\n",
      "          'upon': 1,\n",
      "          'thoughts': 1,\n",
      "          'halfway': 1,\n",
      "          'awakened': 1,\n",
      "          'trance': 1,\n",
      "          'inner': 1,\n",
      "          'distraction': 1,\n",
      "          'began': 1,\n",
      "          'try': 1,\n",
      "          'follow': 1,\n",
      "          'whats': 1,\n",
      "          'going': 1,\n",
      "          'nexactly': 1,\n",
      "          'sure': 1,\n",
      "          'insightful': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'vacuous': 1,\n",
      "          'ndirected': 1,\n",
      "          'written': 1,\n",
      "          'john': 1,\n",
      "          'maybury': 1,\n",
      "          'stylish': 1,\n",
      "          'masterpiece': 1,\n",
      "          'senses': 1,\n",
      "          'originally': 1,\n",
      "          'perplexing': 1,\n",
      "          'camera': 1,\n",
      "          'angles': 1,\n",
      "          'ferociously': 1,\n",
      "          'askew': 1,\n",
      "          'closeups': 1,\n",
      "          'uncomfortably': 1,\n",
      "          'editing': 1,\n",
      "          'deft': 1,\n",
      "          'occasionally': 1,\n",
      "          'cutting': 1,\n",
      "          'away': 1,\n",
      "          'every': 1,\n",
      "          'couple': 1,\n",
      "          'seconds': 1,\n",
      "          'holding': 1,\n",
      "          'long': 1,\n",
      "          'wonder': 1,\n",
      "          'supposed': 1,\n",
      "          'voyeurs': 1,\n",
      "          'intruders': 1,\n",
      "          'story': 1,\n",
      "          'nive': 1,\n",
      "          'heard': 1,\n",
      "          'much': 1,\n",
      "          'didnt': 1,\n",
      "          'read': 1,\n",
      "          'prior': 1,\n",
      "          'learned': 1,\n",
      "          'england': 1,\n",
      "          'reached': 1,\n",
      "          'peak': 1,\n",
      "          '60s': 1,\n",
      "          '70s': 1,\n",
      "          'drawing': 1,\n",
      "          'hideously': 1,\n",
      "          'drawings': 1,\n",
      "          'carnage': 1,\n",
      "          'closet': 1,\n",
      "          'interviews': 1,\n",
      "          'notoriously': 1,\n",
      "          'drunk': 1,\n",
      "          'yet': 1,\n",
      "          'incredibly': 1,\n",
      "          'witty': 1,\n",
      "          'played': 1,\n",
      "          'shakesperean': 1,\n",
      "          'actor': 1,\n",
      "          'hes': 1,\n",
      "          'foppish': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'cross': 1,\n",
      "          'oscar': 1,\n",
      "          'wilde': 1,\n",
      "          'nero': 1,\n",
      "          'live': 1,\n",
      "          'disatisfaction': 1,\n",
      "          'privelege': 1,\n",
      "          'destruction': 1,\n",
      "          'others': 1,\n",
      "          'champagne': 1,\n",
      "          'sham': 1,\n",
      "          'says': 1,\n",
      "          'bar': 1,\n",
      "          'frequents': 1,\n",
      "          'n': 1,\n",
      "          'chronicles': 1,\n",
      "          'latter': 1,\n",
      "          'part': 1,\n",
      "          'wellknown': 1,\n",
      "          'midlife': 1,\n",
      "          'awakens': 1,\n",
      "          'hears': 1,\n",
      "          'man': 1,\n",
      "          'tumble': 1,\n",
      "          'ceiling': 1,\n",
      "          'window': 1,\n",
      "          'land': 1,\n",
      "          'floor': 1,\n",
      "          'walks': 1,\n",
      "          'unafraid': 1,\n",
      "          'finds': 1,\n",
      "          'discovers': 1,\n",
      "          'thief': 1,\n",
      "          'dyer': 1,\n",
      "          'daniel': 1,\n",
      "          'craig': 1,\n",
      "          'gives': 1,\n",
      "          'offer': 1,\n",
      "          'spends': 1,\n",
      "          'take': 1,\n",
      "          'morning': 1,\n",
      "          'ngeorge': 1,\n",
      "          'agrees': 1,\n",
      "          'bed': 1,\n",
      "          'goes': 1,\n",
      "          'ends': 1,\n",
      "          'staying': 1,\n",
      "          'whatever': 1,\n",
      "          'reason': 1,\n",
      "          'reference': 1,\n",
      "          'creating': 1,\n",
      "          'high': 1,\n",
      "          'art': 1,\n",
      "          'minors': 1,\n",
      "          'showing': 1,\n",
      "          'group': 1,\n",
      "          'people': 1,\n",
      "          'radiate': 1,\n",
      "          'connection': 1,\n",
      "          'shown': 1,\n",
      "          'understood': 1,\n",
      "          'relationship': 1,\n",
      "          'remains': 1,\n",
      "          'stagnant': 1,\n",
      "          'haughty': 1,\n",
      "          'simple': 1,\n",
      "          'understand': 1,\n",
      "          'paintings': 1,\n",
      "          'watching': 1,\n",
      "          'thats': 1,\n",
      "          'basically': 1,\n",
      "          'feel': 1,\n",
      "          'free': 1,\n",
      "          'restraints': 1,\n",
      "          'form': 1,\n",
      "          'uniquely': 1,\n",
      "          'felt': 1,\n",
      "          'attention': 1,\n",
      "          'entirely': 1,\n",
      "          'made': 1,\n",
      "          'nonce': 1,\n",
      "          'easier': 1,\n",
      "          'piece': 1,\n",
      "          'kept': 1,\n",
      "          'thinking': 1,\n",
      "          'wondering': 1,\n",
      "          'nsomeone': 1,\n",
      "          'make': 1,\n",
      "          'accident': 1,\n",
      "          'allow': 1,\n",
      "          'creep': 1,\n",
      "          'nthinking': 1,\n",
      "          'remembered': 1,\n",
      "          'two': 1,\n",
      "          'fed': 1,\n",
      "          'eachother': 1,\n",
      "          'masochist': 1,\n",
      "          'cruelty': 1,\n",
      "          'watches': 1,\n",
      "          'boxing': 1,\n",
      "          'match': 1,\n",
      "          'orgiastic': 1,\n",
      "          'lets': 1,\n",
      "          'squeal': 1,\n",
      "          'pleasure': 1,\n",
      "          'blood': 1,\n",
      "          'boxers': 1,\n",
      "          'head': 1,\n",
      "          'splashes': 1,\n",
      "          'across': 1,\n",
      "          'face': 1,\n",
      "          'masturbates': 1,\n",
      "          'odessa': 1,\n",
      "          'steps': 1,\n",
      "          'sequence': 1,\n",
      "          'eisensteins': 1,\n",
      "          'battleship': 1,\n",
      "          'potemkin': 1,\n",
      "          'far': 1,\n",
      "          'edge': 1,\n",
      "          'guess': 1,\n",
      "          'explains': 1,\n",
      "          'title': 1,\n",
      "          'na': 1,\n",
      "          'nthats': 1,\n",
      "          'devoid': 1,\n",
      "          'hadnt': 1,\n",
      "          'reduced': 1,\n",
      "          'making': 1,\n",
      "          'selfish': 1,\n",
      "          'thing': 1,\n",
      "          'avoided': 1,\n",
      "          'inside': 1,\n",
      "          'twisted': 1,\n",
      "          'pysche': 1,\n",
      "          'always': 1,\n",
      "          'best': 1,\n",
      "          'obtain': 1,\n",
      "          'insights': 1,\n",
      "          'uniqueness': 1,\n",
      "          'forcing': 1,\n",
      "          'universality': 1,\n",
      "          'audiences': 1,\n",
      "          'throat': 1,\n",
      "          'nthat': 1,\n",
      "          'dont': 1,\n",
      "          'reduce': 1,\n",
      "          'cant': 1,\n",
      "          'say': 1,\n",
      "          'totally': 1,\n",
      "          'enjoyed': 1,\n",
      "          'though': 1,\n",
      "          'ndespite': 1,\n",
      "          'things': 1,\n",
      "          'movie': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'neven': 1,\n",
      "          'normally': 1,\n",
      "          'trite': 1,\n",
      "          'length': 1,\n",
      "          'ninety': 1,\n",
      "          'minutes': 1,\n",
      "          'arduous': 1,\n",
      "          'task': 1,\n",
      "          'exhausting': 1,\n",
      "          'hour': 1,\n",
      "          'nthough': 1,\n",
      "          'gimmicky': 1,\n",
      "          'redundant': 1,\n",
      "          'advantage': 1,\n",
      "          'nature': 1,\n",
      "          'deeper': 1,\n",
      "          'beautiful': 1,\n",
      "          'painstakingly': 1,\n",
      "          'crafted': 1,\n",
      "          'along': 1,\n",
      "          'dreams': 1,\n",
      "          'may': 1,\n",
      "          'dark': 1,\n",
      "          'city': 1,\n",
      "          'years': 1,\n",
      "          'visually': 1,\n",
      "          'stunning': 1,\n",
      "          'nin': 1,\n",
      "          'fact': 1,\n",
      "          'better': 1,\n",
      "          'script': 1,\n",
      "          'forged': 1,\n",
      "          'id': 1,\n",
      "          'compare': 1,\n",
      "          'visual': 1,\n",
      "          'power': 1,\n",
      "          'peter': 1,\n",
      "          'greenaway': 1,\n",
      "          'complete': 1,\n",
      "          'similar': 1,\n",
      "          'haunting': 1,\n",
      "          'images': 1,\n",
      "          'stick': 1,\n",
      "          'mind': 1,\n",
      "          'forever': 1,\n",
      "          'nand': 1,\n",
      "          'dymanite': 1,\n",
      "          'performance': 1,\n",
      "          'comic': 1,\n",
      "          'distanced': 1,\n",
      "          'tone': 1,\n",
      "          'needs': 1,\n",
      "          'mostly': 1,\n",
      "          'hair': 1,\n",
      "          'nthen': 1,\n",
      "          'would': 1,\n",
      "          'hold': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'elizabeth': 8,\n",
      "          'queen': 4,\n",
      "          'love': 4,\n",
      "          'set': 2,\n",
      "          'upset': 2,\n",
      "          'protestant': 2,\n",
      "          'catholic': 2,\n",
      "          'country': 2,\n",
      "          'blanchette': 2,\n",
      "          'nelizabeth': 2,\n",
      "          'shakespeare': 2,\n",
      "          'found': 2,\n",
      "          'costume': 1,\n",
      "          'drama': 1,\n",
      "          '1500s': 1,\n",
      "          'england': 1,\n",
      "          'lush': 1,\n",
      "          'romantic': 1,\n",
      "          'political': 1,\n",
      "          'masterpiece': 1,\n",
      "          'crossing': 1,\n",
      "          'respected': 1,\n",
      "          'one': 1,\n",
      "          'nwhen': 1,\n",
      "          'court': 1,\n",
      "          'whole': 1,\n",
      "          'passing': 1,\n",
      "          'queens': 1,\n",
      "          'royal': 1,\n",
      "          'family': 1,\n",
      "          'speak': 1,\n",
      "          'crowened': 1,\n",
      "          'another': 1,\n",
      "          'plus': 1,\n",
      "          'new': 1,\n",
      "          'cate': 1,\n",
      "          'bastard': 1,\n",
      "          'baby': 1,\n",
      "          'previous': 1,\n",
      "          'marys': 1,\n",
      "          'father': 1,\n",
      "          'nthe': 1,\n",
      "          'persecution': 1,\n",
      "          'catholics': 1,\n",
      "          'protestants': 1,\n",
      "          'isnt': 1,\n",
      "          'majority': 1,\n",
      "          'must': 1,\n",
      "          'face': 1,\n",
      "          'decision': 1,\n",
      "          'give': 1,\n",
      "          'personal': 1,\n",
      "          'pleasures': 1,\n",
      "          'lover': 1,\n",
      "          'joseph': 1,\n",
      "          'fiennes': 1,\n",
      "          'order': 1,\n",
      "          'rule': 1,\n",
      "          'successfully': 1,\n",
      "          '40': 1,\n",
      "          'years': 1,\n",
      "          'nboth': 1,\n",
      "          'elizabethian': 1,\n",
      "          'era': 1,\n",
      "          'feature': 1,\n",
      "          'judi': 1,\n",
      "          'dench': 1,\n",
      "          'plays': 1,\n",
      "          'course': 1,\n",
      "          'nyet': 1,\n",
      "          'stimulating': 1,\n",
      "          'involving': 1,\n",
      "          'features': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'powerful': 1,\n",
      "          'hypnotic': 1,\n",
      "          'sense': 1,\n",
      "          'role': 1,\n",
      "          'also': 1,\n",
      "          'featuring': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'richard': 1,\n",
      "          'attenborough': 1,\n",
      "          'pick': 1,\n",
      "          'best': 1,\n",
      "          'picture': 1,\n",
      "          '1998': 1,\n",
      "          'award': 1,\n",
      "          'nits': 1,\n",
      "          'dynamic': 1,\n",
      "          'important': 1,\n",
      "          'breathtaking': 1,\n",
      "          'film': 1,\n",
      "          'loyalty': 1,\n",
      "          'power': 1,\n",
      "          'greed': 1,\n",
      "          'trust': 1,\n",
      "          'nshakespeare': 1,\n",
      "          'would': 1,\n",
      "          'die': 1,\n",
      "          'book': 1,\n",
      "          'rights': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'jay': 8,\n",
      "          'silent': 8,\n",
      "          'bob': 8,\n",
      "          'film': 5,\n",
      "          'smith': 4,\n",
      "          'smiths': 3,\n",
      "          'characters': 3,\n",
      "          'van': 3,\n",
      "          'book': 3,\n",
      "          'nthe': 3,\n",
      "          'clerks': 2,\n",
      "          'nso': 2,\n",
      "          'latest': 2,\n",
      "          'good': 2,\n",
      "          'feature': 2,\n",
      "          'miramax': 2,\n",
      "          'bobs': 2,\n",
      "          'include': 2,\n",
      "          'affleck': 2,\n",
      "          'damon': 2,\n",
      "          'george': 2,\n",
      "          'nthis': 2,\n",
      "          'road': 2,\n",
      "          'jason': 2,\n",
      "          'hitching': 2,\n",
      "          'hollywood': 2,\n",
      "          'bluntman': 2,\n",
      "          'chronic': 2,\n",
      "          'comic': 2,\n",
      "          'two': 2,\n",
      "          'people': 2,\n",
      "          'though': 2,\n",
      "          'duo': 2,\n",
      "          'nbut': 2,\n",
      "          'played': 2,\n",
      "          'laughs': 2,\n",
      "          'movies': 2,\n",
      "          'hunting': 2,\n",
      "          'comes': 2,\n",
      "          'strike': 1,\n",
      "          'back': 1,\n",
      "          'rightfully': 1,\n",
      "          'subtitled': 1,\n",
      "          'kevin': 1,\n",
      "          'greatest': 1,\n",
      "          'hits': 1,\n",
      "          'comprised': 1,\n",
      "          'numerous': 1,\n",
      "          'references': 1,\n",
      "          'earlier': 1,\n",
      "          'works': 1,\n",
      "          'including': 1,\n",
      "          'mall': 1,\n",
      "          'rats': 1,\n",
      "          'nchasing': 1,\n",
      "          'amy': 1,\n",
      "          'dogma': 1,\n",
      "          'advised': 1,\n",
      "          'bone': 1,\n",
      "          'cinematic': 1,\n",
      "          'quartet': 1,\n",
      "          'order': 1,\n",
      "          'achieve': 1,\n",
      "          'maximum': 1,\n",
      "          'enjoyment': 1,\n",
      "          'outing': 1,\n",
      "          'nkevin': 1,\n",
      "          'must': 1,\n",
      "          'likable': 1,\n",
      "          'person': 1,\n",
      "          'several': 1,\n",
      "          'sports': 1,\n",
      "          'took': 1,\n",
      "          'ton': 1,\n",
      "          'kidding': 1,\n",
      "          'notably': 1,\n",
      "          'studio': 1,\n",
      "          'whose': 1,\n",
      "          'subsidiary': 1,\n",
      "          'dimension': 1,\n",
      "          'films': 1,\n",
      "          'distributor': 1,\n",
      "          'nothers': 1,\n",
      "          'deserving': 1,\n",
      "          'accolades': 1,\n",
      "          'ben': 1,\n",
      "          'matt': 1,\n",
      "          'directors': 1,\n",
      "          'gus': 1,\n",
      "          'zant': 1,\n",
      "          'wes': 1,\n",
      "          'craven': 1,\n",
      "          'mighty': 1,\n",
      "          'lucas': 1,\n",
      "          'laughfilled': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'mewes': 1,\n",
      "          'sabotage': 1,\n",
      "          'miramaxs': 1,\n",
      "          'production': 1,\n",
      "          'based': 1,\n",
      "          'jersey': 1,\n",
      "          'slackers': 1,\n",
      "          'njays': 1,\n",
      "          'convoluted': 1,\n",
      "          'reasoning': 1,\n",
      "          'shut': 1,\n",
      "          'internet': 1,\n",
      "          'stop': 1,\n",
      "          'insulting': 1,\n",
      "          'even': 1,\n",
      "          'dissing': 1,\n",
      "          'rather': 1,\n",
      "          'counterparts': 1,\n",
      "          'nno': 1,\n",
      "          'matter': 1,\n",
      "          'begin': 1,\n",
      "          'long': 1,\n",
      "          'trek': 1,\n",
      "          'rides': 1,\n",
      "          'across': 1,\n",
      "          'country': 1,\n",
      "          'first': 1,\n",
      "          'get': 1,\n",
      "          'tips': 1,\n",
      "          'veteran': 1,\n",
      "          'hitchhiker': 1,\n",
      "          'carlin': 1,\n",
      "          'tells': 1,\n",
      "          'follow': 1,\n",
      "          'rules': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'jays': 1,\n",
      "          'interpretation': 1,\n",
      "          'immediately': 1,\n",
      "          'gets': 1,\n",
      "          'trouble': 1,\n",
      "          'friendly': 1,\n",
      "          'nun': 1,\n",
      "          'carrie': 1,\n",
      "          'fisher': 1,\n",
      "          'offers': 1,\n",
      "          'ride': 1,\n",
      "          'njay': 1,\n",
      "          'contains': 1,\n",
      "          'enough': 1,\n",
      "          'weaker': 1,\n",
      "          'aspects': 1,\n",
      "          'lame': 1,\n",
      "          'subplot': 1,\n",
      "          'girl': 1,\n",
      "          'gang': 1,\n",
      "          'diamond': 1,\n",
      "          'thieves': 1,\n",
      "          'well': 1,\n",
      "          'buffoonish': 1,\n",
      "          'federal': 1,\n",
      "          'park': 1,\n",
      "          'ranger': 1,\n",
      "          'ferrell': 1,\n",
      "          'easily': 1,\n",
      "          'tolerated': 1,\n",
      "          'nreally': 1,\n",
      "          'laugh': 1,\n",
      "          'heroes': 1,\n",
      "          'picked': 1,\n",
      "          'mystery': 1,\n",
      "          'potinduced': 1,\n",
      "          'hallucination': 1,\n",
      "          'concerning': 1,\n",
      "          'velma': 1,\n",
      "          'daphne': 1,\n",
      "          'highlight': 1,\n",
      "          'near': 1,\n",
      "          'finale': 1,\n",
      "          'nin': 1,\n",
      "          'sneak': 1,\n",
      "          'onto': 1,\n",
      "          'lot': 1,\n",
      "          'crash': 1,\n",
      "          'set': 1,\n",
      "          'mistaken': 1,\n",
      "          'extras': 1,\n",
      "          'affleckdamon': 1,\n",
      "          'picture': 1,\n",
      "          '2': 1,\n",
      "          'season': 1,\n",
      "          'nhere': 1,\n",
      "          'privy': 1,\n",
      "          'hilarious': 1,\n",
      "          'conversation': 1,\n",
      "          'put': 1,\n",
      "          'others': 1,\n",
      "          'careers': 1,\n",
      "          'choices': 1,\n",
      "          'nand': 1,\n",
      "          'continue': 1,\n",
      "          'grow': 1,\n",
      "          'nnext': 1,\n",
      "          'american': 1,\n",
      "          'pie': 1,\n",
      "          'biggs': 1,\n",
      "          'james': 1,\n",
      "          'dawsons': 1,\n",
      "          'creek': 1,\n",
      "          'der': 1,\n",
      "          'beek': 1,\n",
      "          'actors': 1,\n",
      "          'chosen': 1,\n",
      "          'portray': 1,\n",
      "          'pair': 1,\n",
      "          'mistake': 1,\n",
      "          'stunt': 1,\n",
      "          'doubles': 1,\n",
      "          'nfinally': 1,\n",
      "          'star': 1,\n",
      "          'wars': 1,\n",
      "          'homage': 1,\n",
      "          'featuring': 1,\n",
      "          'one': 1,\n",
      "          'stars': 1,\n",
      "          'legendary': 1,\n",
      "          'bit': 1,\n",
      "          'leave': 1,\n",
      "          'howling': 1,\n",
      "          'nsmiths': 1,\n",
      "          'obvious': 1,\n",
      "          'affection': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'icons': 1,\n",
      "          'evident': 1,\n",
      "          'way': 1,\n",
      "          'shoots': 1,\n",
      "          'scenes': 1,\n",
      "          'handles': 1,\n",
      "          'performers': 1,\n",
      "          'nhe': 1,\n",
      "          'allows': 1,\n",
      "          'play': 1,\n",
      "          'tongueincheek': 1,\n",
      "          'ntheir': 1,\n",
      "          'fun': 1,\n",
      "          'screen': 1,\n",
      "          'audience': 1,\n",
      "          'nit': 1,\n",
      "          'bad': 1,\n",
      "          'swan': 1,\n",
      "          'song': 1,\n",
      "          'grown': 1,\n",
      "          'since': 1,\n",
      "          'supporting': 1,\n",
      "          'role': 1,\n",
      "          'debuts': 1,\n",
      "          'realizes': 1,\n",
      "          'times': 1,\n",
      "          'changed': 1,\n",
      "          'doesnt': 1,\n",
      "          'want': 1,\n",
      "          'creations': 1,\n",
      "          'overstay': 1,\n",
      "          'welcome': 1,\n",
      "          'provided': 1,\n",
      "          'right': 1,\n",
      "          'kind': 1,\n",
      "          'exit': 1,\n",
      "          'saving': 1,\n",
      "          'best': 1,\n",
      "          'last': 1,\n",
      "          'ngoodbye': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'youre': 1,\n",
      "          'going': 1,\n",
      "          'blast': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'nthe': 5,\n",
      "          'martians': 4,\n",
      "          'invasion': 3,\n",
      "          'hillarous': 2,\n",
      "          'cinema': 2,\n",
      "          'people': 2,\n",
      "          'earth': 2,\n",
      "          'ray': 2,\n",
      "          'guns': 2,\n",
      "          'nthey': 2,\n",
      "          'nbut': 2,\n",
      "          'great': 2,\n",
      "          'involving': 2,\n",
      "          'aliens': 2,\n",
      "          'lots': 2,\n",
      "          'sci': 1,\n",
      "          'ficomedy': 1,\n",
      "          'starring': 1,\n",
      "          'jack': 1,\n",
      "          'nicholson': 1,\n",
      "          'pierce': 1,\n",
      "          'brosnan': 1,\n",
      "          'annette': 1,\n",
      "          'benning': 1,\n",
      "          'glenn': 1,\n",
      "          'close': 1,\n",
      "          'martin': 1,\n",
      "          'short': 1,\n",
      "          'stars': 1,\n",
      "          'na': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'picture': 1,\n",
      "          'landed': 1,\n",
      "          'tim': 1,\n",
      "          'burton': 1,\n",
      "          'movie': 1,\n",
      "          'nbefore': 1,\n",
      "          'entering': 1,\n",
      "          'initially': 1,\n",
      "          'little': 1,\n",
      "          'bit': 1,\n",
      "          'nervous': 1,\n",
      "          'would': 1,\n",
      "          'like': 1,\n",
      "          'nmany': 1,\n",
      "          'saying': 1,\n",
      "          'silly': 1,\n",
      "          'rubbish': 1,\n",
      "          'point': 1,\n",
      "          'nhow': 1,\n",
      "          'wrong': 1,\n",
      "          'ni': 1,\n",
      "          'left': 1,\n",
      "          'feeling': 1,\n",
      "          'much': 1,\n",
      "          'happier': 1,\n",
      "          'entered': 1,\n",
      "          'story': 1,\n",
      "          'attacking': 1,\n",
      "          'nusing': 1,\n",
      "          'hooray': 1,\n",
      "          'generally': 1,\n",
      "          'cause': 1,\n",
      "          'havoc': 1,\n",
      "          'around': 1,\n",
      "          'u': 1,\n",
      "          'countries': 1,\n",
      "          'nnicholson': 1,\n",
      "          'plays': 1,\n",
      "          'president': 1,\n",
      "          'must': 1,\n",
      "          'try': 1,\n",
      "          'stop': 1,\n",
      "          'also': 1,\n",
      "          'taking': 1,\n",
      "          'advice': 1,\n",
      "          'loopy': 1,\n",
      "          'officials': 1,\n",
      "          'basically': 1,\n",
      "          'load': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'showing': 1,\n",
      "          'destroying': 1,\n",
      "          'way': 1,\n",
      "          'killed': 1,\n",
      "          'mildly': 1,\n",
      "          'disturbing': 1,\n",
      "          'scene': 1,\n",
      "          'martian': 1,\n",
      "          'lady': 1,\n",
      "          'mad': 1,\n",
      "          'general': 1,\n",
      "          'wants': 1,\n",
      "          'nuke': 1,\n",
      "          'away': 1,\n",
      "          'ends': 1,\n",
      "          'getting': 1,\n",
      "          'squashed': 1,\n",
      "          'foot': 1,\n",
      "          'gory': 1,\n",
      "          'finale': 1,\n",
      "          'alien': 1,\n",
      "          'heads': 1,\n",
      "          'exploding': 1,\n",
      "          'fun': 1,\n",
      "          'full': 1,\n",
      "          'character': 1,\n",
      "          'performances': 1,\n",
      "          'spot': 1,\n",
      "          'star': 1,\n",
      "          'cast': 1,\n",
      "          'help': 1,\n",
      "          'make': 1,\n",
      "          'enjoyable': 1,\n",
      "          'million': 1,\n",
      "          'times': 1,\n",
      "          'better': 1,\n",
      "          'dire': 1,\n",
      "          'independance': 1,\n",
      "          'day': 1,\n",
      "          'real': 1,\n",
      "          'tribute': 1,\n",
      "          'tacky': 1,\n",
      "          '50s': 1,\n",
      "          'movies': 1,\n",
      "          'score': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'laughs': 1,\n",
      "          'nthis': 1,\n",
      "          'best': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'long': 1,\n",
      "          'time': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bond': 4,\n",
      "          'tomorrow': 4,\n",
      "          'never': 4,\n",
      "          'dies': 4,\n",
      "          'pryce': 4,\n",
      "          'many': 4,\n",
      "          'goldeneye': 3,\n",
      "          'new': 3,\n",
      "          'time': 3,\n",
      "          'film': 2,\n",
      "          'take': 2,\n",
      "          'nthe': 2,\n",
      "          'n': 2,\n",
      "          'picture': 2,\n",
      "          'entertaining': 2,\n",
      "          'nas': 2,\n",
      "          'carver': 2,\n",
      "          'turner': 2,\n",
      "          'sellars': 2,\n",
      "          'nits': 2,\n",
      "          'none': 2,\n",
      "          'brosnan': 2,\n",
      "          'last': 2,\n",
      "          'years': 2,\n",
      "          'nand': 2,\n",
      "          'though': 2,\n",
      "          'taking': 2,\n",
      "          'perhaps': 2,\n",
      "          'dialogue': 2,\n",
      "          'special': 2,\n",
      "          'lets': 1,\n",
      "          'face': 1,\n",
      "          '100': 1,\n",
      "          'millionplus': 1,\n",
      "          'smash': 1,\n",
      "          'good': 1,\n",
      "          'means': 1,\n",
      "          'movie': 1,\n",
      "          'marginally': 1,\n",
      "          'better': 1,\n",
      "          'say': 1,\n",
      "          'view': 1,\n",
      "          'kill': 1,\n",
      "          'either': 1,\n",
      "          'timothy': 1,\n",
      "          'dalton': 1,\n",
      "          'pictures': 1,\n",
      "          'virtue': 1,\n",
      "          'nice': 1,\n",
      "          'pacing': 1,\n",
      "          'nbut': 1,\n",
      "          'revive': 1,\n",
      "          'series': 1,\n",
      "          'granted': 1,\n",
      "          'producers': 1,\n",
      "          'directions': 1,\n",
      "          'ie': 1,\n",
      "          'woman': 1,\n",
      "          'also': 1,\n",
      "          'outing': 1,\n",
      "          'since': 1,\n",
      "          'spy': 1,\n",
      "          'loved': 1,\n",
      "          'opens': 1,\n",
      "          'china': 1,\n",
      "          'considering': 1,\n",
      "          'war': 1,\n",
      "          'britain': 1,\n",
      "          'standard': 1,\n",
      "          'military': 1,\n",
      "          'operation': 1,\n",
      "          'misconstrued': 1,\n",
      "          'hostile': 1,\n",
      "          'threat': 1,\n",
      "          'english': 1,\n",
      "          'submarine': 1,\n",
      "          'attack': 1,\n",
      "          'occurs': 1,\n",
      "          'frontpage': 1,\n",
      "          'headline': 1,\n",
      "          'already': 1,\n",
      "          'prepared': 1,\n",
      "          'courtesy': 1,\n",
      "          'media': 1,\n",
      "          'ncarver': 1,\n",
      "          'man': 1,\n",
      "          'deluded': 1,\n",
      "          'magnate': 1,\n",
      "          'sort': 1,\n",
      "          'hybrid': 1,\n",
      "          'ted': 1,\n",
      "          'bill': 1,\n",
      "          'gates': 1,\n",
      "          'peter': 1,\n",
      "          'german': 1,\n",
      "          'scientist': 1,\n",
      "          'dr': 1,\n",
      "          'nstrangelove': 1,\n",
      "          'physically': 1,\n",
      "          'even': 1,\n",
      "          'recalls': 1,\n",
      "          'kubrick': 1,\n",
      "          'days': 1,\n",
      "          'james': 1,\n",
      "          'assistance': 1,\n",
      "          'course': 1,\n",
      "          'wealth': 1,\n",
      "          'gadgets': 1,\n",
      "          'including': 1,\n",
      "          'multipurpose': 1,\n",
      "          'cell': 1,\n",
      "          'phone': 1,\n",
      "          'beautiful': 1,\n",
      "          'women': 1,\n",
      "          'nenter': 1,\n",
      "          'michelle': 1,\n",
      "          'yeoh': 1,\n",
      "          'fresh': 1,\n",
      "          'supercop': 1,\n",
      "          'chinese': 1,\n",
      "          'secret': 1,\n",
      "          'agent': 1,\n",
      "          'agenda': 1,\n",
      "          'effortless': 1,\n",
      "          'grace': 1,\n",
      "          'cat': 1,\n",
      "          'burgles': 1,\n",
      "          'dispatches': 1,\n",
      "          'baddies': 1,\n",
      "          'seemingly': 1,\n",
      "          'ease': 1,\n",
      "          'preparing': 1,\n",
      "          'pasta': 1,\n",
      "          'refuses': 1,\n",
      "          'advances': 1,\n",
      "          'philandering': 1,\n",
      "          'hero': 1,\n",
      "          'nthey': 1,\n",
      "          'make': 1,\n",
      "          'great': 1,\n",
      "          'team': 1,\n",
      "          'surprisingly': 1,\n",
      "          'efficient': 1,\n",
      "          'given': 1,\n",
      "          'helm': 1,\n",
      "          'director': 1,\n",
      "          'hooch': 1,\n",
      "          'nspottiswoode': 1,\n",
      "          'crafted': 1,\n",
      "          'breathtaking': 1,\n",
      "          'set': 1,\n",
      "          'pieces': 1,\n",
      "          'much': 1,\n",
      "          'intricate': 1,\n",
      "          'impressive': 1,\n",
      "          'instance': 1,\n",
      "          'tank': 1,\n",
      "          'scene': 1,\n",
      "          'nmoreover': 1,\n",
      "          'settled': 1,\n",
      "          'role': 1,\n",
      "          'feel': 1,\n",
      "          'born': 1,\n",
      "          'play': 1,\n",
      "          'fate': 1,\n",
      "          'franchise': 1,\n",
      "          'rested': 1,\n",
      "          'shoulders': 1,\n",
      "          'noticeable': 1,\n",
      "          'discomfort': 1,\n",
      "          'body': 1,\n",
      "          'language': 1,\n",
      "          'nreturned': 1,\n",
      "          'brosnans': 1,\n",
      "          'eyes': 1,\n",
      "          'playfulness': 1,\n",
      "          'demonstrated': 1,\n",
      "          'tvs': 1,\n",
      "          'remington': 1,\n",
      "          'steele': 1,\n",
      "          'deadpan': 1,\n",
      "          'wit': 1,\n",
      "          'carvers': 1,\n",
      "          'motives': 1,\n",
      "          'muddy': 1,\n",
      "          'explains': 1,\n",
      "          'genius': 1,\n",
      "          'insanity': 1,\n",
      "          'success': 1,\n",
      "          'screenwriter': 1,\n",
      "          'fierstein': 1,\n",
      "          'lazy': 1,\n",
      "          'shortcut': 1,\n",
      "          'makes': 1,\n",
      "          'agreeable': 1,\n",
      "          'memorable': 1,\n",
      "          'villain': 1,\n",
      "          'nin': 1,\n",
      "          'future': 1,\n",
      "          'pursue': 1,\n",
      "          'actors': 1,\n",
      "          'talented': 1,\n",
      "          'experienced': 1,\n",
      "          'breathe': 1,\n",
      "          'life': 1,\n",
      "          'cardboard': 1,\n",
      "          'figures': 1,\n",
      "          'nthere': 1,\n",
      "          'explosions': 1,\n",
      "          'qualify': 1,\n",
      "          'could': 1,\n",
      "          'used': 1,\n",
      "          'sharper': 1,\n",
      "          'script': 1,\n",
      "          'amused': 1,\n",
      "          'double': 1,\n",
      "          'entendres': 1,\n",
      "          'reveal': 1,\n",
      "          'stands': 1,\n",
      "          'plot': 1,\n",
      "          'suffers': 1,\n",
      "          'holes': 1,\n",
      "          'im': 1,\n",
      "          'implausibilities': 1,\n",
      "          'tends': 1,\n",
      "          'towards': 1,\n",
      "          'hackneyed': 1,\n",
      "          'nnow': 1,\n",
      "          'elements': 1,\n",
      "          'place': 1,\n",
      "          'modern': 1,\n",
      "          'effects': 1,\n",
      "          'stunt': 1,\n",
      "          'work': 1,\n",
      "          'cool': 1,\n",
      "          'pierce': 1,\n",
      "          'kickass': 1,\n",
      "          'female': 1,\n",
      "          'allies': 1,\n",
      "          'put': 1,\n",
      "          'use': 1,\n",
      "          'something': 1,\n",
      "          'truly': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'ntheres': 1,\n",
      "          'mistaking': 1,\n",
      "          'however': 1,\n",
      "          'ideal': 1,\n",
      "          'holiday': 1,\n",
      "          'escapism': 1,\n",
      "          'first': 1,\n",
      "          'youll': 1,\n",
      "          'walk': 1,\n",
      "          'wanting': 1,\n",
      "          'movies': 1,\n",
      "          'nreviewed': 1,\n",
      "          'december': 1,\n",
      "          '17': 1,\n",
      "          '1997': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 12,\n",
      "          'kevin': 10,\n",
      "          'little': 6,\n",
      "          'great': 6,\n",
      "          'smith': 5,\n",
      "          'jason': 5,\n",
      "          'best': 5,\n",
      "          'god': 5,\n",
      "          'angels': 5,\n",
      "          'jay': 5,\n",
      "          'silent': 5,\n",
      "          'bob': 5,\n",
      "          'us': 5,\n",
      "          'matt': 4,\n",
      "          'damon': 4,\n",
      "          'fiorentino': 4,\n",
      "          'people': 4,\n",
      "          'rather': 4,\n",
      "          'really': 4,\n",
      "          'one': 4,\n",
      "          'cast': 4,\n",
      "          'two': 4,\n",
      "          'way': 4,\n",
      "          'may': 4,\n",
      "          'well': 4,\n",
      "          'ben': 3,\n",
      "          'affleck': 3,\n",
      "          'linda': 3,\n",
      "          'hayek': 3,\n",
      "          'rock': 3,\n",
      "          'lee': 3,\n",
      "          'lot': 3,\n",
      "          'dogma': 3,\n",
      "          'nit': 3,\n",
      "          'funny': 3,\n",
      "          'clerks': 3,\n",
      "          'movies': 3,\n",
      "          'made': 3,\n",
      "          'nnow': 3,\n",
      "          'get': 3,\n",
      "          'much': 3,\n",
      "          'stop': 3,\n",
      "          'back': 3,\n",
      "          'heaven': 3,\n",
      "          'give': 3,\n",
      "          'new': 3,\n",
      "          'also': 3,\n",
      "          'end': 3,\n",
      "          'think': 3,\n",
      "          'message': 3,\n",
      "          'seems': 3,\n",
      "          'gives': 3,\n",
      "          'see': 3,\n",
      "          'characters': 3,\n",
      "          'course': 3,\n",
      "          'nthe': 3,\n",
      "          'classic': 3,\n",
      "          'lines': 3,\n",
      "          'strong': 2,\n",
      "          'sexual': 2,\n",
      "          'dialogue': 2,\n",
      "          'use': 2,\n",
      "          'salma': 2,\n",
      "          'rickman': 2,\n",
      "          'chris': 2,\n",
      "          'mewes': 2,\n",
      "          'george': 2,\n",
      "          'carlin': 2,\n",
      "          'time': 2,\n",
      "          'nbeing': 2,\n",
      "          'huge': 2,\n",
      "          'kevins': 2,\n",
      "          'date': 2,\n",
      "          'smart': 2,\n",
      "          'serious': 2,\n",
      "          'actually': 2,\n",
      "          'isnt': 2,\n",
      "          'nin': 2,\n",
      "          'nthis': 2,\n",
      "          'film': 2,\n",
      "          'cant': 2,\n",
      "          'person': 2,\n",
      "          'hailed': 2,\n",
      "          'critics': 2,\n",
      "          'good': 2,\n",
      "          'nok': 2,\n",
      "          'plays': 2,\n",
      "          'house': 2,\n",
      "          'must': 2,\n",
      "          'find': 2,\n",
      "          'however': 2,\n",
      "          'gets': 2,\n",
      "          'performances': 2,\n",
      "          'try': 2,\n",
      "          'helps': 2,\n",
      "          'along': 2,\n",
      "          'help': 2,\n",
      "          'make': 2,\n",
      "          'comedy': 2,\n",
      "          'could': 2,\n",
      "          'know': 2,\n",
      "          'go': 2,\n",
      "          'goes': 2,\n",
      "          'hilarious': 2,\n",
      "          'start': 2,\n",
      "          'nof': 2,\n",
      "          'script': 2,\n",
      "          'many': 2,\n",
      "          'important': 2,\n",
      "          'makes': 2,\n",
      "          'performance': 2,\n",
      "          'character': 2,\n",
      "          'priceless': 2,\n",
      "          'rated': 1,\n",
      "          'r': 1,\n",
      "          'language': 1,\n",
      "          'drug': 1,\n",
      "          'crude': 1,\n",
      "          'humor': 1,\n",
      "          'violence': 1,\n",
      "          'brief': 1,\n",
      "          'nudity': 1,\n",
      "          'nstarring': 1,\n",
      "          'alan': 1,\n",
      "          'alanis': 1,\n",
      "          'morissette': 1,\n",
      "          'nrunning': 1,\n",
      "          '130': 1,\n",
      "          'minutes': 1,\n",
      "          'fan': 1,\n",
      "          'expecting': 1,\n",
      "          'newest': 1,\n",
      "          'project': 1,\n",
      "          'might': 1,\n",
      "          'work': 1,\n",
      "          'nits': 1,\n",
      "          'foulmouthed': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'undertone': 1,\n",
      "          'besides': 1,\n",
      "          'going': 1,\n",
      "          'jesus': 1,\n",
      "          'christ': 1,\n",
      "          'tries': 1,\n",
      "          'tell': 1,\n",
      "          'thing': 1,\n",
      "          '1994': 1,\n",
      "          '27': 1,\n",
      "          '000': 1,\n",
      "          'premiered': 1,\n",
      "          'sundance': 1,\n",
      "          'called': 1,\n",
      "          'went': 1,\n",
      "          'become': 1,\n",
      "          'video': 1,\n",
      "          'sensation': 1,\n",
      "          'nyou': 1,\n",
      "          'meet': 1,\n",
      "          'green': 1,\n",
      "          'earth': 1,\n",
      "          'seen': 1,\n",
      "          'year': 1,\n",
      "          'soon': 1,\n",
      "          'sequel': 1,\n",
      "          'coming': 1,\n",
      "          '1995': 1,\n",
      "          'another': 1,\n",
      "          'mallrats': 1,\n",
      "          'flopped': 1,\n",
      "          'horribly': 1,\n",
      "          'thought': 1,\n",
      "          'ever': 1,\n",
      "          'pretty': 1,\n",
      "          'flick': 1,\n",
      "          'panned': 1,\n",
      "          'audiences': 1,\n",
      "          '1997': 1,\n",
      "          'chasing': 1,\n",
      "          'amy': 1,\n",
      "          'came': 1,\n",
      "          'biggest': 1,\n",
      "          'success': 1,\n",
      "          '1999': 1,\n",
      "          'name': 1,\n",
      "          'nwow': 1,\n",
      "          'plot': 1,\n",
      "          'regular': 1,\n",
      "          'woman': 1,\n",
      "          'works': 1,\n",
      "          'abortion': 1,\n",
      "          'clinic': 1,\n",
      "          'none': 1,\n",
      "          'day': 1,\n",
      "          'metatron': 1,\n",
      "          'voice': 1,\n",
      "          'appears': 1,\n",
      "          'surprise': 1,\n",
      "          'tells': 1,\n",
      "          'fallen': 1,\n",
      "          'getting': 1,\n",
      "          'ways': 1,\n",
      "          'church': 1,\n",
      "          'told': 1,\n",
      "          'prophets': 1,\n",
      "          'talks': 1,\n",
      "          'doesnt': 1,\n",
      "          'instead': 1,\n",
      "          'jersey': 1,\n",
      "          '13th': 1,\n",
      "          'apostle': 1,\n",
      "          'falls': 1,\n",
      "          'sky': 1,\n",
      "          'guide': 1,\n",
      "          'nsalma': 1,\n",
      "          'serendipity': 1,\n",
      "          'nazrael': 1,\n",
      "          'demon': 1,\n",
      "          'trying': 1,\n",
      "          'win': 1,\n",
      "          'nbethany': 1,\n",
      "          'cheat': 1,\n",
      "          'leading': 1,\n",
      "          'violent': 1,\n",
      "          'bloody': 1,\n",
      "          'twice': 1,\n",
      "          'faith': 1,\n",
      "          'nwhat': 1,\n",
      "          'everything': 1,\n",
      "          'rolled': 1,\n",
      "          'offensive': 1,\n",
      "          'offbeat': 1,\n",
      "          'sassy': 1,\n",
      "          'surprisingly': 1,\n",
      "          'ends': 1,\n",
      "          'feelgood': 1,\n",
      "          'nwho': 1,\n",
      "          'would': 1,\n",
      "          'known': 1,\n",
      "          'soft': 1,\n",
      "          'side': 1,\n",
      "          'faithful': 1,\n",
      "          'offended': 1,\n",
      "          'take': 1,\n",
      "          'heart': 1,\n",
      "          'nyes': 1,\n",
      "          'target': 1,\n",
      "          'catholic': 1,\n",
      "          'community': 1,\n",
      "          'bash': 1,\n",
      "          'review': 1,\n",
      "          'sound': 1,\n",
      "          'confusing': 1,\n",
      "          'first': 1,\n",
      "          'understand': 1,\n",
      "          'excellent': 1,\n",
      "          'nkevin': 1,\n",
      "          'lengths': 1,\n",
      "          'background': 1,\n",
      "          'study': 1,\n",
      "          'watch': 1,\n",
      "          'funniest': 1,\n",
      "          'duo': 1,\n",
      "          'history': 1,\n",
      "          'fall': 1,\n",
      "          'chair': 1,\n",
      "          'laughing': 1,\n",
      "          'friends': 1,\n",
      "          'nprobably': 1,\n",
      "          'like': 1,\n",
      "          'starstudded': 1,\n",
      "          'amazing': 1,\n",
      "          'cameos': 1,\n",
      "          'jeanne': 1,\n",
      "          'garafolo': 1,\n",
      "          'lose': 1,\n",
      "          'track': 1,\n",
      "          'written': 1,\n",
      "          'fwords': 1,\n",
      "          'emphasis': 1,\n",
      "          'talk': 1,\n",
      "          'concentrate': 1,\n",
      "          'laugh': 1,\n",
      "          'nchris': 1,\n",
      "          'nlinda': 1,\n",
      "          'perfect': 1,\n",
      "          'role': 1,\n",
      "          'believe': 1,\n",
      "          'job': 1,\n",
      "          'nalan': 1,\n",
      "          'round': 1,\n",
      "          'starring': 1,\n",
      "          'roles': 1,\n",
      "          'oscar': 1,\n",
      "          'winners': 1,\n",
      "          'hunting': 1,\n",
      "          'held': 1,\n",
      "          'nben': 1,\n",
      "          'got': 1,\n",
      "          'story': 1,\n",
      "          'big': 1,\n",
      "          'flaw': 1,\n",
      "          'unfunny': 1,\n",
      "          'slow': 1,\n",
      "          'parts': 1,\n",
      "          'nhowever': 1,\n",
      "          'direction': 1,\n",
      "          'members': 1,\n",
      "          'stands': 1,\n",
      "          'safely': 1,\n",
      "          'compare': 1,\n",
      "          'nwhile': 1,\n",
      "          'times': 1,\n",
      "          'becomes': 1,\n",
      "          'agree': 1,\n",
      "          'deny': 1,\n",
      "          'ndogma': 1,\n",
      "          'offend': 1,\n",
      "          'especially': 1,\n",
      "          'deeply': 1,\n",
      "          'religious': 1,\n",
      "          'open': 1,\n",
      "          'minded': 1,\n",
      "          'want': 1,\n",
      "          'material': 1,\n",
      "          'nall': 1,\n",
      "          'fans': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'time': 10,\n",
      "          'machine': 6,\n",
      "          'george': 6,\n",
      "          'would': 6,\n",
      "          'nthe': 5,\n",
      "          'genre': 4,\n",
      "          'films': 4,\n",
      "          'wells': 4,\n",
      "          'future': 4,\n",
      "          'film': 4,\n",
      "          'classic': 4,\n",
      "          'one': 3,\n",
      "          'science': 3,\n",
      "          'fiction': 3,\n",
      "          'travel': 3,\n",
      "          'concept': 3,\n",
      "          'travels': 3,\n",
      "          'h': 3,\n",
      "          'g': 3,\n",
      "          'novel': 3,\n",
      "          'way': 3,\n",
      "          'new': 3,\n",
      "          'could': 3,\n",
      "          'became': 3,\n",
      "          'years': 3,\n",
      "          'world': 3,\n",
      "          'war': 3,\n",
      "          'eloi': 3,\n",
      "          'people': 3,\n",
      "          'good': 3,\n",
      "          'although': 2,\n",
      "          'many': 2,\n",
      "          'century': 2,\n",
      "          'nhowever': 2,\n",
      "          'great': 2,\n",
      "          'idle': 2,\n",
      "          'class': 2,\n",
      "          'messages': 2,\n",
      "          'traveling': 2,\n",
      "          'pal': 2,\n",
      "          'directed': 2,\n",
      "          'rod': 2,\n",
      "          'taylor': 2,\n",
      "          'victorian': 2,\n",
      "          'scientist': 2,\n",
      "          'nat': 2,\n",
      "          'first': 2,\n",
      "          'three': 2,\n",
      "          'wars': 2,\n",
      "          'looks': 2,\n",
      "          'young': 2,\n",
      "          'nbut': 2,\n",
      "          'weena': 2,\n",
      "          'mimieux': 2,\n",
      "          'morlocs': 2,\n",
      "          'nfor': 2,\n",
      "          'threat': 2,\n",
      "          'days': 2,\n",
      "          'oldfashioned': 2,\n",
      "          'today': 2,\n",
      "          'example': 2,\n",
      "          'rather': 2,\n",
      "          'hand': 2,\n",
      "          'remembered': 2,\n",
      "          'popular': 1,\n",
      "          'subplots': 1,\n",
      "          'entire': 1,\n",
      "          'nthat': 1,\n",
      "          'purists': 1,\n",
      "          'doubt': 1,\n",
      "          'scientific': 1,\n",
      "          'credentials': 1,\n",
      "          'spawned': 1,\n",
      "          'interesting': 1,\n",
      "          'novels': 1,\n",
      "          'comic': 1,\n",
      "          'books': 1,\n",
      "          'last': 1,\n",
      "          'big': 1,\n",
      "          'granddaddy': 1,\n",
      "          'wasnt': 1,\n",
      "          'written': 1,\n",
      "          'intention': 1,\n",
      "          'speculate': 1,\n",
      "          'consequences': 1,\n",
      "          'author': 1,\n",
      "          'merely': 1,\n",
      "          'used': 1,\n",
      "          'convenient': 1,\n",
      "          'express': 1,\n",
      "          'socialist': 1,\n",
      "          'views': 1,\n",
      "          'condemn': 1,\n",
      "          'social': 1,\n",
      "          'gap': 1,\n",
      "          'rich': 1,\n",
      "          'capitalist': 1,\n",
      "          'impoverished': 1,\n",
      "          'labour': 1,\n",
      "          'nwhatever': 1,\n",
      "          'intentions': 1,\n",
      "          'generations': 1,\n",
      "          'readers': 1,\n",
      "          'less': 1,\n",
      "          'impressed': 1,\n",
      "          'political': 1,\n",
      "          'ninstead': 1,\n",
      "          'fascinated': 1,\n",
      "          'idea': 1,\n",
      "          'strange': 1,\n",
      "          'worlds': 1,\n",
      "          'explored': 1,\n",
      "          'without': 1,\n",
      "          'trough': 1,\n",
      "          'space': 1,\n",
      "          'classics': 1,\n",
      "          'natural': 1,\n",
      "          'filmmakers': 1,\n",
      "          'use': 1,\n",
      "          'inspiration': 1,\n",
      "          'nfirst': 1,\n",
      "          '1960': 1,\n",
      "          'become': 1,\n",
      "          'plot': 1,\n",
      "          'revolves': 1,\n",
      "          'discovered': 1,\n",
      "          'fourth': 1,\n",
      "          'dimension': 1,\n",
      "          'eve': 1,\n",
      "          '20th': 1,\n",
      "          'gathers': 1,\n",
      "          'friends': 1,\n",
      "          'order': 1,\n",
      "          'present': 1,\n",
      "          'invention': 1,\n",
      "          'enable': 1,\n",
      "          'nthey': 1,\n",
      "          'skeptical': 1,\n",
      "          'doesnt': 1,\n",
      "          'prevent': 1,\n",
      "          'carrying': 1,\n",
      "          'plan': 1,\n",
      "          'slowly': 1,\n",
      "          'seeing': 1,\n",
      "          'london': 1,\n",
      "          'changes': 1,\n",
      "          'nfinally': 1,\n",
      "          'witnessing': 1,\n",
      "          'far': 1,\n",
      "          'hoping': 1,\n",
      "          'cease': 1,\n",
      "          'witness': 1,\n",
      "          'senseless': 1,\n",
      "          'destructions': 1,\n",
      "          'nwhen': 1,\n",
      "          'finally': 1,\n",
      "          'reaches': 1,\n",
      "          'year': 1,\n",
      "          '802': 1,\n",
      "          '701': 1,\n",
      "          'ad': 1,\n",
      "          'glance': 1,\n",
      "          'like': 1,\n",
      "          'utopia': 1,\n",
      "          'humanity': 1,\n",
      "          'consists': 1,\n",
      "          'beautiful': 1,\n",
      "          'fed': 1,\n",
      "          'clothed': 1,\n",
      "          'taken': 1,\n",
      "          'care': 1,\n",
      "          'unseen': 1,\n",
      "          'machines': 1,\n",
      "          'yvette': 1,\n",
      "          'woman': 1,\n",
      "          'tells': 1,\n",
      "          'another': 1,\n",
      "          'side': 1,\n",
      "          'coin': 1,\n",
      "          'night': 1,\n",
      "          'preyed': 1,\n",
      "          'upon': 1,\n",
      "          'humanoid': 1,\n",
      "          'creatures': 1,\n",
      "          'underworld': 1,\n",
      "          'cinematic': 1,\n",
      "          'reason': 1,\n",
      "          'literature': 1,\n",
      "          'fantastic': 1,\n",
      "          'brilliant': 1,\n",
      "          'authors': 1,\n",
      "          'talk': 1,\n",
      "          'burning': 1,\n",
      "          'issues': 1,\n",
      "          'fears': 1,\n",
      "          'respective': 1,\n",
      "          'times': 1,\n",
      "          'frightening': 1,\n",
      "          'struggle': 1,\n",
      "          'screenwriter': 1,\n",
      "          'david': 1,\n",
      "          'duncan': 1,\n",
      "          'produced': 1,\n",
      "          'worst': 1,\n",
      "          'cold': 1,\n",
      "          'constant': 1,\n",
      "          'imminent': 1,\n",
      "          'nuclear': 1,\n",
      "          'holocaust': 1,\n",
      "          'underlined': 1,\n",
      "          'negative': 1,\n",
      "          'references': 1,\n",
      "          'throughout': 1,\n",
      "          'movie': 1,\n",
      "          'neven': 1,\n",
      "          'modern': 1,\n",
      "          'audience': 1,\n",
      "          'tempted': 1,\n",
      "          'discard': 1,\n",
      "          'find': 1,\n",
      "          'values': 1,\n",
      "          'universal': 1,\n",
      "          'fit': 1,\n",
      "          'era': 1,\n",
      "          'ncompared': 1,\n",
      "          'even': 1,\n",
      "          'better': 1,\n",
      "          'serve': 1,\n",
      "          'make': 1,\n",
      "          'intelligent': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'since': 1,\n",
      "          'hollywood': 1,\n",
      "          'product': 1,\n",
      "          'delivers': 1,\n",
      "          'concepts': 1,\n",
      "          'form': 1,\n",
      "          'adventure': 1,\n",
      "          'sometimes': 1,\n",
      "          'sacrificing': 1,\n",
      "          'plausibility': 1,\n",
      "          'sake': 1,\n",
      "          'attractiveness': 1,\n",
      "          'hard': 1,\n",
      "          'imagine': 1,\n",
      "          'someone': 1,\n",
      "          'able': 1,\n",
      "          'understand': 1,\n",
      "          'perfect': 1,\n",
      "          'english': 1,\n",
      "          'million': 1,\n",
      "          'degenerating': 1,\n",
      "          'mutant': 1,\n",
      "          'monsters': 1,\n",
      "          'remain': 1,\n",
      "          'undistinguished': 1,\n",
      "          'nsome': 1,\n",
      "          'final': 1,\n",
      "          'scenes': 1,\n",
      "          'turn': 1,\n",
      "          'action': 1,\n",
      "          'superhero': 1,\n",
      "          'also': 1,\n",
      "          'unconvincing': 1,\n",
      "          'well': 1,\n",
      "          'cleverly': 1,\n",
      "          'paced': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'definitely': 1,\n",
      "          'adequate': 1,\n",
      "          'kind': 1,\n",
      "          'picture': 1,\n",
      "          'acting': 1,\n",
      "          'roles': 1,\n",
      "          'alan': 1,\n",
      "          'brings': 1,\n",
      "          'memorable': 1,\n",
      "          'performance': 1,\n",
      "          'georges': 1,\n",
      "          'trusted': 1,\n",
      "          'friend': 1,\n",
      "          'filby': 1,\n",
      "          'nyvette': 1,\n",
      "          'plays': 1,\n",
      "          'complexity': 1,\n",
      "          'role': 1,\n",
      "          'despite': 1,\n",
      "          'flaws': 1,\n",
      "          'piece': 1,\n",
      "          'cinema': 1,\n",
      "          'something': 1,\n",
      "          'connoisseurs': 1,\n",
      "          'quality': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'sorely': 1,\n",
      "          'miss': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'fanny': 6,\n",
      "          'ms': 5,\n",
      "          'nthe': 5,\n",
      "          'love': 4,\n",
      "          'one': 4,\n",
      "          'sense': 3,\n",
      "          'park': 3,\n",
      "          'well': 3,\n",
      "          'mother': 3,\n",
      "          'nfanny': 3,\n",
      "          'character': 3,\n",
      "          'rozema': 3,\n",
      "          'upon': 3,\n",
      "          'marriage': 3,\n",
      "          'two': 3,\n",
      "          'shall': 3,\n",
      "          'keeps': 2,\n",
      "          'austen': 2,\n",
      "          'screen': 2,\n",
      "          'novel': 2,\n",
      "          'made': 2,\n",
      "          'century': 2,\n",
      "          'story': 2,\n",
      "          'old': 2,\n",
      "          'father': 2,\n",
      "          'mansfield': 2,\n",
      "          'bertram': 2,\n",
      "          'also': 2,\n",
      "          'times': 2,\n",
      "          'eventually': 2,\n",
      "          'films': 2,\n",
      "          'main': 2,\n",
      "          'central': 2,\n",
      "          'work': 2,\n",
      "          'cousin': 2,\n",
      "          'soon': 2,\n",
      "          'acceptable': 2,\n",
      "          'mary': 2,\n",
      "          'man': 2,\n",
      "          'henry': 2,\n",
      "          'thematic': 2,\n",
      "          'nfannys': 2,\n",
      "          'decision': 2,\n",
      "          'based': 2,\n",
      "          'jane': 1,\n",
      "          'sensibility': 1,\n",
      "          'pride': 1,\n",
      "          'prejudice': 1,\n",
      "          'may': 1,\n",
      "          'apply': 1,\n",
      "          'posthumous': 1,\n",
      "          'membership': 1,\n",
      "          'writers': 1,\n",
      "          'guild': 1,\n",
      "          'nyet': 1,\n",
      "          'another': 1,\n",
      "          'transition': 1,\n",
      "          'silver': 1,\n",
      "          'nmansfield': 1,\n",
      "          'turn': 1,\n",
      "          '18th': 1,\n",
      "          'going': 1,\n",
      "          '19th': 1,\n",
      "          'among': 1,\n",
      "          'classes': 1,\n",
      "          'examination': 1,\n",
      "          'proper': 1,\n",
      "          'society': 1,\n",
      "          'family': 1,\n",
      "          'ties': 1,\n",
      "          'nten': 1,\n",
      "          'year': 1,\n",
      "          'price': 1,\n",
      "          'hannah': 1,\n",
      "          'taylorgordon': 1,\n",
      "          'jakob': 1,\n",
      "          'liar': 1,\n",
      "          'taken': 1,\n",
      "          'poverty': 1,\n",
      "          'dwell': 1,\n",
      "          'sent': 1,\n",
      "          'live': 1,\n",
      "          'aunt': 1,\n",
      "          'privileged': 1,\n",
      "          'class': 1,\n",
      "          'stern': 1,\n",
      "          'patriarchal': 1,\n",
      "          'hand': 1,\n",
      "          'uncle': 1,\n",
      "          'sir': 1,\n",
      "          'thomas': 1,\n",
      "          'harold': 1,\n",
      "          'pinter': 1,\n",
      "          'mojo': 1,\n",
      "          'nspending': 1,\n",
      "          'days': 1,\n",
      "          'reminded': 1,\n",
      "          'lower': 1,\n",
      "          'status': 1,\n",
      "          'invents': 1,\n",
      "          'writes': 1,\n",
      "          'fanciful': 1,\n",
      "          'stories': 1,\n",
      "          'private': 1,\n",
      "          'grows': 1,\n",
      "          'become': 1,\n",
      "          'beautiful': 1,\n",
      "          'intelligent': 1,\n",
      "          'engaging': 1,\n",
      "          'heroine': 1,\n",
      "          'quite': 1,\n",
      "          'unlike': 1,\n",
      "          'original': 1,\n",
      "          'originally': 1,\n",
      "          'penned': 1,\n",
      "          'nwriterdirector': 1,\n",
      "          'patricia': 1,\n",
      "          'night': 1,\n",
      "          'falling': 1,\n",
      "          'responsible': 1,\n",
      "          'textual': 1,\n",
      "          'changes': 1,\n",
      "          'nfrom': 1,\n",
      "          'purely': 1,\n",
      "          'dramatic': 1,\n",
      "          'perspective': 1,\n",
      "          'revision': 1,\n",
      "          'makes': 1,\n",
      "          'perfect': 1,\n",
      "          'improves': 1,\n",
      "          'audience': 1,\n",
      "          'appeal': 1,\n",
      "          'nwhat': 1,\n",
      "          'done': 1,\n",
      "          'infuse': 1,\n",
      "          'much': 1,\n",
      "          'austens': 1,\n",
      "          'personality': 1,\n",
      "          'including': 1,\n",
      "          'excerpts': 1,\n",
      "          'authors': 1,\n",
      "          'journals': 1,\n",
      "          'giving': 1,\n",
      "          'dialogue': 1,\n",
      "          'result': 1,\n",
      "          'immediately': 1,\n",
      "          'appealing': 1,\n",
      "          'nas': 1,\n",
      "          'grown': 1,\n",
      "          'australian': 1,\n",
      "          'actress': 1,\n",
      "          'frances': 1,\n",
      "          'oconnor': 1,\n",
      "          'adam': 1,\n",
      "          'wonderfully': 1,\n",
      "          'textured': 1,\n",
      "          'nat': 1,\n",
      "          'address': 1,\n",
      "          'camera': 1,\n",
      "          'directly': 1,\n",
      "          'communicate': 1,\n",
      "          'many': 1,\n",
      "          'novels': 1,\n",
      "          'introspective': 1,\n",
      "          'observations': 1,\n",
      "          'nthis': 1,\n",
      "          'difficult': 1,\n",
      "          'device': 1,\n",
      "          'seamlessly': 1,\n",
      "          'period': 1,\n",
      "          'film': 1,\n",
      "          'oconnors': 1,\n",
      "          'credit': 1,\n",
      "          'works': 1,\n",
      "          'theme': 1,\n",
      "          'gives': 1,\n",
      "          'legs': 1,\n",
      "          'nwhether': 1,\n",
      "          'better': 1,\n",
      "          'marry': 1,\n",
      "          'social': 1,\n",
      "          'standing': 1,\n",
      "          'fallen': 1,\n",
      "          'edmund': 1,\n",
      "          'jonny': 1,\n",
      "          'lee': 1,\n",
      "          'miller': 1,\n",
      "          'plunkett': 1,\n",
      "          'macleane': 1,\n",
      "          'appears': 1,\n",
      "          'fond': 1,\n",
      "          'nhis': 1,\n",
      "          'attentions': 1,\n",
      "          'divided': 1,\n",
      "          'stylish': 1,\n",
      "          'socially': 1,\n",
      "          'crawford': 1,\n",
      "          'embeth': 1,\n",
      "          'davidtz': 1,\n",
      "          'bicentennial': 1,\n",
      "          'enters': 1,\n",
      "          'picture': 1,\n",
      "          'along': 1,\n",
      "          'equally': 1,\n",
      "          'brother': 1,\n",
      "          'alessandro': 1,\n",
      "          'nivola': 1,\n",
      "          'inventing': 1,\n",
      "          'abbotts': 1,\n",
      "          'sets': 1,\n",
      "          'romantic': 1,\n",
      "          'sights': 1,\n",
      "          'nwhile': 1,\n",
      "          'evidently': 1,\n",
      "          'less': 1,\n",
      "          'sincere': 1,\n",
      "          'affections': 1,\n",
      "          'presence': 1,\n",
      "          'provide': 1,\n",
      "          'movie': 1,\n",
      "          'characters': 1,\n",
      "          'necessary': 1,\n",
      "          'conflict': 1,\n",
      "          'interest': 1,\n",
      "          'appropriately': 1,\n",
      "          'austenlike': 1,\n",
      "          'ending': 1,\n",
      "          'nother': 1,\n",
      "          'devices': 1,\n",
      "          'include': 1,\n",
      "          'awkwardly': 1,\n",
      "          'inserted': 1,\n",
      "          'reference': 1,\n",
      "          'source': 1,\n",
      "          'wealth': 1,\n",
      "          'slave': 1,\n",
      "          'trade': 1,\n",
      "          'nthere': 1,\n",
      "          'hint': 1,\n",
      "          'lesbianism': 1,\n",
      "          'incest': 1,\n",
      "          'neither': 1,\n",
      "          'carried': 1,\n",
      "          'far': 1,\n",
      "          'forgotten': 1,\n",
      "          'motivation': 1,\n",
      "          'remains': 1,\n",
      "          'primary': 1,\n",
      "          'thrust': 1,\n",
      "          'maria': 1,\n",
      "          'victoria': 1,\n",
      "          'hamilton': 1,\n",
      "          'persuasion': 1,\n",
      "          'example': 1,\n",
      "          'making': 1,\n",
      "          'poor': 1,\n",
      "          'match': 1,\n",
      "          'marrying': 1,\n",
      "          'welltodo': 1,\n",
      "          'fool': 1,\n",
      "          'able': 1,\n",
      "          'make': 1,\n",
      "          'comfortable': 1,\n",
      "          'never': 1,\n",
      "          'happy': 1,\n",
      "          'trapped': 1,\n",
      "          'chosen': 1,\n",
      "          'life': 1,\n",
      "          'squalor': 1,\n",
      "          'warns': 1,\n",
      "          'admitting': 1,\n",
      "          'situation': 1,\n",
      "          'due': 1,\n",
      "          'fact': 1,\n",
      "          'married': 1,\n",
      "          'given': 1,\n",
      "          'terrible': 1,\n",
      "          'examples': 1,\n",
      "          'faced': 1,\n",
      "          'choice': 1,\n",
      "          'understandably': 1,\n",
      "          'indecisive': 1,\n",
      "          'way': 1,\n",
      "          'lean': 1,\n",
      "          'spiritual': 1,\n",
      "          'answer': 1,\n",
      "          'course': 1,\n",
      "          'lies': 1,\n",
      "          'middle': 1,\n",
      "          'extremes': 1,\n",
      "          'nmarriage': 1,\n",
      "          'cold': 1,\n",
      "          'calculating': 1,\n",
      "          'selfpreservation': 1,\n",
      "          'nneither': 1,\n",
      "          'senseless': 1,\n",
      "          'warm': 1,\n",
      "          'afterglow': 1,\n",
      "          'passionate': 1,\n",
      "          'embrace': 1,\n",
      "          'nin': 1,\n",
      "          'purest': 1,\n",
      "          'forms': 1,\n",
      "          'insoluble': 1,\n",
      "          'union': 1,\n",
      "          'whereby': 1,\n",
      "          'people': 1,\n",
      "          'agree': 1,\n",
      "          'function': 1,\n",
      "          'n': 1,\n",
      "          'said': 1,\n",
      "          'cause': 1,\n",
      "          'leave': 1,\n",
      "          'cleave': 1,\n",
      "          'wife': 1,\n",
      "          'twain': 1,\n",
      "          'flesh': 1,\n",
      "          'nmatthew': 1,\n",
      "          '19': 1,\n",
      "          '5': 1,\n",
      "          'kjv': 1,\n",
      "          'nlove': 1,\n",
      "          'logic': 1,\n",
      "          'combined': 1,\n",
      "          'ngods': 1,\n",
      "          'word': 1,\n",
      "          'contains': 1,\n",
      "          'nso': 1,\n",
      "          'truth': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'private': 7,\n",
      "          'ryan': 7,\n",
      "          'movie': 7,\n",
      "          'war': 5,\n",
      "          'one': 5,\n",
      "          'nit': 4,\n",
      "          'excellent': 4,\n",
      "          'battle': 4,\n",
      "          'scenes': 4,\n",
      "          'nthis': 4,\n",
      "          'nthe': 4,\n",
      "          'saving': 3,\n",
      "          'tom': 3,\n",
      "          'hanks': 3,\n",
      "          'damon': 3,\n",
      "          'greatest': 3,\n",
      "          'action': 3,\n",
      "          'away': 3,\n",
      "          'dreamworks': 2,\n",
      "          'time': 2,\n",
      "          'burns': 2,\n",
      "          'sizemore': 2,\n",
      "          'matt': 2,\n",
      "          'spielberg': 2,\n",
      "          'made': 2,\n",
      "          'certainly': 2,\n",
      "          'best': 2,\n",
      "          'ntom': 2,\n",
      "          'troop': 2,\n",
      "          'find': 2,\n",
      "          'drama': 2,\n",
      "          'found': 2,\n",
      "          'terrifying': 2,\n",
      "          'superb': 2,\n",
      "          'roles': 2,\n",
      "          'better': 2,\n",
      "          'delivers': 2,\n",
      "          'performance': 2,\n",
      "          'lot': 2,\n",
      "          'also': 2,\n",
      "          'makes': 2,\n",
      "          'actors': 2,\n",
      "          'audience': 2,\n",
      "          'help': 2,\n",
      "          'never': 2,\n",
      "          'great': 2,\n",
      "          'major': 2,\n",
      "          'weak': 2,\n",
      "          'really': 2,\n",
      "          'running': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          '48': 1,\n",
      "          'minutes': 1,\n",
      "          'nstarring': 1,\n",
      "          'edward': 1,\n",
      "          'directed': 1,\n",
      "          'steven': 1,\n",
      "          'already': 1,\n",
      "          'hailed': 1,\n",
      "          'ever': 1,\n",
      "          'harrowing': 1,\n",
      "          'saddening': 1,\n",
      "          'riveting': 1,\n",
      "          'may': 1,\n",
      "          'opinion': 1,\n",
      "          'movies': 1,\n",
      "          '1998': 1,\n",
      "          'stars': 1,\n",
      "          'captain': 1,\n",
      "          'whos': 1,\n",
      "          'ticket': 1,\n",
      "          'home': 1,\n",
      "          'three': 1,\n",
      "          'brothers': 1,\n",
      "          'killed': 1,\n",
      "          'naction': 1,\n",
      "          'even': 1,\n",
      "          'humour': 1,\n",
      "          'occur': 1,\n",
      "          'journeys': 1,\n",
      "          'wartime': 1,\n",
      "          'france': 1,\n",
      "          'nafter': 1,\n",
      "          'disappointing': 1,\n",
      "          'amistad': 1,\n",
      "          '1997': 1,\n",
      "          'returned': 1,\n",
      "          'form': 1,\n",
      "          'nim': 1,\n",
      "          'genre': 1,\n",
      "          'biggest': 1,\n",
      "          'fan': 1,\n",
      "          'gripping': 1,\n",
      "          'scary': 1,\n",
      "          'thanks': 1,\n",
      "          'cast': 1,\n",
      "          'direction': 1,\n",
      "          'straying': 1,\n",
      "          'usually': 1,\n",
      "          'soppy': 1,\n",
      "          'dramatic': 1,\n",
      "          'forrest': 1,\n",
      "          'gump': 1,\n",
      "          '1994': 1,\n",
      "          'plays': 1,\n",
      "          'role': 1,\n",
      "          'gritty': 1,\n",
      "          'realism': 1,\n",
      "          'much': 1,\n",
      "          'noccasionally': 1,\n",
      "          'overacts': 1,\n",
      "          'sentimentally': 1,\n",
      "          'generally': 1,\n",
      "          'fine': 1,\n",
      "          'nedward': 1,\n",
      "          'looking': 1,\n",
      "          'like': 1,\n",
      "          'armageddons': 1,\n",
      "          'ben': 1,\n",
      "          'affleck': 1,\n",
      "          'top': 1,\n",
      "          'notch': 1,\n",
      "          'moving': 1,\n",
      "          'films': 1,\n",
      "          'shes': 1,\n",
      "          '1996': 1,\n",
      "          'less': 1,\n",
      "          'impact': 1,\n",
      "          'still': 1,\n",
      "          'watchable': 1,\n",
      "          'reinforcing': 1,\n",
      "          'position': 1,\n",
      "          'finest': 1,\n",
      "          'young': 1,\n",
      "          'working': 1,\n",
      "          'today': 1,\n",
      "          'nspielberg': 1,\n",
      "          'directs': 1,\n",
      "          'well': 1,\n",
      "          'putting': 1,\n",
      "          'right': 1,\n",
      "          'heart': 1,\n",
      "          'nand': 1,\n",
      "          'ntheyre': 1,\n",
      "          'truly': 1,\n",
      "          'yet': 1,\n",
      "          'drag': 1,\n",
      "          'eyes': 1,\n",
      "          'screen': 1,\n",
      "          'filmed': 1,\n",
      "          'jerky': 1,\n",
      "          'handheld': 1,\n",
      "          'camera': 1,\n",
      "          'panic': 1,\n",
      "          'confusion': 1,\n",
      "          'felt': 1,\n",
      "          'soldiers': 1,\n",
      "          'emphasized': 1,\n",
      "          'technique': 1,\n",
      "          'gore': 1,\n",
      "          'violence': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'isnt': 1,\n",
      "          'spared': 1,\n",
      "          'either': 1,\n",
      "          'body': 1,\n",
      "          'parts': 1,\n",
      "          'flying': 1,\n",
      "          'blood': 1,\n",
      "          'spurting': 1,\n",
      "          'kids': 1,\n",
      "          'sensitive': 1,\n",
      "          'adults': 1,\n",
      "          'nother': 1,\n",
      "          'factors': 1,\n",
      "          'masterpiece': 1,\n",
      "          '90s': 1,\n",
      "          'making': 1,\n",
      "          'cinematography': 1,\n",
      "          'music': 1,\n",
      "          'score': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'intrusive': 1,\n",
      "          'adds': 1,\n",
      "          'onscreen': 1,\n",
      "          'nbut': 1,\n",
      "          'thousands': 1,\n",
      "          'good': 1,\n",
      "          'things': 1,\n",
      "          'theres': 1,\n",
      "          'flaw': 1,\n",
      "          'detracts': 1,\n",
      "          'genius': 1,\n",
      "          'writing': 1,\n",
      "          'unusually': 1,\n",
      "          'flat': 1,\n",
      "          'many': 1,\n",
      "          'speeches': 1,\n",
      "          'strangely': 1,\n",
      "          'profound': 1,\n",
      "          'statements': 1,\n",
      "          'gripe': 1,\n",
      "          'words': 1,\n",
      "          'nstill': 1,\n",
      "          'script': 1,\n",
      "          'could': 1,\n",
      "          'nthankfully': 1,\n",
      "          'partly': 1,\n",
      "          'rectify': 1,\n",
      "          'situation': 1,\n",
      "          'delivery': 1,\n",
      "          'lines': 1,\n",
      "          'nsaving': 1,\n",
      "          'end': 1,\n",
      "          'due': 1,\n",
      "          'acting': 1,\n",
      "          'viewed': 1,\n",
      "          'everyone': 1,\n",
      "          'stomach': 1,\n",
      "          'rewarding': 1,\n",
      "          'extremely': 1,\n",
      "          'worthwhile': 1,\n",
      "          'shouldnt': 1,\n",
      "          'missed': 1,\n",
      "          'skg': 1,\n",
      "          'finally': 1,\n",
      "          'first': 1,\n",
      "          'hit': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 10,\n",
      "          'aliens': 6,\n",
      "          'nid4': 5,\n",
      "          'alien': 5,\n",
      "          'id4': 4,\n",
      "          'nthe': 4,\n",
      "          'many': 4,\n",
      "          'attack': 4,\n",
      "          'one': 4,\n",
      "          'idea': 3,\n",
      "          'nif': 3,\n",
      "          'film': 3,\n",
      "          'earth': 3,\n",
      "          'bit': 3,\n",
      "          'effects': 3,\n",
      "          '50s': 2,\n",
      "          'could': 2,\n",
      "          'year': 2,\n",
      "          'us': 2,\n",
      "          'million': 2,\n",
      "          'back': 2,\n",
      "          'produced': 2,\n",
      "          'star': 2,\n",
      "          'wars': 2,\n",
      "          'ship': 2,\n",
      "          'major': 2,\n",
      "          'cities': 2,\n",
      "          'president': 2,\n",
      "          'pullman': 2,\n",
      "          'take': 2,\n",
      "          'make': 2,\n",
      "          'battle': 2,\n",
      "          'return': 2,\n",
      "          'jedi': 2,\n",
      "          'plot': 2,\n",
      "          'holes': 2,\n",
      "          'thus': 2,\n",
      "          'special': 2,\n",
      "          'vs': 1,\n",
      "          'nearth': 1,\n",
      "          'revamped': 1,\n",
      "          'following': 1,\n",
      "          'news': 1,\n",
      "          'net': 1,\n",
      "          'escaped': 1,\n",
      "          'hype': 1,\n",
      "          'nit': 1,\n",
      "          'promises': 1,\n",
      "          'summer': 1,\n",
      "          'elements': 1,\n",
      "          'necessary': 1,\n",
      "          'opened': 1,\n",
      "          '2nd': 1,\n",
      "          'july': 1,\n",
      "          'till': 1,\n",
      "          'week': 1,\n",
      "          'release': 1,\n",
      "          'nearly': 1,\n",
      "          'touched': 1,\n",
      "          'us100': 1,\n",
      "          'mark': 1,\n",
      "          'phenomenon': 1,\n",
      "          'last': 1,\n",
      "          'observed': 1,\n",
      "          'jurassic': 1,\n",
      "          'park': 1,\n",
      "          'released': 1,\n",
      "          '1993': 1,\n",
      "          'premise': 1,\n",
      "          'disgustingly': 1,\n",
      "          'simple': 1,\n",
      "          'defends': 1,\n",
      "          'typical': 1,\n",
      "          'highly': 1,\n",
      "          'popular': 1,\n",
      "          'hollywood': 1,\n",
      "          'theme': 1,\n",
      "          'manifested': 1,\n",
      "          'films': 1,\n",
      "          'era': 1,\n",
      "          'opens': 1,\n",
      "          'via': 1,\n",
      "          'however': 1,\n",
      "          'unoriginal': 1,\n",
      "          'may': 1,\n",
      "          'worked': 1,\n",
      "          'sent': 1,\n",
      "          'large': 1,\n",
      "          'mother': 1,\n",
      "          'supposedly': 1,\n",
      "          '14': 1,\n",
      "          'size': 1,\n",
      "          'moon': 1,\n",
      "          'deploying': 1,\n",
      "          'ships': 1,\n",
      "          '15': 1,\n",
      "          'miles': 1,\n",
      "          'radius': 1,\n",
      "          'know': 1,\n",
      "          'intention': 1,\n",
      "          'soon': 1,\n",
      "          'finds': 1,\n",
      "          'david': 1,\n",
      "          'goldblum': 1,\n",
      "          'scientist': 1,\n",
      "          'discovers': 1,\n",
      "          'counting': 1,\n",
      "          'synchronised': 1,\n",
      "          'ncapt': 1,\n",
      "          'hiller': 1,\n",
      "          'smith': 1,\n",
      "          'hotshot': 1,\n",
      "          'f18': 1,\n",
      "          'pilot': 1,\n",
      "          'hundreds': 1,\n",
      "          'assigned': 1,\n",
      "          'hovering': 1,\n",
      "          'washington': 1,\n",
      "          'dc': 1,\n",
      "          'nhis': 1,\n",
      "          'squadron': 1,\n",
      "          'came': 1,\n",
      "          'heavy': 1,\n",
      "          'fire': 1,\n",
      "          'discovering': 1,\n",
      "          'weapons': 1,\n",
      "          'useless': 1,\n",
      "          'invaders': 1,\n",
      "          'crash': 1,\n",
      "          'lands': 1,\n",
      "          'spectacular': 1,\n",
      "          '1on1': 1,\n",
      "          'chase': 1,\n",
      "          'grand': 1,\n",
      "          'canyon': 1,\n",
      "          'highlights': 1,\n",
      "          'features': 1,\n",
      "          'characters': 1,\n",
      "          'shown': 1,\n",
      "          'impact': 1,\n",
      "          'story': 1,\n",
      "          'progresses': 1,\n",
      "          'nacting': 1,\n",
      "          'whole': 1,\n",
      "          'ok': 1,\n",
      "          'although': 1,\n",
      "          'thought': 1,\n",
      "          'bill': 1,\n",
      "          'unsuitable': 1,\n",
      "          'role': 1,\n",
      "          'rousing': 1,\n",
      "          'speech': 1,\n",
      "          'sending': 1,\n",
      "          'troops': 1,\n",
      "          'smell': 1,\n",
      "          'braveheart': 1,\n",
      "          'nno': 1,\n",
      "          'prizes': 1,\n",
      "          'guessing': 1,\n",
      "          'ends': 1,\n",
      "          'plain': 1,\n",
      "          'obvious': 1,\n",
      "          'borrows': 1,\n",
      "          'heavily': 1,\n",
      "          'parts': 1,\n",
      "          'even': 1,\n",
      "          'sense': 1,\n",
      "          'xfiles': 1,\n",
      "          'screen': 1,\n",
      "          'critically': 1,\n",
      "          'review': 1,\n",
      "          'full': 1,\n",
      "          'corny': 1,\n",
      "          'dialogue': 1,\n",
      "          'ridiculously': 1,\n",
      "          'dumb': 1,\n",
      "          'nhowever': 1,\n",
      "          'waferthin': 1,\n",
      "          'onscreen': 1,\n",
      "          'flaws': 1,\n",
      "          'scored': 1,\n",
      "          'well': 1,\n",
      "          'playing': 1,\n",
      "          'appealing': 1,\n",
      "          'entire': 1,\n",
      "          'world': 1,\n",
      "          'giving': 1,\n",
      "          'petty': 1,\n",
      "          'differences': 1,\n",
      "          'unite': 1,\n",
      "          'force': 1,\n",
      "          'invasion': 1,\n",
      "          'nan': 1,\n",
      "          'audience': 1,\n",
      "          'strongly': 1,\n",
      "          'rooting': 1,\n",
      "          'united': 1,\n",
      "          'front': 1,\n",
      "          'throughout': 1,\n",
      "          'maintaining': 1,\n",
      "          'screenviewer': 1,\n",
      "          'interaction': 1,\n",
      "          'virtually': 1,\n",
      "          'render': 1,\n",
      "          'acceptable': 1,\n",
      "          'matter': 1,\n",
      "          'ridiculous': 1,\n",
      "          'modest': 1,\n",
      "          'budget': 1,\n",
      "          'us68': 1,\n",
      "          'magnitude': 1,\n",
      "          'would': 1,\n",
      "          'easily': 1,\n",
      "          'another': 1,\n",
      "          'waterworld': 1,\n",
      "          'director': 1,\n",
      "          'roland': 1,\n",
      "          'emmerich': 1,\n",
      "          'universal': 1,\n",
      "          'soldier': 1,\n",
      "          'stargate': 1,\n",
      "          'producer': 1,\n",
      "          'dean': 1,\n",
      "          'devlin': 1,\n",
      "          'assembled': 1,\n",
      "          'team': 1,\n",
      "          'rather': 1,\n",
      "          'commissioning': 1,\n",
      "          'ilm': 1,\n",
      "          'company': 1,\n",
      "          'nsome': 1,\n",
      "          'good': 1,\n",
      "          'believable': 1,\n",
      "          'especially': 1,\n",
      "          'epic': 1,\n",
      "          'standoff': 1,\n",
      "          '150': 1,\n",
      "          'f18s': 1,\n",
      "          '250': 1,\n",
      "          'saucers': 1,\n",
      "          'reminiscence': 1,\n",
      "          'classic': 1,\n",
      "          'space': 1,\n",
      "          'featured': 1,\n",
      "          'nthough': 1,\n",
      "          'explosions': 1,\n",
      "          'implied': 1,\n",
      "          'deaths': 1,\n",
      "          'gory': 1,\n",
      "          'scenes': 1,\n",
      "          'human': 1,\n",
      "          'destruction': 1,\n",
      "          'young': 1,\n",
      "          'kids': 1,\n",
      "          'able': 1,\n",
      "          'nsit': 1,\n",
      "          'dont': 1,\n",
      "          'critical': 1,\n",
      "          'chances': 1,\n",
      "          'absorbed': 1,\n",
      "          'planning': 1,\n",
      "          'watch': 1,\n",
      "          'movies': 1,\n",
      "          'please': 1,\n",
      "          'least': 1,\n",
      "          'time': 1,\n",
      "          'nthis': 1,\n",
      "          'best': 1,\n",
      "          'watched': 1,\n",
      "          'bigscreen': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ni': 7,\n",
      "          'film': 7,\n",
      "          'movie': 6,\n",
      "          'nthis': 4,\n",
      "          'home': 4,\n",
      "          'video': 4,\n",
      "          'camera': 4,\n",
      "          'nthe': 3,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'footage': 2,\n",
      "          'year': 2,\n",
      "          'one': 2,\n",
      "          'little': 2,\n",
      "          'ever': 2,\n",
      "          'impact': 2,\n",
      "          'know': 2,\n",
      "          'mind': 2,\n",
      "          'shot': 2,\n",
      "          'dont': 2,\n",
      "          'real': 2,\n",
      "          'close': 2,\n",
      "          'screen': 2,\n",
      "          'special': 2,\n",
      "          'dvd': 2,\n",
      "          'trailers': 1,\n",
      "          'beginning': 1,\n",
      "          'move': 1,\n",
      "          'sum': 1,\n",
      "          'plot': 1,\n",
      "          'easily': 1,\n",
      "          'nthree': 1,\n",
      "          'filmmakers': 1,\n",
      "          'venture': 1,\n",
      "          'woods': 1,\n",
      "          'maryland': 1,\n",
      "          'track': 1,\n",
      "          'legend': 1,\n",
      "          'documentary': 1,\n",
      "          'making': 1,\n",
      "          'nthey': 1,\n",
      "          'disappear': 1,\n",
      "          'discovered': 1,\n",
      "          'later': 1,\n",
      "          'buried': 1,\n",
      "          'underneath': 1,\n",
      "          'foundation': 1,\n",
      "          'hundred': 1,\n",
      "          'old': 1,\n",
      "          'house': 1,\n",
      "          'nfrom': 1,\n",
      "          'things': 1,\n",
      "          'become': 1,\n",
      "          'complicated': 1,\n",
      "          'say': 1,\n",
      "          'absolute': 1,\n",
      "          'assurance': 1,\n",
      "          'quite': 1,\n",
      "          'nalthough': 1,\n",
      "          'staged': 1,\n",
      "          'mockumentary': 1,\n",
      "          'theres': 1,\n",
      "          'denying': 1,\n",
      "          'psychological': 1,\n",
      "          'leave': 1,\n",
      "          'didnt': 1,\n",
      "          'feel': 1,\n",
      "          'much': 1,\n",
      "          'upon': 1,\n",
      "          'initially': 1,\n",
      "          'watching': 1,\n",
      "          'thought': 1,\n",
      "          'interesting': 1,\n",
      "          'pretty': 1,\n",
      "          'creepy': 1,\n",
      "          'parts': 1,\n",
      "          'never': 1,\n",
      "          'even': 1,\n",
      "          'dreamed': 1,\n",
      "          'thirty': 1,\n",
      "          'minutes': 1,\n",
      "          'ended': 1,\n",
      "          'would': 1,\n",
      "          'frightened': 1,\n",
      "          'discussing': 1,\n",
      "          'friend': 1,\n",
      "          'nive': 1,\n",
      "          'gotten': 1,\n",
      "          'chills': 1,\n",
      "          'every': 1,\n",
      "          'time': 1,\n",
      "          'ive': 1,\n",
      "          'brought': 1,\n",
      "          'since': 1,\n",
      "          'hits': 1,\n",
      "          'right': 1,\n",
      "          'away': 1,\n",
      "          'ninstead': 1,\n",
      "          'sits': 1,\n",
      "          'base': 1,\n",
      "          'spine': 1,\n",
      "          'waits': 1,\n",
      "          'think': 1,\n",
      "          'everything': 1,\n",
      "          'okay': 1,\n",
      "          'slowly': 1,\n",
      "          'starts': 1,\n",
      "          'creep': 1,\n",
      "          'way': 1,\n",
      "          'truly': 1,\n",
      "          'frightening': 1,\n",
      "          'pleasure': 1,\n",
      "          'watch': 1,\n",
      "          'comprised': 1,\n",
      "          '16mm': 1,\n",
      "          'documentarians': 1,\n",
      "          'supposedly': 1,\n",
      "          'expect': 1,\n",
      "          'steadicam': 1,\n",
      "          'shots': 1,\n",
      "          'fancy': 1,\n",
      "          'work': 1,\n",
      "          'gets': 1,\n",
      "          'folks': 1,\n",
      "          'recommend': 1,\n",
      "          'sitting': 1,\n",
      "          'theater': 1,\n",
      "          'though': 1,\n",
      "          'guarantee': 1,\n",
      "          'get': 1,\n",
      "          'motion': 1,\n",
      "          'sickness': 1,\n",
      "          'constant': 1,\n",
      "          'movement': 1,\n",
      "          'performances': 1,\n",
      "          'three': 1,\n",
      "          'lead': 1,\n",
      "          'actors': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'questioning': 1,\n",
      "          'whether': 1,\n",
      "          'really': 1,\n",
      "          'happened': 1,\n",
      "          'definitely': 1,\n",
      "          'warrants': 1,\n",
      "          'viewing': 1,\n",
      "          'especially': 1,\n",
      "          'due': 1,\n",
      "          'fact': 1,\n",
      "          'bulk': 1,\n",
      "          'standard': 1,\n",
      "          'reality': 1,\n",
      "          'images': 1,\n",
      "          'strike': 1,\n",
      "          'frighteningly': 1,\n",
      "          'viewed': 1,\n",
      "          'actual': 1,\n",
      "          'instead': 1,\n",
      "          'tapetofilm': 1,\n",
      "          'transfer': 1,\n",
      "          'done': 1,\n",
      "          'big': 1,\n",
      "          'nword': 1,\n",
      "          'edition': 1,\n",
      "          'boatloads': 1,\n",
      "          'extras': 1,\n",
      "          'hours': 1,\n",
      "          'deleted': 1,\n",
      "          'scenes': 1,\n",
      "          'alternate': 1,\n",
      "          'endings': 1,\n",
      "          'commentary': 1,\n",
      "          'scifi': 1,\n",
      "          'channel': 1,\n",
      "          'others': 1,\n",
      "          'planned': 1,\n",
      "          'release': 1,\n",
      "          'urge': 1,\n",
      "          'artisan': 1,\n",
      "          'entertainment': 1,\n",
      "          'forge': 1,\n",
      "          'ahead': 1,\n",
      "          'plan': 1,\n",
      "          'give': 1,\n",
      "          'us': 1,\n",
      "          'could': 1,\n",
      "          'rival': 1,\n",
      "          'dvds': 1,\n",
      "          'ill': 1,\n",
      "          'first': 1,\n",
      "          'line': 1,\n",
      "          'buy': 1,\n",
      "          'nr': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mission': 6,\n",
      "          'willard': 6,\n",
      "          'war': 5,\n",
      "          'film': 4,\n",
      "          'colonel': 4,\n",
      "          'men': 4,\n",
      "          'vietnam': 3,\n",
      "          'napocalypse': 3,\n",
      "          'memorable': 3,\n",
      "          'kurtz': 3,\n",
      "          'kilgore': 3,\n",
      "          'apocalypse': 2,\n",
      "          'horrifying': 2,\n",
      "          'na': 2,\n",
      "          'debate': 2,\n",
      "          'movie': 2,\n",
      "          'actually': 2,\n",
      "          'nin': 2,\n",
      "          'many': 2,\n",
      "          'one': 2,\n",
      "          'films': 2,\n",
      "          'ever': 2,\n",
      "          'made': 2,\n",
      "          'gone': 2,\n",
      "          'look': 2,\n",
      "          'captain': 2,\n",
      "          'ordered': 2,\n",
      "          'nwillard': 2,\n",
      "          'situation': 2,\n",
      "          'nthe': 2,\n",
      "          'lance': 2,\n",
      "          'johnson': 2,\n",
      "          'know': 2,\n",
      "          'bizarre': 2,\n",
      "          'situations': 2,\n",
      "          'nbut': 2,\n",
      "          'lieutenant': 2,\n",
      "          'things': 2,\n",
      "          'followers': 2,\n",
      "          'madness': 2,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'hearts': 1,\n",
      "          'darkness': 1,\n",
      "          'extremely': 1,\n",
      "          'striking': 1,\n",
      "          'gripping': 1,\n",
      "          'depiction': 1,\n",
      "          'another': 1,\n",
      "          'angle': 1,\n",
      "          'long': 1,\n",
      "          'surrounded': 1,\n",
      "          'antiwar': 1,\n",
      "          'ways': 1,\n",
      "          'could': 1,\n",
      "          'go': 1,\n",
      "          'either': 1,\n",
      "          'way': 1,\n",
      "          'probably': 1,\n",
      "          'addition': 1,\n",
      "          'extremes': 1,\n",
      "          'disturbing': 1,\n",
      "          'corruption': 1,\n",
      "          'terrifying': 1,\n",
      "          'effects': 1,\n",
      "          'devastating': 1,\n",
      "          'recent': 1,\n",
      "          'years': 1,\n",
      "          'follows': 1,\n",
      "          'benjamin': 1,\n",
      "          'l': 1,\n",
      "          'played': 1,\n",
      "          'martin': 1,\n",
      "          'sheen': 1,\n",
      "          'seek': 1,\n",
      "          'eliminate': 1,\n",
      "          'walter': 1,\n",
      "          'e': 1,\n",
      "          'green': 1,\n",
      "          'beret': 1,\n",
      "          'thought': 1,\n",
      "          'insane': 1,\n",
      "          'set': 1,\n",
      "          'militant': 1,\n",
      "          'base': 1,\n",
      "          'cambodia': 1,\n",
      "          'ncaptain': 1,\n",
      "          'assassinate': 1,\n",
      "          'extreme': 1,\n",
      "          'prejudice': 1,\n",
      "          'deemed': 1,\n",
      "          'murderer': 1,\n",
      "          'accepts': 1,\n",
      "          'pondering': 1,\n",
      "          'accusation': 1,\n",
      "          'naccusing': 1,\n",
      "          'someone': 1,\n",
      "          'murder': 1,\n",
      "          'like': 1,\n",
      "          'handing': 1,\n",
      "          'speeding': 1,\n",
      "          'tickets': 1,\n",
      "          'indy': 1,\n",
      "          '500': 1,\n",
      "          'puts': 1,\n",
      "          'nit': 1,\n",
      "          'doesnt': 1,\n",
      "          'make': 1,\n",
      "          'much': 1,\n",
      "          'sense': 1,\n",
      "          'nescorting': 1,\n",
      "          'group': 1,\n",
      "          'operate': 1,\n",
      "          'riverboat': 1,\n",
      "          'chef': 1,\n",
      "          'frederic': 1,\n",
      "          'forrest': 1,\n",
      "          'chief': 1,\n",
      "          'albert': 1,\n",
      "          'hall': 1,\n",
      "          'sam': 1,\n",
      "          'bottoms': 1,\n",
      "          'mr': 1,\n",
      "          'clean': 1,\n",
      "          'fifteen': 1,\n",
      "          'yearold': 1,\n",
      "          'laurence': 1,\n",
      "          'fishburne': 1,\n",
      "          'let': 1,\n",
      "          'exactly': 1,\n",
      "          'something': 1,\n",
      "          'big': 1,\n",
      "          'encounter': 1,\n",
      "          'exciting': 1,\n",
      "          'dangerous': 1,\n",
      "          'infamous': 1,\n",
      "          'napalm': 1,\n",
      "          'scene': 1,\n",
      "          'eccentric': 1,\n",
      "          'robert': 1,\n",
      "          'duvall': 1,\n",
      "          'nkilgore': 1,\n",
      "          'decides': 1,\n",
      "          'attack': 1,\n",
      "          'overtake': 1,\n",
      "          'certain': 1,\n",
      "          'beach': 1,\n",
      "          'area': 1,\n",
      "          'surf': 1,\n",
      "          'nsurf': 1,\n",
      "          'nthis': 1,\n",
      "          'inspired': 1,\n",
      "          'able': 1,\n",
      "          'meet': 1,\n",
      "          'famed': 1,\n",
      "          'california': 1,\n",
      "          'surfer': 1,\n",
      "          'nduvalls': 1,\n",
      "          'portrayal': 1,\n",
      "          'terrific': 1,\n",
      "          'provides': 1,\n",
      "          'number': 1,\n",
      "          'quotes': 1,\n",
      "          'neventually': 1,\n",
      "          'encounters': 1,\n",
      "          'kurtzs': 1,\n",
      "          'frightening': 1,\n",
      "          'community': 1,\n",
      "          'full': 1,\n",
      "          'strange': 1,\n",
      "          'everywhere': 1,\n",
      "          'especially': 1,\n",
      "          'none': 1,\n",
      "          'main': 1,\n",
      "          'freelance': 1,\n",
      "          'photographer': 1,\n",
      "          'dennis': 1,\n",
      "          'hopper': 1,\n",
      "          'attempts': 1,\n",
      "          'convey': 1,\n",
      "          'understand': 1,\n",
      "          'encompasses': 1,\n",
      "          'colony': 1,\n",
      "          'nkurtz': 1,\n",
      "          'well': 1,\n",
      "          'aware': 1,\n",
      "          'willards': 1,\n",
      "          'refers': 1,\n",
      "          'errand': 1,\n",
      "          'boy': 1,\n",
      "          'sent': 1,\n",
      "          'grocery': 1,\n",
      "          'clerks': 1,\n",
      "          'collect': 1,\n",
      "          'bill': 1,\n",
      "          'nyet': 1,\n",
      "          'intent': 1,\n",
      "          'completing': 1,\n",
      "          'matter': 1,\n",
      "          'shocking': 1,\n",
      "          'possibly': 1,\n",
      "          'greatest': 1,\n",
      "          'stunning': 1,\n",
      "          'vision': 1,\n",
      "          'corresponds': 1,\n",
      "          'hypnotize': 1,\n",
      "          'brilliant': 1,\n",
      "          'cinematography': 1,\n",
      "          'outstanding': 1,\n",
      "          'epic': 1,\n",
      "          'drama': 1,\n",
      "          'controversial': 1,\n",
      "          'ravages': 1,\n",
      "          'ndefinitely': 1,\n",
      "          'miss': 1,\n",
      "          'list': 1,\n",
      "          'nbe': 1,\n",
      "          'prepared': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'millie': 10,\n",
      "          'merton': 8,\n",
      "          'kate': 8,\n",
      "          'nkate': 6,\n",
      "          'love': 5,\n",
      "          'nthe': 4,\n",
      "          'wings': 4,\n",
      "          'dove': 4,\n",
      "          'nmerton': 4,\n",
      "          'marry': 4,\n",
      "          'made': 3,\n",
      "          'like': 3,\n",
      "          'money': 3,\n",
      "          'rich': 3,\n",
      "          'elliot': 3,\n",
      "          'venice': 3,\n",
      "          'shes': 3,\n",
      "          'british': 2,\n",
      "          'class': 2,\n",
      "          'movies': 2,\n",
      "          'well': 2,\n",
      "          'always': 2,\n",
      "          'story': 2,\n",
      "          'fits': 2,\n",
      "          'roache': 2,\n",
      "          'newspaper': 2,\n",
      "          'ends': 2,\n",
      "          'giving': 2,\n",
      "          'hes': 2,\n",
      "          'friend': 2,\n",
      "          'nat': 2,\n",
      "          'sees': 2,\n",
      "          'realizes': 2,\n",
      "          'might': 2,\n",
      "          'trying': 2,\n",
      "          'still': 2,\n",
      "          'end': 2,\n",
      "          'together': 2,\n",
      "          'feelings': 2,\n",
      "          'hand': 2,\n",
      "          'someone': 2,\n",
      "          'couple': 2,\n",
      "          'na': 2,\n",
      "          'win': 2,\n",
      "          'two': 2,\n",
      "          'finds': 2,\n",
      "          'sure': 2,\n",
      "          'interesting': 2,\n",
      "          'film': 2,\n",
      "          'noir': 2,\n",
      "          'ntheir': 2,\n",
      "          'ni': 2,\n",
      "          'sometimes': 1,\n",
      "          'find': 1,\n",
      "          '19th': 1,\n",
      "          'century': 1,\n",
      "          'costume': 1,\n",
      "          'dramas': 1,\n",
      "          'little': 1,\n",
      "          'hard': 1,\n",
      "          'relate': 1,\n",
      "          'nits': 1,\n",
      "          'time': 1,\n",
      "          'distance': 1,\n",
      "          'rules': 1,\n",
      "          'conventions': 1,\n",
      "          'social': 1,\n",
      "          'deserves': 1,\n",
      "          'resentment': 1,\n",
      "          'rather': 1,\n",
      "          'sympathy': 1,\n",
      "          'nyet': 1,\n",
      "          'somehow': 1,\n",
      "          'get': 1,\n",
      "          'caught': 1,\n",
      "          'pattern': 1,\n",
      "          'helena': 1,\n",
      "          'bonham': 1,\n",
      "          'carter': 1,\n",
      "          'linus': 1,\n",
      "          'writer': 1,\n",
      "          'would': 1,\n",
      "          'nbut': 1,\n",
      "          'kates': 1,\n",
      "          'job': 1,\n",
      "          'member': 1,\n",
      "          'upper': 1,\n",
      "          'nher': 1,\n",
      "          'father': 1,\n",
      "          'lost': 1,\n",
      "          'familys': 1,\n",
      "          'wealthy': 1,\n",
      "          'aunt': 1,\n",
      "          'agreed': 1,\n",
      "          'take': 1,\n",
      "          'care': 1,\n",
      "          'married': 1,\n",
      "          'nice': 1,\n",
      "          'man': 1,\n",
      "          'nnaturally': 1,\n",
      "          'writers': 1,\n",
      "          'wages': 1,\n",
      "          'dont': 1,\n",
      "          'count': 1,\n",
      "          'leads': 1,\n",
      "          'cold': 1,\n",
      "          'shoulder': 1,\n",
      "          'ultimately': 1,\n",
      "          'marriageable': 1,\n",
      "          'nkates': 1,\n",
      "          'american': 1,\n",
      "          'alison': 1,\n",
      "          'stops': 1,\n",
      "          'visit': 1,\n",
      "          'way': 1,\n",
      "          'party': 1,\n",
      "          'catches': 1,\n",
      "          'glimpse': 1,\n",
      "          'likes': 1,\n",
      "          'introduced': 1,\n",
      "          'forget': 1,\n",
      "          'nit': 1,\n",
      "          'appears': 1,\n",
      "          'spare': 1,\n",
      "          'heartbreak': 1,\n",
      "          'inevitable': 1,\n",
      "          'breakup': 1,\n",
      "          'resents': 1,\n",
      "          'nhe': 1,\n",
      "          'accept': 1,\n",
      "          'substitute': 1,\n",
      "          'three': 1,\n",
      "          'along': 1,\n",
      "          'fourth': 1,\n",
      "          'elizabeth': 1,\n",
      "          'mcgovern': 1,\n",
      "          'holiday': 1,\n",
      "          'interactions': 1,\n",
      "          'quite': 1,\n",
      "          'complicated': 1,\n",
      "          'nlets': 1,\n",
      "          'sum': 1,\n",
      "          'fallen': 1,\n",
      "          'loves': 1,\n",
      "          'cant': 1,\n",
      "          'one': 1,\n",
      "          'match': 1,\n",
      "          'make': 1,\n",
      "          'happy': 1,\n",
      "          'jealous': 1,\n",
      "          'clear': 1,\n",
      "          'solution': 1,\n",
      "          'presents': 1,\n",
      "          'sick': 1,\n",
      "          'dying': 1,\n",
      "          'fact': 1,\n",
      "          'point': 1,\n",
      "          'decides': 1,\n",
      "          'dies': 1,\n",
      "          'nmillie': 1,\n",
      "          'leave': 1,\n",
      "          'enough': 1,\n",
      "          'nshe': 1,\n",
      "          'lets': 1,\n",
      "          'know': 1,\n",
      "          'schemes': 1,\n",
      "          'since': 1,\n",
      "          'help': 1,\n",
      "          'reluctantly': 1,\n",
      "          'agrees': 1,\n",
      "          'leaves': 1,\n",
      "          'ms': 1,\n",
      "          'alone': 1,\n",
      "          'pretending': 1,\n",
      "          'lot': 1,\n",
      "          'actually': 1,\n",
      "          'loving': 1,\n",
      "          'nhes': 1,\n",
      "          'separate': 1,\n",
      "          'really': 1,\n",
      "          'wants': 1,\n",
      "          'falling': 1,\n",
      "          'marrying': 1,\n",
      "          'anyone': 1,\n",
      "          'else': 1,\n",
      "          'brilliant': 1,\n",
      "          'scheme': 1,\n",
      "          'proves': 1,\n",
      "          'painful': 1,\n",
      "          'involved': 1,\n",
      "          'nwithout': 1,\n",
      "          'revealing': 1,\n",
      "          'details': 1,\n",
      "          'suffice': 1,\n",
      "          'say': 1,\n",
      "          'situation': 1,\n",
      "          'badly': 1,\n",
      "          'title': 1,\n",
      "          'refers': 1,\n",
      "          'object': 1,\n",
      "          'mertons': 1,\n",
      "          'vain': 1,\n",
      "          'hope': 1,\n",
      "          'something': 1,\n",
      "          'lift': 1,\n",
      "          'predicament': 1,\n",
      "          'none': 1,\n",
      "          'left': 1,\n",
      "          'regret': 1,\n",
      "          'despair': 1,\n",
      "          'nwhat': 1,\n",
      "          'started': 1,\n",
      "          'promising': 1,\n",
      "          'relationship': 1,\n",
      "          'damaged': 1,\n",
      "          'greed': 1,\n",
      "          'anger': 1,\n",
      "          'jealousy': 1,\n",
      "          'nan': 1,\n",
      "          'thought': 1,\n",
      "          'struck': 1,\n",
      "          'movie': 1,\n",
      "          'almost': 1,\n",
      "          'line': 1,\n",
      "          'conspires': 1,\n",
      "          'cheat': 1,\n",
      "          'live': 1,\n",
      "          'happily': 1,\n",
      "          'ever': 1,\n",
      "          'involvement': 1,\n",
      "          'deception': 1,\n",
      "          'makes': 1,\n",
      "          'less': 1,\n",
      "          'attractive': 1,\n",
      "          'things': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'whole': 1,\n",
      "          'idea': 1,\n",
      "          'seems': 1,\n",
      "          'awful': 1,\n",
      "          'liferuining': 1,\n",
      "          'mistake': 1,\n",
      "          'wouldnt': 1,\n",
      "          'call': 1,\n",
      "          'comparison': 1,\n",
      "          'nas': 1,\n",
      "          'acknowledged': 1,\n",
      "          'wonderful': 1,\n",
      "          'judge': 1,\n",
      "          'acting': 1,\n",
      "          'liked': 1,\n",
      "          'performances': 1,\n",
      "          'nroache': 1,\n",
      "          'successfully': 1,\n",
      "          'conveyed': 1,\n",
      "          'characters': 1,\n",
      "          'ambivalence': 1,\n",
      "          'toward': 1,\n",
      "          'near': 1,\n",
      "          'hugs': 1,\n",
      "          'first': 1,\n",
      "          'staring': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'space': 1,\n",
      "          'thinking': 1,\n",
      "          'plan': 1,\n",
      "          'fully': 1,\n",
      "          'embrace': 1,\n",
      "          'nmillies': 1,\n",
      "          'part': 1,\n",
      "          'didnt': 1,\n",
      "          'require': 1,\n",
      "          'much': 1,\n",
      "          'range': 1,\n",
      "          'gave': 1,\n",
      "          'necessary': 1,\n",
      "          'bubbly': 1,\n",
      "          'personality': 1,\n",
      "          'irresistible': 1,\n",
      "          'probably': 1,\n",
      "          'file': 1,\n",
      "          'away': 1,\n",
      "          'lowtraffic': 1,\n",
      "          'corner': 1,\n",
      "          'mind': 1,\n",
      "          'sense': 1,\n",
      "          'sensibility': 1,\n",
      "          'persuasion': 1,\n",
      "          'settings': 1,\n",
      "          'far': 1,\n",
      "          'removed': 1,\n",
      "          'personal': 1,\n",
      "          'experience': 1,\n",
      "          'geographically': 1,\n",
      "          'historically': 1,\n",
      "          'socially': 1,\n",
      "          'nstill': 1,\n",
      "          'stories': 1,\n",
      "          'inevitably': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'ned': 7,\n",
      "          'devine': 6,\n",
      "          'two': 5,\n",
      "          'nthe': 5,\n",
      "          'movie': 4,\n",
      "          'michael': 4,\n",
      "          'man': 3,\n",
      "          'real': 3,\n",
      "          'waking': 3,\n",
      "          'plot': 3,\n",
      "          'one': 3,\n",
      "          'audience': 2,\n",
      "          'end': 2,\n",
      "          'comedy': 2,\n",
      "          'ntheres': 2,\n",
      "          'winner': 2,\n",
      "          'old': 2,\n",
      "          'jackie': 2,\n",
      "          'bannen': 2,\n",
      "          'david': 2,\n",
      "          'kelly': 2,\n",
      "          'town': 2,\n",
      "          'sympathetic': 2,\n",
      "          'like': 2,\n",
      "          'earlier': 1,\n",
      "          'year': 1,\n",
      "          'holy': 1,\n",
      "          'opened': 1,\n",
      "          'meager': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'receipt': 1,\n",
      "          'indifference': 1,\n",
      "          'audiences': 1,\n",
      "          'critics': 1,\n",
      "          'na': 1,\n",
      "          'charmer': 1,\n",
      "          'possible': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'hip': 1,\n",
      "          'trendy': 1,\n",
      "          'attract': 1,\n",
      "          'nnow': 1,\n",
      "          '1998': 1,\n",
      "          'comes': 1,\n",
      "          'inspires': 1,\n",
      "          'vein': 1,\n",
      "          'easygoing': 1,\n",
      "          'laughter': 1,\n",
      "          'substantial': 1,\n",
      "          'difference': 1,\n",
      "          'refined': 1,\n",
      "          'atmosphere': 1,\n",
      "          'strike': 1,\n",
      "          'chords': 1,\n",
      "          'still': 1,\n",
      "          'worth': 1,\n",
      "          'seeing': 1,\n",
      "          'interesting': 1,\n",
      "          'robust': 1,\n",
      "          'latest': 1,\n",
      "          'lottery': 1,\n",
      "          'jimmy': 1,\n",
      "          'keogh': 1,\n",
      "          'tullymore': 1,\n",
      "          'ireland': 1,\n",
      "          'nneds': 1,\n",
      "          'prize': 1,\n",
      "          'six': 1,\n",
      "          'million': 1,\n",
      "          'pounds': 1,\n",
      "          'shock': 1,\n",
      "          'winning': 1,\n",
      "          'killed': 1,\n",
      "          'poor': 1,\n",
      "          'check': 1,\n",
      "          'remains': 1,\n",
      "          'unclaimed': 1,\n",
      "          'nenter': 1,\n",
      "          'oshea': 1,\n",
      "          'ian': 1,\n",
      "          'osullivan': 1,\n",
      "          'residents': 1,\n",
      "          'aware': 1,\n",
      "          'village': 1,\n",
      "          'men': 1,\n",
      "          'eventually': 1,\n",
      "          'find': 1,\n",
      "          'ticket': 1,\n",
      "          'decide': 1,\n",
      "          'convince': 1,\n",
      "          'lotto': 1,\n",
      "          'authorities': 1,\n",
      "          'hes': 1,\n",
      "          'actually': 1,\n",
      "          'entire': 1,\n",
      "          'reap': 1,\n",
      "          'benefits': 1,\n",
      "          'adversary': 1,\n",
      "          'ancient': 1,\n",
      "          'woman': 1,\n",
      "          'eileen': 1,\n",
      "          'dromey': 1,\n",
      "          'sees': 1,\n",
      "          'profit': 1,\n",
      "          'reporting': 1,\n",
      "          'fraud': 1,\n",
      "          'nian': 1,\n",
      "          'truly': 1,\n",
      "          'shine': 1,\n",
      "          'njackie': 1,\n",
      "          'stocky': 1,\n",
      "          'large': 1,\n",
      "          'brains': 1,\n",
      "          'behind': 1,\n",
      "          'operation': 1,\n",
      "          'scrawny': 1,\n",
      "          'short': 1,\n",
      "          'method': 1,\n",
      "          'contrast': 1,\n",
      "          'delightfully': 1,\n",
      "          'time': 1,\n",
      "          'remain': 1,\n",
      "          'nevery': 1,\n",
      "          'viewer': 1,\n",
      "          'sure': 1,\n",
      "          'nthere': 1,\n",
      "          'minor': 1,\n",
      "          'subplots': 1,\n",
      "          'included': 1,\n",
      "          'well': 1,\n",
      "          'unlikely': 1,\n",
      "          'romance': 1,\n",
      "          'local': 1,\n",
      "          'girl': 1,\n",
      "          'pig': 1,\n",
      "          'farmer': 1,\n",
      "          'nthis': 1,\n",
      "          'appears': 1,\n",
      "          'quite': 1,\n",
      "          'inconsequential': 1,\n",
      "          'even': 1,\n",
      "          'startling': 1,\n",
      "          'revelation': 1,\n",
      "          'tad': 1,\n",
      "          'bit': 1,\n",
      "          'unnecessary': 1,\n",
      "          'noverall': 1,\n",
      "          'predictable': 1,\n",
      "          'outcome': 1,\n",
      "          'twists': 1,\n",
      "          'never': 1,\n",
      "          'really': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'ending': 1,\n",
      "          'hilarious': 1,\n",
      "          'ironic': 1,\n",
      "          'twist': 1,\n",
      "          'fate': 1,\n",
      "          'somehow': 1,\n",
      "          'fits': 1,\n",
      "          'twisted': 1,\n",
      "          'sense': 1,\n",
      "          'humor': 1,\n",
      "          'exhibits': 1,\n",
      "          'throughout': 1,\n",
      "          'kirk': 1,\n",
      "          'jones': 1,\n",
      "          'script': 1,\n",
      "          'indeed': 1,\n",
      "          'offthecuff': 1,\n",
      "          'nin': 1,\n",
      "          'way': 1,\n",
      "          'exactly': 1,\n",
      "          'class': 1,\n",
      "          'people': 1,\n",
      "          'presents': 1,\n",
      "          'warm': 1,\n",
      "          'friendly': 1,\n",
      "          'outgoing': 1,\n",
      "          'jovial': 1,\n",
      "          'nits': 1,\n",
      "          'perfect': 1,\n",
      "          'kind': 1,\n",
      "          'gem': 1,\n",
      "          'tale': 1,\n",
      "          'sets': 1,\n",
      "          'trivial': 1,\n",
      "          'outline': 1,\n",
      "          'introduce': 1,\n",
      "          'cast': 1,\n",
      "          'characters': 1,\n",
      "          'string': 1,\n",
      "          'jokes': 1,\n",
      "          'nothing': 1,\n",
      "          'remotely': 1,\n",
      "          'serious': 1,\n",
      "          'grounded': 1,\n",
      "          'moment': 1,\n",
      "          'spirit': 1,\n",
      "          'lighthearted': 1,\n",
      "          'nindeed': 1,\n",
      "          'years': 1,\n",
      "          'best': 1,\n",
      "          'feelgood': 1,\n",
      "          'movies': 1,\n",
      "          '91': 1,\n",
      "          'minutes': 1,\n",
      "          'unrestrained': 1,\n",
      "          'joy': 1,\n",
      "          'miss': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'storm': 3,\n",
      "          'perfect': 2,\n",
      "          'people': 2,\n",
      "          'fishing': 2,\n",
      "          'boat': 2,\n",
      "          'life': 2,\n",
      "          'terrifying': 2,\n",
      "          'thats': 2,\n",
      "          'nthe': 2,\n",
      "          'fish': 2,\n",
      "          'man': 2,\n",
      "          'ntheres': 2,\n",
      "          'john': 2,\n",
      "          'bad': 2,\n",
      "          'nbut': 2,\n",
      "          'susan': 1,\n",
      "          'grangers': 1,\n",
      "          'review': 1,\n",
      "          'warner': 1,\n",
      "          'bros': 1,\n",
      "          'n': 1,\n",
      "          'die': 1,\n",
      "          'boats': 1,\n",
      "          'per': 1,\n",
      "          'capita': 1,\n",
      "          'working': 1,\n",
      "          'job': 1,\n",
      "          'u': 1,\n",
      "          'nevery': 1,\n",
      "          'journey': 1,\n",
      "          'makes': 1,\n",
      "          'allornothing': 1,\n",
      "          'risk': 1,\n",
      "          'nit': 1,\n",
      "          'exhilarating': 1,\n",
      "          'says': 1,\n",
      "          'director': 1,\n",
      "          'wolfgang': 1,\n",
      "          'petersen': 1,\n",
      "          'das': 1,\n",
      "          'boot': 1,\n",
      "          'nand': 1,\n",
      "          'captures': 1,\n",
      "          'true': 1,\n",
      "          'story': 1,\n",
      "          'struggle': 1,\n",
      "          'humanity': 1,\n",
      "          'aboard': 1,\n",
      "          'swordfishing': 1,\n",
      "          'andrea': 1,\n",
      "          'gail': 1,\n",
      "          'sailing': 1,\n",
      "          'gloucester': 1,\n",
      "          'massachusetts': 1,\n",
      "          'late': 1,\n",
      "          'october': 1,\n",
      "          '1991': 1,\n",
      "          'nearly': 1,\n",
      "          'bill': 1,\n",
      "          'wittliffs': 1,\n",
      "          'screenplay': 1,\n",
      "          'based': 1,\n",
      "          'sebastian': 1,\n",
      "          'jungers': 1,\n",
      "          'bestseller': 1,\n",
      "          'meet': 1,\n",
      "          'crew': 1,\n",
      "          'six': 1,\n",
      "          'veteran': 1,\n",
      "          'captain': 1,\n",
      "          'george': 1,\n",
      "          'clooney': 1,\n",
      "          'frustrated': 1,\n",
      "          'cant': 1,\n",
      "          'find': 1,\n",
      "          'grand': 1,\n",
      "          'banks': 1,\n",
      "          'yet': 1,\n",
      "          'rival': 1,\n",
      "          'skipper': 1,\n",
      "          'mary': 1,\n",
      "          'elizabeth': 1,\n",
      "          'mastrantonio': 1,\n",
      "          'brings': 1,\n",
      "          'huge': 1,\n",
      "          'hauls': 1,\n",
      "          'nhis': 1,\n",
      "          'righthand': 1,\n",
      "          'mark': 1,\n",
      "          'walhberg': 1,\n",
      "          'needs': 1,\n",
      "          'money': 1,\n",
      "          'build': 1,\n",
      "          'new': 1,\n",
      "          'girlfriend': 1,\n",
      "          'diane': 1,\n",
      "          'lane': 1,\n",
      "          'devoted': 1,\n",
      "          'dad': 1,\n",
      "          'c': 1,\n",
      "          'reilly': 1,\n",
      "          'estranged': 1,\n",
      "          'wife': 1,\n",
      "          'son': 1,\n",
      "          'freespirited': 1,\n",
      "          'jamaican': 1,\n",
      "          'allen': 1,\n",
      "          'payne': 1,\n",
      "          'lonely': 1,\n",
      "          'guy': 1,\n",
      "          'hawkes': 1,\n",
      "          'lastminute': 1,\n",
      "          'replacement': 1,\n",
      "          'attitude': 1,\n",
      "          'william': 1,\n",
      "          'fichtner': 1,\n",
      "          'skippers': 1,\n",
      "          'convinced': 1,\n",
      "          'change': 1,\n",
      "          'luck': 1,\n",
      "          'streak': 1,\n",
      "          'remote': 1,\n",
      "          'flemish': 1,\n",
      "          'cap': 1,\n",
      "          'trouble': 1,\n",
      "          'begins': 1,\n",
      "          'rogue': 1,\n",
      "          'wave': 1,\n",
      "          'overboard': 1,\n",
      "          'ice': 1,\n",
      "          'machine': 1,\n",
      "          'breaks': 1,\n",
      "          '60': 1,\n",
      "          '000': 1,\n",
      "          'lb': 1,\n",
      "          'nof': 1,\n",
      "          'could': 1,\n",
      "          'spoil': 1,\n",
      "          'minor': 1,\n",
      "          'compared': 1,\n",
      "          'deadly': 1,\n",
      "          'monster': 1,\n",
      "          'approaching': 1,\n",
      "          'boston': 1,\n",
      "          'meteorologist': 1,\n",
      "          'describes': 1,\n",
      "          'disaster': 1,\n",
      "          'epic': 1,\n",
      "          'proportions': 1,\n",
      "          'also': 1,\n",
      "          'threatens': 1,\n",
      "          'lives': 1,\n",
      "          'coast': 1,\n",
      "          'guard': 1,\n",
      "          'helicopter': 1,\n",
      "          'rescue': 1,\n",
      "          'team': 1,\n",
      "          'trying': 1,\n",
      "          'save': 1,\n",
      "          'three': 1,\n",
      "          'stranded': 1,\n",
      "          'sailboat': 1,\n",
      "          'high': 1,\n",
      "          'seas': 1,\n",
      "          'nits': 1,\n",
      "          'formulaic': 1,\n",
      "          'cliches': 1,\n",
      "          'walls': 1,\n",
      "          'water': 1,\n",
      "          'created': 1,\n",
      "          'fluid': 1,\n",
      "          'dynamics': 1,\n",
      "          'simulating': 1,\n",
      "          'reallife': 1,\n",
      "          'phenomena': 1,\n",
      "          'awesome': 1,\n",
      "          'non': 1,\n",
      "          'granger': 1,\n",
      "          'movie': 1,\n",
      "          'gauge': 1,\n",
      "          '1': 1,\n",
      "          '10': 1,\n",
      "          'suspenseful': 1,\n",
      "          '8': 1,\n",
      "          'nhang': 1,\n",
      "          'whiteknuckle': 1,\n",
      "          'thrill': 1,\n",
      "          'ride': 1,\n",
      "          'summer': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'halloween': 7,\n",
      "          'christmas': 6,\n",
      "          'halloweentown': 4,\n",
      "          'world': 4,\n",
      "          'film': 4,\n",
      "          'nightmare': 3,\n",
      "          'years': 3,\n",
      "          'behind': 3,\n",
      "          'holiday': 3,\n",
      "          'jack': 3,\n",
      "          'burton': 3,\n",
      "          'nthe': 3,\n",
      "          'time': 2,\n",
      "          'nwith': 2,\n",
      "          'films': 2,\n",
      "          'characters': 2,\n",
      "          'animation': 2,\n",
      "          'achievements': 2,\n",
      "          'movie': 2,\n",
      "          'big': 2,\n",
      "          'story': 2,\n",
      "          'one': 2,\n",
      "          'discover': 2,\n",
      "          'life': 2,\n",
      "          'pumpkin': 2,\n",
      "          'king': 2,\n",
      "          'everywhere': 2,\n",
      "          'creates': 2,\n",
      "          'holidays': 2,\n",
      "          'happy': 2,\n",
      "          'toys': 2,\n",
      "          'children': 2,\n",
      "          'design': 2,\n",
      "          'directed': 2,\n",
      "          'reissue': 1,\n",
      "          'couldnt': 1,\n",
      "          'appropriate': 1,\n",
      "          'attention': 1,\n",
      "          'thrown': 1,\n",
      "          'family': 1,\n",
      "          'recent': 1,\n",
      "          'namely': 1,\n",
      "          'starring': 1,\n",
      "          'pocket': 1,\n",
      "          'monsters': 1,\n",
      "          'nickelodeon': 1,\n",
      "          'high': 1,\n",
      "          'raised': 1,\n",
      "          'intellectual': 1,\n",
      "          'level': 1,\n",
      "          'childrens': 1,\n",
      "          'fare': 1,\n",
      "          'well': 1,\n",
      "          'studios': 1,\n",
      "          'mind': 1,\n",
      "          'refreshing': 1,\n",
      "          'revisit': 1,\n",
      "          'classic': 1,\n",
      "          'screen': 1,\n",
      "          'still': 1,\n",
      "          'retains': 1,\n",
      "          'originality': 1,\n",
      "          'freshness': 1,\n",
      "          'seven': 1,\n",
      "          'ago': 1,\n",
      "          'nnightmare': 1,\n",
      "          'mans': 1,\n",
      "          'quest': 1,\n",
      "          'true': 1,\n",
      "          'purpose': 1,\n",
      "          'look': 1,\n",
      "          'beyond': 1,\n",
      "          'accolades': 1,\n",
      "          'peers': 1,\n",
      "          'praise': 1,\n",
      "          'ego': 1,\n",
      "          'njack': 1,\n",
      "          'skellington': 1,\n",
      "          'main': 1,\n",
      "          'dude': 1,\n",
      "          'kids': 1,\n",
      "          'nbut': 1,\n",
      "          'reign': 1,\n",
      "          'somehow': 1,\n",
      "          'lost': 1,\n",
      "          'understanding': 1,\n",
      "          'place': 1,\n",
      "          'magic': 1,\n",
      "          'nafter': 1,\n",
      "          'completion': 1,\n",
      "          'particular': 1,\n",
      "          'season': 1,\n",
      "          'walks': 1,\n",
      "          'heavy': 1,\n",
      "          'heart': 1,\n",
      "          'ends': 1,\n",
      "          'discovering': 1,\n",
      "          'woods': 1,\n",
      "          'outside': 1,\n",
      "          'grove': 1,\n",
      "          'trees': 1,\n",
      "          'doors': 1,\n",
      "          'nimagine': 1,\n",
      "          'surprise': 1,\n",
      "          'christmastown': 1,\n",
      "          'far': 1,\n",
      "          'impressive': 1,\n",
      "          'uplifting': 1,\n",
      "          'surrounded': 1,\n",
      "          'elves': 1,\n",
      "          'making': 1,\n",
      "          'good': 1,\n",
      "          'cheer': 1,\n",
      "          'around': 1,\n",
      "          'nupon': 1,\n",
      "          'return': 1,\n",
      "          'decides': 1,\n",
      "          'combine': 1,\n",
      "          'together': 1,\n",
      "          'kidnapping': 1,\n",
      "          'sandy': 1,\n",
      "          'claws': 1,\n",
      "          'employing': 1,\n",
      "          'residents': 1,\n",
      "          'build': 1,\n",
      "          'nhe': 1,\n",
      "          'aims': 1,\n",
      "          'take': 1,\n",
      "          'role': 1,\n",
      "          'primary': 1,\n",
      "          'joyprovider': 1,\n",
      "          'giftbearer': 1,\n",
      "          'hopes': 1,\n",
      "          'rediscovering': 1,\n",
      "          'zest': 1,\n",
      "          'nalas': 1,\n",
      "          'comingling': 1,\n",
      "          'disastrous': 1,\n",
      "          'results': 1,\n",
      "          'involving': 1,\n",
      "          'shrunken': 1,\n",
      "          'heads': 1,\n",
      "          'psychotic': 1,\n",
      "          'wooden': 1,\n",
      "          'ducks': 1,\n",
      "          'sleigh': 1,\n",
      "          'pulled': 1,\n",
      "          'phantom': 1,\n",
      "          'dog': 1,\n",
      "          'lighted': 1,\n",
      "          'nose': 1,\n",
      "          'large': 1,\n",
      "          'sinister': 1,\n",
      "          'singing': 1,\n",
      "          'bag': 1,\n",
      "          'named': 1,\n",
      "          'oogie': 1,\n",
      "          'boogie': 1,\n",
      "          'ntim': 1,\n",
      "          'man': 1,\n",
      "          'great': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'beetlejuice': 1,\n",
      "          'peewees': 1,\n",
      "          'adventure': 1,\n",
      "          'edward': 1,\n",
      "          'scissorhands': 1,\n",
      "          'creative': 1,\n",
      "          'force': 1,\n",
      "          'noriginally': 1,\n",
      "          'authored': 1,\n",
      "          'poem': 1,\n",
      "          'became': 1,\n",
      "          'basis': 1,\n",
      "          'storyline': 1,\n",
      "          'jointly': 1,\n",
      "          'involved': 1,\n",
      "          'production': 1,\n",
      "          'though': 1,\n",
      "          'many': 1,\n",
      "          'mistakenly': 1,\n",
      "          'assume': 1,\n",
      "          'picture': 1,\n",
      "          'stamp': 1,\n",
      "          'clearly': 1,\n",
      "          'bold': 1,\n",
      "          'colors': 1,\n",
      "          'imaginative': 1,\n",
      "          'character': 1,\n",
      "          'simple': 1,\n",
      "          'yet': 1,\n",
      "          'compelling': 1,\n",
      "          'direction': 1,\n",
      "          'harry': 1,\n",
      "          'selick': 1,\n",
      "          'also': 1,\n",
      "          'james': 1,\n",
      "          'giant': 1,\n",
      "          'peach': 1,\n",
      "          'strong': 1,\n",
      "          'offering': 1,\n",
      "          'intimate': 1,\n",
      "          'views': 1,\n",
      "          'strange': 1,\n",
      "          'collection': 1,\n",
      "          'nalso': 1,\n",
      "          'memorable': 1,\n",
      "          'songs': 1,\n",
      "          'written': 1,\n",
      "          'former': 1,\n",
      "          'oingo': 1,\n",
      "          'boingo': 1,\n",
      "          'lead': 1,\n",
      "          'singer': 1,\n",
      "          'danny': 1,\n",
      "          'elfman': 1,\n",
      "          'next': 1,\n",
      "          'john': 1,\n",
      "          'williams': 1,\n",
      "          'composing': 1,\n",
      "          'intended': 1,\n",
      "          'kid': 1,\n",
      "          'adult': 1,\n",
      "          'everyone': 1,\n",
      "          'nits': 1,\n",
      "          'childs': 1,\n",
      "          'play': 1,\n",
      "          'truly': 1,\n",
      "          'tough': 1,\n",
      "          'saying': 1,\n",
      "          'need': 1,\n",
      "          'exactly': 1,\n",
      "          'without': 1,\n",
      "          'compromise': 1,\n",
      "          'nwhat': 1,\n",
      "          'better': 1,\n",
      "          'message': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'action': 9,\n",
      "          'aliens': 8,\n",
      "          'alien': 8,\n",
      "          'movie': 6,\n",
      "          'ripley': 6,\n",
      "          'best': 5,\n",
      "          'cameron': 4,\n",
      "          'planet': 4,\n",
      "          'one': 3,\n",
      "          'years': 3,\n",
      "          'james': 3,\n",
      "          'say': 3,\n",
      "          'marines': 3,\n",
      "          'colony': 3,\n",
      "          'next': 3,\n",
      "          'great': 3,\n",
      "          'drama': 3,\n",
      "          'good': 3,\n",
      "          'completely': 2,\n",
      "          'genre': 2,\n",
      "          'guy': 2,\n",
      "          'huge': 2,\n",
      "          'combines': 2,\n",
      "          'big': 2,\n",
      "          'films': 2,\n",
      "          't2': 2,\n",
      "          'judgement': 2,\n",
      "          'day': 2,\n",
      "          'scifi': 2,\n",
      "          'original': 2,\n",
      "          'featured': 2,\n",
      "          'nand': 2,\n",
      "          'take': 2,\n",
      "          'weaver': 2,\n",
      "          'found': 2,\n",
      "          'ship': 2,\n",
      "          'nif': 2,\n",
      "          'quickly': 2,\n",
      "          'nin': 2,\n",
      "          'soon': 2,\n",
      "          'nit': 2,\n",
      "          'nasty': 2,\n",
      "          'happens': 2,\n",
      "          'half': 2,\n",
      "          'like': 2,\n",
      "          'time': 2,\n",
      "          'nwell': 2,\n",
      "          'actress': 2,\n",
      "          'right': 2,\n",
      "          'fx': 2,\n",
      "          'another': 2,\n",
      "          'wait': 2,\n",
      "          'every': 1,\n",
      "          'comes': 1,\n",
      "          'along': 1,\n",
      "          'redefines': 1,\n",
      "          'dramas': 1,\n",
      "          'citizen': 1,\n",
      "          'kane': 1,\n",
      "          'arthouse': 1,\n",
      "          'pulp': 1,\n",
      "          'fiction': 1,\n",
      "          'comedy': 1,\n",
      "          'well': 1,\n",
      "          'jim': 1,\n",
      "          'carrey': 1,\n",
      "          'okay': 1,\n",
      "          'hes': 1,\n",
      "          'influence': 1,\n",
      "          'nnot': 1,\n",
      "          'mention': 1,\n",
      "          'expensive': 1,\n",
      "          'nsometimes': 1,\n",
      "          'even': 1,\n",
      "          'sprawling': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'event': 1,\n",
      "          'forrest': 1,\n",
      "          'gump': 1,\n",
      "          'four': 1,\n",
      "          'ago': 1,\n",
      "          'nwith': 1,\n",
      "          'whic': 1,\n",
      "          'released': 1,\n",
      "          'much': 1,\n",
      "          'hype': 1,\n",
      "          'seven': 1,\n",
      "          'equallyinnovative': 1,\n",
      "          'parent': 1,\n",
      "          '1979': 1,\n",
      "          'ndirected': 1,\n",
      "          'written': 1,\n",
      "          'abyss': 1,\n",
      "          'true': 1,\n",
      "          'lies': 1,\n",
      "          'authority': 1,\n",
      "          'masterful': 1,\n",
      "          'encore': 1,\n",
      "          'thriller': 1,\n",
      "          'terminator': 1,\n",
      "          '1984': 1,\n",
      "          'nwhile': 1,\n",
      "          'dark': 1,\n",
      "          'enclosed': 1,\n",
      "          'horror': 1,\n",
      "          'slowly': 1,\n",
      "          'massacering': 1,\n",
      "          'horrified': 1,\n",
      "          'crew': 1,\n",
      "          'took': 1,\n",
      "          'bigbudget': 1,\n",
      "          'multiple': 1,\n",
      "          'basically': 1,\n",
      "          'thing': 1,\n",
      "          'although': 1,\n",
      "          'muchlarger': 1,\n",
      "          'scale': 1,\n",
      "          'boy': 1,\n",
      "          'route': 1,\n",
      "          'nid': 1,\n",
      "          '165': 1,\n",
      "          'mph': 1,\n",
      "          'nthe': 1,\n",
      "          'opens': 1,\n",
      "          '57': 1,\n",
      "          'lt': 1,\n",
      "          'cryogenic': 1,\n",
      "          'state': 1,\n",
      "          'salvage': 1,\n",
      "          'vessel': 1,\n",
      "          'youll': 1,\n",
      "          'recall': 1,\n",
      "          'end': 1,\n",
      "          'surviving': 1,\n",
      "          'member': 1,\n",
      "          'cryogenically': 1,\n",
      "          'hibernated': 1,\n",
      "          'expelling': 1,\n",
      "          'rogue': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'thought': 1,\n",
      "          'shed': 1,\n",
      "          'couple': 1,\n",
      "          'weeks': 1,\n",
      "          'nonce': 1,\n",
      "          'shes': 1,\n",
      "          'returned': 1,\n",
      "          'earth': 1,\n",
      "          'interrogated': 1,\n",
      "          'company': 1,\n",
      "          'dismiss': 1,\n",
      "          'stories': 1,\n",
      "          'lunacy': 1,\n",
      "          'truth': 1,\n",
      "          'believe': 1,\n",
      "          'approach': 1,\n",
      "          'offer': 1,\n",
      "          'travel': 1,\n",
      "          'new': 1,\n",
      "          'advisor': 1,\n",
      "          'seems': 1,\n",
      "          'oncebreeding': 1,\n",
      "          'ground': 1,\n",
      "          'communication': 1,\n",
      "          'lost': 1,\n",
      "          'doesnt': 1,\n",
      "          'exactly': 1,\n",
      "          'genius': 1,\n",
      "          'guess': 1,\n",
      "          'agrees': 1,\n",
      "          'mistake': 1,\n",
      "          'dozen': 1,\n",
      "          'plus': 1,\n",
      "          'slimy': 1,\n",
      "          'corporate': 1,\n",
      "          'reiser': 1,\n",
      "          'looks': 1,\n",
      "          'sleeve': 1,\n",
      "          'nwhen': 1,\n",
      "          'arrive': 1,\n",
      "          'find': 1,\n",
      "          'ruins': 1,\n",
      "          'nonly': 1,\n",
      "          'survivor': 1,\n",
      "          'little': 1,\n",
      "          'girl': 1,\n",
      "          'newt': 1,\n",
      "          'confirms': 1,\n",
      "          'yes': 1,\n",
      "          'managed': 1,\n",
      "          'survive': 1,\n",
      "          'hidding': 1,\n",
      "          'ventilation': 1,\n",
      "          'system': 1,\n",
      "          'enough': 1,\n",
      "          'come': 1,\n",
      "          'attack': 1,\n",
      "          'nwhat': 1,\n",
      "          'hour': 1,\n",
      "          'sets': 1,\n",
      "          'apart': 1,\n",
      "          'standard': 1,\n",
      "          'scenes': 1,\n",
      "          'ncameron': 1,\n",
      "          'directs': 1,\n",
      "          'skillfully': 1,\n",
      "          'suspensefully': 1,\n",
      "          'youre': 1,\n",
      "          'literally': 1,\n",
      "          'ringing': 1,\n",
      "          'hands': 1,\n",
      "          'finale': 1,\n",
      "          'rolls': 1,\n",
      "          'around': 1,\n",
      "          'nwhich': 1,\n",
      "          'features': 1,\n",
      "          'opinion': 1,\n",
      "          'fight': 1,\n",
      "          'scene': 1,\n",
      "          'ever': 1,\n",
      "          'recorded': 1,\n",
      "          'straps': 1,\n",
      "          'robot': 1,\n",
      "          'battles': 1,\n",
      "          'queen': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'death': 1,\n",
      "          'nmany': 1,\n",
      "          'people': 1,\n",
      "          'tell': 1,\n",
      "          'real': 1,\n",
      "          'cliches': 1,\n",
      "          'would': 1,\n",
      "          'wrong': 1,\n",
      "          'friends': 1,\n",
      "          'sigourney': 1,\n",
      "          'nominated': 1,\n",
      "          '1987': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'nthats': 1,\n",
      "          'nyou': 1,\n",
      "          'know': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'attached': 1,\n",
      "          'something': 1,\n",
      "          'technical': 1,\n",
      "          'stuff': 1,\n",
      "          'editing': 1,\n",
      "          'got': 1,\n",
      "          'short': 1,\n",
      "          'elements': 1,\n",
      "          'plot': 1,\n",
      "          'dialogue': 1,\n",
      "          'villains': 1,\n",
      "          'could': 1,\n",
      "          'arguably': 1,\n",
      "          'called': 1,\n",
      "          'nthen': 1,\n",
      "          'maybe': 1,\n",
      "          'nmovies': 1,\n",
      "          'rise': 1,\n",
      "          'fall': 1,\n",
      "          'glory': 1,\n",
      "          'sad': 1,\n",
      "          'wrestled': 1,\n",
      "          'throne': 1,\n",
      "          '1991': 1,\n",
      "          'nso': 1,\n",
      "          'king': 1,\n",
      "          'lets': 1,\n",
      "          'december': 1,\n",
      "          '19th': 1,\n",
      "          'see': 1,\n",
      "          'yet': 1,\n",
      "          'filmthe': 1,\n",
      "          'highest': 1,\n",
      "          'budgeted': 1,\n",
      "          'timetitanic': 1,\n",
      "          'make': 1,\n",
      "          'decision': 1,\n",
      "          'ni': 1,\n",
      "          'cant': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'nthe': 6,\n",
      "          'film': 6,\n",
      "          'one': 5,\n",
      "          'audience': 4,\n",
      "          'character': 4,\n",
      "          'singer': 3,\n",
      "          'created': 3,\n",
      "          'last': 3,\n",
      "          'years': 3,\n",
      "          'plot': 3,\n",
      "          'story': 3,\n",
      "          'kint': 3,\n",
      "          'kevin': 3,\n",
      "          'toro': 3,\n",
      "          'also': 3,\n",
      "          'good': 3,\n",
      "          'performance': 3,\n",
      "          'ending': 3,\n",
      "          'mcquarrie': 2,\n",
      "          'plotdriven': 2,\n",
      "          'usual': 2,\n",
      "          'word': 2,\n",
      "          'screen': 2,\n",
      "          'spacey': 2,\n",
      "          'cop': 2,\n",
      "          'keaton': 2,\n",
      "          'new': 2,\n",
      "          'fenster': 2,\n",
      "          'benicio': 2,\n",
      "          'del': 2,\n",
      "          'finest': 2,\n",
      "          'service': 2,\n",
      "          'nwhat': 2,\n",
      "          'keyser': 2,\n",
      "          'soze': 2,\n",
      "          'minutes': 2,\n",
      "          'youll': 2,\n",
      "          'ever': 2,\n",
      "          'true': 2,\n",
      "          'terrific': 2,\n",
      "          'actor': 2,\n",
      "          'nhowever': 2,\n",
      "          'giving': 2,\n",
      "          'end': 2,\n",
      "          'best': 2,\n",
      "          '10': 2,\n",
      "          'cinematic': 2,\n",
      "          'believe': 2,\n",
      "          'nkudos': 2,\n",
      "          'characters': 2,\n",
      "          'puzzle': 2,\n",
      "          'setting': 2,\n",
      "          'flaws': 2,\n",
      "          '1995': 1,\n",
      "          'brian': 1,\n",
      "          'christopher': 1,\n",
      "          'dreamed': 1,\n",
      "          'simple': 1,\n",
      "          'concept': 1,\n",
      "          'isnt': 1,\n",
      "          'stupid': 1,\n",
      "          'nfrom': 1,\n",
      "          'went': 1,\n",
      "          'intricately': 1,\n",
      "          'pieced': 1,\n",
      "          '25': 1,\n",
      "          'result': 1,\n",
      "          'suspects': 1,\n",
      "          'hell': 1,\n",
      "          'redefines': 1,\n",
      "          'twist': 1,\n",
      "          'convoluted': 1,\n",
      "          'really': 1,\n",
      "          'confusing': 1,\n",
      "          'read': 1,\n",
      "          'although': 1,\n",
      "          'easy': 1,\n",
      "          'follow': 1,\n",
      "          'nspecial': 1,\n",
      "          'investigator': 1,\n",
      "          'kujan': 1,\n",
      "          'chazz': 1,\n",
      "          'palminteri': 1,\n",
      "          'grills': 1,\n",
      "          'verbal': 1,\n",
      "          'crippled': 1,\n",
      "          'conman': 1,\n",
      "          'lone': 1,\n",
      "          'survivor': 1,\n",
      "          'la': 1,\n",
      "          'boat': 1,\n",
      "          'explosion': 1,\n",
      "          'claimed': 1,\n",
      "          '20': 1,\n",
      "          'victims': 1,\n",
      "          'nkujan': 1,\n",
      "          'wants': 1,\n",
      "          'confirm': 1,\n",
      "          'nemesis': 1,\n",
      "          'rogue': 1,\n",
      "          'gabriel': 1,\n",
      "          'byrne': 1,\n",
      "          'actually': 1,\n",
      "          'dead': 1,\n",
      "          'nkint': 1,\n",
      "          'relates': 1,\n",
      "          'majority': 1,\n",
      "          'flashback': 1,\n",
      "          'beginning': 1,\n",
      "          'fateful': 1,\n",
      "          'day': 1,\n",
      "          'five': 1,\n",
      "          'shifty': 1,\n",
      "          'guys': 1,\n",
      "          'meet': 1,\n",
      "          'policestation': 1,\n",
      "          'lineup': 1,\n",
      "          'york': 1,\n",
      "          'city': 1,\n",
      "          'nalong': 1,\n",
      "          'dour': 1,\n",
      "          'encounters': 1,\n",
      "          'cheerfully': 1,\n",
      "          'sociopathic': 1,\n",
      "          'mcmanus': 1,\n",
      "          'stephen': 1,\n",
      "          'baldwin': 1,\n",
      "          'mordantly': 1,\n",
      "          'sarcastic': 1,\n",
      "          'hockney': 1,\n",
      "          'pollak': 1,\n",
      "          'whose': 1,\n",
      "          'speech': 1,\n",
      "          'virtually': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'ntogether': 1,\n",
      "          'steal': 1,\n",
      "          'small': 1,\n",
      "          'fortune': 1,\n",
      "          'gems': 1,\n",
      "          'yorks': 1,\n",
      "          'taxi': 1,\n",
      "          'crooked': 1,\n",
      "          'cops': 1,\n",
      "          'provide': 1,\n",
      "          'escort': 1,\n",
      "          'visiting': 1,\n",
      "          'drug': 1,\n",
      "          'kingpins': 1,\n",
      "          'follows': 1,\n",
      "          'shellgame': 1,\n",
      "          'violence': 1,\n",
      "          'betrayal': 1,\n",
      "          'hinging': 1,\n",
      "          'identity': 1,\n",
      "          'mysterious': 1,\n",
      "          'villain': 1,\n",
      "          'called': 1,\n",
      "          'brilliantly': 1,\n",
      "          'compact': 1,\n",
      "          'shortest': 1,\n",
      "          '90': 1,\n",
      "          'spend': 1,\n",
      "          'theater': 1,\n",
      "          'cast': 1,\n",
      "          'exceptional': 1,\n",
      "          'npalminteri': 1,\n",
      "          'shines': 1,\n",
      "          'brutally': 1,\n",
      "          'honest': 1,\n",
      "          'going': 1,\n",
      "          'whole': 1,\n",
      "          'nbyrne': 1,\n",
      "          'brooding': 1,\n",
      "          'seriousness': 1,\n",
      "          'needed': 1,\n",
      "          'supplement': 1,\n",
      "          'hysteria': 1,\n",
      "          'riot': 1,\n",
      "          'ndel': 1,\n",
      "          'brilliant': 1,\n",
      "          'lines': 1,\n",
      "          'jumbled': 1,\n",
      "          'mess': 1,\n",
      "          'cant': 1,\n",
      "          'understand': 1,\n",
      "          'man': 1,\n",
      "          'says': 1,\n",
      "          'sure': 1,\n",
      "          'damn': 1,\n",
      "          'funny': 1,\n",
      "          'nbaldwin': 1,\n",
      "          'careful': 1,\n",
      "          'methodical': 1,\n",
      "          'cold': 1,\n",
      "          'chilling': 1,\n",
      "          'nasty': 1,\n",
      "          'streak': 1,\n",
      "          'hotblooded': 1,\n",
      "          'sarcasm': 1,\n",
      "          'npollak': 1,\n",
      "          'forever': 1,\n",
      "          'known': 1,\n",
      "          'launched': 1,\n",
      "          'nspacey': 1,\n",
      "          'simply': 1,\n",
      "          'breathtaking': 1,\n",
      "          'force': 1,\n",
      "          'magnetic': 1,\n",
      "          'jars': 1,\n",
      "          'senses': 1,\n",
      "          'twisting': 1,\n",
      "          'maze': 1,\n",
      "          'nspaceys': 1,\n",
      "          'remembered': 1,\n",
      "          'career': 1,\n",
      "          'may': 1,\n",
      "          'supporting': 1,\n",
      "          '50': 1,\n",
      "          'nverbal': 1,\n",
      "          'clever': 1,\n",
      "          'storyteller': 1,\n",
      "          'weak': 1,\n",
      "          'oppressed': 1,\n",
      "          'gleefully': 1,\n",
      "          'evil': 1,\n",
      "          'bone': 1,\n",
      "          'yet': 1,\n",
      "          'pitiful': 1,\n",
      "          'draws': 1,\n",
      "          'sympathy': 1,\n",
      "          'decent': 1,\n",
      "          'boils': 1,\n",
      "          'greatest': 1,\n",
      "          'history': 1,\n",
      "          'least': 1,\n",
      "          'revelation': 1,\n",
      "          'closing': 1,\n",
      "          'gunfights': 1,\n",
      "          'something': 1,\n",
      "          'wondrous': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'times': 1,\n",
      "          'delightful': 1,\n",
      "          'fastpaced': 1,\n",
      "          'furiously': 1,\n",
      "          'quirky': 1,\n",
      "          'phenomenal': 1,\n",
      "          'acting': 1,\n",
      "          'hilarious': 1,\n",
      "          'moments': 1,\n",
      "          'stuck': 1,\n",
      "          'middle': 1,\n",
      "          'nmcquarrie': 1,\n",
      "          'refuses': 1,\n",
      "          'dumb': 1,\n",
      "          'nwithout': 1,\n",
      "          'furnishing': 1,\n",
      "          'many': 1,\n",
      "          'details': 1,\n",
      "          'concocts': 1,\n",
      "          'lets': 1,\n",
      "          'run': 1,\n",
      "          'hoping': 1,\n",
      "          'gets': 1,\n",
      "          'nwe': 1,\n",
      "          'nthis': 1,\n",
      "          'might': 1,\n",
      "          'john': 1,\n",
      "          'ottman': 1,\n",
      "          'score': 1,\n",
      "          'nthey': 1,\n",
      "          'create': 1,\n",
      "          'filmnoir': 1,\n",
      "          'carefully': 1,\n",
      "          'intricate': 1,\n",
      "          'final': 1,\n",
      "          'jarring': 1,\n",
      "          'nthere': 1,\n",
      "          'questions': 1,\n",
      "          'raised': 1,\n",
      "          'answers': 1,\n",
      "          'lack': 1,\n",
      "          'development': 1,\n",
      "          'strong': 1,\n",
      "          'female': 1,\n",
      "          'save': 1,\n",
      "          'stunning': 1,\n",
      "          'make': 1,\n",
      "          'nif': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'rent': 1,\n",
      "          'nwatch': 1,\n",
      "          'nthen': 1,\n",
      "          'rewind': 1,\n",
      "          'tape': 1,\n",
      "          'watch': 1,\n",
      "          'ntrust': 1,\n",
      "          'amazed': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'sees': 5,\n",
      "          'crowe': 5,\n",
      "          'boy': 5,\n",
      "          'well': 4,\n",
      "          'nit': 4,\n",
      "          'one': 4,\n",
      "          'lie': 4,\n",
      "          'willis': 4,\n",
      "          'dead': 4,\n",
      "          'time': 4,\n",
      "          'movie': 3,\n",
      "          'even': 3,\n",
      "          'also': 3,\n",
      "          'sixth': 3,\n",
      "          'sense': 3,\n",
      "          'osment': 3,\n",
      "          'troubled': 3,\n",
      "          'cole': 3,\n",
      "          'nand': 3,\n",
      "          'nhe': 3,\n",
      "          'around': 3,\n",
      "          'help': 3,\n",
      "          'throughout': 3,\n",
      "          'shall': 3,\n",
      "          'directed': 2,\n",
      "          'like': 2,\n",
      "          'nbut': 2,\n",
      "          'accept': 2,\n",
      "          'must': 2,\n",
      "          'child': 2,\n",
      "          'haley': 2,\n",
      "          'joel': 2,\n",
      "          'people': 2,\n",
      "          'nnot': 2,\n",
      "          'first': 2,\n",
      "          'frightened': 2,\n",
      "          'emotionally': 2,\n",
      "          'mother': 2,\n",
      "          'collette': 2,\n",
      "          'ncrowe': 2,\n",
      "          'wife': 2,\n",
      "          'olivia': 2,\n",
      "          'williams': 2,\n",
      "          'script': 2,\n",
      "          'work': 2,\n",
      "          'character': 2,\n",
      "          'treating': 2,\n",
      "          'remain': 2,\n",
      "          'manages': 2,\n",
      "          'man': 2,\n",
      "          'crowes': 2,\n",
      "          'shyamalan': 2,\n",
      "          'film': 2,\n",
      "          'final': 2,\n",
      "          'death': 2,\n",
      "          'happened': 1,\n",
      "          'na': 1,\n",
      "          'scripted': 1,\n",
      "          'acted': 1,\n",
      "          'involving': 1,\n",
      "          'suspenseful': 1,\n",
      "          'unexpected': 1,\n",
      "          'twist': 1,\n",
      "          'end': 1,\n",
      "          'packs': 1,\n",
      "          'punch': 1,\n",
      "          'blow': 1,\n",
      "          'solar': 1,\n",
      "          'plexus': 1,\n",
      "          'order': 1,\n",
      "          'premise': 1,\n",
      "          'spiritual': 1,\n",
      "          'nstarring': 1,\n",
      "          'bruce': 1,\n",
      "          'armageddon': 1,\n",
      "          'psychologist': 1,\n",
      "          'forrest': 1,\n",
      "          'gump': 1,\n",
      "          'youngster': 1,\n",
      "          'spooky': 1,\n",
      "          'scary': 1,\n",
      "          'though': 1,\n",
      "          'contain': 1,\n",
      "          'disturbing': 1,\n",
      "          'images': 1,\n",
      "          'designed': 1,\n",
      "          'startle': 1,\n",
      "          'neightyearold': 1,\n",
      "          'sear': 1,\n",
      "          'dreams': 1,\n",
      "          'lifeless': 1,\n",
      "          'bodies': 1,\n",
      "          'walking': 1,\n",
      "          'regular': 1,\n",
      "          'ndr': 1,\n",
      "          'malcolm': 1,\n",
      "          'trying': 1,\n",
      "          'recognizes': 1,\n",
      "          'many': 1,\n",
      "          'attributes': 1,\n",
      "          'earlier': 1,\n",
      "          'patients': 1,\n",
      "          'failed': 1,\n",
      "          'resulting': 1,\n",
      "          'patient': 1,\n",
      "          'shooting': 1,\n",
      "          'turning': 1,\n",
      "          'gun': 1,\n",
      "          'nif': 1,\n",
      "          'could': 1,\n",
      "          'manage': 1,\n",
      "          'find': 1,\n",
      "          'way': 1,\n",
      "          'believes': 1,\n",
      "          'might': 1,\n",
      "          'able': 1,\n",
      "          'put': 1,\n",
      "          'demons': 1,\n",
      "          'rest': 1,\n",
      "          'needs': 1,\n",
      "          'gain': 1,\n",
      "          'coles': 1,\n",
      "          'trust': 1,\n",
      "          'closed': 1,\n",
      "          'unwilling': 1,\n",
      "          'tell': 1,\n",
      "          'anyone': 1,\n",
      "          'toni': 1,\n",
      "          'clockwatchers': 1,\n",
      "          'nabout': 1,\n",
      "          'secrets': 1,\n",
      "          'begins': 1,\n",
      "          'spend': 1,\n",
      "          'marriage': 1,\n",
      "          'starts': 1,\n",
      "          'dissolve': 1,\n",
      "          'anna': 1,\n",
      "          'rushmore': 1,\n",
      "          'becoming': 1,\n",
      "          'cold': 1,\n",
      "          'distant': 1,\n",
      "          'neglect': 1,\n",
      "          'preoccupation': 1,\n",
      "          'nbruce': 1,\n",
      "          'underplays': 1,\n",
      "          'role': 1,\n",
      "          'allowing': 1,\n",
      "          'excellent': 1,\n",
      "          'building': 1,\n",
      "          'development': 1,\n",
      "          'moves': 1,\n",
      "          'wont': 1,\n",
      "          'communicate': 1,\n",
      "          'hallucinations': 1,\n",
      "          'wondering': 1,\n",
      "          'perhaps': 1,\n",
      "          'isnt': 1,\n",
      "          'truth': 1,\n",
      "          'behind': 1,\n",
      "          'nmr': 1,\n",
      "          'serviceable': 1,\n",
      "          'job': 1,\n",
      "          'letting': 1,\n",
      "          'focus': 1,\n",
      "          'story': 1,\n",
      "          'instead': 1,\n",
      "          'familiar': 1,\n",
      "          'action': 1,\n",
      "          'hero': 1,\n",
      "          'screen': 1,\n",
      "          'persona': 1,\n",
      "          'nelevenyearold': 1,\n",
      "          'impress': 1,\n",
      "          'us': 1,\n",
      "          'performance': 1,\n",
      "          'demonstrates': 1,\n",
      "          'amazing': 1,\n",
      "          'amount': 1,\n",
      "          'selfcomposure': 1,\n",
      "          'ability': 1,\n",
      "          'play': 1,\n",
      "          'nuances': 1,\n",
      "          'complex': 1,\n",
      "          'seasoned': 1,\n",
      "          'pro': 1,\n",
      "          'fine': 1,\n",
      "          'tender': 1,\n",
      "          'age': 1,\n",
      "          'nkeep': 1,\n",
      "          'eye': 1,\n",
      "          'young': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'quite': 1,\n",
      "          'effective': 1,\n",
      "          'ntoni': 1,\n",
      "          'confused': 1,\n",
      "          'frustrated': 1,\n",
      "          'cant': 1,\n",
      "          'understand': 1,\n",
      "          'happening': 1,\n",
      "          'loving': 1,\n",
      "          'shutting': 1,\n",
      "          'due': 1,\n",
      "          'lack': 1,\n",
      "          'attention': 1,\n",
      "          'husband': 1,\n",
      "          'donnie': 1,\n",
      "          'wahlberg': 1,\n",
      "          'ransom': 1,\n",
      "          'expatient': 1,\n",
      "          'grown': 1,\n",
      "          'illustrates': 1,\n",
      "          'doctors': 1,\n",
      "          'failure': 1,\n",
      "          'vivid': 1,\n",
      "          'terms': 1,\n",
      "          'imaginable': 1,\n",
      "          'ntwentyeight': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'night': 1,\n",
      "          'wide': 1,\n",
      "          'awake': 1,\n",
      "          'maintaining': 1,\n",
      "          'proper': 1,\n",
      "          'tension': 1,\n",
      "          'crafting': 1,\n",
      "          'storytelling': 1,\n",
      "          'expertly': 1,\n",
      "          'films': 1,\n",
      "          'full': 1,\n",
      "          'impact': 1,\n",
      "          'reached': 1,\n",
      "          'moments': 1,\n",
      "          'surprising': 1,\n",
      "          'revelation': 1,\n",
      "          'forces': 1,\n",
      "          'reevaluation': 1,\n",
      "          'preceded': 1,\n",
      "          'rare': 1,\n",
      "          'pull': 1,\n",
      "          'mr': 1,\n",
      "          'responsible': 1,\n",
      "          'certainly': 1,\n",
      "          'commended': 1,\n",
      "          'nin': 1,\n",
      "          'giving': 1,\n",
      "          'favorable': 1,\n",
      "          'three': 1,\n",
      "          'star': 1,\n",
      "          'review': 1,\n",
      "          'craftsmanship': 1,\n",
      "          'artistic': 1,\n",
      "          'merit': 1,\n",
      "          'point': 1,\n",
      "          'spiritually': 1,\n",
      "          'speaking': 1,\n",
      "          'highly': 1,\n",
      "          'misleading': 1,\n",
      "          'nthere': 1,\n",
      "          'scriptural': 1,\n",
      "          'foundation': 1,\n",
      "          'upon': 1,\n",
      "          'base': 1,\n",
      "          'belief': 1,\n",
      "          'ghosts': 1,\n",
      "          'living': 1,\n",
      "          'concept': 1,\n",
      "          'doorway': 1,\n",
      "          'another': 1,\n",
      "          'plane': 1,\n",
      "          'existence': 1,\n",
      "          'devilish': 1,\n",
      "          'long': 1,\n",
      "          'recorded': 1,\n",
      "          'bible': 1,\n",
      "          'devised': 1,\n",
      "          'serpent': 1,\n",
      "          'assured': 1,\n",
      "          'eve': 1,\n",
      "          'thou': 1,\n",
      "          'surely': 1,\n",
      "          'die': 1,\n",
      "          'direct': 1,\n",
      "          'contradiction': 1,\n",
      "          'gods': 1,\n",
      "          'admonition': 1,\n",
      "          'nthat': 1,\n",
      "          'perpetuated': 1,\n",
      "          'ad': 1,\n",
      "          'infinitum': 1,\n",
      "          'ages': 1,\n",
      "          'nscriptures': 1,\n",
      "          'speak': 1,\n",
      "          'rise': 1,\n",
      "          'wonderful': 1,\n",
      "          'demonstration': 1,\n",
      "          'victory': 1,\n",
      "          'commence': 1,\n",
      "          'second': 1,\n",
      "          'coming': 1,\n",
      "          'christ': 1,\n",
      "          'nan': 1,\n",
      "          'event': 1,\n",
      "          'yet': 1,\n",
      "          'occurred': 1,\n",
      "          'ntherefore': 1,\n",
      "          'state': 1,\n",
      "          'oblivion': 1,\n",
      "          'consciousness': 1,\n",
      "          'longawaited': 1,\n",
      "          'trump': 1,\n",
      "          'sound': 1,\n",
      "          'youll': 1,\n",
      "          'need': 1,\n",
      "          'six': 1,\n",
      "          'senses': 1,\n",
      "          'register': 1,\n",
      "          'joy': 1,\n",
      "          'rejoicing': 1,\n",
      "          'resound': 1,\n",
      "          'heavens': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mel': 8,\n",
      "          'film': 5,\n",
      "          'good': 4,\n",
      "          'would': 4,\n",
      "          'one': 4,\n",
      "          'gibson': 3,\n",
      "          'payback': 3,\n",
      "          'nin': 3,\n",
      "          'gibsons': 3,\n",
      "          'partner': 3,\n",
      "          'pay': 3,\n",
      "          'get': 3,\n",
      "          'audience': 3,\n",
      "          'better': 2,\n",
      "          'couple': 2,\n",
      "          'ngibson': 2,\n",
      "          'money': 2,\n",
      "          'mob': 2,\n",
      "          'nso': 2,\n",
      "          'dead': 2,\n",
      "          'goes': 2,\n",
      "          'nbut': 2,\n",
      "          'isnt': 2,\n",
      "          'real': 2,\n",
      "          'movie': 2,\n",
      "          'nto': 2,\n",
      "          'make': 2,\n",
      "          'back': 2,\n",
      "          'director': 2,\n",
      "          'nthe': 2,\n",
      "          'bit': 2,\n",
      "          'another': 2,\n",
      "          'original': 2,\n",
      "          'love': 2,\n",
      "          'end': 2,\n",
      "          'character': 2,\n",
      "          'redeeming': 2,\n",
      "          'qualities': 2,\n",
      "          'cold': 2,\n",
      "          'role': 2,\n",
      "          'quite': 2,\n",
      "          'big': 2,\n",
      "          'coburn': 2,\n",
      "          'grand': 1,\n",
      "          'scheme': 1,\n",
      "          'movies': 1,\n",
      "          'conspiracy': 1,\n",
      "          'theory': 1,\n",
      "          'braveheart': 1,\n",
      "          'lethal': 1,\n",
      "          'weapon': 1,\n",
      "          'words': 1,\n",
      "          'decent': 1,\n",
      "          'hours': 1,\n",
      "          'entertainment': 1,\n",
      "          '20': 1,\n",
      "          'years': 1,\n",
      "          'compile': 1,\n",
      "          'list': 1,\n",
      "          'greatest': 1,\n",
      "          'hits': 1,\n",
      "          'probably': 1,\n",
      "          'wont': 1,\n",
      "          'plays': 1,\n",
      "          'crook': 1,\n",
      "          'gets': 1,\n",
      "          'double': 1,\n",
      "          'crossed': 1,\n",
      "          'heist': 1,\n",
      "          'payroll': 1,\n",
      "          'nmels': 1,\n",
      "          'needed': 1,\n",
      "          'debt': 1,\n",
      "          'puts': 1,\n",
      "          'bullets': 1,\n",
      "          'leaving': 1,\n",
      "          'creditors': 1,\n",
      "          'short': 1,\n",
      "          'certainly': 1,\n",
      "          'happy': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'wants': 1,\n",
      "          'willing': 1,\n",
      "          'go': 1,\n",
      "          'lengths': 1,\n",
      "          'accomplish': 1,\n",
      "          'feat': 1,\n",
      "          'nhis': 1,\n",
      "          'ex': 1,\n",
      "          'already': 1,\n",
      "          'used': 1,\n",
      "          'mobsters': 1,\n",
      "          'npayback': 1,\n",
      "          'often': 1,\n",
      "          'violent': 1,\n",
      "          'credit': 1,\n",
      "          'scenes': 1,\n",
      "          'could': 1,\n",
      "          'graphic': 1,\n",
      "          'im': 1,\n",
      "          'sure': 1,\n",
      "          'second': 1,\n",
      "          'made': 1,\n",
      "          'choice': 1,\n",
      "          'let': 1,\n",
      "          'use': 1,\n",
      "          'imagination': 1,\n",
      "          'instead': 1,\n",
      "          'subjecting': 1,\n",
      "          'us': 1,\n",
      "          'usual': 1,\n",
      "          'gratuitous': 1,\n",
      "          'gore': 1,\n",
      "          'found': 1,\n",
      "          'many': 1,\n",
      "          'films': 1,\n",
      "          'appears': 1,\n",
      "          'disjointed': 1,\n",
      "          'places': 1,\n",
      "          'understandable': 1,\n",
      "          'considering': 1,\n",
      "          'producer': 1,\n",
      "          'star': 1,\n",
      "          'wasnt': 1,\n",
      "          'thrilled': 1,\n",
      "          'turned': 1,\n",
      "          'wanted': 1,\n",
      "          'parts': 1,\n",
      "          'reshot': 1,\n",
      "          'nwhen': 1,\n",
      "          'refused': 1,\n",
      "          'brought': 1,\n",
      "          'reshoot': 1,\n",
      "          'result': 1,\n",
      "          'final': 1,\n",
      "          'product': 1,\n",
      "          'apparently': 1,\n",
      "          'although': 1,\n",
      "          'personally': 1,\n",
      "          'see': 1,\n",
      "          'version': 1,\n",
      "          'comparisons': 1,\n",
      "          'sake': 1,\n",
      "          'choppy': 1,\n",
      "          'feel': 1,\n",
      "          'towards': 1,\n",
      "          'nits': 1,\n",
      "          'always': 1,\n",
      "          'tough': 1,\n",
      "          'main': 1,\n",
      "          'villain': 1,\n",
      "          'unless': 1,\n",
      "          'person': 1,\n",
      "          'case': 1,\n",
      "          'hey': 1,\n",
      "          'even': 1,\n",
      "          'killing': 1,\n",
      "          'people': 1,\n",
      "          'blood': 1,\n",
      "          'still': 1,\n",
      "          'rooting': 1,\n",
      "          'nmy': 1,\n",
      "          'guess': 1,\n",
      "          'put': 1,\n",
      "          'johnny': 1,\n",
      "          'bananas': 1,\n",
      "          'actor': 1,\n",
      "          'responsive': 1,\n",
      "          'whether': 1,\n",
      "          'playing': 1,\n",
      "          'suicidal': 1,\n",
      "          'cop': 1,\n",
      "          'stone': 1,\n",
      "          'killer': 1,\n",
      "          'job': 1,\n",
      "          'nhe': 1,\n",
      "          'almost': 1,\n",
      "          'guarantees': 1,\n",
      "          'matter': 1,\n",
      "          'else': 1,\n",
      "          'happens': 1,\n",
      "          'rest': 1,\n",
      "          'least': 1,\n",
      "          'going': 1,\n",
      "          'performance': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'surrounded': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'maria': 1,\n",
      "          'bello': 1,\n",
      "          'interest': 1,\n",
      "          'william': 1,\n",
      "          'devane': 1,\n",
      "          'kris': 1,\n",
      "          'kristofferson': 1,\n",
      "          'mod': 1,\n",
      "          'bosses': 1,\n",
      "          'man': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'unfortunately': 1,\n",
      "          'doesnt': 1,\n",
      "          'part': 1,\n",
      "          'james': 1,\n",
      "          'yet': 1,\n",
      "          'mobster': 1,\n",
      "          'nif': 1,\n",
      "          'disappointment': 1,\n",
      "          'didnt': 1,\n",
      "          'bigger': 1,\n",
      "          'fairly': 1,\n",
      "          'solid': 1,\n",
      "          'action': 1,\n",
      "          'thriller': 1,\n",
      "          'league': 1,\n",
      "          'work': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'leila': 27,\n",
      "          'reza': 16,\n",
      "          'first': 6,\n",
      "          'film': 6,\n",
      "          'another': 5,\n",
      "          'characters': 4,\n",
      "          'hatami': 4,\n",
      "          'second': 4,\n",
      "          'woman': 4,\n",
      "          'marriage': 4,\n",
      "          'easily': 3,\n",
      "          'birthday': 3,\n",
      "          'character': 3,\n",
      "          'husband': 3,\n",
      "          'children': 3,\n",
      "          'able': 3,\n",
      "          'go': 3,\n",
      "          'well': 3,\n",
      "          'perfect': 3,\n",
      "          'much': 3,\n",
      "          'could': 3,\n",
      "          'thoughtprovoking': 2,\n",
      "          'tradition': 2,\n",
      "          'director': 2,\n",
      "          'mehrjui': 2,\n",
      "          'motion': 2,\n",
      "          'picture': 2,\n",
      "          'nalthough': 2,\n",
      "          'country': 2,\n",
      "          'iran': 2,\n",
      "          'ali': 2,\n",
      "          'mosaffa': 2,\n",
      "          'parents': 2,\n",
      "          'isnt': 2,\n",
      "          'quite': 2,\n",
      "          'little': 2,\n",
      "          'child': 2,\n",
      "          'married': 2,\n",
      "          'doesnt': 2,\n",
      "          'give': 2,\n",
      "          'motherinlaw': 2,\n",
      "          'jamileh': 2,\n",
      "          'sheikhi': 2,\n",
      "          'always': 2,\n",
      "          'polygamy': 2,\n",
      "          'wife': 2,\n",
      "          'nleila': 2,\n",
      "          'even': 2,\n",
      "          'though': 2,\n",
      "          'found': 2,\n",
      "          'within': 2,\n",
      "          'told': 2,\n",
      "          'taken': 2,\n",
      "          'really': 2,\n",
      "          'american': 2,\n",
      "          'audiences': 2,\n",
      "          'upon': 2,\n",
      "          'come': 2,\n",
      "          'idea': 2,\n",
      "          'aspects': 2,\n",
      "          'relationship': 2,\n",
      "          'love': 2,\n",
      "          'sequence': 2,\n",
      "          'one': 2,\n",
      "          'moments': 2,\n",
      "          'half': 2,\n",
      "          'scene': 2,\n",
      "          'date': 2,\n",
      "          'whole': 2,\n",
      "          'going': 2,\n",
      "          'ndespite': 2,\n",
      "          'believe': 2,\n",
      "          'everything': 2,\n",
      "          'may': 2,\n",
      "          'leilas': 2,\n",
      "          'consider': 2,\n",
      "          'question': 1,\n",
      "          'morals': 1,\n",
      "          'subject': 1,\n",
      "          'directly': 1,\n",
      "          'core': 1,\n",
      "          'powerfully': 1,\n",
      "          'articulated': 1,\n",
      "          'subtle': 1,\n",
      "          'drama': 1,\n",
      "          'famous': 1,\n",
      "          'iranian': 1,\n",
      "          'dariush': 1,\n",
      "          'prosperous': 1,\n",
      "          'thirtyyear': 1,\n",
      "          'career': 1,\n",
      "          'gain': 1,\n",
      "          'u': 1,\n",
      "          'distribution': 1,\n",
      "          'thanks': 1,\n",
      "          'run': 1,\n",
      "          'features': 1,\n",
      "          'unfamiliar': 1,\n",
      "          'mehrjuis': 1,\n",
      "          'previous': 1,\n",
      "          'directing': 1,\n",
      "          'efforts': 1,\n",
      "          'perhaps': 1,\n",
      "          'reason': 1,\n",
      "          'predicament': 1,\n",
      "          'hand': 1,\n",
      "          'doubt': 1,\n",
      "          'exclusive': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'solely': 1,\n",
      "          'truthful': 1,\n",
      "          'emotions': 1,\n",
      "          'understood': 1,\n",
      "          'viewers': 1,\n",
      "          'nset': 1,\n",
      "          'modernday': 1,\n",
      "          'begins': 1,\n",
      "          'title': 1,\n",
      "          'brief': 1,\n",
      "          'prologue': 1,\n",
      "          'shown': 1,\n",
      "          'encounter': 1,\n",
      "          'future': 1,\n",
      "          'nas': 1,\n",
      "          'set': 1,\n",
      "          'visit': 1,\n",
      "          'celebration': 1,\n",
      "          'planned': 1,\n",
      "          'things': 1,\n",
      "          'seem': 1,\n",
      "          'rosy': 1,\n",
      "          'couple': 1,\n",
      "          'outside': 1,\n",
      "          'life': 1,\n",
      "          'sweet': 1,\n",
      "          'nearlier': 1,\n",
      "          'day': 1,\n",
      "          'gone': 1,\n",
      "          'see': 1,\n",
      "          'physician': 1,\n",
      "          'ultimately': 1,\n",
      "          'discovered': 1,\n",
      "          'holds': 1,\n",
      "          'chance': 1,\n",
      "          'ever': 1,\n",
      "          'conceiving': 1,\n",
      "          'nwhen': 1,\n",
      "          'conditions': 1,\n",
      "          'ruled': 1,\n",
      "          'passes': 1,\n",
      "          'possibility': 1,\n",
      "          'adoption': 1,\n",
      "          'firmly': 1,\n",
      "          'lovingly': 1,\n",
      "          'tells': 1,\n",
      "          'care': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'ashamed': 1,\n",
      "          'never': 1,\n",
      "          'baby': 1,\n",
      "          'societal': 1,\n",
      "          'norm': 1,\n",
      "          'selfesteem': 1,\n",
      "          'helped': 1,\n",
      "          'domineering': 1,\n",
      "          'whose': 1,\n",
      "          'hopes': 1,\n",
      "          'carry': 1,\n",
      "          'sacred': 1,\n",
      "          'family': 1,\n",
      "          'name': 1,\n",
      "          'vanishes': 1,\n",
      "          'hearing': 1,\n",
      "          'news': 1,\n",
      "          'son': 1,\n",
      "          'nbluntly': 1,\n",
      "          'explaining': 1,\n",
      "          'wished': 1,\n",
      "          'accepted': 1,\n",
      "          'suggests': 1,\n",
      "          'take': 1,\n",
      "          'bear': 1,\n",
      "          'hesitantly': 1,\n",
      "          'agrees': 1,\n",
      "          'shallowly': 1,\n",
      "          'laugh': 1,\n",
      "          'afterwards': 1,\n",
      "          'hopeful': 1,\n",
      "          'womens': 1,\n",
      "          'inadequacies': 1,\n",
      "          'finally': 1,\n",
      "          'meet': 1,\n",
      "          'claims': 1,\n",
      "          'like': 1,\n",
      "          'refuses': 1,\n",
      "          'full': 1,\n",
      "          'blessing': 1,\n",
      "          'nthere': 1,\n",
      "          'easy': 1,\n",
      "          'answers': 1,\n",
      "          'thoughtfully': 1,\n",
      "          'examines': 1,\n",
      "          'central': 1,\n",
      "          'unfortunate': 1,\n",
      "          'plight': 1,\n",
      "          'inner': 1,\n",
      "          'workings': 1,\n",
      "          'matteroffact': 1,\n",
      "          'narration': 1,\n",
      "          'nalmost': 1,\n",
      "          'completely': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'shame': 1,\n",
      "          'option': 1,\n",
      "          'agree': 1,\n",
      "          'forceful': 1,\n",
      "          'motherinlaws': 1,\n",
      "          'requests': 1,\n",
      "          'unsure': 1,\n",
      "          'react': 1,\n",
      "          'end': 1,\n",
      "          'marrying': 1,\n",
      "          'nmaybe': 1,\n",
      "          'unquestionably': 1,\n",
      "          'shocking': 1,\n",
      "          'since': 1,\n",
      "          'concept': 1,\n",
      "          'looked': 1,\n",
      "          'less': 1,\n",
      "          'everyday': 1,\n",
      "          'occurrence': 1,\n",
      "          'however': 1,\n",
      "          'unable': 1,\n",
      "          'terms': 1,\n",
      "          'feels': 1,\n",
      "          'duty': 1,\n",
      "          'make': 1,\n",
      "          'happy': 1,\n",
      "          'matter': 1,\n",
      "          'circumstances': 1,\n",
      "          'none': 1,\n",
      "          'strongest': 1,\n",
      "          'portrayal': 1,\n",
      "          'three': 1,\n",
      "          'months': 1,\n",
      "          'meeting': 1,\n",
      "          'obviously': 1,\n",
      "          'deeply': 1,\n",
      "          'nit': 1,\n",
      "          'key': 1,\n",
      "          'ingredient': 1,\n",
      "          'making': 1,\n",
      "          'follows': 1,\n",
      "          'opening': 1,\n",
      "          'scenes': 1,\n",
      "          'powerful': 1,\n",
      "          'succeeded': 1,\n",
      "          'possible': 1,\n",
      "          'seemingly': 1,\n",
      "          'unimportant': 1,\n",
      "          'glance': 1,\n",
      "          'early': 1,\n",
      "          'eating': 1,\n",
      "          'dinner': 1,\n",
      "          'laughing': 1,\n",
      "          'nearly': 1,\n",
      "          'uncontrollably': 1,\n",
      "          'actually': 1,\n",
      "          'vital': 1,\n",
      "          'unmistakably': 1,\n",
      "          'sets': 1,\n",
      "          'boundary': 1,\n",
      "          'unrequisite': 1,\n",
      "          'nditto': 1,\n",
      "          'gives': 1,\n",
      "          'large': 1,\n",
      "          'stuffed': 1,\n",
      "          'animal': 1,\n",
      "          'reveals': 1,\n",
      "          'beautiful': 1,\n",
      "          'necklace': 1,\n",
      "          'also': 1,\n",
      "          'gotten': 1,\n",
      "          'nthese': 1,\n",
      "          'small': 1,\n",
      "          'contrast': 1,\n",
      "          'solemn': 1,\n",
      "          'outraging': 1,\n",
      "          'sequences': 1,\n",
      "          'latter': 1,\n",
      "          'drops': 1,\n",
      "          'side': 1,\n",
      "          'busy': 1,\n",
      "          'road': 1,\n",
      "          'zooms': 1,\n",
      "          'nleft': 1,\n",
      "          'ponder': 1,\n",
      "          'quickly': 1,\n",
      "          'diminishing': 1,\n",
      "          'foolishly': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'prays': 1,\n",
      "          'time': 1,\n",
      "          'keep': 1,\n",
      "          'longer': 1,\n",
      "          'nrefusing': 1,\n",
      "          'stay': 1,\n",
      "          'house': 1,\n",
      "          'inevitably': 1,\n",
      "          'leads': 1,\n",
      "          'wedding': 1,\n",
      "          'night': 1,\n",
      "          'extraordinary': 1,\n",
      "          'sorrow': 1,\n",
      "          'potency': 1,\n",
      "          'finds': 1,\n",
      "          'emotionally': 1,\n",
      "          'torn': 1,\n",
      "          'apart': 1,\n",
      "          'closed': 1,\n",
      "          'upstairs': 1,\n",
      "          'bedroom': 1,\n",
      "          'proceedings': 1,\n",
      "          'initial': 1,\n",
      "          'agreement': 1,\n",
      "          'thing': 1,\n",
      "          'realizes': 1,\n",
      "          'betrayed': 1,\n",
      "          'believed': 1,\n",
      "          'cared': 1,\n",
      "          'nsure': 1,\n",
      "          'mothers': 1,\n",
      "          'initially': 1,\n",
      "          'wanting': 1,\n",
      "          'still': 1,\n",
      "          'backed': 1,\n",
      "          'couldnt': 1,\n",
      "          'nin': 1,\n",
      "          'pivotal': 1,\n",
      "          'role': 1,\n",
      "          'appears': 1,\n",
      "          'every': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'remarkable': 1,\n",
      "          'injecting': 1,\n",
      "          'equal': 1,\n",
      "          'measure': 1,\n",
      "          'startling': 1,\n",
      "          'strength': 1,\n",
      "          'unavoidable': 1,\n",
      "          'vulnerability': 1,\n",
      "          'utter': 1,\n",
      "          'despair': 1,\n",
      "          'nunlike': 1,\n",
      "          'films': 1,\n",
      "          'spelled': 1,\n",
      "          'says': 1,\n",
      "          'elusive': 1,\n",
      "          'expression': 1,\n",
      "          'face': 1,\n",
      "          'possibly': 1,\n",
      "          'conveyed': 1,\n",
      "          'words': 1,\n",
      "          'nevery': 1,\n",
      "          'bit': 1,\n",
      "          'match': 1,\n",
      "          'man': 1,\n",
      "          'hold': 1,\n",
      "          'unbreakable': 1,\n",
      "          'bond': 1,\n",
      "          'naive': 1,\n",
      "          'realize': 1,\n",
      "          'marries': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'nfor': 1,\n",
      "          'strong': 1,\n",
      "          'non': 1,\n",
      "          'technical': 1,\n",
      "          'level': 1,\n",
      "          'many': 1,\n",
      "          'blatant': 1,\n",
      "          'punctiation': 1,\n",
      "          'spelling': 1,\n",
      "          'mistakes': 1,\n",
      "          'subtitles': 1,\n",
      "          'need': 1,\n",
      "          'fixed': 1,\n",
      "          'nand': 1,\n",
      "          'concerning': 1,\n",
      "          'plot': 1,\n",
      "          'developments': 1,\n",
      "          'final': 1,\n",
      "          'five': 1,\n",
      "          'minutes': 1,\n",
      "          'ring': 1,\n",
      "          'false': 1,\n",
      "          'compared': 1,\n",
      "          'nmehrjuis': 1,\n",
      "          'decision': 1,\n",
      "          'use': 1,\n",
      "          'extremely': 1,\n",
      "          'stylized': 1,\n",
      "          'approach': 1,\n",
      "          'ending': 1,\n",
      "          'wrong': 1,\n",
      "          'choice': 1,\n",
      "          'particularly': 1,\n",
      "          'almost': 1,\n",
      "          'comedic': 1,\n",
      "          'way': 1,\n",
      "          'wrapping': 1,\n",
      "          'spiteful': 1,\n",
      "          'played': 1,\n",
      "          'memorably': 1,\n",
      "          'minor': 1,\n",
      "          'missteps': 1,\n",
      "          'important': 1,\n",
      "          'definately': 1,\n",
      "          'sought': 1,\n",
      "          'limited': 1,\n",
      "          '16': 1,\n",
      "          'release': 1,\n",
      "          'new': 1,\n",
      "          'yorks': 1,\n",
      "          'cinema': 1,\n",
      "          'village': 1,\n",
      "          '21': 1,\n",
      "          'la': 1,\n",
      "          'nthe': 1,\n",
      "          'questions': 1,\n",
      "          'deals': 1,\n",
      "          'balanced': 1,\n",
      "          'evenly': 1,\n",
      "          'uneasy': 1,\n",
      "          'morales': 1,\n",
      "          'climax': 1,\n",
      "          'arrives': 1,\n",
      "          'selfworth': 1,\n",
      "          'startlingly': 1,\n",
      "          'stripped': 1,\n",
      "          'away': 1,\n",
      "          'reveal': 1,\n",
      "          'victim': 1,\n",
      "          'led': 1,\n",
      "          'complete': 1,\n",
      "          'devastation': 1,\n",
      "          'return': 1,\n",
      "          'nits': 1,\n",
      "          'difficult': 1,\n",
      "          'culminating': 1,\n",
      "          'interior': 1,\n",
      "          'demise': 1,\n",
      "          'simply': 1,\n",
      "          'avoided': 1,\n",
      "          'selfish': 1,\n",
      "          'lives': 1,\n",
      "          'major': 1,\n",
      "          'pawn': 1,\n",
      "          'unforgivable': 1,\n",
      "          'scheme': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 4,\n",
      "          'like': 3,\n",
      "          'old': 3,\n",
      "          'hutton': 2,\n",
      "          'hes': 2,\n",
      "          'high': 2,\n",
      "          'school': 2,\n",
      "          'movie': 2,\n",
      "          'film': 2,\n",
      "          'uma': 2,\n",
      "          'thurman': 2,\n",
      "          'odonnell': 2,\n",
      "          'people': 2,\n",
      "          'buddies': 2,\n",
      "          'relationship': 2,\n",
      "          'beautiful': 2,\n",
      "          'one': 2,\n",
      "          'girlfriend': 2,\n",
      "          'little': 2,\n",
      "          'time': 2,\n",
      "          'barely': 1,\n",
      "          'scrapping': 1,\n",
      "          'playing': 1,\n",
      "          'nyc': 1,\n",
      "          'piano': 1,\n",
      "          'bar': 1,\n",
      "          'timothy': 1,\n",
      "          'returns': 1,\n",
      "          'massachusetts': 1,\n",
      "          'hometown': 1,\n",
      "          'couple': 1,\n",
      "          'weeks': 1,\n",
      "          'non': 1,\n",
      "          'surface': 1,\n",
      "          'coming': 1,\n",
      "          'home': 1,\n",
      "          'reunion': 1,\n",
      "          'since': 1,\n",
      "          'know': 1,\n",
      "          'really': 1,\n",
      "          'looking': 1,\n",
      "          'major': 1,\n",
      "          'life': 1,\n",
      "          'decisions': 1,\n",
      "          'na': 1,\n",
      "          'fairly': 1,\n",
      "          'small': 1,\n",
      "          'sports': 1,\n",
      "          'impressive': 1,\n",
      "          'ensemble': 1,\n",
      "          'cast': 1,\n",
      "          'including': 1,\n",
      "          'rosie': 1,\n",
      "          'bunch': 1,\n",
      "          'actors': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'cant': 1,\n",
      "          'quite': 1,\n",
      "          'place': 1,\n",
      "          'ncommendable': 1,\n",
      "          'jobs': 1,\n",
      "          'around': 1,\n",
      "          'seem': 1,\n",
      "          'real': 1,\n",
      "          'nhutton': 1,\n",
      "          'arrives': 1,\n",
      "          'past': 1,\n",
      "          'greeted': 1,\n",
      "          'spiritdead': 1,\n",
      "          'father': 1,\n",
      "          'terminally': 1,\n",
      "          'goony': 1,\n",
      "          'brother': 1,\n",
      "          'chums': 1,\n",
      "          'nall': 1,\n",
      "          'engaged': 1,\n",
      "          'snow': 1,\n",
      "          'removal': 1,\n",
      "          'business': 1,\n",
      "          'midst': 1,\n",
      "          'crisis': 1,\n",
      "          'perfect': 1,\n",
      "          'stuff': 1,\n",
      "          'comedy': 1,\n",
      "          'twenties': 1,\n",
      "          'angst': 1,\n",
      "          'nhe': 1,\n",
      "          'meets': 1,\n",
      "          'falls': 1,\n",
      "          'new': 1,\n",
      "          'next': 1,\n",
      "          'door': 1,\n",
      "          'neighbor': 1,\n",
      "          'intelligent': 1,\n",
      "          'lively': 1,\n",
      "          'girl': 1,\n",
      "          'obviously': 1,\n",
      "          'taken': 1,\n",
      "          'problem': 1,\n",
      "          '13': 1,\n",
      "          'nunconsummated': 1,\n",
      "          '_that_': 1,\n",
      "          'type': 1,\n",
      "          'builds': 1,\n",
      "          'neither': 1,\n",
      "          'knows': 1,\n",
      "          'nstarcrossed': 1,\n",
      "          'lovers': 1,\n",
      "          'go': 1,\n",
      "          'nso': 1,\n",
      "          'gaga': 1,\n",
      "          'barelyteen': 1,\n",
      "          'twotiming': 1,\n",
      "          'married': 1,\n",
      "          'flame': 1,\n",
      "          'anothers': 1,\n",
      "          'sleeping': 1,\n",
      "          'meat': 1,\n",
      "          'cutter': 1,\n",
      "          'shes': 1,\n",
      "          'vegetarian': 1,\n",
      "          'nthings': 1,\n",
      "          'mess': 1,\n",
      "          'nenter': 1,\n",
      "          'stranger': 1,\n",
      "          'town': 1,\n",
      "          'days': 1,\n",
      "          'delight': 1,\n",
      "          'minor': 1,\n",
      "          'downfalls': 1,\n",
      "          'nher': 1,\n",
      "          'character': 1,\n",
      "          'fun': 1,\n",
      "          'watch': 1,\n",
      "          'neven': 1,\n",
      "          'entertaining': 1,\n",
      "          'observing': 1,\n",
      "          'guys': 1,\n",
      "          'falling': 1,\n",
      "          'trying': 1,\n",
      "          'impress': 1,\n",
      "          'nlike': 1,\n",
      "          'lone': 1,\n",
      "          'ranger': 1,\n",
      "          'leaves': 1,\n",
      "          'solves': 1,\n",
      "          'problems': 1,\n",
      "          'sets': 1,\n",
      "          'everyone': 1,\n",
      "          'onward': 1,\n",
      "          'lives': 1,\n",
      "          'ending': 1,\n",
      "          'bit': 1,\n",
      "          'pat': 1,\n",
      "          'neverything': 1,\n",
      "          'tied': 1,\n",
      "          'neat': 1,\n",
      "          'bow': 1,\n",
      "          'nrosie': 1,\n",
      "          'standout': 1,\n",
      "          'limited': 1,\n",
      "          'screen': 1,\n",
      "          'brash': 1,\n",
      "          'personality': 1,\n",
      "          'tell': 1,\n",
      "          'pronouncements': 1,\n",
      "          'nstructured': 1,\n",
      "          'somewhat': 1,\n",
      "          'diner': 1,\n",
      "          'years': 1,\n",
      "          'later': 1,\n",
      "          'feelgood': 1,\n",
      "          'story': 1,\n",
      "          'good': 1,\n",
      "          'ends': 1,\n",
      "          'nice': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 9,\n",
      "          'nthe': 7,\n",
      "          'one': 6,\n",
      "          'little': 5,\n",
      "          'reeves': 5,\n",
      "          'neo': 5,\n",
      "          'also': 5,\n",
      "          'action': 5,\n",
      "          'nwhat': 4,\n",
      "          'artificial': 4,\n",
      "          'matrix': 4,\n",
      "          'computer': 4,\n",
      "          'cameras': 4,\n",
      "          'motion': 4,\n",
      "          'interesting': 3,\n",
      "          'reality': 3,\n",
      "          'scifi': 3,\n",
      "          'new': 3,\n",
      "          'fishburne': 3,\n",
      "          'nthis': 3,\n",
      "          'movie': 3,\n",
      "          'would': 3,\n",
      "          'rather': 3,\n",
      "          'nature': 3,\n",
      "          'like': 3,\n",
      "          'really': 3,\n",
      "          'lot': 3,\n",
      "          'character': 3,\n",
      "          'special': 3,\n",
      "          'still': 3,\n",
      "          'nour': 2,\n",
      "          'real': 2,\n",
      "          'us': 2,\n",
      "          'nin': 2,\n",
      "          'truth': 2,\n",
      "          'entire': 2,\n",
      "          'minds': 2,\n",
      "          'computergenerated': 2,\n",
      "          'intelligence': 2,\n",
      "          'kept': 2,\n",
      "          'machines': 2,\n",
      "          'isnt': 2,\n",
      "          'sham': 2,\n",
      "          'world': 2,\n",
      "          'ability': 2,\n",
      "          'plays': 2,\n",
      "          'morpheus': 2,\n",
      "          'nfrom': 2,\n",
      "          'even': 2,\n",
      "          'life': 2,\n",
      "          'nmore': 2,\n",
      "          'keanu': 2,\n",
      "          'roles': 2,\n",
      "          'good': 2,\n",
      "          'much': 2,\n",
      "          'nearly': 2,\n",
      "          'characters': 2,\n",
      "          'weaving': 2,\n",
      "          'appropriate': 2,\n",
      "          'becomes': 2,\n",
      "          'moss': 2,\n",
      "          'number': 2,\n",
      "          'somewhat': 2,\n",
      "          'delivers': 2,\n",
      "          'picture': 2,\n",
      "          'effects': 2,\n",
      "          'employed': 2,\n",
      "          'two': 2,\n",
      "          'theres': 2,\n",
      "          'nsome': 2,\n",
      "          'premise': 1,\n",
      "          'perceive': 1,\n",
      "          'existences': 1,\n",
      "          'lived': 1,\n",
      "          'fed': 1,\n",
      "          'information': 1,\n",
      "          'electronic': 1,\n",
      "          'inputs': 1,\n",
      "          'directly': 1,\n",
      "          'brains': 1,\n",
      "          'see': 1,\n",
      "          'everything': 1,\n",
      "          'around': 1,\n",
      "          'nothing': 1,\n",
      "          'construct': 1,\n",
      "          'interlinked': 1,\n",
      "          'others': 1,\n",
      "          'vastly': 1,\n",
      "          'powerful': 1,\n",
      "          'bodies': 1,\n",
      "          'severely': 1,\n",
      "          'atrophied': 1,\n",
      "          'alive': 1,\n",
      "          'sole': 1,\n",
      "          'purpose': 1,\n",
      "          'generating': 1,\n",
      "          'heat': 1,\n",
      "          'electrical': 1,\n",
      "          'energy': 1,\n",
      "          'dominating': 1,\n",
      "          'order': 1,\n",
      "          'control': 1,\n",
      "          'planet': 1,\n",
      "          'realm': 1,\n",
      "          'waiting': 1,\n",
      "          'something': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'idea': 1,\n",
      "          'war': 1,\n",
      "          'man': 1,\n",
      "          'sentient': 1,\n",
      "          'network': 1,\n",
      "          'plug': 1,\n",
      "          'ones': 1,\n",
      "          'brain': 1,\n",
      "          'gleaned': 1,\n",
      "          'sources': 1,\n",
      "          'terminator': 1,\n",
      "          'dark': 1,\n",
      "          'city': 1,\n",
      "          'star': 1,\n",
      "          'trek': 1,\n",
      "          'episodes': 1,\n",
      "          'classic': 1,\n",
      "          'next': 1,\n",
      "          'generation': 1,\n",
      "          'weave': 1,\n",
      "          'various': 1,\n",
      "          'elements': 1,\n",
      "          'together': 1,\n",
      "          'succeed': 1,\n",
      "          'producing': 1,\n",
      "          'entertaining': 1,\n",
      "          'well': 1,\n",
      "          'thoughtprovoking': 1,\n",
      "          'nkeanu': 1,\n",
      "          'whiz': 1,\n",
      "          'nicknamed': 1,\n",
      "          'plucked': 1,\n",
      "          'known': 1,\n",
      "          'group': 1,\n",
      "          'renegade': 1,\n",
      "          'humans': 1,\n",
      "          'clandestinely': 1,\n",
      "          'fighting': 1,\n",
      "          'expose': 1,\n",
      "          'fallacy': 1,\n",
      "          'existence': 1,\n",
      "          'free': 1,\n",
      "          'humankind': 1,\n",
      "          'oppression': 1,\n",
      "          'groups': 1,\n",
      "          'leader': 1,\n",
      "          'laurence': 1,\n",
      "          'chosen': 1,\n",
      "          'believes': 1,\n",
      "          'destined': 1,\n",
      "          'lead': 1,\n",
      "          'attack': 1,\n",
      "          'beginning': 1,\n",
      "          'toes': 1,\n",
      "          'trying': 1,\n",
      "          'figure': 1,\n",
      "          'things': 1,\n",
      "          'lesser': 1,\n",
      "          'annoying': 1,\n",
      "          'presents': 1,\n",
      "          'intelligent': 1,\n",
      "          'manner': 1,\n",
      "          'makes': 1,\n",
      "          'puzzle': 1,\n",
      "          'fun': 1,\n",
      "          'turns': 1,\n",
      "          'perception': 1,\n",
      "          'side': 1,\n",
      "          'presented': 1,\n",
      "          'question': 1,\n",
      "          'whether': 1,\n",
      "          'know': 1,\n",
      "          'harsh': 1,\n",
      "          'live': 1,\n",
      "          'relative': 1,\n",
      "          'bliss': 1,\n",
      "          'oblivious': 1,\n",
      "          'true': 1,\n",
      "          'surroundings': 1,\n",
      "          'nas': 1,\n",
      "          'viewers': 1,\n",
      "          'intriguing': 1,\n",
      "          'enough': 1,\n",
      "          'imagine': 1,\n",
      "          'nand': 1,\n",
      "          'better': 1,\n",
      "          'play': 1,\n",
      "          'bewildered': 1,\n",
      "          'person': 1,\n",
      "          'nreeves': 1,\n",
      "          'ive': 1,\n",
      "          'never': 1,\n",
      "          'cared': 1,\n",
      "          'actor': 1,\n",
      "          'competent': 1,\n",
      "          'require': 1,\n",
      "          'straightforwardness': 1,\n",
      "          'subtlety': 1,\n",
      "          'nhe': 1,\n",
      "          'speed': 1,\n",
      "          'example': 1,\n",
      "          'laughably': 1,\n",
      "          'poor': 1,\n",
      "          'walk': 1,\n",
      "          'clouds': 1,\n",
      "          'nneo': 1,\n",
      "          'actually': 1,\n",
      "          'slips': 1,\n",
      "          'nicely': 1,\n",
      "          'expectation': 1,\n",
      "          'happily': 1,\n",
      "          'naught': 1,\n",
      "          'couple': 1,\n",
      "          'places': 1,\n",
      "          'script': 1,\n",
      "          'capitalizes': 1,\n",
      "          'upon': 1,\n",
      "          'wooden': 1,\n",
      "          'heavy': 1,\n",
      "          'credit': 1,\n",
      "          'writersdirectors': 1,\n",
      "          'andy': 1,\n",
      "          'larry': 1,\n",
      "          'wachowski': 1,\n",
      "          'ni': 1,\n",
      "          'mean': 1,\n",
      "          'since': 1,\n",
      "          'bill': 1,\n",
      "          'teds': 1,\n",
      "          'excellent': 1,\n",
      "          'adventure': 1,\n",
      "          'could': 1,\n",
      "          'say': 1,\n",
      "          'utilized': 1,\n",
      "          'whos': 1,\n",
      "          'runs': 1,\n",
      "          'gamut': 1,\n",
      "          'emotions': 1,\n",
      "          'convincingly': 1,\n",
      "          'nvery': 1,\n",
      "          'surprising': 1,\n",
      "          'nfishburne': 1,\n",
      "          'maintains': 1,\n",
      "          'certain': 1,\n",
      "          'demeanor': 1,\n",
      "          'throughout': 1,\n",
      "          'always': 1,\n",
      "          'knows': 1,\n",
      "          'expect': 1,\n",
      "          'helps': 1,\n",
      "          'aura': 1,\n",
      "          'proficiency': 1,\n",
      "          'extensive': 1,\n",
      "          'knowledge': 1,\n",
      "          'nhugo': 1,\n",
      "          'agent': 1,\n",
      "          'smith': 1,\n",
      "          'intelligences': 1,\n",
      "          'antiintruder': 1,\n",
      "          'programs': 1,\n",
      "          'playing': 1,\n",
      "          'deadpan': 1,\n",
      "          'nononsense': 1,\n",
      "          'kick': 1,\n",
      "          'ass': 1,\n",
      "          'role': 1,\n",
      "          'requires': 1,\n",
      "          'show': 1,\n",
      "          'emotion': 1,\n",
      "          'time': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'speaks': 1,\n",
      "          'sentences': 1,\n",
      "          'row': 1,\n",
      "          'speech': 1,\n",
      "          'pattern': 1,\n",
      "          'laughable': 1,\n",
      "          'impressive': 1,\n",
      "          'ncarrieanne': 1,\n",
      "          'trinity': 1,\n",
      "          'morpheuss': 1,\n",
      "          'assistant': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'nalthough': 1,\n",
      "          'inconsistent': 1,\n",
      "          'nevertheless': 1,\n",
      "          'par': 1,\n",
      "          'performance': 1,\n",
      "          'nthere': 1,\n",
      "          'expenses': 1,\n",
      "          'spared': 1,\n",
      "          'comes': 1,\n",
      "          'nmany': 1,\n",
      "          'methods': 1,\n",
      "          'imagery': 1,\n",
      "          'modeling': 1,\n",
      "          'bluescreen': 1,\n",
      "          'graphics': 1,\n",
      "          'nof': 1,\n",
      "          'note': 1,\n",
      "          'use': 1,\n",
      "          'freeze': 1,\n",
      "          'turn': 1,\n",
      "          'effect': 1,\n",
      "          'scene': 1,\n",
      "          'frozen': 1,\n",
      "          'turned': 1,\n",
      "          'continued': 1,\n",
      "          'angle': 1,\n",
      "          'accomplished': 1,\n",
      "          'using': 1,\n",
      "          'large': 1,\n",
      "          'semicircle': 1,\n",
      "          'placed': 1,\n",
      "          'ends': 1,\n",
      "          'moment': 1,\n",
      "          'fire': 1,\n",
      "          'nplace': 1,\n",
      "          'image': 1,\n",
      "          'sequence': 1,\n",
      "          'get': 1,\n",
      "          'seamless': 1,\n",
      "          'transition': 1,\n",
      "          'first': 1,\n",
      "          'camera': 1,\n",
      "          'second': 1,\n",
      "          'npretty': 1,\n",
      "          'slick': 1,\n",
      "          'drips': 1,\n",
      "          'style': 1,\n",
      "          'clothing': 1,\n",
      "          'music': 1,\n",
      "          'watching': 1,\n",
      "          'exaggerated': 1,\n",
      "          'version': 1,\n",
      "          'used': 1,\n",
      "          'nmuch': 1,\n",
      "          'seems': 1,\n",
      "          'combination': 1,\n",
      "          'genres': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'gunplay': 1,\n",
      "          'nwhen': 1,\n",
      "          'letting': 1,\n",
      "          'go': 1,\n",
      "          'automatic': 1,\n",
      "          'weapon': 1,\n",
      "          'made': 1,\n",
      "          'empty': 1,\n",
      "          'cartridges': 1,\n",
      "          'falling': 1,\n",
      "          'floor': 1,\n",
      "          'slow': 1,\n",
      "          'ntheres': 1,\n",
      "          'element': 1,\n",
      "          'japanese': 1,\n",
      "          'cartoon': 1,\n",
      "          'called': 1,\n",
      "          'anime': 1,\n",
      "          'aficionados': 1,\n",
      "          'especially': 1,\n",
      "          'way': 1,\n",
      "          'sequences': 1,\n",
      "          'filmed': 1,\n",
      "          'sweeping': 1,\n",
      "          'pans': 1,\n",
      "          'emphasized': 1,\n",
      "          'actions': 1,\n",
      "          'ncombined': 1,\n",
      "          'liveaction': 1,\n",
      "          'ever': 1,\n",
      "          'seen': 1,\n",
      "          'without': 1,\n",
      "          'faults': 1,\n",
      "          'scenes': 1,\n",
      "          'ideas': 1,\n",
      "          'borrowed': 1,\n",
      "          'liberally': 1,\n",
      "          'films': 1,\n",
      "          'component': 1,\n",
      "          'ending': 1,\n",
      "          'decidedly': 1,\n",
      "          'disappointing': 1,\n",
      "          'lines': 1,\n",
      "          'pretty': 1,\n",
      "          'bad': 1,\n",
      "          'instance': 1,\n",
      "          'supporting': 1,\n",
      "          'incorrectly': 1,\n",
      "          'famous': 1,\n",
      "          'saying': 1,\n",
      "          'wasnt': 1,\n",
      "          'meant': 1,\n",
      "          'joke': 1,\n",
      "          'nhowever': 1,\n",
      "          'shortcomings': 1,\n",
      "          'detract': 1,\n",
      "          'overall': 1,\n",
      "          'solid': 1,\n",
      "          'merely': 1,\n",
      "          'entertain': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 4,\n",
      "          'alien': 4,\n",
      "          'first': 3,\n",
      "          'one': 2,\n",
      "          'kyle': 2,\n",
      "          'films': 2,\n",
      "          '810': 2,\n",
      "          'picture': 2,\n",
      "          'likes': 2,\n",
      "          'thing': 2,\n",
      "          'late': 2,\n",
      "          'action': 2,\n",
      "          'back': 2,\n",
      "          'film': 2,\n",
      "          'scenes': 2,\n",
      "          'mclachlans': 1,\n",
      "          'earlier': 1,\n",
      "          'cinematic': 1,\n",
      "          'features': 1,\n",
      "          'obvious': 1,\n",
      "          'influence': 1,\n",
      "          'terminator': 1,\n",
      "          'species': 1,\n",
      "          '710': 1,\n",
      "          'recent': 1,\n",
      "          'fallen': 1,\n",
      "          'denzel': 1,\n",
      "          'washington': 1,\n",
      "          'nplot': 1,\n",
      "          'sciencefiction': 1,\n",
      "          'set': 1,\n",
      "          'modern': 1,\n",
      "          'times': 1,\n",
      "          'thriller': 1,\n",
      "          'follows': 1,\n",
      "          'exploits': 1,\n",
      "          'entity': 1,\n",
      "          'outer': 1,\n",
      "          'space': 1,\n",
      "          'inhabit': 1,\n",
      "          'human': 1,\n",
      "          'bodies': 1,\n",
      "          'use': 1,\n",
      "          'completely': 1,\n",
      "          'worn': 1,\n",
      "          'switch': 1,\n",
      "          'next': 1,\n",
      "          'available': 1,\n",
      "          'receptacle': 1,\n",
      "          'nfbi': 1,\n",
      "          'agent': 1,\n",
      "          'mclachlan': 1,\n",
      "          'local': 1,\n",
      "          'top': 1,\n",
      "          'cop': 1,\n",
      "          'nouri': 1,\n",
      "          'charged': 1,\n",
      "          'capture': 1,\n",
      "          'ncritique': 1,\n",
      "          'fastpaced': 1,\n",
      "          'urban': 1,\n",
      "          'equivalent': 1,\n",
      "          'checks': 1,\n",
      "          'cylinders': 1,\n",
      "          'ultraviolence': 1,\n",
      "          'god': 1,\n",
      "          'knows': 1,\n",
      "          'many': 1,\n",
      "          'people': 1,\n",
      "          'died': 1,\n",
      "          'overall': 1,\n",
      "          'rock': 1,\n",
      "          'n': 1,\n",
      "          'roll': 1,\n",
      "          'attitude': 1,\n",
      "          'nthen': 1,\n",
      "          'go': 1,\n",
      "          'wrong': 1,\n",
      "          'ferraris': 1,\n",
      "          'guns': 1,\n",
      "          'heavy': 1,\n",
      "          'metal': 1,\n",
      "          'music': 1,\n",
      "          'sexy': 1,\n",
      "          'girls': 1,\n",
      "          'ngranted': 1,\n",
      "          'plot': 1,\n",
      "          'isnt': 1,\n",
      "          'elaborate': 1,\n",
      "          'tales': 1,\n",
      "          'bad': 1,\n",
      "          'find': 1,\n",
      "          'kill': 1,\n",
      "          'honestly': 1,\n",
      "          'say': 1,\n",
      "          'never': 1,\n",
      "          'bored': 1,\n",
      "          'viewing': 1,\n",
      "          'entire': 1,\n",
      "          'ni': 1,\n",
      "          'wouldnt': 1,\n",
      "          'recommend': 1,\n",
      "          'dont': 1,\n",
      "          'like': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'murders': 1,\n",
      "          'bland': 1,\n",
      "          'acting': 1,\n",
      "          'rest': 1,\n",
      "          'enjoy': 1,\n",
      "          'putting': 1,\n",
      "          'away': 1,\n",
      "          'brains': 1,\n",
      "          'every': 1,\n",
      "          'sitting': 1,\n",
      "          'slamming': 1,\n",
      "          'salsad': 1,\n",
      "          'nachos': 1,\n",
      "          'relishing': 1,\n",
      "          'cheeze': 1,\n",
      "          'call': 1,\n",
      "          'nhave': 1,\n",
      "          'blast': 1,\n",
      "          'ntwo': 1,\n",
      "          'watch': 1,\n",
      "          'within': 1,\n",
      "          'ten': 1,\n",
      "          'minutes': 1,\n",
      "          'gorefest': 1,\n",
      "          'nthe': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'rockin': 1,\n",
      "          'open': 1,\n",
      "          'subsequent': 1,\n",
      "          'extraterrestrial': 1,\n",
      "          'transformation': 1,\n",
      "          'another': 1,\n",
      "          'eyecatcher': 1,\n",
      "          'neven': 1,\n",
      "          '80s': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'okay': 1,\n",
      "          'nfollowed': 1,\n",
      "          'hidden': 1,\n",
      "          'ii': 1,\n",
      "          '1994': 1,\n",
      "          'nlittle': 1,\n",
      "          'known': 1,\n",
      "          'facts': 1,\n",
      "          'maclachlans': 1,\n",
      "          'nondavid': 1,\n",
      "          'lynch': 1,\n",
      "          'foray': 1,\n",
      "          'world': 1,\n",
      "          'feature': 1,\n",
      "          'nhis': 1,\n",
      "          'two': 1,\n",
      "          'appearances': 1,\n",
      "          'lynchs': 1,\n",
      "          'wretched': 1,\n",
      "          'dune': 1,\n",
      "          '410': 1,\n",
      "          'sensational': 1,\n",
      "          'blue': 1,\n",
      "          'velvet': 1,\n",
      "          '8': 1,\n",
      "          '510': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'col': 9,\n",
      "          'film': 7,\n",
      "          'bridge': 7,\n",
      "          'japanese': 7,\n",
      "          'nicholson': 7,\n",
      "          'british': 6,\n",
      "          'war': 4,\n",
      "          'picture': 4,\n",
      "          'nbut': 4,\n",
      "          'nthe': 4,\n",
      "          'american': 3,\n",
      "          'nand': 3,\n",
      "          'river': 3,\n",
      "          'kwai': 3,\n",
      "          'shears': 3,\n",
      "          'military': 3,\n",
      "          'leans': 2,\n",
      "          'ni': 2,\n",
      "          'think': 2,\n",
      "          'doesnt': 2,\n",
      "          'men': 2,\n",
      "          'paths': 2,\n",
      "          'glory': 2,\n",
      "          'na': 2,\n",
      "          'soldiers': 2,\n",
      "          'guinness': 2,\n",
      "          'officers': 2,\n",
      "          'work': 2,\n",
      "          'saito': 2,\n",
      "          'building': 2,\n",
      "          'high': 2,\n",
      "          'shall': 2,\n",
      "          'question': 2,\n",
      "          'also': 2,\n",
      "          'supposed': 2,\n",
      "          'risks': 2,\n",
      "          'n': 2,\n",
      "          'perfect': 2,\n",
      "          'well': 2,\n",
      "          'nit': 2,\n",
      "          'shows': 2,\n",
      "          'like': 2,\n",
      "          'interesting': 2,\n",
      "          'despite': 2,\n",
      "          'want': 1,\n",
      "          'correct': 1,\n",
      "          'wrote': 1,\n",
      "          'former': 1,\n",
      "          'retrospective': 1,\n",
      "          'david': 1,\n",
      "          'still': 1,\n",
      "          'deserve': 1,\n",
      "          'number': 1,\n",
      "          '13': 1,\n",
      "          'institutes': 1,\n",
      "          'list': 1,\n",
      "          '100': 1,\n",
      "          'greatest': 1,\n",
      "          'movies': 1,\n",
      "          'lumets': 1,\n",
      "          '12': 1,\n",
      "          'angry': 1,\n",
      "          'wilders': 1,\n",
      "          'witness': 1,\n",
      "          'prosecution': 1,\n",
      "          'kubricks': 1,\n",
      "          'would': 1,\n",
      "          'better': 1,\n",
      "          'choices': 1,\n",
      "          'best': 1,\n",
      "          'oscar': 1,\n",
      "          '1958': 1,\n",
      "          'cant': 1,\n",
      "          'deny': 1,\n",
      "          'importance': 1,\n",
      "          'cinematically': 1,\n",
      "          'contents': 1,\n",
      "          'set': 1,\n",
      "          'burma': 1,\n",
      "          '1943': 1,\n",
      "          'bataillon': 1,\n",
      "          'captivity': 1,\n",
      "          'forced': 1,\n",
      "          'build': 1,\n",
      "          'strategically': 1,\n",
      "          'momentous': 1,\n",
      "          'railway': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'colonel': 1,\n",
      "          'alec': 1,\n",
      "          'insists': 1,\n",
      "          'corresponding': 1,\n",
      "          'geneva': 1,\n",
      "          'conventions': 1,\n",
      "          'neednt': 1,\n",
      "          'simple': 1,\n",
      "          'workmen': 1,\n",
      "          'nstruggling': 1,\n",
      "          'toughly': 1,\n",
      "          'forces': 1,\n",
      "          'commandant': 1,\n",
      "          'sessue': 1,\n",
      "          'hayakawa': 1,\n",
      "          'give': 1,\n",
      "          'way': 1,\n",
      "          'respect': 1,\n",
      "          'nafterwards': 1,\n",
      "          'assiduously': 1,\n",
      "          'commits': 1,\n",
      "          'nhe': 1,\n",
      "          'considers': 1,\n",
      "          'opportunity': 1,\n",
      "          'raise': 1,\n",
      "          'mens': 1,\n",
      "          'morale': 1,\n",
      "          'wants': 1,\n",
      "          'prove': 1,\n",
      "          'superior': 1,\n",
      "          'capabilities': 1,\n",
      "          'command': 1,\n",
      "          'sends': 1,\n",
      "          'destroy': 1,\n",
      "          'among': 1,\n",
      "          'william': 1,\n",
      "          'holden': 1,\n",
      "          'escapee': 1,\n",
      "          'prison': 1,\n",
      "          'camp': 1,\n",
      "          'major': 1,\n",
      "          'warden': 1,\n",
      "          'jack': 1,\n",
      "          'hawkins': 1,\n",
      "          'flaw': 1,\n",
      "          'clich': 1,\n",
      "          'characterization': 1,\n",
      "          'people': 1,\n",
      "          'nthey': 1,\n",
      "          'presented': 1,\n",
      "          'intellectually': 1,\n",
      "          'inferior': 1,\n",
      "          'incapable': 1,\n",
      "          'consistently': 1,\n",
      "          'spirit': 1,\n",
      "          'kubrick': 1,\n",
      "          'nlean': 1,\n",
      "          'seems': 1,\n",
      "          'rather': 1,\n",
      "          'fascinated': 1,\n",
      "          'hierarchies': 1,\n",
      "          'nthis': 1,\n",
      "          'perceptible': 1,\n",
      "          'conversations': 1,\n",
      "          'nin': 1,\n",
      "          'regard': 1,\n",
      "          'symptomatic': 1,\n",
      "          'doubts': 1,\n",
      "          'logic': 1,\n",
      "          'somehow': 1,\n",
      "          'unpleasant': 1,\n",
      "          'person': 1,\n",
      "          'audience': 1,\n",
      "          'applaud': 1,\n",
      "          'nicholsons': 1,\n",
      "          'perseverance': 1,\n",
      "          'concerning': 1,\n",
      "          'spectators': 1,\n",
      "          'neglect': 1,\n",
      "          'takes': 1,\n",
      "          'plot': 1,\n",
      "          'bypasses': 1,\n",
      "          'nthat': 1,\n",
      "          'means': 1,\n",
      "          'isnt': 1,\n",
      "          'lot': 1,\n",
      "          'virtues': 1,\n",
      "          'madness': 1,\n",
      "          'produce': 1,\n",
      "          'peoples': 1,\n",
      "          'minds': 1,\n",
      "          'becomes': 1,\n",
      "          'possessed': 1,\n",
      "          'idea': 1,\n",
      "          'hero': 1,\n",
      "          'others': 1,\n",
      "          'get': 1,\n",
      "          'cynics': 1,\n",
      "          'study': 1,\n",
      "          'characters': 1,\n",
      "          'clashing': 1,\n",
      "          'interests': 1,\n",
      "          'nthese': 1,\n",
      "          'points': 1,\n",
      "          'sometimes': 1,\n",
      "          'ironic': 1,\n",
      "          'dialogue': 1,\n",
      "          'make': 1,\n",
      "          'antiwar': 1,\n",
      "          'inconsistencies': 1,\n",
      "          'treatment': 1,\n",
      "          'theme': 1,\n",
      "          'ndavid': 1,\n",
      "          'effective': 1,\n",
      "          'atmospherically': 1,\n",
      "          'direction': 1,\n",
      "          'creates': 1,\n",
      "          'suspense': 1,\n",
      "          'especially': 1,\n",
      "          'dramatic': 1,\n",
      "          'though': 1,\n",
      "          'wholly': 1,\n",
      "          'plausible': 1,\n",
      "          'showdown': 1,\n",
      "          'nalec': 1,\n",
      "          'magnificent': 1,\n",
      "          'job': 1,\n",
      "          'bringing': 1,\n",
      "          'life': 1,\n",
      "          'making': 1,\n",
      "          'character': 1,\n",
      "          'actors': 1,\n",
      "          'deliver': 1,\n",
      "          'good': 1,\n",
      "          'performances': 1,\n",
      "          'njack': 1,\n",
      "          'hildyards': 1,\n",
      "          'fine': 1,\n",
      "          'color': 1,\n",
      "          'cinematography': 1,\n",
      "          'apt': 1,\n",
      "          'score': 1,\n",
      "          'helpful': 1,\n",
      "          'extraordinary': 1,\n",
      "          'weaknesses': 1,\n",
      "          'c': 1,\n",
      "          'karl': 1,\n",
      "          'rackwitz': 1,\n",
      "          'klein': 1,\n",
      "          'k': 1,\n",
      "          'ris': 1,\n",
      "          'germany': 1,\n",
      "          '1999': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'vampire': 11,\n",
      "          'movie': 9,\n",
      "          'blade': 8,\n",
      "          'vampires': 6,\n",
      "          'movies': 5,\n",
      "          'action': 4,\n",
      "          'play': 3,\n",
      "          'much': 2,\n",
      "          'still': 2,\n",
      "          'made': 2,\n",
      "          'virus': 2,\n",
      "          'something': 2,\n",
      "          'michael': 2,\n",
      "          'j': 2,\n",
      "          'fox': 2,\n",
      "          'could': 2,\n",
      "          'want': 2,\n",
      "          'n': 2,\n",
      "          'anything': 2,\n",
      "          'nyou': 2,\n",
      "          'traditional': 2,\n",
      "          'day': 2,\n",
      "          'well': 2,\n",
      "          'order': 2,\n",
      "          'hong': 2,\n",
      "          'kong': 2,\n",
      "          'role': 2,\n",
      "          'silent': 2,\n",
      "          'everything': 2,\n",
      "          'nblade': 2,\n",
      "          'without': 2,\n",
      "          'heavy': 2,\n",
      "          'using': 2,\n",
      "          'replacement': 2,\n",
      "          'killers': 2,\n",
      "          'us': 2,\n",
      "          'might': 2,\n",
      "          'summer': 2,\n",
      "          'keep': 2,\n",
      "          'major': 1,\n",
      "          'horror': 1,\n",
      "          'subgenres': 1,\n",
      "          'easily': 1,\n",
      "          'adaptable': 1,\n",
      "          'nthink': 1,\n",
      "          'nfrankenstein': 1,\n",
      "          'havent': 1,\n",
      "          'changed': 1,\n",
      "          'need': 1,\n",
      "          'madscientistinbavariancastle': 1,\n",
      "          'setting': 1,\n",
      "          'nif': 1,\n",
      "          'frankenstein': 1,\n",
      "          'today': 1,\n",
      "          'youd': 1,\n",
      "          'monster': 1,\n",
      "          'outside': 1,\n",
      "          'arent': 1,\n",
      "          'actors': 1,\n",
      "          'convincingly': 1,\n",
      "          'nmovies': 1,\n",
      "          'mummies': 1,\n",
      "          'would': 1,\n",
      "          'set': 1,\n",
      "          'egypt': 1,\n",
      "          'ntheres': 1,\n",
      "          'werewolves': 1,\n",
      "          'except': 1,\n",
      "          'take': 1,\n",
      "          'london': 1,\n",
      "          'paris': 1,\n",
      "          'unless': 1,\n",
      "          'teenage': 1,\n",
      "          'werewolf': 1,\n",
      "          'theres': 1,\n",
      "          'thing': 1,\n",
      "          'nbut': 1,\n",
      "          'place': 1,\n",
      "          'genre': 1,\n",
      "          'bram': 1,\n",
      "          'stokers': 1,\n",
      "          'dracula': 1,\n",
      "          'anne': 1,\n",
      "          'rice': 1,\n",
      "          'version': 1,\n",
      "          'interview': 1,\n",
      "          'laughs': 1,\n",
      "          'brooklyn': 1,\n",
      "          'put': 1,\n",
      "          'locales': 1,\n",
      "          'sunny': 1,\n",
      "          'southern': 1,\n",
      "          'california': 1,\n",
      "          'lost': 1,\n",
      "          'boys': 1,\n",
      "          'squalid': 1,\n",
      "          'mexican': 1,\n",
      "          'dives': 1,\n",
      "          'dusk': 1,\n",
      "          'till': 1,\n",
      "          'dawn': 1,\n",
      "          'local': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'buffy': 1,\n",
      "          'slayer': 1,\n",
      "          'nwere': 1,\n",
      "          'redundant': 1,\n",
      "          'law': 1,\n",
      "          'firm': 1,\n",
      "          'full': 1,\n",
      "          'nany': 1,\n",
      "          'expect': 1,\n",
      "          'see': 1,\n",
      "          'third': 1,\n",
      "          'baseman': 1,\n",
      "          'decide': 1,\n",
      "          'whether': 1,\n",
      "          'game': 1,\n",
      "          'break': 1,\n",
      "          'home': 1,\n",
      "          'run': 1,\n",
      "          'record': 1,\n",
      "          'insert': 1,\n",
      "          'legend': 1,\n",
      "          'get': 1,\n",
      "          'nwesley': 1,\n",
      "          'snipes': 1,\n",
      "          'chow': 1,\n",
      "          'yun': 1,\n",
      "          'fat': 1,\n",
      "          'expressionless': 1,\n",
      "          'hit': 1,\n",
      "          'man': 1,\n",
      "          'destroys': 1,\n",
      "          'path': 1,\n",
      "          'nin': 1,\n",
      "          'case': 1,\n",
      "          'happens': 1,\n",
      "          'explode': 1,\n",
      "          'cgi': 1,\n",
      "          'shards': 1,\n",
      "          'instead': 1,\n",
      "          'dead': 1,\n",
      "          'bleeding': 1,\n",
      "          'corpses': 1,\n",
      "          'nsnipes': 1,\n",
      "          'less': 1,\n",
      "          'say': 1,\n",
      "          'fugitive': 1,\n",
      "          'u': 1,\n",
      "          'marshals': 1,\n",
      "          'demonstrably': 1,\n",
      "          'better': 1,\n",
      "          'job': 1,\n",
      "          'halfvampire': 1,\n",
      "          'wreaking': 1,\n",
      "          'vengeance': 1,\n",
      "          'bloodsuckers': 1,\n",
      "          'brooding': 1,\n",
      "          'presence': 1,\n",
      "          'laying': 1,\n",
      "          'waste': 1,\n",
      "          'shred': 1,\n",
      "          'remorse': 1,\n",
      "          'nhe': 1,\n",
      "          'cold': 1,\n",
      "          'silverbladed': 1,\n",
      "          'sword': 1,\n",
      "          'single': 1,\n",
      "          'minded': 1,\n",
      "          'garlicfilled': 1,\n",
      "          'bullets': 1,\n",
      "          'nyet': 1,\n",
      "          'hes': 1,\n",
      "          'quirks': 1,\n",
      "          'drives': 1,\n",
      "          'battered': 1,\n",
      "          'muscle': 1,\n",
      "          'car': 1,\n",
      "          'glean': 1,\n",
      "          'rolex': 1,\n",
      "          'watches': 1,\n",
      "          'victims': 1,\n",
      "          'stay': 1,\n",
      "          'solvent': 1,\n",
      "          'nlike': 1,\n",
      "          'good': 1,\n",
      "          'chopsocky': 1,\n",
      "          'nfor': 1,\n",
      "          'reason': 1,\n",
      "          'spends': 1,\n",
      "          'lot': 1,\n",
      "          'time': 1,\n",
      "          'kung': 1,\n",
      "          'fu': 1,\n",
      "          'artistry': 1,\n",
      "          'antivampire': 1,\n",
      "          'weapons': 1,\n",
      "          'garlic': 1,\n",
      "          'silver': 1,\n",
      "          'dismisses': 1,\n",
      "          'manportable': 1,\n",
      "          'arc': 1,\n",
      "          'lamp': 1,\n",
      "          'although': 1,\n",
      "          'looks': 1,\n",
      "          'efficient': 1,\n",
      "          'tool': 1,\n",
      "          'dispatch': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'guiding': 1,\n",
      "          'hand': 1,\n",
      "          'john': 1,\n",
      "          'woo': 1,\n",
      "          'absent': 1,\n",
      "          'film': 1,\n",
      "          'relegating': 1,\n",
      "          'status': 1,\n",
      "          'strongly': 1,\n",
      "          'resembles': 1,\n",
      "          'nthe': 1,\n",
      "          'last': 1,\n",
      "          'saw': 1,\n",
      "          'didnt': 1,\n",
      "          'review': 1,\n",
      "          'mostly': 1,\n",
      "          'impression': 1,\n",
      "          'couldnt': 1,\n",
      "          'remember': 1,\n",
      "          'noise': 1,\n",
      "          'violence': 1,\n",
      "          'intensity': 1,\n",
      "          'fats': 1,\n",
      "          'performance': 1,\n",
      "          'little': 1,\n",
      "          'going': 1,\n",
      "          'myth': 1,\n",
      "          'draw': 1,\n",
      "          'kind': 1,\n",
      "          'exciting': 1,\n",
      "          'choreographed': 1,\n",
      "          'scenes': 1,\n",
      "          'resonance': 1,\n",
      "          'nwith': 1,\n",
      "          'stronger': 1,\n",
      "          'villain': 1,\n",
      "          'stephen': 1,\n",
      "          'dorff': 1,\n",
      "          'pardon': 1,\n",
      "          'pun': 1,\n",
      "          'curiously': 1,\n",
      "          'bloodless': 1,\n",
      "          'head': 1,\n",
      "          'leaving': 1,\n",
      "          'wonder': 1,\n",
      "          'denis': 1,\n",
      "          'leary': 1,\n",
      "          'done': 1,\n",
      "          'wittier': 1,\n",
      "          'script': 1,\n",
      "          'strong': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'able': 1,\n",
      "          'rise': 1,\n",
      "          'beyond': 1,\n",
      "          'level': 1,\n",
      "          'commonplace': 1,\n",
      "          'entertainment': 1,\n",
      "          'nas': 1,\n",
      "          'average': 1,\n",
      "          'serves': 1,\n",
      "          'nothing': 1,\n",
      "          'remind': 1,\n",
      "          'getting': 1,\n",
      "          'dumber': 1,\n",
      "          'multiplying': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'fiction': 6,\n",
      "          'nthe': 6,\n",
      "          'pulp': 5,\n",
      "          'movie': 5,\n",
      "          'like': 5,\n",
      "          'story': 5,\n",
      "          'making': 4,\n",
      "          'marcellus': 4,\n",
      "          'cool': 4,\n",
      "          'nthey': 4,\n",
      "          'end': 4,\n",
      "          'two': 4,\n",
      "          'help': 4,\n",
      "          '90s': 3,\n",
      "          'nbut': 3,\n",
      "          'giving': 3,\n",
      "          'n': 3,\n",
      "          'actually': 3,\n",
      "          'nit': 3,\n",
      "          'way': 3,\n",
      "          'nin': 3,\n",
      "          'already': 3,\n",
      "          'john': 3,\n",
      "          'travolta': 3,\n",
      "          'best': 3,\n",
      "          'version': 3,\n",
      "          'tarantino': 2,\n",
      "          'made': 2,\n",
      "          'also': 2,\n",
      "          'believe': 2,\n",
      "          'time': 2,\n",
      "          'citizen': 2,\n",
      "          'kane': 2,\n",
      "          'new': 2,\n",
      "          'excellent': 2,\n",
      "          'original': 2,\n",
      "          'isnt': 2,\n",
      "          'much': 2,\n",
      "          'classic': 2,\n",
      "          'speech': 2,\n",
      "          'told': 2,\n",
      "          'nonlinear': 2,\n",
      "          'around': 2,\n",
      "          'three': 2,\n",
      "          'episodes': 2,\n",
      "          'wife': 2,\n",
      "          'sequence': 2,\n",
      "          'wallace': 2,\n",
      "          'performance': 2,\n",
      "          'called': 2,\n",
      "          'guy': 2,\n",
      "          'turns': 2,\n",
      "          'stars': 2,\n",
      "          'would': 2,\n",
      "          'take': 2,\n",
      "          'fall': 2,\n",
      "          'ends': 2,\n",
      "          'takes': 2,\n",
      "          'apartment': 2,\n",
      "          'make': 2,\n",
      "          'place': 2,\n",
      "          'deliverance': 2,\n",
      "          'features': 2,\n",
      "          'jackson': 2,\n",
      "          'played': 2,\n",
      "          'havent': 2,\n",
      "          'seen': 2,\n",
      "          'scenes': 2,\n",
      "          'nwhat': 2,\n",
      "          'see': 2,\n",
      "          'things': 2,\n",
      "          'one': 2,\n",
      "          'quentin': 1,\n",
      "          'greatest': 1,\n",
      "          'influential': 1,\n",
      "          'send': 1,\n",
      "          'hatemail': 1,\n",
      "          'title': 1,\n",
      "          'hear': 1,\n",
      "          'nmuch': 1,\n",
      "          'changed': 1,\n",
      "          'forever': 1,\n",
      "          'think': 1,\n",
      "          'latter': 1,\n",
      "          'tad': 1,\n",
      "          'impact': 1,\n",
      "          'ushered': 1,\n",
      "          'era': 1,\n",
      "          'altered': 1,\n",
      "          'films': 1,\n",
      "          'viewed': 1,\n",
      "          'spawned': 1,\n",
      "          'many': 1,\n",
      "          'imitations': 1,\n",
      "          'ive': 1,\n",
      "          'lost': 1,\n",
      "          'count': 1,\n",
      "          'nsure': 1,\n",
      "          'bound': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'spring': 1,\n",
      "          'immediately': 1,\n",
      "          'mind': 1,\n",
      "          'serious': 1,\n",
      "          'moviegoer': 1,\n",
      "          'recognizes': 1,\n",
      "          'neonoir': 1,\n",
      "          'review': 1,\n",
      "          'hope': 1,\n",
      "          'change': 1,\n",
      "          'peoples': 1,\n",
      "          'minds': 1,\n",
      "          'criticized': 1,\n",
      "          'excessive': 1,\n",
      "          'profanity': 1,\n",
      "          'violence': 1,\n",
      "          'really': 1,\n",
      "          'graphic': 1,\n",
      "          'brilliant': 1,\n",
      "          'aspect': 1,\n",
      "          'tarantinos': 1,\n",
      "          'masterpiece': 1,\n",
      "          'screenplay': 1,\n",
      "          'filled': 1,\n",
      "          'dialogue': 1,\n",
      "          'quarter': 1,\n",
      "          'pounder': 1,\n",
      "          'cheese': 1,\n",
      "          'go': 1,\n",
      "          'history': 1,\n",
      "          'required': 1,\n",
      "          'reading': 1,\n",
      "          'student': 1,\n",
      "          'unorthodox': 1,\n",
      "          'format': 1,\n",
      "          'centers': 1,\n",
      "          'main': 1,\n",
      "          'eventually': 1,\n",
      "          'intertwine': 1,\n",
      "          'first': 1,\n",
      "          'titled': 1,\n",
      "          'vincent': 1,\n",
      "          'vega': 1,\n",
      "          'wallaces': 1,\n",
      "          'deals': 1,\n",
      "          'loaded': 1,\n",
      "          'forgot': 1,\n",
      "          'mention': 1,\n",
      "          'heroin': 1,\n",
      "          'shootup': 1,\n",
      "          'taking': 1,\n",
      "          'mia': 1,\n",
      "          'starmaking': 1,\n",
      "          'uma': 1,\n",
      "          'thurman': 1,\n",
      "          'bosses': 1,\n",
      "          'date': 1,\n",
      "          '50s': 1,\n",
      "          'restaurant': 1,\n",
      "          'jack': 1,\n",
      "          'rabbit': 1,\n",
      "          'slims': 1,\n",
      "          'talk': 1,\n",
      "          'occasional': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'silence': 1,\n",
      "          'mostly': 1,\n",
      "          'tony': 1,\n",
      "          'rocky': 1,\n",
      "          'horror': 1,\n",
      "          'nafter': 1,\n",
      "          'bride': 1,\n",
      "          'foot': 1,\n",
      "          'massage': 1,\n",
      "          'thrown': 1,\n",
      "          'building': 1,\n",
      "          'greenhouse': 1,\n",
      "          'impediment': 1,\n",
      "          'partake': 1,\n",
      "          'dance': 1,\n",
      "          'contest': 1,\n",
      "          'twisting': 1,\n",
      "          'chuck': 1,\n",
      "          'berry': 1,\n",
      "          'never': 1,\n",
      "          'tell': 1,\n",
      "          'ni': 1,\n",
      "          'wont': 1,\n",
      "          'reveal': 1,\n",
      "          'rest': 1,\n",
      "          'ill': 1,\n",
      "          'definitely': 1,\n",
      "          'say': 1,\n",
      "          'real': 1,\n",
      "          'bummer': 1,\n",
      "          'night': 1,\n",
      "          'despite': 1,\n",
      "          'trophy': 1,\n",
      "          'win': 1,\n",
      "          'second': 1,\n",
      "          'least': 1,\n",
      "          'still': 1,\n",
      "          'four': 1,\n",
      "          'bruce': 1,\n",
      "          'willis': 1,\n",
      "          'proving': 1,\n",
      "          'play': 1,\n",
      "          'someone': 1,\n",
      "          'mcclain': 1,\n",
      "          'die': 1,\n",
      "          'hard': 1,\n",
      "          'flicks': 1,\n",
      "          'boxer': 1,\n",
      "          'butch': 1,\n",
      "          'coolidge': 1,\n",
      "          'npreviously': 1,\n",
      "          'said': 1,\n",
      "          'form': 1,\n",
      "          'deal': 1,\n",
      "          'match': 1,\n",
      "          'nas': 1,\n",
      "          'doesnt': 1,\n",
      "          'killing': 1,\n",
      "          'opponent': 1,\n",
      "          'nhe': 1,\n",
      "          'cab': 1,\n",
      "          'halfwitted': 1,\n",
      "          'girlfriends': 1,\n",
      "          'long': 1,\n",
      "          'short': 1,\n",
      "          'going': 1,\n",
      "          'back': 1,\n",
      "          'retrieve': 1,\n",
      "          'gold': 1,\n",
      "          'watch': 1,\n",
      "          'sort': 1,\n",
      "          'family': 1,\n",
      "          'heirloom': 1,\n",
      "          'explained': 1,\n",
      "          'christopher': 1,\n",
      "          'walken': 1,\n",
      "          'hilarious': 1,\n",
      "          'flashback': 1,\n",
      "          'non': 1,\n",
      "          'home': 1,\n",
      "          'bumps': 1,\n",
      "          'literally': 1,\n",
      "          'winde': 1,\n",
      "          'prisoner': 1,\n",
      "          'hillbilly': 1,\n",
      "          'sex': 1,\n",
      "          'murderers': 1,\n",
      "          'results': 1,\n",
      "          'infamous': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'gimp': 1,\n",
      "          'scene': 1,\n",
      "          'reminicent': 1,\n",
      "          'squeal': 1,\n",
      "          'pig': 1,\n",
      "          'nscene': 1,\n",
      "          'last': 1,\n",
      "          'opinion': 1,\n",
      "          'samuel': 1,\n",
      "          'l': 1,\n",
      "          'supporting': 1,\n",
      "          'actor': 1,\n",
      "          'ever': 1,\n",
      "          'slightly': 1,\n",
      "          'offkilter': 1,\n",
      "          'hitmen': 1,\n",
      "          'trying': 1,\n",
      "          'rid': 1,\n",
      "          'bloody': 1,\n",
      "          'car': 1,\n",
      "          'seek': 1,\n",
      "          'friend': 1,\n",
      "          'jacksons': 1,\n",
      "          'qman': 1,\n",
      "          'desperately': 1,\n",
      "          'need': 1,\n",
      "          'stress': 1,\n",
      "          'ball': 1,\n",
      "          'calling': 1,\n",
      "          'cleaner': 1,\n",
      "          'sorts': 1,\n",
      "          'god': 1,\n",
      "          'among': 1,\n",
      "          'men': 1,\n",
      "          'harvey': 1,\n",
      "          'keitel': 1,\n",
      "          'brilliantly': 1,\n",
      "          'loops': 1,\n",
      "          'ending': 1,\n",
      "          'began': 1,\n",
      "          'nif': 1,\n",
      "          'even': 1,\n",
      "          'matter': 1,\n",
      "          'suggest': 1,\n",
      "          'invest': 1,\n",
      "          'money': 1,\n",
      "          'copy': 1,\n",
      "          'letterbox': 1,\n",
      "          'collectors': 1,\n",
      "          'edition': 1,\n",
      "          'previously': 1,\n",
      "          'unreleased': 1,\n",
      "          'restored': 1,\n",
      "          'originally': 1,\n",
      "          'meant': 1,\n",
      "          'nearlier': 1,\n",
      "          'today': 1,\n",
      "          'bought': 1,\n",
      "          'watched': 1,\n",
      "          'hours': 1,\n",
      "          'ago': 1,\n",
      "          'panandscan': 1,\n",
      "          'inexcusable': 1,\n",
      "          'nthat': 1,\n",
      "          'cut': 1,\n",
      "          'half': 1,\n",
      "          'missed': 1,\n",
      "          'past': 1,\n",
      "          'years': 1,\n",
      "          'viewing': 1,\n",
      "          'flick': 1,\n",
      "          'amazing': 1,\n",
      "          'nfor': 1,\n",
      "          'instance': 1,\n",
      "          'near': 1,\n",
      "          'widescreen': 1,\n",
      "          'allows': 1,\n",
      "          'several': 1,\n",
      "          'walls': 1,\n",
      "          'crosses': 1,\n",
      "          'nthis': 1,\n",
      "          'might': 1,\n",
      "          'explain': 1,\n",
      "          'divine': 1,\n",
      "          'intervention': 1,\n",
      "          'njust': 1,\n",
      "          'theory': 1,\n",
      "          'none': 1,\n",
      "          'pisses': 1,\n",
      "          'people': 1,\n",
      "          'borrowed': 1,\n",
      "          'alot': 1,\n",
      "          'movies': 1,\n",
      "          'e': 1,\n",
      "          'psycho': 1,\n",
      "          'kiss': 1,\n",
      "          'deadly': 1,\n",
      "          'etc': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nits': 1,\n",
      "          'outright': 1,\n",
      "          'blatantly': 1,\n",
      "          'stole': 1,\n",
      "          'ngive': 1,\n",
      "          'break': 1,\n",
      "          'case': 1,\n",
      "          'noticed': 1,\n",
      "          'supremely': 1,\n",
      "          'greats': 1,\n",
      "          'casablanca': 1,\n",
      "          'godfather': 1,\n",
      "          'ntrust': 1,\n",
      "          'better': 1,\n",
      "          'come': 1,\n",
      "          'nand': 1,\n",
      "          'besides': 1,\n",
      "          'hell': 1,\n",
      "          'ride': 1,\n",
      "          'nnote': 1,\n",
      "          'anyone': 1,\n",
      "          'knows': 1,\n",
      "          'could': 1,\n",
      "          'get': 1,\n",
      "          'bad': 1,\n",
      "          'motherfucker': 1,\n",
      "          'wallet': 1,\n",
      "          'please': 1,\n",
      "          'email': 1,\n",
      "          'nany': 1,\n",
      "          'greatly': 1,\n",
      "          'appreciated': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'characters': 6,\n",
      "          'funny': 4,\n",
      "          'time': 3,\n",
      "          'fargo': 3,\n",
      "          'movie': 3,\n",
      "          'somehow': 3,\n",
      "          'ni': 3,\n",
      "          'nthe': 3,\n",
      "          'film': 3,\n",
      "          'tv': 3,\n",
      "          'russ': 3,\n",
      "          'job': 3,\n",
      "          'lottery': 3,\n",
      "          'like': 3,\n",
      "          'story': 3,\n",
      "          'take': 3,\n",
      "          'basically': 3,\n",
      "          'hes': 3,\n",
      "          'makes': 3,\n",
      "          'movies': 2,\n",
      "          'even': 2,\n",
      "          'though': 2,\n",
      "          'know': 2,\n",
      "          'trying': 2,\n",
      "          'explain': 2,\n",
      "          'lucky': 2,\n",
      "          'numbers': 2,\n",
      "          'perfect': 2,\n",
      "          'elmore': 2,\n",
      "          'leonard': 2,\n",
      "          'travolta': 2,\n",
      "          'local': 2,\n",
      "          'richards': 2,\n",
      "          'doesnt': 2,\n",
      "          'genuinely': 2,\n",
      "          'tells': 2,\n",
      "          'going': 2,\n",
      "          'get': 2,\n",
      "          'thug': 2,\n",
      "          'gets': 2,\n",
      "          'plot': 2,\n",
      "          'comedy': 2,\n",
      "          'nits': 2,\n",
      "          'great': 2,\n",
      "          'role': 2,\n",
      "          'character': 2,\n",
      "          'shes': 2,\n",
      "          'since': 2,\n",
      "          'phoebe': 2,\n",
      "          'main': 2,\n",
      "          'money': 2,\n",
      "          '10': 2,\n",
      "          'good': 2,\n",
      "          'theres': 1,\n",
      "          'enjoy': 1,\n",
      "          'probably': 1,\n",
      "          'shouldnt': 1,\n",
      "          'difficult': 1,\n",
      "          'n': 1,\n",
      "          'example': 1,\n",
      "          'blatant': 1,\n",
      "          'ripoff': 1,\n",
      "          'every': 1,\n",
      "          'based': 1,\n",
      "          'novel': 1,\n",
      "          'yet': 1,\n",
      "          'still': 1,\n",
      "          'works': 1,\n",
      "          'im': 1,\n",
      "          'minority': 1,\n",
      "          'let': 1,\n",
      "          'takes': 1,\n",
      "          'place': 1,\n",
      "          'harrisburg': 1,\n",
      "          'pa': 1,\n",
      "          '1988': 1,\n",
      "          'unseasonably': 1,\n",
      "          'warm': 1,\n",
      "          'winter': 1,\n",
      "          'njohn': 1,\n",
      "          'plays': 1,\n",
      "          'bigshot': 1,\n",
      "          'weatherman': 1,\n",
      "          'idolized': 1,\n",
      "          'townsfolk': 1,\n",
      "          'john': 1,\n",
      "          'bumbling': 1,\n",
      "          'nruss': 1,\n",
      "          'married': 1,\n",
      "          'crystal': 1,\n",
      "          'lisa': 1,\n",
      "          'kudrow': 1,\n",
      "          'blonde': 1,\n",
      "          'bimbo': 1,\n",
      "          'ever': 1,\n",
      "          'one': 1,\n",
      "          'history': 1,\n",
      "          'cinema': 1,\n",
      "          'nshes': 1,\n",
      "          'selfish': 1,\n",
      "          'nasty': 1,\n",
      "          'bitch': 1,\n",
      "          'full': 1,\n",
      "          'lust': 1,\n",
      "          'desire': 1,\n",
      "          'got': 1,\n",
      "          'ball': 1,\n",
      "          'girl': 1,\n",
      "          'exactly': 1,\n",
      "          'intellectually': 1,\n",
      "          'taxing': 1,\n",
      "          'market': 1,\n",
      "          'ncrystals': 1,\n",
      "          'cheating': 1,\n",
      "          'collective': 1,\n",
      "          'boss': 1,\n",
      "          'dick': 1,\n",
      "          'ed': 1,\n",
      "          'oneil': 1,\n",
      "          'station': 1,\n",
      "          'manager': 1,\n",
      "          'nshe': 1,\n",
      "          'seem': 1,\n",
      "          'either': 1,\n",
      "          'onehorse': 1,\n",
      "          'town': 1,\n",
      "          'nmuch': 1,\n",
      "          'man': 1,\n",
      "          'whos': 1,\n",
      "          'broke': 1,\n",
      "          'pull': 1,\n",
      "          'huge': 1,\n",
      "          'scam': 1,\n",
      "          'rich': 1,\n",
      "          'quick': 1,\n",
      "          'nhe': 1,\n",
      "          'enlists': 1,\n",
      "          'help': 1,\n",
      "          'english': 1,\n",
      "          'friend': 1,\n",
      "          'gig': 1,\n",
      "          'tim': 1,\n",
      "          'roth': 1,\n",
      "          'stripclub': 1,\n",
      "          'owner': 1,\n",
      "          'fix': 1,\n",
      "          'nalong': 1,\n",
      "          'way': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'twobit': 1,\n",
      "          'named': 1,\n",
      "          'accurately': 1,\n",
      "          'dale': 1,\n",
      "          'michael': 1,\n",
      "          'rappaport': 1,\n",
      "          'mixed': 1,\n",
      "          'process': 1,\n",
      "          'ntheres': 1,\n",
      "          'also': 1,\n",
      "          'bookie': 1,\n",
      "          'thrown': 1,\n",
      "          'mix': 1,\n",
      "          'deal': 1,\n",
      "          'goes': 1,\n",
      "          'nim': 1,\n",
      "          'elaborate': 1,\n",
      "          'much': 1,\n",
      "          'continues': 1,\n",
      "          'unwind': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'youre': 1,\n",
      "          'expecting': 1,\n",
      "          'nthis': 1,\n",
      "          'farce': 1,\n",
      "          'straightforward': 1,\n",
      "          'adultoriented': 1,\n",
      "          'go': 1,\n",
      "          'far': 1,\n",
      "          'classic': 1,\n",
      "          'black': 1,\n",
      "          'nwhere': 1,\n",
      "          'sometimes': 1,\n",
      "          'shocking': 1,\n",
      "          'disturbing': 1,\n",
      "          'cant': 1,\n",
      "          'outrageous': 1,\n",
      "          'situations': 1,\n",
      "          'seriously': 1,\n",
      "          'big': 1,\n",
      "          'cartoon': 1,\n",
      "          'respect': 1,\n",
      "          'ntravolta': 1,\n",
      "          'really': 1,\n",
      "          'likable': 1,\n",
      "          'nice': 1,\n",
      "          'guy': 1,\n",
      "          'despite': 1,\n",
      "          'fact': 1,\n",
      "          'creep': 1,\n",
      "          'nhes': 1,\n",
      "          'gangster': 1,\n",
      "          'morals': 1,\n",
      "          'feels': 1,\n",
      "          'sorry': 1,\n",
      "          'guys': 1,\n",
      "          'kill': 1,\n",
      "          'ncrystal': 1,\n",
      "          'opposite': 1,\n",
      "          'constantly': 1,\n",
      "          'arguing': 1,\n",
      "          'using': 1,\n",
      "          'whatever': 1,\n",
      "          'brain': 1,\n",
      "          'cells': 1,\n",
      "          'left': 1,\n",
      "          'look': 1,\n",
      "          'nkudrow': 1,\n",
      "          'spent': 1,\n",
      "          '8': 1,\n",
      "          'years': 1,\n",
      "          'dimwitted': 1,\n",
      "          'friends': 1,\n",
      "          'nhere': 1,\n",
      "          'evil': 1,\n",
      "          'incarnation': 1,\n",
      "          'admit': 1,\n",
      "          'honestly': 1,\n",
      "          'surprised': 1,\n",
      "          'pleased': 1,\n",
      "          'unraveled': 1,\n",
      "          'methods': 1,\n",
      "          'use': 1,\n",
      "          'try': 1,\n",
      "          'share': 1,\n",
      "          'nlike': 1,\n",
      "          'jackie': 1,\n",
      "          'brown': 1,\n",
      "          'adaption': 1,\n",
      "          'circle': 1,\n",
      "          'illegally': 1,\n",
      "          'screenplay': 1,\n",
      "          'fine': 1,\n",
      "          'balancing': 1,\n",
      "          'slowly': 1,\n",
      "          'revealing': 1,\n",
      "          'motivations': 1,\n",
      "          'hidden': 1,\n",
      "          'agendas': 1,\n",
      "          'keep': 1,\n",
      "          'focus': 1,\n",
      "          'nmore': 1,\n",
      "          'introduced': 1,\n",
      "          'iconic': 1,\n",
      "          'cartoony': 1,\n",
      "          'atmosphere': 1,\n",
      "          'faith': 1,\n",
      "          'minor': 1,\n",
      "          'ending': 1,\n",
      "          'surprising': 1,\n",
      "          'feel': 1,\n",
      "          'nyou': 1,\n",
      "          'realize': 1,\n",
      "          'packed': 1,\n",
      "          'different': 1,\n",
      "          'worth': 1,\n",
      "          'stories': 1,\n",
      "          'two': 1,\n",
      "          'hours': 1,\n",
      "          'didnt': 1,\n",
      "          'fall': 1,\n",
      "          'apart': 1,\n",
      "          'although': 1,\n",
      "          'many': 1,\n",
      "          'critics': 1,\n",
      "          'might': 1,\n",
      "          'beg': 1,\n",
      "          'differ': 1,\n",
      "          'liked': 1,\n",
      "          'could': 1,\n",
      "          'see': 1,\n",
      "          'isnt': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'time': 4,\n",
      "          'mississippi': 4,\n",
      "          'kill': 3,\n",
      "          'ghosts': 3,\n",
      "          'husbands': 3,\n",
      "          'woods': 3,\n",
      "          'baldwin': 3,\n",
      "          'one': 2,\n",
      "          'grishams': 2,\n",
      "          'basically': 2,\n",
      "          'film': 2,\n",
      "          'evars': 2,\n",
      "          'goldberg': 2,\n",
      "          'racist': 2,\n",
      "          'beckwith': 2,\n",
      "          'james': 2,\n",
      "          'turns': 2,\n",
      "          'like': 2,\n",
      "          'got': 2,\n",
      "          'nthis': 2,\n",
      "          'serious': 2,\n",
      "          'performance': 2,\n",
      "          'acting': 2,\n",
      "          'poor': 2,\n",
      "          'wrong': 2,\n",
      "          'goldbergs': 2,\n",
      "          'make': 2,\n",
      "          'summer': 1,\n",
      "          'racially': 1,\n",
      "          'charged': 1,\n",
      "          'novels': 1,\n",
      "          'john': 1,\n",
      "          'series': 1,\n",
      "          'made': 1,\n",
      "          'major': 1,\n",
      "          'motion': 1,\n",
      "          'picture': 1,\n",
      "          'non': 1,\n",
      "          'january': 1,\n",
      "          '3': 1,\n",
      "          'year': 1,\n",
      "          'director': 1,\n",
      "          'rob': 1,\n",
      "          'reiner': 1,\n",
      "          'rereleased': 1,\n",
      "          'title': 1,\n",
      "          'nbased': 1,\n",
      "          'true': 1,\n",
      "          'story': 1,\n",
      "          '1963': 1,\n",
      "          'civil': 1,\n",
      "          'rights': 1,\n",
      "          'leader': 1,\n",
      "          'medgar': 1,\n",
      "          'assassination': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          '25year': 1,\n",
      "          'legal': 1,\n",
      "          'battle': 1,\n",
      "          'faced': 1,\n",
      "          'myrlie': 1,\n",
      "          'whoopi': 1,\n",
      "          'sister': 1,\n",
      "          'act': 1,\n",
      "          'quest': 1,\n",
      "          'obvious': 1,\n",
      "          'assassin': 1,\n",
      "          'byron': 1,\n",
      "          'de': 1,\n",
      "          'la': 1,\n",
      "          'casino': 1,\n",
      "          'jailed': 1,\n",
      "          'nso': 1,\n",
      "          'assistant': 1,\n",
      "          'district': 1,\n",
      "          'attorney': 1,\n",
      "          'prosecutor': 1,\n",
      "          'bobby': 1,\n",
      "          'delaughter': 1,\n",
      "          'alec': 1,\n",
      "          'heavens': 1,\n",
      "          'prisoners': 1,\n",
      "          'imprison': 1,\n",
      "          'former': 1,\n",
      "          'kkk': 1,\n",
      "          'member': 1,\n",
      "          'nghosts': 1,\n",
      "          'sets': 1,\n",
      "          'tone': 1,\n",
      "          'opening': 1,\n",
      "          'montage': 1,\n",
      "          'images': 1,\n",
      "          'africanamerican': 1,\n",
      "          'history': 1,\n",
      "          'slaveship': 1,\n",
      "          'miseries': 1,\n",
      "          'life': 1,\n",
      "          'south': 1,\n",
      "          '1960s': 1,\n",
      "          'nbut': 1,\n",
      "          'soon': 1,\n",
      "          'white': 1,\n",
      "          'folks': 1,\n",
      "          'take': 1,\n",
      "          'intoning': 1,\n",
      "          'lines': 1,\n",
      "          'whats': 1,\n",
      "          'america': 1,\n",
      "          'anything': 1,\n",
      "          'nas': 1,\n",
      "          'head': 1,\n",
      "          'larded': 1,\n",
      "          'latex': 1,\n",
      "          'old': 1,\n",
      "          'man': 1,\n",
      "          'teeters': 1,\n",
      "          'portraying': 1,\n",
      "          'evil': 1,\n",
      "          'character': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'weepy': 1,\n",
      "          'wife': 1,\n",
      "          'wouldnt': 1,\n",
      "          'let': 1,\n",
      "          'death': 1,\n",
      "          'rest': 1,\n",
      "          'conviction': 1,\n",
      "          'nboth': 1,\n",
      "          'deserve': 1,\n",
      "          'oscarconsideration': 1,\n",
      "          'brings': 1,\n",
      "          'us': 1,\n",
      "          'dull': 1,\n",
      "          'nlets': 1,\n",
      "          'face': 1,\n",
      "          'trying': 1,\n",
      "          'match': 1,\n",
      "          'matthew': 1,\n",
      "          'mcconaugheys': 1,\n",
      "          'wonderful': 1,\n",
      "          'impossible': 1,\n",
      "          'nand': 1,\n",
      "          'living': 1,\n",
      "          'proof': 1,\n",
      "          'emotions': 1,\n",
      "          'could': 1,\n",
      "          'felt': 1,\n",
      "          'nit': 1,\n",
      "          'seemed': 1,\n",
      "          'actually': 1,\n",
      "          'struggle': 1,\n",
      "          'shed': 1,\n",
      "          'single': 1,\n",
      "          'tear': 1,\n",
      "          'neither': 1,\n",
      "          'directing': 1,\n",
      "          'something': 1,\n",
      "          'definitely': 1,\n",
      "          'went': 1,\n",
      "          'nanother': 1,\n",
      "          'strange': 1,\n",
      "          'mishap': 1,\n",
      "          'fact': 1,\n",
      "          'facial': 1,\n",
      "          'features': 1,\n",
      "          'didnt': 1,\n",
      "          'change': 1,\n",
      "          'looked': 1,\n",
      "          'courtroom': 1,\n",
      "          'holding': 1,\n",
      "          'dead': 1,\n",
      "          'body': 1,\n",
      "          '25years': 1,\n",
      "          'earlier': 1,\n",
      "          'nyet': 1,\n",
      "          'plastered': 1,\n",
      "          'enough': 1,\n",
      "          'look': 1,\n",
      "          'father': 1,\n",
      "          'nat': 1,\n",
      "          'least': 1,\n",
      "          'makeup': 1,\n",
      "          'realistic': 1,\n",
      "          'nwith': 1,\n",
      "          'emotional': 1,\n",
      "          'moments': 1,\n",
      "          'poorly': 1,\n",
      "          'written': 1,\n",
      "          'script': 1,\n",
      "          'lacked': 1,\n",
      "          'heart': 1,\n",
      "          'predecessor': 1,\n",
      "          'brought': 1,\n",
      "          'tears': 1,\n",
      "          'everyones': 1,\n",
      "          'eyes': 1,\n",
      "          'ndont': 1,\n",
      "          'get': 1,\n",
      "          'movie': 1,\n",
      "          'wasnt': 1,\n",
      "          'bad': 1,\n",
      "          'youve': 1,\n",
      "          'seen': 1,\n",
      "          'masterpiece': 1,\n",
      "          'dont': 1,\n",
      "          'expect': 1,\n",
      "          'excellent': 1,\n",
      "          'n': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bus': 4,\n",
      "          'sweet': 3,\n",
      "          'hereafter': 3,\n",
      "          'scene': 3,\n",
      "          'nthe': 3,\n",
      "          'film': 3,\n",
      "          'nits': 3,\n",
      "          'road': 2,\n",
      "          'surface': 2,\n",
      "          'see': 2,\n",
      "          'vehicle': 2,\n",
      "          'slowly': 2,\n",
      "          'like': 2,\n",
      "          'field': 2,\n",
      "          'nit': 2,\n",
      "          'moment': 2,\n",
      "          'bright': 2,\n",
      "          'time': 2,\n",
      "          'canadian': 2,\n",
      "          'children': 2,\n",
      "          'doesnt': 2,\n",
      "          'town': 2,\n",
      "          'parents': 2,\n",
      "          'stephens': 2,\n",
      "          'one': 2,\n",
      "          'towards': 1,\n",
      "          'middle': 1,\n",
      "          'crowded': 1,\n",
      "          'school': 1,\n",
      "          'skids': 1,\n",
      "          'icy': 1,\n",
      "          'rounds': 1,\n",
      "          'bend': 1,\n",
      "          'careens': 1,\n",
      "          'steel': 1,\n",
      "          'guard': 1,\n",
      "          'rail': 1,\n",
      "          'disappears': 1,\n",
      "          'sight': 1,\n",
      "          'nthen': 1,\n",
      "          'long': 1,\n",
      "          'shot': 1,\n",
      "          'sliding': 1,\n",
      "          'across': 1,\n",
      "          'looks': 1,\n",
      "          'snowcovered': 1,\n",
      "          'pauses': 1,\n",
      "          'cracks': 1,\n",
      "          'weight': 1,\n",
      "          'yellow': 1,\n",
      "          'vanishes': 1,\n",
      "          'effortless': 1,\n",
      "          'single': 1,\n",
      "          'smooth': 1,\n",
      "          'second': 1,\n",
      "          'ncompare': 1,\n",
      "          'last': 1,\n",
      "          'eighty': 1,\n",
      "          'minutes': 1,\n",
      "          'titanic': 1,\n",
      "          'behemoth': 1,\n",
      "          'sinks': 1,\n",
      "          'spectacularly': 1,\n",
      "          'watery': 1,\n",
      "          'demise': 1,\n",
      "          'youll': 1,\n",
      "          'appreciate': 1,\n",
      "          'futility': 1,\n",
      "          'comparing': 1,\n",
      "          'greatness': 1,\n",
      "          'films': 1,\n",
      "          'epitomizes': 1,\n",
      "          'thats': 1,\n",
      "          'right': 1,\n",
      "          'independent': 1,\n",
      "          'director': 1,\n",
      "          'atom': 1,\n",
      "          'egoyans': 1,\n",
      "          'sensational': 1,\n",
      "          'nwe': 1,\n",
      "          'dont': 1,\n",
      "          'inside': 1,\n",
      "          'payload': 1,\n",
      "          'screaming': 1,\n",
      "          'terrified': 1,\n",
      "          'bloodied': 1,\n",
      "          'battered': 1,\n",
      "          'explode': 1,\n",
      "          'break': 1,\n",
      "          'thousand': 1,\n",
      "          'tiny': 1,\n",
      "          'pieces': 1,\n",
      "          'simply': 1,\n",
      "          'leaves': 1,\n",
      "          'silently': 1,\n",
      "          'slips': 1,\n",
      "          'beneath': 1,\n",
      "          'frozen': 1,\n",
      "          'lake': 1,\n",
      "          'horrifying': 1,\n",
      "          'sequence': 1,\n",
      "          'made': 1,\n",
      "          'calm': 1,\n",
      "          'distance': 1,\n",
      "          'nusing': 1,\n",
      "          'nonlinear': 1,\n",
      "          'approach': 1,\n",
      "          'narrative': 1,\n",
      "          'egoyan': 1,\n",
      "          'shifts': 1,\n",
      "          'back': 1,\n",
      "          'forward': 1,\n",
      "          'connecting': 1,\n",
      "          'us': 1,\n",
      "          'inhabitants': 1,\n",
      "          'small': 1,\n",
      "          'british': 1,\n",
      "          'columbian': 1,\n",
      "          'severely': 1,\n",
      "          'affected': 1,\n",
      "          'tragedy': 1,\n",
      "          'nfourteen': 1,\n",
      "          'died': 1,\n",
      "          'accident': 1,\n",
      "          'leaving': 1,\n",
      "          'paralyzed': 1,\n",
      "          'grief': 1,\n",
      "          'catalyst': 1,\n",
      "          'center': 1,\n",
      "          'ambulance': 1,\n",
      "          'chaser': 1,\n",
      "          'mitchell': 1,\n",
      "          'wonderfully': 1,\n",
      "          'moving': 1,\n",
      "          'performance': 1,\n",
      "          'ian': 1,\n",
      "          'holm': 1,\n",
      "          'comes': 1,\n",
      "          'sam': 1,\n",
      "          'dent': 1,\n",
      "          'persuade': 1,\n",
      "          'townsfolk': 1,\n",
      "          'engage': 1,\n",
      "          'class': 1,\n",
      "          'action': 1,\n",
      "          'suit': 1,\n",
      "          'nstephens': 1,\n",
      "          'believe': 1,\n",
      "          'accidents': 1,\n",
      "          'functions': 1,\n",
      "          'concerned': 1,\n",
      "          'involved': 1,\n",
      "          'observer': 1,\n",
      "          'scribbling': 1,\n",
      "          'details': 1,\n",
      "          'notebook': 1,\n",
      "          'providing': 1,\n",
      "          'opportunity': 1,\n",
      "          'reach': 1,\n",
      "          'kind': 1,\n",
      "          'closure': 1,\n",
      "          'harrowing': 1,\n",
      "          'aftermath': 1,\n",
      "          'nwhile': 1,\n",
      "          'initial': 1,\n",
      "          'drive': 1,\n",
      "          'may': 1,\n",
      "          'financial': 1,\n",
      "          'third': 1,\n",
      "          'total': 1,\n",
      "          'settlement': 1,\n",
      "          'wins': 1,\n",
      "          'involvement': 1,\n",
      "          'provides': 1,\n",
      "          'outlet': 1,\n",
      "          'come': 1,\n",
      "          'grips': 1,\n",
      "          'loss': 1,\n",
      "          'nhis': 1,\n",
      "          'selfdestructive': 1,\n",
      "          'drugaddicted': 1,\n",
      "          'daughter': 1,\n",
      "          'clinics': 1,\n",
      "          'halfway': 1,\n",
      "          'houses': 1,\n",
      "          'detox': 1,\n",
      "          'units': 1,\n",
      "          'years': 1,\n",
      "          'negoyans': 1,\n",
      "          'attention': 1,\n",
      "          'detail': 1,\n",
      "          'ability': 1,\n",
      "          'establish': 1,\n",
      "          'mood': 1,\n",
      "          'impeccable': 1,\n",
      "          'even': 1,\n",
      "          'sound': 1,\n",
      "          'kettle': 1,\n",
      "          'boiling': 1,\n",
      "          'resonates': 1,\n",
      "          'plaintive': 1,\n",
      "          'cry': 1,\n",
      "          'nmychael': 1,\n",
      "          'danna': 1,\n",
      "          'composed': 1,\n",
      "          'shimmering': 1,\n",
      "          'music': 1,\n",
      "          'ice': 1,\n",
      "          'storm': 1,\n",
      "          'contributes': 1,\n",
      "          'another': 1,\n",
      "          'memorable': 1,\n",
      "          'score': 1,\n",
      "          'shivers': 1,\n",
      "          'tingles': 1,\n",
      "          'nequally': 1,\n",
      "          'impressive': 1,\n",
      "          'paul': 1,\n",
      "          'sarossys': 1,\n",
      "          'cinematography': 1,\n",
      "          'capturing': 1,\n",
      "          'imposing': 1,\n",
      "          'mountainsides': 1,\n",
      "          'lowhanging': 1,\n",
      "          'fogs': 1,\n",
      "          'splendidly': 1,\n",
      "          'shadowy': 1,\n",
      "          'interiorsin': 1,\n",
      "          'wall': 1,\n",
      "          'calendar': 1,\n",
      "          'serves': 1,\n",
      "          'illuminate': 1,\n",
      "          'portions': 1,\n",
      "          'room': 1,\n",
      "          'n': 1,\n",
      "          'undeniably': 1,\n",
      "          'grim': 1,\n",
      "          'urges': 1,\n",
      "          'viewer': 1,\n",
      "          'grab': 1,\n",
      "          'onto': 1,\n",
      "          'life': 1,\n",
      "          'hands': 1,\n",
      "          'let': 1,\n",
      "          'go': 1,\n",
      "          'generous': 1,\n",
      "          'subtlety': 1,\n",
      "          'emotion': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'sam': 6,\n",
      "          'like': 5,\n",
      "          'museum': 5,\n",
      "          'max': 5,\n",
      "          'one': 4,\n",
      "          'job': 3,\n",
      "          'children': 3,\n",
      "          'hostage': 3,\n",
      "          'dont': 3,\n",
      "          'banks': 3,\n",
      "          'enough': 3,\n",
      "          'story': 3,\n",
      "          'news': 3,\n",
      "          'taking': 2,\n",
      "          'group': 2,\n",
      "          'small': 2,\n",
      "          'bit': 2,\n",
      "          'nwhile': 2,\n",
      "          'head': 2,\n",
      "          'shotgun': 2,\n",
      "          'view': 2,\n",
      "          'nthis': 2,\n",
      "          'isnt': 2,\n",
      "          'mad': 2,\n",
      "          'city': 2,\n",
      "          'listen': 2,\n",
      "          'guard': 2,\n",
      "          'cutbacks': 2,\n",
      "          'security': 2,\n",
      "          'sams': 2,\n",
      "          'fully': 2,\n",
      "          'two': 2,\n",
      "          'hes': 2,\n",
      "          'somewhat': 2,\n",
      "          'intentions': 2,\n",
      "          'reporter': 2,\n",
      "          'hoffman': 2,\n",
      "          'couldve': 2,\n",
      "          'network': 2,\n",
      "          'reporting': 2,\n",
      "          'turn': 2,\n",
      "          'nmax': 2,\n",
      "          'even': 2,\n",
      "          'maxs': 2,\n",
      "          'good': 2,\n",
      "          'become': 2,\n",
      "          'nthe': 2,\n",
      "          'media': 2,\n",
      "          'film': 2,\n",
      "          'prosky': 2,\n",
      "          'station': 2,\n",
      "          'falls': 2,\n",
      "          'roles': 2,\n",
      "          'seeing': 2,\n",
      "          'travolta': 2,\n",
      "          'losing': 1,\n",
      "          'uncommon': 1,\n",
      "          'thing': 1,\n",
      "          'nreacting': 1,\n",
      "          'personal': 1,\n",
      "          'setback': 1,\n",
      "          'rare': 1,\n",
      "          'might': 1,\n",
      "          'feel': 1,\n",
      "          'desire': 1,\n",
      "          'blow': 1,\n",
      "          'someones': 1,\n",
      "          'seem': 1,\n",
      "          'grasp': 1,\n",
      "          'point': 1,\n",
      "          'actually': 1,\n",
      "          'threatening': 1,\n",
      "          'usually': 1,\n",
      "          'something': 1,\n",
      "          'avoid': 1,\n",
      "          'case': 1,\n",
      "          'baily': 1,\n",
      "          'john': 1,\n",
      "          'travoltas': 1,\n",
      "          'slightly': 1,\n",
      "          'askew': 1,\n",
      "          'averagejoe': 1,\n",
      "          'persona': 1,\n",
      "          'n': 1,\n",
      "          'think': 1,\n",
      "          'people': 1,\n",
      "          'guys': 1,\n",
      "          'laments': 1,\n",
      "          'exclusive': 1,\n",
      "          'interview': 1,\n",
      "          'behind': 1,\n",
      "          'walls': 1,\n",
      "          'njust': 1,\n",
      "          'days': 1,\n",
      "          'ago': 1,\n",
      "          'led': 1,\n",
      "          'elimination': 1,\n",
      "          'position': 1,\n",
      "          'apprehension': 1,\n",
      "          'resulted': 1,\n",
      "          'brash': 1,\n",
      "          'decision': 1,\n",
      "          'nin': 1,\n",
      "          'effort': 1,\n",
      "          'get': 1,\n",
      "          'exboss': 1,\n",
      "          'director': 1,\n",
      "          'mrs': 1,\n",
      "          'blythe': 1,\n",
      "          'danner': 1,\n",
      "          'barges': 1,\n",
      "          'day': 1,\n",
      "          'equipped': 1,\n",
      "          'loaded': 1,\n",
      "          'uncooperative': 1,\n",
      "          'school': 1,\n",
      "          'nsams': 1,\n",
      "          'overall': 1,\n",
      "          'concern': 1,\n",
      "          'valid': 1,\n",
      "          'loses': 1,\n",
      "          'paycheck': 1,\n",
      "          'benefits': 1,\n",
      "          'etc': 1,\n",
      "          'wife': 1,\n",
      "          'wont': 1,\n",
      "          'provided': 1,\n",
      "          'nhes': 1,\n",
      "          'lunatic': 1,\n",
      "          'hottempered': 1,\n",
      "          'madman': 1,\n",
      "          'child': 1,\n",
      "          'panicky': 1,\n",
      "          'compulsive': 1,\n",
      "          'running': 1,\n",
      "          'emotion': 1,\n",
      "          'naive': 1,\n",
      "          'arent': 1,\n",
      "          'helped': 1,\n",
      "          'fact': 1,\n",
      "          'wasnt': 1,\n",
      "          'overly': 1,\n",
      "          'compassionate': 1,\n",
      "          'let': 1,\n",
      "          'go': 1,\n",
      "          'noverall': 1,\n",
      "          'except': 1,\n",
      "          'capacity': 1,\n",
      "          'line': 1,\n",
      "          'wed': 1,\n",
      "          'deem': 1,\n",
      "          'far': 1,\n",
      "          'starting': 1,\n",
      "          'mark': 1,\n",
      "          'crazy': 1,\n",
      "          'race': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'television': 1,\n",
      "          'brackett': 1,\n",
      "          'dustin': 1,\n",
      "          'also': 1,\n",
      "          'scene': 1,\n",
      "          'ncovering': 1,\n",
      "          'fluff': 1,\n",
      "          'evening': 1,\n",
      "          'concerning': 1,\n",
      "          'suddenly': 1,\n",
      "          'finds': 1,\n",
      "          'middle': 1,\n",
      "          'biggestbreaking': 1,\n",
      "          'ever': 1,\n",
      "          'hoped': 1,\n",
      "          'nhaving': 1,\n",
      "          'demoted': 1,\n",
      "          'newsman': 1,\n",
      "          'smalltime': 1,\n",
      "          'affiliate': 1,\n",
      "          'anxious': 1,\n",
      "          'immediately': 1,\n",
      "          'bonds': 1,\n",
      "          'coaches': 1,\n",
      "          'thru': 1,\n",
      "          'negotiations': 1,\n",
      "          'writes': 1,\n",
      "          'scripts': 1,\n",
      "          'use': 1,\n",
      "          'police': 1,\n",
      "          'phone': 1,\n",
      "          'nat': 1,\n",
      "          'first': 1,\n",
      "          'stretch': 1,\n",
      "          'beyond': 1,\n",
      "          'high': 1,\n",
      "          'ratings': 1,\n",
      "          'boost': 1,\n",
      "          'ole': 1,\n",
      "          'pride': 1,\n",
      "          'factor': 1,\n",
      "          'gets': 1,\n",
      "          'know': 1,\n",
      "          'personally': 1,\n",
      "          'begins': 1,\n",
      "          'sympathize': 1,\n",
      "          'advocate': 1,\n",
      "          'however': 1,\n",
      "          'creating': 1,\n",
      "          'frenzy': 1,\n",
      "          'leaves': 1,\n",
      "          'fickle': 1,\n",
      "          'public': 1,\n",
      "          'shifting': 1,\n",
      "          'gears': 1,\n",
      "          'often': 1,\n",
      "          'diesel': 1,\n",
      "          'truck': 1,\n",
      "          'moving': 1,\n",
      "          'downhill': 1,\n",
      "          'accidental': 1,\n",
      "          'shooting': 1,\n",
      "          'exco': 1,\n",
      "          'worker': 1,\n",
      "          'cliff': 1,\n",
      "          'bill': 1,\n",
      "          'nunn': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'black': 1,\n",
      "          'becomes': 1,\n",
      "          'main': 1,\n",
      "          'factors': 1,\n",
      "          'controversy': 1,\n",
      "          'honest': 1,\n",
      "          'ambitions': 1,\n",
      "          'nalso': 1,\n",
      "          'involved': 1,\n",
      "          'robert': 1,\n",
      "          'lou': 1,\n",
      "          'potts': 1,\n",
      "          'department': 1,\n",
      "          'directly': 1,\n",
      "          'alan': 1,\n",
      "          'alda': 1,\n",
      "          'nationally': 1,\n",
      "          'famed': 1,\n",
      "          'kevin': 1,\n",
      "          'hollander': 1,\n",
      "          'uses': 1,\n",
      "          'power': 1,\n",
      "          'try': 1,\n",
      "          'outshine': 1,\n",
      "          'nalda': 1,\n",
      "          'fine': 1,\n",
      "          'performances': 1,\n",
      "          'fit': 1,\n",
      "          'gloves': 1,\n",
      "          'acting': 1,\n",
      "          'abilities': 1,\n",
      "          'nthen': 1,\n",
      "          'mia': 1,\n",
      "          'kirshner': 1,\n",
      "          'plays': 1,\n",
      "          'young': 1,\n",
      "          'tv': 1,\n",
      "          'intern': 1,\n",
      "          'laurie': 1,\n",
      "          'nshe': 1,\n",
      "          'wings': 1,\n",
      "          'student': 1,\n",
      "          'taught': 1,\n",
      "          'well': 1,\n",
      "          'way': 1,\n",
      "          'sensationalistic': 1,\n",
      "          'nkirshners': 1,\n",
      "          'credits': 1,\n",
      "          'relatively': 1,\n",
      "          'including': 1,\n",
      "          'films': 1,\n",
      "          'exotica': 1,\n",
      "          'forgettable': 1,\n",
      "          'sequel': 1,\n",
      "          'crow': 1,\n",
      "          'nstill': 1,\n",
      "          'kirshners': 1,\n",
      "          'character': 1,\n",
      "          'transformation': 1,\n",
      "          'shows': 1,\n",
      "          'shining': 1,\n",
      "          'ability': 1,\n",
      "          'play': 1,\n",
      "          'girl': 1,\n",
      "          'kindabitchyinareservedway': 1,\n",
      "          'ni': 1,\n",
      "          'wouldnt': 1,\n",
      "          'mind': 1,\n",
      "          'prevalent': 1,\n",
      "          'parts': 1,\n",
      "          'perhaps': 1,\n",
      "          'talent': 1,\n",
      "          'able': 1,\n",
      "          'blossom': 1,\n",
      "          'onscreen': 1,\n",
      "          'viewpoint': 1,\n",
      "          'greedy': 1,\n",
      "          'selfrighteous': 1,\n",
      "          'monster': 1,\n",
      "          'indeed': 1,\n",
      "          'tackled': 1,\n",
      "          'provides': 1,\n",
      "          'solid': 1,\n",
      "          'hours': 1,\n",
      "          'enjoyability': 1,\n",
      "          'nhoffman': 1,\n",
      "          'excellent': 1,\n",
      "          'actors': 1,\n",
      "          'together': 1,\n",
      "          'real': 1,\n",
      "          'treat': 1,\n",
      "          'nthey': 1,\n",
      "          'great': 1,\n",
      "          'smoothly': 1,\n",
      "          'naturally': 1,\n",
      "          'becoming': 1,\n",
      "          'characters': 1,\n",
      "          'provide': 1,\n",
      "          'chemistry': 1,\n",
      "          'us': 1,\n",
      "          'genuinely': 1,\n",
      "          'care': 1,\n",
      "          'nthere': 1,\n",
      "          'quite': 1,\n",
      "          'humor': 1,\n",
      "          'without': 1,\n",
      "          'fallen': 1,\n",
      "          'drab': 1,\n",
      "          'cliched': 1,\n",
      "          'social': 1,\n",
      "          'statement': 1,\n",
      "          'likely': 1,\n",
      "          'garner': 1,\n",
      "          'sleep': 1,\n",
      "          'audience': 1,\n",
      "          'applause': 1,\n",
      "          'flick': 1,\n",
      "          'grip': 1,\n",
      "          'funny': 1,\n",
      "          'bone': 1,\n",
      "          'heart': 1,\n",
      "          'lightly': 1,\n",
      "          'touch': 1,\n",
      "          'making': 1,\n",
      "          'recommendable': 1,\n",
      "          'movie': 1,\n",
      "          'nif': 1,\n",
      "          'nothing': 1,\n",
      "          'opportunity': 1,\n",
      "          'watch': 1,\n",
      "          'time': 1,\n",
      "          'urge': 1,\n",
      "          'check': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 25,\n",
      "          'see': 14,\n",
      "          'one': 13,\n",
      "          'nand': 11,\n",
      "          'nthe': 10,\n",
      "          'things': 9,\n",
      "          'plot': 9,\n",
      "          'may': 8,\n",
      "          'way': 7,\n",
      "          'nits': 7,\n",
      "          'n': 6,\n",
      "          'campbell': 6,\n",
      "          'performance': 6,\n",
      "          'r': 6,\n",
      "          'sex': 6,\n",
      "          'even': 6,\n",
      "          'much': 5,\n",
      "          'like': 5,\n",
      "          'love': 5,\n",
      "          'nwild': 5,\n",
      "          'good': 5,\n",
      "          'watch': 5,\n",
      "          'want': 5,\n",
      "          'time': 5,\n",
      "          'probably': 5,\n",
      "          'scenes': 5,\n",
      "          'wild': 4,\n",
      "          'neve': 4,\n",
      "          'nearly': 4,\n",
      "          'rating': 4,\n",
      "          'nhowever': 4,\n",
      "          'rich': 4,\n",
      "          'people': 4,\n",
      "          'dont': 4,\n",
      "          'get': 4,\n",
      "          'sam': 4,\n",
      "          'also': 4,\n",
      "          'richards': 4,\n",
      "          'bacon': 4,\n",
      "          'nthis': 4,\n",
      "          'though': 4,\n",
      "          'think': 4,\n",
      "          'pleased': 3,\n",
      "          'scream': 3,\n",
      "          'day': 3,\n",
      "          'films': 3,\n",
      "          'cast': 3,\n",
      "          'seen': 3,\n",
      "          'yet': 3,\n",
      "          'actors': 3,\n",
      "          'gorgeous': 3,\n",
      "          'tell': 3,\n",
      "          'begins': 3,\n",
      "          'almost': 3,\n",
      "          'doesnt': 3,\n",
      "          'denise': 3,\n",
      "          'however': 3,\n",
      "          'none': 3,\n",
      "          'give': 3,\n",
      "          'twists': 3,\n",
      "          'surprises': 3,\n",
      "          'murray': 3,\n",
      "          'best': 3,\n",
      "          'character': 3,\n",
      "          'although': 3,\n",
      "          'graphic': 3,\n",
      "          'long': 3,\n",
      "          'first': 3,\n",
      "          'role': 3,\n",
      "          'range': 3,\n",
      "          'around': 3,\n",
      "          'nhis': 3,\n",
      "          'credits': 3,\n",
      "          'left': 2,\n",
      "          'newspaper': 2,\n",
      "          'gives': 2,\n",
      "          'twisty': 2,\n",
      "          'yeah': 2,\n",
      "          'rules': 2,\n",
      "          'mpaa': 2,\n",
      "          'let': 2,\n",
      "          'bound': 2,\n",
      "          '90s': 2,\n",
      "          'filled': 2,\n",
      "          'pool': 2,\n",
      "          'fun': 2,\n",
      "          'movies': 2,\n",
      "          'along': 2,\n",
      "          'nthere': 2,\n",
      "          'high': 2,\n",
      "          'school': 2,\n",
      "          'would': 2,\n",
      "          'students': 2,\n",
      "          'put': 2,\n",
      "          'course': 2,\n",
      "          'slightly': 2,\n",
      "          'average': 2,\n",
      "          'tone': 2,\n",
      "          'turn': 2,\n",
      "          'right': 2,\n",
      "          'thing': 2,\n",
      "          'characters': 2,\n",
      "          'ntheres': 2,\n",
      "          'matt': 2,\n",
      "          'dillon': 2,\n",
      "          'class': 2,\n",
      "          'kelly': 2,\n",
      "          'two': 2,\n",
      "          'kevin': 2,\n",
      "          'daphne': 2,\n",
      "          'rubinvega': 2,\n",
      "          'student': 2,\n",
      "          'pretty': 2,\n",
      "          'sets': 2,\n",
      "          'part': 2,\n",
      "          'nshe': 2,\n",
      "          'thats': 2,\n",
      "          'away': 2,\n",
      "          'many': 2,\n",
      "          'actually': 2,\n",
      "          'ngoing': 2,\n",
      "          'genuine': 2,\n",
      "          'rather': 2,\n",
      "          'boundaries': 2,\n",
      "          'convoluted': 2,\n",
      "          'us': 2,\n",
      "          'twist': 2,\n",
      "          'nas': 2,\n",
      "          'trashy': 2,\n",
      "          'hard': 2,\n",
      "          'includes': 2,\n",
      "          'mother': 2,\n",
      "          'bill': 2,\n",
      "          'movie': 2,\n",
      "          'heterosexual': 2,\n",
      "          'quite': 2,\n",
      "          'scene': 2,\n",
      "          'judging': 2,\n",
      "          'makes': 2,\n",
      "          'nneve': 2,\n",
      "          'nhere': 2,\n",
      "          'every': 2,\n",
      "          'done': 2,\n",
      "          'nyou': 2,\n",
      "          'works': 2,\n",
      "          'home': 2,\n",
      "          'wonderfully': 2,\n",
      "          'take': 2,\n",
      "          'ending': 2,\n",
      "          'use': 2,\n",
      "          'explain': 2,\n",
      "          'rated': 2,\n",
      "          'nudity': 2,\n",
      "          'language': 2,\n",
      "          '18': 2,\n",
      "          'wanted': 1,\n",
      "          'went': 1,\n",
      "          'nfirst': 1,\n",
      "          'getting': 1,\n",
      "          'usual': 1,\n",
      "          'lines': 1,\n",
      "          'glitz': 1,\n",
      "          'liked': 1,\n",
      "          'youll': 1,\n",
      "          'stunning': 1,\n",
      "          'dazzled': 1,\n",
      "          'days': 1,\n",
      "          'oh': 1,\n",
      "          'uses': 1,\n",
      "          'falls': 1,\n",
      "          'nnow': 1,\n",
      "          'onto': 1,\n",
      "          'serious': 1,\n",
      "          'stuff': 1,\n",
      "          'mean': 1,\n",
      "          'sarcastic': 1,\n",
      "          'singlehandedly': 1,\n",
      "          'broken': 1,\n",
      "          'surrounding': 1,\n",
      "          'nim': 1,\n",
      "          'saying': 1,\n",
      "          'bad': 1,\n",
      "          'shocked': 1,\n",
      "          'perhaps': 1,\n",
      "          'charming': 1,\n",
      "          'tricky': 1,\n",
      "          'slide': 1,\n",
      "          'nbeing': 1,\n",
      "          'mormon': 1,\n",
      "          'im': 1,\n",
      "          'hear': 1,\n",
      "          'uproar': 1,\n",
      "          'religious': 1,\n",
      "          'zealots': 1,\n",
      "          'warning': 1,\n",
      "          'ntrouble': 1,\n",
      "          'already': 1,\n",
      "          'noir': 1,\n",
      "          '40s': 1,\n",
      "          'sensibilities': 1,\n",
      "          'breaking': 1,\n",
      "          'modernday': 1,\n",
      "          'taboos': 1,\n",
      "          'culture': 1,\n",
      "          'style': 1,\n",
      "          'filmed': 1,\n",
      "          'color': 1,\n",
      "          'seemingly': 1,\n",
      "          'drawn': 1,\n",
      "          'gene': 1,\n",
      "          'placed': 1,\n",
      "          'nsure': 1,\n",
      "          'true': 1,\n",
      "          'aint': 1,\n",
      "          'nwhen': 1,\n",
      "          'come': 1,\n",
      "          'sort': 1,\n",
      "          'better': 1,\n",
      "          'version': 1,\n",
      "          'basic': 1,\n",
      "          'instinct': 1,\n",
      "          'either': 1,\n",
      "          'hate': 1,\n",
      "          'admit': 1,\n",
      "          'liking': 1,\n",
      "          'anyone': 1,\n",
      "          'sees': 1,\n",
      "          'blue': 1,\n",
      "          'bay': 1,\n",
      "          'world': 1,\n",
      "          'teenager': 1,\n",
      "          'entrance': 1,\n",
      "          'exams': 1,\n",
      "          'admittance': 1,\n",
      "          'totally': 1,\n",
      "          'based': 1,\n",
      "          'looks': 1,\n",
      "          'alone': 1,\n",
      "          'nof': 1,\n",
      "          'select': 1,\n",
      "          'look': 1,\n",
      "          'ugly': 1,\n",
      "          'compared': 1,\n",
      "          'person': 1,\n",
      "          'nimmediately': 1,\n",
      "          'finds': 1,\n",
      "          'audience': 1,\n",
      "          'settles': 1,\n",
      "          'enjoyable': 1,\n",
      "          'nwe': 1,\n",
      "          'brains': 1,\n",
      "          'nwrong': 1,\n",
      "          'nwhile': 1,\n",
      "          'expecting': 1,\n",
      "          'happen': 1,\n",
      "          'certainly': 1,\n",
      "          'classroom': 1,\n",
      "          'main': 1,\n",
      "          'present': 1,\n",
      "          'lombardo': 1,\n",
      "          'counselor': 1,\n",
      "          'nhes': 1,\n",
      "          'heading': 1,\n",
      "          'discussion': 1,\n",
      "          'van': 1,\n",
      "          'ryan': 1,\n",
      "          'snobby': 1,\n",
      "          'teen': 1,\n",
      "          'fallen': 1,\n",
      "          'nteaching': 1,\n",
      "          'policemen': 1,\n",
      "          'ray': 1,\n",
      "          'duquette': 1,\n",
      "          'gloria': 1,\n",
      "          'perez': 1,\n",
      "          'talk': 1,\n",
      "          'cheers': 1,\n",
      "          'crimes': 1,\n",
      "          'boos': 1,\n",
      "          'crime': 1,\n",
      "          'nray': 1,\n",
      "          'asks': 1,\n",
      "          'gettin': 1,\n",
      "          'responds': 1,\n",
      "          'upon': 1,\n",
      "          'hearing': 1,\n",
      "          'suzie': 1,\n",
      "          'toller': 1,\n",
      "          'stands': 1,\n",
      "          'leaves': 1,\n",
      "          'room': 1,\n",
      "          'commenting': 1,\n",
      "          'kiss': 1,\n",
      "          'body': 1,\n",
      "          'motion': 1,\n",
      "          'nquickly': 1,\n",
      "          'hitting': 1,\n",
      "          'anything': 1,\n",
      "          'advances': 1,\n",
      "          'nkelly': 1,\n",
      "          'stubborn': 1,\n",
      "          'continues': 1,\n",
      "          'pursue': 1,\n",
      "          'pleads': 1,\n",
      "          'wash': 1,\n",
      "          'jeep': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'really': 1,\n",
      "          'nany': 1,\n",
      "          'crucial': 1,\n",
      "          'whats': 1,\n",
      "          'unpredictable': 1,\n",
      "          'maintains': 1,\n",
      "          'adds': 1,\n",
      "          'ever': 1,\n",
      "          'tired': 1,\n",
      "          'pleasing': 1,\n",
      "          'back': 1,\n",
      "          'mind': 1,\n",
      "          'work': 1,\n",
      "          'stretch': 1,\n",
      "          'belief': 1,\n",
      "          'nthankfully': 1,\n",
      "          'pouncing': 1,\n",
      "          'another': 1,\n",
      "          'shock': 1,\n",
      "          'previous': 1,\n",
      "          'worn': 1,\n",
      "          'critics': 1,\n",
      "          'complain': 1,\n",
      "          'trashywell': 1,\n",
      "          'kind': 1,\n",
      "          'isnt': 1,\n",
      "          'trash': 1,\n",
      "          'sense': 1,\n",
      "          'screenplay': 1,\n",
      "          'knows': 1,\n",
      "          'taken': 1,\n",
      "          'seriously': 1,\n",
      "          'lot': 1,\n",
      "          'humor': 1,\n",
      "          'satire': 1,\n",
      "          'story': 1,\n",
      "          'varies': 1,\n",
      "          'everywhere': 1,\n",
      "          'kellys': 1,\n",
      "          'theresa': 1,\n",
      "          'russell': 1,\n",
      "          'caricature': 1,\n",
      "          'ambulancechasing': 1,\n",
      "          'lawyer': 1,\n",
      "          'wears': 1,\n",
      "          'neckbrace': 1,\n",
      "          'cover': 1,\n",
      "          'insurance': 1,\n",
      "          'scam': 1,\n",
      "          'running': 1,\n",
      "          'nbill': 1,\n",
      "          'provides': 1,\n",
      "          'laughs': 1,\n",
      "          'gratuitous': 1,\n",
      "          'unwelcomed': 1,\n",
      "          'supposed': 1,\n",
      "          'title': 1,\n",
      "          'wouldnt': 1,\n",
      "          'breaks': 1,\n",
      "          'ninstead': 1,\n",
      "          'lesbian': 1,\n",
      "          'worry': 1,\n",
      "          'might': 1,\n",
      "          'surprise': 1,\n",
      "          'shocker': 1,\n",
      "          'bacons': 1,\n",
      "          'fullfrontal': 1,\n",
      "          'nude': 1,\n",
      "          'brief': 1,\n",
      "          'blink': 1,\n",
      "          'miss': 1,\n",
      "          'ahem': 1,\n",
      "          'remember': 1,\n",
      "          'rrated': 1,\n",
      "          'show': 1,\n",
      "          'erect': 1,\n",
      "          'completely': 1,\n",
      "          'audiences': 1,\n",
      "          'reaction': 1,\n",
      "          'expected': 1,\n",
      "          'nalso': 1,\n",
      "          'late': 1,\n",
      "          'seemed': 1,\n",
      "          'relationship': 1,\n",
      "          'brewing': 1,\n",
      "          'dillons': 1,\n",
      "          'nothing': 1,\n",
      "          'came': 1,\n",
      "          'wonder': 1,\n",
      "          'director': 1,\n",
      "          'cut': 1,\n",
      "          'order': 1,\n",
      "          'refused': 1,\n",
      "          'nwhat': 1,\n",
      "          'made': 1,\n",
      "          'favorite': 1,\n",
      "          'actresses': 1,\n",
      "          'since': 1,\n",
      "          'released': 1,\n",
      "          'turns': 1,\n",
      "          'typical': 1,\n",
      "          'head': 1,\n",
      "          'plays': 1,\n",
      "          'gothic': 1,\n",
      "          'pothead': 1,\n",
      "          'closest': 1,\n",
      "          'craft': 1,\n",
      "          'nice': 1,\n",
      "          'girl': 1,\n",
      "          'ncampbell': 1,\n",
      "          'shows': 1,\n",
      "          'wide': 1,\n",
      "          'talent': 1,\n",
      "          'ndenise': 1,\n",
      "          'limited': 1,\n",
      "          'roles': 1,\n",
      "          'without': 1,\n",
      "          'gets': 1,\n",
      "          'express': 1,\n",
      "          'emotions': 1,\n",
      "          'stiff': 1,\n",
      "          'effective': 1,\n",
      "          'starship': 1,\n",
      "          'troopers': 1,\n",
      "          'nhopefully': 1,\n",
      "          'land': 1,\n",
      "          'display': 1,\n",
      "          'ability': 1,\n",
      "          'newcomer': 1,\n",
      "          'mostly': 1,\n",
      "          'background': 1,\n",
      "          'hour': 1,\n",
      "          'half': 1,\n",
      "          'ntowards': 1,\n",
      "          'end': 1,\n",
      "          'bigger': 1,\n",
      "          'non': 1,\n",
      "          'male': 1,\n",
      "          'side': 1,\n",
      "          'giving': 1,\n",
      "          'subtle': 1,\n",
      "          'nkevin': 1,\n",
      "          'wooden': 1,\n",
      "          'must': 1,\n",
      "          'admiration': 1,\n",
      "          'screen': 1,\n",
      "          'womens': 1,\n",
      "          'reactions': 1,\n",
      "          'theater': 1,\n",
      "          'shot': 1,\n",
      "          'grown': 1,\n",
      "          'deeper': 1,\n",
      "          'appreciation': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'steals': 1,\n",
      "          'whole': 1,\n",
      "          'entire': 1,\n",
      "          'wondrously': 1,\n",
      "          'together': 1,\n",
      "          'seem': 1,\n",
      "          'menage': 1,\n",
      "          'troi': 1,\n",
      "          'ndirector': 1,\n",
      "          'john': 1,\n",
      "          'mcnaughton': 1,\n",
      "          'previously': 1,\n",
      "          'critically': 1,\n",
      "          'acclaimed': 1,\n",
      "          'henry': 1,\n",
      "          'portrait': 1,\n",
      "          'serial': 1,\n",
      "          'killer': 1,\n",
      "          'constructed': 1,\n",
      "          'direction': 1,\n",
      "          'smooth': 1,\n",
      "          'stylish': 1,\n",
      "          'visuals': 1,\n",
      "          'striking': 1,\n",
      "          'colors': 1,\n",
      "          'realistic': 1,\n",
      "          'breathe': 1,\n",
      "          'humidity': 1,\n",
      "          'air': 1,\n",
      "          'seems': 1,\n",
      "          'arent': 1,\n",
      "          'talking': 1,\n",
      "          'flyby': 1,\n",
      "          'shots': 1,\n",
      "          'swampy': 1,\n",
      "          'areas': 1,\n",
      "          'brilliant': 1,\n",
      "          'photography': 1,\n",
      "          'climbing': 1,\n",
      "          'highlight': 1,\n",
      "          'cinematography': 1,\n",
      "          'details': 1,\n",
      "          'often': 1,\n",
      "          'camera': 1,\n",
      "          'pictures': 1,\n",
      "          'nthen': 1,\n",
      "          'music': 1,\n",
      "          'obvious': 1,\n",
      "          'set': 1,\n",
      "          'perfect': 1,\n",
      "          'mood': 1,\n",
      "          'describe': 1,\n",
      "          'words': 1,\n",
      "          'listen': 1,\n",
      "          'composed': 1,\n",
      "          'presented': 1,\n",
      "          'sure': 1,\n",
      "          'stick': 1,\n",
      "          'closing': 1,\n",
      "          'nmcnaughton': 1,\n",
      "          'finally': 1,\n",
      "          'comedies': 1,\n",
      "          'outtakes': 1,\n",
      "          'nhe': 1,\n",
      "          'included': 1,\n",
      "          'small': 1,\n",
      "          'help': 1,\n",
      "          'preceding': 1,\n",
      "          'events': 1,\n",
      "          'nsome': 1,\n",
      "          'say': 1,\n",
      "          'lame': 1,\n",
      "          'attempts': 1,\n",
      "          'entertaining': 1,\n",
      "          'finish': 1,\n",
      "          'nplus': 1,\n",
      "          'shocking': 1,\n",
      "          'moments': 1,\n",
      "          'add': 1,\n",
      "          'appropriately': 1,\n",
      "          'strong': 1,\n",
      "          'sexuality': 1,\n",
      "          'violence': 1,\n",
      "          'nagain': 1,\n",
      "          'unnecessary': 1,\n",
      "          'lets': 1,\n",
      "          'face': 1,\n",
      "          'itpeople': 1,\n",
      "          'nso': 1,\n",
      "          'admirably': 1,\n",
      "          'nonudity': 1,\n",
      "          'clause': 1,\n",
      "          'contract': 1,\n",
      "          'behind': 1,\n",
      "          'takes': 1,\n",
      "          'top': 1,\n",
      "          'go': 1,\n",
      "          'especially': 1,\n",
      "          'deck': 1,\n",
      "          'hands': 1,\n",
      "          'wonders': 1,\n",
      "          'got': 1,\n",
      "          'harsh': 1,\n",
      "          'ranging': 1,\n",
      "          'sexual': 1,\n",
      "          'innuendo': 1,\n",
      "          'everyday': 1,\n",
      "          'profanity': 1,\n",
      "          'cant': 1,\n",
      "          'stress': 1,\n",
      "          'enough': 1,\n",
      "          'allow': 1,\n",
      "          'kids': 1,\n",
      "          'target': 1,\n",
      "          'age': 1,\n",
      "          '1824': 1,\n",
      "          'definitely': 1,\n",
      "          'ndid': 1,\n",
      "          'mention': 1,\n",
      "          'chance': 1,\n",
      "          'likely': 1,\n",
      "          'friends': 1,\n",
      "          'next': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 9,\n",
      "          'postman': 7,\n",
      "          'film': 6,\n",
      "          'michael': 4,\n",
      "          'redman': 4,\n",
      "          'costner': 4,\n",
      "          'nits': 4,\n",
      "          'like': 4,\n",
      "          'army': 4,\n",
      "          'bethlehem': 4,\n",
      "          'postal': 4,\n",
      "          'many': 3,\n",
      "          'kevin': 3,\n",
      "          'year': 3,\n",
      "          'things': 3,\n",
      "          'world': 3,\n",
      "          'nalthough': 3,\n",
      "          'even': 3,\n",
      "          'mail': 3,\n",
      "          'way': 3,\n",
      "          'new': 3,\n",
      "          'movie': 3,\n",
      "          'films': 3,\n",
      "          'hope': 2,\n",
      "          'neven': 2,\n",
      "          'worse': 2,\n",
      "          'waterworld': 2,\n",
      "          '2013': 2,\n",
      "          'war': 2,\n",
      "          'united': 2,\n",
      "          'states': 2,\n",
      "          'never': 2,\n",
      "          'land': 2,\n",
      "          'general': 2,\n",
      "          'called': 2,\n",
      "          'come': 2,\n",
      "          'form': 2,\n",
      "          'child': 2,\n",
      "          'husband': 2,\n",
      "          'rest': 2,\n",
      "          'become': 2,\n",
      "          'express': 2,\n",
      "          'service': 2,\n",
      "          'holnists': 2,\n",
      "          'costners': 2,\n",
      "          'civilization': 2,\n",
      "          'seems': 2,\n",
      "          'beyond': 2,\n",
      "          'nthere': 2,\n",
      "          'evil': 2,\n",
      "          'much': 2,\n",
      "          'takes': 2,\n",
      "          'years': 2,\n",
      "          'federal': 2,\n",
      "          'government': 2,\n",
      "          'audience': 2,\n",
      "          'going': 2,\n",
      "          'delivers': 1,\n",
      "          'first': 1,\n",
      "          'class': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1997': 1,\n",
      "          'nwarning': 1,\n",
      "          'opinion': 1,\n",
      "          'definitely': 1,\n",
      "          'minority': 1,\n",
      "          'reviewers': 1,\n",
      "          'perhaps': 1,\n",
      "          'hits': 1,\n",
      "          'cinematic': 1,\n",
      "          'buttons': 1,\n",
      "          'postapocalypse': 1,\n",
      "          'stories': 1,\n",
      "          'desperate': 1,\n",
      "          'situation': 1,\n",
      "          'grassroots': 1,\n",
      "          'uprisings': 1,\n",
      "          'thought': 1,\n",
      "          'watchable': 1,\n",
      "          'nread': 1,\n",
      "          'following': 1,\n",
      "          'particular': 1,\n",
      "          'grains': 1,\n",
      "          'salt': 1,\n",
      "          'fallen': 1,\n",
      "          'apart': 1,\n",
      "          'ndue': 1,\n",
      "          'late': 1,\n",
      "          'nineties': 1,\n",
      "          'resulting': 1,\n",
      "          'threeyear': 1,\n",
      "          'winter': 1,\n",
      "          'devastating': 1,\n",
      "          'plague': 1,\n",
      "          'life': 1,\n",
      "          'former': 1,\n",
      "          'reduced': 1,\n",
      "          'isolated': 1,\n",
      "          'primitive': 1,\n",
      "          'fiefdoms': 1,\n",
      "          'future': 1,\n",
      "          'looks': 1,\n",
      "          'western': 1,\n",
      "          'nas': 1,\n",
      "          'opens': 1,\n",
      "          'characters': 1,\n",
      "          'name': 1,\n",
      "          'revealed': 1,\n",
      "          'wandering': 1,\n",
      "          'utah': 1,\n",
      "          'wastelands': 1,\n",
      "          'mule': 1,\n",
      "          'bill': 1,\n",
      "          'company': 1,\n",
      "          'ngiving': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'bad': 1,\n",
      "          'shakespearean': 1,\n",
      "          'performances': 1,\n",
      "          'exchange': 1,\n",
      "          'food': 1,\n",
      "          'lodging': 1,\n",
      "          'outsider': 1,\n",
      "          'outsiders': 1,\n",
      "          'nrunning': 1,\n",
      "          'luck': 1,\n",
      "          'forcibly': 1,\n",
      "          'conscripted': 1,\n",
      "          'racially': 1,\n",
      "          'pure': 1,\n",
      "          'holnist': 1,\n",
      "          'patton': 1,\n",
      "          'ragtag': 1,\n",
      "          'retrofuturistic': 1,\n",
      "          'cavalry': 1,\n",
      "          'descendent': 1,\n",
      "          'militia': 1,\n",
      "          'groups': 1,\n",
      "          'clan': 1,\n",
      "          'nafter': 1,\n",
      "          'brutal': 1,\n",
      "          'boot': 1,\n",
      "          'camp': 1,\n",
      "          'see': 1,\n",
      "          'coming': 1,\n",
      "          'mile': 1,\n",
      "          'away': 1,\n",
      "          'escapes': 1,\n",
      "          'ntaking': 1,\n",
      "          'shelter': 1,\n",
      "          'wrecked': 1,\n",
      "          'truck': 1,\n",
      "          'liberates': 1,\n",
      "          'uniform': 1,\n",
      "          'bag': 1,\n",
      "          'skeleton': 1,\n",
      "          'cab': 1,\n",
      "          'longer': 1,\n",
      "          'use': 1,\n",
      "          'either': 1,\n",
      "          'nonce': 1,\n",
      "          'reaches': 1,\n",
      "          'oregon': 1,\n",
      "          'beautiful': 1,\n",
      "          'women': 1,\n",
      "          'bright': 1,\n",
      "          'youngsters': 1,\n",
      "          'rock': 1,\n",
      "          'roll': 1,\n",
      "          'pretends': 1,\n",
      "          'representative': 1,\n",
      "          'restored': 1,\n",
      "          'congress': 1,\n",
      "          'america': 1,\n",
      "          'nthis': 1,\n",
      "          'scam': 1,\n",
      "          'gets': 1,\n",
      "          'inside': 1,\n",
      "          'walled': 1,\n",
      "          'towns': 1,\n",
      "          'promise': 1,\n",
      "          'delivery': 1,\n",
      "          'renews': 1,\n",
      "          'optimism': 1,\n",
      "          'hearts': 1,\n",
      "          'inhabitants': 1,\n",
      "          'nfood': 1,\n",
      "          'opportunities': 1,\n",
      "          'spirited': 1,\n",
      "          'abby': 1,\n",
      "          'olivia': 1,\n",
      "          'williams': 1,\n",
      "          'wants': 1,\n",
      "          'father': 1,\n",
      "          'sterile': 1,\n",
      "          'nshortly': 1,\n",
      "          'killed': 1,\n",
      "          'referred': 1,\n",
      "          'reluctant': 1,\n",
      "          'item': 1,\n",
      "          'knows': 1,\n",
      "          'hes': 1,\n",
      "          'running': 1,\n",
      "          'fraud': 1,\n",
      "          'concept': 1,\n",
      "          'renewed': 1,\n",
      "          'communications': 1,\n",
      "          'sets': 1,\n",
      "          'kids': 1,\n",
      "          'imagination': 1,\n",
      "          'afire': 1,\n",
      "          'especially': 1,\n",
      "          'ford': 1,\n",
      "          'lincoln': 1,\n",
      "          'mercury': 1,\n",
      "          'larenz': 1,\n",
      "          'tate': 1,\n",
      "          'secondincommand': 1,\n",
      "          'pony': 1,\n",
      "          'dedicated': 1,\n",
      "          'getting': 1,\n",
      "          'revived': 1,\n",
      "          'doubles': 1,\n",
      "          'fight': 1,\n",
      "          'tyranny': 1,\n",
      "          'symbol': 1,\n",
      "          'rube': 1,\n",
      "          'goldberg': 1,\n",
      "          'manner': 1,\n",
      "          'appeals': 1,\n",
      "          'sensibilities': 1,\n",
      "          'wrong': 1,\n",
      "          'hardly': 1,\n",
      "          'counted': 1,\n",
      "          'derivitive': 1,\n",
      "          'clint': 1,\n",
      "          'eastwood': 1,\n",
      "          'westerns': 1,\n",
      "          'ntheres': 1,\n",
      "          'little': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'dozens': 1,\n",
      "          'times': 1,\n",
      "          'often': 1,\n",
      "          'downright': 1,\n",
      "          'corny': 1,\n",
      "          'na': 1,\n",
      "          'scene': 1,\n",
      "          'horseback': 1,\n",
      "          'grabs': 1,\n",
      "          'letter': 1,\n",
      "          'hands': 1,\n",
      "          'brighteyed': 1,\n",
      "          'embarrassing': 1,\n",
      "          'slowmotion': 1,\n",
      "          'banality': 1,\n",
      "          'final': 1,\n",
      "          'minutes': 1,\n",
      "          'left': 1,\n",
      "          'cutting': 1,\n",
      "          'room': 1,\n",
      "          'floor': 1,\n",
      "          'ndespite': 1,\n",
      "          'excessive': 1,\n",
      "          'three': 1,\n",
      "          'hour': 1,\n",
      "          'length': 1,\n",
      "          'several': 1,\n",
      "          'explained': 1,\n",
      "          'nwhat': 1,\n",
      "          'nhow': 1,\n",
      "          'change': 1,\n",
      "          'rapidly': 1,\n",
      "          'neveryone': 1,\n",
      "          'horses': 1,\n",
      "          'law': 1,\n",
      "          'eights': 1,\n",
      "          'lives': 1,\n",
      "          'origins': 1,\n",
      "          'somewhere': 1,\n",
      "          'nare': 1,\n",
      "          'believe': 1,\n",
      "          'shape': 1,\n",
      "          'hasnt': 1,\n",
      "          'made': 1,\n",
      "          'west': 1,\n",
      "          'help': 1,\n",
      "          'conquer': 1,\n",
      "          'jumbled': 1,\n",
      "          'symbolism': 1,\n",
      "          'doesnt': 1,\n",
      "          'appear': 1,\n",
      "          'make': 1,\n",
      "          'sense': 1,\n",
      "          'tale': 1,\n",
      "          'obviously': 1,\n",
      "          'saying': 1,\n",
      "          'communication': 1,\n",
      "          'defeat': 1,\n",
      "          'internet': 1,\n",
      "          'potential': 1,\n",
      "          'topple': 1,\n",
      "          'governments': 1,\n",
      "          'oddities': 1,\n",
      "          'sounds': 1,\n",
      "          'coincidentally': 1,\n",
      "          'age': 1,\n",
      "          'holism': 1,\n",
      "          'nis': 1,\n",
      "          'another': 1,\n",
      "          'coincidence': 1,\n",
      "          'place': 1,\n",
      "          'one': 1,\n",
      "          'ancient': 1,\n",
      "          'prophesies': 1,\n",
      "          'including': 1,\n",
      "          'ending': 1,\n",
      "          'mayan': 1,\n",
      "          'calendar': 1,\n",
      "          'predict': 1,\n",
      "          'mankind': 1,\n",
      "          'nwhy': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'named': 1,\n",
      "          'reason': 1,\n",
      "          'nsometimes': 1,\n",
      "          'feels': 1,\n",
      "          'joke': 1,\n",
      "          'nan': 1,\n",
      "          'workers': 1,\n",
      "          'armed': 1,\n",
      "          'guns': 1,\n",
      "          'nconsidering': 1,\n",
      "          'headlines': 1,\n",
      "          'recent': 1,\n",
      "          'tremendous': 1,\n",
      "          'leap': 1,\n",
      "          'faith': 1,\n",
      "          'cheer': 1,\n",
      "          'guys': 1,\n",
      "          'difficult': 1,\n",
      "          'accept': 1,\n",
      "          'repowering': 1,\n",
      "          'heroes': 1,\n",
      "          'ngiven': 1,\n",
      "          'current': 1,\n",
      "          'climate': 1,\n",
      "          'country': 1,\n",
      "          'distrust': 1,\n",
      "          'big': 1,\n",
      "          'asking': 1,\n",
      "          'lot': 1,\n",
      "          'get': 1,\n",
      "          'behind': 1,\n",
      "          'nationalism': 1,\n",
      "          'numerous': 1,\n",
      "          'flaws': 1,\n",
      "          'comes': 1,\n",
      "          'together': 1,\n",
      "          'weaknesses': 1,\n",
      "          'doubtful': 1,\n",
      "          'find': 1,\n",
      "          'us': 1,\n",
      "          'good': 1,\n",
      "          'time': 1,\n",
      "          'nbesides': 1,\n",
      "          'awaiting': 1,\n",
      "          'fall': 1,\n",
      "          'caused': 1,\n",
      "          '2000': 1,\n",
      "          'millennium': 1,\n",
      "          'computer': 1,\n",
      "          'bug': 1,\n",
      "          'n': 1,\n",
      "          'written': 1,\n",
      "          'column': 1,\n",
      "          '22': 1,\n",
      "          'would': 1,\n",
      "          'announce': 1,\n",
      "          'arrested': 1,\n",
      "          'near': 1,\n",
      "          'indianapolis': 1,\n",
      "          'last': 1,\n",
      "          'week': 1,\n",
      "          'accepting': 1,\n",
      "          'illicit': 1,\n",
      "          'package': 1,\n",
      "          'best': 1,\n",
      "          'knowledge': 1,\n",
      "          'nperhaps': 1,\n",
      "          'similarlynamed': 1,\n",
      "          'person': 1,\n",
      "          'used': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 16,\n",
      "          'relationship': 9,\n",
      "          'one': 8,\n",
      "          'sean': 8,\n",
      "          'nand': 7,\n",
      "          'lambeau': 7,\n",
      "          'nthe': 6,\n",
      "          'two': 6,\n",
      "          'like': 6,\n",
      "          'scene': 5,\n",
      "          'people': 4,\n",
      "          'damon': 4,\n",
      "          'get': 4,\n",
      "          'affleck': 4,\n",
      "          'great': 4,\n",
      "          'moments': 4,\n",
      "          'amazing': 4,\n",
      "          'nwe': 4,\n",
      "          'skylar': 4,\n",
      "          'best': 4,\n",
      "          'seems': 4,\n",
      "          'hunting': 3,\n",
      "          'face': 3,\n",
      "          'puts': 3,\n",
      "          'problem': 3,\n",
      "          'board': 3,\n",
      "          'done': 3,\n",
      "          'course': 3,\n",
      "          'tries': 3,\n",
      "          'also': 3,\n",
      "          'ni': 3,\n",
      "          'friends': 3,\n",
      "          'underwritten': 3,\n",
      "          'never': 3,\n",
      "          'good': 2,\n",
      "          'title': 2,\n",
      "          'would': 2,\n",
      "          'cowriter': 2,\n",
      "          'mathematical': 2,\n",
      "          'genius': 2,\n",
      "          'time': 2,\n",
      "          'takes': 2,\n",
      "          'day': 2,\n",
      "          'professor': 2,\n",
      "          'stellan': 2,\n",
      "          'skarsg': 2,\n",
      "          'rd': 2,\n",
      "          'another': 2,\n",
      "          'guy': 2,\n",
      "          'gets': 2,\n",
      "          'therapy': 2,\n",
      "          'going': 2,\n",
      "          'college': 2,\n",
      "          'williams': 2,\n",
      "          'want': 2,\n",
      "          'life': 2,\n",
      "          'ben': 2,\n",
      "          'something': 2,\n",
      "          'doesnt': 2,\n",
      "          'enjoyable': 2,\n",
      "          'tons': 2,\n",
      "          'driver': 2,\n",
      "          'wills': 2,\n",
      "          'nthere': 2,\n",
      "          'scenes': 2,\n",
      "          'even': 2,\n",
      "          'first': 2,\n",
      "          'meeting': 2,\n",
      "          'enough': 2,\n",
      "          'either': 2,\n",
      "          'interesting': 2,\n",
      "          'chuckie': 2,\n",
      "          'see': 2,\n",
      "          'decision': 2,\n",
      "          'goes': 2,\n",
      "          'human': 2,\n",
      "          'pretty': 2,\n",
      "          'extremely': 2,\n",
      "          'dialogue': 2,\n",
      "          'director': 2,\n",
      "          'van': 2,\n",
      "          'certain': 1,\n",
      "          'world': 1,\n",
      "          'talent': 1,\n",
      "          'chose': 1,\n",
      "          'take': 1,\n",
      "          'advantage': 1,\n",
      "          'personal': 1,\n",
      "          'reason': 1,\n",
      "          'n': 1,\n",
      "          'horrible': 1,\n",
      "          'lets': 1,\n",
      "          'bitch': 1,\n",
      "          'played': 1,\n",
      "          'matt': 1,\n",
      "          'nhe': 1,\n",
      "          'almost': 1,\n",
      "          'connundrum': 1,\n",
      "          'brew': 1,\n",
      "          'cup': 1,\n",
      "          'irish': 1,\n",
      "          'cream': 1,\n",
      "          'cappuccino': 1,\n",
      "          'works': 1,\n",
      "          'mit': 1,\n",
      "          'janitor': 1,\n",
      "          'none': 1,\n",
      "          'challenging': 1,\n",
      "          'courses': 1,\n",
      "          'proffessor': 1,\n",
      "          'breaking': 1,\n",
      "          'waves': 1,\n",
      "          'big': 1,\n",
      "          'students': 1,\n",
      "          'attempt': 1,\n",
      "          'complete': 1,\n",
      "          'next': 1,\n",
      "          'already': 1,\n",
      "          'class': 1,\n",
      "          'claims': 1,\n",
      "          'nso': 1,\n",
      "          'took': 1,\n",
      "          'colleagues': 1,\n",
      "          'years': 1,\n",
      "          'prove': 1,\n",
      "          'duh': 1,\n",
      "          'nof': 1,\n",
      "          'catch': 1,\n",
      "          'red': 1,\n",
      "          'handed': 1,\n",
      "          'nbefore': 1,\n",
      "          'find': 1,\n",
      "          'ran': 1,\n",
      "          'away': 1,\n",
      "          'caught': 1,\n",
      "          'gotten': 1,\n",
      "          'fight': 1,\n",
      "          'bunch': 1,\n",
      "          'punks': 1,\n",
      "          'basketball': 1,\n",
      "          'court': 1,\n",
      "          'struck': 1,\n",
      "          'police': 1,\n",
      "          'officer': 1,\n",
      "          'probation': 1,\n",
      "          'agreements': 1,\n",
      "          'work': 1,\n",
      "          'math': 1,\n",
      "          'b': 1,\n",
      "          'nafter': 1,\n",
      "          'therapists': 1,\n",
      "          'psyches': 1,\n",
      "          'way': 1,\n",
      "          'hypnotist': 1,\n",
      "          'fakes': 1,\n",
      "          'spell': 1,\n",
      "          'launches': 1,\n",
      "          'impromptu': 1,\n",
      "          'performance': 1,\n",
      "          '70s': 1,\n",
      "          'classic': 1,\n",
      "          'afternoon': 1,\n",
      "          'delight': 1,\n",
      "          'nfinally': 1,\n",
      "          'lambeaus': 1,\n",
      "          'old': 1,\n",
      "          'roomate': 1,\n",
      "          'mcguire': 1,\n",
      "          'robin': 1,\n",
      "          'psych': 1,\n",
      "          'agrees': 1,\n",
      "          'treat': 1,\n",
      "          'begin': 1,\n",
      "          'rocky': 1,\n",
      "          'open': 1,\n",
      "          'nturns': 1,\n",
      "          'rough': 1,\n",
      "          'childhood': 1,\n",
      "          'abandoned': 1,\n",
      "          'placed': 1,\n",
      "          'foster': 1,\n",
      "          'homes': 1,\n",
      "          'nit': 1,\n",
      "          'turns': 1,\n",
      "          'simple': 1,\n",
      "          'mathematics': 1,\n",
      "          'wants': 1,\n",
      "          'challenge': 1,\n",
      "          'hang': 1,\n",
      "          'buds': 1,\n",
      "          'including': 1,\n",
      "          'honorable': 1,\n",
      "          'jobs': 1,\n",
      "          'construction': 1,\n",
      "          'nis': 1,\n",
      "          'right': 1,\n",
      "          'make': 1,\n",
      "          'follow': 1,\n",
      "          'footsteps': 1,\n",
      "          'einstein': 1,\n",
      "          'kasinsky': 1,\n",
      "          'nshould': 1,\n",
      "          'forced': 1,\n",
      "          'nthis': 1,\n",
      "          'appears': 1,\n",
      "          'million': 1,\n",
      "          'questions': 1,\n",
      "          'jampacked': 1,\n",
      "          'greatness': 1,\n",
      "          'totally': 1,\n",
      "          'brilliant': 1,\n",
      "          'whole': 1,\n",
      "          'nim': 1,\n",
      "          'saying': 1,\n",
      "          'bad': 1,\n",
      "          'nits': 1,\n",
      "          'lots': 1,\n",
      "          'things': 1,\n",
      "          'acting': 1,\n",
      "          'oscarnominationworthy': 1,\n",
      "          'performances': 1,\n",
      "          'chemistry': 1,\n",
      "          'together': 1,\n",
      "          'support': 1,\n",
      "          'name': 1,\n",
      "          'minnie': 1,\n",
      "          'plays': 1,\n",
      "          'love': 1,\n",
      "          'interest': 1,\n",
      "          'individual': 1,\n",
      "          'adored': 1,\n",
      "          'loved': 1,\n",
      "          'comedy': 1,\n",
      "          'especially': 1,\n",
      "          'proves': 1,\n",
      "          'schmuck': 1,\n",
      "          'student': 1,\n",
      "          'quoting': 1,\n",
      "          'historian': 1,\n",
      "          'impress': 1,\n",
      "          'chicks': 1,\n",
      "          'various': 1,\n",
      "          'attempts': 1,\n",
      "          'favorite': 1,\n",
      "          'entire': 1,\n",
      "          'delivers': 1,\n",
      "          'long': 1,\n",
      "          'exstensive': 1,\n",
      "          'rant': 1,\n",
      "          'nsa': 1,\n",
      "          'agents': 1,\n",
      "          'downside': 1,\n",
      "          'working': 1,\n",
      "          'liked': 1,\n",
      "          'watch': 1,\n",
      "          'honest': 1,\n",
      "          'portrayal': 1,\n",
      "          'felt': 1,\n",
      "          'rightfully': 1,\n",
      "          'uncomfortable': 1,\n",
      "          'nlike': 1,\n",
      "          'breakup': 1,\n",
      "          'seans': 1,\n",
      "          'bar': 1,\n",
      "          'tells': 1,\n",
      "          'detail': 1,\n",
      "          'regret': 1,\n",
      "          'wife': 1,\n",
      "          'later': 1,\n",
      "          'suffer': 1,\n",
      "          'slow': 1,\n",
      "          'painful': 1,\n",
      "          'death': 1,\n",
      "          'leave': 1,\n",
      "          'lonely': 1,\n",
      "          'slightly': 1,\n",
      "          'bitter': 1,\n",
      "          'nhowever': 1,\n",
      "          'main': 1,\n",
      "          'flaw': 1,\n",
      "          'theres': 1,\n",
      "          'much': 1,\n",
      "          'everything': 1,\n",
      "          'deeper': 1,\n",
      "          'relations': 1,\n",
      "          'characters': 1,\n",
      "          'theyre': 1,\n",
      "          'sometimes': 1,\n",
      "          'overwritten': 1,\n",
      "          'ntake': 1,\n",
      "          'example': 1,\n",
      "          'fatherson': 1,\n",
      "          'well': 1,\n",
      "          'doctorpatient': 1,\n",
      "          'problems': 1,\n",
      "          'show': 1,\n",
      "          'equals': 1,\n",
      "          'falls': 1,\n",
      "          'hear': 1,\n",
      "          'went': 1,\n",
      "          'town': 1,\n",
      "          'shows': 1,\n",
      "          'hypocritical': 1,\n",
      "          'times': 1,\n",
      "          'nbut': 1,\n",
      "          'parts': 1,\n",
      "          'nalso': 1,\n",
      "          'friend': 1,\n",
      "          'nice': 1,\n",
      "          'climax': 1,\n",
      "          'rising': 1,\n",
      "          'action': 1,\n",
      "          'joking': 1,\n",
      "          'around': 1,\n",
      "          'arrives': 1,\n",
      "          'superficial': 1,\n",
      "          'reasoning': 1,\n",
      "          'selected': 1,\n",
      "          'ntheir': 1,\n",
      "          'beyond': 1,\n",
      "          'generalization': 1,\n",
      "          'instead': 1,\n",
      "          'nmaybe': 1,\n",
      "          'parallelism': 1,\n",
      "          'films': 1,\n",
      "          'girlboy': 1,\n",
      "          'understand': 1,\n",
      "          'confesses': 1,\n",
      "          'loves': 1,\n",
      "          'plot': 1,\n",
      "          'details': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'nminnie': 1,\n",
      "          'though': 1,\n",
      "          'breathes': 1,\n",
      "          'character': 1,\n",
      "          'writing': 1,\n",
      "          'bit': 1,\n",
      "          'fault': 1,\n",
      "          'makes': 1,\n",
      "          'worthwhile': 1,\n",
      "          'little': 1,\n",
      "          'acheives': 1,\n",
      "          'true': 1,\n",
      "          'awesomeness': 1,\n",
      "          'nsure': 1,\n",
      "          'feels': 1,\n",
      "          'overstuffed': 1,\n",
      "          'written': 1,\n",
      "          'amazingly': 1,\n",
      "          'fresh': 1,\n",
      "          'think': 1,\n",
      "          'nomination': 1,\n",
      "          'script': 1,\n",
      "          'chiefly': 1,\n",
      "          'nwhile': 1,\n",
      "          'probably': 1,\n",
      "          'gus': 1,\n",
      "          'sants': 1,\n",
      "          'conservative': 1,\n",
      "          'youd': 1,\n",
      "          'hardly': 1,\n",
      "          'know': 1,\n",
      "          'die': 1,\n",
      "          'sant': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'really': 1,\n",
      "          'still': 1,\n",
      "          'remarkable': 1,\n",
      "          'albeit': 1,\n",
      "          'tad': 1,\n",
      "          'overrated': 1,\n",
      "          'whats': 1,\n",
      "          'picture': 1,\n",
      "          'deal': 1,\n",
      "          'smile': 1,\n",
      "          'despite': 1,\n",
      "          'posessing': 1,\n",
      "          'lot': 1,\n",
      "          'flaws': 1,\n",
      "          'reccomending': 1,\n",
      "          'anyone': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'chan': 9,\n",
      "          'jackie': 5,\n",
      "          'movie': 5,\n",
      "          'hour': 4,\n",
      "          '2': 4,\n",
      "          'tucker': 4,\n",
      "          'rush': 3,\n",
      "          'chris': 3,\n",
      "          'nthe': 3,\n",
      "          'ni': 3,\n",
      "          'like': 3,\n",
      "          'jokes': 3,\n",
      "          'guess': 2,\n",
      "          'even': 2,\n",
      "          'comedy': 2,\n",
      "          'martial': 2,\n",
      "          'arts': 2,\n",
      "          'show': 2,\n",
      "          'well': 2,\n",
      "          'would': 2,\n",
      "          'name': 2,\n",
      "          'stunts': 2,\n",
      "          'makes': 2,\n",
      "          'fortune': 2,\n",
      "          'money': 2,\n",
      "          'one': 2,\n",
      "          'way': 2,\n",
      "          'see': 2,\n",
      "          'detective': 2,\n",
      "          'lee': 2,\n",
      "          'carter': 2,\n",
      "          'take': 2,\n",
      "          'get': 2,\n",
      "          'anyone': 2,\n",
      "          'funny': 2,\n",
      "          'realize': 2,\n",
      "          'laughs': 2,\n",
      "          'man': 2,\n",
      "          'completely': 2,\n",
      "          'nits': 2,\n",
      "          'often': 2,\n",
      "          'funnier': 2,\n",
      "          'isnt': 2,\n",
      "          'credit': 1,\n",
      "          'general': 1,\n",
      "          'likeability': 1,\n",
      "          'franchise': 1,\n",
      "          'could': 1,\n",
      "          'ruined': 1,\n",
      "          'nauseating': 1,\n",
      "          'nim': 1,\n",
      "          'fan': 1,\n",
      "          'medium': 1,\n",
      "          'lets': 1,\n",
      "          'impressiveasever': 1,\n",
      "          'schtick': 1,\n",
      "          'comic': 1,\n",
      "          'timing': 1,\n",
      "          'nit': 1,\n",
      "          'worked': 1,\n",
      "          'better': 1,\n",
      "          'title': 1,\n",
      "          'plot': 1,\n",
      "          'basic': 1,\n",
      "          'flick': 1,\n",
      "          'clothesline': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'nthis': 1,\n",
      "          'time': 1,\n",
      "          'around': 1,\n",
      "          'evil': 1,\n",
      "          'smugglers': 1,\n",
      "          'led': 1,\n",
      "          'ricky': 1,\n",
      "          'tan': 1,\n",
      "          'john': 1,\n",
      "          'lone': 1,\n",
      "          'shipping': 1,\n",
      "          'counterfeit': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'im': 1,\n",
      "          'still': 1,\n",
      "          'sure': 1,\n",
      "          'make': 1,\n",
      "          'place': 1,\n",
      "          'exchange': 1,\n",
      "          'fake': 1,\n",
      "          'bills': 1,\n",
      "          'real': 1,\n",
      "          'ones': 1,\n",
      "          'tell': 1,\n",
      "          'phony': 1,\n",
      "          'genuine': 1,\n",
      "          'article': 1,\n",
      "          'set': 1,\n",
      "          'fire': 1,\n",
      "          'color': 1,\n",
      "          'burns': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'hong': 1,\n",
      "          'kong': 1,\n",
      "          'trashtalking': 1,\n",
      "          'lapd': 1,\n",
      "          'james': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'authorities': 1,\n",
      "          'extent': 1,\n",
      "          'exist': 1,\n",
      "          'stay': 1,\n",
      "          'nrush': 1,\n",
      "          'turns': 1,\n",
      "          'tables': 1,\n",
      "          'first': 1,\n",
      "          'film': 1,\n",
      "          'gets': 1,\n",
      "          'two': 1,\n",
      "          'trouble': 1,\n",
      "          'winds': 1,\n",
      "          'guarantee': 1,\n",
      "          'rating': 1,\n",
      "          'least': 1,\n",
      "          'half': 1,\n",
      "          'grade': 1,\n",
      "          'higher': 1,\n",
      "          'cast': 1,\n",
      "          'foil': 1,\n",
      "          'nhe': 1,\n",
      "          'refuses': 1,\n",
      "          'shut': 1,\n",
      "          'nnot': 1,\n",
      "          'voice': 1,\n",
      "          'feel': 1,\n",
      "          'jackhammer': 1,\n",
      "          'head': 1,\n",
      "          'arent': 1,\n",
      "          'pathetic': 1,\n",
      "          'mixture': 1,\n",
      "          'subpar': 1,\n",
      "          'eddie': 1,\n",
      "          'murphy': 1,\n",
      "          'fasttalking': 1,\n",
      "          'blather': 1,\n",
      "          'wannabe': 1,\n",
      "          'rock': 1,\n",
      "          'whitemanblackman': 1,\n",
      "          'wind': 1,\n",
      "          'offensive': 1,\n",
      "          'biggest': 1,\n",
      "          'come': 1,\n",
      "          'letting': 1,\n",
      "          'actors': 1,\n",
      "          'ad': 1,\n",
      "          'lib': 1,\n",
      "          'beyond': 1,\n",
      "          'script': 1,\n",
      "          'dictates': 1,\n",
      "          'didnt': 1,\n",
      "          'irritating': 1,\n",
      "          'tuckers': 1,\n",
      "          'incessant': 1,\n",
      "          'ranting': 1,\n",
      "          'raving': 1,\n",
      "          'nif': 1,\n",
      "          'comedian': 1,\n",
      "          'offer': 1,\n",
      "          'dont': 1,\n",
      "          'care': 1,\n",
      "          'films': 1,\n",
      "          'nfortunately': 1,\n",
      "          'marvelous': 1,\n",
      "          'straight': 1,\n",
      "          'redeems': 1,\n",
      "          'fledgling': 1,\n",
      "          'actor': 1,\n",
      "          'save': 1,\n",
      "          'whenever': 1,\n",
      "          'hes': 1,\n",
      "          'screen': 1,\n",
      "          'comes': 1,\n",
      "          'nearly': 1,\n",
      "          'breathtaking': 1,\n",
      "          'hilarious': 1,\n",
      "          'life': 1,\n",
      "          'nmuch': 1,\n",
      "          'hinges': 1,\n",
      "          'dubious': 1,\n",
      "          'value': 1,\n",
      "          'cute': 1,\n",
      "          'watch': 1,\n",
      "          'try': 1,\n",
      "          'player': 1,\n",
      "          'cares': 1,\n",
      "          'think': 1,\n",
      "          'high': 1,\n",
      "          'concepts': 1,\n",
      "          'ends': 1,\n",
      "          'outtakes': 1,\n",
      "          'usual': 1,\n",
      "          'perfect': 1,\n",
      "          'indeed': 1,\n",
      "          'tries': 1,\n",
      "          'incredible': 1,\n",
      "          'look': 1,\n",
      "          'seamless': 1,\n",
      "          'nchris': 1,\n",
      "          'botches': 1,\n",
      "          'lines': 1,\n",
      "          'mistakes': 1,\n",
      "          'anything': 1,\n",
      "          'says': 1,\n",
      "          'whole': 1,\n",
      "          'na': 1,\n",
      "          'lot': 1,\n",
      "          'people': 1,\n",
      "          'pointed': 1,\n",
      "          'different': 1,\n",
      "          'predecessor': 1,\n",
      "          'tone': 1,\n",
      "          'style': 1,\n",
      "          'nbut': 1,\n",
      "          'liked': 1,\n",
      "          'original': 1,\n",
      "          'sequel': 1,\n",
      "          'though': 1,\n",
      "          'certain': 1,\n",
      "          'sidekick': 1,\n",
      "          'seems': 1,\n",
      "          'done': 1,\n",
      "          'best': 1,\n",
      "          'ruin': 1,\n",
      "          'ndirector': 1,\n",
      "          'brett': 1,\n",
      "          'ratner': 1,\n",
      "          'family': 1,\n",
      "          'keeps': 1,\n",
      "          'moving': 1,\n",
      "          'entertaining': 1,\n",
      "          'pace': 1,\n",
      "          'manages': 1,\n",
      "          'keep': 1,\n",
      "          'coming': 1,\n",
      "          'despite': 1,\n",
      "          'fairly': 1,\n",
      "          'miserable': 1,\n",
      "          'hit': 1,\n",
      "          'miss': 1,\n",
      "          'ratio': 1,\n",
      "          'sometimes': 1,\n",
      "          'shotgun': 1,\n",
      "          'approach': 1,\n",
      "          'works': 1,\n",
      "          'great': 1,\n",
      "          'thats': 1,\n",
      "          'enough': 1,\n",
      "          'nup': 1,\n",
      "          'next': 1,\n",
      "          'jay': 1,\n",
      "          'silent': 1,\n",
      "          'bob': 1,\n",
      "          'strike': 1,\n",
      "          'back': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'la': 17,\n",
      "          'bull': 14,\n",
      "          'motta': 13,\n",
      "          'raging': 11,\n",
      "          'nthe': 9,\n",
      "          'de': 8,\n",
      "          'one': 7,\n",
      "          'jake': 6,\n",
      "          'film': 6,\n",
      "          'wife': 6,\n",
      "          'niro': 5,\n",
      "          'violence': 5,\n",
      "          'boxing': 5,\n",
      "          'best': 4,\n",
      "          'great': 4,\n",
      "          'two': 4,\n",
      "          'movie': 4,\n",
      "          'scorsese': 4,\n",
      "          'mottas': 4,\n",
      "          'nin': 4,\n",
      "          'ring': 4,\n",
      "          'vicki': 4,\n",
      "          'scorseses': 3,\n",
      "          '80s': 3,\n",
      "          'still': 3,\n",
      "          'films': 3,\n",
      "          'picture': 3,\n",
      "          'would': 3,\n",
      "          'nraging': 3,\n",
      "          'perfect': 3,\n",
      "          'middleweight': 3,\n",
      "          'character': 3,\n",
      "          'director': 3,\n",
      "          'although': 3,\n",
      "          'man': 3,\n",
      "          'joey': 3,\n",
      "          'brother': 3,\n",
      "          'sugar': 3,\n",
      "          'ray': 3,\n",
      "          'championship': 3,\n",
      "          'n': 3,\n",
      "          'niros': 3,\n",
      "          'blackandwhite': 3,\n",
      "          'including': 2,\n",
      "          'martin': 2,\n",
      "          'boxer': 2,\n",
      "          'number': 2,\n",
      "          'feel': 2,\n",
      "          'make': 2,\n",
      "          'say': 2,\n",
      "          'motion': 2,\n",
      "          'released': 2,\n",
      "          'close': 2,\n",
      "          'level': 2,\n",
      "          'fall': 2,\n",
      "          'life': 2,\n",
      "          'continue': 2,\n",
      "          'work': 2,\n",
      "          'takes': 2,\n",
      "          '40s': 2,\n",
      "          '50s': 2,\n",
      "          'ever': 2,\n",
      "          'minutes': 2,\n",
      "          'title': 2,\n",
      "          'said': 2,\n",
      "          'result': 2,\n",
      "          'extreme': 2,\n",
      "          'canvas': 2,\n",
      "          'moriarty': 2,\n",
      "          'joe': 2,\n",
      "          'pesci': 2,\n",
      "          'nhe': 2,\n",
      "          'loose': 2,\n",
      "          'years': 2,\n",
      "          'wins': 2,\n",
      "          'away': 2,\n",
      "          'love': 2,\n",
      "          'first': 2,\n",
      "          'woman': 2,\n",
      "          'could': 2,\n",
      "          'late': 2,\n",
      "          'fight': 2,\n",
      "          'must': 2,\n",
      "          'almost': 2,\n",
      "          'lost': 2,\n",
      "          'rocky': 2,\n",
      "          'oscar': 2,\n",
      "          'nbut': 2,\n",
      "          'look': 2,\n",
      "          'never': 2,\n",
      "          'shows': 2,\n",
      "          'ntheres': 2,\n",
      "          'performance': 2,\n",
      "          'career': 2,\n",
      "          'many': 2,\n",
      "          'nand': 2,\n",
      "          'go': 2,\n",
      "          'nas': 2,\n",
      "          'pounds': 2,\n",
      "          'turned': 2,\n",
      "          'parody': 2,\n",
      "          'nscorsese': 2,\n",
      "          'color': 2,\n",
      "          'choice': 2,\n",
      "          'shots': 2,\n",
      "          'critics': 1,\n",
      "          'siskel': 1,\n",
      "          'ebert': 1,\n",
      "          'record': 1,\n",
      "          'stating': 1,\n",
      "          'story': 1,\n",
      "          'nsince': 1,\n",
      "          'havent': 1,\n",
      "          'seen': 1,\n",
      "          'dont': 1,\n",
      "          'qualified': 1,\n",
      "          'judgment': 1,\n",
      "          'ill': 1,\n",
      "          'without': 1,\n",
      "          'hesitation': 1,\n",
      "          'surprised': 1,\n",
      "          'handful': 1,\n",
      "          'january': 1,\n",
      "          '1': 1,\n",
      "          '1980': 1,\n",
      "          'december': 1,\n",
      "          '31': 1,\n",
      "          '1989': 1,\n",
      "          'come': 1,\n",
      "          'nbiopics': 1,\n",
      "          'often': 1,\n",
      "          'categories': 1,\n",
      "          'overblown': 1,\n",
      "          'hero': 1,\n",
      "          'worship': 1,\n",
      "          'dry': 1,\n",
      "          'dull': 1,\n",
      "          'textbook': 1,\n",
      "          'account': 1,\n",
      "          'nits': 1,\n",
      "          'rare': 1,\n",
      "          'moniker': 1,\n",
      "          'based': 1,\n",
      "          'comes': 1,\n",
      "          'across': 1,\n",
      "          'anything': 1,\n",
      "          'sporadically': 1,\n",
      "          'energetic': 1,\n",
      "          'marginally': 1,\n",
      "          'entertaining': 1,\n",
      "          'counterexample': 1,\n",
      "          'brilliant': 1,\n",
      "          'argument': 1,\n",
      "          'makers': 1,\n",
      "          'genre': 1,\n",
      "          'icon': 1,\n",
      "          'develops': 1,\n",
      "          'compelling': 1,\n",
      "          'studies': 1,\n",
      "          'reach': 1,\n",
      "          'big': 1,\n",
      "          'screen': 1,\n",
      "          'nfor': 1,\n",
      "          '129': 1,\n",
      "          'actor': 1,\n",
      "          'robert': 1,\n",
      "          'role': 1,\n",
      "          'us': 1,\n",
      "          'mesmerized': 1,\n",
      "          'individual': 1,\n",
      "          'turns': 1,\n",
      "          'sympathetic': 1,\n",
      "          'sad': 1,\n",
      "          'horrifying': 1,\n",
      "          'nhistorically': 1,\n",
      "          'mostly': 1,\n",
      "          'accurately': 1,\n",
      "          'lions': 1,\n",
      "          'share': 1,\n",
      "          'details': 1,\n",
      "          'culled': 1,\n",
      "          'autobiography': 1,\n",
      "          'cowritten': 1,\n",
      "          'joseph': 1,\n",
      "          'carter': 1,\n",
      "          'peter': 1,\n",
      "          'savage': 1,\n",
      "          'nhowever': 1,\n",
      "          'credited': 1,\n",
      "          'movies': 1,\n",
      "          'consultant': 1,\n",
      "          'reportedly': 1,\n",
      "          'unhappy': 1,\n",
      "          'final': 1,\n",
      "          'portrays': 1,\n",
      "          'nothing': 1,\n",
      "          'short': 1,\n",
      "          'uncouth': 1,\n",
      "          'insensitive': 1,\n",
      "          'lout': 1,\n",
      "          'appetites': 1,\n",
      "          'driven': 1,\n",
      "          'base': 1,\n",
      "          'bestial': 1,\n",
      "          'impulses': 1,\n",
      "          'paranoia': 1,\n",
      "          'jealousy': 1,\n",
      "          'blind': 1,\n",
      "          'rage': 1,\n",
      "          'nsex': 1,\n",
      "          'inextricably': 1,\n",
      "          'linked': 1,\n",
      "          'apt': 1,\n",
      "          'terror': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'beating': 1,\n",
      "          'opponents': 1,\n",
      "          'destroying': 1,\n",
      "          'noutside': 1,\n",
      "          'less': 1,\n",
      "          'vicious': 1,\n",
      "          'easily': 1,\n",
      "          'controlled': 1,\n",
      "          'people': 1,\n",
      "          'spar': 1,\n",
      "          'lifes': 1,\n",
      "          'cathy': 1,\n",
      "          'brothermanager': 1,\n",
      "          'nthese': 1,\n",
      "          'mean': 1,\n",
      "          'inability': 1,\n",
      "          'trust': 1,\n",
      "          'others': 1,\n",
      "          'loses': 1,\n",
      "          'beats': 1,\n",
      "          'mercilessly': 1,\n",
      "          'suspects': 1,\n",
      "          'infidelity': 1,\n",
      "          'inaccurately': 1,\n",
      "          'believes': 1,\n",
      "          'betrayed': 1,\n",
      "          'lets': 1,\n",
      "          'explosion': 1,\n",
      "          'opens': 1,\n",
      "          '1941': 1,\n",
      "          'upandcoming': 1,\n",
      "          'fighter': 1,\n",
      "          'battling': 1,\n",
      "          'way': 1,\n",
      "          'upper': 1,\n",
      "          'echelon': 1,\n",
      "          'class': 1,\n",
      "          'nover': 1,\n",
      "          'several': 1,\n",
      "          'key': 1,\n",
      "          'bouts': 1,\n",
      "          'archrival': 1,\n",
      "          'robinson': 1,\n",
      "          'johnny': 1,\n",
      "          'barnes': 1,\n",
      "          'unwillingness': 1,\n",
      "          'capitulate': 1,\n",
      "          'local': 1,\n",
      "          'godfather': 1,\n",
      "          'keeps': 1,\n",
      "          'opportunity': 1,\n",
      "          'participate': 1,\n",
      "          'match': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'falls': 1,\n",
      "          '15year': 1,\n",
      "          'old': 1,\n",
      "          'marries': 1,\n",
      "          'discarding': 1,\n",
      "          'shrewish': 1,\n",
      "          'nvicki': 1,\n",
      "          'becomes': 1,\n",
      "          'jakes': 1,\n",
      "          'greatest': 1,\n",
      "          'prize': 1,\n",
      "          'view': 1,\n",
      "          'companion': 1,\n",
      "          'possession': 1,\n",
      "          'source': 1,\n",
      "          'pain': 1,\n",
      "          'nhis': 1,\n",
      "          'insecurity': 1,\n",
      "          'accept': 1,\n",
      "          'beautiful': 1,\n",
      "          'faithful': 1,\n",
      "          'nhence': 1,\n",
      "          'constantly': 1,\n",
      "          'haunted': 1,\n",
      "          'belief': 1,\n",
      "          'sleeping': 1,\n",
      "          'someone': 1,\n",
      "          'else': 1,\n",
      "          'perhaps': 1,\n",
      "          'even': 1,\n",
      "          'leads': 1,\n",
      "          'famous': 1,\n",
      "          'line': 1,\n",
      "          'parodied': 1,\n",
      "          'waiting': 1,\n",
      "          'guffman': 1,\n",
      "          'elsewhere': 1,\n",
      "          'f': 1,\n",
      "          'king': 1,\n",
      "          'gets': 1,\n",
      "          'shot': 1,\n",
      "          'huge': 1,\n",
      "          'condition': 1,\n",
      "          'take': 1,\n",
      "          'badly': 1,\n",
      "          'investigation': 1,\n",
      "          'launched': 1,\n",
      "          'thrown': 1,\n",
      "          'ntwo': 1,\n",
      "          'later': 1,\n",
      "          'lose': 1,\n",
      "          'subsequent': 1,\n",
      "          'bout': 1,\n",
      "          'nby': 1,\n",
      "          'early': 1,\n",
      "          '60s': 1,\n",
      "          'ends': 1,\n",
      "          'become': 1,\n",
      "          'pathetic': 1,\n",
      "          'figure': 1,\n",
      "          'broke': 1,\n",
      "          'overweight': 1,\n",
      "          'loser': 1,\n",
      "          'spent': 1,\n",
      "          'time': 1,\n",
      "          'jail': 1,\n",
      "          'corrupting': 1,\n",
      "          'morals': 1,\n",
      "          'minor': 1,\n",
      "          'children': 1,\n",
      "          'trying': 1,\n",
      "          'earn': 1,\n",
      "          'bucks': 1,\n",
      "          'cheap': 1,\n",
      "          'standup': 1,\n",
      "          'routine': 1,\n",
      "          'side': 1,\n",
      "          'nsylvester': 1,\n",
      "          'stallones': 1,\n",
      "          'tale': 1,\n",
      "          'triumph': 1,\n",
      "          'critical': 1,\n",
      "          'acclaim': 1,\n",
      "          '1976': 1,\n",
      "          'nit': 1,\n",
      "          '1977': 1,\n",
      "          'sequel': 1,\n",
      "          'arrived': 1,\n",
      "          'theaters': 1,\n",
      "          'went': 1,\n",
      "          'production': 1,\n",
      "          'romanticizes': 1,\n",
      "          'cold': 1,\n",
      "          'unflinching': 1,\n",
      "          'inside': 1,\n",
      "          'outside': 1,\n",
      "          'nwhile': 1,\n",
      "          'primary': 1,\n",
      "          'aim': 1,\n",
      "          'present': 1,\n",
      "          'riveting': 1,\n",
      "          'deconstruction': 1,\n",
      "          'backs': 1,\n",
      "          'showing': 1,\n",
      "          'seedy': 1,\n",
      "          'ugly': 1,\n",
      "          'underside': 1,\n",
      "          'sport': 1,\n",
      "          'gambling': 1,\n",
      "          'greed': 1,\n",
      "          'organized': 1,\n",
      "          'crime': 1,\n",
      "          'force': 1,\n",
      "          'fighters': 1,\n",
      "          'throw': 1,\n",
      "          'matches': 1,\n",
      "          'working': 1,\n",
      "          'nrocky': 1,\n",
      "          'noblest': 1,\n",
      "          'diseased': 1,\n",
      "          'little': 1,\n",
      "          'hasnt': 1,\n",
      "          'already': 1,\n",
      "          'included': 1,\n",
      "          'fine': 1,\n",
      "          'roles': 1,\n",
      "          'outstanding': 1,\n",
      "          'intensity': 1,\n",
      "          'brings': 1,\n",
      "          'unwavering': 1,\n",
      "          'theres': 1,\n",
      "          'lot': 1,\n",
      "          'travis': 1,\n",
      "          'bickle': 1,\n",
      "          'taxi': 1,\n",
      "          'driver': 1,\n",
      "          'lengths': 1,\n",
      "          'sure': 1,\n",
      "          'fully': 1,\n",
      "          'sympathize': 1,\n",
      "          'least': 1,\n",
      "          'understand': 1,\n",
      "          'forces': 1,\n",
      "          'drive': 1,\n",
      "          'nthis': 1,\n",
      "          'complete': 1,\n",
      "          'characterization': 1,\n",
      "          'example': 1,\n",
      "          'acting': 1,\n",
      "          'younger': 1,\n",
      "          'trim': 1,\n",
      "          'fit': 1,\n",
      "          'fat': 1,\n",
      "          'older': 1,\n",
      "          'gained': 1,\n",
      "          '50': 1,\n",
      "          'body': 1,\n",
      "          'grotesque': 1,\n",
      "          'normal': 1,\n",
      "          'form': 1,\n",
      "          'nhow': 1,\n",
      "          'actors': 1,\n",
      "          'far': 1,\n",
      "          'statue': 1,\n",
      "          'testimony': 1,\n",
      "          'lasting': 1,\n",
      "          'power': 1,\n",
      "          'ncathy': 1,\n",
      "          'earned': 1,\n",
      "          'nominations': 1,\n",
      "          'supporting': 1,\n",
      "          'neither': 1,\n",
      "          'ntheir': 1,\n",
      "          'portrayals': 1,\n",
      "          'raw': 1,\n",
      "          'energy': 1,\n",
      "          'infuses': 1,\n",
      "          'npesci': 1,\n",
      "          'basically': 1,\n",
      "          'recreated': 1,\n",
      "          'personality': 1,\n",
      "          'goodfellas': 1,\n",
      "          'casino': 1,\n",
      "          'presents': 1,\n",
      "          'slightly': 1,\n",
      "          'intelligent': 1,\n",
      "          'version': 1,\n",
      "          'misogyny': 1,\n",
      "          'better': 1,\n",
      "          'concealed': 1,\n",
      "          'snaps': 1,\n",
      "          'scene': 1,\n",
      "          'mobster': 1,\n",
      "          'frank': 1,\n",
      "          'vincent': 1,\n",
      "          'startling': 1,\n",
      "          'behold': 1,\n",
      "          'nmoriarty': 1,\n",
      "          'hand': 1,\n",
      "          'play': 1,\n",
      "          'temptress': 1,\n",
      "          'virginal': 1,\n",
      "          'qualities': 1,\n",
      "          'kind': 1,\n",
      "          'ensnare': 1,\n",
      "          'nlater': 1,\n",
      "          'shes': 1,\n",
      "          'called': 1,\n",
      "          'upon': 1,\n",
      "          'portray': 1,\n",
      "          'battered': 1,\n",
      "          'mother': 1,\n",
      "          'whose': 1,\n",
      "          'fear': 1,\n",
      "          'cinematographer': 1,\n",
      "          'michael': 1,\n",
      "          'chapman': 1,\n",
      "          'elected': 1,\n",
      "          'shoot': 1,\n",
      "          'bulk': 1,\n",
      "          'home': 1,\n",
      "          'segments': 1,\n",
      "          'giving': 1,\n",
      "          'unique': 1,\n",
      "          'era': 1,\n",
      "          'approach': 1,\n",
      "          'unheard': 1,\n",
      "          'important': 1,\n",
      "          'recent': 1,\n",
      "          'exception': 1,\n",
      "          'schindlers': 1,\n",
      "          'list': 1,\n",
      "          'eschewed': 1,\n",
      "          'reasons': 1,\n",
      "          'especially': 1,\n",
      "          'considering': 1,\n",
      "          'use': 1,\n",
      "          'slow': 1,\n",
      "          'stark': 1,\n",
      "          'disturbing': 1,\n",
      "          'room': 1,\n",
      "          'romanticism': 1,\n",
      "          'inky': 1,\n",
      "          'black': 1,\n",
      "          'blood': 1,\n",
      "          'staining': 1,\n",
      "          'nduring': 1,\n",
      "          'sequences': 1,\n",
      "          'also': 1,\n",
      "          'uses': 1,\n",
      "          'pointofview': 1,\n",
      "          'designed': 1,\n",
      "          'show': 1,\n",
      "          'world': 1,\n",
      "          'however': 1,\n",
      "          'briefly': 1,\n",
      "          'perspective': 1,\n",
      "          'chosen': 1,\n",
      "          'end': 1,\n",
      "          'loss': 1,\n",
      "          'surrendered': 1,\n",
      "          'crown': 1,\n",
      "          'nafter': 1,\n",
      "          'downhill': 1,\n",
      "          'nyet': 1,\n",
      "          'allows': 1,\n",
      "          'run': 1,\n",
      "          'thirty': 1,\n",
      "          'pivotal': 1,\n",
      "          'moment': 1,\n",
      "          'stretching': 1,\n",
      "          'decade': 1,\n",
      "          'future': 1,\n",
      "          'reason': 1,\n",
      "          'obvious': 1,\n",
      "          'isnt': 1,\n",
      "          'interested': 1,\n",
      "          'nfollowing': 1,\n",
      "          'retirement': 1,\n",
      "          'violent': 1,\n",
      "          'volatile': 1,\n",
      "          'arena': 1,\n",
      "          'legally': 1,\n",
      "          'unleash': 1,\n",
      "          'tendencies': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'results': 1,\n",
      "          'beast': 1,\n",
      "          'let': 1,\n",
      "          'society': 1,\n",
      "          'consequences': 1,\n",
      "          'actions': 1,\n",
      "          'reduce': 1,\n",
      "          'former': 1,\n",
      "          'self': 1,\n",
      "          'nwho': 1,\n",
      "          'surge': 1,\n",
      "          'pity': 1,\n",
      "          'quietly': 1,\n",
      "          'recites': 1,\n",
      "          'marlon': 1,\n",
      "          'brandos': 1,\n",
      "          'speech': 1,\n",
      "          'waterfront': 1,\n",
      "          'coulda': 1,\n",
      "          'contenda': 1,\n",
      "          'nperhaps': 1,\n",
      "          'indeed': 1,\n",
      "          'certainly': 1,\n",
      "          'perilously': 1,\n",
      "          'zenith': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 21,\n",
      "          'one': 15,\n",
      "          'nthe': 15,\n",
      "          'humbert': 14,\n",
      "          'really': 13,\n",
      "          'novel': 12,\n",
      "          'lolita': 11,\n",
      "          'time': 8,\n",
      "          'first': 6,\n",
      "          'see': 6,\n",
      "          'way': 6,\n",
      "          'even': 5,\n",
      "          'story': 5,\n",
      "          'character': 5,\n",
      "          'book': 5,\n",
      "          'original': 5,\n",
      "          'nand': 5,\n",
      "          'seeing': 4,\n",
      "          'look': 4,\n",
      "          'done': 4,\n",
      "          'screen': 4,\n",
      "          'two': 4,\n",
      "          'played': 4,\n",
      "          'much': 3,\n",
      "          'made': 3,\n",
      "          'adaptation': 3,\n",
      "          'nwhen': 3,\n",
      "          'nthis': 3,\n",
      "          'watch': 3,\n",
      "          'perhaps': 3,\n",
      "          'lyne': 3,\n",
      "          'least': 3,\n",
      "          'second': 3,\n",
      "          'good': 3,\n",
      "          'pedophile': 3,\n",
      "          'obsession': 3,\n",
      "          'nits': 3,\n",
      "          'obsessions': 3,\n",
      "          'almost': 3,\n",
      "          'something': 3,\n",
      "          'us': 3,\n",
      "          'without': 3,\n",
      "          'bring': 3,\n",
      "          'scenes': 3,\n",
      "          'thing': 3,\n",
      "          'get': 3,\n",
      "          'sense': 3,\n",
      "          'nhe': 3,\n",
      "          'never': 3,\n",
      "          'end': 3,\n",
      "          'better': 3,\n",
      "          'role': 3,\n",
      "          'griffith': 3,\n",
      "          'shes': 3,\n",
      "          'takes': 3,\n",
      "          'part': 3,\n",
      "          'new': 2,\n",
      "          'version': 2,\n",
      "          'faithful': 2,\n",
      "          'could': 2,\n",
      "          'anticlimactic': 2,\n",
      "          'people': 2,\n",
      "          'well': 2,\n",
      "          'worse': 2,\n",
      "          'especially': 2,\n",
      "          'anything': 2,\n",
      "          'best': 2,\n",
      "          'although': 2,\n",
      "          'away': 2,\n",
      "          'nit': 2,\n",
      "          'dramatic': 2,\n",
      "          'surprisingly': 2,\n",
      "          'seems': 2,\n",
      "          'emotionally': 2,\n",
      "          'human': 2,\n",
      "          'things': 2,\n",
      "          'destroyed': 2,\n",
      "          'sick': 2,\n",
      "          'focus': 2,\n",
      "          'emotional': 2,\n",
      "          'life': 2,\n",
      "          'images': 2,\n",
      "          'comical': 2,\n",
      "          'also': 2,\n",
      "          'telling': 2,\n",
      "          'perspective': 2,\n",
      "          'exists': 2,\n",
      "          'trapped': 2,\n",
      "          'ultimately': 2,\n",
      "          'weeps': 2,\n",
      "          'lets': 2,\n",
      "          'love': 2,\n",
      "          'feelings': 2,\n",
      "          'nothing': 2,\n",
      "          'sympathize': 2,\n",
      "          'deemed': 2,\n",
      "          'reading': 2,\n",
      "          'identify': 2,\n",
      "          'final': 2,\n",
      "          'similar': 2,\n",
      "          'action': 2,\n",
      "          'deep': 2,\n",
      "          'kubrick': 2,\n",
      "          'droll': 2,\n",
      "          'comedy': 2,\n",
      "          'nin': 2,\n",
      "          'scene': 2,\n",
      "          'allow': 2,\n",
      "          'couple': 2,\n",
      "          'relationship': 2,\n",
      "          'play': 2,\n",
      "          'know': 2,\n",
      "          'different': 2,\n",
      "          'lot': 2,\n",
      "          'say': 2,\n",
      "          'amazing': 2,\n",
      "          'nearly': 2,\n",
      "          'doesnt': 2,\n",
      "          'totally': 2,\n",
      "          'wonderful': 2,\n",
      "          'easy': 2,\n",
      "          'looks': 2,\n",
      "          'wonderfully': 2,\n",
      "          'qualities': 2,\n",
      "          'whos': 2,\n",
      "          'beginning': 2,\n",
      "          'threat': 2,\n",
      "          'charlotte': 2,\n",
      "          'nas': 2,\n",
      "          'nlangella': 2,\n",
      "          'right': 2,\n",
      "          'ballyhoo': 1,\n",
      "          'would': 1,\n",
      "          'think': 1,\n",
      "          'infamous': 1,\n",
      "          'use': 1,\n",
      "          'pedophilia': 1,\n",
      "          'important': 1,\n",
      "          'address': 1,\n",
      "          'straightforwardly': 1,\n",
      "          'ideals': 1,\n",
      "          'goodness': 1,\n",
      "          'themes': 1,\n",
      "          'discussed': 1,\n",
      "          'limbo': 1,\n",
      "          'number': 1,\n",
      "          'years': 1,\n",
      "          'lying': 1,\n",
      "          'around': 1,\n",
      "          'vaults': 1,\n",
      "          'san': 1,\n",
      "          'distributor': 1,\n",
      "          'critics': 1,\n",
      "          'waiting': 1,\n",
      "          'either': 1,\n",
      "          'hail': 1,\n",
      "          'masterpiece': 1,\n",
      "          'call': 1,\n",
      "          'horseshit': 1,\n",
      "          'hoopla': 1,\n",
      "          'keeping': 1,\n",
      "          'mind': 1,\n",
      "          'namely': 1,\n",
      "          'fans': 1,\n",
      "          'eagerly': 1,\n",
      "          'awaiting': 1,\n",
      "          'flick': 1,\n",
      "          'since': 1,\n",
      "          'creation': 1,\n",
      "          'nyou': 1,\n",
      "          'wonder': 1,\n",
      "          'picked': 1,\n",
      "          'distribution': 1,\n",
      "          'nwhats': 1,\n",
      "          'youre': 1,\n",
      "          'familiar': 1,\n",
      "          'admittingly': 1,\n",
      "          'real': 1,\n",
      "          'pity': 1,\n",
      "          'sit': 1,\n",
      "          'ignoring': 1,\n",
      "          'crap': 1,\n",
      "          'preceeded': 1,\n",
      "          'quite': 1,\n",
      "          'director': 1,\n",
      "          'adrian': 1,\n",
      "          'competition': 1,\n",
      "          'flashdance': 1,\n",
      "          'fatal': 1,\n",
      "          'attraction': 1,\n",
      "          'indecent': 1,\n",
      "          'proposal': 1,\n",
      "          'besides': 1,\n",
      "          'jacobs': 1,\n",
      "          'ladder': 1,\n",
      "          'nive': 1,\n",
      "          'seen': 1,\n",
      "          'twice': 1,\n",
      "          'wasnt': 1,\n",
      "          'blown': 1,\n",
      "          'seemed': 1,\n",
      "          'overly': 1,\n",
      "          'unaffecting': 1,\n",
      "          'thinking': 1,\n",
      "          'ive': 1,\n",
      "          'waited': 1,\n",
      "          'like': 1,\n",
      "          'forever': 1,\n",
      "          'im': 1,\n",
      "          'tv': 1,\n",
      "          'set': 1,\n",
      "          'premium': 1,\n",
      "          'cable': 1,\n",
      "          'channel': 1,\n",
      "          'giant': 1,\n",
      "          'movie': 1,\n",
      "          'theatre': 1,\n",
      "          'affected': 1,\n",
      "          'heartbreaking': 1,\n",
      "          'obsessed': 1,\n",
      "          'young': 1,\n",
      "          '14year': 1,\n",
      "          'old': 1,\n",
      "          'girl': 1,\n",
      "          'named': 1,\n",
      "          'dolores': 1,\n",
      "          'k': 1,\n",
      "          'great': 1,\n",
      "          'trash': 1,\n",
      "          'perverted': 1,\n",
      "          'ones': 1,\n",
      "          'reach': 1,\n",
      "          'protagonist': 1,\n",
      "          'comicallynamed': 1,\n",
      "          'average': 1,\n",
      "          'seriously': 1,\n",
      "          'wounded': 1,\n",
      "          'embodies': 1,\n",
      "          'idosyncrasies': 1,\n",
      "          'symbol': 1,\n",
      "          'forbidden': 1,\n",
      "          'apple': 1,\n",
      "          'christian': 1,\n",
      "          'mythology': 1,\n",
      "          'destroy': 1,\n",
      "          'cant': 1,\n",
      "          'live': 1,\n",
      "          'nthese': 1,\n",
      "          'ideas': 1,\n",
      "          'worked': 1,\n",
      "          'nicely': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'instead': 1,\n",
      "          'lyrical': 1,\n",
      "          'devastating': 1,\n",
      "          'reason': 1,\n",
      "          'making': 1,\n",
      "          'penetrate': 1,\n",
      "          'depths': 1,\n",
      "          'beautifully': 1,\n",
      "          'blatantly': 1,\n",
      "          'overstylized': 1,\n",
      "          'tone': 1,\n",
      "          'tragic': 1,\n",
      "          'blows': 1,\n",
      "          'every': 1,\n",
      "          'single': 1,\n",
      "          'nhumbert': 1,\n",
      "          'fantsy': 1,\n",
      "          'world': 1,\n",
      "          'desires': 1,\n",
      "          'reflects': 1,\n",
      "          'entire': 1,\n",
      "          'designed': 1,\n",
      "          'nwe': 1,\n",
      "          'fate': 1,\n",
      "          'leave': 1,\n",
      "          'haggard': 1,\n",
      "          'uncontrollably': 1,\n",
      "          '14yearold': 1,\n",
      "          'allows': 1,\n",
      "          'embody': 1,\n",
      "          'navigate': 1,\n",
      "          'decisions': 1,\n",
      "          'overlydramatic': 1,\n",
      "          'recognizes': 1,\n",
      "          'extreme': 1,\n",
      "          'test': 1,\n",
      "          'readers': 1,\n",
      "          'someone': 1,\n",
      "          'socially': 1,\n",
      "          'pervert': 1,\n",
      "          'wonders': 1,\n",
      "          'author': 1,\n",
      "          'vladimir': 1,\n",
      "          'nabokov': 1,\n",
      "          'wrote': 1,\n",
      "          'means': 1,\n",
      "          'peace': 1,\n",
      "          'weirdest': 1,\n",
      "          'reached': 1,\n",
      "          'finale': 1,\n",
      "          'obsessional': 1,\n",
      "          'journey': 1,\n",
      "          'easily': 1,\n",
      "          'opening': 1,\n",
      "          'hasnt': 1,\n",
      "          'wandering': 1,\n",
      "          'reality': 1,\n",
      "          'else': 1,\n",
      "          'sadness': 1,\n",
      "          'adapted': 1,\n",
      "          'filmed': 1,\n",
      "          'shock': 1,\n",
      "          '1962': 1,\n",
      "          'stanley': 1,\n",
      "          'couldnt': 1,\n",
      "          'possibly': 1,\n",
      "          'brought': 1,\n",
      "          'faithfulness': 1,\n",
      "          'able': 1,\n",
      "          'next': 1,\n",
      "          'economized': 1,\n",
      "          'everything': 1,\n",
      "          'came': 1,\n",
      "          'black': 1,\n",
      "          'general': 1,\n",
      "          'used': 1,\n",
      "          'traps': 1,\n",
      "          'society': 1,\n",
      "          'benefits': 1,\n",
      "          'studio': 1,\n",
      "          'demanded': 1,\n",
      "          'heinous': 1,\n",
      "          'murder': 1,\n",
      "          'come': 1,\n",
      "          'portray': 1,\n",
      "          'murderer': 1,\n",
      "          'gives': 1,\n",
      "          'depth': 1,\n",
      "          'man': 1,\n",
      "          'censors': 1,\n",
      "          'wouldnt': 1,\n",
      "          'anymore': 1,\n",
      "          'glances': 1,\n",
      "          'subtle': 1,\n",
      "          'dialogue': 1,\n",
      "          'show': 1,\n",
      "          'um': 1,\n",
      "          'decided': 1,\n",
      "          'still': 1,\n",
      "          'tragedy': 1,\n",
      "          'seep': 1,\n",
      "          'nlooking': 1,\n",
      "          'versions': 1,\n",
      "          'weve': 1,\n",
      "          'read': 1,\n",
      "          'bound': 1,\n",
      "          'angered': 1,\n",
      "          'size': 1,\n",
      "          'differences': 1,\n",
      "          'impossible': 1,\n",
      "          'compare': 1,\n",
      "          'nthey': 1,\n",
      "          'go': 1,\n",
      "          'room': 1,\n",
      "          'sexually': 1,\n",
      "          'frank': 1,\n",
      "          'true': 1,\n",
      "          'several': 1,\n",
      "          'thus': 1,\n",
      "          'comparison': 1,\n",
      "          'overall': 1,\n",
      "          'unfair': 1,\n",
      "          'ni': 1,\n",
      "          'saying': 1,\n",
      "          'level': 1,\n",
      "          'greatness': 1,\n",
      "          'wont': 1,\n",
      "          'nhowever': 1,\n",
      "          'pretty': 1,\n",
      "          'mostly': 1,\n",
      "          'hey': 1,\n",
      "          'loved': 1,\n",
      "          'reminded': 1,\n",
      "          'wit': 1,\n",
      "          'chuckles': 1,\n",
      "          'witty': 1,\n",
      "          'toll': 1,\n",
      "          'nsome': 1,\n",
      "          'casting': 1,\n",
      "          'leads': 1,\n",
      "          'njeremy': 1,\n",
      "          'irons': 1,\n",
      "          'soft': 1,\n",
      "          'british': 1,\n",
      "          'voice': 1,\n",
      "          'gentle': 1,\n",
      "          'nhes': 1,\n",
      "          'unique': 1,\n",
      "          'distraught': 1,\n",
      "          'brings': 1,\n",
      "          'sympathy': 1,\n",
      "          'goes': 1,\n",
      "          'beyond': 1,\n",
      "          'pathos': 1,\n",
      "          'comes': 1,\n",
      "          'audience': 1,\n",
      "          'lust': 1,\n",
      "          'hes': 1,\n",
      "          'prisoner': 1,\n",
      "          'long': 1,\n",
      "          'lives': 1,\n",
      "          'dominique': 1,\n",
      "          'swain': 1,\n",
      "          'plays': 1,\n",
      "          'title': 1,\n",
      "          'rather': 1,\n",
      "          'incredible': 1,\n",
      "          'nshe': 1,\n",
      "          'pulls': 1,\n",
      "          'tough': 1,\n",
      "          'sue': 1,\n",
      "          'lyon': 1,\n",
      "          'balancing': 1,\n",
      "          'seduction': 1,\n",
      "          'bratiness': 1,\n",
      "          'selfcenteredness': 1,\n",
      "          'marks': 1,\n",
      "          'surrenders': 1,\n",
      "          'loves': 1,\n",
      "          'attention': 1,\n",
      "          'knows': 1,\n",
      "          'denies': 1,\n",
      "          'blackmails': 1,\n",
      "          'effortlessly': 1,\n",
      "          'involving': 1,\n",
      "          'rocking': 1,\n",
      "          'chair': 1,\n",
      "          'little': 1,\n",
      "          'foot': 1,\n",
      "          'damn': 1,\n",
      "          'near': 1,\n",
      "          'classic': 1,\n",
      "          'stands': 1,\n",
      "          'runs': 1,\n",
      "          'leaving': 1,\n",
      "          'follow': 1,\n",
      "          'nthere': 1,\n",
      "          'minor': 1,\n",
      "          'characters': 1,\n",
      "          'road': 1,\n",
      "          'block': 1,\n",
      "          'reappearing': 1,\n",
      "          'former': 1,\n",
      "          'lolitas': 1,\n",
      "          'mother': 1,\n",
      "          'melanie': 1,\n",
      "          'monster': 1,\n",
      "          'woman': 1,\n",
      "          'overbearing': 1,\n",
      "          'constantly': 1,\n",
      "          'scolding': 1,\n",
      "          'child': 1,\n",
      "          'overlyreligious': 1,\n",
      "          'selfish': 1,\n",
      "          'obstacle': 1,\n",
      "          'overcome': 1,\n",
      "          'obtain': 1,\n",
      "          'goal': 1,\n",
      "          'shelly': 1,\n",
      "          'winters': 1,\n",
      "          'represented': 1,\n",
      "          'half': 1,\n",
      "          'annoying': 1,\n",
      "          'game': 1,\n",
      "          'try': 1,\n",
      "          'mentioning': 1,\n",
      "          'actor': 1,\n",
      "          'though': 1,\n",
      "          'bad': 1,\n",
      "          'persay': 1,\n",
      "          'clare': 1,\n",
      "          'quilty': 1,\n",
      "          'writer': 1,\n",
      "          'trying': 1,\n",
      "          'seduce': 1,\n",
      "          'succeeds': 1,\n",
      "          'price': 1,\n",
      "          'direction': 1,\n",
      "          'peter': 1,\n",
      "          'sellars': 1,\n",
      "          'took': 1,\n",
      "          'nquilty': 1,\n",
      "          'comic': 1,\n",
      "          'form': 1,\n",
      "          'many': 1,\n",
      "          'forms': 1,\n",
      "          'popping': 1,\n",
      "          'states': 1,\n",
      "          'rambling': 1,\n",
      "          'german': 1,\n",
      "          'proning': 1,\n",
      "          'eventually': 1,\n",
      "          'drunk': 1,\n",
      "          'route': 1,\n",
      "          'allowing': 1,\n",
      "          'creepiness': 1,\n",
      "          'unearthed': 1,\n",
      "          'result': 1,\n",
      "          'shadows': 1,\n",
      "          'low': 1,\n",
      "          'shots': 1,\n",
      "          'meets': 1,\n",
      "          'ironic': 1,\n",
      "          'ending': 1,\n",
      "          'exact': 1,\n",
      "          'opposite': 1,\n",
      "          'thought': 1,\n",
      "          'improvements': 1,\n",
      "          'mistakes': 1,\n",
      "          'screenwriter': 1,\n",
      "          'stephen': 1,\n",
      "          'schiff': 1,\n",
      "          'parts': 1,\n",
      "          'whole': 1,\n",
      "          'cinemawise': 1,\n",
      "          'beautiful': 1,\n",
      "          'perpetually': 1,\n",
      "          'saddening': 1,\n",
      "          'camera': 1,\n",
      "          'movements': 1,\n",
      "          'stylized': 1,\n",
      "          'shot': 1,\n",
      "          'breathtakingly': 1,\n",
      "          'rich': 1,\n",
      "          'acting': 1,\n",
      "          'earth': 1,\n",
      "          'nmore': 1,\n",
      "          'importantly': 1,\n",
      "          'brink': 1,\n",
      "          'emotion': 1,\n",
      "          'jumps': 1,\n",
      "          'nby': 1,\n",
      "          'sadly': 1,\n",
      "          'driving': 1,\n",
      "          'recklessly': 1,\n",
      "          'car': 1,\n",
      "          'following': 1,\n",
      "          'says': 1,\n",
      "          'regret': 1,\n",
      "          'feel': 1,\n",
      "          'lose': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 6,\n",
      "          'one': 5,\n",
      "          'funny': 5,\n",
      "          'like': 5,\n",
      "          'end': 4,\n",
      "          'nhe': 4,\n",
      "          'even': 4,\n",
      "          'scene': 4,\n",
      "          'almost': 3,\n",
      "          'without': 3,\n",
      "          'good': 3,\n",
      "          'think': 3,\n",
      "          'get': 3,\n",
      "          'liar': 3,\n",
      "          'nthe': 3,\n",
      "          'cant': 3,\n",
      "          'lie': 3,\n",
      "          'tries': 3,\n",
      "          'sidesplitting': 2,\n",
      "          'nbut': 2,\n",
      "          'laughs': 2,\n",
      "          'real': 2,\n",
      "          'people': 2,\n",
      "          'way': 2,\n",
      "          'nthis': 2,\n",
      "          'movies': 2,\n",
      "          'carrey': 2,\n",
      "          'nthere': 2,\n",
      "          'son': 2,\n",
      "          'right': 2,\n",
      "          'away': 2,\n",
      "          'may': 2,\n",
      "          'carreys': 2,\n",
      "          'birthday': 2,\n",
      "          'wish': 2,\n",
      "          'gets': 2,\n",
      "          'office': 2,\n",
      "          'hes': 2,\n",
      "          'gotten': 2,\n",
      "          'breaking': 2,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'ask': 2,\n",
      "          'climax': 2,\n",
      "          'capsule': 1,\n",
      "          'comedy': 1,\n",
      "          'follows': 1,\n",
      "          'merciless': 1,\n",
      "          'logic': 1,\n",
      "          'providing': 1,\n",
      "          'deal': 1,\n",
      "          'genuine': 1,\n",
      "          'nmost': 1,\n",
      "          'comedies': 1,\n",
      "          'days': 1,\n",
      "          'flaw': 1,\n",
      "          'ntheyre': 1,\n",
      "          'nthey': 1,\n",
      "          'theyre': 1,\n",
      "          'devoid': 1,\n",
      "          'anything': 1,\n",
      "          'really': 1,\n",
      "          'penetrating': 1,\n",
      "          'dastardly': 1,\n",
      "          'noccasionally': 1,\n",
      "          'sneaks': 1,\n",
      "          'past': 1,\n",
      "          'deadening': 1,\n",
      "          'hollywood': 1,\n",
      "          'preconceptions': 1,\n",
      "          'humor': 1,\n",
      "          'gem': 1,\n",
      "          'ruthless': 1,\n",
      "          'instance': 1,\n",
      "          'established': 1,\n",
      "          'microcosm': 1,\n",
      "          'setup': 1,\n",
      "          'played': 1,\n",
      "          'bitter': 1,\n",
      "          'nliar': 1,\n",
      "          'built': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'laughing': 1,\n",
      "          'consistently': 1,\n",
      "          'instead': 1,\n",
      "          'couple': 1,\n",
      "          'setpieces': 1,\n",
      "          'inspired': 1,\n",
      "          'laugh': 1,\n",
      "          'dismal': 1,\n",
      "          'fatal': 1,\n",
      "          'instinct': 1,\n",
      "          'whole': 1,\n",
      "          'works': 1,\n",
      "          'clockwork': 1,\n",
      "          'njim': 1,\n",
      "          'playes': 1,\n",
      "          'highpowered': 1,\n",
      "          'lawyer': 1,\n",
      "          'lying': 1,\n",
      "          'natural': 1,\n",
      "          'breathing': 1,\n",
      "          'thing': 1,\n",
      "          'takes': 1,\n",
      "          'seriously': 1,\n",
      "          'though': 1,\n",
      "          'sense': 1,\n",
      "          'affection': 1,\n",
      "          'wife': 1,\n",
      "          'divorced': 1,\n",
      "          'seeing': 1,\n",
      "          'another': 1,\n",
      "          'man': 1,\n",
      "          'looks': 1,\n",
      "          'move': 1,\n",
      "          'together': 1,\n",
      "          'goes': 1,\n",
      "          'course': 1,\n",
      "          'sets': 1,\n",
      "          'early': 1,\n",
      "          'material': 1,\n",
      "          'timing': 1,\n",
      "          'remarkable': 1,\n",
      "          'balance': 1,\n",
      "          'jim': 1,\n",
      "          'overthetop': 1,\n",
      "          'persona': 1,\n",
      "          'reality': 1,\n",
      "          'nthen': 1,\n",
      "          'plot': 1,\n",
      "          'springs': 1,\n",
      "          'action': 1,\n",
      "          'snubbed': 1,\n",
      "          'deliberately': 1,\n",
      "          'father': 1,\n",
      "          'kid': 1,\n",
      "          'makes': 1,\n",
      "          'blows': 1,\n",
      "          'candles': 1,\n",
      "          'day': 1,\n",
      "          'dad': 1,\n",
      "          'nwhat': 1,\n",
      "          'happens': 1,\n",
      "          'next': 1,\n",
      "          'neverything': 1,\n",
      "          'turns': 1,\n",
      "          'confrontation': 1,\n",
      "          'cornered': 1,\n",
      "          'bum': 1,\n",
      "          'change': 1,\n",
      "          'shouts': 1,\n",
      "          'nim': 1,\n",
      "          'giving': 1,\n",
      "          'money': 1,\n",
      "          'know': 1,\n",
      "          'youll': 1,\n",
      "          'spend': 1,\n",
      "          'booze': 1,\n",
      "          'nall': 1,\n",
      "          'want': 1,\n",
      "          'step': 1,\n",
      "          'debris': 1,\n",
      "          'decaying': 1,\n",
      "          'society': 1,\n",
      "          'elevator': 1,\n",
      "          'earning': 1,\n",
      "          'black': 1,\n",
      "          'eye': 1,\n",
      "          'nand': 1,\n",
      "          'whats': 1,\n",
      "          'worse': 1,\n",
      "          'expensive': 1,\n",
      "          'divorce': 1,\n",
      "          'settlement': 1,\n",
      "          'requires': 1,\n",
      "          'twist': 1,\n",
      "          'truth': 1,\n",
      "          'abstract': 1,\n",
      "          'wire': 1,\n",
      "          'sculpture': 1,\n",
      "          'ncarrey': 1,\n",
      "          'used': 1,\n",
      "          'find': 1,\n",
      "          'unfunny': 1,\n",
      "          'better': 1,\n",
      "          'schtick': 1,\n",
      "          'limited': 1,\n",
      "          'uses': 1,\n",
      "          'great': 1,\n",
      "          'effect': 1,\n",
      "          'test': 1,\n",
      "          'ability': 1,\n",
      "          'nearly': 1,\n",
      "          'demolishes': 1,\n",
      "          'process': 1,\n",
      "          'theres': 1,\n",
      "          'grin': 1,\n",
      "          'across': 1,\n",
      "          'face': 1,\n",
      "          'remembering': 1,\n",
      "          'write': 1,\n",
      "          'fingers': 1,\n",
      "          'twitch': 1,\n",
      "          'body': 1,\n",
      "          'buckles': 1,\n",
      "          'someone': 1,\n",
      "          'throes': 1,\n",
      "          'cyanide': 1,\n",
      "          'poisoning': 1,\n",
      "          'talk': 1,\n",
      "          'speaking': 1,\n",
      "          'tongues': 1,\n",
      "          'nequally': 1,\n",
      "          'beats': 1,\n",
      "          'pulp': 1,\n",
      "          'dont': 1,\n",
      "          'drink': 1,\n",
      "          'water': 1,\n",
      "          'keep': 1,\n",
      "          'outbursts': 1,\n",
      "          'courtroom': 1,\n",
      "          'fails': 1,\n",
      "          'semipredictable': 1,\n",
      "          'results': 1,\n",
      "          'winds': 1,\n",
      "          'biting': 1,\n",
      "          'bullet': 1,\n",
      "          'called': 1,\n",
      "          'boardroom': 1,\n",
      "          'everyone': 1,\n",
      "          'alone': 1,\n",
      "          'force': 1,\n",
      "          'stop': 1,\n",
      "          'tape': 1,\n",
      "          'minutes': 1,\n",
      "          'sustains': 1,\n",
      "          'also': 1,\n",
      "          'flashes': 1,\n",
      "          'insight': 1,\n",
      "          'na': 1,\n",
      "          'shame': 1,\n",
      "          'insists': 1,\n",
      "          'big': 1,\n",
      "          'ridiculous': 1,\n",
      "          'involves': 1,\n",
      "          'character': 1,\n",
      "          'flagging': 1,\n",
      "          'plane': 1,\n",
      "          'using': 1,\n",
      "          'set': 1,\n",
      "          'motorized': 1,\n",
      "          'stairs': 1,\n",
      "          'leg': 1,\n",
      "          'etc': 1,\n",
      "          'simple': 1,\n",
      "          'reconciliation': 1,\n",
      "          'would': 1,\n",
      "          'trick': 1,\n",
      "          'nwhy': 1,\n",
      "          'stupid': 1,\n",
      "          'pentup': 1,\n",
      "          'always': 1,\n",
      "          'obligatory': 1,\n",
      "          'nits': 1,\n",
      "          'part': 1,\n",
      "          'agenda': 1,\n",
      "          'nthankfully': 1,\n",
      "          'survives': 1,\n",
      "          'nmaybe': 1,\n",
      "          'merciful': 1,\n",
      "          'reflection': 1,\n",
      "          'nif': 1,\n",
      "          'id': 1,\n",
      "          'laughed': 1,\n",
      "          'might': 1,\n",
      "          'needed': 1,\n",
      "          'iron': 1,\n",
      "          'lung': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'story': 8,\n",
      "          'hilary': 7,\n",
      "          'jackie': 7,\n",
      "          'year': 7,\n",
      "          'two': 6,\n",
      "          'watson': 6,\n",
      "          'playing': 6,\n",
      "          'film': 5,\n",
      "          'relationship': 5,\n",
      "          'real': 5,\n",
      "          'griffiths': 5,\n",
      "          'seen': 5,\n",
      "          'sister': 5,\n",
      "          'one': 5,\n",
      "          'performance': 5,\n",
      "          'movie': 4,\n",
      "          'like': 4,\n",
      "          'well': 4,\n",
      "          'could': 4,\n",
      "          'great': 4,\n",
      "          'nit': 4,\n",
      "          'emotional': 4,\n",
      "          'jealous': 4,\n",
      "          'time': 4,\n",
      "          'thing': 3,\n",
      "          'handled': 3,\n",
      "          'respectively': 3,\n",
      "          'brilliant': 3,\n",
      "          'way': 3,\n",
      "          'go': 3,\n",
      "          'plot': 3,\n",
      "          'point': 3,\n",
      "          'makes': 3,\n",
      "          'ms': 3,\n",
      "          'sisters': 3,\n",
      "          'nits': 3,\n",
      "          'tells': 3,\n",
      "          'nthe': 3,\n",
      "          'best': 3,\n",
      "          'begins': 3,\n",
      "          'nwhen': 3,\n",
      "          'famous': 3,\n",
      "          'world': 3,\n",
      "          'marry': 3,\n",
      "          'shes': 3,\n",
      "          'nshe': 3,\n",
      "          'would': 3,\n",
      "          'love': 3,\n",
      "          'eachother': 3,\n",
      "          'never': 3,\n",
      "          'watsons': 3,\n",
      "          'job': 3,\n",
      "          'though': 3,\n",
      "          'insane': 3,\n",
      "          'actually': 3,\n",
      "          'academy': 3,\n",
      "          'loves': 3,\n",
      "          'otherwise': 3,\n",
      "          'maybe': 2,\n",
      "          'fame': 2,\n",
      "          'tearjerker': 2,\n",
      "          'ever': 2,\n",
      "          'told': 2,\n",
      "          'cinematography': 2,\n",
      "          'wonderful': 2,\n",
      "          'sure': 2,\n",
      "          'totally': 2,\n",
      "          'run': 2,\n",
      "          'doesnt': 2,\n",
      "          'merely': 2,\n",
      "          'goes': 2,\n",
      "          'character': 2,\n",
      "          'cellist': 2,\n",
      "          'contracts': 2,\n",
      "          'musicians': 2,\n",
      "          'nin': 2,\n",
      "          'short': 2,\n",
      "          'really': 2,\n",
      "          'something': 2,\n",
      "          'theyre': 2,\n",
      "          'emily': 2,\n",
      "          'nthey': 2,\n",
      "          'also': 2,\n",
      "          'works': 2,\n",
      "          'comeback': 2,\n",
      "          'around': 2,\n",
      "          'country': 2,\n",
      "          'since': 2,\n",
      "          'life': 2,\n",
      "          'hopes': 2,\n",
      "          'may': 2,\n",
      "          'see': 2,\n",
      "          'scene': 2,\n",
      "          'surpasses': 2,\n",
      "          'technical': 2,\n",
      "          'hadnt': 2,\n",
      "          'insanity': 2,\n",
      "          'anyone': 2,\n",
      "          'make': 2,\n",
      "          'get': 2,\n",
      "          'top': 2,\n",
      "          'man': 2,\n",
      "          'nand': 2,\n",
      "          'three': 2,\n",
      "          'easy': 2,\n",
      "          'good': 2,\n",
      "          'woman': 2,\n",
      "          'together': 2,\n",
      "          'holds': 2,\n",
      "          'deal': 2,\n",
      "          'emotions': 2,\n",
      "          'much': 2,\n",
      "          'nbut': 2,\n",
      "          'nif': 2,\n",
      "          'gets': 2,\n",
      "          'already': 2,\n",
      "          'things': 2,\n",
      "          'absolutely': 2,\n",
      "          'role': 2,\n",
      "          'gotten': 2,\n",
      "          'treatment': 2,\n",
      "          'important': 1,\n",
      "          'hallmark': 1,\n",
      "          'hall': 1,\n",
      "          'month': 1,\n",
      "          'manipulative': 1,\n",
      "          'broadcasted': 1,\n",
      "          'abc': 1,\n",
      "          'monday': 1,\n",
      "          'night': 1,\n",
      "          'starring': 1,\n",
      "          'kelly': 1,\n",
      "          'martin': 1,\n",
      "          'yasmeen': 1,\n",
      "          'bleeth': 1,\n",
      "          'nbecause': 1,\n",
      "          'greatest': 1,\n",
      "          'precisely': 1,\n",
      "          'nunderneath': 1,\n",
      "          'todiefor': 1,\n",
      "          'acting': 1,\n",
      "          'incessantly': 1,\n",
      "          'direction': 1,\n",
      "          'modesty': 1,\n",
      "          'whether': 1,\n",
      "          'balls': 1,\n",
      "          'tell': 1,\n",
      "          'certain': 1,\n",
      "          'original': 1,\n",
      "          'obsesses': 1,\n",
      "          'depth': 1,\n",
      "          'style': 1,\n",
      "          'worldreknowned': 1,\n",
      "          'dies': 1,\n",
      "          'prematurely': 1,\n",
      "          'unique': 1,\n",
      "          'center': 1,\n",
      "          'transcend': 1,\n",
      "          'cornball': 1,\n",
      "          'shamelessly': 1,\n",
      "          'tired': 1,\n",
      "          'qualities': 1,\n",
      "          'unlike': 1,\n",
      "          'patch': 1,\n",
      "          'adams': 1,\n",
      "          'effortlessly': 1,\n",
      "          'awesome': 1,\n",
      "          'thats': 1,\n",
      "          'commended': 1,\n",
      "          'days': 1,\n",
      "          'stories': 1,\n",
      "          'botched': 1,\n",
      "          'storytellers': 1,\n",
      "          'ndirector': 1,\n",
      "          'anand': 1,\n",
      "          'tucker': 1,\n",
      "          'nhe': 1,\n",
      "          'overdramaticizes': 1,\n",
      "          'everything': 1,\n",
      "          'still': 1,\n",
      "          'keeps': 1,\n",
      "          'jacqueline': 1,\n",
      "          'du': 1,\n",
      "          'pr': 1,\n",
      "          'rachel': 1,\n",
      "          'first': 1,\n",
      "          'childhood': 1,\n",
      "          'played': 1,\n",
      "          'auriol': 1,\n",
      "          'evans': 1,\n",
      "          'keely': 1,\n",
      "          'flanders': 1,\n",
      "          'friends': 1,\n",
      "          'flutist': 1,\n",
      "          'considered': 1,\n",
      "          'child': 1,\n",
      "          'prodigies': 1,\n",
      "          'better': 1,\n",
      "          'njackie': 1,\n",
      "          'bit': 1,\n",
      "          'skills': 1,\n",
      "          'soon': 1,\n",
      "          'tables': 1,\n",
      "          'turned': 1,\n",
      "          'hit': 1,\n",
      "          'adulthood': 1,\n",
      "          'strives': 1,\n",
      "          'halls': 1,\n",
      "          'instead': 1,\n",
      "          'captures': 1,\n",
      "          'heart': 1,\n",
      "          'hapless': 1,\n",
      "          'joyful': 1,\n",
      "          'conductor': 1,\n",
      "          'kiffer': 1,\n",
      "          'finzi': 1,\n",
      "          'david': 1,\n",
      "          'morissey': 1,\n",
      "          'semistarmaking': 1,\n",
      "          'turn': 1,\n",
      "          'courtship': 1,\n",
      "          'move': 1,\n",
      "          'lovely': 1,\n",
      "          'house': 1,\n",
      "          'making': 1,\n",
      "          'incredibly': 1,\n",
      "          'cello': 1,\n",
      "          'becomes': 1,\n",
      "          'symbol': 1,\n",
      "          'current': 1,\n",
      "          'plays': 1,\n",
      "          'eyes': 1,\n",
      "          'stops': 1,\n",
      "          'alone': 1,\n",
      "          'enters': 1,\n",
      "          'shallow': 1,\n",
      "          'equally': 1,\n",
      "          'pianist': 1,\n",
      "          'daniel': 1,\n",
      "          'barenboim': 1,\n",
      "          'james': 1,\n",
      "          'frain': 1,\n",
      "          'overcloud': 1,\n",
      "          'eventually': 1,\n",
      "          'lose': 1,\n",
      "          'runs': 1,\n",
      "          'away': 1,\n",
      "          'hilarys': 1,\n",
      "          'home': 1,\n",
      "          'gain': 1,\n",
      "          'admittance': 1,\n",
      "          'sleep': 1,\n",
      "          'husband': 1,\n",
      "          'sleeps': 1,\n",
      "          'gives': 1,\n",
      "          'pleasure': 1,\n",
      "          'terribly': 1,\n",
      "          'melodramtic': 1,\n",
      "          'contracted': 1,\n",
      "          'brilliantly': 1,\n",
      "          'edited': 1,\n",
      "          'breakdown': 1,\n",
      "          'semismiliar': 1,\n",
      "          'shine': 1,\n",
      "          'devastation': 1,\n",
      "          'easily': 1,\n",
      "          'call': 1,\n",
      "          'sign': 1,\n",
      "          'melodramatic': 1,\n",
      "          'overload': 1,\n",
      "          'key': 1,\n",
      "          'gradual': 1,\n",
      "          'death': 1,\n",
      "          'slip': 1,\n",
      "          'rather': 1,\n",
      "          'tumultuous': 1,\n",
      "          'might': 1,\n",
      "          'add': 1,\n",
      "          'perfectly': 1,\n",
      "          'realized': 1,\n",
      "          'ntheir': 1,\n",
      "          'downtoearth': 1,\n",
      "          'complex': 1,\n",
      "          'entity': 1,\n",
      "          'else': 1,\n",
      "          'entire': 1,\n",
      "          'completely': 1,\n",
      "          'another': 1,\n",
      "          'young': 1,\n",
      "          'abilities': 1,\n",
      "          'tries': 1,\n",
      "          'vain': 1,\n",
      "          'cant': 1,\n",
      "          'almost': 1,\n",
      "          'seems': 1,\n",
      "          'back': 1,\n",
      "          'success': 1,\n",
      "          'lands': 1,\n",
      "          'sees': 1,\n",
      "          'lifestyle': 1,\n",
      "          'extensive': 1,\n",
      "          'brinks': 1,\n",
      "          'ive': 1,\n",
      "          'truly': 1,\n",
      "          'dare': 1,\n",
      "          'share': 1,\n",
      "          'whole': 1,\n",
      "          'doubted': 1,\n",
      "          'even': 1,\n",
      "          'tested': 1,\n",
      "          'nanother': 1,\n",
      "          'liked': 1,\n",
      "          'ni': 1,\n",
      "          'usually': 1,\n",
      "          'note': 1,\n",
      "          'overpraise': 1,\n",
      "          'actor': 1,\n",
      "          'either': 1,\n",
      "          'drunkard': 1,\n",
      "          'lunatic': 1,\n",
      "          'someone': 1,\n",
      "          'mortal': 1,\n",
      "          'disease': 1,\n",
      "          'combination': 1,\n",
      "          'nmy': 1,\n",
      "          'reasoning': 1,\n",
      "          'fucking': 1,\n",
      "          'worst': 1,\n",
      "          'case': 1,\n",
      "          'thandie': 1,\n",
      "          'newton': 1,\n",
      "          'beloved': 1,\n",
      "          'whats': 1,\n",
      "          'tough': 1,\n",
      "          'stumbles': 1,\n",
      "          'slurs': 1,\n",
      "          'words': 1,\n",
      "          'acts': 1,\n",
      "          'old': 1,\n",
      "          'inside': 1,\n",
      "          '20year': 1,\n",
      "          'olds': 1,\n",
      "          'body': 1,\n",
      "          'nhell': 1,\n",
      "          'play': 1,\n",
      "          'pair': 1,\n",
      "          'breasts': 1,\n",
      "          'exact': 1,\n",
      "          'kimberly': 1,\n",
      "          'elise': 1,\n",
      "          'rock': 1,\n",
      "          'family': 1,\n",
      "          'mother': 1,\n",
      "          'slowly': 1,\n",
      "          'brothers': 1,\n",
      "          'mothers': 1,\n",
      "          'lover': 1,\n",
      "          'scared': 1,\n",
      "          'harder': 1,\n",
      "          'mere': 1,\n",
      "          'stumbling': 1,\n",
      "          'arts': 1,\n",
      "          'sciences': 1,\n",
      "          'overpraising': 1,\n",
      "          'performances': 1,\n",
      "          'newtons': 1,\n",
      "          'dont': 1,\n",
      "          'believe': 1,\n",
      "          'look': 1,\n",
      "          'jack': 1,\n",
      "          'nicholsons': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'comes': 1,\n",
      "          'thanks': 1,\n",
      "          'opening': 1,\n",
      "          'sequence': 1,\n",
      "          'kids': 1,\n",
      "          'understand': 1,\n",
      "          'motives': 1,\n",
      "          'behind': 1,\n",
      "          'actions': 1,\n",
      "          'loose': 1,\n",
      "          'sanity': 1,\n",
      "          'weve': 1,\n",
      "          'understood': 1,\n",
      "          'last': 1,\n",
      "          'straw': 1,\n",
      "          'plagued': 1,\n",
      "          'terrible': 1,\n",
      "          'neuroses': 1,\n",
      "          'nrachel': 1,\n",
      "          'understudy': 1,\n",
      "          'protagonist': 1,\n",
      "          'matches': 1,\n",
      "          'stepforstep': 1,\n",
      "          'grows': 1,\n",
      "          'demands': 1,\n",
      "          'unspeakable': 1,\n",
      "          'able': 1,\n",
      "          'give': 1,\n",
      "          'needs': 1,\n",
      "          'help': 1,\n",
      "          'ngriffiths': 1,\n",
      "          'unknown': 1,\n",
      "          'actress': 1,\n",
      "          'breaking': 1,\n",
      "          'waves': 1,\n",
      "          'boxer': 1,\n",
      "          'critics': 1,\n",
      "          'groups': 1,\n",
      "          'whove': 1,\n",
      "          'deemed': 1,\n",
      "          'glance': 1,\n",
      "          'read': 1,\n",
      "          'boring': 1,\n",
      "          'scream': 1,\n",
      "          'hysteria': 1,\n",
      "          'hear': 1,\n",
      "          'nafter': 1,\n",
      "          'thankless': 1,\n",
      "          'keeping': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'rainman': 1,\n",
      "          'oscar': 1,\n",
      "          'consideration': 1,\n",
      "          'hoffman': 1,\n",
      "          'deserves': 1,\n",
      "          'accolades': 1,\n",
      "          'ntogether': 1,\n",
      "          'actresses': 1,\n",
      "          'work': 1,\n",
      "          'extremely': 1,\n",
      "          'deep': 1,\n",
      "          'hell': 1,\n",
      "          'likes': 1,\n",
      "          'havent': 1,\n",
      "          'nottotallygreat': 1,\n",
      "          'final': 1,\n",
      "          'section': 1,\n",
      "          'deals': 1,\n",
      "          'enough': 1,\n",
      "          'equal': 1,\n",
      "          'entirety': 1,\n",
      "          'id': 1,\n",
      "          'say': 1,\n",
      "          'ten': 1,\n",
      "          'films': 1,\n",
      "          'close': 1,\n",
      "          'perfection': 1,\n",
      "          'structure': 1,\n",
      "          'subject': 1,\n",
      "          'beautiful': 1,\n",
      "          'specifications': 1,\n",
      "          'nomination': 1,\n",
      "          'without': 1,\n",
      "          'shred': 1,\n",
      "          'doubt': 1,\n",
      "          'mind': 1,\n",
      "          'editing': 1,\n",
      "          'nearly': 1,\n",
      "          'shame': 1,\n",
      "          'flawless': 1,\n",
      "          'gem': 1,\n",
      "          'hey': 1,\n",
      "          'hardly': 1,\n",
      "          'complain': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hanks': 12,\n",
      "          'ryan': 11,\n",
      "          'really': 9,\n",
      "          'movie': 8,\n",
      "          'well': 8,\n",
      "          'meg': 6,\n",
      "          'tom': 5,\n",
      "          'films': 5,\n",
      "          'going': 5,\n",
      "          'one': 5,\n",
      "          'romantic': 4,\n",
      "          'ni': 4,\n",
      "          'also': 4,\n",
      "          'think': 4,\n",
      "          'nthey': 4,\n",
      "          'wonderful': 4,\n",
      "          'like': 4,\n",
      "          'best': 4,\n",
      "          'get': 4,\n",
      "          'great': 4,\n",
      "          'know': 4,\n",
      "          'sweet': 4,\n",
      "          'see': 4,\n",
      "          'nits': 4,\n",
      "          'always': 4,\n",
      "          'comedy': 3,\n",
      "          'commercial': 3,\n",
      "          'work': 3,\n",
      "          'hes': 3,\n",
      "          'obnoxious': 3,\n",
      "          'idea': 3,\n",
      "          'dont': 3,\n",
      "          'nbut': 3,\n",
      "          'nshe': 3,\n",
      "          'nhanks': 3,\n",
      "          'ephron': 3,\n",
      "          'years': 3,\n",
      "          'nyou': 3,\n",
      "          'kathleen': 3,\n",
      "          'two': 3,\n",
      "          'romance': 3,\n",
      "          'nit': 3,\n",
      "          'nthe': 3,\n",
      "          'made': 3,\n",
      "          'aware': 2,\n",
      "          'last': 2,\n",
      "          'nand': 2,\n",
      "          'wonder': 2,\n",
      "          'long': 2,\n",
      "          'watch': 2,\n",
      "          'act': 2,\n",
      "          'glorious': 2,\n",
      "          'saving': 2,\n",
      "          'private': 2,\n",
      "          'ntom': 2,\n",
      "          'girl': 2,\n",
      "          'question': 2,\n",
      "          'americas': 2,\n",
      "          'including': 2,\n",
      "          'scene': 2,\n",
      "          'shes': 2,\n",
      "          'perky': 2,\n",
      "          'together': 2,\n",
      "          'onscreen': 2,\n",
      "          'back': 2,\n",
      "          'classic': 2,\n",
      "          'nall': 2,\n",
      "          'even': 2,\n",
      "          'cute': 2,\n",
      "          'charming': 2,\n",
      "          'little': 2,\n",
      "          'kelly': 2,\n",
      "          'childrens': 2,\n",
      "          'kinnear': 2,\n",
      "          'affair': 2,\n",
      "          'fox': 2,\n",
      "          'bookseller': 2,\n",
      "          'run': 2,\n",
      "          'father': 2,\n",
      "          'right': 2,\n",
      "          'named': 2,\n",
      "          'around': 2,\n",
      "          'immense': 2,\n",
      "          'troubles': 2,\n",
      "          'kiss': 2,\n",
      "          'kids': 2,\n",
      "          'good': 2,\n",
      "          'still': 2,\n",
      "          'pure': 2,\n",
      "          'script': 2,\n",
      "          'third': 2,\n",
      "          'slow': 2,\n",
      "          'big': 2,\n",
      "          'home': 2,\n",
      "          'nice': 2,\n",
      "          'smile': 2,\n",
      "          'movies': 2,\n",
      "          'powerful': 2,\n",
      "          'thought': 2,\n",
      "          'something': 2,\n",
      "          'thinking': 2,\n",
      "          'behind': 2,\n",
      "          'write': 1,\n",
      "          'review': 1,\n",
      "          'new': 1,\n",
      "          'hanksryan': 1,\n",
      "          'youve': 1,\n",
      "          'got': 1,\n",
      "          'mail': 1,\n",
      "          'acutely': 1,\n",
      "          'typing': 1,\n",
      "          'computer': 1,\n",
      "          'sending': 1,\n",
      "          'billion': 1,\n",
      "          'miles': 1,\n",
      "          'away': 1,\n",
      "          'internet': 1,\n",
      "          'spent': 1,\n",
      "          '2': 1,\n",
      "          'hours': 1,\n",
      "          'watching': 1,\n",
      "          'worlds': 1,\n",
      "          'biggest': 1,\n",
      "          'paid': 1,\n",
      "          'america': 1,\n",
      "          'online': 1,\n",
      "          'bad': 1,\n",
      "          'nwell': 1,\n",
      "          'part': 1,\n",
      "          'nas': 1,\n",
      "          'ill': 1,\n",
      "          'okay': 1,\n",
      "          'nto': 1,\n",
      "          'paraphrase': 1,\n",
      "          'james': 1,\n",
      "          'berardinelli': 1,\n",
      "          'whose': 1,\n",
      "          'reviews': 1,\n",
      "          'admire': 1,\n",
      "          'much': 1,\n",
      "          'serious': 1,\n",
      "          'magnificent': 1,\n",
      "          'performance': 1,\n",
      "          'triumph': 1,\n",
      "          'philadelphia': 1,\n",
      "          'suitably': 1,\n",
      "          'nmeg': 1,\n",
      "          'high': 1,\n",
      "          'school': 1,\n",
      "          'sweetheart': 1,\n",
      "          'nshes': 1,\n",
      "          'handful': 1,\n",
      "          'memorable': 1,\n",
      "          'performances': 1,\n",
      "          'diner': 1,\n",
      "          'harry': 1,\n",
      "          'met': 1,\n",
      "          'sally': 1,\n",
      "          'must': 1,\n",
      "          'mention': 1,\n",
      "          'due': 1,\n",
      "          'um': 1,\n",
      "          'fantastic': 1,\n",
      "          'adorably': 1,\n",
      "          'perkycute': 1,\n",
      "          'amazing': 1,\n",
      "          'duo': 1,\n",
      "          'short': 1,\n",
      "          'lifetime': 1,\n",
      "          'nsome': 1,\n",
      "          'people': 1,\n",
      "          'old': 1,\n",
      "          'couples': 1,\n",
      "          'wonderfully': 1,\n",
      "          'kinetic': 1,\n",
      "          'chemistry': 1,\n",
      "          'thats': 1,\n",
      "          'hard': 1,\n",
      "          'resist': 1,\n",
      "          'im': 1,\n",
      "          'try': 1,\n",
      "          'ntheyre': 1,\n",
      "          'collaborate': 1,\n",
      "          'nora': 1,\n",
      "          'directed': 1,\n",
      "          'megahit': 1,\n",
      "          'sleepless': 1,\n",
      "          'seattle': 1,\n",
      "          'nhere': 1,\n",
      "          'setup': 1,\n",
      "          'different': 1,\n",
      "          'nkathleen': 1,\n",
      "          'owns': 1,\n",
      "          'small': 1,\n",
      "          'bookstore': 1,\n",
      "          'mother': 1,\n",
      "          'founded': 1,\n",
      "          '42': 1,\n",
      "          'ago': 1,\n",
      "          'passed': 1,\n",
      "          'successful': 1,\n",
      "          'beautiful': 1,\n",
      "          'dates': 1,\n",
      "          'wellknown': 1,\n",
      "          'columnist': 1,\n",
      "          'radical': 1,\n",
      "          'sorts': 1,\n",
      "          'handle': 1,\n",
      "          'shopgirl': 1,\n",
      "          'secretly': 1,\n",
      "          'emailing': 1,\n",
      "          'ny152': 1,\n",
      "          'strictly': 1,\n",
      "          'undetailed': 1,\n",
      "          'relationship': 1,\n",
      "          'specifics': 1,\n",
      "          'nny152': 1,\n",
      "          'happens': 1,\n",
      "          'joe': 1,\n",
      "          'multimillionaire': 1,\n",
      "          'heir': 1,\n",
      "          'fortune': 1,\n",
      "          'chain': 1,\n",
      "          'megabookstores': 1,\n",
      "          'coleman': 1,\n",
      "          'nfox': 1,\n",
      "          'books': 1,\n",
      "          'decided': 1,\n",
      "          'open': 1,\n",
      "          'store': 1,\n",
      "          'west': 1,\n",
      "          'side': 1,\n",
      "          'across': 1,\n",
      "          'shop': 1,\n",
      "          'corner': 1,\n",
      "          'nevery': 1,\n",
      "          'morning': 1,\n",
      "          'email': 1,\n",
      "          'silly': 1,\n",
      "          'every': 1,\n",
      "          'day': 1,\n",
      "          'fight': 1,\n",
      "          'death': 1,\n",
      "          'premise': 1,\n",
      "          'works': 1,\n",
      "          'nicely': 1,\n",
      "          'balancing': 1,\n",
      "          'wants': 1,\n",
      "          'sense': 1,\n",
      "          'lets': 1,\n",
      "          'sex': 1,\n",
      "          'tonight': 1,\n",
      "          'mantra': 1,\n",
      "          'youll': 1,\n",
      "          'excuse': 1,\n",
      "          'bluntness': 1,\n",
      "          'nthis': 1,\n",
      "          'solid': 1,\n",
      "          'built': 1,\n",
      "          'vague': 1,\n",
      "          'concept': 1,\n",
      "          'love': 1,\n",
      "          'nhmm': 1,\n",
      "          'goes': 1,\n",
      "          'twists': 1,\n",
      "          'turns': 1,\n",
      "          'sad': 1,\n",
      "          'moments': 1,\n",
      "          'happy': 1,\n",
      "          'ones': 1,\n",
      "          'moment': 1,\n",
      "          'hook': 1,\n",
      "          'use': 1,\n",
      "          'modern': 1,\n",
      "          'terminology': 1,\n",
      "          'way': 1,\n",
      "          'happiness': 1,\n",
      "          'happen': 1,\n",
      "          'nthankfully': 1,\n",
      "          'supporting': 1,\n",
      "          'cast': 1,\n",
      "          'posey': 1,\n",
      "          'chappelle': 1,\n",
      "          'host': 1,\n",
      "          'others': 1,\n",
      "          'involving': 1,\n",
      "          'brothers': 1,\n",
      "          'aunts': 1,\n",
      "          'idealism': 1,\n",
      "          'makes': 1,\n",
      "          'feel': 1,\n",
      "          'ever': 1,\n",
      "          'outside': 1,\n",
      "          'warm': 1,\n",
      "          'inside': 1,\n",
      "          'nhe': 1,\n",
      "          'believe': 1,\n",
      "          'greatest': 1,\n",
      "          'actor': 1,\n",
      "          'ndoes': 1,\n",
      "          'show': 1,\n",
      "          'nnah': 1,\n",
      "          'nwhich': 1,\n",
      "          'boils': 1,\n",
      "          'confection': 1,\n",
      "          'bits': 1,\n",
      "          'godfather': 1,\n",
      "          'jokes': 1,\n",
      "          'superb': 1,\n",
      "          'nthere': 1,\n",
      "          'flaws': 1,\n",
      "          'pacing': 1,\n",
      "          'doesnt': 1,\n",
      "          'would': 1,\n",
      "          'liked': 1,\n",
      "          'nonce': 1,\n",
      "          'knows': 1,\n",
      "          'secret': 1,\n",
      "          'gets': 1,\n",
      "          'looked': 1,\n",
      "          'couple': 1,\n",
      "          'times': 1,\n",
      "          'make': 1,\n",
      "          'sure': 1,\n",
      "          'deliver': 1,\n",
      "          'waiting': 1,\n",
      "          'could': 1,\n",
      "          'reasonable': 1,\n",
      "          'hour': 1,\n",
      "          'problem': 1,\n",
      "          'shaping': 1,\n",
      "          'dated': 1,\n",
      "          'nemail': 1,\n",
      "          'nwhen': 1,\n",
      "          'age': 1,\n",
      "          'using': 1,\n",
      "          'eyeroll': 1,\n",
      "          'anybody': 1,\n",
      "          'loves': 1,\n",
      "          'dive': 1,\n",
      "          'pillow': 1,\n",
      "          'better': 1,\n",
      "          'anyone': 1,\n",
      "          'history': 1,\n",
      "          'gives': 1,\n",
      "          'helps': 1,\n",
      "          'lines': 1,\n",
      "          'absolutely': 1,\n",
      "          'hilarious': 1,\n",
      "          'come': 1,\n",
      "          'exact': 1,\n",
      "          'time': 1,\n",
      "          'keep': 1,\n",
      "          'audience': 1,\n",
      "          'awake': 1,\n",
      "          'arguing': 1,\n",
      "          'drive': 1,\n",
      "          'purpose': 1,\n",
      "          'nive': 1,\n",
      "          'believed': 1,\n",
      "          'indeed': 1,\n",
      "          'mankind': 1,\n",
      "          'three': 1,\n",
      "          'abilities': 1,\n",
      "          'needs': 1,\n",
      "          'survive': 1,\n",
      "          'ability': 1,\n",
      "          'entertain': 1,\n",
      "          'procreate': 1,\n",
      "          'nmovies': 1,\n",
      "          'definitely': 1,\n",
      "          'first': 1,\n",
      "          'id': 1,\n",
      "          'rather': 1,\n",
      "          'enlightened': 1,\n",
      "          'another': 1,\n",
      "          'viewpoint': 1,\n",
      "          'entertained': 1,\n",
      "          'forgot': 1,\n",
      "          'night': 1,\n",
      "          'incredible': 1,\n",
      "          'year': 1,\n",
      "          'driving': 1,\n",
      "          'force': 1,\n",
      "          'truly': 1,\n",
      "          'someone': 1,\n",
      "          'world': 1,\n",
      "          'nhes': 1,\n",
      "          'half': 1,\n",
      "          'glue': 1,\n",
      "          'example': 1,\n",
      "          'entertainment': 1,\n",
      "          'magical': 1,\n",
      "          'lovely': 1,\n",
      "          'technology': 1,\n",
      "          'twist': 1,\n",
      "          'may': 1,\n",
      "          'gave': 1,\n",
      "          'pretty': 1,\n",
      "          'face': 1,\n",
      "          'npos': 1}),\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Counter({'erin': 10,\n",
      "          'life': 7,\n",
      "          'nthe': 7,\n",
      "          'fate': 4,\n",
      "          'alan': 4,\n",
      "          'movie': 4,\n",
      "          'film': 3,\n",
      "          'two': 3,\n",
      "          'yet': 3,\n",
      "          'relationship': 3,\n",
      "          'hes': 3,\n",
      "          'anderson': 2,\n",
      "          'next': 2,\n",
      "          'stop': 2,\n",
      "          'wonderland': 2,\n",
      "          'characters': 2,\n",
      "          'carry': 2,\n",
      "          'ending': 2,\n",
      "          'boyfriend': 2,\n",
      "          'nits': 2,\n",
      "          'without': 2,\n",
      "          'ad': 2,\n",
      "          'erins': 2,\n",
      "          'makes': 2,\n",
      "          'glass': 2,\n",
      "          'fish': 2,\n",
      "          'boston': 2,\n",
      "          'aquarium': 2,\n",
      "          'window': 2,\n",
      "          'gaze': 2,\n",
      "          'see': 2,\n",
      "          'away': 2,\n",
      "          'attempts': 2,\n",
      "          'get': 2,\n",
      "          'track': 2,\n",
      "          'guy': 2,\n",
      "          'much': 2,\n",
      "          'wait': 2,\n",
      "          'meet': 2,\n",
      "          'possible': 2,\n",
      "          'films': 2,\n",
      "          'victims': 1,\n",
      "          'create': 1,\n",
      "          'destiny': 1,\n",
      "          'ndirectorwriter': 1,\n",
      "          'brad': 1,\n",
      "          'seems': 1,\n",
      "          'saying': 1,\n",
      "          'yes': 1,\n",
      "          'questions': 1,\n",
      "          'witty': 1,\n",
      "          'main': 1,\n",
      "          'spend': 1,\n",
      "          'entire': 1,\n",
      "          'others': 1,\n",
      "          'orbit': 1,\n",
      "          'catching': 1,\n",
      "          'glimpses': 1,\n",
      "          'one': 1,\n",
      "          'another': 1,\n",
      "          'quite': 1,\n",
      "          'connecting': 1,\n",
      "          'inevitable': 1,\n",
      "          'conclusion': 1,\n",
      "          'nis': 1,\n",
      "          'keeps': 1,\n",
      "          'near': 1,\n",
      "          'ultimately': 1,\n",
      "          'puts': 1,\n",
      "          'together': 1,\n",
      "          'ndoes': 1,\n",
      "          'predestination': 1,\n",
      "          'aspects': 1,\n",
      "          'nas': 1,\n",
      "          'starts': 1,\n",
      "          'castleton': 1,\n",
      "          'hope': 1,\n",
      "          'davis': 1,\n",
      "          'melancholy': 1,\n",
      "          '29': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'late': 1,\n",
      "          'shift': 1,\n",
      "          'nurse': 1,\n",
      "          'livein': 1,\n",
      "          'hoffman': 1,\n",
      "          'nrather': 1,\n",
      "          'narriving': 1,\n",
      "          'home': 1,\n",
      "          'work': 1,\n",
      "          'finds': 1,\n",
      "          'parked': 1,\n",
      "          'front': 1,\n",
      "          'apartment': 1,\n",
      "          'car': 1,\n",
      "          'packed': 1,\n",
      "          'belongings': 1,\n",
      "          'nin': 1,\n",
      "          'fumbling': 1,\n",
      "          'amusing': 1,\n",
      "          'self': 1,\n",
      "          'deluding': 1,\n",
      "          'ramble': 1,\n",
      "          'instructs': 1,\n",
      "          'watch': 1,\n",
      "          'videotape': 1,\n",
      "          'made': 1,\n",
      "          'detailing': 1,\n",
      "          'doomed': 1,\n",
      "          'fail': 1,\n",
      "          'leaving': 1,\n",
      "          'obvious': 1,\n",
      "          'lacks': 1,\n",
      "          'courage': 1,\n",
      "          'confront': 1,\n",
      "          'directly': 1,\n",
      "          'rails': 1,\n",
      "          'accomplishing': 1,\n",
      "          'something': 1,\n",
      "          'taking': 1,\n",
      "          'stand': 1,\n",
      "          'backpedaling': 1,\n",
      "          'way': 1,\n",
      "          'nhe': 1,\n",
      "          'flees': 1,\n",
      "          'scene': 1,\n",
      "          'grace': 1,\n",
      "          'inept': 1,\n",
      "          'thief': 1,\n",
      "          'nerins': 1,\n",
      "          'mother': 1,\n",
      "          'holland': 1,\n",
      "          'taylor': 1,\n",
      "          'surprisingly': 1,\n",
      "          'effective': 1,\n",
      "          'small': 1,\n",
      "          'role': 1,\n",
      "          'fearing': 1,\n",
      "          'daughter': 1,\n",
      "          'man': 1,\n",
      "          'takes': 1,\n",
      "          'personal': 1,\n",
      "          'nto': 1,\n",
      "          'embarrassed': 1,\n",
      "          'horror': 1,\n",
      "          'describes': 1,\n",
      "          'frisky': 1,\n",
      "          'cultured': 1,\n",
      "          'carefree': 1,\n",
      "          'professional': 1,\n",
      "          'zest': 1,\n",
      "          'neventually': 1,\n",
      "          'responds': 1,\n",
      "          'tidal': 1,\n",
      "          'wave': 1,\n",
      "          'responses': 1,\n",
      "          'humorous': 1,\n",
      "          'telling': 1,\n",
      "          'moments': 1,\n",
      "          'meets': 1,\n",
      "          'prospective': 1,\n",
      "          'suitors': 1,\n",
      "          'poseurs': 1,\n",
      "          'nalan': 1,\n",
      "          'plumber': 1,\n",
      "          'aspiring': 1,\n",
      "          'marine': 1,\n",
      "          'biologist': 1,\n",
      "          'first': 1,\n",
      "          'spots': 1,\n",
      "          'cleaning': 1,\n",
      "          'inside': 1,\n",
      "          'tank': 1,\n",
      "          'nwearing': 1,\n",
      "          'wet': 1,\n",
      "          'suit': 1,\n",
      "          'goggles': 1,\n",
      "          'follows': 1,\n",
      "          'separated': 1,\n",
      "          'oblivious': 1,\n",
      "          'enjoys': 1,\n",
      "          'nlater': 1,\n",
      "          'train': 1,\n",
      "          'sits': 1,\n",
      "          'platform': 1,\n",
      "          'outside': 1,\n",
      "          'mere': 1,\n",
      "          'feet': 1,\n",
      "          'spends': 1,\n",
      "          'entirety': 1,\n",
      "          'paths': 1,\n",
      "          'circle': 1,\n",
      "          'crossing': 1,\n",
      "          'nthere': 1,\n",
      "          'several': 1,\n",
      "          'subplots': 1,\n",
      "          'involving': 1,\n",
      "          'none': 1,\n",
      "          'concerns': 1,\n",
      "          'job': 1,\n",
      "          'thereby': 1,\n",
      "          'escaping': 1,\n",
      "          'apparent': 1,\n",
      "          'family': 1,\n",
      "          'plumbing': 1,\n",
      "          'business': 1,\n",
      "          'nanother': 1,\n",
      "          'subplot': 1,\n",
      "          'involves': 1,\n",
      "          'fathers': 1,\n",
      "          'desperate': 1,\n",
      "          'force': 1,\n",
      "          'fates': 1,\n",
      "          'hand': 1,\n",
      "          'gambling': 1,\n",
      "          'dog': 1,\n",
      "          'na': 1,\n",
      "          'distracting': 1,\n",
      "          'focus': 1,\n",
      "          'put': 1,\n",
      "          'alans': 1,\n",
      "          'debt': 1,\n",
      "          'loan': 1,\n",
      "          'shark': 1,\n",
      "          'manner': 1,\n",
      "          'pays': 1,\n",
      "          'tries': 1,\n",
      "          'hard': 1,\n",
      "          'make': 1,\n",
      "          'likable': 1,\n",
      "          'nthankfully': 1,\n",
      "          'dream': 1,\n",
      "          'persona': 1,\n",
      "          'counterbalanced': 1,\n",
      "          'distant': 1,\n",
      "          'fundamentally': 1,\n",
      "          'hopeful': 1,\n",
      "          'personality': 1,\n",
      "          'moves': 1,\n",
      "          'along': 1,\n",
      "          'unhurried': 1,\n",
      "          'pace': 1,\n",
      "          'albeit': 1,\n",
      "          'latter': 1,\n",
      "          'third': 1,\n",
      "          'ncowriters': 1,\n",
      "          'lyn': 1,\n",
      "          'vaus': 1,\n",
      "          'throw': 1,\n",
      "          'couple': 1,\n",
      "          'red': 1,\n",
      "          'herrings': 1,\n",
      "          'mix': 1,\n",
      "          'find': 1,\n",
      "          'relationships': 1,\n",
      "          'shifts': 1,\n",
      "          'slower': 1,\n",
      "          'gear': 1,\n",
      "          'romances': 1,\n",
      "          'blow': 1,\n",
      "          'nwhen': 1,\n",
      "          'eventually': 1,\n",
      "          'perhaps': 1,\n",
      "          'destined': 1,\n",
      "          'share': 1,\n",
      "          'lingering': 1,\n",
      "          'almost': 1,\n",
      "          'subliminally': 1,\n",
      "          'knowing': 1,\n",
      "          'sweet': 1,\n",
      "          'measured': 1,\n",
      "          'moment': 1,\n",
      "          'disappointment': 1,\n",
      "          'comes': 1,\n",
      "          'fact': 1,\n",
      "          'weve': 1,\n",
      "          'come': 1,\n",
      "          'know': 1,\n",
      "          'pair': 1,\n",
      "          'dont': 1,\n",
      "          'view': 1,\n",
      "          'impending': 1,\n",
      "          'romance': 1,\n",
      "          'inherent': 1,\n",
      "          'belief': 1,\n",
      "          'subtle': 1,\n",
      "          'persistence': 1,\n",
      "          'wonder': 1,\n",
      "          'bring': 1,\n",
      "          'ones': 1,\n",
      "          'quiet': 1,\n",
      "          'pleasure': 1,\n",
      "          'cinematic': 1,\n",
      "          'landscape': 1,\n",
      "          'littered': 1,\n",
      "          'explosions': 1,\n",
      "          'shallow': 1,\n",
      "          'overdone': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'alien': 14,\n",
      "          'film': 12,\n",
      "          'like': 9,\n",
      "          'ripley': 8,\n",
      "          'one': 7,\n",
      "          'good': 6,\n",
      "          'ship': 6,\n",
      "          'really': 6,\n",
      "          'nthe': 6,\n",
      "          'scene': 6,\n",
      "          'series': 5,\n",
      "          'first': 5,\n",
      "          'n': 5,\n",
      "          'get': 5,\n",
      "          'well': 5,\n",
      "          'im': 4,\n",
      "          'nof': 4,\n",
      "          'course': 4,\n",
      "          'much': 4,\n",
      "          'two': 4,\n",
      "          'although': 4,\n",
      "          'nand': 4,\n",
      "          'aliens': 4,\n",
      "          'saga': 3,\n",
      "          'amazing': 3,\n",
      "          'never': 3,\n",
      "          'style': 3,\n",
      "          'inside': 3,\n",
      "          'little': 3,\n",
      "          'bad': 3,\n",
      "          'including': 3,\n",
      "          'might': 3,\n",
      "          'bit': 3,\n",
      "          'since': 3,\n",
      "          'theres': 3,\n",
      "          'tense': 3,\n",
      "          'cool': 3,\n",
      "          'scenes': 3,\n",
      "          'takes': 3,\n",
      "          'entire': 3,\n",
      "          'nbut': 3,\n",
      "          'best': 3,\n",
      "          'review': 2,\n",
      "          'doesnt': 2,\n",
      "          'resurrection': 2,\n",
      "          'nhowever': 2,\n",
      "          'yet': 2,\n",
      "          'another': 2,\n",
      "          'years': 2,\n",
      "          'last': 2,\n",
      "          'sigourney': 2,\n",
      "          'weaver': 2,\n",
      "          'wasnt': 2,\n",
      "          'great': 2,\n",
      "          'anything': 2,\n",
      "          'nso': 2,\n",
      "          'back': 2,\n",
      "          'thing': 2,\n",
      "          'shes': 2,\n",
      "          'cloned': 2,\n",
      "          'even': 2,\n",
      "          'dr': 2,\n",
      "          'played': 2,\n",
      "          'none': 2,\n",
      "          'still': 2,\n",
      "          'past': 2,\n",
      "          'blood': 2,\n",
      "          'third': 2,\n",
      "          'films': 2,\n",
      "          'ron': 2,\n",
      "          'perlman': 2,\n",
      "          'jeunet': 2,\n",
      "          'ryder': 2,\n",
      "          'call': 2,\n",
      "          'turns': 2,\n",
      "          'relationship': 2,\n",
      "          'escape': 2,\n",
      "          'around': 2,\n",
      "          'pretty': 2,\n",
      "          'away': 2,\n",
      "          'people': 2,\n",
      "          'dan': 2,\n",
      "          'hedaya': 2,\n",
      "          '8': 2,\n",
      "          'towards': 2,\n",
      "          'old': 2,\n",
      "          'interesting': 2,\n",
      "          'stylistically': 2,\n",
      "          'piece': 2,\n",
      "          'kind': 2,\n",
      "          'filled': 2,\n",
      "          'humor': 2,\n",
      "          'scares': 2,\n",
      "          'usual': 2,\n",
      "          'surgery': 2,\n",
      "          'afterwards': 2,\n",
      "          'place': 2,\n",
      "          'awesome': 2,\n",
      "          'thrilling': 2,\n",
      "          'allusion': 2,\n",
      "          'lot': 2,\n",
      "          'entertaining': 2,\n",
      "          'part': 2,\n",
      "          'avid': 1,\n",
      "          'fan': 1,\n",
      "          'obviously': 1,\n",
      "          'tad': 1,\n",
      "          'biased': 1,\n",
      "          'least': 1,\n",
      "          'admitted': 1,\n",
      "          'mean': 1,\n",
      "          'gon': 1,\n",
      "          'na': 1,\n",
      "          'giving': 1,\n",
      "          'fourstar': 1,\n",
      "          'something': 1,\n",
      "          'fourth': 1,\n",
      "          'coolashell': 1,\n",
      "          'absolutely': 1,\n",
      "          'fails': 1,\n",
      "          'entertain': 1,\n",
      "          'consists': 1,\n",
      "          'mutation': 1,\n",
      "          'nin': 1,\n",
      "          'short': 1,\n",
      "          'time': 1,\n",
      "          'leaves': 1,\n",
      "          '200': 1,\n",
      "          'heroine': 1,\n",
      "          'protagonist': 1,\n",
      "          'ellen': 1,\n",
      "          'science': 1,\n",
      "          'fiction': 1,\n",
      "          'genres': 1,\n",
      "          'answer': 1,\n",
      "          'job': 1,\n",
      "          'killed': 1,\n",
      "          'discovering': 1,\n",
      "          'body': 1,\n",
      "          'waiting': 1,\n",
      "          'pop': 1,\n",
      "          'john': 1,\n",
      "          'hurt': 1,\n",
      "          'liked': 1,\n",
      "          'though': 1,\n",
      "          'importantly': 1,\n",
      "          'financially': 1,\n",
      "          'successful': 1,\n",
      "          'tawdry': 1,\n",
      "          '55': 1,\n",
      "          'million': 1,\n",
      "          'bucks': 1,\n",
      "          'clone': 1,\n",
      "          'means': 1,\n",
      "          'satirical': 1,\n",
      "          'look': 1,\n",
      "          'cloning': 1,\n",
      "          'thats': 1,\n",
      "          'becoming': 1,\n",
      "          'cliche': 1,\n",
      "          'aboard': 1,\n",
      "          'futuristiclooking': 1,\n",
      "          'called': 1,\n",
      "          'auriga': 1,\n",
      "          'doctors': 1,\n",
      "          'necessary': 1,\n",
      "          'government': 1,\n",
      "          'guy': 1,\n",
      "          'wren': 1,\n",
      "          'j': 1,\n",
      "          'e': 1,\n",
      "          'freeman': 1,\n",
      "          'littleseen': 1,\n",
      "          'gediman': 1,\n",
      "          'brad': 1,\n",
      "          'douriff': 1,\n",
      "          'mainly': 1,\n",
      "          'version': 1,\n",
      "          'nonce': 1,\n",
      "          'fact': 1,\n",
      "          'cant': 1,\n",
      "          'figure': 1,\n",
      "          'got': 1,\n",
      "          'think': 1,\n",
      "          'samples': 1,\n",
      "          'taken': 1,\n",
      "          'charles': 1,\n",
      "          'dance': 1,\n",
      "          'okay': 1,\n",
      "          'nalso': 1,\n",
      "          'board': 1,\n",
      "          'band': 1,\n",
      "          'mercenary': 1,\n",
      "          'pirates': 1,\n",
      "          'michael': 1,\n",
      "          'wincott': 1,\n",
      "          'kim': 1,\n",
      "          'flowers': 1,\n",
      "          'raymond': 1,\n",
      "          'cruz': 1,\n",
      "          'dominique': 1,\n",
      "          'pinon': 1,\n",
      "          'sytable': 1,\n",
      "          'winona': 1,\n",
      "          'plays': 1,\n",
      "          'analee': 1,\n",
      "          'secret': 1,\n",
      "          'wont': 1,\n",
      "          'state': 1,\n",
      "          'unless': 1,\n",
      "          'youve': 1,\n",
      "          'shacking': 1,\n",
      "          'salinger': 1,\n",
      "          'probably': 1,\n",
      "          'know': 1,\n",
      "          'nicely': 1,\n",
      "          'covered': 1,\n",
      "          'ntheres': 1,\n",
      "          'nonsexualyetslightlyhomoerotic': 1,\n",
      "          'deepened': 1,\n",
      "          'enough': 1,\n",
      "          'noh': 1,\n",
      "          'nwell': 1,\n",
      "          'guessed': 1,\n",
      "          'spawn': 1,\n",
      "          'run': 1,\n",
      "          'shocks': 1,\n",
      "          'instance': 1,\n",
      "          'whos': 1,\n",
      "          'death': 1,\n",
      "          'comical': 1,\n",
      "          'sad': 1,\n",
      "          'hes': 1,\n",
      "          'remaining': 1,\n",
      "          '7': 1,\n",
      "          'left': 1,\n",
      "          'try': 1,\n",
      "          'stop': 1,\n",
      "          'major': 1,\n",
      "          'harm': 1,\n",
      "          'heading': 1,\n",
      "          'quickly': 1,\n",
      "          'earth': 1,\n",
      "          'plot': 1,\n",
      "          'balderdash': 1,\n",
      "          'excuse': 1,\n",
      "          'brand': 1,\n",
      "          'fun': 1,\n",
      "          'real': 1,\n",
      "          'focus': 1,\n",
      "          'seems': 1,\n",
      "          'substance': 1,\n",
      "          'always': 1,\n",
      "          'notably': 1,\n",
      "          'girl': 1,\n",
      "          'nwhats': 1,\n",
      "          'different': 1,\n",
      "          'approach': 1,\n",
      "          'claustrophobic': 1,\n",
      "          'exercise': 1,\n",
      "          'quiet': 1,\n",
      "          'frights': 1,\n",
      "          'wild': 1,\n",
      "          'thriller': 1,\n",
      "          '3': 1,\n",
      "          'bleak': 1,\n",
      "          'moody': 1,\n",
      "          'seminoir': 1,\n",
      "          '4': 1,\n",
      "          'offbeat': 1,\n",
      "          'french': 1,\n",
      "          'lots': 1,\n",
      "          'njeanpierre': 1,\n",
      "          'without': 1,\n",
      "          'directing': 1,\n",
      "          'partner': 1,\n",
      "          'marc': 1,\n",
      "          'caro': 1,\n",
      "          'creates': 1,\n",
      "          'das': 1,\n",
      "          'boot': 1,\n",
      "          'echoes': 1,\n",
      "          'hinting': 1,\n",
      "          'possible': 1,\n",
      "          'threat': 1,\n",
      "          'chills': 1,\n",
      "          'especially': 1,\n",
      "          'music': 1,\n",
      "          'sometimes': 1,\n",
      "          'turned': 1,\n",
      "          'completely': 1,\n",
      "          'certain': 1,\n",
      "          'faceoff': 1,\n",
      "          'beginning': 1,\n",
      "          'every': 1,\n",
      "          'chill': 1,\n",
      "          'bloody': 1,\n",
      "          'mess': 1,\n",
      "          'nthis': 1,\n",
      "          'combined': 1,\n",
      "          'makes': 1,\n",
      "          'visually': 1,\n",
      "          'others': 1,\n",
      "          'nthere': 1,\n",
      "          'couple': 1,\n",
      "          'stick': 1,\n",
      "          'brilliantly': 1,\n",
      "          'executed': 1,\n",
      "          'aforementioned': 1,\n",
      "          'nanother': 1,\n",
      "          'underwater': 1,\n",
      "          'chase': 1,\n",
      "          'ladder': 1,\n",
      "          'jawdropping': 1,\n",
      "          'small': 1,\n",
      "          'jeunets': 1,\n",
      "          'earlier': 1,\n",
      "          'delicatessen': 1,\n",
      "          'way': 1,\n",
      "          'final': 1,\n",
      "          'hysterically': 1,\n",
      "          'lovely': 1,\n",
      "          'goldfinger': 1,\n",
      "          'sure': 1,\n",
      "          'mention': 1,\n",
      "          'sees': 1,\n",
      "          'variations': 1,\n",
      "          'tatooed': 1,\n",
      "          'arm': 1,\n",
      "          'nit': 1,\n",
      "          'emotionally': 1,\n",
      "          'stimulating': 1,\n",
      "          'screenplay': 1,\n",
      "          'joss': 1,\n",
      "          'whedon': 1,\n",
      "          'work': 1,\n",
      "          'deapens': 1,\n",
      "          'characters': 1,\n",
      "          'make': 1,\n",
      "          'us': 1,\n",
      "          'care': 1,\n",
      "          'looks': 1,\n",
      "          'may': 1,\n",
      "          'become': 1,\n",
      "          'chow': 1,\n",
      "          'scared': 1,\n",
      "          'yeah': 1,\n",
      "          'funny': 1,\n",
      "          'lines': 1,\n",
      "          'fuck': 1,\n",
      "          'boat': 1,\n",
      "          'njohner': 1,\n",
      "          'acting': 1,\n",
      "          'standout': 1,\n",
      "          'performances': 1,\n",
      "          'male': 1,\n",
      "          'chauvenist': 1,\n",
      "          'pig': 1,\n",
      "          'johner': 1,\n",
      "          'leland': 1,\n",
      "          'orser': 1,\n",
      "          'poor': 1,\n",
      "          'bastad': 1,\n",
      "          'se7en': 1,\n",
      "          'performed': 1,\n",
      "          'lust': 1,\n",
      "          'sin': 1,\n",
      "          'anxietyridden': 1,\n",
      "          'wannabe': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'nwinona': 1,\n",
      "          'usually': 1,\n",
      "          'meshes': 1,\n",
      "          'steals': 1,\n",
      "          'show': 1,\n",
      "          'nplaying': 1,\n",
      "          'variation': 1,\n",
      "          'character': 1,\n",
      "          'less': 1,\n",
      "          'emotional': 1,\n",
      "          'rude': 1,\n",
      "          'bitter': 1,\n",
      "          'pulls': 1,\n",
      "          'utterly': 1,\n",
      "          'lovable': 1,\n",
      "          'nshes': 1,\n",
      "          'going': 1,\n",
      "          'oscar': 1,\n",
      "          'nomination': 1,\n",
      "          'noverall': 1,\n",
      "          'amaze': 1,\n",
      "          'installment': 1,\n",
      "          'isnt': 1,\n",
      "          'depth': 1,\n",
      "          'occasionally': 1,\n",
      "          'tries': 1,\n",
      "          'apply': 1,\n",
      "          'hell': 1,\n",
      "          'definitely': 1,\n",
      "          'fit': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rock': 13,\n",
      "          'film': 12,\n",
      "          'really': 11,\n",
      "          'era': 11,\n",
      "          'nthe': 10,\n",
      "          'like': 10,\n",
      "          'slade': 10,\n",
      "          'glam': 9,\n",
      "          'one': 7,\n",
      "          'movement': 7,\n",
      "          'wild': 7,\n",
      "          'story': 6,\n",
      "          'music': 6,\n",
      "          'sequence': 5,\n",
      "          'else': 5,\n",
      "          'thats': 5,\n",
      "          'part': 5,\n",
      "          'brian': 5,\n",
      "          'meyers': 5,\n",
      "          'rather': 5,\n",
      "          'life': 4,\n",
      "          'haynes': 4,\n",
      "          'kane': 4,\n",
      "          'stuart': 4,\n",
      "          'totally': 4,\n",
      "          'flashbacks': 4,\n",
      "          'beginning': 4,\n",
      "          'bitter': 4,\n",
      "          'doesnt': 4,\n",
      "          'scenes': 4,\n",
      "          'world': 4,\n",
      "          'way': 4,\n",
      "          'much': 4,\n",
      "          'seems': 4,\n",
      "          'rhys': 4,\n",
      "          'mcgregor': 4,\n",
      "          'slades': 4,\n",
      "          'first': 4,\n",
      "          'may': 3,\n",
      "          'everyone': 3,\n",
      "          'result': 3,\n",
      "          'career': 3,\n",
      "          '70s': 3,\n",
      "          'similar': 3,\n",
      "          'end': 3,\n",
      "          'nin': 3,\n",
      "          'bale': 3,\n",
      "          'death': 3,\n",
      "          'engaging': 3,\n",
      "          'though': 3,\n",
      "          'everything': 3,\n",
      "          'merely': 3,\n",
      "          'played': 3,\n",
      "          'finally': 3,\n",
      "          'record': 3,\n",
      "          'scene': 3,\n",
      "          'hes': 3,\n",
      "          'visual': 3,\n",
      "          'concert': 3,\n",
      "          'nit': 3,\n",
      "          'especially': 3,\n",
      "          'characters': 3,\n",
      "          'good': 3,\n",
      "          'manager': 3,\n",
      "          'moments': 3,\n",
      "          'point': 3,\n",
      "          'seem': 2,\n",
      "          'green': 2,\n",
      "          'see': 2,\n",
      "          'perhaps': 2,\n",
      "          'half': 2,\n",
      "          'philosophy': 2,\n",
      "          'true': 2,\n",
      "          'following': 2,\n",
      "          'sexuality': 2,\n",
      "          'less': 2,\n",
      "          'nand': 2,\n",
      "          'seemed': 2,\n",
      "          'began': 2,\n",
      "          'nits': 2,\n",
      "          'velvet': 2,\n",
      "          'goldmine': 2,\n",
      "          'experienced': 2,\n",
      "          'created': 2,\n",
      "          'steals': 2,\n",
      "          'lot': 2,\n",
      "          'british': 2,\n",
      "          'journalist': 2,\n",
      "          '80s': 2,\n",
      "          'arthur': 2,\n",
      "          'back': 2,\n",
      "          'happened': 2,\n",
      "          'star': 2,\n",
      "          'fictitious': 2,\n",
      "          'entire': 2,\n",
      "          'people': 2,\n",
      "          'exwife': 2,\n",
      "          'found': 2,\n",
      "          'nthis': 2,\n",
      "          'ninstead': 2,\n",
      "          'contrast': 2,\n",
      "          'cinematography': 2,\n",
      "          'symbol': 2,\n",
      "          'tale': 2,\n",
      "          'youve': 2,\n",
      "          'nhaynes': 2,\n",
      "          'brought': 2,\n",
      "          'anarchic': 2,\n",
      "          'persona': 2,\n",
      "          'maxwell': 2,\n",
      "          'demon': 2,\n",
      "          'well': 2,\n",
      "          'partners': 2,\n",
      "          'michael': 2,\n",
      "          'feast': 2,\n",
      "          'collette': 2,\n",
      "          'fakes': 2,\n",
      "          'experiences': 2,\n",
      "          'including': 2,\n",
      "          'moment': 2,\n",
      "          'naked': 2,\n",
      "          'lying': 2,\n",
      "          'away': 2,\n",
      "          'quite': 2,\n",
      "          'long': 2,\n",
      "          'eno': 2,\n",
      "          'party': 2,\n",
      "          'films': 2,\n",
      "          'band': 2,\n",
      "          'discovers': 2,\n",
      "          'major': 2,\n",
      "          'camp': 2,\n",
      "          'middle': 2,\n",
      "          'actual': 2,\n",
      "          'real': 2,\n",
      "          'eye': 2,\n",
      "          'background': 2,\n",
      "          'put': 2,\n",
      "          'ending': 2,\n",
      "          'comes': 2,\n",
      "          'style': 2,\n",
      "          'creates': 2,\n",
      "          'using': 2,\n",
      "          'wall': 2,\n",
      "          'extremely': 2,\n",
      "          'character': 2,\n",
      "          'sell': 2,\n",
      "          'personal': 2,\n",
      "          'never': 2,\n",
      "          'piece': 2,\n",
      "          'everyman': 2,\n",
      "          'great': 2,\n",
      "          'could': 2,\n",
      "          'right': 2,\n",
      "          'lived': 2,\n",
      "          'live': 2,\n",
      "          'weird': 1,\n",
      "          'begin': 1,\n",
      "          'includes': 1,\n",
      "          'spaceship': 1,\n",
      "          'ovular': 1,\n",
      "          'pin': 1,\n",
      "          'birth': 1,\n",
      "          'oscar': 1,\n",
      "          'wilde': 1,\n",
      "          'strains': 1,\n",
      "          'maybe': 1,\n",
      "          'connections': 1,\n",
      "          'nwildes': 1,\n",
      "          'human': 1,\n",
      "          'nature': 1,\n",
      "          'imprisoned': 1,\n",
      "          'loosing': 1,\n",
      "          'family': 1,\n",
      "          'early': 1,\n",
      "          'england': 1,\n",
      "          'take': 1,\n",
      "          'came': 1,\n",
      "          'demise': 1,\n",
      "          'main': 1,\n",
      "          'difference': 1,\n",
      "          'placing': 1,\n",
      "          'makeup': 1,\n",
      "          'face': 1,\n",
      "          'acting': 1,\n",
      "          'deepest': 1,\n",
      "          'fantasies': 1,\n",
      "          'inquiries': 1,\n",
      "          'mostly': 1,\n",
      "          'dealing': 1,\n",
      "          'androgony': 1,\n",
      "          'became': 1,\n",
      "          'soon': 1,\n",
      "          'said': 1,\n",
      "          'todd': 1,\n",
      "          'chronicles': 1,\n",
      "          'citizen': 1,\n",
      "          'christian': 1,\n",
      "          'asked': 1,\n",
      "          'go': 1,\n",
      "          'find': 1,\n",
      "          'faked': 1,\n",
      "          'stage': 1,\n",
      "          'bringing': 1,\n",
      "          'nstructurewise': 1,\n",
      "          'setup': 1,\n",
      "          'interviews': 1,\n",
      "          'three': 1,\n",
      "          'things': 1,\n",
      "          'newsreel': 1,\n",
      "          'smaller': 1,\n",
      "          'details': 1,\n",
      "          'exfriend': 1,\n",
      "          'wheelchair': 1,\n",
      "          'washedup': 1,\n",
      "          'lounge': 1,\n",
      "          'singer': 1,\n",
      "          'bar': 1,\n",
      "          'hours': 1,\n",
      "          'aspire': 1,\n",
      "          'attempt': 1,\n",
      "          'deep': 1,\n",
      "          'outlook': 1,\n",
      "          'something': 1,\n",
      "          'gone': 1,\n",
      "          'uncover': 1,\n",
      "          'anything': 1,\n",
      "          'poignant': 1,\n",
      "          'humanity': 1,\n",
      "          'uses': 1,\n",
      "          'form': 1,\n",
      "          'magic': 1,\n",
      "          'boredom': 1,\n",
      "          'participants': 1,\n",
      "          'dry': 1,\n",
      "          'deliriously': 1,\n",
      "          'melancholy': 1,\n",
      "          'equipped': 1,\n",
      "          'performance': 1,\n",
      "          'appropriately': 1,\n",
      "          'dull': 1,\n",
      "          'unengaging': 1,\n",
      "          'nbut': 1,\n",
      "          'mention': 1,\n",
      "          'addictively': 1,\n",
      "          'campy': 1,\n",
      "          'nthey': 1,\n",
      "          'radiate': 1,\n",
      "          'gorgeous': 1,\n",
      "          'nicely': 1,\n",
      "          'accentuates': 1,\n",
      "          'vibrant': 1,\n",
      "          'colors': 1,\n",
      "          'feel': 1,\n",
      "          'eerily': 1,\n",
      "          'lighthearted': 1,\n",
      "          'combined': 1,\n",
      "          'thenfootage': 1,\n",
      "          'become': 1,\n",
      "          'decadence': 1,\n",
      "          'times': 1,\n",
      "          'simple': 1,\n",
      "          'creating': 1,\n",
      "          'paints': 1,\n",
      "          'narcotic': 1,\n",
      "          'fairy': 1,\n",
      "          'full': 1,\n",
      "          'freedom': 1,\n",
      "          'liberation': 1,\n",
      "          'mundane': 1,\n",
      "          'ntheres': 1,\n",
      "          'outside': 1,\n",
      "          'speak': 1,\n",
      "          'secluding': 1,\n",
      "          'inside': 1,\n",
      "          'protective': 1,\n",
      "          'globe': 1,\n",
      "          'eventually': 1,\n",
      "          'crack': 1,\n",
      "          'focuses': 1,\n",
      "          'blade': 1,\n",
      "          'hero': 1,\n",
      "          'curt': 1,\n",
      "          'relationship': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'molded': 1,\n",
      "          'reducing': 1,\n",
      "          'contributed': 1,\n",
      "          'contributors': 1,\n",
      "          'nblade': 1,\n",
      "          'reserve': 1,\n",
      "          'pouty': 1,\n",
      "          'jonathan': 1,\n",
      "          'wildness': 1,\n",
      "          'ewan': 1,\n",
      "          'little': 1,\n",
      "          'thinly': 1,\n",
      "          'disguised': 1,\n",
      "          'recreations': 1,\n",
      "          'david': 1,\n",
      "          'bowie': 1,\n",
      "          'iggy': 1,\n",
      "          'pop': 1,\n",
      "          'respectively': 1,\n",
      "          'complete': 1,\n",
      "          'creation': 1,\n",
      "          'ziggy': 1,\n",
      "          'stardust': 1,\n",
      "          'named': 1,\n",
      "          'confirmation': 1,\n",
      "          'two': 1,\n",
      "          'stars': 1,\n",
      "          'onetime': 1,\n",
      "          'also': 1,\n",
      "          'bed': 1,\n",
      "          'nthrough': 1,\n",
      "          'discussions': 1,\n",
      "          'exmanager': 1,\n",
      "          'cecil': 1,\n",
      "          'mandy': 1,\n",
      "          'toni': 1,\n",
      "          'reinventing': 1,\n",
      "          'american': 1,\n",
      "          'blonde': 1,\n",
      "          'dish': 1,\n",
      "          'accent': 1,\n",
      "          'expartner': 1,\n",
      "          'begins': 1,\n",
      "          'remember': 1,\n",
      "          'discovery': 1,\n",
      "          'rebelliousness': 1,\n",
      "          'cum': 1,\n",
      "          'conformity': 1,\n",
      "          'questioning': 1,\n",
      "          'opens': 1,\n",
      "          'finds': 1,\n",
      "          'crimson': 1,\n",
      "          'blanket': 1,\n",
      "          'running': 1,\n",
      "          'home': 1,\n",
      "          'london': 1,\n",
      "          'resulting': 1,\n",
      "          'leading': 1,\n",
      "          'boring': 1,\n",
      "          'job': 1,\n",
      "          'america': 1,\n",
      "          'demonstrates': 1,\n",
      "          'auteur': 1,\n",
      "          'molding': 1,\n",
      "          'heald': 1,\n",
      "          'breaths': 1,\n",
      "          'seemingly': 1,\n",
      "          'juxtaposing': 1,\n",
      "          'sladewild': 1,\n",
      "          'performing': 1,\n",
      "          'cover': 1,\n",
      "          'babys': 1,\n",
      "          'fire': 1,\n",
      "          'decadent': 1,\n",
      "          'drug': 1,\n",
      "          'wowinspiring': 1,\n",
      "          'ratttz': 1,\n",
      "          'lets': 1,\n",
      "          'loose': 1,\n",
      "          'steam': 1,\n",
      "          'iggyesuqe': 1,\n",
      "          'movements': 1,\n",
      "          'stripping': 1,\n",
      "          'screams': 1,\n",
      "          'captures': 1,\n",
      "          'perfect': 1,\n",
      "          'talent': 1,\n",
      "          'another': 1,\n",
      "          'idle': 1,\n",
      "          'neven': 1,\n",
      "          'brief': 1,\n",
      "          'videos': 1,\n",
      "          'spoofs': 1,\n",
      "          'bowies': 1,\n",
      "          'rare': 1,\n",
      "          'flair': 1,\n",
      "          'pure': 1,\n",
      "          'would': 1,\n",
      "          'cause': 1,\n",
      "          'ken': 1,\n",
      "          'russell': 1,\n",
      "          'drool': 1,\n",
      "          'best': 1,\n",
      "          'prelude': 1,\n",
      "          'acts': 1,\n",
      "          'ground': 1,\n",
      "          'postmovement': 1,\n",
      "          'mates': 1,\n",
      "          'going': 1,\n",
      "          'infamous': 1,\n",
      "          'kills': 1,\n",
      "          'alter': 1,\n",
      "          'ego': 1,\n",
      "          'appears': 1,\n",
      "          'assasination': 1,\n",
      "          'swift': 1,\n",
      "          'fake': 1,\n",
      "          'bullet': 1,\n",
      "          'nwith': 1,\n",
      "          'enos': 1,\n",
      "          'famous': 1,\n",
      "          'needle': 1,\n",
      "          'camels': 1,\n",
      "          'playing': 1,\n",
      "          'detached': 1,\n",
      "          'exhileration': 1,\n",
      "          'song': 1,\n",
      "          'songs': 1,\n",
      "          'distance': 1,\n",
      "          'hard': 1,\n",
      "          'finger': 1,\n",
      "          'represent': 1,\n",
      "          'coming': 1,\n",
      "          'quick': 1,\n",
      "          'sad': 1,\n",
      "          'sees': 1,\n",
      "          'dressing': 1,\n",
      "          'room': 1,\n",
      "          'show': 1,\n",
      "          'docked': 1,\n",
      "          'silver': 1,\n",
      "          'frock': 1,\n",
      "          'wings': 1,\n",
      "          'blue': 1,\n",
      "          'hair': 1,\n",
      "          'depressingly': 1,\n",
      "          'staring': 1,\n",
      "          'mirror': 1,\n",
      "          'nonetooobvious': 1,\n",
      "          'prophecy': 1,\n",
      "          'finale': 1,\n",
      "          'movies': 1,\n",
      "          'plot': 1,\n",
      "          'presented': 1,\n",
      "          'making': 1,\n",
      "          'classified': 1,\n",
      "          'substance': 1,\n",
      "          'statement': 1,\n",
      "          'prompts': 1,\n",
      "          'many': 1,\n",
      "          'critics': 1,\n",
      "          'line': 1,\n",
      "          'attack': 1,\n",
      "          'nhowever': 1,\n",
      "          'sets': 1,\n",
      "          'costumes': 1,\n",
      "          'play': 1,\n",
      "          'notable': 1,\n",
      "          'soundtrack': 1,\n",
      "          'consists': 1,\n",
      "          'old': 1,\n",
      "          'school': 1,\n",
      "          'tunes': 1,\n",
      "          'likes': 1,\n",
      "          'trex': 1,\n",
      "          'roxy': 1,\n",
      "          'covers': 1,\n",
      "          'vocals': 1,\n",
      "          'thom': 1,\n",
      "          'yorke': 1,\n",
      "          'occasionally': 1,\n",
      "          'even': 1,\n",
      "          'newer': 1,\n",
      "          'shudder': 1,\n",
      "          'think': 1,\n",
      "          'sounds': 1,\n",
      "          'uncannily': 1,\n",
      "          'bowielike': 1,\n",
      "          'cast': 1,\n",
      "          'impressive': 1,\n",
      "          'walks': 1,\n",
      "          'performances': 1,\n",
      "          'nalthough': 1,\n",
      "          'eddie': 1,\n",
      "          'izzard': 1,\n",
      "          'challenges': 1,\n",
      "          'armwrestling': 1,\n",
      "          'match': 1,\n",
      "          'gets': 1,\n",
      "          'control': 1,\n",
      "          'tragic': 1,\n",
      "          'come': 1,\n",
      "          'greatly': 1,\n",
      "          'noticably': 1,\n",
      "          'subpar': 1,\n",
      "          'neither': 1,\n",
      "          'putting': 1,\n",
      "          'effort': 1,\n",
      "          'respective': 1,\n",
      "          'roles': 1,\n",
      "          'nsome': 1,\n",
      "          'fault': 1,\n",
      "          'construction': 1,\n",
      "          'nrhys': 1,\n",
      "          'remains': 1,\n",
      "          'metaphor': 1,\n",
      "          'dying': 1,\n",
      "          'turned': 1,\n",
      "          'retrogarbo': 1,\n",
      "          'resorting': 1,\n",
      "          'salingerism': 1,\n",
      "          'mid70s': 1,\n",
      "          'around': 1,\n",
      "          'sniffing': 1,\n",
      "          'coke': 1,\n",
      "          'ass': 1,\n",
      "          'girl': 1,\n",
      "          'fact': 1,\n",
      "          'seen': 1,\n",
      "          'person': 1,\n",
      "          'composite': 1,\n",
      "          'type': 1,\n",
      "          'thrived': 1,\n",
      "          'nbales': 1,\n",
      "          'tough': 1,\n",
      "          'depressed': 1,\n",
      "          'young': 1,\n",
      "          'adulthood': 1,\n",
      "          'cliched': 1,\n",
      "          'hounded': 1,\n",
      "          'store': 1,\n",
      "          'guys': 1,\n",
      "          'buying': 1,\n",
      "          'poof': 1,\n",
      "          'help': 1,\n",
      "          'us': 1,\n",
      "          'communicate': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'excuses': 1,\n",
      "          'results': 1,\n",
      "          'left': 1,\n",
      "          'others': 1,\n",
      "          'helps': 1,\n",
      "          'work': 1,\n",
      "          'since': 1,\n",
      "          'candy': 1,\n",
      "          'nat': 1,\n",
      "          'prime': 1,\n",
      "          'movie': 1,\n",
      "          'least': 1,\n",
      "          'look': 1,\n",
      "          'role': 1,\n",
      "          'fashionable': 1,\n",
      "          'leaders': 1,\n",
      "          'perpetuallychanging': 1,\n",
      "          'androgonys': 1,\n",
      "          'topless': 1,\n",
      "          'unpredictable': 1,\n",
      "          'image': 1,\n",
      "          'clash': 1,\n",
      "          'fuse': 1,\n",
      "          'unstable': 1,\n",
      "          'union': 1,\n",
      "          'ntheir': 1,\n",
      "          'influenced': 1,\n",
      "          'adapted': 1,\n",
      "          'whocares': 1,\n",
      "          'attitude': 1,\n",
      "          'crossed': 1,\n",
      "          'without': 1,\n",
      "          'tougher': 1,\n",
      "          'cant': 1,\n",
      "          'identify': 1,\n",
      "          'storys': 1,\n",
      "          'slight': 1,\n",
      "          'trouble': 1,\n",
      "          'nas': 1,\n",
      "          'cultural': 1,\n",
      "          'takes': 1,\n",
      "          'although': 1,\n",
      "          'absolutely': 1,\n",
      "          'flies': 1,\n",
      "          'nothing': 1,\n",
      "          'bunch': 1,\n",
      "          'surrounded': 1,\n",
      "          'material': 1,\n",
      "          'better': 1,\n",
      "          'captivating': 1,\n",
      "          'slow': 1,\n",
      "          'fantastic': 1,\n",
      "          'shallow': 1,\n",
      "          'worse': 1,\n",
      "          'drags': 1,\n",
      "          'final': 1,\n",
      "          'hour': 1,\n",
      "          'bring': 1,\n",
      "          'conclusion': 1,\n",
      "          'probably': 1,\n",
      "          'stop': 1,\n",
      "          'anyone': 1,\n",
      "          'figure': 1,\n",
      "          'mystery': 1,\n",
      "          'unearths': 1,\n",
      "          'almost': 1,\n",
      "          'investigation': 1,\n",
      "          'unearth': 1,\n",
      "          'past': 1,\n",
      "          'commendable': 1,\n",
      "          'nstill': 1,\n",
      "          'oliver': 1,\n",
      "          'stone': 1,\n",
      "          'pic': 1,\n",
      "          'doors': 1,\n",
      "          'didnt': 1,\n",
      "          'becoming': 1,\n",
      "          'insightful': 1,\n",
      "          'hit': 1,\n",
      "          'notes': 1,\n",
      "          'made': 1,\n",
      "          'living': 1,\n",
      "          'halfassed': 1,\n",
      "          'suppose': 1,\n",
      "          'message': 1,\n",
      "          'youll': 1,\n",
      "          'forced': 1,\n",
      "          'regretful': 1,\n",
      "          'memories': 1,\n",
      "          'superb': 1,\n",
      "          'achievement': 1,\n",
      "          'successfully': 1,\n",
      "          'audience': 1,\n",
      "          'must': 1,\n",
      "          'felt': 1,\n",
      "          'added': 1,\n",
      "          'perk': 1,\n",
      "          'knowing': 1,\n",
      "          'goes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 5,\n",
      "          'film': 4,\n",
      "          'first': 3,\n",
      "          'families': 3,\n",
      "          'younger': 3,\n",
      "          'love': 3,\n",
      "          'romeo': 2,\n",
      "          'juliet': 2,\n",
      "          'ni': 2,\n",
      "          'another': 2,\n",
      "          'wrong': 2,\n",
      "          'two': 2,\n",
      "          'rival': 2,\n",
      "          'version': 2,\n",
      "          'generation': 2,\n",
      "          'one': 2,\n",
      "          'meet': 2,\n",
      "          'site': 2,\n",
      "          'scene': 2,\n",
      "          'provides': 2,\n",
      "          'heard': 1,\n",
      "          'updated': 1,\n",
      "          'shuddered': 1,\n",
      "          'thought': 1,\n",
      "          'yet': 1,\n",
      "          'shakespeares': 1,\n",
      "          'classics': 1,\n",
      "          'destroyed': 1,\n",
      "          'nfortunately': 1,\n",
      "          'nbaz': 1,\n",
      "          'luhrman': 1,\n",
      "          'directed': 1,\n",
      "          'face': 1,\n",
      "          'visually': 1,\n",
      "          'stunning': 1,\n",
      "          'piece': 1,\n",
      "          'nit': 1,\n",
      "          'revolves': 1,\n",
      "          'around': 1,\n",
      "          'run': 1,\n",
      "          'multimillion': 1,\n",
      "          'dollar': 1,\n",
      "          'enterprises': 1,\n",
      "          'nthese': 1,\n",
      "          'companiesfamilies': 1,\n",
      "          'capulets': 1,\n",
      "          'montagues': 1,\n",
      "          'formed': 1,\n",
      "          'gangs': 1,\n",
      "          'despise': 1,\n",
      "          'nas': 1,\n",
      "          'storylines': 1,\n",
      "          'goes': 1,\n",
      "          'montague': 1,\n",
      "          'played': 1,\n",
      "          'leonardo': 1,\n",
      "          'dicaprio': 1,\n",
      "          'capulet': 1,\n",
      "          'claire': 1,\n",
      "          'danes': 1,\n",
      "          'fancy': 1,\n",
      "          'dress': 1,\n",
      "          'party': 1,\n",
      "          'never': 1,\n",
      "          'believed': 1,\n",
      "          'possible': 1,\n",
      "          'saw': 1,\n",
      "          'romeos': 1,\n",
      "          'eyes': 1,\n",
      "          'juliets': 1,\n",
      "          'fish': 1,\n",
      "          'tank': 1,\n",
      "          'memorable': 1,\n",
      "          'nof': 1,\n",
      "          'course': 1,\n",
      "          'publicly': 1,\n",
      "          'reveal': 1,\n",
      "          'arch': 1,\n",
      "          'enemies': 1,\n",
      "          'nso': 1,\n",
      "          'marry': 1,\n",
      "          'secret': 1,\n",
      "          'things': 1,\n",
      "          'begin': 1,\n",
      "          'go': 1,\n",
      "          'story': 1,\n",
      "          'good': 1,\n",
      "          'shakespeare': 1,\n",
      "          'ends': 1,\n",
      "          'tragedy': 1,\n",
      "          'cinematography': 1,\n",
      "          'spectacular': 1,\n",
      "          'say': 1,\n",
      "          'least': 1,\n",
      "          'soundtrack': 1,\n",
      "          'perfect': 1,\n",
      "          'atmosphere': 1,\n",
      "          'lay': 1,\n",
      "          'says': 1,\n",
      "          'nthere': 1,\n",
      "          'little': 1,\n",
      "          'criticise': 1,\n",
      "          'performances': 1,\n",
      "          'convincing': 1,\n",
      "          'several': 1,\n",
      "          'films': 1,\n",
      "          'stars': 1,\n",
      "          'may': 1,\n",
      "          'find': 1,\n",
      "          'launch': 1,\n",
      "          'careers': 1,\n",
      "          'modernisation': 1,\n",
      "          'script': 1,\n",
      "          'ingenious': 1,\n",
      "          'clever': 1,\n",
      "          'ndespite': 1,\n",
      "          'well': 1,\n",
      "          'known': 1,\n",
      "          'storyline': 1,\n",
      "          'latest': 1,\n",
      "          'still': 1,\n",
      "          'manages': 1,\n",
      "          'cause': 1,\n",
      "          'tears': 1,\n",
      "          'among': 1,\n",
      "          'many': 1,\n",
      "          'members': 1,\n",
      "          'audience': 1,\n",
      "          'especially': 1,\n",
      "          'certainly': 1,\n",
      "          'great': 1,\n",
      "          'credit': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'tribe': 8,\n",
      "          'shelmikedmu': 4,\n",
      "          'seem': 3,\n",
      "          'nhowever': 3,\n",
      "          'one': 3,\n",
      "          'krippendorf': 3,\n",
      "          'nhis': 3,\n",
      "          'kids': 3,\n",
      "          'films': 3,\n",
      "          'film': 3,\n",
      "          'humor': 3,\n",
      "          'krippendorfs': 2,\n",
      "          'comedy': 2,\n",
      "          'like': 2,\n",
      "          'james': 2,\n",
      "          'dreyfuss': 2,\n",
      "          'anthropologist': 2,\n",
      "          'grant': 2,\n",
      "          'lost': 2,\n",
      "          'required': 2,\n",
      "          'professor': 2,\n",
      "          'suspension': 2,\n",
      "          'disbelief': 2,\n",
      "          'seems': 2,\n",
      "          'bit': 2,\n",
      "          'formula': 1,\n",
      "          'ndone': 1,\n",
      "          'poorly': 1,\n",
      "          'formulaic': 1,\n",
      "          'comedies': 1,\n",
      "          'might': 1,\n",
      "          'signify': 1,\n",
      "          'downfall': 1,\n",
      "          'american': 1,\n",
      "          'cinema': 1,\n",
      "          'every': 1,\n",
      "          'emerges': 1,\n",
      "          'actually': 1,\n",
      "          'works': 1,\n",
      "          'nprofessor': 1,\n",
      "          'richard': 1,\n",
      "          'renowned': 1,\n",
      "          'trouble': 1,\n",
      "          'university': 1,\n",
      "          'gave': 1,\n",
      "          'hefty': 1,\n",
      "          'discover': 1,\n",
      "          'new': 1,\n",
      "          'guinea': 1,\n",
      "          'found': 1,\n",
      "          'nothing': 1,\n",
      "          'wife': 1,\n",
      "          'recently': 1,\n",
      "          'died': 1,\n",
      "          'spent': 1,\n",
      "          'remainder': 1,\n",
      "          'money': 1,\n",
      "          'raising': 1,\n",
      "          'three': 1,\n",
      "          'shelly': 1,\n",
      "          'natasha': 1,\n",
      "          'lyonne': 1,\n",
      "          'mickey': 1,\n",
      "          'gregory': 1,\n",
      "          'smith': 1,\n",
      "          'edmund': 1,\n",
      "          'carl': 1,\n",
      "          'michael': 1,\n",
      "          'lidner': 1,\n",
      "          'ntonight': 1,\n",
      "          'expected': 1,\n",
      "          'lecture': 1,\n",
      "          'newfound': 1,\n",
      "          'nrather': 1,\n",
      "          'break': 1,\n",
      "          'news': 1,\n",
      "          'face': 1,\n",
      "          'consequences': 1,\n",
      "          'misusing': 1,\n",
      "          'funds': 1,\n",
      "          'invents': 1,\n",
      "          'named': 1,\n",
      "          'lie': 1,\n",
      "          'begets': 1,\n",
      "          'another': 1,\n",
      "          'deliver': 1,\n",
      "          'filmed': 1,\n",
      "          'proof': 1,\n",
      "          'research': 1,\n",
      "          'becomes': 1,\n",
      "          'popular': 1,\n",
      "          'phenomenon': 1,\n",
      "          'nsoon': 1,\n",
      "          'caught': 1,\n",
      "          'elaborate': 1,\n",
      "          'ruse': 1,\n",
      "          'mockumentary': 1,\n",
      "          'footage': 1,\n",
      "          'starring': 1,\n",
      "          'children': 1,\n",
      "          'tribal': 1,\n",
      "          'members': 1,\n",
      "          'efforts': 1,\n",
      "          'hampered': 1,\n",
      "          'boasts': 1,\n",
      "          'overeager': 1,\n",
      "          'colleague': 1,\n",
      "          'veronica': 1,\n",
      "          'micelli': 1,\n",
      "          'jenna': 1,\n",
      "          'elfman': 1,\n",
      "          'intense': 1,\n",
      "          'scrutiny': 1,\n",
      "          'rival': 1,\n",
      "          'ruth': 1,\n",
      "          'allen': 1,\n",
      "          'lily': 1,\n",
      "          'tomlin': 1,\n",
      "          'nkrippendorfs': 1,\n",
      "          'require': 1,\n",
      "          'little': 1,\n",
      "          'nno': 1,\n",
      "          'question': 1,\n",
      "          'way': 1,\n",
      "          'field': 1,\n",
      "          'documentaries': 1,\n",
      "          'shot': 1,\n",
      "          'multiple': 1,\n",
      "          'cameras': 1,\n",
      "          'newly': 1,\n",
      "          'discovered': 1,\n",
      "          'tribesmen': 1,\n",
      "          'startlingly': 1,\n",
      "          'blue': 1,\n",
      "          'eyes': 1,\n",
      "          'nluckily': 1,\n",
      "          'builds': 1,\n",
      "          'momentum': 1,\n",
      "          'easy': 1,\n",
      "          'come': 1,\n",
      "          'nthough': 1,\n",
      "          'theres': 1,\n",
      "          'mild': 1,\n",
      "          'family': 1,\n",
      "          'trying': 1,\n",
      "          'pass': 1,\n",
      "          'real': 1,\n",
      "          'gets': 1,\n",
      "          'trapped': 1,\n",
      "          'ever': 1,\n",
      "          'increasing': 1,\n",
      "          'snowball': 1,\n",
      "          'lies': 1,\n",
      "          'nthe': 1,\n",
      "          'double': 1,\n",
      "          'meanings': 1,\n",
      "          'many': 1,\n",
      "          'appearances': 1,\n",
      "          'enjoyable': 1,\n",
      "          'comic': 1,\n",
      "          'timing': 1,\n",
      "          'latter': 1,\n",
      "          'scenes': 1,\n",
      "          'superb': 1,\n",
      "          'nrichard': 1,\n",
      "          'terrific': 1,\n",
      "          'hapless': 1,\n",
      "          'soon': 1,\n",
      "          'loses': 1,\n",
      "          'control': 1,\n",
      "          'imaginary': 1,\n",
      "          'njenna': 1,\n",
      "          'elfmans': 1,\n",
      "          'position': 1,\n",
      "          'romantic': 1,\n",
      "          'lead': 1,\n",
      "          'forced': 1,\n",
      "          'times': 1,\n",
      "          'plays': 1,\n",
      "          'part': 1,\n",
      "          'extreme': 1,\n",
      "          'affability': 1,\n",
      "          'neven': 1,\n",
      "          'tend': 1,\n",
      "          'precocious': 1,\n",
      "          'side': 1,\n",
      "          'endearing': 1,\n",
      "          'humorous': 1,\n",
      "          'nyes': 1,\n",
      "          'veer': 1,\n",
      "          'occasionally': 1,\n",
      "          'rather': 1,\n",
      "          'lowbrow': 1,\n",
      "          'best': 1,\n",
      "          'excuse': 1,\n",
      "          'funny': 1,\n",
      "          'nit': 1,\n",
      "          'may': 1,\n",
      "          'go': 1,\n",
      "          'alltime': 1,\n",
      "          'classic': 1,\n",
      "          'certainly': 1,\n",
      "          'delivers': 1,\n",
      "          'expect': 1,\n",
      "          'plenty': 1,\n",
      "          'laughs': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'hilary': 5,\n",
      "          'nthe': 5,\n",
      "          'musicians': 4,\n",
      "          'script': 4,\n",
      "          'movie': 3,\n",
      "          'one': 3,\n",
      "          'together': 3,\n",
      "          'jackie': 3,\n",
      "          'watson': 3,\n",
      "          'griffiths': 3,\n",
      "          'du': 3,\n",
      "          'pr': 3,\n",
      "          'david': 2,\n",
      "          'lives': 2,\n",
      "          'fact': 2,\n",
      "          'watch': 2,\n",
      "          'leads': 2,\n",
      "          'say': 2,\n",
      "          'love': 2,\n",
      "          'tale': 2,\n",
      "          'rachel': 2,\n",
      "          'two': 2,\n",
      "          'different': 2,\n",
      "          'family': 2,\n",
      "          'style': 2,\n",
      "          'characters': 2,\n",
      "          'boyce': 2,\n",
      "          'story': 2,\n",
      "          'since': 1,\n",
      "          '1996s': 1,\n",
      "          'shine': 1,\n",
      "          'starred': 1,\n",
      "          'geoffrey': 1,\n",
      "          'rush': 1,\n",
      "          'pianist': 1,\n",
      "          'helfgott': 1,\n",
      "          'defiantly': 1,\n",
      "          'laid': 1,\n",
      "          'bare': 1,\n",
      "          'worldclass': 1,\n",
      "          'nin': 1,\n",
      "          'films': 1,\n",
      "          'would': 1,\n",
      "          'almost': 1,\n",
      "          'certainly': 1,\n",
      "          'stand': 1,\n",
      "          'convincing': 1,\n",
      "          'argument': 1,\n",
      "          'life': 1,\n",
      "          'music': 1,\n",
      "          'naturally': 1,\n",
      "          'varieties': 1,\n",
      "          'social': 1,\n",
      "          'ills': 1,\n",
      "          'nyet': 1,\n",
      "          'sophomore': 1,\n",
      "          'effort': 1,\n",
      "          'director': 1,\n",
      "          'anand': 1,\n",
      "          'tucker': 1,\n",
      "          'something': 1,\n",
      "          'softly': 1,\n",
      "          'strongly': 1,\n",
      "          'explores': 1,\n",
      "          'complex': 1,\n",
      "          'relationships': 1,\n",
      "          'sibling': 1,\n",
      "          'rivalry': 1,\n",
      "          'compelling': 1,\n",
      "          'nemily': 1,\n",
      "          'playing': 1,\n",
      "          'sisters': 1,\n",
      "          'nboth': 1,\n",
      "          'childhood': 1,\n",
      "          'renowned': 1,\n",
      "          'flutist': 1,\n",
      "          'jacqueline': 1,\n",
      "          'easily': 1,\n",
      "          'skilled': 1,\n",
      "          'cello': 1,\n",
      "          'comepete': 1,\n",
      "          'win': 1,\n",
      "          'many': 1,\n",
      "          'honors': 1,\n",
      "          'children': 1,\n",
      "          'young': 1,\n",
      "          'women': 1,\n",
      "          'seperate': 1,\n",
      "          'ntheir': 1,\n",
      "          'careers': 1,\n",
      "          'surpass': 1,\n",
      "          'bow': 1,\n",
      "          'anothers': 1,\n",
      "          'although': 1,\n",
      "          'take': 1,\n",
      "          'paths': 1,\n",
      "          'settles': 1,\n",
      "          'marriage': 1,\n",
      "          'skips': 1,\n",
      "          'across': 1,\n",
      "          'globe': 1,\n",
      "          'world': 1,\n",
      "          'concert': 1,\n",
      "          'tour': 1,\n",
      "          'bound': 1,\n",
      "          'deep': 1,\n",
      "          'performances': 1,\n",
      "          'excellent': 1,\n",
      "          'substance': 1,\n",
      "          'nthey': 1,\n",
      "          'contrast': 1,\n",
      "          'wonderfully': 1,\n",
      "          'watsons': 1,\n",
      "          'portrayal': 1,\n",
      "          'times': 1,\n",
      "          'eccentric': 1,\n",
      "          'perhaps': 1,\n",
      "          'unsympathetic': 1,\n",
      "          'charged': 1,\n",
      "          'emotion': 1,\n",
      "          'frank': 1,\n",
      "          'cottrell': 1,\n",
      "          'based': 1,\n",
      "          'book': 1,\n",
      "          'piers': 1,\n",
      "          'brings': 1,\n",
      "          'great': 1,\n",
      "          'deal': 1,\n",
      "          'depth': 1,\n",
      "          'well': 1,\n",
      "          'also': 1,\n",
      "          'commended': 1,\n",
      "          'wellpolished': 1,\n",
      "          'dual': 1,\n",
      "          'nature': 1,\n",
      "          'ncottrell': 1,\n",
      "          'adopts': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'see': 1,\n",
      "          'mystery': 1,\n",
      "          'thriller': 1,\n",
      "          'case': 1,\n",
      "          'koepp': 1,\n",
      "          'robert': 1,\n",
      "          'townes': 1,\n",
      "          'mission': 1,\n",
      "          'impossible': 1,\n",
      "          'skillfully': 1,\n",
      "          'molds': 1,\n",
      "          'rising': 1,\n",
      "          'courses': 1,\n",
      "          'fame': 1,\n",
      "          'latter': 1,\n",
      "          'parts': 1,\n",
      "          'controversial': 1,\n",
      "          'least': 1,\n",
      "          'rather': 1,\n",
      "          'depressing': 1,\n",
      "          'ending': 1,\n",
      "          'takes': 1,\n",
      "          'wind': 1,\n",
      "          'envigorating': 1,\n",
      "          'nsome': 1,\n",
      "          'leave': 1,\n",
      "          'feeling': 1,\n",
      "          'disenfranchised': 1,\n",
      "          'nnevertheless': 1,\n",
      "          'reaches': 1,\n",
      "          'upper': 1,\n",
      "          'echelon': 1,\n",
      "          'contemporary': 1,\n",
      "          'cinema': 1,\n",
      "          'solid': 1,\n",
      "          'fundamentals': 1,\n",
      "          'decent': 1,\n",
      "          'around': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'rico': 6,\n",
      "          'troopers': 5,\n",
      "          'starship': 4,\n",
      "          'ready': 4,\n",
      "          'gore': 4,\n",
      "          'people': 3,\n",
      "          'home': 3,\n",
      "          'nif': 3,\n",
      "          'much': 3,\n",
      "          'like': 3,\n",
      "          'nwith': 3,\n",
      "          'back': 3,\n",
      "          'nits': 3,\n",
      "          'armed': 2,\n",
      "          'forces': 2,\n",
      "          'future': 2,\n",
      "          'film': 2,\n",
      "          'taken': 2,\n",
      "          'recognize': 2,\n",
      "          'humor': 2,\n",
      "          'approach': 2,\n",
      "          'intentionally': 2,\n",
      "          'campy': 2,\n",
      "          'high': 2,\n",
      "          'school': 2,\n",
      "          'join': 2,\n",
      "          'whole': 2,\n",
      "          'carmen': 2,\n",
      "          'enlisted': 2,\n",
      "          'shes': 2,\n",
      "          'cast': 2,\n",
      "          'carl': 2,\n",
      "          'doogie': 2,\n",
      "          'leaves': 2,\n",
      "          'good': 2,\n",
      "          'call': 2,\n",
      "          'time': 2,\n",
      "          'closely': 2,\n",
      "          'clothes': 2,\n",
      "          'alien': 2,\n",
      "          'group': 2,\n",
      "          'spoof': 2,\n",
      "          'love': 2,\n",
      "          'young': 2,\n",
      "          'scifiaction': 2,\n",
      "          'youre': 2,\n",
      "          'comedy': 2,\n",
      "          'cult': 2,\n",
      "          'cheesy': 2,\n",
      "          'fun': 2,\n",
      "          'watch': 2,\n",
      "          'barbie': 2,\n",
      "          'special': 2,\n",
      "          'effects': 2,\n",
      "          'quite': 2,\n",
      "          'awesome': 2,\n",
      "          'brainless': 2,\n",
      "          'luckily': 1,\n",
      "          'got': 1,\n",
      "          'nsome': 1,\n",
      "          'knew': 1,\n",
      "          'supposed': 1,\n",
      "          'silly': 1,\n",
      "          'nfor': 1,\n",
      "          'didnt': 1,\n",
      "          'could': 1,\n",
      "          'miss': 1,\n",
      "          'nfrom': 1,\n",
      "          'beginning': 1,\n",
      "          'see': 1,\n",
      "          'interactive': 1,\n",
      "          'internetlike': 1,\n",
      "          'promotional': 1,\n",
      "          'video': 1,\n",
      "          'obvious': 1,\n",
      "          'lightly': 1,\n",
      "          'ni': 1,\n",
      "          'guess': 1,\n",
      "          'without': 1,\n",
      "          'blatant': 1,\n",
      "          'oneliners': 1,\n",
      "          'alone': 1,\n",
      "          'style': 1,\n",
      "          'slapstick': 1,\n",
      "          'dont': 1,\n",
      "          'goofy': 1,\n",
      "          'nsuch': 1,\n",
      "          'dry': 1,\n",
      "          'must': 1,\n",
      "          'left': 1,\n",
      "          'disillusioned': 1,\n",
      "          'nfirst': 1,\n",
      "          'thing': 1,\n",
      "          'seeing': 1,\n",
      "          'movie': 1,\n",
      "          'lighten': 1,\n",
      "          'nmeet': 1,\n",
      "          'equivalent': 1,\n",
      "          'beverly': 1,\n",
      "          'hills': 1,\n",
      "          '90210': 1,\n",
      "          'meets': 1,\n",
      "          'mighty': 1,\n",
      "          'morphin': 1,\n",
      "          'power': 1,\n",
      "          'rangers': 1,\n",
      "          'nfour': 1,\n",
      "          'close': 1,\n",
      "          'friends': 1,\n",
      "          'graduating': 1,\n",
      "          'means': 1,\n",
      "          'fighting': 1,\n",
      "          'galaxy': 1,\n",
      "          'country': 1,\n",
      "          'njohnny': 1,\n",
      "          'casper': 1,\n",
      "          'van': 1,\n",
      "          'dien': 1,\n",
      "          'infantry': 1,\n",
      "          'mostly': 1,\n",
      "          'girlfriend': 1,\n",
      "          'ibanez': 1,\n",
      "          'denise': 1,\n",
      "          'richards': 1,\n",
      "          'pilot': 1,\n",
      "          'ndizzy': 1,\n",
      "          'flores': 1,\n",
      "          'dina': 1,\n",
      "          'meyer': 1,\n",
      "          'trooper': 1,\n",
      "          'possible': 1,\n",
      "          'joining': 1,\n",
      "          'merely': 1,\n",
      "          'follow': 1,\n",
      "          'always': 1,\n",
      "          'eyes': 1,\n",
      "          'saw': 1,\n",
      "          'three': 1,\n",
      "          'street': 1,\n",
      "          'youd': 1,\n",
      "          'automatically': 1,\n",
      "          'start': 1,\n",
      "          'searching': 1,\n",
      "          'fashion': 1,\n",
      "          'designers': 1,\n",
      "          'photographers': 1,\n",
      "          'never': 1,\n",
      "          'movies': 1,\n",
      "          'looked': 1,\n",
      "          'cutout': 1,\n",
      "          'cover': 1,\n",
      "          'seventeen': 1,\n",
      "          'magazine': 1,\n",
      "          'nthe': 1,\n",
      "          'lone': 1,\n",
      "          'nonsupermodel': 1,\n",
      "          'jenkins': 1,\n",
      "          'played': 1,\n",
      "          'howser': 1,\n",
      "          'neil': 1,\n",
      "          'patrick': 1,\n",
      "          'harris': 1,\n",
      "          'brainiac': 1,\n",
      "          'gets': 1,\n",
      "          'military': 1,\n",
      "          'intelligence': 1,\n",
      "          'division': 1,\n",
      "          'top': 1,\n",
      "          'secret': 1,\n",
      "          'department': 1,\n",
      "          'pretty': 1,\n",
      "          'er': 1,\n",
      "          'picture': 1,\n",
      "          'n': 1,\n",
      "          'put': 1,\n",
      "          'drooling': 1,\n",
      "          'efforts': 1,\n",
      "          'deserving': 1,\n",
      "          'characters': 1,\n",
      "          'nright': 1,\n",
      "          'bat': 1,\n",
      "          'becomes': 1,\n",
      "          'star': 1,\n",
      "          'show': 1,\n",
      "          'far': 1,\n",
      "          'surpassing': 1,\n",
      "          'soldiers': 1,\n",
      "          'becoming': 1,\n",
      "          'squadron': 1,\n",
      "          'leader': 1,\n",
      "          'short': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'period': 1,\n",
      "          'nbut': 1,\n",
      "          'horrific': 1,\n",
      "          'accident': 1,\n",
      "          'standard': 1,\n",
      "          'training': 1,\n",
      "          'exercise': 1,\n",
      "          'follows': 1,\n",
      "          'breakup': 1,\n",
      "          'quits': 1,\n",
      "          'bags': 1,\n",
      "          'packed': 1,\n",
      "          'civilian': 1,\n",
      "          'johnny': 1,\n",
      "          'walk': 1,\n",
      "          'base': 1,\n",
      "          'catch': 1,\n",
      "          'next': 1,\n",
      "          'flight': 1,\n",
      "          'nwell': 1,\n",
      "          'sorry': 1,\n",
      "          'suave': 1,\n",
      "          'theres': 1,\n",
      "          'place': 1,\n",
      "          'especially': 1,\n",
      "          'gigantic': 1,\n",
      "          'insects': 1,\n",
      "          'destroyed': 1,\n",
      "          'nthats': 1,\n",
      "          'right': 1,\n",
      "          'planet': 1,\n",
      "          'attacked': 1,\n",
      "          'colony': 1,\n",
      "          'arachnidlike': 1,\n",
      "          'beings': 1,\n",
      "          'raid': 1,\n",
      "          'isnt': 1,\n",
      "          'going': 1,\n",
      "          'destroy': 1,\n",
      "          'sudden': 1,\n",
      "          'change': 1,\n",
      "          'heart': 1,\n",
      "          'game': 1,\n",
      "          'following': 1,\n",
      "          'fellow': 1,\n",
      "          'fight': 1,\n",
      "          'mean': 1,\n",
      "          'daddy': 1,\n",
      "          'long': 1,\n",
      "          'legs': 1,\n",
      "          'nwhat': 1,\n",
      "          'really': 1,\n",
      "          'even': 1,\n",
      "          'remotely': 1,\n",
      "          'touches': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'affairs': 1,\n",
      "          'scifi': 1,\n",
      "          'thirst': 1,\n",
      "          'shared': 1,\n",
      "          'age': 1,\n",
      "          'etc': 1,\n",
      "          'nothing': 1,\n",
      "          'seriously': 1,\n",
      "          'almost': 1,\n",
      "          'satire': 1,\n",
      "          'adults': 1,\n",
      "          'clueless': 1,\n",
      "          'sly': 1,\n",
      "          'futuristic': 1,\n",
      "          'recognizably': 1,\n",
      "          'subtle': 1,\n",
      "          'many': 1,\n",
      "          'wont': 1,\n",
      "          'spoofery': 1,\n",
      "          'deem': 1,\n",
      "          'wrong': 1,\n",
      "          'scifiactioncomedy': 1,\n",
      "          'level': 1,\n",
      "          'favorites': 1,\n",
      "          'evil': 1,\n",
      "          'dead': 1,\n",
      "          '2': 1,\n",
      "          'may': 1,\n",
      "          'road': 1,\n",
      "          'status': 1,\n",
      "          'well': 1,\n",
      "          'ngore': 1,\n",
      "          'factor': 1,\n",
      "          'heavily': 1,\n",
      "          'brought': 1,\n",
      "          'reviews': 1,\n",
      "          'meant': 1,\n",
      "          'nyes': 1,\n",
      "          'graphic': 1,\n",
      "          'also': 1,\n",
      "          'brutally': 1,\n",
      "          'phony': 1,\n",
      "          'thats': 1,\n",
      "          'makes': 1,\n",
      "          'great': 1,\n",
      "          'nnot': 1,\n",
      "          'since': 1,\n",
      "          'old': 1,\n",
      "          'mr': 1,\n",
      "          'bill': 1,\n",
      "          'skits': 1,\n",
      "          'saturday': 1,\n",
      "          'night': 1,\n",
      "          'live': 1,\n",
      "          'torture': 1,\n",
      "          'mutilation': 1,\n",
      "          'joy': 1,\n",
      "          'npeople': 1,\n",
      "          'laughing': 1,\n",
      "          'loud': 1,\n",
      "          'every': 1,\n",
      "          'body': 1,\n",
      "          'severed': 1,\n",
      "          'half': 1,\n",
      "          'head': 1,\n",
      "          'viciously': 1,\n",
      "          'decapitated': 1,\n",
      "          'nperhaps': 1,\n",
      "          'brings': 1,\n",
      "          'fond': 1,\n",
      "          'memories': 1,\n",
      "          'severities': 1,\n",
      "          'inflicted': 1,\n",
      "          'upon': 1,\n",
      "          'sisters': 1,\n",
      "          'dolls': 1,\n",
      "          'children': 1,\n",
      "          'actors': 1,\n",
      "          'resembling': 1,\n",
      "          'ken': 1,\n",
      "          'chance': 1,\n",
      "          'case': 1,\n",
      "          'whether': 1,\n",
      "          'fully': 1,\n",
      "          'aware': 1,\n",
      "          'nstarship': 1,\n",
      "          'slow': 1,\n",
      "          'parts': 1,\n",
      "          'truly': 1,\n",
      "          'alternative': 1,\n",
      "          'typical': 1,\n",
      "          'flick': 1,\n",
      "          'lame': 1,\n",
      "          'juvenile': 1,\n",
      "          'naside': 1,\n",
      "          'astounding': 1,\n",
      "          'nwhen': 1,\n",
      "          'spaceship': 1,\n",
      "          'passes': 1,\n",
      "          'meteor': 1,\n",
      "          'spectacle': 1,\n",
      "          'visually': 1,\n",
      "          'crisp': 1,\n",
      "          'captivating': 1,\n",
      "          'looking': 1,\n",
      "          'epitome': 1,\n",
      "          'search': 1,\n",
      "          'na': 1,\n",
      "          'beautiful': 1,\n",
      "          'fastpaced': 1,\n",
      "          'action': 1,\n",
      "          'acting': 1,\n",
      "          'lot': 1,\n",
      "          'nthis': 1,\n",
      "          'heaven': 1,\n",
      "          'njust': 1,\n",
      "          'remember': 1,\n",
      "          'think': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'comedy': 4,\n",
      "          'romantic': 3,\n",
      "          'hill': 2,\n",
      "          'actress': 2,\n",
      "          'none': 2,\n",
      "          'grant': 2,\n",
      "          'spike': 2,\n",
      "          'beautiful': 2,\n",
      "          'good': 2,\n",
      "          'nin': 2,\n",
      "          'says': 2,\n",
      "          'woman': 2,\n",
      "          'happy': 1,\n",
      "          'bastards': 1,\n",
      "          '30second': 1,\n",
      "          'review': 1,\n",
      "          'nnotting': 1,\n",
      "          'na': 1,\n",
      "          'cute': 1,\n",
      "          'writer': 1,\n",
      "          'hit': 1,\n",
      "          'four': 1,\n",
      "          'weddings': 1,\n",
      "          'funeral': 1,\n",
      "          'notting': 1,\n",
      "          'stars': 1,\n",
      "          'julia': 1,\n",
      "          'roberts': 1,\n",
      "          'anna': 1,\n",
      "          'scott': 1,\n",
      "          'popular': 1,\n",
      "          '15': 1,\n",
      "          'million': 1,\n",
      "          'asking': 1,\n",
      "          'price': 1,\n",
      "          'movies': 1,\n",
      "          'day': 1,\n",
      "          'wanders': 1,\n",
      "          'travel': 1,\n",
      "          'book': 1,\n",
      "          'store': 1,\n",
      "          'owned': 1,\n",
      "          'simple': 1,\n",
      "          'london': 1,\n",
      "          'resident': 1,\n",
      "          'played': 1,\n",
      "          'hugh': 1,\n",
      "          'sparks': 1,\n",
      "          'somehow': 1,\n",
      "          'begin': 1,\n",
      "          'fly': 1,\n",
      "          'nsure': 1,\n",
      "          'points': 1,\n",
      "          'turmoil': 1,\n",
      "          'putting': 1,\n",
      "          'grants': 1,\n",
      "          'slightly': 1,\n",
      "          'disgusting': 1,\n",
      "          'hilarious': 1,\n",
      "          'roommate': 1,\n",
      "          'annas': 1,\n",
      "          'pesky': 1,\n",
      "          'exboyfriend': 1,\n",
      "          'alec': 1,\n",
      "          'baldwin': 1,\n",
      "          'humorous': 1,\n",
      "          'cameo': 1,\n",
      "          'top': 1,\n",
      "          'damn': 1,\n",
      "          'press': 1,\n",
      "          'nits': 1,\n",
      "          'fresh': 1,\n",
      "          'sort': 1,\n",
      "          'complexity': 1,\n",
      "          'see': 1,\n",
      "          'different': 1,\n",
      "          'say': 1,\n",
      "          'stubborn': 1,\n",
      "          'father': 1,\n",
      "          'right': 1,\n",
      "          'time': 1,\n",
      "          'like': 1,\n",
      "          'seen': 1,\n",
      "          'usual': 1,\n",
      "          'flicks': 1,\n",
      "          'nroberts': 1,\n",
      "          'terrific': 1,\n",
      "          'astonishingly': 1,\n",
      "          'surprisingly': 1,\n",
      "          'straightforward': 1,\n",
      "          'guy': 1,\n",
      "          'still': 1,\n",
      "          'trying': 1,\n",
      "          'get': 1,\n",
      "          'hold': 1,\n",
      "          'actually': 1,\n",
      "          'happened': 1,\n",
      "          'girl': 1,\n",
      "          'short': 1,\n",
      "          'sweet': 1,\n",
      "          'lot': 1,\n",
      "          'laughs': 1,\n",
      "          'particularly': 1,\n",
      "          'provided': 1,\n",
      "          'teeshirt': 1,\n",
      "          'really': 1,\n",
      "          'attempt': 1,\n",
      "          'turn': 1,\n",
      "          'shows': 1,\n",
      "          'front': 1,\n",
      "          'shirt': 1,\n",
      "          'world': 1,\n",
      "          'non': 1,\n",
      "          'back': 1,\n",
      "          'n': 1,\n",
      "          'fancy': 1,\n",
      "          'f': 1,\n",
      "          'k': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 12,\n",
      "          'movie': 7,\n",
      "          'one': 5,\n",
      "          'xfiles': 4,\n",
      "          'cave': 4,\n",
      "          'texas': 4,\n",
      "          'mulder': 4,\n",
      "          'truth': 4,\n",
      "          'movies': 4,\n",
      "          'film': 4,\n",
      "          'nthere': 4,\n",
      "          'good': 4,\n",
      "          'ni': 3,\n",
      "          'north': 3,\n",
      "          'alien': 3,\n",
      "          'fbi': 3,\n",
      "          'agents': 3,\n",
      "          'even': 3,\n",
      "          'nbut': 3,\n",
      "          'interesting': 3,\n",
      "          'enough': 3,\n",
      "          'makes': 3,\n",
      "          'big': 2,\n",
      "          'tv': 2,\n",
      "          'nothing': 2,\n",
      "          'dont': 2,\n",
      "          'say': 2,\n",
      "          'well': 2,\n",
      "          'lot': 2,\n",
      "          'things': 2,\n",
      "          'captured': 2,\n",
      "          'ooze': 2,\n",
      "          'black': 2,\n",
      "          'anderson': 2,\n",
      "          'duchovny': 2,\n",
      "          'bomb': 2,\n",
      "          'building': 2,\n",
      "          'across': 2,\n",
      "          'street': 2,\n",
      "          'know': 2,\n",
      "          'right': 2,\n",
      "          'time': 2,\n",
      "          'antarctica': 2,\n",
      "          'get': 2,\n",
      "          'closer': 2,\n",
      "          'plot': 2,\n",
      "          'still': 2,\n",
      "          'would': 2,\n",
      "          'make': 2,\n",
      "          'like': 2,\n",
      "          'interest': 2,\n",
      "          'audience': 2,\n",
      "          'location': 2,\n",
      "          'night': 2,\n",
      "          'look': 2,\n",
      "          'dark': 2,\n",
      "          'tone': 2,\n",
      "          'shot': 2,\n",
      "          'way': 2,\n",
      "          'looks': 2,\n",
      "          'soundtrack': 2,\n",
      "          'never': 2,\n",
      "          'sound': 2,\n",
      "          'first': 1,\n",
      "          'fan': 1,\n",
      "          'series': 1,\n",
      "          'particularly': 1,\n",
      "          'happen': 1,\n",
      "          'watch': 1,\n",
      "          'nhaving': 1,\n",
      "          'said': 1,\n",
      "          'liked': 1,\n",
      "          'pretty': 1,\n",
      "          'nfor': 1,\n",
      "          'us': 1,\n",
      "          'nonfans': 1,\n",
      "          'theres': 1,\n",
      "          'going': 1,\n",
      "          'little': 1,\n",
      "          'opens': 1,\n",
      "          'ice': 1,\n",
      "          '35': 1,\n",
      "          '000': 1,\n",
      "          'b': 1,\n",
      "          'c': 1,\n",
      "          'ntwo': 1,\n",
      "          'protohumans': 1,\n",
      "          'enter': 1,\n",
      "          'find': 1,\n",
      "          'space': 1,\n",
      "          'cocooned': 1,\n",
      "          'inside': 1,\n",
      "          'breaks': 1,\n",
      "          'free': 1,\n",
      "          'kills': 1,\n",
      "          'man': 1,\n",
      "          'struggle': 1,\n",
      "          'seemingly': 1,\n",
      "          'bloody': 1,\n",
      "          'jumps': 1,\n",
      "          'today': 1,\n",
      "          'boy': 1,\n",
      "          'lucas': 1,\n",
      "          'sling': 1,\n",
      "          'blade': 1,\n",
      "          'nwe': 1,\n",
      "          'cut': 1,\n",
      "          'scully': 1,\n",
      "          'gillian': 1,\n",
      "          'david': 1,\n",
      "          'pulled': 1,\n",
      "          'previous': 1,\n",
      "          'assignment': 1,\n",
      "          'investigations': 1,\n",
      "          'paranormal': 1,\n",
      "          'put': 1,\n",
      "          'onto': 1,\n",
      "          'squad': 1,\n",
      "          'detail': 1,\n",
      "          'na': 1,\n",
      "          'caller': 1,\n",
      "          'threatened': 1,\n",
      "          'federal': 1,\n",
      "          'dallas': 1,\n",
      "          'non': 1,\n",
      "          'hunch': 1,\n",
      "          'checks': 1,\n",
      "          'wouldnt': 1,\n",
      "          'turns': 1,\n",
      "          'finds': 1,\n",
      "          'evacuate': 1,\n",
      "          'defuse': 1,\n",
      "          'nfive': 1,\n",
      "          'people': 1,\n",
      "          'die': 1,\n",
      "          'blast': 1,\n",
      "          'learns': 1,\n",
      "          'victims': 1,\n",
      "          'light': 1,\n",
      "          'bulb': 1,\n",
      "          'goes': 1,\n",
      "          'head': 1,\n",
      "          'two': 1,\n",
      "          'team': 1,\n",
      "          'investigate': 1,\n",
      "          'orders': 1,\n",
      "          'links': 1,\n",
      "          'made': 1,\n",
      "          'ntheir': 1,\n",
      "          'search': 1,\n",
      "          'leads': 1,\n",
      "          'back': 1,\n",
      "          'country': 1,\n",
      "          'uninspired': 1,\n",
      "          'got': 1,\n",
      "          'feeling': 1,\n",
      "          'learned': 1,\n",
      "          'supposed': 1,\n",
      "          'shock': 1,\n",
      "          'amaze': 1,\n",
      "          'nit': 1,\n",
      "          'didnt': 1,\n",
      "          'possible': 1,\n",
      "          'existence': 1,\n",
      "          'aliens': 1,\n",
      "          'earth': 1,\n",
      "          'explored': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'could': 1,\n",
      "          'hardly': 1,\n",
      "          'count': 1,\n",
      "          'point': 1,\n",
      "          'extent': 1,\n",
      "          'hidden': 1,\n",
      "          'nits': 1,\n",
      "          'slightly': 1,\n",
      "          'angle': 1,\n",
      "          'raises': 1,\n",
      "          'expectations': 1,\n",
      "          'high': 1,\n",
      "          'nif': 1,\n",
      "          'whole': 1,\n",
      "          'mediocre': 1,\n",
      "          'perhaps': 1,\n",
      "          'boring': 1,\n",
      "          'qualities': 1,\n",
      "          'recommend': 1,\n",
      "          'pacing': 1,\n",
      "          'brisk': 1,\n",
      "          'hold': 1,\n",
      "          'nbefore': 1,\n",
      "          'tired': 1,\n",
      "          'follow': 1,\n",
      "          'hot': 1,\n",
      "          'tip': 1,\n",
      "          'another': 1,\n",
      "          'forth': 1,\n",
      "          'locations': 1,\n",
      "          'computergenerated': 1,\n",
      "          'sets': 1,\n",
      "          'either': 1,\n",
      "          'artificial': 1,\n",
      "          'settings': 1,\n",
      "          'desert': 1,\n",
      "          'nevada': 1,\n",
      "          'edge': 1,\n",
      "          'suburbia': 1,\n",
      "          'endless': 1,\n",
      "          'fields': 1,\n",
      "          'snow': 1,\n",
      "          'actually': 1,\n",
      "          'somewhere': 1,\n",
      "          'america': 1,\n",
      "          'nmake': 1,\n",
      "          'fantastic': 1,\n",
      "          'feel': 1,\n",
      "          'real': 1,\n",
      "          'nward': 1,\n",
      "          'russells': 1,\n",
      "          'cinematography': 1,\n",
      "          'overall': 1,\n",
      "          'ominous': 1,\n",
      "          'appropriate': 1,\n",
      "          'intended': 1,\n",
      "          'films': 1,\n",
      "          'nrussell': 1,\n",
      "          'able': 1,\n",
      "          'something': 1,\n",
      "          'innocuous': 1,\n",
      "          'cornfield': 1,\n",
      "          'foreboding': 1,\n",
      "          'nwhen': 1,\n",
      "          'set': 1,\n",
      "          'darkness': 1,\n",
      "          'picture': 1,\n",
      "          'quality': 1,\n",
      "          'rich': 1,\n",
      "          'detailed': 1,\n",
      "          'nfinally': 1,\n",
      "          'specifically': 1,\n",
      "          'incredible': 1,\n",
      "          'camera': 1,\n",
      "          'crosses': 1,\n",
      "          'tracks': 1,\n",
      "          'front': 1,\n",
      "          'fast': 1,\n",
      "          'oncoming': 1,\n",
      "          'train': 1,\n",
      "          'faked': 1,\n",
      "          'dangerous': 1,\n",
      "          'great': 1,\n",
      "          'also': 1,\n",
      "          'used': 1,\n",
      "          'convey': 1,\n",
      "          'skip': 1,\n",
      "          'nto': 1,\n",
      "          'next': 1,\n",
      "          'paragraph': 1,\n",
      "          'yet': 1,\n",
      "          'see': 1,\n",
      "          'spoiler': 1,\n",
      "          'following': 1,\n",
      "          'sentences': 1,\n",
      "          'opening': 1,\n",
      "          'prehistoric': 1,\n",
      "          'sequence': 1,\n",
      "          'howling': 1,\n",
      "          'wind': 1,\n",
      "          'dogs': 1,\n",
      "          'giving': 1,\n",
      "          'characters': 1,\n",
      "          'escape': 1,\n",
      "          'lonely': 1,\n",
      "          'terrible': 1,\n",
      "          'nin': 1,\n",
      "          'effective': 1,\n",
      "          'sequences': 1,\n",
      "          'metallic': 1,\n",
      "          'doors': 1,\n",
      "          'suddenly': 1,\n",
      "          'slam': 1,\n",
      "          'open': 1,\n",
      "          'release': 1,\n",
      "          'cloud': 1,\n",
      "          'buzzing': 1,\n",
      "          'bees': 1,\n",
      "          'visuals': 1,\n",
      "          'scene': 1,\n",
      "          'surprising': 1,\n",
      "          'frightening': 1,\n",
      "          'question': 1,\n",
      "          'stars': 1,\n",
      "          'neven': 1,\n",
      "          'pair': 1,\n",
      "          'actors': 1,\n",
      "          'combination': 1,\n",
      "          'nboth': 1,\n",
      "          'easy': 1,\n",
      "          'eyes': 1,\n",
      "          'together': 1,\n",
      "          'timing': 1,\n",
      "          'banter': 1,\n",
      "          'energy': 1,\n",
      "          'hint': 1,\n",
      "          'chemistry': 1,\n",
      "          'gets': 1,\n",
      "          'professional': 1,\n",
      "          'relationship': 1,\n",
      "          'nthey': 1,\n",
      "          'couple': 1,\n",
      "          'kids': 1,\n",
      "          'exploring': 1,\n",
      "          'empty': 1,\n",
      "          'end': 1,\n",
      "          'might': 1,\n",
      "          'romantic': 1,\n",
      "          'theyre': 1,\n",
      "          'interested': 1,\n",
      "          'environs': 1,\n",
      "          'nno': 1,\n",
      "          'single': 1,\n",
      "          'element': 1,\n",
      "          'really': 1,\n",
      "          'outstanding': 1,\n",
      "          'sense': 1,\n",
      "          'paranoia': 1,\n",
      "          'show': 1,\n",
      "          'popular': 1,\n",
      "          'done': 1,\n",
      "          'summer': 1,\n",
      "          'adventures': 1,\n",
      "          'come': 1,\n",
      "          'along': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 14,\n",
      "          'may': 11,\n",
      "          'come': 9,\n",
      "          'see': 8,\n",
      "          'nbut': 8,\n",
      "          'heaven': 8,\n",
      "          'dreams': 7,\n",
      "          'get': 7,\n",
      "          'nthe': 7,\n",
      "          'nchris': 7,\n",
      "          'chris': 7,\n",
      "          'annie': 7,\n",
      "          'story': 6,\n",
      "          'nits': 6,\n",
      "          'even': 5,\n",
      "          'plot': 5,\n",
      "          'us': 5,\n",
      "          'well': 5,\n",
      "          'life': 5,\n",
      "          'also': 5,\n",
      "          'real': 5,\n",
      "          'find': 4,\n",
      "          'quite': 4,\n",
      "          'complex': 4,\n",
      "          'could': 4,\n",
      "          'definitely': 4,\n",
      "          'screenplay': 4,\n",
      "          'would': 4,\n",
      "          'nwhat': 4,\n",
      "          'movie': 4,\n",
      "          'like': 3,\n",
      "          'ward': 3,\n",
      "          'computer': 3,\n",
      "          'nthis': 3,\n",
      "          'one': 3,\n",
      "          'films': 3,\n",
      "          'nit': 3,\n",
      "          'goes': 3,\n",
      "          'back': 3,\n",
      "          'city': 3,\n",
      "          'vision': 3,\n",
      "          'doubt': 3,\n",
      "          'around': 3,\n",
      "          'make': 3,\n",
      "          'thought': 3,\n",
      "          'visuals': 3,\n",
      "          'hell': 3,\n",
      "          'two': 3,\n",
      "          'williams': 3,\n",
      "          'almost': 3,\n",
      "          'seen': 3,\n",
      "          'good': 3,\n",
      "          'oscar': 3,\n",
      "          'nomination': 3,\n",
      "          'job': 3,\n",
      "          'many': 2,\n",
      "          'people': 2,\n",
      "          'much': 2,\n",
      "          'new': 2,\n",
      "          'director': 2,\n",
      "          'vincent': 2,\n",
      "          'colors': 2,\n",
      "          'know': 2,\n",
      "          'tell': 2,\n",
      "          'audiences': 2,\n",
      "          'previews': 2,\n",
      "          'everyone': 2,\n",
      "          'fluid': 2,\n",
      "          'afterlife': 2,\n",
      "          'extremely': 2,\n",
      "          'order': 2,\n",
      "          'done': 2,\n",
      "          'dont': 2,\n",
      "          'ni': 2,\n",
      "          'pure': 2,\n",
      "          'gets': 2,\n",
      "          'put': 2,\n",
      "          'mind': 2,\n",
      "          'year': 2,\n",
      "          'going': 2,\n",
      "          'begins': 2,\n",
      "          'startled': 2,\n",
      "          'nannie': 2,\n",
      "          'annabella': 2,\n",
      "          'sciorra': 2,\n",
      "          'whose': 2,\n",
      "          'paintings': 2,\n",
      "          'colorful': 2,\n",
      "          'children': 2,\n",
      "          'jessica': 2,\n",
      "          'brooks': 2,\n",
      "          'josh': 2,\n",
      "          'paddock': 2,\n",
      "          'killed': 2,\n",
      "          'car': 2,\n",
      "          'crash': 2,\n",
      "          'problem': 2,\n",
      "          'nothing': 2,\n",
      "          'njust': 2,\n",
      "          'albert': 2,\n",
      "          'gooding': 2,\n",
      "          'jr': 2,\n",
      "          'point': 2,\n",
      "          'crucial': 2,\n",
      "          'away': 2,\n",
      "          'work': 2,\n",
      "          'nhowever': 2,\n",
      "          'na': 2,\n",
      "          'search': 2,\n",
      "          'love': 2,\n",
      "          'n': 2,\n",
      "          'never': 2,\n",
      "          'nhis': 2,\n",
      "          'makes': 2,\n",
      "          'state': 2,\n",
      "          'nin': 2,\n",
      "          'von': 2,\n",
      "          'sydow': 2,\n",
      "          'sea': 2,\n",
      "          'faces': 2,\n",
      "          'designer': 2,\n",
      "          'last': 2,\n",
      "          'nand': 2,\n",
      "          'audience': 2,\n",
      "          'isnt': 2,\n",
      "          'attention': 2,\n",
      "          'impressed': 2,\n",
      "          'performances': 2,\n",
      "          'really': 2,\n",
      "          'distracting': 2,\n",
      "          'herzog': 2,\n",
      "          'images': 2,\n",
      "          'nsome': 2,\n",
      "          'title': 2,\n",
      "          'visionary': 1,\n",
      "          'nmost': 1,\n",
      "          'animated': 1,\n",
      "          'landscapes': 1,\n",
      "          'vibrant': 1,\n",
      "          'little': 1,\n",
      "          'plainly': 1,\n",
      "          'found': 1,\n",
      "          'nwalking': 1,\n",
      "          'theater': 1,\n",
      "          'disgust': 1,\n",
      "          'none': 1,\n",
      "          'member': 1,\n",
      "          'awakened': 1,\n",
      "          'ended': 1,\n",
      "          'ndont': 1,\n",
      "          'believe': 1,\n",
      "          'possibly': 1,\n",
      "          'adultoriented': 1,\n",
      "          'recent': 1,\n",
      "          'years': 1,\n",
      "          'nkids': 1,\n",
      "          'bored': 1,\n",
      "          'slow': 1,\n",
      "          'plotting': 1,\n",
      "          'storyline': 1,\n",
      "          'presents': 1,\n",
      "          'forth': 1,\n",
      "          'time': 1,\n",
      "          'boundaries': 1,\n",
      "          'nthink': 1,\n",
      "          'angels': 1,\n",
      "          'nnow': 1,\n",
      "          'add': 1,\n",
      "          'unique': 1,\n",
      "          'nboth': 1,\n",
      "          'deal': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'ncosting': 1,\n",
      "          '85': 1,\n",
      "          'million': 1,\n",
      "          'money': 1,\n",
      "          'due': 1,\n",
      "          'nfor': 1,\n",
      "          'titanics': 1,\n",
      "          'simple': 1,\n",
      "          'cliche': 1,\n",
      "          'proof': 1,\n",
      "          'james': 1,\n",
      "          'cameron': 1,\n",
      "          'written': 1,\n",
      "          'nearly': 1,\n",
      "          'wrong': 1,\n",
      "          'hope': 1,\n",
      "          'visceral': 1,\n",
      "          'enjoyment': 1,\n",
      "          'hardly': 1,\n",
      "          'ever': 1,\n",
      "          'screen': 1,\n",
      "          'place': 1,\n",
      "          'second': 1,\n",
      "          'best': 1,\n",
      "          'comes': 1,\n",
      "          'surpasses': 1,\n",
      "          'dark': 1,\n",
      "          'nfull': 1,\n",
      "          'rich': 1,\n",
      "          'shocking': 1,\n",
      "          'probably': 1,\n",
      "          'die': 1,\n",
      "          'youll': 1,\n",
      "          'end': 1,\n",
      "          'boats': 1,\n",
      "          'colliding': 1,\n",
      "          'lake': 1,\n",
      "          'christy': 1,\n",
      "          'nielsen': 1,\n",
      "          'robin': 1,\n",
      "          'sudden': 1,\n",
      "          'jolt': 1,\n",
      "          'beauty': 1,\n",
      "          'woman': 1,\n",
      "          'boat': 1,\n",
      "          'spies': 1,\n",
      "          'eventually': 1,\n",
      "          'bond': 1,\n",
      "          'married': 1,\n",
      "          'artist': 1,\n",
      "          'lush': 1,\n",
      "          'surrealistic': 1,\n",
      "          'doctor': 1,\n",
      "          'loves': 1,\n",
      "          'nthey': 1,\n",
      "          'marie': 1,\n",
      "          'ian': 1,\n",
      "          'day': 1,\n",
      "          'destroys': 1,\n",
      "          'nshe': 1,\n",
      "          'tries': 1,\n",
      "          'commit': 1,\n",
      "          'suicide': 1,\n",
      "          'fails': 1,\n",
      "          'institution': 1,\n",
      "          'copes': 1,\n",
      "          'realizing': 1,\n",
      "          'arent': 1,\n",
      "          'anymore': 1,\n",
      "          'change': 1,\n",
      "          'trying': 1,\n",
      "          'save': 1,\n",
      "          'victim': 1,\n",
      "          'version': 1,\n",
      "          'rather': 1,\n",
      "          'nguided': 1,\n",
      "          'cuba': 1,\n",
      "          'explores': 1,\n",
      "          'surroundings': 1,\n",
      "          'delight': 1,\n",
      "          'joy': 1,\n",
      "          'nthat': 1,\n",
      "          'realizes': 1,\n",
      "          'miserable': 1,\n",
      "          'without': 1,\n",
      "          'nprior': 1,\n",
      "          'try': 1,\n",
      "          'comfort': 1,\n",
      "          'pain': 1,\n",
      "          'felt': 1,\n",
      "          'decides': 1,\n",
      "          'leave': 1,\n",
      "          'alone': 1,\n",
      "          'nlittle': 1,\n",
      "          'realize': 1,\n",
      "          'happen': 1,\n",
      "          'next': 1,\n",
      "          'nim': 1,\n",
      "          'say': 1,\n",
      "          'rest': 1,\n",
      "          'critics': 1,\n",
      "          'however': 1,\n",
      "          'give': 1,\n",
      "          'ncertainly': 1,\n",
      "          'dying': 1,\n",
      "          'dies': 1,\n",
      "          'nstory': 1,\n",
      "          'necessarily': 1,\n",
      "          'important': 1,\n",
      "          'deals': 1,\n",
      "          'strangely': 1,\n",
      "          'virtually': 1,\n",
      "          'heard': 1,\n",
      "          'god': 1,\n",
      "          'devil': 1,\n",
      "          'couple': 1,\n",
      "          'comments': 1,\n",
      "          'maintains': 1,\n",
      "          'focus': 1,\n",
      "          'soul': 1,\n",
      "          'mates': 1,\n",
      "          'exclaims': 1,\n",
      "          'nheaven': 1,\n",
      "          'movies': 1,\n",
      "          'always': 1,\n",
      "          'depicted': 1,\n",
      "          'glowing': 1,\n",
      "          'white': 1,\n",
      "          'purity': 1,\n",
      "          'nusually': 1,\n",
      "          'looks': 1,\n",
      "          'rests': 1,\n",
      "          'among': 1,\n",
      "          'clouds': 1,\n",
      "          'different': 1,\n",
      "          'route': 1,\n",
      "          'shows': 1,\n",
      "          'memories': 1,\n",
      "          'brought': 1,\n",
      "          'thoughts': 1,\n",
      "          'anything': 1,\n",
      "          'drew': 1,\n",
      "          'become': 1,\n",
      "          'ive': 1,\n",
      "          'anyone': 1,\n",
      "          'use': 1,\n",
      "          'paint': 1,\n",
      "          'says': 1,\n",
      "          'nequally': 1,\n",
      "          'depictions': 1,\n",
      "          'cast': 1,\n",
      "          'normal': 1,\n",
      "          'stereotypes': 1,\n",
      "          'fire': 1,\n",
      "          'brimstone': 1,\n",
      "          'ninstead': 1,\n",
      "          'gloriously': 1,\n",
      "          'horrific': 1,\n",
      "          'scene': 1,\n",
      "          'tracker': 1,\n",
      "          'max': 1,\n",
      "          'arrive': 1,\n",
      "          'nthousands': 1,\n",
      "          'heads': 1,\n",
      "          'stuck': 1,\n",
      "          'ground': 1,\n",
      "          'bodies': 1,\n",
      "          'somewhere': 1,\n",
      "          'else': 1,\n",
      "          'nmostly': 1,\n",
      "          'dead': 1,\n",
      "          'silent': 1,\n",
      "          'quips': 1,\n",
      "          'made': 1,\n",
      "          'lighten': 1,\n",
      "          'mood': 1,\n",
      "          'truly': 1,\n",
      "          'frightening': 1,\n",
      "          'sequence': 1,\n",
      "          'nproduction': 1,\n",
      "          'eugenio': 1,\n",
      "          'zanetti': 1,\n",
      "          'nusing': 1,\n",
      "          'art': 1,\n",
      "          'technology': 1,\n",
      "          'worlds': 1,\n",
      "          'created': 1,\n",
      "          'exploration': 1,\n",
      "          'nsometimes': 1,\n",
      "          'scenes': 1,\n",
      "          'play': 1,\n",
      "          'visual': 1,\n",
      "          'impact': 1,\n",
      "          'necessary': 1,\n",
      "          'appreciate': 1,\n",
      "          'seeing': 1,\n",
      "          'ncostume': 1,\n",
      "          'yvonne': 1,\n",
      "          'blake': 1,\n",
      "          'appears': 1,\n",
      "          'incredible': 1,\n",
      "          'providing': 1,\n",
      "          'interesting': 1,\n",
      "          'costumes': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'eduardo': 1,\n",
      "          'serra': 1,\n",
      "          'luscious': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'wings': 1,\n",
      "          'dove': 1,\n",
      "          'difficult': 1,\n",
      "          'cinematographers': 1,\n",
      "          'working': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'serras': 1,\n",
      "          'entire': 1,\n",
      "          'universe': 1,\n",
      "          'generated': 1,\n",
      "          'image': 1,\n",
      "          'masterful': 1,\n",
      "          'nwriter': 1,\n",
      "          'ron': 1,\n",
      "          'bass': 1,\n",
      "          'adapting': 1,\n",
      "          'novel': 1,\n",
      "          'richard': 1,\n",
      "          'matheson': 1,\n",
      "          'provides': 1,\n",
      "          'set': 1,\n",
      "          'vague': 1,\n",
      "          'details': 1,\n",
      "          'allowing': 1,\n",
      "          'viewers': 1,\n",
      "          'think': 1,\n",
      "          'meaning': 1,\n",
      "          'puts': 1,\n",
      "          'together': 1,\n",
      "          'final': 1,\n",
      "          'example': 1,\n",
      "          'german': 1,\n",
      "          'expressionism': 1,\n",
      "          'turn': 1,\n",
      "          'portion': 1,\n",
      "          'nyour': 1,\n",
      "          'average': 1,\n",
      "          'goer': 1,\n",
      "          'likely': 1,\n",
      "          'used': 1,\n",
      "          'expressionistic': 1,\n",
      "          'techniques': 1,\n",
      "          'draw': 1,\n",
      "          'religious': 1,\n",
      "          'shouldnt': 1,\n",
      "          'take': 1,\n",
      "          'far': 1,\n",
      "          'nrobin': 1,\n",
      "          'continuously': 1,\n",
      "          'dramatic': 1,\n",
      "          'comedic': 1,\n",
      "          'roles': 1,\n",
      "          'suffering': 1,\n",
      "          'comedy': 1,\n",
      "          'perfection': 1,\n",
      "          'stuff': 1,\n",
      "          'confined': 1,\n",
      "          'effective': 1,\n",
      "          'drama': 1,\n",
      "          'strong': 1,\n",
      "          'doubtful': 1,\n",
      "          'another': 1,\n",
      "          'wouldnt': 1,\n",
      "          'surprise': 1,\n",
      "          'cop': 1,\n",
      "          'land': 1,\n",
      "          'breakout': 1,\n",
      "          'role': 1,\n",
      "          'garner': 1,\n",
      "          'needed': 1,\n",
      "          'possible': 1,\n",
      "          'academy': 1,\n",
      "          'doesnt': 1,\n",
      "          'award': 1,\n",
      "          'types': 1,\n",
      "          'ncuba': 1,\n",
      "          'better': 1,\n",
      "          'hes': 1,\n",
      "          'certainly': 1,\n",
      "          'nmax': 1,\n",
      "          'underused': 1,\n",
      "          'treat': 1,\n",
      "          'goers': 1,\n",
      "          'werner': 1,\n",
      "          'appear': 1,\n",
      "          'recognize': 1,\n",
      "          'father': 1,\n",
      "          'lost': 1,\n",
      "          'hard': 1,\n",
      "          'attracted': 1,\n",
      "          'considering': 1,\n",
      "          'thinks': 1,\n",
      "          'starving': 1,\n",
      "          'great': 1,\n",
      "          'noverall': 1,\n",
      "          'sciorras': 1,\n",
      "          'rated': 1,\n",
      "          'pg13': 1,\n",
      "          'thematic': 1,\n",
      "          'elements': 1,\n",
      "          'involving': 1,\n",
      "          'death': 1,\n",
      "          'disturbing': 1,\n",
      "          'language': 1,\n",
      "          'partial': 1,\n",
      "          'nudity': 1,\n",
      "          'aimed': 1,\n",
      "          'adult': 1,\n",
      "          'absolutely': 1,\n",
      "          'glorious': 1,\n",
      "          'slows': 1,\n",
      "          'considerably': 1,\n",
      "          'midsection': 1,\n",
      "          'immersed': 1,\n",
      "          'nby': 1,\n",
      "          'way': 1,\n",
      "          'controversy': 1,\n",
      "          'surrounded': 1,\n",
      "          'mistaken': 1,\n",
      "          'sexual': 1,\n",
      "          'term': 1,\n",
      "          'becomes': 1,\n",
      "          'wet': 1,\n",
      "          'understand': 1,\n",
      "          'actuality': 1,\n",
      "          'soliloquy': 1,\n",
      "          'hamlet': 1,\n",
      "          'let': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'martial': 10,\n",
      "          'arts': 10,\n",
      "          'nthe': 7,\n",
      "          'lee': 6,\n",
      "          'two': 5,\n",
      "          'movies': 5,\n",
      "          'skills': 4,\n",
      "          'scenes': 4,\n",
      "          'one': 3,\n",
      "          'could': 3,\n",
      "          'kung': 3,\n",
      "          'fu': 3,\n",
      "          'plot': 3,\n",
      "          'time': 3,\n",
      "          'enter': 3,\n",
      "          'dragon': 3,\n",
      "          'bruce': 3,\n",
      "          'lees': 3,\n",
      "          'island': 3,\n",
      "          'years': 3,\n",
      "          'kelly': 3,\n",
      "          'although': 3,\n",
      "          'top': 3,\n",
      "          'latter': 2,\n",
      "          'hong': 2,\n",
      "          'kong': 2,\n",
      "          'flicks': 2,\n",
      "          'probably': 2,\n",
      "          'real': 2,\n",
      "          'later': 2,\n",
      "          'appreciate': 2,\n",
      "          'like': 2,\n",
      "          'intended': 2,\n",
      "          'philosophy': 2,\n",
      "          'nit': 2,\n",
      "          'still': 2,\n",
      "          'death': 2,\n",
      "          'actor': 2,\n",
      "          'nlee': 2,\n",
      "          'shaolin': 2,\n",
      "          'monk': 2,\n",
      "          'expert': 2,\n",
      "          'remote': 2,\n",
      "          'han': 2,\n",
      "          'personal': 2,\n",
      "          'sister': 2,\n",
      "          'ago': 2,\n",
      "          'also': 2,\n",
      "          'jim': 2,\n",
      "          'black': 2,\n",
      "          'order': 2,\n",
      "          'many': 2,\n",
      "          'bond': 2,\n",
      "          'elements': 2,\n",
      "          'main': 2,\n",
      "          'hero': 2,\n",
      "          'nin': 2,\n",
      "          'even': 2,\n",
      "          'impressive': 2,\n",
      "          'actors': 2,\n",
      "          'saxon': 2,\n",
      "          'obligatory': 2,\n",
      "          'good': 2,\n",
      "          'guy': 2,\n",
      "          'nothing': 2,\n",
      "          'typical': 2,\n",
      "          'today': 2,\n",
      "          'genre': 2,\n",
      "          'movie': 2,\n",
      "          'growing': 1,\n",
      "          '1970s': 1,\n",
      "          'boys': 1,\n",
      "          'school': 1,\n",
      "          'used': 1,\n",
      "          'divide': 1,\n",
      "          'groups': 1,\n",
      "          'based': 1,\n",
      "          'action': 1,\n",
      "          'preferences': 1,\n",
      "          'first': 1,\n",
      "          'included': 1,\n",
      "          'liked': 1,\n",
      "          'featured': 1,\n",
      "          'spectacular': 1,\n",
      "          'car': 1,\n",
      "          'chases': 1,\n",
      "          'lots': 1,\n",
      "          'machinegun': 1,\n",
      "          'fire': 1,\n",
      "          'huge': 1,\n",
      "          'explosions': 1,\n",
      "          'preferred': 1,\n",
      "          'precise': 1,\n",
      "          'thought': 1,\n",
      "          'imitate': 1,\n",
      "          'stunts': 1,\n",
      "          'life': 1,\n",
      "          'ndecades': 1,\n",
      "          'refining': 1,\n",
      "          'cinematic': 1,\n",
      "          'taste': 1,\n",
      "          'began': 1,\n",
      "          'actually': 1,\n",
      "          'overexposure': 1,\n",
      "          'shootemup': 1,\n",
      "          'idiocy': 1,\n",
      "          '1980s': 1,\n",
      "          'ramboids': 1,\n",
      "          'nyes': 1,\n",
      "          'cheap': 1,\n",
      "          'predictable': 1,\n",
      "          'formulaic': 1,\n",
      "          'asked': 1,\n",
      "          'little': 1,\n",
      "          'production': 1,\n",
      "          'values': 1,\n",
      "          'aside': 1,\n",
      "          'nbut': 1,\n",
      "          'rules': 1,\n",
      "          'hands': 1,\n",
      "          'capable': 1,\n",
      "          'director': 1,\n",
      "          'become': 1,\n",
      "          'terrific': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'source': 1,\n",
      "          'relaxation': 1,\n",
      "          'best': 1,\n",
      "          'passed': 1,\n",
      "          'test': 1,\n",
      "          'managed': 1,\n",
      "          'keep': 1,\n",
      "          'cult': 1,\n",
      "          'status': 1,\n",
      "          'quarter': 1,\n",
      "          'century': 1,\n",
      "          'nmade': 1,\n",
      "          '1973': 1,\n",
      "          'joint': 1,\n",
      "          'hollywood': 1,\n",
      "          'venture': 1,\n",
      "          'bring': 1,\n",
      "          'western': 1,\n",
      "          'audience': 1,\n",
      "          'succeeded': 1,\n",
      "          'debatable': 1,\n",
      "          'whether': 1,\n",
      "          'merit': 1,\n",
      "          'unfortunate': 1,\n",
      "          'mysterious': 1,\n",
      "          'immortalised': 1,\n",
      "          'myth': 1,\n",
      "          'plays': 1,\n",
      "          'quiet': 1,\n",
      "          'nhe': 1,\n",
      "          'approached': 1,\n",
      "          'interpol': 1,\n",
      "          'official': 1,\n",
      "          'asks': 1,\n",
      "          'join': 1,\n",
      "          'triannual': 1,\n",
      "          'tournament': 1,\n",
      "          'held': 1,\n",
      "          'owned': 1,\n",
      "          'controlled': 1,\n",
      "          'renegade': 1,\n",
      "          'ninterpol': 1,\n",
      "          'suspects': 1,\n",
      "          'business': 1,\n",
      "          'cover': 1,\n",
      "          'narcotics': 1,\n",
      "          'gunrunning': 1,\n",
      "          'prostitution': 1,\n",
      "          'operations': 1,\n",
      "          'must': 1,\n",
      "          'find': 1,\n",
      "          'evidence': 1,\n",
      "          'necessary': 1,\n",
      "          'authorities': 1,\n",
      "          'intervene': 1,\n",
      "          'accepts': 1,\n",
      "          'mission': 1,\n",
      "          'reasons': 1,\n",
      "          'oharra': 1,\n",
      "          'hans': 1,\n",
      "          'brutal': 1,\n",
      "          'bodyguard': 1,\n",
      "          'responsible': 1,\n",
      "          'tragic': 1,\n",
      "          'destination': 1,\n",
      "          'colourful': 1,\n",
      "          'experts': 1,\n",
      "          'us': 1,\n",
      "          'williams': 1,\n",
      "          'played': 1,\n",
      "          'activist': 1,\n",
      "          'running': 1,\n",
      "          'racist': 1,\n",
      "          'police': 1,\n",
      "          'friend': 1,\n",
      "          'roper': 1,\n",
      "          'wants': 1,\n",
      "          'make': 1,\n",
      "          'money': 1,\n",
      "          'pay': 1,\n",
      "          'gambling': 1,\n",
      "          'debts': 1,\n",
      "          'ways': 1,\n",
      "          'influenced': 1,\n",
      "          'james': 1,\n",
      "          '007': 1,\n",
      "          'franchise': 1,\n",
      "          'would': 1,\n",
      "          'return': 1,\n",
      "          'favour': 1,\n",
      "          'using': 1,\n",
      "          'man': 1,\n",
      "          'golden': 1,\n",
      "          'gun': 1,\n",
      "          'faced': 1,\n",
      "          'powerhungry': 1,\n",
      "          'megalomaniac': 1,\n",
      "          'alone': 1,\n",
      "          'whole': 1,\n",
      "          'army': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'non': 1,\n",
      "          'hand': 1,\n",
      "          'believable': 1,\n",
      "          'deprived': 1,\n",
      "          'guns': 1,\n",
      "          'supertech': 1,\n",
      "          'gadgets': 1,\n",
      "          'rely': 1,\n",
      "          'survive': 1,\n",
      "          'extremely': 1,\n",
      "          'thin': 1,\n",
      "          'allowed': 1,\n",
      "          'internal': 1,\n",
      "          'battles': 1,\n",
      "          'natural': 1,\n",
      "          'instinct': 1,\n",
      "          'avenge': 1,\n",
      "          'antiviolent': 1,\n",
      "          'provided': 1,\n",
      "          'opportunities': 1,\n",
      "          'evaluate': 1,\n",
      "          'acting': 1,\n",
      "          'new': 1,\n",
      "          'screen': 1,\n",
      "          'presence': 1,\n",
      "          'nalthough': 1,\n",
      "          'john': 1,\n",
      "          'white': 1,\n",
      "          'share': 1,\n",
      "          'spot': 1,\n",
      "          'served': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'shame': 1,\n",
      "          'see': 1,\n",
      "          'definitely': 1,\n",
      "          'worse': 1,\n",
      "          'steal': 1,\n",
      "          'lines': 1,\n",
      "          'worst': 1,\n",
      "          'possible': 1,\n",
      "          'blaxploitation': 1,\n",
      "          'cliches': 1,\n",
      "          'sound': 1,\n",
      "          'damn': 1,\n",
      "          'nother': 1,\n",
      "          'including': 1,\n",
      "          'shih': 1,\n",
      "          'kien': 1,\n",
      "          'turns': 1,\n",
      "          'convincing': 1,\n",
      "          'bondian': 1,\n",
      "          'villain': 1,\n",
      "          'fist': 1,\n",
      "          'fodder': 1,\n",
      "          'among': 1,\n",
      "          'young': 1,\n",
      "          'jackie': 1,\n",
      "          'chan': 1,\n",
      "          'nfighting': 1,\n",
      "          '25': 1,\n",
      "          'mostly': 1,\n",
      "          'lack': 1,\n",
      "          'gore': 1,\n",
      "          'associated': 1,\n",
      "          'way': 1,\n",
      "          'realistic': 1,\n",
      "          'personally': 1,\n",
      "          'staged': 1,\n",
      "          'demanding': 1,\n",
      "          'blow': 1,\n",
      "          'incapacitate': 1,\n",
      "          'kill': 1,\n",
      "          'opponent': 1,\n",
      "          'nim': 1,\n",
      "          'fan': 1,\n",
      "          'comparing': 1,\n",
      "          'simply': 1,\n",
      "          'cant': 1,\n",
      "          'avoid': 1,\n",
      "          'difference': 1,\n",
      "          'todays': 1,\n",
      "          'fights': 1,\n",
      "          'masses': 1,\n",
      "          'bloody': 1,\n",
      "          'pulp': 1,\n",
      "          'manage': 1,\n",
      "          'get': 1,\n",
      "          'floor': 1,\n",
      "          'win': 1,\n",
      "          'end': 1,\n",
      "          'nso': 1,\n",
      "          'despite': 1,\n",
      "          'obvious': 1,\n",
      "          'flaws': 1,\n",
      "          'preclude': 1,\n",
      "          '100': 1,\n",
      "          'times': 1,\n",
      "          'incredibly': 1,\n",
      "          'entertaining': 1,\n",
      "          'piece': 1,\n",
      "          'cinema': 1,\n",
      "          'flick': 1,\n",
      "          'enjoyed': 1,\n",
      "          'dont': 1,\n",
      "          'particular': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'george': 11,\n",
      "          'life': 10,\n",
      "          'film': 10,\n",
      "          'movie': 10,\n",
      "          'time': 7,\n",
      "          'christmas': 6,\n",
      "          'nthis': 5,\n",
      "          'however': 5,\n",
      "          'nthe': 5,\n",
      "          'family': 5,\n",
      "          'much': 5,\n",
      "          'nthere': 5,\n",
      "          'wonderful': 4,\n",
      "          'save': 4,\n",
      "          'nbut': 4,\n",
      "          'sacrificing': 4,\n",
      "          'make': 4,\n",
      "          'enough': 4,\n",
      "          'little': 4,\n",
      "          'nit': 4,\n",
      "          'one': 3,\n",
      "          'perfect': 3,\n",
      "          'good': 3,\n",
      "          'greatest': 3,\n",
      "          'bailey': 3,\n",
      "          'stewart': 3,\n",
      "          'bedford': 3,\n",
      "          'trouble': 3,\n",
      "          'always': 3,\n",
      "          'angel': 3,\n",
      "          'nclarence': 3,\n",
      "          'wings': 3,\n",
      "          'sure': 3,\n",
      "          'bank': 3,\n",
      "          'money': 3,\n",
      "          'potter': 3,\n",
      "          'get': 3,\n",
      "          'especially': 3,\n",
      "          'great': 3,\n",
      "          'ni': 3,\n",
      "          'really': 3,\n",
      "          'isnt': 2,\n",
      "          'beautiful': 2,\n",
      "          'feelgood': 2,\n",
      "          'falls': 2,\n",
      "          'see': 2,\n",
      "          'clarence': 2,\n",
      "          'without': 2,\n",
      "          'true': 2,\n",
      "          'first': 2,\n",
      "          'baileys': 2,\n",
      "          'living': 2,\n",
      "          'away': 2,\n",
      "          'brother': 2,\n",
      "          'else': 2,\n",
      "          'mr': 2,\n",
      "          'barrymore': 2,\n",
      "          'would': 2,\n",
      "          'like': 2,\n",
      "          'nits': 2,\n",
      "          'feel': 2,\n",
      "          'men': 2,\n",
      "          'sex': 2,\n",
      "          'roles': 2,\n",
      "          'something': 2,\n",
      "          'ncapra': 2,\n",
      "          'humor': 2,\n",
      "          'ending': 2,\n",
      "          'sugar': 2,\n",
      "          'everything': 2,\n",
      "          'difficult': 2,\n",
      "          'watching': 2,\n",
      "          'makes': 2,\n",
      "          'delightful': 2,\n",
      "          'sense': 2,\n",
      "          'relish': 2,\n",
      "          'wife': 2,\n",
      "          'including': 2,\n",
      "          'frank': 2,\n",
      "          'nno': 2,\n",
      "          'people': 2,\n",
      "          'capras': 2,\n",
      "          'saw': 2,\n",
      "          'nthey': 2,\n",
      "          'loved': 2,\n",
      "          'flawless': 2,\n",
      "          'sweetest': 1,\n",
      "          'tales': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'natured': 1,\n",
      "          'charm': 1,\n",
      "          'performances': 1,\n",
      "          'light': 1,\n",
      "          'screen': 1,\n",
      "          'glorious': 1,\n",
      "          'results': 1,\n",
      "          'nprobably': 1,\n",
      "          'aims': 1,\n",
      "          'heart': 1,\n",
      "          'strikes': 1,\n",
      "          'golden': 1,\n",
      "          'arrow': 1,\n",
      "          'non': 1,\n",
      "          'eve': 1,\n",
      "          'prayed': 1,\n",
      "          'many': 1,\n",
      "          'small': 1,\n",
      "          'town': 1,\n",
      "          'nyou': 1,\n",
      "          'helped': 1,\n",
      "          'others': 1,\n",
      "          'needed': 1,\n",
      "          'god': 1,\n",
      "          'answers': 1,\n",
      "          'prayers': 1,\n",
      "          'sends': 1,\n",
      "          'lovable': 1,\n",
      "          'guardian': 1,\n",
      "          'travers': 1,\n",
      "          'try': 1,\n",
      "          'got': 1,\n",
      "          'problems': 1,\n",
      "          'bell': 1,\n",
      "          'rings': 1,\n",
      "          'pass': 1,\n",
      "          'case': 1,\n",
      "          'way': 1,\n",
      "          'earn': 1,\n",
      "          'magical': 1,\n",
      "          'become': 1,\n",
      "          'go': 1,\n",
      "          'cliffs': 1,\n",
      "          'notes': 1,\n",
      "          'version': 1,\n",
      "          'nwe': 1,\n",
      "          'hearing': 1,\n",
      "          'brothers': 1,\n",
      "          'college': 1,\n",
      "          'education': 1,\n",
      "          'business': 1,\n",
      "          'dream': 1,\n",
      "          'far': 1,\n",
      "          'support': 1,\n",
      "          'even': 1,\n",
      "          'happy': 1,\n",
      "          'working': 1,\n",
      "          'somewhere': 1,\n",
      "          'nwhen': 1,\n",
      "          'owns': 1,\n",
      "          'gives': 1,\n",
      "          'honeymoon': 1,\n",
      "          'sold': 1,\n",
      "          'evil': 1,\n",
      "          'wants': 1,\n",
      "          'nothing': 1,\n",
      "          'less': 1,\n",
      "          'none': 1,\n",
      "          'gets': 1,\n",
      "          'chance': 1,\n",
      "          'nuncle': 1,\n",
      "          'billy': 1,\n",
      "          'mitchell': 1,\n",
      "          'loses': 1,\n",
      "          '8': 1,\n",
      "          '000': 1,\n",
      "          'banks': 1,\n",
      "          'nwithout': 1,\n",
      "          'must': 1,\n",
      "          'close': 1,\n",
      "          'ngeorge': 1,\n",
      "          'stuck': 1,\n",
      "          'tremendous': 1,\n",
      "          'bind': 1,\n",
      "          'contemplates': 1,\n",
      "          'suicide': 1,\n",
      "          'faithful': 1,\n",
      "          'servant': 1,\n",
      "          'pick': 1,\n",
      "          'show': 1,\n",
      "          'leadin': 1,\n",
      "          'famous': 1,\n",
      "          'last': 1,\n",
      "          'scene': 1,\n",
      "          'finally': 1,\n",
      "          'sees': 1,\n",
      "          'happiness': 1,\n",
      "          'faults': 1,\n",
      "          'beginning': 1,\n",
      "          'dated': 1,\n",
      "          'details': 1,\n",
      "          'treatment': 1,\n",
      "          'women': 1,\n",
      "          'weirdly': 1,\n",
      "          'place': 1,\n",
      "          '90s': 1,\n",
      "          'revisionist': 1,\n",
      "          'look': 1,\n",
      "          'nall': 1,\n",
      "          'drink': 1,\n",
      "          'slap': 1,\n",
      "          'wives': 1,\n",
      "          'portions': 1,\n",
      "          'endearing': 1,\n",
      "          'moments': 1,\n",
      "          'puts': 1,\n",
      "          'mocking': 1,\n",
      "          '50s': 1,\n",
      "          'remarkably': 1,\n",
      "          'enjoyable': 1,\n",
      "          'story': 1,\n",
      "          'hackneyed': 1,\n",
      "          'feels': 1,\n",
      "          'well': 1,\n",
      "          'sugarish': 1,\n",
      "          'ntheres': 1,\n",
      "          'uneasy': 1,\n",
      "          'feeling': 1,\n",
      "          'sequences': 1,\n",
      "          'either': 1,\n",
      "          'helping': 1,\n",
      "          'somebody': 1,\n",
      "          'nice': 1,\n",
      "          'liking': 1,\n",
      "          'times': 1,\n",
      "          'wit': 1,\n",
      "          'jimmy': 1,\n",
      "          'middle': 1,\n",
      "          'part': 1,\n",
      "          'never': 1,\n",
      "          'boring': 1,\n",
      "          'interesting': 1,\n",
      "          'right': 1,\n",
      "          'finale': 1,\n",
      "          'beautifully': 1,\n",
      "          'done': 1,\n",
      "          'monumental': 1,\n",
      "          'cliches': 1,\n",
      "          'actors': 1,\n",
      "          'overplay': 1,\n",
      "          'perfection': 1,\n",
      "          'ndonna': 1,\n",
      "          'reed': 1,\n",
      "          'loving': 1,\n",
      "          'obeidient': 1,\n",
      "          'lionel': 1,\n",
      "          'gloriously': 1,\n",
      "          'grump': 1,\n",
      "          'neveryone': 1,\n",
      "          'magnificent': 1,\n",
      "          'bert': 1,\n",
      "          'ernie': 1,\n",
      "          'ward': 1,\n",
      "          'bond': 1,\n",
      "          'faylen': 1,\n",
      "          'general': 1,\n",
      "          'goodness': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'making': 1,\n",
      "          'nstewart': 1,\n",
      "          'king': 1,\n",
      "          'nhe': 1,\n",
      "          'sometimes': 1,\n",
      "          'awkward': 1,\n",
      "          'saying': 1,\n",
      "          'merry': 1,\n",
      "          'objects': 1,\n",
      "          'animate': 1,\n",
      "          'inanimate': 1,\n",
      "          'james': 1,\n",
      "          'hes': 1,\n",
      "          'lovably': 1,\n",
      "          'throughout': 1,\n",
      "          'nhave': 1,\n",
      "          'complained': 1,\n",
      "          'shouldnt': 1,\n",
      "          'nbetter': 1,\n",
      "          'yet': 1,\n",
      "          'phenomenal': 1,\n",
      "          'reason': 1,\n",
      "          'classics': 1,\n",
      "          'invented': 1,\n",
      "          'movies': 1,\n",
      "          'aid': 1,\n",
      "          'quest': 1,\n",
      "          'films': 1,\n",
      "          'complain': 1,\n",
      "          'reworking': 1,\n",
      "          'carol': 1,\n",
      "          'ive': 1,\n",
      "          'said': 1,\n",
      "          'admit': 1,\n",
      "          '11': 1,\n",
      "          'year': 1,\n",
      "          'old': 1,\n",
      "          'kid': 1,\n",
      "          'sister': 1,\n",
      "          'troubles': 1,\n",
      "          'nis': 1,\n",
      "          'sugarcoated': 1,\n",
      "          'nmaybe': 1,\n",
      "          'matter': 1,\n",
      "          'watched': 1,\n",
      "          'families': 1,\n",
      "          'around': 1,\n",
      "          'coffee': 1,\n",
      "          'table': 1,\n",
      "          'eggnog': 1,\n",
      "          'plate': 1,\n",
      "          'hope': 1,\n",
      "          'flaws': 1,\n",
      "          'acheivement': 1,\n",
      "          'say': 1,\n",
      "          'lot': 1,\n",
      "          'nfor': 1,\n",
      "          '121': 1,\n",
      "          '129': 1,\n",
      "          'minutes': 1,\n",
      "          'rest': 1,\n",
      "          'excused': 1,\n",
      "          'perfectly': 1,\n",
      "          'cant': 1,\n",
      "          'love': 1,\n",
      "          'digesting': 1,\n",
      "          'sitting': 1,\n",
      "          'appreciating': 1,\n",
      "          'special': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'nthe': 5,\n",
      "          'family': 4,\n",
      "          'sitcom': 3,\n",
      "          'like': 3,\n",
      "          'characters': 3,\n",
      "          'sets': 3,\n",
      "          'point': 3,\n",
      "          'essential': 3,\n",
      "          'circumcision': 2,\n",
      "          'psychic': 2,\n",
      "          'wounds': 2,\n",
      "          'parents': 2,\n",
      "          'images': 2,\n",
      "          'faster': 2,\n",
      "          'funny': 2,\n",
      "          'direction': 2,\n",
      "          'put': 2,\n",
      "          'different': 2,\n",
      "          'journey': 2,\n",
      "          'arquette': 2,\n",
      "          'tea': 2,\n",
      "          'disasters': 2,\n",
      "          'dialogue': 2,\n",
      "          'seems': 2,\n",
      "          'really': 2,\n",
      "          'find': 2,\n",
      "          'allen': 2,\n",
      "          'state': 2,\n",
      "          'opening': 1,\n",
      "          'segment': 1,\n",
      "          'something': 1,\n",
      "          'foretaste': 1,\n",
      "          'ntheres': 1,\n",
      "          'guys': 1,\n",
      "          'voice': 1,\n",
      "          'telling': 1,\n",
      "          'us': 1,\n",
      "          'tries': 1,\n",
      "          'imagine': 1,\n",
      "          'biological': 1,\n",
      "          'look': 1,\n",
      "          'screen': 1,\n",
      "          'see': 1,\n",
      "          'variety': 1,\n",
      "          'oldish': 1,\n",
      "          'men': 1,\n",
      "          'women': 1,\n",
      "          'nas': 1,\n",
      "          'imagination': 1,\n",
      "          'plays': 1,\n",
      "          'n': 1,\n",
      "          'picture': 1,\n",
      "          'motley': 1,\n",
      "          'mixandmatch': 1,\n",
      "          'shuffle': 1,\n",
      "          'unlikely': 1,\n",
      "          'marriages': 1,\n",
      "          'businesswomen': 1,\n",
      "          'bums': 1,\n",
      "          'matrons': 1,\n",
      "          'paint': 1,\n",
      "          'salesmen': 1,\n",
      "          'coming': 1,\n",
      "          'frenzy': 1,\n",
      "          'nits': 1,\n",
      "          'witty': 1,\n",
      "          'summing': 1,\n",
      "          'themes': 1,\n",
      "          'might': 1,\n",
      "          'guess': 1,\n",
      "          'yet': 1,\n",
      "          'pattern': 1,\n",
      "          'way': 1,\n",
      "          'story': 1,\n",
      "          'goes': 1,\n",
      "          'nwhat': 1,\n",
      "          'starts': 1,\n",
      "          'step': 1,\n",
      "          'fairly': 1,\n",
      "          'sensible': 1,\n",
      "          'gets': 1,\n",
      "          'taken': 1,\n",
      "          'road': 1,\n",
      "          'trip': 1,\n",
      "          'detour': 1,\n",
      "          'two': 1,\n",
      "          'finds': 1,\n",
      "          'freewheeling': 1,\n",
      "          'towards': 1,\n",
      "          'immin': 1,\n",
      "          'ent': 1,\n",
      "          'crash': 1,\n",
      "          'nthat': 1,\n",
      "          'may': 1,\n",
      "          'sound': 1,\n",
      "          'average': 1,\n",
      "          'general': 1,\n",
      "          'idea': 1,\n",
      "          'doesnt': 1,\n",
      "          'first': 1,\n",
      "          'seem': 1,\n",
      "          'wildly': 1,\n",
      "          'distant': 1,\n",
      "          'standardissue': 1,\n",
      "          'hollywood': 1,\n",
      "          'comedy': 1,\n",
      "          'man': 1,\n",
      "          'adopted': 1,\n",
      "          'child': 1,\n",
      "          'ben': 1,\n",
      "          'still': 1,\n",
      "          'er': 1,\n",
      "          'meet': 1,\n",
      "          'real': 1,\n",
      "          'along': 1,\n",
      "          'wife': 1,\n",
      "          'patricia': 1,\n",
      "          'baby': 1,\n",
      "          'pretty': 1,\n",
      "          'psychologyresearcher': 1,\n",
      "          'leoni': 1,\n",
      "          'tow': 1,\n",
      "          'nvarious': 1,\n",
      "          'mixups': 1,\n",
      "          'shenanigans': 1,\n",
      "          'oddball': 1,\n",
      "          'yup': 1,\n",
      "          'follow': 1,\n",
      "          'nbut': 1,\n",
      "          'think': 1,\n",
      "          'youve': 1,\n",
      "          'david': 1,\n",
      "          'russell': 1,\n",
      "          'made': 1,\n",
      "          'spanking': 1,\n",
      "          'monkey': 1,\n",
      "          'take': 1,\n",
      "          'another': 1,\n",
      "          'dimension': 1,\n",
      "          'dreaded': 1,\n",
      "          'tname': 1,\n",
      "          'inevitable': 1,\n",
      "          'reference': 1,\n",
      "          'drug': 1,\n",
      "          'overdose': 1,\n",
      "          'scene': 1,\n",
      "          'casting': 1,\n",
      "          'true': 1,\n",
      "          'romance': 1,\n",
      "          'footmassage': 1,\n",
      "          'master': 1,\n",
      "          'hasnt': 1,\n",
      "          'got': 1,\n",
      "          'monopoly': 1,\n",
      "          'plot': 1,\n",
      "          'twists': 1,\n",
      "          'fast': 1,\n",
      "          'irreverent': 1,\n",
      "          'lines': 1,\n",
      "          'absurdities': 1,\n",
      "          'ordinary': 1,\n",
      "          'speech': 1,\n",
      "          'nwhether': 1,\n",
      "          'oral': 1,\n",
      "          'sex': 1,\n",
      "          'carjacking': 1,\n",
      "          'beauties': 1,\n",
      "          'armpit': 1,\n",
      "          'area': 1,\n",
      "          'ronald': 1,\n",
      "          'reagan': 1,\n",
      "          'script': 1,\n",
      "          'never': 1,\n",
      "          'run': 1,\n",
      "          'hilarious': 1,\n",
      "          'invention': 1,\n",
      "          'best': 1,\n",
      "          'thing': 1,\n",
      "          'words': 1,\n",
      "          'arent': 1,\n",
      "          'punchlines': 1,\n",
      "          'great': 1,\n",
      "          'precisely': 1,\n",
      "          'theyre': 1,\n",
      "          'said': 1,\n",
      "          'character': 1,\n",
      "          'leonis': 1,\n",
      "          'neuroticallycharged': 1,\n",
      "          'psychobabbler': 1,\n",
      "          'whos': 1,\n",
      "          'able': 1,\n",
      "          'say': 1,\n",
      "          'assault': 1,\n",
      "          'understandable': 1,\n",
      "          'threatening': 1,\n",
      "          'cast': 1,\n",
      "          'excellent': 1,\n",
      "          'throughout': 1,\n",
      "          'rather': 1,\n",
      "          'singling': 1,\n",
      "          'anybody': 1,\n",
      "          'kudos': 1,\n",
      "          'due': 1,\n",
      "          'fine': 1,\n",
      "          'ensemble': 1,\n",
      "          'acting': 1,\n",
      "          'sometimes': 1,\n",
      "          'frenetically': 1,\n",
      "          'overlapping': 1,\n",
      "          'sense': 1,\n",
      "          'dozen': 1,\n",
      "          'reagents': 1,\n",
      "          'colliding': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'fission': 1,\n",
      "          'nthere': 1,\n",
      "          'elements': 1,\n",
      "          'woody': 1,\n",
      "          'mention': 1,\n",
      "          'handheld': 1,\n",
      "          'camera': 1,\n",
      "          'loose': 1,\n",
      "          'improvisational': 1,\n",
      "          'feel': 1,\n",
      "          'scenes': 1,\n",
      "          'nlike': 1,\n",
      "          'russells': 1,\n",
      "          'interests': 1,\n",
      "          'volatile': 1,\n",
      "          'sexual': 1,\n",
      "          'politics': 1,\n",
      "          'couples': 1,\n",
      "          'neurotic': 1,\n",
      "          'obsessions': 1,\n",
      "          'pare': 1,\n",
      "          'nts': 1,\n",
      "          'children': 1,\n",
      "          'everybody': 1,\n",
      "          'nstill': 1,\n",
      "          'youre': 1,\n",
      "          'expecting': 1,\n",
      "          'privileged': 1,\n",
      "          'moment': 1,\n",
      "          'revelation': 1,\n",
      "          'emotional': 1,\n",
      "          'outpouring': 1,\n",
      "          'la': 1,\n",
      "          'murphy': 1,\n",
      "          'brown': 1,\n",
      "          'frasier': 1,\n",
      "          'fillintheblankamericancomedy': 1,\n",
      "          'well': 1,\n",
      "          'wont': 1,\n",
      "          'happen': 1,\n",
      "          'expectations': 1,\n",
      "          'lead': 1,\n",
      "          'search': 1,\n",
      "          'f': 1,\n",
      "          'origins': 1,\n",
      "          'hopes': 1,\n",
      "          'selfhealing': 1,\n",
      "          'knock': 1,\n",
      "          'nif': 1,\n",
      "          'conventional': 1,\n",
      "          'structure': 1,\n",
      "          'slightly': 1,\n",
      "          'loopy': 1,\n",
      "          'catastrophic': 1,\n",
      "          'conditions': 1,\n",
      "          'rediscover': 1,\n",
      "          'lovey': 1,\n",
      "          'oneness': 1,\n",
      "          'flirting': 1,\n",
      "          'charact': 1,\n",
      "          'ers': 1,\n",
      "          'embark': 1,\n",
      "          'seek': 1,\n",
      "          'plunging': 1,\n",
      "          'weirdness': 1,\n",
      "          'dysfunctional': 1,\n",
      "          'chaos': 1,\n",
      "          'go': 1,\n",
      "          'nand': 1,\n",
      "          'suggests': 1,\n",
      "          'better': 1,\n",
      "          'learn': 1,\n",
      "          'love': 1,\n",
      "          'nsomehow': 1,\n",
      "          'perversely': 1,\n",
      "          'feelgood': 1,\n",
      "          'cinema': 1,\n",
      "          'right': 1,\n",
      "          'manic': 1,\n",
      "          'end': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 12,\n",
      "          'nthe': 5,\n",
      "          'english': 5,\n",
      "          'nosferatu': 4,\n",
      "          'dracula': 4,\n",
      "          'german': 4,\n",
      "          'herzog': 4,\n",
      "          'version': 4,\n",
      "          'one': 4,\n",
      "          'story': 4,\n",
      "          'count': 4,\n",
      "          'nthis': 3,\n",
      "          'stokers': 3,\n",
      "          'vampire': 3,\n",
      "          'still': 3,\n",
      "          'mike': 2,\n",
      "          'watson': 2,\n",
      "          'bram': 2,\n",
      "          'cinematic': 2,\n",
      "          'herzogs': 2,\n",
      "          'beautiful': 2,\n",
      "          'quality': 2,\n",
      "          'long': 2,\n",
      "          'language': 2,\n",
      "          'last': 2,\n",
      "          'video': 2,\n",
      "          'anchor': 2,\n",
      "          'bay': 2,\n",
      "          'available': 2,\n",
      "          'dialogue': 2,\n",
      "          'years': 2,\n",
      "          'harker': 2,\n",
      "          'castle': 2,\n",
      "          'creepy': 2,\n",
      "          'kinski': 2,\n",
      "          'harkers': 2,\n",
      "          'nupon': 2,\n",
      "          'adjani': 2,\n",
      "          'tale': 2,\n",
      "          'much': 2,\n",
      "          'largely': 2,\n",
      "          'simply': 2,\n",
      "          'nwhen': 2,\n",
      "          'vuh': 2,\n",
      "          'quite': 2,\n",
      "          'without': 2,\n",
      "          'music': 2,\n",
      "          'vampyre': 1,\n",
      "          'germany': 1,\n",
      "          '1979': 1,\n",
      "          'na': 1,\n",
      "          'review': 1,\n",
      "          'copyright': 1,\n",
      "          '1999': 1,\n",
      "          'extraordinary': 1,\n",
      "          'retelling': 1,\n",
      "          'filmmaker': 1,\n",
      "          'werner': 1,\n",
      "          'deserves': 1,\n",
      "          'prominent': 1,\n",
      "          'places': 1,\n",
      "          'lore': 1,\n",
      "          'ninspired': 1,\n",
      "          'f': 1,\n",
      "          'w': 1,\n",
      "          'murnaus': 1,\n",
      "          '1922': 1,\n",
      "          'silent': 1,\n",
      "          'name': 1,\n",
      "          'work': 1,\n",
      "          'exquisite': 1,\n",
      "          'bleakness': 1,\n",
      "          'oddly': 1,\n",
      "          'touching': 1,\n",
      "          'tragedy': 1,\n",
      "          'uniquely': 1,\n",
      "          'haunting': 1,\n",
      "          'lingers': 1,\n",
      "          'afterwards': 1,\n",
      "          'original': 1,\n",
      "          'fulllength': 1,\n",
      "          'versions': 1,\n",
      "          'received': 1,\n",
      "          'release': 1,\n",
      "          'u': 1,\n",
      "          'distributor': 1,\n",
      "          'entertainment': 1,\n",
      "          'gorgeous': 1,\n",
      "          'widescreen': 1,\n",
      "          'prints': 1,\n",
      "          'nuntil': 1,\n",
      "          'shortened': 1,\n",
      "          'europe': 1,\n",
      "          'nboth': 1,\n",
      "          'rereleases': 1,\n",
      "          'restore': 1,\n",
      "          'full': 1,\n",
      "          'length': 1,\n",
      "          'viewers': 1,\n",
      "          'wary': 1,\n",
      "          'due': 1,\n",
      "          'often': 1,\n",
      "          'stilted': 1,\n",
      "          'napparently': 1,\n",
      "          'coach': 1,\n",
      "          'set': 1,\n",
      "          'filming': 1,\n",
      "          'incompetent': 1,\n",
      "          'voices': 1,\n",
      "          'also': 1,\n",
      "          'seem': 1,\n",
      "          'dubbed': 1,\n",
      "          'subtitles': 1,\n",
      "          'remains': 1,\n",
      "          'definitive': 1,\n",
      "          'neveryone': 1,\n",
      "          'knows': 1,\n",
      "          'nhis': 1,\n",
      "          'bastardised': 1,\n",
      "          'brief': 1,\n",
      "          'reminder': 1,\n",
      "          'basic': 1,\n",
      "          'plot': 1,\n",
      "          'certainly': 1,\n",
      "          'wont': 1,\n",
      "          'hurt': 1,\n",
      "          'njonathan': 1,\n",
      "          'young': 1,\n",
      "          'lawyer': 1,\n",
      "          'sent': 1,\n",
      "          'gloomy': 1,\n",
      "          'transylvania': 1,\n",
      "          'business': 1,\n",
      "          'played': 1,\n",
      "          'klaus': 1,\n",
      "          'wants': 1,\n",
      "          'buy': 1,\n",
      "          'house': 1,\n",
      "          'hometown': 1,\n",
      "          'seeing': 1,\n",
      "          'photo': 1,\n",
      "          'wife': 1,\n",
      "          'radiant': 1,\n",
      "          'isabelle': 1,\n",
      "          'instantly': 1,\n",
      "          'falls': 1,\n",
      "          'love': 1,\n",
      "          'nlocking': 1,\n",
      "          'sets': 1,\n",
      "          'journey': 1,\n",
      "          'meet': 1,\n",
      "          'woman': 1,\n",
      "          'whose': 1,\n",
      "          'beauty': 1,\n",
      "          'bewitches': 1,\n",
      "          'divining': 1,\n",
      "          'identity': 1,\n",
      "          'seduces': 1,\n",
      "          'lures': 1,\n",
      "          'death': 1,\n",
      "          'morning': 1,\n",
      "          'sun': 1,\n",
      "          'rises': 1,\n",
      "          'nthat': 1,\n",
      "          'familiar': 1,\n",
      "          'millions': 1,\n",
      "          'elevated': 1,\n",
      "          'realm': 1,\n",
      "          'use': 1,\n",
      "          'term': 1,\n",
      "          'tad': 1,\n",
      "          'reluctantly': 1,\n",
      "          'art': 1,\n",
      "          'nnosferatu': 1,\n",
      "          'meditation': 1,\n",
      "          'shot': 1,\n",
      "          'blueish': 1,\n",
      "          'white': 1,\n",
      "          'filters': 1,\n",
      "          'peopled': 1,\n",
      "          'characters': 1,\n",
      "          'perform': 1,\n",
      "          'half': 1,\n",
      "          'hypnotised': 1,\n",
      "          'films': 1,\n",
      "          'surreal': 1,\n",
      "          'dreamlike': 1,\n",
      "          'utterly': 1,\n",
      "          'mesmerising': 1,\n",
      "          'nthere': 1,\n",
      "          'enjoy': 1,\n",
      "          'ill': 1,\n",
      "          'limit': 1,\n",
      "          'praise': 1,\n",
      "          'key': 1,\n",
      "          'points': 1,\n",
      "          'nholding': 1,\n",
      "          'together': 1,\n",
      "          'kinskis': 1,\n",
      "          'remarkable': 1,\n",
      "          'performance': 1,\n",
      "          'npast': 1,\n",
      "          'screen': 1,\n",
      "          'portrayals': 1,\n",
      "          'including': 1,\n",
      "          'bela': 1,\n",
      "          'lugosis': 1,\n",
      "          'famous': 1,\n",
      "          'turn': 1,\n",
      "          'dimensional': 1,\n",
      "          'tended': 1,\n",
      "          'towards': 1,\n",
      "          'camp': 1,\n",
      "          'nbut': 1,\n",
      "          'oh': 1,\n",
      "          'boy': 1,\n",
      "          'something': 1,\n",
      "          'far': 1,\n",
      "          'compelling': 1,\n",
      "          'naided': 1,\n",
      "          'startling': 1,\n",
      "          'makeup': 1,\n",
      "          'job': 1,\n",
      "          'portrays': 1,\n",
      "          'draculas': 1,\n",
      "          'vampirism': 1,\n",
      "          'pure': 1,\n",
      "          'evil': 1,\n",
      "          'sort': 1,\n",
      "          'loathsome': 1,\n",
      "          'disease': 1,\n",
      "          'man': 1,\n",
      "          'dreadfully': 1,\n",
      "          'lonely': 1,\n",
      "          'nhe': 1,\n",
      "          'lives': 1,\n",
      "          'utter': 1,\n",
      "          'solitude': 1,\n",
      "          'shunned': 1,\n",
      "          'locals': 1,\n",
      "          'hideous': 1,\n",
      "          'appearance': 1,\n",
      "          'reputation': 1,\n",
      "          'bloodlust': 1,\n",
      "          'nkinskis': 1,\n",
      "          'portrayal': 1,\n",
      "          'deeply': 1,\n",
      "          'affecting': 1,\n",
      "          'dies': 1,\n",
      "          'almost': 1,\n",
      "          'feel': 1,\n",
      "          'mans': 1,\n",
      "          'tortured': 1,\n",
      "          'soul': 1,\n",
      "          'freed': 1,\n",
      "          'nthen': 1,\n",
      "          'theres': 1,\n",
      "          'unforgettable': 1,\n",
      "          'soundtrack': 1,\n",
      "          'composed': 1,\n",
      "          'group': 1,\n",
      "          'popul': 1,\n",
      "          'nit': 1,\n",
      "          'eerily': 1,\n",
      "          'evocative': 1,\n",
      "          'impossible': 1,\n",
      "          'imagine': 1,\n",
      "          'npopul': 1,\n",
      "          'longtime': 1,\n",
      "          'collaborators': 1,\n",
      "          'play': 1,\n",
      "          'ancientsounding': 1,\n",
      "          'kind': 1,\n",
      "          'spacemusic': 1,\n",
      "          'using': 1,\n",
      "          'piano': 1,\n",
      "          'chants': 1,\n",
      "          'exotic': 1,\n",
      "          'instruments': 1,\n",
      "          'first': 1,\n",
      "          'saw': 1,\n",
      "          'ago': 1,\n",
      "          'impressed': 1,\n",
      "          'tracked': 1,\n",
      "          'bought': 1,\n",
      "          'number': 1,\n",
      "          'albums': 1,\n",
      "          'listen': 1,\n",
      "          'tantric': 1,\n",
      "          'songs': 1,\n",
      "          'taken': 1,\n",
      "          'nits': 1,\n",
      "          'testament': 1,\n",
      "          'musics': 1,\n",
      "          'depth': 1,\n",
      "          'powerful': 1,\n",
      "          'pictures': 1,\n",
      "          'album': 1,\n",
      "          'highly': 1,\n",
      "          'respected': 1,\n",
      "          'ambient': 1,\n",
      "          'world': 1,\n",
      "          'label': 1,\n",
      "          'celestial': 1,\n",
      "          'harmonies': 1,\n",
      "          'timely': 1,\n",
      "          'rerelease': 1,\n",
      "          'nafter': 1,\n",
      "          'francis': 1,\n",
      "          'ford': 1,\n",
      "          'coppolas': 1,\n",
      "          'unscary': 1,\n",
      "          'woefully': 1,\n",
      "          'overblown': 1,\n",
      "          '1992': 1,\n",
      "          'joy': 1,\n",
      "          'go': 1,\n",
      "          'back': 1,\n",
      "          'see': 1,\n",
      "          'amazing': 1,\n",
      "          'things': 1,\n",
      "          'done': 1,\n",
      "          'centuryold': 1,\n",
      "          'nto': 1,\n",
      "          'aficionados': 1,\n",
      "          'greatest': 1,\n",
      "          'ever': 1,\n",
      "          'made': 1,\n",
      "          'nwithout': 1,\n",
      "          'doubt': 1,\n",
      "          'unmistakable': 1,\n",
      "          'classic': 1,\n",
      "          'genre': 1,\n",
      "          'ndont': 1,\n",
      "          'miss': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'death': 7,\n",
      "          'movie': 6,\n",
      "          'horror': 5,\n",
      "          'nthe': 4,\n",
      "          'like': 4,\n",
      "          'one': 4,\n",
      "          'time': 4,\n",
      "          'others': 4,\n",
      "          'final': 3,\n",
      "          'destination': 3,\n",
      "          'would': 3,\n",
      "          'entertaining': 3,\n",
      "          'nthis': 3,\n",
      "          'crash': 3,\n",
      "          'leaving': 3,\n",
      "          'plane': 3,\n",
      "          'even': 2,\n",
      "          'know': 2,\n",
      "          'director': 2,\n",
      "          'wong': 2,\n",
      "          'show': 2,\n",
      "          'xfiles': 2,\n",
      "          'plot': 2,\n",
      "          'characters': 2,\n",
      "          'nit': 2,\n",
      "          'fbi': 2,\n",
      "          'agents': 2,\n",
      "          'mulder': 2,\n",
      "          'scully': 2,\n",
      "          'seen': 2,\n",
      "          'great': 2,\n",
      "          'last': 2,\n",
      "          'still': 2,\n",
      "          'bunch': 2,\n",
      "          'nwhat': 2,\n",
      "          'unique': 2,\n",
      "          'already': 2,\n",
      "          'die': 2,\n",
      "          'nalex': 2,\n",
      "          'dreams': 2,\n",
      "          'take': 2,\n",
      "          'survivors': 2,\n",
      "          'seven': 2,\n",
      "          'scenes': 2,\n",
      "          'films': 2,\n",
      "          'character': 2,\n",
      "          'named': 2,\n",
      "          'plays': 2,\n",
      "          'carter': 2,\n",
      "          'cowriters': 1,\n",
      "          'james': 1,\n",
      "          'jeffrey': 1,\n",
      "          'reddick': 1,\n",
      "          'creepy': 1,\n",
      "          'helped': 1,\n",
      "          'create': 1,\n",
      "          'hit': 1,\n",
      "          'television': 1,\n",
      "          'inevitably': 1,\n",
      "          'made': 1,\n",
      "          'connection': 1,\n",
      "          'similarities': 1,\n",
      "          'apparent': 1,\n",
      "          'inexplicable': 1,\n",
      "          'phenomenon': 1,\n",
      "          'mysterious': 1,\n",
      "          'overall': 1,\n",
      "          'dark': 1,\n",
      "          'ominous': 1,\n",
      "          'settings': 1,\n",
      "          'perfectly': 1,\n",
      "          'fitting': 1,\n",
      "          'see': 1,\n",
      "          'investigate': 1,\n",
      "          'case': 1,\n",
      "          'witness': 1,\n",
      "          'stuff': 1,\n",
      "          'weekly': 1,\n",
      "          'basis': 1,\n",
      "          'fact': 1,\n",
      "          'much': 1,\n",
      "          'welcome': 1,\n",
      "          'change': 1,\n",
      "          'bland': 1,\n",
      "          'dimensional': 1,\n",
      "          'nanother': 1,\n",
      "          'important': 1,\n",
      "          'similarity': 1,\n",
      "          'succeed': 1,\n",
      "          'thrilling': 1,\n",
      "          'accomplishment': 1,\n",
      "          'teen': 1,\n",
      "          'especially': 1,\n",
      "          'compared': 1,\n",
      "          'trash': 1,\n",
      "          'genre': 1,\n",
      "          'released': 1,\n",
      "          'couple': 1,\n",
      "          'years': 1,\n",
      "          'urban': 1,\n",
      "          'legend': 1,\n",
      "          'summer': 1,\n",
      "          'classic': 1,\n",
      "          'examples': 1,\n",
      "          'helps': 1,\n",
      "          'premise': 1,\n",
      "          'nunlike': 1,\n",
      "          'average': 1,\n",
      "          'flick': 1,\n",
      "          'invincible': 1,\n",
      "          'psycho': 1,\n",
      "          'knife': 1,\n",
      "          'chases': 1,\n",
      "          'blonde': 1,\n",
      "          'cheerleaders': 1,\n",
      "          'villain': 1,\n",
      "          'presented': 1,\n",
      "          'unusual': 1,\n",
      "          'grim': 1,\n",
      "          'reaper': 1,\n",
      "          'predestined': 1,\n",
      "          'naccording': 1,\n",
      "          'brief': 1,\n",
      "          'history': 1,\n",
      "          'lesson': 1,\n",
      "          'given': 1,\n",
      "          'film': 1,\n",
      "          'everyone': 1,\n",
      "          'meant': 1,\n",
      "          'certain': 1,\n",
      "          'people': 1,\n",
      "          '100': 1,\n",
      "          '17': 1,\n",
      "          'whatever': 1,\n",
      "          'chooses': 1,\n",
      "          'dead': 1,\n",
      "          'cant': 1,\n",
      "          'really': 1,\n",
      "          'kill': 1,\n",
      "          'way': 1,\n",
      "          'defeat': 1,\n",
      "          'cheat': 1,\n",
      "          'question': 1,\n",
      "          'dilemma': 1,\n",
      "          'faces': 1,\n",
      "          'alex': 1,\n",
      "          'group': 1,\n",
      "          'teenagers': 1,\n",
      "          'airplane': 1,\n",
      "          'class': 1,\n",
      "          'trip': 1,\n",
      "          'paris': 1,\n",
      "          'begins': 1,\n",
      "          'realize': 1,\n",
      "          'little': 1,\n",
      "          'real': 1,\n",
      "          'eventually': 1,\n",
      "          'gets': 1,\n",
      "          'six': 1,\n",
      "          'kicked': 1,\n",
      "          'right': 1,\n",
      "          'takes': 1,\n",
      "          'nshortly': 1,\n",
      "          'indeed': 1,\n",
      "          'confused': 1,\n",
      "          'feeling': 1,\n",
      "          'immortal': 1,\n",
      "          'nhowever': 1,\n",
      "          'isnt': 1,\n",
      "          'yet': 1,\n",
      "          'gradually': 1,\n",
      "          'kills': 1,\n",
      "          'currently': 1,\n",
      "          'alive': 1,\n",
      "          'frantically': 1,\n",
      "          'trying': 1,\n",
      "          'trick': 1,\n",
      "          'allows': 1,\n",
      "          'creative': 1,\n",
      "          'original': 1,\n",
      "          'nsome': 1,\n",
      "          'build': 1,\n",
      "          'perfect': 1,\n",
      "          'amount': 1,\n",
      "          'tension': 1,\n",
      "          'elaborate': 1,\n",
      "          'climax': 1,\n",
      "          'unexpected': 1,\n",
      "          'leave': 1,\n",
      "          'jaw': 1,\n",
      "          'wide': 1,\n",
      "          'open': 1,\n",
      "          'shock': 1,\n",
      "          'ncreativity': 1,\n",
      "          'originality': 1,\n",
      "          'two': 1,\n",
      "          'adjectives': 1,\n",
      "          'lacking': 1,\n",
      "          'nowadays': 1,\n",
      "          'nsure': 1,\n",
      "          'traditional': 1,\n",
      "          'share': 1,\n",
      "          'jerks': 1,\n",
      "          'outsiders': 1,\n",
      "          'ali': 1,\n",
      "          'larters': 1,\n",
      "          'particularly': 1,\n",
      "          'annoying': 1,\n",
      "          'shocks': 1,\n",
      "          'beginning': 1,\n",
      "          'end': 1,\n",
      "          'extremely': 1,\n",
      "          'nalso': 1,\n",
      "          'sense': 1,\n",
      "          'seriously': 1,\n",
      "          'nhe': 1,\n",
      "          'knows': 1,\n",
      "          'another': 1,\n",
      "          'guilty': 1,\n",
      "          'pleasure': 1,\n",
      "          'wont': 1,\n",
      "          'win': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'golden': 1,\n",
      "          'globe': 1,\n",
      "          'myriad': 1,\n",
      "          'inside': 1,\n",
      "          'jokes': 1,\n",
      "          'gags': 1,\n",
      "          'famous': 1,\n",
      "          'directors': 1,\n",
      "          'jerk': 1,\n",
      "          'creator': 1,\n",
      "          'chris': 1,\n",
      "          'song': 1,\n",
      "          'john': 1,\n",
      "          'denver': 1,\n",
      "          'died': 1,\n",
      "          'whenever': 1,\n",
      "          'near': 1,\n",
      "          'guys': 1,\n",
      "          'good': 1,\n",
      "          'making': 1,\n",
      "          'nand': 1,\n",
      "          'watching': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nit': 8,\n",
      "          'one': 6,\n",
      "          'movie': 5,\n",
      "          'seen': 5,\n",
      "          'less': 5,\n",
      "          'drifting': 4,\n",
      "          'clouds': 4,\n",
      "          'lauri': 4,\n",
      "          'ilona': 4,\n",
      "          'nthere': 4,\n",
      "          'lives': 4,\n",
      "          'nthe': 4,\n",
      "          'kaurism': 3,\n",
      "          'ki': 3,\n",
      "          'would': 3,\n",
      "          'story': 3,\n",
      "          'nhe': 3,\n",
      "          'humour': 3,\n",
      "          'people': 3,\n",
      "          'movies': 3,\n",
      "          'ntheir': 3,\n",
      "          'characters': 3,\n",
      "          'must': 3,\n",
      "          'us': 3,\n",
      "          'every': 3,\n",
      "          'ending': 3,\n",
      "          'aki': 2,\n",
      "          'might': 2,\n",
      "          'comedy': 2,\n",
      "          'sense': 2,\n",
      "          'couple': 2,\n",
      "          'capitalism': 2,\n",
      "          'loses': 2,\n",
      "          'job': 2,\n",
      "          'position': 2,\n",
      "          'restaurant': 2,\n",
      "          'nlauri': 2,\n",
      "          'years': 2,\n",
      "          'deadpan': 2,\n",
      "          'nthis': 2,\n",
      "          'rest': 2,\n",
      "          'political': 2,\n",
      "          'environment': 2,\n",
      "          'happens': 2,\n",
      "          'colour': 2,\n",
      "          'almost': 2,\n",
      "          'something': 2,\n",
      "          'money': 2,\n",
      "          'films': 2,\n",
      "          'great': 2,\n",
      "          'emotions': 2,\n",
      "          'nif': 2,\n",
      "          'brings': 2,\n",
      "          'humiliating': 2,\n",
      "          'employer': 2,\n",
      "          'give': 2,\n",
      "          'take': 1,\n",
      "          'number': 1,\n",
      "          'fill': 1,\n",
      "          'form': 1,\n",
      "          'wait': 1,\n",
      "          'turn': 1,\n",
      "          'nstarring': 1,\n",
      "          'kati': 1,\n",
      "          'outinen': 1,\n",
      "          'kari': 1,\n",
      "          'v': 1,\n",
      "          'n': 1,\n",
      "          'nen': 1,\n",
      "          'sakari': 1,\n",
      "          'kuosmanen': 1,\n",
      "          'elina': 1,\n",
      "          'salo': 1,\n",
      "          'written': 1,\n",
      "          'directed': 1,\n",
      "          'cinematography': 1,\n",
      "          'timo': 1,\n",
      "          'salminen': 1,\n",
      "          'possible': 1,\n",
      "          'call': 1,\n",
      "          'satire': 1,\n",
      "          'black': 1,\n",
      "          'imply': 1,\n",
      "          'anger': 1,\n",
      "          'vitriol': 1,\n",
      "          'energy': 1,\n",
      "          'get': 1,\n",
      "          'rage': 1,\n",
      "          'vitality': 1,\n",
      "          'gone': 1,\n",
      "          'sad': 1,\n",
      "          'slow': 1,\n",
      "          'married': 1,\n",
      "          'caught': 1,\n",
      "          'wheels': 1,\n",
      "          'grinds': 1,\n",
      "          'inexorably': 1,\n",
      "          'onward': 1,\n",
      "          'tram': 1,\n",
      "          'driver': 1,\n",
      "          'everyone': 1,\n",
      "          'drives': 1,\n",
      "          'cars': 1,\n",
      "          'nowadays': 1,\n",
      "          'nwithin': 1,\n",
      "          'months': 1,\n",
      "          'head': 1,\n",
      "          'waiter': 1,\n",
      "          'bought': 1,\n",
      "          'chain': 1,\n",
      "          'entire': 1,\n",
      "          'staff': 1,\n",
      "          'replaced': 1,\n",
      "          'na': 1,\n",
      "          'conversation': 1,\n",
      "          'early': 1,\n",
      "          'film': 1,\n",
      "          'reveals': 1,\n",
      "          'lot': 1,\n",
      "          'situation': 1,\n",
      "          'surprised': 1,\n",
      "          'buying': 1,\n",
      "          'tv': 1,\n",
      "          'greets': 1,\n",
      "          'little': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'nshe': 1,\n",
      "          'notes': 1,\n",
      "          'havent': 1,\n",
      "          'finished': 1,\n",
      "          'paying': 1,\n",
      "          'bookshelves': 1,\n",
      "          'couch': 1,\n",
      "          'yet': 1,\n",
      "          'says': 1,\n",
      "          'four': 1,\n",
      "          'payments': 1,\n",
      "          'done': 1,\n",
      "          'buy': 1,\n",
      "          'books': 1,\n",
      "          'shelves': 1,\n",
      "          'pass': 1,\n",
      "          'wasnt': 1,\n",
      "          'spoken': 1,\n",
      "          'resigned': 1,\n",
      "          'weariness': 1,\n",
      "          'sets': 1,\n",
      "          'tone': 1,\n",
      "          'idiosyncracy': 1,\n",
      "          'periphery': 1,\n",
      "          'centre': 1,\n",
      "          'frustration': 1,\n",
      "          'futility': 1,\n",
      "          'sorrow': 1,\n",
      "          'ways': 1,\n",
      "          'logic': 1,\n",
      "          'profit': 1,\n",
      "          'reduces': 1,\n",
      "          'worth': 1,\n",
      "          'equated': 1,\n",
      "          'solely': 1,\n",
      "          'earning': 1,\n",
      "          'capacity': 1,\n",
      "          'element': 1,\n",
      "          'commentary': 1,\n",
      "          'critique': 1,\n",
      "          'mechanisms': 1,\n",
      "          'stultifying': 1,\n",
      "          'social': 1,\n",
      "          'creates': 1,\n",
      "          'subsumed': 1,\n",
      "          'personal': 1,\n",
      "          'two': 1,\n",
      "          'nothing': 1,\n",
      "          'else': 1,\n",
      "          'matters': 1,\n",
      "          'live': 1,\n",
      "          'starved': 1,\n",
      "          'friendship': 1,\n",
      "          'respect': 1,\n",
      "          'culture': 1,\n",
      "          'passion': 1,\n",
      "          'nthey': 1,\n",
      "          'go': 1,\n",
      "          'walk': 1,\n",
      "          'past': 1,\n",
      "          'old': 1,\n",
      "          'posters': 1,\n",
      "          'latalante': 1,\n",
      "          'largent': 1,\n",
      "          'pointless': 1,\n",
      "          'violent': 1,\n",
      "          'unfunny': 1,\n",
      "          'house': 1,\n",
      "          'workplaces': 1,\n",
      "          'uniformly': 1,\n",
      "          'unpleasant': 1,\n",
      "          'painted': 1,\n",
      "          'upholstered': 1,\n",
      "          'lifeless': 1,\n",
      "          'colours': 1,\n",
      "          'ugly': 1,\n",
      "          'greens': 1,\n",
      "          'dull': 1,\n",
      "          'reds': 1,\n",
      "          'insipid': 1,\n",
      "          'blues': 1,\n",
      "          'full': 1,\n",
      "          'inelegantly': 1,\n",
      "          'functional': 1,\n",
      "          'objects': 1,\n",
      "          'appliances': 1,\n",
      "          'art': 1,\n",
      "          'design': 1,\n",
      "          'impeccable': 1,\n",
      "          'tawdriness': 1,\n",
      "          'director': 1,\n",
      "          'often': 1,\n",
      "          'matches': 1,\n",
      "          'clothes': 1,\n",
      "          'background': 1,\n",
      "          'andor': 1,\n",
      "          'lighting': 1,\n",
      "          'seems': 1,\n",
      "          'physically': 1,\n",
      "          'fading': 1,\n",
      "          'suggestion': 1,\n",
      "          'sexuality': 1,\n",
      "          'relationship': 1,\n",
      "          'sleep': 1,\n",
      "          'separate': 1,\n",
      "          'beds': 1,\n",
      "          'gestures': 1,\n",
      "          'affection': 1,\n",
      "          'lack': 1,\n",
      "          'heat': 1,\n",
      "          'desire': 1,\n",
      "          'bound': 1,\n",
      "          'complex': 1,\n",
      "          'desperate': 1,\n",
      "          'love': 1,\n",
      "          'downward': 1,\n",
      "          'downsized': 1,\n",
      "          'downtrodden': 1,\n",
      "          'momentum': 1,\n",
      "          'comic': 1,\n",
      "          'setback': 1,\n",
      "          'succeeds': 1,\n",
      "          'another': 1,\n",
      "          'bottoming': 1,\n",
      "          'stakes': 1,\n",
      "          'remaining': 1,\n",
      "          'spin': 1,\n",
      "          'roulette': 1,\n",
      "          'wheel': 1,\n",
      "          'tempting': 1,\n",
      "          'play': 1,\n",
      "          'laughs': 1,\n",
      "          'farce': 1,\n",
      "          'wit': 1,\n",
      "          'strength': 1,\n",
      "          'sober': 1,\n",
      "          'empathic': 1,\n",
      "          'manner': 1,\n",
      "          'observes': 1,\n",
      "          'ilonas': 1,\n",
      "          'misfortunes': 1,\n",
      "          'nirony': 1,\n",
      "          'injustice': 1,\n",
      "          'nsituations': 1,\n",
      "          'settings': 1,\n",
      "          'broad': 1,\n",
      "          'exaggeratedthis': 1,\n",
      "          'realismbut': 1,\n",
      "          'distorted': 1,\n",
      "          'authentic': 1,\n",
      "          'difficult': 1,\n",
      "          'laugh': 1,\n",
      "          'anything': 1,\n",
      "          'despite': 1,\n",
      "          'droll': 1,\n",
      "          'performances': 1,\n",
      "          'laconic': 1,\n",
      "          'thats': 1,\n",
      "          'compassion': 1,\n",
      "          'understanding': 1,\n",
      "          'manifold': 1,\n",
      "          'indignities': 1,\n",
      "          'suffered': 1,\n",
      "          'shows': 1,\n",
      "          'woman': 1,\n",
      "          'thirtyeight': 1,\n",
      "          'worked': 1,\n",
      "          'long': 1,\n",
      "          'hard': 1,\n",
      "          'win': 1,\n",
      "          'respectable': 1,\n",
      "          'forced': 1,\n",
      "          'accept': 1,\n",
      "          'dishwasher': 1,\n",
      "          'twobit': 1,\n",
      "          'man': 1,\n",
      "          'nearing': 1,\n",
      "          '50': 1,\n",
      "          'confront': 1,\n",
      "          'wifes': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'former': 1,\n",
      "          'demanding': 1,\n",
      "          'wages': 1,\n",
      "          'crap': 1,\n",
      "          'beaten': 1,\n",
      "          'unable': 1,\n",
      "          'land': 1,\n",
      "          'single': 1,\n",
      "          'punch': 1,\n",
      "          'cronies': 1,\n",
      "          'refuse': 1,\n",
      "          'nall': 1,\n",
      "          'observed': 1,\n",
      "          'keenly': 1,\n",
      "          'economy': 1,\n",
      "          'cut': 1,\n",
      "          'line': 1,\n",
      "          'dialogue': 1,\n",
      "          'judicious': 1,\n",
      "          'novelistic': 1,\n",
      "          'telling': 1,\n",
      "          'focus': 1,\n",
      "          'concentration': 1,\n",
      "          'short': 1,\n",
      "          'bear': 1,\n",
      "          'nbut': 1,\n",
      "          'gained': 1,\n",
      "          'nuance': 1,\n",
      "          'acumen': 1,\n",
      "          'rather': 1,\n",
      "          'undermined': 1,\n",
      "          'material': 1,\n",
      "          'barely': 1,\n",
      "          'accommodates': 1,\n",
      "          '96minute': 1,\n",
      "          'running': 1,\n",
      "          'length': 1,\n",
      "          'ni': 1,\n",
      "          'many': 1,\n",
      "          'far': 1,\n",
      "          'profound': 1,\n",
      "          'humane': 1,\n",
      "          'necessary': 1,\n",
      "          'filled': 1,\n",
      "          'urge': 1,\n",
      "          'watch': 1,\n",
      "          'need': 1,\n",
      "          'twice': 1,\n",
      "          'detail': 1,\n",
      "          'implication': 1,\n",
      "          'absorbed': 1,\n",
      "          'viewing': 1,\n",
      "          'large': 1,\n",
      "          'audience': 1,\n",
      "          'pitched': 1,\n",
      "          'selling': 1,\n",
      "          'point': 1,\n",
      "          'understatement': 1,\n",
      "          'restraint': 1,\n",
      "          'melancholy': 1,\n",
      "          'unremarkable': 1,\n",
      "          'best': 1,\n",
      "          'behind': 1,\n",
      "          'dreams': 1,\n",
      "          'dissipated': 1,\n",
      "          'takes': 1,\n",
      "          'effort': 1,\n",
      "          'muster': 1,\n",
      "          'pay': 1,\n",
      "          'bills': 1,\n",
      "          'make': 1,\n",
      "          'fascinating': 1,\n",
      "          'merely': 1,\n",
      "          'marketable': 1,\n",
      "          'shame': 1,\n",
      "          'precisely': 1,\n",
      "          'pays': 1,\n",
      "          'attention': 1,\n",
      "          'prefer': 1,\n",
      "          'ignore': 1,\n",
      "          'engages': 1,\n",
      "          'touches': 1,\n",
      "          'resolvessurprisingly': 1,\n",
      "          'movinglyinto': 1,\n",
      "          'resembling': 1,\n",
      "          'happy': 1,\n",
      "          'thing': 1,\n",
      "          'greater': 1,\n",
      "          'illluck': 1,\n",
      "          'governs': 1,\n",
      "          'refusal': 1,\n",
      "          'despair': 1,\n",
      "          'persistence': 1,\n",
      "          'rewarded': 1,\n",
      "          'called': 1,\n",
      "          'feelgood': 1,\n",
      "          'elsewhere': 1,\n",
      "          'differs': 1,\n",
      "          'kind': 1,\n",
      "          'endings': 1,\n",
      "          'truly': 1,\n",
      "          'earned': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'helen': 8,\n",
      "          'two': 7,\n",
      "          'paltrow': 6,\n",
      "          'doors': 6,\n",
      "          'life': 6,\n",
      "          'gwyneth': 5,\n",
      "          'nin': 5,\n",
      "          'gerry': 5,\n",
      "          'fate': 4,\n",
      "          'stories': 4,\n",
      "          'train': 4,\n",
      "          'sliding': 4,\n",
      "          'one': 4,\n",
      "          'different': 4,\n",
      "          'james': 4,\n",
      "          'british': 4,\n",
      "          'love': 3,\n",
      "          'monty': 3,\n",
      "          'american': 3,\n",
      "          'nsliding': 3,\n",
      "          'story': 3,\n",
      "          'film': 3,\n",
      "          'home': 3,\n",
      "          'early': 3,\n",
      "          'livein': 3,\n",
      "          'john': 3,\n",
      "          'doesnt': 3,\n",
      "          'takes': 3,\n",
      "          'python': 3,\n",
      "          'london': 2,\n",
      "          'gal': 2,\n",
      "          'true': 2,\n",
      "          'nthe': 2,\n",
      "          'subway': 2,\n",
      "          'meaning': 2,\n",
      "          'lover': 2,\n",
      "          'lynch': 2,\n",
      "          'path': 2,\n",
      "          'future': 2,\n",
      "          'back': 2,\n",
      "          'forth': 2,\n",
      "          'meets': 2,\n",
      "          'charming': 2,\n",
      "          'lydia': 2,\n",
      "          'new': 2,\n",
      "          'heart': 2,\n",
      "          'way': 2,\n",
      "          'fans': 2,\n",
      "          'quirky': 2,\n",
      "          'romance': 2,\n",
      "          'nwhen': 2,\n",
      "          'boyfriend': 2,\n",
      "          'shes': 2,\n",
      "          'isnt': 2,\n",
      "          'hunk': 2,\n",
      "          'hospital': 2,\n",
      "          'us': 2,\n",
      "          'characters': 2,\n",
      "          'seem': 2,\n",
      "          'scenes': 2,\n",
      "          'containing': 2,\n",
      "          'nbut': 2,\n",
      "          'slightly': 2,\n",
      "          'ingredients': 1,\n",
      "          'running': 1,\n",
      "          'joke': 1,\n",
      "          'pythons': 1,\n",
      "          'spanish': 1,\n",
      "          'inquisition': 1,\n",
      "          'nsynopsis': 1,\n",
      "          'actress': 1,\n",
      "          'dark': 1,\n",
      "          'hair': 1,\n",
      "          'playing': 1,\n",
      "          'londoner': 1,\n",
      "          'nbelieve': 1,\n",
      "          'gimmick': 1,\n",
      "          'really': 1,\n",
      "          'follows': 1,\n",
      "          'directions': 1,\n",
      "          'beginning': 1,\n",
      "          'likeable': 1,\n",
      "          'gets': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'fired': 1,\n",
      "          'advertising': 1,\n",
      "          'job': 1,\n",
      "          'nso': 1,\n",
      "          'goes': 1,\n",
      "          'station': 1,\n",
      "          'return': 1,\n",
      "          'apartment': 1,\n",
      "          'sleeping': 1,\n",
      "          'nhelen': 1,\n",
      "          'know': 1,\n",
      "          'fateful': 1,\n",
      "          'junction': 1,\n",
      "          '1': 1,\n",
      "          'enters': 1,\n",
      "          'door': 1,\n",
      "          '2': 1,\n",
      "          'stays': 1,\n",
      "          'platform': 1,\n",
      "          'another': 1,\n",
      "          'shows': 1,\n",
      "          'happens': 1,\n",
      "          'paths': 1,\n",
      "          'switching': 1,\n",
      "          'intertwined': 1,\n",
      "          'parallel': 1,\n",
      "          'talkative': 1,\n",
      "          'fan': 1,\n",
      "          'named': 1,\n",
      "          'hannah': 1,\n",
      "          'narriving': 1,\n",
      "          'discovers': 1,\n",
      "          'sex': 1,\n",
      "          'former': 1,\n",
      "          'jeanne': 1,\n",
      "          'tripplehorn': 1,\n",
      "          'nthis': 1,\n",
      "          'leads': 1,\n",
      "          'moves': 1,\n",
      "          'nhelens': 1,\n",
      "          'winsome': 1,\n",
      "          'friend': 1,\n",
      "          'helps': 1,\n",
      "          'recover': 1,\n",
      "          'broken': 1,\n",
      "          'encourages': 1,\n",
      "          'start': 1,\n",
      "          'business': 1,\n",
      "          'experiences': 1,\n",
      "          'nshe': 1,\n",
      "          'misses': 1,\n",
      "          'never': 1,\n",
      "          'get': 1,\n",
      "          'enough': 1,\n",
      "          'discover': 1,\n",
      "          'gerrys': 1,\n",
      "          'infidelity': 1,\n",
      "          'odd': 1,\n",
      "          'menial': 1,\n",
      "          'jobs': 1,\n",
      "          'faces': 1,\n",
      "          'constant': 1,\n",
      "          'sneaking': 1,\n",
      "          'suspicion': 1,\n",
      "          'right': 1,\n",
      "          'relationship': 1,\n",
      "          'nwill': 1,\n",
      "          'truth': 1,\n",
      "          'finally': 1,\n",
      "          'work': 1,\n",
      "          'number': 1,\n",
      "          'problems': 1,\n",
      "          'setbacks': 1,\n",
      "          'scenarios': 1,\n",
      "          'nopinion': 1,\n",
      "          'rejoice': 1,\n",
      "          'ye': 1,\n",
      "          'watchers': 1,\n",
      "          'flicks': 1,\n",
      "          'nat': 1,\n",
      "          'last': 1,\n",
      "          'heres': 1,\n",
      "          'proof': 1,\n",
      "          'theres': 1,\n",
      "          'still': 1,\n",
      "          'creativity': 1,\n",
      "          '1990s': 1,\n",
      "          'filmmaking': 1,\n",
      "          'refreshingly': 1,\n",
      "          'anything': 1,\n",
      "          'year': 1,\n",
      "          'nnot': 1,\n",
      "          'wellacted': 1,\n",
      "          'heartwarming': 1,\n",
      "          'also': 1,\n",
      "          'easily': 1,\n",
      "          'paltrows': 1,\n",
      "          'best': 1,\n",
      "          'recent': 1,\n",
      "          'performance': 1,\n",
      "          'screams': 1,\n",
      "          'unfaithful': 1,\n",
      "          'shagging': 1,\n",
      "          'wanker': 1,\n",
      "          'phrase': 1,\n",
      "          'better': 1,\n",
      "          'left': 1,\n",
      "          'untranslated': 1,\n",
      "          'sounds': 1,\n",
      "          'like': 1,\n",
      "          'knows': 1,\n",
      "          'talking': 1,\n",
      "          'nnor': 1,\n",
      "          'go': 1,\n",
      "          'overboard': 1,\n",
      "          'formulaic': 1,\n",
      "          'stereotypes': 1,\n",
      "          'nnobody': 1,\n",
      "          'scrambles': 1,\n",
      "          'around': 1,\n",
      "          'danger': 1,\n",
      "          'screaming': 1,\n",
      "          'find': 1,\n",
      "          'matter': 1,\n",
      "          'darling': 1,\n",
      "          'finds': 1,\n",
      "          'boat': 1,\n",
      "          'starlight': 1,\n",
      "          'take': 1,\n",
      "          'easy': 1,\n",
      "          'leap': 1,\n",
      "          'arms': 1,\n",
      "          'since': 1,\n",
      "          'supposed': 1,\n",
      "          'recovering': 1,\n",
      "          'heartache': 1,\n",
      "          'nand': 1,\n",
      "          'handsome': 1,\n",
      "          'stereotypical': 1,\n",
      "          'screen': 1,\n",
      "          'either': 1,\n",
      "          'stud': 1,\n",
      "          'snob': 1,\n",
      "          'ninstead': 1,\n",
      "          'hes': 1,\n",
      "          'nervous': 1,\n",
      "          'indecisive': 1,\n",
      "          'almost': 1,\n",
      "          'helpless': 1,\n",
      "          'nanother': 1,\n",
      "          'example': 1,\n",
      "          'protagonists': 1,\n",
      "          'lies': 1,\n",
      "          'wounded': 1,\n",
      "          'gives': 1,\n",
      "          'neither': 1,\n",
      "          'miracle': 1,\n",
      "          'maudlin': 1,\n",
      "          'tragedy': 1,\n",
      "          'surprises': 1,\n",
      "          'third': 1,\n",
      "          'variation': 1,\n",
      "          'words': 1,\n",
      "          'nonstereotyped': 1,\n",
      "          'human': 1,\n",
      "          'local': 1,\n",
      "          'nthere': 1,\n",
      "          'minor': 1,\n",
      "          'inconveniences': 1,\n",
      "          'nsince': 1,\n",
      "          'switches': 1,\n",
      "          'possible': 1,\n",
      "          'fates': 1,\n",
      "          'occasionally': 1,\n",
      "          'difficult': 1,\n",
      "          'distinguish': 1,\n",
      "          'ndistinguishing': 1,\n",
      "          'problem': 1,\n",
      "          'sports': 1,\n",
      "          'hairstyles': 1,\n",
      "          'look': 1,\n",
      "          'confusing': 1,\n",
      "          'nalso': 1,\n",
      "          'quite': 1,\n",
      "          'snappy': 1,\n",
      "          'comebacks': 1,\n",
      "          'referring': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'seinfeld': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'etc': 1,\n",
      "          'spoken': 1,\n",
      "          'forced': 1,\n",
      "          'given': 1,\n",
      "          'remaining': 1,\n",
      "          'dialogue': 1,\n",
      "          'predominantly': 1,\n",
      "          'slang': 1,\n",
      "          'npossibly': 1,\n",
      "          'attempt': 1,\n",
      "          'screenwriter': 1,\n",
      "          'balance': 1,\n",
      "          'audiences': 1,\n",
      "          'feel': 1,\n",
      "          'comfortable': 1,\n",
      "          'original': 1,\n",
      "          'happy': 1,\n",
      "          'little': 1,\n",
      "          'philosophy': 1,\n",
      "          'thrown': 1,\n",
      "          'nmonty': 1,\n",
      "          'anybody': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'flanagan': 7,\n",
      "          'sick': 5,\n",
      "          'life': 5,\n",
      "          'bob': 4,\n",
      "          'pain': 4,\n",
      "          'death': 3,\n",
      "          'sheree': 3,\n",
      "          'nthe': 3,\n",
      "          'disease': 3,\n",
      "          'acts': 3,\n",
      "          'also': 3,\n",
      "          'last': 3,\n",
      "          'supermasochist': 2,\n",
      "          'rose': 2,\n",
      "          'kirby': 2,\n",
      "          'dick': 2,\n",
      "          'film': 2,\n",
      "          'age': 2,\n",
      "          'cystic': 2,\n",
      "          'fibrosis': 2,\n",
      "          'lungs': 2,\n",
      "          'much': 2,\n",
      "          'crumb': 2,\n",
      "          'nbut': 2,\n",
      "          'man': 2,\n",
      "          'art': 2,\n",
      "          'scene': 2,\n",
      "          'humor': 2,\n",
      "          'moments': 2,\n",
      "          'cinematic': 2,\n",
      "          'nby': 1,\n",
      "          'fernando': 1,\n",
      "          'vallejo': 1,\n",
      "          'nstarring': 1,\n",
      "          'ninterviews': 1,\n",
      "          'kathe': 1,\n",
      "          'burkhart': 1,\n",
      "          'rita': 1,\n",
      "          'valencia': 1,\n",
      "          'nproduced': 1,\n",
      "          'directed': 1,\n",
      "          'nrunning': 1,\n",
      "          'time': 1,\n",
      "          '90': 1,\n",
      "          'mins': 1,\n",
      "          'nthis': 1,\n",
      "          'rated': 1,\n",
      "          'central': 1,\n",
      "          'themes': 1,\n",
      "          'love': 1,\n",
      "          'subsequent': 1,\n",
      "          'effect': 1,\n",
      "          'persons': 1,\n",
      "          'nits': 1,\n",
      "          'protagonist': 1,\n",
      "          'died': 1,\n",
      "          '52': 1,\n",
      "          'suffered': 1,\n",
      "          'mortal': 1,\n",
      "          'debilitates': 1,\n",
      "          'saturating': 1,\n",
      "          'thick': 1,\n",
      "          'coats': 1,\n",
      "          'mucus': 1,\n",
      "          'preventing': 1,\n",
      "          'normal': 1,\n",
      "          'breathing': 1,\n",
      "          'movie': 1,\n",
      "          'recouperating': 1,\n",
      "          'attempting': 1,\n",
      "          'nan': 1,\n",
      "          'audacious': 1,\n",
      "          'fabulously': 1,\n",
      "          'triumphant': 1,\n",
      "          'docudrama': 1,\n",
      "          'chronicles': 1,\n",
      "          'vicious': 1,\n",
      "          'unthinkable': 1,\n",
      "          'sadomasochism': 1,\n",
      "          'conducted': 1,\n",
      "          'mistress': 1,\n",
      "          '15': 1,\n",
      "          'years': 1,\n",
      "          'amazingly': 1,\n",
      "          'provided': 1,\n",
      "          'footage': 1,\n",
      "          'nflanagans': 1,\n",
      "          'idelogy': 1,\n",
      "          'crosses': 1,\n",
      "          'realms': 1,\n",
      "          'rebelliousness': 1,\n",
      "          'becomes': 1,\n",
      "          'transcendental': 1,\n",
      "          'similar': 1,\n",
      "          'terry': 1,\n",
      "          'zwigoffs': 1,\n",
      "          'brilliant': 1,\n",
      "          '1994': 1,\n",
      "          'explored': 1,\n",
      "          'dysfunction': 1,\n",
      "          'artist': 1,\n",
      "          'painting': 1,\n",
      "          'sympathetic': 1,\n",
      "          'portrait': 1,\n",
      "          'realistic': 1,\n",
      "          'one': 1,\n",
      "          'nboth': 1,\n",
      "          'revelled': 1,\n",
      "          'defects': 1,\n",
      "          'content': 1,\n",
      "          'enduring': 1,\n",
      "          'via': 1,\n",
      "          'inflicted': 1,\n",
      "          'young': 1,\n",
      "          'courageously': 1,\n",
      "          'defying': 1,\n",
      "          'god': 1,\n",
      "          'irish': 1,\n",
      "          'catholic': 1,\n",
      "          'turning': 1,\n",
      "          'body': 1,\n",
      "          'work': 1,\n",
      "          'unraveled': 1,\n",
      "          'museums': 1,\n",
      "          'lectures': 1,\n",
      "          'nbehold': 1,\n",
      "          'works': 1,\n",
      "          'physical': 1,\n",
      "          'namong': 1,\n",
      "          'metal': 1,\n",
      "          'ball': 1,\n",
      "          'inserted': 1,\n",
      "          'inside': 1,\n",
      "          'anus': 1,\n",
      "          'disturbing': 1,\n",
      "          'decade': 1,\n",
      "          'nailing': 1,\n",
      "          'penis': 1,\n",
      "          'board': 1,\n",
      "          'nflanagan': 1,\n",
      "          'great': 1,\n",
      "          'intelligence': 1,\n",
      "          'wit': 1,\n",
      "          'well': 1,\n",
      "          'adopting': 1,\n",
      "          'sense': 1,\n",
      "          'candidness': 1,\n",
      "          'scarcely': 1,\n",
      "          'seen': 1,\n",
      "          'modern': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nnot': 1,\n",
      "          'approach': 1,\n",
      "          'peforming': 1,\n",
      "          'burlesque': 1,\n",
      "          'front': 1,\n",
      "          'audience': 1,\n",
      "          'revitalized': 1,\n",
      "          'approachment': 1,\n",
      "          'nmost': 1,\n",
      "          'make': 1,\n",
      "          'past': 1,\n",
      "          'earlier': 1,\n",
      "          'twenties': 1,\n",
      "          'theres': 1,\n",
      "          'subplot': 1,\n",
      "          'involving': 1,\n",
      "          'female': 1,\n",
      "          'devotee': 1,\n",
      "          'knew': 1,\n",
      "          'awaiting': 1,\n",
      "          'n': 1,\n",
      "          'outstanding': 1,\n",
      "          'thing': 1,\n",
      "          'flanagans': 1,\n",
      "          'relationship': 1,\n",
      "          'nbrimming': 1,\n",
      "          'honesty': 1,\n",
      "          'sensual': 1,\n",
      "          'stimulation': 1,\n",
      "          'unapologetically': 1,\n",
      "          'sad': 1,\n",
      "          'powerful': 1,\n",
      "          'bond': 1,\n",
      "          'lifts': 1,\n",
      "          'rare': 1,\n",
      "          'high': 1,\n",
      "          'forget': 1,\n",
      "          'auditorium': 1,\n",
      "          'become': 1,\n",
      "          'part': 1,\n",
      "          'people': 1,\n",
      "          'see': 1,\n",
      "          'hero': 1,\n",
      "          'murmuring': 1,\n",
      "          'words': 1,\n",
      "          'wife': 1,\n",
      "          'hospital': 1,\n",
      "          'bed': 1,\n",
      "          'struggles': 1,\n",
      "          'raw': 1,\n",
      "          'tender': 1,\n",
      "          'hideous': 1,\n",
      "          'nit': 1,\n",
      "          'goes': 1,\n",
      "          'step': 1,\n",
      "          'beyond': 1,\n",
      "          'intimacy': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'finn': 8,\n",
      "          'expectations': 7,\n",
      "          'great': 6,\n",
      "          'quite': 6,\n",
      "          'estella': 5,\n",
      "          'films': 3,\n",
      "          'n': 3,\n",
      "          'also': 3,\n",
      "          'story': 3,\n",
      "          'romeo': 3,\n",
      "          'high': 2,\n",
      "          'release': 2,\n",
      "          'date': 2,\n",
      "          'late': 2,\n",
      "          'chances': 2,\n",
      "          'enough': 2,\n",
      "          'classic': 2,\n",
      "          'especially': 2,\n",
      "          'juliet': 2,\n",
      "          'life': 2,\n",
      "          'finns': 2,\n",
      "          'ms': 2,\n",
      "          'bancroft': 2,\n",
      "          'past': 2,\n",
      "          'never': 2,\n",
      "          'de': 2,\n",
      "          'niro': 2,\n",
      "          'new': 2,\n",
      "          'art': 2,\n",
      "          'shes': 2,\n",
      "          'thats': 2,\n",
      "          'much': 2,\n",
      "          'though': 2,\n",
      "          'nthe': 2,\n",
      "          'often': 2,\n",
      "          'understand': 2,\n",
      "          'would': 2,\n",
      "          'physical': 2,\n",
      "          'level': 2,\n",
      "          'nice': 2,\n",
      "          'end': 2,\n",
      "          'studio': 1,\n",
      "          'must': 1,\n",
      "          'pushed': 1,\n",
      "          'december': 1,\n",
      "          'january': 1,\n",
      "          'appeared': 1,\n",
      "          'last': 1,\n",
      "          'minute': 1,\n",
      "          'therefore': 1,\n",
      "          'putting': 1,\n",
      "          'academy': 1,\n",
      "          'awards': 1,\n",
      "          'time': 1,\n",
      "          '1999': 1,\n",
      "          'nits': 1,\n",
      "          'actually': 1,\n",
      "          'smart': 1,\n",
      "          'move': 1,\n",
      "          'updated': 1,\n",
      "          'take': 1,\n",
      "          'charles': 1,\n",
      "          'dickens': 1,\n",
      "          'tale': 1,\n",
      "          'isnt': 1,\n",
      "          'oscar': 1,\n",
      "          'fodder': 1,\n",
      "          'strong': 1,\n",
      "          'distinguished': 1,\n",
      "          'cinematic': 1,\n",
      "          'dumping': 1,\n",
      "          'ground': 1,\n",
      "          'usually': 1,\n",
      "          'makes': 1,\n",
      "          'first': 1,\n",
      "          'five': 1,\n",
      "          'six': 1,\n",
      "          'weeks': 1,\n",
      "          'given': 1,\n",
      "          'year': 1,\n",
      "          'demonstrates': 1,\n",
      "          'modernize': 1,\n",
      "          'right': 1,\n",
      "          'excruciatingly': 1,\n",
      "          'wretched': 1,\n",
      "          'excesses': 1,\n",
      "          'baz': 1,\n",
      "          'luhrmanns': 1,\n",
      "          'william': 1,\n",
      "          'shakespeares': 1,\n",
      "          'opens': 1,\n",
      "          'somewhere': 1,\n",
      "          '1970s': 1,\n",
      "          'florida': 1,\n",
      "          'original': 1,\n",
      "          'set': 1,\n",
      "          '19thcentury': 1,\n",
      "          'england': 1,\n",
      "          'eightyearold': 1,\n",
      "          'jeremy': 1,\n",
      "          'james': 1,\n",
      "          'kissner': 1,\n",
      "          'meets': 1,\n",
      "          'trio': 1,\n",
      "          'people': 1,\n",
      "          'profound': 1,\n",
      "          'effect': 1,\n",
      "          'future': 1,\n",
      "          'ntheres': 1,\n",
      "          'icy': 1,\n",
      "          '11yearold': 1,\n",
      "          'raquel': 1,\n",
      "          'beaudene': 1,\n",
      "          'pseudoplaymate': 1,\n",
      "          'dinsmoor': 1,\n",
      "          'anne': 1,\n",
      "          'estellas': 1,\n",
      "          'auntie': 1,\n",
      "          'whos': 1,\n",
      "          'offkilter': 1,\n",
      "          'romance': 1,\n",
      "          'took': 1,\n",
      "          'mysterious': 1,\n",
      "          'prisoner': 1,\n",
      "          'robert': 1,\n",
      "          'saves': 1,\n",
      "          'nfinn': 1,\n",
      "          'lives': 1,\n",
      "          'sisters': 1,\n",
      "          'affable': 1,\n",
      "          'boyfriend': 1,\n",
      "          'lone': 1,\n",
      "          'stars': 1,\n",
      "          'chris': 1,\n",
      "          'cooper': 1,\n",
      "          'fancies': 1,\n",
      "          'aspiring': 1,\n",
      "          'artist': 1,\n",
      "          'proves': 1,\n",
      "          'prowess': 1,\n",
      "          'whipping': 1,\n",
      "          'unusual': 1,\n",
      "          'portrait': 1,\n",
      "          'using': 1,\n",
      "          'dinsmoors': 1,\n",
      "          'lipstick': 1,\n",
      "          'eyebrow': 1,\n",
      "          'pencil': 1,\n",
      "          'wallpaper': 1,\n",
      "          'dilapidating': 1,\n",
      "          'mansion': 1,\n",
      "          'nflash': 1,\n",
      "          'forward': 1,\n",
      "          '90s': 1,\n",
      "          'brief': 1,\n",
      "          'stop': 1,\n",
      "          '80s': 1,\n",
      "          'played': 1,\n",
      "          'ethan': 1,\n",
      "          'hawke': 1,\n",
      "          'despondent': 1,\n",
      "          'strange': 1,\n",
      "          'hotandcold': 1,\n",
      "          'relationship': 1,\n",
      "          'elusive': 1,\n",
      "          'gwyneth': 1,\n",
      "          'paltrow': 1,\n",
      "          'receives': 1,\n",
      "          'bit': 1,\n",
      "          'money': 1,\n",
      "          'unknown': 1,\n",
      "          'benefactor': 1,\n",
      "          'cash': 1,\n",
      "          'send': 1,\n",
      "          'york': 1,\n",
      "          'focus': 1,\n",
      "          'career': 1,\n",
      "          'nthere': 1,\n",
      "          'seems': 1,\n",
      "          'gain': 1,\n",
      "          'everything': 1,\n",
      "          'could': 1,\n",
      "          'ever': 1,\n",
      "          'want': 1,\n",
      "          'wealth': 1,\n",
      "          'prestige': 1,\n",
      "          'place': 1,\n",
      "          'glamorous': 1,\n",
      "          'world': 1,\n",
      "          'nwhen': 1,\n",
      "          'resurfaces': 1,\n",
      "          'albeit': 1,\n",
      "          'aloof': 1,\n",
      "          'fianc': 1,\n",
      "          'hank': 1,\n",
      "          'azaria': 1,\n",
      "          'sees': 1,\n",
      "          'chance': 1,\n",
      "          'renew': 1,\n",
      "          'mutual': 1,\n",
      "          'attraction': 1,\n",
      "          'nbut': 1,\n",
      "          'ghost': 1,\n",
      "          'going': 1,\n",
      "          'paying': 1,\n",
      "          'visit': 1,\n",
      "          'ncomparisons': 1,\n",
      "          'aforementioned': 1,\n",
      "          'seem': 1,\n",
      "          'inevitable': 1,\n",
      "          'since': 1,\n",
      "          'ones': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'plop': 1,\n",
      "          'drama': 1,\n",
      "          'current': 1,\n",
      "          'setting': 1,\n",
      "          'better': 1,\n",
      "          'venture': 1,\n",
      "          'treats': 1,\n",
      "          'source': 1,\n",
      "          'evenhanded': 1,\n",
      "          'respect': 1,\n",
      "          'sure': 1,\n",
      "          'whether': 1,\n",
      "          'spoof': 1,\n",
      "          'homage': 1,\n",
      "          'movie': 1,\n",
      "          'visual': 1,\n",
      "          'banquet': 1,\n",
      "          'thanks': 1,\n",
      "          'emmanuel': 1,\n",
      "          'lubezkis': 1,\n",
      "          'sexy': 1,\n",
      "          'cinematography': 1,\n",
      "          'notably': 1,\n",
      "          'captures': 1,\n",
      "          'revisited': 1,\n",
      "          'fountain': 1,\n",
      "          'kiss': 1,\n",
      "          'two': 1,\n",
      "          'leads': 1,\n",
      "          'luscious': 1,\n",
      "          'erotic': 1,\n",
      "          'charge': 1,\n",
      "          'steamier': 1,\n",
      "          'surprisingly': 1,\n",
      "          'muted': 1,\n",
      "          'love': 1,\n",
      "          'scenes': 1,\n",
      "          'eclectic': 1,\n",
      "          'rock': 1,\n",
      "          'soundtrack': 1,\n",
      "          'compliments': 1,\n",
      "          'onscreen': 1,\n",
      "          'action': 1,\n",
      "          'beautifully': 1,\n",
      "          'songs': 1,\n",
      "          'tori': 1,\n",
      "          'amos': 1,\n",
      "          'mono': 1,\n",
      "          'duncan': 1,\n",
      "          'sheik': 1,\n",
      "          'nacting': 1,\n",
      "          'credits': 1,\n",
      "          'firstrate': 1,\n",
      "          'hiding': 1,\n",
      "          'screenplays': 1,\n",
      "          'occasional': 1,\n",
      "          'slipups': 1,\n",
      "          'nhawke': 1,\n",
      "          'sincere': 1,\n",
      "          'solid': 1,\n",
      "          'leading': 1,\n",
      "          'man': 1,\n",
      "          'something': 1,\n",
      "          'learned': 1,\n",
      "          'gattaca': 1,\n",
      "          'likeable': 1,\n",
      "          'guy': 1,\n",
      "          'npaltrows': 1,\n",
      "          'hand': 1,\n",
      "          'rather': 1,\n",
      "          'underdeveloped': 1,\n",
      "          'nwhile': 1,\n",
      "          'actress': 1,\n",
      "          'icily': 1,\n",
      "          'seductive': 1,\n",
      "          'best': 1,\n",
      "          'told': 1,\n",
      "          'character': 1,\n",
      "          'result': 1,\n",
      "          'hard': 1,\n",
      "          'appreciate': 1,\n",
      "          'beyond': 1,\n",
      "          'oh': 1,\n",
      "          'sometimes': 1,\n",
      "          'root': 1,\n",
      "          'although': 1,\n",
      "          'dont': 1,\n",
      "          'fueling': 1,\n",
      "          'fire': 1,\n",
      "          'nrobert': 1,\n",
      "          'sophisticated': 1,\n",
      "          'benevolent': 1,\n",
      "          'kind': 1,\n",
      "          'role': 1,\n",
      "          'rarely': 1,\n",
      "          'gets': 1,\n",
      "          'play': 1,\n",
      "          'acting': 1,\n",
      "          'spectrum': 1,\n",
      "          'macabre': 1,\n",
      "          'throaty': 1,\n",
      "          'delight': 1,\n",
      "          'mambos': 1,\n",
      "          'sucks': 1,\n",
      "          'cigarettes': 1,\n",
      "          'eerie': 1,\n",
      "          'enthusiasm': 1,\n",
      "          'make': 1,\n",
      "          'norma': 1,\n",
      "          'desmond': 1,\n",
      "          'jealous': 1,\n",
      "          'nalfonso': 1,\n",
      "          'cuarons': 1,\n",
      "          'visually': 1,\n",
      "          'elegant': 1,\n",
      "          'direction': 1,\n",
      "          'helps': 1,\n",
      "          'distract': 1,\n",
      "          'dry': 1,\n",
      "          'moments': 1,\n",
      "          'pop': 1,\n",
      "          'frequently': 1,\n",
      "          'around': 1,\n",
      "          'movies': 1,\n",
      "          'climax': 1,\n",
      "          'nanother': 1,\n",
      "          'problem': 1,\n",
      "          'predictability': 1,\n",
      "          'guess': 1,\n",
      "          'way': 1,\n",
      "          'plot': 1,\n",
      "          'even': 1,\n",
      "          'arent': 1,\n",
      "          'familiar': 1,\n",
      "          'ndespite': 1,\n",
      "          'script': 1,\n",
      "          'flaws': 1,\n",
      "          'undeniably': 1,\n",
      "          'romantic': 1,\n",
      "          'without': 1,\n",
      "          'corny': 1,\n",
      "          'gloppy': 1,\n",
      "          'nand': 1,\n",
      "          'frankly': 1,\n",
      "          'see': 1,\n",
      "          'film': 1,\n",
      "          'embraces': 1,\n",
      "          'softened': 1,\n",
      "          'sensuality': 1,\n",
      "          'explicit': 1,\n",
      "          'sexuality': 1,\n",
      "          'nperhaps': 1,\n",
      "          'renovated': 1,\n",
      "          'awfully': 1,\n",
      "          'close': 1,\n",
      "          'valentines': 1,\n",
      "          'day': 1,\n",
      "          'helping': 1,\n",
      "          'seemingly': 1,\n",
      "          'average': 1,\n",
      "          'box': 1,\n",
      "          'office': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'bond': 11,\n",
      "          'film': 7,\n",
      "          'action': 5,\n",
      "          'nthe': 5,\n",
      "          'theres': 4,\n",
      "          'james': 4,\n",
      "          'films': 4,\n",
      "          'way': 4,\n",
      "          'carver': 4,\n",
      "          'kind': 3,\n",
      "          'like': 3,\n",
      "          'works': 3,\n",
      "          'story': 3,\n",
      "          '8': 2,\n",
      "          'matt': 2,\n",
      "          'using': 2,\n",
      "          'ever': 2,\n",
      "          'cliches': 2,\n",
      "          'tomorrow': 2,\n",
      "          'never': 2,\n",
      "          'dies': 2,\n",
      "          'sequences': 2,\n",
      "          'always': 2,\n",
      "          'make': 2,\n",
      "          'nwhen': 2,\n",
      "          'come': 2,\n",
      "          'nthis': 2,\n",
      "          'could': 2,\n",
      "          'take': 2,\n",
      "          'scene': 2,\n",
      "          'chinese': 2,\n",
      "          'seems': 2,\n",
      "          'going': 2,\n",
      "          'brosnon': 2,\n",
      "          'escape': 2,\n",
      "          'jet': 2,\n",
      "          'tries': 2,\n",
      "          'get': 2,\n",
      "          'villain': 2,\n",
      "          'ability': 2,\n",
      "          'create': 2,\n",
      "          'yet': 2,\n",
      "          'perfect': 2,\n",
      "          'media': 2,\n",
      "          'plot': 2,\n",
      "          'two': 2,\n",
      "          'run': 2,\n",
      "          'yeoh': 2,\n",
      "          'seen': 1,\n",
      "          'december': 1,\n",
      "          '28': 1,\n",
      "          '1997': 1,\n",
      "          '45': 1,\n",
      "          'p': 1,\n",
      "          'crossgates': 1,\n",
      "          'mall': 1,\n",
      "          'cinema': 1,\n",
      "          '18': 1,\n",
      "          'guilderland': 1,\n",
      "          'ny': 1,\n",
      "          'theater': 1,\n",
      "          'perreault': 1,\n",
      "          'sister': 1,\n",
      "          'jena': 1,\n",
      "          'free': 1,\n",
      "          'paid': 1,\n",
      "          'prepaid': 1,\n",
      "          'passes': 1,\n",
      "          'nif': 1,\n",
      "          'exception': 1,\n",
      "          'perils': 1,\n",
      "          'excessive': 1,\n",
      "          'non': 1,\n",
      "          'stop': 1,\n",
      "          'nand': 1,\n",
      "          'proves': 1,\n",
      "          'pushing': 1,\n",
      "          'extreme': 1,\n",
      "          'nopening': 1,\n",
      "          'almost': 1,\n",
      "          'break': 1,\n",
      "          'done': 1,\n",
      "          'properly': 1,\n",
      "          'actually': 1,\n",
      "          'exciting': 1,\n",
      "          'foreshadow': 1,\n",
      "          'things': 1,\n",
      "          'starts': 1,\n",
      "          'right': 1,\n",
      "          'foot': 1,\n",
      "          'establishing': 1,\n",
      "          'atmosphere': 1,\n",
      "          'found': 1,\n",
      "          'movie': 1,\n",
      "          'sense': 1,\n",
      "          'selfaware': 1,\n",
      "          'enclosed': 1,\n",
      "          'universe': 1,\n",
      "          'movies': 1,\n",
      "          'place': 1,\n",
      "          'nfirst': 1,\n",
      "          'hightech': 1,\n",
      "          'slightly': 1,\n",
      "          'complicated': 1,\n",
      "          'involving': 1,\n",
      "          'british': 1,\n",
      "          'warship': 1,\n",
      "          'crossing': 1,\n",
      "          'unfriendly': 1,\n",
      "          'waters': 1,\n",
      "          'ntheres': 1,\n",
      "          'definite': 1,\n",
      "          'tension': 1,\n",
      "          'unknown': 1,\n",
      "          'certainly': 1,\n",
      "          'hostile': 1,\n",
      "          'third': 1,\n",
      "          'party': 1,\n",
      "          'involved': 1,\n",
      "          'manipulating': 1,\n",
      "          'sides': 1,\n",
      "          'ends': 1,\n",
      "          'tragedy': 1,\n",
      "          'clear': 1,\n",
      "          'powerful': 1,\n",
      "          'conspiracy': 1,\n",
      "          'else': 1,\n",
      "          'call': 1,\n",
      "          'case': 1,\n",
      "          'uses': 1,\n",
      "          'good': 1,\n",
      "          'judgment': 1,\n",
      "          'introduces': 1,\n",
      "          'us': 1,\n",
      "          'nas': 1,\n",
      "          'enemy': 1,\n",
      "          'portrayed': 1,\n",
      "          'evil': 1,\n",
      "          'mysterious': 1,\n",
      "          'clearly': 1,\n",
      "          'obviously': 1,\n",
      "          'depicted': 1,\n",
      "          'outandout': 1,\n",
      "          'hero': 1,\n",
      "          'nhe': 1,\n",
      "          'singlehandedly': 1,\n",
      "          'takes': 1,\n",
      "          'small': 1,\n",
      "          'army': 1,\n",
      "          'terrorists': 1,\n",
      "          'must': 1,\n",
      "          'nick': 1,\n",
      "          'time': 1,\n",
      "          'flying': 1,\n",
      "          'away': 1,\n",
      "          'fighter': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'copilot': 1,\n",
      "          'strangle': 1,\n",
      "          'terrorist': 1,\n",
      "          'another': 1,\n",
      "          'shoot': 1,\n",
      "          'might': 1,\n",
      "          'sound': 1,\n",
      "          'notorious': 1,\n",
      "          'knows': 1,\n",
      "          'attention': 1,\n",
      "          'quickly': 1,\n",
      "          'nits': 1,\n",
      "          'payoff': 1,\n",
      "          'obvious': 1,\n",
      "          'instead': 1,\n",
      "          'processes': 1,\n",
      "          'top': 1,\n",
      "          'apologizing': 1,\n",
      "          'creating': 1,\n",
      "          'witty': 1,\n",
      "          'hysterical': 1,\n",
      "          'comedy': 1,\n",
      "          'nit': 1,\n",
      "          'less': 1,\n",
      "          'emphasis': 1,\n",
      "          'placed': 1,\n",
      "          'villains': 1,\n",
      "          'thrillers': 1,\n",
      "          'anymore': 1,\n",
      "          'political': 1,\n",
      "          'correctness': 1,\n",
      "          'plain': 1,\n",
      "          'coppingout': 1,\n",
      "          'behalf': 1,\n",
      "          'filmmakers': 1,\n",
      "          'even': 1,\n",
      "          'term': 1,\n",
      "          'sounds': 1,\n",
      "          'passe': 1,\n",
      "          'nwhat': 1,\n",
      "          'deserves': 1,\n",
      "          'kudos': 1,\n",
      "          'heinous': 1,\n",
      "          'making': 1,\n",
      "          'seem': 1,\n",
      "          'completely': 1,\n",
      "          'plausible': 1,\n",
      "          'njonathon': 1,\n",
      "          'pryce': 1,\n",
      "          'delivers': 1,\n",
      "          'performance': 1,\n",
      "          'arrogant': 1,\n",
      "          'cunning': 1,\n",
      "          'elliot': 1,\n",
      "          'mogul': 1,\n",
      "          'whose': 1,\n",
      "          'goal': 1,\n",
      "          'world': 1,\n",
      "          'massive': 1,\n",
      "          'empire': 1,\n",
      "          'nuclear': 1,\n",
      "          'weapons': 1,\n",
      "          'nthrough': 1,\n",
      "          'interesting': 1,\n",
      "          'detective': 1,\n",
      "          'work': 1,\n",
      "          'english': 1,\n",
      "          'ministry': 1,\n",
      "          'defense': 1,\n",
      "          'believe': 1,\n",
      "          'behind': 1,\n",
      "          'trouble': 1,\n",
      "          'brewing': 1,\n",
      "          'southern': 1,\n",
      "          'asian': 1,\n",
      "          'seas': 1,\n",
      "          'accurately': 1,\n",
      "          'cover': 1,\n",
      "          'news': 1,\n",
      "          'nnot': 1,\n",
      "          'original': 1,\n",
      "          'idea': 1,\n",
      "          'conflict': 1,\n",
      "          'one': 1,\n",
      "          'carry': 1,\n",
      "          'reality': 1,\n",
      "          'nsurprisingly': 1,\n",
      "          'detailed': 1,\n",
      "          'allows': 1,\n",
      "          'specific': 1,\n",
      "          'become': 1,\n",
      "          'hook': 1,\n",
      "          'course': 1,\n",
      "          'cool': 1,\n",
      "          'gadgets': 1,\n",
      "          'plenty': 1,\n",
      "          'goes': 1,\n",
      "          'investigate': 1,\n",
      "          'finds': 1,\n",
      "          'jam': 1,\n",
      "          'along': 1,\n",
      "          'much': 1,\n",
      "          'concentrates': 1,\n",
      "          'individual': 1,\n",
      "          'conflicts': 1,\n",
      "          'general': 1,\n",
      "          'nsomehow': 1,\n",
      "          'agent': 1,\n",
      "          'wai': 1,\n",
      "          'lin': 1,\n",
      "          'bumps': 1,\n",
      "          'many': 1,\n",
      "          'times': 1,\n",
      "          'find': 1,\n",
      "          'working': 1,\n",
      "          'together': 1,\n",
      "          'chemistry': 1,\n",
      "          'rigid': 1,\n",
      "          'also': 1,\n",
      "          'spite': 1,\n",
      "          'constantly': 1,\n",
      "          'goons': 1,\n",
      "          'manages': 1,\n",
      "          'balance': 1,\n",
      "          'stunts': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'clever': 1,\n",
      "          'nalthough': 1,\n",
      "          'far': 1,\n",
      "          'quite': 1,\n",
      "          'impressive': 1,\n",
      "          'terms': 1,\n",
      "          'cliche': 1,\n",
      "          'cartoony': 1,\n",
      "          'plausibility': 1,\n",
      "          'issue': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'war': 6,\n",
      "          'nthe': 5,\n",
      "          'movie': 5,\n",
      "          'one': 3,\n",
      "          'nbut': 3,\n",
      "          'thin': 3,\n",
      "          'red': 3,\n",
      "          'line': 3,\n",
      "          'american': 3,\n",
      "          'james': 2,\n",
      "          'jones': 2,\n",
      "          'number': 2,\n",
      "          'world': 2,\n",
      "          'ii': 2,\n",
      "          'perhaps': 2,\n",
      "          'novel': 2,\n",
      "          'masterpiece': 2,\n",
      "          'malick': 2,\n",
      "          'cast': 2,\n",
      "          'characters': 2,\n",
      "          'soldier': 2,\n",
      "          'command': 2,\n",
      "          'plays': 2,\n",
      "          'perspective': 2,\n",
      "          'issues': 2,\n",
      "          'stake': 2,\n",
      "          'want': 2,\n",
      "          'win': 2,\n",
      "          'hours': 2,\n",
      "          'end': 2,\n",
      "          'major': 1,\n",
      "          'novelists': 1,\n",
      "          'middle': 1,\n",
      "          'twentieth': 1,\n",
      "          'century': 1,\n",
      "          'written': 1,\n",
      "          'fictional': 1,\n",
      "          'works': 1,\n",
      "          'effects': 1,\n",
      "          'individual': 1,\n",
      "          'na': 1,\n",
      "          'veteran': 1,\n",
      "          'witness': 1,\n",
      "          'pearl': 1,\n",
      "          'harbor': 1,\n",
      "          'bombings': 1,\n",
      "          'novels': 1,\n",
      "          'grounded': 1,\n",
      "          'realism': 1,\n",
      "          'poetic': 1,\n",
      "          'nature': 1,\n",
      "          'nthey': 1,\n",
      "          'reminiscent': 1,\n",
      "          'stephen': 1,\n",
      "          'crane': 1,\n",
      "          'blunt': 1,\n",
      "          'eloquence': 1,\n",
      "          'trait': 1,\n",
      "          'lends': 1,\n",
      "          'razorsharp': 1,\n",
      "          'focus': 1,\n",
      "          'none': 1,\n",
      "          'matches': 1,\n",
      "          'scope': 1,\n",
      "          'autobiographical': 1,\n",
      "          'cinematic': 1,\n",
      "          'director': 1,\n",
      "          'terrence': 1,\n",
      "          'books': 1,\n",
      "          'principal': 1,\n",
      "          'thirty': 1,\n",
      "          'trimmed': 1,\n",
      "          'rendition': 1,\n",
      "          'still': 1,\n",
      "          'retains': 1,\n",
      "          'endearing': 1,\n",
      "          'value': 1,\n",
      "          'neach': 1,\n",
      "          'roles': 1,\n",
      "          'everyman': 1,\n",
      "          'quality': 1,\n",
      "          'emphasizing': 1,\n",
      "          'examination': 1,\n",
      "          'ntheres': 1,\n",
      "          'definitive': 1,\n",
      "          'chain': 1,\n",
      "          'present': 1,\n",
      "          'also': 1,\n",
      "          'motivations': 1,\n",
      "          'importantly': 1,\n",
      "          'intrinsic': 1,\n",
      "          'dynamic': 1,\n",
      "          'effective': 1,\n",
      "          'voiceover': 1,\n",
      "          'used': 1,\n",
      "          'nmalick': 1,\n",
      "          'several': 1,\n",
      "          'relating': 1,\n",
      "          'thoughts': 1,\n",
      "          'giving': 1,\n",
      "          'viewer': 1,\n",
      "          'greater': 1,\n",
      "          'many': 1,\n",
      "          'ntold': 1,\n",
      "          'limited': 1,\n",
      "          'thirdperson': 1,\n",
      "          'opposed': 1,\n",
      "          'topdown': 1,\n",
      "          'omniscient': 1,\n",
      "          'view': 1,\n",
      "          'entails': 1,\n",
      "          'struggle': 1,\n",
      "          'infantry': 1,\n",
      "          'company': 1,\n",
      "          'cforcharlie': 1,\n",
      "          'take': 1,\n",
      "          'hill': 1,\n",
      "          'conflict': 1,\n",
      "          'guadalcanal': 1,\n",
      "          'south': 1,\n",
      "          'pacific': 1,\n",
      "          'island': 1,\n",
      "          'seen': 1,\n",
      "          'top': 1,\n",
      "          'brass': 1,\n",
      "          'key': 1,\n",
      "          'position': 1,\n",
      "          'armed': 1,\n",
      "          'forces': 1,\n",
      "          'hold': 1,\n",
      "          'nand': 1,\n",
      "          'nin': 1,\n",
      "          'excellent': 1,\n",
      "          'performance': 1,\n",
      "          'nick': 1,\n",
      "          'nolte': 1,\n",
      "          'cforcharlies': 1,\n",
      "          'commanding': 1,\n",
      "          'officer': 1,\n",
      "          'lt': 1,\n",
      "          'col': 1,\n",
      "          'gordon': 1,\n",
      "          'tall': 1,\n",
      "          'nhes': 1,\n",
      "          'aging': 1,\n",
      "          'embodies': 1,\n",
      "          'winatallcosts': 1,\n",
      "          'mentality': 1,\n",
      "          'impress': 1,\n",
      "          'superior': 1,\n",
      "          'john': 1,\n",
      "          'travolta': 1,\n",
      "          'questionable': 1,\n",
      "          'cameo': 1,\n",
      "          'nthis': 1,\n",
      "          'philosophy': 1,\n",
      "          'opposite': 1,\n",
      "          'captain': 1,\n",
      "          'bugger': 1,\n",
      "          'staros': 1,\n",
      "          'elias': 1,\n",
      "          'koteas': 1,\n",
      "          'dearly': 1,\n",
      "          'values': 1,\n",
      "          'life': 1,\n",
      "          'every': 1,\n",
      "          'men': 1,\n",
      "          'nat': 1,\n",
      "          'front': 1,\n",
      "          'privates': 1,\n",
      "          'corporals': 1,\n",
      "          'adrien': 1,\n",
      "          'brody': 1,\n",
      "          'caviezel': 1,\n",
      "          'ben': 1,\n",
      "          'chaplin': 1,\n",
      "          'et': 1,\n",
      "          'al': 1,\n",
      "          'lead': 1,\n",
      "          '1st': 1,\n",
      "          'sgt': 1,\n",
      "          'nwelsh': 1,\n",
      "          'sean': 1,\n",
      "          'penn': 1,\n",
      "          'must': 1,\n",
      "          'actually': 1,\n",
      "          'execute': 1,\n",
      "          'suicide': 1,\n",
      "          'orders': 1,\n",
      "          'handed': 1,\n",
      "          'filled': 1,\n",
      "          'intense': 1,\n",
      "          'visual': 1,\n",
      "          'poetry': 1,\n",
      "          'nearly': 1,\n",
      "          'three': 1,\n",
      "          'long': 1,\n",
      "          'nalthough': 1,\n",
      "          'interest': 1,\n",
      "          'level': 1,\n",
      "          'high': 1,\n",
      "          'throughout': 1,\n",
      "          'first': 1,\n",
      "          'two': 1,\n",
      "          'climax': 1,\n",
      "          'comes': 1,\n",
      "          'fortyfive': 1,\n",
      "          'minutes': 1,\n",
      "          'goes': 1,\n",
      "          'without': 1,\n",
      "          'saying': 1,\n",
      "          'drags': 1,\n",
      "          'back': 1,\n",
      "          'doubtless': 1,\n",
      "          'compared': 1,\n",
      "          '1998s': 1,\n",
      "          'saving': 1,\n",
      "          'private': 1,\n",
      "          'ryan': 1,\n",
      "          'countless': 1,\n",
      "          'times': 1,\n",
      "          'belittle': 1,\n",
      "          'films': 1,\n",
      "          'although': 1,\n",
      "          'similarities': 1,\n",
      "          'abound': 1,\n",
      "          'differences': 1,\n",
      "          'ndirector': 1,\n",
      "          'story': 1,\n",
      "          'tell': 1,\n",
      "          'interested': 1,\n",
      "          'listening': 1,\n",
      "          'outstanding': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'nthe': 6,\n",
      "          'jeanne': 5,\n",
      "          'time': 4,\n",
      "          'nand': 4,\n",
      "          'nothing': 4,\n",
      "          'life': 3,\n",
      "          'nin': 3,\n",
      "          'lost': 3,\n",
      "          'besson': 3,\n",
      "          'girl': 3,\n",
      "          'france': 3,\n",
      "          'nhe': 3,\n",
      "          'god': 3,\n",
      "          'english': 3,\n",
      "          'malcovich': 3,\n",
      "          'characters': 3,\n",
      "          'part': 3,\n",
      "          'messenger': 3,\n",
      "          'darc': 2,\n",
      "          'history': 2,\n",
      "          'story': 2,\n",
      "          'nshe': 2,\n",
      "          'saint': 2,\n",
      "          'peasant': 2,\n",
      "          'stake': 2,\n",
      "          'tries': 2,\n",
      "          'blood': 2,\n",
      "          'support': 2,\n",
      "          'age': 2,\n",
      "          'jovovich': 2,\n",
      "          'jeannes': 2,\n",
      "          'starts': 2,\n",
      "          'army': 2,\n",
      "          'wise': 2,\n",
      "          'dunaway': 2,\n",
      "          'john': 2,\n",
      "          'grand': 2,\n",
      "          'battlefield': 2,\n",
      "          'sequences': 2,\n",
      "          'occasionally': 2,\n",
      "          'dreamy': 2,\n",
      "          'adrenaline': 2,\n",
      "          'pumping': 2,\n",
      "          'nbut': 2,\n",
      "          'although': 2,\n",
      "          'small': 2,\n",
      "          'confused': 2,\n",
      "          'sense': 2,\n",
      "          'end': 2,\n",
      "          'nthere': 2,\n",
      "          'brave': 2,\n",
      "          'nit': 2,\n",
      "          'energetic': 1,\n",
      "          'visually': 1,\n",
      "          'stunning': 1,\n",
      "          'intellectually': 1,\n",
      "          'hollow': 1,\n",
      "          'recreation': 1,\n",
      "          'mysterious': 1,\n",
      "          'ocean': 1,\n",
      "          'mystery': 1,\n",
      "          'controversy': 1,\n",
      "          'creates': 1,\n",
      "          'perfect': 1,\n",
      "          'launching': 1,\n",
      "          'pad': 1,\n",
      "          'talented': 1,\n",
      "          'creative': 1,\n",
      "          'directors': 1,\n",
      "          'basically': 1,\n",
      "          'alter': 1,\n",
      "          'wish': 1,\n",
      "          'came': 1,\n",
      "          'people': 1,\n",
      "          'desperately': 1,\n",
      "          'needed': 1,\n",
      "          'na': 1,\n",
      "          'hero': 1,\n",
      "          'could': 1,\n",
      "          'rescue': 1,\n",
      "          'misery': 1,\n",
      "          'deliver': 1,\n",
      "          'peace': 1,\n",
      "          'happiness': 1,\n",
      "          'ndirectorwriter': 1,\n",
      "          'luc': 1,\n",
      "          'nikita': 1,\n",
      "          'leon': 1,\n",
      "          'portrays': 1,\n",
      "          'version': 1,\n",
      "          'commanded': 1,\n",
      "          'armies': 1,\n",
      "          'burned': 1,\n",
      "          'witchcraft': 1,\n",
      "          'nbesson': 1,\n",
      "          'recreate': 1,\n",
      "          'person': 1,\n",
      "          'behind': 1,\n",
      "          'legend': 1,\n",
      "          'show': 1,\n",
      "          'villain': 1,\n",
      "          'shows': 1,\n",
      "          'human': 1,\n",
      "          'almost': 1,\n",
      "          'pouring': 1,\n",
      "          'sky': 1,\n",
      "          'air': 1,\n",
      "          'smelled': 1,\n",
      "          'rotten': 1,\n",
      "          'flesh': 1,\n",
      "          'hard': 1,\n",
      "          'keep': 1,\n",
      "          'sanity': 1,\n",
      "          'hope': 1,\n",
      "          'nat': 1,\n",
      "          '13': 1,\n",
      "          'milla': 1,\n",
      "          'watches': 1,\n",
      "          'sister': 1,\n",
      "          'murdered': 1,\n",
      "          'raped': 1,\n",
      "          'soldiers': 1,\n",
      "          'nthis': 1,\n",
      "          'terrible': 1,\n",
      "          'event': 1,\n",
      "          'makes': 1,\n",
      "          'lasting': 1,\n",
      "          'impact': 1,\n",
      "          'mind': 1,\n",
      "          'ngod': 1,\n",
      "          'longer': 1,\n",
      "          'become': 1,\n",
      "          'obsession': 1,\n",
      "          'seeing': 1,\n",
      "          'visions': 1,\n",
      "          'signs': 1,\n",
      "          'command': 1,\n",
      "          'raise': 1,\n",
      "          'free': 1,\n",
      "          'siege': 1,\n",
      "          'tyranny': 1,\n",
      "          'nwith': 1,\n",
      "          'help': 1,\n",
      "          'yolande': 1,\n",
      "          'daragon': 1,\n",
      "          'faye': 1,\n",
      "          'charles': 1,\n",
      "          'vii': 1,\n",
      "          'whose': 1,\n",
      "          'royal': 1,\n",
      "          'ambitions': 1,\n",
      "          'raises': 1,\n",
      "          'marches': 1,\n",
      "          'towards': 1,\n",
      "          'walls': 1,\n",
      "          'nafter': 1,\n",
      "          'stays': 1,\n",
      "          'mostly': 1,\n",
      "          'demonstrates': 1,\n",
      "          'ability': 1,\n",
      "          'direct': 1,\n",
      "          'amazing': 1,\n",
      "          'action': 1,\n",
      "          'resorting': 1,\n",
      "          'calmer': 1,\n",
      "          'tempo': 1,\n",
      "          'movie': 1,\n",
      "          'filled': 1,\n",
      "          'symbolic': 1,\n",
      "          'images': 1,\n",
      "          'pure': 1,\n",
      "          'artistic': 1,\n",
      "          'craftsmanship': 1,\n",
      "          'create': 1,\n",
      "          'surreal': 1,\n",
      "          'paranoiac': 1,\n",
      "          'atmosphere': 1,\n",
      "          'space': 1,\n",
      "          'hysterically': 1,\n",
      "          'jumping': 1,\n",
      "          'back': 1,\n",
      "          'forth': 1,\n",
      "          'thoughts': 1,\n",
      "          'imagination': 1,\n",
      "          'conscience': 1,\n",
      "          'nbessons': 1,\n",
      "          'visual': 1,\n",
      "          'style': 1,\n",
      "          'permits': 1,\n",
      "          'audience': 1,\n",
      "          'enter': 1,\n",
      "          'medieval': 1,\n",
      "          'feel': 1,\n",
      "          'smell': 1,\n",
      "          'fresh': 1,\n",
      "          'body': 1,\n",
      "          'heat': 1,\n",
      "          'battle': 1,\n",
      "          'far': 1,\n",
      "          'flawless': 1,\n",
      "          'script': 1,\n",
      "          'needs': 1,\n",
      "          'lot': 1,\n",
      "          'polishing': 1,\n",
      "          'nexcept': 1,\n",
      "          'real': 1,\n",
      "          'star': 1,\n",
      "          'cast': 1,\n",
      "          'assembled': 1,\n",
      "          'props': 1,\n",
      "          'alive': 1,\n",
      "          'costumes': 1,\n",
      "          'wearing': 1,\n",
      "          'nas': 1,\n",
      "          'maiden': 1,\n",
      "          'lorraine': 1,\n",
      "          'portrayed': 1,\n",
      "          'simple': 1,\n",
      "          'divine': 1,\n",
      "          'task': 1,\n",
      "          'latter': 1,\n",
      "          'see': 1,\n",
      "          'hysterical': 1,\n",
      "          'brink': 1,\n",
      "          'madness': 1,\n",
      "          'past': 1,\n",
      "          'purity': 1,\n",
      "          'innocence': 1,\n",
      "          'ever': 1,\n",
      "          'njovovich': 1,\n",
      "          'handles': 1,\n",
      "          'panache': 1,\n",
      "          'one': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'though': 1,\n",
      "          'screen': 1,\n",
      "          'incredible': 1,\n",
      "          'excessive': 1,\n",
      "          'titus': 1,\n",
      "          'surpass': 1,\n",
      "          'rather': 1,\n",
      "          'overacted': 1,\n",
      "          'simply': 1,\n",
      "          'unprofessional': 1,\n",
      "          'performance': 1,\n",
      "          'even': 1,\n",
      "          'hoffman': 1,\n",
      "          'manages': 1,\n",
      "          'breathe': 1,\n",
      "          'dreadfully': 1,\n",
      "          'nbesides': 1,\n",
      "          'casting': 1,\n",
      "          'bessons': 1,\n",
      "          'mistake': 1,\n",
      "          'extreme': 1,\n",
      "          'patriotism': 1,\n",
      "          'ruins': 1,\n",
      "          'gloriously': 1,\n",
      "          'crafted': 1,\n",
      "          'painting': 1,\n",
      "          'viscously': 1,\n",
      "          'evil': 1,\n",
      "          'englishmen': 1,\n",
      "          'murder': 1,\n",
      "          'pillage': 1,\n",
      "          'betray': 1,\n",
      "          'smile': 1,\n",
      "          'faces': 1,\n",
      "          'incredibly': 1,\n",
      "          'noble': 1,\n",
      "          'frenchmen': 1,\n",
      "          'represented': 1,\n",
      "          'three': 1,\n",
      "          'musketeers': 1,\n",
      "          'gilles': 1,\n",
      "          'de': 1,\n",
      "          'rais': 1,\n",
      "          'vincent': 1,\n",
      "          'cassel': 1,\n",
      "          'aulon': 1,\n",
      "          'desmond': 1,\n",
      "          'harrington': 1,\n",
      "          'strong': 1,\n",
      "          'la': 1,\n",
      "          'hire': 1,\n",
      "          'richard': 1,\n",
      "          'ridings': 1,\n",
      "          'nthough': 1,\n",
      "          'actor': 1,\n",
      "          'perform': 1,\n",
      "          'well': 1,\n",
      "          'symbols': 1,\n",
      "          'banners': 1,\n",
      "          'proclaim': 1,\n",
      "          'glory': 1,\n",
      "          'thus': 1,\n",
      "          'realism': 1,\n",
      "          'muscles': 1,\n",
      "          'instead': 1,\n",
      "          'brains': 1,\n",
      "          'relief': 1,\n",
      "          'lays': 1,\n",
      "          'armor': 1,\n",
      "          'thinking': 1,\n",
      "          'ndustin': 1,\n",
      "          'hoffmans': 1,\n",
      "          'appearance': 1,\n",
      "          'helps': 1,\n",
      "          'ends': 1,\n",
      "          'elegantly': 1,\n",
      "          'surprisingly': 1,\n",
      "          'effective': 1,\n",
      "          'climax': 1,\n",
      "          'worthy': 1,\n",
      "          'praise': 1,\n",
      "          'njeannes': 1,\n",
      "          'character': 1,\n",
      "          'unlocked': 1,\n",
      "          'whether': 1,\n",
      "          'picture': 1,\n",
      "          'never': 1,\n",
      "          'quite': 1,\n",
      "          'explained': 1,\n",
      "          'nwas': 1,\n",
      "          'driven': 1,\n",
      "          'hunger': 1,\n",
      "          'revenge': 1,\n",
      "          'truly': 1,\n",
      "          'poses': 1,\n",
      "          'many': 1,\n",
      "          'questions': 1,\n",
      "          'answers': 1,\n",
      "          'completely': 1,\n",
      "          'obvious': 1,\n",
      "          'nbess': 1,\n",
      "          'fairly': 1,\n",
      "          'good': 1,\n",
      "          'much': 1,\n",
      "          'remember': 1,\n",
      "          'leave': 1,\n",
      "          'theater': 1,\n",
      "          'nmaybe': 1,\n",
      "          'sound': 1,\n",
      "          'certainly': 1,\n",
      "          'dialogue': 1,\n",
      "          'elegant': 1,\n",
      "          'lesson': 1,\n",
      "          'mtvgeneration': 1,\n",
      "          'presents': 1,\n",
      "          'interesting': 1,\n",
      "          'material': 1,\n",
      "          'works': 1,\n",
      "          'better': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 11,\n",
      "          'attacks': 9,\n",
      "          'mars': 8,\n",
      "          'alien': 7,\n",
      "          'invasion': 5,\n",
      "          'independence': 5,\n",
      "          'day': 5,\n",
      "          'burtons': 4,\n",
      "          'human': 4,\n",
      "          'first': 4,\n",
      "          'movie': 4,\n",
      "          'films': 4,\n",
      "          'red': 3,\n",
      "          'nis': 3,\n",
      "          'old': 3,\n",
      "          'movies': 3,\n",
      "          'special': 3,\n",
      "          'america': 3,\n",
      "          'people': 3,\n",
      "          'world': 3,\n",
      "          'burton': 3,\n",
      "          'aliens': 3,\n",
      "          'sure': 2,\n",
      "          'work': 2,\n",
      "          'tim': 2,\n",
      "          'comedy': 2,\n",
      "          'works': 2,\n",
      "          'nand': 2,\n",
      "          'doesnt': 2,\n",
      "          'invading': 2,\n",
      "          'planet': 2,\n",
      "          'blasting': 2,\n",
      "          'us': 2,\n",
      "          'released': 2,\n",
      "          'effects': 2,\n",
      "          'nbut': 2,\n",
      "          'big': 2,\n",
      "          'beings': 2,\n",
      "          'greedy': 2,\n",
      "          'saucers': 2,\n",
      "          'dead': 2,\n",
      "          'nits': 2,\n",
      "          'next': 2,\n",
      "          'way': 2,\n",
      "          'characters': 2,\n",
      "          'setting': 2,\n",
      "          'good': 2,\n",
      "          'thing': 2,\n",
      "          'stars': 2,\n",
      "          'lot': 2,\n",
      "          'president': 2,\n",
      "          'take': 2,\n",
      "          'power': 2,\n",
      "          'role': 2,\n",
      "          'martians': 2,\n",
      "          'show': 2,\n",
      "          'funny': 2,\n",
      "          'invaders': 2,\n",
      "          'little': 2,\n",
      "          'scenes': 2,\n",
      "          'make': 2,\n",
      "          'production': 2,\n",
      "          'actually': 2,\n",
      "          'im': 1,\n",
      "          'quite': 1,\n",
      "          'say': 1,\n",
      "          'obviously': 1,\n",
      "          'deranged': 1,\n",
      "          'genius': 1,\n",
      "          'nwhen': 1,\n",
      "          'twisted': 1,\n",
      "          'really': 1,\n",
      "          'breathtaking': 1,\n",
      "          'hilarious': 1,\n",
      "          'equal': 1,\n",
      "          'measure': 1,\n",
      "          'dull': 1,\n",
      "          'nim': 1,\n",
      "          'even': 1,\n",
      "          'often': 1,\n",
      "          'counts': 1,\n",
      "          'gleefully': 1,\n",
      "          'evil': 1,\n",
      "          'force': 1,\n",
      "          'gets': 1,\n",
      "          'business': 1,\n",
      "          'kingdom': 1,\n",
      "          'come': 1,\n",
      "          'brilliant': 1,\n",
      "          'nmars': 1,\n",
      "          'based': 1,\n",
      "          'rather': 1,\n",
      "          'unsavory': 1,\n",
      "          'series': 1,\n",
      "          'trading': 1,\n",
      "          'cards': 1,\n",
      "          'topps': 1,\n",
      "          '1950s': 1,\n",
      "          'takes': 1,\n",
      "          'cues': 1,\n",
      "          'sources': 1,\n",
      "          'summers': 1,\n",
      "          'flicks': 1,\n",
      "          'disaster': 1,\n",
      "          'bigbudget': 1,\n",
      "          'extravaganzas': 1,\n",
      "          'unlike': 1,\n",
      "          'painfully': 1,\n",
      "          'middleoftheroad': 1,\n",
      "          'appeal': 1,\n",
      "          'hearts': 1,\n",
      "          'minds': 1,\n",
      "          'wallets': 1,\n",
      "          'nhas': 1,\n",
      "          'fully': 1,\n",
      "          'developed': 1,\n",
      "          'personal': 1,\n",
      "          'sense': 1,\n",
      "          'wonder': 1,\n",
      "          'difference': 1,\n",
      "          'celebrated': 1,\n",
      "          'resilience': 1,\n",
      "          'nportrays': 1,\n",
      "          'hapless': 1,\n",
      "          'schmucks': 1,\n",
      "          'title': 1,\n",
      "          'sequence': 1,\n",
      "          'splendid': 1,\n",
      "          'incredible': 1,\n",
      "          'swarm': 1,\n",
      "          'flying': 1,\n",
      "          'rises': 1,\n",
      "          'canals': 1,\n",
      "          'storms': 1,\n",
      "          'earthward': 1,\n",
      "          'solar': 1,\n",
      "          'system': 1,\n",
      "          'formation': 1,\n",
      "          'spinning': 1,\n",
      "          'metal': 1,\n",
      "          'ringers': 1,\n",
      "          'forces': 1,\n",
      "          'past': 1,\n",
      "          'appearance': 1,\n",
      "          'screen': 1,\n",
      "          'combination': 1,\n",
      "          'danny': 1,\n",
      "          'elfmans': 1,\n",
      "          'thundering': 1,\n",
      "          'theremindriven': 1,\n",
      "          'score': 1,\n",
      "          'absolutely': 1,\n",
      "          'jawdropping': 1,\n",
      "          'overwhelming': 1,\n",
      "          'swear': 1,\n",
      "          'trouble': 1,\n",
      "          'breathing': 1,\n",
      "          'lays': 1,\n",
      "          'low': 1,\n",
      "          '40': 1,\n",
      "          'minutes': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'glimpse': 1,\n",
      "          'leader': 1,\n",
      "          'resplendent': 1,\n",
      "          'purplesequined': 1,\n",
      "          'cape': 1,\n",
      "          'television': 1,\n",
      "          'message': 1,\n",
      "          'broadcast': 1,\n",
      "          'naturally': 1,\n",
      "          'communicate': 1,\n",
      "          'earthlings': 1,\n",
      "          'preempt': 1,\n",
      "          'regularly': 1,\n",
      "          'scheduled': 1,\n",
      "          'programming': 1,\n",
      "          'mostly': 1,\n",
      "          'act': 1,\n",
      "          'spent': 1,\n",
      "          'developing': 1,\n",
      "          'mildly': 1,\n",
      "          'comic': 1,\n",
      "          'situations': 1,\n",
      "          'drawing': 1,\n",
      "          'quirky': 1,\n",
      "          'dishearteningly': 1,\n",
      "          'drab': 1,\n",
      "          'picture': 1,\n",
      "          'according': 1,\n",
      "          'compelling': 1,\n",
      "          'personality': 1,\n",
      "          'belongs': 1,\n",
      "          'interested': 1,\n",
      "          'making': 1,\n",
      "          'caricatures': 1,\n",
      "          'nanyone': 1,\n",
      "          'comes': 1,\n",
      "          'nexpecting': 1,\n",
      "          'see': 1,\n",
      "          'one': 1,\n",
      "          'favorite': 1,\n",
      "          'actor': 1,\n",
      "          'bound': 1,\n",
      "          'disappointed': 1,\n",
      "          'exceptions': 1,\n",
      "          'dispatched': 1,\n",
      "          'film': 1,\n",
      "          'progresses': 1,\n",
      "          'njack': 1,\n",
      "          'nicholson': 1,\n",
      "          'fun': 1,\n",
      "          'united': 1,\n",
      "          'states': 1,\n",
      "          'fizzles': 1,\n",
      "          'sleazy': 1,\n",
      "          'las': 1,\n",
      "          'vegas': 1,\n",
      "          'hotel': 1,\n",
      "          'developer': 1,\n",
      "          'rod': 1,\n",
      "          'steiger': 1,\n",
      "          'amusing': 1,\n",
      "          'enough': 1,\n",
      "          'dr': 1,\n",
      "          'strangeloves': 1,\n",
      "          'buck': 1,\n",
      "          'turgidson': 1,\n",
      "          'glenn': 1,\n",
      "          'close': 1,\n",
      "          'brings': 1,\n",
      "          'star': 1,\n",
      "          'lady': 1,\n",
      "          'martin': 1,\n",
      "          'short': 1,\n",
      "          'presidential': 1,\n",
      "          'aide': 1,\n",
      "          'meets': 1,\n",
      "          'white': 1,\n",
      "          'houses': 1,\n",
      "          'kennedy': 1,\n",
      "          'room': 1,\n",
      "          'secluded': 1,\n",
      "          'nook': 1,\n",
      "          'unwittingly': 1,\n",
      "          'tries': 1,\n",
      "          'seduce': 1,\n",
      "          'dressed': 1,\n",
      "          'bighaired': 1,\n",
      "          'pointybreasted': 1,\n",
      "          'sexpot': 1,\n",
      "          'lisa': 1,\n",
      "          'marie': 1,\n",
      "          'flame': 1,\n",
      "          'played': 1,\n",
      "          'vampira': 1,\n",
      "          'ed': 1,\n",
      "          'wood': 1,\n",
      "          'earlier': 1,\n",
      "          'scene': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'made': 1,\n",
      "          'clear': 1,\n",
      "          'studied': 1,\n",
      "          'sexuality': 1,\n",
      "          'pages': 1,\n",
      "          'issue': 1,\n",
      "          'playboy': 1,\n",
      "          'nsarah': 1,\n",
      "          'jessica': 1,\n",
      "          'parker': 1,\n",
      "          'hosts': 1,\n",
      "          'tv': 1,\n",
      "          'michael': 1,\n",
      "          'j': 1,\n",
      "          'fox': 1,\n",
      "          'newsman': 1,\n",
      "          'husband': 1,\n",
      "          'octogenarian': 1,\n",
      "          'sylvia': 1,\n",
      "          'sidney': 1,\n",
      "          'part': 1,\n",
      "          'woman': 1,\n",
      "          'cackles': 1,\n",
      "          'blew': 1,\n",
      "          'congress': 1,\n",
      "          'plays': 1,\n",
      "          'decisive': 1,\n",
      "          'defeat': 1,\n",
      "          'menace': 1,\n",
      "          'njim': 1,\n",
      "          'brown': 1,\n",
      "          'tom': 1,\n",
      "          'jones': 1,\n",
      "          'vegasbased': 1,\n",
      "          'heroes': 1,\n",
      "          'director': 1,\n",
      "          'barbet': 1,\n",
      "          'schroeder': 1,\n",
      "          'reversal': 1,\n",
      "          'fortune': 1,\n",
      "          'cameo': 1,\n",
      "          'unfortunate': 1,\n",
      "          'french': 1,\n",
      "          'nalso': 1,\n",
      "          'hand': 1,\n",
      "          'underutilized': 1,\n",
      "          'annette': 1,\n",
      "          'bening': 1,\n",
      "          'pierce': 1,\n",
      "          'brosnan': 1,\n",
      "          'pam': 1,\n",
      "          'grier': 1,\n",
      "          'lukas': 1,\n",
      "          'haas': 1,\n",
      "          'natalie': 1,\n",
      "          'portman': 1,\n",
      "          'latter': 1,\n",
      "          'two': 1,\n",
      "          'also': 1,\n",
      "          'woody': 1,\n",
      "          'allens': 1,\n",
      "          'everyone': 1,\n",
      "          'says': 1,\n",
      "          'love': 1,\n",
      "          'real': 1,\n",
      "          'course': 1,\n",
      "          'computergenerated': 1,\n",
      "          'theyre': 1,\n",
      "          'fantastic': 1,\n",
      "          'nwith': 1,\n",
      "          'bare': 1,\n",
      "          'brains': 1,\n",
      "          'glistening': 1,\n",
      "          'atop': 1,\n",
      "          'grinning': 1,\n",
      "          'skullfaces': 1,\n",
      "          'round': 1,\n",
      "          'eggeyes': 1,\n",
      "          'pupils': 1,\n",
      "          'darting': 1,\n",
      "          'animated': 1,\n",
      "          'malevolence': 1,\n",
      "          'incarnate': 1,\n",
      "          'joe': 1,\n",
      "          'dantes': 1,\n",
      "          'gremlins': 1,\n",
      "          'closest': 1,\n",
      "          'equivalent': 1,\n",
      "          'recent': 1,\n",
      "          'memory': 1,\n",
      "          'monsters': 1,\n",
      "          'inventive': 1,\n",
      "          'raison': 1,\n",
      "          'detre': 1,\n",
      "          'crimes': 1,\n",
      "          'mankind': 1,\n",
      "          'famous': 1,\n",
      "          'monuments': 1,\n",
      "          'crumble': 1,\n",
      "          'assault': 1,\n",
      "          'easter': 1,\n",
      "          'island': 1,\n",
      "          'turned': 1,\n",
      "          'bowling': 1,\n",
      "          'alley': 1,\n",
      "          'nasty': 1,\n",
      "          'buggers': 1,\n",
      "          'perform': 1,\n",
      "          'hideous': 1,\n",
      "          'medical': 1,\n",
      "          'experiments': 1,\n",
      "          'captured': 1,\n",
      "          'humans': 1,\n",
      "          'sheer': 1,\n",
      "          'level': 1,\n",
      "          'mayhem': 1,\n",
      "          'staggering': 1,\n",
      "          'especially': 1,\n",
      "          'attack': 1,\n",
      "          'iridescent': 1,\n",
      "          'skeletons': 1,\n",
      "          'nparents': 1,\n",
      "          'urged': 1,\n",
      "          'pay': 1,\n",
      "          'attention': 1,\n",
      "          'pg13': 1,\n",
      "          'rating': 1,\n",
      "          'earned': 1,\n",
      "          'vary': 1,\n",
      "          'charming': 1,\n",
      "          'astonishing': 1,\n",
      "          'deliciously': 1,\n",
      "          'cheesy': 1,\n",
      "          'least': 1,\n",
      "          'couple': 1,\n",
      "          'shots': 1,\n",
      "          'mass': 1,\n",
      "          'destruction': 1,\n",
      "          'seem': 1,\n",
      "          'engineered': 1,\n",
      "          'specifically': 1,\n",
      "          'response': 1,\n",
      "          'although': 1,\n",
      "          'nwas': 1,\n",
      "          'long': 1,\n",
      "          'release': 1,\n",
      "          'ncinematographer': 1,\n",
      "          'peter': 1,\n",
      "          'suschitzky': 1,\n",
      "          'makes': 1,\n",
      "          'wynn': 1,\n",
      "          'thomass': 1,\n",
      "          'wildly': 1,\n",
      "          'imaginative': 1,\n",
      "          'design': 1,\n",
      "          'thomas': 1,\n",
      "          'helped': 1,\n",
      "          'define': 1,\n",
      "          'spike': 1,\n",
      "          'lee': 1,\n",
      "          'style': 1,\n",
      "          'took': 1,\n",
      "          'time': 1,\n",
      "          'nregimen': 1,\n",
      "          'shoot': 1,\n",
      "          'crash': 1,\n",
      "          'david': 1,\n",
      "          'cronenberg': 1,\n",
      "          'ncronenbergs': 1,\n",
      "          'almost': 1,\n",
      "          'certainly': 1,\n",
      "          'somber': 1,\n",
      "          'wont': 1,\n",
      "          'u': 1,\n",
      "          'early': 1,\n",
      "          'year': 1,\n",
      "          'surely': 1,\n",
      "          'similarly': 1,\n",
      "          'elegant': 1,\n",
      "          'nightmare': 1,\n",
      "          'nthis': 1,\n",
      "          'nice': 1,\n",
      "          'n': 1,\n",
      "          'studio': 1,\n",
      "          'executive': 1,\n",
      "          'duped': 1,\n",
      "          'giving': 1,\n",
      "          '70': 1,\n",
      "          'million': 1,\n",
      "          'nby': 1,\n",
      "          'final': 1,\n",
      "          'nearly': 1,\n",
      "          'empty': 1,\n",
      "          'holocaustravaged': 1,\n",
      "          'conveniently': 1,\n",
      "          'avoided': 1,\n",
      "          'epic': 1,\n",
      "          'suggests': 1,\n",
      "          'weve': 1,\n",
      "          'got': 1,\n",
      "          'may': 1,\n",
      "          'worth': 1,\n",
      "          'saving': 1,\n",
      "          'many': 1,\n",
      "          'victims': 1,\n",
      "          'naive': 1,\n",
      "          'disastrously': 1,\n",
      "          'selfabsorbed': 1,\n",
      "          'since': 1,\n",
      "          'wicked': 1,\n",
      "          'charm': 1,\n",
      "          'dependent': 1,\n",
      "          'ability': 1,\n",
      "          'partly': 1,\n",
      "          'wishfulfillment': 1,\n",
      "          'fantasy': 1,\n",
      "          'surviving': 1,\n",
      "          'cast': 1,\n",
      "          'members': 1,\n",
      "          'innocents': 1,\n",
      "          'entertainers': 1,\n",
      "          'triumph': 1,\n",
      "          'determining': 1,\n",
      "          'ultimate': 1,\n",
      "          'elitists': 1,\n",
      "          'susceptible': 1,\n",
      "          'kitschiest': 1,\n",
      "          'strains': 1,\n",
      "          'american': 1,\n",
      "          'pop': 1,\n",
      "          'culture': 1,\n",
      "          'nultimately': 1,\n",
      "          'messy': 1,\n",
      "          'masterpiece': 1,\n",
      "          'years': 1,\n",
      "          'funniest': 1,\n",
      "          'weird': 1,\n",
      "          'winking': 1,\n",
      "          'affirmation': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'damme': 4,\n",
      "          'movie': 4,\n",
      "          'van': 4,\n",
      "          'action': 3,\n",
      "          'rodman': 3,\n",
      "          'good': 3,\n",
      "          'get': 3,\n",
      "          'quinn': 3,\n",
      "          'like': 3,\n",
      "          'nvan': 2,\n",
      "          'nice': 2,\n",
      "          'gets': 2,\n",
      "          'want': 2,\n",
      "          'double': 2,\n",
      "          'team': 2,\n",
      "          'dennis': 2,\n",
      "          'hes': 2,\n",
      "          'dammes': 2,\n",
      "          'fun': 2,\n",
      "          'back': 2,\n",
      "          'one': 2,\n",
      "          'mission': 2,\n",
      "          'spy': 2,\n",
      "          'would': 2,\n",
      "          'character': 2,\n",
      "          'also': 2,\n",
      "          'old': 2,\n",
      "          'named': 2,\n",
      "          'stavros': 2,\n",
      "          'various': 2,\n",
      "          'seen': 2,\n",
      "          'capsule': 1,\n",
      "          'trippy': 1,\n",
      "          'hyperspeed': 1,\n",
      "          'machine': 1,\n",
      "          'hong': 1,\n",
      "          'kongs': 1,\n",
      "          'accomplished': 1,\n",
      "          'tsui': 1,\n",
      "          'hark': 1,\n",
      "          'chemistry': 1,\n",
      "          'stunts': 1,\n",
      "          'eyepopping': 1,\n",
      "          'stuff': 1,\n",
      "          'blowed': 1,\n",
      "          'real': 1,\n",
      "          'ni': 1,\n",
      "          'admit': 1,\n",
      "          'set': 1,\n",
      "          'loathe': 1,\n",
      "          'reeked': 1,\n",
      "          'cheapjack': 1,\n",
      "          'timingoriented': 1,\n",
      "          'marketing': 1,\n",
      "          'stick': 1,\n",
      "          'quick': 1,\n",
      "          'hot': 1,\n",
      "          'something': 1,\n",
      "          'jeanclaude': 1,\n",
      "          'flagging': 1,\n",
      "          'career': 1,\n",
      "          'nsurprise': 1,\n",
      "          'transcends': 1,\n",
      "          'dumb': 1,\n",
      "          'roots': 1,\n",
      "          'turns': 1,\n",
      "          'mess': 1,\n",
      "          'nbring': 1,\n",
      "          'friends': 1,\n",
      "          'pretzels': 1,\n",
      "          'blast': 1,\n",
      "          'jack': 1,\n",
      "          'exagent': 1,\n",
      "          'brought': 1,\n",
      "          'last': 1,\n",
      "          'youd': 1,\n",
      "          'think': 1,\n",
      "          'worth': 1,\n",
      "          'shoe': 1,\n",
      "          'phone': 1,\n",
      "          'run': 1,\n",
      "          'hell': 1,\n",
      "          'hears': 1,\n",
      "          'words': 1,\n",
      "          'nbut': 1,\n",
      "          'pregnant': 1,\n",
      "          'wife': 1,\n",
      "          'whos': 1,\n",
      "          'sculptor': 1,\n",
      "          'unpleasant': 1,\n",
      "          'pressure': 1,\n",
      "          'used': 1,\n",
      "          'come': 1,\n",
      "          'nhes': 1,\n",
      "          'assigned': 1,\n",
      "          'take': 1,\n",
      "          'enemy': 1,\n",
      "          'terrorist': 1,\n",
      "          'mickey': 1,\n",
      "          'rourke': 1,\n",
      "          'looking': 1,\n",
      "          'oddly': 1,\n",
      "          'subdued': 1,\n",
      "          'may': 1,\n",
      "          'tricks': 1,\n",
      "          'nin': 1,\n",
      "          'first': 1,\n",
      "          'showdown': 1,\n",
      "          'wears': 1,\n",
      "          'ambitions': 1,\n",
      "          'proudly': 1,\n",
      "          'sleeve': 1,\n",
      "          'nonstop': 1,\n",
      "          'nan': 1,\n",
      "          'amusement': 1,\n",
      "          'park': 1,\n",
      "          'hospital': 1,\n",
      "          'private': 1,\n",
      "          'retired': 1,\n",
      "          'retreat': 1,\n",
      "          'rome': 1,\n",
      "          'houses': 1,\n",
      "          'planes': 1,\n",
      "          'cars': 1,\n",
      "          'modes': 1,\n",
      "          'transport': 1,\n",
      "          'coliseum': 1,\n",
      "          'nall': 1,\n",
      "          'become': 1,\n",
      "          'arenas': 1,\n",
      "          'bonerattling': 1,\n",
      "          'shootouts': 1,\n",
      "          'punchouts': 1,\n",
      "          'filmed': 1,\n",
      "          'nthey': 1,\n",
      "          'better': 1,\n",
      "          'described': 1,\n",
      "          'reason': 1,\n",
      "          'enough': 1,\n",
      "          'see': 1,\n",
      "          'film': 1,\n",
      "          'jawdropping': 1,\n",
      "          'scene': 1,\n",
      "          'taking': 1,\n",
      "          'man': 1,\n",
      "          'uses': 1,\n",
      "          'switchblade': 1,\n",
      "          'feet': 1,\n",
      "          'n': 1,\n",
      "          'dextrous': 1,\n",
      "          'athlete': 1,\n",
      "          'fighter': 1,\n",
      "          'often': 1,\n",
      "          'upstaged': 1,\n",
      "          'nthere': 1,\n",
      "          'touches': 1,\n",
      "          'nstavros': 1,\n",
      "          'thing': 1,\n",
      "          'retire': 1,\n",
      "          'peace': 1,\n",
      "          'families': 1,\n",
      "          'nthat': 1,\n",
      "          'ambition': 1,\n",
      "          'ties': 1,\n",
      "          'together': 1,\n",
      "          'ways': 1,\n",
      "          'humanizes': 1,\n",
      "          'bit': 1,\n",
      "          'none': 1,\n",
      "          'things': 1,\n",
      "          'hk': 1,\n",
      "          'movies': 1,\n",
      "          'theres': 1,\n",
      "          'always': 1,\n",
      "          'form': 1,\n",
      "          'human': 1,\n",
      "          'element': 1,\n",
      "          'thats': 1,\n",
      "          'carried': 1,\n",
      "          'well': 1,\n",
      "          'nit': 1,\n",
      "          'gives': 1,\n",
      "          'weight': 1,\n",
      "          'scenes': 1,\n",
      "          'otherwise': 1,\n",
      "          'forgettable': 1,\n",
      "          'nalso': 1,\n",
      "          'playing': 1,\n",
      "          'weapons': 1,\n",
      "          'dealer': 1,\n",
      "          'yaz': 1,\n",
      "          'sticks': 1,\n",
      "          'fistful': 1,\n",
      "          'broken': 1,\n",
      "          'fingers': 1,\n",
      "          'funny': 1,\n",
      "          'standing': 1,\n",
      "          'nrodman': 1,\n",
      "          'natural': 1,\n",
      "          'screen': 1,\n",
      "          'watch': 1,\n",
      "          'especially': 1,\n",
      "          'slinging': 1,\n",
      "          'bad': 1,\n",
      "          'guys': 1,\n",
      "          'basketballs': 1,\n",
      "          'deserves': 1,\n",
      "          'based': 1,\n",
      "          'whats': 1,\n",
      "          'lightweight': 1,\n",
      "          'fastmoving': 1,\n",
      "          'entertainment': 1,\n",
      "          'showcases': 1,\n",
      "          'pieces': 1,\n",
      "          'excellently': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'grodin': 6,\n",
      "          'heartbreak': 5,\n",
      "          'kid': 5,\n",
      "          'character': 5,\n",
      "          'nthe': 5,\n",
      "          'nas': 4,\n",
      "          'sheppard': 3,\n",
      "          'time': 3,\n",
      "          'film': 3,\n",
      "          'charles': 2,\n",
      "          'cybill': 2,\n",
      "          'one': 2,\n",
      "          'obnoxious': 2,\n",
      "          'characters': 2,\n",
      "          'long': 2,\n",
      "          'guy': 2,\n",
      "          'movie': 2,\n",
      "          'way': 2,\n",
      "          'ever': 2,\n",
      "          'bride': 2,\n",
      "          'type': 2,\n",
      "          'written': 2,\n",
      "          'nhowever': 2,\n",
      "          'problem': 2,\n",
      "          'grodins': 2,\n",
      "          'scene': 2,\n",
      "          'n': 2,\n",
      "          'relationships': 2,\n",
      "          'hes': 2,\n",
      "          'could': 2,\n",
      "          'reviewed': 1,\n",
      "          'aug': 1,\n",
      "          '26th1998': 1,\n",
      "          'nstarring': 1,\n",
      "          'eddie': 1,\n",
      "          'albert': 1,\n",
      "          'nin': 1,\n",
      "          'plays': 1,\n",
      "          'unbelievably': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'screen': 1,\n",
      "          'nhes': 1,\n",
      "          'spends': 1,\n",
      "          'virtually': 1,\n",
      "          'entire': 1,\n",
      "          'running': 1,\n",
      "          'bullshitting': 1,\n",
      "          'situation': 1,\n",
      "          'another': 1,\n",
      "          'ni': 1,\n",
      "          'doubt': 1,\n",
      "          'expressed': 1,\n",
      "          'genuine': 1,\n",
      "          'feeling': 1,\n",
      "          'opens': 1,\n",
      "          'gotten': 1,\n",
      "          'married': 1,\n",
      "          'miami': 1,\n",
      "          'beach': 1,\n",
      "          'honeymoon': 1,\n",
      "          'nhalfway': 1,\n",
      "          'begins': 1,\n",
      "          'resent': 1,\n",
      "          'nby': 1,\n",
      "          'arrives': 1,\n",
      "          'hotel': 1,\n",
      "          'met': 1,\n",
      "          'ready': 1,\n",
      "          'divorce': 1,\n",
      "          'wife': 1,\n",
      "          'played': 1,\n",
      "          'person': 1,\n",
      "          'nothing': 1,\n",
      "          'good': 1,\n",
      "          'enough': 1,\n",
      "          'phrase': 1,\n",
      "          'grass': 1,\n",
      "          'always': 1,\n",
      "          'greener': 1,\n",
      "          'side': 1,\n",
      "          'fence': 1,\n",
      "          'practically': 1,\n",
      "          'mind': 1,\n",
      "          'finds': 1,\n",
      "          'something': 1,\n",
      "          'really': 1,\n",
      "          'wants': 1,\n",
      "          'pursue': 1,\n",
      "          'takes': 1,\n",
      "          'immediately': 1,\n",
      "          'loses': 1,\n",
      "          'interest': 1,\n",
      "          'end': 1,\n",
      "          'hilarious': 1,\n",
      "          'sad': 1,\n",
      "          'reason': 1,\n",
      "          'ncharles': 1,\n",
      "          'smarmy': 1,\n",
      "          'best': 1,\n",
      "          'quite': 1,\n",
      "          'appealing': 1,\n",
      "          'object': 1,\n",
      "          'desire': 1,\n",
      "          'real': 1,\n",
      "          'stealer': 1,\n",
      "          'jeannie': 1,\n",
      "          'berlin': 1,\n",
      "          'daughter': 1,\n",
      "          'director': 1,\n",
      "          'elaine': 1,\n",
      "          'may': 1,\n",
      "          'whiny': 1,\n",
      "          'nshe': 1,\n",
      "          'owns': 1,\n",
      "          'every': 1,\n",
      "          'shes': 1,\n",
      "          'makes': 1,\n",
      "          'almost': 1,\n",
      "          'want': 1,\n",
      "          'root': 1,\n",
      "          'trying': 1,\n",
      "          'neil': 1,\n",
      "          'simon': 1,\n",
      "          'shows': 1,\n",
      "          'nsimon': 1,\n",
      "          'loves': 1,\n",
      "          'deconstruct': 1,\n",
      "          'analyze': 1,\n",
      "          'human': 1,\n",
      "          'top': 1,\n",
      "          'game': 1,\n",
      "          'maddeningly': 1,\n",
      "          'everyone': 1,\n",
      "          'knows': 1,\n",
      "          'george': 1,\n",
      "          'costanza': 1,\n",
      "          'seinfeld': 1,\n",
      "          'seems': 1,\n",
      "          'modelled': 1,\n",
      "          'funny': 1,\n",
      "          'billed': 1,\n",
      "          'comedy': 1,\n",
      "          'much': 1,\n",
      "          'see': 1,\n",
      "          'realism': 1,\n",
      "          'would': 1,\n",
      "          'nice': 1,\n",
      "          'chuckle': 1,\n",
      "          'date': 1,\n",
      "          'nit': 1,\n",
      "          'extremely': 1,\n",
      "          'negative': 1,\n",
      "          'view': 1,\n",
      "          'seeing': 1,\n",
      "          'girlfriendboyfriend': 1,\n",
      "          'hazardus': 1,\n",
      "          'health': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'movie': 7,\n",
      "          'see': 4,\n",
      "          'osment': 3,\n",
      "          'thing': 2,\n",
      "          'ive': 2,\n",
      "          'willis': 2,\n",
      "          'whole': 2,\n",
      "          'better': 2,\n",
      "          'sixth': 2,\n",
      "          'sense': 2,\n",
      "          'cute': 2,\n",
      "          'year': 2,\n",
      "          'nif': 2,\n",
      "          'director': 2,\n",
      "          'performance': 2,\n",
      "          'seen': 2,\n",
      "          'matches': 2,\n",
      "          'none': 2,\n",
      "          'like': 2,\n",
      "          'curious': 1,\n",
      "          'found': 1,\n",
      "          'called': 1,\n",
      "          'carry': 1,\n",
      "          'hes': 1,\n",
      "          'much': 1,\n",
      "          'neven': 1,\n",
      "          'though': 1,\n",
      "          'name': 1,\n",
      "          'doesnt': 1,\n",
      "          'pivotal': 1,\n",
      "          'role': 1,\n",
      "          'nthat': 1,\n",
      "          'honour': 1,\n",
      "          'goes': 1,\n",
      "          'haley': 1,\n",
      "          'plays': 1,\n",
      "          'cole': 1,\n",
      "          'sear': 1,\n",
      "          'pun': 1,\n",
      "          'seer': 1,\n",
      "          '9': 1,\n",
      "          'old': 1,\n",
      "          'boy': 1,\n",
      "          'ghosts': 1,\n",
      "          'precious': 1,\n",
      "          'going': 1,\n",
      "          'maudlin': 1,\n",
      "          'would': 1,\n",
      "          'nothing': 1,\n",
      "          'movieoftheweek': 1,\n",
      "          'thankfully': 1,\n",
      "          'instances': 1,\n",
      "          'blows': 1,\n",
      "          'everyone': 1,\n",
      "          'else': 1,\n",
      "          'screen': 1,\n",
      "          'bravura': 1,\n",
      "          'nwe': 1,\n",
      "          'get': 1,\n",
      "          'fears': 1,\n",
      "          'vulnerabilities': 1,\n",
      "          'strengths': 1,\n",
      "          'intelligence': 1,\n",
      "          'makes': 1,\n",
      "          'one': 1,\n",
      "          'best': 1,\n",
      "          'movies': 1,\n",
      "          'nthe': 1,\n",
      "          'cast': 1,\n",
      "          'quality': 1,\n",
      "          'giving': 1,\n",
      "          'fairly': 1,\n",
      "          'low': 1,\n",
      "          'key': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'target': 1,\n",
      "          'nthis': 1,\n",
      "          'isnt': 1,\n",
      "          'sfxfest': 1,\n",
      "          'haunting': 1,\n",
      "          'gorefest': 1,\n",
      "          'id': 1,\n",
      "          'call': 1,\n",
      "          'supernatural': 1,\n",
      "          'drama': 1,\n",
      "          'interested': 1,\n",
      "          'characters': 1,\n",
      "          'dazzling': 1,\n",
      "          'makeup': 1,\n",
      "          'caveat': 1,\n",
      "          'theres': 1,\n",
      "          'lovely': 1,\n",
      "          'twist': 1,\n",
      "          'something': 1,\n",
      "          'usual': 1,\n",
      "          'suspects': 1,\n",
      "          'end': 1,\n",
      "          'replaying': 1,\n",
      "          'head': 1,\n",
      "          'rethinking': 1,\n",
      "          'ni': 1,\n",
      "          'extremely': 1,\n",
      "          'lucky': 1,\n",
      "          'sneak': 1,\n",
      "          'preview': 1,\n",
      "          'toronto': 1,\n",
      "          'hype': 1,\n",
      "          'critical': 1,\n",
      "          'reviews': 1,\n",
      "          'went': 1,\n",
      "          'biases': 1,\n",
      "          'anyone': 1,\n",
      "          'want': 1,\n",
      "          'talk': 1,\n",
      "          'dont': 1,\n",
      "          'let': 1,\n",
      "          'nlet': 1,\n",
      "          'explain': 1,\n",
      "          'pace': 1,\n",
      "          'youll': 1,\n",
      "          'enjoy': 1,\n",
      "          'vastly': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'nthe': 8,\n",
      "          'film': 5,\n",
      "          'emperors': 4,\n",
      "          'new': 4,\n",
      "          'groove': 4,\n",
      "          'emperor': 3,\n",
      "          'like': 3,\n",
      "          'make': 3,\n",
      "          'characters': 2,\n",
      "          'funny': 2,\n",
      "          'would': 2,\n",
      "          'humor': 2,\n",
      "          'dry': 2,\n",
      "          'story': 2,\n",
      "          'schizophrenia': 2,\n",
      "          'adventures': 2,\n",
      "          'kuzco': 2,\n",
      "          'spade': 2,\n",
      "          'eartha': 2,\n",
      "          'kitt': 2,\n",
      "          'assistant': 2,\n",
      "          'kronk': 2,\n",
      "          'llama': 2,\n",
      "          'john': 2,\n",
      "          'theme': 2,\n",
      "          'disney': 2,\n",
      "          'films': 2,\n",
      "          'days': 2,\n",
      "          'singer': 2,\n",
      "          'old': 2,\n",
      "          'dialogue': 2,\n",
      "          'several': 2,\n",
      "          'thing': 2,\n",
      "          'best': 2,\n",
      "          'enjoy': 2,\n",
      "          'ill': 1,\n",
      "          'first': 1,\n",
      "          'admit': 1,\n",
      "          'didnt': 1,\n",
      "          'expect': 1,\n",
      "          'much': 1,\n",
      "          'celine': 1,\n",
      "          'dionesque': 1,\n",
      "          'songanddance': 1,\n",
      "          'numbers': 1,\n",
      "          'cuddly': 1,\n",
      "          'become': 1,\n",
      "          'crosspromotion': 1,\n",
      "          'devices': 1,\n",
      "          'mcdonalds': 1,\n",
      "          'happy': 1,\n",
      "          'meals': 1,\n",
      "          'hollywood': 1,\n",
      "          'stars': 1,\n",
      "          'trying': 1,\n",
      "          'gain': 1,\n",
      "          'credibility': 1,\n",
      "          'adding': 1,\n",
      "          'voiceover': 1,\n",
      "          'job': 1,\n",
      "          'resume': 1,\n",
      "          'ni': 1,\n",
      "          'dead': 1,\n",
      "          'wrong': 1,\n",
      "          'things': 1,\n",
      "          'ndamn': 1,\n",
      "          'nand': 1,\n",
      "          'cute': 1,\n",
      "          'dangerous': 1,\n",
      "          'ones': 1,\n",
      "          'script': 1,\n",
      "          'fast': 1,\n",
      "          'furious': 1,\n",
      "          'singing': 1,\n",
      "          'dancing': 1,\n",
      "          'animation': 1,\n",
      "          'clean': 1,\n",
      "          'give': 1,\n",
      "          'walt': 1,\n",
      "          'warm': 1,\n",
      "          'feeling': 1,\n",
      "          'aimed': 1,\n",
      "          'cynicism': 1,\n",
      "          'goodness': 1,\n",
      "          'us': 1,\n",
      "          'ridiculously': 1,\n",
      "          'weird': 1,\n",
      "          'comes': 1,\n",
      "          'strange': 1,\n",
      "          'acid': 1,\n",
      "          'trip': 1,\n",
      "          'involving': 1,\n",
      "          'talking': 1,\n",
      "          'crossdressing': 1,\n",
      "          'llamas': 1,\n",
      "          'nheres': 1,\n",
      "          'plot': 1,\n",
      "          'try': 1,\n",
      "          'follow': 1,\n",
      "          'along': 1,\n",
      "          'nset': 1,\n",
      "          'mythical': 1,\n",
      "          'kingdom': 1,\n",
      "          'follows': 1,\n",
      "          'david': 1,\n",
      "          'arrogant': 1,\n",
      "          'egocentric': 1,\n",
      "          'nwhen': 1,\n",
      "          'fires': 1,\n",
      "          'powerhungry': 1,\n",
      "          'advisor': 1,\n",
      "          'yzma': 1,\n",
      "          'seinfelds': 1,\n",
      "          'patrick': 1,\n",
      "          'warburton': 1,\n",
      "          'change': 1,\n",
      "          'nkuzco': 1,\n",
      "          'gets': 1,\n",
      "          'stranded': 1,\n",
      "          'jungle': 1,\n",
      "          'must': 1,\n",
      "          'rely': 1,\n",
      "          'pacha': 1,\n",
      "          'goodman': 1,\n",
      "          'llamaherder': 1,\n",
      "          'whose': 1,\n",
      "          'home': 1,\n",
      "          'replaced': 1,\n",
      "          'kuzcos': 1,\n",
      "          'water': 1,\n",
      "          'world': 1,\n",
      "          'park': 1,\n",
      "          'save': 1,\n",
      "          'nthen': 1,\n",
      "          'fun': 1,\n",
      "          'starts': 1,\n",
      "          'nfor': 1,\n",
      "          'next': 1,\n",
      "          'sixty': 1,\n",
      "          'minutes': 1,\n",
      "          'audience': 1,\n",
      "          'treated': 1,\n",
      "          'something': 1,\n",
      "          'unheard': 1,\n",
      "          'imagination': 1,\n",
      "          'nyzma': 1,\n",
      "          'voiced': 1,\n",
      "          'talented': 1,\n",
      "          'looks': 1,\n",
      "          'cross': 1,\n",
      "          'norma': 1,\n",
      "          'desmond': 1,\n",
      "          'joan': 1,\n",
      "          'crawford': 1,\n",
      "          'really': 1,\n",
      "          'vegas': 1,\n",
      "          'showgirl': 1,\n",
      "          'oblivious': 1,\n",
      "          'quick': 1,\n",
      "          'sharp': 1,\n",
      "          'feels': 1,\n",
      "          'episode': 1,\n",
      "          'seinfeld': 1,\n",
      "          'sense': 1,\n",
      "          'ndavid': 1,\n",
      "          'goodmans': 1,\n",
      "          'character': 1,\n",
      "          'interactions': 1,\n",
      "          'feel': 1,\n",
      "          'youre': 1,\n",
      "          'watching': 1,\n",
      "          'hopecrosby': 1,\n",
      "          'nspade': 1,\n",
      "          'beyond': 1,\n",
      "          'shoots': 1,\n",
      "          'belt': 1,\n",
      "          'occasions': 1,\n",
      "          'laughed': 1,\n",
      "          'loud': 1,\n",
      "          'times': 1,\n",
      "          'nneedless': 1,\n",
      "          'say': 1,\n",
      "          'extremely': 1,\n",
      "          'rare': 1,\n",
      "          'screenings': 1,\n",
      "          'part': 1,\n",
      "          'audacious': 1,\n",
      "          'sheer': 1,\n",
      "          'weirdness': 1,\n",
      "          'factor': 1,\n",
      "          'high': 1,\n",
      "          'ncrossdressing': 1,\n",
      "          'duality': 1,\n",
      "          'soul': 1,\n",
      "          'people': 1,\n",
      "          'turned': 1,\n",
      "          'every': 1,\n",
      "          'animal': 1,\n",
      "          'noahs': 1,\n",
      "          'boat': 1,\n",
      "          'cpr': 1,\n",
      "          'homoerotic': 1,\n",
      "          'tendencies': 1,\n",
      "          'song': 1,\n",
      "          'michael': 1,\n",
      "          'jackson': 1,\n",
      "          'dance': 1,\n",
      "          'moves': 1,\n",
      "          'guy': 1,\n",
      "          'communicate': 1,\n",
      "          'squirrel': 1,\n",
      "          'oddities': 1,\n",
      "          'true': 1,\n",
      "          'orginal': 1,\n",
      "          'nsimply': 1,\n",
      "          'put': 1,\n",
      "          'one': 1,\n",
      "          'childrens': 1,\n",
      "          'holiday': 1,\n",
      "          'season': 1,\n",
      "          'nkids': 1,\n",
      "          'parents': 1,\n",
      "          'nthats': 1,\n",
      "          'tough': 1,\n",
      "          'pull': 1,\n",
      "          'single': 1,\n",
      "          'package': 1,\n",
      "          'manages': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'impact': 6,\n",
      "          'nthe': 6,\n",
      "          'deep': 5,\n",
      "          'disaster': 5,\n",
      "          'film': 4,\n",
      "          'news': 4,\n",
      "          'even': 3,\n",
      "          'characters': 3,\n",
      "          'personal': 3,\n",
      "          'snicker': 2,\n",
      "          'comet': 2,\n",
      "          'first': 2,\n",
      "          'every': 2,\n",
      "          'opening': 2,\n",
      "          'moments': 2,\n",
      "          'movie': 2,\n",
      "          'jenny': 2,\n",
      "          'leoni': 2,\n",
      "          'nbcs': 2,\n",
      "          'msnbc': 2,\n",
      "          'films': 2,\n",
      "          'presented': 2,\n",
      "          'director': 2,\n",
      "          'leder': 2,\n",
      "          'work': 2,\n",
      "          'er': 2,\n",
      "          'guest': 2,\n",
      "          'challenge': 2,\n",
      "          'make': 2,\n",
      "          'emotions': 2,\n",
      "          'rather': 2,\n",
      "          'fact': 2,\n",
      "          'effects': 2,\n",
      "          'seeing': 1,\n",
      "          'single': 1,\n",
      "          'frame': 1,\n",
      "          'would': 1,\n",
      "          'easy': 1,\n",
      "          'collision': 1,\n",
      "          'course': 1,\n",
      "          'earth': 1,\n",
      "          'threatens': 1,\n",
      "          'existence': 1,\n",
      "          'life': 1,\n",
      "          'planet': 1,\n",
      "          'nit': 1,\n",
      "          'latest': 1,\n",
      "          'entry': 1,\n",
      "          'decades': 1,\n",
      "          'dubious': 1,\n",
      "          'revival': 1,\n",
      "          '70s': 1,\n",
      "          'two': 1,\n",
      "          'sky': 1,\n",
      "          'falling': 1,\n",
      "          'flicks': 1,\n",
      "          'hit': 1,\n",
      "          'screens': 1,\n",
      "          'year': 1,\n",
      "          'coming': 1,\n",
      "          'julys': 1,\n",
      "          'armageddon': 1,\n",
      "          'meteor': 1,\n",
      "          'threat': 1,\n",
      "          'nits': 1,\n",
      "          'tagline': 1,\n",
      "          'oceans': 1,\n",
      "          'rise': 1,\n",
      "          'ncities': 1,\n",
      "          'fall': 1,\n",
      "          'nhope': 1,\n",
      "          'survives': 1,\n",
      "          'cornball': 1,\n",
      "          'utterly': 1,\n",
      "          'ridiculous': 1,\n",
      "          'collapsing': 1,\n",
      "          'tunnel': 1,\n",
      "          'thriller': 1,\n",
      "          'daylight': 1,\n",
      "          'came': 1,\n",
      "          'alone': 1,\n",
      "          'way': 1,\n",
      "          'nis': 1,\n",
      "          'together': 1,\n",
      "          'bit': 1,\n",
      "          'treacly': 1,\n",
      "          'offer': 1,\n",
      "          'cheesiness': 1,\n",
      "          'confined': 1,\n",
      "          'conventions': 1,\n",
      "          'usual': 1,\n",
      "          'roll': 1,\n",
      "          'call': 1,\n",
      "          'major': 1,\n",
      "          'problems': 1,\n",
      "          'introduced': 1,\n",
      "          'prominent': 1,\n",
      "          'stories': 1,\n",
      "          'ambitious': 1,\n",
      "          'tv': 1,\n",
      "          'reporter': 1,\n",
      "          'lerner': 1,\n",
      "          'tea': 1,\n",
      "          'distraught': 1,\n",
      "          'father': 1,\n",
      "          'maximilian': 1,\n",
      "          'schell': 1,\n",
      "          'left': 1,\n",
      "          'mother': 1,\n",
      "          'vanessa': 1,\n",
      "          'redgrave': 1,\n",
      "          'younger': 1,\n",
      "          'woman': 1,\n",
      "          'rya': 1,\n",
      "          'kihlstedt': 1,\n",
      "          'nwhat': 1,\n",
      "          'snickerworthy': 1,\n",
      "          'coventure': 1,\n",
      "          'paramount': 1,\n",
      "          'dreamworks': 1,\n",
      "          'skg': 1,\n",
      "          'aggressively': 1,\n",
      "          'pushes': 1,\n",
      "          'another': 1,\n",
      "          'highprofile': 1,\n",
      "          'corporate': 1,\n",
      "          'collaboration': 1,\n",
      "          'microsoft': 1,\n",
      "          'cable': 1,\n",
      "          'network': 1,\n",
      "          'employs': 1,\n",
      "          'ostensible': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'nin': 1,\n",
      "          'vision': 1,\n",
      "          'america': 1,\n",
      "          'television': 1,\n",
      "          'source': 1,\n",
      "          'choice': 1,\n",
      "          'home': 1,\n",
      "          'reality': 1,\n",
      "          'reaches': 1,\n",
      "          'fraction': 1,\n",
      "          'country': 1,\n",
      "          'initial': 1,\n",
      "          'signs': 1,\n",
      "          'point': 1,\n",
      "          'toward': 1,\n",
      "          'something': 1,\n",
      "          'along': 1,\n",
      "          'lines': 1,\n",
      "          'volcano': 1,\n",
      "          'dantes': 1,\n",
      "          'peak': 1,\n",
      "          'theres': 1,\n",
      "          'one': 1,\n",
      "          'thing': 1,\n",
      "          'underestimated': 1,\n",
      "          'skills': 1,\n",
      "          'mimi': 1,\n",
      "          'nshe': 1,\n",
      "          'emmy': 1,\n",
      "          'helming': 1,\n",
      "          'smash': 1,\n",
      "          'essentially': 1,\n",
      "          'weekly': 1,\n",
      "          'episode': 1,\n",
      "          'featuring': 1,\n",
      "          'new': 1,\n",
      "          'set': 1,\n",
      "          'stars': 1,\n",
      "          'medical': 1,\n",
      "          'crises': 1,\n",
      "          'format': 1,\n",
      "          'twofold': 1,\n",
      "          '1': 1,\n",
      "          'audience': 1,\n",
      "          'care': 1,\n",
      "          'regardless': 1,\n",
      "          'briefly': 1,\n",
      "          'seen': 1,\n",
      "          'thinly': 1,\n",
      "          'written': 1,\n",
      "          '2': 1,\n",
      "          'powerfully': 1,\n",
      "          'tug': 1,\n",
      "          'without': 1,\n",
      "          'heavyhanded': 1,\n",
      "          'overly': 1,\n",
      "          'melodramatic': 1,\n",
      "          'nhaving': 1,\n",
      "          'passed': 1,\n",
      "          'numerous': 1,\n",
      "          'episodes': 1,\n",
      "          'showed': 1,\n",
      "          'flair': 1,\n",
      "          'creating': 1,\n",
      "          'suspense': 1,\n",
      "          'peacemaker': 1,\n",
      "          'could': 1,\n",
      "          'better': 1,\n",
      "          'fit': 1,\n",
      "          'bring': 1,\n",
      "          'michael': 1,\n",
      "          'tolkin': 1,\n",
      "          'bruce': 1,\n",
      "          'joel': 1,\n",
      "          'rubins': 1,\n",
      "          'formulaic': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'screenplay': 1,\n",
      "          'screen': 1,\n",
      "          'nas': 1,\n",
      "          'countdown': 1,\n",
      "          'progresses': 1,\n",
      "          'ominous': 1,\n",
      "          'feeling': 1,\n",
      "          'doom': 1,\n",
      "          'palpable': 1,\n",
      "          'leading': 1,\n",
      "          'final': 1,\n",
      "          'act': 1,\n",
      "          'take': 1,\n",
      "          'surprisingly': 1,\n",
      "          'convincing': 1,\n",
      "          'affecting': 1,\n",
      "          'emotional': 1,\n",
      "          'dimension': 1,\n",
      "          'ntheres': 1,\n",
      "          'nothing': 1,\n",
      "          'profoundly': 1,\n",
      "          'move': 1,\n",
      "          'anyone': 1,\n",
      "          'anything': 1,\n",
      "          'manages': 1,\n",
      "          'touch': 1,\n",
      "          'heart': 1,\n",
      "          'high': 1,\n",
      "          'achievement': 1,\n",
      "          'genre': 1,\n",
      "          'generally': 1,\n",
      "          'concerned': 1,\n",
      "          'nsituations': 1,\n",
      "          'initially': 1,\n",
      "          'feel': 1,\n",
      "          'contrived': 1,\n",
      "          'jennys': 1,\n",
      "          'familial': 1,\n",
      "          'crisis': 1,\n",
      "          'teenage': 1,\n",
      "          'romance': 1,\n",
      "          'sarah': 1,\n",
      "          'hotchner': 1,\n",
      "          'leelee': 1,\n",
      "          'sobieski': 1,\n",
      "          'discoverer': 1,\n",
      "          'leo': 1,\n",
      "          'biederman': 1,\n",
      "          'elijah': 1,\n",
      "          'wood': 1,\n",
      "          'achieve': 1,\n",
      "          'poignance': 1,\n",
      "          'vaguely': 1,\n",
      "          'drawn': 1,\n",
      "          'including': 1,\n",
      "          'u': 1,\n",
      "          'president': 1,\n",
      "          'tom': 1,\n",
      "          'beck': 1,\n",
      "          'morgan': 1,\n",
      "          'freeman': 1,\n",
      "          'astronaut': 1,\n",
      "          'spurgeon': 1,\n",
      "          'fish': 1,\n",
      "          'tanner': 1,\n",
      "          'robert': 1,\n",
      "          'duvall': 1,\n",
      "          'faceless': 1,\n",
      "          'crew': 1,\n",
      "          'ron': 1,\n",
      "          'eldard': 1,\n",
      "          'jon': 1,\n",
      "          'favreau': 1,\n",
      "          'mary': 1,\n",
      "          'mccormack': 1,\n",
      "          'blair': 1,\n",
      "          'underwood': 1,\n",
      "          'alexander': 1,\n",
      "          'baluyev': 1,\n",
      "          'aboard': 1,\n",
      "          'cometbombing': 1,\n",
      "          'spacecraft': 1,\n",
      "          'messiah': 1,\n",
      "          'share': 1,\n",
      "          'touching': 1,\n",
      "          'latter': 1,\n",
      "          'owes': 1,\n",
      "          'debt': 1,\n",
      "          'actors': 1,\n",
      "          'solid': 1,\n",
      "          'job': 1,\n",
      "          'wellcast': 1,\n",
      "          'possible': 1,\n",
      "          'exception': 1,\n",
      "          'delivers': 1,\n",
      "          'decent': 1,\n",
      "          'performance': 1,\n",
      "          'trademark': 1,\n",
      "          'unconventional': 1,\n",
      "          'speech': 1,\n",
      "          'rhythms': 1,\n",
      "          'line': 1,\n",
      "          'delivery': 1,\n",
      "          'somewhat': 1,\n",
      "          'hard': 1,\n",
      "          'buy': 1,\n",
      "          'star': 1,\n",
      "          'broadcaster': 1,\n",
      "          'nalthough': 1,\n",
      "          'catastrophic': 1,\n",
      "          'theme': 1,\n",
      "          'impressive': 1,\n",
      "          'special': 1,\n",
      "          'giant': 1,\n",
      "          'ocean': 1,\n",
      "          'waves': 1,\n",
      "          'particularly': 1,\n",
      "          'spectacular': 1,\n",
      "          'place': 1,\n",
      "          'category': 1,\n",
      "          'likes': 1,\n",
      "          'twister': 1,\n",
      "          '90s': 1,\n",
      "          'successfully': 1,\n",
      "          'marry': 1,\n",
      "          'advanced': 1,\n",
      "          'technology': 1,\n",
      "          'ring': 1,\n",
      "          'truea': 1,\n",
      "          'makes': 1,\n",
      "          'genuine': 1,\n",
      "          'isnt': 1,\n",
      "          'hoped': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'snatch': 6,\n",
      "          'nthe': 6,\n",
      "          'top': 5,\n",
      "          'diamond': 4,\n",
      "          'irish': 4,\n",
      "          'ritchie': 4,\n",
      "          'characters': 4,\n",
      "          'brick': 4,\n",
      "          'nwhen': 4,\n",
      "          'two': 3,\n",
      "          'comedy': 3,\n",
      "          'first': 3,\n",
      "          'london': 3,\n",
      "          'action': 3,\n",
      "          'one': 3,\n",
      "          'makes': 3,\n",
      "          'feel': 3,\n",
      "          'would': 3,\n",
      "          'fixed': 2,\n",
      "          'dog': 2,\n",
      "          'director': 2,\n",
      "          'sophomore': 2,\n",
      "          'lock': 2,\n",
      "          'stock': 2,\n",
      "          'smoking': 2,\n",
      "          'barrels': 2,\n",
      "          'underworld': 2,\n",
      "          'beginning': 2,\n",
      "          'nhis': 2,\n",
      "          'see': 2,\n",
      "          'doesnt': 2,\n",
      "          'criminal': 2,\n",
      "          'collection': 2,\n",
      "          'gangster': 2,\n",
      "          'avi': 2,\n",
      "          'frankie': 2,\n",
      "          'deal': 2,\n",
      "          'head': 2,\n",
      "          'bet': 2,\n",
      "          'boxing': 2,\n",
      "          'ruthless': 2,\n",
      "          'vinnie': 2,\n",
      "          'goes': 2,\n",
      "          'turkish': 2,\n",
      "          'local': 2,\n",
      "          'ford': 2,\n",
      "          'put': 2,\n",
      "          'gypsy': 2,\n",
      "          'mickey': 2,\n",
      "          'oneil': 2,\n",
      "          'mickeys': 2,\n",
      "          'gives': 2,\n",
      "          'talented': 2,\n",
      "          'unique': 2,\n",
      "          'cast': 2,\n",
      "          'like': 2,\n",
      "          'large': 2,\n",
      "          'actors': 2,\n",
      "          'laugh': 2,\n",
      "          'im': 2,\n",
      "          'npitt': 2,\n",
      "          'hard': 2,\n",
      "          'nthere': 2,\n",
      "          'heist': 1,\n",
      "          'flawless': 1,\n",
      "          '84': 1,\n",
      "          'carat': 1,\n",
      "          'bare': 1,\n",
      "          'knuckle': 1,\n",
      "          'fights': 1,\n",
      "          'gypsies': 1,\n",
      "          'goings': 1,\n",
      "          'guy': 1,\n",
      "          'ritchiess': 1,\n",
      "          'feature': 1,\n",
      "          'n': 1,\n",
      "          'introd': 1,\n",
      "          'helmerscripter': 1,\n",
      "          'hyperkinetic': 1,\n",
      "          'face': 1,\n",
      "          'grabbed': 1,\n",
      "          'viewers': 1,\n",
      "          'attention': 1,\n",
      "          'end': 1,\n",
      "          'protagonists': 1,\n",
      "          'innocents': 1,\n",
      "          'set': 1,\n",
      "          'adrift': 1,\n",
      "          'sharks': 1,\n",
      "          'swim': 1,\n",
      "          'eaten': 1,\n",
      "          'alive': 1,\n",
      "          'nwith': 1,\n",
      "          'remake': 1,\n",
      "          'work': 1,\n",
      "          'delve': 1,\n",
      "          'deeply': 1,\n",
      "          'underbelly': 1,\n",
      "          'mining': 1,\n",
      "          'rich': 1,\n",
      "          'process': 1,\n",
      "          'nfrom': 1,\n",
      "          'tosses': 1,\n",
      "          'theft': 1,\n",
      "          'fabulous': 1,\n",
      "          'desire': 1,\n",
      "          'new': 1,\n",
      "          'york': 1,\n",
      "          'dennis': 1,\n",
      "          'farina': 1,\n",
      "          'nen': 1,\n",
      "          'route': 1,\n",
      "          'antwerp': 1,\n",
      "          'thief': 1,\n",
      "          'courier': 1,\n",
      "          'four': 1,\n",
      "          'fingers': 1,\n",
      "          'benicio': 1,\n",
      "          'del': 1,\n",
      "          'toro': 1,\n",
      "          'stops': 1,\n",
      "          'make': 1,\n",
      "          'separate': 1,\n",
      "          'avis': 1,\n",
      "          'partner': 1,\n",
      "          'cousin': 1,\n",
      "          'doug': 1,\n",
      "          'mike': 1,\n",
      "          'reid': 1,\n",
      "          'nfrankies': 1,\n",
      "          'addiction': 1,\n",
      "          'gambling': 1,\n",
      "          'tempts': 1,\n",
      "          'making': 1,\n",
      "          'illegal': 1,\n",
      "          'match': 1,\n",
      "          'boris': 1,\n",
      "          'blade': 1,\n",
      "          'rade': 1,\n",
      "          'sherbedgia': 1,\n",
      "          'russian': 1,\n",
      "          'mobster': 1,\n",
      "          'turns': 1,\n",
      "          'setup': 1,\n",
      "          'robbery': 1,\n",
      "          'trio': 1,\n",
      "          'bumbling': 1,\n",
      "          'incompetents': 1,\n",
      "          'robbie': 1,\n",
      "          'gee': 1,\n",
      "          'sol': 1,\n",
      "          'lennie': 1,\n",
      "          'james': 1,\n",
      "          'portly': 1,\n",
      "          'tyrone': 1,\n",
      "          'ade': 1,\n",
      "          'miserably': 1,\n",
      "          'awry': 1,\n",
      "          'nmeanwhile': 1,\n",
      "          'couple': 1,\n",
      "          'young': 1,\n",
      "          'toughs': 1,\n",
      "          'jason': 1,\n",
      "          'stratham': 1,\n",
      "          'tommy': 1,\n",
      "          'stephen': 1,\n",
      "          'graham': 1,\n",
      "          'trying': 1,\n",
      "          'break': 1,\n",
      "          'game': 1,\n",
      "          'help': 1,\n",
      "          'villain': 1,\n",
      "          'alan': 1,\n",
      "          'also': 1,\n",
      "          'owns': 1,\n",
      "          'pig': 1,\n",
      "          'farm': 1,\n",
      "          'fighter': 1,\n",
      "          'punch': 1,\n",
      "          'wild': 1,\n",
      "          'named': 1,\n",
      "          'figure': 1,\n",
      "          'loose': 1,\n",
      "          'canon': 1,\n",
      "          'contender': 1,\n",
      "          'fight': 1,\n",
      "          'nmickey': 1,\n",
      "          'proves': 1,\n",
      "          'less': 1,\n",
      "          'reliable': 1,\n",
      "          'tommys': 1,\n",
      "          'nbrick': 1,\n",
      "          'impressed': 1,\n",
      "          'performance': 1,\n",
      "          'decides': 1,\n",
      "          'another': 1,\n",
      "          'chance': 1,\n",
      "          'calmly': 1,\n",
      "          'explaining': 1,\n",
      "          'takes': 1,\n",
      "          '16': 1,\n",
      "          'pigs': 1,\n",
      "          'eight': 1,\n",
      "          'minutes': 1,\n",
      "          'completely': 1,\n",
      "          'devour': 1,\n",
      "          'corpse': 1,\n",
      "          'get': 1,\n",
      "          'precious': 1,\n",
      "          'rock': 1,\n",
      "          'jumps': 1,\n",
      "          'plane': 1,\n",
      "          'hires': 1,\n",
      "          'legend': 1,\n",
      "          'bullet': 1,\n",
      "          'tooth': 1,\n",
      "          'tony': 1,\n",
      "          'jones': 1,\n",
      "          'find': 1,\n",
      "          'nthings': 1,\n",
      "          'spiral': 1,\n",
      "          'control': 1,\n",
      "          'forces': 1,\n",
      "          'collision': 1,\n",
      "          'course': 1,\n",
      "          'doublecross': 1,\n",
      "          'doubledeals': 1,\n",
      "          'ate': 1,\n",
      "          'squeaky': 1,\n",
      "          'toy': 1,\n",
      "          'nguy': 1,\n",
      "          'mr': 1,\n",
      "          'madonna': 1,\n",
      "          'extraordinarily': 1,\n",
      "          'auteur': 1,\n",
      "          'wonderful': 1,\n",
      "          'knack': 1,\n",
      "          'pulling': 1,\n",
      "          'together': 1,\n",
      "          'crew': 1,\n",
      "          'feeding': 1,\n",
      "          'funny': 1,\n",
      "          'gritty': 1,\n",
      "          'dialog': 1,\n",
      "          'spews': 1,\n",
      "          'mouths': 1,\n",
      "          'machine': 1,\n",
      "          'gun': 1,\n",
      "          'fire': 1,\n",
      "          'helmer': 1,\n",
      "          'marshals': 1,\n",
      "          'ensemble': 1,\n",
      "          'frantically': 1,\n",
      "          'paced': 1,\n",
      "          'caper': 1,\n",
      "          'queasy': 1,\n",
      "          'time': 1,\n",
      "          'description': 1,\n",
      "          'example': 1,\n",
      "          'assemblage': 1,\n",
      "          'nonactors': 1,\n",
      "          'roughandtumble': 1,\n",
      "          'settings': 1,\n",
      "          'earthy': 1,\n",
      "          'depiction': 1,\n",
      "          'londons': 1,\n",
      "          'credit': 1,\n",
      "          'performances': 1,\n",
      "          'among': 1,\n",
      "          'equals': 1,\n",
      "          'might': 1,\n",
      "          'say': 1,\n",
      "          'worth': 1,\n",
      "          'noting': 1,\n",
      "          'nalan': 1,\n",
      "          'brilliant': 1,\n",
      "          'evil': 1,\n",
      "          'refuses': 1,\n",
      "          'sugar': 1,\n",
      "          'tea': 1,\n",
      "          'sweet': 1,\n",
      "          'enough': 1,\n",
      "          'shiver': 1,\n",
      "          'even': 1,\n",
      "          'best': 1,\n",
      "          'ive': 1,\n",
      "          'seen': 1,\n",
      "          'years': 1,\n",
      "          'outstanding': 1,\n",
      "          'perf': 1,\n",
      "          'given': 1,\n",
      "          'none': 1,\n",
      "          'brad': 1,\n",
      "          'pitt': 1,\n",
      "          'name': 1,\n",
      "          'actor': 1,\n",
      "          'movies': 1,\n",
      "          'popularity': 1,\n",
      "          'may': 1,\n",
      "          'hang': 1,\n",
      "          'upon': 1,\n",
      "          'least': 1,\n",
      "          'initially': 1,\n",
      "          'drinking': 1,\n",
      "          'fighting': 1,\n",
      "          'highly': 1,\n",
      "          'unreliable': 1,\n",
      "          'nearly': 1,\n",
      "          'incomprehensible': 1,\n",
      "          'brogue': 1,\n",
      "          'dialect': 1,\n",
      "          'pikers': 1,\n",
      "          'travelers': 1,\n",
      "          'europe': 1,\n",
      "          'nthis': 1,\n",
      "          'brigand': 1,\n",
      "          'steal': 1,\n",
      "          'fillings': 1,\n",
      "          'teeth': 1,\n",
      "          'especially': 1,\n",
      "          'benefit': 1,\n",
      "          'beloved': 1,\n",
      "          'mum': 1,\n",
      "          'sorcha': 1,\n",
      "          'cusack': 1,\n",
      "          'threaten': 1,\n",
      "          'safety': 1,\n",
      "          'family': 1,\n",
      "          'enemy': 1,\n",
      "          'stopped': 1,\n",
      "          'puts': 1,\n",
      "          'credible': 1,\n",
      "          'spin': 1,\n",
      "          'character': 1,\n",
      "          'incredible': 1,\n",
      "          'physical': 1,\n",
      "          'stuff': 1,\n",
      "          'bareknuckle': 1,\n",
      "          'boxer': 1,\n",
      "          'production': 1,\n",
      "          'team': 1,\n",
      "          'behind': 1,\n",
      "          'camera': 1,\n",
      "          'includes': 1,\n",
      "          'alumni': 1,\n",
      "          'producer': 1,\n",
      "          'matthew': 1,\n",
      "          'vaughn': 1,\n",
      "          'lenser': 1,\n",
      "          'tim': 1,\n",
      "          'mauricejones': 1,\n",
      "          'technical': 1,\n",
      "          'artist': 1,\n",
      "          'bring': 1,\n",
      "          'hyperactive': 1,\n",
      "          'imagination': 1,\n",
      "          'author': 1,\n",
      "          'visual': 1,\n",
      "          'life': 1,\n",
      "          'patent': 1,\n",
      "          'look': 1,\n",
      "          'reeks': 1,\n",
      "          'signature': 1,\n",
      "          'sure': 1,\n",
      "          'translate': 1,\n",
      "          'future': 1,\n",
      "          'works': 1,\n",
      "          'much': 1,\n",
      "          'talent': 1,\n",
      "          'filmmaker': 1,\n",
      "          'branch': 1,\n",
      "          'directions': 1,\n",
      "          'nnonetheless': 1,\n",
      "          'terrific': 1,\n",
      "          'effort': 1,\n",
      "          'darn': 1,\n",
      "          'good': 1,\n",
      "          'hoot': 1,\n",
      "          'boot': 1,\n",
      "          'ni': 1,\n",
      "          'give': 1,\n",
      "          'b': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'smart': 4,\n",
      "          'tbwp': 3,\n",
      "          'bit': 3,\n",
      "          'simply': 3,\n",
      "          'times': 2,\n",
      "          'ploy': 2,\n",
      "          'successful': 2,\n",
      "          'suspect': 2,\n",
      "          '3': 2,\n",
      "          'students': 2,\n",
      "          'search': 2,\n",
      "          'blair': 2,\n",
      "          'witch': 2,\n",
      "          'put': 2,\n",
      "          'beginning': 2,\n",
      "          'fact': 2,\n",
      "          'ni': 2,\n",
      "          'cant': 2,\n",
      "          'probably': 1,\n",
      "          'single': 1,\n",
      "          'profitable': 1,\n",
      "          'ever': 1,\n",
      "          'nnot': 1,\n",
      "          'surprising': 1,\n",
      "          'considering': 1,\n",
      "          'tiny': 1,\n",
      "          'us100': 1,\n",
      "          '000': 1,\n",
      "          'budget': 1,\n",
      "          'date': 1,\n",
      "          'earned': 1,\n",
      "          'excess': 1,\n",
      "          'us130': 1,\n",
      "          'million': 1,\n",
      "          'nthats': 1,\n",
      "          'shocking': 1,\n",
      "          '100': 1,\n",
      "          'profit': 1,\n",
      "          'nrumours': 1,\n",
      "          'internet': 1,\n",
      "          'marketing': 1,\n",
      "          'gaining': 1,\n",
      "          'cultlike': 1,\n",
      "          'fanatics': 1,\n",
      "          'word': 1,\n",
      "          'mouth': 1,\n",
      "          'coupled': 1,\n",
      "          'strings': 1,\n",
      "          'excellent': 1,\n",
      "          'reviews': 1,\n",
      "          'exploded': 1,\n",
      "          'boxoffice': 1,\n",
      "          'raking': 1,\n",
      "          'millions': 1,\n",
      "          'opening': 1,\n",
      "          'weekend': 1,\n",
      "          'nshot': 1,\n",
      "          '16mm': 1,\n",
      "          'video': 1,\n",
      "          'chronicles': 1,\n",
      "          'forays': 1,\n",
      "          'go': 1,\n",
      "          'legendary': 1,\n",
      "          'naudiences': 1,\n",
      "          'firstperson': 1,\n",
      "          'perspective': 1,\n",
      "          'entire': 1,\n",
      "          'misadventure': 1,\n",
      "          'often': 1,\n",
      "          'wobbly': 1,\n",
      "          'blurry': 1,\n",
      "          'takes': 1,\n",
      "          'getting': 1,\n",
      "          'used': 1,\n",
      "          'nthis': 1,\n",
      "          'supposed': 1,\n",
      "          'material': 1,\n",
      "          'discovered': 1,\n",
      "          'woods': 1,\n",
      "          'disappeared': 1,\n",
      "          'edited': 1,\n",
      "          'onto': 1,\n",
      "          'screen': 1,\n",
      "          'benefit': 1,\n",
      "          'audiences': 1,\n",
      "          'ntbwp': 1,\n",
      "          'nfilmed': 1,\n",
      "          'look': 1,\n",
      "          'really': 1,\n",
      "          'stockshoot': 1,\n",
      "          'bunch': 1,\n",
      "          'school': 1,\n",
      "          'project': 1,\n",
      "          'one': 1,\n",
      "          'may': 1,\n",
      "          'like': 1,\n",
      "          'truly': 1,\n",
      "          'lazy': 1,\n",
      "          'approach': 1,\n",
      "          'filmmaking': 1,\n",
      "          'nsimply': 1,\n",
      "          'amazing': 1,\n",
      "          'respect': 1,\n",
      "          'must': 1,\n",
      "          'say': 1,\n",
      "          'ntalk': 1,\n",
      "          'impact': 1,\n",
      "          'oh': 1,\n",
      "          'yes': 1,\n",
      "          'quite': 1,\n",
      "          'audience': 1,\n",
      "          'find': 1,\n",
      "          'deeply': 1,\n",
      "          'disturbing': 1,\n",
      "          'especially': 1,\n",
      "          'last': 1,\n",
      "          'im': 1,\n",
      "          'revealing': 1,\n",
      "          'nyou': 1,\n",
      "          'see': 1,\n",
      "          'help': 1,\n",
      "          'feel': 1,\n",
      "          'tad': 1,\n",
      "          'cheated': 1,\n",
      "          'knowing': 1,\n",
      "          'commercially': 1,\n",
      "          'become': 1,\n",
      "          'ncould': 1,\n",
      "          'finally': 1,\n",
      "          'indiefilm': 1,\n",
      "          'unwittingly': 1,\n",
      "          'found': 1,\n",
      "          'formula': 1,\n",
      "          'commercial': 1,\n",
      "          'appeal': 1,\n",
      "          'big': 1,\n",
      "          'players': 1,\n",
      "          'right': 1,\n",
      "          'nwell': 1,\n",
      "          'guess': 1,\n",
      "          'stays': 1,\n",
      "          'highly': 1,\n",
      "          'original': 1,\n",
      "          'clever': 1,\n",
      "          'definitely': 1,\n",
      "          'leave': 1,\n",
      "          'something': 1,\n",
      "          'dreadful': 1,\n",
      "          'talk': 1,\n",
      "          'think': 1,\n",
      "          'weeks': 1,\n",
      "          'prior': 1,\n",
      "          'watching': 1,\n",
      "          'nno': 1,\n",
      "          'gore': 1,\n",
      "          'special': 1,\n",
      "          'effects': 1,\n",
      "          'get': 1,\n",
      "          'terribly': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'political': 7,\n",
      "          'strawberry': 6,\n",
      "          'ni': 6,\n",
      "          'revolution': 6,\n",
      "          'cuba': 6,\n",
      "          'criticism': 6,\n",
      "          'film': 4,\n",
      "          'nthe': 4,\n",
      "          'cubas': 3,\n",
      "          'memorias': 3,\n",
      "          'state': 3,\n",
      "          'castros': 3,\n",
      "          'cant': 3,\n",
      "          'movie': 3,\n",
      "          'nhe': 3,\n",
      "          'see': 2,\n",
      "          'chocolate': 2,\n",
      "          'best': 2,\n",
      "          'directed': 2,\n",
      "          'alea': 2,\n",
      "          'saw': 2,\n",
      "          'cuban': 2,\n",
      "          'probably': 2,\n",
      "          'current': 2,\n",
      "          'party': 2,\n",
      "          'like': 2,\n",
      "          'honest': 2,\n",
      "          'nas': 2,\n",
      "          'revolutions': 2,\n",
      "          'takes': 2,\n",
      "          'right': 2,\n",
      "          'castro': 2,\n",
      "          'young': 2,\n",
      "          'diego': 2,\n",
      "          'government': 2,\n",
      "          'art': 2,\n",
      "          'work': 2,\n",
      "          'davids': 2,\n",
      "          'guy': 2,\n",
      "          'wants': 2,\n",
      "          'fine': 2,\n",
      "          'artists': 2,\n",
      "          'point': 2,\n",
      "          'starting': 1,\n",
      "          'write': 1,\n",
      "          'review': 1,\n",
      "          'going': 1,\n",
      "          'oscar': 1,\n",
      "          'nominee': 1,\n",
      "          'foreign': 1,\n",
      "          'tomas': 1,\n",
      "          'gutierrez': 1,\n",
      "          'also': 1,\n",
      "          'sometimes': 1,\n",
      "          'circles': 1,\n",
      "          'critically': 1,\n",
      "          'acclaimed': 1,\n",
      "          'del': 1,\n",
      "          'subdesarrollo': 1,\n",
      "          'memories': 1,\n",
      "          'underdevelopment': 1,\n",
      "          'part': 1,\n",
      "          'cinema': 1,\n",
      "          'class': 1,\n",
      "          'back': 1,\n",
      "          'late': 1,\n",
      "          '70s': 1,\n",
      "          'merged': 1,\n",
      "          'politics': 1,\n",
      "          'mundane': 1,\n",
      "          'elements': 1,\n",
      "          'human': 1,\n",
      "          'condition': 1,\n",
      "          'knew': 1,\n",
      "          'statesanctioned': 1,\n",
      "          'missive': 1,\n",
      "          'expect': 1,\n",
      "          'follow': 1,\n",
      "          'suit': 1,\n",
      "          'nfellow': 1,\n",
      "          'internetters': 1,\n",
      "          'primarily': 1,\n",
      "          'newsgroup': 1,\n",
      "          'dedicated': 1,\n",
      "          'soc': 1,\n",
      "          'culture': 1,\n",
      "          'mentioned': 1,\n",
      "          'harsh': 1,\n",
      "          'affairs': 1,\n",
      "          'jumped': 1,\n",
      "          'conclusion': 1,\n",
      "          'nothing': 1,\n",
      "          'veiled': 1,\n",
      "          'attempt': 1,\n",
      "          'espousing': 1,\n",
      "          'lineit': 1,\n",
      "          'looks': 1,\n",
      "          'aint': 1,\n",
      "          'nhaving': 1,\n",
      "          'first': 1,\n",
      "          'hand': 1,\n",
      "          'extensive': 1,\n",
      "          'anecdotal': 1,\n",
      "          'knowledge': 1,\n",
      "          'repressiveness': 1,\n",
      "          'conceive': 1,\n",
      "          'tolerating': 1,\n",
      "          'adversarial': 1,\n",
      "          'imagine': 1,\n",
      "          'letting': 1,\n",
      "          'anyone': 1,\n",
      "          'even': 1,\n",
      "          'suggest': 1,\n",
      "          'failure': 1,\n",
      "          'leader': 1,\n",
      "          'failed': 1,\n",
      "          'movement': 1,\n",
      "          'kids': 1,\n",
      "          'say': 1,\n",
      "          'days': 1,\n",
      "          'duh': 1,\n",
      "          'needs': 1,\n",
      "          'physical': 1,\n",
      "          'spiritual': 1,\n",
      "          'crumbling': 1,\n",
      "          'self': 1,\n",
      "          'evident': 1,\n",
      "          'proper': 1,\n",
      "          'questions': 1,\n",
      "          'put': 1,\n",
      "          'relate': 1,\n",
      "          'legitimacy': 1,\n",
      "          'bet': 1,\n",
      "          'power': 1,\n",
      "          'granted': 1,\n",
      "          'produced': 1,\n",
      "          'control': 1,\n",
      "          'question': 1,\n",
      "          'run': 1,\n",
      "          'show': 1,\n",
      "          'ongoing': 1,\n",
      "          '36': 1,\n",
      "          'years': 1,\n",
      "          'nthats': 1,\n",
      "          'believe': 1,\n",
      "          'regime': 1,\n",
      "          'nlets': 1,\n",
      "          'happens': 1,\n",
      "          'room': 1,\n",
      "          'goes': 1,\n",
      "          'dark': 1,\n",
      "          'screen': 1,\n",
      "          'lights': 1,\n",
      "          'filmtwice': 1,\n",
      "          'remained': 1,\n",
      "          'intact': 1,\n",
      "          'nstrawberry': 1,\n",
      "          'negotiates': 1,\n",
      "          'relationship': 1,\n",
      "          'dialectic': 1,\n",
      "          'materialist': 1,\n",
      "          'describes': 1,\n",
      "          'homosexual': 1,\n",
      "          'photographer': 1,\n",
      "          '1979': 1,\n",
      "          'man': 1,\n",
      "          'david': 1,\n",
      "          'son': 1,\n",
      "          'peasants': 1,\n",
      "          'symbol': 1,\n",
      "          'reason': 1,\n",
      "          'ngrateful': 1,\n",
      "          'opportunity': 1,\n",
      "          'receive': 1,\n",
      "          'university': 1,\n",
      "          'education': 1,\n",
      "          'studies': 1,\n",
      "          'science': 1,\n",
      "          'instead': 1,\n",
      "          'literature': 1,\n",
      "          'avocation': 1,\n",
      "          'perceives': 1,\n",
      "          'duty': 1,\n",
      "          'ntherein': 1,\n",
      "          'lies': 1,\n",
      "          'likely': 1,\n",
      "          'unintended': 1,\n",
      "          'irony': 1,\n",
      "          'since': 1,\n",
      "          'need': 1,\n",
      "          'theoreticians': 1,\n",
      "          'ncubas': 1,\n",
      "          'ndiegos': 1,\n",
      "          'lifestyle': 1,\n",
      "          'antithesis': 1,\n",
      "          'revolutionary': 1,\n",
      "          'life': 1,\n",
      "          'enjoys': 1,\n",
      "          'finer': 1,\n",
      "          'thingstea': 1,\n",
      "          'opera': 1,\n",
      "          'voluntary': 1,\n",
      "          'nhis': 1,\n",
      "          'small': 1,\n",
      "          'apartment': 1,\n",
      "          'sensual': 1,\n",
      "          'oasis': 1,\n",
      "          'moniker': 1,\n",
      "          'bourgeois': 1,\n",
      "          'figuratively': 1,\n",
      "          'hangs': 1,\n",
      "          'head': 1,\n",
      "          'early': 1,\n",
      "          'parts': 1,\n",
      "          'nhowever': 1,\n",
      "          'revolucionario': 1,\n",
      "          'way': 1,\n",
      "          'supporting': 1,\n",
      "          'roles': 1,\n",
      "          'filled': 1,\n",
      "          'aging': 1,\n",
      "          'busybody': 1,\n",
      "          'heart': 1,\n",
      "          'gold': 1,\n",
      "          'troubled': 1,\n",
      "          'psyche': 1,\n",
      "          'roommate': 1,\n",
      "          'rally': 1,\n",
      "          'communist': 1,\n",
      "          'line': 1,\n",
      "          'expected': 1,\n",
      "          'extreme': 1,\n",
      "          'exgirlfriend': 1,\n",
      "          'dumped': 1,\n",
      "          'another': 1,\n",
      "          'yet': 1,\n",
      "          'bed': 1,\n",
      "          'leaves': 1,\n",
      "          'italy': 1,\n",
      "          'husband': 1,\n",
      "          'german': 1,\n",
      "          'gay': 1,\n",
      "          'sculptor': 1,\n",
      "          'whose': 1,\n",
      "          'attempting': 1,\n",
      "          'exhibit': 1,\n",
      "          'strikes': 1,\n",
      "          'faustian': 1,\n",
      "          'pact': 1,\n",
      "          'ngutierrez': 1,\n",
      "          'codirector': 1,\n",
      "          'juan': 1,\n",
      "          'carlos': 1,\n",
      "          'tabio': 1,\n",
      "          'job': 1,\n",
      "          'almost': 1,\n",
      "          'showing': 1,\n",
      "          'homosexuals': 1,\n",
      "          'revolutionaries': 1,\n",
      "          'nheck': 1,\n",
      "          'towards': 1,\n",
      "          'end': 1,\n",
      "          'begin': 1,\n",
      "          'think': 1,\n",
      "          'deserves': 1,\n",
      "          'medal': 1,\n",
      "          'patriotic': 1,\n",
      "          'fervor': 1,\n",
      "          'really': 1,\n",
      "          'loves': 1,\n",
      "          'supposedly': 1,\n",
      "          'everybody': 1,\n",
      "          'else': 1,\n",
      "          'make': 1,\n",
      "          'better': 1,\n",
      "          'exposing': 1,\n",
      "          'correcting': 1,\n",
      "          'flaws': 1,\n",
      "          'nreal': 1,\n",
      "          'missing': 1,\n",
      "          'though': 1,\n",
      "          'nthis': 1,\n",
      "          'window': 1,\n",
      "          'dressing': 1,\n",
      "          'nluis': 1,\n",
      "          'aguilar': 1,\n",
      "          'leons': 1,\n",
      "          'op': 1,\n",
      "          'ned': 1,\n",
      "          'npiece': 1,\n",
      "          'fresa': 1,\n",
      "          'miami': 1,\n",
      "          'herald': 1,\n",
      "          '10': 1,\n",
      "          'march': 1,\n",
      "          '1995': 1,\n",
      "          '21a': 1,\n",
      "          'color': 1,\n",
      "          'judgment': 1,\n",
      "          'presaged': 1,\n",
      "          'intuition': 1,\n",
      "          'naguilar': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'leon': 1,\n",
      "          'expressed': 1,\n",
      "          'sentiment': 1,\n",
      "          'films': 1,\n",
      "          'angle': 1,\n",
      "          'many': 1,\n",
      "          'artistic': 1,\n",
      "          'manifestations': 1,\n",
      "          'sprang': 1,\n",
      "          'totally': 1,\n",
      "          'manipulated': 1,\n",
      "          'environment': 1,\n",
      "          'critic': 1,\n",
      "          'ivan': 1,\n",
      "          'de': 1,\n",
      "          'la': 1,\n",
      "          'nuez': 1,\n",
      "          'well': 1,\n",
      "          'states': 1,\n",
      "          'latest': 1,\n",
      "          'issue': 1,\n",
      "          'magazine': 1,\n",
      "          'postmodern': 1,\n",
      "          'notes': 1,\n",
      "          'silenced': 1,\n",
      "          'refuse': 1,\n",
      "          'accept': 1,\n",
      "          'charade': 1,\n",
      "          'provoke': 1,\n",
      "          'institutions': 1,\n",
      "          'legitimize': 1,\n",
      "          'forbidding': 1,\n",
      "          'go': 1,\n",
      "          'beyond': 1,\n",
      "          'nalthough': 1,\n",
      "          'terrible': 1,\n",
      "          'propaganda': 1,\n",
      "          'otherwise': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 8,\n",
      "          'like': 8,\n",
      "          'crime': 7,\n",
      "          'job': 7,\n",
      "          'nthe': 7,\n",
      "          'heist': 6,\n",
      "          'one': 5,\n",
      "          'score': 5,\n",
      "          'nhe': 5,\n",
      "          'last': 4,\n",
      "          '4': 4,\n",
      "          'even': 4,\n",
      "          'nick': 4,\n",
      "          'time': 4,\n",
      "          'montreal': 4,\n",
      "          'seems': 4,\n",
      "          'friend': 3,\n",
      "          'played': 3,\n",
      "          'norton': 3,\n",
      "          'young': 3,\n",
      "          'plot': 3,\n",
      "          'nthis': 3,\n",
      "          'nthere': 3,\n",
      "          'never': 3,\n",
      "          'safe': 3,\n",
      "          'wrong': 3,\n",
      "          'good': 3,\n",
      "          'house': 3,\n",
      "          'mission': 3,\n",
      "          'impossible': 3,\n",
      "          'much': 3,\n",
      "          'role': 3,\n",
      "          '1950s': 2,\n",
      "          '1960s': 2,\n",
      "          'deniro': 2,\n",
      "          'safecracker': 2,\n",
      "          'wants': 2,\n",
      "          'personal': 2,\n",
      "          'nedward': 2,\n",
      "          'plays': 2,\n",
      "          'suspense': 2,\n",
      "          'little': 2,\n",
      "          '2': 2,\n",
      "          'ni': 2,\n",
      "          'must': 2,\n",
      "          'seen': 2,\n",
      "          'audience': 2,\n",
      "          'probably': 2,\n",
      "          'taking': 2,\n",
      "          'script': 2,\n",
      "          'nnick': 2,\n",
      "          'nearly': 2,\n",
      "          'telling': 2,\n",
      "          'jazz': 2,\n",
      "          'bassett': 2,\n",
      "          'nshe': 2,\n",
      "          'crook': 2,\n",
      "          'njack': 2,\n",
      "          'way': 2,\n",
      "          'steal': 2,\n",
      "          'customs': 2,\n",
      "          'episode': 2,\n",
      "          'needed': 2,\n",
      "          'story': 2,\n",
      "          'oz': 2,\n",
      "          'lowkey': 2,\n",
      "          'music': 2,\n",
      "          'nit': 2,\n",
      "          'attractive': 2,\n",
      "          'scale': 2,\n",
      "          'capsule': 1,\n",
      "          'style': 1,\n",
      "          'set': 1,\n",
      "          'present': 1,\n",
      "          'nrobert': 1,\n",
      "          'stars': 1,\n",
      "          'riskadverse': 1,\n",
      "          'retire': 1,\n",
      "          'form': 1,\n",
      "          'takes': 1,\n",
      "          'request': 1,\n",
      "          'marlon': 1,\n",
      "          'brando': 1,\n",
      "          'hotshot': 1,\n",
      "          'sharpster': 1,\n",
      "          'also': 1,\n",
      "          'mostly': 1,\n",
      "          'straightforward': 1,\n",
      "          'nonsense': 1,\n",
      "          'n': 1,\n",
      "          'sure': 1,\n",
      "          'almost': 1,\n",
      "          'identical': 1,\n",
      "          'made': 1,\n",
      "          'adult': 1,\n",
      "          'wanted': 1,\n",
      "          'theaters': 1,\n",
      "          'teens': 1,\n",
      "          'superhuman': 1,\n",
      "          'acrobats': 1,\n",
      "          'nosedives': 1,\n",
      "          'buildings': 1,\n",
      "          'entrapment': 1,\n",
      "          'rock': 1,\n",
      "          'ballet': 1,\n",
      "          'martial': 1,\n",
      "          'arts': 1,\n",
      "          'basic': 1,\n",
      "          'decent': 1,\n",
      "          'distinctly': 1,\n",
      "          'credible': 1,\n",
      "          'unflashy': 1,\n",
      "          'robert': 1,\n",
      "          'managed': 1,\n",
      "          'successful': 1,\n",
      "          'risks': 1,\n",
      "          'nif': 1,\n",
      "          'bet': 1,\n",
      "          'pun': 1,\n",
      "          'intended': 1,\n",
      "          'backs': 1,\n",
      "          'nsometimes': 1,\n",
      "          'bets': 1,\n",
      "          'turn': 1,\n",
      "          'nwhen': 1,\n",
      "          'goes': 1,\n",
      "          'unnerved': 1,\n",
      "          'enough': 1,\n",
      "          'decide': 1,\n",
      "          'nature': 1,\n",
      "          'get': 1,\n",
      "          'game': 1,\n",
      "          'returns': 1,\n",
      "          'home': 1,\n",
      "          'owns': 1,\n",
      "          'club': 1,\n",
      "          'decides': 1,\n",
      "          'manage': 1,\n",
      "          'full': 1,\n",
      "          'proposes': 1,\n",
      "          'girl': 1,\n",
      "          'diane': 1,\n",
      "          'angela': 1,\n",
      "          'condition': 1,\n",
      "          'stay': 1,\n",
      "          'retired': 1,\n",
      "          'nbut': 1,\n",
      "          'deal': 1,\n",
      "          'cemented': 1,\n",
      "          'max': 1,\n",
      "          'kingpin': 1,\n",
      "          'supposedly': 1,\n",
      "          'easy': 1,\n",
      "          'part': 1,\n",
      "          'particularly': 1,\n",
      "          'right': 1,\n",
      "          'hometown': 1,\n",
      "          'nmore': 1,\n",
      "          'details': 1,\n",
      "          'seem': 1,\n",
      "          'complicate': 1,\n",
      "          'nnicks': 1,\n",
      "          'partner': 1,\n",
      "          'smart': 1,\n",
      "          'uncontrollable': 1,\n",
      "          'jack': 1,\n",
      "          'edward': 1,\n",
      "          'treats': 1,\n",
      "          'locked': 1,\n",
      "          'front': 1,\n",
      "          'door': 1,\n",
      "          'welcome': 1,\n",
      "          'mat': 1,\n",
      "          'associates': 1,\n",
      "          'homes': 1,\n",
      "          'knowitall': 1,\n",
      "          'everything': 1,\n",
      "          'avoiding': 1,\n",
      "          'rubbing': 1,\n",
      "          'people': 1,\n",
      "          'ntogether': 1,\n",
      "          'plan': 1,\n",
      "          'priceless': 1,\n",
      "          'historic': 1,\n",
      "          'artifact': 1,\n",
      "          'kario': 1,\n",
      "          'salem': 1,\n",
      "          'lem': 1,\n",
      "          'dobbs': 1,\n",
      "          'scott': 1,\n",
      "          'marshall': 1,\n",
      "          'smith': 1,\n",
      "          'works': 1,\n",
      "          'old': 1,\n",
      "          'television': 1,\n",
      "          'series': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'pieces': 1,\n",
      "          'put': 1,\n",
      "          'together': 1,\n",
      "          'minute': 1,\n",
      "          'changes': 1,\n",
      "          'things': 1,\n",
      "          'go': 1,\n",
      "          'team': 1,\n",
      "          'might': 1,\n",
      "          'bad': 1,\n",
      "          'choices': 1,\n",
      "          'write': 1,\n",
      "          'scripts': 1,\n",
      "          'tom': 1,\n",
      "          'cruise': 1,\n",
      "          'films': 1,\n",
      "          'complications': 1,\n",
      "          'however': 1,\n",
      "          'fewer': 1,\n",
      "          'make': 1,\n",
      "          'believable': 1,\n",
      "          'cold': 1,\n",
      "          'noirish': 1,\n",
      "          'supposed': 1,\n",
      "          'ndirector': 1,\n",
      "          'frank': 1,\n",
      "          'voices': 1,\n",
      "          'yoda': 1,\n",
      "          'miss': 1,\n",
      "          'piggy': 1,\n",
      "          'proves': 1,\n",
      "          'surprisingly': 1,\n",
      "          'directing': 1,\n",
      "          'serious': 1,\n",
      "          'adequate': 1,\n",
      "          'cast': 1,\n",
      "          'flashy': 1,\n",
      "          'scenestealing': 1,\n",
      "          'acting': 1,\n",
      "          'flashiest': 1,\n",
      "          'todays': 1,\n",
      "          'standards': 1,\n",
      "          'double': 1,\n",
      "          'pretends': 1,\n",
      "          'brain': 1,\n",
      "          'damage': 1,\n",
      "          'victim': 1,\n",
      "          'hired': 1,\n",
      "          'none': 1,\n",
      "          'nice': 1,\n",
      "          'ncharacter': 1,\n",
      "          'mentioned': 1,\n",
      "          'stephen': 1,\n",
      "          'jamie': 1,\n",
      "          'harrold': 1,\n",
      "          'nstephen': 1,\n",
      "          'master': 1,\n",
      "          'hacker': 1,\n",
      "          'lives': 1,\n",
      "          'mothers': 1,\n",
      "          'basement': 1,\n",
      "          'lot': 1,\n",
      "          'screaming': 1,\n",
      "          'directions': 1,\n",
      "          'person': 1,\n",
      "          'risk': 1,\n",
      "          'adverse': 1,\n",
      "          'would': 1,\n",
      "          'want': 1,\n",
      "          'depend': 1,\n",
      "          'upon': 1,\n",
      "          'remains': 1,\n",
      "          'climactic': 1,\n",
      "          'nthen': 1,\n",
      "          'pace': 1,\n",
      "          'really': 1,\n",
      "          'picks': 1,\n",
      "          'nbefore': 1,\n",
      "          'stops': 1,\n",
      "          'twice': 1,\n",
      "          'interludes': 1,\n",
      "          'nthough': 1,\n",
      "          'lets': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'sweet': 1,\n",
      "          'lowdown': 1,\n",
      "          'non': 1,\n",
      "          'subject': 1,\n",
      "          'howard': 1,\n",
      "          'shore': 1,\n",
      "          'adds': 1,\n",
      "          'tension': 1,\n",
      "          'scenes': 1,\n",
      "          'melody': 1,\n",
      "          'nangela': 1,\n",
      "          'misused': 1,\n",
      "          'celebrity': 1,\n",
      "          'totally': 1,\n",
      "          'minor': 1,\n",
      "          'less': 1,\n",
      "          'famous': 1,\n",
      "          'actress': 1,\n",
      "          'break': 1,\n",
      "          'nothing': 1,\n",
      "          'demand': 1,\n",
      "          'give': 1,\n",
      "          'look': 1,\n",
      "          'reward': 1,\n",
      "          'nspeaking': 1,\n",
      "          'attracting': 1,\n",
      "          'older': 1,\n",
      "          'learned': 1,\n",
      "          'appreciate': 1,\n",
      "          'sort': 1,\n",
      "          'rate': 1,\n",
      "          '7': 1,\n",
      "          '0': 1,\n",
      "          '10': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'beautiful': 9,\n",
      "          'life': 6,\n",
      "          'thats': 4,\n",
      "          'love': 3,\n",
      "          'still': 3,\n",
      "          'dont': 2,\n",
      "          'movie': 2,\n",
      "          'short': 2,\n",
      "          'see': 2,\n",
      "          'roberto': 2,\n",
      "          'benigni': 2,\n",
      "          'nlife': 2,\n",
      "          'even': 2,\n",
      "          'though': 2,\n",
      "          'much': 2,\n",
      "          'nim': 2,\n",
      "          'guy': 2,\n",
      "          'woman': 2,\n",
      "          'biggest': 2,\n",
      "          'heart': 2,\n",
      "          'concentration': 2,\n",
      "          'camp': 2,\n",
      "          'ni': 2,\n",
      "          'son': 2,\n",
      "          'let': 1,\n",
      "          'following': 1,\n",
      "          'quirks': 1,\n",
      "          'review': 1,\n",
      "          'fool': 1,\n",
      "          'believing': 1,\n",
      "          'anything': 1,\n",
      "          'ultimate': 1,\n",
      "          'labour': 1,\n",
      "          'nbut': 1,\n",
      "          'one': 1,\n",
      "          'humour': 1,\n",
      "          'im': 1,\n",
      "          'ugly': 1,\n",
      "          'looking': 1,\n",
      "          'man': 1,\n",
      "          'obnoxious': 1,\n",
      "          'laugh': 1,\n",
      "          'havent': 1,\n",
      "          'amounted': 1,\n",
      "          'except': 1,\n",
      "          'working': 1,\n",
      "          'finer': 1,\n",
      "          'intricacies': 1,\n",
      "          'waitering': 1,\n",
      "          'lucky': 1,\n",
      "          'sort': 1,\n",
      "          'especially': 1,\n",
      "          'strips': 1,\n",
      "          'away': 1,\n",
      "          'venner': 1,\n",
      "          'superficiality': 1,\n",
      "          'find': 1,\n",
      "          'new': 1,\n",
      "          'age': 1,\n",
      "          'sensitive': 1,\n",
      "          'entire': 1,\n",
      "          'world': 1,\n",
      "          'underneath': 1,\n",
      "          'jew': 1,\n",
      "          'nthe': 1,\n",
      "          'nazis': 1,\n",
      "          'put': 1,\n",
      "          'matters': 1,\n",
      "          'makes': 1,\n",
      "          'nmy': 1,\n",
      "          'ability': 1,\n",
      "          'entertain': 1,\n",
      "          'somehow': 1,\n",
      "          'convinces': 1,\n",
      "          'living': 1,\n",
      "          'somewhat': 1,\n",
      "          'get': 1,\n",
      "          'shot': 1,\n",
      "          'efforts': 1,\n",
      "          'hey': 1,\n",
      "          'thing': 1,\n",
      "          'jove': 1,\n",
      "          'give': 1,\n",
      "          'crap': 1,\n",
      "          'nby': 1,\n",
      "          'far': 1,\n",
      "          'decade': 1,\n",
      "          'well': 1,\n",
      "          'deserves': 1,\n",
      "          'every': 1,\n",
      "          'nomination': 1,\n",
      "          'award': 1,\n",
      "          'achieved': 1,\n",
      "          'nwell': 1,\n",
      "          'done': 1,\n",
      "          'film': 1,\n",
      "          'directors': 1,\n",
      "          'actors': 1,\n",
      "          'like': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'right': 11,\n",
      "          'gavins': 7,\n",
      "          'life': 5,\n",
      "          'getting': 4,\n",
      "          'movie': 4,\n",
      "          'film': 4,\n",
      "          'ngetting': 4,\n",
      "          'gavin': 4,\n",
      "          'nthe': 3,\n",
      "          'ngavin': 3,\n",
      "          'character': 3,\n",
      "          'ngavins': 3,\n",
      "          'performance': 3,\n",
      "          'also': 3,\n",
      "          'far': 2,\n",
      "          'virginity': 2,\n",
      "          'kleiser': 2,\n",
      "          'us': 2,\n",
      "          'thanks': 2,\n",
      "          'memorable': 2,\n",
      "          'shy': 2,\n",
      "          'home': 2,\n",
      "          'parents': 2,\n",
      "          'salon': 2,\n",
      "          'single': 2,\n",
      "          'beauty': 2,\n",
      "          'woman': 2,\n",
      "          'joan': 2,\n",
      "          'redgrave': 2,\n",
      "          'rich': 2,\n",
      "          'simple': 2,\n",
      "          'find': 2,\n",
      "          'seems': 2,\n",
      "          'limited': 2,\n",
      "          'quite': 2,\n",
      "          'part': 2,\n",
      "          'minnie': 2,\n",
      "          'great': 2,\n",
      "          'mother': 2,\n",
      "          'jane': 2,\n",
      "          'two': 2,\n",
      "          'meals': 2,\n",
      "          'cry': 1,\n",
      "          'teenage': 1,\n",
      "          'sex': 1,\n",
      "          'comedy': 1,\n",
      "          'might': 1,\n",
      "          'expect': 1,\n",
      "          'summer': 1,\n",
      "          'male': 1,\n",
      "          'directed': 1,\n",
      "          'randal': 1,\n",
      "          'brought': 1,\n",
      "          'bubblegum': 1,\n",
      "          'classics': 1,\n",
      "          'grease': 1,\n",
      "          'blue': 1,\n",
      "          'lagoon': 1,\n",
      "          'nbut': 1,\n",
      "          'kleisers': 1,\n",
      "          'surprisingly': 1,\n",
      "          'good': 1,\n",
      "          'direction': 1,\n",
      "          'intelligent': 1,\n",
      "          'script': 1,\n",
      "          'pleasantly': 1,\n",
      "          'quiet': 1,\n",
      "          'moving': 1,\n",
      "          'filmone': 1,\n",
      "          'geared': 1,\n",
      "          'strictly': 1,\n",
      "          'toward': 1,\n",
      "          'sophisticated': 1,\n",
      "          'adult': 1,\n",
      "          'audience': 1,\n",
      "          'stars': 1,\n",
      "          'jesse': 1,\n",
      "          'birdsall': 1,\n",
      "          'emily': 1,\n",
      "          'lloyds': 1,\n",
      "          'boyfriend': 1,\n",
      "          'wish': 1,\n",
      "          'painfully': 1,\n",
      "          '31yearold': 1,\n",
      "          'hairdresser': 1,\n",
      "          'lives': 1,\n",
      "          'whogaspis': 1,\n",
      "          'still': 1,\n",
      "          'virgin': 1,\n",
      "          'problem': 1,\n",
      "          'whatsoever': 1,\n",
      "          'making': 1,\n",
      "          'small': 1,\n",
      "          'talk': 1,\n",
      "          'elderly': 1,\n",
      "          'women': 1,\n",
      "          'clamor': 1,\n",
      "          'services': 1,\n",
      "          'hair': 1,\n",
      "          'expose': 1,\n",
      "          '30yearold': 1,\n",
      "          'hes': 1,\n",
      "          'mess': 1,\n",
      "          'nmuch': 1,\n",
      "          'surprise': 1,\n",
      "          'finally': 1,\n",
      "          'brings': 1,\n",
      "          'shell': 1,\n",
      "          'robs': 1,\n",
      "          'lynn': 1,\n",
      "          'married': 1,\n",
      "          'lonely': 1,\n",
      "          '45yearold': 1,\n",
      "          'story': 1,\n",
      "          'awkward': 1,\n",
      "          'haphazard': 1,\n",
      "          'efforts': 1,\n",
      "          'get': 1,\n",
      "          'fulfill': 1,\n",
      "          'one': 1,\n",
      "          'rare': 1,\n",
      "          'movies': 1,\n",
      "          'devotes': 1,\n",
      "          'entirely': 1,\n",
      "          'indepth': 1,\n",
      "          'development': 1,\n",
      "          'selfconscious': 1,\n",
      "          'voiceover': 1,\n",
      "          'narration': 1,\n",
      "          'experiences': 1,\n",
      "          'firmly': 1,\n",
      "          'thrusts': 1,\n",
      "          'psyche': 1,\n",
      "          'nwe': 1,\n",
      "          'observe': 1,\n",
      "          'fascinating': 1,\n",
      "          'metamorphosis': 1,\n",
      "          'passive': 1,\n",
      "          'introversion': 1,\n",
      "          'assertive': 1,\n",
      "          'selfconfident': 1,\n",
      "          'maturity': 1,\n",
      "          'nbirdsalls': 1,\n",
      "          'superb': 1,\n",
      "          'understated': 1,\n",
      "          'real': 1,\n",
      "          'backbone': 1,\n",
      "          'convincing': 1,\n",
      "          'authentic': 1,\n",
      "          'throughout': 1,\n",
      "          'charm': 1,\n",
      "          'lies': 1,\n",
      "          'wide': 1,\n",
      "          'array': 1,\n",
      "          'people': 1,\n",
      "          'inhabit': 1,\n",
      "          'invade': 1,\n",
      "          'ndespite': 1,\n",
      "          'screen': 1,\n",
      "          'time': 1,\n",
      "          'makes': 1,\n",
      "          'splash': 1,\n",
      "          'middleaged': 1,\n",
      "          'seducer': 1,\n",
      "          'nfor': 1,\n",
      "          'supporting': 1,\n",
      "          'unusually': 1,\n",
      "          'impressively': 1,\n",
      "          'complex': 1,\n",
      "          'large': 1,\n",
      "          'redgraves': 1,\n",
      "          'magnificent': 1,\n",
      "          'pursued': 1,\n",
      "          'perhaps': 1,\n",
      "          'plagued': 1,\n",
      "          'totally': 1,\n",
      "          'neurotic': 1,\n",
      "          'daughter': 1,\n",
      "          'aristocrat': 1,\n",
      "          'nafter': 1,\n",
      "          'meet': 1,\n",
      "          'party': 1,\n",
      "          'takes': 1,\n",
      "          'pleasure': 1,\n",
      "          'disrupting': 1,\n",
      "          'safe': 1,\n",
      "          'nhelena': 1,\n",
      "          'bonham': 1,\n",
      "          'carter': 1,\n",
      "          'delightfully': 1,\n",
      "          'pathetic': 1,\n",
      "          'kooky': 1,\n",
      "          'role': 1,\n",
      "          'sir': 1,\n",
      "          'john': 1,\n",
      "          'gielgud': 1,\n",
      "          'tongue': 1,\n",
      "          'cheek': 1,\n",
      "          'embodies': 1,\n",
      "          'height': 1,\n",
      "          'arrogance': 1,\n",
      "          'father': 1,\n",
      "          'eventual': 1,\n",
      "          'loveinterest': 1,\n",
      "          'jenny': 1,\n",
      "          'adorable': 1,\n",
      "          'twentyyearold': 1,\n",
      "          'assists': 1,\n",
      "          'london': 1,\n",
      "          'stage': 1,\n",
      "          'actress': 1,\n",
      "          'horrocks': 1,\n",
      "          'fine': 1,\n",
      "          'yields': 1,\n",
      "          'touchingly': 1,\n",
      "          'sweet': 1,\n",
      "          'npeter': 1,\n",
      "          'cook': 1,\n",
      "          'british': 1,\n",
      "          'satirist': 1,\n",
      "          'appears': 1,\n",
      "          'briefly': 1,\n",
      "          'uptight': 1,\n",
      "          'employer': 1,\n",
      "          'scenes': 1,\n",
      "          'treat': 1,\n",
      "          'overprotective': 1,\n",
      "          'pat': 1,\n",
      "          'heywood': 1,\n",
      "          'even': 1,\n",
      "          'woody': 1,\n",
      "          'allen': 1,\n",
      "          'would': 1,\n",
      "          'overbearing': 1,\n",
      "          'almost': 1,\n",
      "          'steals': 1,\n",
      "          'nher': 1,\n",
      "          'activities': 1,\n",
      "          'treating': 1,\n",
      "          'like': 1,\n",
      "          '10yearold': 1,\n",
      "          'preparing': 1,\n",
      "          'exotic': 1,\n",
      "          'inedible': 1,\n",
      "          'scalding': 1,\n",
      "          'hot': 1,\n",
      "          'curry': 1,\n",
      "          'baked': 1,\n",
      "          'chicken': 1,\n",
      "          'chocolate': 1,\n",
      "          'sauce': 1,\n",
      "          'fathers': 1,\n",
      "          'attempts': 1,\n",
      "          'avoid': 1,\n",
      "          'eating': 1,\n",
      "          'extremely': 1,\n",
      "          'amusing': 1,\n",
      "          'wellcrafted': 1,\n",
      "          'except': 1,\n",
      "          'minor': 1,\n",
      "          'shortcomings': 1,\n",
      "          'nfirst': 1,\n",
      "          '15': 1,\n",
      "          'minutes': 1,\n",
      "          'long': 1,\n",
      "          'consequently': 1,\n",
      "          'loses': 1,\n",
      "          'momentum': 1,\n",
      "          'times': 1,\n",
      "          'nsecond': 1,\n",
      "          'includes': 1,\n",
      "          'altogether': 1,\n",
      "          'extraneous': 1,\n",
      "          'subplot': 1,\n",
      "          'domestic': 1,\n",
      "          'problems': 1,\n",
      "          'best': 1,\n",
      "          'friend': 1,\n",
      "          'harry': 1,\n",
      "          'unfaithful': 1,\n",
      "          'lover': 1,\n",
      "          'winthrop': 1,\n",
      "          'noverall': 1,\n",
      "          'however': 1,\n",
      "          'humor': 1,\n",
      "          'depth': 1,\n",
      "          'sophistication': 1,\n",
      "          'outstanding': 1,\n",
      "          'acting': 1,\n",
      "          'ndirector': 1,\n",
      "          'screenwriter': 1,\n",
      "          'elizabeth': 1,\n",
      "          'howard': 1,\n",
      "          'adapting': 1,\n",
      "          'highly': 1,\n",
      "          'acclaimed': 1,\n",
      "          'novel': 1,\n",
      "          'deserve': 1,\n",
      "          'praise': 1,\n",
      "          'finding': 1,\n",
      "          'tone': 1,\n",
      "          'tale': 1,\n",
      "          'growth': 1,\n",
      "          'maturation': 1,\n",
      "          'selfdiscovery': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'mystery': 6,\n",
      "          'usual': 4,\n",
      "          'crime': 4,\n",
      "          'movies': 4,\n",
      "          'soze': 4,\n",
      "          'name': 4,\n",
      "          'movie': 4,\n",
      "          'nthe': 3,\n",
      "          'suspects': 3,\n",
      "          'story': 3,\n",
      "          'nits': 3,\n",
      "          'keyser': 3,\n",
      "          'criminals': 3,\n",
      "          'police': 3,\n",
      "          'intelligent': 2,\n",
      "          'upandcoming': 2,\n",
      "          'director': 2,\n",
      "          'bryan': 2,\n",
      "          'singer': 2,\n",
      "          'one': 2,\n",
      "          'end': 2,\n",
      "          'watch': 2,\n",
      "          'scenes': 2,\n",
      "          'new': 2,\n",
      "          'get': 2,\n",
      "          'times': 2,\n",
      "          'good': 2,\n",
      "          'also': 2,\n",
      "          'brought': 2,\n",
      "          'lineup': 2,\n",
      "          'baldwin': 2,\n",
      "          'byrne': 2,\n",
      "          'kevin': 2,\n",
      "          'spacey': 2,\n",
      "          'supporting': 2,\n",
      "          'actor': 2,\n",
      "          'ever': 2,\n",
      "          'exist': 2,\n",
      "          'kris': 2,\n",
      "          'kross': 2,\n",
      "          'palminteri': 2,\n",
      "          'five': 2,\n",
      "          'stealing': 2,\n",
      "          'drugs': 2,\n",
      "          'matter': 1,\n",
      "          'suspect': 1,\n",
      "          'isnt': 1,\n",
      "          'action': 1,\n",
      "          'thriller': 1,\n",
      "          'everything': 1,\n",
      "          'revealed': 1,\n",
      "          'rapidfire': 1,\n",
      "          'immediately': 1,\n",
      "          'want': 1,\n",
      "          'rewind': 1,\n",
      "          'earlier': 1,\n",
      "          'take': 1,\n",
      "          'light': 1,\n",
      "          'nplot': 1,\n",
      "          'twists': 1,\n",
      "          'agogo': 1,\n",
      "          'gave': 1,\n",
      "          'trying': 1,\n",
      "          'figure': 1,\n",
      "          'awhile': 1,\n",
      "          'sat': 1,\n",
      "          'back': 1,\n",
      "          'waited': 1,\n",
      "          'reveal': 1,\n",
      "          'nkeyser': 1,\n",
      "          'youll': 1,\n",
      "          'hear': 1,\n",
      "          'least': 1,\n",
      "          'hundred': 1,\n",
      "          'reason': 1,\n",
      "          'mysterious': 1,\n",
      "          'possibly': 1,\n",
      "          'even': 1,\n",
      "          'mythical': 1,\n",
      "          'boss': 1,\n",
      "          'sums': 1,\n",
      "          'latin': 1,\n",
      "          'means': 1,\n",
      "          'maybe': 1,\n",
      "          'shouldnt': 1,\n",
      "          'bought': 1,\n",
      "          'foreignlanguage': 1,\n",
      "          'dictionary': 1,\n",
      "          'company': 1,\n",
      "          'makes': 1,\n",
      "          '99cent': 1,\n",
      "          'encyclopedias': 1,\n",
      "          'sold': 1,\n",
      "          'supermarkets': 1,\n",
      "          'nat': 1,\n",
      "          'opening': 1,\n",
      "          'group': 1,\n",
      "          'known': 1,\n",
      "          'including': 1,\n",
      "          'mcmanus': 1,\n",
      "          'stephen': 1,\n",
      "          'keaton': 1,\n",
      "          'gabriel': 1,\n",
      "          'fenster': 1,\n",
      "          'benicio': 1,\n",
      "          'del': 1,\n",
      "          'toro': 1,\n",
      "          'buckney': 1,\n",
      "          'pollack': 1,\n",
      "          'verbal': 1,\n",
      "          'winner': 1,\n",
      "          'best': 1,\n",
      "          'academy': 1,\n",
      "          'awardsymbol': 1,\n",
      "          '153': 1,\n",
      "          'f': 1,\n",
      "          'roman': 1,\n",
      "          '10': 1,\n",
      "          'h': 1,\n",
      "          'performance': 1,\n",
      "          'nverbal': 1,\n",
      "          'sonamed': 1,\n",
      "          'frequently': 1,\n",
      "          'rambles': 1,\n",
      "          'anything': 1,\n",
      "          'nothing': 1,\n",
      "          'nhe': 1,\n",
      "          'earns': 1,\n",
      "          'narrator': 1,\n",
      "          'spouting': 1,\n",
      "          'memorable': 1,\n",
      "          'lines': 1,\n",
      "          'like': 1,\n",
      "          'greatest': 1,\n",
      "          'trick': 1,\n",
      "          'devil': 1,\n",
      "          'pulled': 1,\n",
      "          'convincing': 1,\n",
      "          'world': 1,\n",
      "          'didnt': 1,\n",
      "          'although': 1,\n",
      "          'obviously': 1,\n",
      "          'else': 1,\n",
      "          'could': 1,\n",
      "          'explain': 1,\n",
      "          'comeback': 1,\n",
      "          '1996': 1,\n",
      "          'interrogated': 1,\n",
      "          'detective': 1,\n",
      "          'chazz': 1,\n",
      "          'multiple': 1,\n",
      "          'zs': 1,\n",
      "          'okay': 1,\n",
      "          'book': 1,\n",
      "          'nwe': 1,\n",
      "          'see': 1,\n",
      "          'unfold': 1,\n",
      "          'retells': 1,\n",
      "          'felons': 1,\n",
      "          'upon': 1,\n",
      "          'released': 1,\n",
      "          'revenge': 1,\n",
      "          'exposing': 1,\n",
      "          'corrupt': 1,\n",
      "          'taxi': 1,\n",
      "          'service': 1,\n",
      "          'whereby': 1,\n",
      "          'elite': 1,\n",
      "          'pay': 1,\n",
      "          'smuggled': 1,\n",
      "          'town': 1,\n",
      "          'cop': 1,\n",
      "          'cars': 1,\n",
      "          'money': 1,\n",
      "          'car': 1,\n",
      "          'definite': 1,\n",
      "          'case': 1,\n",
      "          'male': 1,\n",
      "          'bonding': 1,\n",
      "          'later': 1,\n",
      "          'find': 1,\n",
      "          'together': 1,\n",
      "          'unseen': 1,\n",
      "          'sends': 1,\n",
      "          'minion': 1,\n",
      "          'offer': 1,\n",
      "          'cant': 1,\n",
      "          'refuse': 1,\n",
      "          'nnamely': 1,\n",
      "          'destroy': 1,\n",
      "          'sozes': 1,\n",
      "          'main': 1,\n",
      "          'competitors': 1,\n",
      "          'organized': 1,\n",
      "          'infiltrating': 1,\n",
      "          'ship': 1,\n",
      "          'shooting': 1,\n",
      "          'bunch': 1,\n",
      "          'people': 1,\n",
      "          'burning': 1,\n",
      "          '91': 1,\n",
      "          'million': 1,\n",
      "          'cash': 1,\n",
      "          'nspacey': 1,\n",
      "          'terrific': 1,\n",
      "          'job': 1,\n",
      "          'bringing': 1,\n",
      "          'seemingly': 1,\n",
      "          'unintelligent': 1,\n",
      "          'cripple': 1,\n",
      "          'character': 1,\n",
      "          'life': 1,\n",
      "          'rest': 1,\n",
      "          'make': 1,\n",
      "          'cast': 1,\n",
      "          'deftly': 1,\n",
      "          'mixes': 1,\n",
      "          'violence': 1,\n",
      "          'explosions': 1,\n",
      "          'underlying': 1,\n",
      "          'sense': 1,\n",
      "          'suspense': 1,\n",
      "          'keeping': 1,\n",
      "          'viewer': 1,\n",
      "          'guessing': 1,\n",
      "          'still': 1,\n",
      "          'leaving': 1,\n",
      "          'details': 1,\n",
      "          'open': 1,\n",
      "          'scrutiny': 1,\n",
      "          'discussion': 1,\n",
      "          'ni': 1,\n",
      "          'suppose': 1,\n",
      "          'would': 1,\n",
      "          'cleared': 1,\n",
      "          'really': 1,\n",
      "          'rewound': 1,\n",
      "          'watched': 1,\n",
      "          'instead': 1,\n",
      "          'changing': 1,\n",
      "          'channel': 1,\n",
      "          'wondering': 1,\n",
      "          'disbelief': 1,\n",
      "          'hell': 1,\n",
      "          'mtv': 1,\n",
      "          'na': 1,\n",
      "          'different': 1,\n",
      "          'guess': 1,\n",
      "          'may': 1,\n",
      "          'turn': 1,\n",
      "          '_murder_': 1,\n",
      "          'video': 1,\n",
      "          'comes': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'love': 8,\n",
      "          'film': 8,\n",
      "          'nthe': 7,\n",
      "          'dangerous': 6,\n",
      "          'beauty': 6,\n",
      "          'venice': 6,\n",
      "          'veronica': 6,\n",
      "          'including': 5,\n",
      "          'like': 4,\n",
      "          'story': 4,\n",
      "          'time': 4,\n",
      "          'mccormack': 4,\n",
      "          'marco': 4,\n",
      "          'good': 4,\n",
      "          'courtesan': 4,\n",
      "          'n': 4,\n",
      "          'women': 3,\n",
      "          'society': 3,\n",
      "          'dark': 3,\n",
      "          'place': 3,\n",
      "          'rest': 3,\n",
      "          'nhowever': 3,\n",
      "          'marcos': 3,\n",
      "          'nshe': 3,\n",
      "          'men': 3,\n",
      "          'character': 3,\n",
      "          'relationship': 3,\n",
      "          'role': 3,\n",
      "          'inquisition': 3,\n",
      "          'never': 3,\n",
      "          'performance': 3,\n",
      "          'whose': 3,\n",
      "          'nothing': 2,\n",
      "          'nit': 2,\n",
      "          'certainly': 2,\n",
      "          'short': 2,\n",
      "          'true': 2,\n",
      "          'sexual': 2,\n",
      "          'roles': 2,\n",
      "          'pleasure': 2,\n",
      "          'marshall': 2,\n",
      "          'herskovitz': 2,\n",
      "          'doesnt': 2,\n",
      "          'could': 2,\n",
      "          'lead': 2,\n",
      "          'nat': 2,\n",
      "          'republic': 2,\n",
      "          'told': 2,\n",
      "          'get': 2,\n",
      "          'catherine': 2,\n",
      "          'class': 2,\n",
      "          'rufus': 2,\n",
      "          'sewell': 2,\n",
      "          'wealthy': 2,\n",
      "          'period': 2,\n",
      "          'married': 2,\n",
      "          'power': 2,\n",
      "          'nveronica': 2,\n",
      "          'despite': 2,\n",
      "          'charm': 2,\n",
      "          'looks': 2,\n",
      "          'heart': 2,\n",
      "          'intelligent': 2,\n",
      "          'chance': 2,\n",
      "          'often': 2,\n",
      "          'mother': 2,\n",
      "          'bisset': 2,\n",
      "          'quite': 2,\n",
      "          'well': 2,\n",
      "          'ways': 2,\n",
      "          'multiple': 2,\n",
      "          'platt': 2,\n",
      "          'even': 2,\n",
      "          'yet': 2,\n",
      "          'small': 2,\n",
      "          'kind': 2,\n",
      "          'also': 2,\n",
      "          'nhe': 2,\n",
      "          'seems': 2,\n",
      "          '1993': 2,\n",
      "          'life': 2,\n",
      "          'make': 2,\n",
      "          'nherskovitz': 2,\n",
      "          'strong': 2,\n",
      "          'real': 2,\n",
      "          'really': 1,\n",
      "          'grandiose': 1,\n",
      "          'soap': 1,\n",
      "          'opera': 1,\n",
      "          'set': 1,\n",
      "          'circa': 1,\n",
      "          '1583': 1,\n",
      "          'beautifully': 1,\n",
      "          'filmed': 1,\n",
      "          'wonderfully': 1,\n",
      "          'acted': 1,\n",
      "          'entertaining': 1,\n",
      "          'lacks': 1,\n",
      "          'fundamental': 1,\n",
      "          'seriousness': 1,\n",
      "          'ndealing': 1,\n",
      "          'themes': 1,\n",
      "          'forbidden': 1,\n",
      "          'religious': 1,\n",
      "          'intolerance': 1,\n",
      "          'subordination': 1,\n",
      "          'freedom': 1,\n",
      "          'sin': 1,\n",
      "          'highcultured': 1,\n",
      "          'still': 1,\n",
      "          'feels': 1,\n",
      "          'brightly': 1,\n",
      "          'lit': 1,\n",
      "          'fluff': 1,\n",
      "          'director': 1,\n",
      "          'want': 1,\n",
      "          'follow': 1,\n",
      "          'trail': 1,\n",
      "          'opts': 1,\n",
      "          'genial': 1,\n",
      "          'livelier': 1,\n",
      "          'relatively': 1,\n",
      "          'shallow': 1,\n",
      "          'interpretation': 1,\n",
      "          'takes': 1,\n",
      "          'renaissance': 1,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'capital': 1,\n",
      "          'europe': 1,\n",
      "          'thrived': 1,\n",
      "          'central': 1,\n",
      "          'juncture': 1,\n",
      "          'eastwest': 1,\n",
      "          'commerce': 1,\n",
      "          'almost': 1,\n",
      "          'entirely': 1,\n",
      "          'viewpoint': 1,\n",
      "          'aristocracy': 1,\n",
      "          'bourgeoisie': 1,\n",
      "          'rarely': 1,\n",
      "          'see': 1,\n",
      "          'lived': 1,\n",
      "          'abundance': 1,\n",
      "          'detail': 1,\n",
      "          'concerning': 1,\n",
      "          'lives': 1,\n",
      "          'livelihoods': 1,\n",
      "          'upper': 1,\n",
      "          'classes': 1,\n",
      "          'hedonistic': 1,\n",
      "          'lifestyles': 1,\n",
      "          'constant': 1,\n",
      "          'merriment': 1,\n",
      "          'centers': 1,\n",
      "          'franco': 1,\n",
      "          'lower': 1,\n",
      "          'woman': 1,\n",
      "          'falls': 1,\n",
      "          'venier': 1,\n",
      "          'son': 1,\n",
      "          'aristocratic': 1,\n",
      "          'parents': 1,\n",
      "          'jeroen': 1,\n",
      "          'krabb': 1,\n",
      "          'joanna': 1,\n",
      "          'cassidy': 1,\n",
      "          'nunfortunately': 1,\n",
      "          'culture': 1,\n",
      "          'view': 1,\n",
      "          'marriage': 1,\n",
      "          'act': 1,\n",
      "          'rather': 1,\n",
      "          'business': 1,\n",
      "          'transaction': 1,\n",
      "          'rich': 1,\n",
      "          'families': 1,\n",
      "          'sons': 1,\n",
      "          'daughters': 1,\n",
      "          'order': 1,\n",
      "          'secure': 1,\n",
      "          'wealth': 1,\n",
      "          'ensure': 1,\n",
      "          'outsiders': 1,\n",
      "          'couldnt': 1,\n",
      "          'outsider': 1,\n",
      "          'nafter': 1,\n",
      "          'affair': 1,\n",
      "          'breaks': 1,\n",
      "          'news': 1,\n",
      "          'marry': 1,\n",
      "          'beautiful': 1,\n",
      "          'enter': 1,\n",
      "          'world': 1,\n",
      "          'albeit': 1,\n",
      "          'wife': 1,\n",
      "          'decides': 1,\n",
      "          'become': 1,\n",
      "          'welleducated': 1,\n",
      "          'ravishing': 1,\n",
      "          'sold': 1,\n",
      "          'sexuality': 1,\n",
      "          'privilege': 1,\n",
      "          'wining': 1,\n",
      "          'dining': 1,\n",
      "          'elite': 1,\n",
      "          'na': 1,\n",
      "          'mere': 1,\n",
      "          'prostitute': 1,\n",
      "          'afforded': 1,\n",
      "          'special': 1,\n",
      "          'greatly': 1,\n",
      "          'revered': 1,\n",
      "          'respected': 1,\n",
      "          'envied': 1,\n",
      "          'one': 1,\n",
      "          'point': 1,\n",
      "          'mentions': 1,\n",
      "          'rulers': 1,\n",
      "          'obtain': 1,\n",
      "          'political': 1,\n",
      "          'advice': 1,\n",
      "          'courtesans': 1,\n",
      "          'lieutenants': 1,\n",
      "          'goes': 1,\n",
      "          'transformation': 1,\n",
      "          'help': 1,\n",
      "          'paola': 1,\n",
      "          'jacqueline': 1,\n",
      "          'famed': 1,\n",
      "          'nonce': 1,\n",
      "          'enters': 1,\n",
      "          'lifestyle': 1,\n",
      "          'finds': 1,\n",
      "          'suits': 1,\n",
      "          'allowed': 1,\n",
      "          'read': 1,\n",
      "          'books': 1,\n",
      "          'wants': 1,\n",
      "          'given': 1,\n",
      "          'opportunity': 1,\n",
      "          'publish': 1,\n",
      "          'poetry': 1,\n",
      "          'richest': 1,\n",
      "          'powerful': 1,\n",
      "          'throwing': 1,\n",
      "          'feet': 1,\n",
      "          'awestruck': 1,\n",
      "          'ntheir': 1,\n",
      "          'develops': 1,\n",
      "          'playful': 1,\n",
      "          'bantering': 1,\n",
      "          'utilizing': 1,\n",
      "          'newfound': 1,\n",
      "          'constantly': 1,\n",
      "          'rejecting': 1,\n",
      "          'advances': 1,\n",
      "          'nin': 1,\n",
      "          'many': 1,\n",
      "          'sad': 1,\n",
      "          'unable': 1,\n",
      "          'consumed': 1,\n",
      "          'relationships': 1,\n",
      "          'unwilling': 1,\n",
      "          'man': 1,\n",
      "          'based': 1,\n",
      "          'factual': 1,\n",
      "          'book': 1,\n",
      "          'margaret': 1,\n",
      "          'rosenthal': 1,\n",
      "          'flows': 1,\n",
      "          'along': 1,\n",
      "          'smoothly': 1,\n",
      "          'serenely': 1,\n",
      "          'grand': 1,\n",
      "          'canal': 1,\n",
      "          'running': 1,\n",
      "          'plot': 1,\n",
      "          'lines': 1,\n",
      "          'veronicas': 1,\n",
      "          'adversarial': 1,\n",
      "          'court': 1,\n",
      "          'poet': 1,\n",
      "          'oliver': 1,\n",
      "          'obtaining': 1,\n",
      "          'frances': 1,\n",
      "          'military': 1,\n",
      "          'assistance': 1,\n",
      "          'venices': 1,\n",
      "          'battle': 1,\n",
      "          'turks': 1,\n",
      "          'dreaded': 1,\n",
      "          'shadow': 1,\n",
      "          'plague': 1,\n",
      "          'encroachment': 1,\n",
      "          'spanish': 1,\n",
      "          'confusing': 1,\n",
      "          'overbearing': 1,\n",
      "          'nmuch': 1,\n",
      "          'films': 1,\n",
      "          'success': 1,\n",
      "          'due': 1,\n",
      "          'glowing': 1,\n",
      "          'nknown': 1,\n",
      "          'chiefly': 1,\n",
      "          'part': 1,\n",
      "          'played': 1,\n",
      "          'lover': 1,\n",
      "          'murder': 1,\n",
      "          'raised': 1,\n",
      "          'mel': 1,\n",
      "          'gibsons': 1,\n",
      "          'ire': 1,\n",
      "          'braveheart': 1,\n",
      "          '1995': 1,\n",
      "          'shows': 1,\n",
      "          'gifts': 1,\n",
      "          'inarguable': 1,\n",
      "          'talent': 1,\n",
      "          'leading': 1,\n",
      "          'lady': 1,\n",
      "          'exquisite': 1,\n",
      "          'classical': 1,\n",
      "          'would': 1,\n",
      "          'treasured': 1,\n",
      "          'witty': 1,\n",
      "          'sensual': 1,\n",
      "          'vulnerable': 1,\n",
      "          'easily': 1,\n",
      "          'transmits': 1,\n",
      "          'single': 1,\n",
      "          'flash': 1,\n",
      "          'eyes': 1,\n",
      "          'filled': 1,\n",
      "          'earlier': 1,\n",
      "          'month': 1,\n",
      "          'city': 1,\n",
      "          'assured': 1,\n",
      "          'solid': 1,\n",
      "          'hollywood': 1,\n",
      "          'unusual': 1,\n",
      "          'ray': 1,\n",
      "          'liotta': 1,\n",
      "          'perfectly': 1,\n",
      "          'home': 1,\n",
      "          'dramas': 1,\n",
      "          'noliver': 1,\n",
      "          'plays': 1,\n",
      "          'variation': 1,\n",
      "          'comic': 1,\n",
      "          'relief': 1,\n",
      "          'come': 1,\n",
      "          'inhabit': 1,\n",
      "          'second': 1,\n",
      "          'skin': 1,\n",
      "          'although': 1,\n",
      "          'deals': 1,\n",
      "          'cheap': 1,\n",
      "          'blow': 1,\n",
      "          'end': 1,\n",
      "          'improbably': 1,\n",
      "          'join': 1,\n",
      "          'turn': 1,\n",
      "          'bad': 1,\n",
      "          'guy': 1,\n",
      "          'nplatt': 1,\n",
      "          'actor': 1,\n",
      "          'hes': 1,\n",
      "          'hard': 1,\n",
      "          'hate': 1,\n",
      "          'njacqueline': 1,\n",
      "          'proves': 1,\n",
      "          'every': 1,\n",
      "          'bit': 1,\n",
      "          'stirring': 1,\n",
      "          'ever': 1,\n",
      "          'fred': 1,\n",
      "          'ward': 1,\n",
      "          'turns': 1,\n",
      "          'moving': 1,\n",
      "          'uncle': 1,\n",
      "          'herskovitzs': 1,\n",
      "          'sophomore': 1,\n",
      "          'directorial': 1,\n",
      "          'effort': 1,\n",
      "          'overlooked': 1,\n",
      "          'jack': 1,\n",
      "          'bear': 1,\n",
      "          'npartnered': 1,\n",
      "          'edward': 1,\n",
      "          'zwick': 1,\n",
      "          'spent': 1,\n",
      "          'producer': 1,\n",
      "          'television': 1,\n",
      "          'thirtysomething': 1,\n",
      "          'socalled': 1,\n",
      "          'movies': 1,\n",
      "          'legends': 1,\n",
      "          'fall': 1,\n",
      "          'nhis': 1,\n",
      "          'directing': 1,\n",
      "          'style': 1,\n",
      "          'best': 1,\n",
      "          'described': 1,\n",
      "          'transparent': 1,\n",
      "          'gets': 1,\n",
      "          'way': 1,\n",
      "          'discernible': 1,\n",
      "          'flourish': 1,\n",
      "          'particular': 1,\n",
      "          'distinctions': 1,\n",
      "          'approached': 1,\n",
      "          'number': 1,\n",
      "          'overdosing': 1,\n",
      "          'aspect': 1,\n",
      "          'wisely': 1,\n",
      "          'avoids': 1,\n",
      "          'contains': 1,\n",
      "          'enough': 1,\n",
      "          'bare': 1,\n",
      "          'flesh': 1,\n",
      "          'ribald': 1,\n",
      "          'sex': 1,\n",
      "          'appropriately': 1,\n",
      "          'erotic': 1,\n",
      "          'much': 1,\n",
      "          'exploitative': 1,\n",
      "          'aided': 1,\n",
      "          'supporting': 1,\n",
      "          'crew': 1,\n",
      "          'luscious': 1,\n",
      "          'photography': 1,\n",
      "          'bojan': 1,\n",
      "          'bazelli': 1,\n",
      "          'previous': 1,\n",
      "          'efforts': 1,\n",
      "          'include': 1,\n",
      "          'highlystylized': 1,\n",
      "          'thriller': 1,\n",
      "          'kalifornia': 1,\n",
      "          'abel': 1,\n",
      "          'ferraras': 1,\n",
      "          'scifi': 1,\n",
      "          'body': 1,\n",
      "          'snatchers': 1,\n",
      "          '1994': 1,\n",
      "          'nbazelli': 1,\n",
      "          'captures': 1,\n",
      "          'bold': 1,\n",
      "          'colors': 1,\n",
      "          'brings': 1,\n",
      "          'sixteenthcentury': 1,\n",
      "          'wide': 1,\n",
      "          'panoramic': 1,\n",
      "          'shots': 1,\n",
      "          'enhanced': 1,\n",
      "          'digital': 1,\n",
      "          'imagery': 1,\n",
      "          'details': 1,\n",
      "          'found': 1,\n",
      "          'production': 1,\n",
      "          'design': 1,\n",
      "          'norman': 1,\n",
      "          'garwood': 1,\n",
      "          'brazil': 1,\n",
      "          'princess': 1,\n",
      "          'bride': 1,\n",
      "          'costumes': 1,\n",
      "          'gabriella': 1,\n",
      "          'pescucci': 1,\n",
      "          'age': 1,\n",
      "          'innocence': 1,\n",
      "          'problem': 1,\n",
      "          'stick': 1,\n",
      "          'nits': 1,\n",
      "          'welltold': 1,\n",
      "          'interesting': 1,\n",
      "          'characters': 1,\n",
      "          'easy': 1,\n",
      "          'shrug': 1,\n",
      "          'youve': 1,\n",
      "          'left': 1,\n",
      "          'theater': 1,\n",
      "          'sequence': 1,\n",
      "          'truly': 1,\n",
      "          'indelible': 1,\n",
      "          'pulled': 1,\n",
      "          'front': 1,\n",
      "          'hypocrisy': 1,\n",
      "          'threatened': 1,\n",
      "          'death': 1,\n",
      "          'penalty': 1,\n",
      "          'transgressions': 1,\n",
      "          'comes': 1,\n",
      "          'simply': 1,\n",
      "          'melodramatic': 1,\n",
      "          'conventional': 1,\n",
      "          'tries': 1,\n",
      "          'might': 1,\n",
      "          'nailbiter': 1,\n",
      "          'somehow': 1,\n",
      "          'outcome': 1,\n",
      "          'foregone': 1,\n",
      "          'conclusion': 1,\n",
      "          'carries': 1,\n",
      "          'weight': 1,\n",
      "          'potential': 1,\n",
      "          'severity': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'breakdown': 7,\n",
      "          'one': 6,\n",
      "          'nit': 5,\n",
      "          'jeff': 5,\n",
      "          'man': 5,\n",
      "          'plot': 4,\n",
      "          'nthe': 4,\n",
      "          'russell': 4,\n",
      "          'movie': 4,\n",
      "          'car': 3,\n",
      "          'easy': 3,\n",
      "          'doesnt': 3,\n",
      "          'well': 3,\n",
      "          'villains': 3,\n",
      "          'ordinary': 3,\n",
      "          'far': 2,\n",
      "          'nso': 2,\n",
      "          'nowhere': 2,\n",
      "          'suspense': 2,\n",
      "          'thriller': 2,\n",
      "          'nkurt': 2,\n",
      "          'amy': 2,\n",
      "          'couple': 2,\n",
      "          'brand': 2,\n",
      "          'new': 2,\n",
      "          'driver': 2,\n",
      "          'later': 2,\n",
      "          'red': 2,\n",
      "          'njeff': 2,\n",
      "          'cars': 2,\n",
      "          'j': 2,\n",
      "          'walsh': 2,\n",
      "          'truck': 2,\n",
      "          'town': 2,\n",
      "          'diner': 2,\n",
      "          'film': 2,\n",
      "          'nthere': 2,\n",
      "          'would': 2,\n",
      "          'many': 2,\n",
      "          'made': 2,\n",
      "          'good': 2,\n",
      "          'actors': 2,\n",
      "          'acting': 2,\n",
      "          'pursuing': 2,\n",
      "          'action': 2,\n",
      "          'hitchcock': 2,\n",
      "          'like': 2,\n",
      "          'imagine': 1,\n",
      "          'scenario': 1,\n",
      "          'family': 1,\n",
      "          'members': 1,\n",
      "          'scudding': 1,\n",
      "          'long': 1,\n",
      "          'excruciating': 1,\n",
      "          'crosscountry': 1,\n",
      "          'trips': 1,\n",
      "          'city': 1,\n",
      "          'deserted': 1,\n",
      "          'rural': 1,\n",
      "          'routes': 1,\n",
      "          'trip': 1,\n",
      "          'idyllic': 1,\n",
      "          'abruptly': 1,\n",
      "          'malfunctions': 1,\n",
      "          'stranded': 1,\n",
      "          'middle': 1,\n",
      "          'situation': 1,\n",
      "          'perfectly': 1,\n",
      "          'plausible': 1,\n",
      "          'panorama': 1,\n",
      "          'musters': 1,\n",
      "          'throbbing': 1,\n",
      "          'skillfully': 1,\n",
      "          'executed': 1,\n",
      "          'tautness': 1,\n",
      "          'cobble': 1,\n",
      "          'distinct': 1,\n",
      "          'gripping': 1,\n",
      "          'nowadays': 1,\n",
      "          'bungle': 1,\n",
      "          'rudimentary': 1,\n",
      "          'holes': 1,\n",
      "          'cliches': 1,\n",
      "          'derives': 1,\n",
      "          'masterful': 1,\n",
      "          'titillating': 1,\n",
      "          'climax': 1,\n",
      "          'finale': 1,\n",
      "          'engrosses': 1,\n",
      "          'viewer': 1,\n",
      "          'total': 1,\n",
      "          'absorption': 1,\n",
      "          'somewhat': 1,\n",
      "          'reminiscent': 1,\n",
      "          '1988s': 1,\n",
      "          'vanishing': 1,\n",
      "          'kathleen': 1,\n",
      "          'quinlan': 1,\n",
      "          'respectively': 1,\n",
      "          'play': 1,\n",
      "          'taylor': 1,\n",
      "          'massachusetts': 1,\n",
      "          'en': 1,\n",
      "          'route': 1,\n",
      "          'california': 1,\n",
      "          'job': 1,\n",
      "          'nwhen': 1,\n",
      "          'stop': 1,\n",
      "          'gas': 1,\n",
      "          'somewhere': 1,\n",
      "          'arid': 1,\n",
      "          'southwest': 1,\n",
      "          'confronted': 1,\n",
      "          'pugnacious': 1,\n",
      "          'important': 1,\n",
      "          'player': 1,\n",
      "          'department': 1,\n",
      "          'nminutes': 1,\n",
      "          'strikingly': 1,\n",
      "          'jeep': 1,\n",
      "          'grand': 1,\n",
      "          'cherokee': 1,\n",
      "          'unexpectedly': 1,\n",
      "          'stops': 1,\n",
      "          'detect': 1,\n",
      "          'problem': 1,\n",
      "          'allows': 1,\n",
      "          'take': 1,\n",
      "          'ride': 1,\n",
      "          'nt': 1,\n",
      "          'heedful': 1,\n",
      "          'convey': 1,\n",
      "          'nearest': 1,\n",
      "          'meet': 1,\n",
      "          'local': 1,\n",
      "          'facile': 1,\n",
      "          'turn': 1,\n",
      "          'pseudosuspenser': 1,\n",
      "          'instead': 1,\n",
      "          'opts': 1,\n",
      "          'maximum': 1,\n",
      "          'fervor': 1,\n",
      "          'manages': 1,\n",
      "          'restart': 1,\n",
      "          'arrives': 1,\n",
      "          'sight': 1,\n",
      "          'ndisconcerted': 1,\n",
      "          'coffee': 1,\n",
      "          'shops': 1,\n",
      "          'bartender': 1,\n",
      "          'informs': 1,\n",
      "          'search': 1,\n",
      "          'wife': 1,\n",
      "          'twenty': 1,\n",
      "          'miles': 1,\n",
      "          'trouble': 1,\n",
      "          'arises': 1,\n",
      "          'nand': 1,\n",
      "          'shall': 1,\n",
      "          'reveal': 1,\n",
      "          'anything': 1,\n",
      "          'else': 1,\n",
      "          'since': 1,\n",
      "          'spoiling': 1,\n",
      "          'fun': 1,\n",
      "          'whats': 1,\n",
      "          'head': 1,\n",
      "          'involving': 1,\n",
      "          'tight': 1,\n",
      "          'scenes': 1,\n",
      "          'final': 1,\n",
      "          'climactic': 1,\n",
      "          'period': 1,\n",
      "          'includes': 1,\n",
      "          'magnificent': 1,\n",
      "          'chase': 1,\n",
      "          'three': 1,\n",
      "          'huge': 1,\n",
      "          'feeling': 1,\n",
      "          'legs': 1,\n",
      "          'pure': 1,\n",
      "          'foam': 1,\n",
      "          'pleasure': 1,\n",
      "          'part': 1,\n",
      "          'classic': 1,\n",
      "          'confrontation': 1,\n",
      "          'vs': 1,\n",
      "          'evil': 1,\n",
      "          'rooting': 1,\n",
      "          'guys': 1,\n",
      "          'case': 1,\n",
      "          'topnotch': 1,\n",
      "          'hollywood': 1,\n",
      "          'overblow': 1,\n",
      "          'gradually': 1,\n",
      "          'gains': 1,\n",
      "          'reliance': 1,\n",
      "          'role': 1,\n",
      "          'progresses': 1,\n",
      "          'assume': 1,\n",
      "          'alteration': 1,\n",
      "          'letterperfect': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'undergoes': 1,\n",
      "          'transformation': 1,\n",
      "          'jolly': 1,\n",
      "          'guy': 1,\n",
      "          'frantically': 1,\n",
      "          'loved': 1,\n",
      "          'nnot': 1,\n",
      "          'wellpaid': 1,\n",
      "          'deliver': 1,\n",
      "          'type': 1,\n",
      "          'performances': 1,\n",
      "          'nas': 1,\n",
      "          'everyday': 1,\n",
      "          'pulls': 1,\n",
      "          'extremely': 1,\n",
      "          'convincingly': 1,\n",
      "          'also': 1,\n",
      "          'surprised': 1,\n",
      "          'rigorous': 1,\n",
      "          'physicality': 1,\n",
      "          'effectively': 1,\n",
      "          'practices': 1,\n",
      "          'almost': 1,\n",
      "          'throughout': 1,\n",
      "          'films': 1,\n",
      "          '93': 1,\n",
      "          'minutes': 1,\n",
      "          'nalthough': 1,\n",
      "          'blotted': 1,\n",
      "          'portentous': 1,\n",
      "          'sequences': 1,\n",
      "          'done': 1,\n",
      "          'yet': 1,\n",
      "          'tightness': 1,\n",
      "          'generated': 1,\n",
      "          'subtle': 1,\n",
      "          'circumstances': 1,\n",
      "          'presented': 1,\n",
      "          'nfaced': 1,\n",
      "          'enigma': 1,\n",
      "          'wifes': 1,\n",
      "          'whereabouts': 1,\n",
      "          'succeeds': 1,\n",
      "          'conveying': 1,\n",
      "          'us': 1,\n",
      "          'realistic': 1,\n",
      "          'territory': 1,\n",
      "          'veritable': 1,\n",
      "          'characters': 1,\n",
      "          'including': 1,\n",
      "          'cryptic': 1,\n",
      "          'essence': 1,\n",
      "          'make': 1,\n",
      "          'nwhats': 1,\n",
      "          'impressive': 1,\n",
      "          'however': 1,\n",
      "          'feature': 1,\n",
      "          'debut': 1,\n",
      "          'writerdirector': 1,\n",
      "          'jonathan': 1,\n",
      "          'mostow': 1,\n",
      "          'nmostow': 1,\n",
      "          'hitherto': 1,\n",
      "          'directed': 1,\n",
      "          'showtime': 1,\n",
      "          'flight': 1,\n",
      "          'black': 1,\n",
      "          'angle': 1,\n",
      "          'alleviates': 1,\n",
      "          'contrivances': 1,\n",
      "          'generics': 1,\n",
      "          'script': 1,\n",
      "          'gingerly': 1,\n",
      "          'trajectory': 1,\n",
      "          'efficiently': 1,\n",
      "          'letting': 1,\n",
      "          'tone': 1,\n",
      "          'mood': 1,\n",
      "          'story': 1,\n",
      "          'generate': 1,\n",
      "          'nailbiting': 1,\n",
      "          'sought': 1,\n",
      "          'affair': 1,\n",
      "          'ncontrary': 1,\n",
      "          'american': 1,\n",
      "          'thrillers': 1,\n",
      "          'rely': 1,\n",
      "          'visual': 1,\n",
      "          'flair': 1,\n",
      "          'aesthetics': 1,\n",
      "          'substance': 1,\n",
      "          'nafter': 1,\n",
      "          'gain': 1,\n",
      "          'vast': 1,\n",
      "          'notoriety': 1,\n",
      "          'arent': 1,\n",
      "          'routine': 1,\n",
      "          'outofthisworld': 1,\n",
      "          'idiosyncratic': 1,\n",
      "          'psychos': 1,\n",
      "          'harming': 1,\n",
      "          'particular': 1,\n",
      "          'objective': 1,\n",
      "          'baddies': 1,\n",
      "          'acted': 1,\n",
      "          'normal': 1,\n",
      "          'seemingly': 1,\n",
      "          'inoffensive': 1,\n",
      "          'townspeople': 1,\n",
      "          'beneath': 1,\n",
      "          'trustworthy': 1,\n",
      "          'layer': 1,\n",
      "          'conduct': 1,\n",
      "          'amoral': 1,\n",
      "          'business': 1,\n",
      "          'corruption': 1,\n",
      "          'murder': 1,\n",
      "          'smartly': 1,\n",
      "          'portrays': 1,\n",
      "          'men': 1,\n",
      "          'loathsome': 1,\n",
      "          'rednecks': 1,\n",
      "          'things': 1,\n",
      "          'world': 1,\n",
      "          'becoming': 1,\n",
      "          'rather': 1,\n",
      "          'root': 1,\n",
      "          'jon': 1,\n",
      "          'voight': 1,\n",
      "          'anaconda': 1,\n",
      "          'todays': 1,\n",
      "          'movies': 1,\n",
      "          'nworth': 1,\n",
      "          'special': 1,\n",
      "          'mentioning': 1,\n",
      "          'previously': 1,\n",
      "          'worked': 1,\n",
      "          'kurt': 1,\n",
      "          'executive': 1,\n",
      "          'decision': 1,\n",
      "          'leader': 1,\n",
      "          'gang': 1,\n",
      "          'renders': 1,\n",
      "          'deliciously': 1,\n",
      "          'wicked': 1,\n",
      "          'performance': 1,\n",
      "          'temporarily': 1,\n",
      "          'stepping': 1,\n",
      "          'minor': 1,\n",
      "          'roles': 1,\n",
      "          'known': 1,\n",
      "          'nalfred': 1,\n",
      "          'used': 1,\n",
      "          'suspenseand': 1,\n",
      "          'stimulate': 1,\n",
      "          'way': 1,\n",
      "          'aiding': 1,\n",
      "          'audiences': 1,\n",
      "          'fascination': 1,\n",
      "          'stories': 1,\n",
      "          'slowly': 1,\n",
      "          'realizing': 1,\n",
      "          'mans': 1,\n",
      "          'biggest': 1,\n",
      "          'fears': 1,\n",
      "          'nbreakdown': 1,\n",
      "          'yields': 1,\n",
      "          'exactly': 1,\n",
      "          'magnificently': 1,\n",
      "          'taps': 1,\n",
      "          'psyche': 1,\n",
      "          'looking': 1,\n",
      "          'sort': 1,\n",
      "          'superhero': 1,\n",
      "          'ndespite': 1,\n",
      "          'two': 1,\n",
      "          'iffy': 1,\n",
      "          'moments': 1,\n",
      "          'even': 1,\n",
      "          'think': 1,\n",
      "          'approve': 1,\n",
      "          'n': 1,\n",
      "          '1': 1,\n",
      "          '33': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 6,\n",
      "          'nthe': 6,\n",
      "          'sex': 5,\n",
      "          'lies': 4,\n",
      "          'videotape': 4,\n",
      "          'probably': 4,\n",
      "          'macdowell': 3,\n",
      "          'john': 3,\n",
      "          'even': 3,\n",
      "          'best': 3,\n",
      "          'would': 3,\n",
      "          'one': 3,\n",
      "          'cannes': 2,\n",
      "          'independent': 2,\n",
      "          'films': 2,\n",
      "          'four': 2,\n",
      "          'characters': 2,\n",
      "          'nann': 2,\n",
      "          'gallagher': 2,\n",
      "          'cynthia': 2,\n",
      "          'graham': 2,\n",
      "          'comes': 2,\n",
      "          'clearly': 2,\n",
      "          'picture': 2,\n",
      "          'since': 2,\n",
      "          'come': 2,\n",
      "          'well': 2,\n",
      "          'final': 2,\n",
      "          'steve': 1,\n",
      "          'soderberghs': 1,\n",
      "          'grand': 1,\n",
      "          'prize': 1,\n",
      "          'festival': 1,\n",
      "          '1989': 1,\n",
      "          'arguably': 1,\n",
      "          'began': 1,\n",
      "          'resurgence': 1,\n",
      "          'nmade': 1,\n",
      "          'shoestring': 1,\n",
      "          'budget': 1,\n",
      "          '1': 1,\n",
      "          '2': 1,\n",
      "          'million': 1,\n",
      "          'relatively': 1,\n",
      "          'unknown': 1,\n",
      "          'actors': 1,\n",
      "          'provocative': 1,\n",
      "          'thoroughly': 1,\n",
      "          'original': 1,\n",
      "          'drama': 1,\n",
      "          'mostly': 1,\n",
      "          'focuses': 1,\n",
      "          'central': 1,\n",
      "          'late': 1,\n",
      "          '20searly': 1,\n",
      "          '30s': 1,\n",
      "          'andie': 1,\n",
      "          'unfulfilled': 1,\n",
      "          'housewife': 1,\n",
      "          'married': 1,\n",
      "          'peter': 1,\n",
      "          'insensitive': 1,\n",
      "          'lawyer': 1,\n",
      "          'unbeknownst': 1,\n",
      "          'affair': 1,\n",
      "          'younger': 1,\n",
      "          'sister': 1,\n",
      "          'laura': 1,\n",
      "          'san': 1,\n",
      "          'giacomo': 1,\n",
      "          'ncomplicating': 1,\n",
      "          'matters': 1,\n",
      "          'worse': 1,\n",
      "          'james': 1,\n",
      "          'spader': 1,\n",
      "          'actor': 1,\n",
      "          'johns': 1,\n",
      "          'old': 1,\n",
      "          'college': 1,\n",
      "          'buddy': 1,\n",
      "          'stay': 1,\n",
      "          'house': 1,\n",
      "          'absolutely': 1,\n",
      "          'though': 1,\n",
      "          'stated': 1,\n",
      "          'little': 1,\n",
      "          'interest': 1,\n",
      "          'nthat': 1,\n",
      "          'setup': 1,\n",
      "          'last': 1,\n",
      "          'hour': 1,\n",
      "          'entitled': 1,\n",
      "          'keep': 1,\n",
      "          'rest': 1,\n",
      "          'story': 1,\n",
      "          'developments': 1,\n",
      "          'bay': 1,\n",
      "          'genuine': 1,\n",
      "          'surprise': 1,\n",
      "          'ndirector': 1,\n",
      "          'steven': 1,\n",
      "          'soderbergh': 1,\n",
      "          'proven': 1,\n",
      "          'wildly': 1,\n",
      "          'offbeat': 1,\n",
      "          'filmmaker': 1,\n",
      "          'ranging': 1,\n",
      "          'mainstream': 1,\n",
      "          '1998s': 1,\n",
      "          'sight': 1,\n",
      "          'downright': 1,\n",
      "          'kafkaesque': 1,\n",
      "          '1997s': 1,\n",
      "          'schizopolis': 1,\n",
      "          'nhe': 1,\n",
      "          'type': 1,\n",
      "          'director': 1,\n",
      "          'obviously': 1,\n",
      "          'takes': 1,\n",
      "          'lot': 1,\n",
      "          'chances': 1,\n",
      "          'believes': 1,\n",
      "          'work': 1,\n",
      "          'confident': 1,\n",
      "          'maybe': 1,\n",
      "          'date': 1,\n",
      "          'performances': 1,\n",
      "          'superb': 1,\n",
      "          'leads': 1,\n",
      "          'stands': 1,\n",
      "          'main': 1,\n",
      "          'character': 1,\n",
      "          'nshe': 1,\n",
      "          'always': 1,\n",
      "          'winning': 1,\n",
      "          'actress': 1,\n",
      "          'threedimensional': 1,\n",
      "          'role': 1,\n",
      "          'close': 1,\n",
      "          'second': 1,\n",
      "          'altmans': 1,\n",
      "          '1993': 1,\n",
      "          'mosaic': 1,\n",
      "          'short': 1,\n",
      "          'cuts': 1,\n",
      "          'parts': 1,\n",
      "          'perfectly': 1,\n",
      "          'cast': 1,\n",
      "          'spaders': 1,\n",
      "          'ominous': 1,\n",
      "          'gallaghers': 1,\n",
      "          'selfinvolved': 1,\n",
      "          'giacomos': 1,\n",
      "          'outspoken': 1,\n",
      "          'act': 1,\n",
      "          'especially': 1,\n",
      "          'right': 1,\n",
      "          'left': 1,\n",
      "          'field': 1,\n",
      "          'turns': 1,\n",
      "          'shocking': 1,\n",
      "          'oddly': 1,\n",
      "          'touching': 1,\n",
      "          'criminal': 1,\n",
      "          'give': 1,\n",
      "          'away': 1,\n",
      "          'secrets': 1,\n",
      "          'nsuffice': 1,\n",
      "          'say': 1,\n",
      "          'powerful': 1,\n",
      "          'sequence': 1,\n",
      "          'ann': 1,\n",
      "          'able': 1,\n",
      "          'somewhat': 1,\n",
      "          'shell': 1,\n",
      "          'learns': 1,\n",
      "          'valuable': 1,\n",
      "          'lesson': 1,\n",
      "          'honesty': 1,\n",
      "          'deception': 1,\n",
      "          'fault': 1,\n",
      "          'however': 1,\n",
      "          'almost': 1,\n",
      "          'emotionally': 1,\n",
      "          'cold': 1,\n",
      "          'isolated': 1,\n",
      "          'another': 1,\n",
      "          'often': 1,\n",
      "          'unlikable': 1,\n",
      "          'nif': 1,\n",
      "          'extra': 1,\n",
      "          'scenes': 1,\n",
      "          'helped': 1,\n",
      "          'relationship': 1,\n",
      "          'isnt': 1,\n",
      "          'quite': 1,\n",
      "          'explored': 1,\n",
      "          'liked': 1,\n",
      "          'n': 1,\n",
      "          'although': 1,\n",
      "          'minorly': 1,\n",
      "          'flawed': 1,\n",
      "          'still': 1,\n",
      "          'easily': 1,\n",
      "          'brave': 1,\n",
      "          'adult': 1,\n",
      "          'motion': 1,\n",
      "          'far': 1,\n",
      "          'mature': 1,\n",
      "          'honest': 1,\n",
      "          'subject': 1,\n",
      "          'matter': 1,\n",
      "          'usual': 1,\n",
      "          'nsoderbergh': 1,\n",
      "          'knew': 1,\n",
      "          'making': 1,\n",
      "          'product': 1,\n",
      "          'certainly': 1,\n",
      "          'proves': 1,\n",
      "          'npos': 1}),\n",
      " Counter({'film': 10,\n",
      "          'mm': 9,\n",
      "          'welles': 6,\n",
      "          '8': 6,\n",
      "          'snuff': 5,\n",
      "          'private': 4,\n",
      "          'detective': 4,\n",
      "          'violence': 4,\n",
      "          'man': 4,\n",
      "          'n8': 4,\n",
      "          'nhe': 4,\n",
      "          'world': 3,\n",
      "          'pornographers': 3,\n",
      "          'one': 3,\n",
      "          'long': 3,\n",
      "          'movie': 3,\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          'real': 3,\n",
      "          'see': 3,\n",
      "          'films': 3,\n",
      "          'slowly': 3,\n",
      "          'character': 3,\n",
      "          'seems': 3,\n",
      "          'fact': 3,\n",
      "          'tom': 2,\n",
      "          'underground': 2,\n",
      "          'perverse': 2,\n",
      "          'movies': 2,\n",
      "          'time': 2,\n",
      "          'present': 2,\n",
      "          'sexual': 2,\n",
      "          'nit': 2,\n",
      "          'get': 2,\n",
      "          'nthis': 2,\n",
      "          'strong': 2,\n",
      "          'however': 2,\n",
      "          'intelligent': 2,\n",
      "          'thriller': 2,\n",
      "          'cage': 2,\n",
      "          'couple': 2,\n",
      "          'phoenix': 2,\n",
      "          'despite': 2,\n",
      "          'nthe': 2,\n",
      "          'really': 2,\n",
      "          'evil': 2,\n",
      "          'unpredictable': 2,\n",
      "          'schumacher': 2,\n",
      "          'batman': 2,\n",
      "          'responsible': 2,\n",
      "          'horror': 2,\n",
      "          'falling': 2,\n",
      "          'certainly': 2,\n",
      "          'minor': 2,\n",
      "          'walker': 2,\n",
      "          'seven': 2,\n",
      "          'kill': 2,\n",
      "          'end': 2,\n",
      "          'rating': 2,\n",
      "          'give': 2,\n",
      "          'none': 2,\n",
      "          'would': 2,\n",
      "          'victims': 2,\n",
      "          'mother': 2,\n",
      "          'scene': 2,\n",
      "          'scenes': 2,\n",
      "          'like': 2,\n",
      "          'synopsis': 1,\n",
      "          'hired': 1"
     ]
    },
    {
     "ename": "KeyboardInterrupt",
     "evalue": "",
     "output_type": "error",
     "traceback": [
      "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[1;31mKeyboardInterrupt\u001b[0m                         Traceback (most recent call last)",
      "\u001b[1;32m<ipython-input-25-0ae20e033049>\u001b[0m in \u001b[0;36m<module>\u001b[1;34m\u001b[0m\n\u001b[1;32m----> 1\u001b[1;33m \u001b[0mpprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mbag_of_words\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36mpprint\u001b[1;34m(object, stream, indent, width, depth, compact)\u001b[0m\n\u001b[0;32m     51\u001b[0m         \u001b[0mstream\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mstream\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mindent\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mindent\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mwidth\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mwidth\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mdepth\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mdepth\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m     52\u001b[0m         compact=compact)\n\u001b[1;32m---> 53\u001b[1;33m     \u001b[0mprinter\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mpprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mobject\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m     54\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m     55\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mpformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mobject\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mindent\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mwidth\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m80\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mdepth\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mNone\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;33m*\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcompact\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36mpprint\u001b[1;34m(self, object)\u001b[0m\n\u001b[0;32m    137\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    138\u001b[0m     \u001b[1;32mdef\u001b[0m \u001b[0mpprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mobject\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 139\u001b[1;33m         \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_format\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mobject\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_stream\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;33m{\u001b[0m\u001b[1;33m}\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    140\u001b[0m         \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_stream\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"\\n\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    141\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_format\u001b[1;34m(self, object, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    165\u001b[0m             \u001b[1;32mif\u001b[0m \u001b[0mp\u001b[0m \u001b[1;32mis\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[1;32mNone\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    166\u001b[0m                 \u001b[0mcontext\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mobjid\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 167\u001b[1;33m                 \u001b[0mp\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mobject\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mstream\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mindent\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mallowance\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcontext\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mlevel\u001b[0m \u001b[1;33m+\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    168\u001b[0m                 \u001b[1;32mdel\u001b[0m \u001b[0mcontext\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mobjid\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    169\u001b[0m                 \u001b[1;32mreturn\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_pprint_list\u001b[1;34m(self, object, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    208\u001b[0m         \u001b[0mstream\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'['\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    209\u001b[0m         self._format_items(object, stream, indent, allowance + 1,\n\u001b[1;32m--> 210\u001b[1;33m                            context, level)\n\u001b[0m\u001b[0;32m    211\u001b[0m         \u001b[0mstream\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m']'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    212\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_format_items\u001b[1;34m(self, items, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    387\u001b[0m             self._format(ent, stream, indent,\n\u001b[0;32m    388\u001b[0m                          \u001b[0mallowance\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mlast\u001b[0m \u001b[1;32melse\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 389\u001b[1;33m                          context, level)\n\u001b[0m\u001b[0;32m    390\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    391\u001b[0m     \u001b[1;32mdef\u001b[0m \u001b[0m_repr\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mobject\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcontext\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mlevel\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_format\u001b[1;34m(self, object, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    165\u001b[0m             \u001b[1;32mif\u001b[0m \u001b[0mp\u001b[0m \u001b[1;32mis\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[1;32mNone\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    166\u001b[0m                 \u001b[0mcontext\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mobjid\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 167\u001b[1;33m                 \u001b[0mp\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mobject\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mstream\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mindent\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mallowance\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcontext\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mlevel\u001b[0m \u001b[1;33m+\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    168\u001b[0m                 \u001b[1;32mdel\u001b[0m \u001b[0mcontext\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mobjid\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    169\u001b[0m                 \u001b[1;32mreturn\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_pprint_counter\u001b[1;34m(self, object, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    429\u001b[0m         self._format_dict_items(items, stream,\n\u001b[0;32m    430\u001b[0m                                 \u001b[0mindent\u001b[0m \u001b[1;33m+\u001b[0m \u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mcls\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m__name__\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;33m+\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mallowance\u001b[0m \u001b[1;33m+\u001b[0m \u001b[1;36m2\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 431\u001b[1;33m                                 context, level)\n\u001b[0m\u001b[0;32m    432\u001b[0m         \u001b[0mstream\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'})'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    433\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_format_dict_items\u001b[1;34m(self, items, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    344\u001b[0m             self._format(ent, stream, indent + len(rep) + 2,\n\u001b[0;32m    345\u001b[0m                          \u001b[0mallowance\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mlast\u001b[0m \u001b[1;32melse\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 346\u001b[1;33m                          context, level)\n\u001b[0m\u001b[0;32m    347\u001b[0m             \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0mlast\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    348\u001b[0m                 \u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdelimnl\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\pprint.py\u001b[0m in \u001b[0;36m_format\u001b[1;34m(self, object, stream, indent, allowance, context, level)\u001b[0m\n\u001b[0;32m    174\u001b[0m                 \u001b[1;32mdel\u001b[0m \u001b[0mcontext\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mobjid\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    175\u001b[0m                 \u001b[1;32mreturn\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 176\u001b[1;33m         \u001b[0mstream\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mrep\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    177\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    178\u001b[0m     \u001b[0m_dispatch\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;33m{\u001b[0m\u001b[1;33m}\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\site-packages\\ipykernel\\iostream.py\u001b[0m in \u001b[0;36mwrite\u001b[1;34m(self, string)\u001b[0m\n\u001b[0;32m    398\u001b[0m             \u001b[0mis_child\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;33m(\u001b[0m\u001b[1;32mnot\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_is_master_process\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    399\u001b[0m             \u001b[1;31m# only touch the buffer in the IO thread to avoid races\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 400\u001b[1;33m             \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mpub_thread\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mschedule\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;32mlambda\u001b[0m \u001b[1;33m:\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_buffer\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mstring\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    401\u001b[0m             \u001b[1;32mif\u001b[0m \u001b[0mis_child\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    402\u001b[0m                 \u001b[1;31m# newlines imply flush in subprocesses\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\site-packages\\ipykernel\\iostream.py\u001b[0m in \u001b[0;36mschedule\u001b[1;34m(self, f)\u001b[0m\n\u001b[0;32m    201\u001b[0m             \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_events\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mf\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    202\u001b[0m             \u001b[1;31m# wake event thread (message content is ignored)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 203\u001b[1;33m             \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_event_pipe\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msend\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34mb''\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    204\u001b[0m         \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    205\u001b[0m             \u001b[0mf\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\site-packages\\zmq\\sugar\\socket.py\u001b[0m in \u001b[0;36msend\u001b[1;34m(self, data, flags, copy, track, routing_id, group)\u001b[0m\n\u001b[0;32m    393\u001b[0m                                  copy_threshold=self.copy_threshold)\n\u001b[0;32m    394\u001b[0m             \u001b[0mdata\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mgroup\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mgroup\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m--> 395\u001b[1;33m         \u001b[1;32mreturn\u001b[0m \u001b[0msuper\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mSocket\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msend\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mflags\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mflags\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mcopy\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mtrack\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mtrack\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m    396\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m    397\u001b[0m     \u001b[1;32mdef\u001b[0m \u001b[0msend_multipart\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mmsg_parts\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mflags\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mTrue\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mtrack\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;33m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
      "\u001b[1;32mzmq/backend/cython/socket.pyx\u001b[0m in \u001b[0;36mzmq.backend.cython.socket.Socket.send\u001b[1;34m()\u001b[0m\n",
      "\u001b[1;32mzmq/backend/cython/socket.pyx\u001b[0m in \u001b[0;36mzmq.backend.cython.socket.Socket.send\u001b[1;34m()\u001b[0m\n",
      "\u001b[1;32mzmq/backend/cython/socket.pyx\u001b[0m in \u001b[0;36mzmq.backend.cython.socket._send_copy\u001b[1;34m()\u001b[0m\n",
      "\u001b[1;32m~\\Anaconda3\\lib\\site-packages\\zmq\\backend\\cython\\checkrc.pxd\u001b[0m in \u001b[0;36mzmq.backend.cython.checkrc._check_rc\u001b[1;34m()\u001b[0m\n",
      "\u001b[1;31mKeyboardInterrupt\u001b[0m: "
     ]
    }
   ],
   "source": [
    "pprint(bag_of_words)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "def normalize_df(df):\n",
    "    names = df.columns \n",
    "    df[\"total\"] = df.sum(axis = 1)\n",
    "    for name in names: \n",
    "        df[name] = df[name]/df[\"total\"]\n",
    "    return(df)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "large_df = pd.DataFrame.from_records(bag_fo)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "movies_df"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.3"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}
